diff --git a/.fprettify.rc b/.fprettify.rc index 8052f7ca..9d14c90e 100644 --- a/.fprettify.rc +++ b/.fprettify.rc @@ -9,7 +9,7 @@ i: 2 recursive # Excluded files: # Anything compiled, src/venus.f90 (it's incomplete), old fortran files, makefiles, template files -exclude: ["*.exe","*.o","Venus.f90","*.f","Makef*","*emplate.f90"] +exclude: ["*.exe","*.o","Venus.f90","*.f","Makef*","*emplate.f90","*Msis21.F90"] # Whitespace option 2 (check fprettify -h for info): whitespace: 2 diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 1ec0b67f..363ed3ae 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -8,17 +8,19 @@ and feedback from users. wish to contribute to GITM. Following these guidelines will ensure a positive experience for all involved. -## Outline - -- [Opening an Issue](#opening-an-issue) - - [Bug Report](#bug-report) - - [Feature Requests](#feature-requests) -- [Pull Requests](#pull-requests) - - [Committing Changes](#committing-changes) - - [Commit Styling](#commit-styling) -- [Code Formatting](#code-formatting) - - [Automatic/Validating Code Formatting](#automaticvalidating-code-formatting) - - [Style Guidelines \& `.fprettify.rc`](#style-guidelines--fprettifyrc) +- [Contributing Guidelines](#contributing-guidelines) + - [Opening an Issue](#opening-an-issue) + - [Bug Report](#bug-report) + - [Feature Requests](#feature-requests) + - [Pull Requests](#pull-requests) + - [Committing Changes](#committing-changes) + - [Commit Styling](#commit-styling) + - [Testing GITM](#testing-gitm) + - [Code Formatting](#code-formatting) + - [Automatic/Validating Code Formatting](#automaticvalidating-code-formatting) + - [Style Guidelines \& `.fprettify.rc`](#style-guidelines--fprettifyrc) + +--- ## Opening an Issue @@ -30,15 +32,15 @@ are creating and then modify the contents of the template to describe your issue ### Bug Report -If you notice a problkem with GITM and are unsure of how to fix it yourself, please +If you notice a problem with GITM and are unsure of how to fix it yourself, please create a bug report detailing the problem. The template has several optional sections, so read through them all before adding information to the wrong section. - **Do not open an issue for problems installing GITM on a specific system.** Since there is no way to predict all possible systems which GITM will be used on, details on specific systems cannot be provided. Try the steps in the [README](../README.md) first, -then reach out to #TODO if you need mroe help. -- Please include enough information to allow a maintainer to reproduce your bug +then reach out to the development team if you need more help. +- Please include enough information to allow a maintainer to reproduce your bug, only seeing the information in the bug report. Forgetting to attach input files or only saying "the code did not run on system X", for example, will result in a delay. - Check if another issue is open (or closed) with the same problem. Duplicate issues @@ -78,7 +80,7 @@ are working on a feature and notice an unrelated bug or typo, create a new branc `develop`, fix it, and submit the pull request separately. There is no harm in submitting many small pull requests! - **Document your changes**. If you are introducing a new feature, please include -a description of it and its uses in both the documentation (`docs/` folder) and +a description of it and its uses in both the documentation (`srcDoc/` folder) and in comments within the code. - **Include new tests**. If you are adding a new feature, please add a sample `UAM.in` file with this option enabled in the `srcTests/auto_test/` folder. We do not want future updates @@ -134,6 +136,19 @@ FEAT: Hydrostatic density implementation. Implemented hydrostatic density. (feature) ``` +## Testing GITM + +GITM has a number of tests that are maintained and run automatically on every +release & pull-request. To run these yourself, run the script `run_all_tests.sh` +from within `srcTests/auto_test`. New tests can be added by simply creating +another UAM.in file, and will be run automatically if the file matches the +pattern `UAM.in.*.test`. + +It is best practice to create tests as bugs are fixed. For example, if running +GITM in a certain configuration causes a crash, it is recommended to create a +test with this configuration which will help ensure the bug does not sneak back +in with future development. + ## Code Formatting GITM now uses a custom implementation of the diff --git a/.github/workflows/Format-Doc-Test.yml b/.github/workflows/Format-and-Test.yml similarity index 56% rename from .github/workflows/Format-Doc-Test.yml rename to .github/workflows/Format-and-Test.yml index 53108260..0a5e5b5e 100644 --- a/.github/workflows/Format-Doc-Test.yml +++ b/.github/workflows/Format-and-Test.yml @@ -26,7 +26,8 @@ jobs: pip install . - name: Clone GITM uses: actions/checkout@v4 - with: + with: + ref: ${{ github.event.pull_request.head.sha }} path: GITM - name: Format check entire GITM repository @@ -47,37 +48,34 @@ jobs: cd GITM python srcPython/format_GITM.py -l -s -v ${ALL_CHANGED_FILES} - Documentation: - runs-on: ubuntu-latest - name: Build Documentation - needs: [Format] - steps: - - name: Clone GITM repository - uses: actions/checkout@v4 - - name: Compile LaTeX document - uses: xu-cheng/latex-action@v3 - with: - root_file: manual.tex - working_directory: srcDoc - - name: Rename GITM Manual - run: mv srcDoc/manual.pdf GITM_manual.pdf - - name: Upload PDF file - uses: actions/upload-artifact@v3 - with: - name: PDF - path: GITM_manual.pdf - retention-days: 31 - Tests: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest] name: Run Automatic Tests - needs: [Format, Documentation] + needs: [Format] steps: - - name: Install MPI (mpich) - run: sudo apt update && sudo apt install -y mpich + - name: Linux install gfortran & openmpi + if: runner.os == 'Linux' + run: sudo apt update && sudo apt install -y libopenmpi-dev + - name: macOS install gfortran & openmpi + if: runner.os == 'macOS' + run: | + brew update + brew install gcc open-mpi + ln -s $(brew --prefix)/bin/gfortran-15 $(brew --prefix)/bin/gfortran - name: Clone GITM repository uses: actions/checkout@v4 - - name: Run tests in srcTests/auto_test + - name: Run tests on MacOS (no output checking, only one test) + if: runner.os == 'macOS' + run: | + ./Config.pl -install -earth -compiler=gfortran10 -debug + cd srcTests/auto_test + ./run_all_tests.sh --oversubscribe --nocompare -o UAM.in.00.default.test + - name: Run tests on Linux + if: runner.os == 'Linux' run: | + ./Config.pl -install -earth -compiler=gfortran10 -debug cd srcTests/auto_test - ./run_all_tests.sh + ./run_all_tests.sh --oversubscribe diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml deleted file mode 100644 index 4cb9ef5b..00000000 --- a/.github/workflows/build-docs.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Build Documentation - -on: - schedule: - # 0 minute, 0 hour, 1st day, every month, any day of week - - cron: '0 0 1 * *' - push: - branches: - main - -jobs: - build_documentation: - runs-on: ubuntu-latest - steps: - - name: Clone GITM repository - uses: actions/checkout@v4 - - name: Compile LaTeX document - uses: xu-cheng/latex-action@v3 - with: - root_file: manual.tex - working_directory: srcDoc - - name: Rename GITM Manual - run: mv srcDoc/manual.pdf GITM_manual.pdf - - name: Upload PDF file - uses: actions/upload-artifact@v4 - with: - name: PDF - path: GITM_manual.pdf - retention-days: 31 diff --git a/.gitignore b/.gitignore index 03f4f5fd..a77757fe 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,10 @@ util/EMPIRICAL/srcEE/Makefile.DEPEND util/EMPIRICAL/srcIE/Makefile.DEPEND util/EMPIRICAL/srcUA/Makefile.RULES util/NOMPI/src/Makefile.RULES + +ext/ +share/component_share +util/component_util + +src/.version +gitstatus.txt \ No newline at end of file diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..1e4ab3eb --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,15 @@ +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-24.04 + tools: + python: "3.12" + +mkdocs: + configuration: mkdocs.yml + +# Optionally declare the Python requirements required to build your docs +python: + install: + - requirements: srcDoc/requirements.txt diff --git a/Config.pl b/Config.pl index 96d96542..b1c98e8d 100755 --- a/Config.pl +++ b/Config.pl @@ -45,7 +45,7 @@ # Planet variables my $ModPlanet = "ModPlanet.f90"; -my $Planet; +my $Planet = "Earth"; #set earth to default my $PlanetOrig; my $NoFlush; @@ -67,6 +67,40 @@ warn "WARNING: Unknown flag $_\n" if $Remaining{$_}; } +# Git clone electrodynamics first! +# (this section will be replaced when GITM switches to the SWMF's share/) +if ($Install and not $IsCompGitm){ + # Get the new electrodynamics library! + + # Check if the above ran successfully + if( not -d "ext/Electrodynamics"){ + + my $command = "git clone git\@github.com:GITMCode/Electrodynamics.git ext/Electrodynamics"; + print "Attempting to clone GITMCode/Electrodynamics with ssh:\n\t> $command\n"; + my $exit_status = `$command`; + # If this fails, the script will *not* crash. Check if it was successful: + if ( -d "ext/Electrodynamics" ) { + print "Electrodynamics was cloned successfully!\n"; + } else { + warn "git clone with SSH failed. Trying HTTPS...\n"; + &shell_command("git clone https://github.com/GITMCode/Electrodynamics.git ext/Electrodynamics"); + # If this fails, the script will exit with an error message + } + } else { + print "ext/Electrodynamics already exists.\n"; + my $command = "git -C ext/Electrodynamics pull"; + my $exit_status = `$command`; + if (!$exit_status){ + print "\next/Electrodynamics could not be updated.\n"; + print "==> You may wish to 'git pull' from ext/Electrodynamics manually\n"; + print "Continuing config...\n" + } + } + my $command = "touch ext/Electrodynamics/src/Makefile.DEPEND"; + print "creating DEPEND file in electrodynamics:\n\t $command\n"; + my $exit_status = `$command`; +} + &modify_utilities if $NoFlush; &install_code if $Install; @@ -75,7 +109,7 @@ &set_planet if $Planet and $Planet ne $PlanetOrig; -&show_settings if $Show; +&show_settings_ if $Show; print "Config.pl -g=$GridSize\n" if $ShowGridSize and not $Show; @@ -156,12 +190,6 @@ sub install_code{ # Import the file copy function to avoid calls to system. use File::Copy; - - # if($IsCompGitm){ - # Move Util and Share: - # move('share', 'component_share'); - # move('util', 'component_util'); - # } return unless $Compiler =~ /ifort/ and $OS =~ /Linux/; # Unfix object list for Linux/ifort compiler (this is not kosher) @@ -226,7 +254,7 @@ sub set_planet{ chdir ".."; - &shell_command("cd srcData ; cp UAM.in.$Planet UAM.in"); + &shell_command("cd srcData ; cp $Planet/UAM.in.$Planet UAM.in"); if($Planet eq 'Earth'){ $nLon = 9; diff --git a/Makefile b/Makefile index 8b66be20..029597bc 100644 --- a/Makefile +++ b/Makefile @@ -3,21 +3,25 @@ default : GITM include Makefile.def -ABDIR = srcSphereAB -EIEDIR = ${EMPIRICALIEDIR} -EUADIR = ${EMPIRICALUADIR} -IODIR = ${DATAREADINDICESDIR} -MAINDIR = src -GLDIR = srcGlow -SAMIDIR = srcSAMI +ABDIR = ${UADIR}/srcSphereAB +EIEDIR = ${IEDIR} +EUADIR = ${EMPIRICALUADIR} +IODIR = ${DATAREADINDICESDIR} +MAINDIR = ${UADIR}/src +GLDIR = ${UADIR}/srcGlow +SAMIDIR = ${UADIR}/srcSAMI PLANET=earth +help: + @echo "GITM - make GITM.exe" + src/ModSize.f90: cp src/ModSize.f90.orig src/ModSize.f90 INSTALLFILES = src/Makefile.DEPEND \ src/Makefile.RULES \ + ${ABDIR}/Makefile.DEPEND \ srcInterface/Makefile.DEPEND install: src/ModSize.f90 @@ -32,14 +36,19 @@ NOMPI: @echo ${NOMPIDIR} @cd ${NOMPIDIR}; make LIB +VERSION: + ./share/Scripts/Makeversion.sh + @echo + GITM: - @cd ${SHAREDIR}; make LIB - @cd $(ABDIR); make LIB - @cd $(EIEDIR); make LIB - @cd ${EUADIR}; make LIB - @cd $(IODIR); make LIB - @cd $(GLDIR); make LIB - @cd $(MAINDIR); make GITM + @cd ${SHAREDIR}; echo "Entering ${SHAREDIR}"; make --no-print-directory LIB + @cd $(ABDIR); echo "Entering ${ABDIR}" ; make --no-print-directory LIB + @cd $(EIEDIR)/src; echo "Entering ${EIEDIR}/src"; make --no-print-directory SHARELIB + @cd ${EUADIR}; echo "Entering ${EUADIR}"; make --no-print-directory LIB + @cd $(IODIR); echo "Entering ${IODIR}"; make --no-print-directory LIB + @cd $(GLDIR); echo "Entering ${GLDIR}"; make --no-print-directory LIB + @echo "Creating version file:"; make --no-print-directory VERSION + @cd $(MAINDIR); make --no-print-directory GITM SAMI: @cd ${SHAREDIR}; make LIB MEM=-mcmodel=large @@ -61,7 +70,6 @@ LIB: cd $(GLDIR) ; make LIBPREV=${LIBDIR}/libSphere.a LIBADD cd $(MAINDIR) ; make LIBPREV=${GITM}/${GLDIR}/libUPTOGL.a LIB cd srcInterface ; make LIBPREV=${GITM}/${MAINDIR}/libUA.a LIB - make POST nompirun: make GITM @@ -69,28 +77,29 @@ nompirun: clean: @touch ${INSTALLFILES} - cd $(ABDIR); make clean - cd $(MAINDIR); make clean - cd $(GLDIR); make clean - cd srcInterface; make clean - if [ -d share ]; then cd share; make cleanall; fi; - if [ -d util ]; then cd util; make cleanall; fi; - if [ -d srcSAMI ]; then cd srcSAMI; make clean; fi; + cd $(ABDIR); make --no-print-directory clean + cd $(MAINDIR); make --no-print-directory clean + cd $(GLDIR); make --no-print-directory clean + cd srcInterface; make --no-print-directory clean + if [ -d share ]; then cd share; make --no-print-directory cleanall; fi; + if [ -d util ]; then cd util; make --no-print-directory cleanall; fi; + if [ -d srcSAMI ]; then cd srcSAMI; make --no-print-directory clean; fi; + if [ -d $(EIEDIR) ]; then cd $(EIEDIR); make --no-print-directory cleanall; fi; + if [ -f src/.version ]; then rm src/.version; fi distclean: + make clean ./Config.pl -uninstall allclean: @touch ${INSTALLFILES} - @cd $(ABDIR); make clean - @cd $(MAINDIR); make distclean - @cd srcInterface;make distclean + @cd $(ABDIR); make clean + @cd $(MAINDIR); make distclean + @cd srcInterface; make distclean rm -f *~ srcData/UAM.in # If util and share were moved because of GITM being # used in SWMF component mode, put them back. - if [ -d component_util ]; then mv component_util util; fi - if [ -d component_share ]; then mv component_share share; fi # # Create run directories @@ -105,18 +114,19 @@ rundir: ln -s restartOUT restartIN; \ ln -s ${UADIR}/srcSAMI/srcInputs ./input; \ fi - cd ${RUNDIR}; \ - if [ ! -e "EIE/README" ]; then \ - ln -s ${EMPIRICALIEDIR}/data EIE;\ - fi; - cd ${RUNDIR}; rm -f ./PostGITM.exe ; ln -s ${UADIR}/src/PostProcess.exe ./PostGITM.exe cd ${RUNDIR}/UA; \ - mkdir restartOUT data DataIn; \ - ln -s restartOUT restartIN; \ - ln -s ${UADIR}/src/pGITM .; \ - ln -s ${UADIR}/srcPython/pGITM.py .; \ - ln -s ${UADIR}/srcData/* DataIn; rm -f DataIn/CVS; \ - ln -s ${UADIR}/data/* DataIn; rm -f DataIn/CVS + mkdir -p restartOUT data DataIn; \ + ln -s restartOUT restartIN; \ + ln -s ${UADIR}/srcPython/post_process.py .; \ + ln -s ${UADIR}/srcData/* DataIn; rm -f DataIn/CVS; \ + ln -s ${UADIR}/data/* DataIn; rm -f DataIn/CVS; \ + ln -s ${EIEDIR}/data/ext extIE; \ + # For legacy postprocessor. If user has already run make POST, take those files: + cd ${RUNDIR} ; \ + if [ -e ${UADIR}/src/PostGITM.exe ]; then \ + ln -s ${UADIR}/src/PostGITM.exe .; \ + ln -s ${UADIR}/src/pGITM .; \ + fi cd ${RUNDIR} ; \ if [ -e ${BINDIR}/GITM.exe ]; then \ ln -s ${BINDIR}/GITM.exe . ; \ diff --git a/README.md b/README.md index be572f4b..0622b49e 100644 --- a/README.md +++ b/README.md @@ -5,81 +5,65 @@ This is the home of the Global Ionosphere/Thermosphere Model (GITM). GITM has been developed in fortran-90. It has been tested with gfortran on Linux and MacOS as well as ifort on NASA's Pleiades computer. -The latest version of the documentation can be accessed at: +For the complete documentation, see [GITM's Read the Docs Page](https://gitm.readthedocs.io). -[![Build Documentation](https://github.com/GITMCode/GITM/actions/workflows/build-docs.yml/badge.svg)](https://github.com/GITMCode/GITM/actions/workflows/build-docs.yml) - -
-GITM's default branch recently changed names. To access the latest features, please update your local refs. - -From your local clone of this repository, run the following commands to update the name of the default branch. - -```sh -git branch -m master main -git fetch origin -git branch -u origin/main main -git remote set-head origin -a -``` - -Optionally, run the following command to remove tracking references to the old branch name. - -```sh -git remote prune origin -``` - -
- -## Dependencies - -1. GITM needs MPI to work. +GITM's stable version is the main branch, which is downloaded by default. If you want the latest changes, but are ok with possibly unstable code, you can use the 'develop' version, which is described below. If you don't know what you are doing, please just use the main version (i.e., don't checkout a different branch). ## Quick Start +> GITM needs MPI to work properly. This can be installed with your system's package manager, or loaded as a `module` on an HPC system. +> See [the installation guide](https://gitm.readthedocs.io/en/latest/quick_start/#requirements) for more information. + 1\. Clone the repository and cd into the repo folder ```shell -git clone https://github.com/GITMCode/GITM +git clone git@github.com:GITMCode/GITM.git ``` +Substitute the URL with the `https` link from the "Code" button above if you do not have SSH keys set up. + 2\. Go into the repo directory ```shell cd GITM ``` -3\. Configure the Fortran compiler (version 10) - +(if you want/need to change to a different branch, do that here with the command: ```shell -./Config.pl -install -earth -compiler=gfortran10 +git checkout develop ``` +but, again, we don't recommend this unless you know what you are doing!) -The biggest issue with the above command is that it assumes that you -have the gfortran (version 10) compiler and things like mpif90 work -ok. If you don't have gfortran and mpif90, then you need to get these -things for your computer. If you have version 9 or before for gfortran, -you can do: - -3b\. Configure the Fortran compiler (version 9 or below) +3\. Configure the Fortran compiler and download the external electrodynamics library (the install should do this automagically): ```shell ./Config.pl -install -earth -compiler=gfortran ``` +The above command is that it assumes that you have a working gfortran compiler and +things like mpif90 work ok. If you don't have gfortran and mpif90, then you need +to get these things for your computer. + +> `Config.pl` should automatically determine your gfortran version since gfortran>=10 needs +> to use different compilation commands than versions 9 and below. +> If you notice that `Config.pl` does not detect the correct gfortran version, set +> `-compiler=gfortran` if you have gfortran <10 or `-compiler=gfortran10` for +> gfortran>=10 + In theory, Mars, Venus, Titan, and LV-426 should work. These are in various states of completion, so I wouldn't count on them being -perfect. +perfect. To configure with one of these, simple use the planet as +an option (like '-venus', instead of '-earth)'. -If running on Pleiades (as of March 3, 2022), you need to have these +If running on Pleiades, you need to have these in your start-up script (.cshrc, .bashrc, etc): ``` -module load comp-intel/2016.2.181 -module load mpi-hpe/mpt +module load comp-intel +module load mpi-hpe ``` -And you can use 3c below to configure the code. - -3c\. Configure for Pleiades +And you can use the below line below to configure the code: ```shell ./Config.pl -install -earth -compiler=ifort @@ -115,34 +99,36 @@ blocks with 9 x 9 cells each, so the default resolution is 180 (deg lat) / (2 \* 9) = 10 deg lat, by 360 (deg lon) / (2 \* 9) = 20 deg lon. See below for how to set the resolution. -8\. Go into the directory which contains many of the outputs: +8\. Post process the output files by running: ```shell -cd UA +./post_process.py ``` -9\. Post process the output files by running: +> This can be called from `run/` and will postprocess the files in UA/output. +> It has functionality to copy files to a remote location, monitor the +> output folder throughout a run, and more. Run `./post_process.py --help` to +> see available options. -```shell -./pGITM -``` +> The legacy postprocessors are still available, but are not built by default. To build +> PostProcess.exe, run `make POST`. The csh script can be found at `src/pGITM`. -10\. Go into the output directory: +9\. Go into the output directory: ```shell -cd data +cd UA/data ``` -11\. Make some plots with an old plotter: +10\. Make some plots with an old plotter: ```shell -../../../srcPython/plot_model_results.py -var=3 -alt=120 3DALL_t021221_000500.bin +../../../srcPython/plot_model_results.py -var=3 -alt=300 3DALL_t021221_000500.bin ``` Then look at the png file that is created. You can use a `-h` to see how to run this code. -11b\. A more advanced plotter is available through aetherpy. This is a bit more +10b\. A more advanced plotter is available through aetherpy. This is a bit more complicated, since you need to install aetherpy. If you don't use python much, this is harder. Here is how to do this: @@ -165,7 +151,7 @@ git checkout develop python setup.py develop --user ``` -11c\. Test out the new plotter: +10c\. Test out the new plotter: ```shell cd @@ -198,7 +184,9 @@ team. For example: NCAR. The IGRF code that comes with it is also not developed at UM. 2. Many electrodynamics models (Weimer, Newell's Ovation Prime, -Mitchell's Ovation SME, others in the util/EMPIRICAL/srcIE directory). +Mitchell's Ovation SME, others in the +[GITMCode/Electrodynamics](https://github.com/GITMCode/Electrodynamics) +repository). 3. MSIS and IRI, which are in util/EMPIRICAL/srcUA. MSIS is used as a lower BC at Earth and was developed at NRL. IRI is used to initialize @@ -226,3 +214,7 @@ processors, you can change the parameters in `src/ModSize.f90` and adjust the number of cells in each block to compensate. For example, you have 8 processors, so you can adjust `src/ModSize.f90` to have 18 cells in lat and lon, then ask for 2 (lat) x 4 (lon) blocks to get 5 deg x 5 deg resolution. + +See the +[grid page](https://gitm.readthedocs.io/en/latest/grid/#horizontal-resolution) +in the documentation for more details and some examples. diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 00000000..3636d51f --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,90 @@ +site_name: GITM +site_url: https://gitm.readthedocs.io +site_description: >- + Official documentation for the Global Ionosphere Thermosphere Model (GITM) +repo_name: GITMCode/GITM +repo_url: https://github.com/GITMCode/GITM + +theme: + # name: readthedocs + # name: mkdocs + name: material + icon: + logo: material/earth + repo: material/github + + features: + - navigation.tabs + - navigation.tabs.sticky + - navigation.footer + - toc.integrate + - content.code.annotate + - content.code.copy + + palette: + # Palette toggle for automatic mode + - media: "(prefers-color-scheme)" + toggle: + icon: material/brightness-auto + name: Switch to light mode + + # Palette toggle for light mode + - media: "(prefers-color-scheme: light)" + scheme: default + toggle: + icon: material/brightness-7 + name: Switch to dark mode + + # Palette toggle for dark mode + - media: "(prefers-color-scheme: dark)" + scheme: slate + toggle: + icon: material/brightness-4 + name: Switch to system preference + +plugins: + - search # allow for search after being built + - mermaid2: # cool diagrams + javascript: js/mermaid.min.js # local path to mermaid javascript file + +markdown_extensions: + - pymdownx.extra #footnotes, abbreviations, tables, definitions, etc. + - pymdownx.fancylists # lists continuing after breaking for indentation + - pymdownx.saneheaders #allows for "#text" to not be parsed as a header + - pymdownx.tasklist + - markdown_katex # math + - admonition # note, warning, etc. blocks + - markdown_del_ins # strike-through & insert + - markdown_captions # figure captions. + - pymdownx.superfences: + # make exceptions to highlighting of code: + custom_fences: + - name: mermaid + class: mermaid + format: !!python/name:mermaid2.fence_mermaid + +docs_dir: srcDoc + +nav: + - Home: index.md + - Getting Started: install.md + - Inputs: + - Common Inputs: common_inputs.md + - All Inputs: set_inputs.md + - Outputs: + - Postprocessing: postprocessing.md + - Available Outputs: outputs.md + - Plotting Outputs: plotters.md + - Internals: + - Overview: internals/overview.md + - Grid: internals/grid.md + - Earth Chemistry: internals/chemistry.md + - Electrodynamics: internals/electrodynamics.md + - Development: + - Site Information: devstuff/devhome.md + - Contributing: https://github.com/GITMCode/GITM/blob/main/.github/CONTRIBUTING.md + - GITM Developers: https://github.com/GITMCode/GITM/graphs/contributors + - Markdown Reference: devstuff/markdown_ref.md + - GITM Outline: devstuff/outline.md + - Other Useful Links: devstuff/somelinks.md + - Getting Help: FAQ/faq.md diff --git a/share/Library/src/Makefile b/share/Library/src/Makefile index 69ac4c16..36809b0f 100644 --- a/share/Library/src/Makefile +++ b/share/Library/src/Makefile @@ -65,7 +65,7 @@ LIB: DEPEND @echo ${MY_LIB}: ${MODULES} - rm -f ${MY_LIB} + @rm -f ${MY_LIB} ${AR} ${MY_LIB} ${MODULES} distclean: clean diff --git a/share/Scripts/Config.pl b/share/Scripts/Config.pl index f825b4cd..ef96d774 100755 --- a/share/Scripts/Config.pl +++ b/share/Scripts/Config.pl @@ -433,6 +433,18 @@ sub install_code_{ &shell_command("echo COMPILER=$Compiler >> $MakefileDef"); &shell_command("cat $MakefileDefOrig >> $MakefileDef"); + # Check gfortran version and automatically select gfortran10 if >= 10 + if ($Compiler eq 'gfortran') { + my $version_output = `gfortran --version 2>/dev/null | head -n1`; + if ($version_output =~ /(\d+)\.\d+\.\d+/) { + my $major_version = $1; + if ($major_version >= 10) { + $Compiler = 'gfortran10'; + } + print "Detected gfortran version $major_version, using $Compiler makefile\n"; + } + } + my $Makefile = "$MakefileConfOrig.$OS.$Compiler"; if(-f $Makefile){ &shell_command("cat $Makefile > $MakefileConf"); diff --git a/share/Scripts/Makeversion.sh b/share/Scripts/Makeversion.sh new file mode 100755 index 00000000..8fde3ecd --- /dev/null +++ b/share/Scripts/Makeversion.sh @@ -0,0 +1,76 @@ +#!/bin/bash + +# This file writes some 'version' info about GITM to a file +# The file is located in src/.version and is compiled into GITM. +# This info is then written out to run_information.txt. + +## Function we call if .git folder exists, and $(git status) has changed from last time +writegitversion(){ + # This is the float-type version placed in output files + # Format is (date of last commit).(# of files changed from HEAD) + printf 'character(25), parameter :: GitmVersion = & \n "%s.%s"\n' \ + "$(git log -1 --date=format:'%Y%m%d' --pretty='format:%ad')" \ + "$(git status --porcelain | grep -v '^??' | wc -l | cut -f1 -d' ')" > src/.version + + + # The "GitmVersionFull" variable has info about the last commit hash in addition to above + printf '\ncharacter(50), parameter :: GitmVersionFull = "%s_%s.%s"\n\n' \ + "$(git rev-parse --abbrev-ref HEAD)" \ + "$(git log -1 --date=format:'%Y%m%d' --pretty='format:%h-%ad')" \ + "$(git status --porcelain | grep -v '^??' | wc -l | cut -f1 -d' ')" >> src/.version + + # Same as above, but for Electrodynamics + printf '\ncharacter(50), parameter :: ElectrodynamicsVersionFull = "%s_%s.%s"\n\n' \ + "$(git -C ext/Electrodynamics rev-parse --abbrev-ref HEAD)" \ + "$(git -C ext/Electrodynamics log -1 --date=format:'%Y%m%d' --pretty='format:%h-%ad')" \ + "$(git -C ext/Electrodynamics status --porcelain | grep -v '^??' | wc -l | cut -f1 -d' ')" \ + >> src/.version + + + # Here, for completeness, all of the changes files are listed. + printf 'character(*), parameter :: DifferentFilesGitm = &\n"' >> src/.version + + files=$(git status --porcelain | awk '{print $NF}') + for file in $files; do + echo "$file,&" >> src/.version + done + echo '"'>> src/.version + + printf 'character(*), parameter :: DifferentFilesElectrodyunamics = &\n"' >> src/.version + + files=$(git -C ext/Electrodynamics status --porcelain | awk '{print $NF}') + for file in $files; do + echo "$file,&" >> src/.version + done + echo '"'>> src/.version +} + +################ +## MAIN ## +################ + +if [ -d .git ]; then # Check if .git/ directory exists + + # check to see if git status has changed, saves time compiling if not + nFilesDiff=$(git status --porcelain | wc -l) + if [ -f gitstatus.txt ]; then + nFilesPrev=$(wc -l < gitstatus.txt) + else # Our first time here... + nFilesPrev=0 + fi + + if [ $nFilesDiff == $nFilesPrev ] && [ -f src/.version ]; then + echo "Version has not changed since last compile: $(head -n 2 src/.version | tail -n 1)" + exit 0 + else + writegitversion + git status --porcelain > gitstatus.txt + echo "Writing GITM version to file: $(head -n 2 src/.version | tail -n 1)" + + fi + +else # if .git/ does not exist, this is probably a release + cp version.def src/.version + echo "Wrote version file for GITM: $(head -n 2 src/.version | tail -n 1)" +fi + diff --git a/src/Makefile b/src/Makefile index d2c8971d..0c6b863c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,11 +2,7 @@ ABDIR = ${UADIR}/srcSphereAB IODIR = ${DATAREADINDICESDIR} GLDIR = ${UADIR}/srcGlow SAMIDIR = ${UADIR}/srcSAMI - -SEARCH_EXTRA = -I${ABDIR} \ - -I${IODIR} \ - -I${EMPIRICALUADIR} \ - -I${EMPIRICALIEDIR} +EIEDIR = ${IEDIR}/lib include ../Makefile.conf include ../Makefile.def @@ -14,24 +10,25 @@ include ../Makefile.def include Makefile.DEPEND include Makefile.RULES +SEARCH_EXTRA = -I${ABDIR} \ + -I${IODIR} \ + -I${EMPIRICALUADIR} \ + -I${EIEDIR} + MODULES = \ apexsh.o\ - ModAeAuroralModel.o\ ModApex.o\ ModChemistry.o\ ModConstants.o\ ModEUV.o\ ModElectrodynamics.o\ - ModFtaModel.o\ ModGITM.o\ ModGITMImplicit.o\ ModHwm14.o\ ModInputs.o\ ModLimiter.o\ ModMagTrace.o\ - ModNewell.o\ ModOrbital.o\ - ModOvationSME.o\ ModPlanet.o\ ModRates.o\ ModRCMR.o \ @@ -46,7 +43,8 @@ MODULES = \ ModTimingGITM.o\ ModUser.o \ ModVertical.o\ - ModHmeModel.o + ModHmeModel.o\ + ModGITMVersion.o OBJECTS = \ @@ -75,7 +73,7 @@ OBJECTS = \ calc_tec.o \ calc_timestep.o\ calc_viscosity.o\ - chapman_new.o\ + chapman.o\ check_for_nans.o\ divergence.o\ exchange_messages_sphere.o\ @@ -87,7 +85,6 @@ OBJECTS = \ initialize.o\ init_altitude.o\ init_b0.o\ - init_energy_deposition.o\ init_grid.o\ init_iri.o\ init_mpi.o\ @@ -120,7 +117,6 @@ OBJECTS = \ time_routines.o\ timing.o\ user.o \ - vertical_solver.o\ vertical_solver_ausm.o\ vertical_solver_rusanov.o\ write_output.o @@ -145,34 +141,34 @@ EXE = ${BINDIR}/GITM.exe SAMIEXE = ${BINDIR}/GITMSAMI.exe GITM: DEPEND + @rm -f GITM.exe @make ${EXE} - @make POST + @echo @echo "${EXE} has been created" + @echo + +${EXE}: ${OBJECTS_EXE} + ${LINK.f90} -o ${EXE} ${OBJECTS_EXE} \ + -L${ABDIR} -lSphere \ + -L${LIBDIR} -lEMPIRICALUA -lINDICES -lSHARE \ + -L${EIEDIR} -lIE \ + -L${GLDIR} -lGLOW ${LBLAS} ${Lflag1} SAMI: DEPENDSAMI @make ${SAMIEXE} - @make POST @echo "${SAMIEXE} has been created" ${SAMIEXE}: ${OBJECTS_SAMI} ${LINK.f90} -o ${SAMIEXE} ${OBJECTS_SAMI} \ - -L${LIBDIR} -lSphere \ - -L${LIBDIR} -lEMPIRICALIE -lEMPIRICALUA -lINDICES -lSHARE \ + -L${ABDIR} -lSphere \ + -L${IEDIR} -lIE \ + -L${LIBDIR} -lEMPIRICALUA -lINDICES -lSHARE \ -L${GLDIR} -lGLOW ${LBLAS} \ -L${SAMIDIR}/src -lSAMI3 \ ${Lflag1} -${EXE}: ${OBJECTS_EXE} - make GITM_general - -GITM_general: - ${LINK.f90} -o ${EXE} ${OBJECTS_EXE} \ - -L${LIBDIR} -lSphere \ - -L${LIBDIR} -lEMPIRICALIE -lEMPIRICALUA -lINDICES -lSHARE \ - -L${GLDIR} -lGLOW ${LBLAS} ${Lflag1} - POST: PostProcess.o - ${LINK.f90} ${Lflag2} -o PostProcess.exe PostProcess.o + ${LINK.f90} ${Lflag2} -o PostGITM.exe PostProcess.o MY_LIB = libGITM.a @@ -183,13 +179,10 @@ LIB: DEPEND @echo ${MY_LIB}: ${LIBPREV} ${MF} ${MODULES} ${OBJECTS} - cp -f ${LIBPREV} ${MY_LIB} + mv -f ${LIBPREV} ${MY_LIB} ${AR} ${MY_LIB} ${OBJECTS} ${MODULES} -clean: - rm -f *~ core *.o *.mod fort.* a.out *.exe *.a *.so *.protex - distclean: clean rm -f ModSize.f90 \ ModPlanet.f90 \ diff --git a/src/Makefile.RULES.all b/src/Makefile.RULES.all index 70c1f6b8..41a89bf7 100644 --- a/src/Makefile.RULES.all +++ b/src/Makefile.RULES.all @@ -9,4 +9,5 @@ $OS eq "Darwin" and $Compiler eq "f95" $OS eq "Darwin" and $Compiler eq "nagfor" ${COMPILE.f90} ${Cflag0} read_NGDC_Indices_new.f90 - ${COMPILE.f90} ${Cflag0} read_NOAAHPI_Indices_new.f90 \ No newline at end of file + ${COMPILE.f90} ${Cflag0} read_NOAAHPI_Indices_new.f90 + ${COMPILE.f90} ${Cflag0} read_f107.f90 diff --git a/src/ModAeAuroralModel.f90 b/src/ModAeAuroralModel.f90 deleted file mode 100644 index 3a2d0806..00000000 --- a/src/ModAeAuroralModel.f90 +++ /dev/null @@ -1,153 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -module ModAeAuroralModel - - implicit none - - integer, parameter :: nMlts = 96 - integer, parameter :: nMLats = 19 - integer, parameter :: nLevels = 7 - - integer, parameter :: MaxAe = 350 - integer, parameter :: AeBinSize = 50 - - real, dimension(nMLats) :: mlts - real, dimension(nLevels, nMlts, nMLats) :: mLats, eFlux, AveE - - character(len=*), parameter :: cDirectory = "UA/DataIn/Aurora/" - - character(len=*), parameter :: cFileStart = "AE_" - character(len=*), parameter :: cFileEnd = ".old.dat" - -contains - - ! ------------------------------------------------------------------------ - ! ------------------------------------------------------------------------ - - subroutine run_ae_model(GitmCurrentTime, iBlock) - - use ModSizeGITM - use ModGITM - use ModInputs - - use ModKind, ONLY: Real8_ - use ModIndicesInterfaces - - real(Real8_), intent(in) :: GitmCurrentTime - integer, intent(in) :: iBlock - - logical :: IsFirstTime = .true. - - integer :: iError, iAe, iMLat, i, iLat, iLon, iMlt - real :: ae, gMlat, mindist - real :: dist(nMLats) - - call start_timing("run_ae_model") - - if (IsFirstTime) then - iError = 0 - IsFirstTime = .false. - endif - - call get_ae(GitmCurrentTime + TimeDelayHighLat, ae, iError) - - if (ae > MaxAe) ae = MaxAe - iAe = ae/AeBinSize - - ElectronEnergyFlux = 0.01 - ElectronAverageEnergy = 0.1 - - do iLon = -1, nLons + 2 - do iLat = -1, nLats + 2 - - iMlt = mod(floor(mod(MLT(iLon, iLat, nAlts + 1) + 24.0, 24.0)*4), nMlts) - if (iMlt == 0) iMlt = nMlts - - gMlat = abs(MLatitude(iLon, iLat, nAlts + 1, iBlock)) - - if (gMlat >= mLats(iAe, iMlt, 1) .and. & - gMlat <= mLats(iAe, iMlt, nMlats)) then - - dist = abs(gMlat - mLats(iAe, iMlt, :)) - mindist = minval(dist) - ! use minloc? - iMLat = 1 - do i = 1, nMlats - if (dist(i) == mindist) iMLat = i - enddo - - ElectronEnergyFlux(iLon, iLat) = eFlux(iAe, iMlt, iMlat) - ElectronAverageEnergy(iLon, iLat) = AveE(iAe, iMlt, iMlat) - - endif - - enddo - - enddo - - call end_timing("run_ae_model") - - end subroutine run_ae_model - - ! ------------------------------------------------------------------------ - ! ------------------------------------------------------------------------ - - subroutine read_ae_model_files(iError) - - use ModInputs - - integer, intent(out) :: iError - - integer :: ae, iAe, iLat, iMlt - - character(len=3) :: cAe1, cAe2 - character(len=iCharLen_) :: cFile - character(len=iCharLen_) :: cDummyLine - logical :: IsThere - - do ae = 0, MaxAe, AeBinSize - - iAe = ae/AeBinSize - call i2s(ae, cAe1, 3) - call i2s(ae + AeBinSize, cAe2, 3) - cFile = cDirectory//cFileStart//cAe1//"_"//cAe2//cFileEnd - - inquire(file=cFile, EXIST=IsThere) - if (.not. IsThere) then - write(*, *) cFile//" cannot be found by read_ovationsm_files" - call stop_gitm("must stop!!!") - endif - - iError = 0 - - open(iInputUnit_, file=cFile, status="old", iostat=iError) - - ! Read in the header: - read(iInputUnit_, *, iostat=iError) cDummyLine - - ! Read in mlts, only once: - read(iInputUnit_, *, iostat=iError) mlts - - ! Read in mlats for all bins: - do iLat = 1, nMLats - read(iInputUnit_, *, iostat=iError) mlats(iAe, :, iLat) - enddo - - ! Read in eflux for all bins: - do iLat = 1, nMLats - read(iInputUnit_, *, iostat=iError) eFlux(iAe, :, iLat) - enddo - - ! Read in avee for all bins: - do iLat = 1, nMLats - read(iInputUnit_, *, iostat=iError) AveE(iAe, :, iLat) - enddo - - enddo - - close(iInputUnit_) - - end subroutine read_ae_model_files - -end module ModAeAuroralModel diff --git a/src/ModEUV.f90 b/src/ModEUV.f90 index 61a96580..7bb892e6 100644 --- a/src/ModEUV.f90 +++ b/src/ModEUV.f90 @@ -68,7 +68,7 @@ module ModEUV real, dimension(Num_WaveLengths_High, nSeeLinesMax) :: SeeFlux real, dimension(nSeeLinesMax) :: TimeSee - real, dimension(nFlaresMax) :: FlareTimes + real, dimension(nFlaresMax) :: FlareTimes = 0 logical :: ReReadEUVFile = .false. character(len=iCharLen_) :: cRidleyEUVFile = 'UA/DataIn/waves.dat' @@ -893,7 +893,11 @@ module ModEUV 0.40e-18, 0.20e-18, 0.08e-18, 0.01e-18, 0.00e-18, 0.00e-18, & 0.00e-18, 0.00e-18, 0.00e-18, 0.00e-18, 0.00e-18/ -! sigio + !initialize this for nagfor, otherwise it's all nan + data PhotoIon_CO/ & + 59*0.0/ + + ! sigio data Photoionization_O/ & 0.00e+00, 0.00e+00, 0.00e+00, 0.00e+00, 0.00e+00, 1.32e-18, & 4.55e-18, 3.50e-18, 5.09e-18, 3.75e-18, 3.89e-18, 4.00e-18, & diff --git a/src/ModElectrodynamics.f90 b/src/ModElectrodynamics.f90 index 077fefcc..539ef721 100644 --- a/src/ModElectrodynamics.f90 +++ b/src/ModElectrodynamics.f90 @@ -4,6 +4,7 @@ module ModElectrodynamics use ModSizeGitm + use ModIE ! This is the divergence of the Neutral wind current real, dimension(-1:nLons + 2, -1:nLats + 2, 1:nAlts) :: DivJu @@ -90,4 +91,11 @@ module ModElectrodynamics real :: SigmaR(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3, 3) + ! -------------------------------------------------------------------- + ! For ext/Electrodynamics + ! -------------------------------------------------------------------- + + logical :: didInitGetPotential = .false. + type(ieModel), allocatable :: IEModel_ + end module ModElectrodynamics diff --git a/src/ModFtaModel.f90 b/src/ModFtaModel.f90 deleted file mode 100644 index 109d4f00..00000000 --- a/src/ModFtaModel.f90 +++ /dev/null @@ -1,479 +0,0 @@ -module ModFTAModel - - implicit none - - integer, parameter :: iCharLenFta_ = 100 - integer, parameter :: iCharLenLong_ = 1500 - character(len=iCharLenFta_) :: dir = "UA/DataIn/Aurora/FTA/" - - integer, parameter :: nMltsFta = 96 - integer, parameter :: nEnergies = 21 - integer, parameter :: nParams = 43 - - ! For interpolation grid: - - integer, parameter :: nLatsFta = 80 - real, parameter :: minLat = 50.0 - real :: dLat = (90.0 - minLat)/nLatsFta - real :: dMlt = 24.0/nMltsFta - real, dimension(nLatsFta) :: lats_fixed_grid - - integer, parameter :: LunFta_ = 73 - - character(len=10) :: emissions(2) - - real, dimension(nMltsFta, nEnergies, 2):: & - kk_lat, kb_lat, bk_lat, bb_lat, & - kk_ef, kb_ef, bk_ef, bb_ef, & - kk_lat2, kb_lat2, kk_ef2, kb_ef2 - - real :: AL_split = 500.0 - -contains - - ! ------------------------------------------------------------------------ - ! ------------------------------------------------------------------------ - - subroutine run_fta_model(GitmCurrentTime, iBlock) - - use ModSizeGITM - use ModGITM - use ModInputs - - use ModKind, ONLY: Real8_ - use ModIndicesInterfaces - - real(Real8_), intent(in) :: GitmCurrentTime - integer, intent(in) :: iBlock - - logical :: IsFirstTime = .true. - - integer :: iError, iAe, iMLat, i, iLat, iLon, iMlt - real :: au, al, ae, gMlat, mindist - character(len=10) :: emis_type - - real, dimension(nMltsFta, nEnergies) :: mlats0_l, efs0_l, mlats0_s, efs0_s - real, dimension(nMltsFta, nLatsFta) :: lbhl, lbhs, avee, eflux - - call start_timing("run_fta_model") - - if (IsFirstTime) then - iError = 0 - IsFirstTime = .false. - endif - - call get_ae(GitmCurrentTime + TimeDelayHighLat, ae, iError) - call get_au(GitmCurrentTime + TimeDelayHighLat, au, iError) - call get_al(GitmCurrentTime + TimeDelayHighLat, al, iError) - - ! ------------------------------------------------------------------------------ - ! Limits of FTA model: - ! If AL is greater (less) than -25 (-1200) nT, AL is equal to -25 (-1200) nT; - ! If AU is less than 25 nT or 0.12*|AL|, AU is equal to the larger value of them; - ! If AU is greater than 400 nT, AU is equal to 400 nT. - ! ------------------------------------------------------------------------------ - - if (al > -25.0) al = -25.0 - if (al < -1200.0) al = -1200.0 - if (au < 0.12*abs(al)) au = 0.12*abs(al) - if (au < 25.0) au = 25.0 - if (au > 400.0) au = 400.0 - ae = au - al - - emis_type = 'lbhl' - call calc_emission_pattern(au, al, emis_type, mlats0_l, efs0_l) - - emis_type = 'lbhs' - call calc_emission_pattern(au, al, emis_type, mlats0_s, efs0_s) - - call calc_full_patterns(mlats0_l, efs0_l, mlats0_s, efs0_s, & - lbhl, lbhs, eflux, avee) - - ElectronEnergyFlux = 0.01 - ElectronAverageEnergy = 0.1 - - do iLon = -1, nLons + 2 - do iLat = -1, nLats + 2 - - iMlt = mod(floor(mod(MLT(iLon, iLat, nAlts + 1) + 24.0, 24.0)*4), nMltsFta) - if (iMlt == 0) iMlt = nMltsFta - - gMlat = abs(MLatitude(iLon, iLat, nAlts + 1, iBlock)) - if (gMlat > minLat) then - iMlat = (gMlat - minLat)/dLat - if (iMlat == 0) iMlat = nLatsFta - ElectronEnergyFlux(iLon, iLat) = eFlux(iMlt, iMlat) - ElectronAverageEnergy(iLon, iLat) = AveE(iMlt, iMlat) - endif - - enddo - enddo - - call end_timing("run_fta_model") - - end subroutine run_fta_model - - ! ----------------------------------------------------------------- - ! Generic reading of a file - ! ----------------------------------------------------------------- - - subroutine read_coef_file(NameOfIndexFile, tmp2) - - implicit none - - integer :: LunIndices_, ierror - character(len=*), intent(in) :: NameOfIndexFile - character(len=iCharLenLong_) :: line - - logical :: done - integer :: ipt - DOUBLE PRECISION, dimension(nParams, nMltsFta) :: tmp - DOUBLE PRECISION, dimension(nMltsFta, nParams), intent(out) :: tmp2 - - LunIndices_ = LunFta_ - - tmp2 = 0.0 - open(LunIndices_, file=NameOfIndexFile, status="old", iostat=ierror) - - if (ierror .ne. 0) then - write(*, *) "Could not find file : ", NameOfIndexFile - return - endif - - done = .false. - - ipt = 1 - do while (.not. done) - - if (ipt < 9) then - read(LunIndices_, '(a)', iostat=ierror) line - if (ierror .ne. 0) done = .true. - else - - done = .true. - endif - - ipt = ipt + 1 - - enddo - - read(LunIndices_, *) tmp - - tmp2 = transpose(tmp) - - close(LunIndices_) - - end subroutine read_coef_file - - ! ----------------------------------------------------------------- - ! Read all of the files for the FTA model - ! ----------------------------------------------------------------- - - subroutine load_coef(DataDir, emis_type, k_k, k_b, b_k, b_b, k_k2, k_b2) - - implicit none - - double precision, dimension(nMltsFta, nParams) :: k_k, k_b, k_k2, k_b2 - double precision, dimension(nMltsFta, nParams) :: b_k, b_b, tmp2 - character(len=10) :: param, forder - character(len=10) :: emis_type - character(len=iCharLenFta_) :: NameOfIndexFile, DataDir - integer :: i - - forder = 'r1' - param = 'k_k' - NameOfIndexFile = & - trim(DataDir)// & - 'fit_coef_21bins_'//trim(emis_type)// & - '_'//trim(forder)//'_'//trim(param)//'.txt' - call read_coef_file(NameOfIndexFile, tmp2) - k_k = tmp2 - - forder = 'r1' - param = 'k_b' - NameOfIndexFile = trim(DataDir)//'fit_coef_21bins_'//trim(emis_type)// & - '_'//trim(forder)//'_'//trim(param)//'.txt' - call read_coef_file(NameOfIndexFile, tmp2) - k_b = tmp2 - - forder = 'r1' - param = 'b_k' - NameOfIndexFile = trim(DataDir)//'fit_coef_21bins_'//trim(emis_type)// & - '_'//trim(forder)//'_'//trim(param)//'.txt' - call read_coef_file(NameOfIndexFile, tmp2) - b_k = tmp2 - - forder = 'r1' - param = 'b_b' - NameOfIndexFile = trim(DataDir)//'fit_coef_21bins_'//trim(emis_type)// & - '_'//trim(forder)//'_'//trim(param)//'.txt' - call read_coef_file(NameOfIndexFile, tmp2) - b_b = tmp2 - - forder = 'r2' - param = 'k_k' - !NameOfIndexFile = trim(DataDir)//'fit_coef_21bins_'//trim(emis_type)// & - ! '_'//trim(forder)//'_'//trim(param)//'.txt' - NameOfIndexFile = trim(DataDir)//'fit_coef_21bins_'//trim(emis_type)// & - '_'//trim(forder)//'_'//trim(param)//'_log_4p.txt' - call read_coef_file(NameOfIndexFile, tmp2) - k_k2 = tmp2 - - forder = 'r2' - param = 'k_b' - !NameOfIndexFile = trim(DataDir)//'fit_coef_21bins_'//trim(emis_type)// & - ! '_'//trim(forder)//'_'//trim(param)//'.txt' - NameOfIndexFile = trim(DataDir)//'fit_coef_21bins_'//trim(emis_type)// & - '_'//trim(forder)//'_'//trim(param)//'_log_4p.txt' - call read_coef_file(NameOfIndexFile, tmp2) - k_b2 = tmp2 - - end subroutine load_coef - - ! ----------------------------------------------------------------- - ! Feed in the lats & results of one MLTs of the FTA model and - ! get back the results on a given latitude grid - ! ----------------------------------------------------------------- - - subroutine interp_to_lat_grid(mlat0, efs0, efs) - - implicit none - real, dimension(nLatsFta):: mlat, efs - real, dimension(nEnergies):: mlat0, efs0 - real, dimension(:), allocatable :: tmp - integer, dimension(:), allocatable :: idxt, idxt2 - - logical, dimension(nEnergies) :: lp - logical, dimension(nLatsFta) :: lp1 - integer, dimension(nLatsFta) :: idx - real :: tmp1 - integer :: i, ii, nn - - mlat = lats_fixed_grid - - do i = 1, nLatsFta - - lp = ((mlat0 > (mlat(i) - dLat/2)) .and. (mlat0 <= (mlat(i) + dLat/2))) - - if (count(lp) == 1) then - allocate(tmp(count(lp))) - tmp = pack(efs0, lp) - efs(i) = tmp(1) - deallocate(tmp) - else if (count(lp) > 1) then - allocate(tmp(count(lp))) - tmp = pack(efs0, lp) - efs(i) = sum(tmp)/count(lp) - deallocate(tmp) - else - efs(i) = 0 - endif - enddo - - idx = (/(i, i=1, nLatsFta, 1)/) - lp1 = efs > 0 - nn = count(lp1) - allocate(idxt(nn)) - - idxt = pack(idx, lp1) - - allocate(idxt2(size(idxt))) - - do i = idxt(1) + 1, idxt(nn) - 1 - if (efs(i) == 0) then - idxt2 = pack(idxt, idxt > i) - ii = idxt2(1) - efs(i) = (efs(i - 1) - efs(ii))*(i - ii)/(i - 1 - ii) + efs(ii) - endif - enddo - - deallocate(idxt) - deallocate(idxt2) - - end subroutine interp_to_lat_grid - - ! ----------------------------------------------------------------- - ! Read in all of the data files and store the data to be used later - ! ----------------------------------------------------------------- - - subroutine initialize_fta - - double precision, dimension(nMltsFta, nParams) :: & - k_k, k_b, b_k, b_b, k_k2, k_b2, tmp2 - - integer, dimension(nEnergies) :: idx1, idx2 - integer :: i - - idx1 = (/(i, i=2, nParams - 1, 2)/) - idx2 = (/(i, i=3, nParams, 2)/) - - emissions(1) = 'lbhl' - emissions(2) = 'lbhs' - - do i = 1, 2 - call load_coef(dir, emissions(i), k_k, k_b, b_k, b_b, k_k2, k_b2) - - kk_lat(:, :, i) = k_k(:, idx1) - kb_lat(:, :, i) = k_b(:, idx1) - bk_lat(:, :, i) = b_k(:, idx1) - bb_lat(:, :, i) = b_b(:, idx1) - - kk_ef(:, :, i) = k_k(:, idx2) - kb_ef(:, :, i) = k_b(:, idx2) - bk_ef(:, :, i) = b_k(:, idx2) - bb_ef(:, :, i) = b_b(:, idx2) - - kk_lat2(:, :, i) = k_k2(:, idx1) - kb_lat2(:, :, i) = k_b2(:, idx1) - - kk_ef2(:, :, i) = k_k2(:, idx2) - kb_ef2(:, :, i) = k_b2(:, idx2) - enddo - - lats_fixed_grid = (/(i, i=0, nLatsFta - 1, 1)/)*dLat + minLat + dLat/2.0 - - end subroutine initialize_fta - - ! ----------------------------------------------------------------- - ! Create MLT x Energy map for a given emission and AU/AL - ! ----------------------------------------------------------------- - - subroutine calc_emission_pattern(AUs, ALs_n, emis_type, mlat_p, ef_p) - - implicit none - real, intent(in) :: AUs, ALs_n - real :: ALs - real, dimension(nMltsFta, nEnergies):: cf_b_lat, cf_k_lat, cf_b_ef, cf_k_ef, & - mlat_p, ef_p, mlat_b0, ef_b0, & - cf_k_lat2, cf_k_ef2 - - integer :: i - character(len=10) :: emis_type - - integer :: iEmission = 0 - integer :: iMlt, iEngergy - - do i = 1, 2 - if (trim(emis_type) == trim(emissions(i))) iEmission = i - enddo - - if (iEmission == 0) then - write(*, *) "Cant find emission : ", emis_type, " in emissions" - write(*, *) "must stop" - stop - endif - - ALs = -ALs_n - - if (ALs < AL_Split) then - - cf_b_lat = bb_lat(:, :, iEmission) + bk_lat(:, :, iEmission)*AUs - cf_k_lat = kb_lat(:, :, iEmission) + kk_lat(:, :, iEmission)*log(AUs) - - cf_b_ef = bb_ef(:, :, iEmission) + bk_ef(:, :, iEmission)*AUs - cf_k_ef = kb_ef(:, :, iEmission) + kk_ef(:, :, iEmission)*log(AUs) - - mlat_p = cf_b_lat + cf_k_lat*ALs - ef_p = cf_b_ef + cf_k_ef*ALs - - else - - cf_b_lat = bb_lat(:, :, iEmission) + bk_lat(:, :, iEmission)*AUs - cf_k_lat = kb_lat(:, :, iEmission) + kk_lat(:, :, iEmission)*log(AUs) - - cf_b_ef = bb_ef(:, :, iEmission) + bk_ef(:, :, iEmission)*AUs - cf_k_ef = kb_ef(:, :, iEmission) + kk_ef(:, :, iEmission)*log(AUs) - - mlat_b0 = cf_b_lat + cf_k_lat*AL_split - ef_b0 = cf_b_ef + cf_k_ef*AL_split - - !cf_k_lat2 = kb_lat2(:, :, iEmission) + kk_lat2(:, :, iEmission) * AUs - !cf_k_ef2 = kb_ef2(:, :, iEmission) + kk_ef2(:, :, iEmission) * AUs - - cf_k_lat2 = kb_lat2(:, :, iEmission) + kk_lat2(:, :, iEmission)*log(AUs) - cf_k_ef2 = kb_ef2(:, :, iEmission) + kk_ef2(:, :, iEmission)*log(AUs) - - where (cf_k_ef2 < 0) - cf_k_ef2 = 0 - end where - - mlat_p = mlat_b0 + cf_k_lat2*(ALs - AL_split) - ef_p = ef_b0 + cf_k_ef2*(ALs - AL_split) - - endif - - end subroutine calc_emission_pattern - - ! ----------------------------------------------------------------- - ! Calculate the average energy from the LBHL and LBHS ratio - ! ----------------------------------------------------------------- - - subroutine calc_avee(lbhl, lbhs, avee) - - real, dimension(nMltsFta, nLatsFta), intent(in) :: lbhl, lbhs - real, dimension(nMltsFta, nLatsFta), intent(out) :: avee - real :: a, lb, c, ratio - integer :: iMlt, iLat - - ! # Germay et al.(1994) ratio -> energy flux - ! avee[loc] = 10**( - ! np.log((ratio[loc]-c)/a)/np.log(b)) - - a = 0.09193196 - lb = log(19.73989114) - c = 0.5446197 - - avee = 2.0 - - do iMlt = 1, nMltsFta - do iLat = 1, nLatsFta - if ((lbhl(iMlt, iLat) > 1) .and. & - (lbhs(iMlt, iLat) > 1)) then - ratio = lbhl(iMlt, iLat)/lbhs(iMlt, iLat) - if ((ratio - c) > 0) & - avee(iMlt, iLat) = 10.0**(log((ratio - c)/a)/lb) - - endif - enddo - enddo - - end subroutine calc_avee - - ! ----------------------------------------------------------------- - ! Take MLT vs energy grid and put onto MLT vs Lat grid - ! ----------------------------------------------------------------- - - subroutine calc_full_patterns( & - mlats0_l, efs0_l, & - mlats0_s, efs0_s, & - lbhl, lbhs, eflux, avee) - - real, dimension(nMltsFta, nEnergies), intent(in) :: mlats0_l, efs0_l - real, dimension(nMltsFta, nEnergies), intent(in) :: mlats0_s, efs0_s - real, dimension(nMltsFta, nLatsFta), intent(out) :: lbhl, lbhs, avee, eflux - real, dimension(80):: emission_lat - real, dimension(nEnergies) :: emission_en, lats_en - integer :: i - - do i = 1, nMltsFta - - ! bin and interp lbhl in each MLT sector - emission_en = efs0_l(i, :) - lats_en = mlats0_l(i, :) - call interp_to_lat_grid(lats_en, emission_en, emission_lat) - lbhl(i, :) = emission_lat - - ! bin and interp lbhs in each MLT sector - emission_en = efs0_s(i, :) - lats_en = mlats0_s(i, :) - call interp_to_lat_grid(lats_en, emission_en, emission_lat) - lbhs(i, :) = emission_lat - - enddo - - eflux = lbhl/110.0 - call calc_avee(lbhl, lbhs, avee) - - end subroutine calc_full_patterns - -end module ModFTAModel diff --git a/src/ModGITM.f90 b/src/ModGITM.f90 index 6e99fd52..c11000f1 100644 --- a/src/ModGITM.f90 +++ b/src/ModGITM.f90 @@ -8,8 +8,6 @@ module ModGITM implicit none - real :: GitmVersion = 21.11 - real :: dt = 0.0 integer :: iCommGITM, iProc, nProcs @@ -137,15 +135,17 @@ module ModGITM VerticalIonDrag real, allocatable :: Potential(:, :, :, :), PotentialY(:, :, :, :) + ! Separate potentials, leaving nBlocks out: + real, allocatable :: MagnetosphericPotential(:, :, :), DynamoPotential(:, :, :) real, dimension(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3) :: & ExB, EField real, dimension(-1:nLons + 2, -1:nLats + 2) :: & - ElectronEnergyFlux, ElectronAverageEnergy, & - IonEnergyFlux, IonAverageEnergy, & - ElectronEnergyFluxMono, ElectronNumberFluxMono, & - ElectronEnergyFluxWave, ElectronNumberFluxWave + ElectronEnergyFluxDiffuse, ElectronAverageEnergyDiffuse, & + ElectronEnergyFluxMono, ElectronAverageEnergyMono, & + ElectronEnergyFluxWave, ElectronAverageEnergyWave, & + IonEnergyFlux, IonAverageEnergy real, allocatable :: Velocity(:, :, :, :, :) real, allocatable :: IVelocity(:, :, :, :, :) @@ -173,7 +173,12 @@ module ModGITM real :: SubsolarLatitude, SubsolarLongitude real :: MagneticPoleColat, MagneticPoleLon + real :: CPCPn, CPCPs real :: HemisphericPowerNorth, HemisphericPowerSouth + real :: HemisphericPowerNorth_diffuse, HemisphericPowerSouth_diffuse + real :: HemisphericPowerNorth_wave, HemisphericPowerSouth_wave + real :: HemisphericPowerNorth_mono, HemisphericPowerSouth_mono + real :: HemisphericPowerNorth_ion, HemisphericPowerSouth_ion real :: SunDeclination ! For WP-GITM: horizontal mean values at GITM's lower boundary @@ -233,6 +238,7 @@ subroutine init_mod_gitm allocate(dKe(nLons, nLats, 0:nAlts + 1, nBlocks)) allocate(cp(nLons, nLats, -1:nAlts + 2, nBlocks)) allocate(B0(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 4, nBlocks)) + B0 = 0.0 allocate(MLatitude(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, nBlocks)) allocate(MLongitude(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, nBlocks)) allocate(DipAngle(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, nBlocks)) @@ -249,11 +255,15 @@ subroutine init_mod_gitm allocate(cMax_GDB(0:nLons + 1, 0:nLats + 1, 0:nAlts + 1, 3, nBlocks)) allocate(IonPressureGradient(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3, nBlocks)) allocate(Potential(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, nBlocks)) + allocate(MagnetosphericPotential(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2)) + allocate(DynamoPotential(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2)) allocate(PotentialY(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, nBlocks)) + PotentialY = 0.0 allocate(Velocity(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3, nBlocks)) allocate(IVelocity(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3, nBlocks)) allocate(DivIVelocity(1:nLons, 1:nLats, 1:nAlts, nBlocks)) allocate(IVelocityPar(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3, nBlocks)) + IVelocityPar = 0.0 allocate(IVelocityPerp(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3, nBlocks)) allocate(Emissions(nLons, nLats, nAlts, nEmissions, nBlocks)) allocate(vEmissionRate(nLons, nLats, nAlts, nEmissionWavelengths, nBlocks)) @@ -284,6 +294,7 @@ subroutine clean_mod_gitm deallocate(dAltDLon_CB) deallocate(dAltDLat_CB) deallocate(Rho) + deallocate(ColumnIntegralRho) deallocate(Temperature) deallocate(Pressure) deallocate(NDensity) diff --git a/src/ModGITMVersion.f90 b/src/ModGITMVersion.f90 new file mode 100644 index 00000000..ee10e0cd --- /dev/null +++ b/src/ModGITMVersion.f90 @@ -0,0 +1,11 @@ +module ModGITMVersion + + ! Version variable is put into src/.version when compiling GITM + ! Format is: + ! (last commit date)_(commit hash)_(# of files changed from HEAD) + ! - Gives info on which commit someone is working off of, + ! and how many files were changed from that. + + INCLUDE ".version" + +end module ModGITMVersion diff --git a/src/ModHwm.f90 b/src/ModHwm.f90 deleted file mode 100644 index 023b94c6..00000000 --- a/src/ModHwm.f90 +++ /dev/null @@ -1,1960 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE -! -! Horizontal Wind Model 07 (HWM07) -! Version HWM071308E, 13 July 2008 -! See readme.txt file for detailed release notes. -! -! AUTHOR -! Douglas P. Drob -! Space Science Division -! Naval Research Laboratory -! 4555 Overlook Ave. -! Washington, DC 20375 -! -! Point of Contact -! msishwmhelp@nrl.navy.mil -! -! DATE -! 19 August 2008 -! -! REFERENCE -! Drob, D. P, J. T. Emmert, G. Crowley, J. M. Picone, G. G. Shepherd, -! W. Skinner, Paul Hayes, R. J. Niciejewski, M. Larsen, C.Y. She, -! J. W. Meriwether, G. Hernandez, M. J. Jarvis, D. P. Sipler, C. A. Tepley, -! M. S. O'Brien, J. R. Bowman, Q. Wu, Y. Murayama, S. Kawamura, I.M. Reid, -! and R.A. Vincent (2008), An Empirical Model of the Earth's Horizontal -! Wind Fields: HWM07, J. Geophy. Res., doi:10.1029/2008JA013668. -! -!================================================================================== -! Input arguments: -! iyd - year and day as yyddd -! sec - ut(sec) -! alt - altitude(km) -! glat - geodetic latitude(deg) -! glon - geodetic longitude(deg) -! stl - not used -! f107a - not used -! f107 - not used -! ap - two element array with -! ap(1) = not used -! ap(2) = current 3hr ap index -! -! Output argument: -! w(1) = meridional wind (m/sec + northward) -! w(2) = zonal wind (m/sec + eastward) -! -!================================================================================ - -subroutine hwm07(iyd, sec, alt, glat, glon, stl, f107a, f107, ap, w) - - implicit none - integer*4, intent(in) :: iyd - real*4, intent(in) :: sec, alt, glat, glon, stl, f107a, f107 - real*4, intent(in) :: ap(2) - real*4, intent(out) :: w(2) - - real*4 :: qw(2), dw(2) - - call hwmqt(iyd, sec, alt, glat, glon, stl, f107a, f107, ap, qw) - - if (ap(2) .ge. 0.0) then - call dwm07b_hwm_interface(iyd, sec, alt, glat, glon, ap, dw) - w = qw + dw - else - w = qw - endif - - return - -end subroutine HWM07 - -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! Global Data Module NEWmodel -! -! Description: This is a common data module for model definition. These -! parameters set by the first calling the subroutine loadmodel(). -! -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -module NEWmodel - - implicit none - - integer :: nbf ! Count of basis terms per model level - integer :: maxs ! s seasonal - integer :: maxm ! m stationary - integer :: maxl ! l migrating - integer :: maxn ! n latitude - - integer :: p ! B-splines order, p=4 cubic, p=3 quadratic - integer :: nlev ! e.g. Number of B-spline nodes - integer :: nnode ! nlev + p - - real*8 :: alttns ! Transition 1 - real*8 :: altsym ! Transition 2 - real*8 :: altiso ! Constant Limit - - integer, allocatable :: nb(:) ! total number of basis functions @ level - integer, allocatable :: order(:, :) ! spectral content @ level - real*8, allocatable :: vnode(:) ! Vertical Altitude Nodes - real*8, allocatable :: mparm(:, :) ! Model Parameters - - ! Global store for quasi-static model space parameters - ! These will change internally depending on the input parameters - - real*8, allocatable :: gfs(:, :), gfm(:, :), gfl(:, :) - real*8, allocatable :: gvbar(:, :), gwbar(:, :) - real*8, allocatable :: gbz(:, :), gbm(:, :) - - real*8, allocatable :: gzwght(:) - integer :: glev - - ! Miscellaneous flags and indicies - - integer :: maxo - integer :: cseason = 0 - integer :: cwave = 0 - integer :: ctide = 0 - - logical :: content(5) = .true. ! Season/Waves/Tides - logical :: component(0:1) = .true. ! Compute zonal/meridional - - ! Initialization flags and information - - logical :: modelinit = .true. - logical :: reset = .true. - character(128) :: defaultdata = 'UA/DataIn/hwm071308e.dat' - -end module NEWmodel - -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! HWM-07 Legacy Wrapper -! -! Description: Emulate HWM-93 subroutine calling convension -! -! Programming Notes: -! -! -! Required Subroutines: -! -! loadmodel() -! HWMupdate() -! -! -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -subroutine HWMQT(IYD, SEC, ALT, GLAT, GLON, STL, F107A, F107, AP, W) - - use NEWmodel - implicit none - - INTEGER, intent(in) :: IYD - REAL*4, intent(in) :: SEC, ALT, GLAT, GLON, STL, F107A, F107 - REAL*4, intent(in) :: AP(2) - REAL*4, intent(out) :: W(2) - - real*8 :: last(5) - real*8 :: input(5) - real*8 :: u, v - - interface - subroutine HWMupdate(input, last, fs, fl, fm, vbar, wbar, ebz, ebm, zwght, lev, u, v) - - use NEWmodel - implicit none - - real*8, intent(in) :: input(5) ! jday,utsec,glon,glat,alt - real*8, intent(inout) :: last(5) - real*8, intent(inout) :: fs(0:maxs, 2) - real*8, intent(inout) :: fm(0:maxm, 2) - real*8, intent(inout) :: fl(0:maxl, 2) - - real*8, intent(inout) :: vbar(0:maxn, 0:maxo) - real*8, intent(inout) :: wbar(0:maxn, 0:maxo) - real*8, intent(inout), target :: ebz(nbf, 0:p) - real*8, intent(inout), target :: ebm(nbf, 0:p) - real*8, intent(inout) :: zwght(0:p) - integer, intent(inout) :: lev - real*8, intent(out) :: u, v - end subroutine HWMupdate - end interface - - input(1) = dble(mod(IYD, 1000)) - input(2) = dble(sec) - input(3) = dble(glon) - input(4) = dble(glat) - input(5) = dble(alt) - - if (modelinit) then - call loadmodel(defaultdata) - call HWMupdate(input, last, gfs, gfl, gfm, gvbar, gwbar, gbz, gbm, gzwght, glev, u, v) - endif - - if (reset) then - last = 1.0d-32 - reset = .false. - endif - - call HWMupdate(input, last, gfs, gfl, gfm, gvbar, gwbar, gbz, gbm, gzwght, glev, u, v) - - w(1) = -v - w(2) = u - - return - -end subroutine HWMQT - -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! -! This subroutine is used to calculate the Vector Spherical -! Harmonic basis functions for a given observation. -! -! Programming Notes: -! -! This subroutine is only OPENMP/THREAD SAFE when no calls to -! loadmodel() are made. -! -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -subroutine HWMupdate(input, last, fs, fl, fm, vbar, wbar, ebz, ebm, zwght, lev, u, v) - - use NewModel - implicit none - - real*8, intent(in) :: input(5) ! jday,utsec,glon,glat,alt - real*8, intent(inout) :: last(5) - real*8, intent(inout) :: fs(0:maxs, 2) - real*8, intent(inout) :: fm(0:maxm, 2) - real*8, intent(inout) :: fl(0:maxl, 2) - - real*8, intent(inout) :: vbar(0:maxn, 0:maxo) - real*8, intent(inout) :: wbar(0:maxn, 0:maxo) - real*8, intent(inout), target :: ebz(nbf, 0:p) - real*8, intent(inout), target :: ebm(nbf, 0:p) - - real*8, intent(inout) :: zwght(0:p) - integer, intent(inout) :: lev - - real*8, intent(out) :: u, v - - ! Local variables - - real*8, pointer :: bz(:) - real*8, pointer :: bm(:) - - real*8 :: cs, ss, cm, sm, cl, sl - real*8 :: cmcs, smcs, cmss, smss - real*8 :: clcs, slcs, clss, slss - real*8 :: AA, BB, CC, DD - real*8 :: vb, wb - - integer :: b, c, d, m, n, s, l - - integer :: amaxs, amaxn - integer :: pmaxm, pmaxs, pmaxn - integer :: tmaxl, tmaxs, tmaxn - - logical :: refresh(5) - - real*8, parameter :: twoPi = 2.0d0*3.1415926535897932384626433832795d0 - real*8, parameter :: deg2rad = twoPi/360.0d0 - -! ==================================================================== -! Update VSH model terms based on any change in the input parameters -! ==================================================================== - - refresh = .false. - - ! Seasonal variations - - if (input(1) .ne. last(1)) then - AA = input(1)*twoPi/365.25d0 - do s = 0, MAXS - BB = dble(s)*AA - fs(s, 1) = dcos(BB) - fs(s, 2) = dsin(BB) - enddo - refresh(1:5) = .true. - last(1) = input(1) - endif - - ! Hourly time changes, tidal variations - - if (input(2) .ne. last(2) .or. input(3) .ne. last(3)) then - - AA = mod(input(2)/3600.d0 + input(3)/15.d0 + 48.d0, 24.d0) - BB = AA*twoPi/24.d0 - do l = 0, MAXL - CC = dble(l)*BB - fl(l, 1) = dcos(CC) - fl(l, 2) = dsin(CC) - enddo - - refresh(3) = .true. - last(2) = input(2) - endif - - ! Longitudinal variations, planetary waves - - if (input(3) .ne. last(3)) then - AA = input(3)*deg2rad - do m = 0, MAXM - BB = dble(m)*AA - fm(m, 1) = dcos(BB) - fm(m, 2) = dsin(BB) - enddo - refresh(2) = .true. - last(3) = input(3) - endif - - ! Latitude - - if (input(4) .ne. last(4)) then - AA = (90.0d0 - input(4))*deg2rad ! theta = colatitude in radians - call vshbasis(maxn, maxo, AA, vbar, wbar) - refresh(1) = .true. - refresh(2) = .true. - refresh(3) = .true. - refresh(4) = .true. - last(4) = input(4) - endif - - ! Altitude - - if (input(5) .ne. last(5)) then - call vertwght(input(5), zwght, lev) - last(5) = input(5) - endif - - ! ==================================================================== - ! Linearize the VSH functions - ! ==================================================================== - - u = 0.0d0 - v = 0.0d0 - - refresh = .true. - - ebz = 0.0 - ebm = 0.0 - - do b = 0, p - - if (zwght(b) .eq. 0.d0) cycle - - d = b + lev - - bz => ebz(:, b) - bm => ebm(:, b) - - amaxs = order(1, d) - amaxn = order(2, d) - pmaxm = order(3, d) - pmaxs = order(4, d) - pmaxn = order(5, d) - tmaxl = order(6, d) - tmaxs = order(7, d) - tmaxn = order(8, d) - - c = 1 - - ! ------------- Seasonal - Zonal average (m = 0) ---------------- - - if (refresh(1) .and. content(1)) then - - c = 1 ! global constants - do n = 1, AMAXN - bz(c) = -0.5d0*vbar(n, 0) ! Cr - bz(c + 1) = 0.0d0 ! Br - bm(c) = 0.0d0 ! Cr - bm(c + 1) = 0.5d0*vbar(n, 0) ! Br - c = c + 2 - enddo - - do s = 1, AMAXS ! seasonal variations - cs = fs(s, 1) - ss = fs(s, 2) - do n = s, AMAXN - vb = vbar(n, s) - wb = wbar(n, s) - AA = vb*cs - BB = vb*ss - CC = -wb*ss - DD = -wb*cs - bz(c) = -AA ! Cr - bz(c + 1) = BB ! Ci - bz(c + 2) = CC ! Br - bz(c + 3) = DD ! Bi - bm(c) = CC ! Cr - bm(c + 1) = DD ! Ci - bm(c + 2) = AA ! Br - bm(c + 3) = -BB ! Bi - c = c + 4 - enddo - enddo - cseason = c - else - c = cseason - endif - - ! ---------------- Stationary planetary waves -------------------- - - if (refresh(2) .and. content(2)) then - - do m = 1, pmaxm - - cm = fm(m, 1) - sm = fm(m, 2) - - do n = m, pmaxn ! s = 0 - - vb = vbar(n, m) - wb = wbar(n, m) - - bz(c) = -vb*cm ! Cr * (cm) * -vb - bz(c + 1) = vb*sm ! Ci * (sm) * vb - bz(c + 2) = -wb*sm ! Br * (sm) * -wb - bz(c + 3) = -wb*cm ! Bi * (cm) * -wb - - bm(c) = -wb*sm ! Cr * (sm) * -wb - bm(c + 1) = -wb*cm ! Ci * (sm) * -wb - bm(c + 2) = vb*cm ! Br * (cm) * vb - bm(c + 3) = -vb*sm ! Bi * (sm) * -vb - - c = c + 4 - - enddo - - do s = 1, pmaxs - - cs = fs(s, 1) - ss = fs(s, 2) - - do n = m, pmaxn - vb = vbar(n, m) - wb = wbar(n, m) - - bz(c) = -vb*cm*cs ! Crc * (cmcs) * -vb - bz(c + 1) = vb*sm*cs ! Cic * (smcs) * vb - bz(c + 2) = -wb*sm*cs ! Brc * (smcs) * -wb - bz(c + 3) = -wb*cm*cs ! Bic * (cmcs) * -wb - bz(c + 4) = -vb*cm*ss ! Crs * (cmss) * -vb - bz(c + 5) = vb*sm*ss ! Cis * (smss) * vb - bz(c + 6) = -wb*sm*ss ! Brs * (smss) * -wb - bz(c + 7) = -wb*cm*ss ! Bis * (cmss) * -wb - - bm(c) = -wb*sm*cs ! Crc * (smcs) * -wb - bm(c + 1) = -wb*cm*cs ! Cic * (smcs) * -wb - bm(c + 2) = vb*cm*cs ! Brc * (cmcs) * vb - bm(c + 3) = -vb*sm*cs ! Bic * (smcs) * -vb - bm(c + 4) = -wb*sm*ss ! Crs * (smss) * -wb - bm(c + 5) = -wb*cm*ss ! Cis * (smss) * -wb - bm(c + 6) = vb*cm*ss ! Brs * (cmss) * vb - bm(c + 7) = -vb*sm*ss ! Bis * (smss) * -vb - - c = c + 8 - - enddo - - enddo - cwave = c - enddo - else - c = cwave - endif - - ! ---------------- Migrating Solar Tides --------------------- - - if (refresh(3) .and. content(3)) then - do l = 1, tmaxl - - cl = fl(l, 1) - sl = fl(l, 2) - - s = 0 - do n = l, tmaxn - - vb = vbar(n, l) - wb = wbar(n, l) - - bz(c) = -vb*cl ! Cr * (cl) * -vb - bz(c + 1) = vb*sl ! Ci * (sl) * vb - bz(c + 2) = -wb*sl ! Br * (sl) * -wb - bz(c + 3) = -wb*cl ! Bi * (cl) * -wb - - bm(c) = -wb*sl ! Cr * (sl) * -wb - bm(c + 1) = -wb*cl ! Ci * (sl) * -wb - bm(c + 2) = vb*cl ! Br * (cl) * vb - bm(c + 3) = -vb*sl ! Bi * (sl) * -vb - - c = c + 4 - - enddo - - do s = 1, tmaxs - - cs = fs(s, 1) - ss = fs(s, 2) - - do n = l, tmaxn - - vb = vbar(n, l) - wb = wbar(n, l) - - bz(c) = -vb*cl*cs ! Crc * (clcs) * -vb - bz(c + 1) = vb*sl*cs ! Cic * (slcs) * vb - bz(c + 2) = -wb*sl*cs ! Brc * (slcs) * -wb - bz(c + 3) = -wb*cl*cs ! Bic * (clcs) * -wb - - bz(c + 4) = -vb*cl*ss ! Crs * (clss) * -vb - bz(c + 5) = vb*sl*ss ! Cis * (slss) * vb - bz(c + 6) = -wb*sl*ss ! Brs * (slss) * -wb - bz(c + 7) = -wb*cl*ss ! Bis * (clss) * -wb - - bm(c) = -wb*sl*cs ! Crc * (slcs) * -wb - bm(c + 1) = -wb*cl*cs ! Cic * (slcs) * -wb - bm(c + 2) = vb*cl*cs ! Brc * (clcs) * vb - bm(c + 3) = -vb*sl*cs ! Bic * (slcs) * -vb - - bm(c + 4) = -wb*sl*ss ! Crs * (slss) * -wb - bm(c + 5) = -wb*cl*ss ! Cis * (slss) * -wb - bm(c + 6) = vb*cl*ss ! Brs * (clss) * vb - bm(c + 7) = -vb*sl*ss ! Bis * (slss) * -vb - - c = c + 8 - enddo - - enddo - ctide = c - enddo - else - c = ctide - endif - - ! ---------------- Non-Migrating Solar Tides ------------------ - - ! TBD - - c = c - 1 - - ! ==================================================================== - ! Calculate the wind components - ! ==================================================================== - - if (component(0)) u = u + zwght(b)*dot_product(bz(1:c), mparm(1:c, d)) - if (component(1)) v = v + zwght(b)*dot_product(bm(1:c), mparm(1:c, d)) - - enddo - - return - -end subroutine HWMupdate - -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! This subroutine initalizes the NEWmodel -! -! -! Required Subroutines: -! -! vshengineinit() -! -! -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -subroutine loadmodel(datafile) - - use NEWmodel - implicit none - - character(len=*), intent(in) :: datafile - - integer :: i, j - integer :: ncomp - - if (allocated(vnode)) then - deallocate(order, nb, vnode, mparm) - deallocate(gfs, gfm, gfl, gvbar, gwbar, gzwght, gbz, gbm) - endif - - open(unit=23, file=trim(datafile), form='unformatted', status='old') - read(23) nbf, maxs, maxm, maxl, maxn, ncomp - read(23) nlev, p - nnode = nlev + p - allocate(nb(0:nnode)) - allocate(order(ncomp, 0:nnode)) - allocate(vnode(0:nnode)) - read(23) vnode - vnode(3) = 0.0 - allocate(mparm(nbf, 0:nlev)) - mparm = 0.0d0 - do i = 0, nlev - p + 1 - 2 - read(23) order(1:ncomp, i) - read(23) nb(i) - read(23) mparm(1:nbf, i) - enddo - close(23) - - ! Set transition levels - - alttns = vnode(nlev - 2) - altsym = vnode(nlev - 1) - altiso = vnode(nlev) - - ! Initialize the vector spherical harmonics engine - - call vshengineinit() - - ! Allocate the global store of quasi-static parameters - - maxo = max(maxs, maxm, maxl) - - allocate(gfs(0:maxs, 2), gfm(0:maxm, 2), gfl(0:maxl, 2)) - allocate(gvbar(0:maxn, 0:maxo), gwbar(0:maxn, 0:maxo)) - allocate(gbz(nbf, 0:p), gbm(nbf, 0:p)) - allocate(gzwght(0:p)) - - gvbar = 0.0d0 - gwbar = 0.0d0 - gbz = 0.0d0 - gbm = 0.0d0 - - ! Signal that the model has been initalized - - modelinit = .false. - - ! Signal a reset of the input variable comparison flags - - reset = .true. - - return - -end subroutine loadmodel - -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! This subroutine updates the vertical weights -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -subroutine vertwght(alt, wght, iz) - - use NEWmodel - implicit none - - real*8, intent(in) :: alt - real*8, intent(out) :: wght(4) - integer, intent(out) :: iz - - real*8 :: we(0:4) - - real*8 :: e1(0:4) = & - (/1.d0, 0.428251121076233d0, 0.192825112107623d0, 0.484304932735426d0, 0.0d0/) - real*8 :: e2(0:4) = & - (/0.d0, 0.571748878923767d0, 0.807174887892377d0, -0.484304932735426d0, 1.0d0/) - - real*8, parameter :: H = 60.0d0 - - iz = findspan(nnode - p - 1, p, alt, vnode) - p - - iz = min(iz, 26) - - wght(1) = bspline(p, nnode, vnode, iz, alt) - wght(2) = bspline(p, nnode, vnode, iz + 1, alt) - if (iz .le. 25) then - wght(3) = bspline(p, nnode, vnode, iz + 2, alt) - wght(4) = bspline(p, nnode, vnode, iz + 3, alt) - return - endif - if (alt .gt. 250.0d0) then - we(0) = 0.0d0 - we(1) = 0.0d0 - we(2) = 0.0d0 - we(3) = exp(-(alt - 250.0d0)/H) - we(4) = 1.0d0 - else - we(0) = bspline(p, nnode, vnode, iz + 2, alt) - we(1) = bspline(p, nnode, vnode, iz + 3, alt) - we(2) = bspline(p, nnode, vnode, iz + 4, alt) - we(3) = 0.0d0 - we(4) = 0.0d0 - endif - wght(3) = dot_product(we, e1) - wght(4) = dot_product(we, e2) - - return - -contains - - function bspline(p, m, V, i, u) - - implicit none - - real*8 :: bspline - integer :: p, m - real*8 :: V(0:m) - integer :: i - real*8 :: u - - real*8 :: N(0:p + 1) - real*8 :: Vleft, Vright - real*8 :: saved, temp - integer :: j, k - - if ((i .eq. 0) .and. (u .eq. V(0))) then - bspline = 1.d0 - return - endif - - if ((i .eq. (m - p - 1)) .and. (u .eq. V(m))) then - bspline = 1.d0 - return - endif - - if (u .lt. V(i) .or. u .ge. V(i + p + 1)) then - bspline = 0.d0 - return - endif - - N = 0.0d0 - do j = 0, p - if (u .ge. V(i + j) .and. u .lt. V(i + j + 1)) then - N(j) = 1.0d0 - else - N(j) = 0.0d0 - endif - enddo - - do k = 1, p - if (N(0) .eq. 0.d0) then - saved = 0.d0 - else - saved = ((u - V(i))*N(0))/(V(i + k) - V(i)) - endif - do j = 0, p - k - Vleft = V(i + j + 1) - Vright = V(i + j + k + 1) - if (N(j + 1) .eq. 0.d0) then - N(j) = saved - saved = 0.d0 - else - temp = N(j + 1)/(Vright - Vleft) - N(j) = saved + (Vright - u)*temp - saved = (u - Vleft)*temp - endif - enddo - enddo - - bspline = N(0) - - return - - end function bspline - - ! ===================================================== - ! Function to locate the knot span - ! ===================================================== - - integer function findspan(n, p, u, V) - - implicit none - - integer, intent(in) :: n, p - real*8, intent(in) :: u - real*8, intent(in) :: V(0:n + 1) - integer :: low, mid, high - - if (u .ge. V(n + 1)) then - findspan = n - return - endif - - low = p - high = n + 1 - mid = (low + high)/2 - - do while (u .lt. V(mid) .or. u .ge. V(mid + 1)) - if (u .lt. V(mid)) then - high = mid - else - low = mid - endif - mid = (low + high)/2 - enddo - - findspan = mid - return - - end function findspan - -end subroutine vertwght - -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! -! Description: Computational Engine for calculating Normalized Associated Vector -! Spherical Harmonic basis functions Vbar and Wbar. -! -! Author: Douglas P. Drob -! Space Science Division -! Naval Research Laboratory -! 4555 Overlook Ave -! Washington, DC -! -! Date: January 2007. -! -! Notes: -! -! The routines for the calculation Pbar have been adapted from ALFPACK developed -! by Paul Swarztrauber at The National Center for Atmospheric Research, Boulder, -! Colorado (80307) U.S.A. which is sponsored by The National Science Foundation. -! -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -module vshengine - implicit none - integer, parameter :: mmax = 11 - integer, parameter :: nmax = 11 - real*8 :: p0(0:nmax, 0:mmax), p1(0:nmax, 0:mmax) - real*8 :: sf(0:nmax, 0:mmax) - real*8 :: a(0:nmax, 0:mmax), b(0:nmax, 0:mmax) - real*8 :: c(0:nmax, 0:mmax), d(0:nmax, 0:mmax) -end module vshengine - -! ========================================================================== -! Description: Subroutine to calculate the VSH coeffiecents @ theta -! -! Notes: Before calling vshbasis() the static coeffiecents must calculated -! by calling vshengineinit(). -! -! ========================================================================== - -subroutine vshbasis(maxn, maxo, theta, vbar, wbar) - - use vshengine - implicit none - - integer, intent(in) :: maxn, maxo - real*8, intent(in) :: theta - real*8, intent(out) :: vbar(0:maxn, 0:maxo) - real*8, intent(out) :: wbar(0:maxn, 0:maxo) - - real*8 :: pbar(0:nmax, 0:maxo + 1) - real*8 :: pb(0:nmax), td(0:nmax) - real*8 :: p0i, p1i, cost, r - integer :: i, m, mm1, mp1, n, nm1, nm2, nmm - - ! Normalized Associated Legendre Polynomials - - pbar = 0.0d0 - - nm1 = nmax - 1 - nm2 = nmax - 2 - do m = 0, maxo + 1 - nmm = nmax - m - p0i = lfpt(nm1, m, theta, p0(:, m)) - p1i = lfpt(nm2, m, theta, p1(:, m)) - pbar(nm1, m) = p0i - if (nmm .le. 0) cycle - pbar(nm2, m) = p1i - if (nmm .eq. 1) cycle - cost = dcos(theta) - do n = 0, nmm - 1 - pb(n) = -cost - td(n) = sf(n, m) - enddo - if (abs(p0i) .ge. abs(p1i)) then - pb(0) = p0i - r = -td(0)*pb(0) - call tridiag(nmm - 1, r, td(0), pb(1), td(1)) - else - pb(0) = p0i - pb(1) = p1i - r = -td(1)*pb(1) - call tridiag(nmm - 2, r, td(1), pb(2), td(2)) - endif - do n = m, nmax - 1 - i = nmax - n - 1 - pbar(n, m) = pb(i) - enddo - enddo - - ! Vector Spherical Harmonic Basis Functions from Pbar - - do n = 0, maxn - vbar(n, 0) = -pbar(n, 1) - enddo - - do m = 1, maxo - mm1 = m - 1 - mp1 = m + 1 - do n = m, maxn - nm1 = n - 1 - vbar(n, m) = a(n, m)*pbar(n, mp1) + b(n, m)*pbar(n, mm1) - wbar(n, m) = c(n, m)*pbar(nm1, mm1) + d(n, m)*pbar(nm1, mp1) - enddo - enddo - - return - -contains - - ! -------------------------------------------------------------- - ! Function for the normalized associated legendre polynomial - ! along the diagonal from a recursion relation. - ! -------------------------------------------------------------- - - real*8 function lfpt(n, m, theta, cp) - implicit none - integer, intent(in) :: n, m - real*8, intent(in) :: theta - real*8, intent(in) :: cp(n) - real*8 :: cdt, sdt - real*8 :: ct, st, cth - integer :: kdo, k - lfpt = 0.0d0 - if (m .gt. n) return - if (n .le. 0 .and. m .le. 0) then - lfpt = dsqrt(0.5d0) - return - endif - cdt = dcos(theta + theta) - sdt = dsin(theta + theta) - if (mod(n, 2) .le. 0) then - ct = 1.0d0 - st = 0.0d0 - if (mod(m, 2) .le. 0) then - kdo = n/2 + 1 - lfpt = 0.5d0*cp(1) - do k = 2, kdo - cth = cdt*ct - sdt*st - st = sdt*ct + cdt*st - ct = cth - lfpt = lfpt + cp(k)*ct - enddo - else - kdo = n/2 - do k = 1, kdo - cth = cdt*ct - sdt*st - st = sdt*ct + cdt*st - ct = cth - lfpt = lfpt + cp(k)*st - enddo - endif - else - kdo = (n + 1)/2 - ct = dcos(theta) - st = -dsin(theta) - if (mod(m, 2) .le. 0) then - do k = 1, kdo - cth = cdt*ct - sdt*st - st = sdt*ct + cdt*st - ct = cth - lfpt = lfpt + cp(k)*ct - enddo - else - do k = 1, kdo - cth = cdt*ct - sdt*st - st = sdt*ct + cdt*st - ct = cth - lfpt = lfpt + cp(k)*st - enddo - endif - endif - return - end function lfpt - - ! ----------------------------- - ! Tri-diagonal matrix solver - ! ----------------------------- - - subroutine tridiag(n, r, a, b, c) - implicit none - integer, intent(in) :: n - real*8, intent(in) :: r, a(n) - real*8, intent(inout) :: b(n), c(n) - real*8 :: bih, bih1, b1 - real*8 :: qih, q2, ratio, rih - integer :: i, j - select case (n) - case (:0) - return - case (1) - b(1) = r/b(1) - return - case (2) - qih = a(2) - bih = b(2) - case (3:) - qih = a(n) - bih = b(n) - do j = 3, n - i = n - j + 2 - if (abs(bih) .ge. abs(c(i))) then - ratio = c(i)/bih - c(i) = 0.0d0 - b(i + 1) = qih/bih - bih = b(i) - ratio*qih - qih = a(i) - else - b(i + 1) = b(i)/c(i) - c(i) = a(i)/c(i) - bih1 = qih - bih*b(i + 1) - qih = -bih*c(i) - bih = bih1 - endif - enddo - end select - if (abs(bih) .ge. abs(c(1))) then - q2 = qih/bih - bih = b(1) - c(1)/bih*qih - b(1) = r/bih - b(2) = -q2*b(1) - else - ratio = bih/c(1) - bih = qih - ratio*b(1) - rih = -ratio*r - b1 = rih/bih - b(2) = (r - b(1)*b1)/c(1) - b(1) = b1 - endif - if (n - 3 .ge. 0) then - do i = 3, n - b(i) = -b(i)*b(i - 1) - c(i - 1)*b(i - 2) - enddo - endif - return - end subroutine tridiag - -end subroutine vshbasis - -! ======================================================================== -! This subroutine intializes the scaling and recursion coeffiecents -! for normalized associated vector spherical harmonic basis funcions. -! ======================================================================== - -subroutine vshengineinit() - - use vshengine - implicit none - real*8 :: fnmm, fnpn, fnpm - real*8 :: nfac1, nfac2 - integer :: m, n, npm, nmm, nm1, nm2, i - - ! Factors for the normalized associated legendre polynomial - - sf = 0.0d0 - nm1 = nmax - 1 - nm2 = nmax - 2 - do m = 0, mmax - call alfk(nm1, m, p0(:, m)) - call alfk(nm2, m, p1(:, m)) - fnmm = dble(nmax - m) - fnpn = dble(nmax + nm1) - fnpm = dble(nmax + m) - i = 0 - do n = m, nm1 - fnmm = fnmm - 1.d0 - fnpn = fnpn - 2.d0 - fnpm = fnpm - 1.d0 - sf(i, m) = dsqrt(dble(fnmm*fnpm/(fnpn*(fnpn + 2.d0)))) - i = i + 1 - enddo - enddo - - ! Theta indepedent scaling factors for calculation of Vbar and Wbar - ! from Pbar. - - do n = 1, nmax - nfac1 = 0.5d0/dsqrt(dble(n*(n + 1))) - nfac2 = nfac1*dsqrt(dble(2*n + 1)/dble(2*n - 1)) - do m = 1, n - npm = n + m - nmm = n - m - a(n, m) = -nfac1*dsqrt(dble(nmm*(npm + 1))) - b(n, m) = nfac1*dsqrt(dble(npm*(nmm + 1))) - c(n, m) = nfac2*dsqrt(dble(npm*(npm - 1))) - d(n, m) = nfac2*dsqrt(dble(nmm*(nmm - 1))) - enddo - enddo - - return - -contains - - ! ------------------------------------------------------------- - ! For a given M and N, the unnormalized Legendre polynomial - ! are calculated for all cases where (m .ge. 0). - ! ------------------------------------------------------------ - - subroutine alfk(n, m, cp) - implicit none - integer, intent(in) :: n, m - real*8, intent(out) :: cp(n) - real*8 :: fnum, fden, fnmh, fnnp1, fnmsq, fk - real*8 :: pm1, t1, t2, cp2, a1, b1, c1 - integer :: nmms2, l, i - if (m .gt. n) then - cp(1) = 0.0d0 - return - endif - if (n .le. 0) then - cp(1) = dsqrt(2.d0) - return - endif - if (n .eq. 1) then - if (m .eq. 0) then - cp(1) = dsqrt(1.5d0) - else - cp(1) = dsqrt(0.75d0) - endif - return - endif - if (mod(n + m, 2) .eq. 0) then - nmms2 = (n - m)/2 - fnum = dble(n + m + 1) - fnmh = dble(n - m + 1) - pm1 = 1.0d0 - else - nmms2 = (n - m - 1)/2 - fnum = dble(n + m + 2) - fnmh = dble(n - m + 2) - pm1 = -1.0d0 - endif - t1 = 1.0d0 - t2 = 1.0d0 - if (nmms2 .ge. 1) then - fden = 2.0d0 - do i = 1, nmms2 - t1 = fnum*t1/fden - fnum = fnum + 2.0d0 - fden = fden + 2.0d0 - enddo - endif - if (m .ne. 0) then - do i = 1, m - t2 = fnmh*t2/(fnmh + pm1) - fnmh = fnmh + 2.0d0 - enddo - endif - if (mod(m/2, 2) .ne. 0) t1 = -t1 - cp2 = t1*dsqrt((dble(n) + 0.5d0)*t2)/(2.0d0**(n - 1)) - fnnp1 = dble(n*(n + 1)) - fnmsq = fnnp1 - 2.0d0*dble(m*m) - l = (n + 1)/2 - if (mod(n, 2) .eq. 0 .and. mod(m, 2) .eq. 0) l = l + 1 - cp(l) = cp2 - if (l .le. 1) return - fk = dble(n) - a1 = (fk - 2.0d0)*(fk - 1.0d0) - fnnp1 - b1 = 2.0d0*(fk*fk - fnmsq) - cp(l - 1) = b1*cp(l)/a1 - l = l - 1 - do while (l .gt. 1) - fk = fk - 2.0d0 - a1 = (fk - 2.0d0)*(fk - 1.0d0) - fnnp1 - b1 = -2.0d0*(fk*fk - fnmsq) - c1 = (fk + 1.0d0)*(fk + 2.0d0) - fnnp1 - cp(l - 1) = -(b1*cp(l) + c1*cp(l + 1))/a1 - l = l - 1 - enddo - return - end subroutine alfk - -end subroutine vshengineinit - -! -! Disturbance wind part of Horizontal Wind Model HWM07 -! Version DWM07B104i -! See readme.txt file for detailed release notes. -! -! AUTHOR -! John Emmert -! Space Science Division -! Naval Research Laboratory -! 4555 Overlook Ave. -! Washington, DC 20375 -! -! Point of Contact -! msishwmhelp@nrl.navy.mil -! -! DATE -! 19 August 2008 -! -! REFERENCE -! Emmert, J. T., D. P. Drob, G. G. Shepherd, G. Hernandez, M. J. Jarvis, J. W. -! Meriwether, R. J. Niciejewski, D. P. Sipler, and C. A. Tepley (2008), -! DWM07 global empirical model of upper thermospheric storm-induced -! disturbance winds, J. Geophys Res., 113, doi:10.1029/2008JA013541. -! - -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! Module DWM -! -! Description: This is a common data module for model definition. These -! parameters are set by the first calling the subroutine loaddwm(). -! -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -module dwm_module - - implicit none - - integer*4 :: nterm ! Number of terms in the model - integer*4 :: lmax ! Max latitudinal degree - integer*4 :: mmax ! Max order of MLT var. - - integer*4, allocatable :: termarr(:, :) ! 3 x nterm index of coupled terms - real*4, allocatable :: coeff(:) ! Model coefficients - real*4, allocatable :: vsh_terms(:, :) ! VSH basis values - integer*4 :: nvshfn ! # of VSH basis functions - real*4 :: twidth ! Transition width of high-lat mask - real*4, allocatable :: termval(:, :) ! Term values to which coefficients are applied - - ! Initialization flags and information - - logical :: modelinit = .true. - character(128) :: defaultdata = 'dwm07b_104i.dat' - -end module dwm_module - -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! DWM-HWM Interface -! -! Author: John Emmert -! Date: 7/10/2007 -! Description: Using HWM inputs, computes Quasi-dipole latitude and local time, -! and Kp. Retrieves DWM results for these conditions, converts -! to geographic directions, and applies artificial height profile. -! -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -subroutine dwm07b_hwm_interface(IYD, SEC, ALT, GLAT, GLON, AP, DW) - - implicit none - - INTEGER, intent(in) :: IYD - REAL*4, intent(in) :: SEC, ALT, GLAT, GLON - REAL*4, intent(in) :: AP(2) - REAL*4, intent(out) :: DW(2) - - real*4 :: ut, mlat, mlt, kp, mmpwind, mzpwind - real*4 :: f1e, f1n, f2e, f2n - real*4 :: dummy - real*4 :: day, mlon, asun_glat, asun_glon, asun_mlat, asun_mlon - real*4, external :: ap_to_kp, dwm_altwgt - - real*8, parameter :: pi = 3.141592653590, dtor = pi/180D0, sin_eps = 0.39781868 - - !CONVERT AP TO KP - kp = ap_to_kp(ap(2)) - - !CONVERT GEO LAT/LON TO QD LAT/LON - - call gd2qd(glat, glon, mlat, mlon, f1e, f1n, f2e, f2n) - - !COMPUTE QD MAGNETIC LOCAL TIME (LOW-PRECISION) - day = real(mod(iyd, 1000)) - ut = sec/3600.0 - asun_glat = -asin(sin((day - 80.0)*dtor)*sin_eps)/dtor - asun_glon = -ut*15.0 - call gd2qd(asun_glat, asun_glon, asun_mlat, asun_mlon, & - dummy, dummy, dummy, dummy) - mlt = (mlon - asun_mlon)/15.0 - - !RETRIEVE DWM WINDS - call dwm07b(mlt, mlat, kp, mmpwind, mzpwind) - - !CONVERT TO GEOGRAPHIC COORDINATES - dw(1) = f2n*mmpwind + f1n*mzpwind - dw(2) = f2e*mmpwind + f1e*mzpwind - - !APPLY HEIGHT PROFILE - dw = dw*dwm_altwgt(alt) - - return - -end subroutine dwm07b_hwm_interface - -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! -! This subroutine is used to evaluate DWM -! -! Programming Notes: -! -! This subroutine is only OPENMP/THREAD SAFE when no calls to -! loaddwm() are made. -! -!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -subroutine dwm07b(mlt, mlat, kp, mmpwind, mzpwind) - - use dwm_module - implicit none - - real*4, intent(in) :: mlt !Magnetic local time (hours) - real*4, intent(in) :: mlat !Magnetic latitude (degrees) - real*4, intent(in) :: kp !3-hour Kp - - real*4, intent(out) :: mmpwind !Mer. disturbance wind (+north, QD coordinates) - real*4, intent(out) :: mzpwind !Zon. disturbance wind (+east, QD coordinates) - - ! Local variables - real*4 :: mltdeg - real*4 :: kp_terms(0:2) - real*4 :: latwgt_terms - real*4 :: termval_temp(0:1) - integer*4 :: iterm - - external :: loaddwm, vsh_basis - real*4, external :: dwm_latwgt2 - - !LOAD MODEL PARAMETERS IF NECESSARY - if (modelinit) call loaddwm(defaultdata) - - !COMPUTE VSH TERMS - mltdeg = 15.0*mlt - call vsh_basis(mlat, mltdeg) - - !COMPUTE KP TERMS - call dwm_kpspl3_calc(kp, kp_terms) - - !COMPUTE LATITUDINAL WEIGHTING TERMS - latwgt_terms = dwm_latwgt2(mlat, mlt, kp, twidth) - - !GENERATE COUPLED TERMS - do iterm = 0, nterm - 1 - termval_temp = 1 - if (termarr(0, iterm) .ne. 999) termval_temp = termval_temp*vsh_terms(0:1, termarr(0, iterm)) - if (termarr(1, iterm) .ne. 999) termval_temp = termval_temp*kp_terms(termarr(1, iterm)) - if (termarr(2, iterm) .ne. 999) termval_temp = termval_temp*latwgt_terms - termval(0:1, iterm) = termval_temp - enddo - - !APPLY COEFFICIENTS - mmpwind = dot_product(coeff, termval(0, 0:nterm - 1)) - mzpwind = dot_product(coeff, termval(1, 0:nterm - 1)) - - return - -end subroutine dwm07b - -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! This subroutine loads the disturbance wind model parameters -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -subroutine loaddwm(datafile) - - use dwm_module, maxmd => mmax, maxld => lmax, modelinitd => modelinit - - implicit none - - character(len=*), intent(in) :: datafile - - external vsh_basis_init - - write(*, *) "Opening HWM file!" - - open(unit=23, file=trim(datafile), form='unformatted', status='old') - - if (allocated(termarr)) deallocate(termarr, coeff) - read(23) nterm, maxmd, maxld - allocate(termarr(0:2, 0:nterm - 1)) - read(23) termarr - allocate(coeff(0:nterm - 1)) - allocate(termval(0:1, 0:nterm - 1)) - read(23) coeff - read(23) twidth - - close(23) - - call vsh_basis_init - - modelinitd = .false. - - return - -end subroutine loaddwm - -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! Module vsh_basis_module -! -! Description: This is a common data module for model definition. These -! parameters set by the first calling the subroutine loaddwm(). -! -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -module vsh_basis_module - - implicit none - - type :: fn_map ! Structure of VSH basis function map - integer*4 :: realimag - integer*4 :: irrotational - integer*4 :: M - integer*4 :: N - end type - type(fn_map), allocatable :: fn_map1(:) ! Working array of VSH map structure - - real*8, allocatable :: A(:, :) !Derivative of the Associated Legendre Functions - real*8, allocatable :: B(:, :) !m/sin(theta) times the Associated Legendre Functions - real*8, allocatable :: anm(:, :) - real*8, allocatable :: bnm(:, :) - real*8, allocatable :: cm(:) - real*8, allocatable :: cn(:) - real*8, allocatable :: e0n(:) - real*8, allocatable :: fnm(:, :) - real*8, allocatable :: m_arr(:) - real*8, allocatable :: n_arr(:) - real*8, allocatable :: cosmz(:) - real*8, allocatable :: sinmz(:) - -end module vsh_basis_module - -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -! This subroutine initializes the VSH basis recursion coefficients -! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -subroutine vsh_basis_init - - use dwm_module, only: m_max => mmax, n_max => lmax, nvshfn, vsh_terms - use vsh_basis_module - - implicit none - - integer*4 :: i, j, n, m, ifn - type(fn_map) :: fn_map0(0:2*2*(m_max + 1)*(n_max + 1)) - - !CREATE VSH FUNCTION MAP - ifn = -1 - do n = 0, n_max - do m = 0, m_max - if ((m .eq. 0) .and. (n .eq. 0)) cycle - if (m .gt. n) cycle - do j = 0, 1 - do i = 0, 1 - if ((m .eq. 0) .and. (i .eq. 1)) cycle - ifn = ifn + 1 - fn_map0(ifn)%realimag = i - fn_map0(ifn)%irrotational = j - fn_map0(ifn)%M = m - fn_map0(ifn)%N = n - enddo - enddo - enddo - enddo - nvshfn = ifn + 1 - allocate(fn_map1(0:nvshfn - 1)) - do ifn = 0, nvshfn - 1 - fn_map1(ifn)%realimag = fn_map0(ifn)%realimag - fn_map1(ifn)%irrotational = fn_map0(ifn)%irrotational - fn_map1(ifn)%M = fn_map0(ifn)%M - fn_map1(ifn)%N = fn_map0(ifn)%N - enddo - - !CREATE ARRAY THAT WILL CONTAIN VSH BASIS VALUES - allocate(vsh_terms(0:1, 0:nvshfn - 1)) - - !CREATE RECURSION COEFFICIENT ARRAYS - allocate(A(0:m_max, 0:n_max)) - allocate(B(0:m_max, 0:n_max)) - allocate(anm(0:m_max, 0:n_max)) - allocate(bnm(0:m_max, 0:n_max)) - allocate(fnm(0:m_max, 0:n_max)) - allocate(cm(0:m_max)) - allocate(cn(0:n_max)) - allocate(e0n(0:n_max)) - allocate(m_arr(0:m_max)) - allocate(n_arr(0:n_max)) - allocate(cosmz(0:m_max)) - allocate(sinmz(0:m_max)) - A = 0 - B = 0 - - !COMPUTE RECURSION COEFFICIENTS - do m = 0, m_max - cm(m) = dsqrt(1 + 0.5/dble(max(m, 1))) - m_arr(m) = dble(m) - enddo - do n = 0, n_max - n_arr(n) = dble(n) - cn(n) = 1/dsqrt(dble(max(n, 1))*dble(n + 1)) - e0n(n) = dsqrt(dble(n*(n + 1))/2.0) - enddo - anm = 0 - bnm = 0 - fnm = 0 - do m = 1, m_max - if (m .eq. n_max) cycle - do n = m + 1, n_max - anm(m, n) = dsqrt(dble((2*n - 1)*(2*n + 1))/dble((n - m)*(n + m))) - bnm(m, n) = dsqrt(dble((2*n + 1)*(n + m - 1)*(n - m - 1))/dble((n - m)*(n + m)*(2*n - 3))) - fnm(m, n) = dsqrt(dble((n - m)*(n + m)*(2*n + 1))/dble(2*n - 1)) - enddo - enddo - - return - -end subroutine vsh_basis_init - -!*************************************************************************************************** -! -!JOHN EMMERT 3/26/07 -!EVALUATES A SERIES OF 2-COMPONENT (HORIZONTAL) VECTOR SPHERICAL HARMONIC FUNCTIONS, UP TO SPECIFIED -!DEGREE AND ORDER. THE CONVENTION OF KILLEEN ET AL. [ADV. SPACE RES., 1987, P. 207] -!IS USED, EXCEPT THAT NORMALIZED ASSOCIATED LEGENDRE FUNCTIONS ARE USED. -! -!7/7/07 TRANSLATED TO F90 FROM IDL VERSION. TRANSLATION IS LIMITED, AND ASSUMES THAT THE INPUT -!ARE IN DEGREES, THE THETA ARGUMENT IS A LATITUDE, AND ONLY VALID (NON-ZERO) FUNCTIONS ARE TO BE -!RETURNED. MUST BE INITIALIZED WITH vsh_basis_init -! -!CALLING SEQUENCE -! Result = vsh_basis(theta,phi) -! -!ARGUMENTS -! theta The latitudinal coordinate, specified in degrees. -! phi The azimuthal coordinate, specified in degrees. -! -!RESULT -! A 2 x nfn array, where nfn is the number of valid functions in the basis. -! The two elements of the first dimension correspond to the meridional and zonal components -! (in that order) of the horizontal spherical harmonic vectors. -! -!ROUTINES USED -! None. - -subroutine vsh_basis(theta, phi) - - use dwm_module, only: m_max => mmax, n_max => lmax, nvshfn, vsh_terms - use vsh_basis_module - - implicit none - - real*4 :: theta, phi - real*8 :: x, y, z, mz, norm_m - integer*4 :: n, m, ifn - integer*4 :: fn_id - - real*8, parameter :: pi = 3.141592653590, dtor = pi/180D0 - - !PROCESS INPUT ARGUMENTS - - x = cos((90.-dble(theta))*dtor) - y = dsqrt(1 - x*x) !y = sin(theta) - z = dble(phi)*dtor - - !CALCULATE Pnm / sin(theta) - if (m_max .ge. 1) B(1, 1) = dsqrt(3D0) - do m = 2, m_max - B(m, m) = y*cm(m)*B(m - 1, m - 1) - enddo - do m = 1, m_max - do n = m + 1, n_max - B(m, n) = anm(m, n)*x*B(m, n - 1) - bnm(m, n)*B(m, n - 2) - enddo - enddo - - !CALCULATE d(Pnm) / d(theta) - do m = 1, m_max - do n = m, n_max - A(m, n) = n_arr(n)*x*B(m, n) - fnm(m, n)*B(m, n - 1) - enddo - enddo - do n = 1, n_max - A(0, n) = -e0n(n)*y*B(1, n) - enddo - - !CALCULATE m(Pnm) / sin(theta) AND APPLY SECTORAL NORMALIZATION - do m = 0, m_max - if (m .eq. 0) then - norm_m = 1D0/sqrt(2D0) !Holmes and Featherstone norm factor adjusted to match Swartztrauber - else - norm_m = 0.5D0 !Holmes and Featherstone norm factor adjusted to match Swartztrauber - endif - do n = m, n_max - B(m, n) = B(m, n)*m_arr(m)*cn(n)*norm_m - A(m, n) = A(m, n)*cn(n)*norm_m - enddo - enddo - - !CALCULATE VECTOR SPHERICAL HARMONIC FUNCTIONS - - do m = 0, m_max - mz = dble(m)*z - cosmz(m) = cos(mz) - sinmz(m) = sin(mz) - enddo - do ifn = 0, nvshfn - 1 - m = fn_map1(ifn)%M - n = fn_map1(ifn)%N - fn_id = fn_map1(ifn)%realimag + 2*fn_map1(ifn)%irrotational - select case (fn_id) - case (0) - vsh_terms(0, ifn) = real(-A(m, n)*cosmz(m)) !Multiplies real pt of irrot. coeff. (b) - vsh_terms(1, ifn) = real(-B(m, n)*sinmz(m)) !Multiplies real pt of irrot. coeff. (b) - case (1) - vsh_terms(0, ifn) = real(A(m, n)*sinmz(m)) !Multiplies imag. pt of irrot. coeff. (b) - vsh_terms(1, ifn) = real(-B(m, n)*cosmz(m)) !Multiplies imag. pt of irrot. coeff. (b) - case (2) - vsh_terms(0, ifn) = real(B(m, n)*sinmz(m)) !Multiplies real pt of solen. coeff. (c) - vsh_terms(1, ifn) = real(-A(m, n)*cosmz(m)) !Multiplies real pt of solen. coeff. (c) - case (3) - vsh_terms(0, ifn) = real(B(m, n)*cosmz(m)) !Multiplies imag. pt of solen. coeff. (c) - vsh_terms(1, ifn) = real(A(m, n)*sinmz(m)) !Multiplies imag. pt of solen. coeff. (c) - end select - enddo - - return - -end subroutine vsh_basis - -!*************************************************************************************************** -! -!JOHN EMMERT 5/3/07 -!EVALUATES A BASIS OF QUADRATIC KP SPLINES WITH NODES AT [-10,-8,0,2,5,8,18,20] -!AND SUMS THE FIRST TWO AND LAST TWO BASIS FUNCTIONS. THIS IS EQUIVALENT TO IMPOSING -!A CONSTRAINT OF ZERO SLOPE AT Kp=0 and Kp=8. THE FUNCTION RETURNS THREE TERMS. INPUT -!Kp VALUES GREATER THAN 8 ARE TRUNCATED TO 8. -! -!TRANSLATED TO F90 FROM IDL VERSION, 7/7/07 -! -!CALLING SEQUENCE -! Result = CALL DWM_KPSPL3_CALC( kp, dwm_kpspl3 ) -! -!ARGUMENTS -! kp Kp index (0-8) -! dwm_kpspl3 A 3-element real array containing the resulting basis functions. -! -!ROUTINES USED -! bspline_calc - -subroutine dwm_kpspl3_calc(kp0, dwm_kpspl3) - - implicit none - - real*4, intent(in) :: kp0 - real*4, intent(out) :: dwm_kpspl3(0:2) - - real*4 :: kp - real*4 :: kpspl(0:4) - - external :: bspline_calc - - kp = max(real(kp0), 0.) - kp = min(real(kp), 8.) - call bspline_calc(8, kp, (/-10., -8., 0., 2., 5., 8., 18., 20./), kpspl, 2, 0) - dwm_kpspl3(0) = kpspl(0) + kpspl(1) - dwm_kpspl3(1) = kpspl(2) - dwm_kpspl3(2) = kpspl(3) + kpspl(4) - -end subroutine dwm_kpspl3_calc - -!*************************************************************************************************** - -!JOHN EMMERT 5/4/07 -!COMPUTES A LATITUDE DEPENDENT WEIGHTING FUNCTION THAT GOES TO -!ZERO AT LOW LATITUDES AND ONE AT HIGH LATITUDES. THE TRANSITION -!IS AN EXPONENTIAL S-CURVE, WITH THE TRANSITION LATITUDE DETERMINED -!BY THE MLT/Kp MODEL GENERATED BY dwm_maxgrad1_02.pro, AND A -!TRANSITION WITH SPECIFIED BY THE CALLING ROUTINE. -! -!TRANSLATED TO F90 FROM IDL VERSION, 7/7/07 -! -! -!CALLING SEQUENCE -! Result = DWM_LATWGT2(mlat, mlt, kp, twidth) -! -!ARGUMENTS -! mlt: An n-element array of magnetic local times (hours) -! mlat: Magnetic latitude (scalar value) -! kp: 3-hour Kp index -! twidth: Latitude transition width -! -!ROUTINES USED -! None - -function dwm_latwgt2(mlat, mlt, kp0, twidth) - - implicit none - - real*4 :: dwm_latwgt2 - real*4 :: mlat, mlt, kp0, kp, twidth - real*4 :: mltrad, sinmlt, cosmlt, tlat - - real*4, parameter :: coeff(0:5) = (/65.7633, -4.60256, -3.53915, & - -1.99971, -0.752193, 0.972388/) - real*4, parameter :: pi = 3.141592653590, dtor = pi/180D0 - - mltrad = mlt*15.0*dtor - sinmlt = sin(mltrad) - cosmlt = cos(mltrad) - kp = max(real(kp0), 0.) - kp = min(real(kp), 8.) - tlat = coeff(0) + coeff(1)*cosmlt + coeff(2)*sinmlt + & - kp*(coeff(3) + coeff(4)*cosmlt + coeff(5)*sinmlt) - dwm_latwgt2 = 1.0/(1 + exp(-(abs(mlat) - tlat)/twidth)) - -end function dwm_latwgt2 - -!****************************************************************************** -!****************************************************************************** -! -!BSPLINE -!JOHN EMMERT 3/31/05 -!TRANSLATED TO FORTRAN-90 10/4/06. FORTRAN VERSION ONLY ALLOWS SCALAR X ARGUMENT -!CALCULATES A BASIS OF B-SPLINES OF SPECIFIED ORDER -!USES DE BOOR'S RECURSION RELATION -!DeBoor, C. A. (1978), A practical guide to splines, Appl. Math. Sci., 27, -! Springer, New York. -! -!CALLING SEQUENCE: CALL BSPLINE_CALC(m, x, nodes, bspline, order, periodic) -! -!ARGUMENTS -! m: The number of elements in the 'nodes' argument array (integer). -! x: The dependent variable location at which the spline basis is -! to be evaluated (real). -! nodes: Vector of ordered node positions (real array). -! -! For a non-periodic basis: -! Add k-1 (=the value of the order keyword, below) nodes to -! either end of the range (domain) of the data. The extra -! nodes on the left are the starting points of splines that -! end inside the domain. The extra nodes on the right are the -! end points of splines that start inside the domain. The -! splines actually used in the basis are those that begin at -! the first m-k nodes. The sum of splines is then one (i.e., -! normalized) over the domain. -! -! For a periodic basis: -! The last node is identified with the first, so that there are -! m-1 splines in the basis. For example, for a periodic basis -! of 6 evenly spaced splines over the interval [0,24], with the -! first node at 2, use the following array of 7 nodes: -! [2,6,10,14,18,22,26] -! -! order: Set this integer argument to the desired spline order (=k-1 -! in De Boor's notation). -! Simple bins: order=0 -! Linear interpolation: order=1 -! Quadratic splines: order=2 -! Cubic splines: order=3 (default) -! etc. -! Note that the number of nodes must be greater than k. -! -! periodic: Set this integer argument to 1 if a basis of periodic -! splines is desired; 0 otherwise. - -!RESULT -! The function returns bspline, a m1-element array, where m1 = m-k in the -! case of a non-periodic basis and m-1 in the case of a periodic basis. The -! elements of the array represent each of the basis splines. - -!EXAMPLE -! x = 18.0 -! nodes = (/1.0, 3.5, 6.0, 18.0, 20.5, 23.0, 25.0/) -! m = size(nodes) -! order = 3 -! periodic = 1 -! call bspline_calc(m, x, nodes, bspline, order, periodic) -! print *, bspline -! 0.025355 0.390467 0.584179 0.000000 0.000000 0.000000 -! -!ROUTINES USED THAT ARE NOT IN THE STANDARD FORTRAN-90 LIBRARY -! pershift -! - -subroutine bspline_calc(nnode0, x0, node0, bspline, order, periodic) - - implicit none - - integer*4, intent(in) :: nnode0, order, periodic - real*4, intent(in) :: x0, node0(0:nnode0 - 1) - integer*4 :: i, j, k, nnode, nspl - real*4 :: x, perint(0:1), perspan, dx1, dx2 - real*4, allocatable :: node(:), node1(:) - real*4, allocatable :: bspline0(:) - real*4, intent(out) :: bspline(0:nnode0 - 1 - periodic - (1 - periodic)*(order + 1)) - real*4, external :: pershift - - !PREPARE WORKING ARRAYS - k = order + 1 - nnode = nnode0 + periodic*order - nspl = nnode - k - x = x0 - allocate(node(0:nnode - 1), node1(0:nnode - 1)) - allocate(bspline0(0:nnode - 2)) - if (periodic .eq. 1) then - perint = (/node0(0), node0(nnode0 - 1)/) - perspan = perint(1) - perint(0) - x = pershift(x, perint) - node = (/node0, node0(1:order) + perspan/) - do i = 0, nnode0 + order - 1 - node1(i) = pershift(node(i), perint) - enddo - else - node = node0 - node1 = node - endif - - !COMPUTE SPLINES - do i = 0, nnode - 2 - bspline0(i) = 0.0 - if (node1(i + 1) .gt. node1(i)) then - if ((x .ge. node1(i)) .and. (x .lt. node1(i + 1))) bspline0(i) = 1.0 - else - if ((x .ge. node1(i)) .or. (x .lt. node1(i + 1))) bspline0(i) = 1.0 - endif - enddo - do j = 2, k - do i = 0, nnode - j - 1 - dx1 = x - node1(i) - dx2 = node1(i + j) - x - if (periodic .eq. 1) then - if (dx1 .lt. 0) dx1 = dx1 + perspan - if (dx2 .lt. 0) dx2 = dx2 + perspan - endif - bspline0(i) = bspline0(i)*dx1/(node(i + j - 1) - node(i)) & - + bspline0(i + 1)*dx2/(node(i + j) - node(i + 1)) - enddo - enddo - bspline = bspline0(0:nspl - 1) - deallocate(node, node1, bspline0) - - return - -end subroutine bspline_calc - -!****************************************************************************** -!****************************************************************************** -! -!PERSHIFT -!JOHN EMMERT 9/12/03 -!TRANSLATED TO FORTRAN-90 10/4/06. FORTRAN VERSION ONLY ALLOWS SCALAR INPUTS -!SHIFTS INPUT VALUES INTO A SPECIFIED PERIODIC INTERVAL -! -!CALLING SEQUENCE: Result = PERSHIFT(x, range) -! -!ARGUMENTS -! x: The value to be shifted -! perint: 2-element vector containing the start and end values -! of the desired periodic interval. The periodicity is -! determined by the span of the range. -! -!ROUTINES USED THAT ARE NOT IN THE STANDARD FORTRAN-90 LIBRARY -! None - -function pershift(x, perint) - - real*4, parameter :: tol = 1e-4 - real*4 :: x, perint(0:1) - real*4 :: a, span, offset, offset1, pershift - - pershift = x - a = perint(0) - span = perint(1) - perint(0) - if (span .ne. 0) then - offset = x - a - offset1 = mod(offset, span) - if (abs(offset1) .lt. tol) offset1 = 0 - endif - pershift = a + offset1 - if ((offset .lt. 0) .and. (offset1 .ne. 0)) pershift = pershift + span - - return - -end function pershift - -!****************************************************************************** -!****************************************************************************** -! -!AP_TO_KP -!JOHN EMMERT 7/10/07 -!CONVERTS AP VALUES TO KP VALUES, VIA LINEAR INTERPOLATION ON THE LOOKUP -!TABLE -! -!CALLING SEQUENCE: Result = AP_TO_KP(ap) -! -!ARGUMENTS -! ap: The ap index. Values <0 or >400 are truncated -! to 0 and 400, respectively -! -!ROUTINES USED THAT ARE NOT IN THE STANDARD FORTRAN-90 LIBRARY -! None - -function ap_to_kp(ap0) - - real*4, parameter :: apgrid(0:27) = (/0., 2., 3., 4., 5., 6., 7., 9., 12., 15., 18., & - 22., 27., 32., 39., 48., 56., 67., 80., 94., & - 111., 132., 154., 179., 207., 236., 300., 400./) - real*4, parameter :: kpgrid(0:27) = (/0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., & - 12., 13., 14., 15., 16., 17., 18., 19., 20., 21., & - 22., 23., 24., 25., 26., 27./)/3.0 - real*4 :: ap0, ap, ap_to_kp - integer*4 :: i - - ap = ap0 - if (ap .lt. 0) ap = 0 - if (ap .gt. 400) ap = 400 - - i = 1 - do while (ap .gt. apgrid(i)) - i = i + 1 - enddo - if (ap .eq. apgrid(i)) then - ap_to_kp = kpgrid(i) - else - ap_to_kp = kpgrid(i - 1) + (ap - apgrid(i - 1))/(3.0*(apgrid(i) - apgrid(i - 1))) - endif - - return - -end function ap_to_kp - -!****************************************************************************** -!****************************************************************************** -! -!DWM_ALTWGT -!JOHN EMMERT 7/10/07 -!COMPUTES AN EXPONENTIAL STEP FUNCTION IN HEIGHT TO BE APPLIED TO DWM WINDS (WHICH -!HAVE NO HEIGHT DEPENDENCE). THE FUNCTION CUTS OFF DISTURBANCE WINDS BELOW 125 KM. -! -!CALLING SEQUENCE: Result = DWM_ALTWGT(alt) -! -!ARGUMENTS -! alt: Height in km -! -!ROUTINES USED THAT ARE NOT IN THE STANDARD FORTRAN-90 LIBRARY -! None - -function dwm_altwgt(alt) - - real*4, parameter :: talt = 125.0, twidth = 5.0 - real*4 :: alt, dwm_altwgt - - dwm_altwgt = 1.0/(1 + exp(-(alt - talt)/twidth)) - - return - -end function dwm_altwgt - -!********************************************************************* - -subroutine gd2qd(glat, glon, qdlat, qdlon, f1e, f1n, f2e, f2n) - - implicit none - - real*4, intent(in) :: glat, glon - real*4, intent(out) :: qdlat, qdlon - real*4, intent(out) :: f1e, f1n, f2e, f2n - real*4 :: f1(2), f2(2) - integer*4 :: ist - real*4, parameter :: alt = 250.0 - real*4 :: hr - - call apex(glat, glon, alt, hr, qdlon, qdlat, f1, f2, ist) - - if (ist .gt. 0) stop - - f1e = f1(1) - f1n = f1(2) - f2e = f2(1) - f2n = f2(2) - - return - -end subroutine gd2qd diff --git a/src/ModHwm14.f90 b/src/ModHwm14.f90 index 7ae40fec..fd3837b5 100644 --- a/src/ModHwm14.f90 +++ b/src/ModHwm14.f90 @@ -124,6 +124,9 @@ subroutine alfbasis(nmax, mmax, theta, P, V, W) real(8) :: x, y real(8), parameter :: p00 = 0.70710678118654746d0 + W = 0 + V = 0 + P(0, 0) = p00 x = dcos(theta) y = dsin(theta) diff --git a/src/ModInputs.f90 b/src/ModInputs.f90 index 0b327630..d127be5d 100644 --- a/src/ModInputs.f90 +++ b/src/ModInputs.f90 @@ -46,19 +46,21 @@ module ModInputs character(len=iCharLen_) :: cAMIEFileSouth = "none" character(len=iCharLen_) :: cAMIEFileNorth = "none" - character(len=iCharLen_) :: cAuroralModel = "FRE" + character(len=iCharLen_), allocatable :: cAMIEListSouth(:) + character(len=iCharLen_), allocatable :: cAMIEListNorth(:) + integer :: nAMIENorth = 0 + integer :: nAMIESouth = 0 - character(len=iCharLen_) :: PotentialModel - character(len=iCharLen_) :: AuroralModel + ! Set to zero because planets other than earth exist. + character(len=iCharLen_) :: cAuroralModel = "zero" + character(len=iCharLen_) :: cPotentialModel = "zero" logical :: UseCCMCFileName = .false. logical :: UseSecondsInFilename = .true. !xianjing - logical :: UseIMF = .true. - logical :: UseHpi = .true. - !!! Xing Meng Nov 2018 to use ISR E field in a local region + Weimer elsewhere + ! This is currently not working with the new Electrodynamics setup. logical :: UseRegionalAMIE = .false. logical :: UseTwoAMIEPotentials = .false. real(Real8_) :: AMIETimeStart, AMIETimeEnd @@ -68,28 +70,26 @@ module ModInputs real :: AMIELatEnd = 70.0 real :: AMIEBoundaryWidth = 4.0 ! lat and lon width to transit to Weimer solution - logical :: UseNewellAurora = .false. - logical :: UseNewellAveraged = .true. - logical :: UseNewellMono = .false. - logical :: UseNewellWave = .false. - logical :: DoNewellRemoveSpikes = .true. - logical :: DoNewellAverage = .true. - - logical :: UseOvationSME = .false. - logical :: UseOvationSMEMono = .false. - logical :: UseOvationSMEWave = .false. - logical :: UseOvationSMEIon = .false. + logical :: UseDiffuseAurora = .true. + logical :: UseMonoAurora = .false. + logical :: UseWaveAurora = .false. + logical :: UseIonAurora = .false. - logical :: UseAeModel = .false. - logical :: UseFtaModel = .false. + logical :: doStopIfNoAurora = .false. + logical :: doStopIfNoPotential = .false. - logical :: UseFangEnergyDeposition = .true. + ! logical :: UseOvationSMEMono = .false. + ! logical :: UseOvationSMEWave = .false. + ! logical :: UseOvationSMEIon = .false. logical :: IsKappaAurora = .false. real :: AuroraKappa = 3 real :: AveEFactor = 1.0 - ! This is true because FR&E is default. - logical :: NormalizeAuroraToHP = .true. + ! This is False because FR&E is not default. + logical :: NormalizeAuroraToHP = .false. + logical :: DoSeparateHPI = .false. + logical::AllowAurWODiffuse = .false. + real :: MaxAveEAurora = 80.0 logical :: UseCusp = .false. real :: CuspAveE = 0.1 @@ -97,6 +97,10 @@ module ModInputs real :: CuspMltHalfWidth = 1.5 real :: CuspLatHalfWidth = 1.0 + logical :: UsePolarRain = .false. + real :: polarRainEFlux = 0.1 ! 0.1 ergs/cm2/s is a small value + real :: polarRainAveE = 0.3 ! 300 eV is a nominal polar rain value + logical :: DoOverwriteIonosphere = .false. logical :: DoOverwriteWithIRI = .true. logical :: DoOverwriteWithSami = .false. @@ -132,7 +136,7 @@ module ModInputs real :: DtPlot(nMaxOutputTypes) real :: DtPlotSave(nMaxOutputTypes) real :: PlotTimeChangeDt(nMaxOutputTypes) - real(Real8_) :: PlotTimeChangeStart, PlotTimeChangeEnd + real(Real8_) :: PlotTimeChangeStart = 0.0, PlotTimeChangeEnd = 0.0 logical :: DoAppendFiles = .false. @@ -190,6 +194,7 @@ module ModInputs logical :: UseApex = .true. logical :: UseMSIS = .true. + logical :: UseMsis21 = .false. real, dimension(25) :: sw_msis = 1.0 logical :: UseIRI = .true. logical :: UseMSISTides = .true. @@ -219,7 +224,7 @@ module ModInputs ! These are things for the ion precipitation !/ - logical :: UseIonPrecipitation = .false. + ! logical :: UseIonAurora = .false. logical :: UseDamping = .false. @@ -270,7 +275,6 @@ module ModInputs logical :: UseSolarHeating = .true. logical :: UseJouleHeating = .true. - logical :: UseAuroralHeating = .true. logical :: UseNOCooling = .true. logical :: UseOCooling = .true. logical :: UseConduction = .true. @@ -283,6 +287,8 @@ module ModInputs logical :: UseCO2Cooling = .true. real :: CO2ppm = 225.0 + logical :: DoN4SHack = .false. + ! Allow the user to change the planet's characteristics: real :: RotationPeriodInput = Rotation_Period real :: OmegaBodyInput = 2.0*pi/Rotation_Period @@ -317,6 +323,12 @@ module ModInputs ! AGB: Setting physical limits for ionospheric dynamics real :: MaxVParallel = 100.0 real :: MaxEField = 0.1 + ! Lower limit on ion density + real :: MinIonDensity = 100.0 + real :: MinIonDensityAdvect = 1e5 + !Lower limits on neutral density + real :: MinNeutralDensity = 200.0 + real :: MinNeutralDensityAdvect = 1e5 !\ ! Methods for completing chemistry @@ -448,9 +460,6 @@ subroutine set_defaults iInputIonChemType = cSubCycleChemType_ iInputNeutralChemType = cSubCycleChemType_ - PotentialModel = "Weimer05" - AuroralModel = "ihp" - dTAurora = 120.0 if (IsEarth) then diff --git a/src/ModNewell.f90 b/src/ModNewell.f90 deleted file mode 100644 index 54be250b..00000000 --- a/src/ModNewell.f90 +++ /dev/null @@ -1,641 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -module ModNewell - use ModInputs - implicit none - - integer, parameter :: iCharLenNewell_ = iCharLen_ - - character(len=iCharLenNewell_) :: dir = "UA/DataIn/Aurora/" - - character(len=iCharLenNewell_) :: cFileDiffef = "diff.txt" - character(len=iCharLenNewell_) :: cFileDiffnf = "diff_n.txt" - character(len=iCharLenNewell_) :: cFileDiffp = "prob_b_diff.txt" - character(len=iCharLenNewell_) :: cFileMonoef = "mono.txt" - character(len=iCharLenNewell_) :: cFileMononf = "mono_n.txt" - character(len=iCharLenNewell_) :: cFileMonop = "prob_b_mono.txt" - character(len=iCharLenNewell_) :: cFileWaveef = "wave.txt" - character(len=iCharLenNewell_) :: cFileWavenf = "wave_n.txt" - character(len=iCharLenNewell_) :: cFileWavep = "prob_b_wave.txt" - character(len=iCharLenNewell_) :: cFileIonsef = "ions.txt" - character(len=iCharLenNewell_) :: cFileIonsnf = "ions_n.txt" - - integer, parameter :: nMlts = 96 - integer, parameter :: nMLats = 160 - integer, parameter :: nProbs = 3 - integer, parameter :: ndF = 12 - - real, dimension(nMlts, nMlats) :: & - B1aDiff, B2aDiff, B1aDiffn, B2aDiffn, rFaDiff, rFaDiffn, B1pDiff, B2pDiff, & - B1aMono, B2aMono, B1aMonon, B2aMonon, rFaMono, rFaMonon, B1pMono, B2pMono, & - B1aWave, B2aWave, B1aWaven, B2aWaven, rFaWave, rFaWaven, B1pWave, B2pWave, & - B1aIons, B2aIons, B1aIonsn, B2aIonsn, rFaIons, rFaIonsn, & - ProbDiffTotal, ProbMonoTotal, ProbWaveTotal, ProbIonsTotal, & - NumberFluxDiff, EnergyFluxDiff, & - NumberFluxMono, EnergyFluxMono, & - NumberFluxWave, EnergyFluxWave, & - NumberFluxIons, EnergyFluxIons, & - Area - - real, dimension(ndF, nMlts, nMlats) :: & - ProbDiff, ProbMono, ProbWave - - real :: dFdt = 1000.0 - integer :: dFBin - -contains - - ! ------------------------------------------------------------------- - - subroutine init_newell - - use ModConstants, only: pi - integer :: iLat - - call report("Newell Aurora Initializing", 2) - - call read_all_regression_files - call read_all_probability_files - - ! This assumes about 500 km altitude and 1/2 deg and 1/4 hour resolution - area = 120.0*120.0*0.5*3.75 - - do iLat = 1, nMLats/2 - 1 - area(:, iLat) = area(:, iLat)*cos((50.0 + 0.5*(iLat - 1))*pi/180.0) - area(:, iLat + nMLats/2) = area(:, iLat)*cos((50.0 + 0.5*(iLat - 1))*pi/180.0) - enddo - - call report("Newell Aurora Initialized", 2) - - end subroutine init_newell - - ! ------------------------------------------------------------------- - - subroutine run_newell(iBlock) - - use ModSizeGITM - use ModGITM - use ModInputs - - integer, intent(in) :: iBlock - integer :: iLon, iLat, iMlat, iMlt, iMlat2 - real :: numflux, hps, hpn - - call start_timing("run_newell") - - ElectronEnergyFlux = 0.01 - ElectronAverageEnergy = 0.1 - - if (iBlock == 1) then - - call calc_probability(ProbDiff, B1pDiff, B2pDiff, ProbDiffTotal) - call calc_probability(ProbMono, B1pMono, B2pMono, ProbMonoTotal) - call calc_probability(ProbWave, B1pWave, B2pWave, ProbWaveTotal) - ProbIonsTotal = 1.0 - - call calc_flux(ProbDiffTotal, B1aDiff, B2aDiff, EnergyFluxDiff) - call calc_flux(ProbDiffTotal, B1aDiffn, B2aDiffn, NumberFluxDiff) - - call calc_flux(ProbMonoTotal, B1aMono, B2aMono, EnergyFluxMono) - call calc_flux(ProbMonoTotal, B1aMonon, B2aMonon, NumberFluxMono) - -! if (iDebugLevel > -1) then -! do iMlat = 1, nMLats -! write(*,*) "from pat: ",iMlat,dfdt,& -! ProbMonoTotal(8,iMlat), B1aMono(8,iMlat), B2aMono(8,iMlat), & -! EnergyFluxMono(8,iMlat), NumberFluxMono(8,iMlat) -! enddo -! endif - - call calc_flux(ProbWaveTotal, B1aWave, B2aWave, EnergyFluxWave) - call calc_flux(ProbWaveTotal, B1aWaven, B2aWaven, NumberFluxWave) - - call calc_flux(ProbIonsTotal, B1aIons, B2aIons, EnergyFluxIons) - call calc_flux(ProbIonsTotal, B1aIonsn, B2aIonsn, NumberFluxIons) - - where (EnergyFluxDiff > 10.0) EnergyFluxDiff = 0.5 - where (EnergyFluxDiff > 5.0) EnergyFluxDiff = 5.0 - where (EnergyFluxMono > 10.0) EnergyFluxMono = 0.5 - where (EnergyFluxMono > 5.0) EnergyFluxMono = 5.0 - where (EnergyFluxWave > 10.0) EnergyFluxWave = 0.5 - where (EnergyFluxWave > 5.0) EnergyFluxWave = 5.0 - - where (EnergyFluxIons > 4.0) EnergyFluxIons = 0.25 - where (EnergyFluxIons > 2.0) EnergyFluxIons = 2.0 - - where (NumberFluxDiff > 2.0e10) NumberFluxDiff = 0.0 - where (NumberFluxDiff > 2.0e9) NumberFluxDiff = 1.0e9 - where (NumberFluxMono > 2.0e10) NumberFluxMono = 0.0 - where (NumberFluxMono > 2.0e9) NumberFluxMono = 1.0e9 - where (NumberFluxWave > 2.0e10) NumberFluxWave = 0.0 - where (NumberFluxWave > 2.0e9) NumberFluxWave = 1.0e9 - - where (NumberFluxIons > 5.0e8) NumberFluxIons = 0.0 - where (NumberFluxIons > 1.0e8) NumberFluxIons = 1.0e8 - - if (DoNewellRemoveSpikes .or. DoNewellAverage) then - - call calc_hp(EnergyFluxDiff, hps, hpn) -! write(*,*) "Before Smooth, Diffuse : ", hps, hpn - call smooth(EnergyFluxDiff) - call smooth(NumberFluxDiff) - call calc_hp(EnergyFluxDiff, hps, hpn) -! write(*,*) "After Smooth, Diffuse : ", hps, hpn - - call calc_hp(EnergyFluxMono, hps, hpn) -! write(*,*) "Before Smooth, Mono : ", hps, hpn - call smooth(EnergyFluxMono) - call smooth(NumberFluxMono) - call calc_hp(EnergyFluxMono, hps, hpn) -! write(*,*) "After Smooth, Mono : ", hps, hpn - - call calc_hp(EnergyFluxWave, hps, hpn) -! write(*,*) "Before Smooth, Wave : ", hps, hpn - call smooth(EnergyFluxWave) - call smooth(NumberFluxWave) -! write(*,*) "After Smooth, Wave : ", hps, hpn - - !call smooth(EnergyFluxIons) - !call smooth(NumberFluxIons) - - endif - - endif - - do iLon = -1, nLons + 2 - do iLat = -1, nLats + 2 - if (abs(MLatitude(iLon, iLat, nAlts + 1, iBlock)) > 50.0) then - - iMlat = floor(abs(MLatitude(iLon, iLat, nAlts + 1, iBlock)) - 50.0)*2 - iMlat = min(max(iMlat, 1), nMlats/2) - if (MLatitude(iLon, iLat, nAlts + 1, iBlock) > 0.0) & - iMlat = iMlat + nMlats/2 - iMlt = mod(floor(mod(MLT(iLon, iLat, nAlts + 1) + 24.0, 24.0)*4), nMlts) - if (iMlt == 0) iMlt = nMlts - - if (iMlat > nMlats/2) then - iMlat2 = iMlat - nMlats/2 - else - iMlat2 = iMlat + nMlats/2 - endif - - iMlat2 = min(max(iMlat2, 1), nMlats) - - ! Diffuse Energy Flux - - if (UseNewellAveraged .or. EnergyFluxDiff(iMlt, iMlat) == 0) then - - ! Add North and South together - ElectronEnergyFlux(iLon, iLat) = & - EnergyFluxDiff(iMlt, iMlat) + EnergyFluxDiff(iMlt, iMlat2) - - ! If there are values in both hemisphere, then divide by 2 - if (EnergyFluxDiff(iMlt, iMlat)* & - EnergyFluxDiff(iMlt, iMlat2) /= 0) & - ElectronEnergyFlux(iLon, iLat) = & - ElectronEnergyFlux(iLon, iLat)/2.0 - else - ElectronEnergyFlux(iLon, iLat) = & - EnergyFluxDiff(iMlt, iMlat) - endif - - ! Diffuse Number Flux - - if (UseNewellAveraged .or. NumberFluxDiff(iMlt, iMlat) == 0) then - - ! Add North and South together - numflux = & - NumberFluxDiff(iMlt, iMlat) + NumberFluxDiff(iMlt, iMlat2) - - ! If there are values in both hemisphere, then divide by 2 - if (NumberFluxDiff(iMlt, iMlat)* & - NumberFluxDiff(iMlt, iMlat2) /= 0) & - numflux = numflux/2 - - else - numflux = NumberFluxDiff(iMlt, iMlat) - endif - - if (numflux /= 0) then - ElectronAverageEnergy(iLon, iLat) = & - ElectronEnergyFlux(iLon, iLat)/numflux* & - 6.242e11/1000.0 ! ergs -> keV - endif - - ! Mono Energy Flux - - if (UseNewellAveraged .or. EnergyFluxMono(iMlt, iMlat) == 0) then - - ! Add North and South together - ElectronEnergyFluxMono(iLon, iLat) = & - EnergyFluxMono(iMlt, iMlat) + & - EnergyFluxMono(iMlt, iMlat2) - - ! If there are values in both hemisphere, then divide by 2 - if (EnergyFluxMono(iMlt, iMlat)* & - EnergyFluxMono(iMlt, iMlat2) /= 0) & - ElectronEnergyFluxMono(iLon, iLat) = & - ElectronEnergyFluxMono(iLon, iLat)/2.0 - else - ElectronEnergyFluxMono(iLon, iLat) = & - EnergyFluxMono(iMlt, iMlat) - endif - - ! Mono Number Flux - - if (UseNewellAveraged .or. NumberFluxMono(iMlt, iMlat) == 0) then - - ! Add North and South together - ElectronNumberFluxMono(iLon, iLat) = & - NumberFluxMono(iMlt, iMlat) + NumberFluxMono(iMlt, iMlat2) - - ! If there are values in both hemisphere, then divide by 2 - if (NumberFluxMono(iMlt, iMlat)* & - NumberFluxMono(iMlt, iMlat2) /= 0) & - ElectronNumberFluxMono(iLon, iLat) = & - ElectronNumberFluxMono(iLon, iLat)/2.0 - - else - ElectronNumberFluxMono(iLon, iLat) = & - NumberFluxMono(iMlt, iMlat) - endif - - ! Wave Energy Flux - - if (UseNewellAveraged .or. EnergyFluxWave(iMlt, iMlat) == 0) then - - ! Add North and South together - ElectronEnergyFluxWave(iLon, iLat) = & - EnergyFluxWave(iMlt, iMlat) + & - EnergyFluxWave(iMlt, iMlat2) - - ! If there are values in both hemisphere, then divide by 2 - if (EnergyFluxWave(iMlt, iMlat)* & - EnergyFluxWave(iMlt, iMlat2) /= 0) & - ElectronEnergyFluxWave(iLon, iLat) = & - ElectronEnergyFluxWave(iLon, iLat)/2.0 - else - ElectronEnergyFluxWave(iLon, iLat) = & - EnergyFluxWave(iMlt, iMlat) - endif - - ! Wave Number Flux - - if (UseNewellAveraged .or. NumberFluxWave(iMlt, iMlat) == 0) then - - ! Add North and South together - ElectronNumberFluxWave(iLon, iLat) = & - NumberFluxWave(iMlt, iMlat) + NumberFluxWave(iMlt, iMlat2) - - ! If there are values in both hemisphere, then divide by 2 - if (NumberFluxWave(iMlt, iMlat)* & - NumberFluxWave(iMlt, iMlat2) /= 0) & - ElectronNumberFluxWave(iLon, iLat) = & - ElectronNumberFluxWave(iLon, iLat)/2.0 - - else - ElectronNumberFluxWave(iLon, iLat) = & - NumberFluxWave(iMlt, iMlat) - endif - - endif - enddo - enddo - - call end_timing("run_newell") - - end subroutine run_newell - - ! ------------------------------------------------------------------- - - subroutine calc_flux(ProbTotal, b1a, b2a, Flux) - - real, dimension(nMlts, nMlats), intent(in) :: b1a, b2a - real, dimension(nMlts, nMlats), intent(in) :: ProbTotal - real, dimension(nMlts, nMlats), intent(out) :: Flux - - where (ProbTotal > 0) & - Flux = (dFdt*b2a + b1a)*ProbTotal - where (Flux < 0) Flux = 0.0 - - end subroutine calc_flux - - ! ------------------------------------------------------------------- - - subroutine calc_probability(Prob, b1p, b2p, ProbTotal) - - real, dimension(nMlts, nMlats), intent(in) :: b1p, b2p - real, dimension(ndF, nMlts, nMlats), intent(in) :: Prob - real, dimension(nMlts, nMlats), intent(out) :: ProbTotal - - integer :: idfp, idfm - integer :: iMlt, iMLat - - ProbTotal = b1p + b2p*dFdt - where (ProbTotal < 0.0) ProbTotal = 0.0 - where (ProbTotal > 1.0) ProbTotal = 1.0 - - do iMlt = 1, nMlts - do iMlat = 1, nMlats - if (b1p(iMlt, iMlat) == 0 .and. b2p(iMlt, iMlat) == 0) then - ProbTotal(iMlt, iMlat) = Prob(dfBin, iMlt, iMlat) - if (ProbTotal(iMlt, iMlat) == 0.0) then - idfp = dfBin + 1 - idfm = dfBin - 1 - if (idfm < 1) idfm = dfBin + 2 - if (idfp > ndF) idfp = dfBin - 2 - ProbTotal(iMlt, iMlat) = & - (Prob(idfm, iMlt, iMlat) + Prob(idfp, iMlt, iMlat))/2 - endif - endif - enddo - enddo - - end subroutine calc_probability - - ! ------------------------------------------------------------------- - - subroutine calc_dfdt(by, bz, vx) - - use ModConstants, only: pi - - real, intent(in) :: by, bz, vx - real :: dFAve, dFStep - real :: v, sintc, bt, tc, bzt - - bzt = bz - bt = sqrt(by**2 + bz**2) - v = abs(vx) - - if (bzt == 0.0) bzt = 0.001 - tc = atan2(by, bzt) - if (bt*cos(tc)*bz < 0.0) tc = tc + pi - - sintc = abs(sin(tc/2.)) - - dFdt = (v**1.33333)*(sintc**2.66667)*(BT**0.66667) - - dfave = 4421.0 - dfStep = dfAve/(ndF - 1) - dfbin = min(max(floor(dFdt/dfStep), 1), ndF) - - end subroutine calc_dfdt - - ! ------------------------------------------------------------------- - - subroutine calc_hp(value, outs, outn) - - real, dimension(nMlts, nMlats), intent(in) :: value - real, intent(out) :: outs, outn - - outs = sum(value(:, 1:nMLats/2 - 1)*Area(:, 1:nMLats/2 - 1)) - outn = sum(value(:, nMLats/2:nMLats)*Area(:, nMLats/2:nMLats)) - - end subroutine calc_hp - - ! ------------------------------------------------------------------- - - subroutine smooth(value) - - use ModSizeGITM - use ModInputs - - implicit none - - real, dimension(nMlts, nMlats) :: value, valueout - - integer :: nPL = 2, nPM = 2, nMin = 2 - integer :: iMlt, iLat, iM, iL, n, iMa, iLa, iHem - integer :: iLatStart, iLatEnd - real :: ave, std - - ! for removing bad points, we want the zone of consideration to be at - ! least 2 cells on each side (i.e., 5x5). For averaging, allow only 1 cell. - if (DoNewellAverage) nMin = 1 - - ! How many points to average over in Lat and MLT. - ! Newell is at 1/2 deg resolution in lat, so averaging would be over - nPL = max(1, floor(180.0/float(nBlocksLat*nLats) + 0.499)) - ! no *2, because this is for each side - - ! Newell is at 1/4 hour MLT, which is 3.75 deg so averaging would be over - nPM = max(1, floor(360.0/float(nBlocksLon*nLons)/3.75/2 + 0.499)) - -! write(*,*) "nPL, nPM in smooth : ", nPL, nPM - - valueout = value*0.0 - do iMlt = 1, nMlts - do iHem = 1, 2 - if (iHem == 1) then - iLatStart = nPl + 1 - iLatEnd = nMlats/2 - nPl - 1 - endif - if (iHem == 2) then - iLatStart = nMlats/2 + nPl + 1 - iLatEnd = nMlats - nPl - 1 - endif - - do iLat = iLatStart, iLatEnd - if (value(iMlt, iLat) > 0.0) then - n = 0 - ave = 0.0 - do iM = iMlt - nPM, iMlt + nPM - iMa = iM - iMa = mod(iMa + nMlts, nMlts) - if (iMa == 0) iMa = nMlts - do iLa = iLat - nPL, iLat + nPL - if (value(iMa, iLa) > 0.0) then - ave = ave + value(iMa, iLa) - n = n + 1 - endif - enddo - enddo - if (n > (2*nPL + 1)*(2*nPM + 1)/2) then - ave = ave/n - std = 0.0 - do iM = iMlt - nPM, iMlt + nPM - iMa = iM - iMa = mod(iMa + nMlts, nMlts) - if (iMa == 0) iMa = nMlts - do iLa = iLat - nPL, iLat + nPL - if (value(iMa, iLa) > 0.0) then - std = std + (ave - value(iMa, iLa))**2 - endif - enddo - enddo - std = sqrt(std/n) - ! We only want to kill points that are 2 stdev ABOVE the average - ! value. - if (abs(value(iMlt, iLat) - ave) > 2*std .or. & - DoNewellAverage) then - !write(*,*) "ave : ", valueout(iMlt,iLat), ave, & - ! std, abs(ave - value(iMlt,iLat)), 2*std - valueout(iMlt, iLat) = ave - else - valueout(iMlt, iLat) = value(iMlt, iLat) - endif - endif - endif - enddo - enddo - enddo - - value = valueout - - end subroutine smooth - - ! ------------------------------------------------------------------- - - subroutine read_single_regression_file(cFile, rFa, b1a, b2a) - - use ModInputs, only: iInputUnit_ - - character(len=*), intent(in) :: cFile - real, dimension(nMlts, nMlats), intent(out) :: rFa, b1a, b2a - integer :: year0, day0, year1, day1, nFiles, sf0 - integer :: iMlt, iMlat, i, j, iError - - iError = 0 - - open(iInputUnit_, file=cFile, status="old", iostat=iError) - - if (iError /= 0) then - write(*, *) "Error in read_single_regression_file" - call stop_gitm(trim(cFile)//" cannot be opened") - endif - - read(iInputUnit_, *, iostat=iError) year0, day0, year1, day1, nFiles, sf0 - - if (iError /= 0) then - write(*, *) "Error in read_single_regression_file" - call stop_gitm(trim(cFile)//" cannot read first line") - endif - - do iMlt = 1, nMlts - do iMlat = 1, nMlats - read(iInputUnit_, *, iostat=iError) & - i, j, b1a(iMlt, iMlat), b2a(iMlt, iMlat), rfa(iMlt, iMlat) - if (iError /= 0) then - write(*, *) "Error in read_single_regression_file:", iMlt, iMlat - call stop_gitm(trim(cFile)//" error reading file") - endif - enddo - enddo - - close(iInputUnit_) - - end subroutine read_single_regression_file - - ! ------------------------------------------------------------------- - - subroutine read_single_probability_file(cFile, b1p, b2p, Prob) - - use ModInputs, only: iInputUnit_ - - character(len=*), intent(in) :: cFile - real, dimension(nMlts, nMlats), intent(out) :: b1p, b2p - real, dimension(ndF, nMlts, nMlats), intent(out) :: Prob - integer :: year0, day0, year1, day1, nFiles, sf0 - integer :: iMlt, iMlat, idF, iError - - iError = 0 - - open(iInputUnit_, file=cFile, status="old", iostat=iError) - - if (iError /= 0) then - write(*, *) "Error in read_single_probability_file" - call stop_gitm(trim(cFile)//" cannot be opened") - endif - - read(iInputUnit_, *, iostat=iError) year0, day0, year1, day1, nFiles, sf0 - - if (iError /= 0) then - write(*, *) "Error in read_single_probability_file" - call stop_gitm(trim(cFile)//" cannot read first line") - endif - - do iMlt = 1, nMlts - do iMlat = 1, nMlats - read(iInputUnit_, *, iostat=iError) & - b1p(iMlt, iMlat), b2p(iMlt, iMlat) - if (iError /= 0) then - write(*, *) "Error in read_single_probability_file:", iMlt, iMlat - call stop_gitm(trim(cFile)//" error reading file") - endif - enddo - enddo - - do iMlt = 1, nMlts - do iMlat = 1, nMlats - do idF = 1, ndF - read(iInputUnit_, *, iostat=iError) Prob(idF, iMlt, iMlat) - if (iError /= 0) then - write(*, *) "Error in read_single_probability_file:", idF, iMlt, iMlat - call stop_gitm(trim(cFile)//" error reading file") - endif - enddo - enddo - enddo - - close(iInputUnit_) - - end subroutine read_single_probability_file - - ! ------------------------------------------------------------------- - - subroutine read_all_regression_files - - character(len=iCharLenNewell_) :: cFile - - cFile = cFileDiffef - call merge_str(dir, cFile) - call read_single_regression_file(cFile, rFaDiff, b1aDiff, b2aDiff) - cFile = cFileDiffnf - call merge_str(dir, cFile) - call read_single_regression_file(cFile, rFaDiffn, b1aDiffn, b2aDiffn) - - cFile = cFileMonoef - call merge_str(dir, cFile) - call read_single_regression_file(cFile, rFaMono, b1aMono, b2aMono) - cFile = cFileMononf - call merge_str(dir, cFile) - call read_single_regression_file(cFile, rFaMonon, b1aMonon, b2aMonon) - - cFile = cFileWaveef - call merge_str(dir, cFile) - call read_single_regression_file(cFile, rFaWave, b1aWave, b2aWave) - cFile = cFileWavenf - call merge_str(dir, cFile) - call read_single_regression_file(cFile, rFaWaven, b1aWaven, b2aWaven) - - cFile = cFileIonsef - call merge_str(dir, cFile) - call read_single_regression_file(cFile, rFaIons, b1aIons, b2aIons) - cFile = cFileIonsnf - call merge_str(dir, cFile) - call read_single_regression_file(cFile, rFaIonsn, b1aIonsn, b2aIonsn) - - end subroutine read_all_regression_files - - ! ------------------------------------------------------------------- - - subroutine read_all_probability_files - - character(len=iCharLenNewell_) :: cFile - - cFile = cFileDiffp - call merge_str(dir, cFile) - call read_single_probability_file(cFile, b1pDiff, b2pDiff, ProbDiff) - - cFile = cFileMonop - call merge_str(dir, cFile) - call read_single_probability_file(cFile, b1pMono, b2pMono, ProbMono) - - cFile = cFileWavep - call merge_str(dir, cFile) - call read_single_probability_file(cFile, b1pWave, b2pWave, ProbWave) - - end subroutine read_all_probability_files - -end module ModNewell diff --git a/src/ModOvationSME.f90 b/src/ModOvationSME.f90 deleted file mode 100644 index fdfa8003..00000000 --- a/src/ModOvationSME.f90 +++ /dev/null @@ -1,258 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -module ModOvationSME - - implicit none - - integer, parameter :: nMlts = 96 - integer, parameter :: nMLats = 80 - - ! je = energy flux - ! jn = number flux - - real, dimension(5, nMlts, nMLats) :: & - beta_je_diff, beta_je_mono, beta_je_wave, beta_je_iono, & - beta_jn_diff, beta_jn_mono, beta_jn_wave, beta_jn_iono - - real, dimension(nMlts, nMLats) :: & - NumberFluxDiff, EnergyFluxDiff, & - NumberFluxMono, EnergyFluxMono, & - NumberFluxWave, EnergyFluxWave, & - NumberFluxIons, EnergyFluxIons, & - Area - - character(len=*), parameter :: cDirectory = "/UA/DataIn/Aurora/" - -contains - - ! ------------------------------------------------------------------------ - ! Run the ovation model - ! ------------------------------------------------------------------------ - - subroutine run_ovationsme(GitmStartTime, GitmCurrentTime, iBlock) - - use ModSizeGITM - use ModGITM - use ModInputs - - use ModKind, ONLY: Real8_ - use ModIndicesInterfaces - - real(Real8_), intent(in) :: GitmStartTime, GitmCurrentTime - integer, intent(in) :: iBlock - - logical :: IsFirstTime = .true. - - real :: t, onsettimePast, onsettimeFuture - real :: DeltaTone, DeltaTtwo, sme - - integer :: iLon, iLat, iMlat, iMlt, iMlat2 - real :: numflux, hps, hpn - - real, parameter :: Q = 1.602e-12 ! eV to ergs - - integer :: iError - - call start_timing("run_ovationsme") - - t = GitmCurrentTime - GitmStartTime - - call get_onsetut(GitmCurrentTime + TimeDelayHighLat, 1, onsettimePast, iError) - call get_onsetut(GitmCurrentTime + TimeDelayHighLat, 2, onsettimeFuture, iError) - call get_ae(GitmCurrentTime + TimeDelayHighLat, sme, iError) - - DeltaTone = t - onsettimePast - DeltaTtwo = onsettimeFuture - t - - call calc_flux(beta_je_diff, sme, DeltaTone, DeltaTtwo, EnergyFluxDiff) - call calc_flux(beta_je_mono, sme, DeltaTone, DeltaTtwo, EnergyFluxMono) - call calc_flux(beta_je_wave, sme, DeltaTone, DeltaTtwo, EnergyFluxWave) - call calc_flux(beta_je_iono, sme, DeltaTone, DeltaTtwo, EnergyFluxIons) - - EnergyFluxDiff = EnergyFluxDiff*Q* & - beta_je_diff(5, :, :)/(beta_je_iono(5, :, :) + 0.01) - EnergyFluxMono = EnergyFluxMono*Q* & - beta_je_mono(5, :, :)/(beta_je_iono(5, :, :) + 0.01) - EnergyFluxWave = EnergyFluxWave*Q* & - beta_je_wave(5, :, :)/(beta_je_iono(5, :, :) + 0.01) - EnergyFluxIons = EnergyFluxIons*Q* & - beta_je_iono(5, :, :)/(beta_je_iono(5, :, :) + 0.01) - - where (EnergyFluxDiff < 0.01) EnergyFluxDiff = 0.01 - where (EnergyFluxMono < 0.01) EnergyFluxMono = 0.01 - where (EnergyFluxWave < 0.01) EnergyFluxWave = 0.01 - where (EnergyFluxIons < 0.01) EnergyFluxIons = 0.01 - - where (EnergyFluxDiff > 50.0) EnergyFluxDiff = 50.0 - where (EnergyFluxMono > 50.0) EnergyFluxMono = 50.0 - where (EnergyFluxWave > 50.0) EnergyFluxWave = 50.0 - where (EnergyFluxIons > 50.0) EnergyFluxIons = 50.0 - - call calc_flux(beta_jn_diff, sme, DeltaTone, DeltaTtwo, NumberFluxDiff) - call calc_flux(beta_jn_mono, sme, DeltaTone, DeltaTtwo, NumberFluxMono) - call calc_flux(beta_jn_wave, sme, DeltaTone, DeltaTtwo, NumberFluxWave) - call calc_flux(beta_jn_iono, sme, DeltaTone, DeltaTtwo, NumberFluxIons) - - NumberFluxDiff = NumberFluxDiff* & - beta_jn_diff(5, :, :)/(beta_jn_iono(5, :, :) + 0.01) - NumberFluxMono = NumberFluxMono* & - beta_jn_mono(5, :, :)/(beta_jn_iono(5, :, :) + 0.01) - NumberFluxWave = NumberFluxWave* & - beta_jn_wave(5, :, :)/(beta_jn_iono(5, :, :) + 0.01) - NumberFluxIons = NumberFluxIons* & - beta_jn_iono(5, :, :)/(beta_jn_iono(5, :, :) + 0.01) - - where (NumberFluxDiff < 1.0) NumberFluxDiff = 1.0 - where (NumberFluxMono < 1.0) NumberFluxMono = 1.0 - where (NumberFluxWave < 1.0) NumberFluxWave = 1.0 - where (NumberFluxIons < 1.0) NumberFluxIons = 1.0 - - where (NumberFluxDiff > 50e8) NumberFluxDiff = 50e8 - where (NumberFluxMono > 50e8) NumberFluxMono = 50e8 - where (NumberFluxWave > 50e8) NumberFluxWave = 50e8 - where (NumberFluxIons > 50e8) NumberFluxIons = 50e8 - - ElectronEnergyFlux = 0.01 - ElectronAverageEnergy = 0.1 - - do iLon = -1, nLons + 2 - do iLat = -1, nLats + 2 - - if (abs(MLatitude(iLon, iLat, nAlts + 1, iBlock)) > 50.0) then - - iMlat = floor(abs(MLatitude(iLon, iLat, nAlts + 1, iBlock)) - 50.0)*2 - iMlt = mod(floor(mod(MLT(iLon, iLat, nAlts + 1) + 24.0, 24.0)*4), nMlts) - if (iMlt == 0) iMlt = nMlts - - ElectronEnergyFlux(iLon, iLat) = EnergyFluxDiff(iMlt, iMlat) - numflux = NumberFluxDiff(iMlt, iMlat) - if (numflux /= 0) then - ElectronAverageEnergy(iLon, iLat) = & - ElectronEnergyFlux(iLon, iLat)/numflux* & - 6.242e11/1000.0 ! ergs -> keV - if (ElectronAverageEnergy(iLon, iLat) > 100.0) & - ElectronAverageEnergy(iLon, iLat) = 100.0 - endif - - ElectronEnergyFluxMono(iLon, iLat) = EnergyFluxMono(iMlt, iMlat) - ElectronNumberFluxMono(iLon, iLat) = NumberFluxMono(iMlt, iMlat) - - ElectronEnergyFluxWave(iLon, iLat) = EnergyFluxWave(iMlt, iMlat) - ElectronNumberFluxWave(iLon, iLat) = NumberFluxWave(iMlt, iMlat) - - endif - - enddo - - enddo - - call end_timing("run_ovationsme") - - end subroutine run_ovationsme - - ! ------------------------------------------------------------------------ - ! ------------------------------------------------------------------------ - - subroutine calc_flux(beta, sme, delta_t_one, delta_t_two, flux) - - real, intent(in) :: beta(5, nMlts, nMLats) - real, intent(in) :: sme, delta_t_one, delta_t_two - real, intent(out) :: flux(nMlts, nMLats) - - flux = (beta(1, :, :) + & - beta(2, :, :)*sme + & - beta(3, :, :)*delta_t_one + & - beta(4, :, :)*delta_t_two) - - end subroutine calc_flux - - ! ------------------------------------------------------------------------ - ! ------------------------------------------------------------------------ - - subroutine read_ovationsm_files - - call read_single_file( & - "Diff_je_B0_Bsme_Bt1_Bt2_Rsq_by_mlt_mlat_ch_180_sqsme.txt", & - beta_je_diff) - call read_single_file( & - "Mono_je_B0_Bsme_Bt1_Bt2_Rsq_by_mlt_mlat_ch_180_sqsme.txt", & - beta_je_mono) - call read_single_file( & - "Wave_je_B0_Bsme_Bt1_Bt2_Rsq_by_mlt_mlat_ch_180_sqsme.txt", & - beta_je_wave) - call read_single_file( & - "Iono_je_B0_Bsme_Bt1_Bt2_Rsq_by_mlt_mlat_ch_180_sqsme.txt", & - beta_je_iono) - - call read_single_file( & - "Diff_jn_B0_Bsme_Bt1_Bt2_Rsq_by_mlt_mlat_ch_180_sqsme.txt", & - beta_jn_diff) - call read_single_file( & - "Mono_jn_B0_Bsme_Bt1_Bt2_Rsq_by_mlt_mlat_ch_180_sqsme.txt", & - beta_jn_mono) - call read_single_file( & - "Wave_jn_B0_Bsme_Bt1_Bt2_Rsq_by_mlt_mlat_ch_180_sqsme.txt", & - beta_jn_wave) - call read_single_file( & - "Iono_jn_B0_Bsme_Bt1_Bt2_Rsq_by_mlt_mlat_ch_180_sqsme.txt", & - beta_jn_iono) - - end subroutine read_ovationsm_files - - ! ------------------------------------------------------------------------ - ! ------------------------------------------------------------------------ - - subroutine read_single_file(infile, VarToRead) - - character(len=*), intent(in) :: infile - real, intent(out) :: VarToRead(5, nMlts, nMLats) - - integer :: iInputUnit_ = 31 - - character(len=150) :: cFile - logical :: IsThere - - integer :: i, j, npnts, iError - real :: mlt_set, mlat_set, B0, Bsme, Bt1, Bt2, Rsq_e - - cFile = "."//cDirectory//infile - - inquire(file=cFile, EXIST=IsThere) - if (.not. IsThere) then - write(*, *) trim(cFile)//" cannot be found by read_ovationsm_files" - endif - - iError = 0 - - open(iInputUnit_, file=cFile, status="old", iostat=iError) - - do while (iError == 0) - - read(iInputUnit_, *, iostat=iError) i, j, npnts, mlt_set, mlat_set, B0 - read(iInputUnit_, *, iostat=iError) Bsme, Bt1, Bt2, Rsq_e - - if (iError == 0) then - - if (npnts < 160) then - B0 = 0.0 - Bsme = 0.0 - Bt1 = 0.0 - Bt2 = 0.0 - endif - - VarToRead(1, i + 1, j + 1) = B0 - VarToRead(2, i + 1, j + 1) = Bsme - VarToRead(3, i + 1, j + 1) = Bt1 - VarToRead(4, i + 1, j + 1) = Bt2 - VarToRead(5, i + 1, j + 1) = npnts - - endif - - enddo - - close(iInputUnit_) - - end subroutine read_single_file - -end module ModOvationSME diff --git a/src/ModReadGitm3d.f90 b/src/ModReadGitm3d.f90 index 24f8dd57..7f4fc8f5 100644 --- a/src/ModReadGitm3d.f90 +++ b/src/ModReadGitm3d.f90 @@ -3,9 +3,10 @@ module ModReadGitm3d - use ModInputs, only: iCharLen_ + use ModGITM, only: iCommGITM + use ModInputs, only: iCharLen_, iDebugLevel + use ModKind, ONLY: Real8_ - integer, parameter :: Real8_ = selected_real_kind(12, 100) integer, parameter :: i3dall_ = 1 integer, parameter :: i3dlst_ = 2 integer, parameter :: nGitmCharLength = iCharLen_ @@ -147,19 +148,27 @@ subroutine GitmSetGrid(InLons, InLats, InAlts) real, dimension(nPointsToGetGitm), intent(in) :: InAlts integer :: iPoint, i + logical :: IsAllGood GitmInLons = InLons GitmInLats = InLats GitmInAlts = inAlts + IsAllGood = .true. do iPoint = 1, nPointsToGetGitm ! Lons First if (InLons(iPoint) < GitmLons(1)) then GitmLonsIndex(iPoint) = -1 + IsAllGood = .false. + if (iDebugLevel > -1) & + write(*, *) 'GitmLonsIndex < 0!', InLons(iPoint), GitmLons(1) else if (InLons(iPoint) > GitmLons(nLonsGitm)) then GitmLonsIndex(iPoint) = -1 + IsAllGood = .false. + if (iDebugLevel > -1) & + write(*, *) 'GitmLonsIndex > max!', InLons(iPoint), GitmLons(nLonsGitm) else if (InLons(iPoint) == GitmLons(nLonsGitm)) then i = nLonsGitm @@ -179,9 +188,15 @@ subroutine GitmSetGrid(InLons, InLats, InAlts) ! Lats if (InLats(iPoint) < GitmLats(1)) then i = -1 + IsAllGood = .false. + if (iDebugLevel > -1) & + write(*, *) 'GitmLatsIndex < 0!', InLats(iPoint), GitmLats(1) else if (InLats(iPoint) > GitmLats(nLatsGitm)) then i = -1 + IsAllGood = .false. + if (iDebugLevel > -1) & + write(*, *) 'GitmLatsIndex > max!', InLats(iPoint), GitmLats(nLonsGitm) else if (InLats(iPoint) == GitmLats(nLatsGitm)) then i = nLatsGitm @@ -205,7 +220,7 @@ subroutine GitmSetGrid(InLons, InLats, InAlts) if (InAlts(iPoint) > GitmAlts(nAltsGitm)) then i = -1 else - if (InAlts(iPoint) == GitmAlts(nAltsGitm)) then + if (InAlts(iPoint) >= GitmAlts(nAltsGitm)) then i = nAltsGitm else i = 2 @@ -213,14 +228,42 @@ subroutine GitmSetGrid(InLons, InLats, InAlts) i = i + 1 enddo endif - GitmAltsIndex(iPoint) = i + endif + endif + + if (i > -1) then + GitmAltsIndex(iPoint) = i + GitmAltsFactor(iPoint) = & + (GitmAlts(i) - InAlts(iPoint))/ & + (GitmAlts(i) - GitmAlts(i - 1)) + else + ! Extrapolate the values: + if (InAlts(iPoint) < GitmAlts(1)) then + GitmAltsIndex(iPoint) = 2 + GitmAltsFactor(iPoint) = & + (GitmAlts(2) - InAlts(iPoint))/ & + (GitmAlts(2) - GitmAlts(1)) + endif + if (InAlts(iPoint) > GitmAlts(nAltsGitm)) then + GitmAltsIndex(iPoint) = nAltsGitm GitmAltsFactor(iPoint) = & - (GitmAlts(i) - InAlts(iPoint))/ & - (GitmAlts(i) - GitmAlts(i - 1)) + (GitmAlts(nAltsGitm) - InAlts(iPoint))/ & + (GitmAlts(nAltsGitm) - GitmAlts(nAltsGitm - 1)) endif endif enddo + if (.not. IsAllGood) then + if (iDebugLevel > -1) then + write(*, *) 'Errors can happen if the requested grid extends' + write(*, *) 'beyond the grid of the original GITM run.' + write(*, *) 'This can happen because of ghostcells and resolution.' + write(*, *) 'Move edges away from boundaries and improve' + write(*, *) 'resolution, maybe?' + endif + call stop_gitm("Stopping in ModReadGitm3d.") + endif + end subroutine GitmSetGrid !--------------------------------------------------------------------------- @@ -281,13 +324,13 @@ subroutine GitmUpdateTime(InputTime, iError) if (iGitmIndex /= iGitmIndexOld) then - write(*, *) 'Updating GITM files!' - - write(*, *) 'Reading First File : ', GitmFileList(iGitmIndex - 1) + if (iDebugLevel > -1) & + write(*, *) '> GITM BCs -> Reading First File : ', trim(GitmFileList(iGitmIndex - 1)) call GitmReadFile(GitmFileList(iGitmIndex - 1), iError) GitmDataTwoFiles(1, :, :, :, :) = GitmDataDummy - write(*, *) 'Reading Second File : ', GitmFileList(iGitmIndex) + if (iDebugLevel > 0) & + write(*, *) ' -> Reading Second File : ', trim(GitmFileList(iGitmIndex)) call GitmReadFile(GitmFileList(iGitmIndex), iError) GitmDataTwoFiles(2, :, :, :, :) = GitmDataDummy @@ -314,23 +357,29 @@ subroutine GetGitmFileList(iError) iError = 0 ! First try 3DALL files: - write(*, *) 'ls -1 '//trim(GitmDir)//'3DALL*.bin > .list_of_gitm_files 2> .gitm_err' - call execute_command_line('ls -1 '//trim(GitmDir)// & - '3DALL*.bin > .list_of_gitm_files 2> .gitm_err') + ! write(*, *) 'ls -1 '//trim(GitmDir)//'3DALL*.bin > .list_of_gitm_files 2> .gitm_err' + if (iProc == 0) then + call execute_command_line('ls -1 '//trim(GitmDir)// & + '3DALL*.bin > .list_of_gitm_files 2> .gitm_err') + endif + call MPI_BARRIER(iCommGITM, iError) + nGitmFiles = 0 open(iGitmUnit, file='.list_of_gitm_files', status='old') iError = 0 do while (iError == 0) read(iGitmUnit, '(a)', iostat=iError) Dummy - write(*, *) 'dummy : ', dummy if (iError == 0) nGitmFiles = nGitmFiles + 1 enddo close(iGitmUnit) if (nGitmFiles == 0) then ! Second try LST files: - call execute_command_line('ls -1 '//GitmDir// & - '3DLST*.bin > .list_of_gitm_files 2> .gitm_err') + if (iProc == 0) then + call execute_command_line('ls -1 '//GitmDir// & + '3DLST*.bin > .list_of_gitm_files 2> .gitm_err') + endif + call MPI_BARRIER(iCommGITM, iError) nGitmFiles = 0 open(iGitmUnit, file='.list_of_gitm_files', status='old') iError = 0 @@ -342,9 +391,6 @@ subroutine GetGitmFileList(iError) iGitmFileType = i3dlst_ endif - write(*, *) "nGitmFiles : ", nGitmFiles - write(*, *) "Filetype : ", iGitmFileType - open(iGitmUnit, file='.list_of_gitm_files', status='old') do iFile = 1, nGitmFiles read(iGitmUnit, '(a)', iostat=iError) GitmFileList(iFile) @@ -501,6 +547,20 @@ subroutine GitmShutDown deallocate(GitmInAlts) deallocate(GitmOutData) + deallocate(GitmLonsIndex) + deallocate(GitmLatsIndex) + deallocate(GitmAltsIndex) + + deallocate(GitmLonsFactor) + deallocate(GitmLatsFactor) + deallocate(GitmAltsFactor) + + deallocate(GitmLons) + deallocate(GitmLats) + deallocate(GitmAlts) + + iGitmIndexOld = -1 + end subroutine GitmShutDown !--------------------------------------------------------------------------- diff --git a/src/ModSources.f90 b/src/ModSources.f90 index 41033198..489e030f 100644 --- a/src/ModSources.f90 +++ b/src/ModSources.f90 @@ -12,7 +12,7 @@ module ModSources real, dimension(nLons, nLats, nAlts) :: & NOCooling, OCooling, ElectronHeating, & - AuroralHeating, JouleHeating, IonPrecipHeating, & + JouleHeating, IonPrecipHeating, & EddyCond, EddyCondAdia real, dimension(nLons, nLats, 0:nAlts + 1) :: MoleConduction @@ -20,7 +20,7 @@ module ModSources ! JMB: 07/13/2017. Conduction must extend 0:nAlts+1 ! for the 2nd order update and 2nd order boundary conditions real, dimension(nLons, nLats, 0:nAlts + 1) :: & - Conduction + Conduction = 0.0 real, dimension(nLons, nLats) :: & JouleHeating2d, EuvHeating2d, HeatTransfer2d, RadiativeCooling2d, & @@ -98,19 +98,13 @@ module ModSources !\ ! Stuff for auroral energy deposition and ionization !/ - real, dimension(:), allocatable :: & - ED_grid, ED_Energies, ED_Flux, ED_Ion, ED_Heating, & - ED_energy_edges, ED_delta_energy, ED_EnergyFlux, & - ED_Ion_EnergyFlux, ED_Ion_Flux - integer :: ED_N_Energies, ED_N_Alts - real, dimension(nAlts) :: ED_Interpolation_Weight - integer, dimension(nAlts) :: ED_Interpolation_Index + ED_Energies, ED_delta_energy, ED_EnergyFlux, & + ED_Ion_EnergyFlux + integer :: ED_N_Energies = 50 real, allocatable :: AuroralIonRateS(:, :, :, :, :) - real, allocatable :: AuroralHeatingRate(:, :, :, :) real, allocatable :: IonPrecipIonRateS(:, :, :, :, :) - real, allocatable :: IonPrecipHeatingRate(:, :, :, :) real :: ChemicalHeatingRate(nLons, nLats, nAlts) real :: ChemicalHeatingRateIon(nLons, nLats, nAlts) real :: ChemicalHeatingRateEle(nLons, nLats, nAlts) @@ -121,6 +115,7 @@ module ModSources real, allocatable :: Fang_Ci(:, :) ! nEnergies, 8 real, allocatable :: Fang_y(:, :) ! nEnergies, nAlts real, allocatable :: Fang_f(:, :) ! nEnergies, nAlts + real, allocatable :: Fang_Pij(:, :) !\ ! Needed for Fang et al, 2013: @@ -128,6 +123,7 @@ module ModSources real, allocatable :: Fang_Ion_Ci(:, :) ! nEnergies, 8 real, allocatable :: Fang_Ion_y(:, :) ! nEnergies, nAlts real, allocatable :: Fang_Ion_f(:, :) ! nEnergies, nAlts + real, allocatable :: Fang_Ion_Pij(:, :) !BP real, dimension(40, 11) :: qIR_NLTE_table @@ -136,7 +132,6 @@ module ModSources real :: HorizontalTempSource(nLons, nLats, nAlts) real :: Diffusion(nLons, nLats, nAlts, nSpecies) - real :: NeutralFriction(nLons, nLats, nAlts, nSpecies) real :: IonNeutralFriction(nLons, nLats, nAlts, nSpecies) real, allocatable :: KappaEddyDiffusion(:, :, :, :) @@ -158,12 +153,12 @@ subroutine init_mod_sources allocate(QnirLTE(nLons, nLats, nAlts, nBlocks)) allocate(CirLTE(nLons, nLats, nAlts, nBlocks)) allocate(UserHeatingRate(nLons, nLats, nAlts, nBlocks)) + UserHeatingRate = 0.0 allocate(ISourcesTotal(nLons, nLats, nAlts, nIons - 1, nBlocks)) allocate(ILossesTotal(nLons, nLats, nAlts, nIons - 1, nBlocks)) allocate(AuroralIonRateS(nLons, nLats, nAlts, nSpecies, nBlocks)) - allocate(AuroralHeatingRate(nLons, nLats, nAlts, nBlocks)) allocate(IonPrecipIonRateS(nLons, nLats, nAlts, nSpecies, nBlocks)) - allocate(IonPrecipHeatingRate(nLons, nLats, nAlts, nBlocks)) + IonPrecipIonRateS = 0.0 allocate(KappaEddyDiffusion(nLons, nLats, -1:nAlts + 2, nBlocks)) allocate(eHeatingp(0:nLons + 1, 0:nLats + 1, 0:nAlts + 1)) @@ -194,9 +189,7 @@ subroutine clean_mod_sources deallocate(ISourcesTotal) deallocate(ILossesTotal) deallocate(AuroralIonRateS) - deallocate(AuroralHeatingRate) deallocate(IonPrecipIonRateS) - deallocate(IonPrecipHeatingRate) deallocate(KappaEddyDiffusion) end subroutine clean_mod_sources !========================================================================= diff --git a/src/ModVertical.f90 b/src/ModVertical.f90 index f3a58bf2..133a8ed4 100644 --- a/src/ModVertical.f90 +++ b/src/ModVertical.f90 @@ -24,8 +24,9 @@ module ModVertical ! real, dimension(-1:nAlts+2,nIonsAdvect) :: NewLogINS ! real, dimension(-1:nAlts+2,nIonsAdvect) :: LogINS - real, dimension(-1:nAlts + 2, nIons) :: NewLogINS - real, dimension(-1:nAlts + 2, nIons) :: LogINS + ! Fill GC's with 0, not NaN + real, dimension(-1:nAlts + 2, nIons) :: NewLogINS = 0 + real, dimension(-1:nAlts + 2, nIons) :: LogINS = 0 ! real, dimension(1:2,nIons) :: OldLogINSc real, dimension(-1:nAlts + 2, nSpecies) :: LogNS, VertVel diff --git a/src/add_sources.f90 b/src/add_sources.f90 index 0f420bfd..385e923a 100644 --- a/src/add_sources.f90 +++ b/src/add_sources.f90 @@ -38,13 +38,14 @@ subroutine add_sources call calc_GITM_sources(iBlock) + call calc_electron_ion_sources(iBlock) + !------------------------------------------------------------------------- ! Neutral Temperature Source Terms !------------------------------------------------------------------------- !! To turn off EuvHeating, turn UseSolarHeating=.false. in UAM.in !! To turn off JouleHeating, turn UseJouleHeating=.false. in UAM.in - !! To turn off AuroralHeating, turn Use=AuroralHeating.false. in UAM.in !! To turn off Conduction, turn UseConduction=.false. in UAM.in ! JMB: 07/13/2017. @@ -57,7 +58,6 @@ subroutine add_sources - RadCooling(1:nLons, 1:nLats, 1:nAlts, iBlock) & + EuvHeating(1:nLons, 1:nLats, 1:nAlts, iBlock) & + PhotoElectronHeating(1:nLons, 1:nLats, 1:nAlts, iBlock) & - + AuroralHeating & + JouleHeating & + ElectronHeating & + QnirTOT(1:nLons, 1:nLats, 1:nAlts, iBlock)) & @@ -98,8 +98,7 @@ subroutine add_sources ! Ion drag + neutral friction are defined 1 - nAlts: VerticalVelocity(1:nLons, 1:nLats, 1:nAlts, iSpecies, iBlock) = & VerticalVelocity(1:nLons, 1:nLats, 1:nAlts, iSpecies, iBlock) + & - Dt*(VerticalIonDrag(:, :, :, iSpecies)) + & - NeutralFriction(:, :, :, iSpecies) + Dt*(VerticalIonDrag(:, :, :, iSpecies)) ! Viscosity is defined 0 - nAlts + 1 VerticalVelocity(1:nLons, 1:nLats, 0:nAlts + 1, iSpecies, iBlock) = & VerticalVelocity(1:nLons, 1:nLats, 0:nAlts + 1, iSpecies, iBlock) + & @@ -112,7 +111,7 @@ subroutine add_sources if (DoCheckForNans) call check_for_nans_ions('before e-temp') - call calc_electron_temperature(iBlock) + call calc_electron_ion_temperature(iBlock) !------------------------------------------------------------------------- ! Bulk Quantities (rho, number den, vertical velocity, electron den) @@ -157,4 +156,6 @@ subroutine add_sources call check_for_nans_temps("After Sources") endif + call correct_min_ion_density + end subroutine add_sources diff --git a/src/advance.f90 b/src/advance.f90 index 49c44e4e..b377a363 100644 --- a/src/advance.f90 +++ b/src/advance.f90 @@ -17,6 +17,7 @@ subroutine advance use ModRCMR, only: RCMRFlag use ModGITM, only: dt + use ModErrors use ModInputs implicit none @@ -38,9 +39,13 @@ subroutine advance ! Break the time-step up into three parts: ! (1) vertical solver; (2) horizontal solver; ! (3) source terms + ! ALB CHANGED THIS: + ! Needs verification. But solvers need ion velocities, which are only set + ! in add_sources. So I switched this order. Or we could add sources in initialize + call add_sources call advance_vertical_all - call add_sources + if (.not. Is1D) call advance_horizontal_all else @@ -56,6 +61,13 @@ subroutine advance call init_msis call init_iri call init_b0 + UseDynamo = .false. + call get_potential(1) + endif + + if (.not. isOk) then + call report_errors + call stop_gitm("Stopping in Advance") endif call end_timing("advance") diff --git a/src/advance_horizontal.f90 b/src/advance_horizontal.f90 index fe990932..7243223a 100644 --- a/src/advance_horizontal.f90 +++ b/src/advance_horizontal.f90 @@ -44,6 +44,8 @@ subroutine advance_horizontal_all call check_for_nans_temps("After Horizontal") endif + call correct_min_ion_density + call end_timing("horizontal_all") end subroutine advance_horizontal_all @@ -358,9 +360,14 @@ subroutine advance_horizontal(iBlock) IsFound = .false. do iSpecies = 1, nSpecies if (NewNum_CV(iLon, iLat, iSpecies) < 0.0) then - write(*, *) "Species : ", iSpecies, iLon, iLat, iBlock - stop - NewNum_CV(iLon, iLat, iSpecies) = 1.0 + write(*, *) "Species : ", iLon, iLat, iAlt, iSpecies, iBlock + ! call stop_gitm("neg ion density! stopping in advance_horizontal") + if (iSpecies <= nSpecies) then + NewNum_CV(iLon, iLat, iSpecies) = MinNeutralDensityAdvect + else + NewNum_CV(iLon, iLat, iSpecies) = MinNeutralDensity + endif + IsFound = .true. endif enddo diff --git a/src/advance_old.f90 b/src/advance_old.f90 deleted file mode 100644 index 696152b6..00000000 --- a/src/advance_old.f90 +++ /dev/null @@ -1,138 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -subroutine advance - - use ModConstants - use ModGITM - use ModTime - use ModEUV - use ModInputs - - implicit none - - integer :: iBlock, iAlt, iLat, iLon - - real, dimension(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2) :: & - NewLogRho, NewVel, NewTemp - - real, dimension(1:nLons, 1:nLats, 1:nAlts) :: & - GradLogRho, DivVel, GradTemp, & - DiffLogRho, DiffVel, DiffTemp, GradTmp, DiffTmp - - real, dimension(1:nLons, 1:nLats, 1:nAlts + 1) :: & - Conduction - - call start_timing("advance") - - do iBlock = 1, nBlocks - - call calc_physics(iBlock) - call chapman_integrals(iBlock) - call calc_rates(iBlock) - call euv_ionization_heat(iBlock) - - if (floor((tSimulation - dt)/DtPlot) /= floor((tsimulation)/DtPlot)) & - call output("data/", ".dat", iBlock) - - call rusanov(LogRho(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, iBlock), & - GradLogRho, DiffLogRho, iBlock) - call rusanov(Temperature(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, iBlock), & - GradTemp, DiffTemp, iBlock) - call rusanov(Velocity(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, iUp_, iBlock), & - DivVel, DiffVel, iBlock) - - do iLon = 1, nLons - do iLat = 1, nLats - do iAlt = 1, nAlts - - NewLogRho(iLon, iLat, iAlt) = LogRho(iLon, iLat, iAlt, iBlock) & - - Dt*(DivVel(iLon, iLat, iAlt) + & - Velocity(iLon, iLat, iAlt, iUp_, iBlock)* & - GradLogRho(iLon, iLat, iAlt)) & - + Dt*DiffLogRho(iLon, iLat, iAlt) - - NewVel(iLon, iLat, iAlt) = Velocity(iLon, iLat, iAlt, iUp_, iBlock) & - - Dt*(Velocity(iLon, iLat, iAlt, iUp_, iBlock)* & - DivVel(iLon, iLat, iAlt) & - + GradTemp(iLon, iLat, iAlt) & - + Temperature(iLon, iLat, iAlt, iBlock)* & - GradLogRho(iLon, iLat, iAlt) & - - Gravity(iAlt)) & - + Dt*DiffVel(iLon, iLat, iAlt) - - NewTemp(iLon, iLat, iAlt) = Temperature(iLon, iLat, iAlt, iBlock) & - - Dt*(Velocity(iLon, iLat, iAlt, iUp_, iBlock)* & - GradTemp(iLon, iLat, iAlt) & - + (Gamma(iLon, iLat, iAlt, iBlock) - 1.0) & - *Temperature(iLon, iLat, iAlt, iBlock)* & - DivVel(iLon, iLat, iAlt)) & - + Dt*DiffTemp(iLon, iLat, iAlt) - - enddo - enddo - enddo - - iLon = 3 - iLat = 3 - iAlt = 1 - -! if (iBlock == 1 .and. iProc == 0) then -! write(*,*) "newlogrho : ",NewLogRho(3,3,1), & -! minval(velocity(3,3,:,iUp_,iBlock)), & -! maxval(velocity(3,3,:,iUp_,iBlock)), & -! minval(Temperature(3,3,:,iBlock)), & -! maxval(Temperature(3,3,:,iBlock)) -! endif - - do iAlt = 1, nAlts - NewTemp(1:nLons, 1:nLats, iAlt) = NewTemp(1:nLons, 1:nLats, iAlt) + & - dt*EuvHeating(1:nLons, 1:nLats, iAlt, iBlock) - enddo - - ! Conduction (1/rho)*d(kappa dT/dZ)/dZ - do iAlt = 1, nAlts + 1 - Conduction(:, :, iAlt) = KappaTemp(:, :, iAlt, iBlock)* & - (Temperature(1:nLons, 1:nLats, iAlt, iBlock) - & - Temperature(1:nLons, 1:nLats, iAlt - 1, iBlock))/ & - dAlt(iAlt) - enddo - do iAlt = 1, nAlts - - NewTemp(1:nLons, 1:nLats, iAlt) = NewTemp(1:nLons, 1:nLats, iAlt) + & - Dt* & - (Conduction(1:nLons, 1:nLats, iAlt + 1) - & - Conduction(1:nLons, 1:nLats, iAlt))/ & - (dAlt(iAlt)*exp(LogRho(1:nLons, 1:nLats, iAlt, iBlock))) - - enddo - - LogRho(1:nLons, 1:nLats, 1:nAlts, iBlock) = & - NewLogRho(1:nLons, 1:nLats, 1:nAlts) - Velocity(1:nLons, 1:nLats, 1:nAlts, iUp_, iBlock) = & - NewVel(1:nLons, 1:nLats, 1:nAlts) - Temperature(1:nLons, 1:nLats, 1:nAlts, iBlock) = & - NewTemp(1:nLons, 1:nLats, 1:nAlts) - -! write(*,*) "logrho : ", minval(NewLogRho(1:nLons,1:nLats,1:nAlts)), & -! maxval(NewLogRho(1:nLons,1:nLats,1:nAlts)) - - enddo - -! if (iProc == 0) then -! write(*,*) "mm(velocity) : ",& -! minval(Velocity(1:nLons,1:nLats,1:nAlts,iUp_,:)),& -! maxval(Velocity(1:nLons,1:nLats,1:nAlts,iUp_,:)) -! endif - - tSimulation = tSimulation + dt - CurrentTime = CurrentTime + dt - - call time_real_to_int(CurrentTime, iTimeArray) - iJulianDay = jday(iTimeArray(1), iTimeArray(2), iTimeArray(3)) - utime = iTimeArray(4)*3600.0 + iTimeArray(5)*60.0 + & - iTimeArray(6) + iTimeArray(7)/1000.0 - - call end_timing("advance") - -end subroutine advance diff --git a/src/advance_vertical.f90 b/src/advance_vertical.f90 index bce4de76..941b24e6 100644 --- a/src/advance_vertical.f90 +++ b/src/advance_vertical.f90 @@ -34,6 +34,8 @@ subroutine advance_vertical_all call check_for_nans_temps("After Vertical") endif + call correct_min_ion_density + call end_timing("vertical_all") end subroutine advance_vertical_all @@ -188,12 +190,6 @@ subroutine advance_vertical(iLon, iLat, iBlock) do iIon = 1, nIons - 1 !Advect if (UseImprovedIonAdvection) then IDensityS(iLon, iLat, :, iIon, iBlock) = LogINS(:, iIon) - ! Put in a floor on ion densities.... - do iAlt = 1, nAlts - if (IDensityS(iLon, iLat, iAlt, iIon, iBlock) < 1) then - IDensityS(iLon, iLat, iAlt, iIon, iBlock) = 1.0 - endif - enddo else IDensityS(iLon, iLat, :, iIon, iBlock) = exp(LogINS(:, iIon)) endif diff --git a/src/apex_save.f b/src/apex_save.f deleted file mode 100644 index 69fa860b..00000000 --- a/src/apex_save.f +++ /dev/null @@ -1,2065 +0,0 @@ - subroutine apex_to_geo(date, aLat, aLon, Alt, gLat, gLon, sLat, sLon) - -C Input: -C -C DATE = Year and fraction (1990.0 = 1990 January 1, 0 UT) -C aLat = Apex latitude in degrees -C aLon = Apex longitude in degrees -C ALT = Altitude in km -C -C Output: -C -C gLat = Geographic Latitude -C gLon = Geographin Longitude - - PARAMETER (RTOD=5.72957795130823E1,DTOR=1.745329251994330E-2) - PARAMETER (RE=6371.2,REQ=6378.160) - parameter (dr=0.001*req) - COMMON/DIPOLE/COLAT,ELON,VP,CTP,STP - - real lShell, rStart, lonStart, ang_save, ang, cte, ste, tal - real stfcpa, stfspa, dif, dif_save, magpot - real xMag, yMag, zMag, bMag, GeoLat, GeoLon, GeoAlt - real aLatTest, aLonTest - integer i - - CALL COFRM(DATE) - - if (sLat < -90.0) then - - lShell = 1.0/(cos(aLat*DTOR)**2) ! L value - rStart = lShell * Req - - cte = 0.0 - ste = sqrt(1.0-cte*cte) - - tal = tan(alon*dtor) - - ang_save = 1000.0 - dif_save = 1000.0 - - mid = alon - if (mid < 0.0) mid = mid + 360.0 - - do i=mid*10.0-100,mid*10.0+100 - - ang = real(i)/10.0*dtor - stfcpa = ste*ctp*cos(ang)-cte*stp - stfspa = sin(ang)*ste - - dif = abs(tal*stfcpa - stfspa) - - if (dif < dif_save) then - dif_save = dif - ang_save = ang - endif - - enddo - - lonStart = ang_save + elon*dtor - - if (lonStart < 0.0) lonStart = lonStart + 6.2831855 - - rotate = - cos(ang_save) * colat*dtor - - ang = ang_save - stfcpa = ste*ctp*cos(ang)-cte*stp - stfspa = sin(ang)*ste - -c write(*,*) 'xlon:',lonStart,ang_save, alon, cte, STFCPA, STFSPA, ctp - - GeoAlt = rStart - Req - GeoLon = lonStart - GeoLat = 0.0 - SGN = SIGN(1.,alat) - - CALL GD2CART (GeoLAT,GeoLON,geoALT,XXX,YYY,ZZZ) - - r = sqrt(xxx*xxx + yyy*yyy + zzz*zzz) - - do while (r > req+Alt) ! Alt = AltMinIono - - CALL FELDG(2,xxx,yyy,zzz,xMAG,yMAG,zMAG,bMag) - - xmag = xmag/bmag - ymag = ymag/bmag - zmag = zmag/bmag - - xxx = xxx + xmag * dr*sgn - yyy = yyy + ymag * dr*sgn - zzz = zzz + zmag * dr*sgn - - r = sqrt(xxx*xxx + yyy*yyy + zzz*zzz) - -c write(*,*) xxx,yyy,zzz,r, xmag,ymag,zmag - - enddo - - geolat = asin(zzz/r) - geolon = asin(xxx/sqrt(xxx*xxx+yyy*yyy)) - - if (yyy < 0.0) geolon = 6.2831855 - geolon - geoalt = r-req - - gLat = GeoLat * rtod - gLon = GeoLon * rtod - - aLatTest = 1000.0 - aLonTest = 1000.0 - - gLatGuess = gLat - gLonGuess = gLon - - iCount = 0 - - do while ((abs(aLatTest-aLat) > 0.01 .or. abs(aLonTest-aLon) > 0.1) .and. - ! iCount < 20) - - call APEX(DATE,gLatGuess,gLonGuess,Alt,lShell,aLatTest,aLonTest, - ! bmag,xmag,ymag,zmag,MagPot) - -c write(*,*) aLat, aLatTest, aLon, aLonTest, gLatGuess, gLonGuess, iCount - - gLatGuess = gLatGuess + (aLat-aLatTest)/4.0 - - if (gLatGuess > 90.0) then - iCount = 20 - gLatGuess = 88.0 - gLonGuess = gLonGuess + 30.0 - elseif (gLatGuess < -90.0) then - iCount = 20 - gLatGuess = -88.0 - gLonGuess = gLonGuess + 30.0 - else - dLon = aLon-aLonTest - if (dLon > 300) dLon = dLon - 360.0 - if (dLon < -300) dLon = dLon + 360.0 - gLonGuess = gLonGuess + dLon/4.0 - endif - - if (gLonGuess > 360.0) gLonGuess = gLonGuess - 360.0 - if (gLonGuess < 0.0) gLonGuess = gLonGuess + 360.0 - - iCount = iCount + 1 - - enddo - - else - - GeoLat = sLat - GeoLon = sLon - - iCount = 20 - gLat = sLat - - endif -c ACTUAL -c write(*,*) "iCount : ",iCount, gLatGuess, gLonGuess, gLat, gLon - - if (iCount >= 20) then - - CALL GD2CART (aLat,aLon,ALT,aXXX,aYYY,aZZZ) - - if (abs(gLatGuess) < 85.0) then - gLatGuess = gLat - else - gLat = gLatGuess - endif - - iLonBest = -100 - diff = 10000.0 - - do iLon = 0, 360, 10 - - gLonGuess = real(iLon) - call APEX(DATE,gLatGuess,gLonGuess,Alt,lShell,aLatTest,aLonTest, - ! bmag,xmag,ymag,zmag,MagPot) - - CALL GD2CART (aLatTest,aLonTest,ALT,tXXX,tYYY,tZZZ) - dist = sqrt((aXXX-tXXX)**2 + (aYYY-tYYY)**2 + (aZZZ-tZZZ)**2) - if (dist < diff) then - diff = dist - iLonBest = iLon - endif - - enddo - - gLon = real(iLonBest) - - dLon = 20.0 - - LatFac = 110.0 - iCount = 1 - - do while (diff > 1.0 .and. iCount < 20) - - dLat = diff / LatFac - - LatFac = LatFac * 0.99 - - do iLat = -5,5 - - gLatGuess = gLat + real(iLat)/10 * dLat - gLonGuess = gLon - call APEX(DATE,gLatGuess,gLonGuess,Alt,lShell,aLatTest,aLonTest, - ! bmag,xmag,ymag,zmag,MagPot) - - CALL GD2CART (aLatTest,aLonTest,ALT,tXXX,tYYY,tZZZ) - dist = sqrt((aXXX-tXXX)**2 + (aYYY-tYYY)**2 + (aZZZ-tZZZ)**2) - if (dist < diff) then - diff = dist - gLat = gLatGuess - if (gLat < -90.0) gLat = -180.0 - gLat - if (gLat > 90.0) gLat = 180.0 - gLat -c write(*,*) aLat, aLatTest, aLon, aLonTest, gLat, gLon, dLat, dLon, diff - - endif - - enddo - - do iLon = -5,5 - - gLatGuess = gLat - gLonGuess = gLon + real(iLon)/10 * dLat - call APEX(DATE,gLatGuess,gLonGuess,Alt,lShell,aLatTest,aLonTest, - ! bmag,xmag,ymag,zmag,MagPot) - - CALL GD2CART (aLatTest,aLonTest,ALT,tXXX,tYYY,tZZZ) - dist = sqrt((aXXX-tXXX)**2 + (aYYY-tYYY)**2 + (aZZZ-tZZZ)**2) - if (dist < diff) then - diff = dist - gLon = gLonGuess - if (gLon < 0.0) gLon = gLon + 360.0 - if (gLon > 360.0) gLon = gLon - 360.0 -c write(*,*) aLat, aLatTest, aLon, aLonTest, gLat, gLon, dLat, dLon, diff - endif - - enddo - - dLon = dLon * exp((real(iCount)-5)/10) - iCount = iCount + 1 - - enddo - - else - - gLat = gLatGuess - gLon = gLonGuess - - endif - - if (gLon > 360) gLon = gLon - 360 - if (gLon < 0) gLon = gLon + 360 - - end - - SUBROUTINE APEX(DATE,DLAT,DLON,ALT - 1 ,A,ALAT,ALON,BMAG,XMAG,YMAG,ZMAG,V) -C Calculate apex radius, latitude, longitude; and magnetic field and potential -C 940822 A. D. Richmond -C -C Input: -C -C DATE = Year and fraction (1990.0 = 1990 January 1, 0 UT) -C DLAT = Geodetic latitude in degrees -C DLON = Geodetic longitude in degrees -C ALT = Altitude in km -C -C Output: -C -C A = Apex height in RE (similar to L) -C ALAT = Apex latitude in degrees (negative in S. magnetic hemisphere) -C ALON = Apex longitude (Geomagnetic longitude of apex) -C BMAG = Magnitude of geomagnetic field in nT -C XMAG,YMAG,ZMAG = North, east, and downward geomagnetic field components in nT -C V = Magnetic potential, in T.m -C -C COMMON/DIPOLE/COLAT,ELON,VP,CTP,STP -C COLAT = Geocentric colatitude of geomagnetic dipole north pole (deg) -C ELON = East longitude of geomagnetic dipole north pole (deg) -C VP = Magnitude, in T.m, of dipole component of magnetic potential at -C geomagnetic pole and geocentric radius of 6371.2 km -C CTP,STP = cosine, sine of COLAT -C - PARAMETER (RTOD=5.72957795130823E1,DTOR=1.745329251994330E-2) - PARAMETER (RE=6371.2,REQ=6378.160) - COMMON/DIPOLE/COLAT,ELON,VP,CTP,STP - CALL COFRM(DATE) - CALL DYPOL(CLATP,POLON,VPOL) - COLAT = CLATP - CTP = COS(CLATP*DTOR) - STP = SQRT(1. - CTP*CTP) - ELON = POLON - VP = VPOL - CALL LINAPX(DLAT,DLON,ALT - 2 ,A,ALAT,ALON,XMAG,YMAG,ZMAG,BMAG) - XMAG = XMAG*1.E5 - YMAG = YMAG*1.E5 - ZMAG = ZMAG*1.E5 - BMAG = BMAG*1.E5 - CALL GD2CART(DLAT,DLON,ALT,X,Y,Z) - CALL FELDG(3,X/RE,Y/RE,Z/RE,BX,BY,BZ,V) - RETURN - END -C - SUBROUTINE LINAPX(GDLAT,GLON,ALT - 2 ,A,ALAT,ALON,XMAG,YMAG,ZMAG,F) -C***BEGIN PROLOGUE LINAPX -C***DATE WRITTEN 731029 (YYMMDD) -C***AUTHOR CLARK, W., N.O.A.A. ERL LAB. -C***REVISION DATE 880201 (YYMMDD) Harsh Anand Passi, NCAR -C***LATEST REVISION 940803 A. D. Richmond -C***PURPOSE Transforms the geographic coordinates to apex coordinates. -C***DESCRIPTION -C The method used is as follow: -C 1. Calculates step size as a function of the geomagnetic -C dipole coordinates of the starting point. -C 2. Determine direction of trace -C 3. Convert the geodetic coordinates of the starting point -C to the cartesian coordinates for tracing. -C Loop: -C i) Increment step count, if count > 200, -C assume it is dipole field, call DIPAPX to -C determine Apex coordinates else continue. -C ii) Get field components in X, Y and Z direction -C iii) Call ITRACE to trace field line. -C iv) Test if Apex passed call FNDAPX to determine Apex coordinates -C else loop: -C -C INPUT -C GDLAT Latitude of starting point (Deg) -C GLON Longitude (East=+) of starting point (Deg) -C ALT Ht. of starting point (Km) -C -C OUTPUT -C A Apex radius (km) -C ALAT Apex Lat. (deg) -C ALON Apex Lon. (deg) -C XMAG North component of magnetic field at starting point -C YMAG East component of magnetic field at starting point -C ZMAG Down component of magnetic field at starting point -C F Magnetic field magnitude at starting point -C -C COMMON Blocks Used -C /APXIN/ YAPX(3,3) -C YAPX Matrix of cartesian coordinates (loaded columnwise) -C of the 3 points about APEX. Set in subprogram ITRACE. -C -C /DIPOLE/COLAT,ELON,VP,CTP,STP -C COLAT Geographic colatitude of the north pole of the -C earth-centered dipole (Deg). -C ELON Geographic longitude of the north pole of the -C earth-centered dipole (Deg). -C VP Magnetic potential magnitude at geomagnetic pole (T.m) -C CTP cos(COLAT*DTOR) -C STP sin(COLAT*DTOR) -C -C /ITRA/ NSTP, Y(3), YOLD(3), SGN, DS -C NSTP Step count. Incremented in subprogram LINAPX. -C Y Array containing current tracing point cartesian coordinates. -C YOLD Array containing previous tracing point cartesian coordinates. -C SGN Determines direction of trace. Set in subprogram LINAPX -C DS Step size (Km) Computed in subprogram LINAPX. -C -C /FLDCOMD/ BX, BY, BZ, BB -C BX X comp. of field vector at the current tracing point (Gauss) -C BY Y comp. of field vector at the current tracing point (Gauss) -C BZ Z comp. of field vector at the current tracing point (Gauss) -C BB Magnitude of field vector at the current tracing point (Gauss) -C -C***REFERENCES Stassinopoulos E. G. , Mead Gilbert D., X-841-72-17 -C (1971) GSFC, Greenbelt, Maryland -C -C***ROUTINES CALLED GD2CART,CONVRT,FELDG, -C ITRACE,DIPAPX,FNDAPX -C -C***END PROLOGUE LINAPX - PARAMETER ( MAXS = 200 ) - PARAMETER (RTOD=5.72957795130823E1,DTOR=1.745329251994330E-2) - PARAMETER (RE=6371.2,REQ=6378.160) - COMMON /FLDCOMD/ BX, BY, BZ, BB - COMMON /APXIN/ YAPX(3,3) - COMMON/DIPOLE/COLAT,ELON,VP,CTP,STP - COMMON /ITRA/ NSTP, Y(3), YP(3), SGN, DS -C -C ** DETERMINE STEP SIZE AS A FUNCTION OF GEOMAGNETIC DIPOLE COORDINATES -C OF THE STARTING POINT -C ** - CALL CONVRT(2,GDLAT,ALT,GCLAT,R) -C SINGML = .98*SIN(GCLAT*DTOR) + .199*COS(GCLAT*DTOR)* - SINGML = CTP*SIN(GCLAT*DTOR) + STP*COS(GCLAT*DTOR)* - + COS((GLON-ELON)*DTOR) - DS = .06*R/(1.-SINGML*SINGML) - 370. -C Limit DS to its value at 60 deg gm latitude. - IF (DS .GT. 1186.) DS = 1186. - -C Initialize YAPX array - - DO 4 J = 1,3 - DO 4 I =1,3 - YAPX(I,J) = 0. -4 CONTINUE - -C Convert from geodetic to earth centered cartesian coordinates - - CALL GD2CART(GDLAT,GLON,ALT,Y(1),Y(2),Y(3)) - NSTP = 0 -C -C **GET FIELD COMPONENTS TO DETERMINE THE DIRECTION OF TRACING THE FIELD LINE -C - CALL FELDG(1,GDLAT,GLON,ALT,XMAG,YMAG,ZMAG,F) - SGN = SIGN(1.,-ZMAG) -C - 10 CONTINUE -C -C ** GET FIELD COMPONENTS AND TRACE ALONG FIELD LINE -C - IENTRY=2 - CALL FELDG(IENTRY,Y(1)/RE,Y(2)/RE,Y(3)/RE,BX,BY,BZ,BB) -C - NSTP = NSTP + 1 -C -C ** QUIT IF TOO MANY STEPS -C ** - IF (NSTP .GE. MAXS) THEN - RHO = SQRT(Y(1)*Y(1) + Y(2)*Y(2)) - CALL CONVRT(3,XLAT,HT,RHO,Y(3)) - XLON = RTOD*ATAN2(Y(2),Y(1)) - CALL FELDG(1,XLAT,XLON,HT,BNRTH,BEAST,BDOWN,BABS) - CALL DIPAPX(XLAT,XLON,HT,BNRTH,BEAST,BDOWN,A,ALON) - ALAT = -SGN*RTOD*ACOS(SQRT(1./A)) - RETURN - END IF -C -C ** FIND NEXT POINT USING ADAMS ALGORITHM AFTER 7 POINTS -C ** - CALL ITRACE( IAPX) -C -C - GO TO (10, 20) IAPX - 20 CONTINUE -C -C ** MAXIMUM RADIUS JUST PASSED. FIND APEX COORDS -C ** -c write(*,*)alt,zmag - CALL FNDAPX(ALT,ZMAG,A,ALAT,ALON) -c write(*,*)alt,zmag,a,alat,alon - RETURN - END - - SUBROUTINE ITRACE( IAPX) - SAVE -C***BEGIN PROLOGUE ITRACE -C***DATE WRITTEN 731029 (YYMMDD) -C***AUTHOR CLARK, W. N.O.A.A. ERL LAB. -C***REVISION DATE 880201, H. Passi -C***PURPOSE Field line integration routine. -C***DESCRIPTION -C It uses 4-point ADAMS formula after initialization. -C First 7 iterations advance point by 3 steps. -C -C INPUT -C Passed in through the common blocks ITRA, FLDCOMD. -C See the description below. -C OUTPUT -C IAPX Flag set to 2 when APEX passed, otherwise set to 1. -C -C Passed out through the common block APXIN. -C See the description below. -C -C COMMON Blocks Used -C /APXIN/ YAPX(3,3) -C YAPX Matrix of cartesian coordinates (loaded columnwise) -C of the 3 points about APEX. Set in subprogram ITRACE. -C -C /FLDCOMD/ BX, BY, BZ, BB -C BX X comp. of field vector at the current tracing point (Gauss) -C BY Y comp. of field vector at the current tracing point (Gauss) -C BZ Z comp. of field vector at the current tracing point (Gauss) -C BB Magnitude of field vector at the current tracing point (Gauss) -C -C /ITRA/ NSTP, Y(3), YOLD(3), SGN, DS -C NSTP Step count for line integration. -C Incremented in subprogram LINAPX. -C Y Array containing current tracing point cartesian coordinates. -C YOLD Array containing previous tracing point cartesian coordinates. -C SGN Determines direction of trace. Set in subprogram LINAPX -C DS Integration step size (arc length Km) -C Computed in subprogram LINAPX. -C -C***REFERENCES reference 1 -C -C***ROUTINES CALLED None -C***COMMON BLOCKS APXIN,FLDCOMD,ITRA -C***END PROLOGUE ITRACE -C ** - COMMON /ITRA/ NSTP, Y(3), YOLD(3), SGN, DS - COMMON /FLDCOMD/ BX, BY, BZ, BB - COMMON /APXIN/ YAPX(3,3) - DIMENSION YP(3, 4) -C Statement function - RDUS(D,E,F) = SQRT( D**2 + E**2 + F**2 ) -C - IAPX = 1 -C Field line is defined by the following differential equations -C in cartesian coordinates: - YP(1, 4) = SGN*BX/BB - YP(2, 4) = SGN*BY/BB - YP(3, 4) = SGN*BZ/BB - IF (NSTP .GT. 7) GO TO 90 -C ** FIRST SEVEN STEPS USE THIS BLOCK - DO 80 I = 1, 3 - GO TO (10, 20, 30, 40, 50, 60, 70) NSTP -C - 10 D2 = DS/2. - D6 = DS/6. - D12 = DS/12. - D24 = DS/24. - YP(I, 1) = YP(I, 4) - YOLD(I) = Y(I) - YAPX(I, 1) = Y(I) - Y(I) = YOLD(I) + DS*YP(I, 1) - GO TO 80 -C - 20 YP(I, 2) = YP(I, 4) - Y(I) = YOLD(I) + D2*(YP(I,2)+YP(I,1)) - GO TO 80 -C - 30 Y(I) = YOLD(I) + D6*(2.*YP(I,4)+YP(I,2)+3.*YP(I,1)) - GO TO 80 -C - 40 YP(I, 2) = YP(I, 4) - YAPX(I, 2) = Y(I) - YOLD(I) = Y(I) - Y(I) = YOLD(I) + D2*(3.*YP(I,2)-YP(I,1)) - GO TO 80 -C - 50 Y(I) = YOLD(I) + D12*(5.*YP(I,4)+8.*YP(I,2)-YP(I,1)) - GO TO 80 -C - 60 YP(I, 3) = YP(I, 4) - YOLD(I) = Y(I) - YAPX(I, 3) = Y(I) - Y(I) = YOLD(I) + D12*(23.*YP(I,3)-16.*YP(I,2)+5.*YP(I,1)) - GO TO 80 -C - 70 YAPX(I, 1) = YAPX(I, 2) - YAPX(I, 2) = YAPX(I, 3) - Y(I) = YOLD(I) + D24*(9.*YP(I,4)+19.*YP(I,3)-5.*YP(I,2)+YP(I,1)) - YAPX(I, 3) = Y(I) - 80 CONTINUE -C ** SIGNAL IF APEX PASSED - IF ( NSTP .EQ. 6 .OR. NSTP .EQ. 7) THEN - RC = RDUS( YAPX(1,3), YAPX(2,3), YAPX(3,3)) - RP = RDUS( YAPX(1,2), YAPX(2,2), YAPX(3,2)) - IF ( RC .LT. RP) IAPX=2 - ENDIF - RETURN -C -C ** STEPPING BLOCK FOR NSTEP .GT. 7 - 90 DO 110 I = 1, 3 - YAPX(I, 1) = YAPX(I, 2) - YAPX(I, 2) = Y(I) - YOLD(I) = Y(I) - TERM = 55.*YP(I, 4) - 59.*YP(I, 3) + 37.*YP(I, 2) - 9.*YP(I, 1) - Y(I) = YOLD(I) + D24*TERM - YAPX(I, 3) = Y(I) - DO 100 J = 1, 3 - YP(I, J) = YP(I, J+1) - 100 CONTINUE - 110 CONTINUE - RC =RDUS( Y(1), Y(2), Y(3)) - RP = RDUS( YOLD(1), YOLD(2), YOLD(3)) - IF ( RC .LT. RP) IAPX=2 - RETURN -C - END - - SUBROUTINE FNDAPX(ALT,ZMAG,A,ALAT,ALON) -C***BEGIN PROLOGUE FNDAPX -C***DATE WRITTEN 731023 (YYMMDD) -C***AUTHOR CLARK, W., NOAA BOULDER -C***REVISION DATE 940803, A. D. Richmond, NCAR -C***PURPOSE Finds apex coords once tracing has signalled that the apex -C has been passed. -C***DESCRIPTION -C -C It uses second degree interpolation routine, FINT, to find -C apex latitude and apex longtitude. -C INPUT -C ALT Altitude of starting point -C ZMAG Downward component of geomagnetic field at starting point -C NMAX Order of IGRF coefficients being used -C G Array of coefficients from COFRM -C OUTPUT -C A Apex radius (km) -C ALAT Apex Lat. (deg) -C ALON Apex Lon. (deg) -C -C***LONG DESCRIPTION -C -C COMMON Blocks Used -C /APXIN/ YAPX(3,3) -C YAPX Matrix of cartesian coordinates (loaded columnwise) -C of the 3 points about APEX. Set in subprogram ITRACE. -C -C /DIPOLE/COLAT,ELON,VP,CTP,STP -C COLAT Geocentric colatitude of the north pole of the -C earth-centered dipole (Deg). -C ELON Geographic longitude of the north pole of the -C earth-centered dipole (Deg). -C CTP cos(COLAT*DTOR) -C STP sin(COLAT*DTOR) -C -C***ROUTINES CALLED FINT -C***COMMON BLOCKS APXIN,DIPOLE -C***END PROLOGUE FNDAPX -C - use ModInputs, only: AltMinIono - - PARAMETER (RTOD=5.72957795130823E1,DTOR=1.745329251994330E-2) - PARAMETER (RE=6371.2,REQ=6378.160) - COMMON /APXIN/ YAPX(3,3) - COMMON/DIPOLE/COLAT,ELON,VP,CTP,STP - DIMENSION Z(3), HT(3), Y(3) - -C **** -C **** GET GEODETIC FIELD COMPONENTS -C **** - IENTRY = 1 - DO 2 I = 1,3 - RHO = SQRT(YAPX(1,I)**2+YAPX(2,I)**2) - CALL CONVRT(3,GDLT,HT(I),RHO,YAPX(3,I)) - GDLN = RTOD*ATAN2(YAPX(2,I),YAPX(1,I)) - CALL FELDG(IENTRY,GDLT,GDLN,HT(I),X,YDUM,Z(I),F) - 2 CONTINUE -C **** -C **** FIND CARTESIAN COORDINATES AT DIP EQUATOR BY INTERPOLATION -C **** - DO 3 I = 1,3 - CALL FINT(Z(1),Z(2),Z(3),YAPX(I,1),YAPX(I,2),YAPX(I,3),0.,Y(I)) - 3 CONTINUE -C **** -C **** FIND APEX HEIGHT BY INTERPOLATION -C **** - CALL FINT(Z(1),Z(2),Z(3),HT(1),HT(2),HT(3),0.,XINTER) -C Ensure that XINTER is not less than original starting altitude (ALT) - XINTER = AMAX1(ALT,XINTER) -c simple apex A = (REQ+XINTER)/(REQ) -C write(*,*) re, re+90, xinter, re+xinter, (RE+90.)/(RE+xinter) -C write(*,*) AltMinIono -C modified apex - A = (RE+xinter)/(RE+AltMinIono) -C **** -C **** FIND APEX COORDINATES , GIVING ALAT SIGN OF DIP AT -C **** STARTING POINT. ALON IS THE VALUE OF THE GEOMAGNETIC -C **** LONGITUDE AT THE APEX. -C **** - IF (A.LT.1.) THEN - WRITE(6,20) - 20 FORMAT (' BOMBED! THIS MAKES A LESS THAN ONE') - write(*,*) a, re+xinter, re+altminiono, xinter, AltMinIono - call stop_gitm("died in apex.f") - ENDIF - RASQ = RTOD*ACOS(SQRT(1./A)) - ALAT = SIGN(RASQ,ZMAG) -C Algorithm for ALON: -C Use spherical coordinates. -C Let GP be geographic pole. -C Let GM be geomagnetic pole (colatitude COLAT, east longitude ELON). -C Let XLON be longitude of apex. -C Let TE be colatitude of apex. -C Let ANG be longitude angle from GM to apex. -C Let TP be colatitude of GM. -C Let TF be arc length between GM and apex. -C Let PA = ALON be geomagnetic longitude, i.e., Pi minus angle measured -C counterclockwise from arc GM-apex to arc GM-GP. -C Then, using notation C=cos, S=sin, spherical-trigonometry formulas -C for the functions of the angles are as shown below. Note: STFCPA, -C STFSPA are sin(TF) times cos(PA), sin(PA), respectively. - - XLON = ATAN2(Y(2),Y(1)) - ANG = XLON-ELON*DTOR - CANG = COS(ANG) - SANG = SIN(ANG) - R = SQRT(Y(1)**2+Y(2)**2+Y(3)**2) - CTE = Y(3)/R - STE = SQRT(1.-CTE*CTE) - STFCPA = STE*CTP*CANG - CTE*STP - STFSPA = SANG*STE - ALON = ATAN2(STFSPA,STFCPA)*RTOD - RETURN - END - - SUBROUTINE DIPAPX(GDLAT,GDLON,ALT,BNORTH,BEAST,BDOWN,A,ALON) -C Compute a, alon from local magnetic field using dipole and spherical approx. -C 940501 A. D. Richmond -C Input: -C GDLAT = geodetic latitude, degrees -C GDLON = geodetic longitude, degrees -C ALT = altitude, km -C BNORTH = geodetic northward magnetic field component (any units) -C BEAST = eastward magnetic field component -C BDOWN = geodetic downward magnetic field component -C Output: -C A = apex radius, 1 + h_A/R_eq -C ALON = apex longitude, degrees -C -C Algorithm: -C Use spherical coordinates. -C Let GP be geographic pole. -C Let GM be geomagnetic pole (colatitude COLAT, east longitude ELON). -C Let G be point at GDLAT,GDLON. -C Let E be point on sphere below apex of dipolar field line passing through G. -C Let TD be dipole colatitude of point G, found by applying dipole formula -C for dip angle to actual dip angle. -C Let B be Pi plus local declination angle. B is in the direction -C from G to E. -C Let TG be colatitude of G. -C Let ANG be longitude angle from GM to G. -C Let TE be colatitude of E. -C Let TP be colatitude of GM. -C Let A be longitude angle from G to E. -C Let APANG = A + ANG -C Let PA be geomagnetic longitude, i.e., Pi minus angle measured -C counterclockwise from arc GM-E to arc GM-GP. -C Let TF be arc length between GM and E. -C Then, using notation C=cos, S=sin, COT=cot, spherical-trigonometry formulas -C for the functions of the angles are as shown below. Note: STFCPA, -C STFSPA are sin(TF) times cos(PA), sin(PA), respectively. - - PARAMETER (RTOD=5.72957795130823E1,DTOR=1.745329251994330E-2) - PARAMETER (RE=6371.2,REQ=6378.160) - COMMON/DIPOLE/COLAT,ELON,VP,CTP,STP - BHOR = SQRT(BNORTH*BNORTH + BEAST*BEAST) - IF (BHOR.EQ.0.) THEN - ALON = 0. - A = 1.E34 - RETURN - ENDIF - COTTD = BDOWN*.5/BHOR - STD = 1./SQRT(1.+COTTD*COTTD) - CTD = COTTD*STD - SB = -BEAST/BHOR - CB = -BNORTH/BHOR - CTG = SIN(GDLAT*DTOR) - STG = COS(GDLAT*DTOR) - ANG = (GDLON-ELON)*DTOR - SANG = SIN(ANG) - CANG = COS(ANG) - CTE = CTG*STD + STG*CTD*CB - STE = SQRT(1. - CTE*CTE) - SA = SB*CTD/STE - CA = (STD*STG - CTD*CTG*CB)/STE - CAPANG = CA*CANG - SA*SANG - SAPANG = CA*SANG + SA*CANG - STFCPA = STE*CTP*CAPANG - CTE*STP - STFSPA = SAPANG*STE - ALON = ATAN2(STFSPA,STFCPA)*RTOD - R = ALT + RE - HA = ALT + R*COTTD*COTTD - A = 1. + HA/REQ - RETURN - END - - SUBROUTINE FINT(A1, A2, A3, A4, A5, A6, A7, RESULT) -C***PURPOSE Second degree interpolation routine -C***REFER TO FNDAPX - RESULT = ((A2-A3)*(A7-A2)*(A7-A3)*A4-(A1-A3)*(A7-A1)*(A7-A3)*A5+ - + (A1-A2)*(A7-A1)*(A7-A2)*A6)/((A1-A2)*(A1-A3)*(A2-A3)) - RETURN - END - SUBROUTINE COFRM (DATE) -C Assign DGRF/IGRF spherical harmonic coefficients, to degree and -C order NMAX, for DATE, yyyy.fraction, into array G. Coefficients -C are interpolated from the DGRF dates through the current IGRF year. -C Coefficients for a later DATE are extrapolated using the IGRF -C initial value and the secular change coefficients. A warning -C message is issued if DATE is later than the last recommended -C (5 yrs later than the IGRF). An DATE input earlier than the -C first DGRF (EPOCH(1)), results in a diagnostic and a STOP. -C -C Output in COMMON /MAGCOF/ NMAX,GB(144),GV(144),ICHG -C NMAX = Maximum order of spherical harmonic coefficients used -C GB = Coefficients for magnetic field calculation -C GV = Coefficients for magnetic potential calculation -C ICHG = Flag indicating when GB,GV have been changed in COFRM -C -C HISTORY (blame): -C COFRM and FELDG originated 15 Apr 83 by Vincent B. Wickwar -C (formerly at SRI. Int., currently at Utah State). Although set -C up to accomodate second order time derivitives, the IGRF -C (GTT, HTT) have been zero. The spherical harmonic coefficients -C degree and order is defined by NMAX (currently 10). -C -C Jun 86: Updated coefficients adding DGRF 1980 & IGRF 1985, which -C were obtained from Eos Vol. 7, No. 24. Common block MAG was -C replaced by MAGCOF, thus removing variables not used in subroutine -C FELDG. (Roy Barnes) -C -C Apr 1992 (Barnes): Added DGRF 1985 and IGRF 1990 as described -C in EOS Vol 73 Number 16 Apr 21 1992. Other changes were made so -C future updates should: -C (1) Increment NDGY; -C (2) Append to EPOCH the next IGRF year; -C (3) Append the next DGRF coefficients to G1DIM and H1DIM; and -C (4) Replace the IGRF initial values (G0, GT) and rates of -C change indices (H0, HT). -C -C Apr 94 (Art Richmond): Computation of GV added, for finding -C magnetic potential. -C -C Aug 95 (Barnes): Added DGRF for 1990 and IGRF for 1995, which were -C obtained by anonymous ftp geomag.gsfc.nasa.gov (cd pub, mget table*) -C as per instructions from Bob Langel (langel@geomag.gsfc.nasa.gov), -C but, problems are to be reported to baldwin@geomag.gsfc.nasa.gov - -C Oct 95 (Barnes): Correct error in IGRF-95 G 7 6 and H 8 7 (see -C email in folder). Also found bug whereby coefficients were not being -C updated in FELDG when IENTY did not change. ICHG was added to flag -C date changes. Also, a vestigial switch (IS) was removed from COFRM: -C It was always 0 and involved 3 branch if statements in the main -C polynomial construction loop (now numbered 200). - -C Feb 99 (Barnes): Explicitly initialize GV(1) in COFRM to avoid -C possibility of compiler or loader options initializing memory -C to something else (e.g., indefinite). Also simplify the algebra -C in COFRM; this does not effect results. - -C Mar 99 (Barnes): Removed three branch if's from FELDG and changed -C statement labels to ascending order - -C Jun 99 (Barnes): Corrected RTOD definition in GD2CART. - -C May 00 (Barnes): Replace IGRF 1995 with DGRF 1995, add IGRF -C 2000, and extend the earlier DGRF's backward to 1900. A complete -C set of coefficients came from a NGDC web page - - PARAMETER (RTOD=57.2957795130823, DTOR=0.01745329251994330) - DOUBLE PRECISION F,F0 - COMMON /MAGCOF/ NMAX,G(144),GV(144),ICHG -C DATA NMAX,ICHG /10,-99999/ - - PARAMETER (NDGY=20 , NYT = NDGY+1 , NGH = 144*NDGY) -C NDGY = Number of DGRF years of sets of coefficients -C NYT = Add one for the IGRF set (and point to it). -C NGH = Dimension of the equivalenced arrays - DIMENSION GYR(12,12,NYT) , HYR(12,12,NYT), EPOCH(NYT) , - + G1DIM(NGH) , H1DIM(NGH) , - + G0(12,12) , GT(12,12) , GTT(12,12) , - + H0(12,12) , HT(12,12) , HTT(12,12) - EQUIVALENCE (GYR(1,1,1),G1DIM(1)) , (HYR(1,1,1),H1DIM(1)) , - + (GYR(1,1,NYT),G0(1,1)) , (HYR(1,1,NYT),H0(1,1)) - - SAVE DATEL,GYR,HYR,EPOCH,G1DIM,H1DIM,G0,H0,GT,HT,GTT,HTT -C SAVE DATEL,GYR,HYR,EPOCH, G0,H0,GT,HT,GTT,HTT - DATA DATEL /-999./ - DATA EPOCH /1900, 1905, 1910, 1915, 1920, 1925, 1930, 1935, 1940, - +1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, - +2000/ -C D_/Dtime2 coefficients are 0 - DATA GTT/144*0./,HTT/144*0./ - -C DGRF g(n,m) for 1900: -C The "column" corresponds to "n" and -C the "line" corresponds to "m" as indicated in column 6; -C e.g., for 1965 g(0,3) = 1297. or g(6,6) = -111. - DATA (G1DIM(I),I=1,144) /0, - O -31543, -677, 1022, 876, -184, 63, 70, 11, 8, -3, 2*0, - 1 -2298, 2905, -1469, 628, 328, 61, -55, 8, 10, -4, 3*0, - 2 924, 1256, 660, 264, -11, 0, -4, 1, 2, 4*0, - 3 572, -361, 5, -217, 34, -9, -11, -5, 5*0, - 4 134, -86, -58, -41, 1, 12, -2, 6*0, - 5 -16, 59, -21, 2, 1, 6, 7*0, - 6 -90, 18, -9, -2, 4, 8*0, - 7 6, 5, 2, 0, 9*0, - 8 8, -1, 2, 10*0, - 9 -1, 2, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1905: - DATA (G1DIM(I),I=145,288) /0, - O -31464, -728, 1037, 880, -192, 62, 70, 11, 8, -3, 2*0, - 1 -2298, 2928, -1494, 643, 328, 60, -54, 8, 10, -4, 3*0, - 2 1041, 1239, 653, 259, -11, 0, -4, 1, 2, 4*0, - 3 635, -380, -1, -221, 33, -9, -11, -5, 5*0, - 4 146, -93, -57, -41, 1, 12, -2, 6*0, - 5 -26, 57, -20, 2, 1, 6, 7*0, - 6 -92, 18, -8, -2, 4, 8*0, - 7 6, 5, 2, 0, 9*0, - 8 8, 0, 2, 10*0, - 9 -1, 2, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1910: - DATA (G1DIM(I),I=289,432) /0, - O -31354, -769, 1058, 884, -201, 62, 71, 11, 8, -3, 2*0, - 1 -2297, 2948, -1524, 660, 327, 58, -54, 8, 10, -4, 3*0, - 2 1176, 1223, 644, 253, -11, 1, -4, 1, 2, 4*0, - 3 705, -400, -9, -224, 32, -9, -11, -5, 5*0, - 4 160, -102, -54, -40, 1, 12, -2, 6*0, - 5 -38, 54, -19, 2, 1, 6, 7*0, - 6 -95, 18, -8, -2, 4, 8*0, - 7 6, 5, 2, 0, 9*0, - 8 8, 0, 2, 10*0, - 9 -1, 2, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1915: - DATA (G1DIM(I),I=433,576) /0, - O -31212, -802, 1084, 887, -211, 61, 72, 11, 8, -3, 2*0, - 1 -2306, 2956, -1559, 678, 327, 57, -54, 8, 10, -4, 3*0, - 2 1309, 1212, 631, 245, -10, 2, -4, 1, 2, 4*0, - 3 778, -416, -16, -228, 31, -9, -11, -5, 5*0, - 4 178, -111, -51, -38, 2, 12, -2, 6*0, - 5 -51, 49, -18, 3, 1, 6, 7*0, - 6 -98, 19, -8, -2, 4, 8*0, - 7 6, 6, 2, 0, 9*0, - 8 8, 0, 1, 10*0, - 9 -1, 2, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1920: - DATA (G1DIM(I),I=577,720) /0, - O -31060, -839, 1111, 889, -221, 61, 73, 11, 8, -3, 2*0, - 1 -2317, 2959, -1600, 695, 326, 55, -54, 7, 10, -4, 3*0, - 2 1407, 1205, 616, 236, -10, 2, -3, 1, 2, 4*0, - 3 839, -424, -23, -233, 29, -9, -11, -5, 5*0, - 4 199, -119, -46, -37, 2, 12, -2, 6*0, - 5 -62, 44, -16, 4, 1, 6, 7*0, - 6 -101, 19, -7, -2, 4, 8*0, - 7 6, 6, 2, 0, 9*0, - 8 8, 0, 1, 10*0, - 9 -1, 3, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1925: - DATA (G1DIM(I),I=721,864) /0, - O -30926, -893, 1140, 891, -230, 61, 73, 11, 8, -3, 2*0, - 1 -2318, 2969, -1645, 711, 326, 54, -54, 7, 10, -4, 3*0, - 2 1471, 1202, 601, 226, -9, 3, -3, 1, 2, 4*0, - 3 881, -426, -28, -238, 27, -9, -11, -5, 5*0, - 4 217, -125, -40, -35, 2, 12, -2, 6*0, - 5 -69, 39, -14, 4, 1, 6, 7*0, - 6 -103, 19, -7, -2, 4, 8*0, - 7 6, 7, 2, 0, 9*0, - 8 8, 0, 1, 10*0, - 9 -1, 3, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1930: - DATA (G1DIM(I),I=865,1008) /0, - O -30805, -951, 1172, 896, -237, 60, 74, 11, 8, -3, 2*0, - 1 -2316, 2980, -1692, 727, 327, 53, -54, 7, 10, -4, 3*0, - 2 1517, 1205, 584, 218, -9, 4, -3, 1, 2, 4*0, - 3 907, -422, -32, -242, 25, -9, -12, -5, 5*0, - 4 234, -131, -32, -34, 2, 12, -2, 6*0, - 5 -74, 32, -12, 5, 1, 6, 7*0, - 6 -104, 18, -6, -2, 4, 8*0, - 7 6, 8, 3, 0, 9*0, - 8 8, 0, 1, 10*0, - 9 -2, 3, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1935: - DATA (G1DIM(I),I=1009,1152) /0, - O -30715, -1018, 1206, 903, -241, 59, 74, 11, 8, -3, 2*0, - 1 -2306, 2984, -1740, 744, 329, 53, -53, 7, 10, -4, 3*0, - 2 1550, 1215, 565, 211, -8, 4, -3, 1, 2, 4*0, - 3 918, -415, -33, -246, 23, -9, -12, -5, 5*0, - 4 249, -136, -25, -33, 1, 11, -2, 6*0, - 5 -76, 25, -11, 6, 1, 6, 7*0, - 6 -106, 18, -6, -2, 4, 8*0, - 7 6, 8, 3, 0, 9*0, - 8 7, 0, 2, 10*0, - 9 -2, 3, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1940: - DATA (G1DIM(I),I=1153,1296) /0, - O -30654, -1106, 1240, 914, -241, 57, 74, 11, 8, -3, 2*0, - 1 -2292, 2981, -1790, 762, 334, 54, -53, 7, 10, -4, 3*0, - 2 1566, 1232, 550, 208, -7, 4, -3, 1, 2, 4*0, - 3 916, -405, -33, -249, 20, -10, -12, -5, 5*0, - 4 265, -141, -18, -31, 1, 11, -2, 6*0, - 5 -76, 18, -9, 6, 1, 6, 7*0, - 6 -107, 17, -5, -2, 4, 8*0, - 7 5, 9, 3, 0, 9*0, - 8 7, 1, 2, 10*0, - 9 -2, 3, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1945: - DATA (G1DIM(I),I=1297,1440) /0, - O -30594, -1244, 1282, 944, -253, 59, 70, 13, 5, -3, 2*0, - 1 -2285, 2990, -1834, 776, 346, 57, -40, 7, -21, 11, 3*0, - 2 1578, 1255, 544, 194, 6, 0, -8, 1, 1, 4*0, - 3 913, -421, -20, -246, 0, -5, -11, 2, 5*0, - 4 304, -142, -25, -29, 9, 3, -5, 6*0, - 5 -82, 21, -10, 7, 16, -1, 7*0, - 6 -104, 15, -10, -3, 8, 8*0, - 7 29, 7, -4, -1, 9*0, - 8 2, -3, -3, 10*0, - 9 -4, 5, 11*0, - A -2, 13*0/ -C DGRF g(n,m) for 1950: - DATA (G1DIM(I),I=1441,1584) /0, - O -30554, -1341, 1297, 954, -240, 54, 65, 22, 3, -8, 2*0, - 1 -2250, 2998, -1889, 792, 349, 57, -55, 15, -7, 4, 3*0, - 2 1576, 1274, 528, 211, 4, 2, -4, -1, -1, 4*0, - 3 896, -408, -20, -247, 1, -1, -25, 13, 5*0, - 4 303, -147, -16, -40, 11, 10, -4, 6*0, - 5 -76, 12, -7, 15, 5, 4, 7*0, - 6 -105, 5, -13, -5, 12, 8*0, - 7 19, 5, -2, 3, 9*0, - 8 -1, 3, 2, 10*0, - 9 8, 10, 11*0, - A 3, 13*0/ -C DGRF g(n,m) for 1955: - DATA (G1DIM(I),I=1585,1728) /0, - O -30500, -1440, 1302, 958, -229, 47, 65, 11, 4, -3, 2*0, - 1 -2215, 3003, -1944, 796, 360, 57, -56, 9, 9, -5, 3*0, - 2 1581, 1288, 510, 230, 3, 2, -6, -4, -1, 4*0, - 3 882, -397, -23, -247, 10, -14, -5, 2, 5*0, - 4 290, -152, -8, -32, 6, 2, -3, 6*0, - 5 -69, 7, -11, 10, 4, 7, 7*0, - 6 -107, 9, -7, 1, 4, 8*0, - 7 18, 6, 2, -2, 9*0, - 8 9, 2, 6, 10*0, - 9 5, -2, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1960: - DATA (G1DIM(I),I=1729,1872) /0, - O -30421, -1555, 1302, 957, -222, 46, 67, 15, 4, 1, 2*0, - 1 -2169, 3002, -1992, 800, 362, 58, -56, 6, 6, -3, 3*0, - 2 1590, 1289, 504, 242, 1, 5, -4, 0, 4, 4*0, - 3 878, -394, -26, -237, 15, -11, -9, 0, 5*0, - 4 269, -156, -1, -32, 2, 1, -1, 6*0, - 5 -63, -2, -7, 10, 4, 4, 7*0, - 6 -113, 17, -5, -1, 6, 8*0, - 7 8, 10, -2, 1, 9*0, - 8 8, 3, -1, 10*0, - 9 -1, 2, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1965: - DATA (G1DIM(I),I=1873,2016) /0, - O -30334, -1662, 1297, 957, -219, 45, 75, 13, 8, -2, 2*0, - 1 -2119, 2997, -2038, 804, 358, 61, -57, 5, 10, -3, 3*0, - 2 1594, 1292, 479, 254, 8, 4, -4, 2, 2, 4*0, - 3 856, -390, -31, -228, 13, -14, -13, -5, 5*0, - 4 252, -157, 4, -26, 0, 10, -2, 6*0, - 5 -62, 1, -6, 8, -1, 4, 7*0, - 6 -111, 13, -1, -1, 4, 8*0, - 7 1, 11, 5, 0, 9*0, - 8 4, 1, 2, 10*0, - 9 -2, 2, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1970: - DATA (G1DIM(I),I=2017,2160) /0, - O -30220, -1781, 1287, 952, -216, 43, 72, 14, 8, -3, 2*0, - 1 -2068, 3000, -2091, 800, 359, 64, -57, 6, 10, -3, 3*0, - 2 1611, 1278, 461, 262, 15, 1, -2, 2, 2, 4*0, - 3 838, -395, -42, -212, 14, -13, -12, -5, 5*0, - 4 234, -160, 2, -22, -3, 10, -1, 6*0, - 5 -56, 3, -2, 5, -1, 6, 7*0, - 6 -112, 13, 0, 0, 4, 8*0, - 7 -2, 11, 3, 1, 9*0, - 8 3, 1, 0, 10*0, - 9 -1, 3, 11*0, - A -1, 13*0/ -C DGRF g(n,m) for 1975: - DATA (G1DIM(I),I=2161,2304) /0, - O -30100, -1902, 1276, 946, -218, 45, 71, 14, 7, -3, 2*0, - 1 -2013, 3010, -2144, 791, 356, 66, -56, 6, 10, -3, 3*0, - 2 1632, 1260, 438, 264, 28, 1, -1, 2, 2, 4*0, - 3 830, -405, -59, -198, 16, -12, -12, -5, 5*0, - 4 216, -159, 1, -14, -8, 10, -2, 6*0, - 5 -49, 6, 0, 4, -1, 5, 7*0, - 6 -111, 12, 0, -1, 4, 8*0, - 7 -5, 10, 4, 1, 9*0, - 8 1, 1, 0, 10*0, - 9 -2, 3, 11*0, - A -1, 13*0/ -C DGRF g(n,m) for 1980: - DATA (G1DIM(I),I=2305,2448) /0, - O -29992, -1997, 1281, 938, -218, 48, 72, 18, 5, -4, 2*0, - 1 -1956, 3027, -2180, 782, 357, 66, -59, 6, 10, -4, 3*0, - 2 1663, 1251, 398, 261, 42, 2, 0, 1, 2, 4*0, - 3 833, -419, -74, -192, 21, -11, -12, -5, 5*0, - 4 199, -162, 4, -12, -7, 9, -2, 6*0, - 5 -48, 14, 1, 4, -3, 5, 7*0, - 6 -108, 11, 3, -1, 3, 8*0, - 7 -2, 6, 7, 1, 9*0, - 8 -1, 2, 2, 10*0, - 9 -5, 3, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1985: - DATA (G1DIM(I),I=2449,2592) /0, - O -29873, -2072, 1296, 936, -214, 53, 74, 21, 5, -4, 2*0, - 1 -1905, 3044, -2208, 780, 355, 65, -62, 6, 10, -4, 3*0, - 2 1687, 1247, 361, 253, 51, 3, 0, 1, 3, 4*0, - 3 829, -424, -93, -185, 24, -11, -12, -5, 5*0, - 4 170, -164, 4, -6, -9, 9, -2, 6*0, - 5 -46, 16, 4, 4, -3, 5, 7*0, - 6 -102, 10, 4, -1, 3, 8*0, - 7 0, 4, 7, 1, 9*0, - 8 -4, 1, 2, 10*0, - 9 -5, 3, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1990: - DATA (G1DIM(I),I=2593,2736) /0, - O -29775, -2131, 1314, 939, -214, 61, 77, 23, 4, -3, 2*0, - 1 -1848, 3059, -2239, 780, 353, 65, -64, 5, 9, -4, 3*0, - 2 1686, 1248, 325, 245, 59, 2, -1, 1, 2, 4*0, - 3 802, -423, -109, -178, 26, -10, -12, -5, 5*0, - 4 141, -165, 3, -1, -12, 9, -2, 6*0, - 5 -36, 18, 5, 3, -4, 4, 7*0, - 6 -96, 9, 4, -2, 3, 8*0, - 7 0, 2, 7, 1, 9*0, - 8 -6, 1, 3, 10*0, - 9 -6, 3, 11*0, - A 0, 13*0/ -C DGRF g(n,m) for 1995: - DATA (G1DIM(I),I=2737,2880) /0, - O -29682, -2197, 1329, 941, -210, 66, 78, 24, 4, -3, 2*0, - 1 -1789, 3074, -2268, 782, 352, 64, -67, 4, 9, -4, 3*0, - 2 1685, 1249, 291, 237, 65, 1, -1, 1, 2, 4*0, - 3 769, -421, -122, -172, 29, -9, -12, -5, 5*0, - 4 116, -167, 2, 4, -14, 9, -2, 6*0, - 5 -26, 17, 8, 4, -4, 4, 7*0, - 6 -94, 10, 5, -2, 3, 8*0, - 7 -2, 0, 7, 1, 9*0, - 8 -7, 0, 3, 10*0, - 9 -6, 3, 11*0, - A 0, 13*0/ -C DGRF h(n,m) for 1900: - DATA (H1DIM(I),I=1,144) /13*0, - 1 5922, -1061, -330, 195, -210, -9, -45, 8, -20, 2, 3*0, - 2 1121, 3, -69, 53, 83, -13, -14, 14, 1, 4*0, - 3 523, -210, -33, 2, -10, 7, 5, 2, 5*0, - 4 -75, -124, -35, -1, -13, -3, 6, 6*0, - 5 3, 36, 28, 5, -2, -4, 7*0, - 6 -69, -12, 16, 8, 0, 8*0, - 7 -22, -5, 10, -2, 9*0, - 8 -18, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1905: - DATA (H1DIM(I),I=145,288) /13*0, - 1 5909, -1086, -357, 203, -193, -7, -46, 8, -20, 2, 3*0, - 2 1065, 34, -77, 56, 86, -14, -15, 14, 1, 4*0, - 3 480, -201, -32, 4, -11, 7, 5, 2, 5*0, - 4 -65, -125, -32, 0, -13, -3, 6, 6*0, - 5 11, 32, 28, 5, -2, -4, 7*0, - 6 -67, -12, 16, 8, 0, 8*0, - 7 -22, -5, 10, -2, 9*0, - 8 -18, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1910: - DATA (H1DIM(I),I=289,432) /13*0, - 1 5898, -1128, -389, 211, -172, -5, -47, 8, -20, 2, 3*0, - 2 1000, 62, -90, 57, 89, -14, -15, 14, 1, 4*0, - 3 425, -189, -33, 5, -12, 6, 5, 2, 5*0, - 4 -55, -126, -29, 1, -13, -3, 6, 6*0, - 5 21, 28, 28, 5, -2, -4, 7*0, - 6 -65, -13, 16, 8, 0, 8*0, - 7 -22, -5, 10, -2, 9*0, - 8 -18, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1915: - DATA (H1DIM(I),I=433,576) /13*0, - 1 5875, -1191, -421, 218, -148, -2, -48, 8, -20, 2, 3*0, - 2 917, 84, -109, 58, 93, -14, -15, 14, 1, 4*0, - 3 360, -173, -34, 8, -12, 6, 5, 2, 5*0, - 4 -51, -126, -26, 2, -13, -3, 6, 6*0, - 5 32, 23, 28, 5, -2, -4, 7*0, - 6 -62, -15, 16, 8, 0, 8*0, - 7 -22, -5, 10, -2, 9*0, - 8 -18, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1920: - DATA (H1DIM(I),I=577,720) /13*0, - 1 5845, -1259, -445, 220, -122, 0, -49, 8, -20, 2, 3*0, - 2 823, 103, -134, 58, 96, -14, -15, 14, 1, 4*0, - 3 293, -153, -38, 11, -13, 6, 5, 2, 5*0, - 4 -57, -125, -22, 4, -14, -3, 6, 6*0, - 5 43, 18, 28, 5, -2, -4, 7*0, - 6 -57, -16, 17, 9, 0, 8*0, - 7 -22, -5, 10, -2, 9*0, - 8 -19, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1925: - DATA (H1DIM(I),I=721,864) /13*0, - 1 5817, -1334, -462, 216, -96, 3, -50, 8, -20, 2, 3*0, - 2 728, 119, -163, 58, 99, -14, -15, 14, 1, 4*0, - 3 229, -130, -44, 14, -14, 6, 5, 2, 5*0, - 4 -70, -122, -18, 5, -14, -3, 6, 6*0, - 5 51, 13, 29, 5, -2, -4, 7*0, - 6 -52, -17, 17, 9, 0, 8*0, - 7 -21, -5, 10, -2, 9*0, - 8 -19, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1930: - DATA (H1DIM(I),I=865,1008) /13*0, - 1 5808, -1424, -480, 205, -72, 4, -51, 8, -20, 2, 3*0, - 2 644, 133, -195, 60, 102, -15, -15, 14, 1, 4*0, - 3 166, -109, -53, 19, -14, 5, 5, 2, 5*0, - 4 -90, -118, -16, 6, -14, -3, 6, 6*0, - 5 58, 8, 29, 5, -2, -4, 7*0, - 6 -46, -18, 18, 9, 0, 8*0, - 7 -20, -5, 10, -2, 9*0, - 8 -19, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1935: - DATA (H1DIM(I),I=1009,1152) /13*0, - 1 5812, -1520, -494, 188, -51, 4, -52, 8, -20, 2, 3*0, - 2 586, 146, -226, 64, 104, -17, -15, 15, 1, 4*0, - 3 101, -90, -64, 25, -14, 5, 5, 2, 5*0, - 4 -114, -115, -15, 7, -15, -3, 6, 6*0, - 5 64, 4, 29, 5, -3, -4, 7*0, - 6 -40, -19, 18, 9, 0, 8*0, - 7 -19, -5, 11, -1, 9*0, - 8 -19, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1940: - DATA (H1DIM(I),I=1153,1296) /13*0, - 1 5821, -1614, -499, 169, -33, 4, -52, 8, -21, 2, 3*0, - 2 528, 163, -252, 71, 105, -18, -14, 15, 1, 4*0, - 3 43, -72, -75, 33, -14, 5, 5, 2, 5*0, - 4 -141, -113, -15, 7, -15, -3, 6, 6*0, - 5 69, 0, 29, 5, -3, -4, 7*0, - 6 -33, -20, 19, 9, 0, 8*0, - 7 -19, -5, 11, -1, 9*0, - 8 -19, -2, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1945: - DATA (H1DIM(I),I=1297,1440) /13*0, - 1 5810, -1702, -499, 144, -12, 6, -45, 12, -27, 5, 3*0, - 2 477, 186, -276, 95, 100, -18, -21, 17, 1, 4*0, - 3 -11, -55, -67, 16, 2, -12, 29,-20, 5*0, - 4 -178, -119, -9, 6, -7, -9, -1, 6*0, - 5 82, -16, 28, 2, 4, -6, 7*0, - 6 -39, -17, 18, 9, 6, 8*0, - 7 -22, 3, 6, -4, 9*0, - 8 -11, 1, -2, 10*0, - 9 8, 0, 11*0, - A -2, 13*0/ -C DGRF h(n,m) for 1950: - DATA (H1DIM(I),I=1441,1584) /13*0, - 1 5815, -1810, -476, 136, 3, -1, -35, 5, -24, 13, 3*0, - 2 381, 206, -278, 103, 99, -17, -22, 19, -2, 4*0, - 3 -46, -37, -87, 33, 0, 0, 12,-10, 5*0, - 4 -210, -122, -12, 10, -21, 2, 2, 6*0, - 5 80, -12, 36, -8, 2, -3, 7*0, - 6 -30, -18, 17, 8, 6, 8*0, - 7 -16, -4, 8, -3, 9*0, - 8 -17, -11, 6, 10*0, - 9 -7, 11, 11*0, - A 8, 13*0/ -C DGRF h(n,m) for 1955: - DATA (H1DIM(I),I=1585,1728) /13*0, - 1 5820, -1898, -462, 133, 15, -9, -50, 10, -11, -4, 3*0, - 2 291, 216, -274, 110, 96, -24, -15, 12, 0, 4*0, - 3 -83, -23, -98, 48, -4, 5, 7, -8, 5*0, - 4 -230, -121, -16, 8, -23, 6, -2, 6*0, - 5 78, -12, 28, 3, -2, -4, 7*0, - 6 -24, -20, 23, 10, 1, 8*0, - 7 -18, -4, 7, -3, 9*0, - 8 -13, -6, 7, 10*0, - 9 5, -1, 11*0, - A -3, 13*0/ -C DGRF h(n,m) for 1960: - DATA (H1DIM(I),I=1729,1872) /13*0, - 1 5791, -1967, -414, 135, 16, -10, -55, 11, -18, 4, 3*0, - 2 206, 224, -278, 125, 99, -28, -14, 12, 1, 4*0, - 3 -130, 3, -117, 60, -6, 7, 2, 0, 5*0, - 4 -255, -114, -20, 7, -18, 0, 2, 6*0, - 5 81, -11, 23, 4, -3, -5, 7*0, - 6 -17, -18, 23, 9, 1, 8*0, - 7 -17, 1, 8, -1, 9*0, - 8 -20, 0, 6, 10*0, - 9 5, 0, 11*0, - A -7, 13*0/ -C DGRF h(n,m) for 1965: - DATA (H1DIM(I),I=1873,2016) /13*0, - 1 5776, -2016, -404, 148, 19, -11, -61, 7, -22, 2, 3*0, - 2 114, 240, -269, 128, 100, -27, -12, 15, 1, 4*0, - 3 -165, 13, -126, 68, -2, 9, 7, 2, 5*0, - 4 -269, -97, -32, 6, -16, -4, 6, 6*0, - 5 81, -8, 26, 4, -5, -4, 7*0, - 6 -7, -23, 24, 10, 0, 8*0, - 7 -12, -3, 10, -2, 9*0, - 8 -17, -4, 3, 10*0, - 9 1, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1970: - DATA (H1DIM(I),I=2017,2160) /13*0, - 1 5737, -2047, -366, 167, 26, -12, -70, 7, -21, 1, 3*0, - 2 25, 251, -266, 139, 100, -27, -15, 16, 1, 4*0, - 3 -196, 26, -139, 72, -4, 6, 6, 3, 5*0, - 4 -279, -91, -37, 8, -17, -4, 4, 6*0, - 5 83, -6, 23, 6, -5, -4, 7*0, - 6 1, -23, 21, 10, 0, 8*0, - 7 -11, -6, 11, -1, 9*0, - 8 -16, -2, 3, 10*0, - 9 1, 1, 11*0, - A -4, 13*0/ -C DGRF h(n,m) for 1975: - DATA (H1DIM(I),I=2161,2304) /13*0, - 1 5675, -2067, -333, 191, 31, -13, -77, 6, -21, 1, 3*0, - 2 -68, 262, -265, 148, 99, -26, -16, 16, 1, 4*0, - 3 -223, 39, -152, 75, -5, 4, 7, 3, 5*0, - 4 -288, -83, -41, 10, -19, -4, 4, 6*0, - 5 88, -4, 22, 6, -5, -4, 7*0, - 6 11, -23, 18, 10, -1, 8*0, - 7 -12, -10, 11, -1, 9*0, - 8 -17, -3, 3, 10*0, - 9 1, 1, 11*0, - A -5, 13*0/ -C DGRF h(n,m) for 1980: - DATA (H1DIM(I),I=2305,2448) /13*0, - 1 5604, -2129, -336, 212, 46, -15, -82, 7, -21, 1, 3*0, - 2 -200, 271, -257, 150, 93, -27, -18, 16, 0, 4*0, - 3 -252, 53, -151, 71, -5, 4, 9, 3, 5*0, - 4 -297, -78, -43, 16, -22, -5, 6, 6*0, - 5 92, -2, 18, 9, -6, -4, 7*0, - 6 17, -23, 16, 9, 0, 8*0, - 7 -10, -13, 10, -1, 9*0, - 8 -15, -6, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1985: - DATA (H1DIM(I),I=2449,2592) /13*0, - 1 5500, -2197, -310, 232, 47, -16, -83, 8, -21, 1, 3*0, - 2 -306, 284, -249, 150, 88, -27, -19, 15, 0, 4*0, - 3 -297, 69, -154, 69, -2, 5, 9, 3, 5*0, - 4 -297, -75, -48, 20, -23, -6, 6, 6*0, - 5 95, -1, 17, 11, -6, -4, 7*0, - 6 21, -23, 14, 9, 0, 8*0, - 7 -7, -15, 9, -1, 9*0, - 8 -11, -7, 4, 10*0, - 9 2, 0, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1990: - DATA (H1DIM(I),I=2593,2736) /13*0, - 1 5406, -2279, -284, 247, 46, -16, -80, 10, -20, 2, 3*0, - 2 -373, 293, -240, 154, 82, -26, -19, 15, 1, 4*0, - 3 -352, 84, -153, 69, 0, 6, 11, 3, 5*0, - 4 -299, -69, -52, 21, -22, -7, 6, 6*0, - 5 97, 1, 17, 12, -7, -4, 7*0, - 6 24, -23, 12, 9, 0, 8*0, - 7 -4, -16, 8, -2, 9*0, - 8 -10, -7, 3, 10*0, - 9 2, -1, 11*0, - A -6, 13*0/ -C DGRF h(n,m) for 1995: - DATA (H1DIM(I),I=2737,2880) /13*0, - 1 5318, -2356, -263, 262, 44, -16, -77, 12, -19, 2, 3*0, - 2 -425, 302, -232, 157, 77, -25, -20, 15, 1, 4*0, - 3 -406, 98, -152, 67, 3, 7, 11, 3, 5*0, - 4 -301, -64, -57, 22, -21, -7, 6, 6*0, - 5 99, 4, 16, 12, -7, -4, 7*0, - 6 28, -23, 10, 9, 0, 8*0, - 7 -3, -17, 7, -2, 9*0, - 8 -10, -8, 3, 10*0, - 9 1, -1, 11*0, - A -6, 13*0/ -C Initial coefficients g0 (IGRF for 2000): - DATA G0 /0, - O -29615, -2267, 1341, 935, -217, 72, 79, 25, 5, -2, 2*0, - 1 -1728, 3072, -2290, 787, 351, 68, -74, 6, 9, -6, 3*0, - 2 1672, 1253, 251, 222, 74, 0, -9, 3, 2, 4*0, - 3 715, -405, -131, -161, 33, -8, -8, -3, 5*0, - 4 110, -169, -5, 9, -17, 6, 0, 6*0, - 5 -12, 17, 7, 9, -9, 4, 7*0, - 6 -91, 8, 7, -2, 1, 8*0, - 7 -2, -8, 9, 2, 9*0, - 8 -7, -4, 4, 10*0, - 9 -8, 0, 11*0, - A -1, 13*0/ -C D_/Dtime coefficients gt (IGRF for 2000-2005): - DATA GT /0, - O 14.6, -12.4, 0.7, -1.3, 0.0, 1.0,-0.4,-0.3, 0.0,0.0, 2*0, - 1 10.7, 1.1, -5.4, 1.6, -0.7, -0.4,-0.4, 0.2, 0.0,0.0, 3*0, - 2 -1.1, 0.9, -7.3, -2.1, 0.9,-0.3,-0.3, 0.0,0.0, 4*0, - 3 -7.7, 2.9, -2.8, 2.0, 1.1, 0.4, 0.0,0.0, 5*0, - 4 -3.2, -0.8, -0.6, 1.1,-1.0, 0.0,0.0, 6*0, - 5 2.5, -0.3,-0.2, 0.3, 0.0,0.0, 7*0, - 6 1.2, 0.6,-0.5, 0.0,0.0, 8*0, - 7 -0.9,-0.7, 0.0,0.0, 9*0, - 8 -0.4, 0.0,0.0, 10*0, - 9 0.0,0.0, 11*0, - A 0.0, 13*0/ -C Initial coefficients h0 (IGRF for 2000): - DATA H0 /13*0, - 1 5186, -2478, -227, 272, 44, -17, -65, 12, -20, 1, 3*0, - 2 -458, 296, -232, 172, 64, -24, -22, 13, 0, 4*0, - 3 -492, 119, -134, 65, 6, 8, 12, 4, 5*0, - 4 -304, -40, -61, 24, -21, -6, 5, 6*0, - 5 107, 1, 15, 15, -8, -6, 7*0, - 6 44, -25, 9, 9, -1, 8*0, - 7 -6, -16, 4, -3, 9*0, - 8 -3, -8, 0, 10*0, - 9 5, -2, 11*0, - A -8, 13*0/ -C D_/Dtime coefficients ht (IGRF for 2000-2005): - DATA HT /13*0, - 1 -22.5, -20.6, 6.0, 2.1, -0.1, -0.2, 1.1, 0.1, 0.0,0.0, 3*0, - 2 -9.6, -0.1, 1.3, 0.6, -1.4, 0.0, 0.0, 0.0,0.0, 4*0, - 3 -14.2, 5.0, 1.7, 0.0, 0.3, 0.0, 0.0,0.0, 5*0, - 4 0.3, 1.9, -0.8,-0.1, 0.3, 0.0,0.0, 6*0, - 5 0.1, 0.0,-0.6, 0.6, 0.0,0.0, 7*0, - 6 0.9,-0.7,-0.4, 0.0,0.0, 8*0, - 7 0.2, 0.3, 0.0,0.0, 9*0, - 8 0.7, 0.0,0.0, 10*0, - 9 0.0,0.0, 11*0, - A 0.0, 13*0/ - - -C Do not need to load new coefficients if date has not changed - ICHG = 0 - - NMAX = 10 -c ICHG = -99999 - - IF (DATE .EQ. DATEL) GO TO 300 - DATEL = DATE - ICHG = 1 - -C Trap out of range date: - IF (DATE .LT. EPOCH(1)) GO TO 9100 - IF (DATE .GT. EPOCH(NYT)+5.) WRITE(6,9200) DATE - - DO 100 I=1,NYT - IF (DATE .LT. EPOCH(I)) GO TO 110 - IY = I - 100 CONTINUE - 110 CONTINUE - - TIME = DATE - T = TIME-EPOCH(IY) - G(1) = 0.0 - GV(1) = 0.0 - I = 2 - F0 = -1.0D-5 - DO 200 N=1,NMAX - F0 = F0 * REAL(N)/2. - F = F0 / SQRT(2.0) - NN = N+1 - MM = 1 - IF (IY .EQ. NYT) THEN -C Extrapolate coefficients - G(I) = ((GTT(NN,MM)*T + GT(NN,MM))*T + G0(NN,MM)) * F0 - ELSE -C Interpolate coefficients - G(I) = (GYR(NN,MM,IY) + - + T/5.0 * (GYR(NN,MM,IY+1)-GYR(NN,MM,IY))) * F0 - ENDIF - GV(I) = G(I) / REAL(NN) - I = I+1 - DO 200 M=1,N - F = F / SQRT( REAL(N-M+1) / REAL(N+M) ) - NN = N+1 - MM = M+1 - I1 = I+1 - IF (IY .EQ. NYT) THEN -C Extrapolate coefficients - G(I) = ((GTT(NN,MM)*T + GT(NN,MM))*T + G0(NN,MM)) * F - G(I1) = ((HTT(NN,MM)*T + HT(NN,MM))*T + H0(NN,MM)) * F - ELSE -C Interpolate coefficients - G(I) = (GYR(NN,MM,IY) + - + T/5.0 * (GYR(NN,MM,IY+1)-GYR(NN,MM,IY))) * F - G(I1) = (HYR(NN,MM,IY) + - + T/5.0 * (HYR(NN,MM,IY+1)-HYR(NN,MM,IY))) * F - ENDIF - RNN = REAL(NN) - GV(I) = G(I) / RNN - GV(I1) = G(I1) / RNN - 200 I = I+2 - - 300 CONTINUE - - RETURN - -C Error trap diagnostics: - 9100 WRITE(6,'('' '',/, - +'' COFRM: DATE'',F9.3,'' preceeds DGRF coefficients'', - + '' presently coded.'')') DATE - STOP 'mor cod' - 9200 FORMAT(' ',/, - +' COFRM: DATE',F9.3,' is after the maximum', - + ' recommended for extrapolation.') - END - - SUBROUTINE DYPOL (COLAT,ELON,VP) -C Computes parameters for dipole component of geomagnetic field. -C COFRM must be called before calling DYPOL! -C 940504 A. D. Richmond -C -C INPUT from COFRM through COMMON /MAGCOF/ NMAX,GB(144),GV(144),ICHG -C NMAX = Maximum order of spherical harmonic coefficients used -C GB = Coefficients for magnetic field calculation -C GV = Coefficients for magnetic potential calculation -C ICHG = Flag indicating when GB,GV have been changed -C -C RETURNS: -C COLAT = Geocentric colatitude of geomagnetic dipole north pole -C (deg) -C ELON = East longitude of geomagnetic dipole north pole (deg) -C VP = Magnitude, in T.m, of dipole component of magnetic -C potential at geomagnetic pole and geocentric radius -C of 6371.2 km - - PARAMETER (RTOD=57.2957795130823, DTOR=0.01745329251994330, - + RE=6371.2, REQ=6378.160) - COMMON /MAGCOF/ NMAX,G(144),GV(144),ICHG - -C Compute geographic colatitude and longitude of the north pole of -C earth centered dipole - GPL = SQRT( G(2 )**2+ G(3 )**2+ G(4 )**2) - CTP = G(2 )/GPL - STP = SQRT(1. - CTP*CTP) - COLAT = (ACOS(CTP))*RTOD - ELON = ATAN2( G(4 ), G(3 ))*RTOD - -C Compute magnitude of magnetic potential at pole, radius Re. - VP = .2*GPL*RE -C .2 = 2*(10**-4 T/gauss)*(1000 m/km) (2 comes through F0 in COFRM). - - RETURN - END - - SUBROUTINE FELDG (IENTY,GLAT,GLON,ALT, BNRTH,BEAST,BDOWN,BABS) -C Compute the DGRF/IGRF field components at the point GLAT,GLON,ALT. -C COFRM must be called to establish coefficients for correct date -C prior to calling FELDG. -C -C IENTY is an input flag controlling the meaning and direction of the -C remaining formal arguments: -C IENTY = 1 -C INPUTS: -C GLAT = Latitude of point (deg) -C GLON = Longitude (east=+) of point (deg) -C ALT = Ht of point (km) -C RETURNS: -C BNRTH north component of field vector (Gauss) -C BEAST east component of field vector (Gauss) -C BDOWN downward component of field vector (Gauss) -C BABS magnitude of field vector (Gauss) -C -C IENTY = 2 -C INPUTS: -C GLAT = X coordinate (in units of earth radii 6371.2 km ) -C GLON = Y coordinate (in units of earth radii 6371.2 km ) -C ALT = Z coordinate (in units of earth radii 6371.2 km ) -C RETURNS: -C BNRTH = X component of field vector (Gauss) -C BEAST = Y component of field vector (Gauss) -C BDOWN = Z component of field vector (Gauss) -C BABS = Magnitude of field vector (Gauss) -C IENTY = 3 -C INPUTS: -C GLAT = X coordinate (in units of earth radii 6371.2 km ) -C GLON = Y coordinate (in units of earth radii 6371.2 km ) -C ALT = Z coordinate (in units of earth radii 6371.2 km ) -C RETURNS: -C BNRTH = Dummy variable -C BEAST = Dummy variable -C BDOWN = Dummy variable -C BABS = Magnetic potential (T.m) -C -C INPUT from COFRM through COMMON /MAGCOF/ NMAX,GB(144),GV(144),ICHG -C NMAX = Maximum order of spherical harmonic coefficients used -C GB = Coefficients for magnetic field calculation -C GV = Coefficients for magnetic potential calculation -C ICHG = Flag indicating when GB,GV have been changed -C -C HISTORY: -C COFRM and FELDG originated 15 Apr 83 by Vincent B. Wickwar -C (formerly at SRI. Int., currently at Utah State). -C -C May 94 (A.D. Richmond): Added magnetic potential calculation -C -C Oct 95 (Barnes): Added ICHG - - PARAMETER (RTOD=57.2957795130823, DTOR=0.01745329251994330, - + RE=6371.2, REQ=6378.160) - COMMON /MAGCOF/ NMAX,GB(144),GV(144),ICHG - DIMENSION XI(3),H(144),G(144) - SAVE IENTYP, G - DATA IENTYP/-10000/ - - IF (IENTY .EQ. 1) THEN - IS=1 - RLAT = GLAT*DTOR - CT = SIN(RLAT) - ST = COS(RLAT) - RLON = GLON*DTOR - CP = COS(RLON) - SP = SIN(RLON) - CALL GD2CART (GLAT,GLON,ALT,XXX,YYY,ZZZ) - XXX = XXX/RE - YYY = YYY/RE - ZZZ = ZZZ/RE - ELSE - IS = 2 - XXX = GLAT - YYY = GLON - ZZZ = ALT - ENDIF - RQ = 1./(XXX**2+YYY**2+ZZZ**2) - XI(1) = XXX*RQ - XI(2) = YYY*RQ - XI(3) = ZZZ*RQ - IHMAX = NMAX*NMAX+1 - LAST = IHMAX+NMAX+NMAX - IMAX = NMAX+NMAX-1 - - IF (IENTY .NE. IENTYP .OR. ICHG .EQ. 1) THEN - IENTYP = IENTY - ICHG = 0 - IF (IENTY .NE. 3) THEN - DO 10 I=1,LAST - 10 G(I) = GB(I) - ELSE - DO 20 I=1,LAST - 20 G(I) = GV(I) - ENDIF - ENDIF - - DO 30 I=IHMAX,LAST - 30 H(I) = G(I) - - MK = 3 - IF (IMAX .EQ. 1) MK=1 - - DO 100 K=1,MK,2 - I = IMAX - IH = IHMAX - - 60 IL = IH-I - F = 2./FLOAT(I-K+2) - X = XI(1)*F - Y = XI(2)*F - Z = XI(3)*(F+F) - - I = I-2 - IF (I .LT. 1) GO TO 90 - IF (I .EQ. 1) GO TO 80 - - DO 70 M=3,I,2 - IHM = IH+M - ILM = IL+M - H(ILM+1) = G(ILM+1)+ Z*H(IHM+1) + X*(H(IHM+3)-H(IHM-1)) - + -Y*(H(IHM+2)+H(IHM-2)) - 70 H(ILM) = G(ILM) + Z*H(IHM) + X*(H(IHM+2)-H(IHM-2)) - + +Y*(H(IHM+3)+H(IHM-1)) - - 80 H(IL+2) = G(IL+2) + Z*H(IH+2) + X*H(IH+4) - Y*(H(IH+3)+H(IH)) - H(IL+1) = G(IL+1) + Z*H(IH+1) + Y*H(IH+4) + X*(H(IH+3)-H(IH)) - - 90 H(IL) = G(IL) + Z*H(IH) + 2.*(X*H(IH+1)+Y*H(IH+2)) - IH = IL - IF (I .GE. K) GO TO 60 - 100 CONTINUE - - S = .5*H(1)+2.*(H(2)*XI(3)+H(3)*XI(1)+H(4)*XI(2)) - T = (RQ+RQ)*SQRT(RQ) - BXXX = T*(H(3)-S*XXX) - BYYY = T*(H(4)-S*YYY) - BZZZ = T*(H(2)-S*ZZZ) - BABS = SQRT(BXXX**2+BYYY**2+BZZZ**2) - IF (IS .EQ. 1) THEN ! (convert back to geodetic) - BEAST = BYYY*CP-BXXX*SP - BRHO = BYYY*SP+BXXX*CP - BNRTH = BZZZ*ST-BRHO*CT - BDOWN = -BZZZ*CT-BRHO*ST - ELSEIF (IS .EQ. 2) THEN ! (leave in earth centered cartesian) - BNRTH = BXXX - BEAST = BYYY - BDOWN = BZZZ - ENDIF - -C Magnetic potential computation makes use of the fact that the -C calculation of V is identical to that for r*Br, if coefficients -C in the latter calculation have been divided by (n+1) (coefficients -C GV). Factor .1 converts km to m and gauss to tesla. - IF (IENTY.EQ.3) BABS = (BXXX*XXX + BYYY*YYY + BZZZ*ZZZ)*RE*.1 - - RETURN - END - - SUBROUTINE GD2CART (GDLAT,GLON,ALT,X,Y,Z) -C Convert geodetic to cartesian coordinates by calling CONVRT -C 940503 A. D. Richmond - PARAMETER (RTOD=57.2957795130823, DTOR=0.01745329251994330) - CALL CONVRT (1,GDLAT,ALT,RHO,Z) - ANG = GLON*DTOR - X = RHO*COS(ANG) - Y = RHO*SIN(ANG) - RETURN - END - - SUBROUTINE CONVRT (I,GDLAT,ALT,X1,X2) -C Convert space point from geodetic to geocentric or vice versa. -C -C I is an input flag controlling the meaning and direction of the -C remaining formal arguments: -C -C I = 1 (convert from geodetic to cylindrical) -C INPUTS: -C GDLAT = Geodetic latitude (deg) -C ALT = Altitude above reference ellipsoid (km) -C RETURNS: -C X1 = Distance from Earth's rotation axis (km) -C X2 = Distance above (north of) Earth's equatorial plane (km) -C -C I = 2 (convert from geodetic to geocentric spherical) -C INPUTS: -C GDLAT = Geodetic latitude (deg) -C ALT = Altitude above reference ellipsoid (km) -C RETURNS: -C X1 = Geocentric latitude (deg) -C X2 = Geocentric distance (km) -C -C I = 3 (convert from cylindrical to geodetic) -C INPUTS: -C X1 = Distance from Earth's rotation axis (km) -C X2 = Distance from Earth's equatorial plane (km) -C RETURNS: -C GDLAT = Geodetic latitude (deg) -C ALT = Altitude above reference ellipsoid (km) -C -C I = 4 (convert from geocentric spherical to geodetic) -C INPUTS: -C X1 = Geocentric latitude (deg) -C X2 = Geocentric distance (km) -C RETURNS: -C GDLAT = Geodetic latitude (deg) -C ALT = Altitude above reference ellipsoid (km) -C -C -C HISTORY: -C 940503 (A. D. Richmond): Based on a routine originally written -C by V. B. Wickwar. -C -C REFERENCE: ASTRON. J. VOL. 66, p. 15-16, 1961. - - PARAMETER (RTOD=57.2957795130823, DTOR=0.01745329251994330 , - + RE=6371.2 , REQ=6378.160 , FLTNVRS=298.25 , - + E2=(2.-1./FLTNVRS)/FLTNVRS , E4=E2*E2 , E6=E4*E2 , E8=E4*E4 , - + OME2REQ = (1.-E2)*REQ , - + A21 = (512.*E2 + 128.*E4 + 60.*E6 + 35.*E8)/1024. , - + A22 = ( E6 + E8)/ 32. , - + A23 = -3.*( 4.*E6 + 3.*E8)/ 256. , - + A41 = -( 64.*E4 + 48.*E6 + 35.*E8)/1024. , - + A42 = ( 4.*E4 + 2.*E6 + E8)/ 16. , - + A43 = 15.*E8 / 256. , - + A44 = -E8 / 16. , - + A61 = 3.*( 4.*E6 + 5.*E8)/1024. , - + A62 = -3.*( E6 + E8)/ 32. , - + A63 = 35.*( 4.*E6 + 3.*E8)/ 768. , - + A81 = -5.*E8 /2048. , - + A82 = 64.*E8 /2048. , - + A83 = -252.*E8 /2048. , - + A84 = 320.*E8 /2048. ) -C E2 = Square of eccentricity - - IF (I .GE. 3) GO TO 300 - -C Geodetic to geocentric - -C Compute RHO,Z - SINLAT = SIN(GDLAT*DTOR) - COSLAT = SQRT(1.-SINLAT*SINLAT) - D = SQRT(1.-E2*SINLAT*SINLAT) - Z = (ALT+OME2REQ/D)*SINLAT - RHO = (ALT+REQ/D)*COSLAT - X1 = RHO - X2 = Z - IF (I .EQ. 1) RETURN - -C Compute GCLAT,RKM - RKM = SQRT(Z*Z + RHO*RHO) - GCLAT = RTOD*ATAN2(Z,RHO) - X1 = GCLAT - X2 = RKM - RETURN - -C Geocentric to geodetic - 300 IF (I .EQ. 3) THEN - RHO = X1 - Z = X2 - RKM = SQRT(Z*Z+RHO*RHO) - SCL = Z/RKM - GCLAT = ASIN(SCL)*RTOD - ELSEIF (I .EQ. 4) THEN - GCLAT = X1 - RKM = X2 - SCL = SIN(GCLAT*DTOR) - ELSE - RETURN - ENDIF - - RI = REQ/RKM - A2 = RI*(A21+RI*(A22+RI* A23)) - A4 = RI*(A41+RI*(A42+RI*(A43+RI*A44))) - A6 = RI*(A61+RI*(A62+RI* A63)) - A8 = RI*(A81+RI*(A82+RI*(A83+RI*A84))) - CCL = SQRT(1.-SCL*SCL) - S2CL = 2.*SCL*CCL - C2CL = 2.*CCL*CCL-1. - S4CL = 2.*S2CL*C2CL - C4CL = 2.*C2CL*C2CL-1. - S8CL = 2.*S4CL*C4CL - S6CL = S2CL*C4CL+C2CL*S4CL - DLTCL = S2CL*A2+S4CL*A4+S6CL*A6+S8CL*A8 - GDLAT = DLTCL*RTOD+GCLAT - SGL = SIN(GDLAT*DTOR) - ALT = RKM*COS(DLTCL)-REQ*SQRT(1.-E2*SGL*SGL) - RETURN - END - -cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc - Subroutine magloctm(alon,sbsllat,sbsllon,clatp,polon,mlt) -C Computes magnetic local time from magnetic longitude, subsolar coordinates, -C and geomagnetic pole coordinates. -C 950302 A. D. Richmond, NCAR -C Algorithm: MLT is calculated from the difference of the apex longitude, -C alon, and the geomagnetic dipole longitude of the subsolar point. -C -C Inputs: -C alon = apex magnetic longitude of the point (deg) -C sbsllat = geographic latitude of subsolar point (degrees) -C sbsllon = geographic longitude of subsolar point (degrees) -C clatp = Geocentric colatitude of geomagnetic dipole north pole (deg) -C polon = East longitude of geomagnetic dipole north pole (deg) -C -C Output: -C mlt (real) = magnetic local time for the apex longitude alon (hours) -C -C To go from mlt to alon (see comments following Entry mlt2alon for definition -C of variables), use: -C -C call mlt2alon(mlt,sbsllat,sbsllon,clatp,polon,alon) -C -C NOTE: If the calling routine uses subroutine magloctm in conjunction with -C file magfld.f (which is used by subroutine APEX), then clatp and polon can -C be found by invoking -C -C call DYPOL(clatp,polon,vp) -C -C where vp is an unneeded variable. (Note that subroutine COFRM must have -C been called before DYPOL, in order to set up the coefficients for the -C desired epoch.) Alternatively, if subroutine apxntrp is -C used to get alon from previously computed arrays, then -C clatp and polon can be obtained for use in magloctm by adding -C -C common/dipol/clatp,polon,dum1,dum2,dum3 -C -C to the calling routine (where dum1,dum2,dum3 are unneeded dummy variables). -C - real mlt - call SOLGMLON(sbsllat,sbsllon,clatp,polon,smlon) - mlt = (alon - smlon)/15.0 + 12.0 - if (mlt.ge.24.0) mlt = mlt - 24.0 - if (mlt.lt.0.) mlt = mlt + 24.0 - return -C - Entry mlt2alon(xmlt,sbsllat,sbsllon,clatp,polon,alonx) -C -C Inputs: -C xmlt (real) = magnetic local time for the apex longitude alon (hours, -C 0. to 24.) -C sbsllat = geographic latitude of subsolar point (degrees) -C sbsllon = geographic longitude of subsolar point (degrees) -C clatp = Geocentric colatitude of geomagnetic dipole north pole (deg) -C polon = East longitude of geomagnetic dipole north pole (deg) -C -C Output: -C alonx = apex magnetic longitude of the point (deg, -180. to 180.) -C - call SOLGMLON(sbsllat,sbsllon,clatp,polon,smlon) - alonx = 15.*(xmlt - 12.0) + smlon - if (alonx.gt.180.) alonx = alonx - 360.0 - if (alonx.le.-180.) alonx = alonx + 360.0 - return - end - -cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc - SUBROUTINE SOLGMLON(XLAT,XLON,COLAT,ELON,MLON) -C Computes geomagnetic longitude of the point with geocentric spherical -C latitude and longitude of XLAT and XLON, respectively. -C 940719 A. D. Richmond, NCAR -C Inputs: -C XLAT = geocentric spherical latitude (deg) -C XLON = geocentric spherical longitude (deg) -C COLAT = Geocentric colatitude of geomagnetic dipole north pole (deg) -C ELON = East longitude of geomagnetic dipole north pole (deg) -C Output: -C MLON = Geomagnetic dipole longitude of the point (deg, -180. to 180.) - - REAL MLON - PARAMETER (RTOD=5.72957795130823E1,DTOR=1.745329251994330E-2) - -C Algorithm: -C Use spherical coordinates. -C Let GP be geographic pole. -C Let GM be geomagnetic pole (colatitude COLAT, east longitude ELON). -C Let XLON be longitude of point P. -C Let TE be colatitude of point P. -C Let ANG be longitude angle from GM to P. -C Let TP be colatitude of GM. -C Let TF be arc length between GM and P. -C Let PA = MLON be geomagnetic longitude, i.e., Pi minus angle measured -C counterclockwise from arc GM-P to arc GM-GP. -C Then, using notation C=cos, S=sin, spherical-trigonometry formulas -C for the functions of the angles are as shown below. Note: STFCPA, -C STFSPA are sin(TF) times cos(PA), sin(PA), respectively. - - CTP = COS(COLAT*DTOR) - STP = SQRT(1. - CTP*CTP) - ANG = (XLON-ELON)*DTOR - CANG = COS(ANG) - SANG = SIN(ANG) - CTE = SIN(XLAT*DTOR) - STE = SQRT(1.-CTE*CTE) - STFCPA = STE*CTP*CANG - CTE*STP - STFSPA = SANG*STE - MLON = ATAN2(STFSPA,STFCPA)*RTOD - RETURN - END - -cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc - SUBROUTINE SUBSOLR (IYR,IDAY,IHR,IMN,SEC,SBSLLAT,SBSLLON) -C Find subsolar geographic latitude and longitude from date and time. -C Based on formulas in Astronomical Almanac for the year 1996, p. C24. -C (U.S. Government Printing Office, 1994). -C Usable for years 1601-2100, inclusive. According to the Almanac, -C results are good to at least 0.01 degree latitude and 0.025 degree -C longitude between years 1950 and 2050. Accuracy for other years -C has not been tested. Every day is assumed to have exactly -C 86400 seconds; thus leap seconds that sometimes occur on December -C 31 are ignored: their effect is below the accuracy threshold of -C the algorithm. -C 961026 A. D. Richmond, NCAR -C -C INPUTS: -C IYR = year (e.g., 1994). 1600 < IYR < 2101 -C IDAY = day of the year (1 = January 1; 365 [366 in leap year] = -C December 31). No constraint on permitted values, i.e., -C may be negative or greater than 366. -C IHR = hour (e.g., 13 for 13:49). -C No constraint on permitted values. -C IMN = minute (e.g., 49 for 13:49). -C No constraint on permitted values. -C SEC = second and fraction after the hour/minute. -C No constraint on permitted values. -C OUTPUT: -C SBSLLAT = geographic latitude of subsolar point (degrees) -C SBSLLON = geographic longitude of subsolar point (degrees, -C between -180 and +180) - PARAMETER (D2R=0.0174532925199432957692369076847 , - + R2D=57.2957795130823208767981548147) - PARAMETER (MSGUN=6) - INTEGER IYR,YR,IDAY,IHR,IMN,NLEAP,NCENT,NROT,SEC - REAL SBSLLAT,SBSLLON,L0,G0,DF,LF,GF,L,G,LAMBDA,EPSILON,N - 1 ,GRAD,LAMRAD,SINLAM,EPSRAD,DELTA,UT,ETDEG -C -C Number of years from 2000 to IYR (negative if IYR < 2000): - YR = IYR - 2000 -C -C NLEAP (final) = number of leap days from (2000 January 1) to (IYR January 1) -C (negative if IYR is before 1997) - NLEAP = (IYR-1601)/4 - NLEAP = NLEAP - 99 - IF (IYR.LE.1900) THEN - IF (IYR.LE.1600) THEN - WRITE(MSGUN,*) 'SUBSOLR INVALID BEFORE 1601: INPUT YEAR = ',IYR - call stop_gitm("died in apex.f") - ENDIF - NCENT = (IYR-1601)/100 - NCENT = 3 - NCENT - NLEAP = NLEAP + NCENT - ENDIF - IF (IYR.GE.2101) THEN - WRITE(MSGUN,*) 'SUBSOLR INVALID AFTER 2100: INPUT YEAR = ',IYR - call stop_gitm("died in apex.f") - ENDIF -C -C L0 = Mean longitude of Sun at 12 UT on January 1 of IYR: -C L0 = 280.461 + .9856474*(365*(YR-NLEAP) + 366*NLEAP) -C - (ARBITRARY INTEGER)*360. -C = 280.461 + .9856474*(365*(YR-4*NLEAP) + (366+365*3)*NLEAP) -C - (ARBITRARY INTEGER)*360. -C = (280.461 - 360.) + (.9856474*365 - 360.)*(YR-4*NLEAP) -C + (.9856474*(366+365*3) - 4*360.)*NLEAP, -C where ARBITRARY INTEGER = YR+1. This gives: - L0 = -79.549 + (-.238699*(YR-4*NLEAP) + 3.08514E-2*NLEAP) -C -C G0 = Mean anomaly at 12 UT on January 1 of IYR: -C G0 = 357.528 + .9856003*(365*(YR-NLEAP) + 366*NLEAP) -C - (ARBITRARY INTEGER)*360. -C = 357.528 + .9856003*(365*(YR-4*NLEAP) + (366+365*3)*NLEAP) -C - (ARBITRARY INTEGER)*360. -C = (357.528 - 360.) + (.9856003*365 - 360.)*(YR-4*NLEAP) -C + (.9856003*(366+365*3) - 4*360.)*NLEAP, -C where ARBITRARY INTEGER = YR+1. This gives: - G0 = -2.472 + (-.2558905*(YR-4*NLEAP) - 3.79617E-2*NLEAP) -C -C Universal time in seconds: - UT = FLOAT(IHR*3600 + IMN*60) + SEC -C -C Days (including fraction) since 12 UT on January 1 of IYR: - DF = (UT/86400. - 1.5) + IDAY -C -C Addition to Mean longitude of Sun since January 1 of IYR: - LF = .9856474*DF -C -C Addition to Mean anomaly since January 1 of IYR: - GF = .9856003*DF -C -C Mean longitude of Sun: - L = L0 + LF -C -C Mean anomaly: - G = G0 + GF - GRAD = G*D2R -C -C Ecliptic longitude: - LAMBDA = L + 1.915*SIN(GRAD) + .020*SIN(2.*GRAD) - LAMRAD = LAMBDA*D2R - SINLAM = SIN(LAMRAD) -C -C Days (including fraction) since 12 UT on January 1 of 2000: - N = DF + FLOAT(365*YR + NLEAP) -C -C Obliquity of ecliptic: - EPSILON = 23.439 - 4.E-7*N - EPSRAD = EPSILON*D2R -C -C Right ascension: - ALPHA = ATAN2(COS(EPSRAD)*SINLAM,COS(LAMRAD))*R2D -C -C Declination: - DELTA = ASIN(SIN(EPSRAD)*SINLAM)*R2D -C -C Subsolar latitude: - SBSLLAT = DELTA -C -C Equation of time (degrees): - ETDEG = L - ALPHA - NROT = NINT(ETDEG/360.) - ETDEG = ETDEG - FLOAT(360*NROT) -C -C Apparent time (degrees): - APTIME = UT/240. + ETDEG -C Earth rotates one degree every 240 s. -C -C Subsolar longitude: - SBSLLON = 180. - APTIME - NROT = NINT(SBSLLON/360.) - SBSLLON = SBSLLON - FLOAT(360*NROT) -C - RETURN - END diff --git a/src/apexsh.f90 b/src/apexsh.f90 index a802d857..3be8f72a 100644 --- a/src/apexsh.f90 +++ b/src/apexsh.f90 @@ -171,7 +171,7 @@ subroutine loadapxsh(datafilenew, epochnew) implicit none character(128) :: datafilenew, datafilelast = '' - real(4) :: epochnew, epochlast = -999.0 + real :: epochnew, epochlast = -999.0 real(8) :: we0, we1 integer(4) :: iepoch0, iepoch1, iterm, icoord diff --git a/src/aurora.Earth.f90 b/src/aurora.Earth.f90 index 76dc8295..2d0ae278 100644 --- a/src/aurora.Earth.f90 +++ b/src/aurora.Earth.f90 @@ -9,121 +9,37 @@ subroutine aurora(iBlock) use ModInputs use ModConstants use ModUserGITM + use ModErrors + use ModIE use ModMpi use ModIndicesInterfaces + use ModElectrodynamics, only: IEModel_ implicit none integer, intent(in) :: iBlock - real :: alat, hpi, ped, hal, av_kev, eflx_ergs, a, b, maxi - real :: ion_av_kev, ion_eflx_ergs, ion_eflux, ion_avee - real :: Factor, temp_ED, avee, eflux, p, E0, Q0, E0i, Q0i, ai - integer :: i, j, k, n, iAlt, iError, iED, iErr, iEnergy - logical :: IsDone, IsTop, HasSomeAurora, UseMono, UseWave + real :: Q0 + integer :: i, j, n, iError, iErr, iEnergy + logical :: HasSomeAurora + real, dimension(ED_N_Energies) :: & + e_diffuse_ED_flux, i_diffuse_ED_flux, mono_ED_flux, wave_ED_flux, & + ED_Flux ! for temp values - real, dimension(nLons, nLats, nAlts) :: temp, AuroralBulkIonRate, & - IonPrecipitationBulkIonRate, IonPrecipitationHeatingRate + real :: power - real :: fac(nAlts) + real, dimension(nLons, nLats, nAlts) :: temp, AuroralBulkIonRate logical :: IsFirstTime(nBlocksMax) = .true. - real :: f1, f2, f3, f4, f5, power - real :: de1, de2, de3, de4, de5, detotal, h - - real :: LocalVar, HPn, HPs, avepower, ratio - - real :: Fang_Pij(8, 4), Ci(8), Fang_de = 0.035 - data Fang_Pij(1, :)/1.25E+00, 1.45903, -2.42E-01, 5.95E-02/ - data Fang_Pij(2, :)/2.24E+00, -4.23E-07, 1.36E-02, 2.53E-03/ - data Fang_Pij(3, :)/1.42E+00, 1.45E-01, 1.70E-02, 6.40E-04/ - data Fang_Pij(4, :)/0.248775, -1.51E-01, 6.31E-09, 1.24E-03/ - data Fang_Pij(5, :)/-0.465119, -1.05E-01, -8.96E-02, 1.22E-02/ - data Fang_Pij(6, :)/3.86E-01, 1.75E-03, -7.43E-04, 4.61E-04/ - data Fang_Pij(7, :)/-6.45E-01, 8.50E-04, -4.29E-02, -2.99E-03/ - data Fang_Pij(8, :)/9.49E-01, 1.97E-01, -2.51E-03, -2.07E-03/ - - ! This is from: - ! Fang, X., D. Lummerzheim, and C. H. Jackman (2013), - ! Proton impact ionization and a fast calculation method, - ! J. Geophys. Res. Space Physics, 118, 5369–5378, - ! doi:10.1002/jgra.50484: - - real :: Fang_Ion_Pij(12, 4), Ion_Ci(12) - data Fang_Ion_Pij(1, :)/2.55050E+00, 2.69476e-01, -2.58425E-01, 4.43190E-02/ - data Fang_Ion_Pij(2, :)/6.39287E-01, -1.85817e-01, -3.15636E-02, 1.01370E-02/ - data Fang_Ion_Pij(3, :)/1.63996E+00, 2.43580e-01, 4.29873E-02, 3.77803E-02/ - data Fang_Ion_Pij(4, :)/-2.13479E-01, 1.42464e-01, 1.55840E-02, 1.97407E-03/ - data Fang_Ion_Pij(5, :)/-1.65764E-01, 3.39654e-01, -9.87971E-03, 4.02411E-03/ - data Fang_Ion_Pij(6, :)/-3.59358E-02, 2.50330e-02, -3.29365E-02, 5.08057E-03/ - data Fang_Ion_Pij(7, :)/-6.26528E-01, 1.46865e+00, 2.51853E-01, -4.57132E-02/ - data Fang_Ion_Pij(8, :)/1.01384E+00, 5.94301e-02, -3.27839E-02, 3.42688E-03/ - data Fang_Ion_Pij(9, :)/-1.29454E-06, -1.43623e-01, 2.82583E-01, 8.29809E-02/ - data Fang_Ion_Pij(10, :)/-1.18622E-01, 1.79191e-01, 6.49171E-02, -3.99715E-03/ - data Fang_Ion_Pij(11, :)/2.94890E+00, -5.75821e-01, 2.48563E-02, 8.31078E-02/ - data Fang_Ion_Pij(12, :)/-1.89515E-01, 3.53452e-02, 7.77964E-02, -4.06034E-03/ - - real BulkScaleHeight1d(nAlts) - - HPn = 0.0 - HPs = 0.0 - if (IsFirstTime(iBlock)) then - - if (UseFangEnergyDeposition) then - - ! Electrons - allocate(Fang_Ci(ED_N_Energies, 8), stat=iErr) - allocate(Fang_y(ED_N_Energies, nAlts), stat=iErr) - allocate(Fang_f(ED_N_Energies, nAlts), stat=iErr) - - ! Ions - if (UseIonPrecipitation) then - allocate(Fang_Ion_Ci(ED_N_Energies, 12), stat=iErr) - allocate(Fang_Ion_y(ED_N_Energies, nAlts), stat=iErr) - allocate(Fang_Ion_f(ED_N_Energies, nAlts), stat=iErr) - endif - - if (iErr /= 0) then - call stop_gitm("Error allocating Fang arrays in aurora") - endif - - ! Electrons - do iEnergy = 1, ED_N_Energies - do i = 1, 8 - Fang_Ci(iEnergy, i) = 0.0 - do j = 0, 3 - Fang_Ci(iEnergy, i) = Fang_Ci(iEnergy, i) + & - Fang_Pij(i, j + 1)*log(ED_Energies(iEnergy)/1000.0)**j - enddo - enddo - enddo - Fang_Ci = exp(Fang_Ci) - - ! Ions - if (UseIonPrecipitation) then - do iEnergy = 1, ED_N_Energies - do i = 1, 12 - Fang_Ion_Ci(iEnergy, i) = 0.0 - do j = 0, 3 - Fang_Ion_Ci(iEnergy, i) = Fang_Ion_Ci(iEnergy, i) + & - Fang_Ion_Pij(i, j + 1)*log(ED_Energies(iEnergy)/1000.0)**j - enddo - enddo - enddo - Fang_Ion_Ci = exp(Fang_Ion_Ci) - endif - - endif - + call initialize_fang_arrays else if (floor((tSimulation - dT)/dTAurora) == & floor(tSimulation/dTAurora)) return endif AuroralBulkIonRate = 0.0 - AuroralHeatingRate(:, :, :, iBlock) = 0.0 AuroralIonRateS = 0.0 call report("Aurora", 1) @@ -134,437 +50,672 @@ subroutine aurora(iBlock) HemisphericPowerSouth = 0.0 endif - ! Let's scale our hemispheric power so it is roughly the same as what - ! is measured. - if (NormalizeAuroraToHP) then - do i = 1, nLats - do j = 1, nLons + ! Let's scale our hemispheric power so it is roughly the same as what + ! is measured. - eflx_ergs = ElectronEnergyFlux(j, i) !/ (1.0e-7 * 100.0 * 100.0) + call NormalizeDiffuseAuroraToHP - if (eflx_ergs > 0.1) then - eflux = eflx_ergs*6.242e11 ! ergs/cm2/s -> eV/cm2/s + endif - !(eV/cm2/s -> J/m2/s) - power = eflux*Element_Charge*100.0*100.0* & - dLatDist_FB(j, i, nAlts, iBlock)* & - dLonDist_FB(j, i, nAlts, iBlock) + ! Reset the hemispheric power - if (latitude(i, iBlock) < 0.0) then - HemisphericPowerSouth = HemisphericPowerSouth + power - else - HemisphericPowerNorth = HemisphericPowerNorth + power - endif + if (iBlock == 1) then + HemisphericPowerNorth = 0.0 + HemisphericPowerSouth = 0.0 + HemisphericPowerNorth_diffuse = 0.0 + HemisphericPowerSouth_diffuse = 0.0 + HemisphericPowerNorth_wave = 0.0 + HemisphericPowerSouth_wave = 0.0 + HemisphericPowerSouth_mono = 0.0 + HemisphericPowerNorth_mono = 0.0 + HemisphericPowerNorth_ion = 0.0 + HemisphericPowerSouth_ion = 0.0 + endif - endif + if (iProc == 0 .and. AveEFactor /= 1.0 .and. IsFirstTime(iBlock)) then + write(*, *) "Reminder / Warning!!!" + write(*, *) " --> Auroral Experiment, AveEFactor is set" + write(*, *) " --> AveEFactor : ", AveEFactor + write(*, *) " --> This factor is currently applied in get_potential!" + endif + if (iProc == 0 .and. IsKappaAurora .and. IsFirstTime(iBlock)) then + write(*, *) "Reminder / Warning!!!" + write(*, *) " --> Auroral Experiments, AuroraKappa is set" + write(*, *) " --> kappa : ", AuroraKappa + endif + + do i = 1, nLats + do j = 1, nLons + + UserData2d(j, i, 1, 2:nUserOutputs, iBlock) = 0.0 + + e_diffuse_ED_flux = 0.0 + i_diffuse_ED_flux = 0.0 + wave_ED_flux = 0.0 + mono_ED_flux = 0.0 + + HasSomeAurora = .false. + + ! For diffuse auroral models (default) + if (ElectronEnergyFluxDiffuse(j, i) > 0.001 & + .and. ElectronAverageEnergyDiffuse(j, i) > 0.01 & + .and. ElectronAverageEnergyDiffuse(j, i) < MaxAveEAurora & + .and. UseDiffuseAurora & + ) then + call do_diffuse_aurora(ElectronEnergyFluxDiffuse(j, i), & + ElectronAverageEnergyDiffuse(j, i), & + e_diffuse_ED_flux) + HasSomeAurora = .true. + endif + + if (IonEnergyFlux(j, i) > 0.001 & + .and. IonAverageEnergy(j, i) > 0.1 & + .and. IonAverageEnergy(j, i) < MaxAveEAurora & + .and. UseIonAurora & + ) then + call do_diffuse_aurora(IonEnergyFlux(j, i), & + IonAverageEnergy(j, i), & + i_diffuse_ED_flux) + HasSomeAurora = .true. + endif + + ! Monoenergetic aurora + if (UseMonoAurora & + .and. ElectronAverageEnergyMono(j, i) > 0.1 & + .and. ElectronEnergyFluxMono(j, i) > 0.1 & + .and. ElectronAverageEnergyMono(j, i) < MaxAveEAurora & + ) then + if (HasSomeAurora .or. AllowAurWODiffuse) & + call do_mono_aurora(ElectronEnergyFluxMono(j, i), & + ElectronAverageEnergyMono(j, i), & + mono_ED_flux) + endif + + ! Wave (broadband) aurora + if (UseWaveAurora & + .and. ElectronEnergyFluxWave(j, i) > 0.1 & + .and. ElectronAverageEnergyWave(j, i) > 0.1 & + .and. ElectronAverageEnergyWave(j, i) < MaxAveEAurora & + ) then + if (HasSomeAurora .or. AllowAurWODiffuse) & + call do_wave_aurora(ElectronEnergyFluxWave(j, i), & + ElectronAverageEnergyWave(j, i), & + wave_ED_flux) + endif + + do n = 1, ED_N_Energies + ED_EnergyFlux(n) = e_diffuse_ED_flux(n) + wave_ED_flux(n) + mono_ED_flux(n) + ED_Ion_EnergyFlux(n) = i_diffuse_ED_flux(n) ! for consistency enddo - enddo - ! Collect all of the powers by summing them together + if (HasSomeAurora) & + call calc_fang_rates(j, i, iBlock, AuroralBulkIonRate) - LocalVar = HemisphericPowerNorth/1.0e9 - call MPI_REDUCE(LocalVar, HPn, 1, MPI_REAL, MPI_SUM, & - 0, iCommGITM, iError) + enddo + enddo - LocalVar = HemisphericPowerSouth/1.0e9 - call MPI_REDUCE(LocalVar, HPs, 1, MPI_REAL, MPI_SUM, & - 0, iCommGITM, iError) + ! From Rees's book: - ! Average north and south together + temp = 0.92*NDensityS(1:nLons, 1:nLats, 1:nAlts, iN2_, iBlock) + & + 1.00*NDensityS(1:nLons, 1:nLats, 1:nAlts, iO2_, iBlock) + & + 0.56*NDensityS(1:nLons, 1:nLats, 1:nAlts, iO_3P_, iBlock) - avepower = (HPn + HPs)/2.0 + AuroralIonRateS(:, :, :, iO_3P_, iBlock) = & + 0.56*AuroralBulkIonRate* & + NDensityS(1:nLons, 1:nLats, 1:nAlts, iO_3P_, iBlock)/temp + AuroralIonRateS(:, :, :, iO2_, iBlock) = & + 1.00*AuroralBulkIonRate* & + NDensityS(1:nLons, 1:nLats, 1:nAlts, iO2_, iBlock)/temp + AuroralIonRateS(:, :, :, iN2_, iBlock) = & + 0.92*AuroralBulkIonRate* & + NDensityS(1:nLons, 1:nLats, 1:nAlts, iN2_, iBlock)/temp - ! If we are only have one hemisphere or the other, assign to avepower - if (HPs < 0.1*HPn) avepower = HPn - if (HPn < 0.1*HPs) avepower = HPs + IsFirstTime(iBlock) = .false. - call MPI_Bcast(avepower, 1, MPI_Real, 0, iCommGITM, ierror) + HemisphericPowerNorth = HemisphericPowerNorth_diffuse + HemisphericPowerNorth_ion & + + HemisphericPowerNorth_mono + HemisphericPowerNorth_wave + HemisphericPowerSouth = HemisphericPowerSouth_diffuse + HemisphericPowerSouth_ion & + + HemisphericPowerSouth_mono + HemisphericPowerSouth_wave - call get_hpi(CurrentTime, Hpi, iError) + call end_timing("Aurora") - if (avepower == 0) avepower = 1 - ratio = Hpi/avepower +contains + + ! -------------------------- + ! Diffuse Aurora can be represented by kappa or maxwellian + ! - This is for Newell diffuse, or all other auroral models + ! -------------------------- + subroutine do_diffuse_aurora(eflux_ergs, av_kev, diff_ED_Energy_Flux) + real, intent(in) :: av_kev, eflux_ergs + real, intent(inout), dimension(:) :: diff_ED_Energy_Flux + real :: avee, eflux + + avee = av_kev*1000.0 ! keV -> eV + eflux = eflux_ergs*6.242e11 ! ergs/cm2/s -> eV/cm2/s + + ! 100 * 100 is for (eV/cm2/s -> J/m2/s) + power = (eflux)*Element_Charge*100.0*100.0* & + dLatDist_FB(j, i, nAlts, iBlock)* & + dLonDist_FB(j, i, nAlts, iBlock) + + if ((latitude(i, iBlock) < 0.0)) then + HemisphericPowerSouth_diffuse = HemisphericPowerSouth_diffuse + power + else + HemisphericPowerNorth_diffuse = HemisphericPowerNorth_diffuse + power + endif - if (iDebugLevel >= 0) then - if ((iDebugLevel == 0) .and. IsFirstTime(iBlock)) then - write(*, *) '---------------------------------------------------' - write(*, *) 'Using auroral normalizing ratios!!! ' - write(*, *) 'no longer reporting!' - write(*, *) '---------------------------------------------------' - else - if (iDebugLevel >= 1) & - write(*, *) 'auroral normalizing ratio: ', Hpi, avepower, ratio - endif + if (IsKappaAurora) then + call calc_kappa(AuroraKappa, eflux, avee, diff_ED_Energy_Flux) + + else + ! This calls the Maxwellian from Fang et al. [2010] + call calc_maxwellian(eflux, avee, diff_ED_Energy_Flux) endif - do i = 1, nLats - do j = 1, nLons - if (ElectronEnergyFlux(j, i) > 0.1) then - ElectronEnergyFlux(j, i) = ElectronEnergyFlux(j, i)*ratio - endif - enddo + + end subroutine do_diffuse_aurora + + subroutine calc_kappa(kappaVal, ieflux, iavee, kap_ED_EnergyFlux) + ! This is a Kappa Function from Fang et al. [2010]: + + real, intent(in) :: kappaVal + real, intent(in) :: ieflux, iavee + real, intent(inout), dimension(:) :: kap_ED_EnergyFlux + + do n = 1, ED_N_Energies + ED_Flux(n) = ieflux/2/(iavee/2)**3* & ! a=Q0/2/E0**3 + (AuroraKappa - 1)*(AuroraKappa - 2)/ & + (AuroraKappa**2)* & + ed_energies(n)* & + (1 + ed_energies(n)/(AuroraKappa*(iavee/2)))** & + (-AuroraKappa - 1) + + kap_ED_EnergyFlux(n) = & + ED_flux(n)* & + ED_Energies(n)* & + ED_delta_energy(n) enddo - endif + end subroutine calc_kappa + + subroutine calc_maxwellian(eflux, avg_e, max_ed_flux) + ! From (Fang et al., [2010]), a + ! Maxwellian is defined as: + ! DifferentialNumberFlux = Q0/2/E0**3 * E * exp(-E/E0), + ! where: + ! Q0 = Total Energy Flux + ! E0 = Characteristic Energy (0.5*avee) + ! E = mid-point of energy bin + ! + ! Calculate as a * E * exp(-E/E0) + + real, intent(in) :: eflux, avg_e + real, intent(inout), dimension(:) :: max_ed_flux + + real :: a, E0 + + E0 = (0.5*avg_e) + a = (eflux)/2/E0**3 + + do n = 1, ED_N_Energies + max_ed_flux(n) = a*ED_Energies(n)*exp(-ED_Energies(n)/E0) + ! Maxwellian_Energy-Deposition_flux + max_ed_flux(n) = & + max_ed_flux(n)* & + ED_Energies(n)* & + ED_delta_energy(n) + enddo - ! Reset the hemispheric power + end subroutine calc_maxwellian - if (iBlock == 1) then - HemisphericPowerNorth = 0.0 - HemisphericPowerSouth = 0.0 - endif + ! Gaussian distribution (in log coordinates) + ! sig controls the width (std dev) + ! Is not normalized to eflux! Done for mono/wave differently + subroutine calc_gaussian(avee, gaus_ed_flux, sig) + real, intent(in) :: avee, sig + real, intent(inout), dimension(:) :: gaus_ed_flux - if (iProc == 0 .and. AveEFactor /= 1.0) then - write(*, *) "Auroral Experiments!!!!" - write(*, *) "AveEFactor : ", AveEFactor - endif - if (iProc == 0 .and. IsKappaAurora) then - write(*, *) "Auroral Experiments!!!!" - write(*, *) "kappa : ", AuroraKappa - endif + do n = 1, ED_N_Energies + gaus_ed_flux(n) = exp(-(log10(ED_Energies(n)) - log10(avee))**2 & + /(2.0*sig*sig)) + enddo - do i = 1, nLats - do j = 1, nLons + end subroutine calc_gaussian - UserData2d(j, i, 1, 2:nUserOutputs, iBlock) = 0.0 + ! -------------------------- + ! Monoenergetic aurora + ! -------------------------- + subroutine do_mono_aurora(eflux_ergs, av_kev, Mono_ED_EnergyFlux) + + real, intent(in) :: eflux_ergs, av_kev + real, intent(inout), dimension(:) :: Mono_ED_EnergyFlux + real :: avee, eflux, sum_gaus + + avee = av_kev*1000.0 ! keV -> eV + eflux = eflux_ergs*6.242e11 ! ergs/cm2/s -> eV/cm2/s + + power = eflux*Element_Charge*100.0*100.0* & ! (eV/cm2/s -> J/m2/s) + dLatDist_FB(j, i, nAlts, iBlock)* & + dLonDist_FB(j, i, nAlts, iBlock) - eflx_ergs = ElectronEnergyFlux(j, i) - av_kev = ElectronAverageEnergy(j, i)*AveEFactor + if (latitude(i, iBlock) < 0.0) then + HemisphericPowerSouth_mono = HemisphericPowerSouth_mono + power + else + HemisphericPowerNorth_mono = HemisphericPowerNorth_mono + power + endif + + ! Mono is treated as a (skinny) gaussian, width of 0.1 keV + if (avee > 0.0) & + call calc_gaussian(avee, Mono_ED_EnergyFlux, 0.1) + + ! Normalize to E-Flux + sum_gaus = sum(Mono_ED_EnergyFlux) + do n = 1, ED_N_Energies + Mono_ED_EnergyFlux(n) = Mono_ED_EnergyFlux(n)*eflux/sum_gaus + enddo - if (UseIonPrecipitation) then - ion_eflx_ergs = IonEnergyFlux(j, i) - ion_av_kev = IonAverageEnergy(j, i) - else - ion_eflx_ergs = 0.001 - ion_av_kev = 10.0 + end subroutine do_mono_aurora + + ! -------------------------- + ! Wave aurora + ! -------------------------- + subroutine do_wave_aurora(eflux_ergs, av_kev, wave_EDEnergyFlux) + real, intent(in) :: eflux_ergs, av_kev + real, intent(inout), dimension(:) :: wave_EDEnergyFlux + real, dimension(ED_N_Energies) :: tmp_wavflux + real :: avee, eflux, sum_gaus + integer :: nearBin + + avee = av_kev*1000.0 ! keV -> eV + eflux = eflux_ergs*6.242e11 ! ergs/cm2/s -> eV/cm2/s + + power = eflux*Element_Charge*100.0*100.0* & ! (eV/cm2/s -> J/m2/s) + dLatDist_FB(j, i, nAlts, iBlock)* & + dLonDist_FB(j, i, nAlts, iBlock) + + if (latitude(i, iBlock) < 0.0) then + HemisphericPowerSouth_wave = HemisphericPowerSouth_wave + power + else + HemisphericPowerNorth_wave = HemisphericPowerNorth_wave + power + endif + + ! Wave is a gaussian, centered at aveE, width of 0.4 keV + if (avee > 0.1) & + call calc_gaussian(avee, tmp_wavflux, 0.4) + + ! But only in a few bins! + ! Flux only exists in bin holding aveE & 3 bins to either side + do iEnergy = 1, ED_N_Energies - 1 + if (ED_Energies(iEnergy) < avee .and. ED_Energies(iEnergy + 1) > avee) then + ! center bin + wave_EDEnergyFlux(iEnergy) = tmp_wavflux(iEnergy) + do nearBin = 1, 3 ! 3 on either side + if (iEnergy + nearBin < ED_N_Energies) & + wave_EDEnergyFlux(iEnergy + nearBin) = tmp_wavflux(iEnergy + nearBin) + if (iEnergy - nearBin > 0) & + wave_EDEnergyFlux(iEnergy - nearBin) = tmp_wavflux(iEnergy - nearBin) + enddo endif + enddo - ! For diffuse auroral models + ! Then normalize + sum_gaus = sum(wave_EDEnergyFlux) + ! write(*,*) sum_gaus, + do n = 1, ED_N_Energies + wave_EDEnergyFlux(n) = wave_EDEnergyFlux(n)*eflux/sum_gaus + enddo + end subroutine do_wave_aurora - ED_Flux = 0.0 - HasSomeAurora = .false. + subroutine NormalizeDiffuseAuroraToHP - if (eflx_ergs > 0.1) then + real :: hpi_NH, hpi_SH, Hpi + real :: LocalVar, HPn, HPs, avepower, ratio, ratio_NH, ratio_SH - UserData2d(j, i, 1, 2, iBlock) = av_kev - UserData2d(j, i, 1, 3, iBlock) = eflx_ergs + HPn = 0 + HPs = 0 + ! Calculate HP from (diffuse) e- flux + call calculate_HP(HPn, HPs) - HasSomeAurora = .true. - avee = av_kev*1000.0 ! keV -> eV - eflux = eflx_ergs*6.242e11 ! ergs/cm2/s -> eV/cm2/s + ! Collect all of the powers by summing them together + LocalVar = HPn/1.0e9 + call MPI_REDUCE(LocalVar, HPn, 1, MPI_REAL, MPI_SUM, & + 0, iCommGITM, iError) - ion_avee = ion_av_kev*1000.0 ! keV -> eV - ion_eflux = ion_eflx_ergs*6.242e11 ! ergs/cm2/s -> eV/cm2/s + LocalVar = HPs/1.0e9 + call MPI_REDUCE(LocalVar, HPs, 1, MPI_REAL, MPI_SUM, & + 0, iCommGITM, iError) - ! 100 * 100 is for (eV/cm2/s -> J/m2/s) - power = (eflux + ion_eflux)*Element_Charge*100.0*100.0* & - dLatDist_FB(j, i, nAlts, iBlock)* & - dLonDist_FB(j, i, nAlts, iBlock) + ! Average north and south together + avepower = (HPn + HPs)/2.0 - if (latitude(i, iBlock) < 0.0) then - HemisphericPowerSouth = HemisphericPowerSouth + power - else - HemisphericPowerNorth = HemisphericPowerNorth + power - endif + if (avepower == 0) then + call set_error("AvePower is zero!") + avepower = 1.0 + endif - ! Looking at other papers (Fang et al., [2010]), a - ! Maxwellian is defined as: - ! DifferentialNumberFlux = Q0/2/E0**3 * E * exp(-E/E0), - ! where: - ! Q0 = Total Energy Flux - ! E0 = Characteristic Energy (0.5*avee) - ! E = mid-point of energy bin - ! - - Q0 = eflux - E0 = avee/2 - a = Q0/2/E0**3 - - Q0i = ion_eflux - E0i = ion_avee/2 - ai = Q0i/2/E0i**3 - - do n = 1, ED_N_Energies - - if (IsKappaAurora) then - ! This is a Kappa Function from Fang et al. [2010]: - ED_Flux(n) = a*(AuroraKappa - 1)*(AuroraKappa - 2)/ & - (AuroraKappa**2)* & - ed_energies(n)* & - (1 + ed_energies(n)/(AuroraKappa*E0))** & - (-AuroraKappa - 1) - else - ! This is a Maxwellian from Fang et al. [2010]: - ED_flux(n) = a*ed_energies(n)*exp(-ed_energies(n)/E0) - ED_ion_flux(n) = ai*ed_energies(n)*exp(-ed_energies(n)/E0i) - endif + ! If we are only have one hemisphere or the other, assign to avepower + if (HPs < 0.1*HPn) then + avepower = HPn + HPs = HPn + endif + if (HPn < 0.1*HPs) then + avepower = HPs + HPn = HPs + endif - ED_EnergyFlux(n) = & - ED_flux(n)* & - ED_Energies(n)* & - ED_delta_energy(n) - ED_Ion_EnergyFlux(n) = & - ED_Ion_flux(n)* & - ED_Energies(n)* & - ED_delta_energy(n) + call MPI_Bcast(avepower, 1, MPI_Real, 0, iCommGITM, ierror) + call MPI_Bcast(Hps, 1, MPI_Real, 0, iCommGITM, ierror) + call MPI_Bcast(HPn, 1, MPI_Real, 0, iCommGITM, ierror) - enddo + if (DoSeparateHPI) then + call get_hpi_n(CurrentTime, hpi_NH, iError) + call get_hpi_s(CurrentTime, hpi_SH, iError) - endif + if (Hps == 0) call set_error("HPs is zero!") + if (Hpn == 0) call set_error("HPn is zero!") - UseMono = .false. - if (UseNewellAurora .and. UseNewellMono) UseMono = .true. - if (UseOvationSME .and. UseOvationSMEMono) UseMono = .true. + ratio_NH = Hpi_NH/HPn + ratio_SH = Hpi_SH/HPs - if (UseMono .and. & - ElectronNumberFluxMono(j, i) > 1.0e4 .and. & - ElectronEnergyFluxMono(j, i) > 0.1) then + else - av_kev = ElectronEnergyFluxMono(j, i)/ & - ElectronNumberFluxMono(j, i)*6.242e11 ! eV + call get_hpi(CurrentTime, Hpi, iError) + ratio_NH = Hpi/HPn + ratio_SH = Hpi/HPs - power = ElectronNumberFluxMono(j, i)* & - Element_Charge*100.0*100.0* & ! (eV/cm2/s -> J/m2/s) - dLatDist_FB(j, i, nAlts, iBlock)* & - dLonDist_FB(j, i, nAlts, iBlock) + endif - if (latitude(i, iBlock) < 0.0) then - HemisphericPowerSouth = HemisphericPowerSouth + power + if (iDebugLevel >= 0) then + if ((iDebugLevel == 0) .and. IsFirstTime(iBlock) .and. .not. doSeparateHPI) then + write(*, *) '---------------------------------------------------' + write(*, *) 'Using auroral normalizing ratios!!! ' + write(*, *) ' -> forcing the HP to be the same in both hemispheres!' + write(*, *) ' -> no longer reporting!' + write(*, *) '---------------------------------------------------' + elseif ((iDebugLevel == 0) .and. IsFirstTime(iBlock) .and. doSeparateHPI) then + write(*, *) '---------------------------------------------------' + write(*, *) 'Using HPI from each hemisphere to normalize aurora!!' + write(*, *) ' -> Normalizing to mean, then calculating ratios seperately' + write(*, *) ' -> no longer reporting!' + write(*, *) '---------------------------------------------------' + endif + if (iDebugLevel >= 1) then + if (doSeparateHPI) then + write(*, *) 'Auroral normalizing ratios: ' + write(*, *) 'HP(N) HP(S) HP(N-model) HP(S-model) ratio_n ratio_s' + write(*, *) Hpi_NH, Hpi_SH, HPn, HPs, ratio_NH, ratio_sh else - HemisphericPowerNorth = HemisphericPowerNorth + power + write(*, *) 'Auroral normalizing ratio (hp, hp model averaged, ratios (S/N)): ', & + Hpi, avepower, ratio_SH, ratio_NH endif + endif - UserData2d(j, i, 1, 4, iBlock) = av_kev/1000.0 - UserData2d(j, i, 1, 5, iBlock) = ElectronEnergyFluxMono(j, i) - - ! Mono-Energetic goes into one bin only! - do n = 2, ED_N_Energies - 1 - if (av_kev < ED_energies(n - 1) .and. av_kev >= ED_energies(n)) then - ED_flux(n) = ED_Flux(n) + & - ElectronNumberFluxMono(j, i)/ & - (ED_Energies(n - 1) - ED_Energies(n)) - ED_EnergyFlux(n) = & - ED_flux(n)* & - ED_Energies(n)* & - ED_delta_energy(n) - HasSomeAurora = .true. + endif + do i = 1, nLats + do j = 1, nLons + if (ElectronEnergyFluxDiffuse(j, i) > 0.001) then + if (latitude(i, iBlock) < 0.0) then + ElectronEnergyFluxDiffuse(j, i) = ElectronEnergyFluxDiffuse(j, i)*ratio_sh + else + ElectronEnergyFluxDiffuse(j, i) = ElectronEnergyFluxDiffuse(j, i)*ratio_NH endif - enddo + endif + enddo + enddo + end subroutine NormalizeDiffuseAuroraToHP - endif + subroutine calculate_HP(HPn, HPs) + ! Calculate hemispheric power in n/s (NPn, HPs) + ! Scaling is done in NormalizeDiffuseAuroraToHP - UseWave = .false. - if (UseNewellAurora .and. UseNewellWave) UseWave = .true. - if (UseOvationSME .and. UseOvationSMEWave) UseWave = .true. + real, intent(out) :: HPn, HPs + real :: eflx_ergs, eflux - if (UseWave .and. & - ElectronNumberFluxWave(j, i) > 1.0e4 .and. & - ElectronEnergyFluxWave(j, i) > 0.1) then + HPn = 0.0 + HPs = 0.0 - av_kev = ElectronEnergyFluxWave(j, i)/ & - ElectronNumberFluxWave(j, i)*6.242e11 ! eV + do i = 1, nLats + do j = 1, nLons - power = ElectronNumberFluxWave(j, i)* & - Element_Charge*100.0*100.0* & ! (eV/cm2/s -> J/m2/s) - dLatDist_FB(j, i, nAlts, iBlock)*dLonDist_FB(j, i, nAlts, iBlock) + eflx_ergs = ElectronEnergyFluxDiffuse(j, i) !/ (1.0e-7 * 100.0 * 100.0) - if (latitude(i, iBlock) < 0.0) then - HemisphericPowerSouth = HemisphericPowerSouth + power - else - HemisphericPowerNorth = HemisphericPowerNorth + power - endif + if (eflx_ergs > 0.001) then + eflux = eflx_ergs*6.242e11 ! ergs/cm2/s -> eV/cm2/s - UserData2d(j, i, 1, 6, iBlock) = av_kev/1000.0 - UserData2d(j, i, 1, 7, iBlock) = ElectronEnergyFluxWave(j, i) + !(eV/cm2/s -> J/m2/s) + power = eflux*Element_Charge*100.0*100.0* & + dLatDist_FB(j, i, nAlts, iBlock)* & + dLonDist_FB(j, i, nAlts, iBlock) - ! Waves goes into five bins only! - k = 0 - do n = 3, ED_N_Energies - 3 - if (av_kev < ED_energies(n - 1) .and. av_kev >= ED_energies(n)) then - k = n + if (latitude(i, iBlock) < 0.0) then + HPs = HPs + power + else + HPn = HPn + power endif - enddo - if (k > 3) then - f1 = 1.0 - f2 = 1.2 - f3 = 1.3 - f4 = f2 - f5 = f1 - de1 = ED_energies(k - 3) - ED_energies(k - 2) - de2 = ED_energies(k - 2) - ED_energies(k - 1) - de3 = ED_energies(k - 1) - ED_energies(k) - de4 = ED_energies(k) - ED_energies(k + 1) - de5 = ED_energies(k + 1) - ED_energies(k + 2) -! detotal = (de1+de2+de3+de4+de5) * (f1+f2+f3+f4+f5) / 5 - detotal = (f1 + f2 + f3 + f4 + f5) - ED_flux(k - 2) = ED_Flux(k - 2) + f1*ElectronNumberFluxWave(j, i)/detotal/de1 - ED_flux(k - 1) = ED_Flux(k - 1) + f2*ElectronNumberFluxWave(j, i)/detotal/de2 - ED_flux(k) = ED_Flux(k) + f3*ElectronNumberFluxWave(j, i)/detotal/de3 - ED_flux(k + 1) = ED_Flux(k + 1) + f4*ElectronNumberFluxWave(j, i)/detotal/de4 - ED_flux(k + 2) = ED_Flux(k + 2) + f5*ElectronNumberFluxWave(j, i)/detotal/de5 -! ED_flux(k-2) = ED_Flux(k-2) + f1*ElectronNumberFluxWave(j, i) / detotal -! ED_flux(k-1) = ED_Flux(k-1) + f2*ElectronNumberFluxWave(j, i) / detotal -! ED_flux(k ) = ED_Flux(k ) + f3*ElectronNumberFluxWave(j, i) / detotal -! ED_flux(k+1) = ED_Flux(k+1) + f4*ElectronNumberFluxWave(j, i) / detotal -! ED_flux(k+2) = ED_Flux(k+2) + f5*ElectronNumberFluxWave(j, i) / detotal - do n = k - 2, n + 2 - ED_EnergyFlux(n) = ED_flux(n)*ED_Energies(n)*ED_delta_energy(n) - enddo - HasSomeAurora = .true. + endif - endif + enddo + enddo - if (HasSomeAurora) then + end subroutine calculate_HP - if (UseFangEnergyDeposition) then +end subroutine aurora - BulkScaleHeight1d = & - Temperature(j, i, 1:nAlts, iBlock) & - *TempUnit(j, i, 1:nAlts)*Boltzmanns_Constant & - /(-Gravity_GB(j, i, 1:nAlts, iBlock)* & - MeanMajorMass(j, i, 1:nAlts))*100.0 ! Convert to cm +! -------------------------------- +! Initialize the variables necessary to run Fang ED code +! -------------------------------- - do iEnergy = 1, ED_N_Energies +subroutine initialize_fang_arrays +! Allocate variables necessary for Fang Energy Deposition - ! /10.0 in this statement is for kg/m2 to g/cm2 - ! /1000.0 is conversion from eV to keV - ! Fang doesn't include the dip angle, be we do. - Fang_y(iEnergy, :) = 2.0/(ED_Energies(iEnergy)/1000.0)* & - (ColumnIntegralRho(j, i, 1:nAlts)/10.0/6e-6)**0.7 - !sinDipAngle(j,i,1:nAlts,iBlock) / 6e-6) ** 0.7 + use ModInputs + use ModSources - Ci = Fang_Ci(iEnergy, :) - Fang_f(iEnergy, :) = & - Ci(1)*Fang_y(iEnergy, :)**Ci(2)* & - exp(-Ci(3)*Fang_y(iEnergy, :)**Ci(4)) + & - Ci(5)*Fang_y(iEnergy, :)**Ci(6)* & - exp(-Ci(7)*Fang_y(iEnergy, :)**Ci(8)) + allocate(Fang_Ci(ED_N_Energies, 8), stat=iErr) + allocate(Fang_y(ED_N_Energies, nAlts), stat=iErr) + allocate(Fang_f(ED_N_Energies, nAlts), stat=iErr) + allocate(Fang_Pij(8, 4), stat=iErr) + + ! Ions + if (UseIonAurora) then + allocate(Fang_Ion_Ci(ED_N_Energies, 12), stat=iErr) + allocate(Fang_Ion_y(ED_N_Energies, nAlts), stat=iErr) + allocate(Fang_Ion_f(ED_N_Energies, nAlts), stat=iErr) + allocate(Fang_Ion_Pij(12, 4), stat=iErr) + endif - ! Energy flux is in eV/cm2/s and Fang needs keV/cm2/s: - fac = ED_energyflux(iEnergy)/1000.0/ & - Fang_de/ & - BulkScaleHeight1d + if (iErr /= 0) then + call stop_gitm("Error allocating Fang arrays in aurora") + endif - ! I think that the 1e6 is cm3 to m3 - AuroralBulkIonRate(j, i, 1:nAlts) = & - AuroralBulkIonRate(j, i, 1:nAlts) + 1e6*Fang_f(iEnergy, :)*fac + !electrons + Fang_Pij(1, :) = (/1.25E+00, 1.45903, -2.42E-01, 5.95E-02/) + Fang_Pij(2, :) = (/2.24E+00, -4.23E-07, 1.36E-02, 2.53E-03/) + Fang_Pij(3, :) = (/1.42E+00, 1.45E-01, 1.70E-02, 6.40E-04/) + Fang_Pij(4, :) = (/0.248775, -1.51E-01, 6.31E-09, 1.24E-03/) + Fang_Pij(5, :) = (/-0.465119, -1.05E-01, -8.96E-02, 1.22E-02/) + Fang_Pij(6, :) = (/3.86E-01, 1.75E-03, -7.43E-04, 4.61E-04/) + Fang_Pij(7, :) = (/-6.45E-01, 8.50E-04, -4.29E-02, -2.99E-03/) + Fang_Pij(8, :) = (/9.49E-01, 1.97E-01, -2.51E-03, -2.07E-03/) - if (UseIonPrecipitation) then + ! This is from: + ! Fang, X., D. Lummerzheim, and C. H. Jackman (2013), + ! Proton impact ionization and a fast calculation method, + ! J. Geophys. Res. Space Physics, 118, 5369–5378, + ! doi:10.1002/jgra.50484: - ! /10.0 in this statement is for kg/m2 to g/cm2 - ! /1000.0 is conversion from eV to keV - Fang_Ion_y(iEnergy, :) = 7.5/(ED_Energies(iEnergy)/1000.0)* & - (ColumnIntegralRho(j, i, 1:nAlts)/10.0/1e-4)**0.9 + !ions + if (UseIonAurora) then + Fang_Ion_Pij(1, :) = (/2.55050E+00, 2.69476e-01, -2.58425E-01, 4.43190E-02/) + Fang_Ion_Pij(2, :) = (/6.39287E-01, -1.85817e-01, -3.15636E-02, 1.01370E-02/) + Fang_Ion_Pij(3, :) = (/1.63996E+00, 2.43580e-01, 4.29873E-02, 3.77803E-02/) + Fang_Ion_Pij(4, :) = (/-2.13479E-01, 1.42464e-01, 1.55840E-02, 1.97407E-03/) + Fang_Ion_Pij(5, :) = (/-1.65764E-01, 3.39654e-01, -9.87971E-03, 4.02411E-03/) + Fang_Ion_Pij(6, :) = (/-3.59358E-02, 2.50330e-02, -3.29365E-02, 5.08057E-03/) + Fang_Ion_Pij(7, :) = (/-6.26528E-01, 1.46865e+00, 2.51853E-01, -4.57132E-02/) + Fang_Ion_Pij(8, :) = (/1.01384E+00, 5.94301e-02, -3.27839E-02, 3.42688E-03/) + Fang_Ion_Pij(9, :) = (/-1.29454E-06, -1.43623e-01, 2.82583E-01, 8.29809E-02/) + Fang_Ion_Pij(10, :) = (/-1.18622E-01, 1.79191e-01, 6.49171E-02, -3.99715E-03/) + Fang_Ion_Pij(11, :) = (/2.94890E+00, -5.75821e-01, 2.48563E-02, 8.31078E-02/) + Fang_Ion_Pij(12, :) = (/-1.89515E-01, 3.53452e-02, 7.77964E-02, -4.06034E-03/) + endif - Ion_Ci = Fang_Ion_Ci(iEnergy, :) + call init_energy_deposition() - Fang_Ion_f(iEnergy, :) = & - Ion_Ci(1)*Fang_Ion_y(iEnergy, :)**Ion_Ci(2)* & - exp(-Ion_Ci(3)*Fang_Ion_y(iEnergy, :)**Ion_Ci(4)) + & - Ion_Ci(5)*Fang_Ion_y(iEnergy, :)**Ion_Ci(6)* & - exp(-Ion_Ci(7)*Fang_Ion_y(iEnergy, :)**Ion_Ci(8)) + & - Ion_Ci(9)*Fang_Ion_y(iEnergy, :)**Ion_Ci(10)* & - exp(-Ion_Ci(11)*Fang_Ion_y(iEnergy, :)**Ion_Ci(12)) + ! Electrons + do iEnergy = 1, ED_N_Energies + do i = 1, 8 + Fang_Ci(iEnergy, i) = 0.0 + do j = 0, 3 + Fang_Ci(iEnergy, i) = Fang_Ci(iEnergy, i) + & + Fang_Pij(i, j + 1)*log(ED_Energies(iEnergy)/1000.0)**j + enddo + enddo + enddo + Fang_Ci = exp(Fang_Ci) + + ! Ions + if (UseIonAurora) then + do iEnergy = 1, ED_N_Energies + do i = 1, 12 + Fang_Ion_Ci(iEnergy, i) = 0.0 + do j = 0, 3 + Fang_Ion_Ci(iEnergy, i) = Fang_Ion_Ci(iEnergy, i) + & + Fang_Ion_Pij(i, j + 1)*log(ED_Energies(iEnergy)/1000.0)**j + enddo + enddo + enddo + Fang_Ion_Ci = exp(Fang_Ion_Ci) + endif - fac = ED_ion_energyflux(iEnergy)/1000.0/ & - Fang_de/ & - BulkScaleHeight1d +end subroutine initialize_fang_arrays - AuroralBulkIonRate(j, i, 1:nAlts) = & - AuroralBulkIonRate(j, i, 1:nAlts) + 1e6*Fang_Ion_f(iEnergy, :)*fac +! ----------------------------------------- +! Calculate energy deposition rates +! ----------------------------------------- - endif +subroutine calc_fang_rates(j, i, iBlock, AuroralBulkIonRate) + ! Given (j,i), on an iBlock, calculate AuroralBulkIonRate - enddo + use ModInputs + use ModSources + use ModGITM - AuroralHeatingRate(j, i, 1:nAlts, iBlock) = 0.0 + integer, intent(in) :: i, j, iBlock + real, dimension(nLons, nLats, nAlts), intent(inout) :: AuroralBulkIonRate + real :: BulkScaleHeight1d(nAlts) + real :: fac(nAlts) + real :: Ci(8) ! e- + real :: Ion_Ci(12) ! ions + + real :: Fang_de = 0.035 + + BulkScaleHeight1d = & + Temperature(j, i, 1:nAlts, iBlock) & + *TempUnit(j, i, 1:nAlts)*Boltzmanns_Constant & + /(-Gravity_GB(j, i, 1:nAlts, iBlock)* & + MeanMajorMass(j, i, 1:nAlts))*100.0 ! Convert to cm + + do iEnergy = 1, ED_N_Energies + + ! /10.0 in this statement is for kg/m2 to g/cm2 + ! /1000.0 is conversion from eV to keV + ! Fang doesn't include the dip angle, be we do. + Fang_y(iEnergy, :) = 2.0/(ED_Energies(iEnergy)/1000.0)* & + (ColumnIntegralRho(j, i, 1:nAlts)/10.0/6e-6)**0.7 + !sinDipAngle(j,i,1:nAlts,iBlock) / 6e-6) ** 0.7 + + Ci = Fang_Ci(iEnergy, :) + Fang_f(iEnergy, :) = & + Ci(1)*Fang_y(iEnergy, :)**Ci(2)* & + exp(-Ci(3)*Fang_y(iEnergy, :)**Ci(4)) + & + Ci(5)*Fang_y(iEnergy, :)**Ci(6)* & + exp(-Ci(7)*Fang_y(iEnergy, :)**Ci(8)) + + ! Energy flux is in eV/cm2/s and Fang needs keV/cm2/s: + fac = ED_energyflux(iEnergy)/1000.0/ & + Fang_de/ & + BulkScaleHeight1d + + ! I think that the 1e6 is cm3 to m3 + AuroralBulkIonRate(j, i, 1:nAlts) = & + AuroralBulkIonRate(j, i, 1:nAlts) + 1e6*Fang_f(iEnergy, :)*fac + + if (UseIonAurora) then + + ! /10.0 in this statement is for kg/m2 to g/cm2 + ! /1000.0 is conversion from eV to keV + Fang_Ion_y(iEnergy, :) = 7.5/(ED_Energies(iEnergy)/1000.0)* & + (ColumnIntegralRho(j, i, 1:nAlts)/10.0/1e-4)**0.9 + + Ion_Ci = Fang_Ion_Ci(iEnergy, :) + + Fang_Ion_f(iEnergy, :) = & + Ion_Ci(1)*Fang_Ion_y(iEnergy, :)**Ion_Ci(2)* & + exp(-Ion_Ci(3)*Fang_Ion_y(iEnergy, :)**Ion_Ci(4)) + & + Ion_Ci(5)*Fang_Ion_y(iEnergy, :)**Ion_Ci(6)* & + exp(-Ion_Ci(7)*Fang_Ion_y(iEnergy, :)**Ion_Ci(8)) + & + Ion_Ci(9)*Fang_Ion_y(iEnergy, :)**Ion_Ci(10)* & + exp(-Ion_Ci(11)*Fang_Ion_y(iEnergy, :)**Ion_Ci(12)) + + fac = ED_Ion_EnergyFlux(iEnergy)/1000.0/ & + Fang_de/ & + BulkScaleHeight1d + + AuroralBulkIonRate(j, i, 1:nAlts) = & + AuroralBulkIonRate(j, i, 1:nAlts) + 1e6*Fang_Ion_f(iEnergy, :)*fac - else + endif - call R_ELEC_EDEP(ED_Flux, 15, ED_Energies, 3, ED_Ion, 7) - call R_ELEC_EDEP(ED_Flux, 15, ED_Energies, 3, ED_Heating, 11) - - iED = 1 - - factor = 1.0 - - do k = 1, nAlts - - p = alog(Pressure(j, i, k, iBlock)*factor) - - IsDone = .false. - IsTop = .false. - do while (.not. IsDone) - if (ED_grid(iED) >= p .and. ED_grid(iED + 1) <= p) then - IsDone = .true. - ED_Interpolation_Index(k) = iED - ED_Interpolation_Weight(k) = (ED_grid(iED) - p)/ & - (ED_grid(iED) - ED_grid(iED + 1)) - else - if (iED == ED_N_Alts - 1) then - IsDone = .true. - IsTop = .true. - else - iED = iED + 1 - endif - endif - enddo - - if (.not. IsTop) then - n = ED_Interpolation_Index(k) - AuroralBulkIonRate(j, i, k) = ED_Ion(n) - & - (ED_Ion(n) - ED_Ion(n + 1))*ED_Interpolation_Weight(k) - AuroralHeatingRate(j, i, k, iBlock) = ED_Heating(n) - & - (ED_Heating(n) - ED_Heating(n + 1))*ED_Interpolation_Weight(k) - else - - ! Decrease after top of model - AuroralBulkIonRate(j, i, k) = ED_Ion(ED_N_Alts)* & - factor*Pressure(j, i, k, iBlock)/exp(ED_grid(ED_N_Alts)) - AuroralHeatingRate(j, i, k, iBlock) = ED_Heating(ED_N_Alts)* & - factor*Pressure(j, i, k, iBlock)/exp(ED_grid(ED_N_Alts)) - - endif - - enddo + enddo - endif +end subroutine calc_fang_rates - endif +! ================================== ! +! create the energy deposition stuff ! +! ================================== ! - enddo - enddo +subroutine init_energy_deposition() + use ModSources - ! From Rees's book: + ! temporary + real, dimension(ED_N_Energies):: energy_edges + real ed_max_energy, ed_min_energy, de, logmin - temp = 0.92*NDensityS(1:nLons, 1:nLats, 1:nAlts, iN2_, iBlock) + & - 1.00*NDensityS(1:nLons, 1:nLats, 1:nAlts, iO2_, iBlock) + & - 0.56*NDensityS(1:nLons, 1:nLats, 1:nAlts, iO_3P_, iBlock) + allocate(ED_Energies(ED_N_Energies), stat=ierr) + allocate(ED_EnergyFlux(ED_N_Energies), stat=ierr) + allocate(ED_Ion_EnergyFlux(ED_N_Energies), stat=ierr) + allocate(ED_delta_energy(ED_N_Energies), stat=ierr) - AuroralIonRateS(:, :, :, iO_3P_, iBlock) = & - 0.56*AuroralBulkIonRate* & - NDensityS(1:nLons, 1:nLats, 1:nAlts, iO_3P_, iBlock)/temp - AuroralIonRateS(:, :, :, iO2_, iBlock) = & - 1.00*AuroralBulkIonRate* & - NDensityS(1:nLons, 1:nLats, 1:nAlts, iO2_, iBlock)/temp - AuroralIonRateS(:, :, :, iN2_, iBlock) = & - 0.92*AuroralBulkIonRate* & - NDensityS(1:nLons, 1:nLats, 1:nAlts, iN2_, iBlock)/temp + ! min/max energy bins + ED_Max_Energy = 5.0e5 + ED_Min_Energy = 10.0 - if (UseAuroralHeating) then - AuroralHeating = AuroralHeatingRate(:, :, :, iBlock)/ & - TempUnit(1:nLons, 1:nLats, 1:nAlts)/cp(:, :, 1:nAlts, iBlock)/ & - rho(1:nLons, 1:nLats, 1:nAlts, iBlock) - else - AuroralHeating = 0.0 - endif + ! log space the energy bins + de = (log10(ED_Max_Energy) - log10(ED_Min_Energy))/(ED_N_Energies - 1) + logmin = log10(ED_Min_Energy) - IsFirstTime(iBlock) = .false. + do i = 1, ED_N_Energies + ED_Energies(i) = 10.0**(logmin + (i - 1)*de) + enddo - call end_timing("Aurora") + ! Calculate delta btwn bins + ED_delta_energy(1) = ED_Energies(1) - ED_Energies(2) + energy_edges(1) = ED_Energies(1) + ED_delta_energy(1)/2.0 + iEnergy = 1 + do iEnergy = 2, ED_N_Energies + energy_edges(iEnergy) = & + (ED_Energies(iEnergy - 1) + ED_Energies(iEnergy))/2 + ED_delta_energy(iEnergy - 1) = & + abs(energy_edges(iEnergy - 1) - energy_edges(iEnergy)) + enddo -end subroutine aurora + iEnergy = ED_N_Energies + ED_delta_energy(ED_N_Energies) = & + ED_Energies(ED_N_Energies) - ED_Energies(ED_N_Energies - 1) + +end subroutine init_energy_deposition diff --git a/src/aurora.Jupiter.f90 b/src/aurora.Jupiter.f90 index b652f031..abbcae12 100644 --- a/src/aurora.Jupiter.f90 +++ b/src/aurora.Jupiter.f90 @@ -18,7 +18,6 @@ subroutine aurora(iBlock) ! No aurora by default - AuroralHeatingRate(:, :, :, iBlock) = 0.0 AuroralIonRateS(:, :, :, :, iBlock) = 0.0 call end_timing("Aurora") diff --git a/src/aurora.LV-426.f90 b/src/aurora.LV-426.f90 index 201e2ac8..bd73e826 100644 --- a/src/aurora.LV-426.f90 +++ b/src/aurora.LV-426.f90 @@ -18,7 +18,6 @@ subroutine aurora(iBlock) floor(tSimulation/dTAurora)) return AuroralIonRateS = 0.0 - AuroralHeatingRate(:, :, :, iBlock) = 0.0 return diff --git a/src/aurora.Mars.f90 b/src/aurora.Mars.f90 index 0f492cd0..e7325332 100644 --- a/src/aurora.Mars.f90 +++ b/src/aurora.Mars.f90 @@ -15,7 +15,6 @@ subroutine aurora(iBlock) ! No aurora by default - AuroralHeatingRate(:, :, :, iBlock) = 0.0 AuroralIonRateS(:, :, :, :, iBlock) = 0.0 call end_timing("Aurora") diff --git a/src/aurora.Venus.f90 b/src/aurora.Venus.f90 index 0f492cd0..e7325332 100644 --- a/src/aurora.Venus.f90 +++ b/src/aurora.Venus.f90 @@ -15,7 +15,6 @@ subroutine aurora(iBlock) ! No aurora by default - AuroralHeatingRate(:, :, :, iBlock) = 0.0 AuroralIonRateS(:, :, :, :, iBlock) = 0.0 call end_timing("Aurora") diff --git a/src/calc_chemistry.Earth.f90 b/src/calc_chemistry.Earth.f90 index 850ebe06..a29d91e0 100644 --- a/src/calc_chemistry.Earth.f90 +++ b/src/calc_chemistry.Earth.f90 @@ -204,6 +204,8 @@ subroutine calc_chemistry(iBlock) + Temperature(1:nLons, 1:nLats, 1:nAlts, iBlock)* & TempUnit(1:nLons, 1:nLats, 1:nAlts))/2.0 + tr33d = tr3d/300.0 + tn3d = Temperature(1:nLons, 1:nLats, 1:nAlts, iBlock)* & TempUnit(1:nLons, 1:nLats, 1:nAlts) diff --git a/src/calc_conductance.f90 b/src/calc_conductance.f90 deleted file mode 100644 index 1ef1ff47..00000000 --- a/src/calc_conductance.f90 +++ /dev/null @@ -1,12 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -subroutine calc_conductance(iBlock) - - use ModElectrodynamics - - implicit none - - integer, intent(in) :: iBlock - -end subroutine calc_conductance diff --git a/src/calc_conduction.f90 b/src/calc_conduction.f90 index 9c9e72b2..c4c2f5c5 100644 --- a/src/calc_conduction.f90 +++ b/src/calc_conduction.f90 @@ -38,7 +38,7 @@ subroutine calc_thermal_conduction(iBlock) real :: DtCSLocal ! Temperature variables - real :: TemperatureStage1(1:nLons, 1:nLats, -1:nAlts + 2) + real :: TemperatureStage1(1:nLons, 1:nLats, -1:nAlts + 2) = 0.0 real :: TemperatureH(1:nLons, 1:nLats, -1:nAlts + 2) real :: TemperatureF(1:nLons, 1:nLats, -1:nAlts + 2) diff --git a/src/calc_electrodynamics.f90 b/src/calc_electrodynamics.f90 index e39b0f4f..30b98bf3 100644 --- a/src/calc_electrodynamics.f90 +++ b/src/calc_electrodynamics.f90 @@ -153,6 +153,7 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) SigmaPedersenMC = 0.0 SigmaLLMC = 0.0 SigmaPPMC = 0.0 + AverageMC = 0.0 SigmaHHMC = 0.0 SigmaCCMC = 0.0 SigmaLPMC = 0.0 @@ -327,15 +328,15 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) !/ DivJuAltMC = -1.0e32 - SigmaHallMC = 0.0 !-1.0e32 - SigmaPedersenMC = 0.0 !-1.0e32 + SigmaHallMC = 0.0 + SigmaPedersenMC = 0.0 LengthMC = -1.0e32 KDlmMC = -1.0e32 KDpmMC = -1.0e32 KlmMC = -1.0e32 KpmMC = -1.0e32 - SigmaLLMC = 0.0 !-1.0e32 - SigmaPPMC = 0.0 !-1.0e32 + SigmaLLMC = 0.0 + SigmaPPMC = 0.0 SigmaLPMC = -1.0e32 SigmaPLMC = -1.0e32 DivJuAltMC = -1.0e32 @@ -348,12 +349,6 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) do iBlock = 1, nBlocks if (Debug) write(*, *) 'DBG: starting block ', iBlock, ' of ', nBlocks - call calc_physics(iBlock) - call calc_rates(iBlock) - call calc_collisions(iBlock) - call get_potential(iBlock) - call calc_efield(iBlock) - e_density = IDensityS(:, :, :, ie_, iBlock) ! Should probably improve these collision frequencies: @@ -1050,12 +1045,12 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) iOff = 8.0/MagLatRes iEnd = iOff -! do iLat = iOff, nMagLats/4 -! if ( SigmaHHMC(iLonNoon, iEquator + iLat) + & -! SigmaHHMC(iLonNoon, iEquator - iLat) > & -! SigmaHHMC(iLonNoon, iEquator + iEnd) + & -! SigmaHHMC(iLonNoon, iEquator - iEnd)) iEnd = iLat -! enddo + ! do iLat = iOff, nMagLats/4 + ! if ( SigmaHHMC(iLonNoon, iEquator + iLat) + & + ! SigmaHHMC(iLonNoon, iEquator - iLat) > & + ! SigmaHHMC(iLonNoon, iEquator + iEnd) + & + ! SigmaHHMC(iLonNoon, iEquator - iEnd)) iEnd = iLat + ! enddo iStart = iEquator - iEnd iEnd = iEquator + iEnd @@ -1077,12 +1072,12 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) iOff = 8.0/MagLatRes iEnd = iOff -! do iLat = iOff, nMagLats/4 -! if ( SigmaLLMC(iLonNoon, iEquator + iLat) + & -! SigmaLLMC(iLonNoon, iEquator - iLat) > & -! SigmaLLMC(iLonNoon, iEquator + iEnd) + & -! SigmaLLMC(iLonNoon, iEquator - iEnd)) iEnd = iLat -! enddo + ! do iLat = iOff, nMagLats/4 + ! if ( SigmaLLMC(iLonNoon, iEquator + iLat) + & + ! SigmaLLMC(iLonNoon, iEquator - iLat) > & + ! SigmaLLMC(iLonNoon, iEquator + iEnd) + & + ! SigmaLLMC(iLonNoon, iEquator - iEnd)) iEnd = iLat + ! enddo iStart = iEquator - iEnd iEnd = iEquator + iEnd @@ -1102,12 +1097,12 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) iOff = 2.0/MagLatRes iOff = 8.0/MagLatRes iEnd = iOff -! do iLat = iOff, nMagLats/4 -! if ( abs(SigmaPPMC(iLonNoon, iEquator + iLat)) + & -! abs(SigmaPPMC(iLonNoon, iEquator - iLat)) > & -! abs(SigmaPPMC(iLonNoon, iEquator + iEnd)) + & -! abs(SigmaPPMC(iLonNoon, iEquator - iEnd))) iEnd = iLat -! enddo + ! do iLat = iOff, nMagLats/4 + ! if ( abs(SigmaPPMC(iLonNoon, iEquator + iLat)) + & + ! abs(SigmaPPMC(iLonNoon, iEquator - iLat)) > & + ! abs(SigmaPPMC(iLonNoon, iEquator + iEnd)) + & + ! abs(SigmaPPMC(iLonNoon, iEquator - iEnd))) iEnd = iLat + ! enddo do i = 1, nMagLons + 1 do j = iStart + 1, iEquator - 1 @@ -1128,12 +1123,12 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) SigmaPLMC(i, j) = -(sigmahhmc(i, j) - sigmaccmc(i, j)) SigmaLPMC(i, j) = +(sigmahhmc(i, j) + sigmaccmc(i, j)) -! do j= 1,nMagLats -! if (isnan(SigmaPPMC(i,j))) write(*,*) 'sigmapp is nan : ',i,j -! if (isnan(SigmaCCMC(i,j))) write(*,*) 'sigmacc is nan : ',i,j -! if (isnan(SigmaPLMC(i,j))) write(*,*) 'sigmapl is nan : ',i,j -! if (isnan(SigmaLPMC(i,j))) write(*,*) 'sigmalp is nan : ',i,j -! enddo + ! do j= 1,nMagLats + ! if (isnan(SigmaPPMC(i,j))) write(*,*) 'sigmapp is nan : ',i,j + ! if (isnan(SigmaCCMC(i,j))) write(*,*) 'sigmacc is nan : ',i,j + ! if (isnan(SigmaPLMC(i,j))) write(*,*) 'sigmapl is nan : ',i,j + ! if (isnan(SigmaLPMC(i,j))) write(*,*) 'sigmalp is nan : ',i,j + ! enddo enddo @@ -1166,18 +1161,18 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) where (SigmaPLMC < 0.001) SigmaPLMC = 0.001 where (SigmaLPMC > -0.001) SigmaLPMC = -0.001 -!========== + !========== ! KDlmMC iOff = 2.0/MagLatRes iOff = 8.0/MagLatRes iEnd = iOff -! do iLat = iOff, nMagLats/4 -! if ( abs(KDlmMC(iLonNoon, iEquator + iLat)) + & -! abs(KDlmMC(iLonNoon, iEquator - iLat)) > & -! abs(KDlmMC(iLonNoon, iEquator + iEnd)) + & -! abs(KDlmMC(iLonNoon, iEquator - iEnd))) iEnd = iLat -! enddo + ! do iLat = iOff, nMagLats/4 + ! if ( abs(KDlmMC(iLonNoon, iEquator + iLat)) + & + ! abs(KDlmMC(iLonNoon, iEquator - iLat)) > & + ! abs(KDlmMC(iLonNoon, iEquator + iEnd)) + & + ! abs(KDlmMC(iLonNoon, iEquator - iEnd))) iEnd = iLat + ! enddo iStart = iEquator - iEnd iEnd = iEquator + iEnd @@ -1199,12 +1194,12 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) iOff = 2.0/MagLatRes iOff = 8.0/MagLatRes iEnd = iOff -! do iLat = iOff, nMagLats/4 -! if ( abs(KDpmMC(iLonNoon, iEquator + iLat)) + & -! abs(KDpmMC(iLonNoon, iEquator - iLat)) > & -! abs(KDpmMC(iLonNoon, iEquator + iEnd)) + & -! abs(KDpmMC(iLonNoon, iEquator - iEnd))) iEnd = iLat -! enddo + ! do iLat = iOff, nMagLats/4 + ! if ( abs(KDpmMC(iLonNoon, iEquator + iLat)) + & + ! abs(KDpmMC(iLonNoon, iEquator - iLat)) > & + ! abs(KDpmMC(iLonNoon, iEquator + iEnd)) + & + ! abs(KDpmMC(iLonNoon, iEquator - iEnd))) iEnd = iLat + ! enddo ! In this case, iEnd may need to be set to something like 15 deg @@ -1294,35 +1289,35 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) solver_s_mc = 4*deltalmc**2*deltapmc**2*(RBody)* & (dkdlmdlMC + dKDpmdpMC) -! if (iProc == 0) then -! -! do i= 1,nMagLons -! do j= 1,nMagLats -! -! if (isnan(deltalmc(i,j))) write(*,*) 'deltalmc is nan : ',i,j -! if (isnan(deltapmc(i,j))) write(*,*) 'deltapmc is nan : ',i,j -! if (isnan(dSigmaPLdpMC(i,j))) write(*,*) 'dSigmaPLdpMC is nan : ',i,j -! if (isnan(sigmallmc(i,j))) write(*,*) 'sigmallmc is nan : ',i,j -! if (isnan(dSigmaLLdlMC(i,j))) write(*,*) 'dSigmaLLdlMC is nan : ',i,j -! -! if (isnan(solver_a_mc(i,j))) write(*,*) 'solver_a_mc is nan : ',i,j -! if (isnan(solver_b_mc(i,j))) write(*,*) 'solver_b_mc is nan : ',i,j -! if (isnan(solver_c_mc(i,j))) write(*,*) 'solver_c_mc is nan : ',i,j -! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j -! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j, solver_d_mc(i,j) -! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j, deltalmc(i,j) -! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j, deltapmc(i,j) -! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j,sigmallmc(i,j) -! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j,dSigmaPLdpMC(i,j) -! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j,dSigmaLLdlMC(i,j) -! -! -! if (isnan(solver_e_mc(i,j))) write(*,*) 'solver_e_mc is nan : ',i,j -! if (isnan(solver_s_mc(i,j))) write(*,*) 'solver_s_mc is nan : ',i,j -! enddo -! enddo -! -! endif + ! if (iProc == 0) then + ! + ! do i= 1,nMagLons + ! do j= 1,nMagLats + ! + ! if (isnan(deltalmc(i,j))) write(*,*) 'deltalmc is nan : ',i,j + ! if (isnan(deltapmc(i,j))) write(*,*) 'deltapmc is nan : ',i,j + ! if (isnan(dSigmaPLdpMC(i,j))) write(*,*) 'dSigmaPLdpMC is nan : ',i,j + ! if (isnan(sigmallmc(i,j))) write(*,*) 'sigmallmc is nan : ',i,j + ! if (isnan(dSigmaLLdlMC(i,j))) write(*,*) 'dSigmaLLdlMC is nan : ',i,j + ! + ! if (isnan(solver_a_mc(i,j))) write(*,*) 'solver_a_mc is nan : ',i,j + ! if (isnan(solver_b_mc(i,j))) write(*,*) 'solver_b_mc is nan : ',i,j + ! if (isnan(solver_c_mc(i,j))) write(*,*) 'solver_c_mc is nan : ',i,j + ! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j + ! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j, solver_d_mc(i,j) + ! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j, deltalmc(i,j) + ! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j, deltapmc(i,j) + ! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j,sigmallmc(i,j) + ! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j,dSigmaPLdpMC(i,j) + ! if (isnan(solver_d_mc(i,j))) write(*,*) 'solver_d_mc is nan : ',i,j,dSigmaLLdlMC(i,j) + ! + ! + ! if (isnan(solver_e_mc(i,j))) write(*,*) 'solver_e_mc is nan : ',i,j + ! if (isnan(solver_s_mc(i,j))) write(*,*) 'solver_s_mc is nan : ',i,j + ! enddo + ! enddo + ! + ! endif ! Do the cowling conductivity within +/- 6 deg of equator @@ -1403,15 +1398,18 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) allocate(x(nX), y(nX), rhs(nX), b(nX), & d_I(nX), e_I(nX), e1_I(nX), f_I(nX), f1_I(nX)) - call UA_SetnMLTs(nMagLons + 1) - call UA_SetnLats(2) + ! call UA_SetnMLTs(nMagLons + 1) + call ieModel_%nMlts(nMagLons + 1) + call ieModel_%nLats(2) + ! call UA_SetnLats(2) SmallMagLocTimeMC(:, 1) = MagLocTimeMC(:, 1) SmallMagLocTimeMC(:, 2) = MagLocTimeMC(:, nMagLats) SmallMagLatMC(:, 1) = MagLatMC(:, 1) SmallMagLatMC(:, 2) = MagLatMC(:, nMagLats) iError = 0 - call UA_SetGrid(SmallMagLocTimeMC, SmallMagLatMC, iError) + ! call UA_SetGrid(SmallMagLocTimeMC, SmallMagLatMC, iError) + call ieModel_%grid(SmallMagLocTimeMC, SmallMagLatMC) if (iError /= 0) then write(*, *) "Error in routine calc_electrodynamics (UA_SetGrid):" write(*, *) iError @@ -1419,12 +1417,13 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) endif iError = 0 - call UA_GetPotential(SmallPotentialMC, iError) + ! call UA_GetPotential(SmallPotentialMC, iError) + call ieModel_%get_potential(SmallPotentialMC) if (iError /= 0) then write(*, *) "Error in routine calc_electrodynamics (UA_GetPotential):" write(*, *) iError -! call stop_gitm("Stopping in calc_electrodynamics") + ! call stop_gitm("Stopping in calc_electrodynamics") SmallPotentialMC = 0.0 endif @@ -1472,21 +1471,21 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) Rhs = b -!!! write(*,*) "prehepta" -!!! ! A -> LU -!!! -!!! write(*,*) "pre : ", & -!!! sum(b),sum(abs(b)),sum(x),sum(d_I),sum(e_I),sum(f_I),& -!!! sum(e1_I),sum(f1_I) -!!! + !!! write(*,*) "prehepta" + !!! ! A -> LU + !!! + !!! write(*,*) "pre : ", & + !!! sum(b),sum(abs(b)),sum(x),sum(d_I),sum(e_I),sum(f_I),& + !!! sum(e1_I),sum(f1_I) + !!! call prehepta(nX, 1, nMagLons, nX, -0.5, d_I, e_I, f_I, e1_I, f1_I) -!!! -!!! ! Left side preconditioning: U^{-1}.L^{-1}.A.x = U^{-1}.L^{-1}.rhs -!!! -!!! ! rhs'=U^{-1}.L^{-1}.rhs -!!! write(*,*) "Lhepta" + !!! + !!! ! Left side preconditioning: U^{-1}.L^{-1}.A.x = U^{-1}.L^{-1}.rhs + !!! + !!! ! rhs'=U^{-1}.L^{-1}.rhs + !!! write(*,*) "Lhepta" call Lhepta(nX, 1, nMagLons, nX, b, d_I, e_I, e1_I) -!!! write(*,*) "Uhepta" + !!! write(*,*) "Uhepta" call Uhepta(.true., nX, 1, nMagLons, nX, b, f_I, f1_I) MaxIteration = 200 !good enough @@ -1535,7 +1534,7 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) DynamoPotentialMC(nMagLons + 1, :) = DynamoPotentialMC(1, :) if (allocated(b)) deallocate(x, y, b, rhs, d_I, e_I, f_I, e1_I, f1_I) -! Electric fields + ! Electric fields do j = 1, nMagLats do i = 2, nMagLons @@ -1565,13 +1564,13 @@ subroutine UA_calc_electrodynamics(UAi_nMLTs, UAi_nLats) (DynamoPotentialMC(i, nMagLats) - DynamoPotentialMC(i, nMagLats - 1))/deltalmc(i, nMagLats) enddo -! End Electric field + ! End Electric field -! write(*,*) "=========> Done! ", iProc, i, j -! flush(6) -! if (UseBarriers) call MPI_BARRIER(iCommGITM,iError) -! call MPI_FINALIZE(iError) -! stop + ! write(*,*) "=========> Done! ", iProc, i, j + ! flush(6) + ! if (UseBarriers) call MPI_BARRIER(iCommGITM,iError) + ! call MPI_FINALIZE(iError) + ! stop call end_timing("calc_electrodyn") @@ -1720,14 +1719,14 @@ subroutine find_mag_point_old(juline, shline, spline, length, & gmlt = maxval(magloctime_local) gmlt2 = minval(magloctime_local) -! if (gmlt2 < gmlt .and. mltMC < gmlt2) then -! gmlt = gmlt - 24.0 -! else -! if (gmlt2 < gmlt .and. mltMC > gmlt) gmlt2 = gmlt2 + 24.0 -! endif -! -! if (mltMC > gmlt) return -! if (mltMC < gmlt2) return + ! if (gmlt2 < gmlt .and. mltMC < gmlt2) then + ! gmlt = gmlt - 24.0 + ! else + ! if (gmlt2 < gmlt .and. mltMC > gmlt) gmlt2 = gmlt2 + 24.0 + ! endif + ! + ! if (mltMC > gmlt) return + ! if (mltMC < gmlt2) return if (mlatMC > maxval(MLatitude(0:nLons + 1, 0:nLats + 1, k, iBlock))) return if (mlatMC < minval(MLatitude(0:nLons + 1, 0:nLats + 1, k, iBlock))) return @@ -1777,7 +1776,7 @@ subroutine find_mag_point_old(juline, shline, spline, length, & endif endif -! if (ii == 0 .or. jj == 0) IsFound = .false. + ! if (ii == 0 .or. jj == 0) IsFound = .false. if (IsFound) then @@ -1865,7 +1864,7 @@ subroutine matvec_gitm(x_I, y_I, n) x_G(nMagLons + 1, :) = x_G(1, :) i = 0; -! write(*,*)'X_G dim:',nMagLons+1, nMagLats + ! write(*,*)'X_G dim:',nMagLons+1, nMagLats do iLat = 2, nMagLats - 1 do iLon = 1, nMagLons @@ -1897,7 +1896,7 @@ subroutine matvec_gitm(x_I, y_I, n) enddo enddo -!!! ! Preconditioning: y'= U^{-1}.L^{-1}.y + !!! ! Preconditioning: y'= U^{-1}.L^{-1}.y call Lhepta(n, 1, nMagLons, n, y_I, d_I, e_I, e1_I) call Uhepta(.true., n, 1, nMagLons, n, y_I, f_I, f1_I) @@ -1927,12 +1926,6 @@ subroutine UA_calc_electrodynamics_1d do iBlock = 1, nBlocks - call calc_physics(iBlock) - call calc_rates(iBlock) - call calc_collisions(iBlock) - call get_potential(iBlock) - call calc_efield(iBlock) - e_density = IDensityS(:, :, :, ie_, iBlock) Vi = Collisions(:, :, :, iVIN_) diff --git a/src/calc_electron_temperature.Earth.f90 b/src/calc_electron_temperature.Earth.f90 index ea4c85c5..c7b7d246 100644 --- a/src/calc_electron_temperature.Earth.f90 +++ b/src/calc_electron_temperature.Earth.f90 @@ -1,15 +1,6 @@ ! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) ! Full license can be found in LICENSE -subroutine calc_electron_temperature(iBlock) - - integer, intent(in) :: iBlock - - call calc_electron_ion_sources(iBlock) - call calc_electron_ion_temperature(iBlock) - -end subroutine calc_electron_temperature - subroutine calc_electron_ion_temperature(iBlock) !subroutine calc_electron_temperature(iBlock,eHeatingp,iHeatingp, & @@ -364,16 +355,18 @@ subroutine calc_electron_ion_temperature(iBlock) where (etemp .LT. tn) etemp = tn where (etemp .GT. 6000.) etemp = 6000. - eTemperature(1:nLons, 1:nLats, 0:nAlts + 1, iBlock) = etemp(1:nLons, 1:nLats, 0:nAlts + 1) - eTemperature(1:nLons, 1:nLats, -1, iBlock) = etemp(1:nLons, 1:nLats, 0) + eTemperature(1:nLons, 1:nLats, 1:nAlts + 1, iBlock) = etemp(1:nLons, 1:nLats, 1:nAlts + 1) + eTemperature(1:nLons, 1:nLats, 0, iBlock) = Temperature(1:nLons, 1:nLats, 0, iBlock)*TempUnit(1:nLons, 1:nLats, 0) + eTemperature(1:nLons, 1:nLats, -1, iBlock) = Temperature(1:nLons, 1:nLats, -1, iBlock)*TempUnit(1:nLons, 1:nLats, -1) eTemperature(1:nLons, 1:nLats, nAlts + 2, iBlock) = etemp(1:nLons, 1:nLats, nAlts + 1) where (itemp .GT. tipct*etemp) itemp = tipct*etemp where (itemp .LT. tn) itemp = tn where (itemp .GT. 6000.) itemp = 6000. - iTemperature(1:nLons, 1:nLats, 0:nAlts + 1, iBlock) = itemp(1:nLons, 1:nLats, 0:nAlts + 1) - iTemperature(1:nLons, 1:nLats, -1, iBlock) = itemp(1:nLons, 1:nLats, 0) + iTemperature(1:nLons, 1:nLats, 1:nAlts + 1, iBlock) = itemp(1:nLons, 1:nLats, 1:nAlts + 1) + iTemperature(1:nLons, 1:nLats, 0, iBlock) = Temperature(1:nLons, 1:nLats, 0, iBlock)*TempUnit(1:nLons, 1:nLats, 0) + iTemperature(1:nLons, 1:nLats, -1, iBlock) = Temperature(1:nLons, 1:nLats, -1, iBlock)*TempUnit(1:nLons, 1:nLats, -1) iTemperature(1:nLons, 1:nLats, nAlts + 2, iBlock) = itemp(1:nLons, 1:nLats, nAlts + 1) call report("done with calc_electron_temperature", 2) @@ -1100,6 +1093,12 @@ subroutine calc_electron_ion_sources(iBlock) !,eHeatingp,iHeatingp,eHeatingm,iHe where (sintheta .GT. -0.1 .AND. sintheta .LE. 0.0) sintheta = -0.1 sin2theta = sintheta**2 + ! perpendicular conduction =0 in ghost cells + Qeconhm = 0.0 + Qiconhm = 0.0 + Qeconhp = 0.0 + Qiconhp = 0.0 + do iAlt = 0, nAlts + 1 dtedphe = 0.0 dtidphe = 0.0 @@ -1248,7 +1247,7 @@ subroutine calc_electron_ion_sources(iBlock) !,eHeatingp,iHeatingp,eHeatingm,iHe iHeatingm(1:nLons, 1:nLats, 1:nAlts) = iHeatingm(1:nLons, 1:nLats, 1:nAlts) & + ChemicalHeatingRateIon iHeatingp = Qiecp + Qinc_tp + Qiconhp - iHeating = Qiec + Qinc_t + Qinc_v + iHeating = Qeic + Qinc_t + Qinc_v if (DoCheckForNans) then do iLon = 1, nLons diff --git a/src/calc_euv.f90 b/src/calc_euv.f90 index 9aec3ac3..b83c8e9f 100644 --- a/src/calc_euv.f90 +++ b/src/calc_euv.f90 @@ -610,9 +610,6 @@ subroutine calc_scaled_euv hlya = 3.E+11 + 0.4E+10*(f107 - 70.) heiew = 0. - xuvfac = 4.0 - f107_ratio - if (xuvfac < 1.0) xuvfac = 1.0 - ! I think that this is the Hinteregger stuff, which goes from ! 2A - 1750A, so it is used to fill in the Above and Below spectrum f107_ratio = (f107 - 68.0)/(243.0 - 68.0) @@ -620,6 +617,9 @@ subroutine calc_scaled_euv Solar_Flux(N) = RFLUX(N) + (XFLUX(N) - RFLUX(N))*f107_Ratio enddo + xuvfac = 4.0 - f107_ratio + if (xuvfac < 1.0) xuvfac = 1.0 + ! This is a total hack, just comparing FISM to these fluxes: Solar_flux(Num_WaveLengths_High - 4) = Solar_flux(Num_WaveLengths_High - 4)*3.0 Solar_flux(Num_WaveLengths_High - 3) = Solar_flux(Num_WaveLengths_High - 3)*3.0 diff --git a/src/calc_neutral_friction_new.f90 b/src/calc_neutral_friction_new.f90 deleted file mode 100644 index a7e3f78c..00000000 --- a/src/calc_neutral_friction_new.f90 +++ /dev/null @@ -1,209 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -subroutine calc_neutral_friction(oVel, EddyCoef_1d, NDensity_1d, NDensityS_1d, & - GradLogCon, EddyCoefRatio_1d, Temp, Gravity_1d) - - use ModGITM - use ModSources - use ModPlanet, only: Diff0, DiffExp, IsEarth - use ModInputs, only: UseNeutralFriction, UseBoquehoAndBlelly, UseEddyCorrection - - implicit none - - real, intent(inout) :: oVel(1:nAlts, 1:nSpecies) - real, intent(in) :: EddyCoef_1d(1:nAlts) - real, intent(in) :: NDensity_1d(1:nAlts) - real, intent(in) :: NDensityS_1d(1:nAlts, 1:nSpecies) - real, intent(in) :: GradLogCon(1:nAlts, 1:nSpecies) - real, intent(inout) :: EddyCoefRatio_1d(1:nAlts, 1:nSpecies) - real, intent(in) :: Temp(1:nAlts) - real, intent(in) :: Gravity_1d(1:nAlts) - - integer :: iSpecies, jSpecies - real :: CoefMatrix(nSpecies, nSpecies), kTOverM - real :: Matrix(nSpecies, nSpecies) - real :: Vel(nSpecies), Parity, Fraction = 1.0, N0 = 1.28E+19 - integer :: iPivot(nSpecies) - -! Added by Jared 11-29-2007 - real :: TempDij - real :: InvDij(nSpecies) - real :: Dij(nSpecies) - real :: denscale - real :: mscale - real :: mms - real :: mmwos(nSpecies) - - real :: EddyDiffCorrection(nSpecies), BulkWind, MassDensity, r - - integer :: iAlt - - call report("calc_neutral_friction", 4) - - if (.not. UseNeutralFriction) return - - EddyCoefRatio_1d(1:nAlts, 1:nSpecies) = 0.0 - -! write(*,*) 'Now in Calc_Neutral_Friction' - do iAlt = 1, nAlts - -! write(*,*) 'iAlt = ', iAlt - Vel = oVel(iAlt, 1:nSpecies) - CoefMatrix = 0.0 - - mms = 0.0 - mmwos = 0.0 - InvDij = 0.0 - - EddyDiffCorrection(1:nSpecies) = 0.0 - - do iSpecies = 1, nSpecies - - InvDij(iSpecies) = 0.0 - kTOverM = Boltzmanns_Constant*Temp(iAlt)/Mass(iSpecies) - denscale = 1.0/NDensity_1d(iAlt) - - do jSpecies = 1, nSpecies - - if (jSpecies == iSpecies) cycle - - ! \ - ! Please note that TempDij is the Dij binary coefficients - ! Based upon the formulation by Banks and Kokarts. - ! These coefficients demand that - ! (1) NDensity be in cm^-3 (hence the 1.0e-06) factor below - ! (2) Additionally, the Dij's are in cm^2/s, thus the 1.0e-04 factor - ! TempDij = (1.0e-04)*& ! Scales the Dij from cm^2/s -> m^2/s - ! ( Diff0(iSpecies,jSpecies)* - ! ( Temp(iAlt)**DiffExp(iSpecies,jSpecies) ) ) / & - ! ( NDensity_1d(iAlt)*(1.0e-06) ) ! Converts to #/cm^-3 - - if (IsEarth) then - - ! TempDij is the old Dij coefficient according to Ridley [2006] - - TempDij = Diff0(iSpecies, jSpecies)* & - (N0/NDensity_1d(iAlt))* & - (Temp(iAlt)/Temp(1))**DiffExp(iSpecies, jSpecies) - - if (UseBoquehoAndBlelly) then - - CoefMatrix(iSpecies, jSpecies) = & - kTOverM*denscale*NDensityS_1d(iAlt, jSpecies)/ & - (TempDij + EddyCoef_1d(iAlt)) - - InvDij(iSpecies) = InvDij(iSpecies) + & - denscale*NDensityS_1d(iAlt, jSpecies)/ & - (TempDij + EddyCoef_1d(iAlt)) - else - - CoefMatrix(iSpecies, jSpecies) = & - kTOverM*denscale*NDensityS_1d(iAlt, jSpecies)/ & - (TempDij) - - InvDij(iSpecies) = InvDij(iSpecies) + & - denscale*NDensityS_1d(iAlt, jSpecies)/ & - (TempDij) - - endif !! UseBoqueho And Blelly - - else !! Not Earth - - TempDij = (1.0e-04)* & ! Scales the Dij from cm^2/s -> m^2/s - (Diff0(iSpecies, jSpecies)* & - (Temp(iAlt)**DiffExp(iSpecies, jSpecies)))/ & - (NDensity_1d(iAlt)*(1.0e-06)) ! Converts to #/cm^-3 - - if (UseBoquehoAndBlelly) then - CoefMatrix(iSpecies, jSpecies) = & - kTOverM*denscale* & - NDensityS_1d(iAlt, jSpecies)/ & - (TempDij + EddyCoef_1d(iAlt)) - InvDij(iSpecies) = InvDij(iSpecies) + & - denscale*NDensityS_1d(iAlt, jSpecies)/ & - (TempDij + EddyCoef_1d(iAlt)) - else - CoefMatrix(iSpecies, jSpecies) = & - kTOverM*denscale*NDensityS_1d(iAlt, jSpecies)/TempDij - InvDij(iSpecies) = InvDij(iSpecies) + & - denscale*NDensityS_1d(iAlt, jSpecies)/ & - (TempDij) - endif - - if (UseBoquehoAndBlelly) then - EddyDiffCorrection(iSpecies) = & - EddyDiffCorrection(iSpecies) + & - Dt*InvDij(jSpecies)*EddyCoef_1d(iAlt)* & - GradLogCon(iAlt, jSpecies) - else - EddyDiffCorrection(iSpecies) = & - EddyDiffCorrection(iSpecies) + & - Dt*CoefMatrix(iSpecies, jSpecies)* & - EddyCoef_1d(iAlt)*GradLogCon(iAlt, jSpecies) - endif - - endif ! Check if IsEarth - - enddo ! End DO over jSpecies - - if (UseBoquehoAndBlelly) then - - EddyCoefRatio_1d(iAlt, iSpecies) = & - Dt*(EddyCoef_1d(iAlt)*InvDij(iSpecies))*GradLogCon(iAlt, iSpecies) - - if (UseEddyCorrection) then - EddyCoefRatio_1d(iAlt, iSpecies) = & - EddyCoefRatio_1d(iAlt, iSpecies) - EddyDiffCorrection(iSpecies) - endif - - else - - EddyCoefRatio_1d(iAlt, iSpecies) = & - -1.0*Dt*(Boltzmanns_Constant*Temp(iAlt)/Mass(iSpecies))* & - EddyCoef_1d(iAlt)*InvDij(iSpecies)*GradLogCon(iAlt, iSpecies) - - if (UseEddyCorrection) then - EddyCoefRatio_1d(iAlt, iSpecies) = & - EddyCoefRatio_1d(iAlt, iSpecies) + EddyDiffCorrection(iSpecies) - endif - - endif - - enddo !End DO Over iSpecies - - Vel(1:nSpecies) = Vel(1:nSpecies) + EddyCoefRatio_1d(iAlt, 1:nSpecies) - - Fraction = 1.4 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - CoefMatrix = Fraction*CoefMatrix - - Matrix = -dt*CoefMatrix - - do iSpecies = 1, nSpecies - Matrix(iSpecies, iSpecies) = & - 1.0 + dt*(sum(CoefMatrix(iSpecies, :))) - enddo - - BulkWind = 0.0 - MassDensity = 0.0 - do iSpecies = 1, nSpecies - BulkWind = BulkWind + & - vel(iSpecies)*mass(iSpecies)*NDensityS_1d(iAlt, iSpecies) - MassDensity = MassDensity + mass(iSpecies)*NDensityS_1d(iAlt, iSpecies) - enddo - BulkWind = BulkWind/MassDensity - - do iSpecies = 1, nSpecies - r = Matrix(iSpecies, iSpecies)/sum(Matrix(iSpecies, :)) - 1.0 -! write(*,*) iAlt, iSpecies, vel(iSpecies), r, BulkWind - if (r > 1.0) vel(iSpecies) = BulkWind - enddo - - call ludcmp(Matrix, nSpecies, nSpecies, iPivot, Parity) - call lubksb(Matrix, nSpecies, nSpecies, iPivot, Vel) - - oVel(iAlt, 1:nSpecies) = Vel(1:nSpecies) !+ EddyCoefRatio_1d(iAlt,1:nSpecies) - - enddo - -end subroutine calc_neutral_friction diff --git a/src/cet.f90 b/src/cet.f90 deleted file mode 100644 index 593bd0e1..00000000 --- a/src/cet.f90 +++ /dev/null @@ -1,925 +0,0 @@ -subroutine calc_electron_temperature(iBlock, eHeatingp, iHeatingp, eHeatingm, iHeatingm, iHeating) - - use ModSizeGitm - use ModGITM - use ModPlanet - use ModRates - use ModEUV - use ModSources - use ModConstants - use ModTime - use ModInputs - use ModUserGITM - - implicit none - - integer, intent(in) :: iBlock - real(kind=8), intent(in), dimension(nLons, nLats, nAlts) :: eHeatingp, iHeatingp, eHeatingm, iHeatingm, iHeating - - real, dimension(nLons, nLats, 0:nAlts + 1) :: & - tn, te, ti, etemp, itemp, nn, ni, ne, nh, nhe, no, nn2, no2, ne_floor, sinI2, sinI - real, dimension(nLons, nLats, 0:nAlts + 1) :: nop, no2p, nn2p, nnop, nnp - real, dimension(nLons, nLats, 0:nAlts + 1) :: nq, lam_e, lam_i, lam_op, lam_o2p, lam_n2p, lam_nop, lam_np - real(kind=8), dimension(nLons, nLats, nAlts) :: eConduction, iConduction - - real(kind=8), dimension(nLons, nLats, nAlts) :: eThermo = 0.0, eHeatadv = 0.0, eAdiab = 0.0 - - real, dimension(nLons, nLats, 0:nAlts + 1) :: alts - real :: tipct = 1.1 - -! calc thermoelectric currents - real, dimension(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2) :: PartialJPara - real, dimension(-1:nLons + 2, -1:nLats + 2) :: JParaAlt - -!!! For Electron Heat Flux - real, dimension(nLons, nLats) :: eflux, mlats ! W/m2 - -!!!! Electron heat flux from Yue - - real :: Dst, Kp, bb1, kk1, P1, P2, bb2, kk2 - real :: x1, y1, z1, aa, bb, cc, temp, mlon, mlat - real :: geo_lat, geo_lon - integer, dimension(7) :: iTime - integer, external :: jday - integer :: DoY - -! for Tridiagnal solver - real(kind=8), dimension(nAlts) :: a, b, c, d, u, testm ! - real(kind=8) :: zu, zl, lamu, laml, nne, tte, nni, tti, neu, nel, uiu, uil - real(kind=8) :: xcoef, hcoef, fcoef, ilam, m - - real, dimension(nLons, nLats, 0:nAlts + 1) :: uiup - - integer :: iLon, iLat, iAlt - - integer :: Ao = 16, Ao2 = 32, An2 = 28, Ano = 30, An = 14 - -!!!! Change the electron conductivity - - tn = Temperature(1:nLons, 1:nLats, 0:nAlts + 1, iBlock)*TempUnit(1:nLons, 1:nLats, 0:nAlts + 1) - nn = NDensity(1:nLons, 1:nLats, 0:nAlts + 1, iBlock) - ne = IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, ie_, iBlock) - ni = IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, ie_, iBlock) - no = NDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iO_3P_, iBlock) - nh = NDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iH_, iBlock) - nhe = NDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iHe_, iBlock) - nn2 = NDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iN2_, iBlock) - no2 = NDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iO2_, iBlock) - -! Ions - - nop = IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iO_4SP_, iBlock) + & - IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iO_2DP_, iBlock) + & - IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iO_2PP_, iBlock) - no2p = IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iO2P_, iBlock) - nn2p = IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iN2P_, iBlock) - nnop = IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iNOP_, iBlock) - nnp = IDensityS(1:nLons, 1:nLats, 0:nAlts + 1, iNP_, iBlock) - - uiup = IVelocity(1:nLons, 1:nLats, 0:nAlts + 1, iUp_, iBlock) - - alts = Altitude_GB(1:nLons, 1:nLats, 0:nAlts + 1, iBlock) - -!!!! Upper Boundary Conditions!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!!!!!![Reference: 1. J.T. Hastings and R.G. Roble, Planet. Space Sci., Vol.25, pp.209, 1977. Equation(31) -!!!!!!! 2. M.W. Liemohn et al, J. Geohys. Res., Vol.105, pp.27,767, 2000 Plate 1. ] - - Kp = 2.0 - Dst = -Kp*20.0 - - call time_real_to_int(CurrentTime, iTime) - DoY = jday(iTime(1), & - iTime(2), & - iTime(3)) - - bb1 = 2365 - 508*exp(-((DoY - jday(1998, 6, 12))/180.)**2) - kk1 = 7.8 + 6.2*sin(DoY*pi/365.) - P1 = 1200.+500.*(1 + cos(DoY*4*pi/365.)) - P2 = 4200.+650.*(1 + cos(DoY*4*pi/365.)) - bb2 = 64.+3.*sin(DoY*3*pi/365.) - kk2 = 1.6 + 0.5*sin(DoY*3*pi/365.) - - x1 = 16.0 - y1 = 50 - z1 = 7.0 - aa = 10.0 - bb = 20.0 - cc = 2.5 - - do iLat = 1, nLats - do iLon = 1, nLons - - if (MLT(iLon, iLat, nAlts) < 0.0) then - MLT(iLon, iLat, nAlts) = MLT(iLon, iLat, nAlts) + 24.0 - endif - - if (abs(MLT(iLon, iLat, nAlts) - x1) < 12) then - temp = 1 - (MLT(iLon, iLat, nAlts) - x1)**2/aa**2 - & - (abs(MLatitude(iLon, iLat, nAlts, iBlock)) - y1)**2/bb**2 - else - temp = 1 - (24 - abs(MLT(iLon, iLat, nAlts) - x1))**2/aa**2 - & - (abs(MLatitude(iLon, iLat, nAlts, iBlock)) - y1)**2/bb**2 - endif - - if (temp > 0.0) then - eflux(iLon, iLat) = z1 + cc*sqrt(temp) - else - eflux(iLon, iLat) = z1 - endif - - eflux(iLon, iLat) = exp(log(10.)*eflux(iLon, iLat)) - - eflux(iLon, iLat) = eflux(iLon, iLat)*1.602e-19*1e4*0.2 - - enddo - enddo - - ! eflux = 1.e-9 - ! mlats = MLatitude(1:nLons,1:nLats,nAlts,iBlock) - ! where(mlats .GE. 50. .AND. mlats .LE. -50.) eflux=1.e-5 - - sinI2 = (B0(1:nLons, 1:nLats, 0:nAlts + 1, iUp_, iBlock)/B0(1:nLons, 1:nLats, 0:nAlts + 1, iMag_, iBlock))**2 - where (sinI2 .LE. 0.01) sinI2 = 0.01 - sinI = sqrt(sinI2) - - te = eTemperature(1:nLons, 1:nLats, 0:nAlts + 1, iBlock) - ti = iTemperature(1:nLons, 1:nLats, 0:nAlts + 1, iBlock) - - !!!! Calculate electron temperature - -!ne_floor = ne -!where(ne .LE. 1.e10) ne_floor = 1.e10 -!nq = no*1.1e-16*(1+5.7e-4*te) & -! + nn2*2.82e-17*te**0.5*(1-1.21e-4*te) & -! + no2*2.2e-16*(1+3.6e-2*te**0.5) -!lam_e = 7.7e5*te**2.5/(1+3.22e4*te**2/ne_floor*nq) - - lam_e = 7.7e5*te**2.5/(1 + 3.22e4*te**2/ne*nn*1.e-16) !Unit: eV cm-1 from Schunk and Nagy Page 147 eq 5.146 - lam_e = lam_e*1.602e-19*100 !Unit: J m-1 - lam_e = lam_e*sinI2 - - JParaAlt = 0.0 - PartialJPara = 0.0 - - call calc_thermoelectric_current - UserData3D(:, :, :, 2, iBlock) = 0.0 - UserData3D(1:nLons, 1:nLats, nAlts, 2, iBlock) = JParaAlt(1:nLons, 1:nLats) - -! Use tri-diagnal solver to solve the equation - do iLon = 1, nLons - do iLat = 1, nLats - - do iAlt = 1, nAlts - zu = alts(iLon, iLat, iAlt + 1) - alts(iLon, iLat, iAlt) - zl = alts(iLon, iLat, iAlt) - alts(iLon, iLat, iAlt - 1) - - lamu = lam_e(iLon, iLat, iAlt + 1) - lam_e(iLon, iLat, iAlt) - laml = lam_e(iLon, iLat, iAlt) - lam_e(iLon, iLat, iAlt - 1) - nne = ne(iLon, iLat, iAlt) - tte = te(iLon, iLat, iAlt) - - neu = ne(iLon, iLat, iAlt + 1) - ne(iLon, iLat, iAlt) - nel = ne(iLon, iLat, iAlt) - ne(iLon, iLat, iAlt - 1) - - uiu = uiup(iLon, iLat, iAlt + 1) - uiup(iLon, iLat, iAlt) - uil = uiup(iLon, iLat, iAlt) - uiup(iLon, iLat, iAlt - 1) - - ilam = lam_e(iLon, iLat, iAlt) - - hcoef = zu*zl*(zu + zl) - xcoef = 1.5*Boltzmanns_Constant*nne/Dt - fcoef = (zl/hcoef)**2*lamu + (zu/hcoef)**2*laml - - c(iAlt) = 2*ilam/hcoef*zl + fcoef*zl**2 - b(iAlt) = -xcoef - 2*ilam/hcoef*(zu + zl) + fcoef*(zu**2 - zl**2) - eHeatingp(iLon, iLat, iAlt) - a(iAlt) = 2*ilam/hcoef*zu - fcoef*zu**2 - d(iAlt) = -xcoef*tte - eHeatingm(iLon, iLat, iAlt) - - eConduction(iLon, iLat, iAlt) = c(iAlt)*te(iLon, iLat, iAlt + 1) + & - a(iAlt)*te(iLon, iLat, iAlt + 1) + & - (-2*ilam/hcoef*(zu + zl) + fcoef*(zu**2 - zl**2))*tte - - if (abs(MLatitude(iLon, iLat, nAlts, iBlock)) .GE. 45.) then - - eThermo(iLon, iLat, iAlt) = & - 5./2.*Boltzmanns_Constant & - /Element_Charge & - *JParaAlt(iLon, iLat) & - *((te(iLon, iLat, iAlt + 1) - te(iLon, iLat, iAlt))*zl**2 & - + (te(iLon, iLat, iAlt) - te(iLon, iLat, iAlt - 1))*zu**2)/hcoef - - eHeatadv(iLon, iLat, iAlt) = eThermo(iLon, iLat, iAlt)/5.*3. - - eAdiab(iLon, iLat, iAlt) = & - -Boltzmanns_Constant*JParaAlt(iLon, iLat) & - /nne/Element_Charge*tte* & - (zl**2*neu + zu**2*nel)/hcoef - -!!!! use thermoelectric heating - - a(iAlt) = a(iAlt) - 4*Boltzmanns_Constant & - /Element_Charge & - *JParaAlt(iLon, iLat)*zu**2/hcoef - ! *sinI(iLon,iLat,iAlt) - - ! +1.5*nne*Boltzmanns_Constant* & - ! uiup(iLon,iLat,iAlt) & - ! *zu**2/hcoef - - b(iAlt) = b(iAlt) + 4*Boltzmanns_Constant & - /Element_Charge* & - JParaAlt(iLon, iLat)*(zu**2 - zl**2)/hcoef & - ! *sinI(iLon,iLat,iAlt) & - - Boltzmanns_Constant*JParaAlt(iLon, iLat) & - /nne/Element_Charge* & - (zl**2*neu + zu**2*nel)/hcoef - - ! - Boltzmanns_Constant * nne * & - ! (zl**2*uiu+zu**2*uil)/hcoef & - - ! - 1.5*nne*Boltzmanns_Constant* & - ! uiup(iLon,iLat,iAlt) * & - ! (zu**2-zl**2)/hcoef - - c(iAlt) = c(iAlt) + 4*Boltzmanns_Constant & - /Element_Charge & - *JParaAlt(iLon, iLat)*zl**2/hcoef - ! *sinI(iLon,iLat,iAlt) - - ! -1.5*nne*Boltzmanns_Constant* & - ! uiup(iLon,iLat,iAlt) & - ! *zl**2/hcoef - - endif - - enddo - - ! Bottom Bounday Te = Tn - a(1) = 0 - b(1) = 1 - c(1) = 0 - d(1) = Temperature(iLon, iLat, 1, iBlock)*TempUnit(iLon, iLat, 1) - - a(nAlts) = -1 - b(nAlts) = 1 - c(nAlts) = 0 - d(nAlts) = dAlt_GB(iLon, iLat, nAlts, iBlock)*eflux(iLon, iLat) & - /lam_e(iLon, iLat, nAlts) - - call tridag(a, b, c, d, u) - - etemp(iLon, iLat, 1:nAlts) = u(1:nAlts) - etemp(iLon, iLat, nAlts + 1) = etemp(iLon, iLat, nAlts) - etemp(iLon, iLat, 0) = etemp(iLon, iLat, 1) - - enddo - enddo - -! Ion Conductivity - lam_op = 3.1e4*ti**2.5/Ao**0.5 & - /(1 + 1.75* & - (no2p/nop*(Ao2/(Ao2 + Ao))**0.5*(3*Ao**2 + 1.6*Ao2*Ao + 1.3*Ao2**2)/(Ao + Ao2)**2 & - + nn2p/nop*(An2/(An2 + Ao))**0.5*(3*Ao**2 + 1.6*An2*Ao + 1.3*An2**2)/(Ao + An2)**2 & - + nnop/nop*(Ano/(Ano + Ao))**0.5*(3*Ao**2 + 1.6*Ano*Ao + 1.3*Ano**2)/(Ao + Ano)**2 & - + nnp/nop*(An/(An + Ao))**0.5*(3*Ao**2 + 1.6*An*Ao + 1.3*An**2)/(Ao + An)**2 & - )) !Unit: eV cm-1 s-1 K-1 from Shunk P153 Assume O atom is dominant, and ignore ... - - lam_o2p = 3.1e4*ti**2.5/Ao2**0.5 & - /(1 + 1.75* & - (nop/no2p*(Ao/(Ao2 + Ao))**0.5*(3*Ao2**2 + 1.6*Ao2*Ao + 1.3*Ao**2)/(Ao + Ao2)**2 & - + nn2p/no2p*(An2/(An2 + Ao2))**0.5*(3*Ao2**2 + 1.6*An2*Ao2 + 1.3*An2**2)/(Ao2 + An2)**2 & - + nnop/no2p*(Ano/(Ano + Ao2))**0.5*(3*Ao2**2 + 1.6*Ano*Ao2 + 1.3*Ano**2)/(Ao2 + Ano)**2 & - + nnp/no2p*(An/(An + Ao2))**0.5*(3*Ao2**2 + 1.6*An*Ao2 + 1.3*An**2)/(Ao2 + An)**2 & - )) - - lam_n2p = 3.1e4*ti**2.5/An2**0.5 & - /(1 + 1.75* & - (nop/nn2p*(Ao/(An2 + Ao))**0.5*(3*An2**2 + 1.6*An2*Ao + 1.3*Ao**2)/(Ao + An2)**2 & - + no2p/nn2p*(Ao2/(An2 + Ao2))**0.5*(3*An2**2 + 1.6*An2*Ao2 + 1.3*Ao2**2)/(Ao2 + An2)**2 & - + nnop/nn2p*(Ano/(An2 + Ano))**0.5*(3*An2**2 + 1.6*An2*Ano + 1.3*Ano**2)/(Ano + An2)**2 & - + nnp/nn2p*(An/(An2 + An))**0.5*(3*An2**2 + 1.6*An2*An + 1.3*An**2)/(An + An2)**2 & - )) - - lam_nop = 3.1e4*ti**2.5/Ano**0.5 & - /(1 + 1.75* & - (nop/nnop*(Ao/(Ano + Ao))**0.5*(3*Ano**2 + 1.6*Ano*Ao + 1.3*Ao**2)/(Ao + Ano)**2 & - + no2p/nnop*(Ao2/(Ano + Ao2))**0.5*(3*Ano**2 + 1.6*Ano*Ao2 + 1.3*Ao2**2)/(Ao2 + Ano)**2 & - + nn2p/nnop*(An2/(Ano + An2))**0.5*(3*Ano**2 + 1.6*Ano*An2 + 1.3*An2**2)/(An2 + Ano)**2 & - + nnp/nnop*(An/(Ano + An))**0.5*(3*Ano**2 + 1.6*Ano*An + 1.3*An**2)/(An + Ano)**2 & - )) - - lam_np = 3.1e4*ti**2.5/An**0.5 & - /(1 + 1.75* & - (nop/nnp*(Ao/(An + Ao))**0.5*(3*An**2 + 1.6*An*Ao + 1.3*Ao**2)/(Ao + An)**2 & - + no2p/nnp*(Ao2/(An + Ao2))**0.5*(3*An**2 + 1.6*An*Ao2 + 1.3*Ao2**2)/(Ao2 + An)**2 & - + nn2p/nnp*(An2/(An + An2))**0.5*(3*An**2 + 1.6*An*An2 + 1.3*An2**2)/(An2 + An)**2 & - + nnop/nnp*(Ano/(An + Ano))**0.5*(3*An**2 + 1.6*An*Ano + 1.3*Ano**2)/(Ano + An)**2 & - )) - lam_i = (nop*lam_op + no2p*lam_o2p + nnop*lam_nop + nn2p*lam_n2p + nnp*lam_np) & - /(nop + no2p + nnop + nn2p + nnp)*1.602e-19*100 !Unit: J m-1 - - lam_i = lam_i*sinI2 - -! Use tri-diagnal solver to solve the equation - - do iLon = 1, nLons - do iLat = 1, nLats - - do iAlt = 1, nAlts - zu = alts(iLon, iLat, iAlt + 1) - alts(iLon, iLat, iAlt) - zl = alts(iLon, iLat, iAlt) - alts(iLon, iLat, iAlt - 1) - - lamu = lam_i(iLon, iLat, iAlt + 1) - lam_i(iLon, iLat, iAlt) - laml = lam_i(iLon, iLat, iAlt) - lam_i(iLon, iLat, iAlt - 1) - nni = ni(iLon, iLat, iAlt) - tti = ti(iLon, iLat, iAlt) - ilam = lam_i(iLon, iLat, iAlt) - - hcoef = zu*zl*(zu + zl) - xcoef = 1.5*Boltzmanns_Constant*nni/Dt - fcoef = (zl/hcoef)**2*lamu + (zu/hcoef)**2*laml - - a(iAlt) = 2*ilam/hcoef*zu - fcoef*zu**2 - b(iAlt) = -xcoef - 2*ilam/hcoef*(zu + zl) + fcoef*(zu**2 - zl**2) - iHeatingp(iLon, iLat, iAlt) - c(iAlt) = 2*ilam/hcoef*zl + fcoef*zl**2 - d(iAlt) = -xcoef*tti - iHeatingm(iLon, iLat, iAlt) - - if (iAlt .EQ. nAlts) then - a(iAlt) = 0. - b(iAlt) = -xcoef - iHeatingp(iLon, iLat, iAlt) - c(iAlt) = 0. - d(iAlt) = -xcoef*tti - iHeatingm(iLon, iLat, iAlt) - endif - - iConduction(iLon, iLat, iAlt) = c(iAlt)*ti(iLon, iLat, iAlt + 1) + & - a(iAlt)*ti(iLon, iLat, iAlt + 1) + & - (-2*ilam/hcoef*(zu + zl) + fcoef*(zu**2 - zl**2))*tti - - enddo - - ! Bottom Bounday Ti = Tn - a(1) = 0 - b(1) = 1 - c(1) = 0 - d(1) = Temperature(iLon, iLat, 1, iBlock)*TempUnit(iLon, iLat, 1) - - call tridag(a, b, c, d, u) - - itemp(iLon, iLat, 1:nAlts) = u(1:nAlts) - itemp(iLon, iLat, nAlts + 1) = itemp(iLon, iLat, nAlts) - itemp(iLon, iLat, 0) = itemp(iLon, iLat, 1) - enddo - enddo - -!!!! Check if reasonable temperatures - where (etemp .LT. tn) etemp = tn - where (etemp .GT. 6000.) etemp = 6000. - - eTemperature(1:nLons, 1:nLats, 0:nAlts + 1, iBlock) = etemp(1:nLons, 1:nLats, 0:nAlts + 1) - eTemperature(1:nLons, 1:nLats, -1, iBlock) = etemp(1:nLons, 1:nLats, 0) - eTemperature(1:nLons, 1:nLats, nAlts + 2, iBlock) = etemp(1:nLons, 1:nLats, nAlts + 1) - - where (itemp .GT. tipct*etemp) itemp = tipct*etemp - where (itemp .LT. tn) itemp = tn - where (itemp .GT. 6000.) itemp = 6000. - - iTemperature(1:nLons, 1:nLats, 0:nAlts + 1, iBlock) = itemp(1:nLons, 1:nLats, 0:nAlts + 1) - iTemperature(1:nLons, 1:nLats, -1, iBlock) = itemp(1:nLons, 1:nLats, 0) - iTemperature(1:nLons, 1:nLats, nAlts + 2, iBlock) = itemp(1:nLons, 1:nLats, nAlts + 1) - -contains - Subroutine tridag(a, b, c, d, u) - - use ModSizeGitm - implicit none - real(kind=8), intent(in)::a(nAlts), b(nAlts), c(nAlts), d(nAlts) - real(kind=8), intent(out)::u(nAlts) - real(kind=8):: cpp(nAlts), dpp(nAlts) - real(kind=8) :: m - - ! initialize c-prime and d-prime - cpp(1) = c(1)/b(1) - dpp(1) = d(1)/b(1) - ! solve for vectors c-prime and d-prime - do iAlt = 2, nAlts - m = b(iAlt) - cpp(iAlt - 1)*a(iAlt) - cpp(iAlt) = c(iAlt)/m - dpp(iAlt) = (d(iAlt) - dpp(iAlt - 1)*a(iAlt))/m - enddo - - ! initialize u - u(nAlts) = dpp(nAlts) - ! solve for u from the vectors c-prime and d-prime - do iAlt = nAlts - 1, 1, -1 - u(iAlt) = dpp(iAlt) - cpp(iAlt)*u(iAlt + 1) - enddo - - end subroutine tridag - -!--------- calculate thermoelectric FAC currents------- - - Subroutine calc_thermoelectric_current - - real, dimension(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3) :: iVelo, eVelo - real, dimension(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3) :: JuTotal, OverB0 - real, dimension(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2) :: DivJPerp, JuTotalDotB - real, dimension(-1:nLons + 2, -1:nLats + 2, -1:nAlts + 2, 3) :: & - Gradient_GC - - integer :: iDir - - iVelo = IVelocity(:, :, :, :, iBlock) - eVelo = ExB(:, :, :, :) - - JuTotal = 0.0 - - do iDir = 1, 3 - JuTotal(:, :, :, iDir) = IDensityS(:, :, :, ie_, iBlock)*Element_Charge* & - (iVelo(:, :, :, iDir) - eVelo(:, :, :, iDir)) - - OverB0(:, :, :, iDir) = B0(:, :, :, iDir, iBlock)/B0(:, :, :, iMag_, iBlock)**2 - enddo - - do iAlt = -1, nAlts + 2 - do iLat = -1, nLats + 2 - do iLon = -1, nLons + 2 - JuTotalDotB(iLon, iLat, iAlt) = sum( & - JuTotal(iLon, iLat, iAlt, 1:3)* & - B0(iLon, iLat, iAlt, 1:3, iBlock)) - enddo - enddo - enddo - - DivJPerp = 0.0 - do iDir = 1, 3 - call UAM_Gradient_GC(JuTotal(:, :, :, iDir), Gradient_GC, iBlock) - DivJPerp(:, :, :) = DivJPerp(:, :, :) + Gradient_GC(:, :, :, iDir) - - call UAM_Gradient_GC(JuTotalDotB(:, :, :), Gradient_GC, iBlock) - DivJPerp(:, :, :) = DivJPerp(:, :, :) - Gradient_GC(:, :, :, iDir) & - *B0(:, :, :, iDir, iBlock)/B0(:, :, :, iMag_, iBlock)**2 - - call UAM_Gradient_GC(OverB0(:, :, :, iDir), Gradient_GC, iBlock) - DivJPerp(:, :, :) = DivJPerp(:, :, :) - Gradient_GC(:, :, :, iDir) & - *JuTotalDotB(:, :, :) - enddo - - PartialJPara = -DivJPerp - - JParaAlt = 0.0 - do iAlt = 1, nAlts - JParaAlt(:, :) = JParaAlt(:, :) - DivJPerp(:, :, iAlt)*dAlt_GB(:, :, iAlt, iBlock) - enddo - - end Subroutine calc_thermoelectric_current - -end subroutine calc_electron_temperature - -subroutine calc_electron_ion_sources(iBlock, eHeatingp, iHeatingp, eHeatingm, iHeatingm, iHeating) - - use ModSizeGitm - use ModGITM - use ModPlanet - use ModRates - use ModEUV - use ModSources - use ModConstants - use ModUserGITM - use ModTime - use ModInputs - - implicit none - integer, intent(in) :: iBlock - - real(kind=8), dimension(nLons, nLats, nAlts), intent(out) :: eHeatingp, iHeatingp, eHeatingm, iHeatingm, iHeating - real(kind=8), dimension(nLons, nLats, nAlts) :: & - nn, ni, ne, nh, nhe, no, nn2, no2, nnr, nno, & - tn, te, ti, temp, te_6000, te_exc, tn_exc, & - nop, no2p, nn2p, nnop, nhp, nhep, nnp, & - nu_oop, nu_nnp, nu_o2o2p, nu_o2op, nu_n2op, nu_n2o2p, & - nu_oo2p, nu_n2n2p, tr, dv2, dv2_en, dv2_ei - real(kind=8), dimension(nLons, nLats, nAlts) :: Qphe, Qenc, Qeic, Qiec, & - Qinc_t, Qinc_v, Qnic_t, Qnic_v, iAdvection, Qaurora, QprecipIon, & - Qencp, Qeicp, Qiecp, Qinc_tp, Qrotp, Qfp, Qexcp, Qvib_o2p, Qvib_n2p, & - Qencm, Qeicm, Qiecm, Qinc_tm, Qrotm, Qfm, Qexcm, Qvib_o2m, Qvib_n2m, & - Qrot, Qf, Qeic_v, Qenc_v, Qexc, Qvib_o2, Qvib_n2 - real(kind=8), dimension(nLons, nLats, nAlts) :: x, epsilon, logx - real(kind=8), dimension(nLons, nLats, nAlts) :: dz_u, dz_l - real(kind=8), dimension(nLons, nLats, nAlts) :: alts - -! for O2 vibration - real(kind=8), dimension(nLons, nLats, nAlts, 10) :: Q0v - real(kind=8), dimension(7) :: Av, Bv, Cv, Dv, Fv, Gv - real(kind=8), dimension(nLons, nLats, nAlts) :: logQ - -! for V2 vibration - real(kind=8), dimension(10) :: Av0, Bv0, Cv0, Dv0, Fv0 - real(kind=8), dimension(2:9) :: Av1, Bv1, Cv1, Dv1, Fv1 - real(kind=8) :: Av0L, Bv0L, Cv0L, Dv0L, Fv0L - real(kind=8), dimension(nLons, nLats, nAlts, 10) :: logQv0 - real(kind=8), dimension(nLons, nLats, nAlts, 2:9) :: logQv1 - real(kind=8) :: tte, ttn, tte_6000 - integer :: iLevel - -! for O fine structure - real(kind=8), parameter :: s21 = 1.863e-11 - real(kind=8), parameter :: s20 = 1.191e-11 - real, dimension(nLons, nLats, nAlts) :: s10, Dfine - -! for O excitation - real(kind=8), dimension(nLons, nLats, nAlts) :: dexc - -! Aurora heaeting efficiency coefffient - real(kind=8) :: auroheat = 1.0 - - integer :: iDir, iAlt, iLon, iLat - real :: tipct = 1.1 - - te = eTemperature(1:nLons, 1:nLats, 1:nAlts, iBlock) - ti = iTemperature(1:nLons, 1:nLats, 1:nAlts, iBlock) - tn = Temperature(1:nLons, 1:nLats, 1:nAlts, iBlock)* & - TempUnit(1:nLons, 1:nLats, 1:nAlts) - nn = NDensity(1:nLons, 1:nLats, 1:nAlts, iBlock) - ne = IDensityS(1:nLons, 1:nLats, 1:nAlts, ie_, iBlock) - ni = IDensityS(1:nLons, 1:nLats, 1:nAlts, ie_, iBlock) - no = NDensityS(1:nLons, 1:nLats, 1:nAlts, iO_3P_, iBlock) & - + NDensityS(1:nLons, 1:nLats, 1:nAlts, iO_1D_, iBlock) - - !Neutral Nitrgen - nnr = NDensityS(1:nLons, 1:nLats, 1:nAlts, iN_4S_, iBlock) & - + NDensityS(1:nLons, 1:nLats, 1:nAlts, iN_2D_, iBlock) & - + NDensityS(1:nLons, 1:nLats, 1:nAlts, iN_2P_, iBlock) - - nh = NDensityS(1:nLons, 1:nLats, 1:nAlts, iH_, iBlock) - nhe = NDensityS(1:nLons, 1:nLats, 1:nAlts, iHe_, iBlock) - nn2 = NDensityS(1:nLons, 1:nLats, 1:nAlts, iN2_, iBlock) - no2 = NDensityS(1:nLons, 1:nLats, 1:nAlts, iO2_, iBlock) - nno = NDensityS(1:nLons, 1:nLats, 1:nAlts, iNO_, iBlock) -! Ions - - nop = IDensityS(1:nLons, 1:nLats, 1:nAlts, iO_4SP_, iBlock) + & - IDensityS(1:nLons, 1:nLats, 1:nAlts, iO_2DP_, iBlock) + & - IDensityS(1:nLons, 1:nLats, 1:nAlts, iO_2PP_, iBlock) - no2p = IDensityS(1:nLons, 1:nLats, 1:nAlts, iO2P_, iBlock) - nn2p = IDensityS(1:nLons, 1:nLats, 1:nAlts, iN2P_, iBlock) - nnop = IDensityS(1:nLons, 1:nLats, 1:nAlts, iNOP_, iBlock) - nhp = IDensityS(1:nLons, 1:nLats, 1:nAlts, iHP_, iBlock) - nhep = IDensityS(1:nLons, 1:nLats, 1:nAlts, iHeP_, iBlock) - nnp = IDensityS(1:nLons, 1:nLats, 1:nAlts, iNP_, iBlock) - - alts = Altitude_GB(1:nLons, 1:nLats, 1:nAlts, iBlock) - - where (ti .LE. tn) ti = tn*1.0001 - where (te .LE. tn) te = tn*1.0001 - where (ti .GE. te*tipct) te = ti/tipct - te_6000 = te - te_exc = te - where (te_6000 .GT. 6000.) te_6000 = 6000.0 - where (te_exc .GT. 18000.) te_exc = 18000. - -! 1. Photoelectron heating from swartz and nisbet 1972 - - Qphe = 0.0 - x = ne/(nn2 + no2 + no) -!!! fitting range - where (x .GT. 10.) x = 10. - ! where(x .LT. 2.e-8) x=2.e-8 - - logx = log(x) - epsilon = exp(5.342 + 1.056*logx - 4.392e-2*logx**2 - 5.9e-2*logx**3 - 9.346e-3*logx**4 & - - 5.755e-4*logx**5 - 1.249e-5*logx**6)*1.6e-19 - - !!! change epsilon -! where(alts .LE. 20000.) epsilon = 0.0001 - - Qphe = epsilon*( & - EuvIonRateS(:, :, :, iO_4SP_, iBlock)*no & - + EuvIonRateS(:, :, :, iO2P_, iBlock)*no2 & - + EuvIonRateS(:, :, :, iN2P_, iBlock)*nn2 & - + EuvIonRateS(:, :, :, iNP_, iBlock)*nnr & - + EuvIonRateS(:, :, :, iNOP_, iBlock)*nno & - + EuvIonRateS(:, :, :, iO_2DP_, iBlock)*no & - + EuvIonRateS(:, :, :, iO_2PP_, iBlock)*no & - ) - -! Auroral heating - Qaurora = 0.0 - Qaurora = auroheat*epsilon*( & - AuroralIonRateS(:, :, :, iO_3P_, iBlock) & - + AuroralIonRateS(:, :, :, iO2_, iBlock) & - + AuroralIonRateS(:, :, :, iN2_, iBlock) & - ) - -! Ion Precipitation heating - - QprecipIon = 0.0 - QprecipIon = epsilon*( & - IonPrecipIonRateS(:, :, :, iO_3P_, iBlock) & - + IonPrecipIonRateS(:, :, :, iO2_, iBlock) & - + IonPrecipIonRateS(:, :, :, iN2_, iBlock) & - ) - -! 2. ion-electron collisions From Schunk and Nagy 2009, and Bei-Chen Zhang and Y. Kamide 2003 - - Qeic = ne*Mass_Electron*3.*Boltzmanns_Constant*(ti - te)*5.45*1.e-5/(te**1.5)* & - (nop/(Mass_Electron + MassI(iO_4SP_)) & - + no2p/(Mass_Electron + MassI(iO2P_)) & - + nn2p/(Mass_Electron + MassI(iN2P_)) & - + nnop/(Mass_Electron + MassI(iNOP_)) & - ! + nhp/(Mass_Electron+MassI(iHP_)) & - ! + nhep/(Mass_Electron+MassI(iHeP_)) & - + nnp/(Mass_Electron + MassI(iNP_)) & - ) - - Qeicp = ne*Mass_Electron*3.*Boltzmanns_Constant*5.45*1.e-5/(te**1.5)* & - (nop/(Mass_Electron + MassI(iO_4SP_)) & - + no2p/(Mass_Electron + MassI(iO2P_)) & - + nn2p/(Mass_Electron + MassI(iN2P_)) & - + nnop/(Mass_Electron + MassI(iNOP_)) & - ! + nhp/(Mass_Electron+MassI(iHP_)) & - ! + nhep/(Mass_Electron+MassI(iHeP_)) & - + nnp/(Mass_Electron + MassI(iNP_)) & - ) - - Qeicm = Qeicp*ti - Qiecp = Qeicp - Qiecm = Qiecp*te - -! 3. Elastic electron-neutral interactions From Shunk and Nagy 2009; actual value - Qenc = ne*Mass_Electron*3.*Boltzmanns_Constant*(tn - te)* & - (2.33e-11*nn2*1.e-6*(1 - 1.21e-4*te)*te/(Mass_Electron + Mass(iN2_)) & - + 1.82e-10*no2*1.e-6*(1 + 3.60e-2*te**0.5)*te**0.5/(Mass_Electron + Mass(iO2_)) & - + 8.90e-11*no*1.e-6*(1 + 5.70e-4*te)*te**0.5/(Mass_Electron + Mass(iO_3P_)) & - ! + 4.6e-10 * nhe * 1.e-6 * te**0.5 / (Mass_Electron + Mass(iH_)) + & - ! + 4.5e-9 * nh * 1.e-6 * (1 - 1.35e-4 * te) * te**0.5 / (Mass_Electron + Mass(iHe_)) & - ) - - Qencp = ne*Mass_Electron*3.*Boltzmanns_Constant* & - (2.33e-11*nn2*1.e-6*(1 - 1.21e-4*te)*te/(Mass_Electron + Mass(iN2_)) & - + 1.82e-10*no2*1.e-6*(1 + 3.60e-2*te**0.5)*te**0.5/(Mass_Electron + Mass(iO2_)) & - + 8.90e-11*no*1.e-6*(1 + 5.70e-4*te)*te**0.5/(Mass_Electron + Mass(iO_3P_)) & - ! + 4.6e-10 * nhe * 1.e-6 * te**0.5 / (Mass_Electron + Mass(iH_)) + & - ! + 4.5e-9 * nh * 1.e-6 * (1 - 1.35e-4 * te) * te**0.5 / (Mass_Electron + Mass(iHe_)) & - ) - - Qencm = Qencp*tn - - dv2_en = 0.0 - do iDir = 1, 3 - dv2_en = dv2_en + (Velocity(1:nLons, 1:nLats, 1:nAlts, iDir, iBlock) & - - ExB(1:nLons, 1:nLats, 1:nAlts, iDir))**2 - enddo - - Qenc_v = ne*Mass_Electron*dv2_en* & - (2.33e-11*nn2*1.e-6*(1 - 1.21e-4*te)*te*Mass(iN2_)/(Mass_Electron + Mass(iN2_)) & - + 1.82e-10*no2*1.e-6*(1 + 3.60e-2*te**0.5)*te**0.5*Mass(iO2_)/(Mass_Electron + Mass(iO2_)) & - + 8.90e-11*no*1.e-6*(1 + 5.70e-4*te)*te**0.5*Mass(iO2_)/(Mass_Electron + Mass(iO_3P_)) & - ! ! + 4.6e-10 * nhe * 1.e-6 * te**0.5 / (Mass_Electron + Mass(iH_)) + & - ! ! + 4.5e-9 * nh * 1.e-6 * (1 - 1.35e-4 * te) * te**0.5 / (Mass_Electron + Mass(iHe_)) & - ) - - dv2_ei = 0.0 - do iDir = 1, 3 - dv2_ei = dv2_ei + (IVelocity(1:nLons, 1:nLats, 1:nAlts, iDir, iBlock) & - - ExB(1:nLons, 1:nLats, 1:nAlts, iDir))**2 - enddo - - Qeic_v = ne*Mass_Electron*dv2_ei*5.45*1.e-5/(te**1.5)*(nop + no2p + nn2p + nnop + nnp) -! (nop/(Mass_Electron+MassI(iO_4SP_)) & -! + no2p/(Mass_Electron+MassI(iO2P_)) & -! + nn2p/(Mass_Electron+MassI(iN2P_)) & -! + nnop/(Mass_Electron+MassI(iNOP_)) & -! ! + nhp/(Mass_Electron+MassI(iHP_)) & -! ! + nhep/(Mass_Electron+MassI(iHeP_)) &! -! + nnp/(Mass_Electron+MassI(iNP_)) & -! ) - -! 3. Neutral (N2, O2) rotation From Shunk & Nagy Page 277 - Qrot = 0.0 - Qrot = 3.5e-14*ne*1.e-6*nn2*1.e-6*(tn - te)/(te**0.5) + & ! N2 - 5.2e-15*ne*1.e-6*no2*1.e-6*(tn - te)/(te**0.5) ! O2 - Qrot = Qrot*1.6e-13 ! eV cm-3 s -> J m-3 - - Qrotp = 3.5e-14*ne*1.e-6*nn2*1.e-6/(te**0.5) + & ! N2 - 5.2e-15*ne*1.e-6*no2*1.e-6/(te**0.5) ! O2 - Qrotp = Qrotp*1.6e-13 - Qrotm = Qrotp*tn - -! 5. fine strcture heating rate by Shunk and Nagy Page 282 - Qf = 0.0 - Dfine = 5.+exp(-326.6/tn) + 3.*exp(-227.7/tn) - s10 = 8.249e-16*te**0.6*exp(-227.7/tn) - Qf = ne*no*1.e-12/Dfine*(s10*(1.-exp(98.9*(1/te - 1/tn))) + & - s20*(1.-exp(326.6*(1/te - 1/tn))) + & - s21*(1.-exp(227.7*(1/te - 1/tn)))) - Qf = -Qf*1.6e-13 ! eV cm-3 s-1 -> J m-3 s-1 - - Qfp = 0. - Qfm = Qf - -! 6. O(1D) excitation - - Qexc = 0.0 - where (tn .GE. te_exc) tn = te_exc - dexc = 2.4e4 + 0.3*(te_exc - 1500.) - 1.947e-5*(te_exc - 1500.)*(te_exc - 4000.) - Qexc = 1.57e-12*ne*no*1.e-12*exp(dexc*(te_exc - 3000.)/3000./te_exc)*(exp(-22713*(te_exc - tn)/te_exc/tn) - 1) - Qexc = Qexc*1.6e-13 ! eV cm-3 s-1 -> J m-3 s-1 - - Qexcp = 0. - Qexcm = Qexc - -! 7. O2 vibration - - Qvib_o2 = 0.0 - - ! set a small value for no O2 vibration - logQ = -20. - - where (te_6000 .GE. 300) logQ = 5.0148e-31*te_6000**9 - 1.5346e-26*te_6000**8 & - + 2.0127e-22*te_6000**7 - 1.4791e-18*te_6000**6 + 6.6865e-15*te_6000**5 & - - 1.9228e-11*te_6000**4 + 3.5187e-8*te_6000**3 - 3.996e-5*te_6000**2 & - + 0.0267*te_6000 - 19.9171 - - Qvib_o2 = ne*no2*1.e-12*10**(logQ)*(1 - exp(2239.*(1./te - 1./tn))) - Qvib_o2 = -Qvib_o2*1.6e-13 - - Qvib_o2p = 0. - Qvib_o2m = Qvib_o2 - -! 8. N2 vibration from Pavlov 1998a - - Qvib_n2 = 0.0 - - !!! 1500K <= Te <=6000K - Av0 = (/2.025, -7.066, -8.211, -9.713, -10.353, & - -10.819, -10.183, -12.698, -14.710, -17.538/) - Bv0 = (/8.782e-4, 1.001e-2, 1.092e-2, 1.204e-2, & - 1.243e-2, 1.244e-2, 1.185e-2, 1.309e-2, 1.409e-2, 1.6e-2/) - Cv0 = (/2.954e-7, -3.066e-6, -3.369e-6, -3.732e-6, -3.850e-6, & - -3.771e-6, -3.570e-6, -3.952e-6, -4.249e-6, -4.916e-6/) - Dv0 = (/-9.562e-11, 4.436e-10, 4.891e-10, 5.431e-10, 5.6e-10, 5.385e-10, & - 5.086e-10, 5.636e-10, 6.058e-10, 7.128e-10/) - Fv0 = (/7.252e-15, -2.449e-14, -2.706e-14, -3.008e-14, -3.1e-14, & - -2.936e-14, -2.769e-14, -3.071e-14, -3.3e-14, -3.941e-14/) - - !!! 300K <= Te <= 1500K - Av0L = -6.462 - Bv0L = 3.151e-2 - Cv0L = -4.075e-5 - Dv0L = 2.439e-8 - Fv0L = -5.479e-12 - - !!! 1500K <= Te <=6000K - Av1 = (/-3.413, -4.16, -5.193, -5.939, -8.261, -8.185, -10.823, -11.273/) - Bv1 = (/7.326e-3, 7.803e-3, 8.36e-3, 8.807e-3, 1.01e-2, 1.01e-2, 1.199e-2, 1.283e-2/) - Cv1 = (/-2.2e-6, -2.352e-6, -2.526e-6, -2.669e-6, -3.039e-6, -3.039e-6, -3.62e-6, -3.879e-6/) - Dv1 = (/3.128e-10, 3.352e-10, 3.606e-10, 3.806e-10, 4.318e-10, 4.318e-10, 5.159e-10, 5.534e-10/) - Fv1 = (/-1.702e-14, -1.828e-14, -1.968e-14, -2.073e-14, -2.347e-14, -2.347e-14, -2.81e-14, -3.016e-14/) - - !set small values for no n2 vibration - logQv0 = -20. - logQv1 = -20. - - do iLon = 1, nLons - do iLat = 1, nLats - do iAlt = 1, nAlts - - tte = te(iLon, iLat, iAlt) - ttn = tn(iLon, iLat, iAlt) - tte_6000 = te_6000(iLon, iLat, iAlt) - - if (tte .LE. 1500 .AND. tte .GT. 300) then - ! if (tte .LE. 1500.) then - - logQv0(iLon, iLat, iAlt, 1) = Av0L + Bv0L*tte + Cv0L*tte**2 + Dv0L*tte**3 + Fv0L*tte**4 - 16. - Qvib_n2(iLon, iLat, iAlt) = (1.-exp(-3353./ttn))* & - 10**logQv0(iLon, iLat, iAlt, 1)*(1.-exp(1*3353.*(1./tte - 1./ttn))) - -! else if (tte .LE. 6000 .AND. tte .GT. 1500) then - else if (tte .GT. 1500) then - - logQv0(iLon, iLat, iAlt, :) = Av0 + Bv0*tte_6000 + Cv0*tte_6000**2 & - + Dv0*tte_6000**3 + Fv0*tte_6000**4 - 16. - logQv1(iLon, iLat, iAlt, :) = Av1 + Bv1*tte_6000 + Cv1*tte_6000**2 & - + Dv1*tte_6000**3 + Fv1*tte_6000**4 - 16. - - do iLevel = 1, 10 - Qvib_n2(iLon, iLat, iAlt) = & - Qvib_n2(iLon, iLat, iAlt) & - + (1.-exp(-3353./ttn))*10**logQv0(iLon, iLat, iAlt, iLevel) & - *(1.-exp(iLevel*3353.*(1./tte - 1./ttn))) - enddo - - do iLevel = 2, 9 - Qvib_n2(iLon, iLat, iAlt) = Qvib_n2(iLon, iLat, iAlt) + & - (1.-exp(-3353./ttn))*exp(-3353./ttn)*10**logQv1(iLon, iLat, iAlt, iLevel)* & - (1.-exp((iLevel - 1)*3353.*(1./tte - 1./ttn))) - enddo - - endif - enddo - enddo - enddo - - Qvib_n2 = -ne*nn2*1.e-12*Qvib_n2*1.6e-13 - - Qvib_n2p = 0. - Qvib_n2m = Qvib_n2 - -!!!!! Ion-neutral heating rate - tr = (tn + ti)/2. - nu_nnp = 0.0 - nu_oop = 0.0 - nu_o2o2p = 0.0 - nu_n2n2p = 0.0 - nu_o2op = 0.0 - nu_n2op = 0.0 - nu_n2o2p = 0.0 - nu_oo2p = 0.0 - where (tr .GT. 275.) nu_nnp = 3.83e-11*nnr*1.e-6*tr**0.5*(1 - 0.063*log10(tr))**2 - where (tr .GT. 235.) nu_oop = 3.67e-11*no*1.e-6*tr**0.5*(1 - 0.064*log10(tr))**2 - where (tr .GT. 800.) nu_o2o2p = 2.59e-11*no2*1.e-6*tr**0.5*(1 - 0.073*log10(tr))**2 - where (tr .GT. 170.) nu_n2n2p = 5.14e-11*nn2*1.e-6*tr**0.5*(1 - 0.069*log10(tr))**2 - nu_o2op = 6.64*1.e-10*no2*1.e-6 - nu_n2op = 6.82*1.e-10*nn2*1.e-6 - nu_n2o2p = 4.13*1.e-10*nn2*1.e-6 - nu_oo2p = 2.31*1.e-10*no*1.e-6 - - dv2 = 0.0 - do iDir = 1, 3 - dv2 = dv2 + (IVelocity(1:nLons, 1:nLats, 1:nAlts, iDir, iBlock) & - - Velocity(1:nLons, 1:nLats, 1:nAlts, iDir, iBlock))**2 - enddo - - Qinc_t = nop*MassI(iO_4SP_)*nu_oop*(3.*Boltzmanns_Constant*(tn - ti))/(MassI(iO_4SP_) + Mass(iO_3P_)) & - + nnp*MassI(iNP_)*nu_nnp*(3.*Boltzmanns_Constant*(tn - ti))/(MassI(iNP_) + Mass(iN_2P_)) & - + nop*MassI(iO_4SP_)*nu_o2op*(3.*Boltzmanns_Constant*(tn - ti))/(MassI(iO_4SP_) + Mass(iO2_)) & - + nop*MassI(iO_4SP_)*nu_n2op*(3.*Boltzmanns_Constant*(tn - ti))/(MassI(iO_4SP_) + Mass(iN2_)) & - + no2p*MassI(iO2P_)*nu_o2o2p*(3.*Boltzmanns_Constant*(tn - ti))/(MassI(iO2P_) + Mass(iO2_)) & - + no2p*MassI(iO2P_)*nu_n2o2p*(3.*Boltzmanns_Constant*(tn - ti))/(MassI(iO2P_) + Mass(iN2_)) & - + nn2p*MassI(iN2P_)*nu_n2n2p*(3.*Boltzmanns_Constant*(tn - ti))/(MassI(iN2P_) + Mass(iN2_)) & - + no2p*MassI(iO2P_)*nu_oo2p*(3.*Boltzmanns_Constant*(tn - ti))/(MassI(iO2P_) + Mass(iO_3P_)) - - Qinc_tp = nop*MassI(iO_4SP_)*nu_oop*3.*Boltzmanns_Constant/(MassI(iO_4SP_) + Mass(iO_3P_)) & - + nnp*MassI(iNP_)*nu_nnp*3.*Boltzmanns_Constant/(MassI(iNP_) + Mass(iN_2P_)) & - + nop*MassI(iO_4SP_)*nu_o2op*3.*Boltzmanns_Constant/(MassI(iO_4SP_) + Mass(iO2_)) & - + nop*MassI(iO_4SP_)*nu_n2op*3.*Boltzmanns_Constant/(MassI(iO_4SP_) + Mass(iN2_)) & - + no2p*MassI(iO2P_)*nu_o2o2p*3.*Boltzmanns_Constant/(MassI(iO2P_) + Mass(iO2_)) & - + no2p*MassI(iO2P_)*nu_n2o2p*3.*Boltzmanns_Constant/(MassI(iO2P_) + Mass(iN2_)) & - + nn2p*MassI(iN2P_)*nu_n2n2p*3.*Boltzmanns_Constant/(MassI(iN2P_) + Mass(iN2_)) & - + no2p*MassI(iO2P_)*nu_oo2p*3.*Boltzmanns_Constant/(MassI(iO2P_) + Mass(iO_3P_)) - - Qinc_tm = Qinc_tp*tn - - Qinc_v = nop*MassI(iO_4SP_)*nu_oop*Mass(iO_3P_)*dv2/(MassI(iO_4SP_) + Mass(iO_3P_)) & - + nnp*MassI(iNP_)*nu_nnp*Mass(iN_2P_)*dv2/(MassI(iNP_) + Mass(iN_2P_)) & - + nop*MassI(iO_4SP_)*nu_o2op*Mass(iO2_)*dv2/(MassI(iO_4SP_) + Mass(iO2_)) & - + nop*MassI(iO_4SP_)*nu_n2op*Mass(iN2_)*dv2/(MassI(iO_4SP_) + Mass(iN2_)) & - + no2p*MassI(iO2P_)*nu_o2o2p*Mass(iO2_)*dv2/(MassI(iO2P_) + Mass(iO2_)) & - + no2p*MassI(iO2P_)*nu_n2o2p*Mass(iN2_)*dv2/(MassI(iO2P_) + Mass(iN2_)) & - + nn2p*MassI(iN2P_)*nu_n2n2p*Mass(iN2_)*dv2/(MassI(iN2P_) + Mass(iN2_)) & - + no2p*MassI(iO2P_)*nu_oo2p*Mass(iO_3P_)*dv2/(MassI(iO2P_) + Mass(iO_3P_)) - -!!! Ion-neutral heating rate from Banks 1967 - - Qnic_v = nop*MassI(iO_4SP_)**2*nu_oop*dv2/(MassI(iO_4SP_) + Mass(iO_3P_)) & - + nnp*MassI(iNP_)**2*nu_nnp*dv2/(MassI(iNP_) + Mass(iN_2P_)) & - + nop*MassI(iO_4SP_)**2*nu_o2op*dv2/(MassI(iO_4SP_) + Mass(iO2_)) & - + nop*MassI(iO_4SP_)**2*nu_n2op*dv2/(MassI(iO_4SP_) + Mass(iN2_)) & - + no2p*MassI(iO2P_)**2*nu_o2o2p*dv2/(MassI(iO2P_) + Mass(iO2_)) & - + no2p*MassI(iO2P_)**2*nu_n2o2p*dv2/(MassI(iO2P_) + Mass(iN2_)) & - + nn2p*MassI(iN2P_)**2*nu_n2n2p*dv2/(MassI(iN2P_) + Mass(iN2_)) & - + no2p*MassI(iO2P_)**2*nu_oo2p*dv2/(MassI(iO2P_) + Mass(iO_3P_)) - - Qnic_t = -Qinc_t - - if (UseJouleHeating .and. UseIonDrag) then - -! JouleHeating = (Qnic_t(:,:,1:nAlts) + Qnic_v(:,:,1:nAlts))/ & -! TempUnit(1:nLons,1:nLats,1:nAlts) / & -! cp(:,:,1:nAlts,iBlock) / Rho(1:nLons,1:nLats,1:nAlts,iBlock) - - JouleHeating = (Qnic_v(:, :, 1:nAlts)*2.)/ & - TempUnit(1:nLons, 1:nLats, 1:nAlts)/ & - cp(:, :, 1:nAlts, iBlock)/Rho(1:nLons, 1:nLats, 1:nAlts, iBlock) - - else - - JouleHeating = 0.0 - - endif - - ElectronHeating = -Qenc(:, :, 1:nAlts)/ & - TempUnit(1:nLons, 1:nLats, 1:nAlts)/ & - cp(:, :, 1:nAlts, iBlock)/Rho(1:nLons, 1:nLats, 1:nAlts, iBlock) - -!!!!!! Qaurora = 0.0 - - eHeatingm = Qphe + Qencm + Qeicm + Qrotm + Qf + Qexc + Qvib_o2 + Qvib_n2 + Qaurora + QprecipIon + Qenc_v + Qeic_v - eHeatingp = Qencp + Qeicp + Qrotp - iHeatingm = Qiecm + Qinc_tm + Qinc_v - iHeatingp = Qiecp + Qinc_tp - iHeating = Qiec + Qinc_t + Qinc_v - -end subroutine calc_electron_ion_sources - diff --git a/src/chapman_new.f90 b/src/chapman.f90 similarity index 100% rename from src/chapman_new.f90 rename to src/chapman.f90 diff --git a/src/chapman.pro b/src/chapman.pro deleted file mode 100644 index 29ac65a0..00000000 --- a/src/chapman.pro +++ /dev/null @@ -1,81 +0,0 @@ -; Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -; For more information, see http://csem.engin.umich.edu/tools/swmf - -nLats = 36 -nLons = 72 -nAlts = 20 - -r = fltarr(72,36,20) -t = fltarr(72,36,20) -p = fltarr(72,36,20) - -for i=0,nLats-1 do t(*,i,*) = -90.0 + (float(i)+0.5)/nLats * 180.0 -for i=0,nLons-1 do p(i,*,*) = 180.0 + (float(i)+0.5)/nLons * 360.0 -for i=0,nAlts-1 do r(*,*,i) = 6372.0 + 95.0 + (float(i)+0.5) * 20.0 - -t = t * !pi / 180.0 -p = (p mod 360.0) * !pi / 180.0 -r = r * 1000.0 - -h = 5.0 * 1000.0 - -x = r * cos(t) * cos(p) -y = r * cos(t) * sin(p) -z = r * sin(t) - -yz = sqrt(y^2 + z^2) - -sza = acos(x / r) - -xp = r / h - -y = (0.5 * !pi * xp)^0.5 * abs(x/r) - -ch = fltarr(72,36,20) - -erfcy = fltarr(72,36,20) - -a = 1.06069630 -b = 0.55643831 -c = 1.06198960 -d = 1.72456090 -f = 0.56498823 -g = 0.06651874 - -loc = where(y lt 8) -erfcy(loc) = (a+b*y(loc)) / (c+d*y(loc)+y(loc)^2) -loc = where(y gt 8) -erfcy(loc) = f / (g + y(loc)) - -loc = where(sza lt !pi/2) - -ch(loc) = h * (!pi * 0.5 * xp(loc))^0.5 * erfcy(loc) - -rg = r * cos(sza-!pi/2) -loc = where((r - rg)/h lt 30.0) - -eg = fltarr(72,36,20) + exp(30.0) -eg(loc) = exp((r(loc) - rg(loc))/h) - -xg = rg/h - -loc = where(sza gt !pi/2) - -ch(loc) = (!pi * 0.5 * xg(loc))^0.5 * h * (2 * eg(loc) - erfcy(loc)) - -loc = where((r - rg)/h lt 10.0 and sza gt !pi/2) -maxi = max(ch(loc)) - -print, maxi - -loc = where((r - rg)/h ge 10.0 and sza gt !pi/2) -ch(loc) = maxi - -makect, 'mid' -contour, alog10(ch(*,*,10)+0.001), nlevels = 30, /cell_fill -contour, alog10(ch(*,*,10)+0.001), /follow, nlevels = 10, /noerase - - - -end - diff --git a/src/check_for_nans.f90 b/src/check_for_nans.f90 index d7d95783..fc3430aa 100644 --- a/src/check_for_nans.f90 +++ b/src/check_for_nans.f90 @@ -25,6 +25,12 @@ subroutine check_for_nans_ions(cMarker) write(*, *) iLon, iLat, iAlt, iProc, iIon IsFound = .true. endif + if (ieee_is_nan(IVelocity(iLon, iLat, iAlt, 1, 1))) then + write(*, *) 'Nan found in iVelocity!! : ' + write(*, *) cMarker + write(*, *) iLon, iLat, iAlt, iProc, iIon + IsFound = .true. + endif if (iDensityS(iLon, iLat, iAlt, iIon, 1) < 0.0) then write(*, *) 'Negative density found in iDensityS : ' write(*, *) cMarker @@ -140,3 +146,56 @@ subroutine check_for_nans_temps(cMarker) if (IsFound) call stop_gitm("Stopping...") end subroutine check_for_nans_temps + +subroutine correct_min_ion_density + ! Corrects for ion densities below MinIonDensity + + use ModSizeGitm + use ModGitm + use ModInputs, only: minIonDensity, minIonDensityAdvect, iDebugLevel + implicit none + integer :: iLon, iLat, iAlt, iIon + + if (minval(IDensityS) < MinIonDensity) then + if (iDebugLevel > 5) & + write(*, *) "low ion density found... replacing with min ion density" + do iIon = 1, nIons + if (iIon > nIonsAdvect) then + if (minval(IDensityS(:, :, :, iIon, 1)) < MinIonDensity) then + do iLon = -1, nLons + 2 + do iLat = -1, nLats + 2 + do iAlt = -1, nAlts + 2 + if (iDensityS(iLon, iLat, iAlt, iIon, 1) < MinIonDensity) then + if (iDebugLevel > 7) & + write(*, *) ' -> low density found in iDensityS : ', & + iLon, iLat, iAlt, iProc, iIon, iDensityS(iLon, iLat, iAlt, iIon, 1), & + MinIonDensity + iDensityS(iLon, iLat, iAlt, iIon, 1) = MinIonDensity + endif + enddo + enddo + enddo + endif + else + if (minval(IDensityS(:, :, :, iIon, 1)) < MinIonDensityAdvect) then + do iLon = -1, nLons + 2 + do iLat = -1, nLats + 2 + do iAlt = -1, nAlts + 2 + if (iDensityS(iLon, iLat, iAlt, iIon, 1) < MinIonDensityAdvect) then + if (iDebugLevel > 7) & + write(*, *) ' -> low density found in iDensityS : ', & + iLon, iLat, iAlt, iProc, iIon, iDensityS(iLon, iLat, iAlt, iIon, 1), & + MinIonDensity + iDensityS(iLon, iLat, iAlt, iIon, 1) = MinIonDensityAdvect + endif + enddo + enddo + enddo + endif + endif + enddo + endif + + return + +end subroutine correct_min_ion_density diff --git a/src/finalize.f90 b/src/finalize.f90 index 50f1d77a..5efc3c1d 100644 --- a/src/finalize.f90 +++ b/src/finalize.f90 @@ -5,15 +5,18 @@ subroutine finalize_gitm use ModInputs use ModSphereInterface + use ModErrors implicit none - logical :: IsOk + logical :: didOk integer :: iError, iBlock, iOutputType integer :: nMLTsTmp, nLatsTmp - if (.not. Is1D) & - call UA_calc_electrodynamics(nMLTsTmp, nLatsTmp) + call start_timing("Finalize") + + ! if (.not. Is1D) & + ! call UA_calc_electrodynamics(nMLTsTmp, nLatsTmp) do iOutputType = 1, nOutputTypes do iBlock = 1, nBlocks @@ -30,6 +33,12 @@ subroutine finalize_gitm close(iOutputUnit_) endif + if (iProc == 0) then + call report_errors + call report_warnings + endif + + call end_timing("Finalize") call end_timing("GITM") if (iDebugLevel >= 0) call report_timing("all") @@ -37,8 +46,8 @@ subroutine finalize_gitm if (.not. Is1D) then ! cleanup UAM !! get rid of data xfer structure - call UAM_XFER_destroy(ok=IsOk) - if (.not. IsOk) then + call UAM_XFER_destroy(ok=didOk) + if (.not. didOk) then call UAM_write_error() if (.not. IsFrameWork) call stop_gitm("problem with finalize") endif diff --git a/src/get_potential.f90 b/src/get_potential.f90 index 0dfadc2b..7714a3dd 100644 --- a/src/get_potential.f90 +++ b/src/get_potential.f90 @@ -5,278 +5,107 @@ subroutine init_get_potential use ModGITM use ModTime - use ModIndicesInterfaces use ModInputs - use ModUserGITM - use ModNewell - use ModOvationSME - use ModAeAuroralModel - use ModFtaModel - use ModEIE_Interface, only: EIEr3_HaveLats, EIEr3_HaveMLTs + use ModIE + use ModErrors + use ModElectrodynamics, only: IEModel_ implicit none - character(len=iCharLen_), dimension(100) :: Lines - character(len=iCharLen_) :: TimeLine - real :: bz - character(len=2) :: cDebugLevel - - logical :: IsFirstTime = .true. - integer :: iError - - integer :: nAmieLats, nAmieMlts, nAmieBlocks - - iError = 0 + integer :: iError = 0, iFile - if (.not. IsFirstTime .or. IsFramework) return call report("init_get_potential", 2) - IsFirstTime = .false. - - if (UseNewellAurora) then - call init_newell - UseIMF = .true. - endif - - if (UseOvationSME) then - call read_ovationsm_files - endif - - if (UseAeModel) then - call read_ae_model_files(iError) - endif - - if (UseFtaModel) then - call initialize_fta - endif - - call report("AMIE vs Weimer", 4) - - !!! Xing Meng Nov 2018 added UseRegionalAMIE to set up a local region - !!! with the potential from AMIE files and Weimer potential elsewhere - if (index(cAMIEFileNorth, "none") > 0 .or. UseRegionalAMIE) then + allocate(IEModel_) + IEModel_ = ieModel() - Lines(1) = "#BACKGROUND" - Lines(2) = "EIE/" + call IEModel_%verbose(iDebugLevel) - UseHPI = .true. - if (UseNewellAurora .or. UseOvationSME .or. UseAeModel) UseHPI = .false. - if (UseFTAModel) UseHPI = .false. - - call get_IMF_Bz(CurrentTime + TimeDelayHighLat, bz, iError) - - call IO_SetIMFBz(bz) - if (iError /= 0) then - write(*, *) "Can not find IMF Bz." - !write(*,*) "Setting potential to Millstone HPI." - !Lines(3) = "millstone_hpi" ! Change to "zero" if you want - call stop_gitm("must stop! Check your IMF file!!!") - else - Lines(3) = PotentialModel ! Change to "zero" if you want - UseIMF = .true. - endif - Lines(4) = AuroralModel - Lines(5) = "idontknow" - Lines(6) = "" + call IEModel_%efield_model(cPotentialModel) + call IEModel_%aurora_model(cAuroralModel) - else + ! Most likely do not need to change, use the default. + call IEModel_%model_dir("extIE/") - if (index(cAMIEFileNorth, "mhd") > 0) then - - Lines(1) = "#MHDFILE" - Lines(2) = cAMIEFileSouth - write(TimeLine, '(i4)') iTimeArray(1) - Lines(3) = TimeLine - write(TimeLine, '(i2)') iTimeArray(2) - Lines(4) = TimeLine - write(TimeLine, '(i2)') iTimeArray(3) - Lines(5) = TimeLine - Lines(6) = "" - - UseIMF = .false. - - else - - Lines(1) = "#AMIEFILES" - Lines(2) = cAMIEFileNorth - Lines(3) = cAMIEFileSouth - Lines(4) = "" - Lines(5) = "" - Lines(6) = "" - - UseIMF = .false. - - endif + ! If we are using AMIE files, set north and south files: + call IEModel_%filename_north(cAMIEFileNorth) + call IEModel_%filename_south(cAMIEFileSouth) + ! If we have a list of files, then set them this way: + if (nAMIENorth > 0) then + call IEModel_%nfiles_north(nAMIENorth) + do iFile = 1, nAMIENorth + call IEModel_%filename_list_north(iFile, cAMIEListNorth(iFile)) + enddo endif - Lines(7) = "#DEBUG" - call i2s(iDebugLevel, cDebugLevel, 2) - Lines(8) = cDebugLevel - Lines(9) = "0" - Lines(10) = "" - - if (IsFixedTilt) then - Lines(11) = "#FIXTILT" - Lines(12) = "T" - Lines(13) = "" - Lines(14) = "#END" - else - Lines(11) = "#END" + ! If we have a list of files, then set them this way: + if (nAMIESouth > 0) then + call IEModel_%nfiles_south(nAMIESouth) + do iFile = 1, nAMIESouth + call IEModel_%filename_list_south(iFile, cAMIEListSouth(iFile)) + enddo endif - call report("EIE_stuff", 4) - - call EIE_set_inputs(Lines) - - if (UseBarriers) call MPI_BARRIER(iCommGITM, iError) - call EIE_Initialize(iError) - if (UseBarriers) call MPI_BARRIER(iCommGITM, iError) - if (iError /= 0) then - write(*, *) & - "Code Error in IE_Initialize called from get_potential.f90" - write(*, *) "Error : ", iError - call stop_gitm("Stopping in get_potential") + ! If there were errors picking settings, stop before initializing + if (.not. isOk) then + call set_error("Failed to initialize ieModel! Exiting!") + call report_errors + call stop_gitm("Error setting requested IEModel parameters, did not initialize.") endif - if (UseRegionalAMIE) then - !!! read AMIE files - call AMIE_SetFileName(cAMIEFileNorth) - call readAMIEOutput(2, .false., iDebugLevel, iError) - if (iError /= 0) then - write(*, *) & - "Code Error in readAMIEOutput called from get_potential.f90" - write(*, *) "Error : ", iError - call stop_gitm("Stopping in get_potential") - endif - - write(*, *) 'done with reading amie north!' + ! Initialize the IE library after setting it up: + call IEModel_%init() - if (index(cAMIEFileSouth, 'mirror') > 0) then - call AMIE_SetFileName(cAMIEFileNorth) - call readAMIEOutput(1, .true., iDebugLevel, iError) - else - call AMIE_SetFileName(cAMIEFileSouth) - call readAMIEOutput(1, .false., iDebugLevel, iError) - endif + ! Set the time! + call IEModel_%time_real(CurrentTime) - call AMIE_GetnLats(nAmieLats) - call AMIE_GetnMLTs(nAmieMlts) - nAmieBlocks = 2 + ! Load in indices for the 0th time-step + call set_ie_indices(IEModel_, CurrentTime) - call EIE_InitGrid(nAmieLats, nAmieMlts, nAmieBlocks, iError) - if (iError /= 0) then - write(*, *) & - "Code Error in EIE_InitGrid called from get_potential.f90" - write(*, *) "Error : ", iError - call stop_gitm("Stopping in get_potential") - endif + ! Check that correct indices are present: + call IEModel_%check_indices - call AMIE_GetLats(EIEr3_HaveLats) - call AMIE_GetMLTs(EIEr3_HaveMLTs) + call report("ieModel indices were checked", 5) + ! If there were errors initializing, stop here + if (.not. isOk) then + call set_error("Failed to initialize ieModel! Exiting!") + call report_errors + call stop_gitm("Failed to initialize ieModel in get_potential. Check indices, probably.") endif -end subroutine init_get_potential - -!-------------------------------------------------------------------- -! set_indices -!-------------------------------------------------------------------- - -subroutine set_indices - - use ModGITM - use ModTime - use ModIndicesInterfaces - use ModInputs - use ModUserGITM - use ModNewell + ! Now run some checks on user's settings: + if (iProc == 0) then + if (IEModel_%iAurora_ == iOvationPrime_) then + if (NormalizeAuroraToHP) & + call raise_warning("You probably should not use NormalizeAuroraToHP and Ovation") - implicit none - - real :: temp, by, bz, vx, den - integer :: iError - iError = 0 - - if (UseIMF) then - - call read_NOAAHPI_Indices_new( & - iError, & - CurrentTime + TimeDelayHighLat, & - EndTime + TimeDelayHighLat) - call read_MHDIMF_Indices_new( & - iError, & - CurrentTime + TimeDelayHighLat, & - EndTime + TimeDelayHighLat) - call get_IMF_Bz(CurrentTime + TimeDelayHighLat, bz, iError) - if (bz < -50.0) bz = -50.0 - if (bz > 50.0) bz = 50.0 - call IO_SetIMFBz(bz) - - if (iError /= 0) then - write(*, *) & - "Code Error in get_IMF_Bz called from get_potential.f90" - write(*, *) "Code : ", iError - call stop_gitm("Stopping in get_potential") + if (UseIonAurora .and. IsKappaAurora) & + call raise_warning("Kappa aurora & ion precipitation cannot be used simultaneously, yet.") endif - - if (iDebugLevel > 1) write(*, *) "==> IMF Bz : ", bz - - call get_IMF_By(CurrentTime + TimeDelayHighLat, by, iError) - if (by < -50.0) by = -50.0 - if (by > 50.0) by = 50.0 - call IO_SetIMFBy(by) - - if (iError /= 0) then - write(*, *) & - "Code Error in get_IMF_By called from get_potential.f90" - call stop_gitm("Stopping in get_potential") - endif - - if (iDebugLevel > 1) write(*, *) "==> IMF By : ", by - - call get_SW_V(CurrentTime + TimeDelayHighLat, vx, iError) - if (vx < -2000.0) vx = -2000.0 - if (vx > 2000.0) vx = 2000.0 - call IO_SetSWV(vx) - - if (iError /= 0) then - write(*, *) "Code Error in get_sw_v called from get_potential.f90" - call stop_gitm("Stopping in get_potential") - endif - - if (iDebugLevel > 1) write(*, *) "==> Solar Wind Velocity : ", vx - - call get_SW_N(CurrentTime + TimeDelayHighLat, den, iError) - if (iError /= 0) den = 5.0 - call IO_SetSWN(den) - - if (UseNewellAurora) call calc_dfdt(by, bz, vx) - endif - if (UseHPI) then + if (IEModel_%iAurora_ /= iFRE_ .and. NormalizeAuroraToHP) & + call raise_warning("You probably should not be normalizing aurora with non-FRE models") - call get_HPI(CurrentTime + TimeDelayHighLat, temp, iError) - call IO_SetHPI(temp) + if (cPlanet == "Earth") then + if (IEModel_%iAurora_ == iZero_) & + call raise_warning("!!!! Warning!!!! Running on Earth with no aurora!!! ") + if (IEModel_%iEfield_ == iZero_) & + call raise_warning("!!!! Warning!!!! Running on Earth with no high latitude potential!!! ") + endif - if (iError /= 0) then - write(*, *) "Code Error in get_hpi called from get_potential.f90" - call stop_gitm("Stopping in get_potential") - endif + ! Initialize the grid: + call IEModel_%nMlts(nLons + 4) + call IEModel_%nLats(nLats + 4) - endif + call report("done with init_get_potential", 2) - if (index(cAMIEFileNorth, "none") <= 0 .and. & - index(cAMIEFileNorth, "SPS") <= 0 .and. (.not. UseRegionalAMIE)) then - ! when UseRegionalAMIE, only get AMIE values during the specified - ! time interval. - if (iDebugLevel > 1) & - write(*, *) "==> Reading AMIE values for time :", CurrentTime - call get_AMIE_values(CurrentTime + TimeDelayHighLat) - endif + if (UseBarriers) call MPI_BARRIER(iCommGITM, iError) + if (iError /= 0) call set_error("MPI Barrier falied in init_get_potential") -end subroutine set_indices +end subroutine init_get_potential !-------------------------------------------------------------------- ! get_potential @@ -286,14 +115,11 @@ subroutine get_potential(iBlock) use ModGITM use ModTime - use ModIndicesInterfaces use ModInputs use ModUserGITM - use ModNewell - use ModOvationSME, only: run_ovationsme - use ModAeAuroralModel, only: run_ae_model - use ModFtaModel, only: run_fta_model - use ModEIE_Interface, only: UAl_UseGridBasedEIE + use ModErrors + use ModElectrodynamics, only: IEModel_ + use ModIndicesInterfaces use ModMpi implicit none @@ -304,15 +130,21 @@ subroutine get_potential(iBlock) logical :: IsFirstTime = .true. logical :: IsFirstPotential(nBlocksMax) = .true. logical :: IsFirstAurora(nBlocksMax) = .true. - real :: mP, dis, TempWeight - real :: LocalSumDiffPot, MeanDiffPot, LatBoundNow + real :: mP, dis, TempWeight + real :: LocalSumDiffPot, MeanDiffPot, LatBoundNow + real :: PotentialMin_North, PotentialMin_South + real :: PotentialMax_North, PotentialMax_South + real :: maxEnergyFlux real, dimension(-1:nLons + 2, -1:nLats + 2) :: TempPotential2d real, dimension(-1:nLons + 2, -1:nLats + 2, 2) :: TempPotential, AMIEPotential real, dimension(-1:nLons + 2, -1:nLats + 2) :: Grid, dynamo, SubMLats, SubMLons real, dimension(-1:nLons + 2, -1:nLats + 2) :: lats, mlts, EFlux + real, dimension(-1:nLons + 2, -1:nLats + 2) :: polarCap real :: by, bz, CuspLat, CuspMlt + logical :: UAl_UseGridBasedEIE + call start_timing("get_potential") call report("get_potential", 2) @@ -321,37 +153,34 @@ subroutine get_potential(iBlock) if (index(cPlanet, "Earth") == 0) then potential = 0.0 - ElectronAverageEnergy = 0.1 - ElectronEnergyFlux = 0.0001 + ElectronEnergyFluxDiffuse = 0.0001 return endif + ! Grid might be reset by calc_electrodynamics + call IEModel_%nMlts(nLons + 4) + call IEModel_%nLats(nLats + 4) + if (floor((tSimulation - dt)/DtPotential) /= & floor((tsimulation)/DtPotential) .or. IsFirstPotential(iBlock)) then - call report("Setting up IE Grid", 1) - - call init_get_potential - call UA_SetnMLTs(nLons + 4) - call UA_SetnLats(nLats + 4) - call IO_SetTime(CurrentTime) - call set_indices - call UA_SetNorth + call IEModel_%time_real(CurrentTime) call report("Getting Potential", 1) + call set_ie_indices(IEModel_, CurrentTime) Potential(:, :, :, iBlock) = 0.0 - + DynamoPotential = 0.0 do iAlt = -1, nAlts + 2 - call UA_SetGrid( & + call iemodel_%grid( & MLT(-1:nLons + 2, -1:nLats + 2, iAlt), & - MLatitude(-1:nLons + 2, -1:nLats + 2, iAlt, iBlock), iError) + MLatitude(-1:nLons + 2, -1:nLats + 2, iAlt, iBlock)) - if (iError /= 0) then - write(*, *) "Error in routine get_potential (UA_SetGrid):" - write(*, *) iError + if (.not. isOk) then + call set_error("Error in routine get_potential (SetGrid):") + call report_errors call stop_gitm("Stopping in get_potential") endif @@ -361,154 +190,24 @@ subroutine get_potential(iBlock) TempPotential = 0.0 TempPotential2d = 0.0 - call UA_GetPotential(TempPotential2d, iError) + call iemodel_%get_potential(TempPotential2d) TempPotential(:, :, 1) = TempPotential2d + MagnetosphericPotential(:, :, iAlt) = TempPotential2d - if (iError /= 0) then - !write(*,*) "Error in get_potential (UA_GetPotential):" - !write(*,*) iError - TempPotential = 0.0 -! call stop_gitm("Stopping in get_potential") + if (.not. isOk) then + call set_error("Error in routine get_potential (getting potential):") + call report_errors + call stop_gitm("Stopping in get_potential") endif nDir = 1 - if (UseRegionalAMIE .and. & - CurrentTime >= AMIETimeStart .and. CurrentTime <= AMIETimeEnd) then - - if (iDebugLevel > 1) & - write(*, *) "==> Reading AMIE values for time :", CurrentTime - call get_AMIE_values(CurrentTime + TimeDelayHighLat) - - if (iDebugLevel > 1) write(*, *) "==> Getting AMIE Potential" - - AMIEPotential = 0.0 - UAl_UseGridBasedEIE = .true. - - call UA_SetGrid( & - MLT(-1:nLons + 2, -1:nLats + 2, iAlt), & - MLatitude(-1:nLons + 2, -1:nLats + 2, iAlt, iBlock), iError) - - call UA_GetPotential(AMIEPotential(:, :, 1), iError) - if (iError /= 0) then - write(*, *) "Error in get_potential (UA_GetPotential) for AMIE:" - write(*, *) iError - call stop_gitm("Stopping in get_potential") - endif - - if (UseTwoAMIEPotentials) then - if (iDebugLevel > 1) & - write(*, *) "==> Reading AMIE PotentialY for time :", CurrentTime - call get_AMIE_PotentialY(CurrentTime + TimeDelayHighLat) -! the following setgrid seems unnecessary -! call UA_SetGrid( & -! MLT(-1:nLons+2,-1:nLats+2,iAlt), & -! MLatitude(-1:nLons+2,-1:nLats+2,iAlt,iBlock), iError) - call UA_GetPotential(AMIEPotential(:, :, 2), iError) - if (iError /= 0) then - write(*, *) "Error in get_potential (UA_GetPotential) for AMIE PotentialY:" - write(*, *) iError - call stop_gitm("Stopping in get_potential") - endif - TempPotential(:, :, 2) = TempPotential(:, :, 1) - ! two directions for two-potentials - nDir = 2 - else - nDir = 1 - endif - - ! Two iterations for two-potentials, one iteration for one-potential - do iDir = 1, nDir - - ! AMIE potential inside a geographic rectangular; Weimer potential outside. - ! Spatially weighted AMIE and Weimer potentials at - ! the rectangular boundaries, within AMIEBoundaryWidth. - LocalSumDiffPot = 0.0 - iPot = 0 - do iLat = -1, nLats + 2 - do iLon = -1, nLons + 2 - - ! find the mean of the difference between AMIE potential and - ! Weimer potential within the region - if (MLatitude(iLon, iLat, iAlt, iBlock) >= AMIELatStart & - .and. MLatitude(iLon, iLat, iAlt, iBlock) <= AMIELatEnd & - .and. MLongitude(iLon, iLat, iAlt, iBlock) >= AMIELonStart & - .and. MLongitude(iLon, iLat, iAlt, iBlock) <= AMIELonEnd) then - LocalSumDiffPot = LocalSumDiffPot + & - AMIEPotential(iLon, iLat, iDir) - TempPotential(iLon, iLat, iDir) - iPot = iPot + 1 - endif - enddo - enddo - call MPI_ALLREDUCE(LocalSumDiffPot, MeanDiffPot, 1, & - MPI_REAL, MPI_SUM, iCommGITM, iError) - call MPI_ALLREDUCE(iPot, nPot, 1, & - MPI_INTEGER, MPI_SUM, iCommGITM, iError) - MeanDiffPot = MeanDiffPot/nPot - if (iDebugLevel > 1 .and. iProc == 0 .and. iAlt == 10) & - write(*, *) 'iDir, nPot, MeanDiffPot = ', iDir, nPot, MeanDiffPot - - do iLat = -1, nLats + 2 - do iLon = -1, nLons + 2 - - ! adjust AMIE potential according to the mean of potential difference - AMIEPotential(iLon, iLat, iDir) = AMIEPotential(iLon, iLat, iDir) - MeanDiffPot - - ! fill in the rectangular with AMIE potential - if (MLatitude(iLon, iLat, iAlt, iBlock) >= AMIELatStart & - .and. MLatitude(iLon, iLat, iAlt, iBlock) <= AMIELatEnd & - .and. MLongitude(iLon, iLat, iAlt, iBlock) >= AMIELonStart & - .and. MLongitude(iLon, iLat, iAlt, iBlock) <= AMIELonEnd) & - TempPotential(iLon, iLat, iDir) = AMIEPotential(iLon, iLat, iDir) - - ! left and right boundaries, excluding corners - if (MLatitude(iLon, iLat, iAlt, iBlock) > AMIELatStart & - .and. MLatitude(iLon, iLat, iAlt, iBlock) < AMIELatEnd & - .and. MLongitude(iLon, iLat, iAlt, iBlock) > AMIELonStart - AMIEBoundaryWidth & - .and. MLongitude(iLon, iLat, iAlt, iBlock) < AMIELonStart) then - TempWeight = (AMIELonStart - MLongitude(iLon, iLat, iAlt, iBlock))/AMIEBoundaryWidth - TempPotential(iLon, iLat, iDir) = TempWeight*TempPotential(iLon, iLat, iDir) + & - (1 - TempWeight)*AMIEPotential(iLon, iLat, iDir) - endif - - if (MLatitude(iLon, iLat, iAlt, iBlock) > AMIELatStart & - .and. MLatitude(iLon, iLat, iAlt, iBlock) < AMIELatEnd & - .and. MLongitude(iLon, iLat, iAlt, iBlock) > AMIELonEnd & - .and. MLongitude(iLon, iLat, iAlt, iBlock) < AMIELonEnd + AMIEBoundaryWidth) then - TempWeight = (MLongitude(iLon, iLat, iAlt, iBlock) - AMIELonEnd)/AMIEBoundaryWidth - TempPotential(iLon, iLat, iDir) = TempWeight*TempPotential(iLon, iLat, iDir) + & - (1 - TempWeight)*AMIEPotential(iLon, iLat, iDir) - endif - - ! low and high lat boundaries - if (MLongitude(iLon, iLat, iAlt, iBlock) > AMIELonStart - AMIEBoundaryWidth & - .and. MLongitude(iLon, iLat, iAlt, iBlock) < AMIELonEnd + AMIEBoundaryWidth & - .and. MLatitude(iLon, iLat, iAlt, iBlock) > AMIELatStart - AMIEBoundaryWidth & - .and. MLatitude(iLon, iLat, iAlt, iBlock) < AMIELatStart) then - TempWeight = (AMIELatStart - MLatitude(iLon, iLat, iAlt, iBlock))/AMIEBoundaryWidth - TempPotential(iLon, iLat, iDir) = TempWeight*TempPotential(iLon, iLat, iDir) + & - (1 - TempWeight)*AMIEPotential(iLon, iLat, iDir) - endif - if (MLongitude(iLon, iLat, iAlt, iBlock) > AMIELonStart - AMIEBoundaryWidth & - .and. MLongitude(iLon, iLat, iAlt, iBlock) < AMIELonEnd + AMIEBoundaryWidth & - .and. MLatitude(iLon, iLat, iAlt, iBlock) > AMIELatEnd & - .and. MLatitude(iLon, iLat, iAlt, iBlock) < AMIELatEnd + AMIEBoundaryWidth) then - TempWeight = (MLatitude(iLon, iLat, iAlt, iBlock) - AMIELatEnd)/AMIEBoundaryWidth - TempPotential(iLon, iLat, iDir) = TempWeight*TempPotential(iLon, iLat, iDir) + & - (1 - TempWeight)*AMIEPotential(iLon, iLat, iDir) - endif - enddo - enddo - - enddo - ! set back to false for getting Weimer potential at the next iteration - UAl_UseGridBasedEIE = .false. - endif if (UseDynamo .and. .not. Is1D) then dynamo = 0.0 call get_dynamo_potential( & MLongitude(-1:nLons + 2, -1:nLats + 2, iAlt, iBlock), & MLatitude(-1:nLons + 2, -1:nLats + 2, iAlt, iBlock), dynamo) + DynamoPotential(:, :, iAlt) = dynamo ! Set latitude boundary between region of high lat convection ! and region of neutral wind dyanmo based on if SWMF potential @@ -561,10 +260,44 @@ subroutine get_potential(iBlock) endif + PotentialMax_North = 0.0 + PotentialMin_North = 0.0 + PotentialMax_South = 0.0 + PotentialMin_South = 0.0 + + if (maxval(Mlatitude(:, :, :, iBlock)) > 45.0) then + PotentialMax_North = maxval(MagnetosphericPotential(:, :, :))/1000.0 + PotentialMin_North = minval(MagnetosphericPotential(:, :, :))/1000.0 + endif + if (minval(Mlatitude(:, :, :, iBlock)) < -45.0) then + PotentialMax_South = maxval(MagnetosphericPotential(:, :, :))/1000.0 + PotentialMin_South = minval(MagnetosphericPotential(:, :, :))/1000.0 + endif + + call get_min_value_across_pes(PotentialMin_North) + call get_max_value_across_pes(PotentialMax_North) + call get_min_value_across_pes(PotentialMin_South) + call get_max_value_across_pes(PotentialMax_South) + + ! Volt -> kV + CPCPn = (PotentialMax_North - PotentialMin_North) + CPCPs = (PotentialMax_South - PotentialMin_South) + + if (iDebugLevel >= 1) & + write(*, *) "==> CPC Potential (North, South): ", CPCPn, CPCPs + + if ((CPCPn == 0) .and. (CPCPs == 0)) then + if (doStopIfNoPotential) then + call set_error("CPCP is zero and model is not zero! Must Stop!") + call report_errors + call stop_gitm("Stopping in get_potential") + endif + endif + ! ----------------------------------------------------- ! Now get the aurora. ! This assumes that the field lines are basically - ! vertical starting at the top of the model. + ! vertical starting at the bottom of the model. ! ----------------------------------------------------- if (floor((tSimulation - dt)/DtAurora) /= & @@ -572,84 +305,107 @@ subroutine get_potential(iBlock) call report("Getting Aurora", 1) - iAlt = nAlts + 1 + iAlt = 2 - if (UseNewellAurora) then - call run_newell(iBlock) - elseif (UseOvationSME) then - call run_ovationsme(StartTime, CurrentTime, iBlock) - elseif (UseAeModel) then - call run_ae_model(CurrentTime, iBlock) - elseif (UseFtaModel) then - call run_fta_model(CurrentTime, iBlock) - else + call iemodel_%grid( & + MLT(-1:nLons + 2, -1:nLats + 2, iAlt), & + MLatitude(-1:nLons + 2, -1:nLats + 2, iAlt, iBlock)) - call UA_SetGrid( & - MLT(-1:nLons + 2, -1:nLats + 2, iAlt), & - MLatitude(-1:nLons + 2, -1:nLats + 2, iAlt, iBlock), iError) + ElectronEnergyFluxDiffuse = 0.0 + ElectronEnergyFluxWave = 0.0 + ElectronEnergyFluxMono = 0.0 + IonEnergyFlux = 0.0 + ElectronAverageEnergyWave = 3.0 + ElectronAverageEnergyDiffuse = 3.0 + ElectronAverageEnergyMono = 10.0 + IonAverageEnergy = 10.0 - if (iError /= 0) then - write(*, *) "Error in routine get_potential (UA_SetGrid):" - write(*, *) iError - call stop_gitm("Stopping in get_potential") - endif + ! We get the diffuse aurora always, since it *should* always be done. + ! Inside the aurora subroutine we check if the user wants to use it or not. + call ieModel_%get_aurora(ElectronEnergyFluxDiffuse, ElectronAverageEnergyDiffuse) - call UA_GetAveE(ElectronAverageEnergy, iError) - if (iError /= 0) then - write(*, *) "Error in get_potential (UA_GetAveE):" - write(*, *) iError - ElectronAverageEnergy = 1.0 - endif - - ! Sometimes, in AMIE, things get messed up in the - ! Average energy, so go through and fix some of these. + if (.not. isOk) then + call set_error("Error in routine get_potential (getting aurora):") + call report_errors + call stop_gitm("Stopping in get_potential") + endif + ! Sometimes, in AMIE, things get messed up in the Average energy, + ! so go through and fix some of these (Also checked in aurora.f90.) + if (iDebugLevel > 1) then do iLat = -1, nLats + 2 do iLon = -1, nLons + 2 - if (ElectronAverageEnergy(iLon, iLat) < 0.0) then - ElectronAverageEnergy(iLon, iLat) = 0.1 + if (ElectronAverageEnergyDiffuse(iLon, iLat) < 0.0) then + ElectronAverageEnergyDiffuse(iLon, iLat) = 0.1 write(*, *) "ave e i,j Negative : ", iLon, iLat, & - ElectronAverageEnergy(iLon, iLat) + ElectronAverageEnergyDiffuse(iLon, iLat) endif - if (ElectronAverageEnergy(iLon, iLat) > 100.0) then + if (ElectronAverageEnergyDiffuse(iLon, iLat) > 100.0) then write(*, *) "ave e i,j Positive : ", iLon, iLat, & - ElectronAverageEnergy(iLon, iLat) - ElectronAverageEnergy(iLon, iLat) = 0.1 + ElectronAverageEnergyDiffuse(iLon, iLat) + ElectronAverageEnergyDiffuse(iLon, iLat) = 0.1 endif enddo enddo + endif - call UA_GetEFlux(ElectronEnergyFlux, iError) - if (iError /= 0) then - write(*, *) "Error in get_potential (UA_GetEFlux):" - write(*, *) iError - ElectronEnergyFlux = 0.1 - endif - - ! ----------------------------------------------------- - ! Get Ion Precipitation if desired - ! ----------------------------------------------------- - - if (UseIonPrecipitation) then - - call UA_GetIonAveE(IonAverageEnergy, iError) - if (iError /= 0) then - write(*, *) "Error in get_potential (UA_GetAveE):" - write(*, *) iError - IonAverageEnergy = 1.0 - endif + ! Check to see if there is any Diffuse aurora and stop if there is none: + maxEnergyFlux = maxval(ElectronEnergyFluxDiffuse) + call get_max_value_across_pes(maxEnergyFlux) + if ((maxEnergyFlux == 0) .and. (doStopIfNoAurora)) then + call set_error("Wave Aurora is zero and it was requested! Must Stop!") + call report_errors + call stop_gitm("Stopping in get_potential") + endif - call UA_GetIonEFlux(IonEnergyFlux, iError) - if (iError /= 0) then - write(*, *) "Error in get_potential (UA_GetEFlux):" - write(*, *) iError - IonEnergyFlux = 0.1 - endif + ! Adjust the Average Energy of the Diffuse Aurora, if desired: + if (iDebugLevel > 1) write(*, *) '=> Adjusting average energy of the aurora : ', AveEFactor + ElectronAverageEnergyDiffuse = ElectronAverageEnergyDiffuse*AveEFactor + + ! ----------------------------- + ! Ion, Wave- & Mono- aurora + ! ----------------------------- + + if (UseWaveAurora) then + call IEModel_%get_electron_wave_aurora(ElectronEnergyFluxWave, ElectronAverageEnergyWave) + ! Check to see if there is any aurora: + maxEnergyFlux = maxval(ElectronEnergyFluxWave) + call get_max_value_across_pes(maxEnergyFlux) + if (maxEnergyFlux == 0) then + call set_error("Wave Aurora is zero and it was requested! Must Stop!") + call report_errors + call stop_gitm("Stopping in get_potential") + endif + endif + if (UseMonoAurora) then + call IEModel_%get_electron_mono_aurora(ElectronEnergyFluxMono, ElectronAverageEnergyMono) + ! Check to see if there is any aurora: + maxEnergyFlux = maxval(ElectronEnergyFluxMono) + call get_max_value_across_pes(maxEnergyFlux) + if (maxEnergyFlux == 0) then + call set_error("Mono Aurora is zero and it was requested! Must Stop!") + call report_errors + call stop_gitm("Stopping in get_potential") endif + endif + if (UseIonAurora) then + call IEModel_%get_ion_diffuse_aurora(IonEnergyFlux, IonAverageEnergy) + ! Check to see if there is any aurora: + maxEnergyFlux = maxval(IonEnergyFlux) + call get_max_value_across_pes(maxEnergyFlux) + if (maxEnergyFlux == 0) then + call set_error("Ion Aurora is zero and it was requested! Must Stop!") + call report_errors + call stop_gitm("Stopping in get_potential") + endif endif + ! ----------------------------- + ! Cusp, if desired + ! ----------------------------- + if (UseCusp) then lats = abs(MLatitude(-1:nLons + 2, -1:nLats + 2, iAlt, iBlock)) @@ -658,8 +414,8 @@ subroutine get_potential(iBlock) mlts = mod(MLT(-1:nLons + 2, -1:nLats + 2, iAlt) + 24.0, 24.0) - call get_IMF_Bz(CurrentTime + TimeDelayHighLat, bz, iError) - call get_IMF_By(CurrentTime + TimeDelayHighLat, by, iError) + by = iemodel_%needImfBy + bz = iemodel_%needImfBz ! If we are in the southern hemisphere, reverse by: if (lats(nLons/2, nLats/2) < 0.0) by = -by @@ -680,6 +436,12 @@ subroutine get_potential(iBlock) endif endif + ! Typical values are: + ! - electron average energy = 30-100 eV (< 220 eV) + ! - electron energy flux = 1-2 ergs/cm2/s + ! - ion average energy = 300 - 3000 keV + ! - ion energy flux = ~ 6x less than electrons + EFlux = CuspEFlux* & exp(-abs(lats - CuspLat)/CuspLatHalfWidth)* & exp(-abs(mlts - CuspMlt)/CuspMltHalfWidth) @@ -687,8 +449,8 @@ subroutine get_potential(iBlock) do iLat = -1, nLats + 2 do iLon = -1, nLons + 2 if (EFlux(iLon, iLat) > 0.1) then - ElectronEnergyFlux(iLon, iLat) = EFlux(iLon, iLat) - ElectronAverageEnergy(iLon, iLat) = CuspAveE + ElectronEnergyFluxDiffuse(iLon, iLat) = EFlux(iLon, iLat) + ElectronAverageEnergyDiffuse(iLon, iLat) = CuspAveE endif enddo enddo @@ -697,20 +459,40 @@ subroutine get_potential(iBlock) endif - if (iDebugLevel > 2) & + if (iDebugLevel > 0) & write(*, *) "==> Max, electron_ave_ene : ", & - maxval(ElectronAverageEnergy), & - maxval(ElectronEnergyFlux) + maxval(ElectronAverageEnergyDiffuse), & + maxval(ElectronEnergyFluxDiffuse) IsFirstAurora(iBlock) = .false. endif - if (iDebugLevel > 1) & - write(*, *) "==> Min, Max, CPC Potential : ", & - minval(Potential(:, :, :, iBlock))/1000.0, & - maxval(Potential(:, :, :, iBlock))/1000.0, & - (maxval(Potential(:, :, :, iBlock)) - minval(Potential(:, :, :, iBlock)))/1000.0 + ! ----------------------------- + ! Polar Rain, if desired + ! ----------------------------- + + if (UsePolarRain) then + + ! Get the polar cap - this variable is 1 if it is the polar cap and 0 is not + call IEModel_%get_polarcap(polarCap) + + ! Then, if we are in the polar cap, fill in the energy flux with values + ! entered by the user in the UAM.in file + ! Typical values of polar rain are [Newell et al., 1990]: + ! aveE ~ 80 - 110 eV + ! eflux ~ 0.01 - 0.1 ergs/cm2/s for nominal events; 1.0 for extreme events + do iLat = -1, nLats + 2 + do iLon = -1, nLons + 2 + if (polarCap(iLon, iLat) > 0 .and. & + ElectronEnergyFluxDiffuse(iLon, iLat) < 0.1) then + ElectronEnergyFluxDiffuse(iLon, iLat) = polarRainEFlux + ElectronAverageEnergyDiffuse(iLon, iLat) = polarRainAveE + endif + enddo + enddo + + endif call end_timing("get_potential") @@ -821,3 +603,113 @@ subroutine get_dynamo_potential(lons, lats, pot) enddo end subroutine get_dynamo_potential + +! Subroutine to automatically set indices for the given IEModel +! Will need updateing when HPn/s are introduced +subroutine set_ie_indices(IEModel_, TimeIn) + + use ModKind + use ModIndicesInterfaces + use ModIE, only: ieModel + ! use ModElectrodynamics, only: ieModel_ + use ModErrors + use ModTime, only: EndTime !could pull current time too, but better to be explicit + use ModInputs, only: TimeDelayHighLat, DoSeparateHPI + + implicit none + + type(ieModel), intent(inout) :: IEModel_ + real, intent(in) :: TimeIn + + integer :: iError = 0 + real :: val + + if (IEModel_%doReadMHD) then + + call read_MHDIMF_Indices_new( & + iError, & + TimeIn + TimeDelayHighLat, & + EndTime + TimeDelayHighLat) + + if (iError /= 0) call set_error("Issue reading IMF file in get_potential") + + call get_IMF_Bz(TimeIn + TimeDelayHighLat, val, iError) + if (val < -40.0) val = -40.0 + if (val > 40.0) val = 40.0 + call IEModel_%imfBz(val) + + call get_IMF_By(TimeIn, val, iError) + if (val < -40.0) val = -40.0 + if (val > 40.0) val = 40.0 + call IEModel_%imfBy(val) + + call get_SW_V(TimeIn, val, iError) + if (val < -1500.0) val = -1500.0 + if (val > 1500.0) val = 1500.0 + call IEModel_%swV(val) + + call get_SW_N(TimeIn, val, iError) + if (val > 80) val = 50 + call IEModel_%swN(val) + + if (iError /= 0 .or. .not. isOk) then + call set_error("IMF values could not be set!") + return + endif + endif + + if (IEModel_%doReadSME) then + ! read_sme works differently, it reads the entire file, always. So does not + ! need to be called again. + + call get_AU(TimeIn, val, iError) + call IEModel_%au(val) + call get_AL(TimeIn, val, iError) + call IEModel_%al(val) + + if (iError /= 0 .or. .not. isOk) then + call set_error("In set_ie_indices SME values could not be set!") + return + endif + endif + + if (IEModel_%doReadHPI) then + + if (.not. ieModel_%useAeForHp) then + call read_NOAAHPI_Indices_new(iError, & + TimeIn + TimeDelayHighLat, & + EndTime + TimeDelayHighLat, & + DoSeparateHPI) + + if (iError /= 0) call set_error("HPI values could not be read.") + + endif + + if (DoSeparateHPI) then + call get_HPI_N(TimeIn, val, iError) + call IEModel_%hpN(val) + call get_hpi_S(TimeIn, val, iError) + call IEModel_%hpS(val) + endif + + call get_HPI(TimeIn, val, iError) + call IEModel_%hp(val) + + if (iError /= 0 .or. .not. isOk) then + call set_error("HPI values could not be set!") + return + endif + endif + + if (IEModel_%doReadKP) then + ! I don't think there's a way to set KP unless you use a single value. No time: + call get_KP(val, iError) + call IEModel_%kp(val) + + if (iError /= 0 .or. .not. isOk) then + call set_error("KP values could not be set!") + return + endif + endif + +end subroutine set_ie_indices diff --git a/src/init_altitude.f90 b/src/init_altitude.f90 index f75924a5..96b1abc5 100644 --- a/src/init_altitude.f90 +++ b/src/init_altitude.f90 @@ -16,6 +16,7 @@ subroutine get_temperature(lon, lat, alt, t, h) !--------------------------------------------------------------------------- if (UseMsis) then + call initialize_msis_routines call get_msis_temperature(lon, lat, alt, t, h) else diff --git a/src/init_b0.f90 b/src/init_b0.f90 index 285119d3..332acf2d 100644 --- a/src/init_b0.f90 +++ b/src/init_b0.f90 @@ -17,7 +17,7 @@ subroutine init_b0 real, dimension(3) :: d1, d2, d3, e1, e2, e3 integer :: iLat, iLon, iBlock, iAlt character(128) :: apexfile - apexfile = 'UA/DataIn/apex_1970_2015.dat' + apexfile = 'UA/DataIn/Earth/apex_1970_2015.dat' ! We need to fill in the Ghost Cells for the NonChanging Variables, such ! as the Magnetic Field: diff --git a/src/init_energy_deposition.f90 b/src/init_energy_deposition.f90 index 3fb693da..952e5c8b 100644 --- a/src/init_energy_deposition.f90 +++ b/src/init_energy_deposition.f90 @@ -52,9 +52,7 @@ subroutine init_energy_deposition call stop_gitm("Error allocating array ED_Energies") endif - allocate(ED_Flux(ED_N_Energies), stat=ierr) allocate(ED_EnergyFlux(ED_N_Energies), stat=ierr) - allocate(ED_Ion_Flux(ED_N_Energies), stat=ierr) allocate(ED_Ion_EnergyFlux(ED_N_Energies), stat=ierr) if (ierr /= 0) then call stop_gitm("Error allocating array ED_Flux") diff --git a/src/init_iri.Earth.f90 b/src/init_iri.Earth.f90 index 833e1e78..aa6ba95b 100644 --- a/src/init_iri.Earth.f90 +++ b/src/init_iri.Earth.f90 @@ -139,11 +139,11 @@ subroutine init_iri ! utime/3600.+25.,geo_alt,nzkm ! zero out densities that are not set below - IRIDensity(iLon, iLat, iAlt, :, iBlock) = 1.0 + IRIDensity(iLon, iLat, iAlt, :, iBlock) = minIonDensity call iri90(jf, jmag, geo_lat, geo_lon, -f107, -iJulianDay, & - utime/3600.+25., geo_alt, nzkm, 'UA/DataIn/ccir.cofcnts', & - 'UA/DataIn/ursi.cofcnts', outf, oarr, iProc) + utime/3600.+25., geo_alt, nzkm, 'UA/DataIn/Earth/ccir.cofcnts', & + 'UA/DataIn/Earth/ursi.cofcnts', outf, oarr, iProc) IRIDensity(iLon, iLat, iAlt, ie_, iBlock) = abs(outf(1, 1)) IRIDensity(iLon, iLat, iAlt, iO_4SP_, iBlock) = & @@ -153,9 +153,9 @@ subroutine init_iri IRIDensity(iLon, iLat, iAlt, iNOP_, iBlock) = & abs(outf(9, 1)*outf(1, 1))/100.0 + 1 IRIDensity(iLon, iLat, iAlt, iHP_, iBlock) = & - 1.0 ! abs(outf(6,1)*outf(1,1))/100.0+1 + minIonDensity ! abs(outf(6,1)*outf(1,1))/100.0+1 IRIDensity(iLon, iLat, iAlt, iHeP_, iBlock) = & - 1.0 ! abs(outf(7,1)*outf(1,1))/100.0+1 + minIonDensity ! abs(outf(7,1)*outf(1,1))/100.0+1 ! IRI Ne from 60(day)/80(night) - 1000 km (-1 missing), ! ions 100-1000 km @@ -174,6 +174,8 @@ subroutine init_iri IDensityS(iLon, iLat, iAlt, nIons, iBlock) = 0.0 do iIon = 1, nIons - 1 + if (IDensityS(iLon, iLat, iAlt, iIon, iBlock) < minIonDensity) & + IDensityS(iLon, iLat, iAlt, iIon, iBlock) = minIonDensity IDensityS(iLon, iLat, iAlt, nIons, iBlock) = & IDensityS(iLon, iLat, iAlt, nIons, iBlock) + & IDensityS(iLon, iLat, iAlt, iIon, iBlock) diff --git a/src/init_msis.Earth.f90 b/src/init_msis.Earth.f90 index 6e4fedd4..ee59106c 100644 --- a/src/init_msis.Earth.f90 +++ b/src/init_msis.Earth.f90 @@ -13,6 +13,99 @@ ! Comments: Routines to initialize the GITM thermosphere with MSIS !------------------------------------------------------------------------------ +!------------------------------------------------------------------------------ +! This is the driver code for MSIS, since there are now two version +! that can be called. Since NRL has hard coded the reals to be real(4) +! for MSIS2.1, we have to translate variables. This does not have to +! be done for MSIS00. +! ------------------------------------------------------------------------------ + +subroutine call_msis(lonDeg, latDeg, altKm, f107, f107a, densities10, temp) + + use ModTime + use EUA_ModMsis00, only: meters, gtd7 + use ModMsis21, only: gtd8d + use ModInputs, only: useMsis21 + use ModConstants, only: Boltzmanns_Constant, AMU + + implicit none + + real, intent(in) :: lonDeg, latDeg, altKm, f107, f107a + real, intent(out) :: densities10(10) + real, intent(out) :: temp + + ! MSIS-2.1 hard-codes the size of reals, and needs the following: + integer :: iyd + real(4) :: sec + real(4) :: alt + real(4) :: glat + real(4) :: glong + real(4) :: stl + real(4) :: f107a_4 + real(4) :: f107_4 + real(4) :: ap_4(7) + integer :: mass + real(4) :: d(10), t(2) + + real, dimension(1:2) :: msis_temp + real, dimension(1:9) :: msis_dens9 + real, dimension(7) :: AP + + real :: Lst + real :: ffactor, no, h + + LST = mod(utime/3600.0 + LonDeg/15.0, 24.0) + AP = 10 + + if (useMsis21) then + iyd = iJulianDay + sec = utime + alt = altKm + glat = latDeg + glong = lonDeg + stl = LST + f107a_4 = f107a + f107_4 = f107 + ap_4 = AP + ! mass is not used, but passed anyways + mass = -1 + call gtd8d(iyd, sec, alt, glat, glong, stl, f107a_4, f107_4, ap_4, mass, d, t) + temp = t(2) + ! Convert to /m3 + ! 10th density is NO now! + densities10 = d*1e6 + else + CALL GTD7(iJulianDay, utime, AltKm, LatDeg, LonDeg, LST, & + f107a, f107, AP, 48, msis_dens9, msis_temp) + temp = msis_temp(2) + densities10(1:9) = msis_dens9 + + ! Very old code: + ! ! The initial profile of [NO] is refered to: + ! ! [Charles A. Barth, AGU, 1995] + ! + ! if (geo_alt < 120.) then + ! NDensityS(iLon,iLat,iAlt,iNO_,iBlock)= & + ! max(1e14-1e10*abs((geo_alt-110.0))**3.5, 100.0) + ! !10**(-0.003*(geo_alt-105.)**2 +14+LOG10(3.)) + ! else + ! m = (1e10-3.9e13)/(200) + ! k = 1e10+(-m*300.) + ! NDensityS(iLon,iLat,iAlt,iNO_,iBlock)= & + ! MAX(k+(m*geo_alt)-(geo_alt - 120.0)**2,100.0) + ! ! MAX(10**(13.-LOG10(3.)*(geo_alt-165.)/35.),1.0) + ! endif + ! + ffactor = 6.36*log(f107) - 13.8 + no = (ffactor*1.0e13 + 8.0e13)*1.24 ! 12.4 ! 12.4 is roughly exp + ! This is obviously an approximation: + h = Boltzmanns_Constant*msis_temp(2)/ & + (9.5*28.0*AMU)/1000.0 + densities10(10) = no*exp(-(altKm - 100.0)/h) + endif + +end subroutine call_msis + subroutine get_msis_temperature(lon, lat, alt, t, h) use ModTime @@ -23,6 +116,7 @@ subroutine get_msis_temperature(lon, lat, alt, t, h) use ModIndicesInterfaces use EUA_ModMsis00, only: meters, gtd7 + use ModMsis21, only: gtd8d implicit none @@ -31,12 +125,15 @@ subroutine get_msis_temperature(lon, lat, alt, t, h) real, dimension(1:2) :: msis_temp real, dimension(1:9) :: msis_dens + real :: msis_dens10(10) + real :: msis_temp1 real :: LonDeg, LatDeg, AltKm, LST real, dimension(7) :: AP real :: nO, nO2, nN2, m, r, g integer :: iError + !------------------------------------------------------- ap = 10.0 @@ -65,11 +162,18 @@ subroutine get_msis_temperature(lon, lat, alt, t, h) endif if (RCMRFlag .and. RCMROutType == "F107") then - CALL GTD7(iJulianDay, utime, AltKm, LatDeg, LonDeg, LST, & - f107a_msis, f107_msis, AP, 48, msis_dens, msis_temp) + + call call_msis(lonDeg, latDeg, altKm, f107_msis, f107a_msis, msis_dens10, msis_temp1) + msis_dens = msis_dens10(1:9) + msis_temp = msis_temp1 + !CALL GTD7(iJulianDay, utime, AltKm, LatDeg, LonDeg, LST, & + ! f107a_msis, f107_msis, AP, 48, msis_dens, msis_temp) else - call GTD7(iJulianDay, utime, AltKm, LatDeg, LonDeg, LST, & - F107A, F107, AP, 48, msis_dens, msis_temp) + call call_msis(lonDeg, latDeg, altKm, f107, f107a, msis_dens10, msis_temp1) + msis_dens = msis_dens10(1:9) + msis_temp = msis_temp1 + !call GTD7(iJulianDay, utime, AltKm, LatDeg, LonDeg, LST, & + ! F107A, F107, AP, 48, msis_dens, msis_temp) endif t = msis_temp(2) @@ -88,6 +192,60 @@ subroutine get_msis_temperature(lon, lat, alt, t, h) end subroutine get_msis_temperature +!-------------------------------------------------------------- +! Initialize MSIS itself: +!-------------------------------------------------------------- + +subroutine initialize_msis_routines + + use ModInputs, only: UseMsisTides, useMsis21, UseMsisOnly, sw_msis + use EUA_ModMsis00, ONLY: meters, tselec + use msis_init, only: msisinit + + implicit none + + real*4 :: sw_msis4x25(25) + logical, save :: isFirstTIme = .true. + + ! We only need to initialize MSIS once! + if (.not. isFirstTime) then + return + else + isFirstTime = .false. + endif + + ! We want units of /m3 and not /cm3 + + call meters(.true.) + + if (UseMsisTides) then + sw_msis = 1 + ELSE IF (UseMSISOnly) THEN + ! Diurnal, semidiurnal, and terdiurnal variations are excluded, + ! EYigit:16June09 + CALL report("...Using MSIS without tidal variations...", 0) + sw_msis = 1 + sw_msis(7) = 0 + sw_msis(8) = 0 + sw_msis(14) = 0 + ELSE + sw_msis = 0 + sw_msis(1) = 1 + sw_msis(9) = 1 + endif + + sw_msis(9) = 0 + sw_msis(2) = 0 + + if (useMsis21) then + sw_msis4x25 = sw_msis + call msisinit(parmpath='UA/DataIn/LowerBCs/', switch_legacy=sw_msis4x25) + else + call tselec(sw_msis) + endif + +end subroutine initialize_msis_routines + !-------------------------------------------------------------- ! !-------------------------------------------------------------- @@ -102,6 +260,7 @@ subroutine init_msis use ModIndicesInterfaces use EUA_ModMsis00, ONLY: meters, gtd7, tselec + use msis_init, only: msisinit implicit none @@ -109,6 +268,8 @@ subroutine init_msis real, dimension(1:2) :: msis_temp real, dimension(1:9) :: msis_dens + real :: msis_dens10(10) + real :: msis_temp1 integer :: iBlock, iAlt, iLat, iLon, iSpecies, iyd, iError real :: geo_lat, geo_lon, geo_alt, geo_lst, m, k, ut @@ -118,7 +279,7 @@ subroutine init_msis real*4 :: hwm_utime, hwm_alt, hwm_lat, hwm_lon, hwm_lst real*4 :: hwm_f107a, hwm_f107, hwm_ap(2), qw(2) - character(250) :: path = './DataIn/' + character(250) :: path = './DataIn/LowerBCs/' call report("init_msis", 0) @@ -137,6 +298,8 @@ subroutine init_msis call stop_gitm("Stopping in advance") endif + call initialize_msis_routines + !-------------------------------------------------------------------------- ! ! From the msis90 library: @@ -160,31 +323,6 @@ subroutine init_msis ! !-------------------------------------------------------------------------- - ! We want units of /m3 and not /cm3 - - call meters(.true.) - - if (UseMsisTides) then - sw_msis = 1 - ELSE IF (UseMSISOnly) THEN - ! Diurnal, semidiurnal, and terdiurnal variations are excluded, - ! EYigit:16June09 - CALL report("...Using MSIS without tidal variations...", 0) - sw_msis = 1 - sw_msis(7) = 0 - sw_msis(8) = 0 - sw_msis(14) = 0 - ELSE - sw_msis = 0 - sw_msis(1) = 1 - sw_msis(9) = 1 - endif - - sw_msis(9) = 0 - sw_msis(2) = 0 - - call tselec(sw_msis) - if (DoRestart) return ! The following is for test and special purposes: @@ -233,8 +371,11 @@ subroutine init_msis ! Call MSIS (results will be im mks units) ! - CALL GTD7(iJulianDay, utime, geo_alt, geo_lat, geo_lon, geo_lst, & - F107A, F107, AP, 48, msis_dens, msis_temp) + !CALL GTD7(iJulianDay, utime, geo_alt, geo_lat, geo_lon, geo_lst, & + ! F107A, F107, AP, 48, msis_dens, msis_temp) + call call_msis(geo_lon, geo_lat, geo_alt, f107, f107a, msis_dens10, msis_temp1) + msis_dens = msis_dens10(1:9) + msis_temp = msis_temp1 ! Initialize densities to zero in case msis does not set it NDensityS(iLon, iLat, iAlt, :, iBlock) = 1.0 @@ -253,6 +394,9 @@ subroutine init_msis max(msis_dens(7), 100.0) NDensityS(iLon, iLat, iAlt, iN_4S_, iBlock) = & max(msis_dens(8), 100.0) + NDensityS(iLon, iLat, iAlt, iNO_, iBlock) = & + max(msis_dens10(10), 100.0) + NDensityS(iLon, iLat, iAlt, iN_2P_, iBlock) = & NDensityS(iLon, iLat, iAlt, iN_4S_, iBlock)/10000.0 NDensityS(iLon, iLat, iAlt, iN_2D_, iBlock) = & @@ -294,14 +438,14 @@ subroutine init_msis ! LogNS(iLon,iLat,iAlt,:,iBlock) = & ! log(NDensityS(iLon,iLat,iAlt,iNO_,iBlock)) - ffactor = 6.36*log(f107) - 13.8 - no = (ffactor*1.0e13 + 8.0e13)*1.24 ! 12.4 ! 12.4 is roughly exp - - h = -Boltzmanns_Constant*msis_temp(2)/ & - (Gravity_GB(iLon, iLat, iAlt, iBlock)*Mass(iNO_))/1000.0 - - NDensityS(iLon, iLat, iAlt, iNO_, iBlock) = & - no*exp(-(geo_alt - 100.0)/h) + !ffactor = 6.36*log(f107) - 13.8 + !no = (ffactor*1.0e13 + 8.0e13)*1.24 ! 12.4 ! 12.4 is roughly exp + ! + !h = -Boltzmanns_Constant*msis_temp(2)/ & + ! (Gravity_GB(iLon, iLat, iAlt, iBlock)*Mass(iNO_))/1000.0 + ! + !NDensityS(iLon, iLat, iAlt, iNO_, iBlock) = & + ! no*exp(-(geo_alt - 100.0)/h) NDensity(iLon, iLat, iAlt, iBlock) = & sum(NDensityS(iLon, iLat, iAlt, 1:nSpecies, iBlock)) @@ -385,13 +529,15 @@ subroutine msis_bcs(iJulianDay, UTime, Alt, LatIn, LonIn, Lst, & real :: msis_temp(2) real :: msis_dens(9), oMSIS, oCurrentSeason, oOffsetSeason + real :: msis_dens10(10) + real :: msis_temp1 real :: AP_I(7), ffactor, no integer :: iyd, iJulianDayOffset real*4 :: hwm_utime, hwm_alt, hwm_lat, hwm_lon, hwm_lst real*4 :: hwm_f107a, hwm_f107, hwm_ap(2), qw(2) - character(250) :: path = './DataIn/' + character(250) :: path = './DataIn/LowerBCs/' lat = LatIn lon = mod(LonIn + 360.0, 360.0) @@ -407,8 +553,12 @@ subroutine msis_bcs(iJulianDay, UTime, Alt, LatIn, LonIn, Lst, & !---------------------------------------------------------------------------- AP_I = AP - CALL GTD7(iJulianDay, uTime, Alt, Lat, Lon, LST, & - F107A, F107, AP_I, 48, msis_dens, msis_temp) + + !CALL GTD7(iJulianDay, uTime, Alt, Lat, Lon, LST, & + ! F107A, F107, AP_I, 48, msis_dens, msis_temp) + call call_msis(lon, lat, alt, f107, f107a, msis_dens10, msis_temp1) + msis_dens = msis_dens10(1:9) + msis_temp = msis_temp1 ! write(*,*) msis_dens(2), msis_dens(3), msis_dens(4), msis_dens(8), msis_dens(6), msis_temp(2) @@ -454,7 +604,7 @@ subroutine msis_bcs(iJulianDay, UTime, Alt, LatIn, LonIn, Lst, & V(2) = 0.0 endif - ! Do some O experimentation: + ! Do some O experimentation (ONLY for MSIS00!): if (UseOBCExperiment) then diff --git a/src/initialize.f90 b/src/initialize.f90 index 393a041e..0b155011 100644 --- a/src/initialize.f90 +++ b/src/initialize.f90 @@ -12,6 +12,9 @@ subroutine initialize_gitm(TimeIn) use ModTime use ModEUV use ModIndicesInterfaces + use ModReadGitm3d + use ModKind, ONLY: Real8_ + implicit none type(UAM_ITER) :: r_iter @@ -31,6 +34,12 @@ subroutine initialize_gitm(TimeIn) logical :: IsThere, IsOk, IsDone, IsFirstTime = .true. real :: DistM, DistP, Ratio2, InvDenom + + ! These are for setting initial conditions from a GITM run: + character(len=nGitmVarCharLength), allocatable :: vars(:) + real, allocatable :: lonsICs(:), latsICs(:), altsICs(:) + integer :: nPoints, iPoint, nVars + !---------------------------------------------------------------------------- !! Sorry but this is a double-negative @@ -313,6 +322,7 @@ subroutine initialize_gitm(TimeIn) call init_isochem endif + !if (.not. DoRestart .and. .not. UseGitmBCs) then if (.not. DoRestart) then Potential = 0.0 @@ -411,6 +421,82 @@ subroutine initialize_gitm(TimeIn) endif + if (UseGitmBCs) then + + iError = 0 + + call GitmSetDir(GitmBCsDir) + call GetGitmFileList(iError) + if (iError /= 0) then + call stop_gitm("Error in trying to read GITM 3D Filelist in horizontal bcs") + endif + + call GetGitmGeneralHeaderInfo(iError) + if (iError /= 0) then + call stop_gitm("Error in reading gitm header information in horizontal bcs") + endif + + call GitmGetnVars(nVars) + if (iError /= 0) then + call stop_gitm("Error in getting number of variables in horizontal bcs") + endif + + allocate(vars(nVars)) + call GitmGetVars(vars) + + ! Need to calculate the number of boundary points. + + nPoints = (nAlts + 4)*(nLats + 4)*(nLons + 4) + call GitmSetnPointsToGet(nPoints) + + allocate(GitmFileData(nPoints, nVars)) + allocate(lonsICs(nPoints)) + allocate(latsICs(nPoints)) + allocate(altsICs(nPoints)) + + iPoint = 1 + iBlock = 1 + do iAlt = -1, nAlts + 2 + do iLat = -1, nLats + 2 + do iLon = -1, nLons + 2 + lonsICs(iPoint) = longitude(iLon, iBlock) + latsICs(iPoint) = latitude(iLat, iBlock) + altsICs(iPoint) = Altitude_GB(iLon, iLat, iAlt, iBlock) + iPoint = iPoint + 1 + enddo + enddo + enddo + + ! Convert to degrees and km + lonsICs = lonsICs*360.0/twopi + latsICs = latsICs*360.0/twopi + altsICs = altsICs/1000.0 + + call GitmSetGrid(lonsICs, latsICs, altsICs) + + call GitmUpdateTime(TimeIn, iError) + if (iError == 0) then + call GitmGetData(GitmFileData) + else + write(*, *) 'Error in getting GITM data in initialize!' + call stop_gitm('Must Stop!') + endif + + iPoint = 1 + do iAlt = -1, nAlts + 2 + do iLat = -1, nLats + 2 + do iLon = -1, nLons + 2 + call set_horizontal_bcs_1point(iLon, iLat, iAlt, iBlock, iPoint) + iPoint = iPoint + 1 + enddo + enddo + enddo + + deallocate(vars, GitmFileData, lonsICs, latsICs, altsICs) + call GitmShutDown + + endif + if (UseWACCMTides) then call read_waccm_tides call update_waccm_tides @@ -428,8 +514,6 @@ subroutine initialize_gitm(TimeIn) endif call init_b0 - if (IsEarth) call init_energy_deposition - if (UseApex .and. IsEarth) then call report("subsolr", 2) call SUBSOLR(iTimeArray(1), iJulianDay, iTimeArray(4), & @@ -437,13 +521,28 @@ subroutine initialize_gitm(TimeIn) SubsolarLongitude) endif + call init_get_potential + + do iBlock = 1, nBlocks + call calc_physics(iBlock) + call calc_rates(iBlock) + call calc_collisions(iBlock) + enddo + + if (UseDynamo .and. .not. Is1D) then + call UA_calc_electrodynamics(iLon, iLat) + else + call UA_calc_electrodynamics_1d + endif + call get_potential(1) + if (.not. Is1D) call exchange_messages_sphere call calc_pressure ! The iLon and iLat are dummy variables... ! Do not initialize GITM's electrodynamics yet within SWMF - if (.not. IsFramework) call UA_calc_electrodynamics(iLon, iLat) + ! if (.not. IsFramework) call UA_calc_electrodynamics(iLon, iLat) do iBlock = 1, nBlocks call calc_eddy_diffusion_coefficient(iBlock) diff --git a/src/inputs_to_tex.pl b/src/inputs_to_tex.pl index 72c24f42..a6f70e4a 100755 --- a/src/inputs_to_tex.pl +++ b/src/inputs_to_tex.pl @@ -46,4 +46,4 @@ close(INFILE); close(OUTFILE); -exit(1); +exit(0); diff --git a/src/library.f90 b/src/library.f90 index 015dfbf9..fdaa06e9 100644 --- a/src/library.f90 +++ b/src/library.f90 @@ -5,6 +5,48 @@ ! !--------------------------------------------------------------------------- +subroutine get_min_value_across_pes(value) + + use ModGITM, only: iCommGITM + use ModMpi + + implicit none + real, intent(inout) :: value + real :: localVar + integer :: iError + + LocalVar = value + call MPI_REDUCE(LocalVar, value, 1, MPI_REAL, MPI_MIN, & + 0, iCommGITM, iError) + call MPI_BCAST(value, 1, MPI_Real, 0, iCommGITM, iError) + +end subroutine get_min_value_across_pes + +!--------------------------------------------------------------------------- +! +!--------------------------------------------------------------------------- + +subroutine get_max_value_across_pes(value) + + use ModGITM, only: iCommGITM + use ModMpi + + implicit none + real, intent(inout) :: value + real :: localVar + integer :: iError + + LocalVar = value + call MPI_REDUCE(LocalVar, value, 1, MPI_REAL, MPI_MAX, & + 0, iCommGITM, iError) + call MPI_BCAST(value, 1, MPI_Real, 0, iCommGITM, iError) + +end subroutine get_max_value_across_pes + +!--------------------------------------------------------------------------- +! +!--------------------------------------------------------------------------- + subroutine report(str, iLevel) use ModInputs, only: iDebugLevel diff --git a/src/logfile.f90 b/src/logfile.f90 index f44ff4a9..f6970fef 100644 --- a/src/logfile.f90 +++ b/src/logfile.f90 @@ -111,7 +111,8 @@ subroutine logfile(dir) real :: minTemp, maxTemp, localVar, minVertVel, maxVertVel real :: AverageTemp, AverageVertVel, TotalVolume, Bx, By, Bz, Vx, Hpi - real :: HPn, HPs, SSLon, SSLat, SSVTEC + real :: HPn, HPs, HPn_d, HPs_d, HPn_w, HPs_w, HPn_m, HPs_m + real :: SSLon, SSLat, SSVTEC integer :: iError if (.not. IsOpenLogFile .and. iProc == 0) then @@ -140,10 +141,11 @@ subroutine logfile(dir) else write(iLogFileUnit_, '(a,L2)') "# EUV Data: ", useEUVdata endif + write(iLogFileUnit_, '(4(a))') "# E-Field Model: ", trim(cPotentialModel), & + " Auroral Model: ", trim(cAuroralModel) write(iLogFileUnit_, '(a,a15)') "# AMIE: ", cAmieFileNorth, cAmieFileSouth write(iLogFileUnit_, '(3(a,L2))') "# Solar Heating: ", useSolarHeating, & - " Joule Heating: ", useJouleHeating, & - " Auroral Heating: ", useAuroralHeating + " Joule Heating: ", useJouleHeating write(iLogFileUnit_, '(2(a,L2))') "# NO Cooling: ", useNOCooling, & " O Cooling: ", useOCooling write(iLogFileUnit_, '(3(a,L2))') "# Conduction: ", useConduction, & @@ -160,9 +162,11 @@ subroutine logfile(dir) write(iLogFileUnit_, '(a)') " " write(iLogFileUnit_, '(a)') "#START" write(iLogFileUnit_, '(a)') & - " iStep yyyy mm dd hh mm ss ms dt "// & + " iStep year month day hour min sec ms dt "// & "min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A "// & - "By Bz Vx HP HPn HPs SubsolarLon SubsolarLat SubsolarVTEC" + "By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m "// & + "CPCPn CPCPs "// & + "SubsolarLon SubsolarLat SubsolarVTEC" endif call get_subsolar(CurrentTime, VernalTime, SSLon, SSLat) @@ -205,6 +209,30 @@ subroutine logfile(dir) call MPI_REDUCE(LocalVar, HPs, 1, MPI_REAL, MPI_SUM, & 0, iCommGITM, iError) + LocalVar = HemisphericPowerNorth_diffuse + call MPI_REDUCE(LocalVar, HPn_d, 1, MPI_REAL, MPI_SUM, & + 0, iCommGITM, iError) + + LocalVar = HemisphericPowerSouth_diffuse + call MPI_REDUCE(LocalVar, HPs_d, 1, MPI_REAL, MPI_SUM, & + 0, iCommGITM, iError) + + LocalVar = HemisphericPowerNorth_wave + call MPI_REDUCE(LocalVar, HPn_w, 1, MPI_REAL, MPI_SUM, & + 0, iCommGITM, iError) + + LocalVar = HemisphericPowerSouth_wave + call MPI_REDUCE(LocalVar, HPs_w, 1, MPI_REAL, MPI_SUM, & + 0, iCommGITM, iError) + + LocalVar = HemisphericPowerNorth_mono + call MPI_REDUCE(LocalVar, HPn_m, 1, MPI_REAL, MPI_SUM, & + 0, iCommGITM, iError) + + LocalVar = HemisphericPowerSouth_mono + call MPI_REDUCE(LocalVar, HPs_m, 1, MPI_REAL, MPI_SUM, & + 0, iCommGITM, iError) + LocalVar = SSVTEC call MPI_REDUCE(LocalVar, SSVTEC, 1, MPI_REAL, MPI_MAX, & 0, iCommGITM, iError) @@ -223,11 +251,15 @@ subroutine logfile(dir) if (Is1D) SSVTEC = -1.0 - write(iLogFileUnit_, "(i8,i5,5i3,i4,f8.4,6f13.5,8f9.1,10f10.5,10f10.5,10f8.3)") & - iStep, iTimeArray, dt, minTemp, maxTemp, AverageTemp, & - minVertVel, maxVertVel, AverageVertVel, & - f107, f107A, By, Bz, Vx, Hpi, HPn/1.0e9, & - HPs/1.0e9, SSLon, SSLat, SSVTEC + write(iLogFileUnit_, "(i8,i5,5i3,i4,f8.4,6f9.1,5f7.1,9f8.1,2f7.1,3f8.3)") & + iStep, iTimeArray, & ! i8, i5, 5i3, i4 + dt, & ! f8.4 + minTemp, maxTemp, AverageTemp, minVertVel, maxVertVel, AverageVertVel, & ! 6f9.1 + f107, f107A, By, Bz, Vx, & ! 5f7.1 + Hpi, HPn/1.0e9, HPs/1.0e9, & + HPn_d/1.0e9, HPs_d/1.0e9, HPn_w/1.0e9, HPs_w/1.0e9, HPn_m/1.0e9, HPs_m/1.0e9, & ! 9f8.1 + CPCPn, CPCPs, & ! 2f7.1 + SSLon, SSLat, SSVTEC ! 3f8.3 call flush_unit(iLogFileUnit_) endif @@ -245,6 +277,7 @@ subroutine write_code_information(dir) use ModIoUnit, ONLY: io_unit_new use ModUtilities, ONLY: flush_unit use ModRCMR + use ModGITMVersion implicit none @@ -262,6 +295,10 @@ subroutine write_code_information(dir) write(iCodeInfoFileUnit_, *) "GITM2 Run Information" write(iCodeInfoFileUnit_, *) "---------------------" + write(iCodeInfoFileUnit_, *) "GITM Version ", trim(GitmVersion) + write(iCodeInfoFileUnit_, *) "GITM Full Version ", trim(GitmVersionFull) + write(iCodeInfoFileUnit_, *) "Electrodynamics Version ", trim(ElectrodynamicsVersionFull) + write(iCodeInfoFileUnit_, *) "---------------------" write(iCodeInfoFileUnit_, *) "" write(iCodeInfoFileUnit_, *) "nSpecies", nSpecies @@ -354,7 +391,6 @@ subroutine write_code_information(dir) write(iCodeInfoFileUnit_, *) "#THERMO" write(iCodeInfoFileUnit_, *) UseSolarHeating write(iCodeInfoFileUnit_, *) UseJouleHeating - write(iCodeInfoFileUnit_, *) UseAuroralHeating write(iCodeInfoFileUnit_, *) UseNOCooling write(iCodeInfoFileUnit_, *) UseOCooling write(iCodeInfoFileUnit_, *) UseConduction @@ -374,6 +410,11 @@ subroutine write_code_information(dir) write(iCodeInfoFileUnit_, *) UseApex write(iCodeInfoFileUnit_, *) "" + write(iCodeInfoFileUnit_, *) "#IEModels" + write(iCodeInfoFileUnit_, *) trim(cAuroralModel) + write(iCodeInfoFileUnit_, *) trim(cPotentialModel) + write(iCodeInfoFileUnit_, *) "" + write(iCodeInfoFileUnit_, *) "#AMIEFILES" write(iCodeInfoFileUnit_, *) trim(cAMIEFileNorth) write(iCodeInfoFileUnit_, *) trim(cAMIEFileSouth) @@ -426,25 +467,18 @@ subroutine write_code_information(dir) write(iCodeInfoFileUnit_, *) AuroraKappa write(iCodeInfoFileUnit_, *) "" - write(iCodeInfoFileUnit_, *) "#NEWELLAURORA" - write(iCodeInfoFileUnit_, *) UseNewellAurora - write(iCodeInfoFileUnit_, *) UseNewellAveraged - write(iCodeInfoFileUnit_, *) UseNewellMono - write(iCodeInfoFileUnit_, *) UseNewellWave - write(iCodeInfoFileUnit_, *) DoNewellRemoveSpikes - write(iCodeInfoFileUnit_, *) DoNewellAverage - write(iCodeInfoFileUnit_, *) "" - - write(iCodeInfoFileUnit_, *) "#OVATIONSME" - write(iCodeInfoFileUnit_, *) UseOvationSME - write(iCodeInfoFileUnit_, *) UseOvationSMEMono - write(iCodeInfoFileUnit_, *) UseOvationSMEWave - write(iCodeInfoFileUnit_, *) UseOvationSMEIon + write(iCodeInfoFileUnit_, *) "#AURORATYPES" + write(iCodeInfoFileUnit_, *) UseDiffuseAurora + write(iCodeInfoFileUnit_, *) UseMonoAurora + write(iCodeInfoFileUnit_, *) UseWaveAurora + write(iCodeInfoFileUnit_, *) UseIonAurora write(iCodeInfoFileUnit_, *) "" write(iCodeInfoFileUnit_, *) "#IONLIMITS" write(iCodeInfoFileUnit_, *) MaxVParallel write(iCodeInfoFileUnit_, *) MaxEField + write(iCodeInfoFileUnit_, *) MinIonDensity + write(iCodeInfoFileUnit_, *) MinIonDensityAdvect write(iCodeInfoFileUnit_, *) "" write(iCodeInfoFileUnit_, *) "#VERTICALSOURCES" diff --git a/src/output_common.f90 b/src/output_common.f90 index c2ca640e..e5ee9b52 100644 --- a/src/output_common.f90 +++ b/src/output_common.f90 @@ -309,7 +309,7 @@ subroutine output(dir, iBlock, iOutputType) case ('3DTHM') - nvars_to_write = 14 + 4 + nvars_to_write = 16 + 4 call output_3dthm(iBlock) case ('1DCHM') @@ -341,14 +341,14 @@ subroutine output(dir, iBlock, iOutputType) case ('3DHME') - nvars_to_write = 28 + nSpeciesTotal + nSpecies + nIons + nvars_to_write = 27 + nSpeciesTotal + nSpecies + nIons ! The following if statement is to not write output if DoSaveHIMEPlot=F ! for iProc=0. Header files are always written by iProc=0. if (DoSaveHIMEPlot) call output_3dhme(iBlock) case ('2DGEL') - nvars_to_write = 13 + nvars_to_write = 19 call output_2dgel(iBlock) case ('2DMEL') @@ -603,14 +603,19 @@ subroutine output_header write(iOutputUnit_, "(I7,A1,a)") 4, " ", "Potential" write(iOutputUnit_, "(I7,A1,a)") 5, " ", "Pedersen Conductance" write(iOutputUnit_, "(I7,A1,a)") 6, " ", "Hall Conductance" - write(iOutputUnit_, "(I7,A1,a)") 7, " ", "Electron_Average_Energy" - write(iOutputUnit_, "(I7,A1,a)") 8, " ", "Electron_Energy_Flux" - write(iOutputUnit_, "(I7,A1,a)") 9, " ", "DivJuAlt" - write(iOutputUnit_, "(I7,A1,a)") 10, " ", "Pedersen FL Conductance" - write(iOutputUnit_, "(I7,A1,a)") 11, " ", "Hall FL Conductance" - write(iOutputUnit_, "(I7,A1,a)") 12, " ", "DivJu FL" - write(iOutputUnit_, "(I7,A1,a)") 13, " ", "FL Length" - + write(iOutputUnit_, "(I7,A1,a)") 7, " ", "Electron_Average_Energy_Diffuse" + write(iOutputUnit_, "(I7,A1,a)") 8, " ", "Electron_Energy_Flux_Diffuse" + write(iOutputUnit_, "(I7,A1,a)") 9, " ", "Electron_Average_Energy_Wave" + write(iOutputUnit_, "(I7,A1,a)") 10, " ", "Electron_Energy_Flux_Wave" + write(iOutputUnit_, "(I7,A1,a)") 11, " ", "Electron_Average_Energy_Mono" + write(iOutputUnit_, "(I7,A1,a)") 12, " ", "Electron_Energy_Flux_Mono" + write(iOutputUnit_, "(I7,A1,a)") 13, " ", "Ion_Average_Energy" + write(iOutputUnit_, "(I7,A1,a)") 14, " ", "Ion_Energy_Flux" + write(iOutputUnit_, "(I7,A1,a)") 15, " ", "DivJuAlt" + write(iOutputUnit_, "(I7,A1,a)") 16, " ", "Pedersen FL Conductance" + write(iOutputUnit_, "(I7,A1,a)") 17, " ", "Hall FL Conductance" + write(iOutputUnit_, "(I7,A1,a)") 18, " ", "DivJu FL" + write(iOutputUnit_, "(I7,A1,a)") 19, " ", "FL Length" endif if (cType(1:5) == "2DANC") then @@ -639,16 +644,15 @@ subroutine output_header if (cType(3:5) == "THM") then - write(iOutputUnit_, "(I7,A1,a)") 4, " ", "EUV Heating" - write(iOutputUnit_, "(I7,A1,a)") 5, " ", "Conduction" - write(iOutputUnit_, "(I7,A1,a)") 6, " ", "Molecular Conduction" - write(iOutputUnit_, "(I7,A1,a)") 7, " ", "Eddy Conduction" - write(iOutputUnit_, "(I7,A1,a)") 8, " ", "Eddy Adiabatic Conduction" - write(iOutputUnit_, "(I7,A1,a)") 9, " ", "Chemical Heating" - write(iOutputUnit_, "(I7,A1,a)") 10, " ", "Auroral Heating" - write(iOutputUnit_, "(I7,A1,a)") 11, " ", "Joule Heating" - write(iOutputUnit_, "(I7,A1,a)") 12, " ", "NO Cooling" - write(iOutputUnit_, "(I7,A1,a)") 13, " ", "O Cooling" + write(iOutputUnit_, "(I7,A1,a)") 4, " ", "EUV Heating (K/s)" + write(iOutputUnit_, "(I7,A1,a)") 5, " ", "Conduction (K/s)" + write(iOutputUnit_, "(I7,A1,a)") 6, " ", "Molecular Conduction (K/s)" + write(iOutputUnit_, "(I7,A1,a)") 7, " ", "Eddy Conduction (K/s)" + write(iOutputUnit_, "(I7,A1,a)") 8, " ", "Eddy Adiabatic Conduction (K/s)" + write(iOutputUnit_, "(I7,A1,a)") 9, " ", "Chemical Heating (K/s)" + write(iOutputUnit_, "(I7,A1,a)") 11, " ", "Joule Heating (K/s)" + write(iOutputUnit_, "(I7,A1,a)") 12, " ", "NO Cooling (K/s)" + write(iOutputUnit_, "(I7,A1,a)") 13, " ", "O Cooling (K/s)" write(iOutputUnit_, "(I7,A1,a)") 14, " ", "Total Abs EUV" if (cType(1:2) == "1D") then do iSpecies = 1, nSpeciesTotal @@ -665,6 +669,9 @@ subroutine output_header write(iOutputUnit_, "(I7,A1,a)") 16, " ", "Rho" write(iOutputUnit_, "(I7,A1,a)") 17, " ", "E-Field Mag" write(iOutputUnit_, "(I7,A1,a)") 18, " ", "Sigma Ped" + write(iOutputUnit_, "(I7,A1,a)") 18, " ", "Ionization Rate O_3P" + write(iOutputUnit_, "(I7,A1,a)") 18, " ", "Ionization Rate O2" + write(iOutputUnit_, "(I7,A1,a)") 18, " ", "Ionization Rate N2" endif endif @@ -996,8 +1003,10 @@ end subroutine write_head_time subroutine write_head_version + use ModGITMVersion + write(iOutputUnit_, *) "VERSION" - write(iOutputUnit_, *) GitmVersion + PlanetNum + write(iOutputUnit_, *) trim(GitmVersion) write(iOutputUnit_, *) "" end subroutine write_head_version @@ -1337,21 +1346,23 @@ subroutine output_3dthm(iBlock) Longitude(iLon, iBlock), & Latitude(iLat, iBlock), & Altitude_GB(iLon, iLat, iAlt, iBlock), & - EuvHeating(iiLon, iiLat, iiAlt, iBlock)*dt*TempUnit(iiLon, iiLat, iiAlt), & - Conduction(iiLon, iiLat, iiAlt)*TempUnit(iiLon, iiLat, iiAlt), & + EuvHeating(iiLon, iiLat, iiAlt, iBlock)*TempUnit(iiLon, iiLat, iiAlt), & + Conduction(iiLon, iiLat, iiAlt)*TempUnit(iiLon, iiLat, iiAlt)/dt, & MoleConduction(iiLon, iiLat, iiAlt), & EddyCond(iiLon, iiLat, iiAlt), & EddyCondAdia(iiLon, iiLat, iiAlt), & - ChemicalHeatingRate(iiLon, iiLat, iiAlt)*TempUnit(iiLon, iiLat, iiAlt), & - AuroralHeating(iiLon, iiLat, iiAlt)*dt*TempUnit(iiLon, iiLat, iiAlt), & - JouleHeating(iiLon, iiLat, iiAlt)*dt*TempUnit(iiLon, iiLat, iiAlt), & - -NOCooling(iiLon, iiLat, iiAlt)*dt*TempUnit(iiLon, iiLat, iiAlt), & - -OCooling(iiLon, iiLat, iiAlt)*dt*TempUnit(iiLon, iiLat, iiAlt), & - EuvTotal(iiLon, iiLat, iiAlt, iBlock)*dt, & + ChemicalHeatingRate(iiLon, iiLat, iiAlt)*TempUnit(iiLon, iiLat, iiAlt)/dt, & + JouleHeating(iiLon, iiLat, iiAlt)*TempUnit(iiLon, iiLat, iiAlt), & + -NOCooling(iiLon, iiLat, iiAlt)*TempUnit(iiLon, iiLat, iiAlt), & + -OCooling(iiLon, iiLat, iiAlt)*TempUnit(iiLon, iiLat, iiAlt), & + EuvTotal(iiLon, iiLat, iiAlt, iBlock), & cp(iiLon, iiLat, iiAlt, iBlock), & rho(iiLon, iiLat, iiAlt, iBlock), & sqrt(sum(EField(iLon, iLat, iAlt, :)**2)), & ! magnitude of E.F. - Sigma_Pedersen(iLon, iLat, iAlt) + Sigma_Pedersen(iLon, iLat, iAlt), & + AuroralIonRateS(iiLon, iiLat, iiAlt, iO_3P_, iBlock), & + AuroralIonRateS(iiLon, iiLat, iiAlt, iO2_, iBlock), & + AuroralIonRateS(iiLon, iiLat, iiAlt, iN2_, iBlock) enddo enddo @@ -1394,7 +1405,6 @@ subroutine output_3dhme(iBlock) (Ivelocity(iLon, iLat, iAlt, i, iBlock), i=1, 3), & PhotoElectronHeating(iLon, iLat, iiAlt, iBlock)*dt*TempUnit(iLon, iLat, iiAlt), & JouleHeating(iLon, iLat, iiAlt)*dt*TempUnit(iLon, iLat, iiAlt), & - AuroralHeating(iLon, iLat, iiAlt)*dt*TempUnit(iLon, iLat, iiAlt), & cp(iLon, iLat, iiAlt, iBlock), & mLatitude(iLon, iLat, iAlt, iBlock), & mLongitude(iLon, iLat, iAlt, iBlock), & @@ -1440,7 +1450,6 @@ subroutine output_1dthm EddyCond(1, 1, iiAlt), & EddyCondAdia(1, 1, iiAlt), & ChemicalHeatingRate(1, 1, iiAlt)*TempUnit(1, 1, iiAlt), & - AuroralHeating(1, 1, iiAlt)*dt*TempUnit(1, 1, iiAlt), & JouleHeating(1, 1, iiAlt)*dt*TempUnit(1, 1, iiAlt), & -RadCooling(1, 1, iiAlt, 1)*dt*TempUnit(1, 1, iiAlt), & -OCooling(1, 1, iiAlt)*dt*TempUnit(1, 1, iiAlt), & @@ -1620,8 +1629,14 @@ subroutine output_2dgel(iBlock) Potential(iLon, iLat, iAlt, iBlock), & PedersenConductance(iLon, iLat, iBlock), & HallConductance(iLon, iLat, iBlock), & - ElectronAverageEnergy(iLon, iLat), & - ElectronEnergyFlux(iLon, iLat), & + ElectronAverageEnergyDiffuse(iLon, iLat), & + ElectronEnergyFluxDiffuse(iLon, iLat), & + ElectronAverageEnergyWave(iLon, iLat), & + ElectronEnergyFluxWave(iLon, iLat), & + ElectronAverageEnergyMono(iLon, iLat), & + ElectronEnergyFluxMono(iLon, iLat), & + IonAverageEnergy(iLon, iLat), & + IonEnergyFlux(iLon, iLat), & DivJuAlt(iLon, iLat), & PedersenFieldLine(iLon, iLat), & HallFieldLine(iLon, iLat), & diff --git a/src/read_MHDIMF_Indices_new copy.f90 b/src/read_MHDIMF_Indices_new copy.f90 deleted file mode 100644 index dc762456..00000000 --- a/src/read_MHDIMF_Indices_new copy.f90 +++ /dev/null @@ -1,225 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -!============================================================================== - -subroutine read_MHDIMF_Indices_new(iOutputError, StartTime, EndTime) - - use ModKind - use ModIndices - use ModTime, only: CurrentTime - implicit none - - integer, intent(out) :: iOutputError - real(Real8_), intent(in) :: EndTime, StartTime - real(Real8_) :: EndTimeFake - - integer :: ierror, iIMF, iSW, j, npts - logical :: done, done_inner, IsFirstLine = .true. - - ! One line of input - character(len=iCharLenIndices_) :: line - - real(Real8_) :: TimeDelay, BufferTime = 1800.0, FirstTime, DeltaT = -1.0e32 - - integer, dimension(7) :: itime - - logical :: isIgnoreEndTime = .false. - !------------------------------------------------------------------------ - iOutputError = 0 - - done = .false. - - npts = 0 - TimeDelay = 0.0 - -! print*,"START 0) return - - ! This if statement makes sure that we have been here before and - ! want to be here again - if (ReReadIMFFile) then - ! If we still have a lot of data in memory, then don't bother - ! reading more. - if (StartTime + BufferTime < IndexTimes_TV(nIndices_V(imf_bx_), imf_by_)) return - endif - - ! Assume that we can read the entire file - ReReadIMFFile = .false. - - if (nIndices_V(imf_bx_) == 0) & - NameOfIMFFile = NameOfIndexFile(:index(NameOfIndexFile, ' ') - 1) - - open(LunIndices_, file=trim(NameOfIMFFile), status="old", iostat=ierror) - - if (ierror .ne. 0) then - iOutputError = 1 - return - endif - - do while (.not. done) - - read(LunIndices_, '(a)', iostat=ierror) line - ! print*, line, "READ WITH ERROR _____ ", ierror - if (ierror /= 0) done = .true. - - if (index(line, '#DELAY') > 0) then - read(LunIndices_, *, iostat=iError) TimeDelay - if (iError /= 0) done = .true. - endif - - if (index(line, '#START') > 0) then - - done_inner = .false. - - iIMF = 1 - iSW = 1 - - do while (.not. done_inner) - - read(LunIndices_, *, iostat=iError) & - (iTime(j), j=1, 7), & - Indices_TV(iIMF, imf_bx_), & - Indices_TV(iIMF, imf_by_), & - Indices_TV(iIMF, imf_bz_), & - Indices_TV(iSW, sw_vx_), & - Indices_TV(iSW, sw_vy_), & - Indices_TV(iSW, sw_vz_), & - Indices_TV(iSW, sw_n_), & - Indices_TV(iSW, sw_t_) - - if (ierror /= 0) then - done_inner = .true. - - ! This means that the GITM time is all AFTER the first - ! line in the file! - if (StartTime > IndexTimes_TV(iIMF, imf_bx_)) then - iIMF = iIMF + 1 - iSW = iSW + 1 - endif - - else - - call time_int_to_real(iTime, IndexTimes_TV(iIMF, imf_bx_)) - - if (IsFirstLine) then - FirstTime = IndexTimes_TV(iIMF, imf_bx_) - IsFirstLine = .false. - else - if (DeltaT == -1.0e32) then - DeltaT = IndexTimes_TV(iIMF, imf_bx_) - FirstTime - if (DeltaT > BufferTime) BufferTime = 10.0*DeltaT - endif - endif - - IndexTimes_TV(iIMF, imf_bx_) = IndexTimes_TV(iIMF, imf_bx_) & - + TimeDelay - IndexTimes_TV(iIMF, imf_by_) = IndexTimes_TV(iIMF, imf_bx_) & - + TimeDelay - IndexTimes_TV(iIMF, imf_bz_) = IndexTimes_TV(iIMF, imf_bx_) & - + TimeDelay - IndexTimes_TV(iSW, sw_vx_) = IndexTimes_TV(iSW, imf_bx_) & - + TimeDelay - IndexTimes_TV(iSW, sw_vy_) = IndexTimes_TV(iSW, imf_bx_) & - + TimeDelay - IndexTimes_TV(iSW, sw_vz_) = IndexTimes_TV(iSW, imf_bx_) & - + TimeDelay - IndexTimes_TV(iSW, sw_n_) = IndexTimes_TV(iSW, imf_bx_) & - + TimeDelay - IndexTimes_TV(iSW, sw_t_) = IndexTimes_TV(iSW, imf_bx_) & - + TimeDelay - - Indices_TV(iSW, sw_v_) = sqrt( & - Indices_TV(iSW, sw_vx_)**2 + & - Indices_TV(iSW, sw_vy_)**2 + & - Indices_TV(iSW, sw_vz_)**2) - IndexTimes_TV(iSW, sw_v_) = IndexTimes_TV(iSW, imf_bx_) - - ! This makes sure that we only store the values that we - ! are really interested in - - if (IndexTimes_TV(iIMF, imf_bx_) >= StartTime - BufferTime .and. & - IndexTimes_TV(iIMF, imf_bx_) <= EndTimeFake + BufferTime .and. & - iIMF < MaxIndicesEntries) then - - if (abs(Indices_TV(iSW, imf_bz_)) < 200.0) iIMF = iIMF + 1 - if ((abs(Indices_TV(iSW, sw_n_)) < 900.0) .and. & - (abs(Indices_TV(iSW, sw_v_)) < 3000.0)) iSW = iSW + 1 - - else - - ! This means that the GITM time is all BEFORE the first - ! line in the file! - if (EndTimeFake < IndexTimes_TV(iIMF, imf_bx_) .and. iIMF == 1) then - iIMF = iIMF + 1 - iSW = iSW + 1 - print *, "COUNTERS ADDED TO" - endif - endif - - endif - - enddo - - done = done_inner - - endif - - enddo - - close(LunIndices_) - - if (iIMF >= MaxIndicesEntries) ReReadIMFFile = .true. - - nIndices_V(imf_bx_) = iIMF - 2 - nIndices_V(imf_by_) = iIMF - 2 - nIndices_V(imf_bz_) = iIMF - 2 - nIndices_V(sw_vx_) = iSW - 2 - nIndices_V(sw_vy_) = iSW - 2 - nIndices_V(sw_vz_) = iSW - 2 - nIndices_V(sw_v_) = iSW - 2 - nIndices_V(sw_n_) = iSW - 2 - nIndices_V(sw_t_) = iSW - 2 - - if (isIgnoreEndTime) then - EndTimeFake = IndexTimes_TV(iIMF - 2, imf_bx_) - endif - ! If we have gotten to this point and we have no data, - ! there is something wrong! - if (nIndices_V(imf_bz_) < 2) iOutputError = 1 - if (nIndices_V(sw_v_) < 2) iOutputError = 1 - print *, CurrentTime, EndTimeFake, EndTime, iError - - call check_all_indices(CurrentTime, iError) - print *, CurrentTime, EndTimeFake, EndTime, iError - if (iError == 0) then - call check_all_indices(EndTimeFake, iError) - print *, CurrentTime, EndTimeFake, EndTime, iError - endif - if (iError /= 0) then - print *, CurrentTime, EndTimeFake, EndTime, iError - call stop_gitm("Issue with Indices! Check the file(s) times!") - endif - -end subroutine read_MHDIMF_Indices_new - diff --git a/src/read_MHDIMF_Indices_new.f90 b/src/read_MHDIMF_Indices_new.f90 index de99a68c..81b075ef 100644 --- a/src/read_MHDIMF_Indices_new.f90 +++ b/src/read_MHDIMF_Indices_new.f90 @@ -108,7 +108,6 @@ subroutine read_MHDIMF_Indices_new(iOutputError, StartTime, EndTime) else call time_int_to_real(iTime, IndexTimes_TV(iIMF, imf_bx_)) - if (IsFirstLine) then FirstTime = IndexTimes_TV(iIMF, imf_bx_) IsFirstLine = .false. @@ -144,15 +143,12 @@ subroutine read_MHDIMF_Indices_new(iOutputError, StartTime, EndTime) ! This makes sure that we only store the values that we ! are really interested in - if (IndexTimes_TV(iIMF, imf_bx_) >= StartTime - BufferTime .and. & IndexTimes_TV(iIMF, imf_bx_) <= EndTime + BufferTime .and. & iIMF < MaxIndicesEntries) then - - if (abs(Indices_TV(iSW, imf_bz_)) < 200.0) iIMF = iIMF + 1 + if (abs(Indices_TV(iIMF, imf_bz_)) < 200.0) iIMF = iIMF + 1 if ((abs(Indices_TV(iSW, sw_n_)) < 900.0) .and. & (abs(Indices_TV(iSW, sw_v_)) < 3000.0)) iSW = iSW + 1 - else ! This means that the GITM time is all BEFORE the first @@ -178,15 +174,48 @@ subroutine read_MHDIMF_Indices_new(iOutputError, StartTime, EndTime) if (iIMF >= MaxIndicesEntries) ReReadIMFFile = .true. - nIndices_V(imf_bx_) = iIMF - 2 - nIndices_V(imf_by_) = iIMF - 2 - nIndices_V(imf_bz_) = iIMF - 2 - nIndices_V(sw_vx_) = iSW - 2 - nIndices_V(sw_vy_) = iSW - 2 - nIndices_V(sw_vz_) = iSW - 2 - nIndices_V(sw_v_) = iSW - 2 - nIndices_V(sw_n_) = iSW - 2 - nIndices_V(sw_t_) = iSW - 2 + iIMF = iIMF - 2 + iSW = iSW - 2 + + ! There is sometimes a problem where the end time is in the middle of + ! a data gap. Let's check this: + if (iIMF > 2) then + if (IndexTimes_TV(iIMF, imf_bx_) < EndTime) then + ! Copy the last index into the next index and assign times + iIMF = iIMF + 1 + IndexTimes_TV(iIMF, imf_bx_) = EndTime + IndexTimes_TV(iIMF, imf_by_) = EndTime + IndexTimes_TV(iIMF, imf_bz_) = EndTime + Indices_TV(iIMF, imf_bx_) = Indices_TV(iIMF - 1, imf_bx_) + Indices_TV(iIMF, imf_by_) = Indices_TV(iIMF - 1, imf_by_) + Indices_TV(iIMF, imf_bz_) = Indices_TV(iIMF - 1, imf_bz_) + + IndexTimes_TV(iSW, sw_vx_) = EndTime + IndexTimes_TV(iSW, sw_vy_) = EndTime + IndexTimes_TV(iSW, sw_vz_) = EndTime + IndexTimes_TV(iSW, sw_v_) = EndTime + IndexTimes_TV(iSW, sw_n_) = EndTime + IndexTimes_TV(iSW, sw_t_) = EndTime + + Indices_TV(iSW, sw_vx_) = Indices_TV(iSW - 1, sw_vx_) + Indices_TV(iSW, sw_vy_) = Indices_TV(iSW - 1, sw_vy_) + Indices_TV(iSW, sw_vz_) = Indices_TV(iSW - 1, sw_vz_) + Indices_TV(iSW, sw_v_) = Indices_TV(iSW - 1, sw_v_) + Indices_TV(iSW, sw_n_) = Indices_TV(iSW - 1, sw_n_) + Indices_TV(iSW, sw_t_) = Indices_TV(iSW - 1, sw_t_) + + endif + endif + + nIndices_V(imf_bx_) = iIMF + nIndices_V(imf_by_) = iIMF + nIndices_V(imf_bz_) = iIMF + nIndices_V(sw_vx_) = iSW + nIndices_V(sw_vy_) = iSW + nIndices_V(sw_vz_) = iSW + nIndices_V(sw_v_) = iSW + nIndices_V(sw_n_) = iSW + nIndices_V(sw_t_) = iSW ! If we have gotten to this point and we have no data, ! there is something wrong! diff --git a/src/read_NOAAHPI_Indices_new.f90 b/src/read_NOAAHPI_Indices_new.f90 index 29918721..773d7a58 100644 --- a/src/read_NOAAHPI_Indices_new.f90 +++ b/src/read_NOAAHPI_Indices_new.f90 @@ -3,7 +3,7 @@ !============================================================================== -subroutine read_NOAAHPI_Indices_new(iOutputError, StartTime, EndTime) +subroutine read_NOAAHPI_Indices_new(iOutputError, StartTime, EndTime, doSeparateHPI) use ModKind use ModIndices @@ -12,16 +12,21 @@ subroutine read_NOAAHPI_Indices_new(iOutputError, StartTime, EndTime) integer, intent(out) :: iOutputError real(Real8_), intent(in) :: EndTime, StartTime + logical, intent(in) :: doSeparateHPI integer :: ierror, i, j, npts, npts_hpi, k integer :: datatype logical :: done ! One line of input - integer, parameter :: iCharLenGitm = 400 - character(len=iCharLenGitm) :: line + character(len=iCharLenIndices_) :: line - real, dimension(6, MaxIndicesEntries) :: tmp + real, dimension(6, MaxIndicesEntries) :: tmp, tmp_north, tmp_south + ! Add character var with hemisphere fron NOAA HPI file + ! And an integer (1/2) flag for n/s hemi, respectively + character(len=3), dimension(MaxIndicesEntries) :: hemi + integer, dimension(MaxIndicesEntries) :: i_hemi + integer :: npts_north, npts_south real(Real8_), dimension(MaxIndicesEntries) :: ut_new, ut_keep, ut_tmp real, dimension(MaxIndicesEntries) :: data_new, data_keep, data_tmp @@ -103,7 +108,35 @@ subroutine read_NOAAHPI_Indices_new(iOutputError, StartTime, EndTime) tmp(6, i) = data_keep(i) enddo - call Insert_into_Indices_Array(tmp, hpi_) + npts_north = 1 + npts_south = 1 + + call Insert_into_Indices_Array(tmp, hpi_) ! store HP ALWAYS + + ! store N/S too if requested, put tmp into tmp_n/tmp_s + if (doSeparateHPI) then + do i = 1, npts_hpi + if (hemi(i) == "(N)") then + tmp_north(:, npts_north) = tmp(:, i) + npts_north = npts_north + 1 + elseif (hemi(i) == "(S)") then + tmp_south(:, npts_south) = tmp(:, i) + npts_south = npts_south + 1 + else + call stop_gitm("Hemisphere flag in NOAA HPI file is wrong somewhere.") + endif + enddo + + ! Check to make sure some points were actually read from southern hemi + ! If not, throw an error. Set required number of pts to 5 for margin of error... + if (npts_south <= 5) then + call stop_gitm("Not enough southern hemisphere points in NOAA HPI file") + endif + + call Insert_into_Indices_Array(tmp_north(:, :npts_north), hpi_nh_) + call Insert_into_Indices_Array(tmp_south(:, :npts_south), hpi_sh_) + + endif nIndices_V(hpi_norm_) = nIndices_V(hpi_) @@ -153,18 +186,17 @@ subroutine read_values endif tmp(1, i) = iYear tmp(2, i) = 1 - read(LunIndices_, '(a10,f3.0,f2.0,f2.0,f8.1)', iostat=ierror) & - line, tmp(3:6, i) + read(LunIndices_, '(a7,a3,f3.0,f2.0,f2.0,f8.1)', iostat=ierror) & + line, hemi(i), tmp(3:6, i) if (tmp(3, i) < 1) iError = 1 endif if (datatype .eq. 2) then ! NEW NOAA HPI FILES - read(LunIndices_, '(f4.0,a1,f2.0,a1,f2.0,a1,f2.0,a1,f2.0,a1,f2.0,a15,f8.1)', & + read(LunIndices_, '(f4.0,a1,f2.0,a1,f2.0,a1,f2.0,a1,f2.0,a1,f2.0,a8,a4,a3,f8.1)', & iostat=ierror) & tmp(1, i), line, tmp(2, i), line, tmp(3, i), line, tmp(4, i), line, tmp(5, i), line, tmp(6, i), & - line, tmp(6, i) - + line, hemi(i), line, tmp(6, i) endif if (ierror /= 0) then diff --git a/src/read_sme.f90 b/src/read_sme.f90 index 2d9e2be8..0e00917a 100644 --- a/src/read_sme.f90 +++ b/src/read_sme.f90 @@ -132,7 +132,7 @@ end subroutine read_al_onset_list !============================================================================== -subroutine read_sme(iOutputError, StartTime, EndTime, doUseAeForHp) +subroutine read_sme(iOutputError, StartTime, EndTime, doUseAeForHp, doSeparateHPI) use ModKind use ModIndices @@ -140,7 +140,7 @@ subroutine read_sme(iOutputError, StartTime, EndTime, doUseAeForHp) integer, intent(out) :: iOutputError real(Real8_), intent(in) :: EndTime, StartTime - logical, intent(in) :: doUseAeForHp + logical, intent(in) :: doUseAeForHp, doSeparateHPI integer :: ierror, iAE, j, npts logical :: IsDone, IsGoodTime, IsGoodData @@ -150,9 +150,11 @@ subroutine read_sme(iOutputError, StartTime, EndTime, doUseAeForHp) real(Real8_) :: TimeDelay, BufferTime = 180.0 - real :: hp + real :: hp, hp_nh, hp_sh, tenPseasonalFactor integer, dimension(7) :: itime + integer :: jday + integer :: DoY !------------------------------------------------------------------------ iOutputError = 0 @@ -242,10 +244,29 @@ subroutine read_sme(iOutputError, StartTime, EndTime, doUseAeForHp) if (doUseAeForHp) then hp = 0.102*Indices_TV(iAE, ae_) + 8.953 + if (doSeparateHPI) then + ! If we are doing separate HPI's in North & South hemisphere, + ! Apply a 10% seasonal offset to the values + ! (From: https://doi.org/10.1029/2006GL028444) + DoY = jday(iTime(1), & + iTime(2), & + iTime(3)) + + tenPseasonalFactor = 0.1*cos(DoY*2*3.14159/365.) + hp_sh = (1 - tenPseasonalFactor)*hp + hp_nh = (1 + tenPseasonalFactor)*hp + Indices_TV(iAE, hpi_sh_) = hp_sh + Indices_TV(iAE, hpi_nh_) = hp_nh + IndexTimes_TV(iAE, hpi_sh_) = IndexTimes_TV(iAE, ae_) + IndexTimes_TV(iAE, hpi_nh_) = IndexTimes_TV(iAE, ae_) + + endif + Indices_TV(iAE, hpi_) = hp if (hp > 0) Indices_TV(iAE, hpi_norm_) = 2.09*ALOG(hp)*1.0475 IndexTimes_TV(iAE, hpi_norm_) = IndexTimes_TV(iAE, ae_) IndexTimes_TV(iAE, hpi_) = IndexTimes_TV(iAE, ae_) + endif IndexTimes_TV(iAE, al_) = IndexTimes_TV(iAE, ae_) @@ -274,14 +295,15 @@ subroutine read_sme(iOutputError, StartTime, EndTime, doUseAeForHp) nIndices_V(au_) = iAE - 2 nIndices_V(al_) = iAE - 2 + ! Need to update the number of hemispheric power indices: if (doUseAeForHp) then nIndices_V(hpi_) = iAE - 2 nIndices_V(hpi_norm_) = iAE - 2 + if (doSeparateHPI) then + nIndices_V(hpi_nh_) = iAE - 2 + nIndices_V(hpi_sh_) = iAE - 2 + endif endif - ! If we have gotten to this point and we have no data, - ! there is something wrong! - if (nIndices_V(ae_) < 2) iOutputError = 1 - end subroutine read_sme diff --git a/src/set_bcs.f90 b/src/set_bcs.f90 deleted file mode 100644 index e8137d74..00000000 --- a/src/set_bcs.f90 +++ /dev/null @@ -1,68 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -subroutine set_bcs - - use ModGITM - use ModInputs - - implicit none - - integer :: iBlock, iLon, iLat, iSpecies - - do iBlock = 1, nBlocks - - ! Bottom - Velocity(:, :, -1, iUp_, iBlock) = -Velocity(:, :, 2, iUp_, iBlock) - Velocity(:, :, 0, iUp_, iBlock) = -Velocity(:, :, 1, iUp_, iBlock) - - ! Fixed LogRho and Temp - - ! if we don't touch LogRho(:,:,-1:0,iBlock) it will never change - - ! Top - - do iLon = 1, nLons - do iLat = 1, nLats - - if (Velocity(iLon, iLat, nAlts, iUp_, iBlock) > 0.) then - - Velocity(iLon, iLat, nAlts + 1, iUp_, iBlock) = & - Velocity(iLon, iLat, nAlts, iUp_, iBlock)*0.0 - Velocity(iLon, iLat, nAlts + 2, iUp_, iBlock) = & - Velocity(iLon, iLat, nAlts, iUp_, iBlock)*0.0 - - else - - Velocity(iLon, iLat, nAlts + 1, iUp_, iBlock) = 0.0 ! -Vel(nAlts) - Velocity(iLon, iLat, nAlts + 2, iUp_, iBlock) = 0.0 ! -Vel(nAlts-1) - - endif - enddo - enddo - -! Temperature(:,:,nAlts+1,iBlock) = TempMax/TempUnit -! Temperature(:,:,nAlts+2,iBlock) = TempMax/TempUnit - - Temperature(:, :, nAlts + 1, iBlock) = Temperature(:, :, nAlts, iBlock) - Temperature(:, :, nAlts + 2, iBlock) = Temperature(:, :, nAlts, iBlock) - - do iSpecies = 1, nSpecies - LogNS(:, :, nAlts + 1, iSpecies, iBlock) = & - LogNS(:, :, nAlts, iSpecies, iBlock) + & - dAlt(nAlts)*Gravity(nAlts)/Temperature(:, :, nAlts, iBlock) - LogNS(:, :, nAlts + 1, iSpecies, iBlock) = & - LogNS(:, :, nAlts, iSpecies, iBlock) + & - 2*dAlt(nAlts)*Gravity(nAlts)/Temperature(:, :, nAlts, iBlock) - enddo - - LogRho(:, :, nAlts + 1, iBlock) = & - LogRho(:, :, nAlts, iBlock) + & - dAlt(nAlts)*Gravity(nAlts)/Temperature(:, :, nAlts, iBlock) - LogRho(:, :, nAlts + 1, iBlock) = & - LogRho(:, :, nAlts, iBlock) + & - 2*dAlt(nAlts)*Gravity(nAlts)/Temperature(:, :, nAlts, iBlock) - - enddo - -end subroutine set_bcs diff --git a/src/set_horizontal_bcs.f90 b/src/set_horizontal_bcs.f90 index 694104fe..28c695c8 100644 --- a/src/set_horizontal_bcs.f90 +++ b/src/set_horizontal_bcs.f90 @@ -451,19 +451,14 @@ subroutine set_horizontal_bcs_1point(iLon, iLat, iAlt, iBlock, iPoint) Rho(iLon, iLat, iAlt, iBlock) = GitmFileData(iPoint, iRho_) + ! Densities: do iSpecies = 1, nSpeciesTotal NDensityS(iLon, iLat, iAlt, iSpecies, iBlock) = & GitmFileData(iPoint, iSpecies + iNeutralStart_ - 1) -! if (iProc == 0) then -! write(*,*) 'ndensity : ',iSpecies, GitmFileData(iPoint,iSpecies+iNeutralStart_-1) -! endif enddo do iSpecies = 1, nIons IDensityS(iLon, iLat, iAlt, iSpecies, iBlock) = & GitmFileData(iPoint, iSpecies + iIonStart_ - 1) -! if (iProc == 0) then -! write(*,*) 'idensity : ',iSpecies, GitmFileData(iPoint,iSpecies+iIonStart_-1) -! endif enddo ! Need to calculate tempunit to get normalized temperature @@ -475,19 +470,21 @@ subroutine set_horizontal_bcs_1point(iLon, iLat, iAlt, iBlock, iPoint) sum(NDensityS(iLon, iLat, iAlt, :, iBlock)) enddo TempUnit(iLon, iLat, iAlt) = MeanMajorMass(iLon, iLat, iAlt)/Boltzmanns_Constant + + ! Temperatures: Temperature(iLon, iLat, iAlt, iBlock) = & GitmFileData(iPoint, iTn_)/TempUnit(iLon, iLat, iAlt) - eTemperature(iLon, iLat, iAlt, iBlock) = GitmFileData(iPoint, iTe_) iTemperature(iLon, iLat, iAlt, iBlock) = GitmFileData(iPoint, iTe_ + 1) - ! Velocities + + ! Velocities: do iDir = 1, 3 Velocity(iLon, iLat, iAlt, iDir, iBlock) = & GitmFileData(iPoint, iVn_ + iDir - 1) iVelocity(iLon, iLat, iAlt, iDir, iBlock) = & GitmFileData(iPoint, iVi_ + iDir - 1) enddo - ! Vertical Velocities + ! Vertical Velocities: do iSpecies = 1, nSpecies VerticalVelocity(iLon, iLat, iAlt, iSpecies, iBlock) = & GitmFileData(iPoint, iVn_ + 3 + iSpecies - 1) diff --git a/src/set_inputs.f90 b/src/set_inputs.f90 index f3859bde..69144d3f 100644 --- a/src/set_inputs.f90 +++ b/src/set_inputs.f90 @@ -24,6 +24,8 @@ subroutine set_inputs use ModPlanet use ModSatellites use ModRCMR + use ModIE + use ModErrors use ModIoUnit, only: UnitTmp_ implicit none @@ -31,11 +33,11 @@ subroutine set_inputs integer, external :: bad_outputtype integer, external :: jday - logical :: IsDone, IsStartFound, doUseAeForHp + logical :: IsDone, IsStartFound, doUseAeForHp, didDeclareHP = .false. integer :: iDebugProc = 0 character(len=iCharLen_) :: cLine integer :: iLine, iSpecies, iSat - integer :: i, iError, iOutputTypes, iErrorFile, iFreq + integer :: i, iError, iOutputTypes, iErrorFile, iFreq, iFile integer, dimension(7) :: iTimeEnd integer :: iUnitFile = UnitTmp_ @@ -200,15 +202,18 @@ subroutine set_inputs call read_in_real(DtStatisticalModels, iError) if (iError /= 0) then write(*, *) 'Incorrect format for #STATISTICALMODELSONLY:' - write(*, *) 'This command will skip all pretty much all of the ' + write(*, *) 'This command will skip pretty much all of the ' write(*, *) 'physics of GITM, and will reinitialize the model ' - write(*, *) 'with the MSIS and IRI values at the interval set in ' - write(*, *) 'the second variable. If you want to compare a run to' - write(*, *) 'MSIS and IRI, you can run GITM with this command and' - write(*, *) 'get output at exactly the same cadence and locations,' - write(*, *) 'thereby allowing easier comparisons. The dt can be ' - write(*, *) 'set as low as needed, so you can run satellites ' - write(*, *) 'through MSIS and IRI.' + write(*, *) 'with MSIS, IRI & ELECTRODYNAMICS values at the interval set in ' + write(*, *) 'the second variable. ' + write(*, *) ' > If you want to compare a run to MSIS and IRI, you can run ' + write(*, *) ' GITM with this command and get output at exactly the same ' + write(*, *) ' cadence and locations, thereby allowing easier comparisons. ' + write(*, *) ' > For running electrodynamics, the outputs will, by default, be' + write(*, *) ' on a geographic grid. To get the outputs on a magnetic grid,' + write(*, *) ' use #DIPOLE and set all the values to zero, forcing the ' + write(*, *) ' magnetic & geographics grid to align. Use 2DGEL outputs.' + write(*, *) '' write(*, *) '#STATISTICALMODELSONLY' write(*, *) 'UseStatisticalModelsOnly (logical)' write(*, *) 'DtStatisticalModels (real)' @@ -368,12 +373,23 @@ subroutine set_inputs if (iError /= 0) then write(*, *) 'Incorrect format for #MSISOBC:' write(*, *) 'UseOBCExperiment - use MSIS [O] BC shifted by 6 months' + write(*, *) ' Only applicable for MSIS00!' write(*, *) 'MsisOblateFactor - alt = alt * (1.0-f/2 + f*cos(lat))' + write(*, *) ' - seems like -0.1 works well' write(*, *) '#MSISOBC' write(*, *) 'UseOBCExperiment (logical)' write(*, *) 'MsisOblateFactor (real)' endif + case ("#MSIS21") + call read_in_logical(UseMsis21, iError) + if (iError /= 0) then + write(*, *) 'Incorrect format for #MSIS21:' + write(*, *) 'This toggles between using MSIS00 (false) and MSIS-2.1 (true)' + write(*, *) '#MSISOBC' + write(*, *) 'UseMsis21 (logical)' + endif + !xianjing case ("#USESECONDSINFILENAME") call read_in_logical(UseSecondsInFilename, iError) @@ -681,114 +697,141 @@ subroutine set_inputs endif - case ("#AURORA") + case ("#ELECTRODYNAMICS") call read_in_string(cAuroralModel, iError) + call read_in_real(dTAurora, iError) + call read_in_string(cPotentialModel, iError) + call read_in_real(dTPotential, iError) - case ("#AURORAMODS") - HasSetAuroraMods = .true. - call read_in_logical(NormalizeAuroraToHP, iError) - call read_in_real(AveEFactor, iError) - call read_in_logical(IsKappaAurora, iError) - call read_in_real(AuroraKappa, iError) if (iError /= 0) then - write(*, *) 'Incorrect format for #AURORAMODS' - write(*, *) 'This is for modifying the aurora a bit. The' - write(*, *) 'NormalizeAuroraToHP variable calculates the ' - write(*, *) 'modeled hemispheric power and then normalizes it' - write(*, *) 'the hemispheric power read in. ' - write(*, *) 'AveEFactor - changes the aveE of the aurora by factor' - write(*, *) 'IsKappaAurora - use a kappa instead of Maxwellian' - write(*, *) 'AuroraKappa - kappa to use in the distribution' - write(*, *) '' - write(*, *) '#AURORAMODS' - write(*, *) 'NormalizeAuroraToHP (logical)' - write(*, *) 'AveEFactor (real)' - write(*, *) 'IsKappaAurora (logical)' - write(*, *) 'AuroraKappa (real)' + write(*, *) 'Incorrect format for #ELECTRODYNAMICS' + write(*, *) 'Sets the time for updating the high-latitude' + write(*, *) '(and low-latitude) electrodynamic drivers, such as' + write(*, *) 'the potential and the aurora.' + write(*, *) '#ELECTRODYNAMICS' + write(*, *) 'AuroralModel [fta], fre, pem, ovation, hpi/ihp, amie, zero, etc.' + write(*, *) 'DtAurora (real, seconds [60.0])' + write(*, *) 'PotentialModel [weimer05], hepmay, amie, zero, etc.' + write(*, *) 'DtPotential (real, seconds [60.0])' + IsDone = .true. endif - case ("#NEWELLAURORA") - call read_in_logical(UseNewellAurora, iError) - if (UseNewellAurora) then - call read_in_logical(UseNewellAveraged, iError) - call read_in_logical(UseNewellMono, iError) - call read_in_logical(UseNewellWave, iError) - call read_in_logical(DoNewellRemoveSpikes, iError) - call read_in_logical(DoNewellAverage, iError) - endif + call lower_case(cAuroralModel) + call lower_case(cPotentialModel) + + ! This is saying if auroral model is NOT zero, then stop if there is no aurora + if (index(cAuroralModel, 'zero') == 0) & + doStopIfNoAurora = .true. + ! This is saying if potential model is NOT zero, then stop if there is no potential + if (index(cPotentialModel, 'zero') == 0) & + doStopIfNoPotential = .true. + + case ("#AMIEFILES") + call read_in_string(cAMIEFileNorth, iError) + call read_in_string(cAMIEFileSouth, iError) if (iError /= 0) then - write(*, *) 'Incorrect format for #NEWELLAURORA' - write(*, *) 'This is for using Pat Newells aurora (Ovation).' + write(*, *) 'Incorrect format for #AMIEFILES:' write(*, *) '' - write(*, *) '#NEWELLAURORA' - write(*, *) 'UseNewellAurora (logical)' - write(*, *) 'UseNewellAveraged (logical)' - write(*, *) 'UseNewellMono (logical)' - write(*, *) 'UseNewellWave (logical)' - write(*, *) 'UseNewellRemoveSpikes (logical)' - write(*, *) 'UseNewellAverage (logical)' + write(*, *) '#AMIEFILES' + write(*, *) 'cAMIEFileNorth (string)' + write(*, *) 'cAMIEFileSouth (string)' IsDone = .true. else - if (UseNewellAurora .and. .not. HasSetAuroraMods) & + if (index(cAMIEFileNorth, "none") == 0 .and. & + .not. HasSetAuroraMods) & NormalizeAuroraToHP = .false. endif - case ("#OVATIONSME") - call read_in_logical(UseOvationSME, iError) - call read_in_logical(UseOvationSMEMono, iError) - call read_in_logical(UseOvationSMEWave, iError) - call read_in_logical(UseOvationSMEIon, iError) + case ("#AMIENORTH") + nAMIENorth = 0 + call read_in_int(nAMIENorth, iError) + if (iError == 0 .and. nAMIENorth > 0) then + allocate(cAMIEListNorth(nAMIENorth)) + do iFile = 1, nAMIENorth + call read_in_string(cAMIEListNorth(iFile), iError) + enddo + else + iError = 1 + endif if (iError /= 0) then - write(*, *) 'Incorrect format for #OVATIONSME' - write(*, *) 'This is for using Betsy Michells aurora (OvationSME).' + write(*, *) 'Incorrect format for #AMIENORTH:' write(*, *) '' - write(*, *) '#OVATIONSME' - write(*, *) 'UseOvationSME (logical)' - write(*, *) 'UseOvationSMEMono (logical)' - write(*, *) 'UseOvationSMEWave (logical)' - write(*, *) 'UseOvationSMEIon (logical)' + write(*, *) '#AMIENORTH' + write(*, *) 'nAMIENorth (int)' + write(*, *) 'cAMIEFileNorth1 (string)' + write(*, *) '... (string)s' + write(*, *) 'cAMIEFileNorth(n) (string)' IsDone = .true. - else - if (UseOvationSME .and. .not. HasSetAuroraMods) & - NormalizeAuroraToHP = .false. endif - case ("#AEMODEL") - call read_in_logical(UseAeModel, iError) + case ("#AMIESOUTH") + nAMIESouth = 0 + call read_in_int(nAMIESouth, iError) + if (iError == 0 .and. nAMIESouth > 0) then + allocate(cAMIEListSouth(nAMIESouth)) + do iFile = 1, nAMIESouth + call read_in_string(cAMIEListSouth(iFile), iError) + enddo + else + iError = 1 + endif if (iError /= 0) then - write(*, *) 'Incorrect format for #AEMODEL' - write(*, *) 'This is for using Dongjies aurora.' + write(*, *) 'Incorrect format for #AMIESOUTH:' write(*, *) '' - write(*, *) '#AEMODEL' - write(*, *) 'UseAeModel (logical)' + write(*, *) '#AMIESOUTH' + write(*, *) 'nAMIESouth (int)' + write(*, *) 'cAMIEFileSouth1 (string)' + write(*, *) '... (string)s' + write(*, *) 'cAMIEFileSouth(n) (string)' IsDone = .true. - else - if (UseAeModel .and. .not. HasSetAuroraMods) & - NormalizeAuroraToHP = .false. endif - case ("#FTAMODEL") - call read_in_logical(UseFtaModel, iError) + case ("#AURORAMODS") + HasSetAuroraMods = .true. + call read_in_logical(NormalizeAuroraToHP, iError) + call read_in_real(AveEFactor, iError) + call read_in_logical(IsKappaAurora, iError) + call read_in_real(AuroraKappa, iError) + call read_in_logical(AllowAurWODiffuse, iError) + call read_in_real(MaxAveEAurora, iError) if (iError /= 0) then - write(*, *) 'Incorrect format for #FTAMODEL' - write(*, *) 'This is for using the FTA Model of the aurora.' + write(*, *) 'Incorrect format for #AURORAMODS' + write(*, *) 'This is for modifying the aurora a bit. The' + write(*, *) 'NormalizeAuroraToHP variable calculates the ' + write(*, *) 'modeled hemispheric power and then normalizes it' + write(*, *) 'the hemispheric power read in. ' + write(*, *) 'AveEFactor - changes the aveE of the aurora by factor' + write(*, *) 'IsKappaAurora - use a kappa instead of Maxwellian' + write(*, *) 'AuroraKappa - kappa to use in the distribution' + write(*, *) 'AllowAurWODiffuse: allow other aurora if diffuse is zero? [F]' + write(*, *) 'MaxAveEAurora - Maximum allowed value of AvgE' write(*, *) '' - write(*, *) '#FTAMODEL' - write(*, *) 'UseFtaModel (logical)' - IsDone = .true. - else - if (UseFtaModel .and. .not. HasSetAuroraMods) & - NormalizeAuroraToHP = .false. + write(*, *) '#AURORAMODS' + write(*, *) 'NormalizeAuroraToHP (logical)' + write(*, *) 'AveEFactor (real)' + write(*, *) 'IsKappaAurora (logical)' + write(*, *) 'AuroraKappa (real)' + write(*, *) 'AllowAurWODiffuse (logical)' + write(*, *) 'MaxAveEAurora (real)' endif - case ("#FANGENERGY") - call read_in_logical(UseFangEnergyDeposition, iError) + case ("#AURORATYPES") !"auroratypes? diffuse=true, rest=false + call read_in_logical(UseDiffuseAurora, iError) + call read_in_logical(UseMonoAurora, iError) + call read_in_logical(UseWaveAurora, iError) + call read_in_logical(UseIonAurora, iError) + if (iError /= 0) then - write(*, *) 'Incorrect format for #FANGENERGY' - write(*, *) 'This is for using Dongjies aurora.' + write(*, *) 'Incorrect format for #AURORATYPES' + write(*, *) 'This is for setting aurora types from Electrodynamics.' + write(*, *) 'At time of writing, this only works for Newell/OvationPrime.' + write(*, *) 'These are all False by default, using only diffuse:' write(*, *) '' - write(*, *) '#FANGENERGY' - write(*, *) 'UseFangEnergyDeposition (logical)' + write(*, *) '#AURORATYPES' + write(*, *) 'UseDiffuseAurora (logical) - True by default' + write(*, *) 'UseMonoAurora (logical)' + write(*, *) 'UseWaveAurora (logical)' + write(*, *) 'UseIonAurora (logical)' IsDone = .true. endif @@ -807,20 +850,19 @@ subroutine set_inputs IsDone = .true. endif - case ("#AMIEFILES") - call read_in_string(cAMIEFileNorth, iError) - call read_in_string(cAMIEFileSouth, iError) + case ("#USEPOLARRAIN") + call read_in_logical(UsePolarRain, iError) + call read_in_real(polarRainAveE, iError) + call read_in_real(polarRainEFlux, iError) if (iError /= 0) then - write(*, *) 'Incorrect format for #AMIEFILES:' + write(*, *) 'Incorrect format for #USECUSP' + write(*, *) 'This is for specifying a cusp.' write(*, *) '' - write(*, *) '#AMIEFILES' - write(*, *) 'cAMIEFileNorth (string)' - write(*, *) 'cAMIEFileSouth (string)' + write(*, *) '#USEPOLARRAIN' + write(*, *) 'UsePolarRain (logical)' + write(*, *) 'PolarRainAveE (real)' + write(*, *) 'PolarRainEFlux (real)' IsDone = .true. - else - if (index(cAMIEFileNorth, "none") == 0 .and. & - .not. HasSetAuroraMods) & - NormalizeAuroraToHP = .false. endif case ("#USEREGIONALAMIE") @@ -921,14 +963,28 @@ subroutine set_inputs case ("#IONLIMITS") call read_in_real(MaxVParallel, iError) call read_in_real(MaxEField, iError) + call read_in_real(MinIonDensity, iError) + call read_in_real(MinIonDensityAdvect, iError) if (iError /= 0) then write(*, *) 'Incorrect format for #IONLIMITS:' write(*, *) '' write(*, *) '#IONLIMITS' - write(*, *) "MaxVParallel (real, default=100 m/s)" - write(*, *) "MaxEField (real, default=0.1 V/m)" - MaxVParallel = 100.0 - MaxEField = 0.1 + write(*, *) "MaxVParallel (real, default=100 m/s)" + write(*, *) "MaxEField (real, default=0.1 V/m)" + write(*, *) "MinIonDensity (real, default=100 m^-3)" + write(*, *) "MinIonDensityAdvect (real, default=1e5 m^-3)" + IsDone = .true. + endif + + case ("#NEUTRALLIMITS") + call read_in_real(MinNeutralDensity, iError) + call read_in_real(MinNeutralDensityAdvect, iError) + if (iError /= 0) then + write(*, *) 'Incorrect format for #NEUTRALLIMITS:' + write(*, *) '' + write(*, *) '#IONLIMITS' + write(*, *) "MinNeutralDensity (real, default=100 m^-3)" + write(*, *) "MinNeutralDensityAdvect (real, default=1e5 m^-3)" IsDone = .true. endif @@ -954,10 +1010,19 @@ subroutine set_inputs IsDone = .true. endif + case ("#DON4SHACK") + call read_in_logical(DoN4SHack, iError) + if (iError /= 0) then + write(*, *) 'Incorrect format for #DON4SHACK:' + write(*, *) '' + write(*, *) '#DON4SHACK' + write(*, *) "DoN4SHack (logical)" + IsDone = .true. + endif + case ("#THERMO") call read_in_logical(UseSolarHeating, iError) call read_in_logical(UseJouleHeating, iError) - call read_in_logical(UseAuroralHeating, iError) call read_in_logical(UseNOCooling, iError) call read_in_logical(UseOCooling, iError) call read_in_logical(UseConduction, iError) @@ -969,7 +1034,6 @@ subroutine set_inputs write(*, *) '#THERMO' write(*, *) "UseSolarHeating (logical)" write(*, *) "UseJouleHeating (logical)" - write(*, *) "UseAuroralHeating (logical)" write(*, *) "UseNOCooling (logical)" write(*, *) "UseOCooling (logical)" write(*, *) "UseConduction (logical)" @@ -1064,7 +1128,7 @@ subroutine set_inputs IsDone = .true. endif - case ("#MODIFIYPLANET") + case ("#MODIFYPLANET") call read_in_real(RotationPeriodInput, iError) call read_in_real(DaysPerYearInput, iError) call read_in_real(PlanetTiltInput, iError) @@ -1098,6 +1162,7 @@ subroutine set_inputs write(*, *) '#USEIMPROVEDIONADVECTION' write(*, *) "UseImprovedIonAdvection (logical)" write(*, *) "UseNighttimeIonBCs (logical)" + write(*, *) "MinTEC (real)" endif case ("#USETESTVISCOSITY") @@ -1174,6 +1239,8 @@ subroutine set_inputs if (iError /= 0) then write(*, *) 'Incorrect format for #DIPOLE:' + write(*, *) "For #USESTATISTICALMODELSONLY's electrodynamics outputs (2DGEL)," + write(*, *) ' set all 5 values to zero to align magnetic & geographic grids.' write(*, *) '' write(*, *) '#DIPOLE' write(*, *) 'MagneticPoleRotation (real)' @@ -1601,20 +1668,6 @@ subroutine set_inputs write(*, *) "useDART (integer, {default 0=no}, 1=master ensemble member, 2=slave ens.)" endif - case ("#ELECTRODYNAMICS") - call read_in_real(dTPotential, iError) - call read_in_real(dTAurora, iError) - if (iError /= 0) then - write(*, *) 'Incorrect format for #ELECTRODYNAMICS' - write(*, *) 'Sets the time for updating the high-latitude' - write(*, *) '(and low-latitude) electrodynamic drivers, such as' - write(*, *) 'the potential and the aurora.' - write(*, *) '#ELECTRODYNAMICS' - write(*, *) 'DtPotential (real, seconds)' - write(*, *) 'DtAurora (real, seconds)' - IsDone = .true. - endif - case ("#INPUTTIMEDELAY") call read_in_real(TimeDelayHighLat, iError) call read_in_real(TimeDelayEUV, iError) @@ -1638,17 +1691,6 @@ subroutine set_inputs IsDone = .true. endif - case ("#IONPRECIPITATION") - call read_in_logical(UseIonPrecipitation, iError) - if (iError /= 0) then - write(*, *) 'Incorrect format for #IONPRECIPITATION' - write(*, *) 'You can only have an AMIE input file for this now.' - write(*, *) 'Make sure you put the ions in the AMIE file!!!' - write(*, *) '#IONPRECIPITATION' - write(*, *) 'UseIonPrecipitation (logical)' - IsDone = .true. - endif - case ("#LOGFILE") call read_in_real(dTLogFile, iError) if (iError /= 0) then @@ -1821,6 +1863,24 @@ subroutine set_inputs write(*, *) "----------------------------------------------" iError = 0 endif + + call read_in_logical(doSeparateHPI, iError) + if ((iError /= 0) .and. (iDebugProc == iProc) .and. doUseAeForHp) then + write(*, *) "----------------------------------------------" + write(*, *) "GITM allows the use of a 10% seasonal " + write(*, *) "correction factor in the conversion of AE to HP" + write(*, *) "Put another T after convert to HP if you want this," + write(*, *) "or put an F to silence this message." + write(*, *) "----------------------------------------------" + iError = 0 + endif + + ! Check if HPI was read with SME, print warning if so: + if (didDeclareHP .and. doUseAeForHp .and. (iDebugProc == iProc)) then + call set_error("HPI defined twice. Using only one is supported.") + endif + if (doUseAeForHp) didDeclareHP = .true. + cTempLines(4) = " " cTempLines(5) = "#END" @@ -1830,7 +1890,8 @@ subroutine set_inputs else call read_sme(iError, & CurrentTime + TimeDelayHighLat, & - EndTime + TimeDelayHighLat, doUseAeForHp) + EndTime + TimeDelayHighLat, & + doUseAeForHp, DoSeparateHPI) endif if (iError /= 0) then @@ -1841,7 +1902,7 @@ subroutine set_inputs ! If the onset file is called "none", then it will ! automatically ignore this: - call read_al_onset_list(iError, & + call read_al_onset_list(iError, & !TODO: Get this working in ieModel CurrentTime + TimeDelayHighLat, & EndTime + TimeDelayHighLat) @@ -1893,7 +1954,19 @@ subroutine set_inputs case ("#NOAAHPI_INDICES") cTempLines(1) = cLine call read_in_string(cTempLine, iError) + cTempLines(2) = cTempLine + + call read_in_logical(doSeparateHPI, iError) + if ((iError /= 0) .and. (iDebugProc == iProc)) then + write(*, *) "----------------------------------------------" + write(*, *) "GITM now allows you to scale the aurora by hemispheric" + write(*, *) "power independently in each hemisphere. To enable this," + write(*, *) "put a T after your HPI file, or put a F to silence." + write(*, *) "----------------------------------------------" + iError = 0 + endif + cTempLines(3) = " " cTempLines(4) = "#END" @@ -1901,7 +1974,7 @@ subroutine set_inputs if (IsFramework) then call read_NOAAHPI_Indices(iError) else - call read_NOAAHPI_Indices_new(iError, StartTime, EndTime) + call read_NOAAHPI_Indices_new(iError, StartTime, EndTime, DoSeparateHPI) endif if (iError /= 0) then @@ -1911,9 +1984,19 @@ subroutine set_inputs UseVariableInputs = .true. endif + ! Check if HPI was made from SME, print warning if so: + if (didDeclareHP) call set_error("HPI defined twice. Using only one is supported.") + didDeclareHP = .true. + case ("#END") IsDone = .true. + case default + if (iDebugProc == iProc) then + call raise_warning("Option found in UAM.in file without a matching key:") + call raise_warning(cLine) + endif + end select if (iError /= 0) IsDone = .true. @@ -1937,6 +2020,7 @@ subroutine set_inputs ! We need to check to see if the current time and end time are ! larger than the last F107 time. If that is the case, the code ! should stop + ! NOTE: In component mode, start/end times are not passed in yet. ! -> So we cannot check these. A fix is in the works... if (.not. IsFramework) then !SWMF_TIME_NOT_AVAILABLE @@ -1944,6 +2028,10 @@ subroutine set_inputs call check_all_indices(CurrentTime, iError) if (iError == 0) then call check_all_indices(EndTime, iError) + if (iError /= 0) & + write(*, *) 'Error with End Time and check_all_indices' + else + write(*, *) 'Error with Current Time and check_all_indices' endif if (iError /= 0) then call stop_gitm("Issue with Indices! Check the file(s) times!") diff --git a/src/set_vertical_bcs.Earth.f90 b/src/set_vertical_bcs.Earth.f90 index 8a7225f4..7c29b8e2 100644 --- a/src/set_vertical_bcs.Earth.f90 +++ b/src/set_vertical_bcs.Earth.f90 @@ -61,7 +61,7 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) logical :: UsePlasmasphereBC ! Gradient Terms - real :: dLogNS, dTemp, dVertVel + real :: dLogNS, dTemp, dVertVel, dVel real :: dLogINS ! Use for 4-th Order Forward Differences @@ -128,14 +128,15 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) F107A, F107, AP, LogNS_Species, temptemp, & LogRho(iAlt), v) - LogNS(iAlt, :) = logNS_Species - + ! transfer log of densities to variables that are used: + LogNS(iAlt, :) = LogNS_Species if (.not. DuringPerturb) temp(iAlt) = temptemp - vel_gd(iAlt, iEast_) = v(iEast_) vel_gd(iAlt, iNorth_) = v(iNorth_) enddo + NS = exp(LogNS) + else ! Don't Let the winds blow Vel_GD(-1:0, iEast_) = 0.0 @@ -143,6 +144,16 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) ! The rest of the BCs will just stay constant. endif + if (DoN4SHack) then + !! Hack for iN_4S_ for lower altitudes: + do iAlt = nAlts, 0, -1 + if (NS(iAlt - 1, iN_4S_) < 1000.0) then + NS(iAlt - 1, iN_4S_) = NS(iAlt, iN_4S_) + logNS(iAlt - 1, iN_4S_) = log(NS(iAlt - 1, iN_4S_)) + endif + enddo + endif + if (.not. DuringPerturb) then Vel_GD(-1:0, iUp_) = 0.0 VertVel(-1:0, :) = 0.0 @@ -170,10 +181,13 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) ! we really only have to enforce the density at the 0th cell: NS(0, 1:nSpecies) = exp(LogNS(0, 1:nSpecies)) - ! Let's assume that MSIS is returning a zonal-average when it - ! is run. So, we can then assume that we can simply perturb the - ! MSIS density. I am not 100% sure of this, but let's try it out: - NS(0, 1:nSpecies) = NS(0, 1:nSpecies)*TidesRhoRat(iLon1D, iLat1D, 2, iBlock1D) + ! Let's assume that MSIS is returning a zonal-average when it is + ! run (i.e. MSIS-flat). So, we can then assume that we can simply + ! perturb the MSIS density. + NS(0, 1:nSpecies) = & + NS(0, 1:nSpecies)* & + TidesRhoRat(iLon1D, iLat1D, 2, iBlock1D) + LogNS(0, 1:nSpecies) = alog(NS(0, 1:nSpecies)) endif @@ -218,8 +232,11 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) if (.not. IsPhotoChemical(iSpecies)) then - ! This is what we do when (1) We're using MSIS and (2) the - ! species is NOT Photochemical + ! This is setting the lowest ghostcell (-1), assuming that the 0th + ! ghostcell has been set. The reason for this is that we want to + ! make sure that we have a very good hydrostatic density here. + + ! These species are advected! iAlt = -1 MeanGravity = -0.5*(EffectiveGravity(iAlt) + EffectiveGravity(iAlt + 1)) @@ -229,9 +246,10 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) MeanGravity*MeanMass/(MeanTemp*Boltzmanns_Constant) ! Note the + in exponent, since we are going down in altitude. - NS(iAlt, iSpecies) = NS(iAlt + 1, iSpecies)* & - (Temp(iAlt + 1)/Temp(iAlt))* & - exp(1.0*InvScaleHeightS*dAlt_F(iAlt)) + NS(iAlt, iSpecies) = & + NS(iAlt + 1, iSpecies)* & + (Temp(iAlt + 1)/Temp(iAlt))* & + exp(InvScaleHeightS*dAlt_F(iAlt)) LogNS(iAlt, iSpecies) = alog(NS(iAlt, iSpecies)) @@ -242,6 +260,8 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) else + ! These are for non-advected species: + do iAlt = 0, -1, -1 h1 = dAlt_F(iAlt + 2) ! dAlt_F(1) = Alt(1) - Alt(0); h1 in notes @@ -255,7 +275,7 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) MeshH3 = h1 + h2 + h3 MeshH4 = h1 + h2 + h3 + h4 - !!! 3rd Order Mesh Coef + ! 3rd Order Mesh Coef MeshCoef0 = -1.0*(MeshH2*MeshH3*MeshH4 + MeshH1*MeshH3*MeshH4 + & MeshH1*MeshH2*MeshH4 + MeshH1*MeshH2*MeshH3)/ & (MeshH1*MeshH2*MeshH3*MeshH4) @@ -266,11 +286,12 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) MeshCoef4 = -1.0*(MeshH1*MeshH2*MeshH3)/ & (MeshH4*(h2 + h3 + h4)*(h3 + h4)*h4) - dLogNS = LogNS(iAlt + 1, iSpecies)*MeshCoef0 + & - LogNS(iAlt + 2, iSpecies)*MeshCoef1 + & - LogNS(iAlt + 3, iSpecies)*MeshCoef2 + & - LogNS(iAlt + 4, iSpecies)*MeshCoef3 + & - LogNS(iAlt + 5, iSpecies)*MeshCoef4 + dLogNS = & + LogNS(iAlt + 1, iSpecies)*MeshCoef0 + & + LogNS(iAlt + 2, iSpecies)*MeshCoef1 + & + LogNS(iAlt + 3, iSpecies)*MeshCoef2 + & + LogNS(iAlt + 4, iSpecies)*MeshCoef3 + & + LogNS(iAlt + 5, iSpecies)*MeshCoef4 LogNS(iAlt, iSpecies) = & LogNS(iAlt + 1, iSpecies) - dAlt_F(iAlt + 1)*dLogNS @@ -380,18 +401,20 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) exp(LogRho(iAlt)) enddo - if ((iAlt == -1) .and. (UseMsisBcs)) then + ! Here we are projecting the east/west velocities from + ! the 0th ghostcell to the -1 ghost cell. + if ((iAlt == -1) .and. (UseMsisBcs)) then do iDir = iEast_, iNorth_ - dVertVel = Vel_GD(iAlt + 1, iDir)*MeshCoef0 + & - Vel_GD(iAlt + 2, iDir)*MeshCoef1 + & - Vel_GD(iAlt + 3, iDir)*MeshCoef2 + & - Vel_GD(iAlt + 4, iDir)*MeshCoef3 + & - Vel_GD(iAlt + 5, iDir)*MeshCoef4 - - Vel_GD(iAlt, iDir) = Vel_GD(iAlt + 1, iDir) - dAlt_F(iAlt + 1)*dVertVel + dVel = & + Vel_GD(iAlt + 1, iDir)*MeshCoef0 + & + Vel_GD(iAlt + 2, iDir)*MeshCoef1 + & + Vel_GD(iAlt + 3, iDir)*MeshCoef2 + & + Vel_GD(iAlt + 4, iDir)*MeshCoef3 + & + Vel_GD(iAlt + 5, iDir)*MeshCoef4 + + Vel_GD(iAlt, iDir) = Vel_GD(iAlt + 1, iDir) - dAlt_F(iAlt + 1)*dVel enddo - endif enddo ! End Outer IAlt Loop (0, -1, -1) @@ -546,8 +569,6 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) if (UseImprovedIonAdvection) then - call check_for_negative_densities - n0 = alog(LogINS(iAlt, iSpecies)) n1 = alog(LogINS(iAlt - 1, iSpecies)) n2 = alog(LogINS(iAlt - 2, iSpecies)) @@ -621,49 +642,5 @@ subroutine set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, iVel, VertVel) LogRho(iAlt) = alog(SumRho) enddo -contains - - subroutine check_for_negative_densities - - integer :: iAltSub - logical :: IsFound - - if (minval(LogINS(iAlt - 5:iAlt, iSpecies)) < 0.0) then - - if (DoCheckForNaNs) write(*, *) "Correcting negative ion density in set_vertical_bcs : ", iAlt, iSpecies - - if (LogINS(iAlt - 6, iSpecies) < 0.0) then - write(*, *) 'Negative Ion density too close to the upper boundary: ', iSpecies - call stop_gitm('Stopping in set_vertical_bcs') - endif - - do iAltSub = iAlt - 5, iAlt - 1 - - if (LogINS(iAltSub, iSpecies) < 0.0) then - - if (LogINS(iAltSub - 1, iSpecies) > 0.0 .and. & - LogINS(iAltSub + 1, iSpecies) > 0.0) then - ! Average two points around it: - LogINS(iAltSub, iSpecies) = & - (LogINS(iAltSub - 1, iSpecies) + LogINS(iAltSub + 1, iSpecies))/2.0 - else - ! Or take previous point and decrease it by 5 percent: - LogINS(iAltSub, iSpecies) = LogINS(iAltSub - 1, iSpecies)*0.95 - endif - - endif - - enddo - - ! Top point: - if (LogINS(iAlt, iSpecies) < 0.0) then - ! Take previous point and decrease it by 5 percent: - LogINS(iAlt, iSpecies) = LogINS(iAlt - 1, iSpecies)*0.95 - endif - - endif - - end subroutine check_for_negative_densities - end subroutine set_vertical_bcs diff --git a/src/user.f90 b/src/user.f90 index 12fb3d6a..47718633 100644 --- a/src/user.f90 +++ b/src/user.f90 @@ -79,7 +79,7 @@ subroutine user_perturbation use ModNumConst use ModKind, ONLY: Real8_ use ModTime - use ModSources, only: UserHeatingRate + use ModSources, only: UserHeatingRate, ED_N_Energies implicit none diff --git a/src/vertical_solver.f90 b/src/vertical_solver.f90 deleted file mode 100644 index 82008928..00000000 --- a/src/vertical_solver.f90 +++ /dev/null @@ -1,802 +0,0 @@ -! Copyright 2021, the GITM Development Team (see srcDoc/dev_team.md for members) -! Full license can be found in LICENSE - -!\ -! ------------------------------------------------------------ -! advance -! ------------------------------------------------------------ -!/ - -subroutine advance_vertical_1d - - use ModVertical - use ModGITM, ONLY: Dt, iCommGITM, iProc - use ModInputs, only: UseBarriers, iDebugLevel, UseNighttimeIonBCs - implicit none - !----------------------------------------------------------- - integer :: iError, iAlt - !!!!! Variables for the Runga-Kutta 4th Order Time-stepping - real :: OrigLogNS(-1:nAlts + 2, 1:nSpecies) - real :: OrigLogINS(-1:nAlts + 2, 1:nIons) - real :: OrigLogRho(-1:nAlts + 2) - real :: OrigVel_GD(-1:nAlts + 2, 1:3) - real :: OrigTemp(-1:nAlts + 2) - real :: OrigVS(-1:nAlts + 2, 1:nSpecies) - - real :: UpdatedLogNS(-1:nAlts + 2, 1:nSpecies) - real :: UpdatedLogINS(-1:nAlts + 2, 1:nIons) - real :: UpdatedLogRho(-1:nAlts + 2) - real :: UpdatedVel_GD(-1:nAlts + 2, 1:3) - real :: UpdatedTemp(-1:nAlts + 2) - real :: UpdatedVS(-1:nAlts + 2, 1:nSpecies) - - real :: FinalLogNS(-1:nAlts + 2, 1:nSpecies) - real :: FinalLogINS(-1:nAlts + 2, 1:nIons) - real :: FinalLogRho(-1:nAlts + 2) - real :: FinalVel_GD(-1:nAlts + 2, 1:3) - real :: FinalTemp(-1:nAlts + 2) - real :: FinalVS(-1:nAlts + 2, 1:nSpecies) - -!!! RK-4 Coefficients - real :: K1LogNS(-1:nAlts + 2, 1:nSpecies) - real :: K1LogINS(-1:nAlts + 2, 1:nIons) - real :: K1LogRho(-1:nAlts + 2) - real :: K1Vel_GD(-1:nAlts + 2, 1:3) - real :: K1Temp(-1:nAlts + 2) - real :: K1VS(-1:nAlts + 2, 1:nSpecies) - - real :: K2LogNS(-1:nAlts + 2, 1:nSpecies) - real :: K2LogINS(-1:nAlts + 2, 1:nIons) - real :: K2LogRho(-1:nAlts + 2) - real :: K2Vel_GD(-1:nAlts + 2, 1:3) - real :: K2Temp(-1:nAlts + 2) - real :: K2VS(-1:nAlts + 2, 1:nSpecies) - - real :: K3LogNS(-1:nAlts + 2, 1:nSpecies) - real :: K3LogINS(-1:nAlts + 2, 1:nIons) - real :: K3LogRho(-1:nAlts + 2) - real :: K3Vel_GD(-1:nAlts + 2, 1:3) - real :: K3Temp(-1:nAlts + 2) - real :: K3VS(-1:nAlts + 2, 1:nSpecies) - - real :: K4LogNS(-1:nAlts + 2, 1:nSpecies) - real :: K4LogINS(-1:nAlts + 2, 1:nIons) - real :: K4LogRho(-1:nAlts + 2) - real :: K4Vel_GD(-1:nAlts + 2, 1:3) - real :: K4Temp(-1:nAlts + 2) - real :: K4VS(-1:nAlts + 2, 1:nSpecies) - - real :: DtOriginal - - real :: OldBCINS(2, 1:nIons) - - if (UseBarriers) call MPI_BARRIER(iCommGITM, iError) - if (iDebugLevel > 6) write(*, *) "=======> vertical bcs 1", iproc - - DtOriginal = Dt !!! Store this so that it doesn't change - -!!! ================= -!!! General RK4 Update: -!!! Y(n+1) = Y(n) + Dt/6*(k1 + 2k2 + 2k3 + k4) -!!! Time(n+1) = Time(n) + Dt -!!! -!!! k1 = f(tn,yn) -!!! k2 = f(tn + Dt/2, Yn + Dt/2*k1) -!!! k3 = f(tn + Dt/2, Yn + Dt/2*k2) -!!! k4 = f(tn + Dt, Yn + Dt*k3) -!!! ================= - - ! Step 1, Fill in Ghost Cells - call set_vertical_bcs(LogRho, LogNS, Vel_GD, Temp, LogINS, IVel, VertVel) - !!!!!!------change the gradient of LogIns on the top boundary - if (UseNighttimeIonBCs) call nighttime_timeconstant(LogINS, OldBCINS) - - ! Store our original time step from GITM (CFL-limited). - -!!! Set the Original State -> Orig = Y(n) - OrigLogNS(-1:nAlts + 2, 1:nSpecies) = LogNS(-1:nAlts + 2, 1:nSpecies) - OrigLogINS(-1:nAlts + 2, 1:nIons) = LogINS(-1:nAlts + 2, 1:nIons) - OrigLogRho(-1:nAlts + 2) = LogRho(-1:nAlts + 2) - OrigVel_GD(-1:nAlts + 2, 1:3) = Vel_GD(-1:nAlts + 2, 1:3) - OrigTemp(-1:nAlts + 2) = Temp(-1:nAlts + 2) - OrigVS(-1:nAlts + 2, 1:nSpecies) = VertVel(-1:nAlts + 2, 1:nSpecies) - - NewLogNS = LogNS - NewLogINS = LogINS - NewLogRho = LogRho - NewVel_GD = Vel_GD - NewTemp = Temp - NewVertVel = VertVel - -!!! Now calculate, k1 = f(tn, yn) - call advance_vertical_1stage_rusanov( & - LogRho, LogNS, Vel_GD, Temp, NewLogRho, NewLogNS, NewVel_GD, NewTemp, & - LogINS, NewLogINS, IVel, VertVel, NewVertVel) - -!!! note that Stage 1 -> updated by a 1/2 step -!!! (NewLogNS - LogNS) = f(tn + Dt/2, yn + dt/2) - -! Dt = DtOriginal/2.0 - - K1LogNS(-1:nAlts + 2, 1:nSpecies) = & - (NewLogNS(-1:nAlts + 2, 1:nSpecies) - LogNS(-1:nAlts + 2, 1:nSpecies)) - - K1LogINS(-1:nAlts + 2, 1:nIons) = & - (NewLogINS(-1:nAlts + 2, 1:nIons) - LogINS(-1:nAlts + 2, 1:nIons)) - - K1LogRho(-1:nAlts + 2) = & - (NewLogRho(-1:nAlts + 2) - LogRho(-1:nAlts + 2)) - - K1Vel_GD(-1:nAlts + 2, 1:3) = & - (NewVel_GD(-1:nAlts + 2, 1:3) - Vel_GD(-1:nAlts + 2, 1:3)) - - K1Temp(-1:nAlts + 2) = & - (NewTemp(-1:nAlts + 2) - Temp(-1:nAlts + 2)) - - K1VS(-1:nAlts + 2, 1:nSpecies) = & - (NewVertVel(-1:nAlts + 2, 1:nSpecies) - VertVel(-1:nAlts + 2, 1:nSpecies)) - - !!! Now Calculate the Next Update Stage - !!! We need Y(Updated) = Y(n) + 0.5*K1 - - UpdatedVel_GD(-1:nAlts + 2, 1:3) = & - OrigVel_GD(-1:nAlts + 2, 1:3) + & - 0.5*K1Vel_GD(-1:nAlts + 2, 1:3) - - UpdatedLogNS(-1:nAlts + 2, 1:nSpecies) = & - OrigLogNS(-1:nAlts + 2, 1:nSpecies) + & - 0.5*K1LogNS(-1:nAlts + 2, 1:nSpecies) - - UpdatedLogINS(-1:nAlts + 2, 1:nIons) = & - OrigLogINS(-1:nAlts + 2, 1:nIons) + & - 0.5*K1LogINS(-1:nAlts + 2, 1:nIons) - - UpdatedLogRho(-1:nAlts + 2) = & - OrigLogRho(-1:nAlts + 2) + & - 0.5*K1LogRho(-1:nAlts + 2) - - UpdatedTemp(-1:nAlts + 2) = & - OrigTemp(-1:nAlts + 2) + & - 0.5*K1Temp(-1:nAlts + 2) - - UpdatedVS(-1:nAlts + 2, 1:nSpecies) = & - OrigVS(-1:nAlts + 2, 1:nSpecies) + & - 0.5*K1VS(-1:nAlts + 2, 1:nSpecies) - -!!! UpdateStage 1 Upper Boundary - call set_vertical_bcs(UpdatedLogRho, UpdatedLogNS, UpdatedVel_GD, & - UpdatedTemp, UpdatedLogINS, IVel, UpdatedVS) - - !!!!!!------change the gradient of LogIns on the top boundary - if (UseNighttimeIonBCs) call nighttime_timeconstant(UpdatedLogINS, OldBCINS) - - LogNS = UpdatedLogNS - LogINS = UpdatedLogINS - LogRho = UpdatedLogRho - Vel_GD = UpdatedVel_GD - Temp = UpdatedTemp - VertVel = UpdatedVS - - NewLogNS = LogNS - NewLogINS = LogINS - NewLogRho = LogRho - NewVel_GD = Vel_GD - NewTemp = Temp - NewVertVel = VertVel - -!!!!! Calculate K2 - - call advance_vertical_1stage_rusanov( & - LogRho, LogNS, Vel_GD, Temp, NewLogRho, NewLogNS, NewVel_GD, NewTemp, & - LogINS, NewLogINS, IVel, VertVel, NewVertVel) - -!!! K2 Coefficients for RK-4 - K2LogNS(-1:nAlts + 2, 1:nSpecies) = & - (NewLogNS(-1:nAlts + 2, 1:nSpecies) - LogNS(-1:nAlts + 2, 1:nSpecies)) - - K2LogINS(-1:nAlts + 2, 1:nIons) = & - (NewLogINS(-1:nAlts + 2, 1:nIons) - LogINS(-1:nAlts + 2, 1:nIons)) - - K2LogRho(-1:nAlts + 2) = & - (NewLogRho(-1:nAlts + 2) - LogRho(-1:nAlts + 2)) - - K2Vel_GD(-1:nAlts + 2, 1:3) = & - (NewVel_GD(-1:nAlts + 2, 1:3) - Vel_GD(-1:nAlts + 2, 1:3)) - - K2Temp(-1:nAlts + 2) = & - (NewTemp(-1:nAlts + 2) - Temp(-1:nAlts + 2)) - - K2VS(-1:nAlts + 2, 1:nSpecies) = & - (NewVertVel(-1:nAlts + 2, 1:nSpecies) - VertVel(-1:nAlts + 2, 1:nSpecies)) - - !!! Now we want Y(Updated) = Y(n) + 0.5*K2 - - UpdatedVel_GD(-1:nAlts + 2, 1:3) = & - OrigVel_GD(-1:nAlts + 2, 1:3) + & - 0.5*K2Vel_GD(-1:nAlts + 2, 1:3) - - UpdatedLogNS(-1:nAlts + 2, 1:nSpecies) = & - OrigLogNS(-1:nAlts + 2, 1:nSpecies) + & - 0.5*K2LogNS(-1:nAlts + 2, 1:nSpecies) - - UpdatedLogINS(-1:nAlts + 2, 1:nIons) = & - OrigLogINS(-1:nAlts + 2, 1:nIons) + & - 0.5*K2LogINS(-1:nAlts + 2, 1:nIons) - - UpdatedLogRho(-1:nAlts + 2) = & - OrigLogRho(-1:nAlts + 2) + & - 0.5*K2LogRho(-1:nAlts + 2) - - UpdatedTemp(-1:nAlts + 2) = & - OrigTemp(-1:nAlts + 2) + & - 0.5*K2Temp(-1:nAlts + 2) - - UpdatedVS(-1:nAlts + 2, 1:nSpecies) = & - OrigVS(-1:nAlts + 2, 1:nSpecies) + & - 0.5*K2VS(-1:nAlts + 2, 1:nSpecies) - -!! Update Boundary Conditions - call set_vertical_bcs(UpdatedLogRho, UpdatedLogNS, UpdatedVel_GD, & - UpdatedTemp, UpdatedLogINS, IVel, UpdatedVS) - - !!!!!!------change the gradient of LogIns on the top boundary - if (UseNighttimeIonBCs) call nighttime_timeconstant(UpdatedLogINS, OldBCINS) - - LogNS = UpdatedLogNS - LogINS = UpdatedLogINS - LogRho = UpdatedLogRho - Vel_GD = UpdatedVel_GD - Temp = UpdatedTemp - VertVel = UpdatedVS - - NewLogNS = LogNS - NewLogINS = LogINS - NewLogRho = LogRho - NewVel_GD = Vel_GD - NewTemp = Temp - NewVertVel = VertVel -! -! -!!!!!! Calculate K3 -! - call advance_vertical_1stage_rusanov( & - LogRho, LogNS, Vel_GD, Temp, NewLogRho, NewLogNS, NewVel_GD, NewTemp, & - LogINS, NewLogINS, IVel, VertVel, NewVertVel) -! -!!!! K3 Coefficients for RK-4 - K3LogNS(-1:nAlts + 2, 1:nSpecies) = & - (NewLogNS(-1:nAlts + 2, 1:nSpecies) - LogNS(-1:nAlts + 2, 1:nSpecies)) - - K3LogINS(-1:nAlts + 2, 1:nIons) = & - (NewLogINS(-1:nAlts + 2, 1:nIons) - LogINS(-1:nAlts + 2, 1:nIons)) - - K3LogRho(-1:nAlts + 2) = & - (NewLogRho(-1:nAlts + 2) - LogRho(-1:nAlts + 2)) - - K3Vel_GD(-1:nAlts + 2, 1:3) = & - (NewVel_GD(-1:nAlts + 2, 1:3) - Vel_GD(-1:nAlts + 2, 1:3)) - - K3Temp(-1:nAlts + 2) = & - (NewTemp(-1:nAlts + 2) - Temp(-1:nAlts + 2)) - - K3VS(-1:nAlts + 2, 1:nSpecies) = & - (NewVertVel(-1:nAlts + 2, 1:nSpecies) - VertVel(-1:nAlts + 2, 1:nSpecies)) - !!! Now we want Y(Updated) = Y(n) + K3 - - UpdatedVel_GD(-1:nAlts + 2, 1:3) = & - OrigVel_GD(-1:nAlts + 2, 1:3) + & - K3Vel_GD(-1:nAlts + 2, 1:3) - - UpdatedLogNS(-1:nAlts + 2, 1:nSpecies) = & - OrigLogNS(-1:nAlts + 2, 1:nSpecies) + & - K3LogNS(-1:nAlts + 2, 1:nSpecies) - - UpdatedLogINS(-1:nAlts + 2, 1:nIons) = & - OrigLogINS(-1:nAlts + 2, 1:nIons) + & - K3LogINS(-1:nAlts + 2, 1:nIons) - - UpdatedLogRho(-1:nAlts + 2) = & - OrigLogRho(-1:nAlts + 2) + & - K3LogRho(-1:nAlts + 2) - - UpdatedTemp(-1:nAlts + 2) = & - OrigTemp(-1:nAlts + 2) + & - K3Temp(-1:nAlts + 2) - - UpdatedVS(-1:nAlts + 2, 1:nSpecies) = & - OrigVS(-1:nAlts + 2, 1:nSpecies) + & - K3VS(-1:nAlts + 2, 1:nSpecies) - -!!!! Update Boundary Conditions - call set_vertical_bcs(UpdatedLogRho, UpdatedLogNS, UpdatedVel_GD, & - UpdatedTemp, UpdatedLogINS, IVel, UpdatedVS) - - !!!!!!------change the gradient of LogIns on the top boundary - if (UseNighttimeIonBCs) call nighttime_timeconstant(UpdatedLogINS, OldBCINS) - - LogNS = UpdatedLogNS - LogINS = UpdatedLogINS - LogRho = UpdatedLogRho - Vel_GD = UpdatedVel_GD - Temp = UpdatedTemp - VertVel = UpdatedVS - - NewLogNS = LogNS - NewLogINS = LogINS - NewLogRho = LogRho - NewVel_GD = Vel_GD - NewTemp = Temp - NewVertVel = VertVel - -!! Calculate K4 (Final Coefficient) - - call advance_vertical_1stage_rusanov( & - LogRho, LogNS, Vel_GD, Temp, NewLogRho, NewLogNS, NewVel_GD, NewTemp, & - LogINS, NewLogINS, IVel, VertVel, NewVertVel) - -!!! K4 Coefficients for RK-4 - K4LogNS(-1:nAlts + 2, 1:nSpecies) = & - (NewLogNS(-1:nAlts + 2, 1:nSpecies) - LogNS(-1:nAlts + 2, 1:nSpecies)) - - K4LogINS(-1:nAlts + 2, 1:nIons) = & - (NewLogINS(-1:nAlts + 2, 1:nIons) - LogINS(-1:nAlts + 2, 1:nIons)) - - K4LogRho(-1:nAlts + 2) = & - (NewLogRho(-1:nAlts + 2) - LogRho(-1:nAlts + 2)) - - K4Vel_GD(-1:nAlts + 2, 1:3) = & - (NewVel_GD(-1:nAlts + 2, 1:3) - Vel_GD(-1:nAlts + 2, 1:3)) - - K4Temp(-1:nAlts + 2) = & - (NewTemp(-1:nAlts + 2) - Temp(-1:nAlts + 2)) - - K4VS(-1:nAlts + 2, 1:nSpecies) = & - (NewVertVel(-1:nAlts + 2, 1:nSpecies) - VertVel(-1:nAlts + 2, 1:nSpecies)) -!!!!! END Update Cycle ======================================== - -!!! Set the Updated State: Stage 2 - FinalLogNS = OrigLogNS + & - (1.0/6.0)*(K1LogNS + 2.0*K2LogNS + 2.0*K3LogNS + K4LogNS) - - FinalLogINS = OrigLogINS + & - (1.0/6.0)*(K1LogINS + 2.0*K2LogINS + 2.0*K3LogINS + K4LogINS) - - FinalLogRho = OrigLogRho + & - (1.0/6.0)*(K1LogRho + 2.0*K2LogRho + 2.0*K3LogRho + K4LogRho) - - FinalVel_GD = OrigVel_GD + & - (1.0/6.0)*(K1Vel_GD + 2.0*K2Vel_GD + 2.0*K3Vel_GD + K4Vel_GD) - - FinalTemp = OrigTemp + & - (1.0/6.0)*(K1Temp + 2.0*K2Temp + 2.0*K3Temp + K4Temp) - - FinalVS = OrigVS + & - (1.0/6.0)*(K1VS + 2.0*K2VS + 2.0*K3VS + K4VS) - - call set_vertical_bcs(FinalLogRho, FinalLogNS, FinalVel_GD, & - FinalTemp, FinalLogINS, IVel, FinalVS) - - !!!!!!------change the gradient of LogIns on the top boundary - if (UseNighttimeIonBCs) call nighttime_timeconstant(UpdatedLogINS, OldBCINS) - -!!! Set the Updated State: Stage 2 - - LogNS = FinalLogNS - LogINS = FinalLogINS - LogRho = FinalLogRho - Vel_GD = FinalVel_GD - Temp = FinalTemp - VertVel = FinalVS - - if (UseBarriers) call MPI_BARRIER(iCommGITM, iError) - if (iDebugLevel > 7) & - write(*, *) "========> Done with advance_vertical_1d", iproc - -end subroutine advance_vertical_1d - -!============================================================================= -subroutine advance_vertical_1stage_rusanov( & - LogRho, LogNS, Vel_GD, Temp, NewLogRho, NewLogNS, NewVel_GD, NewTemp, & - LogINS, NewLogINS, IVel, VertVel, NewVertVel) - - ! With fluxes and sources based on LogRho..Temp, update NewLogRho..NewTemp - - use ModGITM, only: & - Dt, iEast_, iNorth_, iUp_, ThermalDiffCoefS - use ModPlanet - use ModSizeGitm - use ModVertical, only: & - EddyCoef_1D, Centrifugal, Coriolis, & - MeanMajorMass_1d, Gamma_1d, InvRadialDistance_C, & - KappaTemp_1d, & - Gravity_G, Altitude_G, Cv_1D, dAlt_F - use ModTime - use ModInputs - use ModConstants - implicit none - - real, intent(in) :: LogRho(-1:nAlts + 2) - real, intent(in) :: LogNS(-1:nAlts + 2, nSpecies) - real, intent(in) :: LogINS(-1:nAlts + 2, nIons) - real, intent(in) :: Vel_GD(-1:nAlts + 2, 3) - real, intent(in) :: IVel(-1:nAlts + 2, 3) - real, intent(in) :: Temp(-1:nAlts + 2) - real, intent(in) :: VertVel(-1:nAlts + 2, nSpecies) - - real, intent(inout) :: NewLogRho(-1:nAlts + 2) - real, intent(inout) :: NewLogNS(-1:nAlts + 2, nSpecies) - real, intent(inout) :: NewLogINS(-1:nAlts + 2, nIons) - real, intent(inout) :: NewVel_GD(-1:nAlts + 2, 3) - real, intent(inout) :: NewTemp(-1:nAlts + 2) - real, intent(out) :: NewVertVel(-1:nAlts + 2, nSpecies) - real :: NS(-1:nAlts + 2, nSpecies) - real :: Rho(-1:nAlts + 2) - real :: LogNum(-1:nAlts + 2) - - real, dimension(1:nAlts) :: GradLogRho, DivVel, GradTemp, GradTempKoM, & - DiffLogRho, DiffTemp, GradTmp, DiffTmp, DiffLogNum, GradLogNum, & - DiviVel - real, dimension(1:nAlts, 3) :: GradVel_CD, DiffVel_CD - real, dimension(1:nAlts, 3) :: GradiVel_CD, DiffiVel_CD - - real, dimension(1:nAlts, nSpecies) :: GradLogNS, DiffLogNS, & - GradVertVel, DiffVertVel, DivVertVel - real, dimension(1:nAlts, nIons) :: GradLogINS, DiffLogINS - real :: NewSumRho, NewLogSumRho - - integer :: iAlt, iSpecies, jSpecies, iDim - - real, dimension(-1:nAlts + 2) :: NT - - real :: nVel(1:nAlts, 1:nSpecies) - integer :: nFilter, iFilter - real :: LowFilter -!\ -! Parameters Used for the Sponge -! This Sponge is useful to dampen out spurious modes -! oscillating between the bottom and top of the model. - integer :: nAltsSponge = 12 - real :: kSP, NuSP, AmpSP - ! JMB: Adding Eddy Diffusion Variables here - ! Note: These are used in the calc_neutral_friction - !-------------------------------------------------------------------------- - !! Eddy Diffusion Variables - real, dimension(1:nAlts, nSpecies) :: GradLogConS - real, dimension(-1:nAlts + 2, nSpecies) :: ConS, LogConS - !-------------------------------------------------------------------------- - ! 4th Order Gradients on a Non-Uniform Mesh (5-point Stencil) - ! Used for calculating the d(ln[Chi])/dr -> Log of the concentration gradient - !-------------------------------------------------------------------------- - real :: h1, h2, h3, h4 - real :: MeshH1, MeshH2, MeshH3, MeshH4 - real :: MeshCoef0, MeshCoef1, & - MeshCoef2, MeshCoef3, & - MeshCoef4 - !-------------------------------------------------------------------------- - NS = exp(LogNS) - Rho = exp(LogRho) - LogNum = alog(sum(NS, dim=2)) - nFilter = 10 - NT(-1:nAlts + 2) = exp(LogNum(-1:nAlts + 2)) - - call calc_rusanov_alts(LogRho, GradLogRho, DiffLogRho) - call calc_rusanov_alts(LogNum, GradLogNum, DiffLogNum) - call calc_rusanov_alts(Temp, GradTemp, DiffTemp) - do iDim = 1, 3 - call calc_rusanov_alts(Vel_GD(:, iDim), & - GradVel_CD(:, iDim), DiffVel_CD(:, iDim)) - call calc_rusanov_alts(iVel(:, iDim), & - GradiVel_CD(:, iDim), DiffiVel_CD(:, iDim)) - enddo - - ! Add geometrical correction to gradient and obtain divergence - DivVel = GradVel_CD(:, iUp_) + 2*Vel_GD(1:nAlts, iUp_)*InvRadialDistance_C(1:nAlts) - DiviVel = GradiVel_CD(:, iUp_) + 2*iVel(1:nAlts, iUp_)*InvRadialDistance_C(1:nAlts) - - do iSpecies = 1, nSpecies - call calc_rusanov_alts(LogNS(:, iSpecies), GradTmp, DiffTmp) - GradLogNS(:, iSpecies) = GradTmp - DiffLogNS(:, iSpecies) = DiffTmp - - call calc_rusanov_alts(VertVel(:, iSpecies), GradTmp, DiffTmp) - GradVertVel(:, iSpecies) = GradTmp - DiffVertVel(:, iSpecies) = DiffTmp - DivVertVel(:, iSpecies) = GradVertVel(:, iSpecies) + & - 2*VertVel(1:nAlts, iSpecies)*InvRadialDistance_C(1:nAlts) - enddo - - do iSpecies = 1, nIons - 1 - call calc_rusanov_alts(LogINS(:, iSpecies), GradTmp, DiffTmp) - GradLogINS(:, iSpecies) = GradTmp - DiffLogINS(:, iSpecies) = DiffTmp - enddo - - ! Use Colegrove Method - ! Step 1: Calculate Ln(rho_{s}/Rho) - do iSpecies = 1, nSpecies - LogConS(-1:nAlts + 2, iSpecies) = & - alog(Mass(iSpecies)*NS(-1:nAlts + 2, iSpecies)/Rho(-1:nAlts + 2)) - enddo - - do iAlt = 1, nAlts - - ! 4th Order Concentration Gradient - ! On Non-Uniform Mesh requires 5-pt Stencil - h1 = dAlt_F(iAlt - 1) - h2 = dAlt_F(iAlt + 0) - h3 = dAlt_F(iAlt + 1) - h4 = dAlt_F(iAlt + 2) - - MeshH2 = h2 + h1 - MeshH3 = h3 + h2 + h1 - MeshH4 = h4 + h3 + h2 + h1 - - MeshCoef0 = (h2*h3*(h3 + h4))/(h1*MeshH2*MeshH3*MeshH4) - MeshCoef1 = -1.0*(MeshH2*h3*(h3 + h4))/(h1*h2*(h2 + h3)*(h2 + h3 + h4)) - MeshCoef3 = MeshH2*h2*(h4 + h3)/(MeshH3*(h2 + h3)*h3*h4) - MeshCoef4 = -1.0*MeshH2*h2*h3/(MeshH4*(h2 + h3 + h4)*(h3 + h4)*h4) - - MeshCoef2 = (h2*h3*(h3 + h4) + & - MeshH2*h3*(h3 + h4) - & - MeshH2*h2*(h3 + h4) - & - MeshH2*h2*h3)/ & - (MeshH2*h2*h3*(h3 + h4)) - - do iSpecies = 1, nSpecies - GradLogConS(iAlt, iSpecies) = & - MeshCoef0*LogConS(iAlt - 2, iSpecies) & - + MeshCoef1*LogConS(iAlt - 1, iSpecies) & - + MeshCoef2*LogConS(iAlt, iSpecies) & - + MeshCoef3*LogConS(iAlt + 1, iSpecies) & - + MeshCoef4*LogConS(iAlt + 2, iSpecies) - enddo ! iSpecies Loop - enddo ! iAlt Loop - - AmpSP = (1.0/(10.0*Dt)) - kSP = nAltsSponge + 1 - - do iAlt = 1, nAlts - - do iSpecies = 1, nSpecies - NewLogNS(iAlt, iSpecies) = LogNS(iAlt, iSpecies) - Dt* & - (DivVertVel(iAlt, iSpecies) + & - VertVel(iAlt, iSpecies)*GradLogNS(iAlt, iSpecies)) + & - Dt*DiffLogNS(iAlt, iSpecies) - enddo - - do iSpecies = 1, nIonsAdvect - if (UseImprovedIonAdvection) then - NewLogINS(iAlt, iSpecies) = NewLogINS(iAlt, iSpecies) - Dt* & - (DiviVel(iAlt)*LogINS(iAlt, iSpecies) + & - IVel(iAlt, iUp_)*GradLogINS(iAlt, iSpecies)) & - + Dt*DiffLogINS(iAlt, iSpecies) - else - NewLogINS(iAlt, iSpecies) = NewLogINS(iAlt, iSpecies) - Dt* & - (IVel(iAlt, iUp_)*GradLogINS(iAlt, iSpecies)) & - + Dt*DiffLogINS(iAlt, iSpecies) - endif - enddo - - ! Bulk Velocity defined as the mass-weighted average of the - ! species' velocities - NewVel_GD(iAlt, iUp_) = 0.0 - - if (iAlt >= (nAlts - nAltsSponge)) then - NuSP = AmpSP*(1.0 - cos(pi*(kSP - (nAlts - iAlt))/kSP)) - else - NuSP = 0.0 - endif - - if (UseDamping) then - VertTau(iAlt) = & - 15 - (1 - exp(-1.0*altitude_G(ialt)/1000.0/40.0))*5.0 - endif - - do iSpecies = 1, nSpecies - !The tau term was added as a vertical wind damping term - ! Version of vertical velocity with grad(p) and g here : - - NewVertVel(iAlt, iSpecies) = VertVel(iAlt, iSpecies) - Dt* & - (VertVel(iAlt, iSpecies)*GradVertVel(iAlt, iSpecies) & - - (Vel_GD(iAlt, iNorth_)**2 + Vel_GD(iAlt, iEast_)**2) & - *InvRadialDistance_C(iAlt) + & - Temp(iAlt)*GradLogNS(iAlt, iSpecies)*Boltzmanns_Constant/ & - Mass(iSpecies) + & - GradTemp(iAlt)*Boltzmanns_Constant/Mass(iSpecies) & - - Gravity_G(iAlt)) & - + Dt*DiffVertVel(iAlt, iSpecies) - VertVel(ialt, iSpecies)/VertTau(ialt) - - if (UseCoriolis) then - NewVertVel(iAlt, ispecies) = NewVertVel(iAlt, ispecies) + Dt*( & - Centrifugal/InvRadialDistance_C(iAlt) + & - Coriolis*Vel_GD(iAlt, iEast_)) - endif - - ! Thermal Diffusion Effects (For Light Species H2, H, and He) - ! ThermalDiffCoefS is set in calc_rates - ! Note: ThermalDiffCoefS is < 0.0 for light species - ! This forces light species into hot zones and heavy species into cold zones - NewVertVel(iAlt, iSpecies) = NewVertVel(iAlt, iSpecies) - & - Dt*(ThermalDiffCoefS(iSpecies)*Boltzmanns_Constant* & - GradTemp(iAlt))/Mass(iSpecies) - - enddo - - enddo - - ! Add Neutral Friction Between Species - ! Needed for each increment in the RK-4 Solver - if (UseNeutralFriction) then - nVel(1:nAlts, 1:nSpecies) = NewVertVel(1:nAlts, 1:nSpecies) - call calc_neutral_friction(nVel(1:nAlts, 1:nSpecies), & - EddyCoef_1d(1:nAlts), NT(1:nAlts), & - NS(1:nAlts, 1:nSpecies), & - GradLogConS(1:nAlts, 1:nSpecies), & - Temp(1:nAlts)) - NewVertVel(1:nAlts, 1:nSpecies) = nVel(1:nAlts, 1:nSpecies) - endif - - do iAlt = 1, nAlts - - do iSpecies = 1, nSpecies - - NewVertVel(iAlt, iSpecies) = max(-MaximumVerticalVelocity, & - NewVertVel(iAlt, iSpecies)) - NewVertVel(iAlt, iSpecies) = min(MaximumVerticalVelocity, & - NewVertVel(iAlt, iSpecies)) - - NewVel_GD(iAlt, iUp_) = NewVel_GD(iAlt, iUp_) + & - NewVertVel(iAlt, iSpecies)* & - (Mass(iSpecies)*NS(iAlt, iSpecies)/Rho(iAlt)) - - enddo - - enddo - - do iAlt = 1, nAlts - - ! dVphi/dt = - (V grad V)_phi - NewVel_GD(iAlt, iEast_) = NewVel_GD(iAlt, iEast_) - Dt* & - Vel_GD(iAlt, iUp_)*GradVel_CD(iAlt, iEast_) & - + Dt*DiffVel_CD(iAlt, iEast_) - - ! dVtheta/dt = - (V grad V)_theta - NewVel_GD(iAlt, iNorth_) = NewVel_GD(iAlt, iNorth_) - Dt* & - Vel_GD(iAlt, iUp_)*GradVel_CD(iAlt, iNorth_) & - + Dt*DiffVel_CD(iAlt, iNorth_) - - ! dT/dt = -(V.grad T + (gamma - 1) T div V + & - ! (gamma - 1) * g * grad (KeH^2 * rho) /rho - NewTemp(iAlt) = NewTemp(iAlt) - Dt* & - (Vel_GD(iAlt, iUp_)*GradTemp(iAlt) + & - (Gamma_1d(iAlt) - 1.0)*( & - Temp(iAlt)*DivVel(iAlt))) & - + Dt*DiffTemp(iAlt) - - enddo - do iAlt = 1, nAlts - NewSumRho = sum(Mass(1:nSpecies)*exp(NewLogNS(iAlt, 1:nSpecies))) - NewLogRho(iAlt) = alog(NewSumRho) - enddo - -end subroutine advance_vertical_1stage_rusanov - -!============================================================================= -subroutine nighttime_timeconstant(UpdatValue, OldBCs) - - use ModVertical - use ModConstants, only: pi - use ModTime - - implicit none - - real :: UpdatValue(-1:nAlts + 2, 1:nIons) - real :: OldBCs(1:2, 1:nIons) - - if (SZAVertical > Pi/2 .and. & - ((MLatVertical > 30.0 .and. MLatVertical < 70.0) .or. & - (MLatVertical > -60.0 .and. MLatVertical < -30.0))) then - - ! iVel(nAlts+2,3)=-600.0 - ! iVel(nAlts+1,3)=-600.0 - - UpdatValue(nAlts + 1, :) = OldBCs(1, :) - UpdatValue(nAlts + 2, :) = OldBCs(2, :) - - endif - -end subroutine nighttime_timeconstant - -!\ -! ------------------------------------------------------------ -! calc_rusanov -! ------------------------------------------------------------ -!/ - -subroutine calc_rusanov_alts(Var, GradVar, DiffVar) - - use ModSizeGitm - use ModVertical, only: dAlt_C, cMax - implicit none - - real, intent(in) :: Var(-1:nAlts + 2) - real, intent(out):: GradVar(1:nAlts), DiffVar(1:nAlts) - - real, dimension(1:nAlts + 1) :: VarLeft, VarRight, DiffFlux - !------------------------------------------------------------ - - call calc_facevalues_alts(Var, VarLeft, VarRight) - - ! Gradient based on averaged Left/Right values - GradVar = 0.5* & - (VarLeft(2:nAlts + 1) + VarRight(2:nAlts + 1) - & - VarLeft(1:nAlts) - VarRight(1:nAlts))/dAlt_C(1:nAlts) - - ! Rusanov/Lax-Friedrichs diffusive term - DiffFlux = 0.5*max(cMax(0:nAlts), cMax(1:nAlts + 1))*(VarRight - VarLeft) - - DiffVar = (DiffFlux(2:nAlts + 1) - DiffFlux(1:nAlts))/dAlt_C(1:nAlts) - -end subroutine calc_rusanov_alts - -!\ -! ------------------------------------------------------------ -! calc_facevalues_alts -! ------------------------------------------------------------ -!/ - -subroutine calc_facevalues_alts(Var, VarLeft, VarRight) - - use ModVertical, only: dAlt_F, InvDAlt_F - use ModSizeGITM, only: nAlts - use ModLimiterGitm - - implicit none - - real, intent(in) :: Var(-1:nAlts + 2) - real, intent(out):: VarLeft(1:nAlts + 1), VarRight(1:nAlts + 1) - - real :: dVarUp, dVarDown, dVarLimited(0:nAlts + 1) - - real, parameter :: Factor1 = 0.6250000 ! 15/24 - real, parameter :: Factor2 = 0.0416667 ! 1/24 - real :: h - - integer :: i - - do i = 1, nAlts - - ! 4th order scheme for calculating face values - - h = InvDAlt_F(i + 1)*2.0 - dVarUp = h*(Factor1*(Var(i + 1) - Var(i)) - Factor2*(Var(i + 2) - Var(i - 1))) - h = InvDAlt_F(i)*2.0 - dVarDown = h*(Factor1*(Var(i) - Var(i - 1)) - Factor2*(Var(i + 1) - Var(i - 2))) - -! ! This is Gabor's scheme -! dVarUp = (Var(i+1) - Var(i)) * InvDAlt_F(i+1) -! dVarDown = (Var(i) - Var(i-1)) * InvDAlt_F(i) - - dVarLimited(i) = Limiter_mc(dVarUp, dVarDown) - -! write(*,*) dVarUp, dVarDown, dVarLimited(i) - - enddo - - i = 0 - dVarUp = (Var(i + 1) - Var(i))*InvDAlt_F(i + 1) - dVarDown = (Var(i) - Var(i - 1))*InvDAlt_F(i) - dVarLimited(i) = Limiter_mc(dVarUp, dVarDown) - - i = nAlts + 1 - dVarUp = (Var(i + 1) - Var(i))*InvDAlt_F(i + 1) - dVarDown = (Var(i) - Var(i - 1))*InvDAlt_F(i) - dVarLimited(i) = Limiter_mc(dVarUp, dVarDown) - - do i = 1, nAlts + 1 - VarLeft(i) = Var(i - 1) + 0.5*dVarLimited(i - 1)*dAlt_F(i) - VarRight(i) = Var(i) - 0.5*dVarLimited(i)*dAlt_F(i) - enddo - -end subroutine calc_facevalues_alts - diff --git a/src/vertical_solver_ausm.f90 b/src/vertical_solver_ausm.f90 index 9e5c56f4..7cde71d4 100644 --- a/src/vertical_solver_ausm.f90 +++ b/src/vertical_solver_ausm.f90 @@ -7,22 +7,6 @@ ! ------------------------------------------------------------ !/ -subroutine check_ion_densities(iDen) - - use ModSizeGitm - use ModPlanet, only: nIonsAdvect, nIons - real, intent(inout) :: iDen(-1:nAlts + 2, nIons) - - do iIon = 1, nIonsAdvect - do iAlt = 1, nAlts + 2 - if (iDen(iAlt, iIon) < 0.0) then - iDen(iAlt, iIon) = max(iDen(iAlt - 1, iIon)*0.99, 10.0) - endif - enddo - enddo - -end subroutine check_ion_densities - subroutine advance_vertical_1d_ausm use ModVertical @@ -158,9 +142,9 @@ subroutine advance_vertical_1d_ausm NewVertVel = VertVel DtIn = 0.5*Dt !!! Store this so that it doesn't change - call advance_vertical_1stage_ausm(DtIn, & - LogRho, LogNS, Vel_GD, Temp, NewLogRho, NewLogNS, NewVel_GD, NewTemp, & - LogINS, NewLogINS, IVel, VertVel, NewVertVel) + call advance_vertical_1stage_ausm(DtIn, LogRho, LogNS, Vel_GD, Temp, NewLogRho, & + NewLogNS, NewVel_GD, NewTemp, LogINS, NewLogINS, & + IVel, VertVel, NewVertVel) !!! note that Stage 1 -> updated by a 1/2 step !!! (NewLogNS - LogNS) = f(tn + Dt/2, yn + dt/2) @@ -432,14 +416,14 @@ subroutine advance_vertical_1d_ausm end subroutine advance_vertical_1d_ausm !============================================================================= -subroutine advance_vertical_1stage_ausm(DtIn, & - LogRho, LogNS, Vel_GD, Temp, NewLogRho, NewLogNS, NewVel_GD, NewTemp, & - LogINS, NewLogINS, IVel, VertVel, NewVertVel) +subroutine advance_vertical_1stage_ausm(DtIn, LogRho, LogNS, Vel_GD, Temp, NewLogRho, & + NewLogNS, NewVel_GD, NewTemp, LogINS, & + NewLogINS, IVel, VertVel, NewVertVel) ! With fluxes and sources based on LogRho..Temp, update NewLogRho..NewTemp use ModGITM, only: & - Dt, iEast_, iNorth_, iUp_, ThermalDiffCoefS + iEast_, iNorth_, iUp_, ThermalDiffCoefS use ModPlanet use ModSizeGitm use ModVertical, only: & @@ -468,10 +452,9 @@ subroutine advance_vertical_1stage_ausm(DtIn, & real, intent(inout) :: NewLogNS(-1:nAlts + 2, nSpecies) real, intent(inout) :: NewLogINS(-1:nAlts + 2, nIons) real, intent(inout) :: NewVel_GD(-1:nAlts + 2, 3) - real :: NewVel2_G(-1:nAlts + 2) real, intent(inout) :: NewTemp(-1:nAlts + 2) - real, intent(out) :: NewVertVel(-1:nAlts + 2, nSpecies) - real :: NS(-1:nAlts + 2, nSpecies), Pressure1D(-1:nAlts + 2) + real, intent(inout) :: NewVertVel(-1:nAlts + 2, nSpecies) + real :: NS(-1:nAlts + 2, nSpecies) real :: Rho(-1:nAlts + 2) real :: LogNum(-1:nAlts + 2) @@ -905,7 +888,7 @@ subroutine advance_vertical_1stage_ausm(DtIn, & NewNT(1:nAlts), & NS_small, & GradLogConS(1:nAlts, 1:nSpecies), & - Temp(1:nAlts)) + NewTemp(1:nAlts)) NewVertVel(1:nAlts, 1:nSpecies) = nVel(1:nAlts, 1:nSpecies) endif diff --git a/srcData/3d.ps b/srcData/3d.ps deleted file mode 100644 index dccef2b2..00000000 Binary files a/srcData/3d.ps and /dev/null differ diff --git a/srcData/Perturb.sh b/srcData/Earth/Perturb.sh similarity index 100% rename from srcData/Perturb.sh rename to srcData/Earth/Perturb.sh diff --git a/srcData/UAM.in.Earth b/srcData/Earth/UAM.in.Earth similarity index 91% rename from srcData/UAM.in.Earth rename to srcData/Earth/UAM.in.Earth index 756531a0..70b4a11c 100644 --- a/srcData/UAM.in.Earth +++ b/srcData/Earth/UAM.in.Earth @@ -57,40 +57,48 @@ Output file stuff 300.0 dt for output (1 every 5 min) -If this is before 2019, f107 should work fine: -#NGDC_INDICES -UA/DataIn/f107.txt -From 1990 - 2018, it is best to use FISM (and need F107 too!) +------------ Electrodynamics Drivers ------------ -#EUV_DATA -T Use FISM solar flux data -UA/DataIn/FISM/fismflux_daily_2002.dat Filename +New auroral model from Wu and Ridley, which is driven by AU/AL/AE +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 ------------- Auroral Drivers ------------ +----------- Data Files ------------------ -New auroral model from Wu and Ridley, which is driven by AU/AL/AE -#FTAMODEL -T Use FTA model of the aurora +This is the most common thing - specify an IMF file: +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +Can download data from OMNIWeb using: +srcPython/omni_download_write_swmf.py 20021221 20021222 -swmf You need AU/AL/AE indices. You can get this from SuperMAG, which can be downloaded using: srcPython/supermag_download_ae.py 20021221 20021222 #SME_INDICES -UA/DataIn/ae_20021221.txt SME Filename +UA/DataIn/Examples/ae20021221.dat SME Filename none onset time delay file T convert SME to Hemispheric Power ------------- E-Field Drivers ------------ +If this is before 2019, f107 should work fine: -Can download data from OMNIWeb using: -srcPython/omni_download_write_swmf.py 20021221 20021222 -swmf +#NGDC_INDICES +UA/DataIn/f107.txt + +From 1990 - 2018, it is best to use FISM (and need F107 too!) + +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2002.dat Filename + +------------ Some options ------------ -This is the most common thing - specify an IMF file: -#MHD_INDICES -UA/DataIn/imf20021221.dat Low-latitude dynamo (only run with higher res). Turn on for higher res sims: #DYNAMO diff --git a/srcData/UAM.in.Electrodynamics b/srcData/Earth/UAM.in.Electrodynamics similarity index 100% rename from srcData/UAM.in.Electrodynamics rename to srcData/Earth/UAM.in.Electrodynamics diff --git a/srcData/UAM.in.Perturb b/srcData/Earth/UAM.in.Perturb similarity index 100% rename from srcData/UAM.in.Perturb rename to srcData/Earth/UAM.in.Perturb diff --git a/srcData/UAM.in.Sami3 b/srcData/Earth/UAM.in.Sami3 similarity index 100% rename from srcData/UAM.in.Sami3 rename to srcData/Earth/UAM.in.Sami3 diff --git a/srcData/UAM.in.Sami3Couple b/srcData/Earth/UAM.in.Sami3Couple similarity index 100% rename from srcData/UAM.in.Sami3Couple rename to srcData/Earth/UAM.in.Sami3Couple diff --git a/srcData/UAM.in.hime b/srcData/Earth/UAM.in.hime similarity index 100% rename from srcData/UAM.in.hime rename to srcData/Earth/UAM.in.hime diff --git a/srcData/UAM.in.test.DART.data_ens b/srcData/Earth/UAM.in.test.DART.data_ens similarity index 100% rename from srcData/UAM.in.test.DART.data_ens rename to srcData/Earth/UAM.in.test.DART.data_ens diff --git a/srcData/UAM.in.test.DART.data_truth b/srcData/Earth/UAM.in.test.DART.data_truth similarity index 100% rename from srcData/UAM.in.test.DART.data_truth rename to srcData/Earth/UAM.in.test.DART.data_truth diff --git a/srcData/UAM.in.test.DART.time_prespin b/srcData/Earth/UAM.in.test.DART.time_prespin similarity index 100% rename from srcData/UAM.in.test.DART.time_prespin rename to srcData/Earth/UAM.in.test.DART.time_prespin diff --git a/srcData/UAM.in.test.DART.time_truth b/srcData/Earth/UAM.in.test.DART.time_truth similarity index 100% rename from srcData/UAM.in.test.DART.time_truth rename to srcData/Earth/UAM.in.test.DART.time_truth diff --git a/srcData/UAM.in.test.NewellAurora b/srcData/Earth/UAM.in.test.NewellAurora similarity index 100% rename from srcData/UAM.in.test.NewellAurora rename to srcData/Earth/UAM.in.test.NewellAurora diff --git a/srcData/UAM.in.test.noAPEX b/srcData/Earth/UAM.in.test.noAPEX similarity index 100% rename from srcData/UAM.in.test.noAPEX rename to srcData/Earth/UAM.in.test.noAPEX diff --git a/srcData/UAM.in.test.noMSIS b/srcData/Earth/UAM.in.test.noMSIS similarity index 100% rename from srcData/UAM.in.test.noMSIS rename to srcData/Earth/UAM.in.test.noMSIS diff --git a/srcData/apex_1970_2015.dat b/srcData/Earth/apex_1970_2015.dat similarity index 100% rename from srcData/apex_1970_2015.dat rename to srcData/Earth/apex_1970_2015.dat diff --git a/srcData/ccir.cofcnts b/srcData/Earth/ccir.cofcnts similarity index 100% rename from srcData/ccir.cofcnts rename to srcData/Earth/ccir.cofcnts diff --git a/srcData/imf_sami_test.dat b/srcData/Earth/imf_sami_test.dat similarity index 100% rename from srcData/imf_sami_test.dat rename to srcData/Earth/imf_sami_test.dat diff --git a/srcData/sami_var.txt b/srcData/Earth/sami_var.txt similarity index 100% rename from srcData/sami_var.txt rename to srcData/Earth/sami_var.txt diff --git a/srcData/test_earth.sh b/srcData/Earth/test_earth.sh similarity index 100% rename from srcData/test_earth.sh rename to srcData/Earth/test_earth.sh diff --git a/srcData/test_earth_update.sh b/srcData/Earth/test_earth_update.sh similarity index 100% rename from srcData/test_earth_update.sh rename to srcData/Earth/test_earth_update.sh diff --git a/srcData/ursi.cofcnts b/srcData/Earth/ursi.cofcnts similarity index 100% rename from srcData/ursi.cofcnts rename to srcData/Earth/ursi.cofcnts diff --git a/srcData/Eclipses/UAM.in.eclipse b/srcData/Eclipses/UAM.in.eclipse new file mode 100644 index 00000000..cda43836 --- /dev/null +++ b/srcData/Eclipses/UAM.in.eclipse @@ -0,0 +1,98 @@ + +#DEBUG +0 debug level +0 cpu to watch +300.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +#ECLIPSE + 2017 8 21 13 37 30 + 2017 8 21 23 11 30 + -15282.0 + 6676.38 + 16606.2 + -1430.05 + 0.900000 + 3000.00 + 0.0700000 + 400.000 + +#RESTART +F + +This is a course grid (5 deg x 5 deg), so should be adjusted: + +#GRID +8 lons +4 lats +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +360.0 longitude end to model (set to 0.0 for whole Earth) + +#TIMESTART +2017 year +08 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2017 year +08 month +22 day +00 hour +00 minute +00 second + +#AUSMSOLVER +T + +#LOGFILE +1.0 dt for output to a log file + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +3DALL second output style +600.0 dt for output (1 every 5 min) + +#APEX +T Use apex magnetic coordinate system + +Low-latitude dynamo (only run with higher res). Turn on for higher res sims: +#DYNAMO +T UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace + +#NGDC_INDICES +UA/DataIn/f107.txt + +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2017.dat Filename + + +These inputs are set to constants, which is not good. Actual driver +files should be used, please see the default UAM.in file so see how to +do this. + +#HPI +1.0 hemispheric power + +#KP +1.0 kp + +#SOLARWIND +0.0 IMF Bx +0.0 IMF By +-2.0 IMF Bz +400.0 Solar wind Vx + +#END diff --git a/srcData/Eclipses/eclipse_2001_06_21.html b/srcData/Eclipses/eclipse_2001_06_21.html new file mode 100644 index 00000000..b5471efa --- /dev/null +++ b/srcData/Eclipses/eclipse_2001_06_21.html @@ -0,0 +1,309 @@ + + + + + + + + + + + + + + + +Path of +Total Solar Eclipse of 2001 Jun 21 + + + + +
+ + +
+

Path of the + +Total Solar Eclipse of 2001 Jun 21 +

+

Fred Espenak

+
+
+

Introduction

+

+The following table delineates the path of the Moon's +umbral +shadow during the +Total Solar Eclipse of 2001 Jun 21 +. +The geographic coordinates (WGS 84) of the northern and southern limits and the central line are listed at + 120-second intervals. +This provides adequate detail for making plots of the path on larger scale maps. +Local circumstances on the central line include the ratio of the apparent diameters of the Moon to the Sun, +the Sun's altitude and azimuth (degrees), +the path width (kilometers) and the duration on the central line (minutes and seconds). +See the Explanation of the Central Eclipse Path Table for a description of each column in the table. +

+

+The geographic visibility of the eclipse is shown on a global map on the +Prime Page for the Eclipse +which also includes complete details on the eclipse. +The path of the eclipse is displayed in greater detail on an interactive +Google Map +. +

+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Total Solar Eclipse of 2001 Jun 21
UT1Northern LimitSouthern LimitCentral LineM:SSunSunPathCentral
LatitudeLongitudeLatitudeLongitudeLatitudeLongitudeRatioAlt.Azm.WidthDuration
Limits36°04.8'S050°17.7'W37°09.7'S049°46.5'W36°37.2'S050°02.2'W 1.034 - 127 km 02m06.1s
10:3831°52.8'S041°42.4'W34°59.3'S045°08.0'W33°16.2'S043°03.3'W 1.036 56° 134 km 02m21.1s
10:4029°35.0'S037°19.9'W31°48.6'S038°45.4'W30°39.8'S037°58.2'W 1.038 12° 53° 140 km 02m34.3s
10:4227°56.8'S034°19.1'W29°57.1'S035°12.5'W28°55.8'S034°43.3'W 1.039 16° 51° 144 km 02m43.7s
10:4426°37.0'S031°55.3'W28°30.8'S032°31.9'W27°33.1'S032°11.8'W 1.040 19° 49° 147 km 02m51.7s
10:4625°28.5'S029°53.6'W27°18.5'S030°19.5'W26°22.8'S030°05.2'W 1.041 21° 48° 150 km 02m58.9s
10:4824°28.0'S028°07.0'W26°15.4'S028°25.4'W25°21.1'S028°15.1'W 1.041 23° 47° 152 km 03m05.4s
10:5023°33.4'S026°31.5'W25°19.1'S026°44.2'W24°25.7'S026°36.9'W 1.042 26° 45° 155 km 03m11.5s
10:5222°43.5'S025°04.6'W24°28.0'S025°12.8'W23°35.3'S025°07.8'W 1.043 27° 44° 157 km 03m17.3s
10:5421°57.5'S023°44.4'W23°41.1'S023°49.0'W22°48.8'S023°46.0'W 1.043 29° 43° 159 km 03m22.8s
10:5621°14.7'S022°29.9'W22°57.7'S022°31.5'W22°05.8'S022°30.0'W 1.044 31° 42° 161 km 03m28.0s
10:5820°34.7'S021°20.0'W22°17.3'S021°19.1'W21°25.6'S021°18.9'W 1.044 32° 41° 163 km 03m33.0s
11:0019°57.2'S020°14.0'W21°39.5'S020°11.0'W20°48.0'S020°11.9'W 1.044 34° 40° 165 km 03m37.8s
11:0219°21.9'S019°11.5'W21°03.9'S019°06.7'W20°12.6'S019°08.5'W 1.045 35° 39° 166 km 03m42.4s
11:0418°48.5'S018°11.9'W20°30.4'S018°05.5'W19°39.1'S018°08.1'W 1.045 36° 38° 168 km 03m46.9s
11:0618°16.8'S017°14.8'W19°58.7'S017°07.0'W19°07.5'S017°10.4'W 1.045 38° 37° 170 km 03m51.2s
11:0817°46.8'S016°20.1'W19°28.7'S016°11.1'W18°37.4'S016°15.1'W 1.046 39° 36° 171 km 03m55.4s
11:1017°18.2'S015°27.3'W19°00.2'S015°17.3'W18°08.9'S015°21.9'W 1.046 40° 35° 173 km 03m59.4s
11:1216°51.0'S014°36.4'W18°33.1'S014°25.4'W17°41.8'S014°30.5'W 1.046 41° 34° 174 km 04m03.3s
11:1416°25.1'S013°47.0'W18°07.3'S013°35.2'W17°15.9'S013°40.7'W 1.047 42° 32° 176 km 04m07.0s
11:1616°00.3'S012°59.1'W17°42.7'S012°46.6'W16°51.3'S012°52.5'W 1.047 43° 31° 177 km 04m10.6s
11:1815°36.7'S012°12.5'W17°19.3'S011°59.4'W16°27.8'S012°05.6'W 1.047 44° 30° 179 km 04m14.1s
11:2015°14.2'S011°27.1'W16°57.0'S011°13.4'W16°05.3'S011°20.0'W 1.047 45° 29° 180 km 04m17.5s
11:2214°52.6'S010°42.8'W16°35.6'S010°28.6'W15°43.9'S010°35.4'W 1.047 46° 28° 182 km 04m20.7s
11:2414°32.0'S009°59.4'W16°15.3'S009°44.8'W15°23.4'S009°51.8'W 1.048 47° 26° 183 km 04m23.8s
11:2614°12.4'S009°16.9'W15°55.8'S009°02.0'W15°03.9'S009°09.2'W 1.048 48° 25° 184 km 04m26.7s
11:2813°53.6'S008°35.2'W15°37.3'S008°20.0'W14°45.2'S008°27.3'W 1.048 48° 24° 185 km 04m29.5s
11:3013°35.6'S007°54.3'W15°19.6'S007°38.7'W14°27.4'S007°46.2'W 1.048 49° 22° 187 km 04m32.2s
11:3213°18.5'S007°13.9'W15°02.7'S006°58.2'W14°10.4'S007°05.8'W 1.048 50° 21° 188 km 04m34.8s
11:3413°02.2'S006°34.2'W14°46.6'S006°18.3'W13°54.2'S006°26.0'W 1.048 50° 19° 189 km 04m37.2s
11:3612°46.6'S005°55.0'W14°31.3'S005°39.0'W13°38.8'S005°46.8'W 1.049 51° 18° 190 km 04m39.5s
11:3812°31.8'S005°16.3'W14°16.7'S005°00.2'W13°24.1'S005°08.0'W 1.049 52° 16° 191 km 04m41.7s
11:4012°17.7'S004°38.0'W14°02.9'S004°21.8'W13°10.1'S004°29.7'W 1.049 52° 15° 192 km 04m43.7s
11:4212°04.3'S004°00.2'W13°49.7'S003°43.9'W12°56.8'S003°51.8'W 1.049 53° 13° 193 km 04m45.6s
11:4411°51.6'S003°22.6'W13°37.3'S003°06.3'W12°44.3'S003°14.3'W 1.049 53° 12° 194 km 04m47.3s
11:4611°39.6'S002°45.4'W13°25.5'S002°29.0'W12°32.4'S002°37.1'W 1.049 53° 10° 195 km 04m48.9s
11:4811°28.3'S002°08.4'W13°14.4'S001°52.1'W12°21.2'S002°00.1'W 1.049 54° 196 km 04m50.4s
11:5011°17.6'S001°31.6'W13°03.9'S001°15.4'W12°10.6'S001°23.4'W 1.049 54° 196 km 04m51.7s
11:5211°07.6'S000°55.0'W12°54.1'S000°38.9'W12°00.7'S000°46.8'W 1.049 54° 197 km 04m52.8s
11:5410°58.2'S000°18.6'W12°44.9'S000°02.5'W11°51.4'S000°10.5'W 1.049 55° 198 km 04m53.8s
11:5610°49.4'S000°17.7'E12°36.3'S000°33.7'E11°42.7'S000°25.8'E 1.049 55° 198 km 04m54.7s
11:5810°41.3'S000°54.0'E12°28.4'S001°09.8'E11°34.7'S001°02.0'E 1.049 55° 360° 199 km 04m55.4s
12:0010°33.8'S001°30.1'E12°21.1'S001°45.9'E11°27.3'S001°38.1'E 1.050 55° 358° 199 km 04m55.9s
12:0210°27.0'S002°06.3'E12°14.4'S002°21.9'E11°20.5'S002°14.1'E 1.050 55° 356° 200 km 04m56.3s
12:0410°20.7'S002°42.5'E12°08.3'S002°57.9'E11°14.4'S002°50.2'E 1.050 55° 355° 200 km 04m56.6s
12:0610°15.1'S003°18.7'E12°02.8'S003°34.0'E11°08.8'S003°26.3'E 1.050 55° 353° 200 km 04m56.7s
12:0810°10.1'S003°55.0'E11°57.9'S004°10.1'E11°03.9'S004°02.5'E 1.050 55° 351° 200 km 04m56.6s
12:1010°05.8'S004°31.3'E11°53.6'S004°46.3'E10°59.6'S004°38.8'E 1.050 55° 349° 200 km 04m56.4s
12:1210°02.0'S005°07.9'E11°50.0'S005°22.7'E10°55.9'S005°15.2'E 1.050 55° 348° 200 km 04m56.0s
12:1409°58.9'S005°44.6'E11°46.9'S005°59.2'E10°52.8'S005°51.8'E 1.050 55° 346° 200 km 04m55.4s
12:1609°56.5'S006°21.5'E11°44.5'S006°35.9'E10°50.4'S006°28.7'E 1.049 54° 344° 200 km 04m54.7s
12:1809°54.6'S006°58.6'E11°42.7'S007°12.9'E10°48.6'S007°05.7'E 1.049 54° 342° 200 km 04m53.9s
12:2009°53.4'S007°36.0'E11°41.6'S007°50.2'E10°47.4'S007°43.0'E 1.049 54° 341° 200 km 04m52.9s
12:2209°52.9'S008°13.7'E11°41.0'S008°27.7'E10°46.9'S008°20.6'E 1.049 53° 339° 199 km 04m51.7s
12:2409°53.0'S008°51.8'E11°41.2'S009°05.6'E10°47.0'S008°58.6'E 1.049 53° 338° 199 km 04m50.4s
12:2609°53.8'S009°30.2'E11°42.0'S009°43.9'E10°47.8'S009°36.9'E 1.049 52° 336° 198 km 04m48.9s
12:2809°55.3'S010°09.1'E11°43.4'S010°22.7'E10°49.3'S010°15.7'E 1.049 52° 334° 198 km 04m47.3s
12:3009°57.5'S010°48.4'E11°45.6'S011°01.9'E10°51.4'S010°55.0'E 1.049 51° 333° 197 km 04m45.5s
12:3210°00.4'S011°28.2'E11°48.4'S011°41.6'E10°54.3'S011°34.7'E 1.049 51° 332° 196 km 04m43.6s
12:3410°04.1'S012°08.6'E11°52.0'S012°22.0'E10°57.9'S012°15.1'E 1.049 50° 330° 195 km 04m41.5s
12:3610°08.5'S012°49.6'E11°56.3'S013°02.9'E11°02.3'S012°56.1'E 1.049 50° 329° 195 km 04m39.2s
12:3810°13.6'S013°31.3'E12°01.4'S013°44.6'E11°07.4'S013°37.7'E 1.049 49° 327° 194 km 04m36.8s
12:4010°19.6'S014°13.7'E12°07.3'S014°27.0'E11°13.3'S014°20.1'E 1.048 48° 326° 193 km 04m34.3s
12:4210°26.4'S014°56.9'E12°14.0'S015°10.3'E11°20.0'S015°03.3'E 1.048 47° 325° 191 km 04m31.6s
12:4410°34.1'S015°40.9'E12°21.5'S015°54.5'E11°27.6'S015°47.4'E 1.048 47° 324° 190 km 04m28.8s
12:4610°42.6'S016°25.9'E12°29.9'S016°39.6'E11°36.1'S016°32.5'E 1.048 46° 322° 189 km 04m25.8s
12:4810°52.1'S017°12.0'E12°39.3'S017°25.9'E11°45.5'S017°18.6'E 1.048 45° 321° 188 km 04m22.6s
12:5011°02.5'S017°59.2'E12°49.6'S018°13.3'E11°55.9'S018°05.9'E 1.048 44° 320° 186 km 04m19.4s
12:5211°14.0'S018°47.6'E13°01.0'S019°02.1'E12°07.3'S018°54.5'E 1.047 43° 319° 185 km 04m15.9s
12:5411°26.6'S019°37.4'E13°13.4'S019°52.3'E12°19.8'S019°44.4'E 1.047 42° 318° 184 km 04m12.3s
12:5611°40.3'S020°28.7'E13°27.0'S020°44.1'E12°33.5'S020°36.0'E 1.047 41° 317° 182 km 04m08.6s
12:5811°55.2'S021°21.6'E13°41.8'S021°37.6'E12°48.3'S021°29.2'E 1.047 40° 316° 180 km 04m04.7s
13:0012°11.5'S022°16.5'E13°58.0'S022°33.1'E13°04.5'S022°24.3'E 1.046 39° 315° 179 km 04m00.7s
13:0212°29.1'S023°13.3'E14°15.6'S023°30.9'E13°22.2'S023°21.6'E 1.046 37° 314° 177 km 03m56.4s
13:0412°48.3'S024°12.5'E14°34.8'S024°31.1'E13°41.3'S024°21.3'E 1.046 36° 313° 175 km 03m52.1s
13:0613°09.2'S025°14.4'E14°55.7'S025°34.1'E14°02.2'S025°23.7'E 1.045 35° 312° 173 km 03m47.5s
13:0813°31.9'S026°19.2'E15°18.5'S026°40.4'E14°25.0'S026°29.2'E 1.045 33° 311° 172 km 03m42.8s
13:1013°56.7'S027°27.4'E15°43.5'S027°50.4'E14°49.8'S027°38.2'E 1.045 32° 311° 170 km 03m37.8s
13:1214°23.9'S028°39.7'E16°10.9'S029°04.7'E15°17.1'S028°51.5'E 1.044 30° 310° 167 km 03m32.7s
13:1414°53.7'S029°56.6'E16°41.1'S030°24.2'E15°47.1'S030°09.6'E 1.044 29° 309° 165 km 03m27.3s
13:1615°26.6'S031°19.2'E17°14.7'S031°50.0'E16°20.3'S031°33.7'E 1.043 27° 308° 163 km 03m21.6s
13:1816°03.2'S032°48.7'E17°52.2'S033°23.6'E16°57.3'S033°05.1'E 1.043 25° 307° 161 km 03m15.6s
13:2016°44.4'S034°26.9'E18°34.9'S035°07.1'E17°39.2'S034°45.8'E 1.042 23° 306° 158 km 03m09.2s
13:2217°31.4'S036°16.4'E19°24.1'S037°04.0'E18°27.2'S036°38.8'E 1.042 21° 305° 155 km 03m02.3s
13:2418°26.2'S038°21.6'E20°22.5'S039°20.1'E19°23.6'S038°49.0'E 1.041 18° 304° 152 km 02m54.8s
13:2619°32.5'S040°50.3'E21°35.3'S042°06.7'E20°32.8'S041°25.8'E 1.040 15° 303° 148 km 02m46.2s
13:2820°58.3'S044°00.1'E23°16.2'S045°54.8'E22°05.0'S044°51.9'E 1.039 11° 301° 144 km 02m35.8s
13:3023°12.8'S048°54.7'E - - 24°51.0'S050°59.8'E 1.037 298° 136 km 02m19.6s
Limits26°10.6'S055°25.2'E27°19.6'S055°02.1'E26°45.0'S055°13.7'E 1.035 - 131 km 02m09.9s
+ +

ΔT = + 64.2 + seconds

+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Greatest Eclipse and Greatest Duration
EventTime
TD
Time
UT1
LatitudeLongitudeSun
Altitude
Sun
Azimuth
Path WidthCentral
Duration
Greatest Eclipse12:04:46.312:03:42.111°15.2'S002°28.7'E 55.2° 354.8° 200.0 km04m56.55s
Greatest Duration12:07:11.512:06:07.311°08.5'S003°28.5'E 55.1° 352.7° 200.3 km04m56.66s
+

Explanation of Greatest Eclipse and Greatest Duration

+
+ +
+
+

Links for the + +Total Solar Eclipse of 2001 Jun 21 +

+ + +

Links to Additional Solar Eclipse Predictions

+
    +
  • Home - home page of EclipseWise with predictions for both solar and lunar eclipses
  • +
  • Solar Eclipses - primary page for solar eclipse predictions
  • +
  • Solar Eclipse Links - detailed directory of links
  • +
+ +
+
+ +
+
+

Eclipse Predictions

+

+Predictions for the +Total Solar Eclipse of 2001 Jun 21 +were generated using the +JPL DE406 +solar and lunar ephemerides. +The lunar coordinates were calculated with respect to the Moon's Center of Mass. +Although the predictions are first calculated in Terrestrial Dynamical Time (TD), +they are then converted to Universal Time (UT1) as presented here. +The parameter ΔT is used to convert between the two times (i.e., UT1 = TD - ΔT). +ΔT has a value of + 64.2 + seconds for this eclipse. + +

+ +

Acknowledgments

+

+Some of the content on this website is based on the book Thousand Year Canon of Solar Eclipses 1501 to 2500. +All eclipse calculations are by Fred Espenak, and he assumes full responsibility for their accuracy. +

+

+Permission is granted to reproduce eclipse data when accompanied by a link to this page and an acknowledgment: +

+

"Eclipse Predictions by Fred Espenak, EclipseWise.com"

+

+The use of diagrams and maps is permitted provided that they are unaltered (except for re-sizing) and the embedded credit line is not removed or covered. +

+
+
+
+ + +
+ + + \ No newline at end of file diff --git a/srcData/Eclipses/eclipse_2002_12_04.html b/srcData/Eclipses/eclipse_2002_12_04.html new file mode 100644 index 00000000..2b2447ab --- /dev/null +++ b/srcData/Eclipses/eclipse_2002_12_04.html @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + +Path of +Total Solar Eclipse of 2002 Dec 04 + + + + +
+ + +
+

Path of the + +Total Solar Eclipse of 2002 Dec 04 +

+

Fred Espenak

+
+
+

Introduction

+

+The following table delineates the path of the Moon's +umbral +shadow during the +Total Solar Eclipse of 2002 Dec 04 +. +The geographic coordinates (WGS 84) of the northern and southern limits and the central line are listed at + 120-second intervals. +This provides adequate detail for making plots of the path on larger scale maps. +Local circumstances on the central line include the ratio of the apparent diameters of the Moon to the Sun, +the Sun's altitude and azimuth (degrees), +the path width (kilometers) and the duration on the central line (minutes and seconds). +See the Explanation of the Central Eclipse Path Table for a description of each column in the table. +

+

+The geographic visibility of the eclipse is shown on a global map on the +Prime Page for the Eclipse +which also includes complete details on the eclipse. +The path of the eclipse is displayed in greater detail on an interactive +Google Map +. +

+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Total Solar Eclipse of 2002 Dec 04
UT1Northern LimitSouthern LimitCentral LineM:SSunSunPathCentral
LatitudeLongitudeLatitudeLongitudeLatitudeLongitudeRatioAlt.Azm.WidthDuration
Limits03°48.5'S001°39.5'W04°03.0'S001°48.8'W03°55.7'S001°44.1'W 1.008 - 31 km 00m26.1s
05:5207°38.7'S006°55.5'E07°33.4'S005°52.7'E07°36.4'S006°24.5'E 1.011 111° 43 km 00m37.2s
05:5409°43.6'S010°59.5'E09°46.4'S010°09.0'E09°45.2'S010°34.3'E 1.012 14° 111° 49 km 00m43.9s
05:5611°18.7'S013°52.3'E11°25.3'S013°05.9'E11°22.1'S013°29.2'E 1.014 18° 110° 53 km 00m48.9s
05:5812°39.4'S016°11.9'E12°48.6'S015°27.4'E12°44.1'S015°49.7'E 1.014 21° 109° 56 km 00m53.2s
06:0013°51.1'S018°11.1'E14°02.3'S017°27.9'E13°56.8'S017°49.6'E 1.015 24° 108° 59 km 00m57.0s
06:0214°56.5'S019°56.5'E15°09.5'S019°13.9'E15°03.1'S019°35.3'E 1.016 26° 108° 62 km 01m00.5s
06:0415°57.2'S021°31.6'E16°11.6'S020°49.5'E16°04.5'S021°10.6'E 1.016 28° 107° 64 km 01m03.7s
06:0616°54.1'S022°58.8'E17°09.8'S022°17.0'E17°02.1'S022°38.0'E 1.017 30° 106° 66 km 01m06.8s
06:0817°47.9'S024°19.7'E18°04.8'S023°38.2'E17°56.5'S023°59.0'E 1.017 32° 105° 68 km 01m09.7s
06:1018°39.1'S025°35.4'E18°57.1'S024°54.1'E18°48.2'S025°14.8'E 1.018 34° 105° 69 km 01m12.4s
06:1219°28.0'S026°46.9'E19°47.1'S026°05.8'E19°37.6'S026°26.4'E 1.018 36° 104° 71 km 01m15.1s
06:1420°15.0'S027°54.8'E20°35.1'S027°13.8'E20°25.1'S027°34.4'E 1.019 38° 103° 72 km 01m17.6s
06:1621°00.2'S028°59.7'E21°21.2'S028°18.7'E21°10.8'S028°39.2'E 1.019 39° 102° 74 km 01m20.0s
06:1821°43.9'S030°01.9'E22°05.8'S029°21.0'E21°54.9'S029°41.5'E 1.019 41° 101° 75 km 01m22.3s
06:2022°26.1'S031°01.8'E22°48.9'S030°21.0'E22°37.6'S030°41.4'E 1.020 42° 100° 76 km 01m24.6s
06:2223°07.1'S031°59.7'E23°30.7'S031°19.0'E23°19.0'S031°39.4'E 1.020 44° 99° 77 km 01m26.7s
06:2423°46.9'S032°55.8'E24°11.3'S032°15.2'E23°59.2'S032°35.6'E 1.020 45° 98° 78 km 01m28.8s
06:2624°25.6'S033°50.5'E24°50.8'S033°10.0'E24°38.3'S033°30.3'E 1.021 47° 97° 79 km 01m30.9s
06:2825°03.3'S034°43.7'E25°29.2'S034°03.4'E25°16.3'S034°23.6'E 1.021 48° 96° 79 km 01m32.8s
06:3025°40.0'S035°35.8'E26°06.7'S034°55.6'E25°53.4'S035°15.8'E 1.021 49° 95° 80 km 01m34.7s
06:3226°15.8'S036°26.9'E26°43.2'S035°46.8'E26°29.6'S036°06.9'E 1.021 50° 93° 81 km 01m36.5s
06:3426°50.8'S037°17.0'E27°18.9'S036°37.1'E27°04.9'S036°57.1'E 1.022 52° 92° 82 km 01m38.3s
06:3627°25.0'S038°06.4'E27°53.8'S037°26.6'E27°39.4'S037°46.6'E 1.022 53° 91° 82 km 01m40.0s
06:3827°58.4'S038°55.0'E28°27.8'S038°15.5'E28°13.2'S038°35.3'E 1.022 54° 90° 83 km 01m41.6s
06:4028°31.0'S039°43.1'E29°01.2'S039°03.7'E28°46.2'S039°23.5'E 1.022 55° 88° 83 km 01m43.2s
06:4229°03.0'S040°30.6'E29°33.8'S039°51.5'E29°18.4'S040°11.1'E 1.023 56° 87° 84 km 01m44.7s
06:4429°34.2'S041°17.6'E30°05.7'S040°38.8'E29°50.0'S040°58.3'E 1.023 57° 85° 84 km 01m46.2s
06:4630°04.9'S042°04.3'E30°36.9'S041°25.7'E30°20.9'S041°45.1'E 1.023 58° 83° 85 km 01m47.6s
06:4830°34.8'S042°50.7'E31°07.5'S042°12.4'E30°51.2'S042°31.6'E 1.023 59° 82° 85 km 01m49.0s
06:5031°04.2'S043°36.8'E31°37.5'S042°58.9'E31°20.9'S043°17.9'E 1.023 60° 80° 85 km 01m50.3s
06:5231°32.9'S044°22.7'E32°06.8'S043°45.2'E31°49.9'S044°04.0'E 1.023 61° 78° 86 km 01m51.5s
06:5432°01.1'S045°08.5'E32°35.6'S044°31.3'E32°18.4'S044°50.0'E 1.023 62° 76° 86 km 01m52.7s
06:5632°28.7'S045°54.2'E33°03.7'S045°17.4'E32°46.3'S045°35.9'E 1.024 63° 74° 86 km 01m53.8s
06:5832°55.7'S046°39.9'E33°31.3'S046°03.5'E33°13.6'S046°21.8'E 1.024 64° 72° 86 km 01m54.9s
07:0033°22.2'S047°25.5'E33°58.3'S046°49.6'E33°40.3'S047°07.7'E 1.024 65° 69° 86 km 01m55.9s
07:0233°48.1'S048°11.2'E34°24.8'S047°35.8'E34°06.5'S047°53.6'E 1.024 66° 67° 87 km 01m56.8s
07:0434°13.5'S048°57.0'E34°50.7'S048°22.1'E34°32.1'S048°39.6'E 1.024 67° 64° 87 km 01m57.7s
07:0634°38.3'S049°42.9'E35°16.0'S049°08.6'E34°57.2'S049°25.8'E 1.024 67° 62° 87 km 01m58.6s
07:0835°02.6'S050°28.9'E35°40.8'S049°55.2'E35°21.8'S050°12.2'E 1.024 68° 59° 87 km 01m59.3s
07:1035°26.4'S051°15.2'E36°05.1'S050°42.1'E35°45.8'S050°58.7'E 1.024 69° 56° 87 km 02m00.0s
07:1235°49.6'S052°01.7'E36°28.8'S051°29.2'E36°09.3'S051°45.5'E 1.024 69° 53° 87 km 02m00.7s
07:1436°12.4'S052°48.4'E36°52.0'S052°16.7'E36°32.2'S052°32.6'E 1.024 70° 49° 87 km 02m01.3s
07:1636°34.6'S053°35.5'E37°14.7'S053°04.4'E36°54.6'S053°20.0'E 1.024 70° 46° 87 km 02m01.8s
07:1836°56.2'S054°22.8'E37°36.8'S053°52.5'E37°16.5'S054°07.7'E 1.024 71° 42° 87 km 02m02.3s
07:2037°17.4'S055°10.5'E37°58.3'S054°41.1'E37°37.9'S054°55.9'E 1.024 71° 39° 87 km 02m02.7s
07:2237°38.0'S055°58.6'E38°19.4'S055°30.0'E37°58.7'S055°44.4'E 1.024 72° 35° 87 km 02m03.0s
07:2437°58.1'S056°47.2'E38°39.9'S056°19.4'E38°19.0'S056°33.3'E 1.024 72° 31° 87 km 02m03.3s
07:2638°17.6'S057°36.1'E38°59.8'S057°09.2'E38°38.7'S057°22.7'E 1.024 72° 27° 87 km 02m03.5s
07:2838°36.7'S058°25.5'E39°19.2'S057°59.6'E38°57.9'S058°12.6'E 1.024 72° 23° 87 km 02m03.7s
07:3038°55.2'S059°15.5'E39°38.0'S058°50.5'E39°16.6'S059°03.0'E 1.024 72° 18° 87 km 02m03.8s
07:3239°13.1'S060°05.9'E39°56.2'S059°41.9'E39°34.7'S059°54.0'E 1.024 72° 14° 87 km 02m03.8s
07:3439°30.5'S060°56.9'E40°13.9'S060°34.0'E39°52.2'S060°45.5'E 1.024 72° 10° 87 km 02m03.8s
07:3639°47.3'S061°48.5'E40°31.0'S061°26.6'E40°09.2'S061°37.6'E 1.024 72° 87 km 02m03.7s
07:3840°03.5'S062°40.7'E40°47.5'S062°19.9'E40°25.5'S062°30.3'E 1.024 72° 86 km 02m03.5s
07:4040°19.2'S063°33.5'E41°03.4'S063°13.9'E40°41.3'S063°23.7'E 1.024 72° 357° 86 km 02m03.3s
07:4240°34.3'S064°26.9'E41°18.7'S064°08.5'E40°56.5'S064°17.7'E 1.024 71° 353° 86 km 02m03.0s
07:4440°48.8'S065°21.0'E41°33.4'S065°03.9'E41°11.1'S065°12.5'E 1.024 71° 350° 86 km 02m02.7s
07:4641°02.7'S066°15.9'E41°47.4'S066°00.0'E41°25.1'S066°07.9'E 1.024 70° 346° 86 km 02m02.2s
07:4841°15.9'S067°11.5'E42°00.8'S066°56.9'E41°38.4'S067°04.1'E 1.024 70° 342° 85 km 02m01.7s
07:5041°28.6'S068°07.8'E42°13.6'S067°54.5'E41°51.1'S068°01.1'E 1.024 69° 339° 85 km 02m01.2s
07:5241°40.6'S069°04.9'E42°25.6'S068°53.0'E42°03.1'S068°58.9'E 1.024 69° 335° 85 km 02m00.6s
07:5441°51.9'S070°02.8'E42°37.0'S069°52.3'E42°14.5'S069°57.5'E 1.024 68° 332° 85 km 01m59.9s
07:5642°02.6'S071°01.5'E42°47.7'S070°52.4'E42°25.1'S070°56.9'E 1.024 67° 329° 84 km 01m59.1s
07:5842°12.5'S072°01.1'E42°57.6'S071°53.5'E42°35.1'S071°57.3'E 1.024 67° 326° 84 km 01m58.3s
08:0042°21.8'S073°01.6'E43°06.8'S072°55.5'E42°44.3'S072°58.5'E 1.023 66° 323° 83 km 01m57.4s
08:0242°30.4'S074°03.0'E43°15.3'S073°58.4'E42°52.8'S074°00.6'E 1.023 65° 320° 83 km 01m56.4s
08:0442°38.2'S075°05.4'E43°23.0'S075°02.2'E43°00.6'S075°03.8'E 1.023 64° 318° 83 km 01m55.4s
08:0642°45.2'S076°08.7'E43°29.9'S076°07.1'E43°07.5'S076°07.9'E 1.023 63° 315° 82 km 01m54.3s
08:0842°51.4'S077°13.1'E43°35.9'S077°13.0'E43°13.7'S077°13.0'E 1.023 62° 312° 82 km 01m53.2s
08:1042°56.9'S078°18.5'E43°41.1'S078°20.0'E43°19.0'S078°19.2'E 1.023 61° 310° 81 km 01m52.0s
08:1243°01.5'S079°24.9'E43°45.4'S079°28.1'E43°23.5'S079°26.4'E 1.023 60° 308° 81 km 01m50.7s
08:1443°05.2'S080°32.5'E43°48.9'S080°37.3'E43°27.1'S080°34.8'E 1.022 59° 305° 80 km 01m49.3s
08:1643°08.1'S081°41.3'E43°51.4'S081°47.7'E43°29.7'S081°44.4'E 1.022 58° 303° 80 km 01m47.9s
08:1843°10.0'S082°51.2'E43°52.9'S082°59.2'E43°31.5'S082°55.1'E 1.022 57° 301° 79 km 01m46.4s
08:2043°11.0'S084°02.4'E43°53.4'S084°12.1'E43°32.2'S084°07.1'E 1.022 56° 299° 79 km 01m44.9s
08:2243°11.0'S085°15.0'E43°52.9'S085°26.2'E43°31.9'S085°20.5'E 1.022 55° 297° 78 km 01m43.3s
08:2443°09.9'S086°28.9'E43°51.3'S086°41.7'E43°30.6'S086°35.2'E 1.022 54° 295° 77 km 01m41.6s
08:2643°07.8'S087°44.2'E43°48.6'S087°58.7'E43°28.2'S087°51.3'E 1.021 53° 293° 77 km 01m39.9s
08:2843°04.5'S089°01.0'E43°44.7'S089°17.1'E43°24.6'S089°08.9'E 1.021 52° 291° 76 km 01m38.0s
08:3043°00.1'S090°19.4'E43°39.6'S090°37.1'E43°19.9'S090°28.1'E 1.021 51° 289° 75 km 01m36.2s
08:3242°54.4'S091°39.5'E43°33.2'S091°58.8'E43°13.8'S091°49.0'E 1.021 49° 287° 74 km 01m34.2s
08:3442°47.5'S093°01.4'E43°25.4'S093°22.3'E43°06.5'S093°11.7'E 1.020 48° 285° 73 km 01m32.2s
08:3642°39.1'S094°25.2'E43°16.2'S094°47.6'E42°57.7'S094°36.3'E 1.020 47° 284° 72 km 01m30.1s
08:3842°29.4'S095°51.1'E43°05.5'S096°15.0'E42°47.5'S096°02.9'E 1.020 45° 282° 71 km 01m27.9s
08:4042°18.0'S097°19.2'E42°53.2'S097°44.6'E42°35.7'S097°31.7'E 1.019 44° 280° 70 km 01m25.7s
08:4242°05.1'S098°49.7'E42°39.2'S099°16.6'E42°22.2'S099°03.0'E 1.019 43° 278° 69 km 01m23.4s
08:4441°50.3'S100°22.8'E42°23.3'S100°51.2'E42°06.9'S100°36.9'E 1.019 41° 276° 68 km 01m21.0s
08:4641°33.7'S101°58.9'E42°05.4'S102°28.8'E41°49.6'S102°13.7'E 1.018 39° 275° 67 km 01m18.5s
08:4841°14.9'S103°38.3'E41°45.4'S104°09.5'E41°30.2'S103°53.7'E 1.018 38° 273° 66 km 01m15.9s
08:5040°53.9'S105°21.4'E41°23.0'S105°54.0'E41°08.5'S105°37.5'E 1.017 36° 271° 64 km 01m13.2s
08:5240°30.3'S107°08.7'E40°57.9'S107°42.6'E40°44.2'S107°25.5'E 1.017 34° 269° 63 km 01m10.4s
08:5440°03.8'S109°00.9'E40°29.9'S109°36.2'E40°16.9'S109°18.4'E 1.017 33° 267° 61 km 01m07.5s
08:5639°34.1'S110°58.8'E39°58.4'S111°35.5'E39°46.4'S111°17.0'E 1.016 31° 266° 60 km 01m04.5s
08:5839°00.6'S113°03.8'E39°23.0'S113°41.8'E39°11.9'S113°22.6'E 1.015 29° 264° 58 km 01m01.3s
09:0038°22.5'S115°17.3'E38°42.8'S115°56.7'E38°32.7'S115°36.9'E 1.015 27° 262° 56 km 00m57.9s
09:0237°38.7'S117°41.8'E37°56.8'S118°22.8'E37°47.9'S118°02.2'E 1.014 24° 260° 53 km 00m54.2s
09:0436°47.8'S120°21.0'E37°03.1'S121°03.9'E36°55.5'S120°42.3'E 1.013 21° 258° 51 km 00m50.3s
09:0635°46.8'S123°21.3'E35°58.7'S124°06.8'E35°52.9'S123°43.9'E 1.013 18° 255° 48 km 00m46.0s
09:0834°30.3'S126°55.4'E34°37.8'S127°45.0'E34°34.2'S127°20.0'E 1.011 15° 253° 44 km 00m41.0s
09:1032°43.8'S131°37.7'E32°43.3'S132°37.1'E32°43.8'S132°07.1'E 1.010 10° 250° 38 km 00m34.6s
Limits28°24.4'S142°20.3'E28°36.5'S142°29.7'E28°30.5'S142°25.0'E 1.007 - 27 km 00m22.4s
+ +

ΔT = + 64.4 + seconds

+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Greatest Eclipse and Greatest Duration
EventTime
TD
Time
UT1
LatitudeLongitudeSun
Altitude
Sun
Azimuth
Path WidthCentral
Duration
Greatest Eclipse07:32:15.707:31:11.439°27.4'S059°17.1'E 72.2° 15.8° 87.0 km02m03.82s
Greatest Duration07:33:01.107:31:56.739°34.2'S059°52.6'E 72.2° 14.2° 86.9 km02m03.83s
+

Explanation of Greatest Eclipse and Greatest Duration

+
+ +
+
+

Links for the + +Total Solar Eclipse of 2002 Dec 04 +

+ + +

Links to Additional Solar Eclipse Predictions

+
    +
  • Home - home page of EclipseWise with predictions for both solar and lunar eclipses
  • +
  • Solar Eclipses - primary page for solar eclipse predictions
  • +
  • Solar Eclipse Links - detailed directory of links
  • +
+ +
+
+ +
+
+

Eclipse Predictions

+

+Predictions for the +Total Solar Eclipse of 2002 Dec 04 +were generated using the +JPL DE406 +solar and lunar ephemerides. +The lunar coordinates were calculated with respect to the Moon's Center of Mass. +Although the predictions are first calculated in Terrestrial Dynamical Time (TD), +they are then converted to Universal Time (UT1) as presented here. +The parameter ΔT is used to convert between the two times (i.e., UT1 = TD - ΔT). +ΔT has a value of + 64.4 + seconds for this eclipse. + +

+ +

Acknowledgments

+

+Some of the content on this website is based on the book Thousand Year Canon of Solar Eclipses 1501 to 2500. +All eclipse calculations are by Fred Espenak, and he assumes full responsibility for their accuracy. +

+

+Permission is granted to reproduce eclipse data when accompanied by a link to this page and an acknowledgment: +

+

"Eclipse Predictions by Fred Espenak, EclipseWise.com"

+

+The use of diagrams and maps is permitted provided that they are unaltered (except for re-sizing) and the embedded credit line is not removed or covered. +

+
+
+
+ + +
+ + + \ No newline at end of file diff --git a/srcData/Eclipses/eclipse_2003_11_23.html b/srcData/Eclipses/eclipse_2003_11_23.html new file mode 100644 index 00000000..2344fb67 --- /dev/null +++ b/srcData/Eclipses/eclipse_2003_11_23.html @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + +Path of +Total Solar Eclipse of 2003 Nov 23 + + + + +
+ + +
+

Path of the + +Total Solar Eclipse of 2003 Nov 23 +

+

Fred Espenak

+
+
+

Introduction

+

+The following table delineates the path of the Moon's +umbral +shadow during the +Total Solar Eclipse of 2003 Nov 23 +. +The geographic coordinates (WGS 84) of the northern and southern limits and the central line are listed at + 120-second intervals. +This provides adequate detail for making plots of the path on larger scale maps. +Local circumstances on the central line include the ratio of the apparent diameters of the Moon to the Sun, +the Sun's altitude and azimuth (degrees), +the path width (kilometers) and the duration on the central line (minutes and seconds). +See the Explanation of the Central Eclipse Path Table for a description of each column in the table. +

+

+The geographic visibility of the eclipse is shown on a global map on the +Prime Page for the Eclipse +which also includes complete details on the eclipse. +The path of the eclipse is displayed in greater detail on an interactive +Google Map +. +

+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Total Solar Eclipse of 2003 Nov 23
UT1Northern LimitSouthern LimitCentral LineM:SSunSunPathCentral
LatitudeLongitudeLatitudeLongitudeLatitudeLongitudeRatioAlt.Azm.WidthDuration
Limits50°55.8'S084°28.6'E54°09.8'S079°00.9'E52°27.4'S081°59.7'E 1.033 - 497 km 01m33.9s
22:2457°28.9'S094°55.5'E - - 55°32.0'S087°36.3'E 1.035 120° 534 km 01m40.7s
22:2659°05.7'S096°23.1'E - - 57°42.8'S090°13.9'E 1.035 117° 544 km 01m44.6s
22:2860°34.1'S097°26.9'E57°24.1'S084°15.5'E59°27.3'S091°46.3'E 1.036 115° 545 km 01m47.4s
22:3061°57.0'S098°13.8'E59°26.8'S086°14.4'E61°00.1'S092°46.8'E 1.036 10° 114° 543 km 01m49.5s
22:3263°16.0'S098°47.0'E61°07.5'S087°18.0'E62°25.8'S093°25.8'E 1.037 11° 113° 539 km 01m51.2s
22:3464°32.1'S099°08.4'E62°37.6'S087°51.2'E63°46.7'S093°48.0'E 1.037 12° 112° 533 km 01m52.7s
22:3665°46.0'S099°18.6'E64°00.8'S088°02.2'E65°03.9'S093°55.4'E 1.037 13° 111° 528 km 01m53.9s
22:3866°58.0'S099°18.1'E65°19.2'S087°54.4'E66°18.4'S093°49.0'E 1.037 13° 110° 522 km 01m54.9s
22:4068°08.6'S099°06.5'E66°33.8'S087°29.0'E67°30.5'S093°28.8'E 1.038 14° 110° 517 km 01m55.7s
22:4269°17.8'S098°43.1'E67°45.1'S086°46.2'E68°40.6'S092°54.4'E 1.038 14° 110° 511 km 01m56.3s
22:4470°25.8'S098°06.9'E68°53.5'S085°45.2'E69°48.8'S092°04.5'E 1.038 15° 110° 506 km 01m56.8s
22:4671°32.7'S097°16.1'E69°59.1'S084°24.6'E70°55.2'S090°57.5'E 1.038 15° 110° 502 km 01m57.1s
22:4872°38.5'S096°08.6'E71°01.7'S082°42.2'E71°59.6'S089°31.1'E 1.038 15° 111° 498 km 01m57.2s
22:5073°43.0'S094°41.3'E72°01.0'S080°35.3'E73°01.9'S087°42.1'E 1.038 15° 112° 494 km 01m57.3s
22:5274°46.0'S092°50.4'E72°56.5'S078°00.8'E74°01.8'S085°27.0'E 1.038 15° 113° 491 km 01m57.1s
22:5475°47.1'S090°31.0'E73°47.5'S074°54.7'E74°58.6'S082°40.9'E 1.038 15° 115° 489 km 01m56.8s
22:5676°45.8'S087°36.8'E74°32.9'S071°13.3'E75°51.4'S079°18.5'E 1.038 14° 117° 487 km 01m56.4s
22:5877°41.1'S084°00.0'E75°11.1'S066°53.1'E76°39.2'S075°14.0'E 1.038 14° 121° 486 km 01m55.8s
23:0078°31.9'S079°31.6'E75°40.1'S061°51.9'E77°20.3'S070°21.8'E 1.037 14° 124° 485 km 01m55.0s
23:0279°16.2'S074°02.4'E75°57.4'S056°10.1'E77°52.6'S064°38.0'E 1.037 13° 129° 485 km 01m54.1s
23:0479°51.6'S067°25.0'E75°59.4'S049°52.1'E78°13.1'S058°02.8'E 1.037 12° 135° 486 km 01m52.9s
23:0680°14.8'S059°38.8'E75°41.6'S043°07.2'E78°18.7'S050°43.4'E 1.037 11° 142° 487 km 01m51.5s
23:0880°22.0'S050°54.8'E74°56.5'S036°08.2'E78°05.2'S042°55.2'E 1.036 10° 148° 489 km 01m49.8s
23:1080°09.1'S041°39.6'E73°27.0'S029°06.6'E77°27.5'S035°00.8'E 1.036 156° 493 km 01m47.7s
23:1279°32.0'S032°30.5'E - - 76°17.6'S027°24.6'E 1.036 162° 497 km 01m45.1s
23:1478°25.7'S024°04.5'E - - 74°14.4'S020°24.5'E 1.035 168° 502 km 01m41.3s
Limits69°34.9'S008°45.5'E69°06.3'S021°35.8'E69°26.9'S014°49.0'E 1.033 - 505 km 01m33.8s
+ +

ΔT = + 64.5 + seconds

+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Greatest Eclipse and Greatest Duration
EventTime
TD
Time
UT1
LatitudeLongitudeSun
Altitude
Sun
Azimuth
Path WidthCentral
Duration
Greatest Eclipse22:50:21.722:49:17.372°40.0'S088°07.6'E 14.9° 111.2° 495.5 km01m57.27s
Greatest Duration22:50:18.722:49:14.372°38.4'S088°26.5'E 14.9° 111.1° 495.6 km01m57.27s
+

Explanation of Greatest Eclipse and Greatest Duration

+
+ +
+
+

Links for the + +Total Solar Eclipse of 2003 Nov 23 +

+ + +

Links to Additional Solar Eclipse Predictions

+
    +
  • Home - home page of EclipseWise with predictions for both solar and lunar eclipses
  • +
  • Solar Eclipses - primary page for solar eclipse predictions
  • +
  • Solar Eclipse Links - detailed directory of links
  • +
+ +
+
+ +
+
+

Eclipse Predictions

+

+Predictions for the +Total Solar Eclipse of 2003 Nov 23 +were generated using the +JPL DE406 +solar and lunar ephemerides. +The lunar coordinates were calculated with respect to the Moon's Center of Mass. +Although the predictions are first calculated in Terrestrial Dynamical Time (TD), +they are then converted to Universal Time (UT1) as presented here. +The parameter ΔT is used to convert between the two times (i.e., UT1 = TD - ΔT). +ΔT has a value of + 64.5 + seconds for this eclipse. + +

+ +

Acknowledgments

+

+Some of the content on this website is based on the book Thousand Year Canon of Solar Eclipses 1501 to 2500. +All eclipse calculations are by Fred Espenak, and he assumes full responsibility for their accuracy. +

+

+Permission is granted to reproduce eclipse data when accompanied by a link to this page and an acknowledgment: +

+

"Eclipse Predictions by Fred Espenak, EclipseWise.com"

+

+The use of diagrams and maps is permitted provided that they are unaltered (except for re-sizing) and the embedded credit line is not removed or covered. +

+
+
+
+ + +
+ + + \ No newline at end of file diff --git a/srcData/Eclipses/eclipse_2006_03_29.html b/srcData/Eclipses/eclipse_2006_03_29.html new file mode 100644 index 00000000..cdd7f213 --- /dev/null +++ b/srcData/Eclipses/eclipse_2006_03_29.html @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + +Path of +Total Solar Eclipse of 2006 Mar 29 + + + + +
+ + +
+

Path of the + +Total Solar Eclipse of 2006 Mar 29 +

+

Fred Espenak

+
+
+

Introduction

+

+The following table delineates the path of the Moon's +umbral +shadow during the +Total Solar Eclipse of 2006 Mar 29 +. +The geographic coordinates (WGS 84) of the northern and southern limits and the central line are listed at + 120-second intervals. +This provides adequate detail for making plots of the path on larger scale maps. +Local circumstances on the central line include the ratio of the apparent diameters of the Moon to the Sun, +the Sun's altitude and azimuth (degrees), +the path width (kilometers) and the duration on the central line (minutes and seconds). +See the Explanation of the Central Eclipse Path Table for a description of each column in the table. +

+

+The geographic visibility of the eclipse is shown on a global map on the +Prime Page for the Eclipse +which also includes complete details on the eclipse. +The path of the eclipse is displayed in greater detail on an interactive +Google Map +. +

+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Total Solar Eclipse of 2006 Mar 29
UT1Northern LimitSouthern LimitCentral LineM:SSunSunPathCentral
LatitudeLongitudeLatitudeLongitudeLatitudeLongitudeRatioAlt.Azm.WidthDuration
Limits05°43.5'S037°24.9'W06°52.3'S037°08.2'W06°18.0'S037°16.4'W 1.035 - 129 km 01m53.5s
08:3605°31.8'S034°54.0'W06°10.2'S029°34.6'W05°48.5'S031°41.4'W 1.037 86° 136 km 02m03.9s
08:3804°28.6'S027°03.7'W05°18.8'S024°25.6'W04°53.2'S025°41.4'W 1.039 12° 85° 146 km 02m16.7s
08:4003°40.6'S023°13.7'W04°33.6'S021°03.9'W04°06.8'S022°07.2'W 1.040 16° 85° 151 km 02m25.0s
08:4202°56.4'S020°22.7'W03°51.0'S018°26.2'W03°23.5'S019°23.4'W 1.041 20° 85° 156 km 02m31.9s
08:4402°14.3'S018°02.9'W03°10.0'S016°14.2'W02°41.9'S017°07.8'W 1.042 22° 85° 160 km 02m37.9s
08:4601°33.5'S016°03.1'W02°30.1'S014°19.6'W02°01.6'S015°10.7'W 1.043 25° 85° 163 km 02m43.3s
08:4800°53.7'S014°17.5'W01°51.0'S012°37.7'W01°22.2'S013°27.1'W 1.043 27° 85° 166 km 02m48.2s
08:5000°14.7'S012°42.7'W01°12.5'S011°05.6'W00°43.4'S011°53.7'W 1.044 29° 86° 169 km 02m52.8s
08:5200°23.7'N011°16.4'W00°34.5'S009°41.4'W00°05.3'S010°28.5'W 1.044 31° 86° 171 km 02m57.1s
08:5401°01.7'N009°57.0'W00°03.0'N008°23.7'W00°32.5'N009°09.9'W 1.045 33° 86° 173 km 03m01.1s
08:5601°39.2'N008°43.3'W00°40.2'N007°11.4'W01°09.8'N007°57.0'W 1.045 35° 87° 175 km 03m05.0s
08:5802°16.3'N007°34.6'W01°17.1'N006°03.7'W01°46.8'N006°48.8'W 1.046 37° 87° 177 km 03m08.6s
09:0002°53.2'N006°30.0'W01°53.6'N005°00.0'W02°23.5'N005°44.7'W 1.046 38° 88° 179 km 03m12.1s
09:0203°29.7'N005°29.1'W02°30.0'N003°59.9'W02°59.9'N004°44.2'W 1.047 40° 88° 180 km 03m15.4s
09:0404°06.0'N004°31.3'W03°06.1'N003°02.8'W03°36.1'N003°46.8'W 1.047 41° 89° 182 km 03m18.6s
09:0604°42.1'N003°36.4'W03°42.0'N002°08.5'W04°12.2'N002°52.2'W 1.047 43° 89° 183 km 03m21.6s
09:0805°18.1'N002°44.0'W04°17.7'N001°16.6'W04°48.0'N002°00.1'W 1.048 44° 90° 184 km 03m24.5s
09:1005°53.8'N001°53.9'W04°53.3'N000°26.9'W05°23.6'N001°10.2'W 1.048 45° 91° 185 km 03m27.3s
09:1206°29.4'N001°05.8'W05°28.8'N000°20.8'E05°59.2'N000°22.3'W 1.048 46° 91° 185 km 03m29.9s
09:1407°04.9'N000°19.5'W06°04.1'N001°06.8'E06°34.5'N000°23.8'E 1.048 48° 92° 186 km 03m32.5s
09:1607°40.2'N000°25.1'E06°39.3'N001°51.1'E07°09.8'N001°08.3'E 1.049 49° 93° 187 km 03m34.9s
09:1808°15.5'N001°08.2'E07°14.4'N002°33.9'E07°45.0'N001°51.2'E 1.049 50° 94° 187 km 03m37.3s
09:2008°50.6'N001°49.9'E07°49.3'N003°15.4'E08°20.0'N002°32.8'E 1.049 51° 95° 188 km 03m39.5s
09:2209°25.6'N002°30.4'E08°24.3'N003°55.6'E08°55.0'N003°13.2'E 1.049 52° 96° 188 km 03m41.6s
09:2410°00.6'N003°09.8'E08°59.1'N004°34.8'E09°29.9'N003°52.4'E 1.049 53° 97° 188 km 03m43.6s
09:2610°35.5'N003°48.1'E09°33.8'N005°12.9'E10°04.7'N004°30.6'E 1.050 54° 98° 189 km 03m45.6s
09:2811°10.4'N004°25.5'E10°08.5'N005°50.0'E10°39.5'N005°07.9'E 1.050 55° 100° 189 km 03m47.4s
09:3011°45.2'N005°02.0'E10°43.2'N006°26.4'E11°14.2'N005°44.3'E 1.050 56° 101° 189 km 03m49.2s
09:3212°19.9'N005°37.7'E11°17.8'N007°01.9'E11°48.9'N006°20.0'E 1.050 57° 102° 189 km 03m50.9s
09:3412°54.6'N006°12.8'E11°52.3'N007°36.7'E12°23.5'N006°54.9'E 1.050 58° 104° 189 km 03m52.4s
09:3613°29.3'N006°47.1'E12°26.8'N008°10.9'E12°58.1'N007°29.2'E 1.050 59° 105° 189 km 03m53.9s
09:3814°04.0'N007°20.9'E13°01.3'N008°44.6'E13°32.7'N008°02.9'E 1.051 60° 107° 189 km 03m55.3s
09:4014°38.6'N007°54.2'E13°35.8'N009°17.7'E14°07.2'N008°36.1'E 1.051 61° 109° 189 km 03m56.7s
09:4215°13.3'N008°27.0'E14°10.2'N009°50.3'E14°41.7'N009°08.8'E 1.051 61° 111° 189 km 03m57.9s
09:4415°47.9'N008°59.4'E14°44.7'N010°22.5'E15°16.3'N009°41.1'E 1.051 62° 113° 188 km 03m59.0s
09:4616°22.5'N009°31.5'E15°19.1'N010°54.4'E15°50.8'N010°13.1'E 1.051 63° 115° 188 km 04m00.1s
09:4816°57.2'N010°03.2'E15°53.5'N011°25.9'E16°25.3'N010°44.7'E 1.051 64° 117° 188 km 04m01.1s
09:5017°31.8'N010°34.7'E16°27.9'N011°57.2'E16°59.8'N011°16.1'E 1.051 64° 119° 188 km 04m02.0s
09:5218°06.5'N011°06.0'E17°02.4'N012°28.2'E17°34.4'N011°47.2'E 1.051 65° 122° 187 km 04m02.8s
09:5418°41.1'N011°37.0'E17°36.8'N012°59.1'E18°08.9'N012°18.2'E 1.051 65° 124° 187 km 04m03.6s
09:5619°15.9'N012°08.0'E18°11.2'N013°29.8'E18°43.5'N012°49.0'E 1.051 66° 127° 187 km 04m04.3s
09:5819°50.6'N012°38.9'E18°45.7'N014°00.4'E19°18.1'N013°19.7'E 1.051 66° 129° 186 km 04m04.8s
10:0020°25.4'N013°09.7'E19°20.2'N014°31.0'E19°52.8'N013°50.4'E 1.051 66° 132° 186 km 04m05.4s
10:0221°00.2'N013°40.5'E19°54.7'N015°01.5'E20°27.4'N014°21.1'E 1.051 67° 135° 186 km 04m05.8s
10:0421°35.1'N014°11.4'E20°29.3'N015°32.1'E21°02.1'N014°51.9'E 1.051 67° 138° 185 km 04m06.1s
10:0622°10.0'N014°42.3'E21°03.9'N016°02.8'E21°36.9'N015°22.6'E 1.052 67° 141° 185 km 04m06.4s
10:0822°44.9'N015°13.4'E21°38.5'N016°33.5'E22°11.7'N015°53.6'E 1.052 67° 144° 184 km 04m06.6s
10:1023°20.0'N015°44.6'E22°13.2'N017°04.4'E22°46.5'N016°24.6'E 1.052 67° 147° 184 km 04m06.7s
10:1223°55.1'N016°16.1'E22°47.9'N017°35.5'E23°21.4'N016°55.9'E 1.052 67° 150° 183 km 04m06.7s
10:1424°30.2'N016°47.7'E23°22.7'N018°06.9'E23°56.4'N017°27.4'E 1.051 67° 153° 183 km 04m06.7s
10:1625°05.4'N017°19.7'E23°57.5'N018°38.5'E24°31.4'N017°59.2'E 1.051 67° 156° 182 km 04m06.5s
10:1825°40.7'N017°52.1'E24°32.4'N019°10.4'E25°06.5'N018°31.3'E 1.051 67° 159° 182 km 04m06.3s
10:2026°16.1'N018°24.8'E25°07.4'N019°42.7'E25°41.7'N019°03.8'E 1.051 67° 162° 181 km 04m06.0s
10:2226°51.6'N018°57.9'E25°42.4'N020°15.3'E26°16.9'N019°36.7'E 1.051 66° 165° 181 km 04m05.6s
10:2427°27.2'N019°31.6'E26°17.5'N020°48.5'E26°52.2'N020°10.1'E 1.051 66° 168° 180 km 04m05.2s
10:2628°02.8'N020°05.8'E26°52.7'N021°22.1'E27°27.7'N020°44.0'E 1.051 66° 170° 180 km 04m04.6s
10:2828°38.6'N020°40.5'E27°28.0'N021°56.3'E28°03.2'N021°18.5'E 1.051 65° 173° 179 km 04m04.0s
10:3029°14.4'N021°15.9'E28°03.3'N022°31.1'E28°38.8'N021°53.6'E 1.051 65° 176° 179 km 04m03.3s
10:3229°50.4'N021°52.1'E28°38.8'N023°06.6'E29°14.5'N022°29.4'E 1.051 64° 178° 178 km 04m02.5s
10:3430°26.4'N022°29.0'E29°14.3'N023°42.8'E29°50.3'N023°06.0'E 1.051 64° 181° 178 km 04m01.6s
10:3631°02.6'N023°06.7'E29°49.9'N024°19.8'E30°26.2'N023°43.3'E 1.051 63° 183° 177 km 04m00.7s
10:3831°38.9'N023°45.3'E30°25.7'N024°57.7'E31°02.2'N024°21.5'E 1.051 62° 186° 176 km 03m59.6s
10:4032°15.3'N024°24.9'E31°01.5'N025°36.4'E31°38.3'N025°00.7'E 1.051 62° 188° 176 km 03m58.5s
10:4232°51.9'N025°05.6'E31°37.5'N026°16.2'E32°14.6'N025°40.9'E 1.050 61° 190° 175 km 03m57.3s
10:4433°28.6'N025°47.4'E32°13.6'N026°57.0'E32°50.9'N026°22.2'E 1.050 60° 192° 175 km 03m56.0s
10:4634°05.4'N026°30.4'E32°49.7'N027°39.0'E33°27.4'N027°04.7'E 1.050 59° 194° 174 km 03m54.6s
10:4834°42.3'N027°14.8'E33°26.1'N028°22.2'E34°04.0'N027°48.5'E 1.050 58° 197° 173 km 03m53.1s
10:5035°19.4'N028°00.5'E34°02.5'N029°06.8'E34°40.8'N028°33.7'E 1.050 57° 199° 173 km 03m51.5s
10:5235°56.6'N028°47.9'E34°39.1'N029°52.8'E35°17.7'N029°20.4'E 1.050 56° 200° 172 km 03m49.8s
10:5436°34.0'N029°36.9'E35°15.8'N030°40.4'E35°54.7'N030°08.6'E 1.050 56° 202° 171 km 03m48.1s
10:5637°11.5'N030°27.7'E35°52.6'N031°29.7'E36°31.9'N030°58.7'E 1.049 55° 204° 170 km 03m46.2s
10:5837°49.2'N031°20.4'E36°29.6'N032°20.8'E37°09.2'N031°50.6'E 1.049 54° 206° 170 km 03m44.3s
11:0038°27.0'N032°15.3'E37°06.7'N033°13.9'E37°46.7'N032°44.6'E 1.049 52° 208° 169 km 03m42.2s
11:0239°05.0'N033°12.5'E37°44.0'N034°09.2'E38°24.3'N033°40.7'E 1.049 51° 210° 168 km 03m40.0s
11:0439°43.2'N034°12.1'E38°21.4'N035°06.7'E39°02.1'N034°39.3'E 1.048 50° 211° 167 km 03m37.8s
11:0640°21.5'N035°14.5'E38°58.9'N036°06.8'E39°40.0'N035°40.5'E 1.048 49° 213° 166 km 03m35.4s
11:0840°59.9'N036°19.8'E39°36.6'N037°09.7'E40°18.1'N036°44.6'E 1.048 48° 215° 166 km 03m32.9s
11:1041°38.5'N037°28.4'E40°14.5'N038°15.6'E40°56.3'N037°51.8'E 1.048 47° 217° 165 km 03m30.3s
11:1242°17.2'N038°40.5'E40°52.4'N039°24.7'E41°34.6'N039°02.4'E 1.047 45° 218° 164 km 03m27.6s
11:1442°56.1'N039°56.6'E41°30.6'N040°37.5'E42°13.1'N040°16.8'E 1.047 44° 220° 163 km 03m24.7s
11:1643°35.1'N041°16.9'E42°08.8'N041°54.4'E42°51.7'N041°35.3'E 1.047 43° 222° 162 km 03m21.8s
11:1844°14.2'N042°42.2'E42°47.2'N043°15.6'E43°30.4'N042°58.5'E 1.046 41° 224° 161 km 03m18.7s
11:2044°53.3'N044°12.8'E43°25.6'N044°41.8'E44°09.2'N044°26.9'E 1.046 40° 225° 160 km 03m15.4s
11:2245°32.6'N045°49.4'E44°04.2'N046°13.6'E44°48.1'N046°01.0'E 1.046 38° 227° 159 km 03m12.0s
11:2446°11.9'N047°33.0'E44°42.8'N047°51.6'E45°27.1'N047°41.7'E 1.045 37° 229° 157 km 03m08.5s
11:2646°51.1'N049°24.3'E45°21.4'N049°36.8'E46°06.0'N049°29.9'E 1.045 35° 231° 156 km 03m04.8s
11:2847°30.3'N051°24.7'E46°00.1'N051°30.2'E46°44.9'N051°26.7'E 1.044 33° 233° 155 km 03m00.8s
11:3048°09.4'N053°35.7'E46°38.6'N053°33.1'E47°23.7'N053°33.5'E 1.044 32° 236° 153 km 02m56.7s
11:3248°48.1'N055°59.3'E47°17.0'N055°47.2'E48°02.3'N055°52.1'E 1.043 30° 238° 152 km 02m52.3s
11:3449°26.5'N058°38.0'E47°55.1'N058°14.9'E48°40.6'N058°25.1'E 1.043 28° 241° 150 km 02m47.6s
11:3650°04.2'N061°35.7'E48°32.8'N060°59.1'E49°18.3'N061°15.8'E 1.042 25° 243° 148 km 02m42.6s
11:3850°40.9'N064°57.9'E49°09.9'N064°04.5'E49°55.2'N064°29.2'E 1.041 23° 246° 146 km 02m37.2s
11:4051°16.1'N068°53.5'E49°45.8'N067°38.0'E50°30.8'N068°13.2'E 1.040 20° 250° 144 km 02m31.2s
11:4251°48.7'N073°38.9'E50°20.0'N071°51.8'E51°04.3'N072°41.7'E 1.040 17° 254° 141 km 02m24.4s
11:4452°16.1'N079°51.8'E50°51.0'N077°10.8'E51°33.7'N078°25.2'E 1.038 13° 259° 138 km 02m16.2s
11:4652°27.7'N090°18.4'E51°14.4'N084°50.3'E51°52.6'N087°09.8'E 1.036 266° 133 km 02m04.8s
Limits52°07.5'N098°59.4'E51°00.6'N098°36.4'E51°34.0'N098°47.7'E 1.034 - 126 km 01m51.2s
+ +

ΔT = + 65.0 + seconds

+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Greatest Eclipse and Greatest Duration
EventTime
TD
Time
UT1
LatitudeLongitudeSun
Altitude
Sun
Azimuth
Path WidthCentral
Duration
Greatest Eclipse10:12:22.710:11:17.723°09.1'N016°28.6'E 67.3° 148.6° 183.5 km04m06.71s
Greatest Duration10:12:45.410:11:40.423°15.7'N016°50.8'E 67.3° 149.2° 183.5 km04m06.72s
+

Explanation of Greatest Eclipse and Greatest Duration

+
+ +
+
+

Links for the + +Total Solar Eclipse of 2006 Mar 29 +

+ + +

Links to Additional Solar Eclipse Predictions

+
    +
  • Home - home page of EclipseWise with predictions for both solar and lunar eclipses
  • +
  • Solar Eclipses - primary page for solar eclipse predictions
  • +
  • Solar Eclipse Links - detailed directory of links
  • +
+ +
+
+ +
+
+

Eclipse Predictions

+

+Predictions for the +Total Solar Eclipse of 2006 Mar 29 +were generated using the +JPL DE406 +solar and lunar ephemerides. +The lunar coordinates were calculated with respect to the Moon's Center of Mass. +Although the predictions are first calculated in Terrestrial Dynamical Time (TD), +they are then converted to Universal Time (UT1) as presented here. +The parameter ΔT is used to convert between the two times (i.e., UT1 = TD - ΔT). +ΔT has a value of + 65.0 + seconds for this eclipse. + +

+ +

Acknowledgments

+

+Some of the content on this website is based on the book Thousand Year Canon of Solar Eclipses 1501 to 2500. +All eclipse calculations are by Fred Espenak, and he assumes full responsibility for their accuracy. +

+

+Permission is granted to reproduce eclipse data when accompanied by a link to this page and an acknowledgment: +

+

"Eclipse Predictions by Fred Espenak, EclipseWise.com"

+

+The use of diagrams and maps is permitted provided that they are unaltered (except for re-sizing) and the embedded credit line is not removed or covered. +

+
+
+
+ + +
+ + + \ No newline at end of file diff --git a/srcData/Eclipses/eclipse_2008_08_01.html b/srcData/Eclipses/eclipse_2008_08_01.html new file mode 100644 index 00000000..b1e65bbc --- /dev/null +++ b/srcData/Eclipses/eclipse_2008_08_01.html @@ -0,0 +1,280 @@ + + + + + + + + + + + + + + + +Path of +Total Solar Eclipse of 2008 Aug 01 + + + + +
+ + +
+

Path of the + +Total Solar Eclipse of 2008 Aug 01 +

+

Fred Espenak

+
+
+

Introduction

+

+The following table delineates the path of the Moon's +umbral +shadow during the +Total Solar Eclipse of 2008 Aug 01 +. +The geographic coordinates (WGS 84) of the northern and southern limits and the central line are listed at + 120-second intervals. +This provides adequate detail for making plots of the path on larger scale maps. +Local circumstances on the central line include the ratio of the apparent diameters of the Moon to the Sun, +the Sun's altitude and azimuth (degrees), +the path width (kilometers) and the duration on the central line (minutes and seconds). +See the Explanation of the Central Eclipse Path Table for a description of each column in the table. +

+

+The geographic visibility of the eclipse is shown on a global map on the +Prime Page for the Eclipse +which also includes complete details on the eclipse. +The path of the eclipse is displayed in greater detail on an interactive +Google Map +. +

+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Total Solar Eclipse of 2008 Aug 01
UT1Northern LimitSouthern LimitCentral LineM:SSunSunPathCentral
LatitudeLongitudeLatitudeLongitudeLatitudeLongitudeRatioAlt.Azm.WidthDuration
Limits68°44.0'N105°22.1'W67°49.1'N101°01.6'W68°16.9'N103°08.2'W 1.030 - 206 km 01m30.0s
09:2469°23.3'N104°14.8'W75°41.4'N082°12.0'W73°57.3'N091°30.5'W 1.032 45° 213 km 01m40.6s
09:2675°35.6'N091°55.3'W78°01.3'N073°22.0'W77°07.0'N082°40.2'W 1.033 11° 55° 217 km 01m46.9s
09:2878°26.1'N083°56.6'W79°44.7'N064°08.2'W79°18.3'N074°05.5'W 1.034 13° 64° 218 km 01m51.5s
09:3080°32.2'N075°33.7'W81°02.5'N053°56.5'W80°58.6'N064°36.4'W 1.035 16° 74° 219 km 01m55.3s
09:3282°11.1'N065°44.6'W81°58.1'N042°35.4'W82°14.7'N053°37.0'W 1.035 17° 85° 220 km 01m58.6s
09:3483°26.7'N053°41.1'W82°32.8'N030°16.7'W83°08.3'N040°52.5'W 1.036 19° 99° 221 km 02m01.6s
09:3684°18.6'N038°56.6'W82°47.2'N017°37.4'W83°38.8'N026°43.3'W 1.036 21° 114° 222 km 02m04.2s
09:3884°44.2'N022°05.9'W82°43.3'N005°27.4'W83°46.7'N012°12.6'W 1.036 22° 129° 222 km 02m06.6s
09:4084°43.5'N005°05.9'W82°24.3'N005°31.8'E83°34.5'N001°19.9'E 1.037 23° 143° 223 km 02m08.9s
09:4284°20.7'N009°53.8'E81°53.7'N015°00.4'E83°06.5'N013°00.4'E 1.037 24° 156° 224 km 02m10.9s
09:4483°42.2'N021°57.0'E81°14.9'N022°58.5'E82°27.5'N022°36.4'E 1.037 25° 166° 224 km 02m12.8s
09:4682°54.0'N031°16.3'E80°30.4'N029°36.7'E81°41.3'N030°21.4'E 1.038 26° 175° 225 km 02m14.5s
09:4882°00.3'N038°27.8'E79°42.2'N035°08.9'E80°50.5'N036°37.0'E 1.038 27° 182° 225 km 02m16.1s
09:5081°03.5'N044°06.2'E78°51.5'N039°48.2'E79°57.0'N041°43.6'E 1.038 28° 188° 226 km 02m17.5s
09:5280°05.1'N048°37.2'E77°59.3'N043°45.3'E79°02.0'N045°57.5'E 1.038 29° 193° 226 km 02m18.9s
09:5479°06.0'N052°19.1'E77°06.2'N047°09.1'E78°06.0'N049°31.0'E 1.038 29° 198° 227 km 02m20.1s
09:5678°06.8'N055°24.7'E76°12.5'N050°06.1'E77°09.7'N052°33.3'E 1.039 30° 202° 227 km 02m21.2s
09:5877°07.6'N058°02.8'E75°18.6'N052°41.6'E76°13.3'N055°11.3'E 1.039 30° 206° 228 km 02m22.2s
10:0076°08.7'N060°19.7'E74°24.6'N054°59.6'E75°17.0'N057°29.8'E 1.039 31° 209° 229 km 02m23.1s
10:0275°10.2'N062°20.0'E73°30.7'N057°03.2'E74°20.8'N059°32.8'E 1.039 31° 212° 229 km 02m24.0s
10:0474°12.2'N064°07.1'E72°36.9'N058°55.0'E73°24.9'N061°23.1'E 1.039 32° 215° 230 km 02m24.7s
10:0673°14.6'N065°43.5'E71°43.3'N060°36.8'E72°29.4'N063°03.0'E 1.039 32° 218° 231 km 02m25.3s
10:0872°17.4'N067°11.3'E70°49.9'N062°10.3'E71°34.1'N064°34.3'E 1.039 33° 220° 232 km 02m25.8s
10:1071°20.7'N068°31.8'E69°56.7'N063°36.8'E70°39.2'N065°58.4'E 1.039 33° 223° 232 km 02m26.3s
10:1270°24.4'N069°46.4'E69°03.7'N064°57.3'E69°44.6'N067°16.5'E 1.039 33° 225° 233 km 02m26.6s
10:1469°28.5'N070°56.0'E68°11.0'N066°12.6'E68°50.3'N068°29.4'E 1.039 33° 228° 234 km 02m26.9s
10:1668°32.9'N072°01.4'E67°18.5'N067°23.6'E67°56.2'N069°38.0'E 1.039 33° 230° 235 km 02m27.1s
10:1867°37.6'N073°03.3'E66°26.1'N068°30.7'E67°02.5'N070°42.9'E 1.039 33° 232° 236 km 02m27.2s
10:2066°42.7'N074°02.3'E65°33.9'N069°34.7'E66°08.9'N071°44.7'E 1.039 33° 234° 236 km 02m27.2s
10:2265°48.0'N074°58.7'E64°41.9'N070°35.9'E65°15.5'N072°43.8'E 1.039 34° 236° 237 km 02m27.1s
10:2464°53.5'N075°53.0'E63°50.0'N071°34.7'E64°22.3'N073°40.6'E 1.039 33° 238° 238 km 02m26.9s
10:2663°59.1'N076°45.6'E62°58.2'N072°31.5'E63°29.3'N074°35.5'E 1.039 33° 240° 239 km 02m26.7s
10:2863°04.9'N077°36.8'E62°06.4'N073°26.6'E62°36.3'N075°28.8'E 1.039 33° 242° 240 km 02m26.4s
10:3062°10.8'N078°26.8'E61°14.7'N074°20.3'E61°43.4'N076°20.9'E 1.039 33° 244° 241 km 02m25.9s
10:3261°16.7'N079°16.0'E60°23.0'N075°12.8'E60°50.5'N077°11.9'E 1.039 33° 246° 242 km 02m25.5s
10:3460°22.7'N080°04.5'E59°31.2'N076°04.5'E59°57.6'N078°02.1'E 1.039 33° 248° 243 km 02m24.9s
10:3659°28.6'N080°52.7'E58°39.4'N076°55.4'E59°04.6'N078°51.7'E 1.039 32° 250° 244 km 02m24.2s
10:3858°34.4'N081°40.6'E57°47.5'N077°45.9'E58°11.6'N079°41.1'E 1.039 32° 251° 245 km 02m23.4s
10:4057°40.1'N082°28.6'E56°55.4'N078°36.1'E57°18.4'N080°30.3'E 1.039 32° 253° 246 km 02m22.6s
10:4256°45.5'N083°16.8'E56°03.1'N079°26.4'E56°25.0'N081°19.5'E 1.039 31° 255° 247 km 02m21.7s
10:4455°50.7'N084°05.5'E55°10.6'N080°16.7'E55°31.4'N082°09.1'E 1.038 31° 257° 248 km 02m20.7s
10:4654°55.6'N084°54.8'E54°17.8'N081°07.5'E54°37.4'N082°59.3'E 1.038 30° 258° 249 km 02m19.5s
10:4854°00.1'N085°45.2'E53°24.6'N081°58.9'E53°43.1'N083°50.2'E 1.038 29° 260° 249 km 02m18.3s
10:5053°04.1'N086°36.7'E52°31.0'N082°51.1'E52°48.3'N084°42.1'E 1.038 29° 262° 250 km 02m17.0s
10:5252°07.5'N087°29.7'E51°36.8'N083°44.5'E51°52.9'N085°35.3'E 1.038 28° 263° 251 km 02m15.6s
10:5451°10.2'N088°24.6'E50°42.1'N084°39.2'E50°57.0'N086°30.1'E 1.038 27° 265° 251 km 02m14.1s
10:5650°12.1'N089°21.8'E49°46.7'N085°35.7'E50°00.2'N087°26.9'E 1.037 26° 267° 251 km 02m12.4s
10:5849°13.0'N090°21.6'E48°50.5'N086°34.3'E49°02.6'N088°26.1'E 1.037 26° 268° 252 km 02m10.7s
11:0048°12.7'N091°24.7'E47°53.3'N087°35.5'E48°03.9'N089°28.1'E 1.037 25° 270° 252 km 02m08.8s
11:0247°11.0'N092°31.8'E46°54.9'N088°39.8'E47°04.0'N090°33.7'E 1.036 23° 271° 251 km 02m06.8s
11:0446°07.6'N093°43.8'E45°55.2'N089°47.8'E46°02.5'N091°43.5'E 1.036 22° 273° 251 km 02m04.6s
11:0645°01.9'N095°02.0'E44°53.9'N091°00.5'E44°59.1'N092°58.7'E 1.036 21° 275° 250 km 02m02.2s
11:0843°53.5'N096°28.0'E43°50.4'N092°19.0'E43°53.4'N094°20.6'E 1.035 20° 276° 248 km 01m59.6s
11:1042°41.5'N098°04.6'E42°44.5'N093°44.9'E42°44.6'N095°51.1'E 1.035 18° 278° 246 km 01m56.8s
11:1241°24.3'N099°55.8'E41°35.1'N095°20.4'E41°31.8'N097°33.4'E 1.034 16° 280° 243 km 01m53.6s
11:1439°59.4'N102°09.4'E40°21.2'N097°09.3'E40°13.1'N099°32.7'E 1.034 14° 282° 238 km 01m50.0s
11:1638°20.6'N105°03.5'E39°00.6'N099°18.1'E38°45.3'N101°58.9'E 1.033 12° 284° 233 km 01m45.7s
11:1836°03.5'N109°50.2'E37°28.7'N101°59.7'E36°59.5'N105°18.3'E 1.032 286° 224 km 01m40.2s
Limits34°14.6'N114°34.6'E32°45.1'N113°13.3'E33°29.4'N113°53.3'E 1.029 - 200 km 01m27.9s
+ +

ΔT = + 65.7 + seconds

+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Greatest Eclipse and Greatest Duration
EventTime
TD
Time
UT1
LatitudeLongitudeSun
Altitude
Sun
Azimuth
Path WidthCentral
Duration
Greatest Eclipse10:22:12.310:21:06.765°39.2'N072°01.3'E 33.5° 235.2° 236.9 km02m27.14s
Greatest Duration10:20:17.010:19:11.466°30.6'N071°20.0'E 33.5° 233.2° 236.1 km02m27.18s
+

Explanation of Greatest Eclipse and Greatest Duration

+
+ +
+
+

Links for the + +Total Solar Eclipse of 2008 Aug 01 +

+ + +

Links to Additional Solar Eclipse Predictions

+
    +
  • Home - home page of EclipseWise with predictions for both solar and lunar eclipses
  • +
  • Solar Eclipses - primary page for solar eclipse predictions
  • +
  • Solar Eclipse Links - detailed directory of links
  • +
+ +
+
+ +
+
+

Eclipse Predictions

+

+Predictions for the +Total Solar Eclipse of 2008 Aug 01 +were generated using the +JPL DE406 +solar and lunar ephemerides. +The lunar coordinates were calculated with respect to the Moon's Center of Mass. +Although the predictions are first calculated in Terrestrial Dynamical Time (TD), +they are then converted to Universal Time (UT1) as presented here. +The parameter ΔT is used to convert between the two times (i.e., UT1 = TD - ΔT). +ΔT has a value of + 65.7 + seconds for this eclipse. + +

+ +

Acknowledgments

+

+Some of the content on this website is based on the book Thousand Year Canon of Solar Eclipses 1501 to 2500. +All eclipse calculations are by Fred Espenak, and he assumes full responsibility for their accuracy. +

+

+Permission is granted to reproduce eclipse data when accompanied by a link to this page and an acknowledgment: +

+

"Eclipse Predictions by Fred Espenak, EclipseWise.com"

+

+The use of diagrams and maps is permitted provided that they are unaltered (except for re-sizing) and the embedded credit line is not removed or covered. +

+
+
+
+ + +
+ + + \ No newline at end of file diff --git a/srcData/Eclipses/eclipse_2009_07_22.html b/srcData/Eclipses/eclipse_2009_07_22.html new file mode 100644 index 00000000..8ae9ab0d --- /dev/null +++ b/srcData/Eclipses/eclipse_2009_07_22.html @@ -0,0 +1,324 @@ + + + + + + + + + + + + + + + +Path of +Total Solar Eclipse of 2009 Jul 22 + + + + +
+ + +
+

Path of the + +Total Solar Eclipse of 2009 Jul 22 +

+

Fred Espenak

+
+
+

Introduction

+

+The following table delineates the path of the Moon's +umbral +shadow during the +Total Solar Eclipse of 2009 Jul 22 +. +The geographic coordinates (WGS 84) of the northern and southern limits and the central line are listed at + 120-second intervals. +This provides adequate detail for making plots of the path on larger scale maps. +Local circumstances on the central line include the ratio of the apparent diameters of the Moon to the Sun, +the Sun's altitude and azimuth (degrees), +the path width (kilometers) and the duration on the central line (minutes and seconds). +See the Explanation of the Central Eclipse Path Table for a description of each column in the table. +

+

+The geographic visibility of the eclipse is shown on a global map on the +Prime Page for the Eclipse +which also includes complete details on the eclipse. +The path of the eclipse is displayed in greater detail on an interactive +Google Map +. +

+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Total Solar Eclipse of 2009 Jul 22
UT1Northern LimitSouthern LimitCentral LineM:SSunSunPathCentral
LatitudeLongitudeLatitudeLongitudeLatitudeLongitudeRatioAlt.Azm.WidthDuration
Limits21°11.6'N070°04.1'E19°31.7'N070°57.3'E20°21.6'N070°31.1'E 1.061 - 205 km 03m09.4s
00:5423°43.5'N076°56.7'E22°51.1'N080°23.9'E23°21.6'N078°51.1'E 1.064 72° 214 km 03m30.1s
00:5625°47.2'N083°01.6'E24°24.7'N085°18.3'E25°07.5'N084°14.2'E 1.066 14° 74° 219 km 03m45.2s
00:5827°01.2'N087°00.3'E25°27.1'N088°51.9'E26°15.1'N087°59.1'E 1.067 18° 76° 222 km 03m56.5s
01:0027°55.9'N090°11.2'E26°14.5'N091°47.7'E27°05.9'N091°01.9'E 1.068 21° 77° 225 km 04m06.1s
01:0228°39.1'N092°54.8'E26°52.4'N094°20.3'E27°46.4'N093°39.8'E 1.069 24° 79° 227 km 04m14.7s
01:0429°14.6'N095°20.3'E27°23.7'N096°36.9'E28°19.6'N096°00.6'E 1.070 27° 80° 230 km 04m22.6s
01:0629°44.2'N097°32.5'E27°49.9'N098°41.6'E28°47.5'N098°08.9'E 1.070 29° 82° 231 km 04m30.0s
01:0830°09.2'N099°34.5'E28°12.0'N100°36.9'E29°10.9'N100°07.4'E 1.071 31° 83° 233 km 04m36.9s
01:1030°30.4'N101°28.3'E28°30.7'N102°24.7'E29°30.8'N101°58.1'E 1.071 34° 84° 235 km 04m43.5s
01:1230°48.4'N103°15.4'E28°46.6'N104°06.1'E29°47.7'N103°42.2'E 1.072 35° 85° 236 km 04m49.8s
01:1431°03.6'N104°56.7'E28°59.9'N105°42.1'E30°01.9'N105°20.8'E 1.073 37° 86° 237 km 04m55.8s
01:1631°16.4'N106°33.1'E29°11.0'N107°13.5'E30°13.9'N106°54.6'E 1.073 39° 88° 239 km 05m01.6s
01:1831°27.1'N108°05.2'E29°20.2'N108°40.8'E30°23.7'N108°24.3'E 1.073 41° 89° 240 km 05m07.1s
01:2031°35.8'N109°33.6'E29°27.5'N110°04.5'E30°31.8'N109°50.2'E 1.074 43° 90° 241 km 05m12.4s
01:2231°42.7'N110°58.5'E29°33.3'N111°25.0'E30°38.1'N111°12.8'E 1.074 44° 91° 242 km 05m17.6s
01:2431°48.0'N112°20.4'E29°37.6'N112°42.5'E30°42.8'N112°32.5'E 1.075 46° 92° 243 km 05m22.5s
01:2631°51.8'N113°39.5'E29°40.5'N113°57.4'E30°46.2'N113°49.4'E 1.075 47° 93° 244 km 05m27.3s
01:2831°54.3'N114°56.0'E29°42.2'N115°09.9'E30°48.2'N115°03.9'E 1.075 49° 94° 245 km 05m31.9s
01:3031°55.4'N116°10.2'E29°42.6'N116°20.1'E30°49.0'N116°16.0'E 1.076 50° 95° 246 km 05m36.4s
01:3231°55.3'N117°22.3'E29°42.0'N117°28.3'E30°48.6'N117°26.1'E 1.076 52° 96° 246 km 05m40.7s
01:3431°54.1'N118°32.3'E29°40.3'N118°34.6'E30°47.1'N118°34.2'E 1.076 53° 97° 247 km 05m44.8s
01:3631°51.8'N119°40.5'E29°37.6'N119°39.0'E30°44.6'N119°40.4'E 1.076 54° 98° 248 km 05m48.7s
01:3831°48.5'N120°46.9'E29°34.0'N120°41.8'E30°41.2'N120°45.0'E 1.077 56° 99° 249 km 05m52.5s
01:4031°44.2'N121°51.6'E29°29.5'N121°43.0'E30°36.8'N121°47.9'E 1.077 57° 100° 249 km 05m56.2s
01:4231°39.0'N122°54.8'E29°24.1'N122°42.8'E30°31.5'N122°49.3'E 1.077 58° 101° 250 km 05m59.7s
01:4431°32.9'N123°56.5'E29°17.9'N123°41.1'E30°25.4'N123°49.3'E 1.077 60° 102° 251 km 06m03.0s
01:4631°26.0'N124°56.8'E29°11.0'N124°38.2'E30°18.4'N124°47.9'E 1.078 61° 103° 251 km 06m06.2s
01:4831°18.2'N125°55.8'E29°03.3'N125°34.0'E30°10.7'N125°45.3'E 1.078 62° 104° 252 km 06m09.3s
01:5031°09.7'N126°53.5'E28°54.9'N126°28.6'E30°02.2'N126°41.4'E 1.078 63° 105° 252 km 06m12.2s
01:5231°00.5'N127°50.1'E28°45.9'N127°22.1'E29°53.1'N127°36.4'E 1.078 65° 106° 253 km 06m14.9s
01:5430°50.5'N128°45.5'E28°36.1'N128°14.6'E29°43.2'N128°30.3'E 1.078 66° 107° 253 km 06m17.5s
01:5630°39.8'N129°39.8'E28°25.7'N129°06.0'E29°32.7'N129°23.1'E 1.078 67° 108° 254 km 06m20.0s
01:5830°28.5'N130°33.1'E28°14.7'N129°56.5'E29°21.5'N130°15.0'E 1.079 68° 110° 254 km 06m22.3s
02:0030°16.5'N131°25.4'E28°03.1'N130°46.0'E29°09.7'N131°05.8'E 1.079 69° 111° 255 km 06m24.4s
02:0230°03.8'N132°16.7'E27°50.9'N131°34.7'E28°57.3'N131°55.8'E 1.079 71° 112° 255 km 06m26.5s
02:0429°50.6'N133°07.1'E27°38.1'N132°22.5'E28°44.3'N132°44.9'E 1.079 72° 114° 255 km 06m28.3s
02:0629°36.8'N133°56.7'E27°24.8'N133°09.6'E28°30.7'N133°33.2'E 1.079 73° 115° 256 km 06m30.0s
02:0829°22.3'N134°45.4'E27°10.9'N133°55.9'E28°16.6'N134°20.7'E 1.079 74° 117° 256 km 06m31.6s
02:1029°07.4'N135°33.4'E26°56.5'N134°41.5'E28°01.9'N135°07.4'E 1.079 75° 118° 256 km 06m33.0s
02:1228°51.8'N136°20.6'E26°41.6'N135°26.4'E27°46.7'N135°53.4'E 1.079 76° 120° 257 km 06m34.3s
02:1428°35.8'N137°07.0'E26°26.2'N136°10.6'E27°30.9'N136°38.7'E 1.080 77° 122° 257 km 06m35.4s
02:1628°19.2'N137°52.8'E26°10.3'N136°54.2'E27°14.7'N137°23.4'E 1.080 78° 125° 257 km 06m36.4s
02:1828°02.1'N138°37.9'E25°53.9'N137°37.2'E26°57.9'N138°07.5'E 1.080 79° 127° 257 km 06m37.3s
02:2027°44.5'N139°22.4'E25°37.0'N138°19.7'E26°40.7'N138°50.9'E 1.080 80° 130° 258 km 06m38.0s
02:2227°26.4'N140°06.3'E25°19.6'N139°01.6'E26°23.0'N139°33.8'E 1.080 81° 134° 258 km 06m38.6s
02:2427°07.8'N140°49.6'E25°01.8'N139°43.0'E26°04.8'N140°16.1'E 1.080 82° 139° 258 km 06m39.0s
02:2626°48.7'N141°32.4'E24°43.5'N140°24.0'E25°46.1'N140°58.0'E 1.080 83° 144° 258 km 06m39.3s
02:2826°29.2'N142°14.7'E24°24.8'N141°04.5'E25°27.0'N141°39.4'E 1.080 84° 152° 258 km 06m39.4s
02:3026°09.1'N142°56.5'E24°05.6'N141°44.6'E25°07.4'N142°20.3'E 1.080 85° 161° 258 km 06m39.5s
02:3225°48.7'N143°37.8'E23°46.0'N142°24.3'E24°47.3'N143°00.8'E 1.080 85° 173° 258 km 06m39.3s
02:3425°27.7'N144°18.7'E23°25.9'N143°03.6'E24°26.9'N143°40.9'E 1.080 86° 187° 258 km 06m39.1s
02:3625°06.4'N144°59.2'E23°05.4'N143°42.6'E24°05.9'N144°20.6'E 1.080 86° 203° 258 km 06m38.7s
02:3824°44.5'N145°39.4'E22°44.4'N144°21.2'E23°44.5'N145°00.0'E 1.080 86° 218° 259 km 06m38.2s
02:4024°22.3'N146°19.2'E22°23.1'N144°59.6'E23°22.7'N145°39.1'E 1.080 85° 231° 259 km 06m37.6s
02:4223°59.5'N146°58.7'E22°01.2'N145°37.7'E23°00.5'N146°17.9'E 1.080 84° 241° 259 km 06m36.8s
02:4423°36.4'N147°37.9'E21°39.0'N146°15.6'E22°37.8'N146°56.4'E 1.080 84° 249° 259 km 06m35.9s
02:4623°12.8'N148°16.8'E21°16.3'N146°53.3'E22°14.6'N147°34.7'E 1.080 83° 256° 259 km 06m34.9s
02:4822°48.8'N148°55.6'E20°53.2'N147°30.8'E21°51.1'N148°12.8'E 1.080 82° 260° 259 km 06m33.7s
02:5022°24.3'N149°34.1'E20°29.7'N148°08.1'E21°27.1'N148°50.7'E 1.080 81° 264° 259 km 06m32.5s
02:5221°59.4'N150°12.5'E20°05.7'N148°45.3'E21°02.6'N149°28.5'E 1.080 80° 268° 258 km 06m31.1s
02:5421°34.0'N150°50.7'E19°41.2'N149°22.4'E20°37.7'N150°06.2'E 1.080 79° 270° 258 km 06m29.6s
02:5621°08.2'N151°28.8'E19°16.4'N149°59.5'E20°12.4'N150°43.8'E 1.079 78° 273° 258 km 06m28.0s
02:5820°41.9'N152°06.9'E18°51.1'N150°36.5'E19°46.6'N151°21.3'E 1.079 77° 275° 258 km 06m26.3s
03:0020°15.2'N152°44.9'E18°25.3'N151°13.6'E19°20.4'N151°58.8'E 1.079 76° 276° 258 km 06m24.4s
03:0219°48.0'N153°22.9'E17°59.1'N151°50.6'E18°53.7'N152°36.3'E 1.079 74° 278° 258 km 06m22.4s
03:0419°20.4'N154°00.9'E17°32.4'N152°27.7'E18°26.6'N153°13.9'E 1.079 73° 279° 258 km 06m20.4s
03:0618°52.3'N154°39.0'E17°05.2'N153°05.0'E17°58.9'N153°51.6'E 1.079 72° 280° 258 km 06m18.2s
03:0818°23.7'N155°17.2'E16°37.6'N153°42.3'E17°30.8'N154°29.3'E 1.079 71° 281° 258 km 06m15.9s
03:1017°54.6'N155°55.6'E16°09.5'N154°19.9'E17°02.2'N155°07.3'E 1.079 70° 282° 257 km 06m13.5s
03:1217°25.1'N156°34.1'E15°40.8'N154°57.6'E16°33.1'N155°45.4'E 1.079 69° 283° 257 km 06m11.0s
03:1416°55.0'N157°12.9'E15°11.7'N155°35.7'E16°03.5'N156°23.8'E 1.078 68° 284° 257 km 06m08.4s
03:1616°24.4'N157°51.9'E14°42.0'N156°14.0'E15°33.4'N157°02.5'E 1.078 66° 285° 257 km 06m05.7s
03:1815°53.2'N158°31.3'E14°11.8'N156°52.7'E15°02.7'N157°41.5'E 1.078 65° 286° 257 km 06m02.8s
03:2015°21.5'N159°11.1'E13°41.1'N157°31.7'E14°31.5'N158°20.9'E 1.078 64° 287° 256 km 05m59.9s
03:2214°49.2'N159°51.3'E13°09.7'N158°11.3'E13°59.7'N159°00.8'E 1.078 63° 287° 256 km 05m56.9s
03:2414°16.4'N160°32.0'E12°37.8'N158°51.4'E13°27.3'N159°41.2'E 1.078 61° 288° 256 km 05m53.8s
03:2613°42.9'N161°13.3'E12°05.3'N159°32.0'E12°54.3'N160°22.2'E 1.077 60° 288° 255 km 05m50.5s
03:2813°08.8'N161°55.2'E11°32.1'N160°13.3'E12°20.7'N161°03.8'E 1.077 59° 289° 255 km 05m47.2s
03:3012°34.0'N162°37.9'E10°58.3'N160°55.4'E11°46.4'N161°46.1'E 1.077 58° 289° 255 km 05m43.7s
03:3211°58.5'N163°21.4'E10°23.7'N161°38.2'E11°11.4'N162°29.3'E 1.077 56° 290° 254 km 05m40.2s
03:3411°22.2'N164°05.7'E09°48.5'N162°22.0'E10°35.6'N163°13.4'E 1.076 55° 290° 254 km 05m36.5s
03:3610°45.2'N164°51.1'E09°12.4'N163°06.8'E09°59.1'N163°58.4'E 1.076 54° 291° 253 km 05m32.7s
03:3810°07.4'N165°37.6'E08°35.6'N163°52.7'E09°21.8'N164°44.6'E 1.076 52° 291° 252 km 05m28.8s
03:4009°28.7'N166°25.4'E07°57.9'N164°39.8'E08°43.6'N165°32.1'E 1.076 51° 291° 252 km 05m24.8s
03:4208°49.1'N167°14.6'E07°19.3'N165°28.4'E08°04.5'N166°20.9'E 1.075 49° 292° 251 km 05m20.7s
03:4408°08.5'N168°05.4'E06°39.7'N166°18.5'E07°24.4'N167°11.4'E 1.075 48° 292° 250 km 05m16.4s
03:4607°26.8'N168°57.9'E05°59.0'N167°10.4'E06°43.2'N168°03.6'E 1.075 46° 292° 250 km 05m12.1s
03:4806°43.9'N169°52.5'E05°17.2'N168°04.2'E06°00.9'N168°57.7'E 1.074 45° 293° 249 km 05m07.5s
03:5005°59.8'N170°49.3'E04°34.2'N169°00.2'E05°17.4'N169°54.1'E 1.074 43° 293° 248 km 05m02.9s
03:5205°14.2'N171°48.7'E03°49.8'N169°58.7'E04°32.4'N170°53.1'E 1.073 41° 293° 247 km 04m58.1s
03:5404°27.2'N172°51.1'E03°03.9'N171°00.2'E03°45.9'N171°54.9'E 1.073 40° 293° 246 km 04m53.1s
03:5603°38.4'N173°56.8'E02°16.3'N172°04.9'E02°57.8'N173°00.1'E 1.072 38° 294° 244 km 04m47.9s
03:5802°47.6'N175°06.6'E01°26.9'N173°13.4'E02°07.7'N174°09.3'E 1.072 36° 294° 243 km 04m42.6s
04:0001°54.6'N176°21.1'E00°35.3'N174°26.4'E01°15.4'N175°23.0'E 1.071 34° 294° 241 km 04m37.0s
04:0200°59.0'N177°41.2'E00°18.7'S175°44.8'E00°20.6'N176°42.2'E 1.071 32° 294° 240 km 04m31.1s
04:0400°00.2'N179°08.2'E01°15.7'S177°09.7'E00°37.2'S178°08.0'E 1.070 30° 294° 238 km 04m25.0s
04:0601°02.3'S179°16.1'W02°16.1'S178°42.6'E01°38.6'S179°42.2'E 1.070 28° 294° 236 km 04m18.5s
04:0802°09.7'S177°29.2'W03°21.0'S179°34.2'W02°44.7'S178°32.9'W 1.069 25° 294° 233 km 04m11.5s
04:1003°23.4'S175°27.2'W04°31.6'S177°37.3'W03°56.7'S176°33.6'W 1.068 22° 294° 230 km 04m03.9s
04:1204°46.2'S173°02.8'W05°50.1'S175°20.9'W05°17.2'S174°13.5'W 1.067 19° 294° 227 km 03m55.5s
04:1406°23.7'S170°01.6'W07°20.7'S172°33.9'W06°51.0'S171°20.2'W 1.066 16° 293° 223 km 03m45.8s
04:1608°32.6'S165°40.0'W09°13.9'S168°48.5'W08°50.9'S167°19.4'W 1.064 11° 293° 217 km 03m33.5s
Limits12°04.6'S157°16.3'W13°44.8'S158°06.0'W12°54.7'S157°41.3'W 1.061 - 205 km 03m08.8s
+ +

ΔT = + 66.0 + seconds

+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Greatest Eclipse and Greatest Duration
EventTime
TD
Time
UT1
LatitudeLongitudeSun
Altitude
Sun
Azimuth
Path WidthCentral
Duration
Greatest Eclipse02:36:24.602:35:18.624°13.2'N143°50.4'E 85.9° 197.6° 258.5 km06m38.86s
Greatest Duration02:30:22.602:29:16.625°14.5'N142°05.5'E 84.6° 157.4° 258.2 km06m39.47s
+

Explanation of Greatest Eclipse and Greatest Duration

+
+ +
+
+

Links for the + +Total Solar Eclipse of 2009 Jul 22 +

+ + +

Links to Additional Solar Eclipse Predictions

+
    +
  • Home - home page of EclipseWise with predictions for both solar and lunar eclipses
  • +
  • Solar Eclipses - primary page for solar eclipse predictions
  • +
  • Solar Eclipse Links - detailed directory of links
  • +
+ +
+
+ +
+
+

Eclipse Predictions

+

+Predictions for the +Total Solar Eclipse of 2009 Jul 22 +were generated using the +JPL DE406 +solar and lunar ephemerides. +The lunar coordinates were calculated with respect to the Moon's Center of Mass. +Although the predictions are first calculated in Terrestrial Dynamical Time (TD), +they are then converted to Universal Time (UT1) as presented here. +The parameter ΔT is used to convert between the two times (i.e., UT1 = TD - ΔT). +ΔT has a value of + 66.0 + seconds for this eclipse. + +

+ +

Acknowledgments

+

+Some of the content on this website is based on the book Thousand Year Canon of Solar Eclipses 1501 to 2500. +All eclipse calculations are by Fred Espenak, and he assumes full responsibility for their accuracy. +

+

+Permission is granted to reproduce eclipse data when accompanied by a link to this page and an acknowledgment: +

+

"Eclipse Predictions by Fred Espenak, EclipseWise.com"

+

+The use of diagrams and maps is permitted provided that they are unaltered (except for re-sizing) and the embedded credit line is not removed or covered. +

+
+
+
+ + +
+ + + \ No newline at end of file diff --git a/srcData/Eclipses/eclipse_2010_07_11.html b/srcData/Eclipses/eclipse_2010_07_11.html new file mode 100644 index 00000000..90ff8efb --- /dev/null +++ b/srcData/Eclipses/eclipse_2010_07_11.html @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + +Path of +Total Solar Eclipse of 2010 Jul 11 + + + + +
+ + +
+

Path of the + +Total Solar Eclipse of 2010 Jul 11 +

+

Fred Espenak

+
+
+

Introduction

+

+The following table delineates the path of the Moon's +umbral +shadow during the +Total Solar Eclipse of 2010 Jul 11 +. +The geographic coordinates (WGS 84) of the northern and southern limits and the central line are listed at + 120-second intervals. +This provides adequate detail for making plots of the path on larger scale maps. +Local circumstances on the central line include the ratio of the apparent diameters of the Moon to the Sun, +the Sun's altitude and azimuth (degrees), +the path width (kilometers) and the duration on the central line (minutes and seconds). +See the Explanation of the Central Eclipse Path Table for a description of each column in the table. +

+

+The geographic visibility of the eclipse is shown on a global map on the +Prime Page for the Eclipse +which also includes complete details on the eclipse. +The path of the eclipse is displayed in greater detail on an interactive +Google Map +. +

+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Total Solar Eclipse of 2010 Jul 11
UT1Northern LimitSouthern LimitCentral LineM:SSunSunPathCentral
LatitudeLongitudeLatitudeLongitudeLatitudeLongitudeRatioAlt.Azm.WidthDuration
Limits26°02.9'S171°10.7'W27°40.6'S170°48.2'W26°51.4'S170°59.5'W 1.044 - 179 km 02m42.4s
18:1822°09.7'S161°33.0'W26°32.6'S168°00.6'W23°58.7'S163°51.3'W 1.046 62° 190 km 03m01.5s
18:2020°50.8'S157°59.6'W23°57.2'S161°17.8'W22°19.9'S159°27.9'W 1.048 12° 60° 197 km 03m15.1s
18:2219°55.5'S155°19.8'W22°43.2'S157°49.7'W21°17.1'S156°29.0'W 1.049 15° 58° 203 km 03m25.3s
18:2419°12.6'S153°07.9'W21°51.0'S155°12.7'W20°30.3'S154°06.4'W 1.050 18° 57° 207 km 03m33.9s
18:2618°37.9'S151°13.7'W21°10.5'S153°02.7'W19°53.1'S152°05.3'W 1.051 20° 56° 212 km 03m41.5s
18:2818°09.1'S149°32.0'W20°37.9'S151°10.0'W19°22.6'S150°18.6'W 1.051 22° 55° 216 km 03m48.5s
18:3017°44.8'S147°59.7'W20°10.9'S149°29.5'W18°57.1'S148°42.6'W 1.052 24° 54° 219 km 03m55.0s
18:3217°24.1'S146°34.8'W19°48.3'S147°58.3'W18°35.5'S147°14.8'W 1.052 26° 53° 223 km 04m01.1s
18:3417°06.6'S145°15.9'W19°29.1'S146°34.4'W18°17.3'S145°53.6'W 1.053 28° 52° 226 km 04m06.8s
18:3616°51.6'S144°02.0'W19°13.0'S145°16.4'W18°01.7'S144°37.8'W 1.053 29° 51° 229 km 04m12.2s
18:3816°38.9'S142°52.3'W18°59.3'S144°03.3'W17°48.6'S143°26.5'W 1.054 30° 50° 232 km 04m17.3s
18:4016°28.2'S141°46.1'W18°47.8'S142°54.3'W17°37.6'S142°19.1'W 1.054 32° 49° 235 km 04m22.2s
18:4216°19.4'S140°43.1'W18°38.3'S141°48.9'W17°28.4'S141°15.0'W 1.054 33° 48° 238 km 04m26.8s
18:4416°12.1'S139°42.8'W18°30.5'S140°46.6'W17°20.9'S140°13.8'W 1.055 34° 47° 240 km 04m31.2s
18:4616°06.3'S138°44.9'W18°24.3'S139°47.0'W17°14.9'S139°15.1'W 1.055 35° 46° 243 km 04m35.3s
18:4816°02.0'S137°49.2'W18°19.5'S138°49.8'W17°10.4'S138°18.7'W 1.055 36° 45° 245 km 04m39.3s
18:5015°58.9'S136°55.4'W18°16.1'S137°54.6'W17°07.1'S137°24.3'W 1.055 37° 43° 247 km 04m43.1s
18:5215°57.0'S136°03.3'W18°13.9'S137°01.4'W17°05.1'S136°31.7'W 1.056 38° 42° 249 km 04m46.7s
18:5415°56.2'S135°12.8'W18°12.8'S136°09.9'W17°04.2'S135°40.7'W 1.056 39° 41° 251 km 04m50.1s
18:5615°56.5'S134°23.7'W18°12.9'S135°19.9'W17°04.3'S134°51.2'W 1.056 40° 40° 253 km 04m53.3s
18:5815°57.8'S133°35.9'W18°14.0'S134°31.3'W17°05.5'S134°03.0'W 1.056 41° 39° 254 km 04m56.3s
19:0016°00.1'S132°49.2'W18°16.0'S133°43.9'W17°07.7'S133°16.0'W 1.056 41° 38° 256 km 04m59.1s
19:0216°03.3'S132°03.6'W18°19.0'S132°57.7'W17°10.8'S132°30.2'W 1.057 42° 36° 257 km 05m01.7s
19:0416°07.4'S131°19.0'W18°23.0'S132°12.5'W17°14.8'S131°45.3'W 1.057 43° 35° 258 km 05m04.2s
19:0616°12.3'S130°35.2'W18°27.7'S131°28.2'W17°19.7'S131°01.3'W 1.057 43° 34° 259 km 05m06.5s
19:0816°18.1'S129°52.3'W18°33.4'S130°44.8'W17°25.4'S130°18.1'W 1.057 44° 32° 260 km 05m08.6s
19:1016°24.7'S129°10.1'W18°39.8'S130°02.1'W17°31.9'S129°35.7'W 1.057 44° 31° 261 km 05m10.5s
19:1216°32.1'S128°28.5'W18°47.0'S129°20.2'W17°39.2'S128°54.0'W 1.057 45° 30° 261 km 05m12.3s
19:1416°40.3'S127°47.6'W18°55.0'S128°38.9'W17°47.3'S128°12.9'W 1.057 45° 28° 262 km 05m13.9s
19:1616°49.2'S127°07.2'W19°03.8'S127°58.1'W17°56.2'S127°32.4'W 1.058 46° 27° 262 km 05m15.3s
19:1816°58.9'S126°27.3'W19°13.3'S127°17.9'W18°05.8'S126°52.3'W 1.058 46° 25° 262 km 05m16.5s
19:2017°09.3'S125°47.8'W19°23.6'S126°38.1'W18°16.1'S126°12.7'W 1.058 46° 24° 262 km 05m17.6s
19:2217°20.5'S125°08.7'W19°34.6'S125°58.7'W18°27.2'S125°33.5'W 1.058 46° 22° 262 km 05m18.5s
19:2417°32.3'S124°29.9'W19°46.3'S125°19.6'W18°39.0'S124°54.6'W 1.058 47° 21° 262 km 05m19.2s
19:2617°44.9'S123°51.5'W19°58.7'S124°40.8'W18°51.4'S124°16.0'W 1.058 47° 19° 261 km 05m19.7s
19:2817°58.2'S123°13.3'W20°11.9'S124°02.3'W19°04.7'S123°37.6'W 1.058 47° 18° 261 km 05m20.1s
19:3018°12.2'S122°35.2'W20°25.7'S123°23.9'W19°18.6'S122°59.5'W 1.058 47° 16° 260 km 05m20.3s
19:3218°26.9'S121°57.4'W20°40.3'S122°45.7'W19°33.2'S122°21.5'W 1.058 47° 15° 259 km 05m20.3s
19:3418°42.3'S121°19.6'W20°55.6'S122°07.6'W19°48.5'S121°43.5'W 1.058 47° 13° 258 km 05m20.2s
19:3618°58.4'S120°41.9'W21°11.6'S121°29.6'W20°04.6'S121°05.7'W 1.058 47° 12° 257 km 05m19.9s
19:3819°15.3'S120°04.3'W21°28.3'S120°51.6'W20°21.4'S120°27.9'W 1.058 47° 10° 256 km 05m19.4s
19:4019°32.8'S119°26.6'W21°45.7'S120°13.5'W20°38.9'S119°50.0'W 1.058 47° 255 km 05m18.8s
19:4219°51.1'S118°48.9'W22°03.9'S119°35.3'W20°57.1'S119°12.1'W 1.058 47° 254 km 05m18.0s
19:4420°10.2'S118°11.0'W22°22.9'S118°57.0'W21°16.1'S118°34.0'W 1.058 47° 253 km 05m17.1s
19:4620°29.9'S117°33.0'W22°42.6'S118°18.5'W21°35.8'S117°55.8'W 1.058 46° 252 km 05m16.0s
19:4820°50.5'S116°54.8'W23°03.1'S117°39.8'W21°56.3'S117°17.3'W 1.058 46° 250 km 05m14.7s
19:5021°11.8'S116°16.3'W23°24.4'S117°00.7'W22°17.6'S116°38.6'W 1.058 46° 249 km 05m13.3s
19:5221°33.9'S115°37.5'W23°46.5'S116°21.3'W22°39.7'S115°59.5'W 1.058 45° 359° 247 km 05m11.7s
19:5421°56.9'S114°58.3'W24°09.5'S115°41.5'W23°02.7'S115°20.0'W 1.058 45° 358° 246 km 05m10.0s
19:5622°20.6'S114°18.7'W24°33.4'S115°01.1'W23°26.5'S114°40.1'W 1.058 44° 356° 244 km 05m08.1s
19:5822°45.3'S113°38.6'W24°58.1'S114°20.3'W23°51.2'S113°59.6'W 1.057 44° 355° 243 km 05m06.1s
20:0023°10.8'S112°57.9'W25°23.8'S113°38.7'W24°16.7'S113°18.5'W 1.057 43° 353° 241 km 05m03.9s
20:0223°37.3'S112°16.6'W25°50.4'S112°56.5'W24°43.3'S112°36.8'W 1.057 43° 352° 239 km 05m01.6s
20:0424°04.7'S111°34.6'W26°18.1'S112°13.5'W25°10.8'S111°54.3'W 1.057 42° 350° 238 km 04m59.1s
20:0624°33.2'S110°51.7'W26°46.8'S111°29.5'W25°39.4'S111°10.9'W 1.057 42° 349° 236 km 04m56.5s
20:0825°02.7'S110°07.9'W27°16.6'S110°44.5'W26°09.0'S110°26.5'W 1.057 41° 348° 234 km 04m53.7s
20:1025°33.3'S109°23.1'W27°47.6'S109°58.4'W26°39.8'S109°41.1'W 1.057 40° 346° 233 km 04m50.8s
20:1226°05.1'S108°37.2'W28°19.9'S109°11.0'W27°11.8'S108°54.5'W 1.056 39° 345° 231 km 04m47.7s
20:1426°38.2'S107°49.9'W28°53.5'S108°22.1'W27°45.1'S108°06.4'W 1.056 38° 343° 229 km 04m44.4s
20:1627°12.5'S107°01.2'W29°28.5'S107°31.6'W28°19.8'S107°16.9'W 1.056 38° 342° 227 km 04m41.0s
20:1827°48.3'S106°10.9'W30°05.1'S106°39.3'W28°55.9'S106°25.6'W 1.056 37° 341° 226 km 04m37.5s
20:2028°25.7'S105°18.7'W30°43.3'S105°45.0'W29°33.7'S105°32.4'W 1.056 36° 339° 224 km 04m33.8s
20:2229°04.6'S104°24.5'W31°23.3'S104°48.2'W30°13.1'S104°37.0'W 1.055 34° 338° 222 km 04m29.8s
20:2429°45.4'S103°27.9'W32°05.3'S103°48.8'W30°54.5'S103°39.1'W 1.055 33° 337° 220 km 04m25.8s
20:2630°28.2'S102°28.7'W32°49.6'S102°46.3'W31°37.9'S102°38.3'W 1.055 32° 335° 218 km 04m21.5s
20:2831°13.2'S101°26.3'W33°36.3'S101°40.2'W32°23.7'S101°34.2'W 1.054 31° 334° 216 km 04m17.0s
20:3032°00.7'S100°20.3'W34°25.8'S100°29.9'W33°12.1'S100°26.1'W 1.054 30° 332° 214 km 04m12.3s
20:3232°50.9'S099°10.1'W35°18.5'S099°14.5'W34°03.5'S099°13.5'W 1.054 28° 331° 212 km 04m07.4s
20:3433°44.4'S097°54.8'W36°15.0'S097°53.0'W34°58.4'S097°55.4'W 1.053 27° 330° 210 km 04m02.2s
20:3634°41.7'S096°33.5'W37°16.0'S096°24.1'W35°57.4'S096°30.5'W 1.053 25° 328° 208 km 03m56.7s
20:3835°43.5'S095°04.6'W38°22.5'S094°45.7'W37°01.4'S094°57.3'W 1.052 23° 327° 206 km 03m50.8s
20:4036°50.9'S093°26.2'W39°36.1'S092°54.7'W38°11.6'S093°13.1'W 1.052 21° 325° 204 km 03m44.5s
20:4238°05.4'S091°35.2'W40°59.2'S090°46.3'W39°29.9'S091°14.4'W 1.051 19° 323° 201 km 03m37.6s
20:4439°29.5'S089°26.7'W42°36.1'S088°11.9'W40°59.5'S088°54.6'W 1.050 17° 321° 198 km 03m29.9s
20:4641°07.6'S086°51.7'W44°36.2'S084°52.0'W42°46.7'S086°01.2'W 1.049 14° 318° 195 km 03m21.1s
20:4843°09.4'S083°30.6'W47°31.3'S079°40.5'W45°07.4'S082°01.3'W 1.048 10° 315° 191 km 03m10.0s
20:5046°08.9'S078°13.0'W - - 50°20.5'S072°01.2'W 1.045 307° 184 km 02m47.4s
Limits50°07.6'S070°19.7'W51°35.5'S071°33.8'W50°51.4'S070°55.8'W 1.045 - 183 km 02m45.4s
+ +

ΔT = + 66.2 + seconds

+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Greatest Eclipse and Greatest Duration
EventTime
TD
Time
UT1
LatitudeLongitudeSun
Altitude
Sun
Azimuth
Path WidthCentral
Duration
Greatest Eclipse19:34:37.919:33:31.619°44.8'S122°09.1'W 47.1° 13.5° 258.6 km05m20.24s
Greatest Duration19:32:32.219:31:26.019°29.0'S122°32.2'W 47.1° 15.1° 259.5 km05m20.33s
+

Explanation of Greatest Eclipse and Greatest Duration

+
+ +
+
+

Links for the + +Total Solar Eclipse of 2010 Jul 11 +

+ + +

Links to Additional Solar Eclipse Predictions

+
    +
  • Home - home page of EclipseWise with predictions for both solar and lunar eclipses
  • +
  • Solar Eclipses - primary page for solar eclipse predictions
  • +
  • Solar Eclipse Links - detailed directory of links
  • +
+ +
+
+ +
+
+

Eclipse Predictions

+

+Predictions for the +Total Solar Eclipse of 2010 Jul 11 +were generated using the +JPL DE406 +solar and lunar ephemerides. +The lunar coordinates were calculated with respect to the Moon's Center of Mass. +Although the predictions are first calculated in Terrestrial Dynamical Time (TD), +they are then converted to Universal Time (UT1) as presented here. +The parameter ΔT is used to convert between the two times (i.e., UT1 = TD - ΔT). +ΔT has a value of + 66.2 + seconds for this eclipse. + +

+ +

Acknowledgments

+

+Some of the content on this website is based on the book Thousand Year Canon of Solar Eclipses 1501 to 2500. +All eclipse calculations are by Fred Espenak, and he assumes full responsibility for their accuracy. +

+

+Permission is granted to reproduce eclipse data when accompanied by a link to this page and an acknowledgment: +

+

"Eclipse Predictions by Fred Espenak, EclipseWise.com"

+

+The use of diagrams and maps is permitted provided that they are unaltered (except for re-sizing) and the embedded credit line is not removed or covered. +

+
+
+
+ + +
+ + + \ No newline at end of file diff --git a/srcData/Examples/201004/UAM_201004.in b/srcData/Examples/201004/UAM_201004.in index 2695eab5..580da3c8 100644 --- a/srcData/Examples/201004/UAM_201004.in +++ b/srcData/Examples/201004/UAM_201004.in @@ -17,11 +17,11 @@ F no descriptor 0.000000 max longitude to model (0 = whole earth) (deg) #MSISOBC -T no descriptor -0.0 no descriptor +T shift [O] in lower BC by six months +0.0 Oblat spheroid (-0.1 is a good value) #DIFFUSION -T no descriptor +T Use eddy diffusion 50.0 Eddy Diffusion Coefficient (Should be about 37.5 for 1-D runs) 0.01000 Total Eddy Diffusion applied at alts below this pressures level 0.00500 No Eddy Diffusion at altitudes above this pressure level @@ -114,9 +114,9 @@ T Use AUSM+-up Solvers T #USEIMPROVEDIONADVECTION -T no descriptor -T no descriptor -2.0 no descriptor +T use improved ion advection +T use TEC BC on nightside +2.0 minimum TEC on nightside to shoot for #DYNAMO T UseDynamo @@ -180,11 +180,28 @@ T UseNeutralChemistry sme_2010.txt SME Filename none onset time delay file -#FTAMODEL -T Use FTA model of the aurora - -#NEWELLAURORA -F Use Newell Ovation model of the aurora +#ELECTRODYNAMICS +FTA +60.0 +Weimer +60.0 + +In order to use Mono, Wave, and Ion, you need to have a source of this +such as ovation, swmf, or something else. + +#AURORATYPES +T Diffuse +F Mono +F Wave +F Ion + +In order to use polar rain, the polar cap must be defined. This is done +with FTA and SWMF aurora only at this time. + +#USEPOLARRAIN +F +0.1 avee +0.25 eflux #END diff --git a/srcData/ae_20021221.txt b/srcData/Examples/ae20021221.dat similarity index 100% rename from srcData/ae_20021221.txt rename to srcData/Examples/ae20021221.dat diff --git a/srcData/imf20021221.dat b/srcData/Examples/imf20021221.dat similarity index 100% rename from srcData/imf20021221.dat rename to srcData/Examples/imf20021221.dat diff --git a/srcData/FISM/fismflux_daily_2024.dat b/srcData/FISM/fismflux_daily_2024.dat new file mode 100644 index 00000000..584d33ee --- /dev/null +++ b/srcData/FISM/fismflux_daily_2024.dat @@ -0,0 +1,368 @@ +#START + 2024 01 01 12 00 00 3.82928470e-03 2.32160892e-03 1.28782979e-03 9.35300183e-04 6.90826523e-04 3.78108957e-04 2.76226774e-04 2.38270285e-04 4.97901102e-04 1.40695542e-04 8.91581170e-03 5.36910556e-03 2.45760255e-04 7.14109958e-05 4.58644993e-05 2.44595133e-04 4.00765217e-05 6.93886017e-05 2.13198643e-04 7.78290792e-05 1.55033233e-04 1.89764700e-04 1.07925973e-04 9.59337814e-05 5.33897437e-06 9.36431825e-06 6.01945503e-06 3.13409049e-05 4.91869869e-06 1.78950401e-05 1.10842202e-04 3.93460563e-05 2.07286881e-05 1.09089801e-04 4.24458471e-05 1.40457531e-05 5.88769868e-05 8.28072447e-05 9.71111804e-06 4.96151345e-05 1.81452593e-04 3.16404446e-05 7.49109305e-04 4.54247510e-04 4.54247510e-04 3.39420931e-04 5.65750699e-05 4.28697473e-05 4.51359792e-04 6.38606586e-04 1.15609818e-04 3.68314353e-04 1.09114069e-04 3.72992243e-05 8.33012816e-05 4.35498710e-05 1.20796407e-06 7.27013258e-09 0.00000000e+00 + 2024 01 02 12 00 00 3.83519414e-03 2.32558822e-03 1.29034102e-03 9.37177965e-04 6.92495354e-04 3.78839030e-04 2.76957004e-04 2.39076477e-04 5.00010227e-04 1.41277954e-04 8.96460421e-03 5.40097579e-03 2.46622373e-04 7.16240411e-05 4.59899763e-05 2.42976677e-04 3.97546362e-05 6.87425665e-05 2.13428082e-04 7.80630449e-05 1.53815759e-04 1.88086544e-04 1.07325122e-04 9.56372513e-05 5.31806509e-06 9.21701721e-06 6.01501706e-06 3.12862600e-05 4.92405088e-06 1.78615259e-05 1.09999485e-04 3.92208196e-05 2.04098396e-05 1.09161179e-04 4.27583553e-05 1.40264397e-05 5.82864647e-05 8.17849471e-05 9.59572280e-06 4.95005864e-05 1.81002078e-04 3.18396022e-05 7.49582006e-04 4.57234588e-04 4.57234588e-04 3.35267729e-04 5.46394382e-05 4.32565867e-05 4.45649594e-04 6.33461598e-04 1.15173311e-04 3.64867329e-04 1.12360232e-04 3.84785199e-05 8.60196447e-05 4.53326554e-05 1.28611561e-06 9.88224258e-09 0.00000000e+00 + 2024 01 03 12 00 00 3.83963578e-03 2.32930227e-03 1.29262386e-03 9.38745486e-04 6.93814420e-04 3.79326822e-04 2.77487465e-04 2.39679675e-04 5.01592556e-04 1.41864963e-04 8.99849131e-03 5.42222150e-03 2.47388550e-04 7.19011249e-05 4.61005974e-05 2.43152504e-04 3.97540774e-05 6.87410706e-05 2.14287525e-04 7.84563948e-05 1.53842087e-04 1.88079467e-04 1.07376429e-04 9.55750655e-05 5.31804617e-06 9.07541908e-06 6.01789652e-06 3.13072612e-05 4.93295120e-06 1.78828193e-05 1.10053814e-04 3.92205839e-05 2.04086013e-05 1.09748924e-04 4.32786241e-05 1.40389660e-05 5.83988500e-05 8.17826548e-05 9.48474990e-06 4.97109731e-05 1.82019198e-04 3.21736123e-05 7.55312412e-04 4.62210644e-04 4.62210644e-04 3.37487648e-04 5.46284602e-05 4.39048570e-05 4.47476431e-04 6.35569067e-04 1.16024264e-04 3.64697742e-04 1.11994386e-04 3.83449602e-05 8.57086060e-05 4.50912617e-05 1.27278154e-06 9.30515398e-09 0.00000000e+00 + 2024 01 04 12 00 00 3.86165939e-03 2.34453260e-03 1.30220268e-03 9.45867285e-04 7.00123460e-04 3.82020609e-04 2.80206514e-04 2.42693834e-04 5.09464838e-04 1.44123087e-04 9.17846125e-03 5.53908609e-03 2.50674054e-04 7.27825669e-05 4.66036111e-05 2.46187745e-04 4.02077829e-05 6.96514850e-05 2.16930589e-04 7.94684805e-05 1.55814645e-04 1.90442850e-04 1.08476853e-04 9.65693809e-05 5.34752689e-06 9.35588323e-06 6.03946464e-06 3.15059511e-05 4.95565655e-06 1.80171695e-05 1.11450795e-04 3.93971044e-05 2.08576952e-05 1.11994690e-04 4.46071033e-05 1.41327924e-05 5.97019780e-05 8.37443814e-05 9.70459732e-06 5.11973723e-05 1.87773762e-04 3.30314186e-05 7.78755252e-04 4.74923244e-04 4.74923244e-04 3.51914191e-04 5.73530851e-05 4.55687055e-05 4.62150968e-04 6.51989164e-04 1.19596379e-04 3.76824909e-04 1.16642212e-04 4.00340365e-05 8.96048597e-05 4.76794697e-05 1.38866336e-06 1.49320634e-08 0.00000000e+00 + 2024 01 05 12 00 00 3.87672927e-03 2.35361724e-03 1.30802645e-03 9.50450515e-04 7.04318882e-04 3.83975873e-04 2.82100751e-04 2.44761124e-04 5.14856990e-04 1.45392233e-04 9.30677658e-03 5.62408082e-03 2.52703774e-04 7.31472273e-05 4.68596023e-05 2.47495466e-04 4.04157909e-05 7.00688863e-05 2.17769605e-04 7.97594606e-05 1.56766430e-04 1.91526466e-04 1.08990300e-04 9.67744866e-05 5.36104235e-06 9.26310677e-06 6.04034794e-06 3.15804396e-05 4.96216926e-06 1.80711692e-05 1.12069638e-04 3.94780276e-05 2.10636019e-05 1.12712215e-04 4.49882296e-05 1.41366414e-05 6.02572351e-05 8.44097968e-05 9.63196799e-06 5.15471152e-05 1.90339347e-04 3.32779164e-05 7.83741199e-04 4.78570908e-04 4.78570908e-04 3.57178035e-04 5.86024020e-05 4.60467476e-05 4.67992379e-04 6.58840380e-04 1.20804911e-04 3.82592265e-04 1.19130110e-04 4.09377566e-05 9.16874784e-05 4.90392118e-05 1.44782061e-06 1.78452019e-08 1.82517912e-10 + 2024 01 06 12 00 00 3.89561673e-03 2.36788610e-03 1.31690129e-03 9.56825867e-04 7.09847784e-04 3.86185944e-04 2.84403393e-04 2.47343446e-04 5.21605452e-04 1.47578851e-04 9.45639766e-03 5.71969710e-03 2.55719811e-04 7.41051553e-05 4.73311189e-05 2.49308193e-04 4.06317122e-05 7.05016486e-05 2.20684093e-04 8.09931546e-05 1.57765625e-04 1.92645689e-04 1.09613467e-04 9.74623638e-05 5.37509623e-06 9.35944990e-06 6.06000212e-06 3.17281211e-05 4.98980189e-06 1.81775399e-05 1.12843271e-04 3.95620125e-05 2.12764178e-05 1.15015435e-04 4.66052414e-05 1.42221630e-05 6.11101467e-05 8.55479646e-05 9.70751280e-06 5.29461925e-05 1.95164645e-04 3.43231804e-05 8.07924695e-04 4.94046090e-04 4.94046090e-04 3.68619267e-04 5.98889659e-05 4.80739662e-05 4.78569945e-04 6.71190310e-04 1.24164004e-04 3.92039927e-04 1.26005440e-04 4.34364825e-05 9.74520692e-05 5.28768156e-05 1.62024330e-06 2.67670199e-08 9.89644189e-10 + 2024 01 07 12 00 00 3.91231321e-03 2.37755101e-03 1.32313542e-03 9.61822867e-04 7.14468018e-04 3.88386346e-04 2.86513360e-04 2.49637206e-04 5.27584043e-04 1.48903256e-04 9.60006779e-03 5.81531674e-03 2.57904748e-04 7.44570564e-05 4.76306393e-05 2.51175686e-04 4.09371045e-05 7.11136963e-05 2.21434936e-04 8.11999955e-05 1.59114930e-04 1.94228103e-04 1.10320241e-04 9.79812723e-05 5.39497596e-06 9.43073028e-06 6.07132788e-06 3.18301039e-05 4.99431735e-06 1.82481981e-05 1.13715308e-04 3.96807940e-05 2.15773238e-05 1.15829392e-04 4.68702143e-05 1.42714591e-05 6.18566372e-05 8.66593187e-05 9.76342271e-06 5.37060625e-05 1.98496724e-04 3.44974542e-05 8.16004373e-04 4.96585760e-04 4.96585760e-04 3.75655439e-04 6.17075828e-05 4.84113436e-05 4.86225453e-04 6.80128074e-04 1.25530206e-04 4.02369383e-04 1.32334088e-04 4.57366008e-05 1.02758846e-04 5.64140018e-05 1.77948443e-06 3.50309165e-08 1.73787367e-09 + 2024 01 08 12 00 00 3.90897044e-03 2.37611996e-03 1.32216376e-03 9.60951411e-04 7.13617171e-04 3.87906526e-04 2.86082285e-04 2.49182182e-04 5.26392874e-04 1.48744927e-04 9.56918977e-03 5.79407029e-03 2.57553883e-04 7.44768633e-05 4.75851669e-05 2.52646036e-04 4.12046735e-05 7.16492301e-05 2.21943654e-04 8.13221443e-05 1.60125459e-04 1.95606804e-04 1.10846984e-04 9.82885489e-05 5.41242589e-06 9.44600470e-06 6.07737384e-06 3.18912755e-05 4.99683956e-06 1.82920244e-05 1.14455877e-04 3.97848373e-05 2.18396875e-05 1.16280590e-04 4.70191007e-05 1.42978010e-05 6.24349156e-05 8.75062392e-05 9.77543314e-06 5.41157136e-05 1.99514271e-04 3.45991808e-05 8.20131947e-04 4.98017808e-04 4.98017808e-04 3.80808508e-04 6.32868498e-05 4.86075005e-05 4.92358816e-04 6.86394287e-04 1.26568586e-04 4.10052147e-04 1.36110877e-04 4.71090207e-05 1.05924098e-04 5.85101159e-05 1.87286097e-06 3.98013512e-08 2.16785807e-09 + 2024 01 09 12 00 00 3.91768343e-03 2.38301581e-03 1.32642989e-03 9.63997820e-04 7.16250357e-04 3.88907015e-04 2.87144475e-04 2.50383340e-04 5.29517671e-04 1.49823231e-04 9.63665637e-03 5.83657473e-03 2.59003171e-04 7.49852836e-05 4.78206905e-05 2.54984783e-04 4.15855087e-05 7.24112324e-05 2.23796231e-04 8.20036628e-05 1.61673781e-04 1.97566360e-04 1.11700165e-04 9.87637877e-05 5.43727583e-06 9.44757849e-06 6.08298942e-06 3.20240781e-05 5.01177165e-06 1.83851753e-05 1.15582399e-04 3.99329059e-05 2.22126604e-05 1.17690912e-04 4.78949631e-05 1.43222875e-05 6.34276249e-05 8.88309462e-05 9.77668387e-06 5.48122781e-05 2.02762097e-04 3.51738534e-05 8.32263199e-04 5.06411074e-04 5.06411074e-04 3.90891530e-04 6.55295269e-05 4.97202971e-05 5.03483502e-04 6.98389477e-04 1.29103964e-04 4.18278684e-04 1.37615953e-04 4.76556186e-05 1.07183174e-04 5.93256456e-05 1.90785958e-06 4.14867927e-08 2.31709372e-09 + 2024 01 10 12 00 00 3.93719412e-03 2.39563672e-03 1.33444024e-03 9.70166587e-04 7.21830653e-04 3.91376091e-04 2.89585502e-04 2.53071008e-04 5.36511792e-04 1.51650035e-04 9.79901326e-03 5.94282746e-03 2.61779975e-04 7.56311370e-05 4.82235334e-05 2.60224457e-04 4.24782047e-05 7.41999713e-05 2.26068862e-04 8.26615142e-05 1.65338032e-04 2.02188391e-04 1.13630533e-04 1.00226494e-04 5.49540018e-06 9.87317180e-06 6.10882853e-06 3.23011373e-05 5.02609546e-06 1.85679571e-05 1.18113779e-04 4.02801059e-05 2.30916557e-05 1.19846851e-04 4.87357145e-05 1.44347679e-05 6.55328520e-05 9.21303601e-05 1.01103164e-05 5.65601145e-05 2.09546393e-04 3.57278332e-05 8.53953235e-04 5.14470926e-04 5.14470926e-04 4.10672661e-04 7.08391017e-05 5.07925346e-05 5.25645508e-04 7.22224947e-04 1.33158475e-04 4.40284647e-04 1.45053248e-04 5.03587020e-05 1.13419821e-04 6.34844979e-05 2.09522335e-06 5.12204593e-08 3.19866515e-09 + 2024 01 11 12 00 00 3.94054124e-03 2.39688903e-03 1.33531640e-03 9.71062649e-04 7.22756707e-04 3.91882895e-04 2.90034785e-04 2.53545980e-04 5.37727971e-04 1.51779684e-04 9.83007128e-03 5.96408620e-03 2.62113791e-04 7.55997899e-05 4.82561843e-05 2.66424424e-04 4.36367671e-05 7.65222649e-05 2.26802601e-04 8.25182069e-05 1.69913555e-04 2.08195914e-04 1.15954441e-04 1.01255260e-04 5.57079838e-06 9.96590243e-06 6.12301228e-06 3.25476276e-05 5.02245457e-06 1.87374414e-05 1.21249986e-04 4.07307409e-05 2.42339127e-05 1.20780554e-04 4.85252851e-05 1.44965394e-05 6.79050265e-05 9.56819022e-05 1.01830214e-05 5.75048887e-05 2.14327072e-04 3.56028409e-05 8.60269824e-04 5.12471423e-04 5.12471423e-04 4.29455642e-04 7.77463021e-05 5.05478412e-05 5.49427934e-04 7.46359529e-04 1.36175132e-04 4.62554010e-04 1.46597489e-04 5.09196256e-05 1.14712384e-04 6.43274107e-05 2.13182102e-06 5.30168293e-08 3.35866375e-09 + 2024 01 12 12 00 00 3.93714369e-03 2.39526931e-03 1.33423883e-03 9.70164132e-04 7.21910279e-04 3.91413735e-04 2.89605668e-04 2.53090833e-04 5.36525629e-04 1.51587606e-04 9.79910973e-03 5.94284572e-03 2.61734152e-04 7.56020117e-05 4.82114478e-05 2.68674000e-04 4.40592848e-05 7.73677370e-05 2.27375005e-04 8.26032774e-05 1.71523660e-04 2.10370834e-04 1.16784617e-04 1.01449772e-04 5.59836408e-06 9.83890131e-06 6.12466101e-06 3.26315568e-05 5.02394905e-06 1.88002538e-05 1.22398615e-04 4.08950233e-05 2.46478507e-05 1.21207748e-04 4.86152712e-05 1.45037557e-05 6.87768844e-05 9.68401679e-05 1.00833793e-05 5.77221310e-05 2.15681340e-04 3.56715231e-05 8.62362725e-04 5.13346307e-04 5.13346307e-04 4.36545878e-04 8.02360941e-05 5.06788725e-05 5.58526782e-04 7.55364891e-04 1.37529946e-04 4.69682740e-04 1.45866423e-04 5.06536659e-05 1.14097525e-04 6.39029158e-05 2.11164896e-06 5.18890431e-08 3.25446834e-09 + 2024 01 13 12 00 00 3.94854185e-03 2.40221639e-03 1.33868612e-03 9.73670333e-04 7.25123838e-04 3.92890026e-04 2.91041275e-04 2.54661174e-04 5.40612567e-04 1.52566402e-04 9.89566799e-03 6.00659624e-03 2.63286479e-04 7.59059661e-05 4.84259188e-05 2.71129196e-04 4.44936566e-05 7.82383839e-05 2.28346139e-04 8.28596065e-05 1.73325007e-04 2.12622881e-04 1.17728568e-04 1.01607074e-04 5.62663299e-06 9.59672980e-06 6.12278673e-06 3.27389017e-05 5.02942021e-06 1.88815611e-05 1.23619691e-04 4.10639797e-05 2.50760582e-05 1.21961905e-04 4.89370956e-05 1.44956051e-05 6.97660916e-05 9.80228623e-05 9.89344917e-06 5.79705639e-05 2.18565774e-04 3.58864694e-05 8.65877919e-04 5.16435271e-04 5.16435271e-04 4.44918184e-04 8.28252058e-05 5.10943239e-05 5.68841282e-04 7.66440047e-04 1.39271847e-04 4.77154283e-04 1.45120622e-04 5.03826010e-05 1.13472097e-04 6.34856016e-05 2.09283027e-06 5.09100317e-08 3.16576418e-09 + 2024 01 14 12 00 00 3.97303725e-03 2.41695834e-03 1.34813891e-03 9.81125879e-04 7.31957156e-04 3.96072700e-04 2.94123264e-04 2.58024770e-04 5.49380926e-04 1.54625614e-04 1.01042289e-02 6.14471361e-03 2.66583452e-04 7.65017282e-05 4.88517766e-05 2.70877745e-04 4.43787547e-05 7.80074159e-05 2.29307761e-04 8.33298371e-05 1.73082919e-04 2.12019899e-04 1.17648719e-04 1.01753433e-04 5.61918605e-06 9.66239604e-06 6.12969088e-06 3.27769884e-05 5.03986266e-06 1.89067696e-05 1.23379184e-04 4.10192588e-05 2.49615929e-05 1.22754621e-04 4.95487126e-05 1.45256214e-05 6.97248506e-05 9.79332721e-05 9.94479269e-06 5.84174599e-05 2.21284785e-04 3.62841238e-05 8.75040608e-04 5.22291567e-04 5.22291567e-04 4.46429454e-04 8.21270514e-05 5.18650806e-05 5.68866154e-04 7.67627885e-04 1.39993311e-04 4.75348887e-04 1.45355236e-04 5.04682841e-05 1.13671790e-04 6.36423632e-05 2.10160042e-06 5.14957520e-08 3.22215854e-09 + 2024 01 15 12 00 00 3.97788731e-03 2.42153659e-03 1.35091761e-03 9.82950662e-04 7.33444592e-04 3.96561102e-04 2.94689230e-04 2.58681566e-04 5.51107032e-04 1.55374575e-04 1.01392212e-02 6.16595857e-03 2.67505764e-04 7.69072337e-05 4.90304212e-05 2.67138319e-04 4.36387956e-05 7.65232136e-05 2.29942592e-04 8.39174318e-05 1.70206897e-04 2.08172137e-04 1.16233400e-04 1.01030693e-04 5.57107669e-06 9.44967469e-06 6.12168878e-06 3.26492886e-05 5.05310309e-06 1.88257119e-05 1.21439627e-04 4.07313986e-05 2.42302660e-05 1.22875969e-04 5.03230316e-05 1.44907579e-05 6.83511438e-05 9.56711161e-05 9.77789532e-06 5.80118975e-05 2.19552731e-04 3.67826317e-05 8.77485540e-04 5.29699354e-04 5.29699354e-04 4.37083705e-04 7.76956906e-05 5.28323173e-05 5.55963647e-04 7.55006184e-04 1.39120086e-04 4.60274755e-04 1.43069000e-04 4.96378438e-05 1.11758170e-04 6.23945667e-05 2.04743158e-06 4.88375747e-08 2.98541813e-09 + 2024 01 16 12 00 00 3.97859402e-03 2.42310317e-03 1.35181300e-03 9.83385488e-04 7.33705506e-04 3.96552660e-04 2.94743609e-04 2.58766121e-04 5.51344844e-04 1.55665797e-04 1.01410670e-02 6.16595149e-03 2.67781763e-04 7.71054264e-05 4.90854004e-05 2.67016104e-04 4.35992202e-05 7.64453085e-05 2.30636919e-04 8.42580397e-05 1.70062083e-04 2.07982544e-04 1.16192742e-04 1.00935646e-04 5.56843443e-06 9.37710211e-06 6.11465948e-06 3.26567164e-05 5.06106662e-06 1.88315643e-05 1.21389278e-04 4.07160638e-05 2.41938193e-05 1.23283391e-04 5.07870165e-05 1.44600868e-05 6.83689601e-05 9.55562513e-05 9.72084672e-06 5.78950627e-05 2.19671088e-04 3.70739814e-05 8.79597141e-04 5.34128584e-04 5.34128584e-04 4.37922341e-04 7.74883141e-05 5.33991493e-05 5.56671887e-04 7.55827032e-04 1.39699880e-04 4.57581090e-04 1.40147704e-04 4.85769669e-05 1.09314705e-04 6.08148503e-05 1.97985801e-06 4.56010440e-08 2.69933196e-09 + 2024 01 17 12 00 00 3.99475059e-03 2.43180750e-03 1.35748941e-03 9.88022123e-04 7.38033335e-04 3.98725924e-04 2.96789543e-04 2.60970634e-04 5.57111432e-04 1.56805741e-04 1.02831138e-02 6.26155958e-03 2.69778882e-04 7.73080250e-05 4.93260471e-05 2.65009075e-04 4.32026078e-05 7.56508787e-05 2.30227034e-04 8.42321955e-05 1.68657912e-04 2.05932253e-04 1.15476331e-04 1.00703831e-04 5.54259641e-06 9.47557710e-06 6.11441501e-06 3.25968746e-05 5.06096803e-06 1.87857642e-05 1.20319396e-04 4.05618193e-05 2.38038207e-05 1.23011613e-04 5.07782737e-05 1.44589110e-05 6.75917881e-05 9.44970191e-05 9.79783072e-06 5.76874153e-05 2.19717723e-04 3.70560621e-05 8.79198584e-04 5.34028886e-04 5.34028886e-04 4.31861167e-04 7.51352287e-05 5.33669139e-05 5.48481421e-04 7.47942427e-04 1.38543682e-04 4.47257608e-04 1.35965467e-04 4.70578085e-05 1.05813909e-04 5.85304550e-05 1.88056654e-06 4.07189333e-08 2.26426273e-09 + 2024 01 18 12 00 00 3.98319392e-03 2.42464945e-03 1.35291763e-03 9.84404376e-04 7.34709497e-04 3.97230492e-04 2.95328773e-04 2.59367860e-04 5.52956033e-04 1.55784979e-04 1.01860175e-02 6.19780049e-03 2.68180109e-04 7.69709693e-05 4.91058929e-05 2.60266348e-04 4.23547055e-05 7.39501091e-05 2.28756019e-04 8.39219603e-05 1.65220023e-04 2.01522478e-04 1.13695569e-04 9.96600864e-05 5.48747266e-06 9.31660325e-06 6.10491188e-06 3.23768390e-05 5.05456665e-06 1.86381948e-05 1.17955808e-04 4.02319682e-05 2.29656915e-05 1.21604998e-04 5.04003256e-05 1.44174614e-05 6.57006502e-05 9.16945574e-05 9.67308952e-06 5.66259784e-05 2.14854398e-04 3.67977394e-05 8.68715074e-04 5.30393608e-04 5.30393608e-04 4.15695393e-04 7.00561213e-05 5.28688077e-05 5.29063775e-04 7.27182114e-04 1.35445996e-04 4.26098308e-04 1.28549086e-04 4.43627712e-05 9.95980041e-05 5.44110325e-05 1.69683165e-06 3.13149201e-08 1.41617660e-09 + 2024 01 19 12 00 00 3.98226368e-03 2.42289849e-03 1.35190573e-03 9.83795492e-04 7.34244221e-04 3.97197170e-04 2.95227663e-04 2.59224361e-04 5.52603689e-04 1.55451876e-04 1.01833073e-02 6.19778708e-03 2.67847526e-04 7.67160338e-05 4.90175608e-05 2.56028014e-04 4.16018564e-05 7.24404701e-05 2.27157127e-04 8.35111598e-05 1.62259899e-04 1.97612377e-04 1.12149551e-04 9.88630402e-05 5.43850438e-06 9.27712026e-06 6.08952214e-06 3.21907575e-05 5.04601594e-06 1.85054516e-05 1.15849471e-04 3.99391138e-05 2.22223971e-05 1.20234645e-04 4.98959271e-05 1.43504032e-05 6.40217278e-05 8.92618842e-05 9.64202118e-06 5.55780060e-05 2.11000254e-04 3.64550564e-05 8.56343454e-04 5.25544770e-04 5.25544770e-04 4.00586113e-04 6.55561686e-05 5.22076269e-05 5.11224978e-04 7.08724470e-04 1.32364674e-04 4.08906714e-04 1.24145536e-04 4.27628776e-05 9.59094819e-05 5.19843310e-05 1.58988985e-06 2.59409688e-08 9.34134547e-10 + 2024 01 20 12 00 00 3.99012014e-03 2.42834364e-03 1.35532702e-03 9.86263176e-04 7.36386918e-04 3.98143613e-04 2.96181557e-04 2.60277023e-04 5.55384516e-04 1.56249780e-04 1.02481336e-02 6.24026731e-03 2.69007054e-04 7.70068081e-05 4.91967484e-05 2.53713889e-04 4.11316607e-05 7.14987749e-05 2.27425303e-04 8.38357082e-05 1.60493097e-04 1.95182918e-04 1.11278061e-04 9.86699116e-05 5.40786823e-06 9.26885914e-06 6.09148992e-06 3.21197492e-05 5.05407297e-06 1.84586482e-05 1.14635720e-04 3.97562602e-05 2.17602443e-05 1.20447149e-04 5.03625546e-05 1.43588521e-05 6.31785338e-05 8.79783453e-05 9.63550337e-06 5.56959765e-05 2.10560128e-04 3.67365486e-05 8.60485735e-04 5.29984292e-04 5.29984292e-04 3.95123571e-04 6.27687317e-05 5.27577242e-05 5.03068685e-04 7.01365231e-04 1.31765567e-04 4.04334726e-04 1.29377005e-04 4.46654265e-05 1.00304810e-04 5.49824586e-05 1.72981898e-06 3.35805460e-08 1.63556351e-09 + 2024 01 21 12 00 00 3.97250093e-03 2.41699874e-03 1.34812062e-03 9.80657943e-04 7.31286076e-04 3.95901138e-04 2.93966269e-04 2.57836062e-04 5.49051762e-04 1.54604791e-04 1.01017268e-02 6.14463054e-03 2.66499355e-04 7.64146484e-05 4.88284105e-05 2.53455137e-04 4.11327899e-05 7.15032453e-05 2.26048523e-04 8.32334976e-05 1.60371289e-04 1.95213109e-04 1.11161646e-04 9.89512051e-05 5.40783767e-06 9.54929201e-06 6.09968702e-06 3.20776760e-05 5.04141353e-06 1.84230494e-05 1.14576024e-04 3.97567899e-05 2.17653665e-05 1.19685789e-04 4.96166584e-05 1.43943980e-05 6.30082188e-05 8.80781265e-05 9.85529987e-06 5.58315151e-05 2.08464725e-04 3.62331746e-05 8.55852268e-04 5.22818277e-04 5.22818277e-04 3.92401153e-04 6.28199661e-05 5.17858367e-05 5.00455374e-04 6.98131843e-04 1.30562369e-04 4.09989829e-04 1.37101131e-04 4.74740780e-05 1.06791451e-04 5.93836543e-05 1.93357395e-06 4.45827567e-08 2.64274860e-09 + 2024 01 22 12 00 00 3.97634090e-03 2.41970408e-03 1.34981557e-03 9.81817811e-04 7.32256628e-04 3.96349479e-04 2.94419685e-04 2.58333912e-04 5.50391252e-04 1.54996517e-04 1.01337506e-02 6.16585910e-03 2.67063060e-04 7.65477899e-05 4.89212289e-05 2.54624252e-04 4.13230213e-05 7.18871888e-05 2.26496156e-04 8.33774917e-05 1.61180190e-04 1.96228439e-04 1.11588488e-04 9.98475482e-05 5.42009402e-06 1.00199504e-05 6.11173600e-06 3.21571400e-05 5.04554737e-06 1.84645819e-05 1.15152411e-04 3.98308970e-05 2.19576832e-05 1.20428129e-04 4.98529815e-05 1.44466962e-05 6.35119744e-05 8.91448624e-05 1.02241829e-05 5.67397753e-05 2.10162132e-04 3.63626954e-05 8.64560822e-04 5.25049632e-04 5.25049632e-04 3.97440244e-04 6.40069542e-05 5.20418282e-05 5.05495458e-04 7.04309821e-04 1.31503201e-04 4.22725974e-04 1.49353152e-04 5.19284815e-05 1.17075645e-04 6.63221777e-05 2.25199840e-06 6.15694688e-08 4.19264836e-09 + 2024 01 23 12 00 00 3.95713350e-03 2.40504885e-03 1.34071038e-03 9.75212396e-04 7.26489335e-04 3.94095309e-04 2.92062490e-04 2.55681909e-04 5.43499230e-04 1.52731489e-04 9.98300558e-03 6.07022084e-03 2.63956947e-04 7.55163983e-05 4.84183387e-05 2.55127616e-04 4.15434857e-05 7.23309175e-05 2.23700779e-04 8.20389367e-05 1.61904888e-04 1.97391691e-04 1.11842075e-04 9.95806373e-05 5.43435563e-06 1.00148703e-05 6.09770650e-06 3.21002593e-05 5.01628601e-06 1.84187389e-05 1.15574002e-04 3.99167300e-05 2.21783484e-05 1.18451494e-04 4.81362396e-05 1.43855679e-05 6.35536685e-05 8.93910834e-05 1.02202051e-05 5.56769506e-05 2.06951576e-04 3.52345436e-05 8.42741758e-04 5.08596050e-04 5.08596050e-04 3.93003700e-04 6.53580588e-05 4.98576497e-05 5.03762237e-04 7.00770333e-04 1.29189064e-04 4.20938821e-04 1.41967357e-04 4.92439765e-05 1.10881192e-04 6.21835265e-05 2.06497107e-06 5.18095362e-08 3.30757359e-09 + 2024 01 24 12 00 00 3.92647691e-03 2.38595706e-03 1.32852839e-03 9.65703490e-04 7.17822563e-04 3.90158338e-04 2.88213313e-04 2.51463166e-04 5.32514743e-04 1.50016753e-04 9.72482660e-03 5.90022206e-03 2.59718868e-04 7.46419631e-05 4.78370497e-05 2.51981909e-04 4.10691631e-05 7.13792280e-05 2.21467775e-04 8.12388491e-05 1.59768479e-04 1.94921941e-04 1.10680733e-04 9.83611276e-05 5.40353103e-06 9.56294389e-06 6.07277216e-06 3.18897885e-05 4.99881135e-06 1.82827920e-05 1.14151624e-04 3.97321972e-05 2.17090172e-05 1.16385741e-04 4.71108855e-05 1.42770499e-05 6.22368176e-05 8.72422555e-05 9.86602245e-06 5.40426557e-05 2.00475399e-04 3.45603417e-05 8.20235034e-04 4.98768315e-04 4.98768315e-04 3.78939396e-04 6.25114830e-05 4.85524331e-05 4.89523332e-04 6.84421473e-04 1.25986799e-04 4.06466208e-04 1.34560661e-04 4.65514429e-05 1.04666109e-04 5.80063610e-05 1.87441698e-06 4.17299034e-08 2.39003413e-09 + 2024 01 25 12 00 00 3.88680429e-03 2.35919377e-03 1.31164135e-03 9.52975446e-04 7.06453407e-04 3.85238746e-04 2.83288725e-04 2.46018415e-04 5.18318185e-04 1.46082495e-04 9.39848399e-03 5.68772852e-03 2.53903887e-04 7.31677879e-05 4.69856212e-05 2.53041681e-04 4.14396171e-05 7.21225573e-05 2.18152767e-04 7.96020380e-05 1.60891168e-04 1.96851318e-04 1.11107374e-04 9.79038605e-05 5.42760390e-06 9.36883298e-06 6.05891546e-06 3.18110002e-05 4.96233479e-06 1.82303204e-05 1.14917392e-04 3.98763223e-05 2.20756483e-05 1.13900561e-04 4.49752057e-05 1.42167482e-05 6.24311142e-05 8.76485114e-05 9.71388363e-06 5.27753063e-05 1.95501000e-04 3.31750693e-05 7.93160795e-04 4.78323223e-04 4.78323223e-04 3.74708768e-04 6.47355395e-05 4.58667579e-05 4.89290387e-04 6.81343841e-04 1.23447778e-04 4.07228068e-04 1.27127740e-04 4.38493538e-05 9.84288701e-05 5.38130408e-05 1.68303537e-06 3.15996779e-08 1.46771733e-09 + 2024 01 26 12 00 00 3.86712939e-03 2.34611088e-03 1.30337078e-03 9.46717901e-04 7.00851841e-04 3.82785355e-04 2.80844482e-04 2.43321563e-04 5.11281924e-04 1.44172414e-04 9.23578688e-03 5.58148399e-03 2.51053762e-04 7.24758399e-05 4.65772415e-05 2.52771961e-04 4.14748472e-05 7.21921737e-05 2.16524759e-04 7.88548670e-05 1.60852671e-04 1.97023022e-04 1.11020499e-04 9.76489137e-05 5.42994349e-06 9.36624710e-06 6.04813213e-06 3.17506694e-05 4.94554733e-06 1.81843487e-05 1.14891879e-04 3.98899807e-05 2.21085749e-05 1.12611220e-04 4.39931609e-05 1.41698518e-05 6.22320270e-05 8.74689220e-05 9.71193585e-06 5.20165514e-05 1.92441475e-04 3.25415836e-05 7.79255234e-04 4.68926597e-04 4.68926597e-04 3.70291555e-04 6.49255235e-05 4.46378865e-05 4.86228584e-04 6.76869223e-04 1.21873019e-04 4.04570400e-04 1.23080534e-04 4.23775657e-05 9.50290725e-05 5.14983604e-05 1.57531360e-06 2.57412715e-08 9.30383859e-10 + 2024 01 27 12 00 00 3.84502484e-03 2.33068251e-03 1.29368106e-03 9.39552180e-04 6.94525066e-04 3.80093771e-04 2.78121539e-04 2.40301263e-04 5.03388642e-04 1.41878959e-04 9.05562635e-03 5.46462163e-03 2.47737184e-04 7.15839237e-05 4.60887006e-05 2.50393047e-04 4.11343412e-05 7.15067319e-05 2.13924156e-04 7.78097601e-05 1.59307630e-04 1.95225306e-04 1.10135538e-04 9.69924371e-05 5.40792062e-06 9.33452102e-06 6.03938679e-06 3.15896959e-05 4.92179061e-06 1.80711036e-05 1.13784503e-04 3.97574127e-05 2.17675799e-05 1.10511780e-04 4.26051090e-05 1.41318698e-05 6.11499108e-05 8.60658346e-05 9.68717140e-06 5.09330463e-05 1.87482587e-04 3.16532300e-05 7.60516438e-04 4.55654226e-04 4.55654226e-04 3.58166833e-04 6.28368056e-05 4.29131382e-05 4.73853262e-04 6.62549250e-04 1.18614560e-04 3.94049742e-04 1.17966296e-04 4.05175821e-05 9.07317284e-05 4.85630011e-05 1.43802611e-06 1.82247451e-08 2.39734721e-10 + 2024 01 28 12 00 00 3.84664870e-03 2.33111887e-03 1.29401395e-03 9.39980043e-04 6.95002331e-04 3.80358772e-04 2.78350085e-04 2.40541498e-04 5.03991118e-04 1.41910730e-04 9.07109719e-03 5.47525585e-03 2.47877468e-04 7.15501976e-05 4.60951808e-05 2.49021770e-04 4.08854365e-05 7.10041844e-05 2.13505447e-04 7.77067558e-05 1.58314183e-04 1.93894715e-04 1.09618519e-04 9.66519079e-05 5.39189277e-06 9.29265370e-06 6.03824483e-06 3.15330726e-05 4.91890969e-06 1.80324948e-05 1.13062361e-04 3.96604446e-05 2.15156018e-05 1.10050495e-04 4.24400438e-05 1.41270153e-05 6.05774589e-05 8.52336148e-05 9.65451327e-06 5.06046316e-05 1.86540516e-04 3.15612066e-05 7.57657811e-04 4.54093609e-04 4.54093609e-04 3.53303825e-04 6.12798380e-05 4.27316438e-05 4.67956724e-04 6.56181055e-04 1.17660894e-04 3.85877585e-04 1.13388600e-04 3.88524248e-05 8.68830419e-05 4.59167280e-05 1.31303169e-06 1.12911717e-08 0.00000000e+00 + 2024 01 29 12 00 00 3.84818193e-03 2.33409594e-03 1.29572968e-03 9.40970764e-04 6.95730668e-04 3.80401478e-04 2.78507755e-04 2.40767659e-04 5.04558108e-04 1.42473878e-04 9.07547959e-03 5.47527149e-03 2.48433268e-04 7.19685439e-05 4.62340322e-05 2.49731762e-04 4.09697357e-05 7.11690693e-05 2.15104151e-04 7.83901720e-05 1.58610142e-04 1.94286761e-04 1.09831049e-04 9.74948829e-05 5.39757129e-06 9.96116360e-06 6.04434063e-06 3.16344060e-05 4.93358239e-06 1.80784788e-05 1.13357081e-04 3.96930584e-05 2.15912922e-05 1.11241009e-04 4.33025736e-05 1.41536657e-05 6.09413985e-05 8.61555205e-05 1.01788515e-05 5.12561275e-05 1.88054798e-04 3.21349944e-05 7.71306028e-04 4.62369341e-04 4.62369341e-04 3.58558312e-04 6.17000100e-05 4.38411109e-05 4.72674649e-04 6.61145962e-04 1.19352528e-04 3.86727657e-04 1.12452005e-04 3.85107207e-05 8.60883283e-05 4.53123714e-05 1.28041962e-06 9.46232888e-09 0.00000000e+00 + 2024 01 30 12 00 00 3.83867693e-03 2.32803042e-03 1.29187489e-03 9.38075028e-04 6.93152010e-04 3.79208857e-04 2.77335660e-04 2.39485116e-04 5.01182619e-04 1.41613108e-04 8.99523407e-03 5.42216599e-03 2.47110941e-04 7.16989174e-05 4.60454627e-05 2.46661685e-04 4.04440536e-05 7.01102254e-05 2.14109502e-04 7.81407231e-05 1.56420760e-04 1.91504494e-04 1.08688221e-04 9.61587563e-05 5.36360130e-06 9.20076563e-06 6.02647051e-06 3.14565976e-05 4.92732652e-06 1.79783666e-05 1.11846733e-04 3.94883653e-05 2.10637139e-05 1.10014105e-04 4.29406122e-05 1.40760501e-05 5.96896272e-05 8.37940032e-05 9.58298406e-06 5.00964613e-05 1.84305130e-04 3.19181185e-05 7.57193372e-04 4.58927639e-04 4.58927639e-04 3.46942175e-04 5.84627909e-05 4.34169691e-05 4.59883135e-04 6.47556487e-04 1.17188899e-04 3.74678972e-04 1.09650763e-04 3.74911531e-05 8.37288539e-05 4.36555187e-05 1.19973648e-06 6.38109583e-09 0.00000000e+00 + 2024 01 31 12 00 00 3.85279860e-03 2.33773646e-03 1.29798593e-03 9.42697476e-04 6.97291574e-04 3.80954090e-04 2.79095084e-04 2.41438422e-04 5.06254849e-04 1.43057784e-04 9.11023848e-03 5.49654998e-03 2.49220569e-04 7.22774945e-05 4.63691874e-05 2.45565740e-04 4.01852682e-05 6.95874332e-05 2.15382839e-04 7.88063859e-05 1.55487957e-04 1.90117686e-04 1.08270975e-04 9.60138154e-05 5.34695209e-06 9.11299139e-06 6.02217151e-06 3.14564333e-05 4.94160522e-06 1.79793033e-05 1.11210592e-04 3.93875380e-05 2.08011741e-05 1.10759177e-04 4.37800598e-05 1.40574572e-05 5.93454381e-05 8.30956035e-05 9.51430702e-06 5.01795453e-05 1.85382927e-04 3.24768916e-05 7.63846372e-04 4.66982322e-04 4.66982322e-04 3.46005996e-04 5.68377902e-05 4.44973470e-05 4.57326364e-04 6.45923839e-04 1.17817527e-04 3.70229070e-04 1.10031915e-04 3.76286021e-05 8.40407094e-05 4.38014493e-05 1.20182196e-06 6.24492174e-09 0.00000000e+00 + 2024 02 01 12 00 00 3.85358014e-03 2.33920899e-03 1.29883678e-03 9.43208707e-04 6.97681720e-04 3.80981972e-04 2.79179884e-04 2.41558773e-04 5.06550519e-04 1.43337819e-04 9.11251344e-03 5.49656041e-03 2.49500013e-04 7.24866168e-05 4.64308580e-05 2.45574292e-04 4.01641504e-05 6.95420953e-05 2.16142990e-04 7.91512837e-05 1.55379961e-04 1.89975097e-04 1.08246024e-04 9.60110002e-05 5.34571882e-06 9.05565903e-06 6.02412219e-06 3.14720429e-05 4.94879969e-06 1.79929689e-05 1.11178796e-04 3.93791939e-05 2.07749050e-05 1.11214441e-04 4.42043092e-05 1.40660326e-05 5.93765096e-05 8.30508101e-05 9.46947621e-06 5.03593094e-05 1.85876506e-04 3.27647169e-05 7.68514491e-04 4.71060164e-04 4.71060164e-04 3.47341008e-04 5.66514034e-05 4.50527616e-05 4.58291919e-04 6.47057382e-04 1.18477779e-04 3.70394528e-04 1.10845000e-04 3.79232333e-05 8.47161920e-05 4.42013042e-05 1.21617583e-06 6.57308874e-09 0.00000000e+00 + 2024 02 02 12 00 00 3.86770618e-03 2.34898718e-03 1.30498708e-03 9.47827108e-04 7.01799209e-04 3.82717974e-04 2.80933793e-04 2.43506401e-04 5.11616962e-04 1.44794545e-04 9.22747310e-03 5.57093918e-03 2.51617907e-04 7.30674637e-05 4.67491737e-05 2.48043189e-04 4.05617931e-05 7.03371945e-05 2.18012588e-04 7.98280002e-05 1.57040695e-04 1.92015433e-04 1.09155098e-04 9.67705624e-05 5.37168926e-06 9.25693603e-06 6.03151675e-06 3.16267627e-05 4.96351095e-06 1.80934284e-05 1.12350979e-04 3.95337760e-05 2.11633989e-05 1.12742567e-04 4.50679509e-05 1.40982913e-05 6.04261948e-05 8.46030090e-05 9.62735285e-06 5.12611391e-05 1.89751069e-04 3.33343865e-05 7.82160447e-04 4.79340274e-04 4.79340274e-04 3.57947958e-04 5.89826668e-05 4.61552525e-05 4.69791235e-04 6.59877477e-04 1.21056459e-04 3.81383511e-04 1.15712443e-04 3.96916766e-05 8.87933571e-05 4.68842165e-05 1.33444693e-06 1.07144167e-08 0.00000000e+00 + 2024 02 03 12 00 00 3.86893729e-03 2.35144005e-03 1.30639886e-03 9.48616899e-04 7.02361704e-04 3.82742737e-04 2.81054719e-04 2.43682231e-04 5.12066029e-04 1.45257239e-04 9.23093807e-03 5.57094775e-03 2.52071369e-04 7.34020616e-05 4.68455979e-05 2.51503302e-04 4.11588466e-05 7.15318834e-05 2.19782979e-04 8.03878065e-05 1.59368576e-04 1.95088408e-04 1.10393672e-04 9.78078413e-05 5.41064292e-06 9.54437419e-06 6.04891284e-06 3.18059965e-05 4.97567089e-06 1.82121174e-05 1.14048088e-04 3.97659198e-05 2.17482710e-05 1.14310500e-04 4.57818271e-05 1.41740704e-05 6.18305491e-05 8.67966008e-05 9.85285005e-06 5.25290343e-05 1.93343779e-04 3.38055543e-05 7.97806539e-04 4.86184843e-04 4.86184843e-04 3.71452335e-04 6.25002722e-05 4.70670435e-05 4.84930852e-04 6.75921381e-04 1.24007813e-04 3.99231449e-04 1.24986659e-04 4.30620195e-05 9.65677073e-05 5.20471826e-05 1.56550647e-06 2.26006808e-08 5.78291637e-10 + 2024 02 04 12 00 00 3.90779297e-03 2.37366700e-03 1.32076060e-03 9.60218714e-04 7.13134358e-04 3.87894306e-04 2.85978339e-04 2.49029472e-04 5.25987450e-04 1.48287919e-04 9.56598123e-03 5.79406843e-03 2.57116077e-04 7.41681773e-05 4.74988311e-05 2.55938538e-04 4.19091026e-05 7.30341999e-05 2.21402753e-04 8.07960867e-05 1.62648582e-04 1.98961791e-04 1.12105094e-04 9.90943695e-05 5.45954063e-06 9.88738393e-06 6.06112408e-06 3.20586578e-05 4.98448462e-06 1.83731611e-05 1.16164162e-04 4.00576770e-05 2.24851756e-05 1.16034142e-04 4.62996453e-05 1.42272722e-05 6.36219631e-05 8.95491389e-05 1.01219317e-05 5.38675256e-05 2.00633914e-04 3.41487379e-05 8.12079918e-04 4.91151493e-04 4.91151493e-04 3.87310536e-04 6.69422443e-05 4.77308844e-05 5.02931834e-04 6.96586646e-04 1.27033077e-04 4.19991042e-04 1.34439640e-04 4.64974251e-05 1.04492632e-04 5.73158737e-05 1.80171403e-06 3.47837243e-08 1.67943615e-09 + 2024 02 05 12 00 00 3.90941396e-03 2.37698149e-03 1.32266504e-03 9.61248929e-04 7.13842116e-04 3.87914674e-04 2.86129551e-04 2.49252334e-04 5.26568317e-04 1.48910926e-04 9.57046744e-03 5.79407364e-03 2.57721709e-04 7.46152124e-05 4.76329453e-05 2.57917295e-04 4.22218232e-05 7.36590999e-05 2.23325703e-04 8.15440668e-05 1.63860498e-04 2.00562033e-04 1.12792470e-04 9.93614600e-05 5.47998352e-06 9.68640234e-06 6.07138172e-06 3.21612129e-05 5.00101960e-06 1.84560925e-05 1.17111680e-04 4.01792262e-05 2.27899858e-05 1.17449026e-04 4.72685846e-05 1.42719495e-05 6.44663567e-05 9.05253430e-05 9.96455346e-06 5.46476065e-05 2.03227334e-04 3.47806636e-05 8.25275960e-04 5.00431750e-04 5.00431750e-04 3.96633581e-04 6.87676715e-05 4.89553087e-05 5.12901204e-04 7.07244265e-04 1.29546027e-04 4.28982500e-04 1.38673401e-04 4.80360768e-05 1.08042127e-04 5.96765281e-05 1.90760981e-06 4.02503524e-08 2.17365184e-09 + 2024 02 06 12 00 00 3.92708143e-03 2.38865839e-03 1.33005325e-03 9.66857796e-04 7.18873136e-04 3.90124305e-04 2.88327246e-04 2.51675911e-04 5.32889236e-04 1.50612213e-04 9.71679799e-03 5.88969365e-03 2.60270682e-04 7.52232027e-05 4.79872287e-05 2.62950852e-04 4.30845947e-05 7.53892644e-05 2.25540581e-04 8.21974070e-05 1.67400721e-04 2.05044238e-04 1.14661315e-04 1.00557550e-04 5.53609570e-06 9.90659464e-06 6.09064009e-06 3.24168877e-05 5.01561808e-06 1.86296999e-05 1.19571432e-04 4.05148458e-05 2.36420048e-05 1.19492389e-04 4.81230760e-05 1.43557554e-05 6.65041810e-05 9.35528169e-05 1.01372585e-05 5.61243770e-05 2.09501064e-04 3.53339274e-05 8.44057626e-04 5.08610578e-04 5.08610578e-04 4.15539473e-04 7.39268493e-05 5.00281400e-05 5.34379373e-04 7.30266100e-04 1.33475617e-04 4.49409922e-04 1.44615234e-04 5.01959450e-05 1.13026952e-04 6.30183649e-05 2.05944989e-06 4.82363973e-08 2.89945916e-09 + 2024 02 07 12 00 00 3.90675914e-03 2.37423572e-03 1.32101343e-03 9.60190463e-04 7.12994883e-04 3.87665161e-04 2.85824111e-04 2.48891616e-04 5.25622760e-04 1.48450665e-04 9.55232377e-03 5.78344837e-03 2.57176942e-04 7.43516269e-05 4.75248833e-05 2.63488867e-04 4.32760571e-05 7.57736212e-05 2.23392784e-04 8.11490405e-05 1.67993014e-04 2.06043494e-04 1.14866159e-04 1.00573594e-04 5.54852777e-06 9.95036753e-06 6.09316048e-06 3.23723149e-05 4.99212838e-06 1.85982537e-05 1.19943965e-04 4.05893457e-05 2.38318346e-05 1.18063246e-04 4.67485748e-05 1.43666868e-05 6.65654788e-05 9.38794840e-05 1.01714475e-05 5.58314278e-05 2.07040216e-04 3.44456232e-05 8.30904788e-04 4.95456578e-04 4.95456578e-04 4.12911211e-04 7.50801642e-05 4.83052921e-05 5.33495698e-04 7.28235395e-04 1.31800603e-04 4.55205586e-04 1.48150836e-04 5.14816526e-05 1.15996755e-04 6.50385084e-05 2.15333744e-06 5.33331018e-08 3.36669927e-09 + 2024 02 08 12 00 00 3.92645402e-03 2.38739247e-03 1.32932589e-03 9.66458625e-04 7.18594612e-04 3.90113417e-04 2.88267357e-04 2.51588579e-04 5.32663906e-04 1.50374252e-04 9.71504801e-03 5.88969029e-03 2.60038934e-04 7.50570140e-05 4.79460109e-05 2.66423047e-04 4.37436742e-05 7.67131278e-05 2.25500883e-04 8.19133653e-05 1.70009496e-04 2.08492194e-04 1.15967676e-04 1.01057538e-04 5.57885796e-06 9.89317050e-06 6.10139941e-06 3.25359478e-05 5.00931419e-06 1.87160687e-05 1.21344993e-04 4.07713233e-05 2.42968163e-05 1.19745961e-04 4.77538240e-05 1.44024787e-05 6.78066705e-05 9.55026562e-05 1.01264362e-05 5.66339896e-05 2.11831978e-04 3.50937509e-05 8.45553886e-04 5.05074859e-04 5.05074859e-04 4.25407685e-04 7.79118272e-05 4.95626358e-05 5.47179318e-04 7.43141177e-04 1.34805387e-04 4.62598903e-04 1.46082192e-04 5.07301676e-05 1.14264672e-04 6.39042832e-05 2.10374405e-06 5.08713853e-08 3.14669251e-09 + 2024 02 09 12 00 00 3.91656681e-03 2.38082211e-03 1.32517203e-03 9.63291614e-04 7.15746109e-04 3.88874937e-04 2.87033977e-04 2.50226608e-04 5.29120783e-04 1.49412382e-04 9.63349752e-03 5.83656207e-03 2.58603720e-04 7.47012242e-05 4.77338430e-05 2.71711149e-04 4.47755679e-05 7.87861354e-05 2.25556993e-04 8.15299107e-05 1.74010642e-04 2.13893911e-04 1.17977750e-04 1.02181680e-04 5.64579459e-06 1.03242644e-05 6.09948984e-06 3.27406716e-05 5.00085334e-06 1.88386318e-05 1.24125243e-04 4.11728892e-05 2.53225851e-05 1.20127958e-04 4.72579151e-05 1.43940764e-05 6.98520528e-05 9.88202413e-05 1.04642713e-05 5.70102494e-05 2.14064600e-04 3.47699213e-05 8.44425073e-04 5.00324601e-04 5.00324601e-04 4.40162343e-04 8.41571251e-05 4.89352678e-05 5.67132554e-04 7.62798648e-04 1.36893297e-04 4.80728217e-04 1.44920285e-04 5.03083893e-05 1.13294050e-04 6.32866271e-05 2.07805899e-06 4.97002020e-08 3.04481453e-09 + 2024 02 10 12 00 00 3.92925808e-03 2.39062810e-03 1.33125385e-03 9.67595044e-04 7.19440942e-04 3.90336634e-04 2.88569913e-04 2.51952745e-04 5.33644530e-04 1.50922995e-04 9.73344108e-03 5.90030104e-03 2.60660721e-04 7.53760969e-05 4.80687877e-05 2.66649064e-04 4.37353388e-05 7.67011545e-05 2.26570691e-04 8.24099756e-05 1.70038054e-04 2.08501271e-04 1.16026553e-04 1.01334938e-04 5.57809217e-06 9.96816016e-06 6.11022915e-06 3.25672921e-05 5.02084586e-06 1.87404636e-05 1.21425444e-04 4.07682819e-05 2.42972106e-05 1.20626897e-04 4.84261109e-05 1.44406862e-05 6.79723792e-05 9.57370960e-05 1.01850077e-05 5.72302798e-05 2.13039121e-04 3.55178869e-05 8.55391225e-04 5.11495164e-04 5.11495164e-04 4.28724317e-04 7.79577589e-05 5.03873802e-05 5.49698816e-04 7.46399686e-04 1.35944394e-04 4.66626832e-04 1.51146920e-04 5.25724605e-05 1.18522681e-04 6.68307952e-05 2.24189114e-06 5.85284170e-08 3.85253180e-09 + 2024 02 11 12 00 00 3.94795905e-03 2.40184091e-03 1.33844671e-03 9.73222875e-04 7.24574347e-04 3.92759119e-04 2.90912321e-04 2.54504653e-04 5.40320116e-04 1.52479326e-04 9.89333600e-03 6.00653291e-03 2.63161200e-04 7.58037721e-05 4.83836673e-05 2.67454546e-04 4.38416697e-05 7.69176346e-05 2.27368895e-04 8.27301352e-05 1.70643025e-04 2.09089429e-04 1.16369408e-04 1.01094623e-04 5.58485444e-06 9.65757354e-06 6.10906791e-06 3.26117689e-05 5.02843068e-06 1.87821987e-05 1.21786250e-04 4.08097840e-05 2.44081035e-05 1.21203034e-04 4.88674326e-05 1.44355174e-05 6.83318077e-05 9.59507888e-05 9.94138536e-06 5.72231408e-05 2.15537320e-04 3.57925717e-05 8.59226371e-04 5.15704975e-04 5.15704975e-04 4.32534058e-04 7.86589750e-05 5.09222969e-05 5.53733189e-04 7.50945002e-04 1.36945341e-04 4.63217722e-04 1.43517794e-04 4.97998475e-05 1.12126548e-04 6.25765757e-05 2.05102608e-06 4.86734280e-08 2.96152969e-09 + 2024 02 12 12 00 00 3.95389410e-03 2.40884371e-03 1.34261120e-03 9.75714631e-04 7.26456942e-04 3.93231092e-04 2.91560177e-04 2.55289976e-04 5.42410689e-04 1.53679003e-04 9.93114592e-03 6.02776557e-03 2.64510254e-04 7.65214676e-05 4.86592944e-05 2.69393455e-04 4.41125827e-05 7.74645421e-05 2.30038416e-04 8.38468433e-05 1.71783952e-04 2.10536841e-04 1.17051170e-04 1.02246008e-04 5.60230328e-06 1.00468227e-05 6.11805081e-06 3.27619146e-05 5.05400822e-06 1.88760956e-05 1.22723284e-04 4.09153232e-05 2.46822252e-05 1.23450052e-04 5.03607211e-05 1.44744408e-05 6.92838000e-05 9.74213219e-05 1.02464182e-05 5.86500157e-05 2.18872246e-04 3.67433880e-05 8.79738873e-04 5.29977167e-04 5.29977167e-04 4.43821409e-04 8.03520903e-05 5.27693308e-05 5.64899968e-04 7.64397997e-04 1.40172820e-04 4.82282814e-04 1.61790869e-04 5.64431604e-05 1.27463783e-04 7.29166697e-05 2.52501238e-06 7.39180805e-08 5.26388106e-09 + 2024 02 13 12 00 00 3.96120133e-03 2.41314290e-03 1.34537652e-03 9.77839533e-04 7.28373509e-04 3.94172534e-04 2.92465559e-04 2.56271054e-04 5.45001316e-04 1.54263112e-04 9.99447564e-03 6.07024468e-03 2.65464611e-04 7.66572900e-05 4.87742424e-05 2.65547543e-04 4.33879613e-05 7.60139606e-05 2.29546181e-04 8.39231303e-05 1.69018287e-04 2.06800162e-04 1.15650479e-04 1.01095256e-04 5.55505758e-06 9.63084385e-06 6.10353891e-06 3.25969215e-05 5.05629832e-06 1.87738576e-05 1.20771527e-04 4.06335545e-05 2.39712157e-05 1.22735152e-04 5.04911703e-05 1.44111225e-05 6.78077868e-05 9.49254199e-05 9.92018322e-06 5.76268704e-05 2.16536283e-04 3.68128327e-05 8.72908362e-04 5.31206233e-04 5.31206233e-04 4.31864123e-04 7.60698400e-05 5.29070850e-05 5.50091707e-04 7.49153139e-04 1.38236805e-04 4.60946805e-04 1.50681835e-04 5.24060482e-05 1.18151497e-04 6.67335331e-05 2.24838243e-06 5.96941021e-08 3.97940774e-09 + 2024 02 14 12 00 00 3.95763726e-03 2.41152749e-03 1.34428866e-03 9.76796287e-04 7.27321433e-04 3.93651440e-04 2.91988426e-04 2.55758002e-04 5.43697437e-04 1.54063124e-04 9.96274584e-03 6.04898036e-03 2.65057801e-04 7.66327782e-05 4.87251575e-05 2.64062130e-04 4.31118911e-05 7.54635083e-05 2.29380001e-04 8.39764427e-05 1.67924632e-04 2.05400974e-04 1.15100453e-04 1.00807633e-04 5.53695281e-06 9.65309664e-06 6.09819690e-06 3.25365060e-05 5.05822572e-06 1.87306728e-05 1.20045820e-04 4.05263010e-05 2.37043540e-05 1.22514827e-04 5.05994132e-05 1.43877056e-05 6.72561894e-05 9.41218110e-05 9.93751455e-06 5.72541906e-05 2.15100613e-04 3.68640642e-05 8.71378236e-04 5.32217743e-04 5.32217743e-04 4.27534894e-04 7.44830642e-05 5.30103105e-05 5.44643711e-04 7.43212799e-04 1.37572423e-04 4.51853616e-04 1.44969950e-04 5.03308800e-05 1.13367573e-04 6.35901542e-05 2.11014998e-06 5.27705382e-08 3.35897212e-09 + 2024 02 15 12 00 00 3.96153523e-03 2.41154340e-03 1.34451803e-03 9.77380986e-04 7.28057205e-04 3.94333777e-04 2.92517268e-04 2.56273420e-04 5.45069878e-04 1.53897385e-04 1.00058401e-02 6.08083345e-03 2.65184978e-04 7.62980388e-05 4.86773919e-05 2.62080110e-04 4.27794264e-05 7.47992832e-05 2.27590117e-04 8.33066122e-05 1.66684724e-04 2.03701140e-04 1.14410466e-04 1.00364526e-04 5.51521298e-06 9.67494270e-06 6.09456874e-06 3.24316351e-05 5.04397067e-06 1.86555684e-05 1.19066423e-04 4.03970771e-05 2.33805389e-05 1.21249952e-04 4.97606408e-05 1.43717523e-05 6.64057999e-05 9.30101899e-05 9.95452574e-06 5.65984285e-05 2.13290595e-04 3.63027328e-05 8.60922301e-04 5.24165574e-04 5.24165574e-04 4.18775156e-04 7.25450343e-05 5.19255875e-05 5.34798953e-04 7.32731342e-04 1.35216647e-04 4.41168126e-04 1.38884342e-04 4.81197438e-05 1.08269256e-04 6.02291238e-05 1.96153331e-06 4.52634154e-08 2.68454947e-09 + 2024 02 16 12 00 00 3.94898919e-03 2.40240747e-03 1.33880829e-03 9.73129683e-04 7.24284419e-04 3.92819231e-04 2.90960011e-04 2.54530197e-04 5.40554861e-04 1.52503821e-04 9.90596645e-03 6.01706877e-03 2.63221387e-04 7.56939318e-05 4.83838035e-05 2.60123462e-04 4.24717728e-05 7.41834694e-05 2.25600433e-04 8.25465890e-05 1.65383222e-04 2.02115308e-04 1.13680666e-04 1.00032303e-04 5.49515171e-06 9.83437421e-06 6.09724702e-06 3.23153482e-05 5.02775401e-06 1.85709521e-05 1.18128803e-04 4.02774487e-05 2.30787729e-05 1.19832804e-04 4.88067075e-05 1.43832818e-05 6.55357995e-05 9.20276727e-05 1.00794256e-05 5.60440971e-05 2.10135944e-04 3.56654607e-05 8.51233585e-04 5.15009370e-04 5.15009370e-04 4.09894644e-04 7.07281055e-05 5.06939017e-05 5.24932886e-04 7.21423590e-04 1.32767564e-04 4.31117347e-04 1.33185991e-04 4.60490621e-05 1.03493574e-04 5.70664628e-05 1.82063902e-06 3.80649425e-08 2.03570174e-09 + 2024 02 17 12 00 00 3.94109805e-03 2.39461258e-03 1.33409735e-03 9.69969005e-04 7.21663383e-04 3.92028841e-04 2.90023136e-04 2.53428933e-04 5.37710225e-04 1.51199143e-04 9.85148008e-03 5.98517470e-03 2.61644951e-04 7.49438779e-05 4.80805120e-05 2.59690263e-04 4.24832338e-05 7.42074277e-05 2.23132826e-04 8.14362371e-05 1.65382504e-04 2.02185536e-04 1.13584171e-04 9.96214038e-05 5.49585166e-06 9.69744797e-06 6.08734154e-06 3.22349468e-05 5.00362985e-06 1.85154006e-05 1.18016891e-04 4.02819482e-05 2.30918493e-05 1.18112795e-04 4.73904278e-05 1.43400801e-05 6.52357638e-05 9.16491922e-05 9.97204988e-06 5.51831875e-05 2.07677521e-04 3.47308698e-05 8.33004687e-04 5.01430361e-04 5.01430361e-04 4.03678628e-04 7.08161795e-05 4.88852558e-05 5.19990849e-04 7.15448108e-04 1.30376968e-04 4.28591039e-04 1.29924107e-04 4.48639616e-05 1.00761375e-04 5.52692687e-05 1.74146332e-06 3.40881840e-08 1.67903824e-09 + 2024 02 18 12 00 00 3.88192876e-03 2.35803788e-03 1.31073596e-03 9.51697228e-04 7.04992000e-04 3.84410646e-04 2.82591546e-04 2.45292055e-04 5.16516745e-04 1.46019071e-04 9.35193433e-03 5.65580539e-03 2.53514477e-04 7.33146969e-05 4.69806098e-05 2.54397375e-04 4.16828261e-05 7.26017053e-05 2.19150059e-04 7.99872621e-05 1.61718672e-04 1.98020482e-04 1.11581771e-04 9.82934178e-05 5.44382419e-06 9.54485731e-06 6.06123831e-06 3.18990911e-05 4.97177862e-06 1.82828780e-05 1.15603672e-04 3.99705634e-05 2.23002906e-05 1.14710983e-04 4.55228379e-05 1.42264340e-05 6.29998222e-05 8.85318776e-05 9.85248407e-06 5.30918922e-05 1.96498909e-04 3.35081946e-05 8.00703931e-04 4.83537046e-04 4.83537046e-04 3.80386258e-04 6.60174061e-05 4.65171412e-05 4.95686811e-04 6.87557383e-04 1.24874151e-04 4.09787888e-04 1.25044992e-04 4.30905635e-05 9.66693231e-05 5.25356820e-05 1.61796062e-06 2.76454788e-08 1.09484164e-09 + 2024 02 19 12 00 00 3.87340606e-03 2.35157021e-03 1.30671521e-03 9.48769118e-04 7.02429125e-04 3.83406212e-04 2.81543684e-04 2.44113856e-04 5.13457264e-04 1.45020758e-04 9.28496093e-03 5.61329871e-03 2.52141396e-04 7.28668607e-05 4.67711612e-05 2.51085493e-04 4.11243876e-05 7.14808877e-05 2.17348791e-04 7.94025953e-05 1.59448514e-04 1.95108769e-04 1.10370890e-04 9.75040109e-05 5.40755027e-06 9.40445316e-06 6.04708948e-06 3.17293087e-05 4.95901841e-06 1.81657890e-05 1.13991154e-04 3.97532916e-05 2.17470748e-05 1.13183299e-04 4.47740633e-05 1.41648474e-05 6.16437517e-05 8.65342533e-05 9.74249124e-06 5.20449803e-05 1.92449428e-04 3.30156035e-05 7.86182273e-04 4.76359949e-04 4.76359949e-04 3.67281940e-04 6.26587600e-05 4.55635629e-05 4.81018164e-04 6.71970716e-04 1.21964604e-04 3.96659095e-04 1.21472791e-04 4.17918640e-05 9.36710545e-05 5.05143161e-05 1.52530298e-06 2.27105879e-08 6.44774012e-10 + 2024 02 20 12 00 00 3.86164765e-03 2.34383591e-03 1.30181876e-03 9.45042606e-04 6.99081648e-04 3.81931524e-04 2.80079682e-04 2.42500412e-04 5.09250521e-04 1.43896102e-04 9.18745416e-03 5.54955080e-03 2.50451256e-04 7.24661586e-05 4.65292380e-05 2.48061171e-04 4.06102685e-05 7.04472535e-05 2.15953569e-04 7.89801124e-05 1.57307175e-04 1.92408733e-04 1.09238638e-04 9.69288501e-05 5.37423803e-06 9.35120988e-06 6.03736080e-06 3.15804717e-05 4.94954111e-06 1.80616426e-05 1.12509876e-04 3.95531853e-05 2.12345651e-05 1.11965886e-04 4.42195567e-05 1.41225508e-05 6.04121401e-05 8.47720630e-05 9.70086621e-06 5.12995684e-05 1.88617165e-04 3.26575304e-05 7.75370660e-04 4.71053645e-04 4.71053645e-04 3.55822790e-04 5.95311867e-05 4.48690262e-05 4.67928141e-04 6.58100728e-04 1.19538279e-04 3.87391633e-04 1.22073008e-04 4.20094231e-05 9.41701377e-05 5.08133397e-05 1.53632936e-06 2.30971146e-08 6.74991218e-10 + 2024 02 21 12 00 00 3.85327585e-03 2.33750364e-03 1.29788246e-03 9.42230584e-04 6.96652304e-04 3.80953766e-04 2.79062322e-04 2.41360839e-04 5.06266869e-04 1.42927796e-04 9.12105451e-03 5.50705753e-03 2.49117389e-04 7.20491603e-05 4.63223589e-05 2.46862257e-04 4.04354912e-05 7.00938865e-05 2.14628826e-04 7.84439093e-05 1.56535036e-04 1.91469103e-04 1.08792023e-04 9.70471956e-05 5.36300577e-06 9.57916127e-06 6.03480330e-06 3.15169326e-05 4.93724583e-06 1.80071344e-05 1.11942478e-04 3.94850736e-05 2.10567567e-05 1.11071940e-04 4.35017922e-05 1.41114928e-05 5.98826700e-05 8.42620788e-05 9.87974927e-06 5.11481089e-05 1.86439035e-04 3.22008651e-05 7.67458939e-04 4.64194035e-04 4.64194035e-04 3.49839512e-04 5.84282097e-05 4.39818454e-05 4.61544834e-04 6.51669055e-04 1.17864559e-04 3.90790252e-04 1.31452284e-04 4.54179904e-05 1.02032895e-04 5.60377358e-05 1.77033562e-06 3.51501221e-08 1.76395538e-09 + 2024 02 22 12 00 00 3.84688069e-03 2.33239138e-03 1.29472665e-03 9.40062715e-04 6.94829036e-04 3.80236780e-04 2.78300394e-04 2.40503284e-04 5.04003590e-04 1.42136739e-04 9.07104528e-03 5.47519475e-03 2.48061371e-04 7.16988372e-05 4.61549354e-05 2.54128954e-04 4.18330659e-05 7.28956889e-05 2.14858034e-04 7.79736729e-05 1.61970297e-04 1.98720566e-04 1.11523551e-04 9.89220751e-05 5.45393850e-06 1.03676561e-05 6.04449706e-06 3.18219629e-05 4.92605795e-06 1.81875018e-05 1.15681678e-04 4.00286925e-05 2.24354138e-05 1.11817012e-04 4.28511499e-05 1.41537617e-05 6.26647262e-05 8.89556582e-05 1.04979677e-05 5.22002064e-05 1.90596032e-04 3.17970320e-05 7.71115437e-04 4.57989052e-04 4.57989052e-04 3.70616574e-04 6.67687564e-05 4.31951805e-05 4.88685890e-04 6.78951849e-04 1.20824996e-04 4.20070133e-04 1.36680961e-04 4.73175303e-05 1.06411574e-04 5.89104251e-05 1.89634045e-06 4.14359647e-08 2.32657005e-09 + 2024 02 23 12 00 00 3.84790489e-03 2.33426727e-03 1.29581290e-03 9.40739075e-04 6.95361500e-04 3.80280909e-04 2.78416630e-04 2.40666606e-04 5.04397973e-04 1.42495081e-04 9.07407502e-03 5.47521263e-03 2.48422365e-04 7.19694727e-05 4.62318093e-05 2.50040394e-04 4.10334382e-05 7.12877372e-05 2.15170823e-04 7.84195145e-05 1.58795141e-04 1.94517756e-04 1.09937050e-04 9.80531556e-05 5.40214132e-06 9.96351810e-06 6.04730631e-06 3.16601120e-05 4.93515108e-06 1.80941782e-05 1.13527733e-04 3.97174503e-05 2.16377390e-05 1.11675724e-04 4.33887559e-05 1.41661119e-05 6.10885879e-05 8.63382523e-05 1.01813035e-05 5.20426809e-05 1.88473723e-04 3.21673928e-05 7.73449454e-04 4.63163806e-04 4.63163806e-04 3.59686392e-04 6.18981954e-05 4.39087598e-05 4.73720228e-04 6.64219631e-04 1.19519580e-04 4.09244130e-04 1.41979177e-04 4.92419589e-05 1.10845797e-04 6.17981996e-05 2.02143560e-06 4.75534691e-08 2.87082500e-09 + 2024 02 24 12 00 00 3.84674577e-03 2.33434618e-03 1.29579325e-03 9.40658325e-04 6.95258420e-04 3.80083650e-04 2.78272849e-04 2.40535608e-04 5.04017652e-04 1.42571876e-04 9.06028217e-03 5.46461008e-03 2.48413190e-04 7.21122303e-05 4.62560396e-05 2.48700970e-04 4.07666608e-05 7.07497995e-05 2.15567420e-04 7.86859193e-05 1.57706499e-04 1.93099317e-04 1.09400522e-04 9.76541481e-05 5.38492968e-06 9.73736242e-06 6.04814595e-06 3.16062146e-05 4.94006745e-06 1.80668301e-05 1.12804668e-04 3.96135467e-05 2.13689360e-05 1.11708554e-04 4.36829141e-05 1.41699202e-05 6.05693205e-05 8.53978172e-05 1.00040459e-05 5.19596129e-05 1.87753236e-04 3.23844113e-05 7.74970256e-04 4.66013933e-04 4.66013933e-04 3.56400754e-04 6.02435088e-05 4.43241122e-05 4.69130993e-04 6.59561707e-04 1.19321432e-04 4.04587088e-04 1.42387658e-04 4.93889420e-05 1.11177719e-04 6.19347482e-05 2.02145121e-06 4.70867718e-08 2.81653580e-09 + 2024 02 25 12 00 00 3.85082556e-03 2.33695297e-03 1.29745369e-03 9.42037858e-04 6.96561868e-04 3.80619801e-04 2.78804257e-04 2.41126591e-04 5.05515508e-04 1.42960202e-04 9.09349799e-03 5.48588112e-03 2.49007196e-04 7.22753670e-05 4.63409760e-05 2.44890384e-04 4.00416000e-05 6.92910631e-05 2.15376263e-04 7.88654899e-05 1.54853021e-04 1.89280313e-04 1.07953833e-04 9.69561540e-05 5.33799684e-06 9.53914714e-06 6.04362394e-06 3.14601082e-05 4.94300184e-06 1.79721591e-05 1.10812863e-04 3.93312977e-05 2.06443103e-05 1.11234944e-04 4.38613468e-05 1.41504075e-05 5.90844004e-05 8.30771080e-05 9.84882136e-06 5.15604746e-05 1.85578602e-04 3.25275701e-05 7.72613960e-04 4.67757834e-04 4.67757834e-04 3.45014520e-04 5.58123109e-05 4.45960206e-05 4.54419481e-04 6.45034667e-04 1.17605196e-04 3.93308870e-04 1.45372965e-04 5.04725078e-05 1.13670737e-04 6.35145652e-05 2.08664526e-06 5.00180533e-08 3.07030561e-09 + 2024 02 26 12 00 00 3.84586361e-03 2.33469115e-03 1.29593810e-03 9.40788722e-04 6.95393739e-04 3.79932893e-04 2.78183407e-04 2.40473700e-04 5.03774291e-04 1.42706608e-04 9.04752525e-03 5.45402840e-03 2.48477735e-04 7.23162996e-05 4.62952949e-05 2.42986483e-04 3.96951218e-05 6.85921637e-05 2.15499714e-04 7.90433842e-05 1.53403223e-04 1.87435233e-04 1.07227770e-04 9.62704433e-05 5.31565529e-06 9.28388690e-06 6.03111621e-06 3.13788717e-05 4.94594678e-06 1.79213277e-05 1.09846548e-04 3.91963375e-05 2.02947282e-05 1.10880787e-04 4.40400443e-05 1.40961463e-05 5.83459052e-05 8.17726655e-05 9.64886713e-06 5.08477301e-05 1.83616960e-04 3.26696900e-05 7.68352025e-04 4.69502667e-04 4.69502667e-04 3.39074898e-04 5.36580221e-05 4.48661594e-05 4.47464539e-04 6.37325920e-04 1.16894190e-04 3.80764298e-04 1.37225083e-04 4.75092254e-05 1.06824322e-04 5.88381405e-05 1.86793549e-06 3.80442138e-08 1.97011474e-09 + 2024 02 27 12 00 00 3.84845849e-03 2.33699545e-03 1.29734807e-03 9.41845590e-04 6.96338448e-04 3.80227536e-04 2.78513378e-04 2.40858785e-04 5.04737668e-04 1.43092096e-04 9.06578848e-03 5.46467565e-03 2.48968054e-04 7.25477870e-05 4.63933922e-05 2.41047164e-04 3.93236318e-05 6.78428274e-05 2.15936643e-04 7.93702900e-05 1.51923318e-04 1.85457281e-04 1.06497913e-04 9.58668175e-05 5.29169956e-06 9.17453362e-06 6.01824213e-06 3.13191954e-05 4.95225104e-06 1.78790216e-05 1.08839869e-04 3.90516449e-05 1.99199581e-05 1.10859655e-04 4.44152451e-05 1.40402844e-05 5.76312979e-05 8.05680592e-05 9.56332369e-06 5.04034830e-05 1.82464993e-04 3.29382514e-05 7.66808477e-04 4.73127328e-04 4.73127328e-04 3.33740010e-04 5.13488019e-05 4.53816494e-05 4.40724417e-04 6.30730265e-04 1.16425242e-04 3.72569359e-04 1.35526492e-04 4.68903001e-05 1.05388666e-04 5.77907331e-05 1.81423146e-06 3.47577533e-08 1.65969603e-09 + 2024 02 28 12 00 00 3.86280635e-03 2.34426224e-03 1.30213921e-03 9.46006840e-04 7.00348188e-04 3.82223760e-04 2.80372201e-04 2.42860784e-04 5.09910860e-04 1.44027722e-04 9.19241000e-03 5.54969236e-03 2.50692244e-04 7.26983960e-05 4.65963864e-05 2.39710704e-04 3.90556350e-05 6.73011527e-05 2.15564622e-04 7.92798062e-05 1.50970860e-04 1.84018238e-04 1.05997299e-04 9.62798329e-05 5.27446973e-06 9.64877472e-06 6.02608670e-06 3.13049781e-05 4.94929809e-06 1.78519344e-05 1.08072441e-04 3.89472116e-05 1.96476016e-05 1.10728316e-04 4.42481163e-05 1.40745484e-05 5.70871036e-05 8.01657379e-05 9.93528301e-06 5.07664254e-05 1.82991223e-04 3.28539259e-05 7.69257412e-04 4.71558748e-04 4.71558748e-04 3.29591166e-04 4.96607157e-05 4.52132168e-05 4.34683963e-04 6.25509511e-04 1.15498701e-04 3.72938926e-04 1.43018766e-04 4.96122291e-05 1.11663239e-04 6.19095861e-05 1.99506835e-06 4.37923511e-08 2.46869725e-09 + 2024 02 29 12 00 00 3.84462540e-03 2.33400675e-03 1.29550055e-03 9.40721876e-04 6.95483271e-04 3.79822957e-04 2.78088358e-04 2.40391321e-04 5.03434949e-04 1.42654139e-04 9.03405007e-03 5.44346981e-03 2.48375570e-04 7.23985406e-05 4.62951813e-05 2.40315873e-04 3.92061716e-05 6.75997930e-05 2.15507501e-04 7.91867031e-05 1.51363413e-04 1.84764508e-04 1.06188927e-04 9.58189649e-05 5.28441342e-06 9.31284376e-06 6.02165383e-06 3.12912656e-05 4.94635970e-06 1.78541790e-05 1.08426171e-04 3.90056317e-05 1.97903690e-05 1.10368824e-04 4.40814183e-05 1.40554010e-05 5.72711988e-05 8.02183361e-05 9.67216329e-06 5.02889830e-05 1.81514012e-04 3.27679882e-05 7.64621572e-04 4.69991798e-04 4.69991798e-04 3.30435692e-04 5.04954543e-05 4.50420455e-05 4.36936572e-04 6.26243712e-04 1.15661156e-04 3.68840425e-04 1.34036387e-04 4.63456281e-05 1.04116908e-04 5.67653628e-05 1.75520580e-06 3.07137206e-08 1.26829445e-09 + 2024 03 01 12 00 00 3.84061602e-03 2.33102024e-03 1.29364092e-03 9.39445452e-04 6.94411569e-04 3.79363701e-04 2.77612759e-04 2.39862884e-04 5.02025177e-04 1.42207470e-04 9.00149753e-03 5.42223603e-03 2.47754182e-04 7.22271705e-05 4.62080617e-05 2.43038694e-04 3.97408323e-05 6.86695683e-05 2.15524457e-04 7.89695303e-05 1.53406321e-04 1.87515682e-04 1.07212770e-04 9.60086467e-05 5.31929909e-06 9.25106797e-06 6.02144901e-06 3.13844998e-05 4.94091000e-06 1.79192505e-05 1.09829371e-04 3.92135116e-05 2.03140095e-05 1.10390020e-04 4.37661307e-05 1.40546108e-05 5.82806755e-05 8.16724728e-05 9.62391932e-06 5.02666433e-05 1.82745165e-04 3.25791450e-05 7.62633420e-04 4.66993963e-04 4.66993963e-04 3.37612643e-04 5.36442501e-05 4.46727092e-05 4.46952369e-04 6.35646535e-04 1.16668196e-04 3.73776394e-04 1.27744382e-04 4.40575159e-05 9.88314488e-05 5.31672533e-05 1.58778266e-06 2.16104866e-08 4.33394565e-10 + 2024 03 02 12 00 00 3.84208689e-03 2.33121385e-03 1.29383127e-03 9.39767011e-04 6.94793471e-04 3.79617048e-04 2.77820249e-04 2.40074471e-04 5.02563156e-04 1.42191536e-04 9.01648225e-03 5.43286614e-03 2.47843722e-04 7.21561653e-05 4.62101073e-05 2.46370739e-04 4.03756450e-05 6.99409691e-05 2.15732199e-04 7.88026780e-05 1.55900961e-04 1.90795843e-04 1.08472998e-04 9.65358004e-05 5.36066109e-06 9.34091513e-06 6.02481050e-06 3.15171694e-05 4.93690786e-06 1.80065847e-05 1.11527834e-04 3.94603849e-05 2.09379839e-05 1.10722955e-04 4.35335794e-05 1.40692820e-05 5.95470068e-05 8.35988234e-05 9.69450339e-06 5.05771041e-05 1.85055193e-04 3.24355904e-05 7.63705682e-04 4.64777136e-04 4.64777136e-04 3.47150920e-04 5.74078294e-05 4.43928962e-05 4.59458542e-04 6.48123240e-04 1.18092943e-04 3.83688982e-04 1.25616994e-04 4.32839424e-05 9.70448136e-05 5.19543438e-05 1.53158298e-06 1.85723120e-08 1.55181024e-10 + 2024 03 03 12 00 00 3.84639664e-03 2.33461837e-03 1.29593696e-03 9.41253430e-04 6.96067980e-04 3.80109639e-04 2.78341888e-04 2.40662801e-04 5.04101181e-04 1.42720871e-04 9.05003878e-03 5.45411482e-03 2.48555413e-04 7.23937773e-05 4.63125682e-05 2.48148704e-04 4.06842068e-05 7.05587561e-05 2.16709736e-04 7.91259576e-05 1.57134220e-04 1.92387934e-04 1.09135834e-04 9.66862954e-05 5.38077584e-06 9.24517371e-06 6.02604741e-06 3.16024738e-05 4.94422748e-06 1.80688330e-05 1.12411239e-04 3.95803741e-05 2.12409024e-05 1.11449461e-04 4.39614087e-05 1.40746692e-05 6.02755233e-05 8.45219949e-05 9.61955884e-06 5.08056555e-05 1.87014737e-04 3.27101443e-05 7.69126092e-04 4.68868949e-04 4.68868949e-04 3.53891048e-04 5.92329830e-05 4.49257874e-05 4.67385857e-04 6.56163970e-04 1.19640527e-04 3.86405442e-04 1.21577293e-04 4.18156549e-05 9.36568467e-05 4.96917730e-05 1.42940901e-06 1.32459366e-08 0.00000000e+00 + 2024 03 04 12 00 00 3.86208970e-03 2.34507489e-03 1.30254499e-03 9.46220877e-04 7.00496772e-04 3.82058970e-04 2.80284939e-04 2.42805494e-04 5.09703874e-04 1.44245178e-04 9.17998939e-03 5.53910360e-03 2.50827342e-04 7.29446719e-05 4.66487328e-05 2.49078145e-04 4.08016756e-05 7.07944855e-05 2.18107859e-04 7.97153683e-05 1.57727374e-04 1.93000008e-04 1.09496008e-04 9.67534980e-05 5.38840795e-06 9.13074909e-06 6.02584405e-06 3.16754040e-05 4.95770619e-06 1.81228839e-05 1.12823955e-04 3.96260788e-05 2.13572057e-05 1.12473147e-04 4.47484315e-05 1.40737538e-05 6.07199120e-05 8.49589001e-05 9.52994378e-06 5.10737666e-05 1.89652412e-04 3.32118128e-05 7.77529753e-04 4.76391753e-04 4.76391753e-04 3.59185576e-04 5.99387102e-05 4.59002069e-05 4.72702870e-04 6.62301411e-04 1.21221980e-04 3.86001545e-04 1.17844948e-04 4.04591930e-05 9.05274521e-05 4.76082882e-05 1.33578483e-06 9.15062088e-09 0.00000000e+00 + 2024 03 05 12 00 00 3.86940607e-03 2.34930732e-03 1.30527370e-03 9.48358049e-04 7.02446140e-04 3.83014114e-04 2.81198749e-04 2.43795146e-04 5.12304882e-04 1.44818013e-04 9.24341909e-03 5.58158979e-03 2.51774393e-04 7.30705803e-05 4.67530665e-05 2.48861987e-04 4.07459826e-05 7.06845836e-05 2.18181105e-04 7.97776622e-05 1.57588692e-04 1.92730368e-04 1.09433357e-04 9.67313899e-05 5.38470122e-06 9.11670431e-06 6.02634173e-06 3.16746404e-05 4.95958011e-06 1.81229280e-05 1.12700033e-04 3.96044867e-05 2.13054489e-05 1.12592987e-04 4.48551757e-05 1.40758362e-05 6.06553772e-05 8.48354956e-05 9.51887632e-06 5.11164889e-05 1.90244430e-04 3.32685566e-05 7.78773185e-04 4.77397349e-04 4.77397349e-04 3.58946241e-04 5.96416998e-05 4.60127863e-05 4.72007125e-04 6.61916534e-04 1.21218662e-04 3.84891084e-04 1.17562397e-04 4.03570837e-05 9.02947124e-05 4.74866137e-05 1.33272911e-06 9.15727583e-09 0.00000000e+00 + 2024 03 06 12 00 00 3.85080143e-03 2.33864627e-03 1.29838633e-03 9.42754954e-04 6.97222589e-04 3.80540220e-04 2.78832432e-04 2.41221965e-04 5.05624342e-04 1.43357400e-04 9.08347553e-03 5.47533184e-03 2.49348208e-04 7.26892491e-05 4.64441817e-05 2.47842759e-04 4.05935280e-05 7.03826430e-05 2.17515563e-04 7.95560365e-05 1.56855498e-04 1.91979955e-04 1.09040042e-04 9.63779395e-05 5.37460874e-06 9.03647597e-06 6.02062028e-06 3.15987021e-05 4.95515051e-06 1.80738823e-05 1.12267783e-04 3.95453448e-05 2.11617458e-05 1.11969104e-04 4.45926416e-05 1.40508171e-05 6.02422582e-05 8.42182076e-05 9.45588545e-06 5.06276697e-05 1.87483147e-04 3.30851966e-05 7.72776615e-04 4.74867085e-04 4.74867085e-04 3.54792141e-04 5.88061230e-05 4.56599810e-05 4.67776701e-04 6.56606647e-04 1.20318327e-04 3.79550695e-04 1.13937736e-04 3.90402629e-05 8.72592412e-05 4.54946305e-05 1.24531680e-06 6.23132763e-09 0.00000000e+00 + 2024 03 07 12 00 00 3.82807181e-03 2.32497490e-03 1.28961873e-03 9.35780021e-04 6.90797625e-04 3.77574094e-04 2.75960030e-04 2.38083782e-04 4.97468985e-04 1.41440853e-04 8.89047180e-03 5.34782521e-03 2.46280386e-04 7.21185756e-05 4.60427162e-05 2.44791625e-04 4.00782417e-05 6.93533628e-05 2.16005366e-04 7.90962891e-05 1.54668894e-04 1.89347647e-04 1.07880280e-04 9.58885839e-05 5.34090541e-06 9.10408198e-06 6.01504435e-06 3.14350487e-05 4.94539236e-06 1.79593878e-05 1.10813034e-04 3.93450726e-05 2.06602359e-05 1.10709038e-04 4.40183096e-05 1.40264165e-05 5.90101151e-05 8.25763388e-05 9.50879912e-06 4.99506107e-05 1.82739656e-04 3.27001297e-05 7.62996469e-04 4.69352631e-04 4.69352631e-04 3.43530787e-04 5.58064901e-05 4.49160230e-05 4.54849431e-04 6.42417232e-04 1.17902176e-04 3.69844829e-04 1.13485364e-04 3.88766417e-05 8.68855837e-05 4.52908590e-05 1.23942182e-06 6.17934433e-09 0.00000000e+00 + 2024 03 08 12 00 00 3.83714422e-03 2.33013338e-03 1.29295397e-03 9.38405038e-04 6.93198257e-04 3.78763808e-04 2.77094134e-04 2.39309875e-04 5.00693998e-04 1.42132183e-04 8.96954255e-03 5.40093146e-03 2.47439930e-04 7.22664847e-05 4.61859136e-05 2.42112853e-04 3.95622541e-05 6.83232734e-05 2.15649543e-04 7.91470753e-05 1.52761532e-04 1.86718190e-04 1.06912500e-04 9.52631349e-05 5.30712823e-06 8.93868128e-06 6.00798630e-06 3.13272592e-05 4.94708547e-06 1.78899203e-05 1.09442365e-04 3.91445530e-05 2.01591043e-05 1.10303609e-04 4.41139768e-05 1.39955722e-05 5.79933090e-05 8.09509591e-05 9.37910590e-06 4.94221380e-05 1.81561412e-04 3.27477581e-05 7.59824093e-04 4.70249634e-04 4.70249634e-04 3.35489604e-04 5.28145407e-05 4.50113235e-05 4.44542915e-04 6.32165497e-04 1.16566125e-04 3.56775801e-04 1.08229097e-04 3.69667174e-05 8.24812094e-05 4.23804874e-05 1.11023302e-06 1.78461903e-09 0.00000000e+00 + 2024 03 09 12 00 00 3.85508698e-03 2.34261148e-03 1.30079497e-03 9.44164878e-04 6.98261392e-04 3.80941369e-04 2.79295506e-04 2.41748357e-04 5.07087621e-04 1.43978842e-04 9.11642430e-03 5.49653508e-03 2.50117813e-04 7.29675113e-05 4.65697310e-05 2.41808426e-04 3.94211762e-05 6.80456345e-05 2.17316100e-04 7.99649570e-05 1.52402791e-04 1.86043256e-04 1.06804670e-04 9.54358173e-05 5.29770550e-06 8.96402125e-06 6.01065185e-06 3.13653271e-05 4.96594730e-06 1.79175603e-05 1.09214859e-04 3.90898960e-05 2.00293347e-05 1.11574876e-04 4.52144042e-05 1.40070333e-05 5.80126598e-05 8.08445912e-05 9.39890379e-06 4.99403208e-05 1.83900898e-04 3.34452023e-05 7.72073716e-04 4.80762916e-04 4.80762916e-04 3.38364794e-04 5.20769274e-05 4.63668373e-05 4.45821330e-04 6.34853087e-04 1.17981056e-04 3.56804612e-04 1.10991690e-04 3.79716183e-05 8.48038295e-05 4.39773434e-05 1.18565035e-06 4.56397800e-09 0.00000000e+00 + 2024 03 10 12 00 00 3.88012627e-03 2.35590280e-03 1.30948442e-03 9.51325085e-04 7.04975745e-04 3.84329095e-04 2.82474905e-04 2.45170849e-04 5.16031937e-04 1.45706907e-04 9.33718002e-03 5.64526208e-03 2.53183949e-04 7.32577927e-05 4.69439850e-05 2.43623820e-04 3.97335854e-05 6.86768908e-05 2.17404162e-04 7.98749679e-05 1.53899659e-04 1.87718729e-04 1.07563887e-04 9.57318378e-05 5.31779951e-06 9.01617241e-06 6.01070205e-06 3.14568639e-05 4.96448083e-06 1.79767833e-05 1.10097090e-04 3.92116286e-05 2.03464893e-05 1.11908320e-04 4.51252068e-05 1.40071468e-05 5.87334991e-05 8.19047903e-05 9.43985870e-06 5.01120949e-05 1.87264181e-04 3.33735021e-05 7.73282839e-04 4.79890965e-04 4.79890965e-04 3.43857475e-04 5.40409994e-05 4.62306780e-05 4.52507677e-04 6.42537037e-04 1.18707488e-04 3.59961350e-04 1.07201925e-04 3.65943897e-05 8.16270115e-05 4.18679902e-05 1.09127723e-06 1.31867637e-09 0.00000000e+00 + 2024 03 11 12 00 00 3.87125249e-03 2.35156552e-03 1.30660755e-03 9.48783699e-04 7.02507314e-04 3.83080288e-04 2.81320857e-04 2.43931730e-04 5.12832026e-04 1.45160608e-04 9.25828962e-03 5.59212528e-03 2.52143472e-04 7.31886087e-05 4.68167183e-05 2.43438639e-04 3.97052063e-05 6.86238927e-05 2.17572791e-04 7.99792819e-05 1.53738270e-04 1.87614376e-04 1.07492690e-04 9.55323090e-05 5.31576952e-06 8.86383568e-06 6.00497406e-06 3.14344187e-05 4.96735520e-06 1.79666954e-05 1.10056221e-04 3.92007554e-05 2.03255593e-05 1.11943681e-04 4.52900684e-05 1.39821335e-05 5.86964632e-05 8.17070183e-05 9.32056864e-06 4.99131030e-05 1.86281496e-04 3.34663229e-05 7.72085562e-04 4.81450837e-04 4.81450837e-04 3.43621498e-04 5.39500732e-05 4.64135373e-05 4.52445909e-04 6.42192783e-04 1.18848377e-04 3.59051161e-04 1.06331246e-04 3.62779907e-05 8.08972613e-05 4.13843451e-05 1.06970404e-06 5.79869663e-10 0.00000000e+00 + 2024 03 12 12 00 00 3.86522233e-03 2.34755980e-03 1.30407454e-03 9.46807952e-04 7.00705514e-04 3.82315456e-04 2.80559147e-04 2.43088113e-04 5.10656612e-04 1.44568664e-04 9.20896783e-03 5.56023791e-03 2.51260965e-04 7.29586204e-05 4.66855762e-05 2.43869108e-04 3.98048374e-05 6.88267814e-05 2.17082997e-04 7.97264103e-05 1.54107576e-04 1.88166058e-04 1.07658986e-04 9.57611068e-05 5.32210470e-06 9.02705360e-06 6.00694984e-06 3.14403351e-05 4.96211178e-06 1.79657477e-05 1.10313724e-04 3.92396469e-05 2.04295618e-05 1.11723654e-04 4.49806743e-05 1.39906551e-05 5.88467206e-05 8.20943247e-05 9.44873973e-06 4.99874572e-05 1.85839619e-04 3.32555559e-05 7.70251958e-04 4.78475774e-04 4.78475774e-04 3.44172317e-04 5.46081574e-05 4.60069889e-05 4.53543755e-04 6.43121969e-04 1.18631197e-04 3.62799806e-04 1.08809341e-04 3.71786082e-05 8.29749562e-05 4.27670567e-05 1.13179655e-06 2.72583804e-09 0.00000000e+00 + 2024 03 13 12 00 00 3.87150471e-03 2.34962548e-03 1.30556109e-03 9.48295846e-04 7.02226213e-04 3.83264463e-04 2.81381764e-04 2.43941796e-04 5.12895547e-04 1.44736088e-04 9.26958606e-03 5.60272560e-03 2.51817604e-04 7.28067234e-05 4.67228320e-05 2.42852702e-04 3.96303047e-05 6.84778439e-05 2.16008347e-04 7.93090090e-05 1.53496138e-04 1.87270999e-04 1.07310140e-04 9.54507895e-05 5.31070327e-06 8.92051903e-06 6.00839849e-06 3.13803363e-05 4.95310233e-06 1.79283830e-05 1.09792040e-04 3.91717971e-05 2.02591225e-05 1.11002923e-04 4.44513687e-05 1.39969125e-05 5.83904683e-05 8.14300923e-05 9.36551587e-06 4.97284851e-05 1.85322090e-04 3.29047209e-05 7.64608374e-04 4.73398948e-04 4.73398948e-04 3.39454833e-04 5.35858155e-05 4.53283545e-05 4.48160864e-04 6.37679063e-04 1.17275153e-04 3.58828818e-04 1.07874830e-04 3.68385949e-05 8.21887103e-05 4.22220020e-05 1.10573910e-06 1.75157311e-09 0.00000000e+00 + 2024 03 14 12 00 00 3.84980307e-03 2.33523907e-03 1.29646243e-03 9.41362616e-04 6.95992616e-04 3.80546038e-04 2.78676011e-04 2.40955166e-04 5.05121173e-04 1.42633255e-04 9.09034520e-03 5.48584796e-03 2.48674370e-04 7.20374601e-05 4.62686953e-05 2.41663395e-04 3.94879549e-05 6.81924401e-05 2.14030477e-04 7.84805219e-05 1.52754906e-04 1.86532149e-04 1.06856974e-04 9.53585920e-05 5.30144243e-06 9.15186902e-06 6.00746353e-06 3.12880871e-05 4.93479856e-06 1.78559446e-05 1.09282032e-04 3.91164242e-05 2.01186587e-05 1.09583156e-04 4.33786947e-05 1.39928336e-05 5.78179734e-05 8.09351949e-05 9.54713541e-06 4.92387381e-05 1.81690215e-04 3.22048640e-05 7.53099947e-04 4.63124784e-04 4.63124784e-04 3.32424413e-04 5.27358206e-05 4.39723633e-05 4.41206729e-04 6.29280421e-04 1.15108466e-04 3.55939609e-04 1.07866138e-04 3.68345027e-05 8.21747103e-05 4.21590720e-05 1.09902521e-06 1.33831008e-09 0.00000000e+00 + 2024 03 15 12 00 00 3.83680331e-03 2.32501347e-03 1.29013311e-03 9.36842580e-04 6.92085944e-04 3.79048723e-04 2.77091895e-04 2.39166588e-04 5.00464590e-04 1.41039324e-04 8.98936143e-03 5.42209260e-03 2.46525628e-04 7.12988684e-05 4.59278525e-05 2.41956845e-04 3.96180083e-05 6.84521219e-05 2.11953840e-04 7.74928310e-05 1.53156624e-04 1.87195451e-04 1.06973734e-04 9.54975973e-05 5.30995312e-06 9.37176592e-06 6.01372012e-06 3.12554605e-05 4.91294450e-06 1.78262845e-05 1.09493900e-04 3.91669659e-05 2.02450596e-05 1.08281403e-04 4.20982105e-05 1.40200616e-05 5.77875553e-05 8.12543757e-05 9.71981935e-06 4.90554588e-05 1.79898559e-04 3.13702563e-05 7.42847984e-04 4.50861314e-04 4.50861314e-04 3.29507684e-04 5.34909603e-05 4.23551188e-05 4.39369745e-04 6.26377445e-04 1.13400592e-04 3.58888423e-04 1.09162854e-04 3.73046087e-05 8.32535843e-05 4.28106561e-05 1.12347010e-06 1.95867926e-09 0.00000000e+00 + 2024 03 16 12 00 00 3.82841699e-03 2.31878595e-03 1.28625193e-03 9.34005965e-04 6.89598153e-04 3.78051414e-04 2.76060478e-04 2.38011275e-04 4.97459187e-04 1.40087257e-04 8.92280048e-03 5.37958890e-03 2.45199874e-04 7.08799938e-05 4.57102973e-05 2.44730732e-04 4.01765836e-05 6.95716066e-05 2.11278079e-04 7.69670762e-05 1.55283625e-04 1.90090144e-04 1.08011873e-04 9.60414976e-05 5.34631181e-06 9.40262034e-06 6.02240580e-06 3.13349803e-05 4.90133316e-06 1.78820388e-05 1.10949984e-04 3.93842260e-05 2.07954930e-05 1.08123279e-04 4.14177193e-05 1.40578573e-05 5.87942984e-05 8.28439636e-05 9.74422073e-06 4.95396984e-05 1.80774020e-04 3.09261697e-05 7.40177465e-04 4.44343407e-04 4.44343407e-04 3.36135934e-04 5.68180054e-05 4.14947048e-05 4.48689671e-04 6.35844519e-04 1.13893273e-04 3.76886945e-04 1.19938139e-04 4.12203024e-05 9.22851690e-05 4.87999029e-05 1.39087996e-06 1.13701425e-08 0.00000000e+00 + 2024 03 17 12 00 00 3.83387256e-03 2.32466053e-03 1.28977327e-03 9.36208815e-04 6.91327284e-04 3.78539080e-04 2.76677411e-04 2.38745324e-04 4.99394985e-04 1.41078368e-04 8.95941511e-03 5.40083051e-03 2.46354217e-04 7.14539371e-05 4.59366888e-05 2.47701914e-04 4.06598585e-05 7.05396931e-05 2.13613769e-04 7.78412737e-05 1.57210635e-04 1.92589255e-04 1.09077411e-04 9.68776069e-05 5.37779197e-06 9.54843345e-06 6.03461885e-06 3.15051815e-05 4.92111176e-06 1.79986761e-05 1.12396967e-04 3.95721785e-05 2.12708415e-05 1.10034774e-04 4.25738981e-05 1.41109907e-05 6.00664689e-05 8.46623909e-05 9.85860097e-06 5.06989608e-05 1.84587212e-04 3.16684775e-05 7.57935970e-04 4.55401652e-04 4.55401652e-04 3.49333262e-04 5.96867467e-05 4.29354026e-05 4.62967121e-04 6.51356729e-04 1.17174430e-04 3.91286341e-04 1.27110956e-04 4.38269237e-05 9.82976044e-05 5.27898554e-05 1.56923130e-06 2.05287165e-08 3.32385142e-10 + 2024 03 18 12 00 00 3.88080277e-03 2.35546263e-03 1.30928204e-03 9.51048623e-04 7.04653246e-04 3.84422321e-04 2.82517814e-04 2.45180669e-04 5.16184177e-04 1.45551926e-04 9.34909331e-03 5.65581433e-03 2.53089140e-04 7.30426973e-05 4.68964654e-05 2.52996470e-04 4.14600712e-05 7.21433724e-05 2.18040875e-04 7.95116415e-05 1.60747999e-04 1.96735162e-04 1.11037435e-04 9.83806315e-05 5.42988382e-06 9.75257863e-06 6.06312715e-06 3.18440942e-05 4.95838722e-06 1.82332143e-05 1.14838442e-04 3.98834120e-05 2.20592206e-05 1.13787346e-04 4.47560480e-05 1.42350604e-05 6.23370460e-05 8.78416663e-05 1.00188438e-05 5.30645773e-05 1.95010460e-04 3.30825773e-05 7.93916697e-04 4.76289960e-04 4.76289960e-04 3.73637128e-04 6.44512009e-05 4.56772395e-05 4.88121724e-04 6.80149355e-04 1.23146419e-04 4.15041711e-04 1.38712740e-04 4.80434932e-05 1.08025721e-04 5.92712480e-05 1.86081545e-06 3.56451494e-08 1.70065864e-09 + 2024 03 19 12 00 00 3.89021227e-03 2.36381440e-03 1.31438390e-03 9.54534850e-04 7.07579307e-04 3.85426701e-04 2.83642105e-04 2.46474681e-04 5.19555453e-04 1.46903295e-04 9.41845945e-03 5.69831841e-03 2.54802360e-04 7.37454434e-05 4.71892295e-05 2.53081388e-04 4.13960370e-05 7.20118638e-05 2.20216995e-04 8.05203221e-05 1.60535797e-04 1.96368328e-04 1.11022065e-04 9.84654001e-05 5.42586531e-06 9.69023022e-06 6.06820104e-06 3.19006578e-05 4.98061636e-06 1.82769372e-05 1.14786584e-04 3.98583739e-05 2.19903566e-05 1.15238975e-04 4.60590905e-05 1.42572171e-05 6.24848387e-05 8.78511216e-05 9.97023380e-06 5.35962605e-05 1.97117539e-04 3.39341874e-05 8.08603416e-04 4.88772383e-04 4.88772383e-04 3.78095615e-04 6.40058133e-05 4.73269552e-05 4.91330597e-04 6.84104204e-04 1.25118825e-04 4.13625520e-04 1.38159510e-04 4.78413287e-05 1.07553961e-04 5.88940455e-05 1.83929028e-06 3.41816708e-08 1.55923559e-09 + 2024 03 20 12 00 00 3.89266302e-03 2.36625028e-03 1.31586276e-03 9.55472852e-04 7.08324078e-04 3.85650112e-04 2.83921681e-04 2.46805678e-04 5.20437027e-04 1.47308485e-04 9.43595972e-03 5.70893064e-03 2.55295391e-04 7.39870555e-05 4.72846089e-05 2.54951307e-04 4.17162839e-05 7.26513914e-05 2.21331859e-04 8.08820652e-05 1.61792194e-04 1.98002532e-04 1.11696563e-04 9.89953804e-05 5.44681934e-06 9.76426891e-06 6.07497786e-06 3.19989801e-05 4.98796144e-06 1.83437550e-05 1.15694258e-04 3.99828336e-05 2.23017531e-05 1.16148791e-04 4.64935409e-05 1.42868201e-05 6.32487664e-05 8.89656647e-05 1.00286103e-05 5.42821663e-05 1.99202505e-04 3.42344050e-05 8.16553962e-04 4.92955511e-04 4.92955511e-04 3.85422933e-04 6.58668519e-05 4.79052163e-05 4.99621729e-04 6.93220010e-04 1.26804335e-04 4.25250872e-04 1.45972070e-04 5.06800950e-05 1.14100218e-04 6.32189258e-05 2.03120773e-06 4.39289579e-08 2.43630822e-09 + 2024 03 21 12 00 00 3.90971618e-03 2.37918415e-03 1.32390547e-03 9.61339122e-04 7.13464052e-04 3.87660432e-04 2.86020244e-04 2.49166258e-04 5.26564117e-04 1.49306141e-04 9.56994657e-03 5.79394475e-03 2.58044673e-04 7.48902923e-05 4.77096237e-05 2.56513359e-04 4.18984244e-05 7.30132568e-05 2.24132747e-04 8.20595538e-05 1.62615212e-04 1.98911447e-04 1.12220732e-04 9.94435260e-05 5.45882431e-06 9.67891247e-06 6.09074414e-06 3.21252297e-05 5.01343493e-06 1.84401787e-05 1.16337618e-04 4.00535442e-05 2.24754767e-05 1.18209960e-04 4.79897717e-05 1.43555459e-05 6.39780073e-05 8.97980341e-05 9.96190865e-06 5.54707753e-05 2.03503240e-04 3.52246134e-05 8.37471992e-04 5.07304724e-04 5.07304724e-04 3.95434492e-04 6.68877736e-05 4.98209090e-05 5.08936674e-04 7.04146159e-04 1.29894574e-04 4.34014960e-04 1.53021070e-04 5.32412751e-05 1.20005667e-04 6.71122838e-05 2.20338006e-06 5.26272970e-08 3.21778231e-09 + 2024 03 22 12 00 00 3.93967675e-03 2.39941248e-03 1.33666993e-03 9.71045723e-04 7.22182818e-04 3.91391290e-04 2.89757887e-04 2.53304955e-04 5.37317247e-04 1.52292730e-04 9.81551193e-03 5.95333464e-03 2.62455661e-04 7.60425667e-05 4.83712253e-05 2.60031973e-04 4.24167636e-05 7.40504009e-05 2.27494485e-04 8.33466067e-05 1.64885182e-04 2.01578862e-04 1.13492634e-04 1.00465228e-04 5.49264441e-06 9.83434365e-06 6.11360520e-06 3.23577599e-05 5.04125601e-06 1.86023499e-05 1.17924447e-04 4.02550766e-05 2.29831698e-05 1.20901187e-04 4.96239983e-05 1.44551639e-05 6.54854857e-05 9.19197973e-05 1.00839279e-05 5.71807196e-05 2.10609197e-04 3.63067578e-05 8.64482929e-04 5.22978138e-04 5.22978138e-04 4.12277358e-04 6.99408469e-05 5.19143417e-05 5.26100222e-04 7.23650274e-04 1.34215682e-04 4.49134336e-04 1.60199547e-04 5.58493812e-05 1.26018748e-04 7.10699689e-05 2.37791107e-06 6.14070927e-08 4.00557774e-09 + 2024 03 23 12 00 00 3.96727544e-03 2.41471350e-03 1.34660893e-03 9.79266912e-04 7.29914186e-04 3.95104780e-04 2.93285133e-04 2.57130893e-04 5.47240796e-04 1.54356947e-04 1.00546319e-02 6.11272343e-03 2.65977268e-04 7.65362826e-05 4.88141649e-05 2.63552663e-04 4.30202432e-05 7.52579654e-05 2.28551481e-04 8.35414918e-05 1.67485073e-04 2.04685190e-04 1.14832876e-04 1.02056595e-04 5.53201571e-06 1.07092259e-05 6.12772637e-06 3.25822240e-05 5.04435084e-06 1.87248145e-05 1.19586324e-04 4.04897175e-05 2.35743821e-05 1.22151301e-04 4.98128997e-05 1.45167665e-05 6.68868544e-05 9.45675976e-05 1.07699147e-05 5.84376406e-05 2.16088928e-04 3.64613661e-05 8.77263136e-04 5.24828304e-04 5.24828304e-04 4.24566765e-04 7.34968460e-05 5.22074930e-05 5.39902086e-04 7.39211686e-04 1.36388873e-04 4.65543337e-04 1.67530418e-04 5.85128462e-05 1.32159393e-04 7.51108300e-05 2.55605302e-06 7.03640751e-08 4.80915361e-09 + 2024 03 24 12 00 00 3.96632134e-03 2.41515383e-03 1.34679890e-03 9.79322520e-04 7.29922278e-04 3.94918634e-04 2.93165848e-04 2.57033739e-04 5.46940461e-04 1.54503017e-04 1.00414577e-02 6.10212535e-03 2.66038535e-04 7.67315345e-05 4.88532147e-05 2.56526085e-04 4.16953262e-05 7.25959952e-05 2.28209047e-04 8.38939042e-05 1.62219458e-04 1.97746408e-04 1.12170019e-04 1.00410638e-04 5.44608520e-06 1.01647369e-05 6.11326759e-06 3.22932270e-05 5.05100397e-06 1.85429681e-05 1.15967830e-04 3.99741111e-05 2.22568080e-05 1.21151452e-04 5.02098876e-05 1.44540070e-05 6.41617987e-05 9.01592841e-05 1.03430604e-05 5.72619436e-05 2.11143371e-04 3.67496978e-05 8.70617004e-04 5.28668892e-04 5.28668892e-04 4.03507759e-04 6.54723030e-05 5.27601514e-05 5.13193743e-04 7.11938253e-04 1.33295659e-04 4.37577644e-04 1.62765873e-04 5.67795483e-05 1.28152369e-04 7.23457382e-05 2.42474812e-06 6.30297251e-08 4.13169658e-09 + 2024 03 25 12 00 00 3.94636009e-03 2.40389217e-03 1.33951059e-03 9.73541964e-04 7.24612825e-04 3.92285813e-04 2.90662979e-04 2.54329415e-04 5.39839927e-04 1.52997796e-04 9.86741941e-03 5.98528348e-03 2.63499867e-04 7.64202232e-05 4.85451003e-05 2.52602380e-04 4.10161534e-05 7.12299254e-05 2.27451059e-04 8.38062610e-05 1.59333447e-04 1.94173103e-04 1.10682406e-04 9.91546630e-05 5.40210567e-06 9.66145235e-06 6.08965929e-06 3.20926842e-05 5.04778582e-06 1.84165345e-05 1.14047277e-04 3.97097378e-05 2.15787019e-05 1.19916870e-04 5.00292808e-05 1.43514480e-05 6.26092395e-05 8.75226957e-05 9.94868606e-06 5.59211499e-05 2.05858373e-04 3.66650638e-05 8.56740183e-04 5.26982220e-04 5.26982220e-04 3.89748785e-04 6.13288721e-05 5.25893876e-05 4.97748782e-04 6.95206550e-04 1.31016292e-04 4.20998764e-04 1.57523400e-04 5.48726370e-05 1.23745210e-04 6.93189708e-05 2.28202696e-06 5.51306840e-08 3.40382655e-09 + 2024 03 26 12 00 00 3.93245962e-03 2.39412029e-03 1.33338102e-03 9.69118788e-04 7.20769921e-04 3.90618111e-04 2.88973043e-04 2.52459246e-04 5.34910224e-04 1.51553939e-04 9.75349301e-03 5.91093898e-03 2.61420434e-04 7.58759176e-05 4.82298291e-05 2.52000422e-04 4.09772591e-05 7.11488305e-05 2.26069949e-04 8.31756508e-05 1.59033470e-04 1.93936825e-04 1.10468685e-04 9.88754603e-05 5.39972207e-06 9.73020578e-06 6.07780785e-06 3.20352529e-05 5.03255942e-06 1.83686724e-05 1.13809113e-04 3.96944757e-05 2.15346576e-05 1.18676458e-04 4.91450250e-05 1.43000318e-05 6.22798357e-05 8.71908735e-05 1.00027260e-05 5.50950844e-05 2.03151812e-04 3.61216546e-05 8.43806728e-04 5.18556405e-04 5.18556405e-04 3.84597044e-04 6.10337302e-05 5.15296648e-05 4.93532340e-04 6.89525006e-04 1.29457969e-04 4.14304230e-04 1.49955722e-04 5.21203787e-05 1.17386408e-04 6.49762500e-05 2.07896923e-06 4.40170886e-08 2.38275817e-09 + 2024 03 27 12 00 00 3.90495311e-03 2.37556407e-03 1.32167457e-03 9.60415335e-04 7.13063158e-04 3.87231183e-04 2.85584231e-04 2.48719900e-04 5.25108578e-04 1.48841831e-04 9.52610679e-03 5.76221980e-03 2.57410124e-04 7.48997175e-05 4.76627039e-05 2.51142004e-04 4.09378175e-05 7.10665656e-05 2.23687466e-04 8.20984540e-05 1.58618663e-04 1.93697005e-04 1.10153835e-04 9.83533491e-05 5.39730609e-06 9.60557591e-06 6.06403992e-06 3.19236271e-05 5.00749811e-06 1.82908603e-05 1.13506242e-04 3.96789954e-05 2.14899585e-05 1.16695106e-04 4.76842426e-05 1.42402539e-05 6.17882470e-05 8.65629786e-05 9.90518893e-06 5.40104514e-05 1.98544723e-04 3.52012663e-05 8.23176750e-04 5.04607521e-04 5.04607521e-04 3.76654154e-04 6.07340247e-05 4.97397035e-05 4.87137905e-04 6.81227185e-04 1.26933709e-04 4.10548219e-04 1.46580930e-04 5.08923848e-05 1.14546189e-04 6.30004961e-05 1.98404030e-06 3.86345832e-08 1.88367526e-09 + 2024 03 28 12 00 00 3.87864253e-03 2.35679065e-03 1.30991721e-03 9.51842319e-04 7.05560747e-04 3.84071906e-04 2.82363092e-04 2.45139275e-04 5.15728741e-04 1.46032952e-04 9.31280953e-03 5.62412031e-03 2.53402513e-04 7.37753207e-05 4.70511816e-05 2.53812505e-04 4.15686867e-05 7.23299163e-05 2.21292103e-04 8.07490549e-05 1.60864872e-04 1.96955069e-04 1.11175298e-04 9.87198574e-05 5.43841816e-06 9.83340942e-06 6.05916139e-06 3.19584983e-05 4.97656110e-06 1.83022618e-05 1.15009394e-04 3.99243261e-05 2.21097740e-05 1.15083850e-04 4.58782626e-05 1.42191333e-05 6.26438912e-05 8.82017655e-05 1.00839869e-05 5.35297463e-05 1.96428814e-04 3.40520783e-05 8.05271135e-04 4.87347646e-04 4.87347646e-04 3.78903766e-04 6.44710730e-05 4.75071662e-05 4.93760234e-04 6.86081623e-04 1.25775170e-04 4.20699706e-04 1.45417831e-04 5.04685424e-05 1.13562867e-04 6.22810705e-05 1.94701860e-06 3.63600165e-08 1.66863749e-09 + 2024 03 29 12 00 00 3.85962876e-03 2.34210459e-03 1.30080824e-03 9.45403991e-04 7.00037166e-04 3.81883484e-04 2.80063547e-04 2.42555445e-04 5.08953666e-04 1.43771762e-04 9.16298039e-03 5.52851446e-03 2.50322724e-04 7.27710222e-05 4.65600820e-05 2.52794109e-04 4.15035232e-05 7.21974648e-05 2.18356075e-04 7.94348773e-05 1.60442046e-04 1.96596942e-04 1.10837004e-04 9.83239235e-05 5.43426431e-06 9.86675659e-06 6.04521483e-06 3.18465147e-05 4.94666238e-06 1.82168972e-05 1.14621761e-04 3.98989039e-05 2.20421964e-05 1.12854362e-04 4.41314769e-05 1.41585246e-05 6.20760169e-05 8.76051366e-05 1.01102654e-05 5.24155963e-05 1.92223025e-04 3.29347880e-05 7.82542734e-04 4.70645959e-04 4.70645959e-04 3.69697803e-04 6.40455866e-05 4.53378103e-05 4.85920607e-04 6.76572735e-04 1.22686031e-04 4.16499130e-04 1.42083723e-04 4.92556892e-05 1.10759309e-04 6.03500632e-05 1.85557444e-06 3.12704685e-08 1.19896510e-09 + 2024 03 30 12 00 00 3.82388722e-03 2.31781437e-03 1.28549768e-03 9.33939785e-04 6.89838253e-04 3.77474247e-04 2.75640135e-04 2.37663100e-04 4.96178977e-04 1.40195857e-04 8.86928736e-03 5.33728004e-03 2.45062268e-04 7.14311431e-05 4.57993135e-05 2.49828736e-04 4.11096349e-05 7.14063353e-05 2.14671500e-04 7.79271009e-05 1.58575106e-04 1.94536978e-04 1.09748626e-04 9.72552655e-05 5.40870533e-06 9.83644713e-06 6.02606524e-06 3.16288717e-05 4.91266837e-06 1.80610139e-05 1.13296407e-04 3.97456257e-05 2.16509652e-05 1.09765915e-04 4.21435660e-05 1.40752352e-05 6.07062124e-05 8.58522131e-05 1.00865334e-05 5.04692453e-05 1.84815088e-04 3.16554680e-05 7.53783982e-04 4.51628584e-04 4.51628584e-04 3.53456277e-04 6.16652134e-05 4.28554747e-05 4.70125734e-04 6.57135772e-04 1.18236521e-04 3.94575294e-04 1.22990644e-04 4.23147798e-05 9.47375516e-05 4.95782991e-05 1.36393508e-06 7.31193666e-09 0.00000000e+00 + 2024 03 31 12 00 00 3.81535856e-03 2.31123891e-03 1.28141813e-03 9.31017909e-04 6.87308655e-04 3.76483879e-04 2.74600617e-04 2.36493460e-04 4.93128170e-04 1.39179472e-04 8.80238225e-03 5.29478006e-03 2.43676734e-04 7.09730377e-05 4.55809710e-05 2.42640659e-04 3.98274278e-05 6.88337663e-05 2.12207251e-04 7.73254083e-05 1.53457251e-04 1.87861419e-04 1.07079712e-04 9.57292436e-05 5.32537561e-06 9.59719036e-06 6.00730382e-06 3.12991810e-05 4.89926097e-06 1.78369056e-05 1.09695988e-04 3.92467919e-05 2.03823758e-05 1.07471878e-04 4.13585600e-05 1.39935932e-05 5.78286889e-05 8.15894431e-05 9.89898035e-06 4.88196304e-05 1.77967335e-04 3.11462529e-05 7.34845011e-04 4.44113696e-04 4.44113696e-04 3.28196758e-04 5.39716741e-05 4.18682524e-05 4.40117792e-04 6.25739391e-04 1.13236389e-04 3.65589093e-04 1.15945946e-04 3.97539814e-05 8.88272371e-05 4.56140040e-05 1.18366881e-06 9.77127002e-10 0.00000000e+00 + 2024 04 01 12 00 00 3.80384669e-03 2.30408963e-03 1.27685430e-03 9.27437651e-04 6.84035898e-04 3.75001109e-04 2.73151789e-04 2.34905110e-04 4.88998538e-04 1.38162371e-04 8.70548350e-03 5.23102656e-03 2.42086072e-04 7.06432107e-05 4.53620296e-05 2.38540691e-04 3.91099951e-05 6.73958799e-05 2.10885554e-04 7.70243001e-05 1.50542762e-04 1.84143299e-04 1.05565175e-04 9.46051793e-05 5.27867705e-06 9.27887741e-06 5.98755760e-06 3.10966998e-05 4.89280719e-06 1.77034309e-05 1.07691901e-04 3.89677472e-05 1.96753725e-05 1.06090790e-04 4.09791071e-05 1.39076306e-05 5.62078183e-05 7.90195109e-05 9.64940482e-06 4.75279725e-05 1.73228547e-04 3.08935327e-05 7.20983641e-04 4.40472551e-04 4.40472551e-04 3.13613589e-04 4.96981025e-05 4.13796573e-05 4.23382199e-04 6.07853531e-04 1.10466018e-04 3.46812224e-04 1.08415228e-04 3.70168920e-05 8.25118886e-05 4.13997444e-05 9.93597672e-07 0.00000000e+00 0.00000000e+00 + 2024 04 02 12 00 00 3.78700739e-03 2.29421550e-03 1.27049831e-03 9.22343781e-04 6.79325607e-04 3.72785683e-04 2.71021180e-04 2.32584720e-04 4.82962137e-04 1.36797446e-04 8.56134767e-03 5.13540134e-03 2.39858288e-04 7.02704828e-05 4.50778698e-05 2.35674875e-04 3.86217172e-05 6.64174149e-05 2.09865217e-04 7.67696125e-05 1.48479830e-04 1.81614331e-04 1.04489181e-04 9.35759177e-05 5.24688840e-06 8.83087559e-06 5.97384751e-06 3.09314849e-05 4.88732621e-06 1.76034824e-05 1.06317811e-04 3.87778360e-05 1.91944462e-05 1.04972976e-04 4.06570092e-05 1.38479314e-05 5.50577934e-05 7.70519141e-05 9.29833332e-06 4.65172844e-05 1.69090125e-04 3.06795991e-05 7.09543596e-04 4.37382516e-04 4.37382516e-04 3.03120006e-04 4.67923557e-05 4.09659231e-05 4.11687990e-04 5.94989524e-04 1.08474113e-04 3.34057643e-04 1.03335802e-04 3.51709075e-05 7.82534105e-05 3.85675878e-05 8.66552119e-07 0.00000000e+00 0.00000000e+00 + 2024 04 03 12 00 00 3.79113859e-03 2.29736861e-03 1.27245654e-03 9.23706689e-04 6.80482005e-04 3.73258559e-04 2.71515888e-04 2.33138175e-04 4.84425290e-04 1.37277426e-04 8.59431020e-03 5.15664034e-03 2.40516604e-04 7.04685579e-05 4.51680077e-05 2.32236267e-04 3.79747216e-05 6.51212409e-05 2.09856195e-04 7.70314946e-05 1.45980695e-04 1.78267118e-04 1.03237962e-04 9.31784834e-05 5.20475005e-06 8.95132398e-06 5.95231759e-06 3.08214081e-05 4.89351078e-06 1.75149837e-05 1.04598261e-04 3.85262101e-05 1.85578217e-05 1.04709966e-04 4.10169276e-05 1.37541952e-05 5.38092367e-05 7.52115384e-05 9.39277379e-06 4.57872431e-05 1.66740469e-04 3.09041119e-05 7.05216850e-04 4.40816442e-04 4.40816442e-04 2.93102684e-04 4.29490639e-05 4.14030364e-05 3.99126234e-04 5.82687007e-04 1.07090544e-04 3.20834684e-04 1.01274806e-04 3.44218524e-05 7.65252392e-05 3.74159707e-05 8.14727713e-07 0.00000000e+00 0.00000000e+00 + 2024 04 04 12 00 00 3.79647956e-03 2.30023528e-03 1.27432775e-03 9.25220171e-04 6.81886856e-04 3.73973308e-04 2.72188804e-04 2.33862288e-04 4.86327366e-04 1.37650161e-04 8.64148698e-03 5.18850461e-03 2.41173039e-04 7.05294001e-05 4.52436843e-05 2.31784608e-04 3.78791679e-05 6.49330555e-05 2.09737963e-04 7.70153885e-05 1.45685345e-04 1.77808622e-04 1.03084938e-04 9.31671188e-05 5.19837304e-06 8.97300852e-06 5.95352139e-06 3.08053356e-05 4.89335544e-06 1.75040752e-05 1.04358455e-04 3.84891842e-05 1.84697026e-05 1.04680430e-04 4.10065928e-05 1.37593815e-05 5.36434137e-05 7.49898348e-05 9.40982791e-06 4.58296949e-05 1.66931643e-04 3.08921677e-05 7.05449834e-04 4.40710690e-04 4.40710690e-04 2.91876391e-04 4.24470054e-05 4.13809496e-05 3.97321495e-04 5.81206220e-04 1.06831154e-04 3.20290499e-04 1.02650832e-04 3.49221918e-05 7.76807160e-05 3.81992078e-05 8.50934077e-07 0.00000000e+00 0.00000000e+00 + 2024 04 05 12 00 00 3.78756849e-03 2.29571146e-03 1.27134796e-03 9.22667873e-04 6.79445113e-04 3.72739746e-04 2.71041711e-04 2.32629412e-04 4.83127954e-04 1.37071711e-04 8.56259353e-03 5.13537675e-03 2.40107712e-04 7.04484784e-05 4.51208021e-05 2.34839557e-04 3.84304556e-05 6.60426624e-05 2.10373626e-04 7.70891143e-05 1.47806451e-04 1.80717576e-04 1.04173682e-04 9.35801223e-05 5.23403505e-06 8.83880348e-06 5.97663020e-06 3.09039023e-05 4.89516387e-06 1.75883085e-05 1.05895896e-04 3.87038104e-05 1.90215214e-05 1.05385305e-04 4.11114655e-05 1.38598552e-05 5.48073026e-05 7.66490569e-05 9.30458264e-06 4.67506875e-05 1.69001050e-04 3.09559342e-05 7.14352287e-04 4.41709114e-04 4.41709114e-04 3.02390513e-04 4.58257826e-05 4.15054528e-05 4.09682616e-04 5.93483949e-04 1.08723842e-04 3.34233163e-04 1.07495619e-04 3.66835486e-05 8.17471189e-05 4.09406878e-05 9.76601672e-07 0.00000000e+00 0.00000000e+00 + 2024 04 06 12 00 00 3.81142221e-03 2.31202456e-03 1.28162336e-03 9.30324577e-04 6.86236539e-04 3.75668170e-04 2.73987577e-04 2.35889905e-04 4.91650677e-04 1.39477787e-04 8.75840513e-03 5.26286028e-03 2.43634225e-04 7.13644345e-05 4.56462400e-05 2.36923149e-04 3.87318287e-05 6.66509557e-05 2.12937130e-04 7.81255658e-05 1.49224404e-04 1.82326599e-04 1.04992683e-04 9.43312538e-05 5.25345095e-06 9.08517832e-06 5.96763603e-06 3.10691524e-05 4.91847422e-06 1.76886967e-05 1.06896168e-04 3.88212124e-05 1.93262778e-05 1.07350697e-04 4.24749276e-05 1.38206698e-05 5.58179037e-05 7.80402586e-05 9.49774985e-06 4.73658118e-05 1.73347005e-04 3.18348670e-05 7.28232059e-04 4.54754522e-04 4.54754522e-04 3.13048406e-04 4.77071851e-05 4.32105910e-05 4.21030345e-04 6.06886765e-04 1.11747992e-04 3.41682334e-04 1.09327577e-04 3.73494780e-05 8.32840877e-05 4.19716651e-05 1.02348781e-06 0.00000000e+00 0.00000000e+00 + 2024 04 07 12 00 00 3.83059277e-03 2.32411339e-03 1.28932292e-03 9.36261010e-04 6.91608300e-04 3.78108476e-04 2.76381821e-04 2.38515209e-04 4.98505460e-04 1.41201082e-04 8.91967534e-03 5.36909923e-03 2.46302013e-04 7.19247917e-05 4.60156782e-05 2.36140216e-04 3.85269232e-05 6.62416569e-05 2.13934437e-04 7.86528690e-05 1.48599539e-04 1.81279765e-04 1.04721357e-04 9.42488921e-05 5.24004863e-06 8.99756342e-06 5.96562531e-06 3.10744653e-05 4.93032458e-06 1.76948522e-05 1.06428054e-04 3.87415726e-05 1.91268366e-05 1.08049506e-04 4.31681692e-05 1.38118980e-05 5.55976580e-05 7.75418962e-05 9.42915649e-06 4.75320145e-05 1.75017255e-04 3.22819658e-05 7.34393773e-04 4.61387681e-04 4.61387681e-04 3.12866530e-04 4.65142075e-05 4.40779171e-05 4.19383616e-04 6.06435374e-04 1.12300077e-04 3.39001851e-04 1.10418146e-04 3.77462389e-05 8.42014081e-05 4.26058208e-05 1.05368175e-06 0.00000000e+00 0.00000000e+00 + 2024 04 08 12 00 00 3.85167823e-03 2.33737591e-03 1.29777291e-03 9.42792028e-04 6.97526663e-04 3.80797623e-04 2.79018001e-04 2.41405376e-04 5.06047519e-04 1.43090566e-04 9.09709463e-03 5.48596606e-03 2.49231936e-04 7.25371572e-05 4.64203097e-05 2.37301283e-04 3.86695057e-05 6.65292086e-05 2.15341641e-04 7.92254694e-05 1.49355507e-04 1.82038475e-04 1.05160260e-04 9.45721144e-05 5.24924508e-06 9.02513420e-06 5.97563921e-06 3.11648278e-05 4.94315464e-06 1.77595630e-05 1.06915295e-04 3.87971057e-05 1.92706037e-05 1.09216271e-04 4.39189462e-05 1.38554649e-05 5.61198691e-05 7.82325156e-05 9.45082647e-06 4.82077811e-05 1.78589366e-04 3.27671529e-05 7.46414425e-04 4.68572602e-04 4.68572602e-04 3.19267959e-04 4.73997003e-05 4.50189284e-05 4.25414200e-04 6.13641181e-04 1.14000674e-04 3.42067044e-04 1.10644293e-04 3.78283457e-05 8.43904194e-05 4.27267855e-05 1.05876418e-06 0.00000000e+00 0.00000000e+00 + 2024 04 09 12 00 00 3.84361095e-03 2.33174565e-03 1.29423707e-03 9.40164714e-04 6.95199804e-04 3.79812217e-04 2.78021588e-04 2.40299643e-04 5.03163403e-04 1.42252228e-04 9.03146529e-03 5.44346645e-03 2.48019947e-04 7.22087681e-05 4.62411678e-05 2.38965312e-04 3.90112633e-05 6.72153139e-05 2.14795276e-04 7.88402802e-05 1.50638061e-04 1.83822245e-04 1.05780129e-04 9.47752491e-05 5.27143638e-06 9.04456392e-06 5.98092956e-06 3.12047600e-05 4.93445586e-06 1.77882396e-05 1.07794179e-04 3.89300840e-05 1.96094683e-05 1.08938777e-04 4.34103364e-05 1.38785050e-05 5.67047311e-05 7.91825256e-05 9.46613945e-06 4.83109350e-05 1.78753660e-04 3.24402034e-05 7.43699610e-04 4.63707512e-04 4.63707512e-04 3.22931622e-04 4.94585081e-05 4.43844561e-05 4.30861564e-04 6.18569962e-04 1.14178733e-04 3.48181010e-04 1.10560013e-04 3.77976034e-05 8.43189703e-05 4.26730061e-05 1.05589738e-06 0.00000000e+00 0.00000000e+00 + 2024 04 10 12 00 00 3.83711820e-03 2.32657712e-03 1.29104452e-03 9.37920707e-04 6.93281375e-04 3.79072518e-04 2.77237382e-04 2.39415005e-04 5.00849894e-04 1.41447538e-04 8.98105908e-03 5.41159287e-03 2.46943331e-04 7.18420783e-05 4.60693534e-05 2.42913311e-04 3.97649390e-05 6.87272463e-05 2.14393192e-04 7.83482217e-05 1.53555694e-04 1.87743786e-04 1.07224293e-04 9.52970437e-05 5.32042723e-06 8.96066194e-06 6.00728490e-06 3.13215276e-05 4.92314648e-06 1.78819385e-05 1.09783385e-04 3.92232876e-05 2.03547548e-05 1.09011725e-04 4.27502935e-05 1.39931974e-05 5.81193040e-05 8.13476168e-05 9.40047466e-06 4.91723463e-05 1.81148792e-04 3.20209161e-05 7.46832905e-04 4.57400363e-04 4.57400363e-04 3.33806996e-04 5.39764937e-05 4.35697526e-05 4.44754379e-04 6.32120168e-04 1.15421058e-04 3.65243238e-04 1.15131671e-04 3.94591083e-05 8.81521219e-05 4.52253168e-05 1.17060875e-06 7.30605620e-10 0.00000000e+00 + 2024 04 11 12 00 00 3.83945860e-03 2.32865103e-03 1.29231278e-03 9.38786312e-04 6.94007360e-04 3.79320839e-04 2.77516774e-04 2.39737043e-04 5.01690137e-04 1.41783275e-04 8.99836010e-03 5.42221740e-03 2.47370066e-04 7.20152590e-05 4.61326389e-05 2.47073070e-04 4.05037863e-05 7.02083111e-05 2.15616429e-04 7.86026125e-05 1.56473592e-04 1.91575773e-04 1.08737216e-04 9.65462405e-05 5.36850712e-06 9.39195015e-06 6.03057961e-06 3.15207212e-05 4.92862819e-06 1.80109017e-05 1.11838370e-04 3.95106763e-05 2.10833387e-05 1.10343896e-04 4.30724234e-05 1.40945776e-05 5.97544657e-05 8.40508155e-05 9.73860442e-06 5.05651604e-05 1.85175179e-04 3.22346634e-05 7.61347256e-04 4.60490398e-04 4.60490398e-04 3.48541923e-04 5.83829184e-05 4.39831696e-05 4.61694015e-04 6.49811898e-04 1.18178007e-04 3.85412173e-04 1.24016067e-04 4.26880895e-05 9.56018950e-05 5.01902607e-05 1.39408024e-06 8.47796571e-09 0.00000000e+00 + 2024 04 12 12 00 00 3.84851514e-03 2.33355387e-03 1.29551028e-03 9.41428667e-04 6.96490113e-04 3.80541859e-04 2.78670797e-04 2.40984585e-04 5.04938869e-04 1.42432792e-04 9.07758943e-03 5.47533929e-03 2.48502382e-04 7.21572969e-05 4.62892573e-05 2.49570389e-04 4.09464585e-05 7.10948720e-05 2.16076147e-04 7.86216522e-05 1.58289795e-04 1.93862763e-04 1.09665062e-04 9.72829905e-05 5.39735192e-06 9.60688194e-06 6.04521883e-06 3.16399450e-05 4.92876716e-06 1.80891161e-05 1.13050105e-04 3.96828254e-05 2.15183958e-05 1.11003534e-04 4.30822925e-05 1.41583136e-05 6.07143842e-05 8.56271518e-05 9.90722256e-06 5.14228560e-05 1.88159177e-04 3.22484149e-05 7.68576266e-04 4.60594427e-04 4.60594427e-04 3.56828054e-04 6.10066985e-05 4.40083153e-05 4.71294779e-04 6.60321168e-04 1.19543134e-04 3.98966052e-04 1.31445822e-04 4.53881654e-05 1.01830295e-04 5.43283061e-05 1.57939826e-06 1.65506936e-08 0.00000000e+00 + 2024 04 13 12 00 00 3.86997684e-03 2.35026726e-03 1.30586850e-03 9.48826237e-04 7.02883118e-04 3.83020324e-04 2.81284151e-04 2.43930222e-04 5.12620125e-04 1.45026366e-04 9.24525222e-03 5.58158979e-03 2.52018934e-04 7.33457322e-05 4.68514951e-05 2.55871272e-04 4.19780699e-05 7.31617271e-05 2.20471032e-04 8.01943999e-05 1.62495001e-04 1.99201376e-04 1.11957500e-04 9.84930856e-05 5.46453302e-06 9.52188420e-06 6.07050824e-06 3.19740564e-05 4.96362700e-06 1.83319632e-05 1.16086229e-04 4.00840450e-05 2.25337353e-05 1.14510421e-04 4.51245083e-05 1.42684134e-05 6.33419369e-05 8.91455509e-05 9.84075014e-06 5.34680980e-05 1.96777135e-04 3.35779099e-05 8.00697746e-04 4.80151037e-04 4.80151037e-04 3.83386626e-04 6.71376067e-05 4.65848570e-05 5.00492478e-04 6.91717298e-04 1.25923689e-04 4.23088330e-04 1.37922234e-04 4.77415088e-05 1.07257523e-04 5.79182199e-05 1.73901778e-06 2.46820878e-08 5.88550542e-10 + 2024 04 14 12 00 00 3.92431392e-03 2.38801949e-03 1.32959800e-03 9.66503668e-04 7.18564054e-04 3.89666367e-04 2.88002714e-04 2.51385971e-04 5.32063948e-04 1.50642478e-04 9.68794764e-03 5.86845614e-03 2.60164894e-04 7.55469930e-05 4.80433534e-05 2.63693746e-04 4.31826862e-05 7.55756628e-05 2.27263244e-04 8.27732729e-05 1.67664246e-04 2.05440251e-04 1.14834339e-04 1.00499243e-04 5.54296021e-06 9.72093767e-06 6.10288698e-06 3.24612259e-05 5.02097901e-06 1.86703876e-05 1.19754241e-04 4.05525643e-05 2.37201690e-05 1.19998727e-04 4.84831806e-05 1.44093763e-05 6.67166492e-05 9.37613048e-05 9.99703625e-06 5.65692691e-05 2.10639291e-04 3.57595040e-05 8.51276514e-04 5.12307975e-04 5.12307975e-04 4.19257720e-04 7.43057637e-05 5.08137455e-05 5.38297058e-04 7.34008551e-04 1.34977669e-04 4.54762253e-04 1.49851400e-04 5.20769960e-05 1.17259697e-04 6.45785532e-05 2.03838757e-06 4.01819790e-08 1.99101358e-09 + 2024 04 15 12 00 00 3.95689261e-03 2.41105821e-03 1.34404602e-03 9.77229593e-04 7.28060094e-04 3.93626136e-04 2.92029202e-04 2.55866115e-04 5.43732346e-04 1.54097916e-04 9.95142789e-03 6.03845939e-03 2.65121063e-04 7.69543797e-05 4.87983615e-05 2.66858998e-04 4.36114933e-05 7.64330442e-05 2.31388896e-04 8.44564347e-05 1.69597879e-04 2.07640208e-04 1.15973355e-04 1.01729431e-04 5.57096719e-06 1.00446938e-05 6.12079093e-06 3.27119632e-05 5.05818098e-06 1.88366914e-05 1.21161071e-04 4.07192594e-05 2.41390633e-05 1.23259421e-04 5.06632205e-05 1.44873629e-05 6.81688140e-05 9.58289688e-05 1.02510028e-05 5.84029307e-05 2.18017202e-04 3.71814618e-05 8.82783233e-04 5.33188041e-04 5.33188041e-04 4.36633495e-04 7.68192054e-05 5.35689178e-05 5.55340557e-04 7.53915621e-04 1.39854354e-04 4.69894514e-04 1.59104322e-04 5.54396733e-05 1.25016719e-04 6.97342079e-05 2.26942466e-06 5.20904734e-08 3.06714014e-09 + 2024 04 16 12 00 00 3.98791894e-03 2.43367041e-03 1.35817346e-03 9.87592402e-04 7.37167849e-04 3.97340037e-04 2.95847264e-04 2.60131394e-04 5.54844543e-04 1.57527955e-04 1.01997607e-02 6.19783774e-03 2.69952300e-04 7.84112652e-05 4.95452578e-05 2.69010560e-04 4.38524847e-05 7.69130187e-05 2.35627362e-04 8.62663786e-05 1.70769256e-04 2.08855893e-04 1.16735449e-04 1.02096485e-04 5.58679531e-06 9.68339809e-06 6.13088123e-06 3.28899540e-05 5.09812635e-06 1.89769473e-05 1.22065041e-04 4.08128690e-05 2.43710747e-05 1.26318174e-04 5.30043966e-05 1.45313403e-05 6.92269122e-05 9.67837531e-05 9.96800809e-06 5.97520742e-05 2.24458286e-04 3.87100445e-05 9.10144795e-04 5.55613404e-04 5.55613404e-04 4.50833439e-04 7.81939249e-05 5.65303664e-05 5.68844571e-04 7.70159592e-04 1.44415980e-04 4.80002160e-04 1.66220642e-04 5.80260566e-05 1.30983913e-04 7.37109920e-05 2.44841285e-06 6.13758658e-08 3.90777295e-09 + 2024 04 17 12 00 00 4.01999831e-03 2.45568067e-03 1.37203220e-03 9.98004965e-04 7.46452910e-04 4.01293376e-04 2.99828355e-04 2.64545015e-04 5.66338249e-04 1.60791150e-04 1.04618688e-02 6.36783987e-03 2.74723194e-04 7.96787980e-05 5.02434714e-05 2.70236310e-04 4.39281284e-05 7.70639686e-05 2.38960099e-04 8.77252256e-05 1.71332322e-04 2.09240655e-04 1.17151231e-04 1.02959772e-04 5.59175060e-06 9.89934852e-06 6.14986348e-06 3.30440336e-05 5.13016857e-06 1.90821689e-05 1.22484697e-04 4.08422609e-05 2.44444236e-05 1.28946031e-04 5.48833574e-05 1.46139850e-05 6.98902706e-05 9.76834199e-05 1.01372047e-05 6.13768058e-05 2.30277497e-04 3.99408367e-05 9.37381931e-04 5.73616568e-04 5.73616568e-04 4.61418143e-04 7.86312157e-05 5.89140633e-05 5.77564674e-04 7.81685364e-04 1.47854743e-04 4.91047304e-04 1.78662665e-04 6.25486246e-05 1.41421053e-04 8.07005905e-05 2.76545438e-06 7.80100066e-08 5.41852287e-09 + 2024 04 18 12 00 00 4.03371225e-03 2.46455734e-03 1.37766670e-03 1.00236812e-03 7.50413193e-04 4.03032733e-04 3.01549386e-04 2.66441978e-04 5.71264184e-04 1.62079907e-04 1.05757413e-02 6.44222200e-03 2.76681135e-04 8.01431444e-05 5.05272514e-05 2.71455313e-04 4.40870848e-05 7.73825101e-05 2.40196710e-04 8.82040535e-05 1.72073866e-04 2.10064026e-04 1.17570002e-04 1.03567619e-04 5.60209919e-06 1.01542355e-05 6.16994294e-06 3.31369335e-05 5.14031271e-06 1.91442240e-05 1.22984922e-04 4.09040862e-05 2.46009993e-05 1.30044676e-04 5.54805505e-05 1.47013910e-05 7.03990012e-05 9.85863811e-05 1.03369835e-05 6.23845086e-05 2.33444357e-04 4.03417187e-05 9.51646386e-04 5.79351187e-04 5.79351187e-04 4.67907072e-04 7.95773114e-05 5.96884813e-05 5.83460475e-04 7.88513528e-04 1.49453261e-04 4.97293514e-04 1.82963223e-04 6.41119907e-05 1.45029712e-04 8.31259054e-05 2.87608736e-06 8.38617183e-08 5.95118941e-09 + 2024 04 19 12 00 00 4.03495071e-03 2.46697546e-03 1.37906054e-03 1.00316859e-03 7.50998611e-04 4.03064631e-04 3.01675745e-04 2.66624050e-04 5.71722343e-04 1.62537450e-04 1.05792700e-02 6.44223243e-03 2.77132548e-04 8.04826218e-05 5.06360225e-05 2.71456438e-04 4.40470845e-05 7.73018517e-05 2.41411380e-04 8.87616363e-05 1.71913632e-04 2.09851393e-04 1.17536469e-04 1.03490430e-04 5.59951732e-06 1.00293088e-05 6.17193655e-06 3.31552748e-05 5.15223692e-06 1.91636363e-05 1.22941514e-04 4.08885040e-05 2.45607021e-05 1.30766206e-04 5.61818131e-05 1.47101091e-05 7.04574307e-05 9.84985104e-05 1.02390593e-05 6.25895576e-05 2.34187875e-04 4.08094726e-05 9.58788817e-04 5.86081203e-04 5.86081203e-04 4.70138658e-04 7.93293060e-05 6.05926733e-05 5.85145914e-04 7.90406537e-04 1.50538913e-04 4.95728181e-04 1.81616125e-04 6.36223944e-05 1.43900113e-04 8.23728489e-05 2.84217576e-06 8.21011383e-08 5.79176387e-09 + 2024 04 20 12 00 00 4.03096819e-03 2.46406391e-03 1.37724404e-03 1.00190875e-03 7.49933222e-04 4.02602088e-04 3.01201031e-04 2.66098045e-04 5.70321681e-04 1.62104871e-04 1.05467772e-02 6.42099902e-03 2.76524404e-04 8.03218863e-05 5.05508759e-05 2.69371597e-04 4.36845759e-05 7.65736972e-05 2.40683430e-04 8.85635382e-05 1.70445182e-04 2.07954800e-04 1.16765087e-04 1.02879102e-04 5.57599815e-06 9.82918355e-06 6.16160542e-06 3.30507347e-05 5.14717467e-06 1.90955639e-05 1.21903831e-04 4.07474407e-05 2.42005175e-05 1.29959114e-04 5.58894011e-05 1.46652033e-05 6.96132372e-05 9.71466541e-05 1.00822363e-05 6.19035320e-05 2.31877693e-04 4.06364561e-05 9.50617783e-04 5.83303673e-04 5.83303673e-04 4.62367047e-04 7.71372230e-05 6.02538290e-05 5.76373867e-04 7.81116221e-04 1.49025133e-04 4.86463063e-04 1.78252394e-04 6.23997257e-05 1.41078542e-04 8.04843892e-05 2.75659676e-06 7.76171106e-08 5.38466836e-09 + 2024 04 21 12 00 00 4.04595454e-03 2.47277560e-03 1.38286061e-03 1.00646088e-03 7.54169089e-04 4.04585914e-04 3.03106424e-04 2.68174031e-04 5.75707574e-04 1.63308780e-04 1.06750415e-02 6.50600716e-03 2.78501807e-04 8.06508458e-05 5.07937981e-05 2.70813573e-04 4.39249707e-05 7.70554994e-05 2.41433955e-04 8.87875794e-05 1.71518676e-04 2.09200766e-04 1.17331838e-04 1.03163810e-04 5.59164509e-06 9.84970175e-06 6.16046527e-06 3.31341255e-05 5.15159045e-06 1.91501790e-05 1.22588307e-04 4.08409425e-05 2.44374387e-05 1.30561949e-04 5.61515219e-05 1.46602993e-05 7.02089682e-05 9.79637523e-05 1.00984304e-05 6.21636042e-05 2.34377970e-04 4.08213004e-05 9.54342434e-04 5.85832261e-04 5.85832261e-04 4.67635542e-04 7.85694108e-05 6.06091402e-05 5.82501418e-04 7.88060824e-04 1.50164339e-04 4.91014407e-04 1.78364874e-04 6.24404871e-05 1.41172010e-04 8.05398848e-05 2.75860245e-06 7.76836330e-08 5.38972422e-09 + 2024 04 22 12 00 00 4.06064879e-03 2.48089535e-03 1.38813656e-03 1.01082616e-03 7.58274556e-04 4.06565499e-04 3.04983956e-04 2.70209037e-04 5.80987506e-04 1.64401131e-04 1.08024918e-02 6.59101382e-03 2.80370236e-04 8.09116720e-05 5.10458795e-05 2.73715826e-04 4.44390811e-05 7.80865259e-05 2.42129141e-04 8.88762705e-05 1.73677050e-04 2.11872192e-04 1.18437369e-04 1.04139362e-04 5.62507958e-06 1.02071033e-05 6.16805337e-06 3.32861726e-05 5.15306383e-06 1.92422510e-05 1.24010805e-04 4.10409324e-05 2.49452336e-05 1.31416030e-04 5.62408997e-05 1.46933642e-05 7.13632787e-05 9.98777974e-05 1.03786690e-05 6.30184144e-05 2.37989504e-04 4.08922002e-05 9.61234826e-04 5.86704677e-04 5.86704677e-04 4.77294462e-04 8.16447020e-05 6.07439375e-05 5.93923986e-04 8.00928363e-04 1.51841784e-04 5.07070071e-04 1.87282205e-04 6.56818131e-05 1.48652063e-04 8.55462606e-05 2.98547750e-06 8.95712020e-08 6.46897718e-09 + 2024 04 23 12 00 00 4.06522728e-03 2.48193693e-03 1.38896804e-03 1.01188291e-03 7.59446275e-04 4.07309896e-04 3.05610481e-04 2.70854425e-04 5.82646483e-04 1.64436960e-04 1.08477955e-02 6.62289560e-03 2.80713421e-04 8.07387701e-05 5.10359248e-05 2.72892987e-04 4.43063152e-05 7.78192130e-05 2.41146726e-04 8.84689507e-05 1.73192344e-04 2.11170668e-04 1.18152044e-04 1.03922810e-04 5.61649467e-06 1.02220467e-05 6.16813995e-06 3.32410570e-05 5.14349922e-06 1.92094121e-05 1.23579303e-04 4.09892411e-05 2.48121796e-05 1.30676395e-04 5.56839164e-05 1.46937702e-05 7.09733532e-05 9.94007680e-05 1.03903709e-05 6.27021798e-05 2.37400988e-04 4.05434461e-05 9.55450419e-04 5.81389014e-04 5.81389014e-04 4.73027303e-04 8.08292418e-05 6.00652304e-05 5.89250801e-04 7.95838955e-04 1.50595782e-04 5.01615896e-04 1.83464448e-04 6.42940446e-05 1.45449173e-04 8.33988670e-05 2.88789558e-06 8.44379315e-08 6.00241847e-09 + 2024 04 24 12 00 00 4.03884971e-03 2.46314991e-03 1.37719871e-03 1.00325430e-03 7.51868205e-04 4.04131628e-04 3.02371610e-04 2.67252465e-04 5.73228617e-04 1.61622656e-04 1.06342034e-02 6.48478717e-03 2.76693892e-04 7.96116150e-05 5.04420695e-05 2.72025138e-04 4.42787248e-05 7.77629088e-05 2.38123667e-04 8.71066994e-05 1.72852830e-04 2.11016702e-04 1.17855210e-04 1.03253782e-04 5.61474517e-06 1.01483689e-05 6.15576791e-06 3.31182845e-05 5.11263679e-06 1.91223677e-05 1.23282593e-04 4.09784639e-05 2.47831806e-05 1.28262488e-04 5.38800494e-05 1.46399849e-05 7.04365890e-05 9.88010263e-05 1.03327176e-05 6.13280892e-05 2.32618446e-04 3.93863622e-05 9.31978588e-04 5.64137241e-04 5.64137241e-04 4.64055434e-04 8.06448283e-05 5.78192819e-05 5.81992878e-04 7.85868077e-04 1.47527622e-04 4.90548586e-04 1.69882980e-04 5.93566485e-05 1.34051523e-04 7.57287648e-05 2.53730254e-06 6.58402513e-08 4.30816272e-09 + 2024 04 25 12 00 00 3.96586375e-03 2.41426329e-03 1.34632387e-03 9.79988576e-04 7.31091743e-04 3.95066620e-04 2.93318659e-04 2.57256223e-04 5.47134684e-04 1.54466556e-04 1.00317859e-02 6.09169081e-03 2.66066128e-04 7.69863143e-05 4.89044552e-05 2.68380639e-04 4.39182040e-05 7.70378974e-05 2.31438623e-04 8.42350943e-05 1.70794885e-04 2.09121170e-04 1.16543708e-04 1.01755614e-04 5.59139444e-06 1.00699857e-05 6.11373835e-06 3.27788370e-05 5.04803756e-06 1.88752363e-05 1.21835860e-04 4.08381340e-05 2.44234339e-05 1.22823394e-04 5.01015340e-05 1.44571706e-05 6.86486590e-05 9.65933736e-05 1.02714264e-05 5.80416080e-05 2.19294187e-04 3.69510381e-05 8.76565640e-04 5.27985347e-04 5.27985347e-04 4.39118482e-04 7.84476928e-05 5.30946534e-05 5.59951627e-04 7.58049734e-04 1.40106034e-04 4.68082208e-04 1.49910467e-04 5.20956422e-05 1.17288979e-04 6.44364372e-05 2.02028758e-06 3.83504357e-08 1.80221669e-09 + 2024 04 26 12 00 00 3.90681319e-03 2.37209892e-03 1.31991667e-03 9.60589063e-04 7.14030734e-04 3.87949079e-04 2.86058019e-04 2.49175291e-04 5.26030687e-04 1.48136429e-04 9.55458140e-03 5.78358844e-03 2.57039381e-04 7.44120535e-05 4.75345818e-05 2.61701681e-04 4.29740234e-05 7.51415733e-05 2.23730088e-04 8.11236969e-05 1.66572510e-04 2.04184004e-04 1.14102547e-04 9.98098930e-05 5.53012433e-06 9.87112144e-06 6.08212104e-06 3.23132374e-05 4.97811961e-06 1.85495131e-05 1.18769856e-04 4.04707243e-05 2.34857464e-05 1.16705467e-04 4.60114796e-05 1.43196594e-05 6.56226829e-05 9.25827003e-05 1.01157129e-05 5.47859030e-05 2.05244167e-04 3.43129825e-05 8.19480402e-04 4.88850148e-04 4.88850148e-04 4.04315579e-04 7.27431267e-05 4.79771232e-05 5.24842224e-04 7.17762208e-04 1.30607042e-04 4.39796357e-04 1.36700855e-04 4.72928758e-05 1.06199419e-04 5.69419732e-05 1.67545012e-06 1.98874119e-08 1.15930199e-10 + 2024 04 27 12 00 00 3.86271087e-03 2.34435897e-03 1.30224392e-03 9.46924918e-04 7.01645924e-04 3.82321879e-04 2.80543186e-04 2.43129538e-04 5.10256638e-04 1.44184346e-04 9.18355946e-03 5.53923026e-03 2.50911921e-04 7.31325135e-05 4.66863976e-05 2.54592886e-04 4.17990494e-05 7.27821898e-05 2.20027656e-04 7.99296540e-05 1.61548815e-04 1.98045048e-04 1.11425198e-04 9.83522504e-05 5.45385701e-06 9.76267838e-06 6.05600362e-06 3.19359029e-05 4.95125096e-06 1.82857239e-05 1.15354096e-04 4.00135235e-05 2.23196810e-05 1.13422420e-04 4.44399397e-05 1.42060730e-05 6.27052814e-05 8.84648136e-05 1.00308906e-05 5.27359522e-05 1.94440499e-04 3.33002943e-05 7.89833453e-04 4.73814458e-04 4.73814458e-04 3.76450974e-04 6.56533521e-05 4.60124225e-05 4.93814504e-04 6.83898214e-04 1.24578096e-04 4.16043749e-04 1.34479856e-04 4.64843062e-05 1.04327326e-04 5.56165810e-05 1.61016678e-06 1.60713540e-08 0.00000000e+00 + 2024 04 28 12 00 00 3.83803092e-03 2.32641640e-03 1.29103228e-03 9.38741554e-04 6.94477488e-04 3.79372445e-04 2.77515402e-04 2.39751614e-04 5.01435950e-04 1.41471917e-04 8.98541222e-03 5.41173890e-03 2.47086122e-04 7.20096399e-05 4.61220887e-05 2.47742269e-04 4.06654930e-05 7.05060316e-05 2.15937411e-04 7.85312499e-05 1.56869863e-04 1.92123267e-04 1.08906329e-04 9.67538805e-05 5.38027380e-06 9.51899638e-06 6.02675027e-06 3.15718111e-05 4.91985302e-06 1.80330173e-05 1.12032306e-04 3.95724433e-05 2.11948485e-05 1.09939347e-04 4.26030310e-05 1.40788485e-05 5.98640748e-05 8.43607270e-05 9.84009675e-06 5.05164411e-05 1.85227675e-04 3.21148458e-05 7.56907390e-04 4.56237327e-04 4.56237327e-04 3.48433473e-04 5.88149182e-05 4.37129114e-05 4.62909768e-04 6.50806922e-04 1.18210275e-04 3.90745926e-04 1.29224384e-04 4.45726208e-05 9.99088927e-05 5.25792923e-05 1.46675432e-06 9.37639868e-09 0.00000000e+00 + 2024 04 29 12 00 00 3.81297735e-03 2.31049222e-03 1.28090279e-03 9.30938441e-04 6.87419625e-04 3.76187778e-04 2.74385620e-04 2.36316542e-04 4.92475210e-04 1.39192215e-04 8.77534522e-03 5.27362190e-03 2.43578041e-04 7.12493505e-05 4.56191383e-05 2.41249367e-04 3.95475712e-05 6.82605780e-05 2.13326731e-04 7.78035785e-05 1.52228745e-04 1.86275674e-04 1.06469874e-04 9.54394997e-05 5.30773723e-06 9.41182370e-06 6.00597705e-06 3.12584297e-05 4.90344864e-06 1.78142236e-05 1.08842420e-04 3.91374168e-05 2.00842944e-05 1.07515109e-04 4.16437513e-05 1.39885204e-05 5.72407815e-05 8.05897458e-05 9.75635558e-06 4.88457580e-05 1.77187707e-04 3.14974430e-05 7.35998062e-04 4.47060261e-04 4.47060261e-04 3.24610685e-04 5.20571251e-05 4.25149454e-05 4.35425103e-04 6.21259834e-04 1.13364667e-04 3.65973711e-04 1.24036475e-04 4.26856472e-05 9.55482414e-05 4.95894739e-05 1.32612720e-06 4.21946993e-09 0.00000000e+00 + 2024 04 30 12 00 00 3.80751909e-03 2.30745678e-03 1.27893349e-03 9.29345930e-04 6.85940757e-04 3.75459933e-04 2.73695599e-04 2.35570604e-04 4.90526114e-04 1.38786931e-04 8.72778304e-03 5.24175167e-03 2.42887251e-04 7.11689890e-05 4.55466356e-05 2.38499354e-04 3.90564819e-05 6.72720606e-05 2.12843652e-04 7.77826353e-05 1.50217618e-04 1.83683518e-04 1.05441277e-04 9.49074270e-05 5.27597258e-06 9.35346252e-06 5.99228078e-06 3.11465975e-05 4.90282509e-06 1.77338939e-05 1.07473247e-04 3.89462220e-05 1.95925924e-05 1.06882025e-04 4.16082068e-05 1.39290103e-05 5.61737947e-05 7.89728481e-05 9.71094341e-06 4.81471790e-05 1.74394562e-04 3.14784236e-05 7.29538100e-04 4.46725264e-04 4.46725264e-04 3.15459286e-04 4.90457518e-05 4.24772385e-05 4.24588864e-04 6.10006199e-04 1.11819970e-04 3.55123217e-04 1.21824636e-04 4.18803946e-05 9.36837114e-05 4.82682162e-05 1.26096407e-06 1.69558234e-09 0.00000000e+00 + 2024 05 01 12 00 00 3.80975771e-03 2.30922870e-03 1.28003007e-03 9.30153746e-04 6.86653665e-04 3.75722035e-04 2.73973797e-04 2.35886561e-04 4.91337384e-04 1.39067230e-04 8.74488351e-03 5.25238290e-03 2.43263995e-04 7.13057319e-05 4.56036685e-05 2.37580530e-04 3.88702785e-05 6.68951485e-05 2.13101305e-04 7.79693830e-05 1.49473008e-04 1.82677444e-04 1.05077694e-04 9.48034487e-05 5.26402837e-06 9.33930569e-06 5.99393097e-06 3.11231409e-05 4.90671191e-06 1.77184539e-05 1.06970717e-04 3.88736400e-05 1.94023320e-05 1.06993698e-04 4.18374664e-05 1.39362892e-05 5.58248890e-05 7.84352246e-05 9.70003384e-06 4.81973143e-05 1.74221448e-04 3.16341961e-05 7.31864109e-04 4.48929239e-04 4.48929239e-04 3.13342262e-04 4.78614907e-05 4.27777966e-05 4.21369525e-04 6.06906951e-04 1.11674929e-04 3.52586766e-04 1.23187314e-04 4.23744365e-05 9.48176383e-05 4.89543963e-05 1.28681457e-06 2.35763764e-09 0.00000000e+00 + 2024 05 02 12 00 00 3.83483757e-03 2.32508335e-03 1.29012546e-03 9.37990480e-04 6.93774534e-04 3.78923743e-04 2.77118129e-04 2.39339076e-04 5.00325676e-04 1.41337805e-04 8.95513621e-03 5.39050810e-03 2.46771286e-04 7.20665503e-05 4.60956957e-05 2.37384200e-04 3.87516833e-05 6.66533480e-05 2.14645629e-04 7.86996621e-05 1.49190730e-04 1.82017561e-04 1.04999257e-04 9.49086414e-05 5.25650248e-06 9.25811983e-06 6.00039966e-06 3.11709324e-05 4.92260369e-06 1.77555204e-05 1.06736906e-04 3.88273358e-05 1.92780077e-05 1.08141278e-04 4.27702995e-05 1.39645505e-05 5.58277973e-05 7.82550251e-05 9.63658094e-06 4.87914898e-05 1.77297543e-04 3.22490872e-05 7.43652889e-04 4.57872124e-04 4.57872124e-04 3.15876376e-04 4.70722909e-05 4.39678755e-05 4.22304129e-04 6.09461698e-04 1.12903850e-04 3.53849307e-04 1.27796367e-04 4.40485186e-05 9.86748595e-05 5.14646128e-05 1.39542175e-06 5.91929137e-09 0.00000000e+00 + 2024 05 03 12 00 00 3.85020860e-03 2.33461888e-03 1.29621436e-03 9.42783725e-04 6.98165077e-04 3.80906680e-04 2.79056007e-04 2.41464521e-04 5.05845755e-04 1.42695864e-04 9.08443236e-03 5.47551475e-03 2.48896745e-04 7.25064212e-05 4.63756466e-05 2.40823446e-04 3.93307913e-05 6.78120297e-05 2.16097186e-04 7.91079714e-05 1.51580059e-04 1.84997210e-04 1.06254434e-04 9.61031473e-05 5.29428835e-06 9.68515087e-06 6.02381733e-06 3.13628445e-05 4.93116968e-06 1.78785202e-05 1.08368251e-04 3.90525005e-05 1.98451409e-05 1.09622969e-04 4.32751083e-05 1.40665536e-05 5.71968233e-05 8.05357163e-05 9.97148236e-06 5.02424458e-05 1.82160562e-04 3.25902394e-05 7.60091001e-04 4.62722545e-04 4.62722545e-04 3.28993127e-04 5.04824333e-05 4.46264603e-05 4.36596496e-04 6.25120806e-04 1.15524220e-04 3.71760001e-04 1.37667572e-04 4.76356723e-05 1.06948672e-04 5.69513581e-05 1.64039635e-06 1.53633401e-08 0.00000000e+00 + 2024 05 04 12 00 00 3.84955322e-03 2.33586569e-03 1.29686136e-03 9.43009070e-04 6.98230743e-04 3.80695222e-04 2.78946445e-04 2.41389417e-04 5.05630763e-04 1.42989131e-04 9.07191090e-03 5.46490327e-03 2.49090769e-04 7.28027890e-05 4.64582539e-05 2.42573300e-04 3.96259740e-05 6.84013241e-05 2.17532298e-04 7.96282024e-05 1.52706589e-04 1.86501376e-04 1.06872960e-04 9.67571375e-05 5.31361220e-06 9.87741951e-06 6.02692271e-06 3.14676019e-05 4.94206761e-06 1.79443844e-05 1.09227833e-04 3.91672133e-05 2.01318137e-05 1.10725270e-04 4.39174939e-05 1.40801916e-05 5.79489931e-05 8.16798223e-05 1.01223246e-05 5.09360485e-05 1.83937703e-04 3.30247800e-05 7.69295520e-04 4.68895491e-04 4.68895491e-04 3.36514209e-04 5.21938899e-05 4.54652443e-05 4.45005174e-04 6.34438990e-04 1.17452221e-04 3.83644087e-04 1.46377266e-04 5.08005718e-05 1.14247728e-04 6.17821386e-05 1.85538788e-06 2.63308575e-08 6.24829521e-10 + 2024 05 05 12 00 00 3.87181062e-03 2.35132021e-03 1.30657800e-03 9.50307306e-04 7.04738746e-04 3.83429019e-04 2.81711120e-04 2.44461151e-04 5.13616824e-04 1.45295574e-04 9.25275454e-03 5.58178648e-03 2.52437286e-04 7.37226130e-05 4.69457334e-05 2.46935152e-04 4.03340819e-05 6.98190124e-05 2.20595571e-04 8.07130593e-05 1.55654415e-04 1.90154697e-04 1.08475235e-04 9.82676456e-05 5.35977342e-06 1.04224338e-05 6.04293855e-06 3.17414172e-05 4.96559442e-06 1.81163915e-05 1.11305911e-04 3.94425646e-05 2.08269164e-05 1.13307499e-04 4.52989916e-05 1.41500132e-05 5.97930017e-05 8.45795406e-05 1.05497384e-05 5.25949451e-05 1.90512245e-04 3.39375460e-05 7.93478790e-04 4.82142437e-04 4.82142437e-04 3.55030931e-04 5.63818263e-05 4.72314219e-05 4.65036355e-04 6.56538719e-04 1.21825663e-04 4.02956848e-04 1.54616276e-04 5.37943923e-05 1.21152024e-04 6.63492065e-05 2.05846438e-06 3.66767829e-08 1.55660622e-09 + 2024 05 06 12 00 00 3.89100148e-03 2.36316310e-03 1.31414652e-03 9.56288123e-04 7.10228946e-04 3.85911432e-04 2.84134187e-04 2.47118033e-04 5.20512876e-04 1.46979658e-04 9.41433797e-03 5.68804704e-03 2.55082883e-04 7.42718553e-05 4.73100638e-05 2.51862744e-04 4.11872286e-05 7.15279079e-05 2.22500733e-04 8.12102517e-05 1.59152265e-04 1.94565234e-04 1.10307069e-04 9.92028676e-05 5.41535264e-06 1.05666615e-05 6.06179347e-06 3.19841187e-05 4.97588044e-06 1.82832282e-05 1.13690256e-04 3.97743541e-05 2.16658635e-05 1.14976043e-04 4.59061441e-05 1.42321820e-05 6.17382380e-05 8.74567946e-05 1.06629188e-05 5.37613834e-05 1.96643371e-04 3.43517691e-05 8.09381476e-04 4.87981318e-04 4.87981318e-04 3.72719796e-04 6.14438439e-05 4.80302930e-05 4.85478402e-04 6.77864828e-04 1.25376406e-04 4.16872822e-04 1.52212505e-04 5.29194307e-05 1.19126888e-04 6.49235484e-05 1.98879322e-06 3.26426182e-08 1.18057208e-09 + 2024 05 07 12 00 00 3.89557608e-03 2.36686631e-03 1.31643368e-03 9.57972387e-04 7.11715579e-04 3.86441667e-04 2.84703747e-04 2.47768358e-04 5.22177533e-04 1.47571867e-04 9.44884638e-03 5.70931286e-03 2.55870206e-04 7.45784374e-05 4.74449262e-05 2.54131833e-04 4.15659044e-05 7.22842698e-05 2.23801171e-04 8.16286891e-05 1.60659987e-04 1.96499387e-04 1.11106912e-04 9.97924620e-05 5.44012219e-06 1.04004001e-05 6.07844049e-06 3.20867037e-05 4.98438712e-06 1.83666245e-05 1.14771796e-04 3.99215351e-05 2.20343660e-05 1.16150796e-04 4.64092795e-05 1.43047379e-05 6.26509123e-05 8.86271989e-05 1.05327257e-05 5.49882771e-05 1.99573531e-04 3.46991437e-05 8.20389981e-04 4.92825266e-04 4.92825266e-04 3.81783249e-04 6.36477082e-05 4.86994366e-05 4.95391182e-04 6.89560602e-04 1.27409837e-04 4.39380061e-04 1.73280767e-04 6.05768801e-05 1.36795345e-04 7.67166024e-05 2.52088633e-06 6.03458062e-08 3.69118922e-09 + 2024 05 08 12 00 00 3.91413341e-03 2.37737263e-03 1.32323545e-03 9.63554562e-04 7.16944178e-04 3.88922364e-04 2.87071507e-04 2.50342034e-04 5.28850837e-04 1.49005575e-04 9.60871335e-03 5.81557453e-03 2.58274472e-04 7.49547529e-05 4.77686080e-05 2.61134938e-04 4.28294879e-05 7.48167397e-05 2.25418673e-04 8.18266009e-05 1.65787478e-04 2.03047828e-04 1.13737135e-04 1.01396237e-04 5.52236997e-06 1.05909887e-05 6.09755298e-06 3.23999617e-05 4.98796180e-06 1.85794199e-05 1.18253021e-04 4.04130056e-05 2.32795632e-05 1.17956670e-04 4.66237048e-05 1.43880083e-05 6.53985168e-05 9.27245794e-05 1.06822248e-05 5.67414934e-05 2.06793524e-04 3.48597212e-05 8.33932133e-04 4.94905980e-04 4.94905980e-04 4.04701359e-04 7.11743662e-05 4.90063336e-05 5.23110822e-04 7.19706111e-04 1.31476320e-04 4.76326525e-04 1.91930275e-04 6.73552138e-05 1.52435364e-04 8.71558272e-05 2.99190087e-06 8.48693503e-08 5.91365890e-09 + 2024 05 09 12 00 00 3.91896155e-03 2.38162483e-03 1.32583707e-03 9.65396816e-04 7.18530102e-04 3.89451262e-04 2.87661891e-04 2.51024247e-04 5.30602958e-04 1.49700281e-04 9.64389596e-03 5.83683886e-03 2.59159829e-04 7.53336968e-05 4.79261915e-05 2.62804427e-04 4.31037130e-05 7.53573899e-05 2.26878822e-04 8.23666865e-05 1.66821254e-04 2.04370327e-04 1.14314575e-04 1.01685799e-04 5.54064100e-06 1.04477949e-05 6.10540228e-06 3.24951330e-05 4.99924172e-06 1.86516635e-05 1.19026567e-04 4.05192783e-05 2.35335523e-05 1.19027166e-04 4.72888234e-05 1.44222679e-05 6.60786899e-05 9.35297844e-05 1.05700230e-05 5.74136109e-05 2.09179858e-04 3.53105570e-05 8.43659881e-04 5.01298532e-04 5.01298532e-04 4.11876863e-04 7.26274331e-05 4.98763984e-05 5.30916880e-04 7.28317098e-04 1.33354938e-04 4.85749326e-04 1.98330272e-04 6.96808918e-05 1.57799313e-04 9.07098829e-05 3.15036405e-06 9.29756681e-08 6.64460345e-09 + 2024 05 10 12 00 00 3.92102911e-03 2.38296604e-03 1.32669117e-03 9.66109690e-04 7.19205618e-04 3.89721142e-04 2.87932472e-04 2.51326923e-04 5.31367621e-04 1.49902960e-04 9.66059984e-03 5.84747493e-03 2.59467416e-04 7.54218589e-05 4.79591134e-05 2.65532842e-04 4.36064991e-05 7.63633696e-05 2.27595937e-04 8.24742019e-05 1.68788645e-04 2.06957186e-04 1.15330233e-04 1.01816072e-04 5.57344865e-06 1.02572696e-05 6.10905263e-06 3.26006093e-05 5.00085516e-06 1.87318940e-05 1.20388702e-04 4.07147687e-05 2.40259265e-05 1.19524738e-04 4.73881228e-05 1.44382444e-05 6.71227871e-05 9.48954952e-05 1.04207604e-05 5.76166310e-05 2.11413840e-04 3.53950803e-05 8.46658506e-04 5.02275350e-04 5.02275350e-04 4.20502160e-04 7.55879504e-05 5.00361202e-05 5.41833227e-04 7.38991410e-04 1.34991802e-04 4.90719812e-04 1.92717687e-04 6.76401389e-05 1.53086630e-04 8.75179829e-05 3.00299723e-06 8.50481342e-08 5.91962532e-09 + 2024 05 11 12 00 00 3.95985660e-03 2.41069047e-03 1.34405686e-03 9.78930012e-04 7.30516954e-04 3.94412480e-04 2.92720016e-04 2.56659684e-04 5.45267763e-04 1.54073937e-04 9.97380349e-03 6.04934879e-03 2.65415312e-04 7.71403034e-05 4.88694213e-05 2.70606784e-04 4.43533325e-05 7.78593938e-05 2.32879323e-04 8.45549221e-05 1.72019284e-04 2.10819074e-04 1.17173814e-04 1.03445082e-04 5.62209716e-06 1.08913897e-05 6.13316588e-06 3.29667269e-05 5.04693271e-06 1.89679535e-05 1.22715322e-04 4.10052162e-05 2.47604883e-05 1.23642121e-04 5.00877504e-05 1.45432292e-05 6.93568978e-05 9.82753784e-05 1.09179324e-05 5.96967209e-05 2.21213911e-04 3.71536415e-05 8.87709308e-04 5.28128911e-04 5.28128911e-04 4.45663519e-04 8.00209469e-05 5.34439576e-05 5.67541145e-04 7.66951247e-04 1.41653187e-04 5.00349457e-04 1.86413533e-04 6.53480321e-05 1.47793997e-04 8.39391640e-05 2.83818479e-06 7.62132373e-08 5.11244167e-09 + 2024 05 12 12 00 00 3.98974140e-03 2.43104408e-03 1.35688454e-03 9.88560419e-04 7.39099247e-04 3.98100489e-04 2.96424725e-04 2.60761048e-04 5.55963409e-04 1.57077988e-04 1.02189105e-02 6.20871782e-03 2.69828771e-04 7.82866997e-05 4.95187906e-05 2.72713009e-04 4.46154649e-05 7.83833733e-05 2.35997978e-04 8.58515850e-05 1.73284663e-04 2.12162306e-04 1.17939178e-04 1.03857532e-04 5.63922476e-06 1.07008054e-05 6.14661767e-06 3.31262083e-05 5.07569093e-06 1.90897657e-05 1.23615692e-04 4.11071145e-05 2.50162935e-05 1.26010116e-04 5.17723791e-05 1.46017846e-05 7.03279746e-05 9.93314194e-05 1.07685977e-05 6.08831921e-05 2.27084188e-04 3.82499013e-05 9.10121345e-04 5.44260675e-04 5.44260675e-04 4.57868473e-04 8.15544743e-05 5.55685780e-05 5.79300677e-04 7.80858214e-04 1.45219499e-04 5.08189664e-04 1.90055124e-04 6.66716696e-05 1.50848442e-04 8.59818696e-05 2.93063742e-06 8.10486199e-08 5.55121176e-09 + 2024 05 13 12 00 00 3.80087637e-03 2.33614769e-03 1.29426224e-03 9.35263942e-04 6.88289017e-04 3.72009619e-04 2.72213257e-04 2.34794252e-04 4.88323594e-04 1.45091359e-04 8.53725142e-03 5.07191271e-03 2.47497329e-04 7.69003881e-05 4.70088341e-05 2.68866268e-04 4.53801564e-05 7.69346196e-05 2.39119698e-04 8.79256695e-05 1.64470126e-04 2.02655305e-04 1.13895207e-04 1.02779902e-04 5.67258212e-06 1.03519909e-05 6.09944764e-06 3.34839804e-05 5.12205515e-06 1.93011493e-05 1.24648780e-04 4.12442198e-05 2.54867686e-05 1.26870040e-04 5.44861250e-05 1.43459183e-05 6.86650217e-05 9.59773140e-05 1.05263738e-05 5.95936049e-05 2.13319765e-04 4.00064368e-05 9.22976664e-04 5.70234796e-04 5.70234796e-04 4.54133361e-04 7.72387721e-05 5.89747855e-05 5.80121893e-04 7.74181884e-04 1.48189645e-04 5.00282613e-04 1.86797815e-04 6.54875090e-05 1.48114889e-04 8.41423316e-05 2.84655537e-06 7.65884792e-08 5.14489358e-09 + 2024 05 14 12 00 00 4.05001380e-03 2.47288811e-03 1.38318762e-03 1.00812514e-03 7.56437094e-04 4.05468384e-04 3.03870282e-04 2.69020427e-04 5.77518177e-04 1.63296096e-04 1.07104167e-02 6.52744994e-03 2.78852439e-04 8.07180852e-05 5.08576403e-05 2.77317028e-04 4.52006381e-05 7.95555650e-05 2.42787116e-04 8.86837312e-05 1.76064434e-04 2.15188233e-04 1.19624334e-04 1.05056762e-04 5.67734314e-06 1.08354354e-05 6.16876059e-06 3.35009321e-05 5.13902814e-06 1.93501076e-05 1.25623710e-04 4.13346919e-05 2.55918480e-05 1.31131936e-04 5.54793980e-05 1.46981518e-05 7.24802659e-05 1.02067510e-04 1.08742643e-05 6.31196344e-05 2.39212737e-04 4.06486652e-05 9.59080968e-04 5.79740852e-04 5.79740852e-04 4.84573936e-04 8.50278768e-05 6.02203072e-05 6.05246965e-04 8.10373287e-04 1.53017282e-04 5.15112732e-04 1.83731712e-04 6.43729549e-05 1.45542484e-04 8.24167108e-05 2.76807234e-06 7.24548016e-08 4.76905910e-09 + 2024 05 15 12 00 00 4.06986353e-03 2.48355513e-03 1.39014811e-03 1.01387712e-03 7.61840521e-04 4.08152569e-04 3.06397470e-04 2.71747049e-04 5.84624217e-04 1.64699031e-04 1.08844760e-02 6.64431751e-03 2.81312703e-04 8.09791146e-05 5.11460000e-05 2.80381033e-04 4.57537943e-05 8.06637981e-05 2.43274162e-04 8.86737602e-05 1.78408579e-04 2.18050459e-04 1.20823452e-04 1.04943663e-04 5.71336823e-06 1.02295890e-05 6.17062105e-06 3.36086130e-05 5.13883751e-06 1.94457201e-05 1.27138933e-04 4.15498274e-05 2.61362205e-05 1.31633239e-04 5.54680300e-05 1.47062645e-05 7.36539498e-05 1.03297067e-04 1.03994244e-05 6.33582321e-05 2.43107480e-04 4.06404812e-05 9.59603127e-04 5.79631003e-04 5.79631003e-04 4.93744414e-04 8.83146306e-05 6.02046144e-05 6.16949579e-04 8.23076337e-04 1.54542423e-04 5.25247563e-04 1.83814427e-04 6.44032363e-05 1.45613415e-04 8.24765073e-05 2.77167080e-06 7.27106539e-08 4.79400271e-09 + 2024 05 16 12 00 00 4.07105977e-03 2.49164890e-03 1.39463978e-03 1.01586191e-03 7.62876123e-04 4.07694936e-04 3.06366647e-04 2.71890844e-04 5.85028853e-04 1.66324580e-04 1.08659392e-02 6.62306696e-03 2.82681821e-04 8.22704320e-05 5.15022306e-05 2.76397067e-04 4.48383216e-05 7.88254198e-05 2.47377097e-04 9.09199065e-05 1.74757881e-04 2.13266546e-04 1.19165932e-04 1.04421708e-04 5.65394730e-06 1.00443343e-05 6.18739432e-06 3.35404523e-05 5.18917332e-06 1.94180225e-05 1.24935259e-04 4.11935995e-05 2.52275582e-05 1.34107397e-04 5.84134483e-05 1.47792380e-05 7.23495233e-05 1.00978222e-04 1.02542450e-05 6.41607314e-05 2.43384644e-04 4.25437785e-05 9.90985088e-04 6.07818412e-04 6.07818412e-04 4.91278368e-04 8.27892451e-05 6.38960628e-05 6.08070741e-04 8.14621581e-04 1.56855005e-04 5.06701737e-04 1.80597413e-04 6.32339150e-05 1.42915026e-04 8.06714201e-05 2.68993656e-06 6.84331184e-08 4.40578205e-09 + 2024 05 17 12 00 00 4.08997596e-03 2.50311733e-03 1.40198635e-03 1.02164734e-03 7.68174649e-04 4.10146748e-04 3.08746512e-04 2.74491086e-04 5.91804026e-04 1.67933630e-04 1.10265958e-02 6.72931373e-03 2.85243997e-04 8.27585483e-05 5.18588464e-05 2.77840936e-04 4.50538937e-05 7.92572391e-05 2.48467261e-04 9.13154392e-05 1.75764875e-04 2.14381196e-04 1.19717259e-04 1.04571107e-04 5.66799026e-06 9.93160356e-06 6.19434140e-06 3.36267387e-05 5.19781315e-06 1.94834618e-05 1.25580837e-04 4.12774330e-05 2.54395767e-05 1.34980434e-04 5.89203672e-05 1.48094739e-05 7.29464894e-05 1.01697322e-04 1.01659229e-05 6.46041250e-05 2.46669723e-04 4.28770785e-05 9.99204508e-04 6.12677075e-04 6.12677075e-04 4.97525618e-04 8.40686902e-05 6.45413296e-05 6.14643736e-04 8.22053907e-04 1.58341472e-04 5.08977848e-04 1.78190619e-04 6.23588519e-05 1.40894534e-04 7.93061199e-05 2.62712870e-06 6.50712593e-08 4.09875689e-09 + 2024 05 18 12 00 00 4.08597663e-03 2.50030731e-03 1.40022436e-03 1.02036423e-03 7.67053133e-04 4.09663355e-04 3.08257854e-04 2.73950147e-04 5.90383615e-04 1.67517454e-04 1.09939346e-02 6.70806766e-03 2.84645101e-04 8.25978666e-05 5.17596203e-05 2.74303539e-04 4.44216421e-05 7.79881317e-05 2.47519081e-04 9.11332434e-05 1.73232802e-04 2.11083168e-04 1.18407758e-04 1.03667066e-04 5.62692730e-06 9.72704875e-06 6.17994083e-06 3.34661665e-05 5.19340319e-06 1.93755776e-05 1.23809963e-04 4.10314358e-05 2.48129945e-05 1.33908188e-04 5.86643349e-05 1.47468148e-05 7.15433339e-05 9.95214722e-05 1.00054232e-05 6.35849741e-05 2.43262267e-04 4.27199877e-05 9.89263385e-04 6.10237755e-04 6.10237755e-04 4.85267063e-04 8.02634400e-05 6.42349245e-05 6.00233760e-04 8.06736433e-04 1.56079874e-04 4.91521728e-04 1.70432364e-04 5.95383892e-05 1.34383545e-04 7.49228648e-05 2.42665524e-06 5.44279430e-08 3.12892112e-09 + 2024 05 19 12 00 00 4.08224231e-03 2.49520839e-03 1.39722635e-03 1.01863673e-03 7.65791608e-04 4.09421079e-04 3.07865549e-04 2.73456115e-04 5.89069699e-04 1.66618755e-04 1.09729370e-02 6.69745132e-03 2.83682607e-04 8.20365019e-05 5.15766893e-05 2.71426205e-04 4.39523836e-05 7.70447252e-05 2.45128276e-04 9.02225438e-05 1.71355654e-04 2.08619083e-04 1.17361547e-04 1.03281063e-04 5.59652035e-06 9.81571793e-06 6.17415863e-06 3.33153183e-05 5.17259505e-06 1.92648406e-05 1.22385782e-04 4.08487947e-05 2.43452669e-05 1.32143529e-04 5.74491802e-05 1.47216706e-05 7.03015970e-05 9.79383767e-05 1.00748781e-05 6.29141993e-05 2.39856437e-04 4.19449934e-05 9.74036495e-04 5.98622113e-04 5.98622113e-04 4.72442345e-04 7.74094136e-05 6.27297093e-05 5.86016422e-04 7.92130462e-04 1.52770464e-04 4.86082732e-04 1.75294636e-04 6.13053879e-05 1.38459480e-04 7.76297538e-05 2.54780107e-06 6.06602697e-08 3.69180384e-09 + 2024 05 20 12 00 00 4.06493339e-03 2.48129520e-03 1.38863780e-03 1.01265959e-03 7.60716216e-04 4.07473521e-04 3.05786180e-04 2.71106796e-04 5.82906557e-04 1.64448582e-04 1.08386519e-02 6.61246926e-03 2.80791471e-04 8.10341548e-05 5.11093903e-05 2.69707237e-04 4.37600887e-05 7.66548910e-05 2.41994931e-04 8.88676383e-05 1.70428812e-04 2.07573669e-04 1.16763173e-04 1.02604006e-04 5.58421161e-06 9.68038075e-06 6.15865210e-06 3.31687130e-05 5.14168933e-06 1.91609748e-05 1.21632754e-04 4.07738087e-05 2.41477232e-05 1.29697250e-04 5.56441024e-05 1.46542778e-05 6.94432154e-05 9.68009411e-05 9.96893941e-06 6.16246984e-05 2.35240994e-04 4.07924294e-05 9.49269704e-04 5.81365684e-04 5.81365684e-04 4.60720473e-04 7.61746778e-05 6.04914327e-05 5.75188733e-04 7.79617632e-04 1.49205319e-04 4.79178825e-04 1.71659152e-04 5.99826915e-05 1.35400983e-04 7.55110319e-05 2.44661856e-06 5.49671569e-08 3.16495630e-09 + 2024 05 21 12 00 00 4.02385753e-03 2.45410069e-03 1.37143768e-03 9.99695095e-04 7.49139286e-04 4.02355821e-04 3.00695784e-04 2.65497823e-04 5.68241705e-04 1.60495042e-04 1.04978477e-02 6.38937205e-03 2.74873886e-04 7.96314903e-05 5.02590035e-05 2.69049995e-04 4.38107876e-05 7.67518766e-05 2.38764180e-04 8.73793324e-05 1.70238378e-04 2.07785482e-04 1.16527796e-04 1.02191758e-04 5.58772954e-06 9.70051187e-06 6.13884040e-06 3.30449745e-05 5.10758291e-06 1.90662587e-05 1.21508676e-04 4.07933287e-05 2.41892965e-05 1.27121623e-04 5.36529697e-05 1.45681741e-05 6.89892892e-05 9.63890860e-05 9.98487521e-06 6.02625318e-05 2.28952486e-04 3.95250623e-05 9.21752561e-04 5.62335830e-04 5.62335830e-04 4.51472887e-04 7.63835502e-05 5.80293941e-05 5.68503514e-04 7.70338949e-04 1.46001375e-04 4.77543284e-04 1.69220912e-04 5.90951826e-05 1.33346815e-04 7.40650761e-05 2.37596548e-06 5.08768395e-08 2.78370393e-09 + 2024 05 22 12 00 00 3.99472647e-03 2.43222510e-03 1.35782586e-03 9.89963259e-04 7.40727982e-04 3.98946424e-04 2.97155873e-04 2.61536783e-04 5.57862220e-04 1.57160178e-04 1.02659683e-02 6.24064878e-03 2.70259688e-04 7.82132318e-05 4.95576177e-05 2.68409337e-04 4.38591174e-05 7.68443453e-05 2.34840429e-04 8.55626015e-05 1.70160096e-04 2.07987545e-04 1.16316696e-04 1.02210424e-04 5.59108266e-06 1.00733640e-05 6.12955264e-06 3.29360959e-05 5.06593824e-06 1.89710207e-05 1.21340606e-04 4.08119406e-05 2.42289534e-05 1.24315391e-04 5.12218801e-05 1.45278769e-05 6.84937895e-05 9.62572133e-05 1.02773323e-05 5.92824436e-05 2.23728359e-04 3.79779289e-05 8.94925015e-04 5.39101474e-04 5.39101474e-04 4.41483241e-04 7.65829289e-05 5.50238008e-05 5.60575681e-04 7.60442088e-04 1.42166332e-04 4.79587110e-04 1.71943079e-04 6.00834548e-05 1.35621648e-04 7.55190742e-05 2.43691466e-06 5.36960783e-08 3.03011518e-09 + 2024 05 23 12 00 00 3.94550616e-03 2.39913666e-03 1.33694161e-03 9.74332879e-04 7.26829434e-04 3.92858242e-04 2.91071626e-04 2.54821597e-04 5.40296940e-04 1.52320986e-04 9.85941694e-03 5.97506166e-03 2.63089568e-04 7.64531647e-05 4.85190678e-05 2.64307075e-04 4.32949222e-05 7.57071248e-05 2.30114093e-04 8.36363703e-05 1.67475060e-04 2.04992527e-04 1.14766184e-04 1.01103035e-04 5.55466177e-06 1.00869729e-05 6.11449286e-06 3.26465397e-05 5.02169896e-06 1.87652682e-05 1.19456929e-04 4.05922212e-05 2.36612585e-05 1.20441216e-04 4.86397970e-05 1.44624850e-05 6.66005769e-05 9.38862518e-05 1.02881742e-05 5.73308707e-05 2.14049411e-04 3.63368512e-05 8.60627841e-04 5.14426874e-04 5.14426874e-04 4.19944146e-04 7.30922213e-05 5.18352608e-05 5.38939241e-04 7.34831013e-04 1.36336255e-04 4.61596117e-04 1.62912930e-04 5.67994397e-05 1.28034862e-04 7.03446733e-05 2.19546159e-06 4.05171946e-08 1.82017956e-09 + 2024 05 24 12 00 00 3.89096853e-03 2.36329410e-03 1.31424815e-03 9.57196021e-04 7.11510592e-04 3.86046605e-04 2.84310499e-04 2.47378680e-04 5.20829418e-04 1.47128389e-04 9.40569469e-03 5.67760468e-03 2.55277880e-04 7.46388701e-05 4.74021222e-05 2.61092014e-04 4.29186824e-05 7.49472936e-05 2.25617147e-04 8.17438937e-05 1.65480870e-04 2.02979115e-04 1.13572224e-04 9.98555658e-05 5.53044338e-06 9.90419576e-06 6.08436603e-06 3.23803463e-05 4.97825749e-06 1.85771774e-05 1.18089221e-04 4.04456310e-05 2.32800230e-05 1.16596853e-04 4.61041578e-05 1.43315658e-05 6.50826215e-05 9.18522381e-05 1.01449827e-05 5.49704646e-05 2.04060115e-04 3.47247144e-05 8.21760534e-04 4.90195397e-04 4.90195397e-04 4.00628857e-04 7.07348809e-05 4.87030629e-05 5.21143204e-04 7.12889931e-04 1.31004837e-04 4.44718309e-04 1.50682065e-04 5.23519118e-05 1.17762565e-04 6.33674166e-05 1.87191486e-06 2.30070750e-08 2.16259011e-10 + 2024 05 25 12 00 00 3.87000745e-03 2.34717464e-03 1.30424803e-03 9.50167354e-04 7.05504813e-04 3.83635687e-04 2.81784677e-04 2.44546489e-04 5.13382148e-04 1.44657935e-04 9.23980425e-03 5.57138622e-03 2.51906150e-04 7.35678557e-05 4.68702815e-05 2.54248421e-04 4.17875242e-05 7.26715894e-05 2.21597067e-04 8.03509960e-05 1.60803723e-04 1.97021766e-04 1.11052494e-04 9.81216417e-05 5.45722141e-06 9.58625969e-06 6.05391542e-06 3.20197739e-05 4.94583364e-06 1.83279336e-05 1.14735154e-04 4.00052988e-05 2.21496477e-05 1.13017768e-04 4.42143151e-05 1.41992510e-05 6.22160599e-05 8.76604267e-05 9.89579057e-06 5.26170244e-05 1.95129813e-04 3.35344317e-05 7.87826435e-04 4.72150045e-04 4.72150045e-04 3.72297502e-04 6.38229656e-05 4.63881326e-05 4.90018635e-04 6.79342232e-04 1.24607556e-04 4.16598883e-04 1.41879010e-04 4.91503646e-05 1.10365739e-04 5.83159195e-05 1.63572552e-06 1.10843274e-08 0.00000000e+00 + 2024 05 26 12 00 00 3.84766403e-03 2.33375731e-03 1.29564535e-03 9.43496366e-04 6.99452499e-04 3.80752579e-04 2.78998476e-04 2.41514964e-04 5.05428253e-04 1.42802142e-04 9.04834734e-03 5.44391908e-03 2.48926962e-04 7.30728380e-05 4.64898915e-05 2.51719604e-04 4.13804431e-05 7.18477415e-05 2.20481477e-04 7.99951958e-05 1.58944469e-04 1.94824287e-04 1.10065270e-04 9.76677790e-05 5.43109963e-06 9.57364318e-06 6.04363668e-06 3.18894510e-05 4.93671614e-06 1.82346338e-05 1.13510371e-04 3.98466276e-05 2.17340319e-05 1.11866843e-04 4.36878297e-05 1.41547120e-05 6.11626356e-05 8.61895049e-05 9.88604224e-06 5.19283539e-05 1.90732980e-04 3.32234835e-05 7.77302357e-04 4.67149680e-04 4.67149680e-04 3.62281929e-04 6.12375967e-05 4.57789982e-05 4.79046624e-04 6.67265493e-04 1.22573507e-04 4.10472432e-04 1.44406003e-04 5.00673073e-05 1.12474075e-04 5.96363763e-05 1.68902956e-06 1.26472059e-08 0.00000000e+00 + 2024 05 27 12 00 00 3.84590590e-03 2.33254394e-03 1.29488446e-03 9.43039739e-04 6.99110240e-04 3.80558642e-04 2.78804754e-04 2.41307233e-04 5.04838523e-04 1.42636967e-04 9.03295422e-03 5.43331876e-03 2.48685324e-04 7.30383054e-05 4.64507744e-05 2.55594333e-04 4.21189325e-05 7.33224326e-05 2.21121342e-04 7.99701316e-05 1.61780300e-04 1.98592087e-04 1.11507467e-04 9.92211724e-05 5.47942145e-06 1.04019724e-05 6.04532579e-06 3.20938346e-05 4.93512307e-06 1.83406702e-05 1.15484381e-04 4.01336292e-05 2.24519987e-05 1.12676383e-04 4.36009461e-05 1.41622571e-05 6.26885741e-05 8.89943190e-05 1.05356019e-05 5.27784804e-05 1.93239009e-04 3.31937073e-05 7.82601013e-04 4.66352561e-04 4.66352561e-04 3.74104320e-04 6.55279262e-05 4.57158108e-05 4.94006282e-04 6.82951233e-04 1.24534552e-04 4.31258028e-04 1.54685017e-04 5.38020529e-05 1.21085337e-04 6.53120704e-05 1.93990641e-06 2.50445069e-08 3.62354413e-10 + 2024 05 28 12 00 00 3.84568165e-03 2.33455787e-03 1.29597410e-03 9.43546579e-04 6.99401181e-04 3.80371211e-04 2.78745355e-04 2.41300677e-04 5.04786268e-04 1.43075814e-04 9.02172376e-03 5.42271808e-03 2.49025333e-04 7.34381145e-05 4.65607996e-05 2.53718656e-04 4.17338480e-05 7.25421822e-05 2.22330266e-04 8.06623779e-05 1.60182827e-04 1.96503203e-04 1.10753280e-04 9.84721875e-05 5.45475414e-06 9.87241729e-06 6.04060624e-06 3.20288367e-05 4.94974520e-06 1.83146313e-05 1.14474776e-04 3.99834855e-05 2.20571659e-05 1.13123151e-04 4.44620178e-05 1.41419223e-05 6.20065210e-05 8.75007737e-05 1.01207486e-05 5.25700679e-05 1.92524227e-04 3.37729172e-05 7.86657119e-04 4.74622613e-04 4.74622613e-04 3.70473403e-04 6.30637223e-05 4.68344922e-05 4.88530202e-04 6.77580433e-04 1.24823880e-04 4.23396563e-04 1.53887706e-04 5.35104766e-05 1.20403882e-04 6.47549812e-05 1.90737924e-06 2.27886400e-08 1.43487000e-10 + 2024 05 29 12 00 00 3.87407201e-03 2.35435946e-03 1.30841514e-03 9.52871305e-04 7.07705514e-04 3.83852009e-04 2.82268983e-04 2.45216928e-04 5.14968881e-04 1.46035128e-04 9.25205594e-03 5.57147935e-03 2.53306271e-04 7.46288574e-05 4.72041574e-05 2.52800764e-04 4.14326874e-05 7.19305419e-05 2.25200773e-04 8.20653397e-05 1.59167323e-04 1.94853744e-04 1.10361852e-04 9.92055106e-05 5.43553033e-06 1.04616345e-05 6.04923916e-06 3.21230852e-05 4.98037189e-06 1.83584335e-05 1.13812512e-04 3.98660079e-05 2.17457811e-05 1.15211754e-04 4.62591648e-05 1.41796874e-05 6.18261635e-05 8.74398184e-05 1.05829145e-05 5.35805479e-05 1.96174616e-04 3.49550042e-05 8.10136393e-04 4.91848215e-04 4.91848215e-04 3.73774995e-04 6.11076248e-05 4.91228653e-05 4.88532170e-04 6.79433835e-04 1.26953299e-04 4.20128602e-04 1.56873764e-04 5.45944800e-05 1.22898691e-04 6.63452338e-05 1.97371177e-06 2.58300020e-08 4.08536671e-10 + 2024 05 30 12 00 00 3.88379059e-03 2.36316722e-03 1.31378387e-03 9.56570114e-04 7.10829499e-04 3.84887137e-04 2.83438115e-04 2.46569689e-04 5.18468389e-04 1.47475617e-04 9.32243170e-03 5.61399721e-03 2.55114695e-04 7.54042332e-05 4.75229906e-05 2.50088578e-04 4.08483320e-05 7.07517087e-05 2.27178321e-04 8.31854122e-05 1.56880354e-04 1.91740879e-04 1.09293811e-04 9.81754014e-05 5.39785469e-06 9.64570645e-06 6.04501620e-06 3.20363496e-05 5.00468814e-06 1.83293292e-05 1.12331564e-04 3.96383926e-05 2.11560153e-05 1.16151410e-04 4.76868590e-05 1.41614932e-05 6.08753625e-05 8.52676931e-05 9.94353904e-06 5.35087006e-05 1.96250237e-04 3.58976220e-05 8.18699856e-04 5.05537353e-04 5.05537353e-04 3.69358551e-04 5.74723876e-05 5.09469362e-05 4.80985398e-04 6.72818784e-04 1.27609827e-04 4.11094128e-04 1.59155255e-04 5.54226875e-05 1.24804682e-04 6.75589035e-05 2.02424104e-06 2.81389511e-08 6.09529405e-10 + 2024 05 31 12 00 00 3.92165158e-03 2.38877791e-03 1.32993894e-03 9.68789047e-04 7.21768351e-04 3.89587261e-04 2.88148068e-04 2.51782369e-04 5.32036111e-04 1.51252015e-04 9.63308149e-03 5.81587851e-03 2.60685781e-04 7.68416513e-05 4.83411202e-05 2.50201380e-04 4.07074665e-05 7.04645645e-05 2.30656356e-04 8.47962103e-05 1.56605264e-04 1.90957720e-04 1.09298104e-04 9.85994368e-05 5.38891218e-06 9.67895103e-06 6.05856767e-06 3.21540117e-05 5.04007367e-06 1.84133665e-05 1.12158784e-04 3.95833951e-05 2.10084501e-05 1.18700065e-04 4.97618108e-05 1.42205870e-05 6.11099403e-05 8.53698907e-05 9.96977178e-06 5.47619534e-05 2.01814134e-04 3.72566545e-05 8.45107717e-04 5.25418157e-04 5.25418157e-04 3.76763829e-04 5.65361814e-05 5.35790343e-05 4.85627285e-04 6.80067892e-04 1.30692132e-04 4.12968319e-04 1.64794532e-04 5.74715719e-05 1.29528492e-04 7.06683550e-05 2.16139069e-06 3.50402217e-08 1.22881989e-09 + 2024 06 01 12 00 00 3.94619994e-03 2.40342439e-03 1.33934356e-03 9.76299170e-04 7.28700651e-04 3.92800751e-04 2.91253866e-04 2.55173064e-04 5.40846104e-04 1.53297884e-04 9.84197080e-03 5.95401190e-03 2.63980577e-04 7.74433653e-05 4.87792895e-05 2.60821246e-04 4.26084211e-05 7.42762757e-05 2.33412790e-04 8.52599391e-05 1.64286981e-04 2.00829411e-04 1.13263225e-04 1.01052553e-04 5.51256198e-06 1.03283543e-05 6.09426861e-06 3.26507724e-05 5.04980817e-06 1.87405297e-05 1.17420709e-04 4.03228565e-05 2.28850564e-05 1.21586583e-04 5.03354822e-05 1.43760553e-05 6.52798188e-05 9.18657029e-05 1.04789775e-05 5.72428507e-05 2.12781155e-04 3.76441574e-05 8.71303709e-04 5.30930050e-04 5.30930050e-04 4.12613170e-04 6.78961514e-05 5.43271308e-05 5.28258455e-04 7.24588957e-04 1.37226420e-04 4.52747382e-04 1.71286841e-04 5.98307121e-05 1.34969189e-04 7.42683893e-05 2.32154877e-06 4.32058805e-08 1.96440144e-09 + 2024 06 02 12 00 00 3.95131448e-03 2.40834051e-03 1.34232335e-03 9.78313592e-04 7.30380058e-04 3.93322316e-04 2.91863419e-04 2.55886253e-04 5.42690285e-04 1.54115119e-04 9.87787581e-03 5.97527251e-03 2.64980241e-04 7.79014070e-05 4.89552506e-05 2.60372464e-04 4.24670288e-05 7.39893119e-05 2.34804932e-04 8.59401422e-05 1.63732352e-04 2.00057088e-04 1.13042840e-04 1.00431894e-04 5.50352743e-06 9.76452138e-06 6.10273491e-06 3.26375497e-05 5.06450051e-06 1.87573578e-05 1.17102269e-04 4.02677077e-05 2.27392069e-05 1.22325790e-04 5.11985796e-05 1.44130361e-05 6.51348577e-05 9.11695349e-05 1.00371719e-05 5.74010824e-05 2.13890544e-04 3.82159749e-05 8.80149005e-04 5.39208110e-04 5.39208110e-04 4.13929303e-04 6.69815985e-05 5.54332684e-05 5.28336663e-04 7.24618908e-04 1.38304401e-04 4.46387829e-04 1.66142839e-04 5.79597687e-05 1.30645880e-04 7.13076579e-05 2.18253530e-06 3.55552757e-08 1.26046711e-09 + 2024 06 03 12 00 00 3.97257468e-03 2.42451731e-03 1.35237653e-03 9.85594229e-04 7.36729291e-04 3.95817414e-04 2.94469274e-04 2.58815558e-04 5.50311343e-04 1.56610166e-04 1.00450889e-02 6.08153045e-03 2.68406940e-04 7.90219232e-05 4.94935347e-05 2.66500258e-04 4.34873946e-05 7.60339783e-05 2.38946171e-04 8.73970275e-05 1.67895018e-04 2.05341277e-04 1.15301632e-04 1.01760559e-04 5.56996092e-06 9.90011176e-06 6.11558207e-06 3.29741873e-05 5.09655329e-06 1.89878029e-05 1.20087824e-04 4.06645617e-05 2.37440981e-05 1.25589439e-04 5.30778314e-05 1.44690741e-05 6.77105484e-05 9.47485061e-05 1.01437225e-05 5.90834235e-05 2.21856138e-04 3.94455565e-05 9.07656589e-04 5.57212299e-04 5.57212299e-04 4.39110794e-04 7.30525760e-05 5.78149105e-05 5.56597481e-04 7.54969198e-04 1.44326820e-04 4.68289099e-04 1.69919542e-04 5.93313856e-05 1.33805524e-04 7.33558207e-05 2.27055215e-06 3.98035077e-08 1.63688778e-09 + 2024 06 04 12 00 00 3.96086246e-03 2.41380922e-03 1.34585889e-03 9.81310166e-04 7.33236632e-04 3.94615869e-04 2.93103474e-04 2.57242627e-04 5.46160477e-04 1.54879985e-04 9.95885100e-03 6.02842756e-03 2.66246679e-04 7.81403280e-05 4.91296394e-05 2.69176325e-04 4.40880918e-05 7.72365776e-05 2.36688555e-04 8.61117442e-05 1.70156935e-04 2.08439832e-04 1.16334695e-04 1.02161459e-04 5.60912304e-06 1.00283934e-05 6.11888026e-06 3.30192453e-05 5.06698452e-06 1.90125445e-05 1.21526176e-04 4.08981490e-05 2.43336646e-05 1.24212951e-04 5.13523060e-05 1.44835765e-05 6.85637107e-05 9.63139107e-05 1.02446364e-05 5.89743602e-05 2.21375849e-04 3.83501290e-05 8.93196880e-04 5.40724676e-04 5.40724676e-04 4.41946161e-04 7.66041514e-05 5.56862738e-05 5.63143739e-04 7.60734435e-04 1.43273845e-04 4.81957708e-04 1.74244495e-04 6.09020575e-05 1.37423439e-04 7.56979300e-05 2.37096872e-06 4.46316903e-08 2.06418314e-09 + 2024 06 05 12 00 00 3.95286382e-03 2.40805322e-03 1.34225861e-03 9.78751770e-04 7.31036174e-04 3.93671496e-04 2.92137804e-04 2.56171334e-04 5.43328439e-04 1.54023450e-04 9.89364712e-03 5.98594919e-03 2.65030342e-04 7.78089343e-05 4.89460246e-05 2.73721171e-04 4.49721003e-05 7.90087623e-05 2.36621600e-04 8.57133069e-05 1.73559682e-04 2.13026150e-04 1.18032900e-04 1.02643712e-04 5.66664312e-06 9.86983141e-06 6.12649746e-06 3.31634069e-05 5.05736825e-06 1.91197136e-05 1.23869961e-04 4.12420050e-05 2.52056314e-05 1.24358316e-04 5.07938443e-05 1.45168437e-05 7.02538970e-05 9.87360534e-05 1.01206882e-05 5.93998017e-05 2.23548557e-04 3.80068261e-05 8.91689576e-04 5.35403099e-04 5.35403099e-04 4.54238983e-04 8.18789646e-05 5.50168043e-05 5.79817852e-04 7.77158329e-04 1.44942117e-04 4.99850364e-04 1.76749251e-04 6.18110815e-05 1.39514291e-04 7.70159988e-05 2.42483565e-06 4.70099671e-08 2.26877912e-09 + 2024 06 06 12 00 00 3.95209432e-03 2.40622565e-03 1.34121751e-03 9.78290466e-04 7.30797013e-04 3.93698904e-04 2.92089839e-04 2.56090967e-04 5.43082661e-04 1.53686106e-04 9.89174455e-03 5.98596521e-03 2.64716434e-04 7.75846148e-05 4.88836361e-05 2.74228187e-04 4.50958498e-05 7.92557141e-05 2.35910196e-04 8.53230362e-05 1.74037854e-04 2.13655848e-04 1.18236825e-04 1.02994006e-04 5.67474708e-06 1.01596292e-05 6.12572039e-06 3.31825068e-05 5.04795316e-06 1.91200925e-05 1.24139143e-04 4.12900932e-05 2.53256672e-05 1.23933353e-04 5.02470357e-05 1.45135535e-05 7.04027840e-05 9.92290394e-05 1.03481238e-05 5.94047099e-05 2.23384785e-04 3.76705953e-05 8.87489509e-04 5.30192489e-04 5.30192489e-04 4.54149932e-04 8.25948431e-05 5.43611532e-05 5.80532215e-04 7.77864571e-04 1.44442077e-04 5.04094320e-04 1.79681426e-04 6.28755650e-05 1.41964391e-04 7.85802651e-05 2.49027470e-06 5.00260242e-08 2.53207944e-09 + 2024 06 07 12 00 00 3.95401564e-03 2.40725775e-03 1.34189214e-03 9.78906430e-04 7.31405859e-04 3.93970332e-04 2.92346942e-04 2.56372348e-04 5.43790813e-04 1.53829520e-04 9.90804868e-03 5.99660277e-03 2.64965097e-04 7.76261057e-05 4.89064689e-05 2.79466121e-04 4.60774521e-05 8.12238199e-05 2.36862996e-04 8.53505451e-05 1.77903785e-04 2.18751513e-04 1.20214635e-04 1.03669271e-04 5.73860489e-06 1.01352882e-05 6.12712829e-06 3.33924885e-05 5.04804302e-06 1.92642564e-05 1.26812308e-04 4.16719209e-05 2.62943970e-05 1.24792031e-04 5.02555282e-05 1.45197715e-05 7.24395538e-05 1.02141845e-04 1.03292994e-05 5.98458080e-05 2.27155106e-04 3.76895419e-05 8.91005954e-04 5.30291302e-04 5.30291302e-04 4.70191032e-04 8.84575129e-05 5.43951290e-05 6.01202342e-04 7.98574370e-04 1.47248458e-04 5.19031994e-04 1.75568133e-04 6.13788259e-05 1.38502477e-04 7.61706535e-05 2.37440456e-06 4.34492868e-08 1.92210248e-09 + 2024 06 08 12 00 00 3.99441608e-03 2.42994147e-03 1.35659192e-03 9.90865558e-04 7.42551350e-04 3.99359434e-04 2.97474606e-04 2.61930575e-04 5.58264567e-04 1.56891289e-04 1.02581820e-02 6.23034537e-03 2.70139248e-04 7.83433657e-05 4.95546258e-05 2.77727807e-04 4.56779322e-05 8.04202398e-05 2.37216530e-04 8.56438535e-05 1.76676356e-04 2.16649424e-04 1.19614432e-04 1.03788202e-04 5.71273413e-06 1.04039784e-05 6.13263182e-06 3.33931069e-05 5.05429271e-06 1.92532563e-05 1.25764423e-04 4.15164017e-05 2.58954882e-05 1.25187068e-04 5.06232260e-05 1.45437851e-05 7.17978356e-05 1.01348224e-04 1.05401989e-05 6.01376365e-05 2.30053918e-04 3.79354111e-05 8.97874873e-04 5.33820875e-04 5.33820875e-04 4.66438927e-04 8.60199681e-05 5.48702839e-05 5.94499306e-04 7.93492078e-04 1.46771865e-04 5.11455134e-04 1.75269089e-04 6.12689200e-05 1.38242966e-04 7.59277998e-05 2.35841194e-06 4.22335901e-08 1.80210140e-09 + 2024 06 09 12 00 00 3.97362711e-03 2.42007687e-03 1.35001660e-03 9.85139894e-04 7.37032853e-04 3.96441868e-04 2.94798061e-04 2.59074564e-04 5.50821788e-04 1.55693727e-04 1.00706908e-02 6.10285625e-03 2.67778624e-04 7.82962833e-05 4.93103375e-05 2.72216880e-04 4.46533755e-05 7.83632684e-05 2.37184739e-04 8.60534084e-05 1.72431434e-04 2.11300554e-04 1.17483319e-04 1.02468131e-04 5.64621223e-06 9.99664189e-06 6.12095537e-06 3.31533067e-05 5.06334800e-06 1.91028903e-05 1.22994254e-04 4.11177491e-05 2.48793891e-05 1.24511107e-04 5.11538470e-05 1.44930178e-05 6.96864891e-05 9.79340905e-05 1.02210972e-05 5.91567460e-05 2.24526871e-04 3.82814382e-05 8.94062502e-04 5.38903009e-04 5.38903009e-04 4.50541410e-04 7.98454741e-05 5.55407547e-05 5.74386379e-04 7.72047849e-04 1.44680780e-04 4.88432865e-04 1.69522430e-04 5.91787877e-05 1.33413193e-04 7.26205875e-05 2.20315538e-06 3.36908833e-08 1.01612940e-09 + 2024 06 10 12 00 00 3.96963047e-03 2.41734204e-03 1.34829388e-03 9.83847505e-04 7.35881558e-04 3.95949592e-04 2.94302606e-04 2.58525574e-04 5.49390635e-04 1.55289060e-04 1.00379727e-02 6.08160645e-03 2.67185837e-04 7.81363092e-05 4.92135742e-05 2.73750736e-04 4.49744839e-05 7.90072547e-05 2.37066179e-04 8.58747633e-05 1.73656440e-04 2.12969251e-04 1.18095205e-04 1.03066791e-04 5.66709423e-06 1.04939230e-05 6.10728239e-06 3.32342958e-05 5.05941462e-06 1.91325106e-05 1.23842584e-04 4.12426656e-05 2.51965772e-05 1.24495309e-04 5.09232574e-05 1.44335499e-05 7.03066692e-05 9.91686121e-05 1.06110303e-05 5.89240668e-05 2.24591225e-04 3.81306396e-05 8.90351761e-04 5.36693959e-04 5.36693959e-04 4.54186968e-04 8.17665423e-05 5.52486454e-05 5.80059174e-04 7.77378945e-04 1.45104414e-04 4.90825119e-04 1.64879934e-04 5.74903370e-05 1.29512002e-04 6.99538921e-05 2.07829745e-06 2.68448854e-08 3.86847088e-10 + 2024 06 11 12 00 00 3.96002292e-03 2.41132831e-03 1.34445933e-03 9.80857460e-04 7.33157787e-04 3.94717819e-04 2.93096376e-04 2.57202517e-04 5.45946960e-04 1.54431503e-04 9.95720821e-03 6.02848083e-03 2.65851939e-04 7.78613475e-05 4.90444334e-05 2.65063000e-04 4.33775393e-05 7.58024631e-05 2.35060391e-04 8.56127648e-05 1.67278413e-04 2.04647071e-04 1.14813530e-04 1.00913577e-04 5.56334344e-06 9.79001561e-06 6.09931121e-06 3.28312942e-05 5.05372773e-06 1.88818820e-05 1.19425745e-04 4.06213512e-05 2.36152759e-05 1.22379253e-04 5.05893666e-05 1.43988829e-05 6.68441727e-05 9.37138650e-05 1.00594028e-05 5.73960975e-05 2.17325106e-04 3.79101519e-05 8.76414314e-04 5.33492444e-04 5.33492444e-04 4.25913826e-04 7.21698918e-05 5.48220007e-05 5.45104797e-04 7.40960053e-04 1.40011155e-04 4.56505341e-04 1.58346488e-04 5.51147918e-05 1.24026384e-04 6.62407865e-05 1.90703009e-06 1.76437901e-08 0.00000000e+00 + 2024 06 12 12 00 00 3.96019430e-03 2.41171861e-03 1.34468216e-03 9.80962040e-04 7.33217423e-04 3.94714134e-04 2.93108618e-04 2.57222104e-04 5.46003697e-04 1.54503902e-04 9.95764709e-03 6.02847859e-03 2.65920122e-04 7.79111464e-05 4.90599604e-05 2.58497049e-04 4.21501667e-05 7.33390101e-05 2.34155632e-04 8.56974220e-05 1.62439191e-04 1.98247050e-04 1.12348755e-04 9.98184394e-05 5.48361968e-06 9.66449443e-06 6.08748778e-06 3.25718920e-05 5.05572207e-06 1.87046982e-05 1.16075578e-04 4.01438097e-05 2.23993018e-05 1.21314808e-04 5.07054268e-05 1.43474361e-05 6.43038422e-05 8.99138040e-05 9.96113959e-06 5.64748395e-05 2.12624198e-04 3.79826903e-05 8.69710240e-04 5.34599973e-04 5.34599973e-04 4.05713848e-04 6.47871755e-05 5.49631834e-05 5.19497589e-04 7.15118581e-04 1.36663179e-04 4.33874492e-04 1.58283254e-04 5.50912251e-05 1.23969145e-04 6.61689306e-05 1.90135589e-06 1.71633211e-08 0.00000000e+00 + 2024 06 13 12 00 00 3.98499877e-03 2.42709351e-03 1.35449792e-03 9.88612264e-04 7.40183157e-04 3.97901122e-04 2.96219086e-04 2.60627394e-04 5.54881036e-04 1.56681620e-04 1.01670626e-02 6.16659857e-03 2.69331673e-04 7.85931275e-05 4.95190881e-05 2.56835492e-04 4.17658885e-05 7.25679100e-05 2.35183092e-04 8.63069319e-05 1.61141877e-04 1.96245395e-04 1.11741037e-04 9.96932194e-05 5.45865005e-06 9.61196201e-06 6.08902410e-06 3.25548856e-05 5.06933211e-06 1.86950023e-05 1.15121330e-04 3.99943034e-05 2.20189424e-05 1.22042617e-04 5.15021384e-05 1.43541212e-05 6.37418487e-05 8.89431725e-05 9.91998968e-06 5.67405182e-05 2.14402389e-04 3.84987623e-05 8.77830787e-04 5.42226061e-04 5.42226061e-04 4.03281856e-04 6.24796085e-05 5.59638604e-05 5.14449301e-04 7.11514249e-04 1.36893193e-04 4.29262570e-04 1.61324010e-04 5.61956265e-05 1.26513556e-04 6.78220713e-05 1.97267859e-06 2.06282749e-08 0.00000000e+00 + 2024 06 14 12 00 00 3.97416402e-03 2.42118292e-03 1.35065099e-03 9.85478278e-04 7.37261618e-04 3.96448159e-04 2.94847080e-04 2.59146724e-04 5.51011198e-04 1.55900882e-04 1.00721678e-02 6.10285774e-03 2.67978839e-04 7.84389275e-05 4.93462718e-05 2.54258982e-04 4.13011818e-05 7.16344453e-05 2.34750220e-04 8.62980261e-05 1.59203708e-04 1.93813869e-04 1.10748726e-04 9.93122732e-05 5.42850066e-06 9.64578940e-06 6.08428054e-06 3.24456077e-05 5.06888682e-06 1.86176703e-05 1.13833484e-04 3.98134638e-05 2.15571752e-05 1.21500697e-04 5.14775980e-05 1.43335055e-05 6.27339045e-05 8.75181344e-05 9.94663351e-06 5.63312310e-05 2.11532986e-04 3.84891842e-05 8.74417941e-04 5.41999377e-04 5.41999377e-04 3.95110631e-04 5.96690923e-05 5.59439824e-05 5.04392453e-04 7.00807248e-04 1.35529934e-04 4.20617352e-04 1.61268414e-04 5.61739322e-05 1.26456264e-04 6.76986956e-05 1.96095697e-06 1.95497357e-08 0.00000000e+00 + 2024 06 15 12 00 00 3.96574484e-03 2.41466384e-03 1.34661009e-03 9.82644997e-04 7.34844538e-04 3.95483288e-04 2.93833567e-04 2.58009198e-04 5.48020114e-04 1.54899378e-04 1.00057158e-02 6.06037006e-03 2.66617293e-04 7.80080953e-05 4.91483072e-05 2.52236145e-04 4.09747794e-05 7.09776825e-05 2.33223108e-04 8.57253443e-05 1.57838259e-04 1.92093824e-04 1.09995360e-04 9.89297139e-05 5.40737637e-06 9.64032370e-06 6.07969996e-06 3.23334566e-05 5.05556018e-06 1.85385975e-05 1.12840759e-04 3.96864023e-05 2.12308340e-05 1.20271025e-04 5.07008110e-05 1.43136582e-05 6.18595599e-05 8.63507970e-05 9.94251532e-06 5.57792095e-05 2.08668762e-04 3.79998412e-05 8.63861845e-04 5.34581998e-04 5.34581998e-04 3.86248929e-04 5.76727616e-05 5.49922988e-05 4.94678259e-04 6.90454341e-04 1.33348766e-04 4.15429301e-04 1.62762431e-04 5.67152721e-05 1.27697168e-04 6.84309991e-05 1.98706070e-06 2.03810366e-08 0.00000000e+00 + 2024 06 16 12 00 00 3.94945801e-03 2.40287588e-03 1.33924214e-03 9.77315131e-04 7.30204021e-04 3.93542771e-04 2.91846457e-04 2.55797553e-04 5.42220764e-04 1.53128266e-04 9.87422888e-03 5.97538836e-03 2.64112743e-04 7.72893679e-05 4.87600350e-05 2.50452609e-04 4.07354441e-05 7.04943086e-05 2.31107118e-04 8.48505704e-05 1.56734762e-04 1.90812739e-04 1.09349618e-04 9.81729742e-05 5.39197172e-06 9.33868796e-06 6.06538997e-06 3.21960707e-05 5.03528827e-06 1.84491192e-05 1.12029518e-04 3.95931507e-05 2.09882710e-05 1.18473261e-04 4.95187298e-05 1.42514895e-05 6.10372021e-05 8.50666543e-05 9.70626934e-06 5.47091389e-05 2.04640833e-04 3.72530718e-05 8.44987453e-04 5.23291854e-04 5.23291854e-04 3.76310080e-04 5.61726338e-05 5.35404019e-05 4.85099229e-04 6.79586530e-04 1.30690262e-04 4.09421234e-04 1.61222083e-04 5.61537567e-05 1.26393462e-04 6.74655979e-05 1.93661834e-06 1.72310415e-08 0.00000000e+00 + 2024 06 17 12 00 00 3.91998055e-03 2.38313171e-03 1.32677503e-03 9.67973869e-04 7.21892378e-04 3.89890339e-04 2.88201587e-04 2.51777059e-04 5.31703447e-04 1.50245786e-04 9.63045295e-03 5.81603497e-03 2.59831948e-04 7.62553606e-05 4.81536890e-05 2.48802023e-04 4.05483297e-05 7.01155514e-05 2.28476932e-04 8.37235828e-05 1.55727169e-04 1.89801891e-04 1.08725589e-04 9.79456515e-05 5.37996821e-06 9.43018094e-06 6.05563328e-06 3.20608201e-05 5.00927381e-06 1.83484389e-05 1.11324852e-04 3.95202136e-05 2.07971025e-05 1.16462472e-04 4.80011571e-05 1.42091259e-05 6.02450440e-05 8.41799662e-05 9.77814198e-06 5.39548857e-05 1.99424119e-04 3.62918334e-05 8.25392135e-04 5.08794049e-04 5.08794049e-04 3.66031945e-04 5.49828634e-05 5.16720756e-05 4.75411578e-04 6.68635354e-04 1.27671110e-04 4.11720623e-04 1.69735369e-04 5.92469689e-05 1.33525645e-04 7.21677185e-05 2.14455572e-06 2.77362648e-08 4.01992484e-10 + 2024 06 18 12 00 00 3.89410835e-03 2.36529612e-03 1.31555699e-03 9.59679338e-04 7.14571367e-04 3.86728863e-04 2.85018123e-04 2.48254464e-04 5.22480404e-04 1.47613411e-04 9.41833504e-03 5.67793250e-03 2.55995245e-04 7.52633307e-05 4.75878237e-05 2.49393049e-04 4.07651067e-05 7.05471844e-05 2.26203873e-04 8.25919269e-05 1.56342548e-04 1.90894131e-04 1.08930375e-04 9.82113627e-05 5.39421162e-06 9.64339415e-06 6.05845889e-06 3.20215931e-05 4.98303816e-06 1.83135608e-05 1.11726013e-04 3.96044081e-05 2.10055892e-05 1.14932157e-04 4.64713434e-05 1.42214994e-05 6.03082778e-05 8.46569575e-05 9.94533548e-06 5.37943132e-05 1.96429410e-04 3.53256706e-05 8.11383655e-04 4.94183041e-04 4.94183041e-04 3.63084429e-04 5.62170811e-05 4.97935747e-05 4.74389341e-04 6.66530443e-04 1.25859627e-04 4.22508619e-04 1.79685625e-04 6.28624221e-05 1.41862637e-04 7.76718703e-05 2.38852488e-06 4.01056880e-08 1.51444226e-09 + 2024 06 19 12 00 00 3.88549893e-03 2.35820268e-03 1.31119350e-03 9.56747430e-04 7.12144529e-04 3.85787913e-04 2.84004557e-04 2.47110207e-04 5.19445117e-04 1.46509005e-04 9.35152377e-03 5.63545711e-03 2.54544654e-04 7.47632370e-05 4.73477699e-05 2.55083548e-04 4.18860523e-05 7.27935520e-05 2.25747816e-04 8.19102046e-05 1.60667334e-04 1.96700672e-04 1.11072826e-04 9.91780779e-05 5.46718693e-06 9.82133206e-06 6.06535177e-06 3.22178496e-05 4.96661632e-06 1.84420802e-05 1.14666780e-04 4.00403922e-05 2.21097827e-05 1.14922200e-04 4.55174741e-05 1.42515797e-05 6.24161056e-05 8.79718751e-05 1.00848891e-05 5.43127411e-05 1.99001482e-04 3.47385474e-05 8.07733410e-04 4.85092681e-04 4.85092681e-04 3.77730070e-04 6.28891750e-05 4.86488105e-05 4.94647255e-04 6.86507186e-04 1.27573223e-04 4.45541490e-04 1.83468702e-04 6.42357521e-05 1.45023299e-04 7.96862088e-05 2.47252126e-06 4.39548138e-08 1.84982483e-09 + 2024 06 20 12 00 00 3.87769763e-03 2.35273068e-03 1.30776264e-03 9.54332244e-04 7.10081989e-04 3.84861759e-04 2.83069226e-04 2.46080032e-04 5.16702746e-04 1.45710042e-04 9.28697643e-03 5.59298620e-03 2.53392589e-04 7.44899579e-05 4.71897243e-05 2.57837152e-04 4.24347119e-05 7.38914881e-05 2.25603011e-04 8.15964479e-05 1.62741018e-04 1.99525681e-04 1.12095909e-04 9.98239265e-05 5.50297809e-06 1.00221339e-05 6.06712456e-06 3.23174467e-05 4.95824970e-06 1.85024464e-05 1.16090796e-04 4.02537204e-05 2.26474280e-05 1.14930466e-04 4.50360851e-05 1.42594115e-05 6.34376223e-05 8.96603450e-05 1.02423794e-05 5.46479930e-05 1.99888510e-04 3.44616303e-05 8.05693482e-04 4.80530225e-04 4.80530225e-04 3.84729165e-04 6.61237224e-05 4.81046824e-05 5.04481625e-04 6.96402827e-04 1.28430428e-04 4.60279456e-04 1.90103990e-04 6.66457527e-05 1.50575967e-04 8.32976068e-05 2.62861042e-06 5.15600732e-08 2.52567744e-09 + 2024 06 21 12 00 00 3.87270148e-03 2.35032017e-03 1.30616411e-03 9.53069160e-04 7.08927843e-04 3.84186111e-04 2.82452420e-04 2.45429973e-04 5.14957783e-04 1.45430214e-04 9.24097977e-03 5.56114055e-03 2.52841727e-04 7.45196856e-05 4.71490231e-05 2.58866305e-04 4.26264742e-05 7.42729637e-05 2.26153377e-04 8.17461521e-05 1.63418991e-04 2.00487922e-04 1.12450773e-04 9.99050537e-05 5.51559533e-06 9.97035459e-06 6.06798458e-06 3.23587397e-05 4.96036409e-06 1.85332000e-05 1.16597910e-04 4.03281854e-05 2.28312041e-05 1.15191012e-04 4.51674423e-05 1.42632882e-05 6.38302981e-05 9.01821286e-05 1.02018879e-05 5.47531889e-05 2.00302717e-04 3.45782260e-05 8.07543676e-04 4.81828628e-04 4.81828628e-04 3.88207663e-04 6.72082650e-05 4.83242737e-05 5.08921733e-04 7.00640758e-04 1.29263283e-04 4.63198355e-04 1.89456852e-04 6.64086478e-05 1.50019642e-04 8.28175869e-05 2.59909398e-06 4.94254870e-08 2.31689139e-09 + 2024 06 22 12 00 00 3.87749610e-03 2.35438737e-03 1.30866357e-03 9.54902877e-04 7.10543531e-04 3.84731555e-04 2.83050591e-04 2.46119237e-04 5.16711643e-04 1.46092985e-04 9.27617372e-03 5.58241345e-03 2.53702485e-04 7.48786574e-05 4.72909207e-05 2.59100260e-04 4.26327751e-05 7.42814969e-05 2.27330784e-04 8.22547474e-05 1.63438239e-04 2.00475599e-04 1.12505232e-04 9.99958639e-05 5.51619705e-06 1.00639831e-05 6.07031434e-06 3.24035492e-05 4.97058390e-06 1.85608709e-05 1.16645518e-04 4.03304643e-05 2.28300065e-05 1.15865001e-04 4.57727263e-05 1.42735706e-05 6.39583199e-05 9.03675544e-05 1.02754071e-05 5.49233341e-05 2.01464576e-04 3.49994545e-05 8.14999376e-04 4.87660384e-04 4.87660384e-04 3.90849082e-04 6.71635789e-05 4.91350365e-05 5.11154656e-04 7.02771697e-04 1.30341921e-04 4.58991751e-04 1.83688686e-04 6.43102274e-05 1.45168438e-04 7.94689795e-05 2.44001127e-06 4.05345652e-08 1.49553951e-09 + 2024 06 23 12 00 00 3.88030031e-03 2.35712491e-03 1.31032231e-03 9.56092388e-04 7.11577914e-04 3.85028047e-04 2.83399630e-04 2.46532657e-04 5.17749538e-04 1.46559817e-04 9.29501176e-03 5.59306070e-03 2.54271625e-04 7.51668645e-05 4.74026575e-05 2.62829102e-04 4.33016801e-05 7.56191148e-05 2.28901139e-04 8.26792151e-05 1.66050794e-04 2.03909037e-04 1.13875930e-04 1.00782574e-04 5.55987863e-06 1.02325423e-05 6.07568618e-06 3.25853141e-05 4.97905639e-06 1.86802197e-05 1.18499183e-04 4.05905041e-05 2.34837251e-05 1.17101295e-04 4.62748460e-05 1.42970952e-05 6.54496368e-05 9.25851937e-05 1.04077233e-05 5.56463903e-05 2.04838781e-04 3.53505282e-05 8.24645818e-04 4.92500188e-04 4.92500188e-04 4.03988884e-04 7.10874097e-05 4.98104549e-05 5.26942407e-04 7.19057416e-04 1.33114622e-04 4.72052886e-04 1.84860970e-04 6.47346475e-05 1.46139673e-04 8.00224265e-05 2.45812762e-06 4.09562873e-08 1.52037831e-09 + 2024 06 24 12 00 00 3.90239290e-03 2.37215526e-03 1.31979810e-03 9.63294665e-04 7.18046148e-04 3.87772658e-04 2.86156974e-04 2.49590140e-04 5.25686143e-04 1.48788482e-04 9.47547690e-03 5.70995063e-03 2.57547123e-04 7.60373104e-05 4.78795781e-05 2.68953434e-04 4.43538040e-05 7.77241890e-05 2.32078192e-04 8.36746360e-05 1.70325112e-04 2.09322017e-04 1.16149810e-04 1.02139905e-04 5.62853165e-06 1.04701066e-05 6.08879673e-06 3.29108714e-05 5.00036840e-06 1.88973739e-05 1.21485491e-04 4.09995788e-05 2.45140196e-05 1.19714002e-04 4.75280511e-05 1.43542915e-05 6.79489391e-05 9.62101484e-05 1.05941435e-05 5.71520329e-05 2.12398607e-04 3.61857761e-05 8.46477126e-04 5.04526449e-04 5.04526449e-04 4.27149172e-04 7.72821077e-05 5.14251762e-05 5.53585610e-04 7.47461619e-04 1.38214177e-04 4.93673131e-04 1.87928998e-04 6.58480829e-05 1.48700646e-04 8.16362095e-05 2.52403051e-06 4.38618166e-08 1.77020709e-09 + 2024 06 25 12 00 00 3.92263344e-03 2.38894097e-03 1.33012610e-03 9.70553184e-04 7.24255669e-04 3.90037821e-04 2.88608627e-04 2.52381712e-04 5.32944602e-04 1.51453083e-04 9.62906259e-03 5.80559000e-03 2.61040082e-04 7.73515604e-05 4.84657769e-05 2.68924252e-04 4.41900193e-05 7.73886102e-05 2.35955198e-04 8.54888523e-05 1.69768963e-04 2.08392751e-04 1.16032519e-04 1.01722374e-04 5.61821398e-06 9.82519414e-06 6.10846109e-06 3.29770647e-05 5.04028867e-06 1.89766914e-05 1.21251413e-04 4.09355591e-05 2.43393704e-05 1.22231139e-04 4.98685287e-05 1.44400212e-05 6.80917786e-05 9.57024986e-05 1.00887904e-05 5.81614519e-05 2.16682912e-04 3.77169839e-05 8.73938757e-04 5.26949158e-04 5.26949158e-04 4.34704441e-04 7.61594158e-05 5.43910894e-05 5.58446581e-04 7.53528106e-04 1.41682690e-04 4.88983241e-04 1.85359820e-04 6.49123416e-05 1.46532049e-04 8.00769958e-05 2.44560028e-06 3.91636981e-08 1.32866704e-09 + 2024 06 26 12 00 00 3.97018204e-03 2.42079332e-03 1.35024528e-03 9.85807842e-04 7.37931192e-04 3.95960605e-04 2.94526528e-04 2.58922836e-04 5.49979043e-04 1.56128841e-04 1.00206430e-02 6.06059246e-03 2.67982854e-04 7.90990342e-05 4.94785484e-05 2.70566849e-04 4.43104218e-05 7.76243396e-05 2.40359421e-04 8.74116900e-05 1.70586072e-04 2.08955180e-04 1.16628418e-04 1.02027052e-04 5.62631431e-06 9.66030202e-06 6.11831565e-06 3.31700652e-05 5.08256198e-06 1.91177278e-05 1.21825256e-04 4.09821514e-05 2.44478812e-05 1.25351694e-04 5.23471448e-05 1.44830643e-05 6.89512339e-05 9.64891071e-05 9.95974115e-06 5.93020445e-05 2.24334646e-04 3.93395516e-05 9.03660038e-04 5.50696580e-04 5.50696580e-04 4.47788660e-04 7.67640595e-05 5.75337501e-05 5.69955753e-04 7.67500824e-04 1.46122931e-04 4.87030080e-04 1.79295801e-04 6.27061647e-05 1.41431139e-04 7.65489594e-05 2.27749993e-06 2.97331351e-08 4.56610127e-10 + 2024 06 27 12 00 00 4.00450745e-03 2.44464814e-03 1.36524034e-03 9.97026756e-04 7.47910596e-04 4.00167706e-04 2.98781136e-04 2.63647724e-04 5.62280014e-04 1.59684626e-04 1.02998217e-02 6.24122247e-03 2.73139299e-04 8.05137062e-05 5.02482719e-05 2.69507332e-04 4.39630036e-05 7.69211329e-05 2.43751183e-04 8.90688854e-05 1.69445755e-04 2.07078625e-04 1.16198339e-04 1.01937202e-04 5.60402550e-06 9.49093665e-06 6.12198346e-06 3.32324541e-05 5.11892067e-06 1.91676339e-05 1.21077676e-04 4.08467255e-05 2.40929934e-05 1.27585490e-04 5.44794661e-05 1.44991762e-05 6.87312345e-05 9.57538495e-05 9.82718702e-06 5.99747516e-05 2.28520218e-04 4.07373474e-05 9.26027199e-04 5.71128633e-04 5.71128633e-04 4.51265654e-04 7.45555328e-05 6.02406682e-05 5.70195136e-04 7.69701878e-04 1.48642133e-04 4.79476369e-04 1.77428916e-04 6.20259252e-05 1.39853272e-04 7.53980665e-05 2.21850723e-06 2.61241929e-08 1.15757182e-10 + 2024 06 28 12 00 00 4.02531750e-03 2.45710783e-03 1.37323737e-03 1.00340869e-03 7.53799704e-04 4.02888534e-04 3.01414066e-04 2.66523890e-04 5.69751332e-04 1.61428943e-04 1.04766919e-02 6.35810494e-03 2.75941229e-04 8.10304781e-05 5.06112514e-05 2.69274595e-04 4.38655057e-05 7.67215504e-05 2.44620152e-04 8.94804834e-05 1.69207860e-04 2.06527363e-04 1.16114244e-04 1.01893855e-04 5.59787513e-06 9.41724575e-06 6.12704243e-06 3.32607577e-05 5.12746701e-06 1.91900997e-05 1.20847382e-04 4.08086227e-05 2.39893387e-05 1.28186201e-04 5.49837132e-05 1.45213169e-05 6.86675624e-05 9.55433762e-05 9.76953452e-06 6.02490123e-05 2.30796040e-04 4.10805165e-05 9.32941797e-04 5.75976819e-04 5.75976819e-04 4.52259184e-04 7.38906907e-05 6.09026756e-05 5.70035219e-04 7.70347776e-04 1.49242019e-04 4.76668270e-04 1.76165648e-04 6.15653014e-05 1.38783281e-04 7.45994757e-05 2.17637261e-06 2.34661876e-08 0.00000000e+00 + 2024 06 29 12 00 00 4.02632096e-03 2.45901663e-03 1.37433932e-03 1.00406241e-03 7.54292749e-04 4.02921896e-04 3.01521121e-04 2.66676295e-04 5.70128093e-04 1.61791287e-04 1.04795962e-02 6.35811761e-03 2.76301490e-04 8.13058973e-05 5.07081158e-05 2.71136094e-04 4.41782176e-05 7.73461419e-05 2.45897037e-04 8.99244042e-05 1.70418485e-04 2.08124308e-04 1.16770269e-04 1.02389938e-04 5.61833149e-06 9.50895992e-06 6.13586672e-06 3.33610341e-05 5.13681953e-06 1.92590599e-05 1.21745177e-04 4.09301632e-05 2.42936032e-05 1.29183437e-04 5.55346662e-05 1.45598242e-05 6.94322650e-05 9.66682643e-05 9.84146027e-06 6.09354060e-05 2.32885392e-04 4.14517533e-05 9.42655994e-04 5.81269199e-04 5.81269199e-04 4.59975442e-04 7.57101167e-05 6.16195495e-05 5.78582003e-04 7.79444782e-04 1.51096494e-04 4.85601853e-04 1.80478374e-04 6.31319446e-05 1.42393912e-04 7.69603317e-05 2.27934238e-06 2.85571716e-08 3.17405835e-10 + 2024 06 30 12 00 00 4.04208830e-03 2.46657321e-03 1.37936931e-03 1.00849139e-03 7.58586360e-04 4.05141115e-04 3.03563908e-04 2.68863057e-04 5.75798021e-04 1.62724408e-04 1.06208811e-02 6.45374954e-03 2.78117467e-04 8.13808723e-05 5.09048672e-05 2.71177233e-04 4.41880053e-05 7.73634994e-05 2.45403250e-04 8.96731159e-05 1.70582146e-04 2.08150130e-04 1.16830788e-04 1.02194672e-04 5.61907509e-06 9.41622930e-06 6.13361844e-06 3.33639533e-05 5.13057457e-06 1.92613737e-05 1.21720210e-04 4.09338740e-05 2.42991504e-05 1.28805562e-04 5.51730045e-05 1.45501501e-05 6.93976929e-05 9.65775507e-05 9.76873052e-06 6.06700978e-05 2.33965920e-04 4.12337453e-05 9.38611442e-04 5.77828614e-04 5.77828614e-04 4.58829848e-04 7.57228758e-05 6.11934869e-05 5.77618153e-04 7.78591886e-04 1.50553277e-04 4.81431583e-04 1.74882763e-04 6.10966199e-05 1.37690143e-04 7.37319055e-05 2.12725629e-06 2.01502907e-08 0.00000000e+00 + 2024 07 01 12 00 00 4.02214760e-03 2.45275999e-03 1.37068590e-03 1.00208570e-03 7.52940433e-04 4.02711525e-04 3.01112445e-04 2.66148511e-04 5.68688908e-04 1.60681688e-04 1.04576162e-02 6.34751767e-03 2.75148850e-04 8.06060907e-05 5.04726687e-05 2.71356441e-04 4.43110272e-05 7.76091358e-05 2.43558020e-04 8.87781731e-05 1.70888263e-04 2.08777474e-04 1.16903279e-04 1.01984700e-04 5.62712667e-06 9.42618353e-06 6.12863878e-06 3.33130004e-05 5.10992249e-06 1.92237148e-05 1.21904428e-04 4.09816828e-05 2.44186987e-05 1.27371861e-04 5.39682398e-05 1.45285565e-05 6.93323763e-05 9.66540914e-05 9.77644377e-06 6.00078630e-05 2.31197319e-04 4.04704770e-05 9.24551425e-04 5.66318911e-04 5.66318911e-04 4.55300769e-04 7.64370081e-05 5.97099774e-05 5.75782219e-04 7.75123637e-04 1.48949859e-04 4.79662945e-04 1.69930502e-04 5.92959033e-05 1.33531486e-04 7.09119246e-05 1.99682297e-06 1.40295526e-08 0.00000000e+00 + 2024 07 02 12 00 00 3.99408202e-03 2.43319945e-03 1.35839879e-03 9.93014649e-04 7.44940437e-04 3.99296136e-04 2.97658912e-04 2.62319689e-04 5.58673644e-04 1.57778250e-04 1.02285618e-02 6.19878769e-03 2.70945984e-04 7.94819661e-05 4.98475818e-05 2.69199096e-04 4.40385978e-05 7.70616869e-05 2.40446572e-04 8.74688092e-05 1.69574159e-04 2.07349799e-04 1.16109520e-04 1.01359736e-04 5.60946064e-06 9.43854975e-06 6.11687210e-06 3.31440569e-05 5.07999575e-06 1.91024000e-05 1.20946913e-04 4.08756634e-05 2.41476286e-05 1.24892414e-04 5.22206537e-05 1.44774211e-05 6.83089088e-05 9.54092054e-05 9.78605531e-06 5.87614914e-05 2.25479063e-04 3.93561466e-05 9.01391054e-04 5.49614104e-04 5.49614104e-04 4.42669297e-04 7.47853366e-05 5.75456361e-05 5.63595832e-04 7.60669120e-04 1.45314058e-04 4.70465294e-04 1.64925099e-04 5.74762649e-05 1.29331078e-04 6.80864097e-05 1.86775553e-06 9.46704972e-09 0.00000000e+00 + 2024 07 03 12 00 00 3.95089186e-03 2.40724272e-03 1.34175399e-03 9.79940163e-04 7.32986409e-04 3.93691979e-04 2.92236992e-04 2.56407947e-04 5.43237104e-04 1.54163614e-04 9.86013866e-03 5.95443845e-03 2.65151451e-04 7.84470831e-05 4.90642602e-05 3.04401825e-04 5.07675228e-05 9.05662950e-05 2.44652666e-04 8.66864924e-05 1.95715568e-04 2.42425864e-04 1.29394731e-04 1.06373750e-04 6.04658417e-06 9.44635540e-06 6.11387368e-06 3.44570235e-05 5.06192155e-06 1.99987155e-05 1.39243394e-04 4.34936723e-05 3.08122049e-05 1.29461763e-04 5.11663733e-05 1.44644218e-05 8.19973058e-05 1.15231833e-04 9.79206088e-06 6.16311689e-05 2.44524609e-04 3.86887579e-05 9.08819676e-04 5.39542828e-04 5.39542828e-04 5.46835054e-04 1.15239504e-04 5.62483736e-05 7.01056641e-04 8.98294576e-04 1.62521039e-04 5.94623096e-04 1.65604269e-04 5.77231913e-05 1.29901195e-04 6.84713701e-05 1.88544412e-06 1.00970965e-08 0.00000000e+00 + 2024 07 04 12 00 00 3.94258098e-03 2.39815265e-03 1.33631432e-03 9.76560413e-04 7.30348518e-04 3.92960099e-04 2.91301902e-04 2.55292655e-04 5.40293513e-04 1.52626084e-04 9.80488111e-03 5.92257455e-03 2.63372774e-04 7.75682446e-05 4.87487112e-05 2.69469732e-04 4.43022873e-05 7.75904744e-05 2.35975318e-04 8.53218371e-05 1.70184575e-04 2.08719626e-04 1.16215226e-04 1.01362901e-04 5.62661044e-06 9.68459790e-06 6.10795978e-06 3.30214567e-05 5.03082410e-06 1.90053066e-05 1.21332339e-04 4.09782340e-05 2.44080205e-05 1.21661486e-04 4.93498927e-05 1.44387261e-05 6.81279189e-05 9.57181890e-05 9.97871539e-06 5.77127083e-05 2.18538466e-04 3.75281437e-05 8.69469192e-04 5.22176363e-04 5.22176363e-04 4.34116335e-04 7.63619959e-05 5.39946370e-05 5.58692770e-04 7.53000259e-04 1.41424428e-04 4.79140042e-04 1.71087130e-04 5.97163002e-05 1.34501527e-04 7.15597747e-05 2.02608120e-06 1.50484709e-08 0.00000000e+00 + 2024 07 05 12 00 00 3.92283684e-03 2.38484297e-03 1.32791610e-03 9.70267322e-04 7.24748069e-04 3.90518593e-04 2.88859068e-04 2.52594455e-04 5.33241631e-04 1.50675206e-04 9.64206945e-03 5.81633747e-03 2.60487382e-04 7.68458479e-05 4.83191150e-05 2.70113649e-04 4.45050624e-05 7.79973634e-05 2.34407113e-04 8.45290313e-05 1.70815216e-04 2.09775808e-04 1.16464189e-04 1.01340018e-04 5.63978720e-06 9.77474629e-06 6.10288807e-06 3.29975245e-05 5.01281065e-06 1.89831972e-05 1.21761381e-04 4.10571258e-05 2.46087176e-05 1.20499710e-04 4.82973381e-05 1.44166886e-05 6.82722835e-05 9.61320382e-05 1.00493475e-05 5.71944054e-05 2.16212844e-04 3.68543086e-05 8.57461802e-04 5.12111792e-04 5.12111792e-04 4.32554714e-04 7.75795488e-05 5.26864256e-05 5.59065429e-04 7.51908167e-04 1.40272327e-04 4.79802467e-04 1.67301283e-04 5.83402307e-05 1.31326135e-04 6.94365342e-05 1.93000948e-06 1.16943454e-08 0.00000000e+00 + 2024 07 06 12 00 00 3.91401901e-03 2.37760456e-03 1.32345810e-03 9.67169351e-04 7.22119332e-04 3.89535087e-04 2.87799267e-04 2.51392171e-04 5.30095507e-04 1.49535914e-04 9.57442780e-03 5.77384159e-03 2.58986289e-04 7.63044670e-05 4.80773192e-05 2.69834307e-04 4.45237849e-05 7.80353032e-05 2.32787786e-04 8.37837288e-05 1.70825471e-04 2.09877503e-04 1.16400142e-04 1.01295343e-04 5.64098555e-06 9.91582201e-06 6.09188573e-06 3.29540270e-05 4.99601265e-06 1.89426446e-05 1.21704453e-04 4.10644250e-05 2.46279407e-05 1.19325195e-04 4.73149848e-05 1.43688230e-05 6.80860281e-05 9.60609348e-05 1.01597499e-05 5.65788239e-05 2.14112083e-04 3.62219784e-05 8.44442183e-04 5.02713863e-04 5.02713863e-04 4.28260101e-04 7.76996196e-05 5.14595071e-05 5.55851574e-04 7.47990596e-04 1.38668286e-04 4.78890650e-04 1.65913509e-04 5.78360876e-05 1.30164126e-04 6.86754804e-05 1.89672268e-06 1.05853701e-08 0.00000000e+00 + 2024 07 07 12 00 00 3.89643981e-03 2.36578445e-03 1.31599095e-03 9.61633294e-04 7.17225646e-04 3.87380840e-04 2.85637255e-04 2.49005013e-04 5.23824897e-04 1.47810410e-04 9.42861470e-03 5.67824841e-03 2.56424765e-04 7.56713297e-05 4.77070362e-05 2.69733701e-04 4.45721758e-05 7.81328010e-05 2.31277711e-04 8.30852310e-05 1.70873162e-04 2.10133901e-04 1.16355031e-04 1.01457097e-04 5.64411203e-06 1.01578342e-05 6.09150011e-06 3.29142650e-05 4.98043300e-06 1.89061083e-05 1.21736172e-04 4.10832668e-05 2.46765499e-05 1.18313412e-04 4.64028970e-05 1.43671437e-05 6.79618080e-05 9.61909136e-05 1.03493679e-05 5.63610741e-05 2.11735416e-04 3.56307079e-05 8.35519786e-04 4.93982900e-04 4.93982900e-04 4.25124217e-04 7.79981259e-05 5.03131247e-05 5.53544618e-04 7.44815631e-04 1.37318790e-04 4.82131053e-04 1.69376711e-04 5.90950585e-05 1.33070187e-04 7.06288698e-05 1.98584860e-06 1.37312128e-08 0.00000000e+00 + 2024 07 08 12 00 00 3.91225821e-03 2.37644352e-03 1.32271747e-03 9.66686648e-04 7.21730130e-04 3.89339422e-04 2.87597083e-04 2.51170473e-04 5.29479243e-04 1.49374209e-04 9.55896090e-03 5.76324165e-03 2.58738189e-04 7.62464496e-05 4.80324773e-05 2.70060479e-04 4.45741229e-05 7.81367067e-05 2.32695827e-04 8.37258995e-05 1.71011420e-04 2.10144014e-04 1.16486225e-04 1.01474104e-04 5.64423826e-06 1.00443591e-05 6.09028284e-06 3.29657350e-05 4.99485686e-06 1.89450963e-05 1.21837891e-04 4.10840235e-05 2.46784708e-05 1.19310200e-04 4.72464948e-05 1.43618396e-05 6.81804812e-05 9.62919300e-05 1.02603226e-05 5.66122382e-05 2.13998507e-04 3.61741346e-05 8.43835674e-04 5.02053788e-04 5.02053788e-04 4.28740164e-04 7.80097675e-05 5.13674575e-05 5.56624854e-04 7.48805620e-04 1.38678947e-04 4.81189556e-04 1.67765246e-04 5.85090314e-05 1.31716447e-04 6.97068093e-05 1.94290888e-06 1.21757012e-08 0.00000000e+00 + 2024 07 09 12 00 00 3.93934329e-03 2.39661654e-03 1.33528592e-03 9.75773027e-04 7.29642167e-04 3.92534943e-04 2.90907879e-04 2.54876424e-04 5.39159335e-04 1.52450889e-04 9.77456663e-03 5.90135641e-03 2.63016671e-04 7.75778005e-05 4.87112268e-05 2.66805280e-04 4.38160787e-05 7.66163052e-05 2.35747319e-04 8.54093290e-05 1.68255590e-04 2.06203075e-04 1.15228518e-04 1.01157295e-04 5.59494947e-06 9.74411159e-06 6.09150520e-06 3.29214371e-05 5.03255360e-06 1.89287635e-05 1.20020286e-04 4.07891348e-05 2.39294095e-05 1.21313717e-04 4.94524953e-05 1.43671583e-05 6.71482534e-05 9.42733954e-05 1.00250450e-05 5.72990218e-05 2.16037052e-04 3.76003649e-05 8.64113838e-04 5.23166079e-04 5.23166079e-04 4.25819268e-04 7.34716887e-05 5.41334797e-05 5.48667278e-04 7.43567037e-04 1.40150650e-04 4.76598098e-04 1.79585268e-04 6.28054426e-05 1.41631325e-04 7.63427171e-05 2.24362352e-06 2.61000878e-08 7.94047494e-11 + 2024 07 10 12 00 00 3.99831202e-03 2.43574663e-03 1.36002986e-03 9.94511060e-04 7.46424659e-04 3.99894726e-04 2.98235819e-04 2.62959918e-04 5.60249098e-04 1.58159117e-04 1.02625052e-02 6.22008927e-03 2.71546103e-04 7.96356328e-05 4.99235522e-05 2.69492621e-04 4.40750242e-05 7.71356456e-05 2.40895960e-04 8.76258651e-05 1.69779057e-04 2.07548966e-04 1.16207315e-04 1.02448042e-04 5.61178786e-06 9.92719361e-06 6.11889336e-06 3.31910496e-05 5.08231569e-06 1.91169273e-05 1.21077788e-04 4.08898690e-05 2.41852365e-05 1.25516623e-04 5.23637980e-05 1.44863006e-05 6.84941291e-05 9.59933325e-05 1.01686834e-05 5.97894443e-05 2.26319789e-04 3.94793140e-05 9.05836969e-04 5.51023940e-04 5.51023940e-04 4.44518600e-04 7.50212988e-05 5.77781931e-05 5.65126700e-04 7.64740291e-04 1.45776132e-04 4.95054742e-04 1.97100772e-04 6.91720183e-05 1.56323261e-04 8.61723614e-05 2.68881427e-06 4.94069404e-08 2.19489014e-09 + 2024 07 11 12 00 00 4.01188036e-03 2.44726139e-03 1.36709524e-03 9.99378224e-04 7.50530836e-04 4.01380895e-04 2.99861044e-04 2.64813826e-04 5.65094045e-04 1.59992159e-04 1.03649476e-02 6.28383607e-03 2.73920138e-04 8.05434821e-05 5.03288364e-05 2.69662228e-04 4.40050528e-05 7.69946724e-05 2.43617612e-04 8.88924638e-05 1.69598234e-04 2.07178276e-04 1.16231992e-04 1.02601773e-04 5.60726730e-06 9.88900138e-06 6.12160657e-06 3.32662902e-05 5.11075195e-06 1.91723626e-05 1.21065423e-04 4.08626220e-05 2.41149537e-05 1.27381070e-04 5.40273963e-05 1.44980964e-05 6.87292653e-05 9.60848138e-05 1.01388257e-05 6.03947580e-05 2.29054743e-04 4.05529980e-05 9.23656611e-04 5.66942757e-04 5.66942757e-04 4.50370945e-04 7.45897589e-05 5.98608807e-05 5.69551706e-04 7.70301053e-04 1.48287621e-04 4.93309268e-04 1.95948471e-04 6.87525469e-05 1.55352185e-04 8.54866103e-05 2.65515562e-06 4.74477226e-08 2.01202948e-09 + 2024 07 12 12 00 00 4.02390831e-03 2.45551255e-03 1.37228972e-03 1.00327948e-03 7.54008646e-04 4.02864057e-04 3.01353351e-04 2.66467626e-04 5.69401121e-04 1.61214723e-04 1.04632310e-02 6.34758770e-03 2.75707250e-04 8.10132457e-05 5.05847664e-05 2.70913168e-04 4.41899290e-05 7.73640466e-05 2.44984185e-04 8.94339930e-05 1.70413198e-04 2.08123606e-04 1.16697749e-04 1.02807843e-04 5.61935631e-06 9.76883966e-06 6.12368458e-06 3.33466374e-05 5.12276856e-06 1.92323667e-05 1.21644994e-04 4.09344822e-05 2.42950351e-05 1.28417915e-04 5.47313073e-05 1.45071623e-05 6.92872263e-05 9.66997313e-05 1.00448116e-05 6.08618515e-05 2.31612026e-04 4.10108856e-05 9.31995500e-04 5.73683064e-04 5.73683064e-04 4.56446648e-04 7.56676134e-05 6.07483438e-05 5.75941407e-04 7.77716916e-04 1.49956837e-04 4.99154236e-04 1.99124744e-04 6.99061831e-05 1.58010094e-04 8.72143086e-05 2.72975616e-06 5.10767649e-08 2.33437163e-09 + 2024 07 13 12 00 00 4.05432613e-03 2.47413030e-03 1.38419843e-03 1.01263412e-03 7.62564507e-04 4.06796296e-04 3.05178773e-04 2.70651723e-04 5.80297443e-04 1.63839754e-04 1.07207366e-02 6.51758611e-03 2.79857003e-04 8.18242682e-05 5.11538364e-05 2.80713348e-04 4.59225354e-05 8.08387878e-05 2.48080580e-04 9.01238585e-05 1.77496815e-04 2.17127625e-04 1.20375450e-04 1.05225383e-04 5.73202706e-06 1.02457641e-05 6.15166136e-06 3.38184597e-05 5.13790146e-06 1.95461246e-05 1.26498847e-04 4.16084775e-05 2.60065281e-05 1.31588667e-04 5.56187762e-05 1.46289225e-05 7.32048021e-05 1.02618004e-04 1.04187820e-05 6.34546555e-05 2.42581591e-04 4.15927410e-05 9.58074313e-04 5.82186971e-04 5.82186971e-04 4.90531294e-04 8.60335887e-05 6.18751219e-05 6.16074926e-04 8.21184069e-04 1.56454975e-04 5.45703672e-04 2.18784941e-04 7.70521568e-05 1.74499864e-04 9.82378817e-05 3.22837834e-06 7.71322078e-08 4.69809436e-09 + 2024 07 14 12 00 00 4.05460245e-03 2.47734676e-03 1.38597338e-03 1.01344127e-03 7.63008084e-04 4.06588459e-04 3.05149581e-04 2.70696812e-04 5.80405211e-04 1.64500738e-04 1.07107319e-02 6.50697201e-03 2.80403675e-04 8.23698336e-05 5.12967856e-05 2.85757404e-04 4.67946171e-05 8.25870840e-05 2.50955260e-04 9.10754374e-05 1.80899870e-04 2.21652420e-04 1.22201472e-04 1.06127386e-04 5.78876970e-06 1.03245446e-05 6.16601101e-06 3.40636413e-05 5.15872161e-06 1.97180538e-05 1.29000642e-04 4.19476943e-05 2.68667907e-05 1.33789469e-04 5.68402000e-05 1.46914143e-05 7.52693288e-05 1.05541542e-04 1.04806713e-05 6.46184146e-05 2.47445577e-04 4.23948979e-05 9.77822767e-04 5.93892625e-04 5.93892625e-04 5.10284433e-04 9.12378950e-05 6.34282478e-05 6.38807529e-04 8.44275259e-04 1.61007946e-04 5.59945768e-04 2.16038640e-04 7.60528739e-05 1.72188719e-04 9.66313110e-05 3.15126651e-06 7.27655717e-08 4.29333937e-09 + 2024 07 15 12 00 00 4.04816513e-03 2.47489202e-03 1.38426678e-03 1.01186488e-03 7.61449991e-04 4.05647288e-04 3.04319609e-04 2.69829972e-04 5.78121461e-04 1.64262506e-04 1.06497526e-02 6.46448955e-03 2.79782961e-04 8.24820523e-05 5.12568718e-05 2.84282329e-04 4.65006480e-05 8.19955429e-05 2.51464517e-04 9.14158707e-05 1.79663915e-04 2.20102803e-04 1.21597180e-04 1.05936535e-04 5.76974635e-06 1.02972364e-05 6.16895122e-06 3.40128858e-05 5.16569307e-06 1.96867487e-05 1.28222507e-04 4.18332522e-05 2.65727926e-05 1.33960374e-04 5.72521589e-05 1.47042680e-05 7.47178609e-05 1.04696562e-04 1.04594044e-05 6.46785742e-05 2.46314080e-04 4.26779297e-05 9.81662743e-04 5.97857032e-04 5.97857032e-04 5.07110969e-04 8.94390279e-05 6.39737176e-05 6.34033858e-04 8.39339265e-04 1.60913476e-04 5.55782331e-04 2.17688059e-04 7.66518584e-05 1.73568304e-04 9.75228329e-05 3.18937261e-06 7.45883881e-08 4.45439881e-09 + 2024 07 16 12 00 00 4.06643287e-03 2.48480784e-03 1.39072854e-03 1.01726139e-03 7.66549696e-04 4.08124647e-04 3.06659987e-04 2.72363056e-04 5.84689345e-04 1.65584790e-04 1.08088155e-02 6.57075047e-03 2.82078289e-04 8.27741334e-05 5.15499172e-05 2.89899586e-04 4.75187931e-05 8.40374385e-05 2.52559318e-04 9.14772449e-05 1.83833225e-04 2.25393872e-04 1.23728498e-04 1.07120219e-04 5.83595611e-06 1.05186366e-05 6.18095000e-06 3.42661711e-05 5.16633081e-06 1.98545893e-05 1.31014357e-04 4.22293204e-05 2.75785278e-05 1.35198939e-04 5.72940509e-05 1.47565443e-05 7.69091860e-05 1.08023276e-04 1.06329513e-05 6.57761109e-05 2.52177275e-04 4.27238381e-05 9.90554449e-04 5.98282414e-04 5.98282414e-04 5.25010389e-04 9.55304014e-05 6.40588696e-05 6.55977100e-04 8.62682145e-04 1.63971470e-04 5.78443503e-04 2.23053064e-04 7.86015098e-05 1.78065348e-04 1.00506812e-04 3.32273266e-06 8.14347374e-08 5.07236386e-09 + 2024 07 17 12 00 00 4.06425386e-03 2.47722054e-03 1.38646021e-03 1.01530007e-03 7.65461788e-04 4.08377788e-04 3.06557127e-04 2.72105541e-04 5.83958983e-04 1.64114597e-04 1.08139854e-02 6.58139214e-03 2.80772415e-04 8.16711949e-05 5.12185457e-05 2.87986363e-04 4.72802931e-05 8.35564919e-05 2.48247993e-04 8.95865902e-05 1.82877325e-04 2.24125461e-04 1.23068438e-04 1.05924865e-04 5.82057000e-06 1.01575977e-05 6.18739359e-06 3.40823924e-05 5.12312799e-06 1.97417037e-05 1.30060995e-04 4.21364297e-05 2.73381622e-05 1.31960646e-04 5.47711272e-05 1.47846557e-05 7.58251191e-05 1.06576476e-04 1.03500446e-05 6.44258869e-05 2.48852956e-04 4.11148794e-05 9.64699511e-04 5.74166048e-04 5.74166048e-04 5.11166695e-04 9.40505241e-05 6.09338866e-05 6.42289641e-04 8.46278095e-04 1.59302712e-04 5.59843333e-04 2.04882437e-04 7.19957203e-05 1.62816060e-04 9.02416814e-05 2.85330390e-06 5.65168008e-08 2.80191603e-09 + 2024 07 18 12 00 00 4.05419903e-03 2.47555348e-03 1.38497810e-03 1.01329259e-03 7.63203370e-04 4.06723976e-04 3.05202978e-04 2.70739046e-04 5.80376736e-04 1.64187719e-04 1.07104827e-02 6.50704056e-03 2.80153572e-04 8.22075103e-05 5.12492310e-05 2.90664148e-04 4.77255584e-05 8.44480819e-05 2.51229626e-04 9.07593756e-05 1.84498398e-04 2.26424120e-04 1.24002184e-04 1.06095535e-04 5.84959125e-06 9.89468172e-06 6.18353079e-06 3.42180840e-05 5.14862913e-06 1.98458746e-05 1.31412861e-04 4.23095771e-05 2.77754851e-05 1.33826918e-04 5.62681525e-05 1.47679340e-05 7.70120734e-05 1.07896337e-04 1.01439880e-05 6.48360415e-05 2.50856160e-04 4.21021949e-05 9.78594883e-04 5.88518474e-04 5.88518474e-04 5.23725157e-04 9.66865162e-05 6.28446753e-05 6.56667476e-04 8.60677940e-04 1.63004079e-04 5.64942594e-04 2.00310239e-04 7.03329453e-05 1.58974764e-04 8.76224491e-05 2.73112807e-06 4.98515995e-08 2.19007443e-09 + 2024 07 19 12 00 00 4.04525878e-03 2.46782746e-03 1.38024822e-03 1.01014246e-03 7.60611209e-04 4.05773631e-04 3.04153944e-04 2.69543548e-04 5.77214441e-04 1.62962470e-04 1.06427140e-02 6.46456182e-03 2.78581925e-04 8.16174971e-05 5.09901270e-05 2.90998655e-04 4.78641246e-05 8.47235089e-05 2.49550726e-04 8.99241946e-05 1.84953263e-04 2.27117110e-04 1.24155464e-04 1.06168560e-04 5.85871785e-06 1.01242760e-05 6.17667902e-06 3.42013837e-05 5.12912193e-06 1.98209716e-05 1.31644212e-04 4.23633755e-05 2.79078988e-05 1.32595530e-04 5.51315490e-05 1.47382249e-05 7.70271449e-05 1.08219282e-04 1.03241233e-05 6.42913191e-05 2.49179036e-04 4.13879578e-05 9.66036771e-04 5.77667588e-04 5.77667588e-04 5.20919910e-04 9.74659750e-05 6.14552235e-05 6.55425022e-04 8.58390727e-04 1.61545517e-04 5.64161270e-04 1.96382814e-04 6.89043191e-05 1.55672709e-04 8.53514499e-05 2.62381868e-06 4.38960932e-08 1.64089951e-09 + 2024 07 20 12 00 00 4.02088160e-03 2.45026719e-03 1.36926379e-03 1.00217558e-03 7.53662805e-04 4.02863301e-04 3.01176317e-04 2.66230145e-04 5.68528204e-04 1.60327124e-04 1.04456144e-02 6.33708835e-03 2.74843446e-04 8.05518059e-05 5.04197174e-05 2.89882258e-04 4.77794325e-05 8.45501316e-05 2.46643995e-04 8.86285154e-05 1.84391540e-04 2.26638086e-04 1.23746095e-04 1.05873194e-04 5.85337693e-06 1.02130558e-05 6.16999823e-06 3.40841673e-05 5.09936472e-06 1.97330329e-05 1.31193064e-04 4.23302816e-05 2.78178341e-05 1.30406699e-04 5.33947314e-05 1.47092520e-05 7.64043272e-05 1.07615356e-04 1.03939987e-05 6.34251304e-05 2.44678175e-04 4.02840873e-05 9.45615705e-04 5.61070396e-04 5.61070396e-04 5.11671938e-04 9.68881417e-05 5.93104633e-05 6.47200800e-04 8.48391727e-04 1.58473905e-04 5.62230646e-04 1.96724589e-04 6.90276713e-05 1.55953094e-04 8.54887225e-05 2.62640704e-06 4.37565554e-08 1.62121623e-09 + 2024 07 21 12 00 00 4.00611554e-03 2.43882854e-03 1.36217227e-03 9.97189767e-04 7.49401106e-04 4.01170212e-04 2.99395805e-04 2.64230115e-04 5.63274884e-04 1.58567102e-04 1.03291988e-02 6.26273304e-03 2.72450484e-04 7.97739320e-05 5.00373194e-05 2.86653312e-04 4.72689135e-05 8.35237792e-05 2.43973549e-04 8.76098755e-05 1.82246457e-04 2.23957382e-04 1.22553991e-04 1.04919734e-04 5.82029534e-06 9.95532027e-06 6.16055404e-06 3.38845314e-05 5.07595178e-06 1.96014898e-05 1.29626269e-04 4.21315781e-05 2.73089827e-05 1.28199331e-04 5.20283007e-05 1.46682418e-05 7.49886478e-05 1.05554426e-04 1.01919861e-05 6.22681719e-05 2.39802862e-04 3.94160888e-05 9.25748032e-04 5.48013253e-04 5.48013253e-04 4.96954615e-04 9.37832519e-05 5.76238846e-05 6.31430653e-04 8.31106668e-04 1.54793356e-04 5.50265883e-04 1.93855076e-04 6.79842473e-05 1.53543232e-04 8.38531265e-05 2.55065020e-06 3.96632089e-08 1.24642918e-09 + 2024 07 22 12 00 00 3.99198747e-03 2.42876446e-03 1.35586773e-03 9.92600922e-04 7.45390131e-04 3.99475274e-04 2.97668106e-04 2.62310421e-04 5.58240950e-04 1.57063509e-04 1.02144847e-02 6.18837401e-03 2.70302608e-04 7.91773965e-05 4.97156719e-05 2.81849462e-04 4.64481651e-05 8.18750530e-05 2.41680279e-04 8.68933508e-05 1.78876929e-04 2.19662270e-04 1.20766685e-04 1.04059256e-04 5.76704952e-06 1.01072284e-05 6.14501987e-06 3.36618272e-05 5.05948337e-06 1.94361875e-05 1.27250584e-04 4.18121839e-05 2.64933187e-05 1.26150034e-04 5.10671933e-05 1.46007122e-05 7.30202013e-05 1.02926183e-04 1.03112019e-05 6.08939810e-05 2.34035418e-04 3.88055370e-05 9.08796573e-04 5.38829248e-04 5.38829248e-04 4.78619987e-04 8.88182549e-05 5.64375427e-05 6.10448778e-04 8.08277925e-04 1.50845271e-04 5.27399440e-04 1.83819933e-04 6.43362597e-05 1.45123008e-04 7.81972605e-05 2.29288401e-06 2.60465647e-08 7.38076267e-12 + 2024 07 23 12 00 00 3.98254048e-03 2.42296052e-03 1.35215793e-03 9.89725847e-04 7.42781559e-04 3.98262727e-04 2.96487939e-04 2.61021297e-04 5.54868811e-04 1.56248282e-04 1.01342714e-02 6.13525882e-03 2.69016440e-04 7.89350461e-05 4.95445804e-05 2.74565186e-04 4.51309839e-05 7.92307430e-05 2.40065270e-04 8.66892340e-05 1.73591622e-04 2.12787406e-04 1.18047845e-04 1.02636180e-04 5.68152063e-06 9.95857481e-06 6.12047734e-06 3.33531339e-05 5.05470343e-06 1.92210166e-05 1.23596490e-04 4.12996742e-05 2.51872960e-05 1.24354493e-04 5.07887686e-05 1.44939593e-05 7.01681314e-05 9.86787849e-05 1.01945130e-05 5.92570285e-05 2.27274581e-04 3.86308791e-05 8.93452500e-04 5.36171673e-04 5.36171673e-04 4.54446319e-04 8.08833807e-05 5.60977089e-05 5.81315660e-04 7.77910096e-04 1.46539184e-04 4.97174927e-04 1.75908298e-04 6.14603130e-05 1.38485258e-04 7.37442946e-05 2.09034185e-06 1.56920365e-08 0.00000000e+00 + 2024 07 24 12 00 00 3.98696482e-03 2.42656642e-03 1.35438019e-03 9.91288095e-04 7.44117875e-04 3.98761826e-04 2.97023270e-04 2.61628416e-04 5.56451146e-04 1.56816093e-04 1.01681732e-02 6.15650937e-03 2.69767133e-04 7.92089354e-05 4.96749105e-05 2.68470125e-04 4.39743424e-05 7.69080012e-05 2.39856103e-04 8.70594406e-05 1.69053142e-04 2.06742448e-04 1.15763112e-04 1.01294188e-04 5.60644985e-06 9.50636531e-06 6.10438146e-06 3.31129137e-05 5.06299293e-06 1.90678915e-05 1.20472900e-04 4.08496067e-05 2.40391280e-05 1.23681502e-04 5.12738596e-05 1.44239442e-05 6.78433048e-05 9.48815806e-05 9.84002545e-06 5.82748590e-05 2.23435579e-04 3.89445166e-05 8.88264687e-04 5.40814083e-04 5.40814083e-04 4.36532671e-04 7.39009643e-05 5.67059673e-05 5.58403751e-04 7.55065595e-04 1.43956378e-04 4.74467457e-04 1.73947727e-04 6.07477174e-05 1.36841015e-04 7.26463028e-05 2.04076422e-06 1.39659633e-08 0.00000000e+00 + 2024 07 25 12 00 00 3.98501398e-03 2.42531563e-03 1.35358500e-03 9.90669560e-04 7.43555013e-04 3.98513571e-04 2.96778077e-04 2.61358329e-04 5.55749882e-04 1.56635109e-04 1.01519280e-02 6.14588335e-03 2.69490263e-04 7.91481986e-05 4.96450704e-05 2.64390331e-04 4.32209432e-05 7.53945438e-05 2.39036355e-04 8.69939162e-05 1.66051891e-04 2.02799477e-04 1.14225915e-04 1.00658750e-04 5.55757506e-06 9.58026503e-06 6.09908057e-06 3.29540494e-05 5.06163342e-06 1.89540220e-05 1.18389818e-04 4.05564206e-05 2.32903447e-05 1.22834960e-04 5.11936494e-05 1.44008911e-05 6.62383489e-05 9.26264879e-05 9.89791806e-06 5.76125799e-05 2.20262555e-04 3.88898974e-05 8.83734040e-04 5.40042855e-04 5.40042855e-04 4.23556480e-04 6.93428156e-05 5.66006114e-05 5.42098507e-04 7.38048171e-04 1.41651465e-04 4.56335700e-04 1.68335087e-04 5.87077830e-05 1.32134304e-04 6.95064515e-05 1.89922029e-06 9.04866226e-09 0.00000000e+00 + 2024 07 26 12 00 00 3.96598424e-03 2.41360957e-03 1.34610273e-03 9.84813952e-04 7.38210802e-04 3.96060586e-04 2.94388345e-04 2.58743622e-04 5.48936127e-04 1.54981916e-04 9.99096345e-03 6.03963695e-03 2.66886009e-04 7.86343815e-05 4.92894270e-05 2.61787091e-04 4.27830353e-05 7.45166733e-05 2.37646635e-04 8.65483657e-05 1.64173805e-04 2.00527677e-04 1.13222562e-04 1.00478041e-04 5.52908168e-06 9.74866925e-06 6.09860072e-06 3.28208262e-05 5.05179305e-06 1.88572867e-05 1.17131358e-04 4.03860846e-05 2.28584220e-05 1.21779721e-04 5.06169570e-05 1.43987651e-05 6.51730022e-05 9.13070446e-05 1.00297395e-05 5.73212717e-05 2.16339614e-04 3.85135470e-05 8.76349144e-04 5.34519134e-04 5.34519134e-04 4.13817714e-04 6.67300425e-05 5.58714441e-05 5.30730449e-04 7.26010411e-04 1.39480148e-04 4.53614514e-04 1.75683248e-04 6.13794276e-05 1.38303069e-04 7.36748883e-05 2.09098412e-06 1.58894650e-08 0.00000000e+00 + 2024 07 27 12 00 00 3.99504219e-03 2.42953617e-03 1.35646141e-03 9.93293292e-04 7.46137166e-04 3.99963185e-04 2.98078352e-04 2.62731271e-04 5.59333276e-04 1.57098574e-04 1.02446251e-02 6.20962493e-03 2.70536148e-04 7.90694119e-05 4.97364272e-05 2.62616849e-04 4.28833446e-05 7.47192826e-05 2.37922209e-04 8.66202696e-05 1.64848548e-04 2.01064758e-04 1.13572413e-04 1.01174478e-04 5.53553655e-06 1.01169877e-05 6.11161449e-06 3.29025837e-05 5.05361204e-06 1.89023683e-05 1.17445268e-04 4.04251652e-05 2.29601079e-05 1.22401014e-04 5.07221208e-05 1.44553342e-05 6.55172137e-05 9.20697781e-05 1.03183811e-05 5.81344912e-05 2.19986120e-04 3.85761959e-05 8.84330364e-04 5.35518676e-04 5.35518676e-04 4.17472339e-04 6.73590694e-05 5.59940469e-05 5.33728116e-04 7.30745705e-04 1.40015279e-04 4.61119587e-04 1.83198979e-04 6.41119022e-05 1.44611819e-04 7.79324040e-05 2.28645246e-06 2.61315890e-08 2.58586041e-11 + 2024 07 28 12 00 00 4.01523005e-03 2.44375555e-03 1.36538122e-03 9.99865777e-04 7.51927350e-04 4.02410759e-04 3.00561985e-04 2.65489223e-04 5.66541472e-04 1.59219746e-04 1.04086607e-02 6.31586388e-03 2.73586093e-04 7.99057945e-05 5.01886121e-05 2.63919864e-04 4.30215063e-05 7.49990984e-05 2.40230786e-04 8.76130827e-05 1.65588900e-04 2.01812913e-04 1.14038207e-04 1.02245119e-04 5.54439284e-06 1.05840132e-05 6.12497170e-06 3.30400153e-05 5.07618061e-06 1.89847399e-05 1.17998200e-04 4.04790277e-05 2.31015525e-05 1.24424128e-04 5.20407746e-05 1.45133701e-05 6.61888174e-05 9.32234914e-05 1.06843698e-05 5.95187762e-05 2.24150739e-04 3.94201139e-05 9.04856055e-04 5.48127387e-04 5.48127387e-04 4.26474147e-04 6.82408048e-05 5.76325227e-05 5.41684619e-04 7.41025159e-04 1.42630475e-04 4.74291013e-04 1.96916539e-04 6.90989476e-05 1.56124911e-04 8.56899953e-05 2.64174813e-06 4.50315270e-08 1.74897998e-09 + 2024 07 29 12 00 00 4.01601797e-03 2.44263989e-03 1.36481541e-03 9.99741931e-04 7.51975437e-04 4.02643505e-04 3.00697319e-04 2.65597411e-04 5.66822543e-04 1.58955084e-04 1.04216770e-02 6.32648692e-03 2.73428355e-04 7.96475019e-05 5.01319147e-05 2.62125818e-04 4.27136372e-05 7.43844255e-05 2.38919199e-04 8.71391152e-05 1.64424825e-04 2.00243350e-04 1.13395871e-04 1.01958866e-04 5.52424244e-06 1.04803796e-05 6.12231597e-06 3.29396841e-05 5.06576034e-06 1.89190184e-05 1.17113968e-04 4.03593818e-05 2.28024379e-05 1.23525225e-04 5.14297746e-05 1.45017460e-05 6.54445423e-05 9.21410523e-05 1.06029809e-05 5.92627145e-05 2.22444122e-04 3.90201545e-05 8.96538710e-04 5.42273512e-04 5.42273512e-04 4.19063714e-04 6.64544001e-05 5.68578602e-05 5.33219774e-04 7.32940937e-04 1.40770689e-04 4.74774369e-04 2.05203185e-04 7.21118959e-05 1.63082185e-04 9.03964141e-05 2.85863021e-06 5.66682047e-08 2.81240702e-09 + 2024 07 30 12 00 00 4.00482432e-03 2.43605495e-03 1.36057777e-03 9.96370790e-04 7.48871137e-04 4.01178326e-04 2.99285871e-04 2.64060336e-04 5.62814444e-04 1.58045440e-04 1.03257348e-02 6.26274198e-03 2.71945967e-04 7.93972840e-05 4.99380687e-05 2.62484445e-04 4.28062223e-05 7.45742815e-05 2.38610410e-04 8.69671931e-05 1.64728438e-04 2.00770527e-04 1.13531549e-04 1.02042120e-04 5.53006648e-06 1.04974606e-05 6.11818687e-06 3.29323198e-05 5.06203687e-06 1.89132051e-05 1.17362111e-04 4.03955783e-05 2.29014724e-05 1.23311964e-04 5.12110651e-05 1.44837075e-05 6.55858364e-05 9.23786720e-05 1.06163374e-05 5.91808982e-05 2.21382552e-04 3.88755376e-05 8.92945163e-04 5.40176174e-04 5.40176174e-04 4.19435309e-04 6.70924725e-05 5.65780443e-05 5.34444980e-04 7.33997056e-04 1.40676321e-04 4.79222881e-04 2.08681109e-04 7.33767913e-05 1.66004684e-04 9.23935020e-05 2.95209338e-06 6.17896475e-08 3.28309113e-09 + 2024 07 31 12 00 00 3.99804715e-03 2.43307274e-03 1.35856084e-03 9.94557134e-04 7.47096989e-04 4.00209577e-04 2.98408056e-04 2.63128742e-04 5.60386087e-04 1.57703168e-04 1.02636621e-02 6.22024648e-03 2.71213772e-04 7.94136885e-05 4.98532883e-05 2.67885379e-04 4.38008399e-05 7.65741454e-05 2.39922152e-04 8.71674274e-05 1.68621694e-04 2.05996123e-04 1.15533993e-04 1.03254238e-04 5.59450382e-06 1.06963831e-05 6.12951335e-06 3.31524517e-05 5.06659017e-06 1.90624633e-05 1.20138284e-04 4.07827116e-05 2.38933193e-05 1.24671554e-04 5.14771265e-05 1.45329323e-05 6.77386665e-05 9.56237551e-05 1.07721899e-05 6.03598316e-05 2.25009062e-04 3.90457571e-05 9.02674517e-04 5.42720128e-04 5.42720128e-04 4.37422761e-04 7.31469307e-05 5.69085416e-05 5.56565434e-04 7.56983671e-04 1.44008089e-04 5.06304798e-04 2.20151866e-04 7.75471432e-05 1.75633018e-04 9.88889329e-05 3.25014087e-06 7.76861313e-08 4.73343640e-09 + 2024 08 01 12 00 00 3.99396688e-03 2.43291447e-03 1.35824133e-03 9.93830883e-04 7.46193168e-04 3.99491523e-04 2.97840534e-04 2.62564984e-04 5.58920598e-04 1.57836414e-04 1.02198567e-02 6.18837588e-03 2.71042082e-04 7.97097600e-05 4.98881644e-05 2.72534260e-04 4.46298771e-05 7.82419462e-05 2.42002794e-04 8.77838989e-05 1.71874595e-04 2.10361341e-04 1.17250577e-04 1.03976163e-04 5.64817310e-06 1.06788160e-05 6.13461452e-06 3.33529755e-05 5.08040866e-06 1.92049676e-05 1.22511006e-04 4.11054352e-05 2.47216230e-05 1.26304522e-04 5.22856892e-05 1.45550788e-05 6.96425349e-05 9.82666772e-05 1.07583270e-05 6.11388705e-05 2.28582784e-04 3.95681593e-05 9.14676265e-04 5.50457882e-04 5.50457882e-04 4.54466985e-04 7.82109331e-05 5.79217623e-05 5.77050973e-04 7.77826147e-04 1.47721033e-04 5.21124775e-04 2.18965704e-04 7.71164072e-05 1.74641061e-04 9.82490699e-05 3.22287819e-06 7.63890057e-08 4.61902125e-09 + 2024 08 02 12 00 00 3.99324355e-03 2.43168712e-03 1.35753413e-03 9.93359595e-04 7.45802375e-04 3.99439682e-04 2.97751932e-04 2.62447278e-04 5.58648360e-04 1.57604013e-04 1.02176443e-02 6.18835315e-03 2.70808146e-04 7.95460683e-05 4.98346726e-05 2.72905973e-04 4.47150000e-05 7.84151605e-05 2.41506189e-04 8.75200494e-05 1.72235047e-04 2.10831231e-04 1.17410043e-04 1.04056725e-04 5.65359114e-06 1.06054496e-05 6.13475713e-06 3.33482365e-05 5.07448385e-06 1.92047517e-05 1.22724850e-04 4.11386573e-05 2.48102384e-05 1.26062787e-04 5.19391033e-05 1.45556711e-05 6.97657656e-05 9.84312066e-05 1.07007152e-05 6.12327037e-05 2.28514125e-04 3.93444905e-05 9.11179017e-04 5.47141489e-04 5.47141489e-04 4.54603885e-04 7.87705358e-05 5.74878941e-05 5.77769691e-04 7.79004268e-04 1.47423094e-04 5.28519092e-04 2.26777474e-04 7.99563561e-05 1.81197181e-04 1.02664541e-04 3.42495653e-06 8.71273954e-08 5.59776794e-09 + 2024 08 03 12 00 00 3.98942232e-03 2.42927189e-03 1.35599650e-03 9.92183064e-04 7.44742669e-04 3.98955254e-04 2.97276509e-04 2.61926347e-04 5.57284801e-04 1.57260399e-04 1.01854471e-02 6.16710708e-03 2.70276919e-04 7.94389828e-05 4.97686517e-05 2.73624920e-04 4.48604929e-05 7.87078636e-05 2.41409540e-04 8.74172023e-05 1.72779131e-04 2.11597399e-04 1.17678865e-04 1.03902054e-04 5.66300951e-06 1.04541956e-05 6.13491648e-06 3.33585081e-05 5.07209916e-06 1.92181181e-05 1.23105657e-04 4.11952904e-05 2.49556178e-05 1.25935672e-04 5.18000103e-05 1.45563608e-05 7.00193615e-05 9.87128196e-05 1.05821258e-05 6.10844401e-05 2.28542414e-04 3.92566726e-05 9.09487916e-04 5.45813004e-04 5.45813004e-04 4.56294564e-04 7.96594075e-05 5.73171419e-05 5.80368776e-04 7.81074558e-04 1.47620983e-04 5.27328091e-04 2.21540531e-04 7.80527527e-05 1.76803962e-04 9.97213352e-05 3.29137376e-06 8.01125481e-08 4.96050596e-09 + 2024 08 04 12 00 00 3.99558288e-03 2.43365755e-03 1.35874485e-03 9.94231817e-04 7.46561526e-04 3.99704251e-04 2.98040150e-04 2.62777643e-04 5.59496191e-04 1.57921700e-04 1.02350299e-02 6.19898550e-03 2.71221511e-04 7.97119707e-05 4.99057845e-05 2.71075536e-04 4.43463272e-05 7.76772620e-05 2.41707997e-04 8.77514540e-05 1.70814324e-04 2.08931539e-04 1.16703032e-04 1.03522553e-04 5.62954738e-06 1.03802580e-05 6.13830925e-06 3.32720044e-05 5.07935474e-06 1.91640531e-05 1.21749599e-04 4.09953034e-05 2.44487310e-05 1.26002001e-04 5.22260321e-05 1.45711427e-05 6.90587096e-05 9.72329530e-05 1.05240317e-05 6.10752402e-05 2.27815536e-04 3.95379640e-05 9.13191151e-04 5.49897877e-04 5.49897877e-04 4.49999919e-04 7.65944831e-05 5.78614709e-05 5.71237138e-04 7.72215172e-04 1.46925414e-04 5.18747344e-04 2.22487229e-04 7.83967502e-05 1.77597243e-04 1.00245596e-04 3.31465021e-06 8.12956756e-08 5.06699038e-09 + 2024 08 05 12 00 00 4.02018396e-03 2.45129912e-03 1.36978853e-03 1.00238029e-03 7.53748707e-04 4.02673026e-04 3.01073655e-04 2.66158690e-04 5.68305085e-04 1.60580967e-04 1.04330841e-02 6.32648766e-03 2.75003359e-04 8.08150459e-05 5.04862678e-05 2.74399739e-04 4.48437815e-05 7.86750461e-05 2.45134022e-04 8.90942581e-05 1.72972434e-04 2.11518313e-04 1.17926252e-04 1.04349516e-04 5.66188937e-06 1.04179024e-05 6.14768796e-06 3.34884810e-05 5.10908794e-06 1.93151072e-05 1.23305375e-04 4.11888206e-05 2.49403849e-05 1.28643781e-04 5.39680710e-05 1.46119914e-05 7.05353326e-05 9.91626612e-05 1.05535830e-05 6.23714502e-05 2.33958384e-04 4.06728301e-05 9.36362169e-04 5.66581031e-04 5.66581031e-04 4.66098946e-04 7.95736210e-05 6.00606611e-05 5.88127403e-04 7.91290265e-04 1.51238233e-04 5.31820992e-04 2.27205552e-04 8.01114918e-05 1.81552911e-04 1.02875866e-04 3.43260294e-06 8.73818507e-08 5.61714266e-09 + 2024 08 06 12 00 00 4.06060634e-03 2.47956536e-03 1.38754003e-03 1.01558788e-03 7.65456372e-04 4.07606565e-04 3.06070965e-04 2.71709416e-04 5.82773534e-04 1.64798370e-04 1.07615278e-02 6.53898492e-03 2.81095143e-04 8.24895860e-05 5.13881168e-05 2.74557025e-04 4.46747785e-05 7.83340191e-05 2.49380990e-04 9.10721661e-05 1.72629326e-04 2.10616950e-04 1.17928132e-04 1.04698786e-04 5.65099799e-06 1.01850266e-05 6.16739053e-06 3.36078457e-05 5.15302818e-06 1.94144790e-05 1.23130473e-04 4.11229848e-05 2.47696415e-05 1.31791930e-04 5.65416354e-05 1.46977851e-05 7.08359280e-05 9.91174075e-05 1.03711231e-05 6.40360428e-05 2.40372340e-04 4.23456542e-05 9.68625289e-04 5.91222616e-04 5.91222616e-04 4.75430658e-04 7.85202952e-05 6.33030897e-05 5.94105777e-04 8.00642517e-04 1.55089034e-04 5.38872041e-04 2.40178435e-04 8.48266827e-05 1.92432916e-04 1.10142492e-04 3.76080106e-06 1.04494703e-07 7.16865571e-09 + 2024 08 07 12 00 00 4.09312641e-03 2.50252135e-03 1.40193915e-03 1.02627231e-03 7.74912458e-04 4.11560202e-04 3.10088475e-04 2.76177716e-04 5.94416439e-04 1.68237321e-04 1.10248137e-02 6.70898631e-03 2.86033198e-04 8.38841307e-05 5.21424937e-05 2.80754952e-04 4.56653244e-05 8.03189934e-05 2.53950572e-04 9.27331625e-05 1.76784693e-04 2.15747350e-04 1.20198185e-04 1.06538445e-04 5.71548699e-06 1.05091051e-05 6.19421844e-06 3.39752176e-05 5.18986126e-06 1.96642329e-05 1.26082699e-04 4.15082526e-05 2.57452717e-05 1.35668432e-04 5.86993061e-05 1.48146137e-05 7.34685342e-05 1.02910325e-04 1.06253363e-05 6.65836714e-05 2.50070964e-04 4.37498908e-05 1.00439751e-03 6.11884380e-04 6.11884380e-04 5.02370088e-04 8.44150025e-05 6.60245656e-05 6.23013201e-04 8.33164764e-04 1.61557880e-04 5.71180173e-04 2.58657107e-04 9.15431410e-05 2.07931224e-04 1.20499414e-04 4.22899111e-06 1.28938845e-07 9.38566487e-09 + 2024 08 08 12 00 00 4.14571192e-03 2.53931512e-03 1.42504387e-03 1.04346685e-03 7.90156658e-04 4.17978697e-04 3.16590668e-04 2.83400725e-04 6.13240163e-04 1.73729174e-04 1.14519139e-02 6.98523521e-03 2.93962445e-04 8.60716139e-05 5.33274362e-05 2.85182642e-04 4.62261029e-05 8.14404921e-05 2.60181373e-04 9.53144685e-05 1.79398277e-04 2.18626957e-04 1.21767448e-04 1.07816664e-04 5.75210215e-06 1.04958046e-05 6.23300803e-06 3.43129750e-05 5.24719981e-06 1.99120778e-05 1.27982982e-04 4.17262636e-05 2.62935093e-05 1.40547501e-04 6.20575913e-05 1.49834945e-05 7.54845462e-05 1.05450303e-04 1.06150816e-05 6.94164944e-05 2.61676138e-04 4.59329749e-05 1.05404566e-03 6.44039735e-04 6.44039735e-04 5.27962845e-04 8.77067097e-05 7.02559890e-05 6.47361262e-04 8.61567485e-04 1.68850565e-04 5.90283038e-04 2.69640134e-04 9.55343290e-05 2.17136979e-04 1.26604584e-04 4.50160737e-06 1.42916107e-07 1.06468107e-08 + 2024 08 09 12 00 00 4.18572707e-03 2.56661041e-03 1.44224211e-03 1.05642986e-03 8.01738034e-04 4.22927567e-04 3.21562810e-04 2.88908920e-04 6.27578146e-04 1.77767219e-04 1.17793547e-02 7.19774291e-03 2.99887211e-04 8.76243764e-05 5.41915288e-05 2.95069645e-04 4.79153940e-05 8.48261174e-05 2.65622814e-04 9.70836030e-05 1.86348414e-04 2.27381149e-04 1.25480430e-04 1.09839914e-04 5.86206224e-06 1.07196072e-05 6.24298700e-06 3.48382157e-05 5.28613928e-06 2.02652429e-05 1.32843674e-04 4.23833146e-05 2.79581465e-05 1.44971917e-04 6.43404899e-05 1.50270440e-05 7.95865385e-05 1.11199981e-04 1.07906824e-05 7.15877323e-05 2.74095010e-04 4.74262255e-05 1.08791503e-03 6.65910542e-04 6.65910542e-04 5.65874133e-04 9.77683230e-05 7.31484266e-05 6.91159097e-04 9.08615638e-04 1.77380832e-04 6.23779266e-04 2.72413211e-04 9.65406736e-05 2.19451364e-04 1.28060007e-04 4.56081516e-06 1.45507283e-07 1.08690287e-08 + 2024 08 10 12 00 00 4.19587619e-03 2.57348199e-03 1.44657725e-03 1.05978882e-03 8.04790032e-04 4.24203596e-04 3.22842566e-04 2.90330285e-04 6.31242611e-04 1.78791350e-04 1.18618385e-02 7.25088790e-03 3.01395854e-04 8.80407585e-05 5.44258326e-05 2.99131171e-04 4.86315927e-05 8.62588291e-05 2.67337138e-04 9.75551317e-05 1.89209107e-04 2.31063133e-04 1.26985541e-04 1.10436080e-04 5.90880736e-06 1.07983236e-05 6.25115645e-06 3.50368159e-05 5.29582940e-06 2.04002957e-05 1.34833014e-04 4.26617626e-05 2.86590366e-05 1.46277548e-04 6.49128808e-05 1.50627253e-05 8.11946501e-05 1.13522119e-04 1.08526954e-05 7.21936021e-05 2.78464546e-04 4.78185248e-05 1.09915001e-03 6.71417452e-04 6.71417452e-04 5.80293062e-04 1.01980171e-04 7.39046722e-05 7.08291128e-04 9.25839203e-04 1.80406764e-04 6.30283759e-04 2.63513056e-04 9.33029241e-05 2.11966606e-04 1.22897825e-04 4.31587346e-06 1.31839437e-07 9.60689590e-09 + 2024 08 11 12 00 00 4.18287957e-03 2.56560261e-03 1.44153216e-03 1.05593224e-03 8.01320956e-04 4.22541983e-04 3.21232332e-04 2.88578627e-04 6.26628362e-04 1.77701293e-04 1.17503703e-02 7.17654228e-03 2.99656767e-04 8.77455523e-05 5.41896236e-05 2.99447986e-04 4.87364508e-05 8.64649308e-05 2.66983380e-04 9.73409449e-05 1.89463866e-04 2.31561944e-04 1.27095325e-04 1.09816955e-04 5.91582284e-06 1.03580904e-05 6.24131571e-06 3.50075815e-05 5.29011450e-06 2.03928162e-05 1.35042251e-04 4.27023740e-05 2.87550240e-05 1.45678434e-04 6.45841123e-05 1.50200329e-05 8.12556971e-05 1.13315434e-04 1.05078434e-05 7.14978157e-05 2.76961360e-04 4.76294634e-05 1.09088294e-03 6.68301666e-04 6.68301666e-04 5.79506890e-04 1.02523214e-04 7.35331560e-05 7.08962147e-04 9.25220673e-04 1.80138339e-04 6.25360293e-04 2.54670696e-04 9.00866340e-05 2.04533540e-04 1.17795966e-04 4.07551984e-06 1.18552458e-07 8.38292138e-09 + 2024 08 12 12 00 00 4.18248153e-03 2.56445541e-03 1.44088432e-03 1.05571464e-03 8.01272791e-04 4.22586046e-04 3.21226285e-04 2.88556786e-04 6.26523908e-04 1.77493456e-04 1.17495653e-02 7.17656463e-03 2.99472738e-04 8.76113415e-05 5.41400173e-05 2.98721933e-04 4.86219738e-05 8.62316345e-05 2.66413432e-04 9.71087022e-05 1.88977010e-04 2.30926160e-04 1.26824112e-04 1.09509242e-04 5.90855307e-06 1.03352286e-05 6.23879459e-06 3.49700993e-05 5.28400778e-06 2.03657257e-05 1.34659178e-04 4.26576822e-05 2.86352122e-05 1.45079202e-04 6.42323052e-05 1.50091626e-05 8.09118180e-05 1.12849528e-04 1.04900850e-05 7.10615198e-05 2.76083904e-04 4.74252098e-05 1.08610993e-03 6.64964924e-04 6.64964924e-04 5.75962783e-04 1.01763604e-04 7.31322449e-05 7.05216354e-04 9.20635417e-04 1.79273298e-04 6.17181482e-04 2.46836206e-04 8.72372319e-05 1.97949739e-04 1.13293263e-04 3.86453503e-06 1.06972186e-07 7.31817664e-09 + 2024 08 13 12 00 00 4.16548956e-03 2.55110434e-03 1.43262154e-03 1.04994759e-03 7.96367560e-04 4.20655220e-04 3.19184401e-04 2.86259328e-04 6.20483756e-04 1.75430851e-04 1.16162341e-02 7.09159076e-03 2.96690662e-04 8.66927784e-05 5.37027801e-05 2.95316668e-04 4.80959163e-05 8.51735764e-05 2.63292297e-04 9.58867313e-05 1.86746968e-04 2.28158710e-04 1.25570243e-04 1.08661883e-04 5.87448776e-06 1.03300685e-05 6.22818479e-06 3.47671823e-05 5.25581054e-06 2.02212420e-05 1.33010797e-04 4.24529135e-05 2.81100249e-05 1.42529306e-04 6.25873392e-05 1.49630680e-05 7.93989373e-05 1.10871806e-04 1.04862695e-05 6.97179532e-05 2.70627635e-04 4.63830336e-05 1.06394017e-03 6.49249693e-04 6.49249693e-04 5.59850964e-04 9.85547551e-05 7.11066416e-05 6.88127516e-04 9.01474299e-04 1.75104003e-04 6.01156343e-04 2.38995987e-04 8.43860664e-05 1.91363462e-04 1.08807417e-04 3.65564865e-06 9.56029794e-08 6.27517096e-09 + 2024 08 14 12 00 00 4.11775678e-03 2.51839365e-03 1.41202698e-03 1.03463032e-03 7.82797534e-04 4.14799673e-04 3.13294726e-04 2.79741859e-04 6.03441990e-04 1.70605965e-04 1.12245758e-02 6.83662221e-03 2.89630212e-04 8.48736107e-05 5.26761894e-05 2.90335525e-04 4.73759137e-05 8.37276282e-05 2.58103579e-04 9.38163314e-05 1.83500590e-04 2.24395166e-04 1.23717804e-04 1.07306082e-04 5.82775865e-06 1.02091806e-05 6.20758365e-06 3.44272597e-05 5.20867943e-06 1.99846827e-05 1.30706750e-04 4.21727396e-05 2.73952028e-05 1.38303761e-04 5.98339771e-05 1.48734864e-05 7.71663065e-05 1.07912896e-04 1.03915649e-05 6.75125743e-05 2.60167819e-04 4.46226011e-05 1.02522930e-03 6.22924697e-04 6.22924697e-04 5.34962428e-04 9.42071667e-05 6.76883967e-05 6.62739489e-04 8.72368918e-04 1.68530283e-04 5.81906383e-04 2.31907214e-04 8.18083954e-05 1.85410057e-04 1.04765417e-04 3.46833817e-06 8.54750169e-08 5.34767963e-09 + 2024 08 15 12 00 00 4.07204547e-03 2.48712729e-03 1.39233654e-03 1.01996969e-03 7.69800632e-04 4.09186650e-04 3.07652004e-04 2.73498666e-04 5.87119519e-04 1.65996866e-04 1.08493134e-02 6.59227669e-03 2.82877220e-04 8.31335582e-05 5.16808916e-05 2.86934088e-04 4.69431456e-05 8.28591292e-05 2.53387234e-04 9.18477483e-05 1.81406386e-04 2.22139820e-04 1.22466153e-04 1.06212757e-04 5.79964326e-06 1.02202153e-05 6.18700287e-06 3.41630568e-05 5.16393957e-06 1.97947561e-05 1.29206086e-04 4.20043652e-05 2.69666605e-05 1.34465554e-04 5.72198827e-05 1.47840052e-05 7.55674434e-05 1.05945598e-04 1.04004197e-05 6.53852268e-05 2.51048222e-04 4.29493462e-05 9.89366820e-04 5.97928790e-04 5.97928790e-04 5.15408966e-04 9.16063844e-05 6.44398213e-05 6.43921723e-04 8.49534161e-04 1.62989225e-04 5.62696590e-04 2.17605283e-04 7.66091580e-05 1.73408352e-04 9.66933250e-05 3.09969355e-06 6.59440346e-08 3.56901033e-09 + 2024 08 16 12 00 00 4.02981443e-03 2.45752964e-03 1.37375731e-03 1.00627613e-03 7.57735789e-04 4.04060191e-04 3.02457806e-04 2.67735267e-04 5.72046216e-04 1.61592786e-04 1.05053515e-02 6.36918098e-03 2.76524162e-04 8.14106093e-05 5.07336593e-05 2.84070812e-04 4.66062542e-05 8.21833673e-05 2.48645134e-04 8.98220984e-05 1.79732778e-04 2.20387638e-04 1.21420208e-04 1.05423654e-04 5.77774117e-06 1.02572587e-05 6.17034966e-06 3.39209308e-05 5.11779181e-06 1.96203797e-05 1.27969777e-04 4.18733078e-05 2.66336458e-05 1.30784391e-04 5.45241637e-05 1.47115730e-05 7.41801891e-05 1.04314274e-04 1.04294799e-05 6.36703434e-05 2.42687561e-04 4.12266614e-05 9.54470466e-04 5.72156068e-04 5.72156068e-04 4.97472783e-04 8.95882200e-05 6.10946910e-05 6.26969339e-04 8.29536410e-04 1.57625938e-04 5.53904424e-04 2.14995519e-04 7.56601297e-05 1.71216243e-04 9.52022707e-05 3.03040172e-06 6.21829614e-08 3.22422444e-09 + 2024 08 17 12 00 00 4.01629999e-03 2.44876332e-03 1.36819678e-03 1.00207233e-03 7.53976045e-04 4.02366786e-04 3.00783278e-04 2.65895511e-04 5.67226865e-04 1.60332007e-04 1.03922968e-02 6.29482046e-03 2.74609852e-04 8.09903030e-05 5.04761726e-05 2.87028530e-04 4.72226471e-05 8.34217353e-05 2.48256753e-04 8.93941091e-05 1.82060091e-04 2.23615027e-04 1.22565801e-04 1.05731900e-04 5.81772183e-06 1.01992802e-05 6.15486060e-06 3.40031773e-05 5.10784994e-06 1.96728533e-05 1.29594312e-04 4.21131816e-05 2.72464938e-05 1.30524493e-04 5.39445668e-05 1.46441904e-05 7.53122206e-05 1.05924209e-04 1.03839622e-05 6.33847334e-05 2.42551864e-04 4.08611028e-05 9.45021916e-04 5.66621078e-04 5.66621078e-04 5.04144443e-04 9.33201110e-05 6.03838358e-05 6.37696506e-04 8.40056816e-04 1.58354327e-04 5.66540343e-04 2.16823997e-04 7.63245291e-05 1.72748372e-04 9.62146305e-05 3.07533520e-06 6.44658655e-08 3.42966260e-09 + 2024 08 18 12 00 00 4.00062090e-03 2.43273399e-03 1.35854364e-03 9.95883541e-04 7.49021502e-04 4.00883794e-04 2.98979493e-04 2.63770480e-04 5.61647002e-04 1.57654700e-04 1.02841884e-02 6.23108149e-03 2.71425366e-04 7.94862658e-05 4.98916504e-05 2.85427019e-04 4.70875821e-05 8.31531244e-05 2.43166231e-04 8.71219265e-05 1.81449382e-04 2.22937986e-04 1.22040844e-04 1.05169102e-04 5.80883243e-06 1.01757731e-05 6.15374156e-06 3.38173379e-05 5.05667158e-06 1.95437393e-05 1.28910275e-04 4.20607394e-05 2.71171739e-05 1.26985431e-04 5.09514299e-05 1.46393126e-05 7.43712537e-05 1.04957315e-04 1.03654173e-05 6.22383297e-05 2.37645756e-04 3.89336026e-05 9.13273009e-04 5.37985656e-04 5.37985656e-04 4.89818219e-04 9.25574859e-05 5.66440634e-05 6.24504300e-04 8.25018857e-04 1.53157916e-04 5.64285336e-04 2.17980030e-04 7.67445970e-05 1.73717132e-04 9.68555138e-05 3.10383745e-06 6.59183229e-08 3.56048488e-09 + 2024 08 19 12 00 00 4.00208191e-03 2.43850541e-03 1.36178023e-03 9.97425051e-04 7.49926507e-04 4.00672966e-04 2.99047747e-04 2.63963443e-04 5.62159514e-04 1.58791589e-04 1.02773409e-02 6.22046292e-03 2.72425901e-04 8.03672635e-05 5.01515102e-05 2.79628727e-04 4.58950846e-05 8.07625242e-05 2.45419254e-04 8.86297959e-05 1.76761629e-04 2.16751398e-04 1.19779020e-04 1.04647978e-04 5.73123943e-06 1.02272468e-05 6.15219105e-06 3.36577083e-05 5.09041638e-06 1.94360416e-05 1.25868755e-04 4.15968883e-05 2.59409455e-05 1.28169663e-04 5.29263227e-05 1.46325299e-05 7.23259751e-05 1.01793598e-04 1.04057377e-05 6.24001539e-05 2.35389997e-04 4.02109261e-05 9.29368503e-04 5.56886708e-04 5.56886708e-04 4.78367066e-04 8.54422920e-05 5.91212069e-05 6.06404039e-04 8.07835394e-04 1.53034701e-04 5.47022558e-04 2.23436605e-04 7.87279081e-05 1.78293656e-04 9.99141173e-05 3.24212292e-06 7.31396824e-08 4.21547881e-09 + 2024 08 20 12 00 00 4.00568514e-03 2.44045222e-03 1.36304837e-03 9.98462934e-04 7.50896247e-04 4.01158932e-04 2.99504558e-04 2.64455521e-04 5.63444897e-04 1.59046994e-04 1.03089531e-02 6.24171048e-03 2.72871670e-04 8.04105626e-05 5.02016633e-05 2.79032423e-04 4.57831280e-05 8.05412186e-05 2.45305024e-04 8.86232185e-05 1.76382677e-04 2.16205069e-04 1.19583484e-04 1.04487187e-04 5.72380741e-06 1.01535996e-05 6.14535747e-06 3.36311637e-05 5.09045458e-06 1.94183825e-05 1.25581977e-04 4.15534771e-05 2.58362008e-05 1.28047668e-04 5.29274053e-05 1.46027305e-05 7.21166798e-05 1.01408959e-04 1.03480001e-05 6.21757205e-05 2.35086626e-04 4.02068923e-05 9.26751862e-04 5.56890899e-04 5.56890899e-04 4.76394499e-04 8.48373515e-05 5.91143558e-05 6.04148898e-04 8.05840532e-04 1.52692865e-04 5.45229860e-04 2.23545061e-04 7.87672594e-05 1.78384130e-04 9.99705668e-05 3.24438616e-06 7.32359268e-08 4.22364721e-09 + 2024 08 21 12 00 00 3.99001426e-03 2.43021728e-03 1.35656001e-03 9.93487054e-04 7.46405670e-04 3.99185398e-04 2.97546560e-04 2.62296832e-04 5.57825965e-04 1.57559149e-04 1.01789035e-02 6.15670979e-03 2.70624255e-04 7.98744824e-05 4.98782200e-05 2.70173030e-04 4.41733515e-05 7.73137377e-05 2.42615648e-04 8.80612526e-05 1.69933971e-04 2.07849571e-04 1.16235639e-04 1.03051069e-04 5.61908055e-06 1.01179627e-05 6.14154560e-06 3.32358901e-05 5.07830773e-06 1.91492758e-05 1.21109060e-04 4.09273023e-05 2.42477181e-05 1.25688722e-04 5.22138900e-05 1.45860802e-05 6.85817723e-05 9.64037768e-05 1.03201215e-05 6.09461369e-05 2.26990571e-04 3.97344033e-05 9.12616975e-04 5.50047774e-04 5.50047774e-04 4.46924981e-04 7.52249151e-05 5.82003093e-05 5.67730115e-04 7.67974508e-04 1.46982916e-04 5.15817748e-04 2.23868361e-04 7.88849284e-05 1.78656445e-04 1.00161853e-04 3.25370535e-06 7.37734993e-08 4.27370885e-09 + 2024 08 22 12 00 00 4.00135154e-03 2.43722780e-03 1.36103528e-03 9.96929839e-04 7.49515565e-04 4.00635111e-04 2.98958248e-04 2.63838200e-04 5.61864556e-04 1.58544147e-04 1.02751209e-02 6.22044653e-03 2.72170678e-04 8.01658931e-05 5.00887343e-05 2.66738882e-04 4.35010035e-05 7.59675342e-05 2.42546635e-04 8.83062487e-05 1.67407112e-04 2.04379652e-04 1.14969472e-04 1.02303257e-04 5.57525418e-06 9.91918787e-06 6.13562734e-06 3.31097572e-05 5.08434132e-06 1.90686836e-05 1.19326293e-04 4.06658481e-05 2.35875385e-05 1.25428965e-04 5.25636016e-05 1.45602651e-05 6.72851331e-05 9.43211621e-05 1.01644095e-05 6.04373582e-05 2.25744116e-04 3.99464887e-05 9.11862105e-04 5.53376367e-04 5.53376367e-04 4.37328065e-04 7.12464913e-05 5.86145208e-05 5.54929473e-04 7.55302219e-04 1.45606179e-04 4.99544344e-04 2.18259990e-04 7.68465117e-05 1.73953063e-04 9.70221721e-05 3.11202061e-06 6.63948725e-08 3.60496770e-09 + 2024 08 23 12 00 00 4.01523319e-03 2.44674844e-03 1.36702702e-03 1.00136196e-03 7.53428177e-04 4.02334435e-04 3.00665982e-04 2.65726044e-04 5.66810162e-04 1.59945317e-04 1.03891838e-02 6.29480779e-03 2.74219514e-04 8.06802135e-05 5.03734283e-05 2.66635936e-04 4.34191956e-05 7.58069276e-05 2.43752149e-04 8.88937153e-05 1.67233766e-04 2.03992631e-04 1.14934651e-04 1.02703158e-04 5.56977175e-06 1.01380581e-05 6.13902594e-06 3.31545049e-05 5.09807905e-06 1.90929345e-05 1.19220155e-04 4.06341715e-05 2.35130065e-05 1.26453898e-04 5.33639453e-05 1.45749669e-05 6.73550244e-05 9.44712756e-05 1.03360078e-05 6.09936824e-05 2.27647050e-04 4.04490245e-05 9.22123015e-04 5.61016519e-04 5.61016519e-04 4.39913746e-04 7.08267442e-05 5.95922116e-05 5.56273065e-04 7.57899750e-04 1.46683307e-04 5.02257535e-04 2.23425272e-04 7.87245994e-05 1.78289974e-04 9.99580274e-05 3.24745764e-06 7.36725454e-08 4.27031495e-09 + 2024 08 24 12 00 00 4.01735973e-03 2.44853540e-03 1.36812298e-03 1.00207041e-03 7.53997199e-04 4.02559992e-04 3.00910619e-04 2.66001553e-04 5.67551026e-04 1.60222123e-04 1.04057553e-02 6.30542189e-03 2.74578865e-04 8.08016403e-05 5.04347972e-05 2.65338461e-04 4.31655411e-05 7.53012311e-05 2.43868104e-04 8.90595315e-05 1.66274434e-04 2.02707662e-04 1.14463299e-04 1.02289614e-04 5.55313418e-06 1.00439138e-05 6.13251032e-06 3.31058810e-05 5.10233549e-06 1.90615916e-05 1.18567526e-04 4.05356259e-05 2.32679144e-05 1.26379821e-04 5.36096690e-05 1.45465354e-05 6.68841576e-05 9.36737742e-05 1.02622347e-05 6.05623676e-05 2.26916138e-04 4.05939965e-05 9.21458381e-04 5.63350087e-04 5.63350087e-04 4.36506690e-04 6.93699112e-05 5.98762417e-05 5.51831486e-04 7.53061418e-04 1.46311601e-04 4.91188250e-04 2.14449487e-04 7.54620523e-05 1.70761058e-04 9.49203002e-05 3.01925885e-06 6.17229773e-08 3.18562172e-09 + 2024 08 25 12 00 00 4.02277680e-03 2.45159932e-03 1.37010425e-03 1.00362352e-03 7.55413927e-04 4.03271185e-04 3.01586091e-04 2.66730155e-04 5.69471116e-04 1.60629771e-04 1.04531029e-02 6.33728504e-03 2.75265400e-04 8.08794411e-05 5.05151523e-05 2.63984789e-04 4.29034757e-05 7.47785671e-05 2.43653531e-04 8.90751195e-05 1.65320608e-04 2.01377725e-04 1.13977709e-04 1.02015400e-04 5.53595601e-06 9.90950211e-06 6.12949152e-06 3.30485890e-05 5.10323844e-06 1.90267221e-05 1.17880736e-04 4.04338061e-05 2.30143036e-05 1.26223652e-04 5.36591164e-05 1.45333164e-05 6.63781863e-05 9.28227344e-05 1.01569181e-05 6.04206645e-05 2.26416601e-04 4.06117790e-05 9.19866921e-04 5.63804852e-04 5.63804852e-04 4.32479826e-04 6.78604585e-05 5.99136518e-05 5.46604471e-04 7.48280051e-04 1.45619341e-04 4.88565013e-04 2.17171336e-04 7.64517023e-05 1.73046347e-04 9.64669822e-05 3.09058627e-06 6.55539438e-08 3.53581520e-09 + 2024 08 26 12 00 00 4.03022956e-03 2.45607373e-03 1.37297278e-03 1.00585013e-03 7.57435188e-04 4.04233865e-04 3.02515879e-04 2.67741694e-04 5.72124042e-04 1.61248645e-04 1.05169408e-02 6.37977421e-03 2.76258792e-04 8.10504827e-05 5.06589794e-05 2.67336234e-04 4.35017864e-05 7.59818417e-05 2.44431458e-04 8.91925534e-05 1.67766722e-04 2.04524144e-04 1.15239408e-04 1.02581439e-04 5.57470557e-06 9.95401788e-06 6.14078308e-06 3.31913420e-05 5.10628452e-06 1.91275674e-05 1.19557622e-04 4.06666950e-05 2.36114371e-05 1.27073112e-04 5.38347929e-05 1.45823753e-05 6.76963439e-05 9.47621303e-05 1.01918806e-05 6.10890329e-05 2.29821280e-04 4.07147192e-05 9.27371529e-04 5.65472245e-04 5.65472245e-04 4.43786439e-04 7.15079310e-05 6.01154868e-05 5.60129706e-04 7.62269888e-04 1.47649125e-04 4.99120428e-04 2.16303811e-04 7.61365329e-05 1.72319821e-04 9.59900344e-05 3.06964395e-06 6.45075005e-08 3.44210775e-09 + 2024 08 27 12 00 00 4.02254805e-03 2.45123922e-03 1.36989089e-03 1.00346028e-03 7.55265024e-04 4.03254909e-04 3.01553728e-04 2.66685300e-04 5.69370108e-04 1.60557792e-04 1.04523676e-02 6.33727685e-03 2.75187226e-04 8.08146287e-05 5.04985444e-05 2.69990074e-04 4.40192467e-05 7.70287355e-05 2.44389480e-04 8.89710616e-05 1.69809312e-04 2.07313620e-04 1.16260454e-04 1.02723152e-04 5.60792760e-06 9.84620128e-06 6.13790398e-06 3.32637865e-05 5.10160498e-06 1.91822172e-05 1.20981039e-04 4.08683816e-05 2.41391157e-05 1.27103414e-04 5.35592437e-05 1.45697923e-05 6.87246492e-05 9.61998991e-05 1.01074576e-05 6.10080802e-05 2.30584904e-04 4.05293889e-05 9.24433841e-04 5.62825799e-04 5.62825799e-04 4.51104204e-04 7.47872633e-05 5.97575447e-05 5.70355450e-04 7.71942366e-04 1.48692924e-04 5.04889258e-04 2.10685717e-04 7.40945085e-05 1.67607762e-04 9.28403710e-05 2.92720588e-06 5.70666089e-08 2.76713301e-09 + 2024 08 28 12 00 00 4.01968026e-03 2.44802639e-03 1.36797084e-03 1.00226700e-03 7.54332972e-04 4.03008339e-04 3.01230922e-04 2.66297219e-04 5.68349056e-04 1.60009721e-04 1.04336625e-02 6.32665604e-03 2.74557815e-04 8.04926739e-05 5.03872459e-05 2.70790208e-04 4.42093500e-05 7.74122542e-05 2.43450658e-04 8.84672510e-05 1.70553981e-04 2.08326534e-04 1.16595887e-04 1.02741518e-04 5.62018358e-06 9.98593023e-06 6.13308221e-06 3.32766547e-05 5.09036327e-06 1.91832220e-05 1.21433885e-04 4.09424305e-05 2.43310147e-05 1.26438108e-04 5.29011362e-05 1.45487691e-05 6.89763088e-05 9.67404348e-05 1.02170263e-05 6.05701135e-05 2.30169135e-04 4.01028869e-05 9.17276153e-04 5.56526193e-04 5.56526193e-04 4.51377352e-04 7.59703049e-05 5.89305884e-05 5.72090534e-04 7.72754444e-04 1.48141404e-04 5.01060947e-04 2.00859807e-04 7.05229802e-05 1.59365926e-04 8.73270394e-05 2.67756614e-06 4.40020635e-08 1.58142814e-09 + 2024 08 29 12 00 00 4.01575997e-03 2.44534392e-03 1.36628108e-03 1.00103264e-03 7.53252159e-04 4.02532875e-04 3.00752027e-04 2.65768308e-04 5.66955571e-04 1.59616910e-04 1.04012472e-02 6.30541444e-03 2.73981596e-04 8.03471940e-05 5.02994237e-05 2.72061794e-04 4.44603182e-05 7.79179914e-05 2.43323197e-04 8.83053814e-05 1.71525594e-04 2.09657475e-04 1.17076125e-04 1.02747183e-04 5.63638969e-06 9.90744957e-06 6.13429293e-06 3.33082508e-05 5.08658086e-06 1.92089197e-05 1.22101275e-04 4.10401612e-05 2.45833246e-05 1.26344848e-04 5.26807795e-05 1.45540049e-05 6.94430583e-05 9.73961149e-05 1.01555292e-05 6.05166271e-05 2.30529602e-04 3.99644370e-05 9.15673750e-04 5.54422475e-04 5.54422475e-04 4.54622960e-04 7.75206485e-05 5.86612499e-05 5.76716519e-04 7.76883597e-04 1.48530546e-04 5.02499630e-04 1.96474072e-04 6.89288019e-05 1.55686919e-04 8.48633272e-05 2.56581977e-06 3.81394713e-08 1.04898428e-09 + 2024 08 30 12 00 00 4.02216680e-03 2.45020722e-03 1.36930419e-03 1.00323941e-03 7.55186667e-04 4.03289266e-04 3.01540871e-04 2.66655472e-04 5.69256864e-04 1.60368242e-04 1.04515339e-02 6.33729622e-03 2.75014646e-04 8.06842386e-05 5.04548919e-05 2.73661577e-04 4.47091967e-05 7.84191594e-05 2.44534100e-04 8.87466769e-05 1.72575142e-04 2.10973227e-04 1.17648219e-04 1.03412450e-04 5.65247901e-06 1.01447178e-05 6.14640885e-06 3.34061840e-05 5.09619786e-06 1.92725245e-05 1.22855923e-04 4.11370653e-05 2.48328550e-05 1.27418359e-04 5.32451610e-05 1.46067279e-05 7.01253026e-05 9.85133340e-05 1.03416649e-05 6.13902166e-05 2.33024179e-04 4.03361220e-05 9.27060482e-04 5.59832714e-04 5.59832714e-04 4.61934767e-04 7.90505728e-05 5.93807024e-05 5.84265456e-04 7.85360720e-04 1.50267910e-04 5.12476342e-04 2.03431629e-04 7.14577465e-05 1.61522852e-04 8.87676719e-05 2.74263564e-06 4.73951616e-08 1.88906508e-09 + 2024 08 31 12 00 00 4.04044076e-03 2.46300321e-03 1.37733912e-03 1.00924556e-03 7.60526742e-04 4.05524666e-04 3.03806262e-04 2.69173936e-04 5.75807940e-04 1.62282446e-04 1.05996501e-02 6.43292740e-03 2.77776769e-04 8.14605697e-05 5.08821844e-05 2.79350141e-04 4.56823123e-05 8.03737494e-05 2.47441344e-04 8.96601472e-05 1.76580730e-04 2.16063464e-04 1.19772466e-04 1.04724195e-04 5.71561905e-06 1.03070655e-05 6.15787430e-06 3.36943060e-05 5.11624530e-06 1.94688402e-05 1.25664884e-04 4.15157439e-05 2.57995707e-05 1.29900926e-04 5.44208451e-05 1.46566308e-05 7.24791373e-05 1.01878617e-04 1.04688472e-05 6.29108615e-05 2.39821182e-04 4.11066547e-05 9.46859120e-04 5.71098039e-04 5.71098039e-04 4.83678925e-04 8.49331904e-05 6.08729140e-05 6.09304415e-04 8.12603691e-04 1.55038409e-04 5.37700561e-04 2.12760361e-04 7.48485389e-05 1.69347496e-04 9.40005973e-05 2.97948336e-06 5.97830038e-08 3.01316909e-09 + 2024 09 01 12 00 00 4.06608573e-03 2.47997003e-03 1.38807396e-03 1.01744359e-03 7.67907417e-04 4.08740781e-04 3.07006961e-04 2.72707345e-04 5.85001128e-04 1.64762406e-04 1.08115033e-02 6.57105818e-03 2.81489033e-04 8.23686853e-05 5.14132548e-05 2.77368118e-04 4.52009524e-05 7.94080261e-05 2.49218865e-04 9.06394329e-05 1.74902983e-04 2.13558033e-04 1.19001323e-04 1.04869872e-04 5.68433279e-06 1.05443993e-05 6.16925099e-06 3.36954209e-05 5.13765008e-06 1.94653434e-05 1.24488513e-04 4.13284783e-05 2.53234350e-05 1.31155146e-04 5.56766987e-05 1.47061684e-05 7.18234539e-05 1.00967335e-04 1.06549916e-05 6.35763909e-05 2.42134148e-04 4.19319986e-05 9.63528626e-04 5.83134405e-04 5.83134405e-04 4.82192037e-04 8.20461602e-05 6.24708249e-05 6.04034080e-04 8.08720682e-04 1.55853057e-04 5.30269362e-04 2.14221962e-04 7.53792745e-05 1.70569674e-04 9.47879225e-05 3.01295129e-06 6.13690915e-08 3.15289697e-09 + 2024 09 02 12 00 00 4.08848287e-03 2.49574109e-03 1.39796971e-03 1.02482330e-03 7.74459451e-04 4.11473265e-04 3.09781165e-04 2.75793507e-04 5.93029547e-04 1.67126516e-04 1.09927037e-02 6.68794140e-03 2.84888477e-04 8.33266196e-05 5.19203308e-05 2.80522290e-04 4.56880225e-05 8.03854782e-05 2.52207449e-04 9.17845173e-05 1.77007512e-04 2.16096257e-04 1.20177794e-04 1.05558452e-04 5.71597702e-06 1.05076448e-05 6.17289406e-06 3.38903822e-05 5.16281580e-06 1.96019839e-05 1.25987460e-04 4.15179762e-05 2.58057262e-05 1.33429347e-04 5.71522920e-05 1.47220868e-05 7.32155763e-05 1.02736258e-04 1.06262574e-05 6.46053185e-05 2.47576426e-04 4.28981846e-05 9.81826937e-04 5.97272161e-04 5.97272161e-04 4.96717300e-04 8.49730684e-05 6.43421372e-05 6.19716654e-04 8.26427146e-04 1.59682485e-04 5.43055392e-04 2.18859631e-04 7.70644067e-05 1.74455571e-04 9.73546472e-05 3.12680932e-06 6.71486873e-08 3.67286894e-09 + 2024 09 03 12 00 00 4.10814207e-03 2.50867747e-03 1.40616046e-03 1.03108416e-03 7.80098796e-04 4.13942889e-04 3.12234776e-04 2.78499967e-04 6.00074435e-04 1.69012049e-04 1.11554587e-02 6.79419264e-03 2.87721334e-04 8.40101174e-05 5.23289053e-05 2.83106578e-04 4.60911862e-05 8.11946345e-05 2.54194404e-04 9.25102504e-05 1.78764628e-04 2.18198148e-04 1.21139623e-04 1.05831218e-04 5.74216538e-06 1.02157777e-05 6.18303893e-06 3.40251814e-05 5.17873377e-06 1.97097246e-05 1.27198911e-04 4.16748371e-05 2.62050860e-05 1.34980266e-04 5.80858672e-05 1.47662824e-05 7.42997968e-05 1.03977723e-04 1.03975370e-05 6.54449958e-05 2.52149962e-04 4.35102935e-05 9.95237098e-04 6.06217980e-04 6.06217980e-04 5.07894539e-04 8.73974408e-05 6.55274955e-05 6.31819123e-04 8.39991835e-04 1.62428795e-04 5.52970878e-04 2.21890854e-04 7.81657658e-05 1.76995034e-04 9.90288499e-05 3.20084489e-06 7.08889502e-08 4.00889846e-09 + 2024 09 04 12 00 00 4.13834428e-03 2.52959771e-03 1.41931436e-03 1.04092015e-03 7.88844314e-04 4.17648843e-04 3.15976016e-04 2.82650981e-04 6.10888168e-04 1.72123185e-04 1.14015145e-02 6.95357025e-03 2.92241531e-04 8.52337113e-05 5.30057732e-05 2.86966715e-04 4.66602971e-05 8.23366165e-05 2.57859725e-04 9.39306454e-05 1.81259389e-04 2.21162610e-04 1.22541073e-04 1.07035738e-04 5.77914507e-06 1.04798775e-05 6.20748469e-06 3.42809168e-05 5.21025322e-06 1.98850496e-05 1.28968557e-04 4.18962474e-05 2.67683994e-05 1.37989782e-04 5.99321502e-05 1.48727006e-05 7.59771843e-05 1.06399771e-04 1.06045918e-05 6.73217280e-05 2.59704656e-04 4.47112950e-05 1.02541607e-03 6.23897184e-04 6.23897184e-04 5.26621342e-04 9.08149814e-05 6.78552140e-05 6.50867854e-04 8.61488852e-04 1.67213876e-04 5.69116640e-04 2.28912566e-04 8.07175056e-05 1.82881025e-04 1.02936524e-04 3.37563702e-06 7.98738725e-08 4.82019686e-09 + 2024 09 05 12 00 00 4.16065125e-03 2.54524378e-03 1.42913630e-03 1.04823631e-03 7.95334682e-04 4.20371428e-04 3.18736279e-04 2.85718902e-04 6.18877509e-04 1.74462429e-04 1.15824106e-02 7.07044750e-03 2.95613606e-04 8.61705757e-05 5.35067341e-05 2.89787408e-04 4.70914616e-05 8.32007441e-05 2.60713692e-04 9.50428832e-05 1.83126609e-04 2.23396878e-04 1.23598575e-04 1.07251314e-04 5.80721135e-06 1.02141166e-05 6.20823776e-06 3.44503355e-05 5.23486342e-06 2.00115303e-05 1.30299128e-04 4.20639495e-05 2.71932542e-05 1.40005852e-04 6.13741344e-05 1.48760373e-05 7.72151248e-05 1.07781563e-04 1.03963554e-05 6.79089259e-05 2.64771440e-04 4.56511538e-05 1.04135428e-03 6.37707347e-04 6.37707347e-04 5.39730350e-04 9.33828589e-05 6.96764095e-05 6.65128003e-04 8.76938284e-04 1.70785041e-04 5.72470259e-04 2.22298988e-04 7.83125917e-05 1.77326428e-04 9.91631350e-05 3.20062027e-06 7.03992384e-08 3.95225328e-09 + 2024 09 06 12 00 00 4.17409616e-03 2.55360671e-03 1.43447311e-03 1.05242177e-03 7.99160021e-04 4.22103149e-04 3.20428385e-04 2.87574049e-04 6.23699893e-04 1.75652976e-04 1.16955037e-02 7.14482665e-03 2.97473052e-04 8.65527277e-05 5.37522779e-05 2.85572984e-04 4.62568598e-05 8.15254403e-05 2.60782147e-04 9.53965355e-05 1.79954996e-04 2.19043105e-04 1.22006189e-04 1.06821671e-04 5.75300728e-06 1.01980339e-05 6.21067884e-06 3.43116101e-05 5.24250354e-06 1.99180570e-05 1.28068179e-04 4.17392235e-05 2.63661030e-05 1.39929617e-04 6.18229678e-05 1.48867024e-05 7.56160764e-05 1.05406534e-04 1.03838312e-05 6.79344375e-05 2.63576197e-04 4.59484669e-05 1.04457940e-03 6.42012106e-04 6.42012106e-04 5.28415823e-04 8.83593690e-05 7.02515477e-05 6.49310110e-04 8.62116025e-04 1.69209095e-04 5.63303673e-04 2.30539632e-04 8.13077200e-05 1.84237209e-04 1.03775336e-04 3.40868362e-06 8.12292512e-08 4.93365988e-09 + 2024 09 07 12 00 00 4.16860645e-03 2.55042636e-03 1.43242158e-03 1.05081373e-03 7.97692486e-04 4.21388249e-04 3.19742312e-04 2.86829978e-04 6.21744575e-04 1.75221243e-04 1.16479218e-02 7.11296201e-03 2.96759424e-04 8.64500949e-05 5.36667705e-05 2.83578422e-04 4.59026720e-05 8.08156852e-05 2.60345803e-04 9.53405688e-05 1.78508768e-04 2.17208722e-04 1.21264700e-04 1.06254667e-04 5.72994759e-06 1.02603881e-05 6.19996135e-06 3.42292793e-05 5.24108873e-06 1.98555543e-05 1.27076959e-04 4.16014635e-05 2.60172616e-05 1.39267750e-04 6.17411570e-05 1.48400926e-05 7.48270797e-05 1.04309002e-04 1.04326857e-05 6.70386953e-05 2.61302161e-04 4.58997121e-05 1.03933911e-03 6.41234498e-04 6.41234498e-04 5.21642354e-04 8.62517627e-05 7.01561396e-05 6.41452581e-04 8.52713399e-04 1.68034063e-04 5.43506954e-04 2.12544249e-04 7.47657366e-05 1.69135731e-04 9.36155564e-05 2.94449211e-06 5.66208243e-08 2.69220664e-09 + 2024 09 08 12 00 00 4.15907420e-03 2.54162445e-03 1.42706727e-03 1.04726928e-03 7.94786117e-04 4.20412137e-04 3.18624939e-04 2.85538166e-04 6.18350750e-04 1.73789548e-04 1.15783932e-02 7.07047358e-03 2.94978398e-04 8.56968307e-05 5.33530406e-05 2.82826220e-04 4.58496681e-05 8.07105796e-05 2.57894787e-04 9.42433195e-05 1.78245374e-04 2.16946513e-04 1.21026278e-04 1.05672235e-04 5.72644421e-06 9.92558562e-06 6.19417697e-06 3.41210328e-05 5.21639195e-06 1.97911101e-05 1.26780506e-04 4.15808958e-05 2.59670836e-05 1.37472047e-04 6.02967106e-05 1.48149309e-05 7.43821108e-05 1.03600094e-04 1.01702099e-05 6.62883174e-05 2.58612437e-04 4.49690619e-05 1.02108043e-03 6.27414789e-04 6.27414789e-04 5.14475664e-04 8.59588676e-05 6.83505728e-05 6.35246858e-04 8.45687810e-04 1.65524276e-04 5.43514583e-04 2.14272461e-04 7.53936587e-05 1.70583530e-04 9.45696758e-05 2.98665701e-06 5.87488387e-08 2.88333286e-09 + 2024 09 09 12 00 00 4.11873904e-03 2.51614895e-03 1.41084579e-03 1.03474900e-03 7.83449184e-04 4.15275563e-04 3.13583844e-04 2.80008745e-04 6.03922801e-04 1.70152976e-04 1.12394532e-02 6.84736520e-03 2.89356069e-04 8.45069530e-05 5.25741508e-05 2.83501860e-04 4.61079238e-05 8.12311133e-05 2.55607136e-04 9.31156857e-05 1.78930892e-04 2.18317085e-04 1.21272803e-04 1.06018666e-04 5.74311744e-06 1.05362567e-05 6.18449485e-06 3.40912428e-05 5.19112618e-06 1.97443712e-05 1.27316763e-04 4.16814699e-05 2.62268819e-05 1.35794536e-04 5.88182476e-05 1.47727871e-05 7.45206583e-05 1.04447028e-04 1.06488609e-05 6.55069211e-05 2.53970173e-04 4.40135889e-05 1.00475957e-03 6.13265950e-04 6.13265950e-04 5.11689752e-04 8.75560043e-05 6.64974505e-05 6.35142332e-04 8.42883257e-04 1.63806032e-04 5.42123368e-04 2.06309409e-04 7.24990226e-05 1.63902637e-04 9.00878165e-05 2.78280413e-06 4.80109499e-08 1.90701428e-09 + 2024 09 10 12 00 00 4.06866928e-03 2.48157507e-03 1.38909861e-03 1.01855010e-03 7.69082414e-04 4.09140453e-04 3.07396618e-04 2.73151105e-04 5.86022244e-04 1.65028142e-04 1.08303245e-02 6.58175647e-03 2.81893949e-04 8.25266907e-05 5.14733256e-05 2.78764800e-04 4.54487221e-05 7.99105619e-05 2.49970456e-04 9.08297545e-05 1.75935703e-04 2.14907674e-04 1.19531224e-04 1.04272221e-04 5.70018019e-06 1.00215271e-05 6.16279794e-06 3.37237295e-05 5.13977866e-06 1.95043217e-05 1.25173945e-04 4.14251030e-05 2.55783991e-05 1.31249061e-04 5.58143540e-05 1.46783495e-05 7.23567335e-05 1.01330308e-04 1.02454338e-05 6.30927822e-05 2.43212583e-04 4.20755881e-05 9.61640179e-04 5.84522914e-04 5.84522914e-04 4.86639107e-04 8.36419407e-05 6.27380447e-05 6.10226107e-04 8.14093049e-04 1.56968504e-04 5.23814997e-04 1.98824192e-04 6.97777996e-05 1.57620648e-04 8.58575162e-05 2.58924005e-06 3.77279918e-08 9.69852820e-10 + 2024 09 11 12 00 00 4.04933426e-03 2.46639828e-03 1.37970169e-03 1.01188911e-03 7.63354801e-04 4.06923798e-04 3.05051484e-04 2.70506358e-04 5.79112202e-04 1.62670596e-04 1.06794581e-02 6.48613870e-03 2.78711220e-04 8.14496538e-05 5.09760966e-05 2.75444717e-04 4.49523097e-05 7.89174461e-05 2.46357356e-04 8.93898075e-05 1.73858240e-04 2.12354826e-04 1.18334468e-04 1.03751446e-04 5.66778363e-06 1.02180384e-05 6.15027093e-06 3.35189965e-05 5.10762657e-06 1.93509909e-05 1.23622013e-04 4.12320980e-05 2.50924670e-05 1.28566339e-04 5.39322791e-05 1.46238075e-05 7.08959984e-05 9.95919816e-05 1.03996077e-05 6.18811873e-05 2.37342930e-04 4.08564083e-05 9.37261047e-04 5.66507690e-04 5.66507690e-04 4.70228492e-04 8.07211909e-05 6.03740569e-05 5.93072877e-04 7.95414378e-04 1.52456870e-04 5.14598582e-04 1.99134669e-04 6.98902601e-05 1.57878257e-04 8.60073216e-05 2.59439921e-06 3.78748624e-08 9.80039516e-10 + 2024 09 12 12 00 00 4.02531357e-03 2.44983556e-03 1.36928087e-03 1.00411928e-03 7.56459492e-04 4.03978823e-04 3.02081917e-04 2.67215028e-04 5.70521899e-04 1.60216187e-04 1.04831053e-02 6.35864735e-03 2.75133741e-04 8.04961207e-05 5.04370553e-05 2.76696375e-04 4.53043322e-05 7.96273176e-05 2.44244971e-04 8.82954686e-05 1.75075086e-04 2.14226996e-04 1.18854122e-04 1.04285313e-04 5.69049262e-06 1.07918604e-05 6.13306765e-06 3.35283012e-05 5.08316116e-06 1.93279375e-05 1.24439015e-04 4.13692032e-05 2.54472485e-05 1.27148916e-04 5.25003416e-05 1.45489234e-05 7.12991498e-05 1.00732854e-04 1.08495718e-05 6.11966902e-05 2.34361517e-04 3.99295968e-05 9.19910113e-04 5.52802207e-04 5.52802207e-04 4.69206576e-04 8.29055090e-05 5.85768139e-05 5.95203264e-04 7.96196736e-04 1.51032942e-04 5.20021463e-04 1.97940350e-04 6.94555507e-05 1.56872215e-04 8.53003186e-05 2.55993270e-06 3.58850961e-08 7.94705546e-10 + 2024 09 13 12 00 00 3.98990081e-03 2.42625368e-03 1.35437527e-03 9.92858333e-04 7.46388081e-04 3.99569134e-04 2.97685524e-04 2.62363500e-04 5.57858933e-04 1.56772049e-04 1.01902872e-02 6.16741031e-03 2.69998728e-04 7.92424147e-05 4.96933364e-05 2.70381730e-04 4.42611345e-05 7.75382447e-05 2.40320992e-04 8.69404583e-05 1.70698080e-04 2.08839381e-04 1.16492463e-04 1.02542557e-04 5.62251007e-06 1.04435043e-05 6.11703217e-06 3.31608211e-05 5.05275384e-06 1.90851579e-05 1.21388292e-04 4.09635191e-05 2.44223076e-05 1.23737243e-04 5.07213059e-05 1.44791105e-05 6.86428392e-05 9.68838641e-05 1.05764993e-05 5.91365908e-05 2.24979129e-04 3.87810724e-05 8.90918926e-04 5.35778329e-04 5.35778329e-04 4.43546584e-04 7.67257530e-05 5.63490146e-05 5.66777369e-04 7.64483665e-04 1.45157532e-04 4.91627139e-04 1.85795513e-04 6.50400008e-05 1.46677137e-04 7.84151001e-05 2.24346586e-06 1.89662934e-08 0.00000000e+00 + 2024 09 14 12 00 00 3.96065290e-03 2.40712759e-03 1.34225699e-03 9.83644181e-04 7.38116676e-04 3.95898811e-04 2.94047736e-04 2.58358605e-04 5.47403733e-04 1.54001457e-04 9.94701226e-03 6.00804836e-03 2.65817570e-04 7.82801616e-05 4.91170768e-05 2.66047721e-04 4.35696071e-05 7.61549745e-05 2.37488232e-04 8.59345426e-05 1.67760141e-04 2.05285274e-04 1.14896453e-04 1.01503018e-04 5.57737076e-06 1.04126280e-05 6.09217968e-06 3.29134177e-05 5.03001247e-06 1.89085360e-05 1.19352187e-04 4.06946696e-05 2.37457309e-05 1.21223164e-04 4.93917905e-05 1.43709287e-05 6.68479444e-05 9.44000229e-05 1.05523090e-05 5.73792408e-05 2.17585285e-04 3.79270525e-05 8.66415234e-04 5.23061631e-04 5.23061631e-04 4.25222126e-04 7.26608967e-05 5.46915922e-05 5.47276876e-04 7.42679290e-04 1.40953009e-04 4.71900378e-04 1.76450522e-04 6.16424495e-05 1.38832773e-04 7.31202967e-05 2.00030561e-06 9.68950076e-09 0.00000000e+00 + 2024 09 15 12 00 00 3.93052619e-03 2.38895791e-03 1.33061157e-03 9.74492052e-04 7.29745856e-04 3.91991128e-04 2.90263469e-04 2.54229869e-04 5.36630591e-04 1.51464622e-04 9.69044529e-03 5.83806187e-03 2.61762225e-04 7.75426780e-05 4.85685621e-05 2.59602705e-04 4.24535043e-05 7.39194104e-05 2.35228846e-04 8.53618782e-05 1.63133736e-04 1.99515747e-04 1.12475815e-04 9.95739405e-05 5.50465993e-06 9.62813792e-06 6.06804351e-06 3.25582128e-05 5.01693394e-06 1.86888460e-05 1.16215958e-04 4.02606180e-05 2.26482734e-05 1.18867273e-04 4.86280187e-05 1.42658653e-05 6.42637054e-05 9.01597219e-05 9.93731446e-06 5.55566913e-05 2.09175316e-04 3.74397729e-05 8.43503951e-04 5.15760528e-04 5.15760528e-04 4.01961760e-04 6.60394202e-05 5.37452113e-05 5.20777078e-04 7.14355723e-04 1.36481393e-04 4.49798296e-04 1.74279143e-04 6.08525701e-05 1.37006953e-04 7.18629608e-05 1.94077974e-06 7.48943023e-09 0.00000000e+00 + 2024 09 16 12 00 00 3.91258289e-03 2.37665499e-03 1.32286635e-03 9.68715775e-04 7.24619500e-04 3.89786679e-04 2.88046028e-04 2.51775047e-04 5.30219279e-04 1.49647481e-04 9.54340748e-03 5.74244484e-03 2.59104459e-04 7.68554862e-05 4.81876653e-05 2.59519886e-04 4.25094739e-05 7.40351679e-05 2.33548799e-04 8.45750503e-05 1.63235067e-04 1.99845323e-04 1.12452294e-04 9.93420576e-05 5.50813384e-06 9.57272423e-06 6.06599424e-06 3.24945882e-05 4.99913403e-06 1.86475882e-05 1.16264204e-04 4.02825361e-05 2.27099357e-05 1.17614038e-04 4.75874724e-05 1.42569101e-05 6.41242571e-05 9.00688035e-05 9.89386681e-06 5.50624333e-05 2.06618230e-04 3.67716682e-05 8.31568703e-04 5.05808182e-04 5.05808182e-04 3.98381997e-04 6.64450810e-05 5.24485367e-05 5.18367777e-04 7.10742913e-04 1.34984866e-04 4.49764579e-04 1.72932956e-04 6.03625784e-05 1.35872940e-04 7.10656364e-05 1.90188371e-06 6.00105352e-09 0.00000000e+00 + 2024 09 17 12 00 00 3.91353045e-03 2.37862335e-03 1.32399675e-03 9.69315816e-04 7.25023037e-04 3.89793629e-04 2.88131703e-04 2.51902746e-04 5.30556419e-04 1.50017040e-04 9.54600296e-03 5.74244522e-03 2.59462449e-04 7.71173151e-05 4.82594181e-05 2.58835567e-04 4.23518621e-05 7.37215509e-05 2.34389612e-04 8.50191806e-05 1.62634963e-04 1.99053366e-04 1.12185934e-04 9.90855911e-05 5.49776887e-06 9.42192783e-06 6.06229587e-06 3.24775531e-05 5.00898277e-06 1.86417604e-05 1.15903255e-04 4.02213307e-05 2.25587108e-05 1.18040089e-04 4.81644005e-05 1.42407749e-05 6.39218167e-05 8.95827272e-05 9.77568561e-06 5.49704282e-05 2.06576201e-04 3.71471426e-05 8.35171633e-04 5.11332834e-04 5.11332834e-04 3.97992865e-04 6.55516924e-05 5.31762140e-05 5.17156961e-04 7.09567062e-04 1.35489135e-04 4.44753212e-04 1.69674104e-04 5.91773864e-05 1.33134719e-04 6.91960580e-05 1.81449967e-06 2.82115877e-09 0.00000000e+00 + 2024 09 18 12 00 00 3.92994523e-03 2.38773487e-03 1.32991153e-03 9.74130051e-04 7.29510037e-04 3.91987676e-04 2.90213099e-04 2.54154987e-04 5.36430095e-04 1.51236522e-04 9.68887242e-03 5.83806261e-03 2.61543685e-04 7.73831802e-05 4.85153957e-05 2.55351010e-04 4.16736497e-05 7.23631587e-05 2.33979978e-04 8.50964047e-05 1.60132446e-04 1.95548345e-04 1.10914052e-04 9.84900369e-05 5.45358125e-06 9.34278942e-06 6.05772038e-06 3.23531578e-05 5.01077084e-06 1.85574833e-05 1.14076523e-04 3.99575772e-05 2.18919769e-05 1.17598878e-04 4.82686941e-05 1.42208097e-05 6.25828632e-05 8.75568703e-05 9.71363479e-06 5.45424218e-05 2.05612740e-04 3.72130569e-05 8.33034110e-04 5.12329023e-04 5.12329023e-04 3.87605984e-04 6.15297293e-05 5.33043640e-05 5.03493907e-04 6.96349977e-04 1.33745395e-04 4.30760941e-04 1.67397975e-04 5.83498477e-05 1.31224015e-04 6.79058052e-05 1.75520486e-06 7.08749326e-10 0.00000000e+00 + 2024 09 19 12 00 00 3.93369857e-03 2.39002970e-03 1.33137935e-03 9.75261432e-04 7.30533097e-04 3.92468550e-04 2.90680462e-04 2.54664727e-04 5.37767165e-04 1.51557066e-04 9.72086479e-03 5.85930683e-03 2.62051474e-04 7.74763697e-05 4.85858284e-05 2.52870552e-04 4.12005407e-05 7.14162248e-05 2.33724366e-04 8.51705263e-05 1.58321838e-04 1.93110419e-04 1.09995623e-04 9.80391691e-05 5.42272610e-06 9.27992951e-06 6.05269051e-06 3.22570063e-05 5.01257709e-06 1.84927086e-05 1.12805667e-04 3.97736148e-05 2.14280473e-05 1.17260622e-04 4.83735057e-05 1.41988377e-05 6.16362827e-05 8.61171016e-05 9.66425869e-06 5.41634235e-05 2.04185429e-04 3.72770621e-05 8.30960273e-04 5.13327168e-04 5.13327168e-04 3.80225605e-04 5.87370771e-05 5.34292776e-05 4.93994731e-04 6.86852502e-04 1.32565604e-04 4.20652058e-04 1.65282611e-04 5.75811344e-05 1.29450972e-04 6.67299984e-05 1.70270541e-06 0.00000000e+00 0.00000000e+00 + 2024 09 20 12 00 00 3.93809612e-03 2.39373429e-03 1.33365428e-03 9.76793019e-04 7.31803365e-04 3.92943690e-04 2.91199379e-04 2.55254176e-04 5.39325087e-04 1.52140585e-04 9.75455810e-03 5.88054582e-03 2.62810121e-04 7.77501051e-05 4.87022171e-05 2.51289464e-04 4.08790162e-05 7.07739790e-05 2.34277978e-04 8.55566468e-05 1.57111638e-04 1.91467785e-04 1.09414227e-04 9.78093934e-05 5.40169713e-06 9.27562141e-06 6.04423440e-06 3.22149656e-05 5.02151961e-06 1.84617195e-05 1.11997791e-04 3.96486517e-05 2.11150968e-05 1.17513740e-04 4.88949881e-05 1.41619297e-05 6.10989322e-05 8.52388723e-05 9.66069128e-06 5.39255653e-05 2.03646492e-04 3.76066397e-05 8.32757235e-04 5.18308068e-04 5.18308068e-04 3.76825092e-04 5.68650954e-05 5.40700159e-05 4.89076906e-04 6.82177413e-04 1.32456076e-04 4.12982033e-04 1.62515572e-04 5.65760238e-05 1.27134729e-04 6.52181392e-05 1.63696095e-06 0.00000000e+00 0.00000000e+00 + 2024 09 21 12 00 00 3.94470256e-03 2.39654090e-03 1.33556392e-03 9.78478701e-04 7.33436237e-04 3.93885200e-04 2.92044948e-04 2.56144731e-04 5.41671297e-04 1.52445482e-04 9.81600305e-03 5.92302829e-03 2.63496214e-04 7.76949830e-05 4.87741001e-05 2.50599999e-04 4.07474930e-05 7.05134706e-05 2.33589045e-04 8.53004400e-05 1.56689333e-04 1.90820301e-04 1.09176211e-04 9.76863496e-05 5.39299035e-06 9.25847489e-06 6.05036803e-06 3.21769593e-05 5.01629584e-06 1.84390089e-05 1.11630342e-04 3.95976269e-05 2.09911057e-05 1.17139645e-04 4.85861441e-05 1.41884811e-05 6.07956290e-05 8.48478239e-05 9.64698265e-06 5.39355569e-05 2.03694989e-04 3.73938296e-05 8.31255239e-04 5.15335286e-04 5.15335286e-04 3.74067434e-04 5.61440771e-05 5.36600011e-05 4.85530817e-04 6.78764845e-04 1.31615977e-04 4.10708856e-04 1.62574061e-04 5.65985254e-05 1.27192697e-04 6.53280636e-05 1.64706998e-06 0.00000000e+00 0.00000000e+00 + 2024 09 22 12 00 00 3.96508880e-03 2.40852466e-03 1.34327383e-03 9.84548980e-04 7.38991972e-04 3.96543513e-04 2.94601790e-04 2.58923725e-04 5.48945134e-04 1.54090966e-04 9.99135125e-03 6.03988096e-03 2.66180648e-04 7.81235391e-05 4.91244462e-05 2.50796854e-04 4.07279353e-05 7.04774691e-05 2.34167676e-04 8.55715480e-05 1.56823796e-04 1.90754198e-04 1.09270952e-04 9.82639936e-05 5.39156681e-06 9.65521176e-06 6.06003341e-06 3.22346800e-05 5.02292351e-06 1.84668018e-05 1.11651516e-04 3.95901559e-05 2.09776364e-05 1.17862540e-04 4.89705417e-05 1.42303979e-05 6.09300002e-05 8.52925989e-05 9.95773735e-06 5.45828990e-05 2.06241794e-04 3.76281096e-05 8.40396424e-04 5.18995523e-04 5.18995523e-04 3.76558825e-04 5.60920336e-05 5.41173096e-05 4.86901983e-04 6.81378946e-04 1.32234034e-04 4.13246363e-04 1.66123775e-04 5.78903117e-05 1.30181142e-04 6.74149969e-05 1.74790006e-06 1.14318084e-09 0.00000000e+00 + 2024 09 23 12 00 00 3.97624982e-03 2.41524688e-03 1.34758274e-03 9.87876061e-04 7.42002866e-04 3.97978872e-04 2.95990911e-04 2.60435457e-04 5.52916447e-04 1.55021182e-04 1.00870204e-02 6.10361174e-03 2.67671387e-04 7.83739742e-05 4.93166630e-05 2.53480778e-04 4.11926070e-05 7.14132795e-05 2.34968943e-04 8.57544655e-05 1.58783199e-04 1.93212005e-04 1.10290685e-04 9.88184412e-05 5.42160087e-06 9.70883630e-06 6.07030852e-06 3.23577752e-05 5.02757684e-06 1.85533961e-05 1.12981664e-04 3.97710828e-05 2.14437285e-05 1.18753600e-04 4.92394553e-05 1.42749705e-05 6.20088209e-05 8.68713778e-05 9.99951735e-06 5.52910010e-05 2.09572710e-04 3.77876975e-05 8.48293721e-04 5.21550560e-04 5.21550560e-04 3.86137588e-04 5.89507166e-05 5.44297451e-05 4.97967516e-04 6.93303045e-04 1.34027755e-04 4.23813368e-04 1.68516266e-04 5.87616763e-05 1.32200435e-04 6.88655979e-05 1.82078219e-06 4.02289686e-09 0.00000000e+00 + 2024 09 24 12 00 00 3.98113787e-03 2.42004844e-03 1.35048380e-03 9.89707116e-04 7.43448857e-04 3.98447189e-04 2.96546473e-04 2.61082072e-04 5.54637016e-04 1.55808066e-04 1.01219861e-02 6.12484664e-03 2.68621820e-04 7.87920580e-05 4.94915908e-05 2.57549489e-04 4.18943091e-05 7.28248269e-05 2.36927444e-04 8.63756286e-05 1.61612387e-04 1.96905735e-04 1.11794626e-04 9.95104243e-05 5.46703122e-06 9.64996871e-06 6.08255323e-06 3.25422174e-05 5.04211348e-06 1.86886214e-05 1.15019809e-04 4.00442339e-05 2.21446404e-05 1.20443246e-04 5.00862778e-05 1.43281271e-05 6.36812082e-05 8.91600545e-05 9.95316150e-06 5.63038609e-05 2.13802047e-04 3.83191451e-05 8.62672066e-04 5.29634068e-04 5.29634068e-04 4.01764725e-04 6.32350682e-05 5.54637460e-05 5.15983763e-04 7.12225845e-04 1.37432942e-04 4.38866473e-04 1.70871860e-04 5.96198617e-05 1.34190433e-04 7.03098563e-05 1.89433296e-06 6.97017128e-09 0.00000000e+00 + 2024 09 25 12 00 00 3.80662158e-03 2.32730930e-03 1.28985541e-03 9.39286584e-04 6.95927477e-04 3.74748055e-04 2.74285644e-04 2.37083183e-04 4.92128583e-04 1.43678627e-04 8.58831446e-03 5.09427190e-03 2.47146624e-04 7.66199564e-05 4.69323526e-05 2.77781073e-04 4.79625829e-05 8.02645693e-05 2.39909748e-04 8.67334427e-05 1.68188183e-04 2.07403303e-04 1.15599762e-04 1.02053395e-04 5.83620167e-06 9.33419360e-06 6.11573269e-06 3.40803615e-05 5.05072276e-06 1.97236960e-05 1.29782542e-04 4.21559584e-05 2.77586631e-05 1.23571780e-04 5.05864038e-05 1.43895639e-05 7.08661991e-05 9.88538292e-05 9.67494925e-06 5.89135566e-05 2.21239148e-04 3.86272208e-05 8.96363567e-04 5.34400530e-04 5.34400530e-04 4.69847528e-04 8.61409411e-05 5.60643850e-05 6.10508092e-04 8.00307327e-04 1.50603331e-04 5.24012351e-04 1.75663646e-04 6.13634231e-05 1.38222875e-04 7.31124010e-05 2.02880894e-06 1.20197996e-08 0.00000000e+00 + 2024 09 26 12 00 00 4.00220333e-03 2.43629713e-03 1.36056031e-03 9.96809621e-04 7.49530048e-04 4.00872434e-04 2.99089664e-04 2.63936273e-04 5.62129747e-04 1.58304347e-04 1.02882380e-02 6.23107068e-03 2.72022634e-04 7.98821647e-05 5.00240056e-05 2.65015828e-04 4.31519642e-05 7.53528613e-05 2.41136122e-04 8.78009887e-05 1.66774637e-04 2.03505519e-04 1.14564863e-04 1.01241554e-04 5.54854232e-06 9.89227265e-06 6.10416319e-06 3.29280991e-05 5.07509467e-06 1.89539959e-05 1.18714283e-04 4.05337196e-05 2.33975094e-05 1.24097964e-04 5.20097674e-05 1.44220379e-05 6.68071385e-05 9.36290833e-05 1.01428559e-05 5.84761490e-05 2.22921479e-04 3.95355222e-05 8.94348712e-04 5.48007060e-04 5.48007060e-04 4.31720905e-04 7.08764652e-05 5.78284089e-05 5.49689226e-04 7.48438616e-04 1.44179673e-04 4.68242484e-04 1.78332191e-04 6.23353000e-05 1.40474944e-04 7.47285105e-05 2.10989182e-06 1.52187638e-08 0.00000000e+00 + 2024 09 27 12 00 00 4.02670070e-03 2.45391967e-03 1.37158565e-03 1.00486970e-03 7.56596562e-04 4.03812219e-04 3.02095186e-04 2.67283155e-04 5.70877299e-04 1.60954983e-04 1.04858326e-02 6.35855943e-03 2.75784927e-04 8.09610178e-05 5.05870387e-05 2.69653674e-04 4.38875606e-05 7.68327503e-05 2.44689812e-04 8.91197182e-05 1.69905497e-04 2.07379470e-04 1.16285276e-04 1.02182978e-04 5.59616055e-06 9.86346131e-06 6.11952928e-06 3.31861940e-05 5.10496720e-06 1.91395528e-05 1.20948801e-04 4.08200693e-05 2.41325732e-05 1.26973797e-04 5.37557993e-05 1.44887948e-05 6.87972710e-05 9.62713925e-05 1.01200523e-05 5.99945875e-05 2.30105263e-04 4.06556122e-05 9.19765700e-04 5.64705813e-04 5.64705813e-04 4.52139665e-04 7.53710454e-05 6.00025116e-05 5.71815714e-04 7.72678847e-04 1.49189531e-04 4.84662415e-04 1.81347972e-04 6.34332740e-05 1.43017437e-04 7.65322364e-05 2.19898884e-06 1.97299556e-08 0.00000000e+00 + 2024 09 28 12 00 00 4.05048823e-03 2.47004718e-03 1.38175362e-03 1.01248381e-03 7.63370299e-04 4.06749352e-04 3.05038649e-04 2.70536983e-04 5.79376029e-04 1.63325741e-04 1.06815006e-02 6.48604780e-03 2.79277690e-04 8.18465881e-05 5.11021617e-05 2.68449749e-04 4.35562775e-05 7.61709525e-05 2.46574846e-04 9.01056046e-05 1.68827908e-04 2.05686322e-04 1.15823490e-04 1.02215587e-04 5.57449566e-06 9.82646816e-06 6.12680451e-06 3.31996831e-05 5.12732804e-06 1.91543350e-05 1.20211258e-04 4.06913110e-05 2.38100140e-05 1.28360006e-04 5.50625904e-05 1.45203638e-05 6.84668644e-05 9.56018368e-05 1.00908939e-05 6.06292830e-05 2.32676842e-04 4.14932147e-05 9.34956228e-04 5.77202765e-04 5.77202765e-04 4.52998080e-04 7.34410540e-05 6.16284669e-05 5.69850097e-04 7.72425543e-04 1.50436108e-04 4.81803944e-04 1.85052299e-04 6.47814199e-05 1.46136727e-04 7.87160114e-05 2.30487593e-06 2.58026006e-08 0.00000000e+00 + 2024 09 29 12 00 00 4.06026577e-03 2.47652584e-03 1.38584951e-03 1.01556541e-03 7.66118810e-04 4.07967603e-04 3.06249201e-04 2.71870069e-04 5.82862911e-04 1.64266803e-04 1.07626280e-02 6.53916597e-03 2.80684899e-04 8.21680516e-05 5.12820759e-05 2.70833647e-04 4.39511874e-05 7.69657257e-05 2.47683205e-04 9.04540124e-05 1.70488803e-04 2.07769283e-04 1.16703450e-04 1.02875972e-04 5.60004482e-06 9.95561277e-06 6.14196979e-06 3.33210866e-05 5.13549421e-06 1.92390230e-05 1.21366599e-04 4.08450520e-05 2.42051654e-05 1.29476439e-04 5.55382459e-05 1.45862912e-05 6.94418491e-05 9.70788194e-05 1.01920006e-05 6.15801171e-05 2.36008094e-04 4.17914067e-05 9.46484548e-04 5.81742823e-04 5.81742823e-04 4.62497573e-04 7.58598850e-05 6.22086984e-05 5.80175857e-04 7.83702878e-04 1.52409969e-04 4.93466545e-04 1.90662073e-04 6.68221041e-05 1.50853889e-04 8.19654213e-05 2.45877957e-06 3.43703604e-08 7.53686713e-10 + 2024 09 30 12 00 00 4.09051713e-03 2.49500654e-03 1.39767117e-03 1.02478938e-03 7.74521026e-04 4.11869066e-04 3.10039629e-04 2.76009797e-04 5.93672866e-04 1.66860405e-04 1.10194887e-02 6.70914948e-03 2.84791889e-04 8.29397935e-05 5.18373418e-05 2.71942621e-04 4.40655655e-05 7.71974737e-05 2.49193226e-04 9.10894130e-05 1.71228021e-04 2.08389637e-04 1.17138464e-04 1.03454550e-04 5.60737244e-06 1.00783538e-05 6.15425452e-06 3.34258984e-05 5.15019674e-06 1.93104443e-05 1.21806497e-04 4.08896478e-05 2.43224247e-05 1.30906099e-04 5.63957146e-05 1.46396836e-05 6.99724497e-05 9.78277057e-05 1.02880804e-05 6.25855842e-05 2.40522537e-04 4.23336489e-05 9.60948620e-04 5.89933340e-04 5.89933340e-04 4.69271086e-04 7.65916368e-05 6.32628275e-05 5.86090213e-04 7.91803967e-04 1.54186812e-04 5.01777315e-04 1.98595644e-04 6.97075575e-05 1.57521013e-04 8.65256823e-05 2.67250145e-06 4.61037708e-08 1.83258297e-09 + 2024 10 01 12 00 00 4.12188643e-03 2.51581289e-03 1.41082689e-03 1.03471787e-03 7.83394060e-04 4.15779456e-04 3.13930377e-04 2.80298527e-04 6.04876993e-04 1.69889705e-04 1.12794060e-02 6.87913299e-03 2.89319612e-04 8.40209726e-05 5.24886704e-05 2.77247143e-04 4.49091720e-05 7.88923819e-05 2.52480733e-04 9.22424195e-05 1.74846263e-04 2.12807445e-04 1.19088991e-04 1.05109523e-04 5.66208801e-06 1.03621845e-05 6.18899721e-06 3.37254043e-05 5.17655790e-06 1.95190173e-05 1.24324378e-04 4.12179448e-05 2.51613063e-05 1.34024926e-04 5.79350337e-05 1.47907849e-05 7.21915528e-05 1.01107907e-04 1.05105268e-05 6.50796456e-05 2.49238278e-04 4.33149806e-05 9.92149069e-04 6.04647119e-04 6.04647119e-04 4.91922782e-04 8.17005348e-05 6.51688839e-05 6.10010912e-04 8.19076084e-04 1.59261195e-04 5.32753406e-04 2.18801602e-04 7.70543847e-05 1.74486366e-04 9.80095645e-05 3.20222133e-06 7.45641074e-08 4.43441195e-09 + 2024 10 02 12 00 00 4.14622535e-03 2.53319201e-03 1.42170872e-03 1.04266671e-03 7.90358434e-04 4.18706171e-04 3.16913299e-04 2.83614810e-04 6.13556433e-04 1.72492134e-04 1.14764872e-02 7.00661466e-03 2.93029937e-04 8.50573683e-05 5.30374474e-05 2.80713691e-04 4.54423076e-05 7.99645844e-05 2.55693042e-04 9.34953045e-05 1.77176807e-04 2.15610998e-04 1.20391940e-04 1.06233168e-04 5.69661679e-06 1.04315790e-05 6.19394486e-06 3.39444085e-05 5.20532158e-06 1.96688921e-05 1.26005671e-04 4.14254639e-05 2.56933738e-05 1.36754463e-04 5.96138998e-05 1.48122504e-05 7.37648554e-05 1.03175030e-04 1.05648804e-05 6.66167561e-05 2.55270182e-04 4.43822995e-05 1.01355129e-03 6.20690826e-04 6.20690826e-04 5.08240159e-04 8.49504664e-05 6.72425725e-05 6.27366366e-04 8.39743409e-04 1.63477274e-04 5.57242149e-04 2.37894055e-04 8.39964596e-05 1.90517578e-04 1.08867270e-04 3.70349535e-06 1.01528721e-07 6.90031285e-09 + 2024 10 03 12 00 00 4.16746597e-03 2.54695420e-03 1.43043685e-03 1.04927078e-03 7.96267642e-04 4.21372844e-04 3.19546013e-04 2.86505615e-04 6.21126697e-04 1.74469527e-04 1.16541677e-02 7.12346882e-03 2.96033151e-04 8.57209613e-05 5.34725739e-05 2.83522619e-04 4.58881230e-05 8.08620942e-05 2.57516720e-04 9.41521779e-05 1.79157695e-04 2.17965543e-04 1.21458520e-04 1.07204402e-04 5.72544741e-06 1.03709899e-05 6.20375649e-06 3.40983414e-05 5.22089249e-06 1.97808869e-05 1.27375276e-04 4.15990391e-05 2.61399720e-05 1.38614089e-04 6.05198089e-05 1.48548352e-05 7.49955343e-05 1.04770929e-04 1.05172549e-05 6.81234898e-05 2.60128653e-04 4.49459418e-05 1.02776236e-03 6.29331963e-04 6.29331963e-04 5.20264762e-04 8.76866863e-05 6.83402526e-05 6.40282879e-04 8.56144872e-04 1.66218137e-04 5.86557063e-04 2.65908948e-04 9.41818951e-05 2.14034430e-04 1.24745517e-04 4.43303820e-06 1.40510861e-07 1.04587173e-08 + 2024 10 04 12 00 00 4.14751910e-03 2.53350114e-03 1.42194516e-03 1.04281569e-03 7.90470726e-04 4.18890564e-04 3.17058309e-04 2.83750876e-04 6.13966480e-04 1.72484139e-04 1.14905492e-02 7.01721162e-03 2.93097921e-04 8.49554894e-05 5.30365448e-05 2.81508129e-04 4.55928530e-05 8.02733935e-05 2.55318788e-04 9.32955765e-05 1.77855643e-04 2.16469182e-04 1.20718940e-04 1.06992815e-04 5.70608354e-06 1.07657615e-05 6.19737621e-06 3.39809200e-05 5.20250251e-06 1.96833399e-05 1.26462137e-04 4.14843264e-05 2.58545741e-05 1.36978962e-04 5.94387762e-05 1.48269697e-05 7.41182580e-05 1.03941701e-04 1.08265369e-05 6.72540645e-05 2.55878725e-04 4.42267687e-05 1.01465584e-03 6.18959730e-04 6.18959730e-04 5.10618926e-04 8.59897875e-05 6.69496600e-05 6.30143083e-04 8.43995892e-04 1.63559270e-04 5.73578147e-04 2.55818950e-04 9.05157234e-05 2.05580766e-04 1.19167757e-04 4.18605528e-06 1.28007963e-07 9.33477224e-09 + 2024 10 05 12 00 00 4.10855587e-03 2.50830875e-03 1.40595425e-03 1.03052025e-03 7.79358736e-04 4.13964219e-04 3.12187820e-04 2.78389405e-04 6.00004648e-04 1.68840820e-04 1.11660572e-02 6.80471212e-03 2.87557247e-04 8.36778708e-05 5.22478663e-05 2.77669349e-04 4.50266118e-05 7.91416562e-05 2.51882046e-04 9.19916260e-05 1.75326803e-04 2.13569125e-04 1.19310292e-04 1.05818646e-04 5.66907838e-06 1.05982850e-05 6.17246769e-06 3.37234133e-05 5.17403496e-06 1.95050501e-05 1.24737394e-04 4.12642170e-05 2.53022445e-05 1.34093259e-04 5.77683328e-05 1.47184837e-05 7.24792152e-05 1.01633697e-04 1.06950196e-05 6.53243401e-05 2.47653710e-04 4.31280787e-05 9.86084872e-04 6.02948619e-04 6.02948619e-04 4.92608749e-04 8.26799194e-05 6.48227287e-05 6.11857855e-04 8.22722515e-04 1.59069993e-04 5.54632410e-04 2.44550381e-04 8.64209833e-05 1.96137240e-04 1.12917376e-04 3.90786388e-06 1.13814684e-07 8.05595590e-09 + 2024 10 06 12 00 00 4.06880699e-03 2.48149942e-03 1.38903480e-03 1.01772701e-03 7.67908189e-04 4.09029429e-04 3.07245095e-04 2.72921142e-04 5.85762905e-04 1.64893931e-04 1.08394010e-02 6.59221113e-03 2.81722170e-04 8.21842720e-05 5.13961519e-05 2.73231473e-04 4.43700672e-05 7.78294983e-05 2.47568927e-04 9.03244363e-05 1.72449797e-04 2.10207161e-04 1.17689627e-04 1.04503865e-04 5.62616988e-06 1.04021674e-05 6.14880628e-06 3.34223290e-05 5.13748564e-06 1.92981821e-05 1.22720285e-04 4.10090142e-05 2.46619282e-05 1.30612161e-04 5.56246727e-05 1.46154227e-05 7.05550847e-05 9.89619929e-05 1.05411338e-05 6.32400223e-05 2.38613578e-04 4.17220959e-05 9.52688838e-04 5.82406949e-04 5.82406949e-04 4.71335287e-04 7.88432662e-05 6.21001003e-05 5.90087891e-04 7.97804760e-04 1.53570577e-04 5.34964181e-04 2.34656216e-04 8.28256925e-05 1.87845691e-04 1.07430810e-04 3.66376582e-06 1.01368411e-07 6.93474078e-09 + 2024 10 07 12 00 00 4.03547463e-03 2.45969503e-03 1.37521688e-03 1.00713638e-03 7.58353937e-04 4.04832183e-04 3.03081155e-04 2.68330487e-04 5.73814727e-04 1.61722877e-04 1.05629525e-02 6.41158298e-03 2.76938368e-04 8.10484327e-05 5.07212695e-05 2.71233663e-04 4.41325654e-05 7.73584994e-05 2.44665439e-04 8.91266624e-05 1.71277415e-04 2.09031399e-04 1.16982417e-04 1.04346617e-04 5.61047564e-06 1.08940818e-05 6.12611620e-06 3.32840789e-05 5.11138423e-06 1.91765536e-05 1.21920701e-04 4.09168453e-05 2.44369527e-05 1.28395013e-04 5.40927693e-05 1.45165788e-05 6.96819360e-05 9.82157062e-05 1.09266191e-05 6.18802157e-05 2.32322477e-04 4.07132698e-05 9.30092253e-04 5.67722088e-04 5.67722088e-04 4.59810661e-04 7.75292516e-05 6.01473788e-05 5.79351424e-04 7.84787568e-04 1.50254783e-04 5.24886242e-04 2.27066923e-04 8.00681479e-05 1.81487197e-04 1.03235551e-04 3.47800626e-06 9.19653047e-08 6.08946493e-09 + 2024 10 08 12 00 00 4.01528825e-03 2.44569446e-03 1.36641309e-03 1.00053650e-03 7.52475930e-04 4.02354900e-04 3.00576695e-04 2.65549076e-04 5.66576652e-04 1.59636283e-04 1.03987226e-02 6.30532801e-03 2.73908367e-04 8.02149643e-05 5.02640113e-05 2.65851166e-04 4.32146597e-05 7.55215005e-05 2.41673533e-04 8.81540007e-05 1.67526156e-04 2.04303778e-04 1.14981937e-04 1.02451036e-04 5.55060287e-06 1.02997416e-05 6.11567375e-06 3.29706423e-05 5.09018828e-06 1.89822828e-05 1.19281192e-04 4.05599421e-05 2.35372398e-05 1.25699151e-04 5.28488134e-05 1.44710270e-05 6.74244829e-05 9.47010545e-05 1.04605519e-05 6.00084201e-05 2.25495981e-04 3.98940581e-05 9.08156597e-04 5.55797527e-04 5.55797527e-04 4.38797636e-04 7.21153629e-05 5.85616857e-05 5.55591817e-04 7.58022523e-04 1.45586915e-04 4.92730534e-04 2.06509349e-04 7.25966464e-05 1.64249417e-04 9.17490224e-05 2.96112244e-06 6.51588977e-08 3.66281121e-09 + 2024 10 09 12 00 00 4.01891160e-03 2.45336500e-03 1.37080951e-03 1.00280686e-03 7.53953207e-04 4.02363704e-04 3.00889562e-04 2.66019382e-04 5.67840179e-04 1.61070649e-04 1.04085126e-02 6.30532056e-03 2.75286858e-04 8.12294855e-05 5.05826712e-05 2.61855547e-04 4.23332938e-05 7.37576454e-05 2.44596222e-04 8.98536993e-05 1.64093404e-04 1.99764511e-04 1.13385200e-04 1.02622554e-04 5.49311226e-06 1.09339773e-05 6.12357981e-06 3.29223275e-05 5.12878469e-06 1.89325959e-05 1.17131122e-04 4.02172474e-05 2.26733697e-05 1.27553660e-04 5.51041681e-05 1.45053069e-05 6.61107032e-05 9.30195719e-05 1.09576155e-05 6.05586302e-05 2.25126000e-04 4.13384929e-05 9.33255025e-04 5.77364163e-04 5.77364163e-04 4.34325346e-04 6.69172558e-05 6.13658514e-05 5.45215377e-04 7.47914621e-04 1.46830762e-04 4.72491125e-04 1.99944056e-04 7.02111363e-05 1.58748630e-04 8.81178450e-05 2.80020786e-06 5.70031673e-08 2.92939504e-09 + 2024 10 10 12 00 00 3.97902197e-03 2.42055655e-03 1.35060552e-03 9.88709725e-04 7.41956243e-04 3.97907953e-04 2.96082556e-04 2.60560120e-04 5.53582711e-04 1.55894316e-04 1.01033726e-02 6.11407608e-03 2.68472359e-04 7.87283027e-05 4.94410317e-05 2.58391179e-04 4.19848831e-05 7.30629195e-05 2.36728998e-04 8.64252856e-05 1.62457010e-04 1.97998057e-04 1.12233281e-04 1.00760959e-04 5.47026684e-06 1.01666315e-05 6.09240778e-06 3.25496353e-05 5.05225653e-06 1.86918941e-05 1.15706485e-04 4.00818797e-05 2.23364783e-05 1.21664653e-04 5.06242621e-05 1.43695826e-05 6.43209586e-05 9.03924537e-05 1.03559265e-05 5.76611645e-05 2.14661645e-04 3.84358980e-05 8.72634910e-04 5.34481788e-04 5.34481788e-04 4.08211202e-04 6.49135152e-05 5.57378400e-05 5.21737914e-04 7.20979220e-04 1.38389715e-04 4.62957546e-04 1.96947335e-04 6.91229314e-05 1.56242524e-04 8.65013006e-05 2.73133237e-06 5.37262167e-08 2.64034732e-09 + 2024 10 11 12 00 00 3.97173116e-03 2.41658138e-03 1.34801622e-03 9.86563799e-04 7.39936530e-04 3.96924225e-04 2.95151522e-04 2.59552360e-04 5.50963984e-04 1.55364136e-04 1.00398279e-02 6.07157499e-03 2.67554477e-04 7.86167378e-05 4.93402219e-05 2.56449968e-04 4.16404131e-05 7.23752426e-05 2.36344232e-04 8.63973983e-05 1.61064881e-04 1.96242780e-04 1.11518299e-04 1.00161684e-04 5.44771683e-06 9.91365014e-06 6.07986658e-06 3.24489176e-05 5.05192111e-06 1.86292587e-05 1.14775983e-04 3.99480166e-05 2.20019472e-05 1.21150426e-04 5.06028824e-05 1.43149344e-05 6.35832671e-05 8.91119690e-05 1.01574886e-05 5.70245955e-05 2.12276459e-04 3.84146697e-05 8.66184263e-04 5.34267491e-04 5.34267491e-04 4.01729184e-04 6.29163522e-05 5.56981948e-05 5.14337438e-04 7.13252341e-04 1.37313455e-04 4.55184562e-04 1.94752755e-04 6.83263832e-05 1.54409927e-04 8.53407475e-05 2.68349778e-06 5.15802498e-08 2.45470719e-09 + 2024 10 12 12 00 00 3.97155192e-03 2.41622477e-03 1.34781114e-03 9.86449159e-04 7.39854974e-04 3.96920366e-04 2.95133928e-04 2.59526879e-04 5.50899004e-04 1.55296972e-04 1.00393238e-02 6.07157424e-03 2.67488788e-04 7.85682456e-05 4.93251991e-05 2.55319857e-04 4.14256967e-05 7.19488482e-05 2.35982885e-04 8.63169320e-05 1.60257229e-04 1.95173331e-04 1.11096070e-04 9.99758432e-05 5.43355600e-06 9.92459609e-06 6.08226910e-06 3.23952389e-05 5.05015196e-06 1.85943442e-05 1.14197854e-04 3.98646691e-05 2.17974870e-05 1.20853955e-04 5.04991098e-05 1.43253186e-05 6.31342380e-05 8.85020385e-05 1.01659534e-05 5.69164239e-05 2.11474046e-04 3.83467588e-05 8.65191510e-04 5.33273350e-04 5.33273350e-04 3.98171210e-04 6.17165468e-05 5.55666629e-05 5.09741960e-04 7.08460787e-04 1.36600381e-04 4.50324262e-04 1.93222081e-04 6.77712054e-05 1.53134568e-04 8.45557182e-05 2.65286675e-06 5.03497773e-08 2.35254181e-09 + 2024 10 13 12 00 00 3.95981743e-03 2.40853397e-03 1.34293852e-03 9.82735244e-04 7.36515765e-04 3.95447978e-04 2.93672166e-04 2.57915874e-04 5.46698106e-04 1.54179738e-04 9.94188573e-03 6.00782782e-03 2.65804976e-04 7.81697509e-05 4.90854563e-05 2.52614137e-04 4.09648928e-05 7.10283406e-05 2.34639770e-04 8.58976739e-05 1.58372413e-04 1.92818661e-04 1.10095418e-04 9.90595908e-05 5.40341862e-06 9.68875174e-06 6.07235088e-06 3.22416872e-05 5.04090458e-06 1.84957601e-05 1.12886138e-04 3.96855728e-05 2.13488907e-05 1.19556196e-04 4.99570975e-05 1.42821023e-05 6.20222950e-05 8.67886953e-05 9.98097385e-06 5.58691664e-05 2.07819869e-04 3.79927224e-05 8.53755892e-04 5.28081367e-04 5.28081367e-04 3.87779229e-04 5.90328185e-05 5.48807904e-05 4.98132373e-04 6.95290863e-04 1.34389363e-04 4.33054429e-04 1.81218637e-04 6.34091717e-05 1.43073342e-04 7.78818147e-05 2.35475280e-06 3.50574027e-08 9.72531744e-10 + 2024 10 14 12 00 00 3.94878630e-03 2.39953045e-03 1.33738864e-03 9.78848487e-04 7.33199710e-04 3.94209999e-04 2.92340437e-04 2.56404754e-04 5.42753038e-04 1.52761982e-04 9.85725207e-03 5.95470443e-03 2.63930669e-04 7.74860566e-05 4.87687857e-05 2.48760200e-04 4.03289858e-05 6.97551412e-05 2.32020323e-04 8.49667238e-05 1.55802151e-04 1.89537315e-04 1.08698539e-04 9.81128791e-05 5.36196640e-06 9.65175932e-06 6.05646455e-06 3.20347053e-05 5.02021321e-06 1.83488072e-05 1.11018866e-04 3.94382892e-05 2.07245743e-05 1.17373682e-04 4.87452897e-05 1.42129167e-05 6.04090136e-05 8.45610720e-05 9.95185255e-06 5.44309766e-05 2.02735429e-04 3.72052862e-05 8.34017689e-04 5.16478764e-04 5.16478764e-04 3.71607785e-04 5.52709447e-05 5.33544575e-05 4.80363321e-04 6.75732184e-04 1.30544881e-04 4.12682421e-04 1.69709406e-04 5.92266999e-05 1.33426117e-04 7.14805668e-05 2.06867579e-06 2.03715373e-08 0.00000000e+00 + 2024 10 15 12 00 00 3.94046837e-03 2.39339070e-03 1.33355837e-03 9.76057976e-04 7.30757626e-04 3.93222354e-04 2.91319819e-04 2.55262728e-04 5.39775034e-04 1.51826809e-04 9.79092389e-03 5.91220483e-03 2.62623071e-04 7.70848392e-05 4.85709559e-05 2.47199039e-04 4.00726189e-05 6.92443165e-05 2.30667147e-04 8.44584429e-05 1.54753871e-04 1.88241603e-04 1.08116256e-04 9.78192138e-05 5.34513856e-06 9.77620075e-06 6.05828791e-06 3.19443667e-05 5.00899732e-06 1.82837551e-05 1.10257748e-04 3.93386988e-05 2.04773562e-05 1.16340226e-04 4.80879127e-05 1.42207748e-05 5.97270745e-05 8.37809667e-05 1.00493067e-05 5.39735089e-05 2.00442188e-04 3.67760367e-05 8.27237921e-04 5.10181906e-04 5.10181906e-04 3.64928090e-04 5.38040185e-05 5.25228388e-05 4.72826865e-04 6.67023067e-04 1.28792029e-04 4.02933096e-04 1.62867770e-04 5.67410036e-05 1.27695424e-04 6.77106305e-05 1.90256237e-06 1.30791292e-08 0.00000000e+00 + 2024 10 16 12 00 00 3.94257409e-03 2.39506583e-03 1.33459281e-03 9.76761403e-04 7.31344775e-04 3.93457473e-04 2.91569085e-04 2.55542568e-04 5.40517273e-04 1.52084469e-04 9.80749924e-03 5.92282303e-03 2.62967872e-04 7.71975248e-05 4.86294537e-05 2.47231253e-04 4.00576682e-05 6.92169706e-05 2.30968732e-04 8.46065406e-05 1.54732778e-04 1.88192978e-04 1.08120053e-04 9.79705008e-05 5.34404171e-06 9.95136725e-06 6.06360336e-06 3.19604354e-05 5.01261056e-06 1.82910664e-05 1.10253234e-04 3.93329974e-05 2.04673735e-05 1.16610744e-04 4.82975505e-05 1.42438119e-05 5.97609664e-05 8.39521017e-05 1.01864607e-05 5.41455668e-05 2.00963609e-04 3.69039713e-05 8.31667267e-04 5.12178289e-04 5.12178289e-04 3.66008805e-04 5.37677261e-05 5.27725206e-05 4.73446802e-04 6.67531554e-04 1.29126679e-04 4.00073706e-04 1.59110034e-04 5.53762984e-05 1.24551788e-04 6.56739099e-05 1.81511626e-06 1.02440822e-08 0.00000000e+00 + 2024 10 17 12 00 00 3.94798019e-03 2.39805527e-03 1.33653361e-03 9.78314290e-04 7.32777907e-04 3.94175708e-04 2.92248569e-04 2.56275336e-04 5.42440707e-04 1.52479683e-04 9.85486434e-03 5.95469028e-03 2.63645593e-04 7.72664052e-05 4.86966945e-05 2.46522478e-04 3.99197917e-05 6.89426553e-05 2.30851814e-04 8.46122566e-05 1.54260544e-04 1.87500603e-04 1.07879254e-04 9.76213747e-05 5.33497296e-06 9.64143765e-06 6.05955465e-06 3.19190318e-05 5.01307441e-06 1.82732013e-05 1.09898062e-04 3.92794609e-05 2.03351519e-05 1.16501134e-04 4.83226264e-05 1.42261109e-05 5.94983267e-05 8.33212413e-05 9.94340226e-06 5.39955077e-05 2.00855943e-04 3.69115878e-05 8.29197368e-04 5.12407068e-04 5.12407068e-04 3.63754028e-04 5.29869576e-05 5.27890632e-05 4.70702528e-04 6.65272651e-04 1.28746839e-04 3.99846465e-04 1.62053569e-04 5.64477436e-05 1.27031754e-04 6.74204510e-05 1.90051639e-06 1.35204701e-08 0.00000000e+00 + 2024 10 18 12 00 00 3.92578555e-03 2.38261253e-03 1.32682808e-03 9.71069390e-04 7.26342683e-04 3.91459558e-04 2.89500804e-04 2.53224186e-04 5.34491551e-04 1.50178444e-04 9.67429914e-03 5.83781451e-03 2.60310796e-04 7.63546947e-05 4.82036559e-05 2.47044587e-04 4.01196507e-05 6.93462498e-05 2.28641244e-04 8.35414801e-05 1.54884507e-04 1.88569799e-04 1.08101467e-04 9.73558732e-05 5.34783940e-06 9.57117009e-06 6.05311798e-06 3.18643294e-05 4.98946611e-06 1.82361028e-05 1.10300439e-04 3.93573253e-05 2.05376098e-05 1.14902733e-04 4.69388033e-05 1.41980112e-05 5.95644575e-05 8.35461487e-05 9.88815882e-06 5.32341965e-05 1.97900586e-04 3.60074599e-05 8.12633418e-04 4.99151088e-04 4.99151088e-04 3.60702395e-04 5.42385736e-05 5.10375539e-05 4.69893734e-04 6.62734280e-04 1.27009179e-04 3.99053014e-04 1.56309781e-04 5.43612077e-05 1.22222711e-04 6.42733994e-05 1.76306534e-06 8.95047947e-09 0.00000000e+00 + 2024 10 19 12 00 00 3.92398002e-03 2.38174743e-03 1.32625120e-03 9.70533107e-04 7.25808975e-04 3.91200367e-04 2.89260797e-04 2.52965030e-04 5.33831460e-04 1.50067681e-04 9.65837611e-03 5.82718253e-03 2.60097155e-04 7.63353184e-05 4.81793003e-05 2.48201982e-04 4.03393438e-05 6.97895419e-05 2.28843904e-04 8.35543207e-05 1.55752718e-04 1.89741209e-04 1.08547926e-04 9.75912267e-05 5.36199841e-06 9.68633904e-06 6.05043460e-06 3.19137860e-05 4.99013768e-06 1.82649951e-05 1.10918526e-04 3.94428993e-05 2.07595192e-05 1.15114514e-04 4.69757069e-05 1.41862387e-05 6.00374778e-05 8.42971162e-05 9.97827156e-06 5.32520550e-05 1.98450028e-04 3.60215083e-05 8.13199958e-04 4.99491487e-04 4.99491487e-04 3.64355901e-04 5.56073035e-05 5.10668266e-05 4.74664920e-04 6.67381525e-04 1.27657346e-04 4.00831900e-04 1.53064536e-04 5.31830017e-05 1.19510551e-04 6.25381253e-05 1.69019274e-06 6.66745166e-09 0.00000000e+00 + 2024 10 20 12 00 00 3.95012990e-03 2.39729175e-03 1.33623504e-03 9.78399387e-04 7.33012813e-04 3.94605373e-04 2.92545221e-04 2.56541254e-04 5.43174045e-04 1.52219171e-04 9.88222023e-03 5.97591475e-03 2.63575248e-04 7.69239036e-05 4.86331970e-05 2.51472596e-04 4.08921594e-05 7.09010113e-05 2.30254901e-04 8.39703891e-05 1.58179501e-04 1.92645004e-04 1.09828520e-04 9.82695296e-05 5.39781577e-06 9.77676100e-06 6.05186797e-06 3.20909672e-05 4.99989983e-06 1.83821410e-05 1.12520019e-04 3.96580668e-05 2.13106905e-05 1.16445148e-04 4.75442648e-05 1.41923869e-05 6.13962714e-05 8.62159037e-05 1.00490048e-05 5.39002690e-05 2.03479630e-04 3.63777013e-05 8.22443091e-04 5.04917977e-04 5.04917977e-04 3.76387827e-04 5.89712523e-05 5.17599692e-05 4.88590043e-04 6.82884432e-04 1.30122821e-04 4.10983727e-04 1.52689280e-04 5.30480000e-05 1.19205798e-04 6.24141678e-05 1.69034388e-06 6.93919162e-09 0.00000000e+00 + 2024 10 21 12 00 00 3.96279969e-03 2.40706032e-03 1.34229396e-03 9.82685707e-04 7.36692151e-04 3.96066845e-04 2.94078109e-04 2.58262590e-04 5.47686454e-04 1.53721846e-04 9.98209541e-03 6.03965297e-03 2.65623166e-04 7.75915991e-05 4.89714201e-05 2.54632309e-04 4.14018898e-05 7.19265372e-05 2.32595032e-04 8.48354830e-05 1.60312044e-04 1.95329719e-04 1.10997892e-04 9.90618285e-05 5.43081114e-06 9.91723500e-06 6.06071881e-06 3.22710472e-05 5.01973009e-06 1.85048963e-05 1.14063217e-04 3.98564967e-05 2.18200978e-05 1.18375096e-04 4.87019075e-05 1.42307996e-05 6.27588928e-05 8.81433374e-05 1.01589780e-05 5.49195718e-05 2.07936150e-04 3.71144124e-05 8.39462922e-04 5.15981764e-04 5.15981764e-04 3.90181955e-04 6.20862469e-05 5.31911675e-05 5.03661312e-04 6.99303396e-04 1.33478075e-04 4.22429149e-04 1.54891315e-04 5.38496137e-05 1.21061566e-04 6.37252393e-05 1.75473377e-06 9.42162615e-09 0.00000000e+00 + 2024 10 22 12 00 00 3.98873114e-03 2.42493981e-03 1.35354152e-03 9.91029794e-04 7.44072987e-04 3.99238979e-04 2.97274863e-04 2.61802557e-04 5.56943476e-04 1.56365331e-04 1.01944482e-02 6.17775992e-03 2.69476225e-04 7.85932854e-05 4.95230066e-05 2.56703922e-04 4.16749448e-05 7.24773738e-05 2.35378432e-04 8.59915512e-05 1.61629362e-04 1.96784317e-04 1.11778007e-04 9.95978221e-05 5.44841605e-06 9.87387612e-06 6.06691538e-06 3.24243482e-05 5.04607342e-06 1.86147177e-05 1.15007557e-04 3.99628538e-05 2.20956848e-05 1.20568212e-04 5.02407027e-05 1.42576668e-05 6.37420012e-05 8.93168068e-05 1.01249090e-05 5.59248303e-05 2.13064133e-04 3.80976213e-05 8.58565186e-04 5.30693354e-04 5.30693354e-04 4.01754835e-04 6.37849735e-05 5.51004021e-05 5.15159589e-04 7.12882115e-04 1.36773267e-04 4.30923252e-04 1.58836722e-04 5.52846734e-05 1.24377944e-04 6.59999256e-05 1.86178460e-06 1.33499668e-08 0.00000000e+00 + 2024 10 23 12 00 00 3.99138766e-03 2.42782857e-03 1.35527036e-03 9.92074241e-04 7.44868013e-04 3.99468173e-04 2.97567413e-04 2.62149600e-04 5.57873239e-04 1.56849091e-04 1.02124713e-02 6.18837401e-03 2.70036158e-04 7.88625098e-05 4.96265082e-05 2.57578523e-04 4.17955220e-05 7.27220904e-05 2.36378474e-04 8.64067813e-05 1.62150243e-04 1.97442786e-04 1.12080793e-04 9.99937145e-05 5.45612129e-06 9.91554771e-06 6.07656948e-06 3.24778774e-05 5.05584103e-06 1.86551317e-05 1.15423545e-04 4.00098856e-05 2.22200368e-05 1.21478344e-04 5.08094032e-05 1.42995705e-05 6.41483040e-05 8.98846780e-05 1.01574275e-05 5.66508028e-05 2.14649391e-04 3.84532934e-05 8.67903016e-04 5.36120404e-04 5.36120404e-04 4.06695343e-04 6.45646011e-05 5.57926774e-05 5.19917092e-04 7.18605606e-04 1.38086319e-04 4.40108683e-04 1.67855861e-04 5.85640570e-05 1.31950968e-04 7.11288969e-05 2.09856847e-06 2.54091844e-08 1.92824423e-10 + 2024 10 24 12 00 00 4.00560076e-03 2.43808928e-03 1.36168637e-03 9.96712932e-04 7.48905176e-04 4.01161452e-04 2.99300643e-04 2.64077972e-04 5.62933196e-04 1.58388637e-04 1.03273987e-02 6.26273230e-03 2.72217118e-04 7.94861925e-05 4.99673574e-05 2.60350646e-04 4.22222598e-05 7.35813694e-05 2.38403201e-04 8.71620723e-05 1.63977566e-04 1.99698658e-04 1.13083635e-04 1.01353277e-04 5.48370881e-06 1.05956766e-05 6.09890158e-06 3.26667682e-05 5.07332588e-06 1.87683157e-05 1.16731921e-04 4.01760335e-05 2.26478660e-05 1.23422879e-04 5.18291316e-05 1.43966303e-05 6.53429755e-05 9.20302497e-05 1.06904648e-05 5.81842115e-05 2.19294013e-04 3.90979229e-05 8.89625714e-04 5.45860548e-04 5.45860548e-04 4.19599137e-04 6.71875721e-05 5.70458942e-05 5.32978648e-04 7.33148918e-04 1.41069622e-04 4.53618984e-04 1.74936854e-04 6.11390795e-05 1.37899137e-04 7.51777341e-05 2.28693453e-06 3.56489366e-08 1.13190541e-09 + 2024 10 25 12 00 00 4.03640272e-03 2.46062354e-03 1.37575482e-03 1.00688973e-03 7.57767520e-04 4.04817679e-04 3.03061819e-04 2.68273532e-04 5.73918224e-04 1.61794273e-04 1.05747679e-02 6.42208159e-03 2.77002921e-04 8.08956694e-05 5.06905105e-05 2.61867068e-04 4.23424994e-05 7.38256262e-05 2.42356595e-04 8.89171672e-05 1.64730401e-04 2.00357749e-04 1.13630043e-04 1.01228563e-04 5.49138203e-06 9.79103788e-06 6.10791394e-06 3.27860173e-05 5.11334038e-06 1.88867455e-05 1.17351260e-04 4.02229431e-05 2.27722761e-05 1.26309237e-04 5.41663670e-05 1.44357255e-05 6.61671927e-05 9.23190180e-05 1.00595782e-05 5.93752011e-05 2.25212447e-04 4.05907631e-05 9.14356913e-04 5.68204839e-04 5.68204839e-04 4.31803037e-04 6.79695280e-05 5.99448686e-05 5.44091018e-04 7.47209533e-04 1.45229748e-04 4.63504991e-04 1.84288085e-04 6.45394866e-05 1.45752960e-04 8.05125872e-05 2.53434121e-06 4.90399614e-08 2.35855637e-09 + 2024 10 26 12 00 00 4.07150272e-03 2.48375258e-03 1.39039326e-03 1.01793058e-03 7.67630030e-04 4.09196502e-04 3.07411394e-04 2.73062983e-04 5.86446176e-04 1.65148508e-04 1.08665520e-02 6.61330372e-03 2.82039901e-04 8.20731624e-05 5.14132867e-05 2.69647010e-04 4.36543021e-05 7.64616765e-05 2.46232284e-04 9.01517866e-05 1.70237365e-04 2.07232536e-04 1.16555796e-04 1.03642320e-04 5.57644162e-06 1.05236439e-05 6.13016819e-06 3.32179418e-05 5.14171261e-06 1.91629914e-05 1.21172513e-04 4.07334679e-05 2.40775815e-05 1.29994256e-04 5.58222411e-05 1.45324360e-05 6.94173546e-05 9.73389832e-05 1.06337502e-05 6.19068274e-05 2.35630887e-04 4.16427560e-05 9.46275782e-04 5.84028056e-04 5.84028056e-04 4.62185662e-04 7.59231974e-05 6.19889353e-05 5.78177393e-04 7.84979742e-04 1.51721439e-04 5.00649318e-04 2.01026926e-04 7.06253486e-05 1.59804827e-04 9.00049725e-05 2.97081922e-06 7.23879992e-08 4.49046915e-09 + 2024 10 27 12 00 00 4.07658972e-03 2.48902143e-03 1.39356055e-03 1.01988127e-03 7.69139565e-04 4.09658638e-04 3.07979825e-04 2.73730803e-04 5.88230637e-04 1.66021681e-04 1.09020128e-02 6.63453341e-03 2.83070760e-04 8.25458798e-05 5.15973790e-05 2.68408709e-04 4.33345267e-05 7.58228765e-05 2.47498716e-04 9.08724673e-05 1.69041679e-04 2.05598434e-04 1.16011088e-04 1.03377116e-04 5.55552870e-06 1.01405138e-05 6.15753452e-06 3.31758905e-05 5.15865358e-06 1.91628755e-05 1.20432540e-04 4.06091800e-05 2.37662651e-05 1.31007996e-04 5.68086689e-05 1.46513747e-05 6.89857744e-05 9.64083817e-05 1.03332044e-05 6.28799874e-05 2.36876558e-04 4.22599667e-05 9.62273003e-04 5.93441725e-04 5.93441725e-04 4.62425418e-04 7.40606803e-05 6.31901901e-05 5.75368217e-04 7.83043093e-04 1.52570149e-04 5.02298207e-04 2.10663730e-04 7.41295244e-05 1.67897970e-04 9.54981791e-05 3.22527094e-06 8.61382432e-08 5.74948089e-09 + 2024 10 28 12 00 00 4.11106437e-03 2.51085078e-03 1.40745290e-03 1.03052686e-03 7.78736907e-04 4.14032736e-04 3.12273024e-04 2.78436330e-04 6.00536862e-04 1.69132100e-04 1.11920847e-02 6.82575479e-03 2.87871825e-04 8.35421635e-05 5.22490349e-05 2.69844077e-04 4.34815738e-05 7.61207251e-05 2.49700928e-04 9.18153150e-05 1.69945093e-04 2.06394939e-04 1.16561324e-04 1.04086418e-04 5.56495324e-06 1.03200524e-05 6.17273981e-06 3.33141233e-05 5.18051820e-06 1.92564094e-05 1.21012405e-04 4.06665087e-05 2.39168454e-05 1.32972929e-04 5.80835680e-05 1.47174302e-05 6.96867274e-05 9.73968286e-05 1.04737635e-05 6.41105991e-05 2.42402152e-04 4.30649787e-05 9.82311606e-04 6.05617929e-04 6.05617929e-04 4.71656393e-04 7.49995408e-05 6.47553999e-05 5.83478236e-04 7.93523551e-04 1.55117132e-04 5.10288661e-04 2.17171364e-04 7.64960623e-05 1.73364637e-04 9.92202384e-05 3.39850342e-06 9.55604264e-08 6.61370834e-09 + 2024 10 29 12 00 00 4.11396521e-03 2.51432330e-03 1.40951382e-03 1.03171644e-03 7.79605281e-04 4.14252995e-04 3.12580327e-04 2.78808134e-04 6.01543352e-04 1.69723306e-04 1.12107079e-02 6.83636442e-03 2.88531244e-04 8.38847338e-05 5.23802144e-05 2.70944568e-04 4.36403236e-05 7.64422351e-05 2.50988904e-04 9.23530897e-05 1.70617121e-04 2.07254466e-04 1.16954458e-04 1.04177456e-04 5.57512903e-06 1.00445191e-05 6.17867627e-06 3.33652790e-05 5.19330206e-06 1.93062292e-05 1.21553668e-04 4.07283980e-05 2.40793466e-05 1.34008161e-04 5.88270894e-05 1.47431594e-05 7.01956001e-05 9.78440434e-05 1.02576792e-05 6.46840516e-05 2.44176328e-04 4.35267168e-05 9.91125998e-04 6.12709019e-04 6.12709019e-04 4.77563877e-04 7.60124763e-05 6.56548073e-05 5.89569493e-04 8.00595130e-04 1.56773936e-04 5.18687375e-04 2.24108688e-04 7.90185826e-05 1.79190276e-04 1.03170797e-04 3.58124369e-06 1.05416618e-07 7.51570255e-09 + 2024 10 30 12 00 00 4.13084525e-03 2.52459683e-03 1.41608857e-03 1.03680266e-03 7.84214247e-04 4.16422371e-04 3.14685260e-04 2.81102962e-04 6.07558190e-04 1.71155914e-04 1.13546760e-02 6.93196803e-03 2.90807773e-04 8.42901029e-05 5.26788693e-05 2.77804099e-04 4.48802515e-05 7.89335929e-05 2.52774187e-04 9.26727080e-05 1.75679017e-04 2.13749697e-04 1.19572888e-04 1.05539624e-04 5.65554110e-06 1.02560618e-05 6.18429985e-06 3.36760044e-05 5.20113863e-06 1.95123125e-05 1.25029997e-04 4.12109366e-05 2.53126578e-05 1.35849281e-04 5.92815166e-05 1.47675353e-05 7.29510786e-05 1.01893917e-04 1.04233848e-05 6.58252506e-05 2.50846397e-04 4.38031275e-05 1.00272638e-03 6.17035385e-04 6.17035385e-04 5.00416603e-04 8.35250830e-05 6.61944621e-05 6.17535378e-04 8.30140139e-04 1.60999664e-04 5.44299173e-04 2.27500349e-04 8.02517177e-05 1.82037552e-04 1.05094684e-04 3.66974205e-06 1.10153130e-07 7.94825894e-09 + 2024 10 31 12 00 00 4.13193484e-03 2.52428661e-03 1.41598012e-03 1.03685283e-03 7.84325966e-04 4.16630293e-04 3.14831506e-04 2.81234999e-04 6.07928144e-04 1.71038870e-04 1.13683600e-02 6.94257692e-03 2.90784180e-04 8.41300496e-05 5.26520894e-05 2.81661913e-04 4.56111768e-05 8.04031035e-05 2.52734773e-04 9.23704065e-05 1.78598248e-04 2.17588220e-04 1.21039350e-04 1.06512970e-04 5.70290213e-06 1.06784013e-05 6.19378552e-06 3.38357296e-05 5.19494024e-06 1.96087668e-05 1.27012782e-04 4.14954295e-05 2.60412722e-05 1.36254154e-04 5.89152682e-05 1.48087332e-05 7.44311859e-05 1.04408724e-04 1.07544183e-05 6.64437770e-05 2.53536928e-04 4.35517344e-05 1.00586415e-03 6.13511261e-04 6.13511261e-04 5.11643324e-04 8.79713276e-05 6.57099241e-05 6.31859079e-04 8.44560621e-04 1.62496650e-04 5.58049115e-04 2.27834929e-04 8.03734347e-05 1.82318922e-04 1.05288726e-04 3.67894754e-06 1.10666710e-07 7.99568198e-09 + 2024 11 01 12 00 00 4.11684241e-03 2.51533914e-03 1.41022922e-03 1.03223639e-03 7.80052353e-04 4.14647535e-04 3.12918159e-04 2.79146773e-04 6.02507532e-04 1.69791378e-04 1.12398194e-02 6.85756877e-03 2.88765823e-04 8.37672486e-05 5.23876406e-05 2.78280771e-04 4.50211286e-05 7.92209583e-05 2.51571663e-04 9.20969760e-05 1.76154164e-04 2.14535050e-04 1.19768739e-04 1.05403729e-04 5.66447525e-06 1.02476290e-05 6.18321137e-06 3.36509751e-05 5.18931956e-06 1.94961077e-05 1.25364095e-04 4.12659487e-05 2.54605868e-05 1.35052620e-04 5.85832633e-05 1.47626663e-05 7.30731175e-05 1.02167460e-04 1.04166866e-05 6.54275369e-05 2.49283192e-04 4.33242327e-05 9.95083307e-04 6.10317104e-04 6.10317104e-04 4.99666571e-04 8.44652706e-05 6.52713643e-05 6.18044077e-04 8.29446839e-04 1.60205331e-04 5.42374215e-04 2.21306436e-04 7.80000093e-05 1.76839761e-04 1.01598257e-04 3.51002750e-06 1.01688670e-07 7.17733926e-09 + 2024 11 02 12 00 00 4.09448781e-03 2.49991743e-03 1.40053205e-03 1.02487152e-03 7.73440601e-04 4.11871116e-04 3.10125882e-04 2.76047363e-04 5.94480596e-04 1.67491103e-04 1.10585169e-02 6.74066395e-03 2.85420022e-04 8.28547158e-05 5.18818980e-05 2.75058150e-04 4.45187616e-05 7.82115618e-05 2.48774763e-04 9.10440518e-05 1.73976411e-04 2.11903473e-04 1.18567948e-04 1.04631573e-04 5.63189569e-06 1.02381069e-05 6.17744299e-06 3.34569245e-05 5.16610489e-06 1.93606847e-05 1.23827422e-04 4.10704408e-05 2.49609031e-05 1.32853978e-04 5.72225195e-05 1.47375278e-05 7.16628105e-05 1.00317165e-04 1.04091159e-05 6.43113924e-05 2.43829083e-04 4.24351834e-05 9.77074515e-04 5.97282127e-04 5.97282127e-04 4.85161346e-04 8.14215222e-05 6.35490520e-05 6.02342181e-04 8.11578006e-04 1.56502726e-04 5.27750494e-04 2.14615992e-04 7.55677025e-05 1.71224605e-04 9.78155836e-05 3.33684306e-06 9.24807068e-08 6.33795736e-09 + 2024 11 03 12 00 00 4.07472274e-03 2.48671129e-03 1.39218786e-03 1.01854850e-03 7.67774454e-04 4.09408249e-04 3.07667290e-04 2.73331370e-04 5.87403287e-04 1.65555962e-04 1.08955154e-02 6.63441569e-03 2.82541609e-04 8.21411684e-05 5.14717127e-05 2.74701101e-04 4.45428712e-05 7.82621035e-05 2.47046262e-04 9.02604253e-05 1.73920440e-04 2.12052870e-04 1.18469126e-04 1.04357147e-04 5.63336034e-06 1.02885017e-05 6.16106990e-06 3.33923475e-05 5.14878375e-06 1.93081427e-05 1.23784097e-04 4.10799170e-05 2.49886885e-05 1.31474724e-04 5.62074769e-05 1.46662598e-05 7.14471662e-05 1.00137152e-04 1.04486156e-05 6.33473704e-05 2.40484271e-04 4.17731469e-05 9.61253852e-04 5.87560283e-04 5.87560283e-04 4.80279148e-04 8.16098298e-05 6.22662948e-05 5.98995322e-04 8.06719345e-04 1.54812380e-04 5.22846176e-04 2.07580345e-04 7.30096301e-05 1.65317828e-04 9.38212710e-05 3.15288094e-06 8.26181292e-08 5.43685204e-09 + 2024 11 04 12 00 00 4.05789606e-03 2.47396272e-03 1.38426223e-03 1.01285831e-03 7.62841551e-04 4.07440598e-04 3.05616149e-04 2.71030496e-04 5.81391986e-04 1.63600381e-04 1.07624044e-02 6.54942170e-03 2.79849249e-04 8.12830765e-05 5.10501437e-05 2.71486429e-04 4.40403674e-05 7.72556930e-05 2.44165727e-04 8.91530130e-05 1.71825430e-04 2.09456561e-04 1.17294708e-04 1.03959011e-04 5.60061781e-06 1.05450206e-05 6.15066092e-06 3.32131462e-05 5.12389706e-06 1.91710143e-05 1.22254824e-04 4.08844935e-05 2.44947936e-05 1.29298080e-04 5.47516684e-05 1.46209612e-05 7.00673414e-05 9.85093184e-05 1.06496496e-05 6.23538114e-05 2.35322103e-04 4.08342021e-05 9.42158969e-04 5.73630678e-04 5.73630678e-04 4.65615334e-04 7.86310527e-05 6.04448258e-05 5.83199363e-04 7.89598043e-04 1.50995650e-04 5.13594116e-04 2.07922652e-04 7.31332810e-05 1.65599404e-04 9.39653692e-05 3.15621292e-06 8.25504770e-08 5.42453442e-09 + 2024 11 05 12 00 00 4.04647411e-03 2.46686635e-03 1.37973364e-03 1.00934999e-03 7.59658575e-04 4.05977907e-04 3.04188054e-04 2.69467819e-04 5.77310503e-04 1.62596533e-04 1.06658739e-02 6.48567975e-03 2.78278883e-04 8.09710788e-05 5.08358665e-05 2.69522585e-04 4.37072391e-05 7.65875040e-05 2.43260116e-04 8.88762821e-05 1.70417750e-04 2.07724159e-04 1.16547994e-04 1.03642213e-04 5.57895983e-06 1.05436498e-05 6.14637029e-06 3.31120552e-05 5.11755061e-06 1.91006673e-05 1.21299268e-04 4.07549029e-05 2.41655289e-05 1.28508928e-04 5.43811999e-05 1.46023158e-05 6.92676804e-05 9.74029753e-05 1.06487460e-05 6.19552821e-05 2.32553602e-04 4.05985105e-05 9.35634463e-04 5.70090162e-04 5.70090162e-04 4.58275527e-04 7.66357814e-05 5.99869411e-05 5.74775155e-04 7.80625077e-04 1.49446596e-04 5.09102102e-04 2.10236941e-04 7.39738523e-05 1.67536094e-04 9.52249815e-05 3.21065556e-06 8.52031789e-08 5.66027225e-09 + 2024 11 06 12 00 00 4.04028650e-03 2.46233208e-03 1.37690347e-03 1.00729495e-03 7.57864393e-04 4.05241965e-04 3.03430735e-04 2.68622434e-04 5.75101091e-04 1.61909749e-04 1.06162986e-02 6.45380616e-03 2.77314905e-04 8.06794254e-05 5.06773838e-05 2.68893579e-04 4.36235307e-05 7.64193304e-05 2.42400198e-04 8.85180430e-05 1.70041466e-04 2.07285848e-04 1.16319884e-04 1.03938352e-04 5.57353087e-06 1.08307897e-05 6.14340825e-06 3.30821973e-05 5.10944046e-06 1.90673948e-05 1.21022004e-04 4.07223270e-05 2.40822978e-05 1.27999247e-04 5.39071392e-05 1.45894272e-05 6.90001717e-05 9.72765294e-05 1.08739419e-05 6.19608309e-05 2.31129193e-04 4.02942766e-05 9.30624169e-04 5.65556157e-04 5.65556157e-04 4.54896620e-04 7.61289382e-05 5.93964534e-05 5.71262510e-04 7.77331745e-04 1.48427708e-04 5.14588102e-04 2.19907783e-04 7.74890614e-05 1.75648176e-04 1.00654180e-04 3.45667756e-06 9.80929258e-08 6.83048356e-09 + 2024 11 07 12 00 00 4.03595294e-03 2.46165862e-03 1.37628868e-03 1.00640935e-03 7.56851465e-04 4.04519593e-04 3.02839640e-04 2.68024430e-04 5.73546574e-04 1.61946622e-04 1.05717930e-02 6.42193556e-03 2.77050103e-04 8.09085060e-05 5.06917625e-05 2.61628288e-04 4.22448444e-05 7.36534537e-05 2.42281018e-04 8.90222960e-05 1.64560607e-04 2.00110999e-04 1.13567675e-04 1.02162562e-04 5.48391763e-06 1.02916303e-05 6.12825606e-06 3.27848307e-05 5.12067963e-06 1.88807895e-05 1.17308166e-04 4.01859696e-05 2.27187513e-05 1.27155557e-04 5.45651652e-05 1.45235012e-05 6.62184657e-05 9.27613928e-05 1.04511790e-05 6.06449452e-05 2.25858413e-04 4.07210522e-05 9.26021813e-04 5.71855484e-04 5.71855484e-04 4.33946719e-04 6.78620010e-05 6.02238637e-05 5.44346242e-04 7.49339918e-04 1.45538093e-04 4.80405629e-04 2.07713620e-04 7.30560023e-05 1.65414753e-04 9.37675006e-05 3.14189044e-06 8.13943316e-08 5.30922826e-09 + 2024 11 08 12 00 00 4.00344380e-03 2.46352097e-03 1.38214477e-03 1.00683299e-03 7.34939867e-04 4.04817528e-04 3.01044355e-04 2.78139407e-04 5.52063100e-04 1.67587528e-04 1.06742895e-02 6.17703572e-03 2.79986825e-04 7.95514398e-05 5.01845493e-05 2.58436640e-04 4.16991796e-05 7.25582649e-05 2.41201982e-04 8.87540111e-05 1.62304573e-04 1.97265815e-04 1.12391794e-04 1.01225327e-04 5.44847353e-06 1.00690486e-05 6.10738862e-06 3.26272504e-05 5.11453254e-06 1.87733862e-05 1.15760919e-04 3.99736688e-05 2.21781753e-05 1.25937161e-04 5.42063091e-05 1.44327219e-05 6.49503836e-05 9.07627190e-05 1.02766513e-05 5.93908696e-05 2.21734279e-04 4.04926046e-05 9.12967641e-04 5.68425702e-04 5.68425702e-04 4.22145106e-04 6.45800377e-05 5.97800768e-05 5.31228634e-04 7.34965911e-04 1.43293282e-04 4.63008687e-04 1.97909642e-04 6.94915416e-05 1.57184831e-04 8.82103675e-05 2.88653273e-06 6.77474588e-08 4.06344682e-09 + 2024 11 09 12 00 00 3.98216499e-03 2.44904091e-03 1.37297701e-03 1.00003464e-03 7.29173609e-04 4.02204749e-04 2.98495026e-04 2.75099311e-04 5.44819128e-04 1.65414779e-04 1.05011020e-02 6.07056953e-03 2.76871331e-04 7.87395135e-05 4.97148223e-05 2.54623389e-04 4.10841370e-05 7.13235233e-05 2.38533523e-04 8.77915125e-05 1.59692064e-04 1.94055567e-04 1.10967962e-04 1.00372601e-04 5.40853689e-06 1.00387362e-05 6.09638591e-06 3.24122467e-05 5.09278179e-06 1.86228709e-05 1.13923469e-04 3.97343538e-05 2.15683234e-05 1.23713743e-04 5.29346813e-05 1.43848840e-05 6.33295277e-05 8.85628434e-05 1.02527825e-05 5.81582559e-05 2.15838880e-04 3.96755233e-05 8.93856876e-04 5.56262350e-04 5.56262350e-04 4.05970187e-04 6.08747534e-05 5.81943837e-05 5.13517428e-04 7.15323007e-04 1.39440733e-04 4.47696145e-04 1.92987111e-04 6.77015771e-05 1.53050743e-04 8.54037395e-05 2.75648232e-06 6.07164409e-08 3.41958710e-09 + 2024 11 10 12 00 00 3.96909066e-03 2.44085493e-03 1.36746058e-03 9.95841364e-04 7.25532151e-04 4.00551841e-04 2.96902169e-04 2.73239083e-04 5.40278650e-04 1.64035594e-04 1.03913250e-02 6.00293986e-03 2.74903810e-04 7.82282251e-05 4.94315046e-05 2.52890107e-04 4.07986488e-05 7.07496365e-05 2.37911805e-04 8.76248232e-05 1.58441127e-04 1.92557072e-04 1.10312805e-04 9.99094500e-05 5.39003559e-06 9.96875242e-06 6.08465416e-06 3.23227373e-05 5.08877893e-06 1.85600315e-05 1.13099768e-04 3.96232383e-05 2.12838640e-05 1.22987369e-04 5.27021009e-05 1.43338897e-05 6.26350347e-05 8.75165313e-05 1.01979997e-05 5.74631282e-05 2.12960053e-04 3.95320676e-05 8.86255792e-04 5.54045476e-04 5.54045476e-04 3.99403802e-04 5.91395074e-05 5.79147425e-05 5.06397599e-04 7.07269263e-04 1.38196435e-04 4.38949280e-04 1.88417116e-04 6.60399182e-05 1.49213513e-04 8.28049746e-05 2.63651367e-06 5.42638062e-08 2.82951440e-09 + 2024 11 11 12 00 00 3.94525795e-03 2.42369491e-03 1.35704514e-03 9.88280689e-04 7.19246351e-04 3.97703173e-04 2.94095814e-04 2.69840151e-04 5.32309103e-04 1.61665900e-04 1.02022536e-02 5.88681512e-03 2.71493269e-04 7.73432354e-05 4.89119432e-05 2.50060936e-04 4.04269318e-05 7.00033037e-05 2.33974548e-04 8.59860331e-05 1.56761121e-04 1.90616070e-04 1.09308173e-04 9.85648585e-05 5.36590233e-06 9.69371395e-06 6.06460453e-06 3.21009569e-05 5.05181706e-06 1.84093167e-05 1.11820856e-04 3.94786039e-05 2.09151520e-05 1.19712421e-04 5.05407224e-05 1.42467048e-05 6.12921374e-05 8.56343284e-05 9.98252872e-06 5.53513407e-05 2.06413956e-04 3.81414662e-05 8.54949966e-04 5.33369184e-04 5.33369184e-04 3.82940577e-04 5.68986638e-05 5.52164041e-05 4.90576265e-04 6.87966564e-04 1.33527474e-04 4.15093033e-04 1.66196798e-04 5.79621537e-05 1.30567512e-04 7.02684643e-05 2.06429861e-06 2.39712818e-08 7.13992421e-11 + 2024 11 12 12 00 00 3.90890616e-03 2.39956457e-03 1.34147081e-03 9.76598204e-04 7.09239962e-04 3.93173988e-04 2.89694992e-04 2.64627221e-04 5.19815395e-04 1.57907220e-04 9.90275385e-03 5.70271984e-03 2.66111171e-04 7.59411220e-05 4.81142447e-05 2.44819025e-04 3.95951531e-05 6.83342339e-05 2.30405531e-04 8.47072981e-05 1.53166874e-04 1.86283156e-04 1.07353488e-04 9.72733845e-05 5.31185578e-06 9.56314179e-06 6.04126944e-06 3.17966600e-05 5.02295552e-06 1.81971847e-05 1.09339146e-04 3.91549955e-05 2.00918090e-05 1.16618846e-04 4.88531310e-05 1.41452212e-05 5.90848964e-05 8.25435943e-05 9.88030515e-06 5.34086687e-05 1.97482911e-04 3.70562251e-05 8.26192460e-04 5.17225917e-04 5.17225917e-04 3.60565232e-04 5.19033638e-05 5.31104917e-05 4.66581536e-04 6.61125071e-04 1.28316304e-04 3.93533029e-04 1.58321115e-04 5.50992421e-05 1.23959698e-04 6.58337302e-05 1.86245392e-06 1.37521837e-08 0.00000000e+00 + 2024 11 13 12 00 00 3.89465283e-03 2.38878216e-03 1.33516009e-03 9.72104305e-04 7.05573619e-04 3.91512391e-04 2.88042919e-04 2.62597034e-04 5.15127229e-04 1.56524942e-04 9.79236017e-03 5.63498214e-03 2.64114544e-04 7.54207609e-05 4.77958072e-05 2.42890071e-04 3.93596099e-05 6.78621058e-05 2.27363798e-04 8.34180682e-05 1.52119530e-04 1.85061934e-04 1.06701913e-04 9.63321468e-05 5.29652571e-06 9.32491748e-06 6.01914362e-06 3.16376267e-05 4.99390553e-06 1.80870425e-05 1.08499432e-04 3.90633766e-05 1.98596055e-05 1.14138100e-04 4.71542589e-05 1.40489778e-05 5.81707195e-05 8.12162237e-05 9.69360699e-06 5.17634283e-05 1.92741178e-04 3.59624741e-05 7.99908377e-04 5.00973081e-04 5.00973081e-04 3.48366557e-04 5.04993601e-05 5.09883161e-05 4.55321717e-04 6.47817447e-04 1.24767979e-04 3.79859355e-04 1.46244723e-04 5.07092989e-05 1.13827274e-04 5.90322539e-05 1.55279688e-06 2.85305077e-09 0.00000000e+00 + 2024 11 14 12 00 00 3.86019541e-03 2.36587948e-03 1.32038885e-03 9.61014714e-04 6.96071251e-04 3.87213692e-04 2.83865342e-04 2.57646841e-04 5.03275295e-04 1.52961276e-04 9.50838077e-03 5.46047725e-03 2.59010908e-04 7.40948047e-05 4.70495687e-05 2.40067908e-04 3.89724068e-05 6.70856331e-05 2.24285548e-04 8.21863010e-05 1.50298478e-04 1.83050354e-04 1.05657845e-04 9.55033483e-05 5.27134362e-06 9.25937056e-06 6.00007334e-06 3.14354068e-05 4.96626162e-06 1.79439970e-05 1.07248498e-04 3.89127556e-05 1.94772249e-05 1.11586268e-04 4.55369271e-05 1.39660027e-05 5.69170447e-05 7.95454014e-05 9.64222636e-06 5.02395060e-05 1.85803346e-04 3.49183945e-05 7.74869740e-04 4.85496642e-04 4.85496642e-04 3.33808440e-04 4.81839350e-05 4.89631086e-05 4.41007012e-04 6.31016814e-04 1.20936717e-04 3.67703832e-04 1.39966492e-04 4.84270124e-05 1.08559229e-04 5.54926287e-05 1.39139975e-06 0.00000000e+00 0.00000000e+00 + 2024 11 15 12 00 00 3.86123511e-03 2.36522852e-03 1.32062763e-03 9.61439506e-04 6.96621827e-04 3.87460412e-04 2.84066908e-04 2.57811249e-04 5.03848370e-04 1.53162067e-04 9.52412745e-03 5.47026992e-03 2.59280887e-04 7.41655530e-05 4.70681494e-05 2.38145097e-04 3.86589061e-05 6.64572115e-05 2.22345886e-04 8.14232917e-05 1.49085275e-04 1.81424472e-04 1.04966540e-04 9.52455956e-05 5.25094256e-06 9.36860015e-06 6.00082130e-06 3.13302647e-05 4.94906926e-06 1.78668141e-05 1.06286726e-04 3.87908134e-05 1.91680912e-05 1.10226845e-04 4.45314741e-05 1.39692653e-05 5.60619746e-05 7.85306527e-05 9.72784401e-06 4.98103852e-05 1.83739676e-04 3.42710729e-05 7.64401696e-04 4.75877663e-04 4.75877663e-04 3.24869670e-04 4.63143690e-05 4.77071269e-05 4.30994632e-04 6.20504719e-04 1.18445952e-04 3.62272801e-04 1.40717207e-04 4.86999577e-05 1.09189458e-04 5.59185744e-05 1.41100061e-06 0.00000000e+00 0.00000000e+00 + 2024 11 16 12 00 00 3.84628415e-03 2.35584841e-03 1.31430575e-03 9.56596494e-04 6.92397175e-04 3.85549404e-04 2.82225737e-04 2.55660810e-04 4.98621492e-04 1.51578051e-04 9.39801193e-03 5.39270677e-03 2.57019807e-04 7.35735493e-05 4.67346483e-05 2.37545898e-04 3.85818013e-05 6.63029903e-05 2.21826097e-04 8.12236394e-05 1.48650363e-04 1.81028324e-04 1.04726813e-04 9.49674049e-05 5.24590941e-06 9.33805932e-06 5.99625528e-06 3.12813471e-05 4.94451197e-06 1.78336335e-05 1.06037467e-04 3.87608394e-05 1.90926759e-05 1.09676685e-04 4.42653167e-05 1.39493975e-05 5.57965788e-05 7.81653193e-05 9.70389810e-06 4.93585788e-05 1.81641742e-04 3.41012143e-05 7.59337965e-04 4.73333383e-04 4.73333383e-04 3.21963666e-04 4.58613678e-05 4.73772408e-05 4.28276469e-04 6.16628829e-04 1.17779089e-04 3.56358874e-04 1.34695412e-04 4.65111247e-05 1.04138288e-04 5.25381045e-05 1.25782648e-06 0.00000000e+00 0.00000000e+00 + 2024 11 17 12 00 00 3.85142002e-03 2.35832778e-03 1.31635748e-03 9.58285232e-04 6.93962038e-04 3.86259265e-04 2.82889595e-04 2.56396260e-04 5.00517349e-04 1.52169656e-04 9.44496163e-03 5.42170927e-03 2.57854250e-04 7.38001872e-05 4.68684755e-05 2.38145812e-04 3.87169857e-05 6.65742846e-05 2.21134983e-04 8.08513490e-05 1.49234237e-04 1.81732900e-04 1.04990654e-04 9.50530487e-05 5.25469186e-06 9.33637421e-06 5.99289669e-06 3.12935617e-05 4.93623447e-06 1.78395530e-05 1.06361259e-04 3.88134329e-05 1.92265492e-05 1.09295548e-04 4.37805662e-05 1.39347641e-05 5.59929974e-05 7.84876565e-05 9.70247565e-06 4.92576228e-05 1.81972196e-04 3.37862904e-05 7.54026733e-04 4.68692090e-04 4.68692090e-04 3.22178975e-04 4.66739177e-05 4.67667938e-05 4.29445965e-04 6.18120951e-04 1.17343321e-04 3.60421500e-04 1.36991875e-04 4.73462369e-05 1.06067349e-04 5.38510782e-05 1.31890243e-06 0.00000000e+00 0.00000000e+00 + 2024 11 18 12 00 00 3.87810333e-03 2.37588113e-03 1.32775892e-03 9.66843722e-04 7.01302425e-04 3.89585131e-04 2.86117068e-04 2.60210696e-04 5.09692167e-04 1.54935152e-04 9.66527456e-03 5.55721745e-03 2.61811510e-04 7.48268444e-05 4.74434828e-05 2.43954240e-04 3.96896037e-05 6.85267383e-05 2.23855832e-04 8.16938351e-05 1.53305938e-04 1.86807896e-04 1.07149990e-04 9.66258483e-05 5.31785299e-06 9.74431459e-06 6.02141590e-06 3.16046792e-05 4.95545100e-06 1.80477413e-05 1.09168481e-04 3.91918700e-05 2.01906892e-05 1.11902845e-04 4.49029583e-05 1.40588003e-05 5.83607727e-05 8.21160083e-05 1.00221419e-05 5.12302401e-05 1.90098322e-04 3.45029664e-05 7.79779385e-04 4.79422137e-04 4.79422137e-04 3.44786308e-04 5.25304233e-05 4.81585623e-05 4.54438102e-04 6.45196716e-04 1.22063641e-04 3.83900352e-04 1.44100417e-04 4.99306479e-05 1.12034133e-04 5.78764404e-05 1.50361428e-06 1.28008821e-09 0.00000000e+00 + 2024 11 19 12 00 00 3.90326116e-03 2.39303665e-03 1.33862490e-03 9.74979156e-04 7.08244315e-04 3.92717347e-04 2.89169219e-04 2.63844729e-04 5.18324076e-04 1.57518712e-04 9.87126571e-03 5.68358973e-03 2.65518540e-04 7.57949259e-05 4.80002308e-05 2.44970009e-04 3.97636206e-05 6.86758140e-05 2.26390255e-04 8.28200893e-05 1.53818458e-04 1.87199601e-04 1.07515187e-04 9.68263939e-05 5.32263621e-06 9.55115247e-06 6.03187436e-06 3.17079512e-05 4.98122135e-06 1.81306033e-05 1.09551997e-04 3.92206886e-05 2.02649680e-05 1.13846696e-04 4.64076526e-05 1.41042372e-05 5.89017596e-05 8.25671689e-05 9.87064705e-06 5.21363234e-05 1.94617333e-04 3.54616961e-05 7.98644524e-04 4.93804272e-04 4.93804272e-04 3.53014349e-04 5.29861660e-05 5.00208349e-05 4.61568462e-04 6.54144312e-04 1.24742539e-04 3.87322608e-04 1.46334653e-04 5.07433029e-05 1.13912141e-04 5.91643331e-05 1.56420963e-06 3.50301548e-09 0.00000000e+00 + 2024 11 20 12 00 00 3.92655781e-03 2.40901546e-03 1.34867147e-03 9.82368835e-04 7.14474229e-04 3.95546518e-04 2.91933479e-04 2.67147606e-04 5.26199017e-04 1.59881476e-04 1.00595916e-02 5.79947270e-03 2.68907169e-04 7.66793290e-05 4.85201375e-05 2.48329708e-04 4.02802689e-05 6.97140116e-05 2.29294228e-04 8.39406683e-05 1.56064442e-04 1.89907250e-04 1.08770032e-04 9.75854215e-05 5.35613653e-06 9.61597689e-06 6.04226589e-06 3.19159341e-05 5.00702517e-06 1.82751519e-05 1.11151475e-04 3.94217524e-05 2.07790625e-05 1.16211152e-04 4.79132927e-05 1.41493627e-05 6.03712133e-05 8.45424320e-05 9.92136120e-06 5.32760303e-05 2.00538194e-04 3.64169478e-05 8.19812085e-04 5.08190086e-04 5.08190086e-04 3.68523533e-04 5.61187684e-05 5.18772053e-05 4.78020717e-04 6.72342200e-04 1.28658819e-04 3.97036113e-04 1.45999323e-04 5.06219463e-05 1.13634666e-04 5.90089847e-05 1.55935891e-06 3.43444526e-09 0.00000000e+00 + 2024 11 21 12 00 00 3.94213807e-03 2.41977209e-03 1.35538935e-03 9.87251940e-04 7.18556075e-04 3.97407704e-04 2.93754959e-04 2.69328688e-04 5.31412073e-04 1.61447793e-04 1.01844138e-02 5.87641895e-03 2.71153308e-04 7.72562393e-05 4.88462368e-05 2.52453830e-04 4.09636967e-05 7.10873283e-05 2.31605043e-04 8.47301912e-05 1.58907238e-04 1.93488534e-04 1.10298913e-04 9.85720553e-05 5.40045367e-06 9.74450595e-06 6.06009635e-06 3.21330395e-05 5.02555449e-06 1.84264828e-05 1.13166463e-04 3.96877324e-05 2.14590429e-05 1.18310482e-04 4.89924045e-05 1.42268458e-05 6.20893689e-05 8.70096597e-05 1.00220430e-05 5.46606128e-05 2.06163248e-04 3.70928698e-05 8.39388712e-04 5.18489257e-04 5.18489257e-04 3.85326755e-04 6.02618151e-05 5.31925703e-05 4.96516032e-04 6.92380476e-04 1.32392829e-04 4.14113515e-04 1.51585532e-04 5.26530917e-05 1.18325075e-04 6.21848016e-05 1.70591242e-06 8.68310792e-09 0.00000000e+00 + 2024 11 22 12 00 00 3.98062874e-03 2.41917683e-03 1.34990902e-03 9.87461343e-04 7.40415386e-04 3.98088021e-04 2.96086760e-04 2.60423945e-04 5.53728346e-04 1.55381531e-04 1.01371725e-02 6.14568815e-03 2.68074085e-04 7.79284647e-05 4.92713194e-05 2.54948265e-04 4.13538335e-05 7.18714611e-05 2.32781427e-04 8.51155084e-05 1.60641493e-04 1.95534828e-04 1.11222426e-04 9.92678660e-05 5.42574417e-06 9.80302866e-06 6.08499686e-06 3.22669197e-05 5.03499832e-06 1.85255971e-05 1.14323416e-04 3.98395699e-05 2.18475281e-05 1.19642786e-04 4.95400222e-05 1.43350902e-05 6.30964346e-05 8.84947649e-05 1.00678546e-05 5.59634208e-05 2.10895282e-04 3.74260650e-05 8.54786611e-04 5.23702987e-04 5.23702987e-04 3.95699249e-04 6.26303663e-05 5.38430701e-05 5.07144538e-04 7.04612335e-04 1.34486029e-04 4.28058477e-04 1.60463132e-04 5.58806671e-05 1.25776782e-04 6.72120399e-05 1.93660479e-06 1.80996686e-08 0.00000000e+00 + 2024 11 23 12 00 00 3.99162345e-03 2.42835263e-03 1.35554871e-03 9.91296900e-04 7.43620124e-04 3.99289956e-04 2.97391805e-04 2.61904910e-04 5.57630162e-04 1.56825380e-04 1.02214840e-02 6.19879402e-03 2.69959727e-04 7.86092983e-05 4.95755845e-05 2.58184207e-04 4.18710988e-05 7.29111780e-05 2.35291879e-04 8.60614411e-05 1.62783023e-04 1.98248752e-04 1.12404082e-04 1.00099089e-04 5.45927142e-06 9.81462435e-06 6.09826347e-06 3.24451392e-05 5.05684475e-06 1.86538093e-05 1.15902576e-04 4.00408899e-05 2.23627401e-05 1.21775026e-04 5.08143916e-05 1.43927347e-05 6.44970676e-05 9.03794402e-05 1.00769124e-05 5.72844301e-05 2.15499215e-04 3.82329716e-05 8.73802404e-04 5.35877002e-04 5.35877002e-04 4.10196814e-04 6.57722587e-05 5.54114871e-05 5.22728730e-04 7.22007824e-04 1.38054847e-04 4.46083871e-04 1.71400143e-04 5.98564489e-05 1.34953368e-04 7.33729939e-05 2.21717811e-06 3.29050955e-08 9.06025477e-10 + 2024 11 24 12 00 00 4.02820418e-03 2.45174750e-03 1.37041763e-03 1.00266100e-03 7.53850456e-04 4.03914260e-04 3.01945086e-04 2.66902565e-04 5.70694617e-04 1.60176297e-04 1.05282341e-02 6.40064180e-03 2.75096025e-04 7.97164685e-05 5.02857813e-05 2.59937213e-04 4.20657045e-05 7.33026187e-05 2.37850903e-04 8.71433003e-05 1.63875448e-04 1.99272841e-04 1.13063533e-04 1.00888752e-04 5.47187192e-06 9.98559262e-06 6.11555442e-06 3.26052750e-05 5.08163066e-06 1.87631535e-05 1.16622020e-04 4.01166413e-05 2.25570737e-05 1.24005164e-04 5.22613991e-05 1.44679114e-05 6.53313695e-05 9.15359966e-05 1.02109501e-05 5.86814956e-05 2.21640563e-04 3.91541660e-05 8.96450394e-04 5.49706630e-04 5.49706630e-04 4.20970416e-04 6.69598929e-05 5.72010118e-05 5.32414908e-04 7.34293679e-04 1.41027653e-04 4.55923487e-04 1.79297719e-04 6.27273261e-05 1.41579601e-04 7.78204678e-05 2.41963075e-06 4.35815927e-08 1.87707538e-09 + 2024 11 25 12 00 00 4.04284970e-03 2.46294600e-03 1.37737203e-03 1.00757210e-03 7.58060561e-04 4.05603939e-04 3.03714168e-04 2.68886517e-04 5.75906754e-04 1.61891735e-04 1.06443123e-02 6.47499561e-03 2.77446258e-04 8.04683395e-05 5.06673049e-05 2.63559514e-04 4.26393177e-05 7.44557939e-05 2.40478278e-04 8.81129003e-05 1.66275851e-04 2.02284584e-04 1.14378866e-04 1.02129367e-04 5.50904224e-06 1.03438557e-05 6.13731536e-06 3.28205404e-05 5.10383652e-06 1.89068432e-05 1.18359424e-04 4.03399026e-05 2.31287675e-05 1.26350146e-04 5.35578758e-05 1.45625047e-05 6.68789202e-05 9.39126159e-05 1.04916908e-05 6.03479557e-05 2.27113830e-04 3.99797253e-05 9.20005780e-04 5.62097970e-04 5.62097970e-04 4.37183269e-04 7.04480452e-05 5.88047027e-05 5.49481811e-04 7.53250741e-04 1.44866906e-04 4.74471654e-04 1.89499876e-04 6.64363855e-05 1.50142560e-04 8.35928067e-05 2.68418604e-06 5.76683760e-08 3.16172439e-09 + 2024 11 26 12 00 00 4.05023952e-03 2.46740368e-03 1.38022900e-03 1.00975109e-03 7.60017757e-04 4.06547749e-04 3.04628312e-04 2.69880204e-04 5.78528757e-04 1.62506018e-04 1.07078821e-02 6.51747733e-03 2.78430707e-04 8.06302963e-05 5.07973923e-05 2.63374093e-04 4.25856677e-05 7.43506534e-05 2.40667557e-04 8.82269524e-05 1.66153899e-04 2.02032789e-04 1.14328527e-04 1.01781637e-04 5.50543773e-06 9.93672802e-06 6.13711600e-06 3.28002866e-05 5.10690261e-06 1.89090771e-05 1.18254483e-04 4.03191341e-05 2.30802194e-05 1.26499875e-04 5.37341228e-05 1.45615588e-05 6.68261790e-05 9.35055149e-05 1.01723672e-05 6.03642190e-05 2.27774022e-04 4.00805759e-05 9.20202087e-04 5.63767646e-04 5.63767646e-04 4.37101370e-04 7.01764540e-05 5.90030046e-05 5.49106612e-04 7.53532451e-04 1.44981084e-04 4.75909311e-04 1.92536638e-04 6.75410472e-05 1.52695914e-04 8.53500762e-05 2.76730401e-06 6.22873728e-08 3.58780170e-09 + 2024 11 27 12 00 00 4.06265485e-03 2.47672533e-03 1.38603066e-03 1.01387260e-03 7.63564530e-04 4.07993476e-04 3.06131353e-04 2.71561357e-04 5.82946475e-04 1.63924263e-04 1.08069910e-02 6.58120811e-03 2.80394322e-04 8.12294974e-05 5.10929767e-05 2.66351795e-04 4.30686137e-05 7.53227272e-05 2.42771510e-04 8.89956136e-05 1.68178090e-04 2.04581424e-04 1.15437208e-04 1.02257927e-04 5.53667778e-06 9.90647750e-06 6.14520977e-06 3.29587553e-05 5.12455845e-06 1.90231043e-05 1.19707920e-04 4.05071565e-05 2.35636806e-05 1.28167976e-04 5.47646487e-05 1.45966944e-05 6.80918176e-05 9.51886806e-05 1.01485151e-05 6.11132155e-05 2.31946074e-04 4.07354673e-05 9.34881838e-04 5.73615357e-04 5.73615357e-04 4.49831578e-04 7.31369015e-05 6.02754415e-05 5.63160374e-04 7.68348789e-04 1.48054065e-04 4.82128908e-04 1.88364022e-04 6.60257745e-05 1.49205980e-04 8.30952566e-05 2.67096107e-06 5.76815694e-08 3.18092361e-09 + 2024 11 28 12 00 00 4.06671925e-03 2.47975719e-03 1.38791918e-03 1.01519252e-03 7.64687399e-04 4.08462826e-04 3.06618563e-04 2.72104579e-04 5.84385088e-04 1.64381398e-04 1.08397557e-02 6.60244524e-03 2.81030008e-04 8.14187983e-05 5.11965914e-05 2.65613586e-04 4.29087930e-05 7.50044361e-05 2.43138028e-04 8.92313314e-05 1.67600592e-04 2.03775445e-04 1.15165744e-04 1.01995706e-04 5.52618039e-06 9.77245800e-06 6.14336750e-06 3.29345617e-05 5.13014929e-06 1.90118987e-05 1.19319070e-04 4.04450780e-05 2.34098552e-05 1.28348590e-04 5.50898723e-05 1.45886210e-05 6.78405385e-05 9.46793663e-05 1.00432582e-05 6.09956017e-05 2.31993989e-04 4.09377564e-05 9.36699396e-04 5.76717500e-04 5.76717500e-04 4.48542441e-04 7.22256547e-05 6.06694026e-05 5.61037791e-04 7.66309536e-04 1.48117853e-04 4.76653986e-04 1.84652290e-04 6.46777233e-05 1.46100460e-04 8.10802854e-05 2.58422937e-06 5.34840950e-08 2.80868804e-09 + 2024 11 29 12 00 00 4.05218937e-03 2.46911123e-03 1.38127346e-03 1.01032582e-03 7.60414529e-04 4.06726378e-04 3.04831482e-04 2.70107287e-04 5.79182860e-04 1.62763656e-04 1.07237209e-02 6.52806908e-03 2.78759328e-04 8.07317616e-05 5.08505268e-05 2.61098107e-04 4.21434554e-05 7.34710135e-05 2.40556690e-04 8.83709872e-05 1.64489278e-04 1.99814239e-04 1.13496675e-04 1.01106786e-04 5.47634118e-06 9.72774505e-06 6.13180455e-06 3.27001971e-05 5.11103608e-06 1.88488630e-05 1.17109719e-04 4.01474186e-05 2.26564953e-05 1.26239084e-04 5.39704342e-05 1.45382684e-05 6.59775351e-05 9.20891883e-05 1.00080259e-05 5.98246405e-05 2.26379716e-04 4.02101141e-05 9.18711919e-04 5.65999001e-04 5.65999001e-04 4.30795724e-04 6.76761847e-05 5.92590310e-05 5.40879685e-04 7.44844688e-04 1.44085035e-04 4.60735252e-04 1.82384809e-04 6.38547437e-05 1.44207201e-04 7.98830384e-05 2.53501323e-06 5.12870628e-08 2.61895483e-09 + 2024 11 30 12 00 00 4.02936361e-03 2.45506428e-03 1.37229634e-03 1.00330929e-03 7.54015691e-04 4.03785196e-04 3.01966869e-04 2.66973748e-04 5.71014051e-04 1.60780839e-04 1.05306103e-02 6.40057474e-03 2.75636932e-04 8.01144128e-05 5.04123508e-05 2.59114239e-04 4.18393756e-05 7.28626736e-05 2.39102235e-04 8.78418854e-05 1.63105766e-04 1.98250424e-04 1.12741506e-04 1.00684702e-04 5.45649709e-06 9.78794196e-06 6.12406438e-06 3.25782275e-05 5.09919555e-06 1.87611743e-05 1.16198624e-04 4.00291960e-05 2.23588257e-05 1.24978841e-04 5.32774895e-05 1.45045749e-05 6.51399694e-05 9.10186234e-05 1.00550948e-05 5.90670225e-05 2.22195635e-04 3.97619151e-05 9.07695316e-04 5.59367007e-04 5.59367007e-04 4.22260454e-04 6.58869627e-05 5.83898276e-05 5.31838963e-04 7.34188227e-04 1.42072063e-04 4.51676426e-04 1.77806144e-04 6.21914449e-05 1.40373545e-04 7.73733194e-05 2.42532698e-06 4.58463916e-08 2.13282068e-09 + 2024 12 01 12 00 00 4.01509024e-03 2.44489731e-03 1.36592718e-03 9.98610089e-04 7.49871531e-04 4.02058870e-04 3.00207921e-04 2.65016056e-04 5.65908556e-04 1.59254071e-04 1.04153238e-02 6.32620081e-03 2.73457001e-04 7.94929746e-05 5.00820549e-05 2.58404145e-04 4.17819305e-05 7.27487612e-05 2.37392142e-04 8.70923162e-05 1.62767580e-04 1.97966086e-04 1.12503115e-04 1.00101185e-04 5.45270086e-06 9.64819410e-06 6.11402502e-06 3.24948709e-05 5.08242229e-06 1.87054307e-05 1.15928642e-04 4.00069053e-05 2.23044175e-05 1.23547649e-04 5.22958289e-05 1.44608930e-05 6.47582532e-05 9.04816511e-05 9.94537331e-06 5.80754827e-05 2.19318589e-04 3.91269597e-05 8.93335373e-04 5.49971778e-04 5.49971778e-04 4.16526782e-04 6.55692071e-05 5.71584504e-05 5.27019060e-04 7.27574576e-04 1.40261179e-04 4.41124303e-04 1.65215635e-04 5.76157014e-05 1.29817581e-04 7.03498798e-05 2.11004693e-06 2.95540868e-08 6.59467325e-10 + 2024 12 02 12 00 00 3.99319184e-03 2.43001086e-03 1.35654362e-03 9.91560043e-04 7.43586017e-04 3.99353159e-04 2.97492587e-04 2.62011082e-04 5.58072639e-04 1.57058950e-04 1.02356227e-02 6.20932952e-03 2.70228530e-04 7.86641817e-05 4.96188356e-05 2.55108241e-04 4.12624358e-05 7.17071060e-05 2.34848437e-04 8.61541019e-05 1.60545545e-04 1.95268494e-04 1.11281306e-04 9.94978361e-05 5.41890877e-06 9.72633206e-06 6.10183997e-06 3.23068294e-05 5.06152428e-06 1.85689931e-05 1.14370178e-04 3.98048258e-05 2.17916022e-05 1.21515816e-04 5.10721991e-05 1.44078498e-05 6.33626529e-05 8.86696002e-05 1.00065037e-05 5.69928553e-05 2.13774957e-04 3.83330102e-05 8.75083263e-04 5.38257603e-04 5.38257603e-04 4.02134440e-04 6.24650274e-05 5.56192477e-05 5.11508477e-04 7.10517572e-04 1.36732644e-04 4.30006400e-04 1.63476384e-04 5.69844131e-05 1.28365163e-04 6.94296565e-05 2.07208484e-06 2.78482865e-08 5.11822318e-10 + 2024 12 03 12 00 00 3.97612790e-03 2.41970407e-03 1.34993638e-03 9.86316672e-04 7.38762481e-04 3.97132543e-04 2.95337950e-04 2.59655462e-04 5.51948514e-04 1.55610970e-04 1.00908369e-02 6.11370057e-03 2.67917081e-04 7.82235082e-05 4.93104639e-05 2.55251542e-04 4.13503760e-05 7.18833006e-05 2.34078986e-04 8.57907988e-05 1.60736667e-04 1.95723689e-04 1.11350254e-04 9.91313475e-05 5.42463531e-06 9.53659255e-06 6.08762457e-06 3.22725975e-05 5.05393982e-06 1.85474852e-05 1.14554907e-04 3.98390286e-05 2.18781715e-05 1.20805097e-04 5.06250013e-05 1.43459605e-05 6.33863988e-05 8.85873232e-05 9.85750085e-06 5.62547583e-05 2.11528790e-04 3.80297774e-05 8.65015412e-04 5.33959316e-04 5.33959316e-04 4.00466144e-04 6.29878487e-05 5.50340686e-05 5.11344377e-04 7.09183371e-04 1.36105381e-04 4.26412386e-04 1.56624613e-04 5.44947343e-05 1.22623805e-04 6.56353352e-05 1.90362323e-06 1.92854721e-08 0.00000000e+00 + 2024 12 04 12 00 00 3.97936222e-03 2.42097042e-03 1.35081172e-03 9.87113794e-04 7.39545381e-04 3.97602377e-04 2.95753706e-04 2.60090244e-04 5.53094968e-04 1.55737177e-04 1.01213651e-02 6.13494292e-03 2.68233876e-04 7.81687826e-05 4.93239617e-05 2.58257603e-04 4.19183256e-05 7.30220461e-05 2.34208859e-04 8.56283237e-05 1.62996603e-04 1.98672132e-04 1.12493977e-04 9.97690257e-05 5.46158262e-06 9.75618532e-06 6.09280323e-06 3.24004593e-05 5.05065764e-06 1.86273441e-05 1.16089496e-04 4.00599529e-05 2.24386938e-05 1.21182155e-04 5.04307274e-05 1.43684709e-05 6.45406394e-05 9.04449444e-05 1.00295569e-05 5.66547207e-05 2.13847229e-04 3.78950674e-05 8.67370637e-04 5.32088196e-04 5.32088196e-04 4.09286289e-04 6.63801737e-05 5.47746953e-05 5.22607458e-04 7.20511766e-04 1.37377318e-04 4.35712038e-04 1.55220543e-04 5.39853960e-05 1.21453366e-04 6.49104539e-05 1.87499055e-06 1.81046190e-08 0.00000000e+00 + 2024 12 05 12 00 00 3.98514122e-03 2.42474635e-03 1.35320360e-03 9.88901126e-04 7.41132285e-04 3.98321806e-04 2.96465731e-04 2.60871886e-04 5.55149199e-04 1.56279648e-04 1.01697385e-02 6.16680682e-03 2.69053425e-04 7.83497716e-05 4.94428364e-05 2.56821800e-04 4.16360825e-05 7.24542479e-05 2.34342492e-04 8.58094543e-05 1.61921786e-04 1.97185995e-04 1.11964257e-04 9.95681502e-05 5.44331087e-06 9.73431452e-06 6.08823721e-06 3.23595843e-05 5.05507378e-06 1.85978230e-05 1.15343322e-04 3.99500830e-05 2.21567010e-05 1.21219145e-04 5.06869343e-05 1.43486017e-05 6.40147123e-05 8.96143304e-05 1.00123892e-05 5.64974861e-05 2.13450324e-04 3.80515034e-05 8.67849487e-04 5.34528168e-04 5.34528168e-04 4.05494172e-04 6.46561384e-05 5.50799828e-05 5.17429079e-04 7.15645980e-04 1.36924947e-04 4.30271872e-04 1.54918032e-04 5.38763497e-05 1.21206159e-04 6.47972251e-05 1.87362460e-06 1.83182628e-08 0.00000000e+00 + 2024 12 06 12 00 00 3.98951111e-03 2.42837526e-03 1.35543524e-03 9.90416040e-04 7.42396218e-04 3.98799826e-04 2.96983689e-04 2.61458941e-04 5.56698267e-04 1.56849088e-04 1.02033721e-02 6.18804842e-03 2.69799021e-04 7.86125527e-05 4.95547156e-05 2.57581264e-04 4.17441857e-05 7.26700702e-05 2.35231573e-04 8.61776061e-05 1.62371274e-04 1.97736964e-04 1.12230355e-04 9.98240747e-05 5.45038711e-06 9.78382450e-06 6.09441522e-06 3.24137577e-05 5.06362303e-06 1.86354912e-05 1.15693191e-04 3.99920944e-05 2.22617047e-05 1.21957413e-04 5.11853723e-05 1.43754660e-05 6.43559603e-05 9.00925826e-05 1.00511606e-05 5.69422109e-05 2.14942281e-04 3.83659353e-05 8.75480508e-04 5.39288251e-04 5.39288251e-04 4.09600964e-04 6.52831164e-05 5.56914019e-05 5.21447532e-04 7.20097574e-04 1.38041582e-04 4.33489948e-04 1.56499886e-04 5.44521719e-05 1.22539077e-04 6.57374381e-05 1.91969997e-06 2.09951132e-08 0.00000000e+00 + 2024 12 07 12 00 00 3.98351950e-03 2.42434328e-03 1.35289003e-03 9.88474359e-04 7.40648759e-04 3.98051556e-04 2.96235125e-04 2.60630303e-04 5.54547057e-04 1.56254223e-04 1.01542490e-02 6.15616888e-03 2.68918756e-04 7.83891430e-05 4.94363044e-05 2.58264930e-04 4.18985204e-05 7.29793042e-05 2.34795118e-04 8.59236869e-05 1.62928249e-04 1.98535929e-04 1.12491802e-04 9.98927706e-05 5.46043630e-06 9.73332353e-06 6.09317176e-06 3.24216383e-05 5.05813769e-06 1.86421615e-05 1.16081308e-04 4.00521210e-05 2.24136500e-05 1.21715414e-04 5.08631347e-05 1.43700512e-05 6.45941027e-05 9.04367147e-05 1.00115758e-05 5.69249758e-05 2.14579916e-04 3.81524675e-05 8.71904614e-04 5.36197610e-04 5.36197610e-04 4.10582929e-04 6.62008359e-05 5.52784593e-05 5.23454619e-04 7.22070934e-04 1.37920539e-04 4.38828460e-04 1.60028721e-04 5.57353000e-05 1.25502333e-04 6.77462469e-05 2.01257249e-06 2.60006569e-08 3.76471743e-10 + 2024 12 08 12 00 00 3.96787556e-03 2.41407524e-03 1.34638698e-03 9.83528043e-04 7.36207268e-04 3.96090176e-04 2.94288340e-04 2.58485357e-04 5.48951075e-04 1.54763078e-04 1.00243543e-02 6.07117340e-03 2.66674032e-04 7.78590829e-05 4.91133078e-05 2.53661571e-04 4.11112764e-05 7.13984889e-05 2.32861294e-04 8.53680947e-05 1.59684136e-04 1.94422745e-04 1.10783690e-04 9.90926594e-05 5.40933615e-06 9.76852825e-06 6.07321163e-06 3.22068805e-05 5.04570635e-06 1.84854556e-05 1.13834444e-04 3.97457916e-05 2.16323708e-05 1.19971616e-04 5.01355797e-05 1.42832374e-05 6.27500582e-05 8.78478854e-05 1.00392375e-05 5.56768305e-05 2.08869974e-04 3.76818411e-05 8.55555778e-04 5.29234298e-04 5.29234298e-04 3.93430385e-04 6.14505727e-05 5.43657865e-05 5.03880622e-04 7.01325917e-04 1.34384159e-04 4.22406103e-04 1.57745665e-04 5.49052143e-05 1.23585657e-04 6.64506135e-05 1.95293507e-06 2.28059193e-08 8.46444692e-11 + 2024 12 09 12 00 00 3.94616784e-03 2.39951054e-03 1.33719114e-03 9.76607680e-04 7.30032372e-04 3.93396414e-04 2.91597346e-04 2.55513885e-04 5.41192611e-04 1.52630373e-04 9.84524443e-03 5.95430881e-03 2.63510407e-04 7.70780514e-05 4.86585851e-05 2.50484021e-04 4.06102132e-05 7.03922939e-05 2.30523331e-04 8.45107716e-05 1.57520324e-04 1.91804376e-04 1.09599113e-04 9.80739364e-05 5.37681408e-06 9.44590502e-06 6.06093890e-06 3.20058228e-05 5.02632647e-06 1.83554835e-05 1.12324135e-04 3.95508163e-05 2.11350358e-05 1.17950760e-04 4.90026083e-05 1.42298682e-05 6.13857967e-05 8.57792213e-05 9.78625976e-06 5.44618934e-05 2.03497358e-04 3.69539979e-05 8.36659795e-04 5.18397475e-04 5.18397475e-04 3.79469646e-04 5.84263820e-05 5.29532437e-05 4.89020708e-04 6.84756058e-04 1.31064641e-04 4.10000887e-04 1.53884412e-04 5.35014316e-05 1.20344787e-04 6.42658311e-05 1.85279636e-06 1.74733344e-08 0.00000000e+00 + 2024 12 10 12 00 00 3.94665331e-03 2.40042678e-03 1.33772008e-03 9.76924079e-04 7.30272787e-04 3.93413859e-04 2.91649718e-04 2.55588061e-04 5.41375059e-04 1.52804308e-04 9.84665557e-03 5.95431551e-03 2.63683529e-04 7.72091606e-05 4.87030889e-05 2.48542373e-04 4.02362872e-05 6.96411997e-05 2.30670734e-04 8.47230840e-05 1.56040576e-04 1.89848184e-04 1.08861373e-04 9.78493210e-05 5.35255276e-06 9.52176488e-06 6.05618079e-06 3.19449015e-05 5.03081101e-06 1.83092411e-05 1.11320513e-04 3.94053088e-05 2.07635298e-05 1.17878779e-04 4.92666906e-05 1.42092162e-05 6.06596934e-05 8.47409623e-05 9.84573198e-06 5.42187750e-05 2.02293891e-04 3.71316390e-05 8.37062298e-04 5.20933792e-04 5.20933792e-04 3.74204214e-04 5.61655266e-05 5.32963371e-05 4.82010555e-04 6.77660783e-04 1.30428884e-04 4.01746501e-04 1.51984406e-04 5.28099750e-05 1.18745061e-04 6.31475597e-05 1.79868905e-06 1.43784376e-08 0.00000000e+00 + 2024 12 11 12 00 00 3.94591325e-03 2.39878257e-03 1.33678029e-03 9.76468773e-04 7.30000499e-04 3.93423377e-04 2.91593061e-04 2.55499725e-04 5.41126055e-04 1.52498645e-04 9.84472555e-03 5.95432296e-03 2.63393888e-04 7.69996894e-05 4.86422536e-05 2.47480686e-04 4.00708552e-05 6.93083508e-05 2.29755703e-04 8.43650894e-05 1.55377619e-04 1.88976510e-04 1.08489939e-04 9.74676864e-05 5.34184619e-06 9.46110085e-06 6.04788220e-06 3.18850410e-05 5.02245057e-06 1.82663305e-05 1.10803483e-04 3.93409078e-05 2.05981443e-05 1.17065803e-04 4.87795682e-05 1.41731784e-05 6.01948942e-05 8.40662439e-05 9.79827673e-06 5.36013814e-05 2.00859727e-04 3.68254958e-05 8.28821004e-04 5.16283279e-04 5.16283279e-04 3.69062067e-04 5.51539066e-05 5.27007913e-05 4.76721999e-04 6.71738648e-04 1.29139041e-04 3.93977666e-04 1.45827185e-04 5.05709850e-05 1.13573585e-04 5.96331216e-05 1.63558948e-06 8.31601028e-09 0.00000000e+00 + 2024 12 12 12 00 00 3.94987371e-03 2.40133152e-03 1.33840040e-03 9.77750933e-04 7.31179366e-04 3.93931315e-04 2.92095717e-04 2.56055173e-04 5.42558012e-04 1.52871247e-04 9.87744377e-03 5.97558059e-03 2.63961891e-04 7.71379195e-05 4.87181350e-05 2.46830373e-04 3.99416749e-05 6.90484187e-05 2.29990453e-04 8.45127739e-05 1.54895311e-04 1.88295815e-04 1.08255436e-04 9.72389638e-05 5.33348539e-06 9.32396579e-06 6.04161905e-06 3.18637492e-05 5.02532239e-06 1.82542658e-05 1.10461445e-04 3.92906193e-05 2.04689946e-05 1.17094588e-04 4.89502854e-05 1.41459925e-05 5.99626712e-05 8.35835511e-05 9.69086177e-06 5.34029236e-05 2.00725491e-04 3.69470188e-05 8.27858776e-04 5.17931627e-04 5.17931627e-04 3.67342460e-04 5.43639006e-05 5.29341691e-05 4.74560872e-04 6.69786149e-04 1.29042846e-04 3.91211156e-04 1.45283063e-04 5.03724361e-05 1.13111665e-04 5.92800654e-05 1.61642569e-06 7.49941478e-09 0.00000000e+00 + 2024 12 13 12 00 00 3.94008490e-03 2.39478134e-03 1.33426412e-03 9.74665307e-04 7.28441601e-04 3.92720867e-04 2.90888333e-04 2.54724446e-04 5.39070490e-04 1.51917304e-04 9.79632629e-03 5.92246577e-03 2.62544022e-04 7.67997935e-05 4.85160338e-05 2.47456335e-04 4.00882884e-05 6.93430833e-05 2.29330180e-04 8.41475674e-05 1.55395557e-04 1.89064648e-04 1.08474341e-04 9.72570477e-05 5.34299033e-06 9.28334484e-06 6.04716588e-06 3.18575230e-05 5.01675531e-06 1.82542727e-05 1.10804945e-04 3.93476803e-05 2.06149620e-05 1.16647510e-04 4.84513555e-05 1.41701646e-05 6.01390350e-05 8.39048732e-05 9.65899599e-06 5.34359202e-05 2.00059528e-04 3.66343942e-05 8.24425023e-04 5.13169635e-04 5.13169635e-04 3.67863445e-04 5.52537036e-05 5.23258175e-05 4.75978044e-04 6.70677353e-04 1.28720327e-04 3.95224462e-04 1.47188313e-04 5.10644581e-05 1.14706175e-04 6.03180861e-05 1.66136232e-06 8.97427981e-09 0.00000000e+00 + 2024 12 14 12 00 00 3.94502115e-03 2.39664121e-03 1.33556316e-03 9.75941060e-04 7.29737913e-04 3.93456698e-04 2.91540280e-04 2.55410815e-04 5.40848612e-04 1.52105132e-04 9.84254489e-03 5.95434308e-03 2.63030585e-04 7.67368851e-05 4.85501435e-05 2.47823649e-04 4.01621684e-05 6.94924151e-05 2.28920236e-04 8.39197193e-05 1.55747606e-04 1.89461443e-04 1.08630425e-04 9.74338822e-05 5.34773935e-06 9.35146891e-06 6.04976121e-06 3.18683320e-05 5.01136856e-06 1.82595194e-05 1.10982115e-04 3.93764669e-05 2.06900571e-05 1.16471555e-04 4.81378433e-05 1.41814773e-05 6.02552013e-05 8.41647793e-05 9.71238842e-06 5.35793449e-05 2.00591352e-04 3.64389998e-05 8.22758773e-04 5.10178739e-04 5.10178739e-04 3.68205903e-04 5.57192252e-05 5.19453664e-05 4.76628145e-04 6.71728806e-04 1.28471914e-04 3.99925936e-04 1.51722368e-04 5.27122038e-05 1.18507142e-04 6.28437534e-05 1.77449811e-06 1.28712088e-08 0.00000000e+00 + 2024 12 15 12 00 00 3.93147716e-03 2.38797411e-03 1.33005488e-03 9.71703127e-04 7.25907179e-04 3.91738846e-04 2.89848358e-04 2.53551938e-04 5.36001996e-04 1.50859695e-04 9.72926731e-03 5.87997027e-03 2.61123146e-04 7.63160999e-05 4.82825689e-05 2.48616610e-04 4.03498183e-05 6.98698743e-05 2.28161911e-04 8.35047802e-05 1.56379412e-04 1.90448960e-04 1.08914419e-04 9.77040239e-05 5.35988984e-06 9.55349169e-06 6.05348832e-06 3.18771763e-05 5.00209571e-06 1.82597637e-05 1.11437623e-04 3.94495146e-05 2.08774538e-05 1.16026048e-04 4.75950947e-05 1.41976983e-05 6.05088492e-05 8.47748583e-05 9.87072563e-06 5.36208792e-05 1.99602314e-04 3.60876118e-05 8.19258612e-04 5.04983822e-04 5.04983822e-04 3.69121656e-04 5.68644668e-05 5.12639817e-05 4.78660226e-04 6.73082693e-04 1.28149493e-04 4.04477097e-04 1.53325657e-04 5.32947912e-05 1.19850692e-04 6.37324367e-05 1.81401028e-06 1.43340841e-08 0.00000000e+00 + 2024 12 16 12 00 00 3.91776318e-03 2.37909408e-03 1.32442010e-03 9.67343768e-04 7.21952656e-04 3.89998676e-04 2.88128168e-04 2.51656804e-04 5.31080031e-04 1.49571348e-04 9.61540096e-03 5.80558814e-03 2.59167054e-04 7.58589045e-05 4.80060678e-05 2.50007377e-04 4.06682753e-05 7.05106824e-05 2.27375726e-04 8.30330595e-05 1.57530702e-04 1.92127529e-04 1.09462240e-04 9.75753606e-05 5.38049826e-06 9.37020159e-06 6.04365378e-06 3.18876575e-05 4.99191083e-06 1.82703531e-05 1.12249693e-04 3.95734853e-05 2.11959166e-05 1.15437213e-04 4.69967490e-05 1.41548720e-05 6.10052897e-05 8.54086951e-05 9.72697890e-06 5.31516619e-05 1.98520686e-04 3.56910925e-05 8.09870296e-04 4.99244826e-04 4.99244826e-04 3.71050744e-04 5.88129158e-05 5.04969619e-05 4.83050875e-04 6.76664304e-04 1.27988499e-04 4.07726387e-04 1.49879418e-04 5.20420515e-05 1.16959334e-04 6.17925762e-05 1.72576375e-06 1.11155941e-08 0.00000000e+00 + 2024 12 17 12 00 00 3.89851497e-03 2.36712890e-03 1.31678331e-03 9.61331063e-04 7.16444565e-04 3.87514662e-04 2.85700816e-04 2.48994290e-04 5.24168287e-04 1.47865533e-04 9.45366660e-03 5.69932759e-03 2.56502138e-04 7.52982709e-05 4.76351335e-05 2.50266866e-04 4.07790416e-05 7.07346364e-05 2.26292500e-04 8.25178111e-05 1.57815393e-04 1.92723165e-04 1.09563496e-04 9.75628411e-05 5.38761560e-06 9.42082115e-06 6.03797926e-06 3.18587672e-05 4.98098343e-06 1.82470213e-05 1.12490037e-04 3.96166521e-05 2.13086270e-05 1.14678922e-04 4.63535398e-05 1.41301178e-05 6.10577533e-05 8.56004630e-05 9.76657830e-06 5.27841034e-05 1.96274932e-04 3.52596137e-05 8.01382303e-04 4.93068714e-04 4.93068714e-04 3.69605133e-04 5.95122052e-05 4.96633817e-05 4.82886246e-04 6.75533014e-04 1.27179115e-04 4.09625861e-04 1.49801232e-04 5.20140271e-05 1.16896585e-04 6.17731910e-05 1.72651567e-06 1.12171975e-08 0.00000000e+00 + 2024 12 18 12 00 00 3.89423801e-03 2.36408667e-03 1.31487576e-03 9.59834228e-04 7.15073233e-04 3.86979034e-04 2.85154735e-04 2.48381367e-04 5.22608264e-04 1.47397390e-04 9.41993835e-03 5.67805767e-03 2.55833984e-04 7.50858766e-05 4.75360206e-05 2.51012608e-04 4.09379485e-05 7.10554130e-05 2.25811863e-04 8.22526927e-05 1.58426462e-04 1.93571981e-04 1.09854226e-04 9.79329564e-05 5.39785106e-06 9.64734863e-06 6.03989502e-06 3.18834753e-05 4.97581132e-06 1.82560922e-05 1.12910476e-04 3.96785588e-05 2.14693864e-05 1.14551809e-04 4.60461510e-05 1.41383629e-05 6.13366037e-05 8.62121390e-05 9.94394140e-06 5.29455461e-05 1.96200900e-04 3.50413233e-05 8.00070725e-04 4.90101427e-04 4.90101427e-04 3.71113901e-04 6.05049951e-05 4.92440595e-05 4.85154727e-04 6.77853405e-04 1.27090221e-04 4.15381867e-04 1.53608499e-04 5.33986851e-05 1.20095730e-04 6.39585267e-05 1.82873241e-06 1.54445551e-08 0.00000000e+00 + 2024 12 19 12 00 00 3.91006864e-03 2.37506826e-03 1.32177752e-03 9.64863982e-04 7.19471214e-04 3.88893999e-04 2.87088008e-04 2.50519233e-04 5.28233053e-04 1.49014875e-04 9.55005300e-03 5.76302856e-03 2.58183565e-04 7.56836679e-05 4.78706134e-05 2.54407722e-04 4.14993236e-05 7.21840712e-05 2.27791867e-04 8.29425117e-05 1.60788300e-04 1.96520373e-04 1.11129761e-04 9.87622349e-05 5.43422502e-06 9.81389530e-06 6.05001624e-06 3.20708173e-05 4.99218622e-06 1.83821921e-05 1.14577012e-04 3.98970558e-05 2.20290327e-05 1.16327653e-04 4.69986961e-05 1.41823009e-05 6.27704093e-05 8.82876698e-05 1.00744342e-05 5.39526439e-05 2.00962973e-04 3.56334262e-05 8.15764860e-04 4.99186711e-04 4.99186711e-04 3.85022273e-04 6.39203645e-05 5.03972813e-05 5.00540680e-04 6.94508976e-04 1.30219842e-04 4.27097957e-04 1.55011324e-04 5.39096369e-05 1.21279945e-04 6.48109481e-05 1.87167581e-06 1.80214066e-08 0.00000000e+00 + 2024 12 20 12 00 00 3.91950232e-03 2.38111746e-03 1.32561941e-03 9.67702647e-04 7.21972530e-04 3.90065880e-04 2.88241681e-04 2.51780069e-04 5.31570259e-04 1.49870099e-04 9.62998911e-03 5.81612512e-03 2.59494254e-04 7.59408654e-05 4.80471313e-05 2.53880920e-04 4.13664646e-05 7.19210308e-05 2.28168748e-04 8.31823738e-05 1.60380994e-04 1.95867521e-04 1.10946369e-04 9.86851524e-05 5.42542439e-06 9.66094449e-06 6.05283458e-06 3.20580059e-05 4.99849702e-06 1.83811657e-05 1.14287040e-04 3.98455188e-05 2.19039837e-05 1.16720798e-04 4.73622262e-05 1.41944416e-05 6.26162935e-05 8.79026834e-05 9.95429436e-06 5.42011772e-05 2.01810638e-04 3.58444086e-05 8.19616371e-04 5.02634514e-04 5.02634514e-04 3.84733629e-04 6.31942181e-05 5.08114230e-05 4.99210243e-04 6.94110551e-04 1.30409228e-04 4.28878080e-04 1.60345771e-04 5.58499771e-05 1.25764237e-04 6.78892322e-05 2.01672358e-06 2.60417682e-08 3.75707288e-10 + 2024 12 21 12 00 00 3.94913700e-03 2.40128096e-03 1.33832577e-03 9.77137325e-04 7.30321067e-04 3.93704450e-04 2.91892693e-04 2.55814212e-04 5.42136729e-04 1.52830165e-04 9.87411503e-03 5.97546995e-03 2.63846611e-04 7.70399899e-05 4.86960136e-05 2.58685376e-04 4.21202276e-05 7.34370959e-05 2.31511613e-04 8.44046066e-05 1.63634572e-04 1.99832979e-04 1.12722099e-04 9.98698647e-05 5.47423551e-06 9.73940987e-06 6.08013033e-06 3.23278936e-05 5.02669282e-06 1.85750628e-05 1.16571025e-04 4.01389261e-05 2.26565142e-05 1.19679332e-04 4.90071543e-05 1.43130674e-05 6.46487419e-05 9.07327377e-05 1.00156438e-05 5.61710394e-05 2.09856623e-04 3.68867419e-05 8.48382403e-04 5.18349465e-04 5.18349465e-04 4.05818457e-04 6.77921809e-05 5.28372824e-05 5.21533910e-04 7.19057528e-04 1.35341508e-04 4.49953396e-04 1.69267484e-04 5.90944535e-05 1.33259146e-04 7.29948260e-05 2.25453100e-06 3.89896691e-08 1.56365374e-09 + 2024 12 22 12 00 00 3.98999616e-03 2.42807329e-03 1.35529466e-03 9.89962614e-04 7.41791705e-04 3.98812330e-04 2.96959499e-04 2.61390586e-04 5.56722222e-04 1.56707944e-04 1.02142848e-02 6.19856194e-03 2.69689388e-04 7.83831462e-05 4.95138706e-05 2.60574800e-04 4.23153338e-05 7.38317205e-05 2.34766762e-04 8.58051237e-05 1.64785269e-04 2.00883696e-04 1.13438479e-04 1.00821793e-04 5.48676580e-06 9.87932726e-06 6.09470080e-06 3.25086039e-05 5.05882381e-06 1.86993751e-05 1.17357093e-04 4.02149657e-05 2.28553006e-05 1.22466468e-04 5.08827216e-05 1.43763406e-05 6.56061557e-05 9.19662375e-05 1.01251338e-05 5.78303090e-05 2.16737786e-04 3.80796468e-05 8.74578372e-04 5.36273699e-04 5.36273699e-04 4.18363278e-04 6.90267421e-05 5.51548728e-05 5.32803653e-04 7.33890445e-04 1.38996177e-04 4.65314835e-04 1.84306644e-04 6.45627446e-05 1.45887028e-04 8.15480405e-05 2.64945064e-06 6.02361013e-08 3.50670071e-09 + 2024 12 23 12 00 00 4.00966299e-03 2.44417326e-03 1.36521254e-03 9.96805714e-04 7.47568264e-04 4.00998127e-04 2.99312330e-04 2.64055602e-04 5.63720316e-04 1.59232527e-04 1.03658496e-02 6.29416406e-03 2.73020266e-04 7.95644135e-05 5.00465358e-05 2.64569871e-04 4.29064792e-05 7.50211300e-05 2.38833833e-04 8.74278310e-05 1.67297730e-04 2.03998377e-04 1.14871093e-04 1.02012533e-04 5.52502606e-06 9.98999603e-06 6.11927971e-06 3.27573687e-05 5.09587881e-06 1.88778308e-05 1.19245665e-04 4.04450926e-05 2.34462612e-05 1.25814152e-04 5.30467485e-05 1.44831618e-05 6.73856700e-05 9.43867451e-05 1.02117476e-05 5.98795959e-05 2.23688837e-04 3.94603732e-05 9.06995705e-04 5.56960236e-04 5.56960236e-04 4.38503868e-04 7.26414029e-05 5.78364357e-05 5.53337810e-04 7.56999779e-04 1.44303162e-04 4.86305055e-04 1.96999180e-04 6.91780977e-05 1.56546698e-04 8.87855365e-05 2.98486018e-06 7.83730641e-08 5.16766647e-09 + 2024 12 24 12 00 00 4.02851150e-03 2.45854257e-03 1.37413827e-03 1.00313561e-03 7.53010198e-04 4.03181843e-04 3.01594308e-04 2.66614112e-04 5.70432497e-04 1.61433353e-04 1.05152005e-02 6.38976693e-03 2.76039783e-04 8.05264003e-05 5.05335360e-05 2.69207518e-04 4.36450617e-05 7.65071018e-05 2.42196596e-04 8.86661466e-05 1.70398738e-04 2.07888834e-04 1.16567257e-04 1.03286607e-04 5.57283311e-06 1.01263475e-05 6.14242017e-06 3.30141541e-05 5.12422957e-06 1.90598157e-05 1.21486924e-04 4.07326093e-05 2.41844376e-05 1.28732302e-04 5.47020172e-05 1.45837417e-05 6.93691093e-05 9.71792684e-05 1.03184459e-05 6.18265826e-05 2.30554174e-04 4.05146362e-05 9.34380510e-04 5.72781079e-04 5.72781079e-04 4.58990435e-04 7.71556573e-05 5.98843559e-05 5.75255686e-04 7.81473619e-04 1.49203168e-04 5.10616368e-04 2.10634521e-04 7.41362321e-05 1.67997796e-04 9.65572272e-05 3.34480292e-06 9.78200916e-08 6.94819633e-09 + 2024 12 25 12 00 00 4.04957968e-03 2.47194419e-03 1.38266209e-03 1.00963692e-03 7.58855011e-04 4.05845258e-04 3.04212603e-04 2.69484594e-04 5.77948121e-04 1.63344817e-04 1.06924160e-02 6.50662035e-03 2.78981547e-04 8.11458978e-05 5.09442254e-05 2.68032746e-04 4.33419074e-05 7.59027898e-05 2.43222948e-04 8.92554934e-05 1.69418390e-04 2.06353746e-04 1.16123280e-04 1.03133885e-04 5.55294682e-06 1.00882819e-05 6.15468816e-06 3.30061688e-05 5.13795712e-06 1.90617480e-05 1.20773358e-04 4.06148349e-05 2.38916211e-05 1.29517232e-04 5.55020466e-05 1.46370119e-05 6.89770097e-05 9.65154253e-05 1.02883467e-05 6.22211549e-05 2.32627030e-04 4.10183216e-05 9.45892306e-04 5.80420019e-04 5.80420019e-04 4.58496494e-04 7.54156907e-05 6.08640024e-05 5.72196579e-04 7.79136035e-04 1.49728443e-04 5.02034901e-04 2.06007987e-04 7.24560370e-05 1.64127613e-04 9.40520589e-05 3.23741363e-06 9.26581379e-08 6.49140333e-09 + 2024 12 26 12 00 00 3.84186407e-03 2.36029908e-03 1.30981095e-03 9.49349116e-04 7.02175832e-04 3.77741081e-04 2.77748291e-04 2.40924933e-04 5.03555687e-04 1.48647426e-04 8.87192200e-03 5.28480560e-03 2.53216051e-04 7.83609894e-05 4.78724509e-05 2.83012278e-04 4.63930279e-05 8.20299785e-05 2.45765267e-04 8.93078104e-05 1.79604101e-04 2.22299811e-04 1.21319463e-04 1.04778770e-04 5.75097620e-06 9.86410305e-06 6.16265606e-06 3.33745657e-05 5.13964042e-06 1.93443540e-05 1.29064374e-04 4.18020936e-05 2.69203796e-05 1.30999944e-04 5.55974315e-05 1.46715844e-05 7.47890049e-05 1.04937779e-04 1.01124278e-05 6.31050569e-05 2.24542114e-04 4.10668843e-05 9.49510509e-04 5.81315812e-04 5.81315812e-04 5.04102144e-04 9.38346901e-05 6.09608891e-05 6.34871750e-04 8.33979455e-04 1.58495054e-04 5.59880124e-04 2.07942856e-04 7.31609463e-05 1.65762208e-04 9.52385049e-05 3.29784352e-06 9.63292138e-08 6.83756198e-09 + 2024 12 27 12 00 00 4.06815518e-03 2.48309606e-03 1.38981333e-03 1.01516431e-03 7.63859972e-04 4.08237327e-04 3.06525069e-04 2.71999972e-04 5.84556415e-04 1.64885136e-04 1.08517904e-02 6.61283880e-03 2.81455910e-04 8.15572940e-05 5.12685252e-05 2.65545834e-04 4.28158964e-05 7.48546154e-05 2.43378998e-04 8.95464327e-05 1.67578307e-04 2.03694386e-04 1.15210177e-04 1.02872063e-04 5.51842313e-06 1.00142417e-05 6.16263060e-06 3.29260811e-05 5.14546227e-06 1.90144075e-05 1.19437252e-04 4.04105027e-05 2.33842409e-05 1.29745893e-04 5.59351931e-05 1.46713675e-05 6.80654338e-05 9.51044307e-05 1.02299375e-05 6.24778884e-05 2.33167447e-04 4.12730034e-05 9.51438239e-04 5.84532367e-04 5.84532367e-04 4.52796287e-04 7.24043348e-05 6.13631622e-05 5.63215443e-04 7.71340759e-04 1.48995921e-04 4.96371421e-04 2.10750898e-04 7.41830987e-05 1.68128193e-04 9.69061333e-05 3.37947824e-06 1.01065831e-07 7.27929717e-09 + 2024 12 28 12 00 00 4.07133664e-03 2.48708580e-03 1.39217413e-03 1.01654008e-03 7.64874610e-04 4.08468793e-04 3.06864107e-04 2.72416732e-04 5.85671800e-04 1.65575383e-04 1.08712406e-02 6.62345141e-03 2.82215312e-04 8.19697883e-05 5.14055753e-05 2.67503919e-04 4.31195571e-05 7.54679029e-05 2.45084116e-04 9.02093481e-05 1.68825494e-04 2.05319810e-04 1.15909087e-04 1.03677047e-04 5.53796817e-06 1.04004925e-05 6.17479091e-06 3.30518994e-05 5.16075052e-06 1.90924868e-05 1.20388951e-04 4.05288156e-05 2.36920008e-05 1.31196103e-04 5.68271265e-05 1.47241895e-05 6.89310488e-05 9.65570965e-05 1.05325365e-05 6.33925464e-05 2.35849297e-04 4.18383046e-05 9.66718955e-04 5.93053689e-04 5.93053689e-04 4.62306977e-04 7.43076904e-05 6.24618435e-05 5.73039681e-04 7.81735628e-04 1.51378423e-04 5.03343802e-04 2.12024748e-04 7.46472844e-05 1.69205039e-04 9.76932373e-05 3.41993266e-06 1.03547970e-07 7.51388711e-09 + 2024 12 29 12 00 00 4.07162833e-03 2.48504956e-03 1.39107725e-03 1.01609340e-03 7.64673887e-04 4.08680529e-04 3.06944770e-04 2.72448507e-04 5.85766904e-04 1.65136177e-04 1.08828007e-02 6.63406402e-03 2.81883731e-04 8.15867158e-05 5.13174888e-05 2.73585464e-04 4.42961609e-05 7.78316986e-05 2.44611616e-04 8.95255886e-05 1.73497885e-04 2.11479722e-04 1.18236392e-04 1.04971823e-04 5.61428897e-06 1.09324501e-05 6.18295453e-06 3.32878936e-05 5.14583153e-06 1.92355046e-05 1.23533302e-04 4.09866945e-05 2.48617318e-05 1.31410379e-04 5.59516368e-05 1.47596525e-05 7.12294899e-05 1.00390943e-04 1.09493980e-05 6.39789008e-05 2.39521549e-04 4.12622525e-05 9.66079191e-04 5.84661821e-04 5.84661821e-04 4.78714240e-04 8.14300380e-05 6.13467244e-05 5.94971315e-04 8.03448344e-04 1.53304836e-04 5.22250421e-04 2.08424048e-04 7.33392702e-05 1.66190356e-04 9.57206852e-05 3.33379844e-06 9.92814535e-08 7.13282517e-09 + 2024 12 30 12 00 00 4.02813177e-03 2.45601149e-03 1.37272892e-03 1.00217293e-03 7.52190550e-04 4.03254456e-04 3.01531098e-04 2.66468643e-04 5.70190518e-04 1.60881665e-04 1.05241252e-02 6.40031472e-03 2.75552835e-04 8.00123446e-05 5.03946238e-05 2.73034042e-04 4.43904137e-05 7.80223985e-05 2.40858484e-04 8.78089457e-05 1.73505665e-04 2.11988046e-04 1.18090725e-04 1.04134778e-04 5.62033892e-06 1.08370012e-05 6.15240424e-06 3.31459715e-05 5.10782993e-06 1.91294712e-05 1.23532945e-04 4.10234294e-05 2.49578850e-05 1.28365641e-04 5.37250948e-05 1.46266815e-05 7.08129907e-05 9.99509254e-05 1.08744207e-05 6.18542781e-05 2.32493100e-04 3.98115168e-05 9.32304729e-04 5.63338445e-04 5.63338445e-04 4.68701278e-04 8.20277841e-05 5.85354806e-05 5.88389899e-04 7.93065846e-04 1.49723144e-04 5.08577398e-04 1.88269651e-04 6.60138241e-05 1.49287233e-04 8.44300572e-05 2.82376627e-06 7.26806036e-08 4.72092125e-09 + 2024 12 31 12 00 00 3.99588011e-03 2.43364208e-03 1.35866602e-03 9.91656159e-04 7.42838888e-04 3.99298254e-04 2.97535282e-04 2.62033992e-04 5.58640582e-04 1.57552385e-04 1.02615490e-02 6.23031035e-03 2.70719746e-04 7.86956511e-05 4.96635190e-05 2.66920368e-04 4.34027024e-05 7.60412251e-05 2.36579076e-04 8.62796267e-05 1.69352156e-04 2.06851493e-04 1.15831543e-04 1.02396609e-04 5.55612423e-06 1.03773309e-05 6.13102966e-06 3.27813501e-05 5.07395998e-06 1.88889753e-05 1.20606533e-04 4.06391919e-05 2.39816160e-05 1.24797621e-04 5.17407490e-05 1.45336453e-05 6.82256458e-05 9.61127138e-05 1.05139225e-05 5.97369690e-05 2.23211837e-04 3.85189604e-05 8.99504322e-04 5.44335041e-04 5.44335041e-04 4.42692853e-04 7.61118368e-05 5.60306769e-05 5.60116116e-04 7.62026839e-04 1.43560742e-04 4.85046601e-04 1.81666470e-04 6.36144247e-05 1.43753813e-04 8.07701750e-05 2.66105629e-06 6.43933419e-08 3.97460873e-09 + 2025 01 01 12 00 00 3.98963075e-03 2.42916745e-03 1.35586338e-03 9.89541018e-04 7.40946196e-04 3.98534534e-04 2.96754693e-04 2.61161296e-04 5.56386684e-04 1.56872170e-04 1.02116382e-02 6.19842559e-03 2.69751730e-04 7.84076607e-05 4.95309358e-05 2.67807749e-04 4.36012429e-05 7.64400000e-05 2.35929816e-04 8.59176973e-05 1.70088382e-04 2.07889914e-04 1.16176942e-04 1.02469871e-04 5.56900668e-06 1.03632352e-05 6.13037992e-06 3.27936031e-05 5.06636788e-06 1.88974587e-05 1.21107361e-04 4.07164538e-05 2.41788308e-05 1.24439054e-04 5.12932893e-05 1.45307844e-05 6.85302830e-05 9.65993362e-05 1.05028579e-05 5.96533675e-05 2.22867696e-04 3.82165628e-05 8.95091194e-04 5.40035637e-04 5.40035637e-04 4.43939343e-04 7.73118227e-05 5.54469123e-05 5.62634656e-04 7.64267085e-04 1.43345198e-04 4.88919251e-04 1.82103552e-04 6.37740039e-05 1.44125522e-04 8.10594940e-05 2.67708958e-06 6.54547989e-08 4.07661958e-09 diff --git a/srcData/FISM/fismflux_daily_2025a.dat b/srcData/FISM/fismflux_daily_2025a.dat new file mode 100644 index 00000000..b7b712f3 --- /dev/null +++ b/srcData/FISM/fismflux_daily_2025a.dat @@ -0,0 +1,123 @@ +#START + 2024 12 31 12 00 00 3.99588011e-03 2.43364208e-03 1.35866602e-03 9.91656159e-04 7.42838888e-04 3.99298254e-04 2.97535282e-04 2.62033992e-04 5.58640582e-04 1.57552385e-04 1.02615490e-02 6.23031035e-03 2.70719746e-04 7.86956511e-05 4.96635190e-05 2.66920368e-04 4.34027024e-05 7.60412251e-05 2.36579076e-04 8.62796267e-05 1.69352156e-04 2.06851493e-04 1.15831543e-04 1.02396609e-04 5.55612423e-06 1.03773309e-05 6.13102966e-06 3.27813501e-05 5.07395998e-06 1.88889753e-05 1.20606533e-04 4.06391919e-05 2.39816160e-05 1.24797621e-04 5.17407490e-05 1.45336453e-05 6.82256458e-05 9.61127138e-05 1.05139225e-05 5.97369690e-05 2.23211837e-04 3.85189604e-05 8.99504322e-04 5.44335041e-04 5.44335041e-04 4.42692853e-04 7.61118368e-05 5.60306769e-05 5.60116116e-04 7.62026839e-04 1.43560742e-04 4.85046601e-04 1.81666470e-04 6.36144247e-05 1.43753813e-04 8.07701750e-05 2.66105629e-06 6.43933419e-08 3.97460873e-09 + 2025 01 01 12 00 00 3.98963075e-03 2.42916745e-03 1.35586338e-03 9.89541018e-04 7.40946196e-04 3.98534534e-04 2.96754693e-04 2.61161296e-04 5.56386684e-04 1.56872170e-04 1.02116382e-02 6.19842559e-03 2.69751730e-04 7.84076607e-05 4.95309358e-05 2.67807749e-04 4.36012429e-05 7.64400000e-05 2.35929816e-04 8.59176973e-05 1.70088382e-04 2.07889914e-04 1.16176942e-04 1.02469871e-04 5.56900668e-06 1.03632352e-05 6.13037992e-06 3.27936031e-05 5.06636788e-06 1.88974587e-05 1.21107361e-04 4.07164538e-05 2.41788308e-05 1.24439054e-04 5.12932893e-05 1.45307844e-05 6.85302830e-05 9.65993362e-05 1.05028579e-05 5.96533675e-05 2.22867696e-04 3.82165628e-05 8.95091194e-04 5.40035637e-04 5.40035637e-04 4.43939343e-04 7.73118227e-05 5.54469123e-05 5.62634656e-04 7.64267085e-04 1.43345198e-04 4.88919251e-04 1.82103552e-04 6.37740039e-05 1.44125522e-04 8.10594940e-05 2.67708958e-06 6.54547989e-08 4.07661958e-09 + 2025 01 02 12 00 00 3.98739189e-03 2.42743087e-03 1.35478598e-03 9.88729583e-04 7.40220153e-04 3.98267113e-04 2.96473198e-04 2.60841905e-04 5.55571506e-04 1.56597740e-04 1.01945043e-02 6.18779026e-03 2.69378840e-04 7.82721854e-05 4.94715643e-05 2.65820807e-04 4.32485976e-05 7.57327827e-05 2.35198963e-04 8.57365550e-05 1.68683484e-04 2.06057532e-04 1.15445790e-04 1.01742734e-04 5.54607323e-06 1.00297082e-05 6.12415388e-06 3.26870904e-05 5.06269716e-06 1.88349570e-05 1.20120758e-04 4.05792700e-05 2.38305220e-05 1.23726845e-04 5.10761165e-05 1.45036742e-05 6.77269585e-05 9.52114817e-05 1.02414378e-05 5.90412952e-05 2.20939812e-04 3.80662881e-05 8.88455444e-04 5.37944306e-04 5.37944306e-04 4.36797441e-04 7.52024585e-05 5.51575038e-05 5.54332369e-04 7.55443478e-04 1.41931627e-04 4.79126015e-04 1.77690916e-04 6.21706353e-05 1.40428144e-04 7.86169981e-05 2.56872064e-06 5.99521741e-08 3.58152157e-09 + 2025 01 03 12 00 00 3.98207496e-03 2.42485158e-03 1.35307273e-03 9.87208199e-04 7.38738745e-04 3.97516835e-04 2.95780646e-04 2.60098493e-04 5.53652944e-04 1.56274021e-04 1.01471840e-02 6.15590885e-03 2.68757950e-04 7.82320004e-05 4.93939761e-05 2.63049031e-04 4.27407300e-05 7.47147424e-05 2.34869362e-04 8.58029875e-05 1.66637425e-04 2.03423525e-04 1.14410360e-04 1.01277316e-04 5.51302401e-06 1.01089834e-05 6.11304640e-06 3.25815820e-05 5.06454780e-06 1.87558407e-05 1.18742152e-04 4.03817277e-05 2.33297134e-05 1.23239659e-04 5.11821767e-05 1.44553196e-05 6.66739879e-05 9.37107499e-05 1.03035214e-05 5.83680193e-05 2.18305968e-04 3.81255755e-05 8.84622040e-04 5.38947294e-04 5.38947294e-04 4.28268853e-04 7.21735996e-05 5.52744023e-05 5.43813453e-04 7.44153686e-04 1.40582711e-04 4.64126946e-04 1.69942126e-04 5.93546007e-05 1.33932173e-04 7.43002494e-05 2.37533150e-06 4.99883669e-08 2.68123799e-09 + 2025 01 04 12 00 00 3.98216481e-03 2.42515506e-03 1.35324266e-03 9.87251737e-04 7.38731737e-04 3.97500660e-04 2.95777726e-04 2.60098664e-04 5.53670529e-04 1.56328024e-04 1.01473252e-02 6.15590028e-03 2.68803662e-04 7.82645063e-05 4.94075653e-05 2.59801868e-04 4.21265926e-05 7.34832312e-05 2.34433379e-04 8.58600193e-05 1.64224940e-04 2.00233528e-04 1.13184567e-04 1.01012645e-04 5.47307973e-06 1.03338549e-05 6.11168216e-06 3.24684714e-05 5.06620527e-06 1.86696424e-05 1.17077651e-04 4.01428319e-05 2.27233162e-05 1.22823222e-04 5.12768049e-05 1.44493562e-05 6.54259003e-05 9.20654848e-05 1.04797364e-05 5.80859242e-05 2.16137524e-04 3.81770311e-05 8.84157929e-04 5.39840246e-04 5.39840246e-04 4.18688716e-04 6.85021398e-05 5.53762075e-05 5.31213878e-04 7.31327635e-04 1.38979779e-04 4.51808768e-04 1.68478990e-04 5.88236682e-05 1.32711285e-04 7.35344265e-05 2.34432628e-06 4.86440172e-08 2.56633044e-09 + 2025 01 05 12 00 00 3.99377921e-03 2.43040938e-03 1.35673352e-03 9.91063631e-04 7.42777623e-04 3.99358574e-04 2.97427768e-04 2.61873697e-04 5.57966353e-04 1.57011540e-04 1.02455832e-02 6.21897876e-03 2.70139118e-04 7.82538090e-05 4.93601822e-05 2.55671079e-04 4.13678034e-05 7.19617179e-05 2.33284013e-04 8.56488186e-05 1.61321489e-04 1.96292949e-04 1.11664430e-04 9.98652160e-05 5.42372436e-06 1.01685480e-05 6.09865529e-06 3.22980465e-05 5.06171418e-06 1.85521482e-05 1.14964685e-04 3.98476637e-05 2.19742171e-05 1.21575626e-04 5.10125537e-05 1.43926605e-05 6.37873489e-05 8.95768094e-05 1.03501217e-05 5.68117919e-05 2.13666430e-04 3.80000769e-05 8.74558994e-04 5.37303323e-04 5.37303323e-04 4.04701523e-04 6.39673264e-05 5.50342840e-05 5.14137941e-04 7.12525792e-04 1.36324285e-04 4.22744975e-04 1.48084669e-04 5.14106196e-05 1.15604095e-04 6.20847186e-05 1.82546303e-06 2.14575994e-08 9.81319914e-11 + 2025 01 06 12 00 00 3.97181988e-03 2.41767675e-03 1.34856507e-03 9.83788393e-04 7.35669640e-04 3.96253251e-04 2.94498671e-04 2.58669953e-04 5.49957628e-04 1.55194161e-04 1.00644817e-02 6.10276982e-03 2.67198824e-04 7.77827722e-05 4.91626647e-05 2.49879520e-04 4.03457787e-05 6.99115917e-05 2.31520115e-04 8.52640194e-05 1.57130764e-04 1.90976721e-04 1.09511294e-04 9.84315542e-05 5.35728359e-06 9.68716631e-06 6.07909715e-06 3.20077066e-05 5.05326207e-06 1.83665763e-05 1.12114387e-04 3.94500705e-05 2.09638267e-05 1.19812087e-04 5.05168864e-05 1.43075609e-05 6.14817673e-05 8.59292253e-05 9.97271200e-06 5.54066667e-05 2.06830880e-04 3.76754237e-05 8.57931129e-04 5.32554090e-04 5.32554090e-04 3.84462263e-04 5.78436244e-05 5.44055074e-05 4.90630012e-04 6.88322259e-04 1.32513154e-04 4.03406330e-04 1.47483156e-04 5.11923336e-05 1.15102077e-04 6.17689135e-05 1.81260807e-06 2.08943511e-08 4.98079800e-11 + 2025 01 07 12 00 00 3.95215137e-03 2.40463029e-03 1.34031485e-03 9.77532943e-04 7.30062747e-04 3.93796376e-04 2.92052938e-04 2.55971895e-04 5.42921464e-04 1.53290501e-04 9.90178200e-03 5.99652305e-03 2.64353838e-04 7.70934120e-05 4.87522600e-05 2.46758701e-04 3.98583798e-05 6.89345528e-05 2.29446775e-04 8.45241128e-05 1.55053151e-04 1.88448631e-04 1.08381252e-04 9.75215632e-05 5.32556769e-06 9.41840772e-06 6.05356181e-06 3.18207121e-05 5.03668016e-06 1.82388142e-05 1.10671376e-04 3.92604881e-05 2.04831638e-05 1.17960195e-04 4.95466287e-05 1.41964687e-05 6.01998030e-05 8.39394296e-05 9.76197480e-06 5.40108792e-05 2.01397883e-04 3.70484573e-05 8.36957846e-04 5.23268851e-04 5.23268851e-04 3.70816965e-04 5.49364020e-05 5.31895028e-05 4.76516440e-04 6.73039148e-04 1.29408362e-04 3.93080742e-04 1.45907800e-04 5.06197575e-05 1.13780942e-04 6.08872062e-05 1.77283331e-06 1.88240300e-08 0.00000000e+00 + 2025 01 08 12 00 00 3.96493130e-03 2.41168372e-03 1.34489827e-03 9.81292023e-04 7.33580916e-04 3.95511679e-04 2.93678572e-04 2.57731356e-04 5.47501527e-04 1.54234197e-04 1.00129920e-02 6.07089698e-03 2.65971208e-04 7.73002564e-05 4.89509708e-05 2.44403284e-04 3.93981521e-05 6.80118101e-05 2.29189831e-04 8.45819304e-05 1.53358978e-04 1.86059613e-04 1.07521501e-04 9.70458002e-05 5.29562712e-06 9.35751159e-06 6.05074129e-06 3.17388850e-05 5.03783558e-06 1.81834531e-05 1.09423033e-04 3.90814675e-05 2.00289884e-05 1.17629214e-04 4.96151042e-05 1.41842247e-05 5.92845576e-05 8.25531253e-05 9.71422269e-06 5.36374801e-05 2.00900142e-04 3.70962895e-05 8.35607333e-04 5.23928786e-04 5.23928786e-04 3.63759921e-04 5.21878537e-05 5.32815291e-05 4.67228543e-04 6.63807979e-04 1.28229667e-04 3.80537663e-04 1.40314331e-04 4.85862787e-05 1.09086641e-04 5.77263670e-05 1.62822594e-06 1.17096405e-08 0.00000000e+00 + 2025 01 09 12 00 00 3.96776550e-03 2.41474887e-03 1.34673556e-03 9.82471029e-04 7.34526340e-04 3.95769926e-04 2.94005403e-04 2.58122041e-04 5.48518252e-04 1.54755983e-04 1.00316740e-02 6.08152449e-03 2.66578875e-04 7.76087545e-05 4.90639725e-05 2.45257736e-04 3.95251205e-05 6.82670739e-05 2.30352904e-04 8.50559154e-05 1.53880421e-04 1.86726292e-04 1.07830225e-04 9.72354932e-05 5.30385478e-06 9.35196440e-06 6.04962115e-06 3.17959790e-05 5.04825621e-06 1.82230656e-05 1.09837177e-04 3.91308859e-05 2.01555362e-05 1.18436395e-04 5.02261159e-05 1.41793746e-05 5.96878923e-05 8.30419840e-05 9.70985639e-06 5.39032874e-05 2.02189183e-04 3.74962576e-05 8.41926306e-04 5.29782800e-04 5.29782800e-04 3.68289060e-04 5.29600075e-05 5.40562149e-05 4.72073078e-04 6.69121547e-04 1.29591967e-04 3.83416980e-04 1.40795196e-04 4.87608479e-05 1.09488429e-04 5.79826827e-05 1.63893329e-06 1.20422840e-08 0.00000000e+00 + 2025 01 10 12 00 00 3.94345090e-03 2.39752061e-03 1.33593535e-03 9.74522962e-04 7.27529232e-04 3.92830054e-04 2.91014693e-04 2.54797416e-04 5.39831856e-04 1.52178478e-04 9.83456691e-03 5.95403686e-03 2.62885870e-04 7.65796935e-05 4.85178592e-05 2.47585083e-04 4.00810211e-05 6.93828333e-05 2.28120634e-04 8.38204462e-05 1.55871328e-04 1.89625128e-04 1.08733789e-04 9.72255066e-05 5.33996244e-06 9.28809750e-06 6.04238776e-06 3.18055764e-05 5.02038638e-06 1.82285489e-05 1.11171275e-04 3.93471739e-05 2.07062985e-05 1.16870511e-04 4.85964149e-05 1.41479279e-05 6.04282700e-05 8.42704776e-05 9.65976069e-06 5.32362392e-05 2.00064425e-04 3.64478590e-05 8.23723060e-04 5.14192833e-04 5.14192833e-04 3.69902258e-04 5.63040376e-05 5.20218629e-05 4.77818561e-04 6.73124195e-04 1.28476178e-04 3.89894714e-04 1.36267212e-04 4.71145826e-05 1.05687329e-04 5.54152701e-05 1.52090172e-06 7.83533380e-09 0.00000000e+00 + 2025 01 11 12 00 00 3.89418929e-03 2.36463881e-03 1.31515921e-03 9.58833694e-04 7.13500636e-04 3.86699179e-04 2.84899190e-04 2.48047060e-04 5.22216603e-04 1.47370835e-04 9.42763982e-03 5.68842813e-03 2.55730032e-04 7.48242494e-05 4.74827030e-05 2.46499492e-04 4.00761259e-05 6.93729264e-05 2.23890879e-04 8.19136621e-05 1.55437901e-04 1.89598770e-04 1.08335643e-04 9.66822323e-05 5.33964812e-06 9.24740016e-06 6.02922009e-06 3.16282267e-05 4.97752408e-06 1.81035129e-05 1.10867309e-04 3.93452647e-05 2.07013101e-05 1.13681025e-04 4.60891344e-05 1.40906559e-05 5.97523660e-05 8.35956419e-05 9.62780832e-06 5.18534179e-05 1.92531756e-04 3.48310394e-05 7.92230882e-04 4.90202755e-04 4.90202755e-04 3.58038523e-04 5.62730886e-05 4.88853431e-05 4.68371751e-04 6.60685708e-04 1.24315452e-04 3.89411337e-04 1.36606336e-04 4.72377353e-05 1.05970984e-04 5.55986282e-05 1.52874333e-06 8.08805396e-09 0.00000000e+00 + 2025 01 12 12 00 00 3.86747512e-03 2.34531988e-03 1.30307965e-03 9.49976248e-04 7.05718913e-04 3.83493032e-04 2.81614597e-04 2.44384117e-04 5.12661944e-04 1.44453361e-04 9.21297778e-03 5.55030629e-03 2.51602374e-04 7.36108334e-05 4.68505397e-05 2.49027580e-04 4.06899431e-05 7.06057181e-05 2.21136490e-04 8.04225740e-05 1.57650034e-04 1.92808260e-04 1.09328739e-04 9.69955149e-05 5.37948108e-06 9.41193211e-06 6.02101027e-06 3.16446370e-05 4.94417836e-06 1.81040462e-05 1.12335624e-04 3.95841227e-05 2.13108782e-05 1.11894136e-04 4.41374636e-05 1.40549193e-05 6.05606525e-05 8.51225363e-05 9.75667353e-06 5.12778388e-05 1.90047756e-04 3.35681281e-05 7.71475016e-04 4.71523032e-04 4.71523032e-04 3.59351842e-04 5.99813065e-05 4.64362762e-05 4.74184163e-04 6.64970132e-04 1.22818801e-04 4.01262735e-04 1.37955675e-04 4.77283234e-05 1.07103729e-04 5.63638769e-05 1.56393467e-06 9.34284543e-09 0.00000000e+00 + 2025 01 13 12 00 00 3.84654235e-03 2.33254612e-03 1.29490648e-03 9.43528130e-04 6.99806752e-04 3.80778085e-04 2.78976902e-04 2.41499514e-04 5.05159169e-04 1.42652884e-04 9.03582760e-03 5.43342605e-03 2.48751122e-04 7.30563801e-05 4.64593120e-05 2.51113808e-04 4.11322981e-05 7.14944035e-05 2.20470654e-04 7.99562316e-05 1.59219718e-04 1.95124081e-04 1.10089294e-04 9.73461707e-05 5.40817491e-06 9.52708870e-06 6.02560685e-06 3.16900451e-05 4.93396183e-06 1.81334406e-05 1.13481573e-04 3.97562661e-05 2.17506400e-05 1.11550744e-04 4.35382244e-05 1.40748831e-05 6.13093662e-05 8.63982701e-05 9.84688231e-06 5.13858702e-05 1.89252143e-04 3.31749034e-05 7.67799024e-04 4.65780590e-04 4.65780590e-04 3.64007877e-04 6.26589055e-05 4.56748559e-05 4.81286815e-04 6.71087604e-04 1.23107814e-04 4.10153022e-04 1.39105524e-04 4.81464900e-05 1.08069763e-04 5.70225357e-05 1.59465499e-06 1.04578291e-08 0.00000000e+00 + 2025 01 14 12 00 00 3.82999962e-03 2.32337078e-03 1.28894940e-03 9.38614178e-04 6.95192779e-04 3.78552348e-04 2.76865552e-04 2.39211320e-04 4.99219740e-04 1.41417480e-04 8.89243074e-03 5.33779413e-03 2.46644696e-04 7.27730601e-05 4.62024407e-05 2.52803405e-04 4.14688286e-05 7.21709977e-05 2.20508158e-04 7.98544846e-05 1.60410770e-04 1.96891440e-04 1.10689070e-04 9.77342667e-05 5.42998023e-06 9.62464037e-06 6.03161134e-06 3.17390918e-05 4.93206644e-06 1.81671788e-05 1.14396373e-04 3.98872508e-05 2.20861126e-05 1.11716410e-04 4.34249523e-05 1.41009645e-05 6.19571959e-05 8.74512552e-05 9.92326750e-06 5.17285857e-05 1.89015088e-04 3.30918760e-05 7.69264387e-04 4.64683818e-04 4.64683818e-04 3.69052223e-04 6.47061155e-05 4.55158442e-05 4.87915074e-04 6.77350904e-04 1.23887526e-04 4.19718949e-04 1.43614706e-04 4.97858195e-05 1.11854357e-04 5.95730978e-05 1.71150438e-06 1.54759690e-08 0.00000000e+00 + 2025 01 15 12 00 00 3.87592471e-03 2.35226386e-03 1.30735595e-03 9.52798819e-04 7.08023708e-04 3.84401773e-04 2.82598445e-04 2.45493698e-04 5.15631141e-04 1.45528555e-04 9.27919715e-03 5.59276491e-03 2.53019035e-04 7.40887640e-05 4.70722935e-05 2.54991636e-04 4.17305593e-05 7.26981380e-05 2.23458361e-04 8.10804893e-05 1.61856888e-04 1.98276320e-04 1.11542781e-04 9.83945566e-05 5.44689501e-06 9.62555350e-06 6.04257766e-06 3.19226518e-05 4.95999193e-06 1.82962434e-05 1.15325432e-04 3.99891607e-05 2.23487237e-05 1.14176583e-04 4.50562366e-05 1.41486220e-05 6.29902039e-05 8.87129137e-05 9.92387577e-06 5.29893647e-05 1.96229742e-04 3.41344654e-05 7.91716557e-04 4.80280071e-04 4.80280071e-04 3.81503809e-04 6.63172163e-05 4.75403445e-05 4.99716176e-04 6.92132783e-04 1.27322557e-04 4.28569902e-04 1.48365145e-04 5.15129102e-05 1.15841800e-04 6.22631647e-05 1.83494544e-06 2.20601517e-08 1.55531765e-10 + 2025 01 16 12 00 00 3.90890015e-03 2.37648295e-03 1.32247064e-03 9.63739964e-04 7.17556819e-04 3.88311340e-04 2.86627862e-04 2.49992931e-04 5.27401793e-04 1.49197853e-04 9.54344853e-03 5.76274246e-03 2.58163987e-04 7.56309616e-05 4.78667273e-05 2.55651791e-04 4.16517723e-05 7.25414779e-05 2.27629083e-04 8.30054341e-05 1.61837615e-04 1.97881720e-04 1.11705480e-04 9.94950693e-05 5.44170798e-06 9.91412962e-06 6.07421789e-06 3.20763517e-05 5.00349379e-06 1.84052260e-05 1.15421195e-04 3.99585697e-05 2.22733419e-05 1.17591876e-04 4.75995243e-05 1.42862264e-05 6.35020493e-05 8.94015220e-05 1.01500082e-05 5.53174489e-05 2.02662902e-04 3.57686018e-05 8.29390520e-04 5.04606962e-04 5.04606962e-04 3.93002264e-04 6.58729754e-05 5.07116783e-05 5.07680272e-04 7.03766773e-04 1.31425537e-04 4.44284998e-04 1.70576671e-04 5.95872883e-05 1.34479067e-04 7.47830687e-05 2.40563151e-06 5.22137668e-08 2.89953661e-09 + 2025 01 17 12 00 00 3.95039516e-03 2.40447033e-03 1.34012984e-03 9.76980681e-04 7.29344912e-04 3.93442568e-04 2.91763800e-04 2.55667183e-04 5.42227380e-04 1.53302781e-04 9.88547174e-03 5.98584414e-03 2.64233335e-04 7.71517325e-05 4.87568311e-05 2.61341092e-04 4.25254373e-05 7.42961536e-05 2.32113061e-04 8.46845738e-05 1.65645770e-04 2.02449926e-04 1.13805307e-04 1.01165101e-04 5.49840297e-06 1.02532038e-05 6.10538991e-06 3.24293215e-05 5.04146374e-06 1.86467721e-05 1.18086401e-04 4.02985403e-05 2.31409620e-05 1.21452102e-04 4.98192501e-05 1.44218080e-05 6.59395928e-05 9.29311519e-05 1.04157276e-05 5.77832537e-05 2.12959610e-04 3.71942471e-05 8.67067671e-04 5.25838230e-04 5.25838230e-04 4.18847406e-04 7.11510831e-05 5.34785213e-05 5.34633767e-04 7.34102085e-04 1.37674377e-04 4.68368906e-04 1.80522856e-04 6.32033574e-05 1.42827689e-04 8.04150088e-05 2.66404459e-06 6.59954097e-08 4.15690735e-09 + 2025 01 18 12 00 00 3.97038683e-03 2.42116751e-03 1.35039393e-03 9.84039228e-04 7.35291035e-04 3.95641642e-04 2.94153472e-04 2.58384279e-04 5.49351456e-04 1.55941690e-04 1.00379961e-02 6.08145148e-03 2.67679650e-04 7.84232226e-05 4.93211849e-05 2.60506582e-04 4.22208483e-05 7.36857590e-05 2.35716309e-04 8.64514150e-05 1.64603885e-04 2.00872102e-04 1.13437080e-04 1.01084895e-04 5.47857417e-06 9.97668685e-06 6.11163705e-06 3.24781943e-05 5.08141056e-06 1.86958246e-05 1.17518542e-04 4.01800731e-05 2.28409175e-05 1.23908439e-04 5.21545415e-05 1.44489371e-05 6.58484373e-05 9.22973726e-05 1.01988633e-05 5.86352686e-05 2.16233940e-04 3.86942993e-05 8.91322491e-04 5.48175117e-04 5.48175117e-04 4.23847226e-04 6.93380251e-05 5.63897542e-05 5.36589607e-04 7.37900021e-04 1.40628976e-04 4.65409359e-04 1.83235326e-04 6.41899718e-05 1.45107776e-04 8.19794701e-05 2.73771054e-06 7.00650205e-08 4.53172753e-09 + 2025 01 19 12 00 00 3.99036847e-03 2.43502155e-03 1.35910364e-03 9.90478578e-04 7.40975083e-04 3.98076879e-04 2.96613228e-04 2.61110023e-04 5.56483371e-04 1.57993948e-04 1.02014154e-02 6.18768595e-03 2.70661010e-04 7.92105096e-05 4.97553840e-05 2.60649270e-04 4.21529869e-05 7.35508220e-05 2.37669324e-04 8.73658515e-05 1.64517050e-04 2.00532222e-04 1.13476361e-04 1.01145056e-04 5.47410636e-06 9.71602349e-06 6.12010190e-06 3.25270377e-05 5.10219725e-06 1.87435369e-05 1.17485640e-04 4.01537225e-05 2.27759883e-05 1.25399890e-04 5.33690967e-05 1.44857157e-05 6.60253539e-05 9.22096403e-05 9.99434924e-06 5.94124659e-05 2.19352751e-04 3.94715928e-05 9.05735041e-04 5.59788477e-04 5.59788477e-04 4.28434334e-04 6.89554028e-05 5.78988693e-05 5.39710076e-04 7.42839312e-04 1.42453235e-04 4.70368703e-04 1.91116668e-04 6.70555775e-05 1.51724898e-04 8.64568410e-05 2.94411309e-06 8.11450292e-08 5.54442252e-09 + 2025 01 20 12 00 00 4.02962230e-03 2.46109264e-03 1.37558876e-03 1.00292634e-03 7.52103867e-04 4.02965855e-04 3.01483969e-04 2.66482417e-04 5.70514468e-04 1.61795147e-04 1.05264553e-02 6.40016496e-03 2.76338967e-04 8.05833131e-05 5.05749347e-05 2.62229096e-04 4.22917685e-05 7.38306320e-05 2.41060421e-04 8.88403913e-05 1.65405328e-04 2.01269711e-04 1.14067659e-04 1.01751268e-04 5.48306198e-06 9.83043137e-06 6.13160737e-06 3.26976738e-05 5.13539053e-06 1.88606796e-05 1.18097453e-04 4.02077771e-05 2.29157566e-05 1.28020645e-04 5.53104735e-05 1.45357320e-05 6.68418756e-05 9.32181560e-05 1.00839410e-05 6.06006435e-05 2.25821291e-04 4.07222920e-05 9.31298311e-04 5.78362308e-04 5.78362308e-04 4.40001725e-04 6.98154385e-05 6.03253953e-05 5.49956895e-04 7.55460339e-04 1.46070642e-04 4.72740017e-04 1.90103120e-04 6.66879001e-05 1.50879977e-04 8.59333879e-05 2.92342323e-06 8.02905646e-08 5.47270069e-09 + 2025 01 21 12 00 00 4.04475201e-03 2.47036662e-03 1.38151927e-03 1.00754106e-03 7.56300927e-04 4.04911830e-04 3.03377639e-04 2.68551577e-04 5.75920963e-04 1.63098472e-04 1.06548776e-02 6.48515522e-03 2.78398494e-04 8.09748324e-05 5.08514200e-05 2.63009023e-04 4.23855963e-05 7.40207033e-05 2.41878982e-04 8.91699572e-05 1.65924041e-04 2.01778230e-04 1.14362764e-04 1.02108027e-04 5.48907447e-06 9.94341099e-06 6.14152959e-06 3.27607145e-05 5.14292187e-06 1.89034697e-05 1.18420477e-04 4.02443548e-05 2.30118865e-05 1.28802221e-04 5.57502557e-05 1.45788683e-05 6.71894564e-05 9.37638326e-05 1.01724014e-05 6.12042954e-05 2.28355108e-04 4.10027482e-05 9.40104509e-04 5.82566159e-04 5.82566159e-04 4.44286505e-04 7.04150414e-05 6.08701142e-05 5.53824373e-04 7.60292143e-04 1.47119684e-04 4.76700569e-04 1.92837478e-04 6.76824024e-05 1.53177936e-04 8.75058704e-05 2.99716831e-06 8.43428126e-08 5.84539563e-09 + 2025 01 22 12 00 00 4.03934608e-03 2.46755395e-03 1.37967458e-03 1.00597076e-03 7.54802934e-04 4.04167162e-04 3.02681902e-04 2.67801949e-04 5.73978659e-04 1.62732693e-04 1.06073572e-02 6.45327568e-03 2.77740297e-04 8.09146359e-05 5.07778626e-05 2.59329389e-04 4.17081057e-05 7.26627593e-05 2.41317462e-04 8.91926931e-05 1.63211190e-04 1.98265928e-04 1.12982605e-04 1.01214545e-04 5.44498071e-06 9.84422077e-06 6.13119846e-06 3.26058451e-05 5.14353524e-06 1.87981827e-05 1.16565099e-04 3.99808399e-05 2.23440482e-05 1.27992832e-04 5.57855295e-05 1.45338970e-05 6.57542888e-05 9.16037644e-05 1.00946119e-05 6.02398657e-05 2.25057687e-04 4.10228822e-05 9.34536746e-04 5.82900271e-04 5.82900271e-04 4.32704784e-04 6.63772225e-05 6.09097071e-05 5.39578850e-04 7.44740499e-04 1.45212930e-04 4.53919534e-04 1.78770793e-04 6.25693105e-05 1.41378143e-04 7.96055007e-05 2.63894341e-06 6.55575832e-08 4.13952606e-09 + 2025 01 23 12 00 00 4.04799501e-03 2.47166579e-03 1.38241500e-03 1.00834678e-03 7.57088070e-04 4.05377823e-04 3.03793518e-04 2.68988074e-04 5.77073598e-04 1.63231780e-04 1.06854184e-02 6.50639385e-03 2.78723074e-04 8.09353377e-05 5.08810793e-05 2.59570717e-04 4.17484029e-05 7.27445644e-05 2.40993595e-04 8.90238211e-05 1.63458711e-04 1.98486164e-04 1.13094649e-04 1.01314444e-04 5.44755530e-06 9.94472721e-06 6.13537413e-06 3.26201452e-05 5.13979285e-06 1.88049831e-05 1.16660066e-04 3.99965589e-05 2.23856361e-05 1.27870267e-04 5.55662962e-05 1.45520462e-05 6.58221874e-05 9.18121342e-05 1.01733407e-05 6.03071608e-05 2.25938651e-04 4.08801396e-05 9.34444160e-04 5.80800790e-04 5.80800790e-04 4.32993482e-04 6.66380860e-05 6.06330752e-05 5.39861191e-04 7.45122756e-04 1.45004128e-04 4.53019316e-04 1.76559052e-04 6.17657774e-05 1.39525770e-04 7.83886559e-05 2.58545423e-06 6.28802383e-08 3.89964896e-09 + 2025 01 24 12 00 00 4.00371111e-03 2.44363845e-03 1.36457506e-03 9.94560163e-04 7.44594789e-04 3.99735293e-04 2.98254206e-04 2.62909865e-04 5.61226775e-04 1.59224225e-04 1.03138213e-02 6.26202896e-03 2.72537837e-04 7.96131199e-05 5.00190597e-05 2.60772490e-04 4.21256671e-05 7.35023641e-05 2.38508928e-04 8.77622864e-05 1.64568073e-04 2.00459969e-04 1.13546797e-04 1.01397021e-04 5.47203199e-06 1.01824095e-05 6.12146468e-06 3.25828051e-05 5.11157668e-06 1.87653880e-05 1.17497875e-04 4.01433674e-05 2.27604818e-05 1.26013822e-04 5.39148750e-05 1.44915117e-05 6.61443580e-05 9.26568988e-05 1.03596132e-05 5.93795108e-05 2.21042843e-04 3.98116128e-05 9.13829656e-04 5.64995036e-04 5.64995036e-04 4.30923207e-04 6.89194188e-05 5.85609465e-05 5.41464961e-04 7.44112528e-04 1.43290797e-04 4.56173414e-04 1.71957114e-04 6.00932879e-05 1.35667366e-04 7.58206314e-05 2.47011562e-06 5.69154224e-08 3.36011681e-09 + 2025 01 25 12 00 00 3.98140679e-03 2.42515166e-03 1.35320099e-03 9.86635611e-04 7.37857071e-04 3.97252462e-04 2.95567454e-04 2.59854749e-04 5.53252713e-04 1.56299376e-04 1.01438740e-02 6.15577884e-03 2.68703151e-04 7.81938068e-05 4.93872169e-05 2.57330709e-04 4.16679424e-05 7.25843944e-05 2.33773270e-04 8.58004147e-05 1.62592559e-04 1.98081166e-04 1.12362730e-04 9.99206236e-05 5.44226714e-06 9.82525453e-06 6.09029921e-06 3.23225186e-05 5.06779215e-06 1.85861000e-05 1.15954804e-04 3.99653101e-05 2.23083203e-05 1.22207060e-04 5.13516832e-05 1.43558966e-05 6.45545571e-05 9.03591994e-05 1.00796278e-05 5.69188490e-05 2.13673884e-04 3.81506979e-05 8.74594719e-04 5.40459529e-04 5.40459529e-04 4.10949160e-04 6.61807309e-05 5.53405436e-05 5.22312769e-04 7.21958994e-04 1.37625579e-04 4.34179052e-04 1.54470184e-04 5.37368604e-05 1.20997694e-04 6.59922203e-05 2.02399573e-06 3.34852729e-08 1.23153479e-09 + 2025 01 26 12 00 00 3.92921763e-03 2.38907745e-03 1.33051300e-03 9.69703169e-04 7.22820872e-04 3.90852127e-04 2.89110778e-04 2.52695422e-04 5.34581943e-04 1.50945048e-04 9.71795131e-03 5.87953702e-03 2.60912690e-04 7.61075145e-05 4.82250100e-05 2.58529782e-04 4.21204400e-05 7.34926783e-05 2.28825938e-04 8.33899307e-05 1.63940587e-04 2.00441519e-04 1.12833771e-04 9.95089025e-05 5.47165546e-06 9.78728713e-06 6.08506671e-06 3.22083521e-05 5.01393552e-06 1.85066099e-05 1.16832137e-04 4.01413650e-05 2.27567551e-05 1.18656568e-04 4.81992902e-05 1.43331112e-05 6.46776915e-05 9.09579897e-05 1.00498146e-05 5.55289842e-05 2.07129132e-04 3.61094950e-05 8.40246342e-04 5.10285934e-04 5.10285934e-04 4.04273340e-04 6.89040637e-05 5.13824751e-05 5.20309519e-04 7.15962497e-04 1.33732368e-04 4.35356332e-04 1.45886187e-04 5.06167533e-05 1.13797638e-04 6.11762791e-05 1.80596952e-06 2.20779345e-08 1.96304661e-10 + 2025 01 27 12 00 00 3.90068641e-03 2.36878411e-03 1.31779682e-03 9.60311556e-04 7.14533147e-04 3.87399100e-04 2.85593150e-04 2.48780360e-04 5.24373290e-04 1.47898374e-04 9.48741231e-03 5.73079027e-03 2.56558238e-04 7.48723971e-05 4.75803081e-05 2.60589499e-04 4.26515326e-05 7.45586003e-05 2.25979391e-04 8.18947214e-05 1.65799714e-04 2.03210493e-04 1.13648597e-04 9.95591000e-05 5.50615405e-06 9.86612285e-06 6.07491274e-06 3.22010058e-05 4.98061345e-06 1.84933901e-05 1.18065712e-04 4.03479993e-05 2.32828563e-05 1.16696319e-04 4.62483149e-05 1.42889345e-05 6.52923623e-05 9.21431100e-05 1.01116668e-05 5.46867115e-05 2.04092885e-04 3.48440517e-05 8.18227783e-04 4.91609052e-04 4.91609052e-04 4.03982600e-04 7.20979646e-05 4.89291153e-05 5.24288943e-04 7.17916932e-04 1.31972846e-04 4.41107910e-04 1.41118516e-04 4.88835880e-05 1.09797087e-04 5.84882116e-05 1.68339583e-06 1.55980224e-08 0.00000000e+00 + 2025 01 28 12 00 00 3.89524506e-03 2.36592919e-03 1.31592661e-03 9.58715051e-04 7.13007696e-04 3.86649758e-04 2.84891238e-04 2.48022680e-04 5.22414327e-04 1.47523809e-04 9.43976664e-03 5.69890812e-03 2.55889689e-04 7.48001309e-05 4.74954462e-05 2.60119314e-04 4.25688777e-05 7.43937970e-05 2.25911000e-04 8.19043722e-05 1.65435444e-04 2.02791615e-04 1.13463526e-04 9.95706111e-05 5.50073273e-06 9.89632681e-06 6.07414622e-06 3.21784767e-05 4.98105437e-06 1.84771804e-05 1.17849226e-04 4.03158891e-05 2.32029648e-05 1.16650462e-04 4.62727388e-05 1.42855846e-05 6.51214437e-05 9.19163764e-05 1.01353275e-05 5.46996855e-05 2.03286391e-04 3.48540925e-05 8.17890504e-04 4.91835317e-04 4.91835317e-04 4.02630595e-04 7.16229668e-05 4.89497732e-05 5.22595207e-04 7.16233247e-04 1.31766270e-04 4.42211038e-04 1.44579325e-04 5.01416494e-05 1.12700851e-04 6.04377488e-05 1.77218006e-06 2.02831281e-08 3.27363914e-11 + 2025 01 29 12 00 00 3.89622058e-03 2.36808050e-03 1.31715809e-03 9.59320039e-04 7.13376720e-04 3.86638365e-04 2.84967874e-04 2.48142035e-04 5.22747612e-04 1.47924949e-04 9.44232766e-03 5.69889918e-03 2.56271773e-04 7.50780629e-05 4.75719937e-05 2.58027288e-04 4.21439705e-05 7.35424983e-05 2.26569090e-04 8.23808194e-05 1.63774926e-04 2.00592844e-04 1.12659071e-04 9.93206995e-05 5.47306081e-06 9.83545033e-06 6.07207367e-06 3.21139818e-05 4.99195776e-06 1.84358408e-05 1.16764736e-04 4.01506375e-05 2.27847791e-05 1.16992969e-04 4.69093415e-05 1.42765304e-05 6.43815617e-05 9.07156579e-05 1.00875477e-05 5.47098629e-05 2.02402679e-04 3.52596777e-05 8.22169916e-04 4.97920066e-04 4.97920066e-04 3.98195054e-04 6.90979592e-05 4.97376081e-05 5.15880028e-04 7.09935861e-04 1.31586910e-04 4.37072167e-04 1.47881997e-04 5.13424766e-05 1.15473747e-04 6.23139244e-05 1.85866621e-06 2.49255450e-08 4.57038674e-10 + 2025 01 30 12 00 00 3.90076329e-03 2.37209848e-03 1.31961272e-03 9.60942578e-04 7.14704704e-04 3.87112749e-04 2.85498868e-04 2.48749996e-04 5.24356124e-04 1.48567108e-04 9.47640855e-03 5.72013780e-03 2.57086691e-04 7.54008320e-05 4.77198606e-05 2.52219541e-04 4.10178880e-05 7.12844834e-05 2.26410622e-04 8.28372606e-05 1.58971115e-04 1.94744513e-04 1.10459459e-04 9.01618000e-05 5.39981665e-06 9.79990509e-06 6.06851281e-06 3.19065550e-05 5.00248025e-06 1.82952951e-05 1.13353629e-04 3.97125987e-05 2.16730303e-05 1.09248832e-04 4.75232519e-05 1.42609890e-05 6.16320375e-05 8.70111531e-05 1.00596095e-05 4.60684694e-05 1.98366600e-04 3.56488745e-05 8.22962996e-04 5.03785349e-04 5.03785349e-04 3.80905860e-04 6.23675063e-05 5.04940108e-05 4.94389943e-04 6.59851557e-04 1.29391164e-04 3.02393001e-04 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 2025 01 31 12 00 00 3.94279527e-03 2.39841909e-03 1.33639184e-03 9.73906500e-04 7.26448905e-04 3.92478140e-04 2.90750638e-04 2.54502757e-04 5.39379851e-04 1.52305385e-04 9.83078806e-03 5.95386326e-03 2.62902153e-04 7.65901151e-05 4.85188241e-05 2.51575976e-04 4.07554558e-05 7.07599509e-05 2.28759818e-04 8.39267799e-05 1.58744272e-04 1.93400298e-04 1.10228156e-04 9.91551847e-05 5.38266722e-06 1.00522499e-05 6.08357841e-06 3.19810597e-05 5.02722105e-06 1.83421033e-05 1.13238976e-04 3.96105839e-05 2.14170213e-05 1.18608414e-04 4.89689875e-05 1.43264828e-05 6.21008315e-05 8.73163686e-05 1.02573627e-05 5.56036547e-05 2.04205758e-04 3.65747808e-05 8.44979264e-04 5.17610088e-04 5.17610088e-04 3.85779568e-04 6.08332397e-05 5.22915216e-05 4.94586903e-04 6.92118558e-04 1.31095409e-04 4.23905058e-04 1.63628758e-04 5.70673266e-05 1.28690534e-04 7.12242832e-05 2.26710174e-06 4.66780207e-08 2.44087488e-09 + 2025 02 01 12 00 00 3.95577111e-03 2.40885028e-03 1.34283203e-03 9.78387535e-04 7.30253456e-04 3.93936522e-04 2.92309297e-04 2.56264329e-04 5.44002042e-04 1.53932878e-04 9.93148169e-03 6.01759925e-03 2.65070939e-04 7.73466825e-05 4.88750216e-05 2.49151442e-04 4.02143545e-05 6.96756877e-05 2.30517055e-04 8.49474513e-05 1.56722290e-04 1.90598433e-04 1.09291920e-04 9.83399410e-05 5.34743594e-06 9.53778435e-06 6.08416012e-06 3.19131117e-05 5.05037424e-06 1.83175966e-05 1.11912811e-04 3.94001312e-05 2.08841826e-05 1.19556267e-04 5.03220712e-05 1.43289755e-05 6.12729992e-05 8.55719801e-05 9.85401566e-06 5.55638956e-05 2.04800057e-04 3.74419673e-05 8.55583079e-04 5.30549698e-04 5.30549698e-04 3.82489326e-04 5.76144375e-05 5.39749220e-05 4.88084054e-04 6.86141995e-04 1.31768060e-04 4.09914221e-04 1.57597187e-04 5.48751117e-05 1.23632377e-04 6.78489134e-05 2.11486293e-06 3.87559751e-08 1.72304304e-09 + 2025 02 02 12 00 00 3.99995566e-03 2.43678409e-03 1.36061558e-03 9.92101838e-04 7.42665291e-04 3.99560767e-04 2.97829499e-04 2.62319130e-04 5.59803262e-04 1.57920961e-04 1.03027083e-02 6.26195520e-03 2.71232224e-04 7.86439157e-05 4.97116386e-05 2.50261065e-04 4.02580452e-05 6.97647163e-05 2.33315283e-04 8.61844514e-05 1.57297272e-04 1.90840950e-04 1.09694893e-04 9.96443465e-05 5.35021136e-06 1.00669320e-05 6.11038049e-06 3.20797193e-05 5.07823606e-06 1.84210110e-05 1.12248939e-04 3.94171861e-05 2.09298858e-05 1.22144774e-04 5.19515248e-05 1.44430349e-05 6.18860550e-05 8.66674244e-05 1.02689541e-05 5.75951020e-05 2.11639360e-04 3.84913117e-05 8.84127300e-04 5.46138734e-04 5.46138734e-04 3.92445995e-04 5.79040963e-05 5.60108689e-05 4.95503649e-04 6.97279661e-04 1.34713761e-04 4.26370150e-04 1.78082187e-04 6.23217533e-05 1.40820191e-04 7.93889600e-05 2.64044295e-06 6.64930269e-08 4.24629718e-09 + 2025 02 03 12 00 00 4.00843286e-03 2.44338802e-03 1.36470541e-03 9.94973419e-04 7.45117573e-04 4.00532153e-04 2.98851237e-04 2.63467025e-04 5.62816732e-04 1.58938608e-04 1.03693482e-02 6.30444512e-03 2.72610479e-04 7.90924068e-05 4.99306680e-05 2.51106349e-04 4.03488229e-05 6.99485885e-05 2.34673322e-04 8.67742230e-05 1.57737981e-04 1.91332717e-04 1.09974797e-04 1.00064735e-04 5.35602849e-06 1.01976213e-05 6.12621079e-06 3.21507185e-05 5.09196070e-06 1.84720892e-05 1.12601758e-04 3.94525763e-05 2.10228536e-05 1.23317179e-04 5.27514960e-05 1.45118829e-05 6.22850286e-05 8.72826559e-05 1.03714381e-05 5.84469923e-05 2.14085980e-04 3.89952591e-05 8.98171088e-04 5.53777488e-04 5.53777488e-04 3.98236338e-04 5.84838155e-05 5.69909578e-05 5.00520361e-04 7.03069557e-04 1.36346285e-04 4.30763431e-04 1.81365890e-04 6.35155735e-05 1.43576357e-04 8.12474409e-05 2.72565796e-06 7.10332998e-08 4.66042032e-09 + 2025 02 04 12 00 00 3.99922995e-03 2.43823516e-03 1.36136578e-03 9.92240328e-04 7.42562255e-04 3.99299250e-04 2.97680137e-04 2.62197748e-04 5.59517703e-04 1.58243009e-04 1.02896775e-02 6.25131875e-03 2.71433460e-04 7.89371620e-05 4.97999443e-05 2.51000010e-04 4.03579295e-05 6.99686119e-05 2.34531350e-04 8.67112132e-05 1.57703332e-04 1.91399398e-04 1.09952621e-04 9.97620003e-05 5.35653853e-06 1.00634679e-05 6.11190335e-06 3.21282593e-05 5.09058664e-06 1.84570091e-05 1.12617710e-04 3.94561939e-05 2.10350379e-05 1.23008836e-04 5.26708725e-05 1.44496167e-05 6.22551997e-05 8.71114057e-05 1.02663420e-05 5.78432100e-05 2.12670536e-04 3.89421853e-05 8.92085527e-04 5.53004583e-04 5.53004583e-04 3.97089170e-04 5.85736765e-05 5.68882213e-05 5.00238480e-04 7.02144393e-04 1.36157706e-04 4.26057627e-04 1.74675807e-04 6.10834744e-05 1.37962077e-04 7.74699087e-05 2.55303516e-06 6.18796719e-08 3.82660552e-09 + 2025 02 05 12 00 00 3.98901066e-03 2.43095576e-03 1.35680637e-03 9.88867414e-04 7.39582634e-04 3.98060312e-04 2.96418881e-04 2.60793929e-04 5.55861044e-04 1.57149109e-04 1.02072369e-02 6.19819164e-03 2.69872225e-04 7.84895914e-05 4.95574951e-05 2.45721484e-04 3.94383911e-05 6.81247271e-05 2.32531533e-04 8.61743814e-05 1.54002903e-04 1.86623556e-04 1.08015181e-04 9.82924027e-05 5.29672870e-06 9.66522493e-06 6.08733499e-06 3.18665245e-05 5.07854238e-06 1.82833873e-05 1.10018994e-04 3.90985020e-05 2.01271687e-05 1.21019896e-04 5.19661873e-05 1.43427213e-05 6.01385067e-05 8.37968908e-05 9.95420633e-06 5.61258682e-05 2.06841739e-04 3.84871790e-05 8.72569426e-04 5.46261342e-04 5.46261342e-04 3.77667460e-04 5.30773657e-05 5.60056593e-05 4.78085316e-04 6.78486308e-04 1.32282815e-04 4.01045814e-04 1.63882322e-04 5.71596647e-05 1.28904462e-04 7.13772506e-05 2.27473931e-06 4.71316511e-08 2.48342218e-09 + 2025 02 06 12 00 00 3.97700960e-03 2.42271049e-03 1.35161676e-03 9.84988022e-04 7.36134485e-04 3.96584831e-04 2.94933585e-04 2.59148489e-04 5.51568809e-04 1.55928690e-04 1.01090718e-02 6.13444448e-03 2.68089711e-04 7.80237173e-05 4.93028056e-05 2.44683306e-04 3.93057242e-05 6.78603130e-05 2.31226305e-04 8.56372702e-05 1.53393936e-04 1.85952190e-04 1.07654815e-04 9.80945039e-05 5.28802448e-06 9.81195408e-06 6.07389484e-06 3.17987602e-05 5.06650067e-06 1.82259989e-05 1.09580259e-04 3.90469620e-05 1.99990973e-05 1.19950140e-04 5.12615836e-05 1.42842255e-05 5.96878466e-05 8.33122016e-05 1.00692916e-05 5.53660435e-05 2.04077496e-04 3.80320125e-05 8.61014938e-04 5.39518474e-04 5.39518474e-04 3.71856141e-04 5.23166731e-05 5.51228353e-05 4.72651578e-04 6.72053096e-04 1.30694367e-04 3.94771364e-04 1.58808072e-04 5.53147271e-05 1.24644327e-04 6.84960805e-05 2.14201888e-06 4.00143634e-08 1.83309599e-09 + 2025 02 07 12 00 00 3.94538118e-03 2.39872691e-03 1.33670841e-03 9.74262813e-04 7.26823778e-04 3.92881958e-04 2.91073258e-04 2.54816597e-04 5.40262557e-04 1.52245656e-04 9.85920255e-03 5.97507395e-03 2.63022105e-04 7.63960349e-05 4.84950827e-05 2.47634962e-04 4.00450022e-05 6.93457958e-05 2.27256330e-04 8.35409970e-05 1.56070105e-04 1.89825608e-04 1.08831078e-04 9.81419255e-05 5.33596467e-06 9.85313527e-06 6.06472022e-06 3.17918404e-05 5.01951945e-06 1.82142651e-05 1.11304285e-04 3.93346680e-05 2.07345569e-05 1.17265549e-04 4.85125027e-05 1.42442805e-05 6.05664226e-05 8.49614334e-05 1.01015961e-05 5.43471104e-05 2.00759328e-04 3.62556835e-05 8.31551738e-04 5.13210101e-04 5.13210101e-04 3.71858836e-04 5.67973475e-05 5.16776054e-05 4.78334539e-04 6.75202604e-04 1.28264807e-04 4.03703831e-04 1.53296032e-04 5.33108005e-05 1.20018007e-04 6.53781490e-05 1.99916931e-06 3.24117941e-08 1.13987175e-09 + 2025 02 08 12 00 00 3.87715561e-03 2.35432841e-03 1.30855769e-03 9.52755730e-04 7.07461422e-04 3.84290184e-04 2.82569327e-04 2.45455969e-04 5.15852698e-04 1.45819624e-04 9.29144592e-03 5.60321473e-03 2.53293536e-04 7.41569615e-05 4.71271031e-05 2.42976666e-04 3.94371513e-05 6.81277015e-05 2.21579674e-04 8.12309503e-05 1.53109257e-04 1.86677200e-04 1.07105257e-04 9.67291819e-05 5.29639183e-06 9.65508589e-06 6.03197732e-06 3.14299204e-05 4.96781395e-06 1.79622575e-05 1.09292065e-04 3.90982488e-05 2.01358387e-05 1.12652018e-04 4.54865745e-05 1.41017910e-05 5.84678617e-05 8.21434144e-05 9.94632210e-06 5.17641554e-05 1.88083189e-04 3.42987594e-05 7.85573511e-04 4.84250160e-04 4.84250160e-04 3.46641816e-04 5.31797996e-05 4.78824688e-05 4.54028497e-04 6.46639604e-04 1.21438546e-04 3.88530028e-04 1.48826925e-04 5.16860322e-05 1.16266970e-04 6.28495829e-05 1.88328352e-06 2.62413838e-08 5.77163117e-10 + 2025 02 09 12 00 00 3.83165714e-03 2.32377867e-03 1.28927035e-03 9.38202603e-04 6.94454172e-04 3.78637611e-04 2.76920551e-04 2.39215180e-04 4.99576467e-04 1.41339222e-04 8.91652367e-03 5.35884909e-03 2.46651218e-04 7.24993383e-05 4.61644372e-05 2.42764035e-04 3.95860028e-05 6.84281287e-05 2.17662141e-04 7.94061809e-05 1.53325891e-04 1.87471793e-04 1.07049342e-04 9.62088387e-05 5.30598154e-06 9.60920952e-06 6.01758766e-06 3.12927772e-05 4.92696090e-06 1.78646096e-05 1.09428760e-04 3.91562382e-05 2.02863419e-05 1.09685021e-04 4.30958171e-05 1.40391639e-05 5.81462499e-05 8.19553557e-05 9.91039487e-06 5.03238446e-05 1.81510087e-04 3.27528600e-05 7.55436300e-04 4.61369473e-04 4.61369473e-04 3.37804590e-04 5.41088346e-05 4.48843959e-05 4.48316016e-04 6.37747916e-04 1.17892643e-04 3.85885285e-04 1.42247653e-04 4.92940755e-05 1.10744661e-04 5.91258049e-05 1.71253383e-06 1.71432539e-08 0.00000000e+00 + 2025 02 10 12 00 00 3.80855474e-03 2.30917729e-03 1.27997461e-03 9.31009857e-04 6.87931363e-04 3.75691014e-04 2.74029207e-04 2.36042846e-04 4.91308047e-04 1.39252146e-04 8.72263844e-03 5.23135290e-03 2.43427154e-04 7.18134654e-05 4.57192026e-05 2.43530495e-04 3.98029049e-05 6.88650704e-05 2.16395006e-04 7.87527708e-05 1.53994098e-04 1.88620393e-04 1.07331308e-04 9.61803657e-05 5.31999540e-06 9.66665903e-06 6.01422471e-06 3.12728669e-05 4.91236315e-06 1.78482931e-05 1.09926712e-04 3.92406946e-05 2.05041259e-05 1.08736610e-04 4.22413403e-05 1.40245233e-05 5.83589363e-05 8.24286655e-05 9.95548253e-06 4.98898548e-05 1.79169331e-04 3.21995583e-05 7.45721294e-04 4.53190692e-04 4.53190692e-04 3.37314650e-04 5.54456550e-05 4.38115036e-05 4.49728852e-04 6.37652742e-04 1.17104430e-04 3.86786249e-04 1.38239323e-04 4.78366796e-05 1.07379357e-04 5.68492445e-05 1.60762393e-06 1.18733340e-08 0.00000000e+00 + 2025 02 11 12 00 00 3.81663253e-03 2.31487758e-03 1.28355051e-03 9.33642056e-04 6.90248902e-04 3.76668168e-04 2.75022601e-04 2.37146668e-04 4.94193826e-04 1.40103437e-04 8.78825605e-03 5.27384803e-03 2.44650326e-04 7.21512827e-05 4.58981871e-05 2.43598233e-04 3.97755182e-05 6.88122003e-05 2.17266189e-04 7.91571685e-05 1.53968198e-04 1.88500699e-04 1.07355836e-04 9.60871080e-05 5.31811784e-06 9.55428404e-06 6.01569409e-06 3.12926800e-05 4.92144791e-06 1.78675438e-05 1.09919660e-04 3.92301328e-05 2.04807977e-05 1.09312034e-04 4.27727966e-05 1.40308999e-05 5.84370621e-05 8.23913293e-05 9.86736632e-06 5.00150962e-05 1.80393235e-04 3.25424073e-05 7.51289063e-04 4.58275946e-04 4.58275946e-04 3.39281314e-04 5.53231803e-05 4.44765785e-05 4.51202032e-04 6.39432157e-04 1.17918630e-04 3.83992388e-04 1.34801967e-04 4.65871233e-05 1.04495122e-04 5.49116077e-05 1.51929461e-06 8.75917721e-09 0.00000000e+00 + 2025 02 12 12 00 00 3.83510658e-03 2.32831698e-03 1.29194790e-03 9.39752254e-04 6.95590347e-04 3.78870999e-04 2.77285091e-04 2.39670287e-04 5.00791591e-04 1.42133558e-04 8.93671916e-03 5.36946282e-03 2.47513116e-04 7.29968494e-05 4.63400517e-05 2.42035541e-04 3.93859256e-05 6.80326484e-05 2.19225956e-04 8.02007737e-05 1.52607640e-04 1.86495564e-04 1.06753572e-04 9.60816722e-05 5.29269928e-06 9.46303553e-06 6.01778738e-06 3.12881577e-05 4.94496417e-06 1.78702471e-05 1.09025476e-04 3.90786532e-05 2.00991650e-05 1.10689427e-04 4.41480777e-05 1.40399832e-05 5.79853403e-05 8.14807140e-05 9.79577453e-06 5.05860886e-05 1.82158619e-04 3.34277895e-05 7.65020959e-04 4.71432973e-04 4.71432973e-04 3.39038540e-04 5.30279533e-05 4.61944670e-05 4.48094463e-04 6.38211620e-04 1.19082401e-04 3.83722606e-04 1.43480229e-04 4.97418599e-05 1.11776878e-04 5.98031766e-05 1.74225774e-06 1.86270405e-08 0.00000000e+00 + 2025 02 13 12 00 00 3.88644831e-03 2.36279500e-03 1.31371525e-03 9.56134340e-04 7.10208657e-04 3.85239550e-04 2.83650402e-04 2.46700816e-04 5.19145894e-04 1.47185421e-04 9.36017717e-03 5.64569123e-03 2.55003166e-04 7.48555541e-05 4.74197629e-05 2.43310099e-04 3.94101779e-05 6.80830388e-05 2.23778063e-04 8.22461385e-05 1.53150749e-04 1.86640977e-04 1.07219073e-04 9.67184752e-05 5.29419340e-06 9.46199361e-06 6.03357330e-06 3.14764839e-05 4.99099842e-06 1.80060433e-05 1.09415216e-04 3.90881585e-05 2.01263116e-05 1.14171611e-04 4.68405546e-05 1.41086348e-05 5.87598020e-05 8.22474529e-05 9.79492470e-06 5.22185694e-05 1.90239309e-04 3.51625844e-05 7.99159058e-04 4.97193122e-04 4.97193122e-04 3.52220679e-04 5.32084843e-05 4.95601504e-05 4.58723263e-04 6.52329873e-04 1.23626255e-04 3.88321924e-04 1.48032690e-04 5.13970484e-05 1.15598684e-04 6.23858597e-05 1.86108335e-06 2.49883637e-08 4.61114524e-10 + 2025 02 14 12 00 00 3.92948606e-03 2.39117013e-03 1.33167394e-03 9.69735344e-04 7.22389692e-04 3.90618826e-04 2.88995825e-04 2.52591028e-04 5.34527754e-04 1.51309264e-04 9.71733988e-03 5.87942004e-03 2.61192662e-04 7.63135873e-05 4.82881379e-05 2.46393519e-04 3.98020085e-05 6.88718574e-05 2.27551960e-04 8.37941363e-05 1.55081373e-04 1.88710289e-04 1.08348643e-04 9.75667223e-05 5.31953337e-06 9.48395173e-06 6.06251597e-06 3.17031761e-05 5.02600196e-06 1.81725360e-05 1.10743649e-04 3.92407150e-05 2.05188117e-05 1.17284156e-04 4.88868449e-05 1.42345118e-05 6.01451611e-05 8.40539142e-05 9.81210032e-06 5.40968130e-05 1.98686281e-04 3.64768784e-05 8.31648639e-04 5.16765658e-04 5.16765658e-04 3.69360822e-04 5.56131825e-05 5.21108857e-05 4.74972336e-04 6.71303313e-04 1.28239829e-04 3.98988580e-04 1.51809298e-04 5.27703096e-05 1.18770289e-04 6.45381768e-05 1.96075217e-06 3.03721976e-08 9.54020507e-10 + 2025 02 15 12 00 00 3.95166176e-03 2.40682414e-03 1.34149158e-03 9.76939998e-04 7.28720253e-04 3.93298619e-04 2.91718272e-04 2.55614181e-04 5.42439743e-04 1.53643881e-04 9.89762846e-03 5.99627718e-03 2.64545764e-04 7.72353098e-05 4.87899703e-05 2.48083594e-04 4.00129473e-05 6.92976988e-05 2.30142203e-04 8.48887896e-05 1.56118856e-04 1.89837397e-04 1.08979940e-04 9.80355725e-05 5.33311832e-06 9.45012216e-06 6.06779031e-06 3.18359748e-05 5.05096177e-06 1.82678315e-05 1.11505599e-04 3.93228926e-05 2.07322679e-05 1.19300903e-04 5.03447547e-05 1.42573903e-05 6.09696292e-05 8.50175569e-05 9.78547905e-06 5.50001340e-05 2.03129107e-04 3.74079857e-05 8.49370541e-04 5.30703412e-04 5.30703412e-04 3.79453103e-04 5.69317024e-05 5.39190485e-05 4.84829747e-04 6.83053102e-04 1.31220433e-04 4.06053041e-04 1.55422588e-04 5.40848177e-05 1.21809301e-04 6.66368584e-05 2.06052221e-06 3.59530787e-08 1.46970471e-09 + 2025 02 16 12 00 00 3.98484456e-03 2.42867379e-03 1.35532167e-03 9.87393865e-04 7.38071058e-04 3.97444002e-04 2.95834850e-04 2.60147715e-04 5.54289513e-04 1.56813995e-04 1.01733477e-02 6.17688112e-03 2.69308048e-04 7.83490510e-05 4.94680845e-05 2.51763321e-04 4.05570114e-05 7.03931553e-05 2.33201808e-04 8.60588741e-05 1.58575562e-04 1.92712521e-04 1.10344346e-04 9.88234895e-05 5.36829502e-06 9.43865307e-06 6.09251838e-06 3.20574161e-05 5.07772093e-06 1.84306372e-05 1.13200757e-04 3.95347219e-05 2.12775616e-05 1.21894428e-04 5.19072521e-05 1.43648867e-05 6.25436484e-05 8.71286199e-05 9.77641903e-06 5.65758020e-05 2.10571652e-04 3.84039187e-05 8.75608160e-04 5.45638427e-04 5.45638427e-04 3.96709419e-04 6.02740212e-05 5.58534986e-05 5.02492336e-04 7.02786025e-04 1.35438954e-04 4.17331670e-04 1.56327377e-04 5.44148146e-05 1.22576285e-04 6.72142869e-05 2.09131010e-06 3.79162643e-08 1.65686096e-09 + 2025 02 17 12 00 00 3.99116497e-03 2.43366274e-03 1.35840627e-03 9.89512720e-04 7.39852682e-04 3.98155178e-04 2.96587308e-04 2.60992763e-04 5.56524210e-04 1.57581607e-04 1.02231244e-02 6.20874017e-03 2.70340221e-04 7.86839808e-05 4.96336279e-05 2.53376170e-04 4.08142136e-05 7.09135318e-05 2.34378188e-04 8.65022244e-05 1.59674777e-04 1.94099297e-04 1.10948473e-04 9.92096857e-05 5.38480672e-06 9.52323171e-06 6.09719609e-06 3.21473429e-05 5.08831872e-06 1.84921169e-05 1.13999750e-04 3.96349700e-05 2.15398875e-05 1.22893849e-04 5.25232870e-05 1.43851314e-05 6.32498217e-05 8.81363625e-05 9.84273138e-06 5.70640497e-05 2.12838149e-04 3.87850654e-05 8.84580320e-04 5.51511860e-04 5.51511860e-04 4.03910607e-04 6.19045168e-05 5.65962284e-05 5.10307268e-04 7.11164265e-04 1.37175485e-04 4.21618658e-04 1.55206056e-04 5.40086960e-05 1.21646216e-04 6.66757322e-05 2.07295649e-06 3.74129989e-08 1.62285652e-09 + 2025 02 18 12 00 00 3.99060509e-03 2.43273275e-03 1.35786419e-03 9.89133098e-04 7.39525964e-04 3.98116898e-04 2.96514900e-04 2.60894160e-04 5.56297939e-04 1.57401498e-04 1.02213828e-02 6.20872304e-03 2.70153168e-04 7.85387435e-05 4.95844581e-05 2.52245607e-04 4.06168838e-05 7.05214916e-05 2.33666963e-04 8.62729736e-05 1.58927165e-04 1.93114583e-04 1.10549419e-04 9.88515633e-05 5.37180022e-06 9.45497013e-06 6.09405215e-06 3.20852051e-05 5.08393205e-06 1.84514019e-05 1.13453990e-04 3.95583658e-05 2.13516760e-05 1.22347009e-04 5.22620277e-05 1.43713260e-05 6.27911557e-05 8.74541798e-05 9.78926837e-06 5.66438796e-05 2.11680604e-04 3.85970285e-05 8.79982316e-04 5.48986625e-04 5.48986625e-04 3.99567675e-04 6.07984548e-05 5.62354922e-05 5.05316106e-04 7.05635879e-04 1.36149520e-04 4.13656836e-04 1.49164817e-04 5.18140985e-05 1.16588072e-04 6.33652178e-05 1.92833206e-06 3.02440654e-08 9.82426673e-10 + 2025 02 19 12 00 00 3.97292188e-03 2.42096267e-03 1.35041691e-03 9.83503260e-04 7.34488168e-04 3.95922638e-04 2.94318738e-04 2.58466881e-04 5.49960157e-04 1.55679295e-04 1.00750475e-02 6.11310974e-03 2.67580710e-04 7.78955808e-05 4.92166690e-05 2.48736781e-04 4.00350196e-05 6.93611160e-05 2.31548562e-04 8.55650753e-05 1.56549196e-04 1.90162920e-04 1.09265539e-04 9.81712766e-05 5.33365383e-06 9.43053092e-06 6.07806141e-06 3.18917594e-05 5.06890428e-06 1.83153488e-05 1.11800777e-04 3.93322989e-05 2.07887861e-05 1.20638620e-04 5.13775216e-05 1.43016063e-05 6.13774959e-05 8.54773305e-05 9.77008967e-06 5.55726881e-05 2.06491586e-04 3.80040990e-05 8.63464289e-04 5.40494127e-04 5.40494127e-04 3.85617523e-04 5.74491918e-05 5.50899073e-05 4.89910311e-04 6.89210460e-04 1.32971787e-04 4.02680183e-04 1.48575912e-04 5.16016873e-05 1.16105926e-04 6.31369785e-05 1.92479969e-06 3.05748593e-08 1.02561000e-09 + 2025 02 20 12 00 00 3.97022245e-03 2.41842181e-03 1.34887277e-03 9.82384379e-04 7.33508975e-04 3.95629148e-04 2.93981424e-04 2.58070552e-04 5.48964152e-04 1.55250471e-04 1.00565182e-02 6.10246509e-03 2.67050301e-04 7.76377931e-05 4.91122867e-05 2.48271851e-04 3.99669370e-05 6.92286470e-05 2.30630454e-04 8.51914112e-05 1.56301305e-04 1.89853981e-04 1.09106609e-04 9.81686883e-05 5.32903468e-06 9.47570516e-06 6.08193877e-06 3.18520162e-05 5.06138022e-06 1.82884536e-05 1.11597244e-04 3.93059890e-05 2.07289224e-05 1.20140849e-04 5.09320176e-05 1.43183206e-05 6.11623727e-05 8.52735156e-05 9.80543628e-06 5.55696448e-05 2.05681291e-04 3.76944925e-05 8.59950645e-04 5.36202360e-04 5.36202360e-04 3.83061040e-04 5.71239099e-05 5.44939190e-05 4.87077934e-04 6.86305906e-04 1.32050602e-04 4.03968476e-04 1.51869970e-04 5.28008693e-05 1.18882234e-04 6.51004046e-05 2.02136490e-06 3.62093651e-08 1.55181059e-09 + 2025 02 21 12 00 00 3.95368955e-03 2.40658796e-03 1.34146122e-03 9.76845878e-04 7.28583833e-04 3.93619749e-04 2.91928176e-04 2.55778338e-04 5.43020296e-04 1.53458967e-04 9.92393884e-03 6.01744875e-03 2.64499795e-04 7.68784554e-05 4.87234573e-05 2.53471756e-04 4.10002511e-05 7.13071728e-05 2.29451740e-04 8.42611655e-05 1.60287963e-04 1.95292330e-04 1.11057869e-04 9.94488335e-05 5.39593821e-06 9.93919311e-06 6.10071802e-06 3.20169414e-05 5.04142990e-06 1.83915860e-05 1.14335175e-04 3.97082185e-05 2.17609122e-05 1.19963823e-04 4.97591158e-05 1.43998506e-05 6.30806883e-05 8.85995060e-05 1.01685488e-05 5.64679921e-05 2.07360613e-04 3.69136542e-05 8.58172875e-04 5.24947932e-04 5.24947932e-04 3.96234161e-04 6.34311931e-05 5.29841986e-05 5.05005342e-04 7.03958014e-04 1.33143617e-04 4.30318770e-04 1.61833297e-04 5.64245063e-05 1.27254820e-04 7.08249105e-05 2.28949024e-06 5.09178108e-08 2.90397804e-09 + 2025 02 22 12 00 00 3.91171795e-03 2.38084646e-03 1.32500024e-03 9.63874078e-04 7.16696985e-04 3.88187277e-04 2.86639873e-04 2.49989819e-04 5.27968172e-04 1.49819455e-04 9.56932202e-03 5.78368977e-03 2.58756480e-04 7.57380543e-05 4.79423349e-05 2.55836270e-04 4.15590795e-05 7.24347134e-05 2.27690275e-04 8.32703896e-05 1.62180189e-04 1.98271413e-04 1.11934462e-04 9.95905624e-05 5.43195893e-06 9.88943211e-06 6.09674607e-06 3.20161429e-05 5.02009025e-06 1.83942337e-05 1.15752490e-04 3.99258948e-05 2.23252777e-05 1.18801510e-04 4.85051307e-05 1.43823825e-05 6.38968163e-05 8.99235554e-05 1.01291822e-05 5.61052206e-05 2.04069194e-04 3.60812584e-05 8.44063784e-04 5.12918644e-04 5.12918644e-04 3.99381873e-04 6.69116504e-05 5.13743202e-05 5.12160118e-04 7.09300007e-04 1.32633987e-04 4.42311528e-04 1.64132450e-04 5.72620225e-05 1.29196378e-04 7.22279779e-05 2.36054199e-06 5.52064193e-08 3.30775549e-09 + 2025 02 23 12 00 00 3.91579752e-03 2.38402531e-03 1.32696853e-03 9.65189659e-04 7.17780602e-04 3.88640372e-04 2.87117431e-04 2.50522971e-04 5.29397178e-04 1.50301038e-04 9.60202382e-03 5.80491908e-03 2.59409062e-04 7.59364691e-05 4.80493770e-05 2.57915104e-04 4.19148564e-05 7.31547247e-05 2.28542137e-04 8.35263636e-05 1.63671818e-04 2.00191950e-04 1.12719300e-04 1.00342670e-04 5.45478943e-06 1.01613761e-05 6.10324569e-06 3.21219416e-05 5.02655712e-06 1.84604224e-05 1.16810069e-04 4.00645775e-05 2.26885153e-05 1.19734663e-04 4.88790392e-05 1.44105128e-05 6.47792018e-05 9.13552547e-05 1.03420622e-05 5.68407128e-05 2.06327238e-04 3.63041967e-05 8.52130150e-04 5.16472571e-04 5.16472571e-04 4.07471488e-04 6.91711786e-05 5.18105691e-05 5.21309773e-04 7.19454310e-04 1.34278586e-04 4.54498260e-04 1.71178719e-04 5.98245708e-05 1.35116468e-04 7.62663223e-05 2.54903149e-06 6.54980084e-08 4.25269917e-09 + 2025 02 24 12 00 00 3.91448670e-03 2.38151781e-03 1.32552305e-03 9.64340880e-04 7.17146630e-04 3.88597481e-04 2.86979461e-04 2.50326853e-04 5.28910440e-04 1.49826409e-04 9.59824500e-03 5.80490232e-03 2.58939303e-04 7.55879911e-05 4.79415921e-05 2.54815050e-04 4.13697562e-05 7.20656128e-05 2.26782420e-04 8.29524884e-05 1.61562346e-04 1.97404131e-04 1.11590687e-04 9.98893165e-05 5.41914960e-06 1.03024802e-05 6.09970775e-06 3.19762811e-05 5.01423092e-06 1.83541202e-05 1.15265823e-04 3.98527016e-05 2.21574621e-05 1.18418992e-04 4.81544907e-05 1.43949961e-05 6.35115204e-05 8.97229094e-05 1.04524865e-05 5.61811622e-05 2.03395952e-04 3.58223391e-05 8.42481859e-04 5.09520900e-04 5.09520900e-04 3.95759017e-04 6.59921148e-05 5.08788158e-05 5.07472820e-04 7.04908867e-04 1.31549723e-04 4.41607184e-04 1.67217185e-04 5.83854857e-05 1.31799747e-04 7.40967391e-05 2.45433731e-06 6.08109332e-08 3.83416783e-09 + 2025 02 25 12 00 00 3.92733048e-03 2.39174382e-03 1.33184340e-03 9.68731588e-04 7.20869663e-04 3.90044383e-04 2.88519802e-04 2.52064089e-04 5.33478424e-04 1.51413978e-04 9.69851555e-03 5.86863346e-03 2.61065983e-04 7.63066757e-05 4.82721355e-05 2.50944294e-04 4.05690284e-05 7.04634644e-05 2.28193873e-04 8.39229440e-05 1.58542088e-04 1.93283883e-04 1.10140240e-04 9.93253140e-05 5.36690313e-06 1.03125509e-05 6.08952541e-06 3.18779208e-05 5.03643241e-06 1.82843506e-05 1.13237489e-04 3.95413750e-05 2.13732361e-05 1.19098666e-04 4.94508015e-05 1.43505735e-05 6.21626151e-05 8.75795456e-05 1.04602048e-05 5.58184594e-05 2.02606775e-04 3.66484164e-05 8.50457796e-04 5.21911448e-04 5.21911448e-04 3.87794425e-04 6.12764154e-05 5.24833915e-05 4.95293049e-04 6.93093620e-04 1.31344385e-04 4.20939791e-04 1.58406878e-04 5.51838508e-05 1.24415104e-04 6.91991227e-05 2.23562868e-06 4.95964869e-08 2.82227912e-09 + 2025 02 26 12 00 00 3.91309260e-03 2.38179534e-03 1.32559575e-03 9.64041663e-04 7.16688903e-04 3.88296269e-04 2.86750909e-04 2.50097816e-04 5.28371196e-04 1.49925458e-04 9.58319900e-03 5.79424873e-03 2.58916125e-04 7.57075021e-05 4.79495267e-05 2.43325209e-04 3.92184214e-05 6.77571050e-05 2.25423100e-04 8.32156569e-05 1.53134838e-04 1.86290217e-04 1.07314105e-04 9.74702970e-05 5.27896555e-06 9.83712380e-06 6.06851063e-06 3.15040969e-05 5.02090406e-06 1.80395178e-05 1.09452808e-04 3.90160742e-05 2.00432347e-05 1.16511166e-04 4.85401833e-05 1.42590405e-05 5.91078874e-05 8.29050161e-05 1.00874036e-05 5.39399813e-05 1.94776539e-04 3.60517472e-05 8.28133779e-04 5.13186166e-04 5.13186166e-04 3.60727229e-04 5.32419363e-05 5.13278530e-05 4.63480134e-04 6.59619785e-04 1.25945944e-04 3.90511284e-04 1.50899552e-04 5.24556914e-05 1.18122449e-04 6.50246033e-05 2.04912844e-06 4.00272548e-08 1.95867464e-09 + 2025 02 27 12 00 00 3.90686220e-03 2.37732132e-03 1.32279620e-03 9.61946061e-04 7.14823412e-04 3.87537132e-04 2.85976185e-04 2.49232988e-04 5.26131983e-04 1.49247194e-04 9.53337639e-03 5.76236472e-03 2.57953315e-04 7.54245850e-05 4.78119453e-05 2.42556766e-04 3.91128997e-05 6.75484713e-05 2.24544513e-04 8.28643912e-05 1.52688787e-04 1.85774764e-04 1.07057844e-04 9.69901757e-05 5.27196316e-06 9.75597504e-06 6.05781097e-06 3.14462131e-05 5.01325012e-06 1.79992327e-05 1.09121323e-04 3.89751542e-05 1.99444185e-05 1.15685835e-04 4.80909919e-05 1.42124103e-05 5.87702328e-05 8.23946079e-05 1.00236852e-05 5.31217489e-05 1.92974119e-04 3.57559038e-05 8.19342803e-04 5.08880150e-04 5.08880150e-04 3.56565509e-04 5.26707969e-05 5.07552119e-05 4.59642235e-04 6.54555739e-04 1.24859974e-04 3.78837087e-04 1.37672921e-04 4.76482870e-05 1.07029737e-04 5.76168361e-05 1.71462250e-06 2.25905389e-08 3.77928711e-10 + 2025 02 28 12 00 00 3.90786153e-03 2.37674523e-03 1.32253720e-03 9.61946183e-04 7.14924681e-04 3.87756352e-04 2.86121387e-04 2.49360083e-04 5.26477597e-04 1.49081721e-04 9.54688215e-03 5.77297956e-03 2.57886574e-04 7.52297757e-05 4.77677638e-05 2.38607170e-04 3.84005223e-05 6.61211205e-05 2.23112317e-04 8.25058494e-05 1.49914605e-04 1.82087204e-04 1.05609604e-04 9.61765150e-05 5.22557530e-06 9.64081773e-06 6.04836350e-06 3.12684491e-05 5.00563874e-06 1.78780656e-05 1.07135621e-04 3.86980915e-05 1.92431151e-05 1.14448623e-04 4.76430025e-05 1.41712342e-05 5.71953671e-05 8.00720178e-05 9.93322683e-06 5.22524784e-05 1.89719018e-04 3.54555959e-05 8.09259606e-04 5.04578836e-04 5.04578836e-04 3.42741593e-04 4.84352960e-05 5.01749921e-05 4.43051755e-04 6.37431002e-04 1.22054963e-04 3.62683677e-04 1.33558946e-04 4.61532867e-05 1.03581509e-04 5.53302454e-05 1.61253619e-06 1.73578329e-08 0.00000000e+00 + 2025 03 01 12 00 00 3.89027311e-03 2.36529506e-03 1.31527822e-03 9.56383416e-04 7.09907273e-04 3.85537155e-04 2.83925425e-04 2.46942138e-04 5.20180351e-04 1.47422269e-04 9.40071450e-03 5.67735396e-03 2.55375751e-04 7.46491228e-05 4.74162616e-05 2.35510311e-04 3.78929020e-05 6.51037961e-05 2.21323631e-04 8.19043315e-05 1.47775402e-04 1.79457056e-04 1.04461998e-04 9.53111999e-05 5.19253117e-06 9.41834878e-06 6.03419176e-06 3.10904030e-05 4.99223061e-06 1.77597849e-05 1.05658449e-04 3.85006511e-05 1.87429730e-05 1.12850286e-04 4.68579703e-05 1.41095341e-05 5.59161747e-05 7.81412274e-05 9.75868606e-06 5.11542151e-05 1.84979671e-04 3.49464855e-05 7.93820679e-04 4.97063762e-04 4.97063762e-04 3.30170041e-04 4.54126421e-05 4.91879531e-05 4.29352879e-04 6.22415621e-04 1.19267784e-04 3.50407551e-04 1.29765059e-04 4.47740893e-05 1.00397876e-04 5.31895314e-05 1.51480989e-06 1.21831128e-08 0.00000000e+00 + 2025 03 02 12 00 00 3.88735425e-03 2.36483771e-03 1.31486278e-03 9.55770940e-04 7.09202408e-04 3.85046577e-04 2.83524062e-04 2.46535243e-04 5.19129825e-04 1.47444714e-04 9.37091543e-03 5.65610118e-03 2.55195186e-04 7.48028955e-05 4.74318955e-05 2.33712390e-04 3.75440519e-05 6.44039537e-05 2.21746428e-04 8.22396833e-05 1.46370133e-04 1.77641687e-04 1.03774856e-04 9.48029615e-05 5.16985565e-06 9.15656128e-06 6.02684049e-06 3.10179488e-05 4.99972812e-06 1.77185089e-05 1.04748446e-04 3.83649371e-05 1.83979675e-05 1.12905111e-04 4.72967775e-05 1.40775286e-05 5.52629858e-05 7.69308076e-05 9.55339347e-06 5.08390008e-05 1.83626671e-04 3.52305040e-05 7.93779891e-04 5.01263700e-04 5.01263700e-04 3.25677143e-04 4.33210080e-05 4.97387082e-05 4.23421501e-04 6.16495722e-04 1.18954843e-04 3.43600897e-04 1.29074513e-04 4.45230622e-05 9.98184683e-05 5.28004395e-05 1.49708419e-06 1.13755107e-08 0.00000000e+00 + 2025 03 03 12 00 00 3.89491713e-03 2.36943690e-03 1.31780828e-03 9.58082522e-04 7.11315304e-04 3.86023774e-04 2.84474154e-04 2.47573704e-04 5.21838205e-04 1.48090585e-04 9.43515267e-03 5.69859818e-03 2.56221846e-04 7.49980734e-05 4.75681372e-05 2.33085386e-04 3.74055351e-05 6.41258084e-05 2.21997815e-04 8.24028393e-05 1.45891677e-04 1.76917936e-04 1.03543925e-04 9.49528229e-05 5.16086475e-06 9.28017180e-06 6.02759646e-06 3.10149801e-05 5.00325405e-06 1.77116625e-05 1.04396187e-04 3.83110368e-05 1.82604956e-05 1.13137471e-04 4.75039298e-05 1.40808159e-05 5.50499721e-05 7.66794118e-05 9.65027066e-06 5.10401516e-05 1.84080285e-04 3.53676791e-05 7.96501180e-04 5.03250491e-04 5.03250491e-04 3.24539425e-04 4.24851372e-05 5.00040769e-05 4.21318511e-04 6.15104033e-04 1.18917104e-04 3.44752181e-04 1.34014087e-04 4.63187358e-05 1.03963370e-04 5.55864414e-05 1.62419070e-06 1.79718601e-08 0.00000000e+00 + 2025 03 04 12 00 00 3.90359385e-03 2.37358926e-03 1.32057286e-03 9.60478653e-04 7.13619628e-04 3.87236864e-04 2.85589971e-04 2.48765567e-04 5.24945751e-04 1.48597883e-04 9.51330536e-03 5.75171746e-03 2.57213767e-04 7.50224291e-05 4.76629536e-05 2.34113822e-04 3.76041397e-05 6.45238848e-05 2.21843073e-04 8.22461443e-05 1.46752541e-04 1.77947625e-04 1.03970077e-04 9.52283825e-05 5.17379012e-06 9.37983423e-06 6.02341570e-06 3.10644783e-05 4.99969065e-06 1.77384440e-05 1.04921079e-04 3.83882871e-05 1.84562814e-05 1.13157696e-04 4.72957297e-05 1.40626231e-05 5.54488627e-05 7.73233251e-05 9.72838679e-06 5.10804573e-05 1.85261429e-04 3.52344709e-05 7.94478470e-04 5.01259696e-04 5.01259696e-04 3.26958434e-04 4.36689414e-05 4.97454428e-05 4.24770889e-04 6.19084307e-04 1.19107944e-04 3.49722956e-04 1.35898340e-04 4.70036664e-05 1.05544164e-04 5.66463668e-05 1.67236084e-06 2.05062356e-08 1.92014493e-10 + 2025 03 05 12 00 00 3.89173634e-03 2.36569225e-03 1.31558183e-03 9.56685487e-04 7.10214562e-04 3.85754888e-04 2.84113100e-04 2.47134793e-04 5.20699492e-04 1.47441854e-04 9.41548928e-03 5.68796620e-03 2.55491166e-04 7.46027106e-05 4.74269980e-05 2.35390118e-04 3.78945639e-05 6.51067123e-05 2.21071097e-04 8.17848602e-05 1.47796231e-04 1.79461090e-04 1.04462523e-04 9.51921250e-05 5.19265850e-06 9.29240850e-06 6.01813954e-06 3.10787117e-05 4.98944464e-06 1.77493612e-05 1.05646114e-04 3.85012827e-05 1.87438563e-05 1.12598946e-04 4.66956233e-05 1.40396485e-05 5.58873931e-05 7.79604328e-05 9.65986328e-06 5.07509665e-05 1.84418066e-04 3.48443486e-05 7.86869999e-04 4.95513715e-04 4.95513715e-04 3.28690380e-04 4.54141642e-05 4.89892846e-05 4.28605079e-04 6.22146080e-04 1.18905207e-04 3.52632460e-04 1.32816059e-04 4.58832459e-05 1.02958280e-04 5.49124403e-05 1.59355338e-06 1.63594748e-08 0.00000000e+00 + 2025 03 06 12 00 00 3.86627391e-03 2.34897344e-03 1.30499474e-03 9.48618999e-04 7.02963740e-04 3.82558622e-04 2.80941438e-04 2.43639813e-04 5.11588427e-04 1.45012074e-04 9.20425499e-03 5.54984510e-03 2.51835289e-04 7.37345867e-05 4.68940533e-05 2.36507793e-04 3.82020662e-05 6.57249650e-05 2.19322824e-04 8.08765821e-05 1.48799058e-04 1.81076249e-04 1.04893069e-04 9.50023961e-05 5.21258225e-06 9.19040540e-06 6.01103093e-06 3.10512198e-05 4.96911853e-06 1.77318905e-05 1.06352533e-04 3.86209693e-05 1.90504346e-05 1.11283378e-04 4.55060683e-05 1.40086937e-05 5.62021831e-05 7.84954015e-05 9.57993543e-06 5.00838588e-05 1.81720932e-04 3.40749510e-05 7.72157403e-04 4.84128809e-04 4.84128809e-04 3.27999957e-04 4.72852262e-05 4.74971748e-05 4.30648476e-04 6.22422672e-04 1.17798463e-04 3.54430262e-04 1.27921176e-04 4.41038817e-05 9.88513144e-05 5.21554362e-05 1.46802078e-06 1.03664547e-08 0.00000000e+00 + 2025 03 07 12 00 00 3.84413187e-03 2.33353809e-03 1.29529837e-03 9.41421506e-04 6.96593616e-04 3.79856586e-04 2.78208426e-04 2.40607218e-04 5.03673086e-04 1.42715509e-04 9.02392720e-03 5.43297641e-03 2.48511687e-04 7.28343474e-05 4.64000987e-05 2.35722421e-04 3.81539314e-05 6.56300574e-05 2.16955224e-04 7.98229070e-05 1.48441192e-04 1.80843999e-04 1.04612095e-04 9.47974551e-05 5.20937610e-06 9.30491515e-06 6.00593557e-06 3.09562375e-05 4.94541127e-06 1.76605037e-05 1.06069564e-04 3.86023137e-05 1.90058330e-05 1.09542074e-04 4.41194454e-05 1.39865006e-05 5.57597536e-05 7.81289709e-05 9.66968364e-06 4.93780164e-05 1.77946062e-04 3.31813353e-05 7.55996529e-04 4.70862025e-04 4.70862025e-04 3.21074782e-04 4.70299710e-05 4.57634975e-05 4.24652337e-04 6.14866485e-04 1.15403761e-04 3.52308111e-04 1.26599714e-04 4.36235248e-05 9.77426693e-05 5.14120225e-05 1.43423041e-06 9.17968066e-09 0.00000000e+00 + 2025 03 08 12 00 00 3.81797143e-03 2.31809717e-03 1.28537024e-03 9.33536457e-04 6.89339650e-04 3.76432575e-04 2.74911555e-04 2.37017751e-04 4.94313731e-04 1.40580873e-04 8.79994425e-03 5.28423563e-03 2.45043683e-04 7.22520470e-05 4.59474978e-05 2.35679646e-04 3.82080994e-05 6.57413679e-05 2.16106252e-04 7.94228923e-05 1.48445760e-04 1.81155024e-04 1.04575543e-04 9.46931229e-05 5.21277216e-06 9.33721894e-06 5.99942541e-06 3.09105356e-05 4.93630105e-06 1.76273606e-05 1.06158964e-04 3.86235013e-05 1.90642022e-05 1.08789769e-04 4.35872440e-05 1.39581534e-05 5.56998832e-05 7.81405905e-05 9.69493631e-06 4.89383003e-05 1.74954056e-04 3.28411697e-05 7.47863826e-04 4.65773791e-04 4.65773791e-04 3.19040433e-04 4.74080385e-05 4.51029860e-05 4.23759524e-04 6.12666038e-04 1.14686635e-04 3.52366996e-04 1.25313148e-04 4.31558283e-05 9.66631374e-05 5.06868643e-05 1.40117816e-06 8.01462505e-09 0.00000000e+00 + 2025 03 09 12 00 00 3.82098245e-03 2.31878361e-03 1.28591721e-03 9.34206248e-04 6.90073486e-04 3.76917220e-04 2.75318209e-04 2.37434633e-04 4.95395782e-04 1.40601370e-04 8.82996450e-03 5.30548468e-03 2.45264911e-04 7.21338260e-05 4.59498282e-05 2.36702371e-04 3.84083949e-05 6.61468890e-05 2.15681268e-04 7.91426050e-05 1.49298215e-04 1.82238013e-04 1.04983543e-04 9.47623083e-05 5.22561786e-06 9.30093520e-06 6.00201056e-06 3.09343945e-05 4.92997569e-06 1.76463234e-05 1.06685914e-04 3.87015811e-05 1.92689884e-05 1.08584339e-04 4.32173692e-05 1.39693671e-05 5.60629397e-05 7.86928946e-05 9.66640728e-06 4.89657200e-05 1.75690106e-04 3.26032983e-05 7.45464272e-04 4.62235603e-04 4.62235603e-04 3.21205165e-04 4.86833189e-05 4.46413906e-05 4.26963002e-04 6.15862773e-04 1.14705162e-04 3.55477478e-04 1.24388947e-04 4.28198664e-05 9.58876897e-05 5.01661754e-05 1.37746086e-06 7.17930817e-09 0.00000000e+00 + 2025 03 10 12 00 00 3.83053380e-03 2.32475089e-03 1.28972256e-03 9.37152799e-04 6.92746277e-04 3.78138435e-04 2.76512745e-04 2.38742982e-04 4.98810940e-04 1.41448452e-04 8.91051136e-03 5.35860471e-03 2.46584716e-04 7.24019536e-05 4.61289734e-05 2.36699299e-04 3.83674284e-05 6.60687918e-05 2.16196581e-04 7.93874497e-05 1.49257240e-04 1.82069910e-04 1.04982201e-04 9.48955747e-05 5.22276241e-06 9.32388211e-06 6.00944149e-06 3.09496176e-05 4.93551306e-06 1.76598773e-05 1.06635226e-04 3.86858155e-05 1.92358973e-05 1.09054697e-04 4.35410824e-05 1.40016418e-05 5.60980762e-05 7.87369145e-05 9.68428867e-06 4.93645057e-05 1.77024713e-04 3.28111841e-05 7.51319724e-04 4.65331879e-04 4.65331879e-04 3.22665459e-04 4.85201308e-05 4.50448599e-05 4.27644950e-04 6.17266923e-04 1.15202273e-04 3.57484623e-04 1.27694106e-04 4.40214380e-05 9.86615154e-05 5.20337933e-05 1.46289644e-06 1.02051246e-08 0.00000000e+00 + 2025 03 11 12 00 00 3.86576760e-03 2.34801136e-03 1.30444237e-03 9.48296172e-04 7.02723923e-04 3.82538979e-04 2.80888430e-04 2.43565891e-04 5.11405603e-04 1.44831377e-04 9.20279446e-03 5.54983690e-03 2.51658143e-04 7.36119416e-05 4.68632568e-05 2.41845640e-04 3.91734997e-05 6.76908647e-05 2.19755775e-04 8.06683209e-05 1.52774536e-04 1.86319355e-04 1.06894478e-04 9.62190594e-05 5.27492302e-06 9.50535832e-06 6.03676854e-06 3.12449559e-05 4.96436296e-06 1.78671357e-05 1.09066862e-04 3.89996218e-05 2.00421026e-05 1.12152210e-04 4.52283333e-05 1.41204800e-05 5.82708059e-05 8.18362624e-05 9.82645215e-06 5.14007763e-05 1.85844349e-04 3.38977494e-05 7.81316377e-04 4.81473841e-04 4.81473841e-04 3.45047314e-04 5.34532708e-05 4.71530220e-05 4.51411660e-04 6.43818547e-04 1.20418574e-04 3.78699739e-04 1.35391400e-04 4.68195896e-05 1.05120283e-04 5.63734731e-05 1.66077359e-06 1.99581386e-08 1.43758694e-10 + 2025 03 12 12 00 00 3.89534276e-03 2.36787891e-03 1.31698431e-03 9.57710799e-04 7.11111169e-04 3.86202710e-04 2.84550022e-04 2.47608717e-04 5.21969941e-04 1.47739698e-04 9.44691047e-03 5.70919439e-03 2.55969342e-04 7.46791119e-05 4.74937787e-05 2.46419267e-04 3.98929405e-05 6.91388675e-05 2.22971296e-04 8.18361412e-05 1.55894953e-04 1.90115047e-04 1.08596364e-04 9.71368088e-05 5.32146551e-06 9.50708854e-06 6.05833593e-06 3.14984828e-05 4.99088601e-06 1.80505457e-05 1.11240151e-04 3.92797083e-05 2.07621473e-05 1.14849505e-04 4.67781851e-05 1.42142249e-05 6.02008043e-05 8.44616256e-05 9.82764541e-06 5.29714935e-05 1.93465374e-04 3.48902220e-05 8.06915500e-04 4.96294070e-04 4.96294070e-04 3.64903224e-04 5.78616105e-05 4.90797975e-05 4.72699860e-04 6.67139944e-04 1.25109367e-04 3.93201472e-04 1.36242094e-04 4.71294899e-05 1.05838777e-04 5.68935274e-05 1.68716466e-06 2.15548393e-08 2.94173486e-10 + 2025 03 13 12 00 00 3.91727517e-03 2.38305747e-03 1.32652780e-03 9.64758057e-04 7.17326632e-04 3.88876403e-04 2.87247650e-04 2.50596053e-04 5.29791710e-04 1.49984303e-04 9.62650639e-03 5.82604967e-03 2.59233582e-04 7.55283641e-05 4.79601933e-05 2.49996144e-04 4.04561841e-05 7.02742545e-05 2.25628479e-04 8.28206714e-05 1.58342255e-04 1.93105944e-04 1.09937372e-04 9.80379540e-05 5.35782056e-06 9.61055412e-06 6.07053153e-06 3.17041211e-05 5.01350296e-06 1.81935408e-05 1.12966733e-04 3.94990609e-05 2.13290376e-05 1.17112418e-04 4.80982068e-05 1.42671561e-05 6.17498780e-05 8.66105339e-05 9.90850021e-06 5.42529786e-05 1.99261021e-04 3.57290526e-05 8.26940276e-04 5.08908136e-04 5.08908136e-04 3.80718598e-04 6.13481330e-05 5.07096353e-05 4.89696395e-04 6.86088999e-04 1.28915850e-04 4.07971625e-04 1.41361594e-04 4.89914306e-05 1.10140837e-04 5.98345099e-05 1.82488515e-06 2.91075231e-08 9.88448434e-10 + 2025 03 14 12 00 00 3.95107151e-03 2.40624030e-03 1.34112113e-03 9.75593366e-04 7.26915488e-04 3.93018026e-04 2.91414121e-04 2.55206106e-04 5.41852150e-04 1.53403108e-04 9.90385265e-03 6.00664914e-03 2.64233296e-04 7.68165313e-05 4.86923277e-05 2.51865610e-04 4.06418403e-05 7.06517661e-05 2.29010527e-04 8.42848502e-05 1.59402423e-04 1.94127901e-04 1.10613189e-04 9.87107107e-05 5.36964908e-06 9.59963509e-06 6.09212038e-06 3.18672579e-05 5.04700474e-06 1.83161331e-05 1.13734866e-04 3.95715033e-05 2.15218402e-05 1.19874009e-04 5.00543043e-05 1.43609446e-05 6.26773448e-05 8.77242648e-05 9.89975306e-06 5.58612751e-05 2.05760256e-04 3.69754416e-05 8.55135662e-04 5.27604902e-04 5.27604902e-04 3.93635779e-04 6.25633693e-05 5.31306490e-05 5.01197286e-04 7.00282361e-04 1.32745712e-04 4.17868582e-04 1.49079838e-04 5.17981473e-05 1.16623982e-04 6.42448078e-05 2.02987715e-06 4.02370333e-08 2.00878301e-09 + 2025 03 15 12 00 00 3.97781254e-03 2.42591978e-03 1.35339767e-03 9.84435964e-04 7.34594450e-04 3.96179340e-04 2.94672804e-04 2.58842813e-04 5.51381955e-04 1.56381341e-04 1.01183162e-02 6.14474788e-03 2.68403690e-04 7.80603187e-05 4.93417250e-05 2.52266708e-04 4.05679340e-05 7.05083425e-05 2.32333751e-04 8.58339714e-05 1.59369004e-04 1.93796596e-04 1.10740633e-04 9.90153268e-05 5.36461775e-06 9.59086756e-06 6.10142997e-06 3.19723799e-05 5.08249832e-06 1.83945310e-05 1.13795565e-04 3.95429583e-05 2.14575251e-05 1.22338233e-04 5.21264446e-05 1.44013015e-05 6.30564332e-05 8.80023900e-05 9.89278706e-06 5.68512752e-05 2.10331721e-04 3.82945349e-05 8.79657426e-04 5.47409197e-04 5.47409197e-04 4.01926218e-04 6.22176914e-05 5.56931482e-05 5.07385764e-04 7.08404485e-04 1.35943697e-04 4.16777968e-04 1.48374663e-04 5.15431706e-05 1.16042138e-04 6.39325543e-05 2.02129088e-06 4.02085995e-08 2.01694625e-09 + 2025 03 16 12 00 00 4.00455710e-03 2.44286541e-03 1.36417987e-03 9.92659332e-04 7.41986516e-04 3.99564988e-04 2.97995231e-04 2.62481988e-04 5.60915139e-04 1.58791560e-04 1.03436394e-02 6.29346818e-03 2.72122839e-04 7.88231139e-05 4.98494635e-05 2.52546155e-04 4.05228900e-05 7.04231439e-05 2.33849817e-04 8.65487789e-05 1.59469903e-04 1.93619094e-04 1.10859719e-04 9.92147822e-05 5.36144689e-06 9.50782560e-06 6.11330324e-06 3.20301821e-05 5.09947276e-06 1.84428025e-05 1.13827767e-04 3.95256589e-05 2.14223459e-05 1.23675739e-04 5.31138270e-05 1.44527687e-05 6.32741896e-05 8.81405598e-05 9.82758575e-06 5.76541322e-05 2.14039830e-04 3.89081368e-05 8.93785619e-04 5.56826591e-04 5.56826591e-04 4.06523847e-04 6.20516425e-05 5.68882737e-05 5.10449146e-04 7.13277184e-04 1.37467362e-04 4.19817359e-04 1.52888606e-04 5.31855509e-05 1.19840197e-04 6.65677067e-05 2.14742263e-06 4.73260826e-08 2.67609508e-09 + 2025 03 17 12 00 00 4.00754752e-03 2.44663988e-03 1.36641056e-03 9.93894027e-04 7.42850279e-04 3.99768645e-04 2.98299942e-04 2.62854724e-04 5.61940881e-04 1.59436942e-04 1.03624052e-02 6.30406886e-03 2.72828774e-04 7.91928249e-05 4.99754289e-05 2.51977626e-04 4.03607177e-05 7.01027107e-05 2.34973282e-04 8.71467579e-05 1.58894186e-04 1.92829124e-04 1.10622045e-04 9.95414512e-05 5.35067520e-06 9.70189940e-06 6.12015137e-06 3.20428698e-05 5.11389517e-06 1.84489505e-05 1.13513055e-04 3.94627772e-05 2.12708488e-05 1.24633651e-04 5.39514702e-05 1.44823804e-05 6.31629595e-05 8.80309633e-05 9.97953684e-06 5.82529883e-05 2.14785555e-04 3.94232920e-05 9.04681948e-04 5.64808678e-04 5.64808678e-04 4.07908662e-04 6.11779396e-05 5.78928157e-05 5.10195013e-04 7.13903836e-04 1.38377602e-04 4.22295317e-04 1.59625530e-04 5.56362120e-05 1.25504801e-04 7.04669488e-05 2.33190785e-06 5.75820309e-08 3.62224348e-09 + 2025 03 18 12 00 00 4.01403851e-03 2.44932116e-03 1.36824230e-03 9.95489726e-04 7.44384628e-04 4.00694244e-04 2.99123666e-04 2.63716375e-04 5.64227961e-04 1.59714341e-04 1.04234271e-02 6.34654313e-03 2.73480346e-04 7.90987965e-05 5.00205619e-05 2.52526509e-04 4.04748484e-05 7.03361176e-05 2.34363110e-04 8.68427160e-05 1.59440788e-04 1.93472079e-04 1.10880475e-04 9.92984623e-05 5.35788458e-06 9.55080395e-06 6.11757423e-06 3.20458728e-05 5.10820319e-06 1.84555139e-05 1.13818799e-04 3.95073701e-05 2.13917956e-05 1.24281307e-04 5.36115142e-05 1.44709978e-05 6.33509542e-05 8.82224887e-05 9.86092637e-06 5.79064874e-05 2.15331234e-04 3.91749374e-05 9.00332717e-04 5.61517943e-04 5.61517943e-04 4.08452447e-04 6.19518862e-05 5.74170437e-05 5.11531715e-04 7.14845319e-04 1.38073280e-04 4.17568934e-04 1.50213469e-04 5.22163333e-05 1.17618881e-04 6.52617504e-05 2.10127333e-06 4.58951789e-08 2.57135273e-09 + 2025 03 19 12 00 00 3.98703939e-03 2.43250534e-03 1.35751107e-03 9.87032026e-04 7.36631690e-04 3.97211012e-04 2.95716324e-04 2.59976518e-04 5.54525430e-04 1.57312334e-04 1.01968173e-02 6.19777590e-03 2.69732739e-04 7.82992855e-05 4.94996586e-05 2.51924434e-04 4.04494174e-05 7.02893827e-05 2.32622892e-04 8.60973785e-05 1.59145146e-04 1.93386904e-04 1.10665126e-04 9.91558534e-05 5.35603031e-06 9.65119834e-06 6.10830248e-06 3.19661873e-05 5.09264682e-06 1.83948342e-05 1.13670813e-04 3.94976552e-05 2.13744119e-05 1.23034953e-04 5.26941847e-05 1.44304810e-05 6.30544981e-05 8.79787972e-05 9.93943468e-06 5.72557220e-05 2.11463264e-04 3.85528489e-05 8.87400719e-04 5.52701065e-04 5.52701065e-04 4.03436575e-04 6.18856400e-05 5.62165515e-05 5.07500831e-04 7.09394768e-04 1.36392062e-04 4.16389472e-04 1.49271825e-04 5.18756518e-05 1.16840453e-04 6.48320372e-05 2.08838160e-06 4.57182338e-08 2.56799702e-09 + 2025 03 20 12 00 00 3.95368685e-03 2.40796194e-03 1.34219452e-03 9.75802997e-04 7.26764527e-04 3.93231285e-04 2.91609959e-04 2.55381003e-04 5.42567614e-04 1.53571398e-04 9.93112309e-03 6.02776408e-03 2.64493686e-04 7.66846000e-05 4.86960458e-05 2.50545217e-04 4.03755432e-05 7.01461395e-05 2.28016593e-04 8.40616238e-05 1.58627688e-04 1.93057102e-04 1.10217783e-04 9.85632980e-05 5.35099534e-06 9.70978945e-06 6.09315684e-06 3.17891248e-05 5.04804739e-06 1.82649220e-05 1.13204970e-04 3.94691306e-05 2.13103471e-05 1.19718246e-04 5.00781578e-05 1.43644196e-05 6.22753768e-05 8.72209575e-05 9.98513933e-06 5.56756843e-05 2.04950883e-04 3.68362787e-05 8.54907679e-04 5.27631817e-04 5.27631817e-04 3.90450289e-04 6.15425990e-05 5.28926437e-05 4.96494401e-04 6.95614019e-04 1.31796715e-04 4.09082184e-04 1.41785772e-04 4.91559113e-05 1.10570551e-04 6.07119615e-05 1.90717583e-06 3.66405466e-08 1.75447816e-09 + 2025 03 21 12 00 00 3.91392297e-03 2.38398705e-03 1.32682470e-03 9.63612267e-04 7.15554002e-04 3.88052322e-04 2.86591422e-04 2.49898076e-04 5.28308097e-04 1.50209578e-04 9.59346953e-03 5.80463298e-03 2.59121126e-04 7.56747720e-05 4.79705047e-05 2.50069302e-04 4.03916783e-05 7.01834273e-05 2.26170696e-04 8.32497783e-05 1.58384776e-04 1.93195233e-04 1.10021281e-04 9.81389525e-05 5.35181280e-06 9.57760203e-06 6.08491973e-06 3.16839952e-05 5.03064039e-06 1.81974983e-05 1.13151202e-04 3.94756178e-05 2.13352250e-05 1.18247442e-04 4.90547391e-05 1.43284517e-05 6.19984799e-05 8.68714730e-05 9.88149768e-06 5.48722781e-05 1.99979233e-04 3.61548620e-05 8.39905531e-04 5.17811673e-04 5.17811673e-04 3.85403394e-04 6.17383805e-05 5.15751715e-05 4.92937935e-04 6.89892180e-04 1.30104800e-04 4.07357148e-04 1.39053465e-04 4.81637340e-05 1.08285643e-04 5.92386215e-05 1.84444148e-06 3.36589650e-08 1.49157362e-09 + 2025 03 22 12 00 00 3.91270661e-03 2.38164281e-03 1.32547314e-03 9.62824644e-04 7.14969836e-04 3.88015760e-04 2.86464729e-04 2.49717011e-04 5.27856496e-04 1.49765768e-04 9.58997625e-03 5.80461882e-03 2.58682191e-04 7.53493888e-05 4.78738856e-05 2.50859089e-04 4.05635627e-05 7.05340877e-05 2.25123666e-04 8.27106822e-05 1.59114900e-04 1.94153940e-04 1.10343016e-04 9.85968765e-05 5.36271073e-06 9.87491148e-06 6.09155322e-06 3.16993056e-05 5.01910617e-06 1.81996334e-05 1.13587207e-04 3.95427342e-05 2.15157939e-05 1.17809534e-04 4.83764714e-05 1.43571655e-05 6.22597884e-05 8.75742868e-05 1.01144607e-05 5.51241913e-05 2.00058070e-04 3.57025769e-05 8.36700250e-04 5.11302426e-04 5.11302426e-04 3.86228778e-04 6.28864218e-05 5.07008459e-05 4.94537577e-04 6.91674340e-04 1.29539948e-04 4.15174750e-04 1.45153566e-04 5.03819738e-05 1.13409278e-04 6.27216208e-05 2.00615782e-06 4.24260428e-08 2.29500774e-09 + 2025 03 23 12 00 00 3.89901773e-03 2.37280354e-03 1.31986205e-03 9.58482142e-04 7.11029986e-04 3.86277532e-04 2.84747826e-04 2.47826281e-04 5.22944541e-04 1.48485271e-04 9.47618940e-03 5.73023818e-03 2.56734236e-04 7.48976170e-05 4.75977304e-05 2.47543566e-04 3.99952609e-05 6.94000453e-05 2.23582584e-04 8.22485774e-05 1.56812559e-04 1.91263233e-04 1.09123886e-04 9.78224325e-05 5.32548620e-06 9.77247837e-06 6.07774818e-06 3.15241421e-05 5.00911337e-06 1.80800189e-05 1.11992819e-04 3.93219059e-05 2.09647347e-05 1.16424782e-04 4.77894966e-05 1.42969729e-05 6.09342141e-05 8.56386714e-05 1.00340236e-05 5.40946770e-05 1.95667688e-04 3.53140087e-05 8.23752687e-04 5.05673047e-04 5.05673047e-04 3.73836047e-04 5.96008787e-05 4.99491289e-05 4.80528320e-04 6.76528034e-04 1.26930727e-04 4.00972198e-04 1.39819653e-04 4.84437685e-05 1.08939366e-04 5.97641849e-05 1.87460523e-06 3.57201849e-08 1.69096381e-09 + 2025 03 24 12 00 00 3.89938010e-03 2.37369357e-03 1.32036886e-03 9.58697678e-04 7.11133406e-04 3.86259738e-04 2.84767893e-04 2.47861849e-04 5.23058425e-04 1.48649372e-04 9.47706043e-03 5.73022813e-03 2.56886095e-04 7.50081816e-05 4.76308403e-05 2.43747196e-04 3.92860034e-05 6.79829740e-05 2.23363818e-04 8.24398303e-05 1.54066277e-04 1.87636240e-04 1.07739609e-04 9.68823152e-05 5.27911252e-06 9.55746145e-06 6.05581445e-06 3.13690217e-05 5.01371869e-06 1.79751280e-05 1.10104838e-04 3.90462286e-05 2.02738142e-05 1.15839362e-04 4.80570277e-05 1.42014047e-05 5.95213778e-05 8.33414417e-05 9.86531959e-06 5.29948454e-05 1.92627783e-04 3.54787102e-05 8.16612755e-04 5.08222682e-04 5.08222682e-04 3.62357357e-04 5.54651371e-05 5.02702664e-05 4.66527474e-04 6.62056066e-04 1.25259496e-04 3.80697342e-04 1.29502227e-04 4.46941141e-05 1.00289092e-04 5.40081328e-05 1.61617630e-06 2.23625356e-08 4.82916995e-10 + 2025 03 25 12 00 00 3.89329726e-03 2.36953596e-03 1.31774968e-03 9.56692268e-04 7.09324153e-04 3.85501127e-04 2.84005261e-04 2.47014964e-04 5.20868261e-04 1.48029651e-04 9.42763149e-03 5.69834374e-03 2.55978639e-04 7.47610055e-05 4.74977521e-05 2.41211601e-04 3.88369284e-05 6.70874200e-05 2.22324048e-04 8.21541587e-05 1.52295952e-04 1.85358256e-04 1.06807656e-04 9.64261922e-05 5.24967109e-06 9.53442068e-06 6.04875349e-06 3.12440905e-05 5.00767273e-06 1.78891385e-05 1.08864763e-04 3.88717512e-05 1.98393958e-05 1.14965408e-04 4.77010617e-05 1.41705532e-05 5.85201192e-05 8.19137715e-05 9.84713406e-06 5.24346121e-05 1.89848046e-04 3.52395844e-05 8.09075432e-04 5.04804263e-04 5.04804263e-04 3.53370023e-04 5.28803561e-05 4.98083595e-05 4.55957587e-04 6.51067483e-04 1.23398325e-04 3.72218203e-04 1.28916198e-04 4.44819576e-05 9.98036519e-05 5.37321896e-05 1.60720132e-06 2.21596544e-08 4.71313832e-10 + 2025 03 26 12 00 00 3.88126826e-03 2.36135624e-03 1.31259352e-03 9.52781981e-04 7.05817392e-04 3.84007354e-04 2.82505920e-04 2.45353517e-04 5.16551787e-04 1.46818640e-04 9.32927969e-03 5.63458726e-03 2.54198554e-04 7.42895681e-05 4.72299630e-05 2.40620565e-04 3.87767272e-05 6.69711269e-05 2.21078062e-04 8.16215645e-05 1.51997950e-04 1.85094344e-04 1.06606263e-04 9.62429555e-05 5.24554707e-06 9.53702402e-06 6.04322668e-06 3.11814546e-05 4.99610069e-06 1.78449071e-05 1.08647384e-04 3.88485234e-05 1.97879883e-05 1.14054389e-04 4.70216852e-05 1.41463839e-05 5.82404254e-05 8.15940589e-05 9.84906728e-06 5.19848919e-05 1.87644811e-04 3.47912923e-05 7.99802792e-04 4.98290546e-04 4.98290546e-04 3.49321405e-04 5.26096672e-05 4.89408034e-05 4.52338061e-04 6.46721565e-04 1.22102187e-04 3.70772825e-04 1.28360838e-04 4.42811152e-05 9.93451456e-05 5.34839265e-05 1.60017657e-06 2.21116704e-08 4.75117545e-10 + 2025 03 27 12 00 00 3.86825884e-03 2.35396910e-03 1.30781506e-03 9.48865508e-04 7.02151676e-04 3.82268050e-04 2.80846662e-04 2.43550378e-04 5.11877018e-04 1.45809872e-04 9.21731666e-03 5.56020290e-03 2.52511688e-04 7.40361800e-05 4.70265692e-05 2.38781596e-04 3.84527608e-05 6.63252547e-05 2.20461641e-04 8.14841362e-05 1.50644811e-04 1.83453051e-04 1.05901302e-04 9.60455887e-05 5.22429837e-06 9.61227342e-06 6.04150227e-06 3.10898639e-05 4.99341913e-06 1.77807499e-05 1.07763113e-04 3.87226639e-05 1.94749344e-05 1.13537556e-04 4.68623155e-05 1.41387398e-05 5.75227098e-05 8.06453481e-05 9.90789194e-06 5.17441042e-05 1.85049258e-04 3.46781366e-05 7.96421175e-04 4.96752188e-04 4.96752188e-04 3.43246266e-04 5.07487566e-05 4.87234443e-05 4.45013872e-04 6.38935972e-04 1.20929895e-04 3.66506740e-04 1.30395693e-04 4.50220630e-05 1.01061409e-04 5.47075158e-05 1.66102622e-06 2.57090317e-08 8.12143242e-10 + 2025 03 28 12 00 00 3.89811510e-03 2.37172557e-03 1.31921966e-03 9.57834141e-04 7.10355943e-04 3.86150561e-04 2.84593175e-04 2.47629533e-04 5.22540587e-04 1.48266643e-04 9.47301292e-03 5.73017746e-03 2.56482828e-04 7.47028418e-05 4.75322745e-05 2.38522834e-04 3.83290841e-05 6.60808524e-05 2.21407956e-04 8.19593901e-05 1.50454151e-04 1.82850300e-04 1.05849447e-04 9.67443215e-05 5.21608526e-06 1.01915342e-05 6.04515189e-06 3.11595712e-05 5.00457754e-06 1.78065535e-05 1.07532635e-04 3.86747095e-05 1.93593471e-05 1.14511303e-04 4.75121284e-05 1.41544748e-05 5.75293616e-05 8.09730516e-05 1.03619248e-05 5.23316230e-05 1.88154227e-04 3.50850460e-05 8.07165830e-04 5.02953911e-04 5.02953911e-04 3.45096520e-04 5.00818947e-05 4.95153246e-05 4.45140625e-04 6.40697989e-04 1.21654743e-04 3.65890816e-04 1.32139226e-04 4.56569502e-05 1.02532084e-04 5.57569281e-05 1.71327636e-06 2.88022960e-08 1.10203899e-09 + 2025 03 29 12 00 00 3.87266940e-03 2.34687605e-03 1.30418901e-03 9.47909756e-04 7.02227880e-04 3.83618090e-04 2.81608207e-04 2.44137919e-04 5.13437222e-04 1.44145297e-04 9.29432285e-03 5.62391467e-03 2.51482926e-04 7.24269858e-05 4.66464805e-05 2.33101244e-04 3.75734438e-05 6.45681575e-05 2.13257083e-04 7.85638811e-05 1.47340463e-04 1.78953679e-04 1.03948134e-04 9.50192625e-05 5.16681648e-06 9.78739918e-06 6.03151930e-06 3.07433226e-05 4.92910112e-06 1.75283940e-05 1.05006460e-04 3.83808743e-05 1.86179037e-05 1.08597608e-04 4.30918270e-05 1.40949924e-05 5.49556281e-05 7.75305728e-05 1.00449535e-05 4.98491914e-05 1.78240313e-04 3.22129345e-05 7.53309552e-04 4.60631493e-04 4.60631493e-04 3.13958350e-04 4.56163922e-05 4.39480937e-05 4.13655674e-04 6.06142500e-04 1.12252012e-04 3.49164300e-04 1.29595620e-04 4.47339389e-05 1.00409604e-04 5.44253640e-05 1.65935054e-06 2.64628106e-08 9.02032138e-10 + 2025 03 30 12 00 00 3.89221763e-03 2.37115490e-03 1.31857050e-03 9.56521315e-04 7.08743837e-04 3.85100157e-04 2.83741324e-04 2.46761346e-04 5.20364313e-04 1.48365182e-04 9.41283512e-03 5.68763912e-03 2.56148520e-04 7.50196617e-05 4.75615545e-05 2.33413794e-04 3.73332266e-05 6.40899991e-05 2.22016770e-04 8.26695585e-05 1.46533880e-04 1.77744895e-04 1.03914236e-04 9.58630518e-05 5.15102620e-06 9.88596003e-06 6.03399822e-06 3.09619361e-05 5.02182738e-06 1.76827572e-05 1.04962632e-04 3.82875791e-05 1.83871292e-05 1.14637183e-04 4.85133089e-05 1.41055949e-05 5.56818077e-05 7.79250924e-05 1.01220212e-05 5.19036795e-05 1.84599385e-04 3.56978591e-05 8.09275735e-04 5.12490701e-04 5.12490701e-04 3.32300488e-04 4.42515709e-05 5.07109275e-05 4.27693171e-04 6.23765616e-04 1.20367036e-04 3.51917059e-04 1.37134949e-04 4.74762453e-05 1.06747160e-04 5.87740898e-05 1.86413841e-06 3.77775095e-08 1.94417371e-09 + 2025 03 31 12 00 00 3.90060414e-03 2.37773548e-03 1.32264372e-03 9.59323382e-04 7.11102437e-04 3.86044558e-04 2.84740316e-04 2.47883077e-04 5.23332261e-04 1.49376111e-04 9.47908475e-03 5.73011637e-03 2.57513441e-04 7.54573791e-05 4.77694475e-05 2.33758437e-04 3.73432762e-05 6.41141320e-05 2.23281336e-04 8.32527294e-05 1.46674741e-04 1.77840885e-04 1.04041962e-04 9.58402091e-05 5.15149295e-06 9.66751686e-06 6.03632980e-06 3.09936462e-05 5.03559022e-06 1.77153521e-05 1.05107089e-04 3.82916623e-05 1.84042656e-05 1.15593923e-04 4.93143569e-05 1.41155673e-05 5.59095991e-05 7.79866990e-05 9.95061564e-06 5.22730167e-05 1.86276463e-04 3.61977465e-05 8.17515821e-04 5.20133553e-04 5.20133553e-04 3.36014401e-04 4.43917088e-05 5.16841246e-05 4.30910878e-04 6.27891708e-04 1.21688874e-04 3.54326757e-04 1.39580690e-04 4.83668216e-05 1.08810056e-04 6.02454176e-05 1.93734978e-06 4.21085431e-08 2.34999966e-09 + 2025 04 01 12 00 00 3.92116677e-03 2.38733918e-03 1.32906311e-03 9.64885607e-04 7.16448423e-04 3.88928845e-04 2.87377211e-04 2.50688855e-04 5.30672769e-04 1.50520441e-04 9.66577144e-03 5.85759021e-03 2.59812090e-04 7.54585948e-05 4.80033234e-05 2.33121509e-04 3.72310024e-05 6.38919009e-05 2.22130058e-04 8.27722484e-05 1.46459483e-04 1.77289720e-04 1.03889017e-04 9.58580745e-05 5.14405365e-06 9.68853565e-06 6.03273802e-06 3.09667691e-05 5.02545518e-06 1.76925664e-05 1.04772732e-04 3.82481114e-05 1.82986783e-05 1.15023073e-04 4.87174257e-05 1.40997945e-05 5.56336136e-05 7.76398110e-05 9.96700983e-06 5.21750413e-05 1.87086898e-04 3.57958430e-05 8.10913882e-04 5.14399866e-04 5.14399866e-04 3.32259007e-04 4.37790324e-05 5.09079604e-05 4.26724298e-04 6.24895571e-04 1.20355542e-04 3.56918502e-04 1.45864133e-04 5.06521612e-05 1.14090771e-04 6.38598274e-05 2.10691591e-06 5.14304404e-08 3.20746310e-09 + 2025 04 02 12 00 00 3.89683609e-03 2.37316138e-03 1.31992790e-03 9.57513427e-04 7.09605036e-04 3.85713805e-04 2.84289839e-04 2.47326676e-04 5.21940251e-04 1.48562696e-04 9.45746617e-03 5.71945608e-03 2.56602465e-04 7.49272830e-05 4.75995028e-05 2.33410193e-04 3.73460178e-05 6.41256978e-05 2.21398708e-04 8.24170595e-05 1.46723313e-04 1.77922034e-04 1.03993300e-04 9.56512622e-05 5.15138527e-06 9.56504518e-06 6.02274631e-06 3.09305710e-05 5.01807335e-06 1.76704773e-05 1.05048808e-04 3.82929866e-05 1.84179895e-05 1.14391213e-04 4.82818985e-05 1.40561926e-05 5.57214274e-05 7.77191857e-05 9.87009116e-06 5.16614558e-05 1.84436155e-04 3.54996417e-05 8.02314593e-04 5.10212686e-04 5.10212686e-04 3.31344137e-04 4.45304351e-05 5.03365241e-05 4.27348109e-04 6.24418791e-04 1.19882390e-04 3.57567425e-04 1.43818456e-04 4.99096626e-05 1.12382542e-04 6.27781808e-05 2.06234475e-06 4.94318130e-08 3.03459657e-09 + 2025 04 03 12 00 00 3.87096278e-03 2.35571838e-03 1.30892126e-03 9.49174642e-04 7.02132581e-04 3.82494886e-04 2.81069218e-04 2.43764256e-04 5.12669848e-04 1.45994392e-04 9.24499176e-03 5.58132455e-03 2.52806081e-04 7.39542323e-05 4.70342570e-05 2.33566049e-04 3.74749710e-05 6.43881795e-05 2.19107951e-04 8.13385646e-05 1.47047220e-04 1.78634760e-04 1.04060547e-04 9.54888443e-05 5.15958927e-06 9.56320073e-06 6.02154287e-06 3.08587939e-05 4.99426096e-06 1.76217718e-05 1.05263375e-04 3.83433187e-05 1.85523837e-05 1.12789734e-04 4.68863349e-05 1.40508346e-05 5.56432639e-05 7.78098942e-05 9.86852392e-06 5.11192204e-05 1.81067869e-04 3.45887238e-05 7.87142640e-04 4.96845366e-04 4.96845366e-04 3.27401786e-04 4.53798042e-05 4.85716795e-05 4.25103918e-04 6.20549501e-04 1.17976699e-04 3.59629986e-04 1.43609088e-04 4.98345404e-05 1.12213942e-04 6.27213989e-05 2.06381324e-06 4.98149035e-08 3.07718118e-09 + 2025 04 04 12 00 00 3.86685022e-03 2.35281507e-03 1.30710069e-03 9.47804253e-04 7.00908699e-04 3.81989975e-04 2.80557008e-04 2.43193842e-04 5.11192373e-04 1.45557264e-04 9.21189445e-03 5.56006879e-03 2.52179116e-04 7.37782522e-05 4.69496906e-05 2.35978946e-04 3.79384117e-05 6.53213996e-05 2.19039672e-04 8.11228354e-05 1.48868991e-04 1.81084879e-04 1.04970515e-04 9.59238251e-05 5.18954876e-06 9.64972787e-06 6.02692344e-06 3.09405190e-05 4.98954832e-06 1.76772886e-05 1.06519020e-04 3.85237625e-05 1.90170467e-05 1.12938606e-04 4.66098398e-05 1.40741569e-05 5.65607261e-05 7.92514970e-05 9.93627255e-06 5.14372360e-05 1.82273633e-04 3.44069354e-05 7.87576226e-04 4.94195288e-04 4.94195288e-04 3.34223269e-04 4.82287549e-05 4.82197385e-05 4.34097483e-04 6.29509744e-04 1.18885652e-04 3.69122016e-04 1.44765279e-04 5.02556948e-05 1.13190211e-04 6.34261562e-05 2.09945269e-06 5.19626923e-08 3.27932312e-09 + 2025 04 05 12 00 00 3.86038204e-03 2.34772507e-03 1.30395121e-03 9.45570302e-04 6.98986950e-04 3.81247325e-04 2.79772053e-04 2.42308701e-04 5.08881826e-04 1.44765982e-04 9.16153037e-03 5.52819520e-03 2.51113099e-04 7.34138645e-05 4.67727874e-05 2.36749672e-04 3.81144549e-05 6.56779681e-05 2.18141063e-04 8.06408003e-05 1.49540971e-04 1.82038424e-04 1.05267857e-04 9.60943560e-05 5.20083158e-06 9.77935197e-06 6.03123481e-06 3.09452999e-05 4.97867768e-06 1.76777398e-05 1.06945892e-04 3.85923951e-05 1.91973144e-05 1.12404773e-04 4.59741626e-05 1.40928460e-05 5.67972193e-05 7.97939065e-05 1.00378151e-05 5.14299768e-05 1.81838025e-04 3.39979102e-05 7.83229889e-04 4.88114171e-04 4.88114171e-04 3.34871069e-04 4.93527332e-05 4.74260800e-05 4.35784944e-04 6.30670165e-04 1.18415859e-04 3.72180219e-04 1.44488050e-04 5.01556224e-05 1.12962662e-04 6.33137313e-05 2.09723298e-06 5.20641521e-08 3.29408643e-09 + 2025 04 06 12 00 00 3.86408020e-03 2.34982977e-03 1.30531291e-03 9.46675967e-04 7.00016541e-04 3.81738438e-04 2.80241649e-04 2.42818983e-04 5.10209165e-04 1.45052909e-04 9.19343950e-03 5.54944426e-03 2.51592808e-04 7.34833015e-05 4.68235088e-05 2.34951034e-04 3.77730350e-05 6.49962225e-05 2.17940764e-04 8.06807308e-05 1.48253566e-04 1.80296830e-04 1.04613588e-04 9.55680689e-05 5.17848966e-06 9.63744169e-06 6.02439577e-06 3.08689790e-05 4.97943984e-06 1.76289196e-05 1.06027277e-04 3.84597050e-05 1.88654391e-05 1.12044805e-04 4.60195675e-05 1.40630233e-05 5.61064627e-05 7.86700916e-05 9.92648784e-06 5.09132549e-05 1.80756180e-04 3.40306491e-05 7.80052085e-04 4.88553056e-04 4.88553056e-04 3.29313482e-04 4.73698456e-05 4.74888715e-05 4.28898536e-04 6.23420841e-04 1.17530433e-04 3.60605241e-04 1.37061286e-04 4.74565264e-05 1.06736017e-04 5.91708678e-05 1.91126414e-06 4.24543529e-08 2.42505500e-09 + 2025 04 07 12 00 00 3.85986519e-03 2.34662211e-03 1.30332031e-03 9.45249703e-04 6.98782627e-04 3.81246497e-04 2.79728606e-04 2.42243487e-04 5.08705023e-04 1.44560570e-04 9.16014345e-03 5.52819632e-03 2.50917006e-04 7.32713318e-05 4.67263786e-05 2.36448618e-04 3.80711834e-05 6.55980373e-05 2.17599028e-04 8.04021605e-05 1.49423278e-04 1.81888988e-04 1.05184594e-04 9.56646431e-05 5.19769565e-06 9.63692437e-06 6.02702421e-06 3.09065324e-05 4.97310430e-06 1.76565091e-05 1.06815123e-04 3.85758525e-05 1.91669940e-05 1.11850075e-04 4.56494192e-05 1.40743898e-05 5.66488104e-05 7.95172031e-05 9.92602363e-06 5.08812594e-05 1.81163860e-04 3.37938371e-05 7.77810359e-04 4.85013938e-04 4.85013938e-04 3.32898116e-04 4.92317718e-05 4.70290834e-05 4.34096874e-04 6.28072550e-04 1.17826890e-04 3.62575658e-04 1.32168315e-04 4.56784039e-05 1.02634565e-04 5.64487487e-05 1.78956158e-06 3.62029454e-08 1.86069826e-09 + 2025 04 08 12 00 00 3.86997559e-03 2.35096266e-03 1.30626878e-03 9.47934104e-04 7.01423158e-04 3.82702914e-04 2.81041532e-04 2.43633923e-04 5.12326854e-04 1.45048652e-04 9.25311313e-03 5.59194051e-03 2.51990655e-04 7.32204280e-05 4.68332584e-05 2.39186070e-04 3.85905703e-05 6.66435168e-05 2.17340775e-04 8.00668844e-05 1.51594468e-04 1.84630473e-04 1.06262849e-04 9.59752535e-05 5.23129056e-06 9.61622573e-06 6.02862092e-06 3.10044925e-05 4.96560642e-06 1.77241810e-05 1.08209611e-04 3.87780659e-05 1.96870227e-05 1.11880585e-04 4.52105742e-05 1.40812641e-05 5.76783441e-05 8.10357085e-05 9.90975750e-06 5.10139441e-05 1.83603486e-04 3.35098623e-05 7.75731855e-04 4.80813719e-04 4.80813719e-04 3.40065149e-04 5.24165924e-05 4.64783923e-05 4.43802874e-04 6.38053231e-04 1.18612900e-04 3.69929218e-04 1.29098137e-04 4.45630985e-05 1.00063986e-04 5.47661570e-05 1.71604298e-06 3.25577247e-08 1.53502988e-09 + 2025 04 09 12 00 00 3.87558811e-03 2.35438315e-03 1.30845775e-03 9.49619062e-04 7.02945456e-04 3.83421718e-04 2.81739716e-04 2.44394988e-04 5.14325166e-04 1.45525190e-04 9.30104290e-03 5.62380701e-03 2.52747634e-04 7.33564467e-05 4.69364050e-05 2.39373638e-04 3.85967491e-05 6.66590291e-05 2.17580059e-04 8.01732240e-05 1.51698489e-04 1.84696986e-04 1.06324126e-04 9.61673423e-05 5.23154558e-06 9.65762520e-06 6.03933440e-06 3.10188754e-05 4.96821995e-06 1.77375815e-05 1.08266352e-04 3.87805980e-05 1.96987923e-05 1.12214737e-04 4.53620945e-05 1.41277880e-05 5.77631196e-05 8.12015354e-05 9.94217335e-06 5.14882261e-05 1.84682533e-04 3.36018798e-05 7.80926763e-04 4.82256012e-04 4.82256012e-04 3.41642756e-04 5.25164534e-05 4.66580736e-05 4.44812939e-04 6.39648013e-04 1.18959360e-04 3.73953501e-04 1.34098740e-04 4.63817103e-05 1.04265504e-04 5.76333694e-05 1.84995298e-06 3.98753684e-08 2.20706404e-09 + 2025 04 10 12 00 00 3.88513807e-03 2.36049118e-03 1.31233962e-03 9.52550828e-04 7.05565276e-04 3.84621315e-04 2.82920948e-04 2.45689550e-04 5.17724726e-04 1.46395717e-04 9.38145922e-03 5.67691624e-03 2.54082950e-04 7.36369173e-05 4.71239950e-05 2.40152923e-04 3.87181295e-05 6.69061323e-05 2.18267686e-04 8.04411538e-05 1.52284027e-04 1.85368178e-04 1.06651837e-04 9.60238188e-05 5.23926647e-06 9.50581307e-06 6.03259759e-06 3.10607370e-05 4.97461660e-06 1.77697985e-05 1.08657183e-04 3.88279761e-05 1.98253460e-05 1.12652700e-04 4.57340037e-05 1.40983582e-05 5.81195405e-05 8.15247750e-05 9.82312195e-06 5.12972892e-05 1.86116370e-04 3.38321552e-05 7.82685234e-04 4.85802069e-04 4.85802069e-04 3.44992236e-04 5.33165177e-05 4.71067731e-05 4.48791910e-04 6.43727870e-04 1.19857694e-04 3.69518563e-04 1.24701603e-04 4.29667145e-05 9.63882303e-05 5.24029748e-05 1.61594326e-06 2.78424849e-08 1.12044463e-09 + 2025 04 11 12 00 00 3.90078919e-03 2.37097330e-03 1.31895928e-03 9.57481451e-04 7.09935967e-04 3.86553170e-04 2.84849961e-04 2.47816187e-04 5.23301312e-04 1.47922670e-04 9.51119589e-03 5.76189570e-03 2.56352003e-04 7.41761603e-05 4.74357634e-05 2.37745872e-04 3.82022350e-05 6.58744480e-05 2.19101508e-04 8.10308557e-05 1.50420398e-04 1.82719615e-04 1.05752304e-04 9.62231123e-05 5.20557951e-06 9.76442825e-06 6.03437875e-06 3.10187816e-05 4.98834161e-06 1.77325389e-05 1.07366894e-04 3.86274129e-05 1.93210799e-05 1.13354790e-04 4.65339836e-05 1.41059849e-05 5.72996171e-05 8.04139663e-05 1.00258156e-05 5.17431893e-05 1.86583344e-04 3.43360676e-05 7.91371631e-04 4.93440870e-04 4.93440870e-04 3.40525654e-04 5.02893119e-05 4.80867981e-05 4.41013907e-04 6.37570656e-04 1.19711182e-04 3.68379627e-04 1.35454709e-04 4.68766057e-05 1.05417418e-04 5.85200494e-05 1.89847733e-06 4.30497892e-08 2.51137351e-09 + 2025 04 12 12 00 00 3.89527459e-03 2.36810376e-03 1.31707603e-03 9.55823895e-04 7.08327367e-04 3.85783034e-04 2.84128584e-04 2.47035037e-04 5.21300484e-04 1.47542159e-04 9.46322753e-03 5.73000461e-03 2.55670334e-04 7.40957376e-05 4.73574686e-05 2.38103860e-04 3.82619444e-05 6.59984944e-05 2.19110910e-04 8.10261641e-05 1.50641596e-04 1.83077360e-04 1.05867197e-04 9.67610982e-05 5.20925969e-06 1.02749997e-05 6.04350935e-06 3.10503801e-05 4.98886620e-06 1.77395944e-05 1.07556173e-04 3.86508269e-05 1.93878761e-05 1.13549757e-04 4.65607853e-05 1.41455588e-05 5.74529653e-05 8.10462968e-05 1.04260231e-05 5.20911165e-05 1.86611924e-04 3.43372871e-05 7.96374578e-04 4.93676448e-04 4.93676448e-04 3.42318742e-04 5.07332967e-05 4.80924908e-05 4.42593523e-04 6.38762745e-04 1.19970623e-04 3.68314041e-04 1.33565491e-04 4.61909311e-05 1.03840095e-04 5.75233202e-05 1.85756049e-06 4.12279391e-08 2.35418156e-09 + 2025 04 13 12 00 00 3.88548026e-03 2.36190824e-03 1.31313104e-03 9.52695878e-04 7.05449212e-04 3.84518693e-04 2.82886565e-04 2.45667415e-04 5.17769022e-04 1.46646297e-04 9.38177014e-03 5.67686409e-03 2.54289120e-04 7.37775430e-05 4.71596915e-05 2.37387890e-04 3.81585967e-05 6.57955592e-05 2.18289784e-04 8.07114993e-05 1.50188150e-04 1.82587923e-04 1.05609254e-04 9.67018798e-05 5.20233516e-06 1.04184917e-05 6.04050547e-06 3.10029398e-05 4.98249101e-06 1.77015001e-05 1.07255063e-04 3.86108062e-05 1.92936306e-05 1.12973219e-04 4.61835822e-05 1.41323340e-05 5.71553667e-05 8.07727513e-05 1.05384563e-05 5.17811240e-05 1.84831944e-04 3.40762519e-05 7.91433037e-04 4.90044057e-04 4.90044057e-04 3.38969531e-04 5.02020877e-05 4.75897774e-05 4.39127737e-04 6.34596086e-04 1.19032709e-04 3.64569435e-04 1.30884065e-04 4.52172630e-05 1.01597977e-04 5.60795470e-05 1.79623250e-06 3.83250899e-08 2.09855351e-09 + 2025 04 14 12 00 00 3.87105274e-03 2.35163885e-03 1.30669587e-03 9.47876245e-04 7.01157689e-04 3.82759070e-04 2.81093412e-04 2.43667571e-04 5.12584010e-04 1.45095331e-04 9.26586680e-03 5.60247377e-03 2.52074196e-04 7.31233936e-05 4.68120394e-05 2.33903430e-04 3.75903765e-05 6.46594679e-05 2.16012744e-04 7.99219939e-05 1.47864758e-04 1.79673266e-04 1.04353329e-04 9.53799424e-05 5.16522014e-06 9.85744118e-06 6.02064938e-06 3.07839345e-05 4.96545108e-06 1.75658222e-05 1.05608395e-04 3.83899169e-05 1.87386380e-05 1.10984061e-04 4.51824890e-05 1.40457953e-05 5.57107494e-05 7.83611757e-05 1.00986064e-05 5.02984269e-05 1.79740096e-04 3.34126613e-05 7.70583105e-04 4.80441935e-04 4.80441935e-04 3.24271144e-04 4.68724815e-05 4.63061820e-05 4.23421937e-04 6.17497804e-04 1.15663193e-04 3.49241010e-04 1.24346749e-04 4.28418045e-05 9.61198044e-05 5.24566648e-05 1.63520012e-06 3.01258098e-08 1.36023024e-09 + 2025 04 15 12 00 00 3.86581180e-03 2.34932259e-03 1.30513061e-03 9.46393110e-04 6.99670754e-04 3.81993438e-04 2.80398133e-04 2.42924583e-04 5.10681742e-04 1.44818898e-04 9.21866174e-03 5.57058379e-03 2.51493944e-04 7.31174079e-05 4.67554469e-05 2.33101405e-04 3.74344469e-05 6.43502979e-05 2.16105974e-04 8.00420879e-05 1.47232731e-04 1.78902022e-04 1.04043350e-04 9.52023214e-05 5.15491338e-06 9.80220648e-06 6.02034597e-06 3.07459000e-05 4.96872999e-06 1.75434923e-05 1.05222106e-04 3.83294100e-05 1.85910452e-05 1.11005775e-04 4.53707326e-05 1.40443401e-05 5.54259635e-05 7.78928960e-05 1.00552752e-05 5.02171010e-05 1.78850139e-04 3.35192803e-05 7.71428854e-04 4.82223835e-04 4.82223835e-04 3.22452067e-04 4.60110517e-05 4.65160731e-05 4.20868958e-04 6.14745423e-04 1.15514411e-04 3.45862672e-04 1.23323971e-04 4.24709220e-05 9.52682172e-05 5.19373361e-05 1.61531628e-06 2.93604820e-08 1.29779680e-09 + 2025 04 16 12 00 00 3.87333313e-03 2.35405638e-03 1.30814565e-03 9.48654223e-04 7.01681752e-04 3.82938110e-04 2.81323755e-04 2.43935333e-04 5.13349280e-04 1.45484715e-04 9.28258655e-03 5.61306402e-03 2.52527837e-04 7.33163994e-05 4.68998118e-05 2.31777992e-04 3.71723349e-05 6.38279773e-05 2.16240577e-04 8.02162918e-05 1.46295759e-04 1.77576705e-04 1.03583352e-04 9.46453625e-05 5.13771120e-06 9.46251821e-06 6.01034808e-06 3.06884356e-05 4.97318579e-06 1.75138613e-05 1.04556275e-04 3.82275844e-05 1.83381926e-05 1.10960436e-04 4.56280744e-05 1.40007018e-05 5.49554250e-05 7.68910157e-05 9.78895041e-06 4.97872478e-05 1.78497927e-04 3.36714584e-05 7.69044744e-04 4.84668184e-04 4.84668184e-04 3.18837037e-04 4.45102021e-05 4.68141283e-05 4.16310885e-04 6.10509666e-04 1.15116365e-04 3.38790236e-04 1.19931351e-04 4.12386769e-05 9.24290487e-05 5.00899946e-05 1.53541437e-06 2.54627938e-08 9.51298063e-10 + 2025 04 17 12 00 00 3.85801623e-03 2.34467013e-03 1.30214302e-03 9.43895464e-04 6.97305772e-04 3.80948588e-04 2.79387973e-04 2.41815339e-04 5.07848549e-04 1.44154966e-04 9.15341027e-03 5.52805476e-03 2.50429366e-04 7.28913100e-05 4.66045061e-05 2.30554952e-04 3.69800866e-05 6.34468568e-05 2.15228634e-04 7.98477849e-05 1.45446767e-04 1.76626464e-04 1.03115806e-04 9.42925492e-05 5.12500119e-06 9.33620613e-06 6.01043685e-06 3.05962154e-05 4.96538341e-06 1.74575352e-05 1.04001986e-04 3.81529913e-05 1.81563286e-05 1.10176437e-04 4.51687403e-05 1.40009302e-05 5.44359324e-05 7.61293676e-05 9.68979439e-06 4.94712823e-05 1.75925001e-04 3.33629781e-05 7.62658717e-04 4.80257161e-04 4.80257161e-04 3.13688189e-04 4.34492889e-05 4.62182448e-05 4.10718576e-04 6.04137754e-04 1.13838301e-04 3.36310171e-04 1.21176343e-04 4.16925055e-05 9.34826432e-05 5.08691681e-05 1.57606021e-06 2.79966756e-08 1.19164811e-09 + 2025 04 18 12 00 00 3.84815282e-03 2.33821193e-03 1.29805110e-03 9.40736097e-04 6.94442813e-04 3.79701407e-04 2.78150786e-04 2.40450057e-04 5.04305870e-04 1.43212484e-04 9.07186778e-03 5.47492132e-03 2.49009256e-04 7.25545387e-05 4.64202869e-05 2.30885132e-04 3.70693597e-05 6.36312878e-05 2.14487816e-04 7.94827880e-05 1.45764716e-04 1.77149747e-04 1.03242257e-04 9.45215711e-05 5.13055202e-06 9.51857292e-06 6.01293359e-06 3.05871391e-05 4.95756103e-06 1.74468929e-05 1.04224503e-04 3.81879508e-05 1.82542863e-05 1.09775419e-04 4.47087892e-05 1.40116390e-05 5.45359895e-05 7.64843865e-05 9.83262435e-06 4.95183903e-05 1.74968631e-04 3.30566399e-05 7.59350696e-04 4.75843623e-04 4.75843623e-04 3.13544255e-04 4.40919102e-05 4.56259790e-05 4.11203619e-04 6.04380955e-04 1.13380071e-04 3.40495392e-04 1.24378556e-04 4.28578705e-05 9.61788181e-05 5.27542332e-05 1.66729135e-06 3.32166486e-08 1.67677126e-09 + 2025 04 19 12 00 00 3.83795293e-03 2.33385197e-03 1.29508655e-03 9.37978880e-04 6.91703408e-04 3.78219253e-04 2.76814477e-04 2.39031788e-04 5.00634709e-04 1.42717316e-04 8.97850673e-03 5.41116521e-03 2.47920411e-04 7.25950653e-05 4.63154146e-05 2.31902525e-04 3.72432289e-05 6.39858481e-05 2.15318396e-04 7.98036985e-05 1.46400824e-04 1.78117910e-04 1.03595549e-04 9.47849855e-05 5.14158382e-06 9.58174787e-06 6.01558349e-06 3.06286395e-05 4.96514185e-06 1.74769093e-05 1.04774352e-04 3.82558384e-05 1.84366756e-05 1.10404484e-04 4.51499975e-05 1.40230026e-05 5.49947644e-05 7.71536575e-05 9.88196261e-06 4.98320761e-05 1.75165535e-04 3.33317876e-05 7.64936159e-04 4.80053015e-04 4.80053015e-04 3.18297605e-04 4.52502631e-05 4.61616815e-05 4.16579317e-04 6.09695683e-04 1.14623226e-04 3.44941556e-04 1.25490473e-04 4.32635774e-05 9.71225869e-05 5.34742292e-05 1.70628869e-06 3.57424149e-08 1.91837977e-09 + 2025 04 20 12 00 00 3.84260415e-03 2.33810552e-03 1.29767594e-03 9.39668589e-04 6.93073145e-04 3.78693053e-04 2.77354251e-04 2.39653174e-04 5.02280219e-04 1.43403348e-04 9.01287508e-03 5.43240309e-03 2.48777126e-04 7.29371410e-05 4.64439185e-05 2.33051296e-04 3.74121242e-05 6.43299252e-05 2.16573096e-04 8.03116011e-05 1.47142864e-04 1.79054652e-04 1.04021685e-04 9.50807024e-05 5.15231441e-06 9.63225975e-06 6.01848151e-06 3.06983424e-05 4.97685651e-06 1.75256541e-05 1.05339457e-04 3.83217674e-05 1.86132340e-05 1.11380229e-04 4.58334456e-05 1.40354561e-05 5.55305320e-05 7.78788987e-05 9.92134592e-06 5.02547492e-05 1.76975375e-04 3.37649079e-05 7.73551100e-04 4.86582471e-04 4.86582471e-04 3.24258818e-04 4.63686651e-05 4.70034895e-05 4.22804638e-04 6.16433152e-04 1.16247208e-04 3.48190076e-04 1.25060659e-04 4.31087612e-05 9.67721910e-05 5.33206833e-05 1.70516828e-06 3.61258998e-08 1.96446841e-09 + 2025 04 21 12 00 00 3.85733628e-03 2.34943014e-03 1.30470364e-03 9.44637970e-04 6.97337387e-04 3.80392115e-04 2.79135829e-04 2.41653122e-04 5.07526960e-04 1.45143098e-04 9.12923655e-03 5.50676137e-03 2.51152953e-04 7.37061649e-05 4.68295812e-05 2.35223501e-04 3.77218676e-05 6.49559370e-05 2.19031350e-04 8.13090301e-05 1.48519610e-04 1.80717461e-04 1.04816655e-04 9.55749713e-05 5.17223052e-06 9.60157122e-06 6.02828986e-06 3.08352433e-05 4.99964663e-06 1.76266404e-05 1.06362996e-04 3.84424668e-05 1.89279512e-05 1.13310074e-04 4.71643260e-05 1.40779826e-05 5.65206871e-05 7.91275540e-05 9.89707260e-06 5.12107075e-05 1.81112296e-04 3.46137153e-05 7.91372411e-04 4.99304291e-04 4.99304291e-04 3.35607734e-04 4.83189651e-05 4.86520556e-05 4.34404375e-04 6.29460111e-04 1.19347550e-04 3.55981958e-04 1.27099394e-04 4.38510669e-05 9.84913349e-05 5.45431902e-05 1.76575246e-06 3.96929437e-08 2.29832366e-09 + 2025 04 22 12 00 00 3.88310881e-03 2.36699115e-03 1.31576886e-03 9.52882375e-04 7.04649048e-04 3.83560560e-04 2.82317467e-04 2.45171475e-04 5.16728365e-04 1.47727117e-04 9.34114679e-03 5.64486831e-03 2.54948597e-04 7.46744336e-05 4.73871876e-05 2.39409478e-04 3.83867911e-05 6.62935257e-05 2.22017065e-04 8.23970942e-05 1.51383284e-04 1.84217890e-04 1.06380981e-04 9.65333927e-05 5.21527800e-06 9.71508125e-06 6.04325978e-06 3.10752860e-05 5.02439652e-06 1.77934450e-05 1.08369859e-04 3.87013017e-05 1.95921762e-05 1.15807717e-04 4.86102974e-05 1.41429875e-05 5.83047785e-05 8.16148769e-05 9.98593896e-06 5.25834315e-05 1.87849345e-04 3.55387252e-05 8.14043023e-04 5.13129961e-04 5.13129961e-04 3.53723070e-04 5.23792987e-05 5.04480558e-05 4.53991748e-04 6.50961793e-04 1.23660720e-04 3.69702791e-04 1.28365552e-04 4.43123525e-05 9.95609795e-05 5.53194801e-05 1.80528490e-06 4.20940722e-08 2.52472390e-09 + 2025 04 23 12 00 00 3.88616584e-03 2.36232315e-03 1.31339167e-03 9.52336510e-04 7.04815568e-04 3.84488837e-04 2.82852349e-04 2.45596010e-04 5.17828870e-04 1.46632512e-04 9.39296277e-03 5.68735525e-03 2.54286420e-04 7.36175592e-05 4.71318931e-05 2.39903784e-04 3.85987805e-05 6.67220156e-05 2.17992545e-04 8.04745068e-05 1.52310849e-04 1.85356268e-04 1.06678042e-04 9.62745710e-05 5.22890696e-06 9.55558789e-06 6.04337001e-06 3.09989711e-05 4.98162663e-06 1.77440124e-05 1.08708073e-04 3.87839129e-05 1.98076275e-05 1.13253509e-04 4.61056625e-05 1.41433542e-05 5.82440320e-05 8.17295595e-05 9.86081432e-06 5.19102957e-05 1.86453703e-04 3.39122111e-05 7.88853835e-04 4.89150314e-04 4.89150314e-04 3.47416607e-04 5.37147163e-05 4.72950778e-05 4.49942705e-04 6.46388655e-04 1.20194697e-04 3.75800244e-04 1.31974208e-04 4.56248270e-05 1.02593587e-04 5.73938396e-05 1.90250744e-06 4.74320217e-08 3.01556256e-09 + 2025 04 24 12 00 00 3.91459346e-03 2.38820532e-03 1.32915605e-03 9.62872887e-04 7.13516788e-04 3.87444506e-04 2.86204012e-04 2.49462096e-04 5.27961318e-04 1.50830964e-04 9.60123543e-03 5.81483766e-03 2.59542038e-04 7.58073041e-05 4.80522408e-05 2.42332183e-04 3.87941953e-05 6.71165588e-05 2.25119465e-04 8.36435123e-05 1.53303109e-04 1.86400896e-04 1.07477237e-04 9.71644411e-05 5.24149073e-06 9.58754172e-06 6.05849455e-06 3.12621813e-05 5.05294920e-06 1.79339022e-05 1.09713770e-04 3.88600427e-05 2.00054521e-05 1.18352449e-04 5.02772396e-05 1.42090503e-05 5.96217970e-05 8.32196502e-05 9.88578977e-06 5.39525893e-05 1.94425125e-04 3.66000197e-05 8.37480744e-04 5.29061863e-04 5.29061863e-04 3.68682168e-04 5.49370598e-05 5.25097188e-05 4.69076877e-04 6.68521325e-04 1.27611231e-04 3.81752253e-04 1.33537965e-04 4.61938627e-05 1.03909842e-04 5.83110093e-05 1.94668171e-06 4.99443530e-08 3.24869376e-09 + 2025 04 25 12 00 00 3.93556184e-03 2.40130204e-03 1.33750824e-03 9.69321650e-04 7.19356233e-04 3.90121387e-04 2.88822409e-04 2.52328891e-04 5.35452937e-04 1.52687543e-04 9.77826480e-03 5.93169853e-03 2.62435973e-04 7.63889862e-05 4.84413177e-05 2.43816308e-04 3.90104222e-05 6.75523945e-05 2.26483590e-04 8.41726607e-05 1.54350417e-04 1.87548793e-04 1.08063698e-04 9.72773657e-05 5.25544820e-06 9.43469349e-06 6.05947644e-06 3.13548366e-05 5.06503748e-06 1.80032721e-05 1.10399892e-04 3.89442488e-05 2.02230309e-05 1.19412851e-04 5.09831763e-05 1.42132354e-05 6.02778064e-05 8.39428553e-05 9.76594674e-06 5.42866129e-05 1.97877209e-04 3.70503025e-05 8.45747655e-04 5.35809854e-04 5.35809854e-04 3.75532442e-04 5.62749861e-05 5.33842656e-05 4.76357090e-04 6.76814648e-04 1.29368704e-04 3.83205263e-04 1.29738895e-04 4.48133680e-05 1.00726064e-04 5.62037998e-05 1.85289642e-06 4.51596264e-08 2.81759363e-09 + 2025 04 26 12 00 00 3.93981889e-03 2.40469426e-03 1.33960433e-03 9.70766145e-04 7.20574006e-04 3.90598654e-04 2.89330501e-04 2.52901296e-04 5.36962921e-04 1.53212794e-04 9.81159104e-03 5.95293902e-03 2.63139162e-04 7.66221126e-05 4.85463832e-05 2.43808255e-04 3.89844266e-05 6.75017771e-05 2.27145090e-04 8.44892231e-05 1.54290585e-04 1.87430422e-04 1.08065221e-04 9.72013680e-05 5.25368632e-06 9.40549653e-06 6.05695932e-06 3.13706399e-05 5.07239492e-06 1.80146936e-05 1.10382315e-04 3.89341993e-05 2.02001058e-05 1.19824700e-04 5.14120911e-05 1.42022036e-05 6.03243446e-05 8.39226254e-05 9.74308787e-06 5.42368506e-05 1.98495972e-04 3.73207266e-05 8.49228882e-04 5.39905764e-04 5.39905764e-04 3.76790614e-04 5.61500317e-05 5.39101369e-05 4.77343099e-04 6.77786694e-04 1.29966710e-04 3.78727782e-04 1.24075653e-04 4.27552131e-05 9.59781550e-05 5.30462794e-05 1.71126586e-06 3.78491549e-08 2.15670610e-09 + 2025 04 27 12 00 00 3.93642084e-03 2.40051744e-03 1.33712782e-03 9.69226732e-04 7.19369887e-04 3.90326429e-04 2.88947598e-04 2.52430009e-04 5.35741778e-04 1.52481710e-04 9.79131365e-03 5.94230592e-03 2.62326637e-04 7.61668710e-05 4.83960356e-05 2.43040354e-04 3.89004999e-05 6.73347677e-05 2.25472859e-04 8.37659987e-05 1.53954446e-04 1.87008614e-04 1.07828240e-04 9.69667707e-05 5.24816787e-06 9.41492763e-06 6.04745110e-06 3.13058393e-05 5.05646203e-06 1.79651413e-05 1.10060664e-04 3.89016059e-05 2.01195639e-05 1.18630072e-04 5.04780910e-05 1.41607568e-05 5.99492315e-05 8.34781743e-05 9.75048679e-06 5.36001718e-05 1.96622948e-04 3.67101660e-05 8.36507702e-04 5.30958362e-04 5.30958362e-04 3.71190283e-04 5.56741317e-05 5.27273980e-05 4.72227673e-04 6.72185950e-04 1.28140836e-04 3.75768225e-04 1.22387418e-04 4.21421313e-05 9.45661073e-05 5.21337977e-05 1.67226465e-06 3.59836250e-08 1.99187618e-09 + 2025 04 28 12 00 00 3.91628329e-03 2.38659327e-03 1.32837083e-03 9.62665213e-04 7.13528432e-04 3.87851367e-04 2.86450624e-04 2.49659740e-04 5.28528990e-04 1.50411368e-04 9.62724473e-03 5.83605245e-03 2.59315504e-04 7.53543948e-05 4.79490300e-05 2.40545631e-04 3.85300955e-05 6.65929983e-05 2.23046977e-04 8.28231918e-05 1.52342204e-04 1.85095504e-04 1.06918590e-04 9.64987777e-05 5.22402988e-06 9.49122114e-06 6.03461740e-06 3.11506279e-05 5.03559095e-06 1.78507497e-05 1.08916866e-04 3.87575652e-05 1.97556190e-05 1.16751662e-04 4.92552295e-05 1.41048440e-05 5.88741831e-05 8.21194280e-05 9.81027697e-06 5.26077617e-05 1.91757552e-04 3.59133963e-05 8.18569524e-04 5.19247120e-04 5.19247120e-04 3.59259809e-04 5.34796331e-05 5.11834165e-05 4.59874343e-04 6.58479397e-04 1.25022786e-04 3.68184196e-04 1.21664664e-04 4.18800610e-05 9.39644293e-05 5.17676710e-05 1.65830947e-06 3.54521369e-08 1.94871479e-09 + 2025 04 29 12 00 00 3.89856633e-03 2.37490462e-03 1.32097357e-03 9.57017173e-04 7.08444443e-04 3.85627303e-04 2.84240237e-04 2.47221296e-04 5.22181913e-04 1.48706263e-04 9.48069825e-03 5.74042499e-03 2.56758630e-04 7.47310548e-05 4.75679686e-05 2.36552838e-04 3.78592522e-05 6.52485236e-05 2.20980052e-04 8.21638736e-05 1.49562807e-04 1.81619249e-04 1.05439124e-04 9.57895239e-05 5.18036213e-06 9.54649367e-06 6.01916654e-06 3.09505038e-05 5.02102703e-06 1.77057624e-05 1.06989436e-04 3.84966406e-05 1.90945939e-05 1.14989919e-04 4.84017073e-05 1.40375516e-05 5.72543559e-05 7.99048061e-05 9.85360675e-06 5.14747977e-05 1.86303967e-04 3.53564625e-05 8.02630954e-04 5.11071924e-04 5.11071924e-04 3.43819975e-04 4.94843291e-05 5.01043512e-05 4.42474167e-04 6.39715515e-04 1.21649522e-04 3.53556414e-04 1.18750441e-04 4.08212909e-05 9.15235822e-05 5.01632817e-05 1.58771322e-06 3.19129313e-08 1.63147043e-09 + 2025 04 30 12 00 00 3.88429441e-03 2.36477344e-03 1.31462389e-03 9.52315406e-04 7.04288529e-04 3.83896131e-04 2.82478360e-04 2.45260557e-04 5.17073201e-04 1.47185467e-04 9.36538679e-03 5.66604920e-03 2.54582736e-04 7.41168832e-05 4.72508184e-05 2.32767424e-04 3.72238428e-05 6.39754580e-05 2.18770671e-04 8.14198342e-05 1.46961132e-04 1.78330935e-04 1.04040625e-04 9.47996583e-05 5.13898303e-06 9.26591092e-06 6.00741696e-06 3.07375168e-05 5.00446949e-06 1.75665503e-05 1.05150079e-04 3.82495142e-05 1.84691962e-05 1.13121859e-04 4.74321394e-05 1.39863638e-05 5.56842196e-05 7.75424601e-05 9.63368002e-06 5.03675573e-05 1.81324664e-04 3.47269553e-05 7.85578558e-04 5.01789292e-04 5.01789292e-04 3.28666418e-04 4.57079645e-05 4.88840335e-05 4.25557656e-04 6.21689223e-04 1.18223792e-04 3.40773184e-04 1.17462074e-04 4.03534144e-05 9.04459255e-05 4.94663570e-05 1.55788580e-06 3.04830294e-08 1.50504178e-09 + 2025 05 01 12 00 00 3.86236004e-03 2.34980680e-03 1.30519529e-03 9.45245155e-04 6.97992377e-04 3.81190219e-04 2.79760590e-04 2.42252145e-04 5.09227157e-04 1.44975957e-04 9.18559396e-03 5.54917753e-03 2.51341363e-04 7.32776763e-05 4.67777540e-05 2.30393984e-04 3.68716253e-05 6.32707088e-05 2.16354297e-04 8.04683194e-05 1.45410868e-04 1.76518416e-04 1.03158847e-04 9.42326611e-05 5.11600119e-06 9.17944781e-06 6.00049898e-06 3.05731832e-05 4.98315203e-06 1.74552035e-05 1.04054552e-04 3.81125690e-05 1.81242169e-05 1.11247091e-04 4.61847056e-05 1.39562093e-05 5.46369449e-05 7.61330862e-05 9.56589938e-06 4.95334737e-05 1.76553931e-04 3.39207298e-05 7.68546812e-04 4.89851320e-04 4.89851320e-04 3.17199911e-04 4.36333998e-05 4.73203807e-05 4.13635335e-04 6.08463135e-04 1.15184424e-04 3.35681516e-04 1.19616259e-04 4.11369003e-05 9.22562785e-05 5.07049839e-05 1.61596117e-06 3.36732519e-08 1.79843056e-09 diff --git a/srcData/dwm07b104i.dat b/srcData/LowerBCs/dwm07b104i.dat similarity index 100% rename from srcData/dwm07b104i.dat rename to srcData/LowerBCs/dwm07b104i.dat diff --git a/srcData/gd2qd.dat b/srcData/LowerBCs/gd2qd.dat similarity index 100% rename from srcData/gd2qd.dat rename to srcData/LowerBCs/gd2qd.dat diff --git a/srcData/hwm123114.bin b/srcData/LowerBCs/hwm123114.bin similarity index 100% rename from srcData/hwm123114.bin rename to srcData/LowerBCs/hwm123114.bin diff --git a/srcData/LowerBCs/msis21.parm b/srcData/LowerBCs/msis21.parm new file mode 100755 index 00000000..8809e7b4 Binary files /dev/null and b/srcData/LowerBCs/msis21.parm differ diff --git a/srcData/ALBEDO_ASCII b/srcData/Mars/ALBEDO_ASCII similarity index 100% rename from srcData/ALBEDO_ASCII rename to srcData/Mars/ALBEDO_ASCII diff --git a/srcData/MarsAtmosphere.txt b/srcData/Mars/MarsAtmosphere.txt similarity index 100% rename from srcData/MarsAtmosphere.txt rename to srcData/Mars/MarsAtmosphere.txt diff --git a/srcData/MarsAtmosphere2.txt b/srcData/Mars/MarsAtmosphere2.txt similarity index 100% rename from srcData/MarsAtmosphere2.txt rename to srcData/Mars/MarsAtmosphere2.txt diff --git a/srcData/MarsAtmosphere3.txt b/srcData/Mars/MarsAtmosphere3.txt similarity index 100% rename from srcData/MarsAtmosphere3.txt rename to srcData/Mars/MarsAtmosphere3.txt diff --git a/srcData/MarsInitialIonosphere.txt b/srcData/Mars/MarsInitialIonosphere.txt similarity index 100% rename from srcData/MarsInitialIonosphere.txt rename to srcData/Mars/MarsInitialIonosphere.txt diff --git a/srcData/Mars_MOLA_topo.dat b/srcData/Mars/Mars_MOLA_topo.dat similarity index 100% rename from srcData/Mars_MOLA_topo.dat rename to srcData/Mars/Mars_MOLA_topo.dat diff --git a/srcData/Mars_input.txt b/srcData/Mars/Mars_input.txt similarity index 100% rename from srcData/Mars_input.txt rename to srcData/Mars/Mars_input.txt diff --git a/srcData/NewMarsAtm_2p5km.txt b/srcData/Mars/NewMarsAtm_2p5km.txt similarity index 100% rename from srcData/NewMarsAtm_2p5km.txt rename to srcData/Mars/NewMarsAtm_2p5km.txt diff --git a/srcData/THERMAL_ASCII b/srcData/Mars/THERMAL_ASCII similarity index 100% rename from srcData/THERMAL_ASCII rename to srcData/Mars/THERMAL_ASCII diff --git a/srcData/UAM.in.Mars b/srcData/Mars/UAM.in.Mars similarity index 100% rename from srcData/UAM.in.Mars rename to srcData/Mars/UAM.in.Mars diff --git a/srcData/UniformMarsAtmosphere.txt b/srcData/Mars/UniformMarsAtmosphere.txt similarity index 100% rename from srcData/UniformMarsAtmosphere.txt rename to srcData/Mars/UniformMarsAtmosphere.txt diff --git a/srcData/log00000002.dat.Mars b/srcData/Mars/log00000002.dat.Mars similarity index 100% rename from srcData/log00000002.dat.Mars rename to srcData/Mars/log00000002.dat.Mars diff --git a/srcData/AerosolDensity_Akiva_10km.txt b/srcData/Purgatory/AerosolDensity_Akiva_10km.txt similarity index 100% rename from srcData/AerosolDensity_Akiva_10km.txt rename to srcData/Purgatory/AerosolDensity_Akiva_10km.txt diff --git a/srcData/TeKe_500km_10km.txt b/srcData/Purgatory/TeKe_500km_10km.txt similarity index 100% rename from srcData/TeKe_500km_10km.txt rename to srcData/Purgatory/TeKe_500km_10km.txt diff --git a/srcData/amie.ascii b/srcData/Purgatory/amie.ascii similarity index 100% rename from srcData/amie.ascii rename to srcData/Purgatory/amie.ascii diff --git a/srcData/ephoto_xn2.dat b/srcData/Purgatory/ephoto_xn2.dat similarity index 100% rename from srcData/ephoto_xn2.dat rename to srcData/Purgatory/ephoto_xn2.dat diff --git a/srcData/ephoto_xo.dat b/srcData/Purgatory/ephoto_xo.dat similarity index 100% rename from srcData/ephoto_xo.dat rename to srcData/Purgatory/ephoto_xo.dat diff --git a/srcData/ephoto_xo2.dat b/srcData/Purgatory/ephoto_xo2.dat similarity index 100% rename from srcData/ephoto_xo2.dat rename to srcData/Purgatory/ephoto_xo2.dat diff --git a/srcData/hpke.noaa b/srcData/Purgatory/hpke.noaa similarity index 100% rename from srcData/hpke.noaa rename to srcData/Purgatory/hpke.noaa diff --git a/srcData/hpke2.pem b/srcData/Purgatory/hpke2.pem similarity index 100% rename from srcData/hpke2.pem rename to srcData/Purgatory/hpke2.pem diff --git a/srcData/igrf13coeffs.txt b/srcData/Purgatory/igrf13coeffs.txt similarity index 100% rename from srcData/igrf13coeffs.txt rename to srcData/Purgatory/igrf13coeffs.txt diff --git a/srcData/intensity116.txt b/srcData/Purgatory/intensity116.txt similarity index 100% rename from srcData/intensity116.txt rename to srcData/Purgatory/intensity116.txt diff --git a/srcData/radio_flux_adjusted_observation.txt b/srcData/Purgatory/radio_flux_adjusted_observation.txt similarity index 100% rename from srcData/radio_flux_adjusted_observation.txt rename to srcData/Purgatory/radio_flux_adjusted_observation.txt diff --git a/srcData/wei96.cofcnts b/srcData/Purgatory/wei96.cofcnts similarity index 100% rename from srcData/wei96.cofcnts rename to srcData/Purgatory/wei96.cofcnts diff --git a/srcData/UAM.in.test.rcmr_quick b/srcData/Rcmr/UAM.in.test.rcmr_quick similarity index 100% rename from srcData/UAM.in.test.rcmr_quick rename to srcData/Rcmr/UAM.in.test.rcmr_quick diff --git a/srcData/champ.test.rcmr_quick b/srcData/Rcmr/champ.test.rcmr_quick similarity index 100% rename from srcData/champ.test.rcmr_quick rename to srcData/Rcmr/champ.test.rcmr_quick diff --git a/srcData/grace.test.rcmr_quick b/srcData/Rcmr/grace.test.rcmr_quick similarity index 100% rename from srcData/grace.test.rcmr_quick rename to srcData/Rcmr/grace.test.rcmr_quick diff --git a/srcData/imf.test.rcmr_quick b/srcData/Rcmr/imf.test.rcmr_quick similarity index 100% rename from srcData/imf.test.rcmr_quick rename to srcData/Rcmr/imf.test.rcmr_quick diff --git a/srcData/log00000002.dat.rcmr_quick b/srcData/Rcmr/log00000002.dat.rcmr_quick similarity index 100% rename from srcData/log00000002.dat.rcmr_quick rename to srcData/Rcmr/log00000002.dat.rcmr_quick diff --git a/srcData/power.test.rcmr_quick b/srcData/Rcmr/power.test.rcmr_quick similarity index 100% rename from srcData/power.test.rcmr_quick rename to srcData/Rcmr/power.test.rcmr_quick diff --git a/srcData/HCN_116.txt b/srcData/Titan/HCN_116.txt similarity index 100% rename from srcData/HCN_116.txt rename to srcData/Titan/HCN_116.txt diff --git a/srcData/HCN_500km_10km.txt b/srcData/Titan/HCN_500km_10km.txt similarity index 100% rename from srcData/HCN_500km_10km.txt rename to srcData/Titan/HCN_500km_10km.txt diff --git a/srcData/IsoChem_10km.txt b/srcData/Titan/IsoChem_10km.txt similarity index 100% rename from srcData/IsoChem_10km.txt rename to srcData/Titan/IsoChem_10km.txt diff --git a/srcData/MagForcing_500km_10km.txt b/srcData/Titan/MagForcing_500km_10km.txt similarity index 100% rename from srcData/MagForcing_500km_10km.txt rename to srcData/Titan/MagForcing_500km_10km.txt diff --git a/srcData/New116HCNLines_Minimal.txt b/srcData/Titan/New116HCNLines_Minimal.txt similarity index 100% rename from srcData/New116HCNLines_Minimal.txt rename to srcData/Titan/New116HCNLines_Minimal.txt diff --git a/srcData/NewLogIntensity_Minimal.txt b/srcData/Titan/NewLogIntensity_Minimal.txt similarity index 100% rename from srcData/NewLogIntensity_Minimal.txt rename to srcData/Titan/NewLogIntensity_Minimal.txt diff --git a/srcData/Titan_Heff_500km_10km.txt b/srcData/Titan/Titan_Heff_500km_10km.txt similarity index 100% rename from srcData/Titan_Heff_500km_10km.txt rename to srcData/Titan/Titan_Heff_500km_10km.txt diff --git a/srcData/Titan_TA_500km_10km.txt b/srcData/Titan/Titan_TA_500km_10km.txt similarity index 100% rename from srcData/Titan_TA_500km_10km.txt rename to srcData/Titan/Titan_TA_500km_10km.txt diff --git a/srcData/UAM.in.Titan b/srcData/Titan/UAM.in.Titan similarity index 100% rename from srcData/UAM.in.Titan rename to srcData/Titan/UAM.in.Titan diff --git a/srcData/UAM.in.3d b/srcData/UAM.in.3d index 0cbef56c..389512c1 100644 --- a/srcData/UAM.in.3d +++ b/srcData/UAM.in.3d @@ -85,7 +85,7 @@ or #EUV_DATA F Use FISM solar flux data -srcData/FISM/fismflux_daily_2002.dat Filename +UA/DataIn/FISM/fismflux_daily_2002.dat Filename ------------ Auroral Drivers ------------ @@ -99,9 +99,11 @@ or NOAAHPI_INDICES power file -New auroral model from Wu and Ridley, which is driven by AU/AL/AE -#FTAMODEL -F Use FTA model of the aurora +#ELECTRODYNAMICS +FTA Use FTA model of the aurora +60.0 Update FTA every 60 seconds +Weimer Use Weimer model of the potential +60.0 Update Weimer every 60 seconds Can download AU/AL/AE indices from SuperMAG and use them here: SME_INDICES @@ -122,6 +124,13 @@ F Add a cusp to the electron precipitation 0.2 Average Energy 2.0 Energy Flux +In order to use polar rain, the polar cap must be defined. This is done +with FTA and SWMF aurora only at this time. +#USEPOLARRAIN +F +0.1 avee +0.25 eflux + This will modify the auroral inputs, experimental: #AURORAMODS F normalize to hemispheric power diff --git a/srcData/UAM.in.Full b/srcData/UAM.in.Full index 245ef2a3..2efb09f0 100644 --- a/srcData/UAM.in.Full +++ b/srcData/UAM.in.Full @@ -85,7 +85,7 @@ or #EUV_DATA F Use FISM solar flux data -srcData/FISM/fismflux_daily_2002.dat Filename +UA/DataIn/FISM/fismflux_daily_2002.dat Filename ------------ Auroral Drivers ------------ @@ -99,22 +99,38 @@ or NOAAHPI_INDICES power file -New auroral model from Wu and Ridley, which is driven by AU/AL/AE -#FTAMODEL -T Use FTA model of the aurora - Can download AU/AL/AE indices from SuperMAG and use them here: SME_INDICES -sme_2010.txt SME Filename +sme_2002.txt SME Filename none onset time delay file +T Use AE to derive Hemispheric Power + +#ELECTRODYNAMICS +FTA +60.0 +Weimer +60.0 -This is for OVATION-PRIME: -#NEWELLAURORA -F Use Newell Ovation model of the aurora +In order to use Mono, Wave, and Ion, you need to have a source of this +such as ovation, swmf, or something else. + +#AURORATYPES +T Diffuse +F Mono +F Wave +F Ion #FANGENERGY T Use Fang 2010 and 2013 energy deposition +In order to use polar rain, the polar cap must be defined. This is done +with FTA and SWMF aurora only at this time. + +#USEPOLARRAIN +F +0.1 avee +0.25 eflux + Can add a cusp: #USECUSP F Add a cusp to the electron precipitation @@ -128,9 +144,6 @@ F normalize to hemispheric power F iskappa 4.0 kappa (3 min; higher is maxwellian) -#IONPRECIPITATION -F If ions are included in the AMIE file, use them. FangEnergy=T! - ------------ E-Field Drivers ------------ #SOLARWIND @@ -150,11 +163,6 @@ SWPC_INDICES imf file solar wind file -This is for amie-like inputs: -#AMIEFILES -none northern hemisphere amie file -none southern hemisphere amie file - Low-latitude dynamo (only run with higher res). Turn on for higher res sims: #DYNAMO F UseDynamo @@ -172,6 +180,8 @@ Some new features: T Shift the [O] density at the lower boundary by 6 months 0.0 change the obateness of the Earth by this percent (0 = none) +A good value for the oblateness is -0.1 for Earth + -------------------------------------------------------------------------- These set the thermal balance of the code: diff --git a/srcData/UAM.in.eclipse b/srcData/UAM.in.eclipse deleted file mode 100644 index 9a530997..00000000 --- a/srcData/UAM.in.eclipse +++ /dev/null @@ -1,150 +0,0 @@ - -To use this, the ModSize file should be: - - integer, parameter :: nLons = 1 - integer, parameter :: nLats = 1 - integer, parameter :: nAlts = 50 - - integer, parameter :: nBlocksMax = 1 - - -#DEBUG -0 debug level -0 cpu to watch -300.0 dt between normal code output to stdout -F usebarriers - forces the code to stop and wait more often - -#ECLIPSE - 2017 8 21 13 37 30 - 2017 8 21 23 11 30 - -15282.0 - 6676.38 - 16606.2 - -1430.05 - 0.900000 - 3000.00 - 0.0700000 - 400.000 - -#RESTART -F - -#GRID -1 lons -1 lats -41.215 minimum latitude to model -41.215 maximum latitude to model -245.05 longitude start to model (set to 0.0 for whole Earth) -245.05 longitude end to model (set to 0.0 for whole Earth) - -#DIFFUSION -T -300.0 Eddy Diffusion Coefficient (Should be about 37.5 for 1-D runs) -0.0050 Total Eddy Diffusion applied at alts below this pressures level -0.0005 No Eddy Diffusion at altitudes above this pressure level - -#PHOTOELECTRON -0.00 Efficiency of photoelectron heating - -#NEUTRALHEATING -0.02 Efficiency of photoelectron heating - -#THERMALCONDUCTION -5.6e-4 Thermal conductivity (o2) -7.6e-4 Thermal conductivity (o) -0.72 Thermal conductivity (^s) - -#CPUTIMEMAX -86000.0 Maximum amount of cputime to use before stopping the code - -#TIMESTART -2017 year -08 month -21 day -00 hour -00 minute -00 second - -#TIMEEND -2017 year -08 month -22 day -00 hour -00 minute -00 second - -#AUSMSOLVER -T - -#CFL -0.80 percentage of maximum allowable time-step to take - -#LIMITER -mc only limiter available -2.0 - -#USEIMPROVEDIONADVECTION -T -T -2.0 - -#STATISTICALMODELSONLY -F if you want to run with msis and iri only (i.e. not GITM) -1800.0 time step to take if you run with msis and iri - -#LOGFILE -1.0 dt for output to a log file - -#SAVEPLOTS -7200.0 dt for writing restart files -1 how many output files do you want -3DALL second output style -600.0 dt for output (1 every 5 min) - -#ELECTRODYNAMICS -60.0 how often to update potential -60.0 how often to update aurora and euv - -#ALTITUDE -100.0 minimum altitude to use -600.0 maximum altitude to use (ignored unless the following is F) -T use stretched grid - -#INITIAL -T initialize thermosphere using MSIS -T initialize ionosphere using IRI -100.0 if msis is false, then this is the temperature at the base -1000.0 if msis is false, then this is the temperature at the top -5.0e17 if msis is false, then this is the N(species1) at the base -7.0e18 if msis is false, then this is the N(species2) at the base -3.0e19 if msis is false, then this is the N(species3) at the base - -#TIDES -F UseMSISFlat -T UseMSISTides -F UseGSWMTides -F UseWACCMTides - -#APEX -T Use apex magnetic coordinate system - -#F107 -80.0 f10.7 -80.0 f10.7 averaged over 81 days - -#HPI -1.0 hemispheric power - -#KP -1.0 kp - -#SOLARWIND -0.0 IMF Bx -0.0 IMF By --2.0 IMF Bz -400.0 Solar wind Vx - -#DYNAMO -F - -#END diff --git a/srcData/Venus/ALBEDO_ASCII b/srcData/Venus/ALBEDO_ASCII new file mode 100644 index 00000000..fa360e6f --- /dev/null +++ b/srcData/Venus/ALBEDO_ASCII @@ -0,0 +1,144 @@ + 0.316211 0.291937 0.261266 0.248538 0.234186 0.224534 + 0.214515 0.203356 0.200967 0.201548 0.197261 0.204464 + 0.228504 0.249918 0.257956 0.254648 0.244197 0.233634 + 0.232022 0.241816 0.251941 0.266303 0.313264 0.367842 + 0.312683 0.287305 0.260351 0.249577 0.235268 0.225254 + 0.216495 0.205848 0.203646 0.207805 0.210474 0.224406 + 0.249910 0.268127 0.274009 0.269779 0.258955 0.251705 + 0.251276 0.254721 0.259388 0.273162 0.319911 0.370925 + 0.307943 0.282207 0.261152 0.253549 0.241177 0.230506 + 0.219290 0.204812 0.198739 0.204256 0.216991 0.240782 + 0.265741 0.277738 0.280016 0.275381 0.264448 0.255908 + 0.253783 0.256453 0.260720 0.273111 0.319163 0.370707 + 0.303379 0.278307 0.264047 0.260579 0.251969 0.240829 + 0.224863 0.203146 0.189479 0.193909 0.214274 0.243491 + 0.266780 0.276349 0.277387 0.272934 0.263770 0.255141 + 0.250834 0.252209 0.256656 0.269263 0.315855 0.369383 + 0.299217 0.274917 0.266930 0.267273 0.263589 0.255598 + 0.238910 0.210907 0.186983 0.184666 0.202548 0.228166 + 0.249353 0.260965 0.265029 0.264815 0.261492 0.255672 + 0.247991 0.244279 0.249597 0.267360 0.316962 0.370231 + 0.295802 0.271840 0.268777 0.271681 0.271694 0.269641 + 0.258476 0.228700 0.194236 0.178437 0.182205 0.194196 + 0.207748 0.220505 0.233950 0.248080 0.256516 0.254500 + 0.243227 0.235029 0.242848 0.268049 0.321755 0.372822 + 0.292868 0.267662 0.266921 0.271829 0.274180 0.275044 + 0.267709 0.239010 0.199350 0.172916 0.164240 0.163599 + 0.166272 0.176481 0.200126 0.230807 0.250570 0.249629 + 0.233033 0.222484 0.235685 0.267946 0.323827 0.373621 + 0.289364 0.260580 0.259087 0.265451 0.270546 0.269630 + 0.258577 0.230401 0.193728 0.167828 0.159789 0.161534 + 0.164711 0.174890 0.200109 0.231371 0.249122 0.241970 + 0.217254 0.206889 0.229283 0.267278 0.321469 0.371464 + 0.286494 0.253938 0.250070 0.256411 0.263348 0.258650 + 0.240817 0.212783 0.182861 0.164698 0.166567 0.182067 + 0.197048 0.210452 0.228414 0.246110 0.252461 0.237319 + 0.206938 0.198570 0.228183 0.267558 0.316817 0.367708 + 0.285385 0.251375 0.246374 0.251842 0.258893 0.252896 + 0.232338 0.203957 0.177488 0.165722 0.175774 0.200726 + 0.223693 0.237358 0.246868 0.254501 0.256531 0.242303 + 0.212891 0.204980 0.234634 0.269310 0.310823 0.362968 + 0.284516 0.250400 0.246488 0.251492 0.258747 0.256227 + 0.237925 0.207408 0.179452 0.170084 0.182981 0.209316 + 0.232580 0.243089 0.247260 0.253176 0.259078 0.251782 + 0.227038 0.218650 0.245000 0.273359 0.306240 0.358571 + 0.282794 0.248034 0.245865 0.250209 0.257088 0.258615 + 0.242983 0.210435 0.181040 0.172590 0.187505 0.215703 + 0.238800 0.246512 0.246881 0.251130 0.258920 0.256580 + 0.237241 0.229939 0.253678 0.278362 0.304618 0.355552 + 0.280692 0.245265 0.244712 0.247080 0.251320 0.253686 + 0.239179 0.206855 0.178997 0.172639 0.190810 0.222559 + 0.247129 0.255852 0.255976 0.256469 0.260516 0.259406 + 0.245213 0.239156 0.259089 0.280362 0.301836 0.352386 + 0.278600 0.243278 0.244867 0.244903 0.245071 0.245847 + 0.232259 0.201468 0.176707 0.176012 0.199414 0.231678 + 0.253370 0.262898 0.267633 0.268812 0.268918 0.265317 + 0.252425 0.246390 0.262022 0.278522 0.296275 0.348686 + 0.277265 0.242602 0.246220 0.244320 0.240103 0.237348 + 0.223381 0.195453 0.176973 0.185717 0.216095 0.246228 + 0.258509 0.261298 0.268312 0.275019 0.276531 0.270069 + 0.254044 0.247404 0.262382 0.276375 0.291715 0.345944 + 0.277187 0.243455 0.247165 0.242497 0.234676 0.227635 + 0.211704 0.190171 0.182924 0.199963 0.233428 0.260507 + 0.264331 0.257786 0.261297 0.270822 0.275096 0.268766 + 0.251514 0.244305 0.260178 0.274977 0.289053 0.343915 + 0.277258 0.243914 0.246239 0.238766 0.229677 0.220681 + 0.204376 0.191183 0.195323 0.216416 0.247009 0.269514 + 0.270960 0.262762 0.262765 0.267734 0.267600 0.261728 + 0.248878 0.241739 0.255055 0.270279 0.284530 0.341202 + 0.276674 0.243048 0.245333 0.237257 0.227589 0.217682 + 0.202493 0.195078 0.206342 0.230193 0.257213 0.274702 + 0.277048 0.273341 0.272629 0.270302 0.262297 0.255927 + 0.248025 0.239666 0.246236 0.259247 0.276710 0.338396 + 0.276296 0.242691 0.246182 0.238741 0.227690 0.215743 + 0.200028 0.194197 0.209501 0.237221 0.263250 0.277785 + 0.281160 0.280337 0.278795 0.273068 0.263435 0.258319 + 0.252449 0.240862 0.237988 0.245706 0.268359 0.336711 + 0.276634 0.242570 0.245242 0.238254 0.227925 0.216037 + 0.199019 0.192103 0.210600 0.243055 0.268804 0.280644 + 0.283739 0.283246 0.280398 0.274202 0.266465 0.263504 + 0.259622 0.246781 0.235992 0.236759 0.262258 0.335790 + 0.277372 0.242003 0.241644 0.234645 0.226706 0.217460 + 0.201448 0.194643 0.216279 0.252287 0.276217 0.283836 + 0.285338 0.285096 0.282285 0.276529 0.269799 0.267259 + 0.264267 0.252254 0.239331 0.236162 0.260712 0.335472 + 0.279123 0.243429 0.239449 0.230827 0.223124 0.215107 + 0.201203 0.196769 0.220870 0.258124 0.280607 0.285740 + 0.285927 0.285963 0.284513 0.280968 0.276306 0.273303 + 0.268560 0.256977 0.246010 0.242917 0.264659 0.336476 + 0.282184 0.246918 0.238399 0.226977 0.217803 0.209143 + 0.196038 0.192594 0.216508 0.254140 0.278464 0.285372 + 0.286078 0.286210 0.285910 0.284844 0.283044 0.280763 + 0.275047 0.264343 0.255303 0.252574 0.272432 0.339581 + 0.285823 0.251016 0.237855 0.223844 0.212153 0.202141 + 0.189782 0.185108 0.205084 0.242183 0.271376 0.284210 + 0.287981 0.288361 0.287672 0.287134 0.287648 0.287466 + 0.281998 0.271979 0.263268 0.260394 0.281402 0.344455 + 0.290786 0.257693 0.240471 0.224009 0.208741 0.197512 + 0.187553 0.182241 0.195799 0.229390 0.264377 0.286200 + 0.293975 0.293352 0.290154 0.288010 0.289595 0.291415 + 0.285694 0.274608 0.265241 0.263308 0.287632 0.348527 + 0.297809 0.267298 0.244952 0.226999 0.210325 0.199443 + 0.192869 0.188860 0.195046 0.219748 0.256897 0.288459 + 0.301573 0.299272 0.292057 0.286954 0.287577 0.289869 + 0.283663 0.270873 0.260406 0.259068 0.285952 0.348531 + 0.305341 0.277702 0.250350 0.232328 0.215350 0.203749 + 0.198637 0.195084 0.194009 0.207727 0.241729 0.280803 + 0.302813 0.302710 0.293415 0.286303 0.285077 0.285874 + 0.278744 0.264736 0.251692 0.247227 0.274810 0.343971 + 0.312322 0.289151 0.259305 0.240575 0.220316 0.204641 + 0.197382 0.191467 0.186243 0.194804 0.224869 0.265075 + 0.292039 0.295764 0.289211 0.284752 0.284020 0.283021 + 0.273964 0.258043 0.240736 0.231521 0.261153 0.338993 + 0.318578 0.300476 0.268753 0.248278 0.225683 0.207153 + 0.195920 0.186824 0.181087 0.188525 0.214631 0.249227 + 0.271333 0.274287 0.271111 0.271701 0.275833 0.277034 + 0.265696 0.244329 0.222275 0.213652 0.251070 0.336733 + 0.322853 0.307559 0.273161 0.252477 0.232731 0.214542 + 0.198515 0.185615 0.178772 0.182361 0.201802 0.230260 + 0.248851 0.251626 0.247556 0.246509 0.253548 0.258419 + 0.244493 0.216996 0.193555 0.192172 0.241137 0.334684 + 0.324843 0.309788 0.273277 0.254612 0.239763 0.222151 + 0.200270 0.181933 0.172861 0.172787 0.186081 0.211829 + 0.234414 0.242200 0.235360 0.224349 0.222345 0.221170 + 0.204711 0.181369 0.166556 0.174564 0.232486 0.332465 + 0.326050 0.310029 0.271526 0.254397 0.242791 0.226170 + 0.200439 0.177956 0.168290 0.168306 0.179141 0.203206 + 0.228948 0.240254 0.230155 0.207798 0.189636 0.175615 + 0.160551 0.152326 0.152300 0.168664 0.232715 0.334067 + 0.326595 0.309155 0.268370 0.250626 0.239854 0.225457 + 0.200933 0.179235 0.170744 0.170508 0.178300 0.198180 + 0.222606 0.234460 0.222248 0.193943 0.166443 0.145959 + 0.136179 0.140983 0.150779 0.173031 0.241792 0.339551 + 0.325173 0.305713 0.264348 0.246082 0.235514 0.224044 + 0.203615 0.185290 0.178137 0.175633 0.178617 0.193477 + 0.214700 0.227240 0.219352 0.195722 0.169225 0.147057 + 0.138719 0.149459 0.165319 0.190345 0.257534 0.346439 + 0.321950 0.300092 0.261379 0.244755 0.234197 0.225122 + 0.208554 0.192578 0.186400 0.182627 0.181910 0.193613 + 0.212999 0.226731 0.226791 0.214777 0.195364 0.172267 + 0.161581 0.175997 0.197171 0.220547 0.278771 0.354206 + 0.318754 0.295374 0.261117 0.246780 0.234441 0.225610 + 0.212467 0.198723 0.194204 0.191476 0.187274 0.195530 + 0.216662 0.234448 0.240244 0.235912 0.223277 0.204745 + 0.197053 0.212468 0.231482 0.249414 0.299139 0.361884 diff --git a/srcData/Venus/THERMAL_ASCII b/srcData/Venus/THERMAL_ASCII new file mode 100644 index 00000000..2fb2712f --- /dev/null +++ b/srcData/Venus/THERMAL_ASCII @@ -0,0 +1,144 @@ + 374.150 295.102 219.706 264.319 283.034 270.670 + 249.689 242.849 250.920 251.572 241.837 234.042 + 214.615 171.844 131.829 126.440 154.053 185.478 + 202.292 210.716 217.863 250.085 351.921 621.594 + 345.187 260.754 210.071 257.262 279.169 268.787 + 249.453 244.448 248.164 237.193 211.345 183.672 + 153.481 118.868 91.3957 92.1344 126.374 165.192 + 185.619 198.423 213.990 257.298 361.325 624.345 + 297.682 205.883 192.479 239.225 269.373 267.635 + 252.560 248.653 249.049 230.637 192.252 147.984 + 111.210 88.0886 74.9111 79.9559 114.166 154.646 + 177.846 194.903 215.264 265.380 367.225 623.829 + 255.606 159.201 181.142 226.482 264.518 276.956 + 269.518 263.019 258.527 237.670 195.808 145.507 + 104.572 83.7064 77.4825 84.5257 112.558 150.257 + 178.539 201.218 222.889 275.713 385.268 634.975 + 237.669 140.442 177.852 219.836 262.959 292.245 + 296.715 288.620 279.969 259.525 220.095 172.001 + 130.540 109.496 108.234 115.138 132.073 162.597 + 193.013 217.695 236.895 287.172 420.513 664.563 + 235.405 138.154 175.993 214.142 259.305 299.562 + 315.732 313.625 304.801 282.620 246.916 210.184 + 180.128 166.810 170.301 171.853 175.868 196.978 + 221.185 239.144 251.179 295.393 448.055 689.209 + 234.588 136.004 173.034 210.160 254.554 296.536 + 320.421 326.342 314.860 288.622 261.814 243.613 + 230.951 226.804 229.962 223.601 217.800 230.817 + 247.584 257.217 259.750 300.023 453.782 692.164 + 232.062 130.630 168.107 206.000 248.423 289.348 + 317.285 322.952 303.294 278.344 268.064 269.896 + 273.829 272.532 263.874 247.937 238.767 249.011 + 264.666 271.348 265.330 308.042 474.341 704.806 + 229.505 124.723 162.050 199.776 238.349 276.159 + 302.822 303.325 281.227 265.463 270.190 288.741 + 309.821 308.437 280.351 252.401 244.883 258.118 + 275.680 281.991 271.249 320.895 520.293 739.195 + 228.308 121.116 158.233 194.593 224.368 251.032 + 270.847 272.480 260.663 255.262 265.914 292.940 + 324.118 323.977 288.049 254.968 247.182 259.549 + 276.767 284.404 274.738 328.593 542.660 755.735 + 229.264 122.123 159.617 193.983 211.924 222.653 + 235.092 244.176 246.195 247.079 257.282 282.733 + 310.154 311.221 284.396 256.693 244.100 249.091 + 266.757 280.296 275.717 330.041 533.323 746.533 + 232.058 127.689 165.501 197.847 207.993 208.468 + 217.378 232.739 242.688 246.163 253.269 268.800 + 283.111 282.506 267.121 246.747 229.899 229.970 + 251.988 273.801 276.042 332.330 528.088 740.878 + 236.846 135.504 171.452 203.814 212.621 209.375 + 216.923 235.175 247.628 251.119 254.439 260.260 + 262.941 254.933 237.844 219.562 205.138 207.303 + 233.153 260.728 271.448 331.980 531.595 745.079 + 243.428 142.168 171.929 206.904 218.808 215.212 + 221.943 240.930 251.950 251.125 248.552 248.991 + 248.760 231.928 199.838 178.125 173.401 183.646 + 211.974 242.412 260.871 324.481 527.705 746.042 + 248.493 144.375 165.552 202.805 221.700 224.143 + 232.737 250.211 256.513 247.549 232.808 221.443 + 221.501 212.786 181.055 156.025 153.794 169.092 + 200.524 231.453 251.612 313.023 511.529 737.716 + 250.329 143.325 158.075 196.221 223.394 235.303 + 246.126 257.996 257.961 242.594 213.736 183.017 + 178.410 192.466 187.134 165.297 155.882 171.001 + 204.744 232.992 247.841 303.095 494.750 727.880 + 252.200 144.760 156.664 195.989 227.739 243.570 + 252.399 255.920 248.898 228.547 188.970 145.091 + 133.040 154.133 166.902 157.078 156.387 181.328 + 217.633 241.133 247.184 294.777 484.279 722.770 + 257.232 152.352 162.915 203.954 236.082 249.451 + 252.206 249.036 237.676 211.007 162.551 115.434 + 98.4333 105.539 112.350 116.420 140.956 185.134 + 226.006 246.485 244.842 278.387 470.565 721.417 + 264.258 163.565 172.795 215.134 245.902 254.593 + 249.490 241.622 229.626 198.598 145.340 100.299 + 82.1237 76.1089 72.3059 81.8506 119.959 174.141 + 218.746 240.033 235.360 255.582 463.392 730.575 + 269.989 173.204 181.098 223.136 251.719 255.918 + 244.778 233.685 218.879 182.564 130.854 94.7713 + 80.8185 71.7667 64.0397 70.7179 103.819 153.748 + 198.588 222.797 219.422 241.637 481.223 754.085 + 274.284 179.917 184.637 224.430 251.220 253.110 + 240.524 228.645 206.616 160.818 113.573 91.7646 + 86.4384 80.1432 72.3524 72.5754 91.6469 129.254 + 171.898 201.184 204.453 239.925 508.148 776.828 + 280.315 186.782 184.325 221.413 247.463 249.239 + 237.697 226.608 199.410 146.913 103.100 91.3247 + 92.8352 90.1371 82.7567 76.5066 82.0542 106.713 + 145.559 180.335 194.802 245.102 516.484 778.529 + 291.125 198.990 185.117 219.581 245.005 246.326 + 233.794 223.528 199.463 149.246 105.970 94.3541 + 96.2396 93.8153 85.7481 76.8626 77.4381 96.2089 + 131.582 169.137 193.139 254.561 501.819 756.634 + 306.630 218.715 190.398 221.571 246.509 246.071 + 229.509 218.239 202.938 163.220 119.650 100.784 + 97.5779 92.2435 82.2931 73.6275 75.8353 95.4438 + 129.751 169.376 200.455 271.223 499.666 743.502 + 320.712 237.790 196.846 224.665 248.872 246.963 + 228.128 216.370 210.424 183.313 138.755 108.951 + 98.9908 91.2616 79.3786 70.4669 74.0672 94.4049 + 128.071 169.521 206.448 287.258 519.875 752.408 + 327.878 248.591 200.374 224.304 247.505 245.302 + 228.337 222.938 229.993 213.444 164.846 120.493 + 100.431 90.4201 77.7986 67.8305 70.3385 89.8164 + 124.486 167.193 204.203 279.199 496.489 735.951 + 325.354 247.501 200.715 221.840 245.385 243.919 + 229.384 234.597 256.622 249.295 200.335 143.124 + 106.333 88.8199 75.2827 64.2382 65.4460 87.7135 + 130.928 178.069 208.321 255.080 418.604 681.317 + 314.159 232.997 197.769 222.212 246.946 247.275 + 233.946 242.822 270.646 273.028 233.938 172.753 + 121.858 96.4538 81.1371 67.8593 68.6581 97.9666 + 153.752 207.278 230.236 248.554 362.847 639.498 + 309.948 224.748 194.582 224.706 252.209 256.305 + 245.004 249.160 272.261 283.943 258.077 200.715 + 151.835 131.049 117.274 101.607 100.730 130.750 + 187.328 241.330 260.880 263.769 354.051 628.900 + 315.564 229.371 192.464 227.516 265.549 277.266 + 267.608 266.079 282.493 298.127 282.372 236.058 + 200.769 191.739 186.144 175.546 173.480 193.444 + 234.132 276.296 289.406 282.224 354.208 623.328 + 314.438 225.640 187.322 230.866 286.498 308.565 + 296.637 288.849 300.157 315.261 309.409 279.189 + 254.091 250.742 255.893 255.845 254.256 265.347 + 289.918 311.523 308.665 293.525 349.824 614.560 + 313.241 220.396 180.618 230.013 295.627 324.971 + 311.175 297.341 305.968 322.998 327.934 313.770 + 296.430 294.149 303.041 304.069 296.700 303.076 + 322.518 330.674 314.317 297.771 351.839 612.983 + 328.601 234.394 177.795 224.514 284.378 312.120 + 300.832 287.787 298.433 319.205 330.980 331.555 + 326.756 323.539 324.553 317.025 300.036 299.758 + 317.677 325.677 308.845 295.313 351.939 612.742 + 355.257 264.375 184.204 225.516 271.687 288.654 + 278.543 271.564 285.754 306.406 319.248 329.200 + 333.108 323.104 309.490 296.584 281.773 279.650 + 293.578 303.103 291.535 283.349 340.181 605.658 + 376.573 292.959 200.091 238.069 270.593 273.661 + 259.772 255.583 270.464 287.784 297.857 308.012 + 308.508 285.555 257.419 244.932 244.643 250.891 + 261.645 268.343 261.218 263.973 330.266 602.091 + 383.041 304.601 215.091 254.627 277.252 269.732 + 250.841 244.912 257.521 268.897 271.882 276.277 + 267.417 230.429 191.446 181.549 197.072 216.343 + 228.424 233.671 232.212 249.973 336.684 610.676 diff --git a/srcData/UAM.in.Venus b/srcData/Venus/UAM.in.Venus similarity index 100% rename from srcData/UAM.in.Venus rename to srcData/Venus/UAM.in.Venus diff --git a/srcData/e_test.ps b/srcData/e_test.ps deleted file mode 100644 index 5030705c..00000000 Binary files a/srcData/e_test.ps and /dev/null differ diff --git a/srcData/elmodel.hpin1 b/srcData/elmodel.hpin1 deleted file mode 100644 index e69de29b..00000000 diff --git a/srcData/f107.txt b/srcData/f107.txt index c3d821af..d46951a9 100644 --- a/srcData/f107.txt +++ b/srcData/f107.txt @@ -24291,3 +24291,334 @@ 2024-06-22 00:00 202.1 '' '' 2024-06-23 00:00 202.2 '' '' 2024-06-24 00:00 205.3 '' '' +2024-06-25 00:00 200.1 '' '' +2024-06-26 00:00 187.4 '' '' +2024-06-27 00:00 188.6 '' '' +2024-06-28 00:00 186.7 '' '' +2024-06-29 00:00 192.7 '' '' +2024-06-30 00:00 179.6 '' '' +2024-07-01 00:00 176.3 '' '' +2024-07-02 00:00 169.3 '' '' +2024-07-03 00:00 173.1 '' '' +2024-07-04 00:00 178.8 '' '' +2024-07-05 00:00 171.2 '' '' +2024-07-06 00:00 171.6 '' '' +2024-07-07 00:00 177.1 '' '' +2024-07-08 00:00 174.1 '' '' +2024-07-09 00:00 184.2 '' '' +2024-07-10 00:00 220.8 '' '' +2024-07-11 00:00 211.9 '' '' +2024-07-12 00:00 216.7 '' '' +2024-07-13 00:00 246.3 '' '' +2024-07-14 00:00 241.7 '' '' +2024-07-15 00:00 240.9 '' '' +2024-07-16 00:00 249.9 '' '' +2024-07-17 00:00 231.1 '' '' +2024-07-18 00:00 215.5 '' '' +2024-07-19 00:00 208.2 '' '' +2024-07-20 00:00 214.1 '' '' +2024-07-21 00:00 204.2 '' '' +2024-07-22 00:00 191.0 '' '' +2024-07-23 00:00 181.0 '' '' +2024-07-24 00:00 180.4 '' '' +2024-07-25 00:00 172.4 '' '' +2024-07-26 00:00 181.8 '' '' +2024-07-27 00:00 210.0 '' '' +2024-07-28 00:00 221.1 '' '' +2024-07-29 00:00 230.0 '' '' +2024-07-30 00:00 236.1 '' '' +2024-07-31 00:00 242.2 '' '' +2024-08-01 00:00 241.4 '' '' +2024-08-02 00:00 254.5 '' '' +2024-08-03 00:00 251.8 '' '' +2024-08-04 00:00 247.9 '' '' +2024-08-05 00:00 254.4 '' '' +2024-08-06 00:00 277.7 '' '' +2024-08-07 00:00 311.7 '' '' +2024-08-08 00:00 345.4 '' '' +2024-08-09 00:00 313.9 '' '' +2024-08-10 00:00 299.0 '' '' +2024-08-11 00:00 289.0 '' '' +2024-08-12 00:00 279.6 '' '' +2024-08-13 00:00 266.7 '' '' +2024-08-14 00:00 254.6 '' '' +2024-08-15 00:00 233.2 '' '' +2024-08-16 00:00 230.5 '' '' +2024-08-17 00:00 235.2 '' '' +2024-08-18 00:00 236.6 '' '' +2024-08-19 00:00 244.8 '' '' +2024-08-20 00:00 243.8 '' '' +2024-08-21 00:00 244.5 '' '' +2024-08-22 00:00 235.8 '' '' +2024-08-23 00:00 247.1 '' '' +2024-08-24 00:00 237.3 '' '' +2024-08-25 00:00 237.6 '' '' +2024-08-26 00:00 151.2 '' '' +2024-08-27 00:00 225.8 '' '' +2024-08-28 00:00 216.1 '' '' +2024-08-29 00:00 207.9 '' '' +2024-08-30 00:00 218.3 '' '' +2024-08-31 00:00 235.9 '' '' +2024-09-01 00:00 229.5 '' '' +2024-09-02 00:00 241.8 '' '' +2024-09-03 00:00 246.3 '' '' +2024-09-04 00:00 266.2 '' '' +2024-09-05 00:00 244.6 '' '' +2024-09-06 00:00 252.8 '' '' +2024-09-07 00:00 225.0 '' '' +2024-09-08 00:00 231.0 '' '' +2024-09-09 00:00 217.8 '' '' +2024-09-10 00:00 207.9 '' '' +2024-09-11 00:00 209.6 '' '' +2024-09-12 00:00 203.7 '' '' +2024-09-13 00:00 188.1 '' '' +2024-09-14 00:00 174.4 '' '' +2024-09-15 00:00 174.6 '' '' +2024-09-16 00:00 170.9 '' '' +2024-09-17 00:00 167.0 '' '' +2024-09-18 00:00 164.8 '' '' +2024-09-19 00:00 162.6 '' '' +2024-09-20 00:00 155.0 '' '' +2024-09-21 00:00 159.2 '' '' +2024-09-22 00:00 164.0 '' '' +2024-09-23 00:00 168.5 '' '' +2024-09-24 00:00 173.4 '' '' +2024-09-25 00:00 175.2 '' '' +2024-09-26 00:00 182.0 '' '' +2024-09-27 00:00 186.7 '' '' +2024-09-28 00:00 195.2 '' '' +2024-09-29 00:00 197.8 '' '' +2024-09-30 00:00 214.7 '' '' +2024-10-01 00:00 245.1 '' '' +2024-10-02 00:00 274.8 '' '' +2024-10-03 00:00 312.1 '' '' +2024-10-04 00:00 291.1 '' '' +2024-10-05 00:00 277.1 '' '' +2024-10-06 00:00 264.2 '' '' +2024-10-07 00:00 276.5 '' '' +2024-10-08 00:00 224.2 '' '' +2024-10-09 00:00 219.7 '' '' +2024-10-10 00:00 215.6 '' '' +2024-10-11 00:00 213.1 '' '' +2024-10-12 00:00 212.6 '' '' +2024-10-13 00:00 193.9 '' '' +2024-10-14 00:00 180.9 '' '' +2024-10-15 00:00 170.9 '' '' +2024-10-16 00:00 166.6 '' '' +2024-10-17 00:00 172.2 '' '' +2024-10-18 00:00 163.9 '' '' +2024-10-19 00:00 160.9 '' '' +2024-10-20 00:00 160.3 '' '' +2024-10-21 00:00 162.4 '' '' +2024-10-22 00:00 174.3 '' '' +2024-10-23 00:00 183.7 '' '' +2024-10-24 00:00 194.4 '' '' +2024-10-25 00:00 206.8 '' '' +2024-10-26 00:00 235.5 '' '' +2024-10-27 00:00 243.0 '' '' +2024-10-28 00:00 252.1 '' '' +2024-10-29 00:00 261.9 '' '' +2024-10-30 00:00 265.9 '' '' +2024-10-31 00:00 265.9 '' '' +2024-11-01 00:00 252.2 '' '' +2024-11-02 00:00 246.6 '' '' +2024-11-03 00:00 236.7 '' '' +2024-11-04 00:00 238.3 '' '' +2024-11-05 00:00 241.4 '' '' +2024-11-06 00:00 255.9 '' '' +2024-11-07 00:00 234.8 '' '' +2024-11-08 00:00 226.7 '' '' +2024-11-09 00:00 216.7 '' '' +2024-11-10 00:00 226.0 '' '' +2024-11-11 00:00 178.6 '' '' +2024-11-12 00:00 168.1 '' '' +2024-11-13 00:00 147.1 '' '' +2024-11-14 00:00 143.7 '' '' +2024-11-15 00:00 145.6 '' '' +2024-11-16 00:00 136.8 '' '' +2024-11-17 00:00 142.9 '' '' +2024-11-18 00:00 161.2 '' '' +2024-11-19 00:00 153.5 '' '' +2024-11-20 00:00 158.7 '' '' +2024-11-21 00:00 162.1 '' '' +2024-11-22 00:00 174.7 '' '' +2024-11-23 00:00 194.9 '' '' +2024-11-24 00:00 197.6 '' '' +2024-11-25 00:00 214.7 '' '' +2024-11-26 00:00 216.4 '' '' +2024-11-27 00:00 219.0 '' '' +2024-11-28 00:00 208.1 '' '' +2024-11-29 00:00 213.8 '' '' +2024-11-30 00:00 198.3 '' '' +2024-12-01 00:00 181.1 '' '' +2024-12-02 00:00 180.0 '' '' +2024-12-03 00:00 169.3 '' '' +2024-12-04 00:00 169.7 '' '' +2024-12-05 00:00 169.5 '' '' +2024-12-06 00:00 172.3 '' '' +2024-12-07 00:00 177.1 '' '' +2024-12-08 00:00 172.4 '' '' +2024-12-09 00:00 167.3 '' '' +2024-12-10 00:00 166.7 '' '' +2024-12-11 00:00 155.6 '' '' +2024-12-12 00:00 155.9 '' '' +2024-12-13 00:00 158.6 '' '' +2024-12-14 00:00 165.1 '' '' +2024-12-15 00:00 166.6 '' '' +2024-12-16 00:00 161.4 '' '' +2024-12-17 00:00 164.6 '' '' +2024-12-18 00:00 168.0 '' '' +2024-12-19 00:00 169.4 '' '' +2024-12-20 00:00 178.1 '' '' +2024-12-21 00:00 194.7 '' '' +2024-12-22 00:00 216.1 '' '' +2024-12-23 00:00 230.6 '' '' +2024-12-24 00:00 250.1 '' '' +2024-12-25 00:00 244.5 '' '' +2024-12-26 00:00 247.4 '' '' +2024-12-27 00:00 250.0 '' '' +2024-12-28 00:00 251.8 '' '' +2024-12-29 00:00 246.3 '' '' +2024-12-30 00:00 216.1 '' '' +2024-12-31 00:00 210.4 '' '' +2025-01-01 00:00 211.9 '' '' +2025-01-02 00:00 205.4 '' '' +2025-01-03 00:00 193.3 '' '' +2025-01-04 00:00 202.4 '' '' +2025-01-05 00:00 163.0 '' '' +2025-01-06 00:00 166.2 '' '' +2025-01-07 00:00 162.2 '' '' +2025-01-08 00:00 154.9 '' '' +2025-01-09 00:00 156.8 '' '' +2025-01-10 00:00 151.7 '' '' +2025-01-11 00:00 150.8 '' '' +2025-01-12 00:00 153.2 '' '' +2025-01-13 00:00 154.4 '' '' +2025-01-14 00:00 161.0 '' '' +2025-01-15 00:00 167.8 '' '' +2025-01-16 00:00 201.5 '' '' +2025-01-17 00:00 219.5 '' '' +2025-01-18 00:00 215.3 '' '' +2025-01-19 00:00 228.3 '' '' +2025-01-20 00:00 224.7 '' '' +2025-01-21 00:00 229.0 '' '' +2025-01-22 00:00 207.5 '' '' +2025-01-23 00:00 208.7 '' '' +2025-01-24 00:00 198.2 '' '' +2025-01-25 00:00 176.2 '' '' +2025-01-26 00:00 165.4 '' '' +2025-01-27 00:00 157.6 '' '' +2025-01-28 00:00 166.3 '' '' +2025-01-29 00:00 168.6 '' '' +2025-01-30 00:00 178.3 '' '' +2025-01-31 00:00 200.5 '' '' +2025-02-01 00:00 182.4 '' '' +2025-02-02 00:00 209.5 '' '' +2025-02-03 00:00 214.2 '' '' +2025-02-04 00:00 206.6 '' '' +2025-02-05 00:00 186.0 '' '' +2025-02-06 00:00 182.6 '' '' +2025-02-07 00:00 176.7 '' '' +2025-02-08 00:00 168.7 '' '' +2025-02-09 00:00 158.7 '' '' +2025-02-10 00:00 155.1 '' '' +2025-02-11 00:00 149.5 '' '' +2025-02-12 00:00 176.6 '' '' +2025-02-13 00:00 169.0 '' '' +2025-02-14 00:00 174.2 '' '' +2025-02-15 00:00 179.5 '' '' +2025-02-16 00:00 180.6 '' '' +2025-02-17 00:00 176.1 '' '' +2025-02-18 00:00 174.5 '' '' +2025-02-19 00:00 173.9 '' '' +2025-02-20 00:00 180.0 '' '' +2025-02-21 00:00 192.8 '' '' +2025-02-22 00:00 194.8 '' '' +2025-02-23 00:00 234.9 '' '' +2025-02-24 00:00 198.8 '' '' +2025-02-25 00:00 186.3 '' '' +2025-02-26 00:00 176.7 '' '' +2025-02-27 00:00 160.8 '' '' +2025-02-28 00:00 154.4 '' '' +2025-03-01 00:00 149.5 '' '' +2025-03-02 00:00 148.5 '' '' +2025-03-03 00:00 160.4 '' '' +2025-03-04 00:00 157.9 '' '' +2025-03-05 00:00 154.0 '' '' +2025-03-06 00:00 147.7 '' '' +2025-03-07 00:00 144.3 '' '' +2025-03-08 00:00 145.4 '' '' +2025-03-09 00:00 145.5 '' '' +2025-03-10 00:00 147.4 '' '' +2025-03-11 00:00 159.3 '' '' +2025-03-12 00:00 158.3 '' '' +2025-03-13 00:00 173.8 '' '' +2025-03-14 00:00 178.1 '' '' +2025-03-15 00:00 176.0 '' '' +2025-03-16 00:00 183.9 '' '' +2025-03-17 00:00 201.5 '' '' +2025-03-18 00:00 182.3 '' '' +2025-03-19 00:00 177.9 '' '' +2025-03-20 00:00 168.8 '' '' +2025-03-21 00:00 164.1 '' '' +2025-03-22 00:00 176.7 '' '' +2025-03-23 00:00 167.0 '' '' +2025-03-24 00:00 155.1 '' '' +2025-03-25 00:00 155.3 '' '' +2025-03-26 00:00 151.6 '' '' +2025-03-27 00:00 152.0 '' '' +2025-03-28 00:00 159.8 '' '' +2025-03-29 00:00 156.1 '' '' +2025-03-30 00:00 170.7 '' '' +2025-03-31 00:00 171.6 '' '' +2025-04-01 00:00 181.7 '' '' +2025-04-02 00:00 179.8 '' '' +2025-04-03 00:00 178.4 '' '' +2025-04-04 00:00 180.5 '' '' +2025-04-05 00:00 184.6 '' '' +2025-04-06 00:00 167.2 '' '' +2025-04-07 00:00 162.6 '' '' +2025-04-08 00:00 159.0 '' '' +2025-04-09 00:00 167.3 '' '' +2025-04-10 00:00 153.2 '' '' +2025-04-11 00:00 170.8 '' '' +2025-04-12 00:00 166.2 '' '' +2025-04-13 00:00 164.6 '' '' +2025-04-14 00:00 153.6 '' '' +2025-04-15 00:00 154.6 '' '' +2025-04-16 00:00 149.5 '' '' +2025-04-17 00:00 151.9 '' '' +2025-04-18 00:00 157.1 '' '' +2025-04-19 00:00 158.8 '' '' +2025-04-20 00:00 157.8 '' '' +2025-04-21 00:00 164.6 '' '' +2025-04-22 00:00 165.1 '' '' +2025-04-23 00:00 169.6 '' '' +2025-04-24 00:00 171.6 '' '' +2025-04-25 00:00 166.0 '' '' +2025-04-26 00:00 157.7 '' '' +2025-04-27 00:00 157.8 '' '' +2025-04-28 00:00 155.7 '' '' +2025-04-29 00:00 151.3 '' '' +2025-04-30 00:00 150.2 '' '' +2025-05-01 00:00 154.7 '' '' +2025-05-02 00:00 154.7 '' '' +2025-05-03 00:00 154.6 '' '' +2025-05-04 00:00 161.6 '' '' +2025-05-05 00:00 161.4 '' '' +2025-05-06 00:00 158.7 '' '' +2025-05-07 00:00 157.0 '' '' +2025-05-08 00:00 151.3 '' '' +2025-05-09 00:00 138.9 '' '' +2025-05-10 00:00 136.8 '' '' +2025-05-11 00:00 128.3 '' '' +2025-05-12 00:00 117.9 '' '' +2025-05-13 00:00 119.2 '' '' +2025-05-14 00:00 124.4 '' '' +2025-05-15 00:00 121.4 '' '' +2025-05-16 00:00 120.0 '' '' +2025-05-17 00:00 119.9 '' '' +2025-05-18 00:00 121.0 '' '' +2025-05-19 00:00 119.6 '' '' +2025-05-20 00:00 121.6 '' '' +2025-05-21 00:00 122.3 '' '' diff --git a/srcData/f107_adjusted.txt b/srcData/f107_adjusted.txt deleted file mode 100644 index c24f43cd..00000000 --- a/srcData/f107_adjusted.txt +++ /dev/null @@ -1,24066 +0,0 @@ -#Query parameters -#parameter: f10_7_adj -#start_date: 2000-01-01 00:00 -#end_date: 2021-12-31 00:00 -#output_type: csv -# -#Metadata -#name: F10.7 Daily Observed Flux Density Adjusted -#short: F10.7 adjusted -# -#Results -#number of rows: 24051 -#columns: datetime;F10.7 adjusted -#units: ;"sfu" -# -2000-01-01 18:00:00;124 -2000-01-01 20:00:00;125 -2000-01-01 22:00:00;126 -2000-01-02 18:00:00;129 -2000-01-02 20:00:00;128 -2000-01-02 22:00:00;133 -2000-01-03 18:00:00;128 -2000-01-03 20:00:00;128 -2000-01-03 22:00:00;129 -2000-01-04 18:00:00;130 -2000-01-04 20:00:00;130 -2000-01-04 22:00:00;132 -2000-01-05 18:00:00;128 -2000-01-05 20:00:00;132 -2000-01-05 22:00:00;135 -2000-01-06 18:00:00;136 -2000-01-06 20:00:00;140 -2000-01-06 22:00:00;142 -2000-01-07 18:00:00;142 -2000-01-07 20:00:00;144 -2000-01-07 22:00:00;148 -2000-01-08 18:00:00;150 -2000-01-08 20:00:00;149 -2000-01-08 22:00:00;148 -2000-01-09 18:00:00;150 -2000-01-09 20:00:00;155 -2000-01-09 22:00:00;156 -2000-01-10 18:00:00;155 -2000-01-10 20:00:00;157 -2000-01-10 22:00:00;158 -2000-01-11 18:00:00;167 -2000-01-11 20:00:00;171 -2000-01-11 22:00:00;174 -2000-01-12 18:00:00;184 -2000-01-12 20:00:00;189 -2000-01-12 22:00:00;193 -2000-01-13 18:00:00;190 -2000-01-13 20:00:00;195 -2000-01-13 22:00:00;192 -2000-01-14 18:00:00;202 -2000-01-14 20:00:00;194 -2000-01-14 22:00:00;202 -2000-01-15 18:00:00;201 -2000-01-15 20:00:00;203 -2000-01-15 22:00:00;205 -2000-01-16 18:00:00;197 -2000-01-16 20:00:00;201 -2000-01-16 22:00:00;202 -2000-01-17 18:00:00;192 -2000-01-17 20:00:00;190 -2000-01-17 22:00:00;193 -2000-01-18 18:00:00;197 -2000-01-18 20:00:00;188 -2000-01-18 22:00:00;185 -2000-01-19 18:00:00;174 -2000-01-19 20:00:00;172 -2000-01-19 22:00:00;171 -2000-01-20 18:00:00;162 -2000-01-20 20:00:00;165 -2000-01-20 22:00:00;167 -2000-01-21 18:00:00;156 -2000-01-21 20:00:00;154 -2000-01-21 22:00:00;151 -2000-01-22 18:00:00;149 -2000-01-22 20:00:00;145 -2000-01-22 22:00:00;145 -2000-01-23 18:00:00;137 -2000-01-23 20:00:00;136 -2000-01-23 22:00:00;136 -2000-01-24 18:00:00;135 -2000-01-24 20:00:00;136 -2000-01-24 22:00:00;137 -2000-01-25 18:00:00;134 -2000-01-25 20:00:00;133 -2000-01-25 22:00:00;134 -2000-01-26 18:00:00;135 -2000-01-26 20:00:00;136 -2000-01-26 22:00:00;136 -2000-01-27 18:00:00;128 -2000-01-27 20:00:00;128 -2000-01-27 22:00:00;128 -2000-01-28 18:00:00;122 -2000-01-28 20:00:00;147 -2000-01-28 22:00:00;131 -2000-01-29 18:00:00;124 -2000-01-29 20:00:00;123 -2000-01-29 22:00:00;123 -2000-01-30 18:00:00;126 -2000-01-30 20:00:00;128 -2000-01-30 22:00:00;128 -2000-01-31 18:00:00;131 -2000-01-31 20:00:00;134 -2000-01-31 22:00:00;137 -2000-02-01 18:00:00;84 -2000-02-01 20:00:00;134 -2000-02-01 22:00:00;135 -2000-02-02 18:00:00;138 -2000-02-02 20:00:00;140 -2000-02-02 22:00:00;141 -2000-02-03 18:00:00;146 -2000-02-03 20:00:00;149 -2000-02-03 22:00:00;149 -2000-02-04 18:00:00;155 -2000-02-04 20:00:00;162 -2000-02-04 22:00:00;159 -2000-02-05 18:00:00;161 -2000-02-05 20:00:00;163 -2000-02-05 22:00:00;164 -2000-02-06 18:00:00;170 -2000-02-06 20:00:00;172 -2000-02-06 22:00:00;174 -2000-02-07 18:00:00;175 -2000-02-07 20:00:00;177 -2000-02-07 22:00:00;178 -2000-02-08 18:00:00;173 -2000-02-08 20:00:00;169 -2000-02-08 22:00:00;171 -2000-02-09 18:00:00;170 -2000-02-09 20:00:00;193 -2000-02-09 22:00:00;179 -2000-02-10 18:00:00;171 -2000-02-10 20:00:00;171 -2000-02-10 22:00:00;172 -2000-02-11 18:00:00;167 -2000-02-11 20:00:00;165 -2000-02-11 22:00:00;164 -2000-02-12 18:00:00;159 -2000-02-12 20:00:00;159 -2000-02-12 22:00:00;159 -2000-02-13 18:00:00;154 -2000-02-13 20:00:00;155 -2000-02-13 22:00:00;159 -2000-02-14 18:00:00;153 -2000-02-14 20:00:00;154 -2000-02-14 22:00:00;154 -2000-02-15 18:00:00;154 -2000-02-15 20:00:00;152 -2000-02-15 22:00:00;152 -2000-02-16 18:00:00;156 -2000-02-16 20:00:00;156 -2000-02-16 22:00:00;159 -2000-02-17 18:00:00;146 -2000-02-17 20:00:00;164 -2000-02-17 22:00:00;153 -2000-02-18 18:00:00;136 -2000-02-18 20:00:00;137 -2000-02-18 22:00:00;137 -2000-02-19 18:00:00;139 -2000-02-19 20:00:00;141 -2000-02-19 22:00:00;143 -2000-02-20 18:00:00;153 -2000-02-20 20:00:00;149 -2000-02-20 22:00:00;150 -2000-02-21 18:00:00;148 -2000-02-21 20:00:00;148 -2000-02-21 22:00:00;149 -2000-02-22 18:00:00;160 -2000-02-22 20:00:00;168 -2000-02-22 22:00:00;175 -2000-02-23 18:00:00;179 -2000-02-23 20:00:00;181 -2000-02-23 22:00:00;181 -2000-02-24 18:00:00;188 -2000-02-24 20:00:00;188 -2000-02-24 22:00:00;192 -2000-02-25 18:00:00;206 -2000-02-25 20:00:00;206 -2000-02-25 22:00:00;205 -2000-02-26 18:00:00;209 -2000-02-26 20:00:00;210 -2000-02-26 22:00:00;215 -2000-02-27 18:00:00;213 -2000-02-27 20:00:00;222 -2000-02-27 22:00:00;221 -2000-02-28 18:00:00;216 -2000-02-28 20:00:00;214 -2000-02-28 22:00:00;216 -2000-02-29 18:00:00;217 -2000-02-29 20:00:00;215 -2000-02-29 22:00:00;217 -2000-03-01 17:00:00;228 -2000-03-01 20:00:00;228 -2000-03-01 23:00:00;226 -2000-03-02 17:00:00;207 -2000-03-02 20:00:00;209 -2000-03-02 23:00:00;210 -2000-03-03 17:00:00;200 -2000-03-03 20:00:00;200 -2000-03-03 23:00:00;198 -2000-03-04 17:00:00;193 -2000-03-04 20:00:00;197 -2000-03-04 23:00:00;203 -2000-03-05 17:00:00;220 -2000-03-05 20:00:00;216 -2000-03-05 23:00:00;214 -2000-03-06 17:00:00;213 -2000-03-06 20:00:00;219 -2000-03-06 23:00:00;221 -2000-03-07 17:00:00;219 -2000-03-07 20:00:00;218 -2000-03-07 23:00:00;221 -2000-03-08 17:00:00;212 -2000-03-08 20:00:00;211 -2000-03-08 23:00:00;210 -2000-03-09 17:00:00;201 -2000-03-09 20:00:00;203 -2000-03-09 23:00:00;204 -2000-03-10 17:00:00;205 -2000-03-10 20:00:00;200 -2000-03-10 23:00:00;200 -2000-03-11 17:00:00;206 -2000-03-11 20:00:00;200 -2000-03-11 23:00:00;201 -2000-03-12 17:00:00;200 -2000-03-12 20:00:00;200 -2000-03-12 23:00:00;200 -2000-03-13 17:00:00;188 -2000-03-13 20:00:00;186 -2000-03-13 23:00:00;189 -2000-03-14 17:00:00;181 -2000-03-14 20:00:00;180 -2000-03-14 23:00:00;184 -2000-03-15 17:00:00;176 -2000-03-15 20:00:00;175 -2000-03-15 23:00:00;176 -2000-03-16 17:00:00;176 -2000-03-16 20:00:00;182 -2000-03-16 23:00:00;186 -2000-03-17 17:00:00;183 -2000-03-17 20:00:00;190 -2000-03-17 23:00:00;190 -2000-03-18 17:00:00;195 -2000-03-18 20:00:00;193 -2000-03-18 23:00:00;213 -2000-03-19 17:00:00;215 -2000-03-19 20:00:00;206 -2000-03-19 23:00:00;226 -2000-03-20 17:00:00;211 -2000-03-20 20:00:00;208 -2000-03-20 23:00:00;212 -2000-03-21 17:00:00;225 -2000-03-21 20:00:00;228 -2000-03-21 23:00:00;229 -2000-03-22 17:00:00;228 -2000-03-22 20:00:00;232 -2000-03-22 23:00:00;234 -2000-03-23 17:00:00;224 -2000-03-23 20:00:00;222 -2000-03-23 23:00:00;222 -2000-03-24 17:00:00;217 -2000-03-24 20:00:00;217 -2000-03-24 23:00:00;213 -2000-03-25 17:00:00;203 -2000-03-25 20:00:00;204 -2000-03-25 23:00:00;205 -2000-03-26 17:00:00;209 -2000-03-26 20:00:00;210 -2000-03-26 23:00:00;208 -2000-03-27 17:00:00;208 -2000-03-27 20:00:00;204 -2000-03-27 23:00:00;206 -2000-03-28 17:00:00;200 -2000-03-28 20:00:00;200 -2000-03-28 23:00:00;204 -2000-03-29 17:00:00;205 -2000-03-29 20:00:00;208 -2000-03-29 23:00:00;210 -2000-03-30 17:00:00;205 -2000-03-30 20:00:00;205 -2000-03-30 23:00:00;208 -2000-03-31 17:00:00;221 -2000-03-31 20:00:00;225 -2000-03-31 23:00:00;215 -2000-04-01 17:00:00;217 -2000-04-01 20:00:00;222 -2000-04-01 23:00:00;219 -2000-04-02 17:00:00;219 -2000-04-02 20:00:00;219 -2000-04-02 23:00:00;218 -2000-04-03 17:00:00;215 -2000-04-03 20:00:00;215 -2000-04-03 23:00:00;216 -2000-04-04 17:00:00;214 -2000-04-04 20:00:00;206 -2000-04-04 23:00:00;204 -2000-04-05 17:00:00;192 -2000-04-05 20:00:00;194 -2000-04-05 23:00:00;192 -2000-04-06 17:00:00;180 -2000-04-06 20:00:00;178 -2000-04-06 23:00:00;179 -2000-04-07 17:00:00;175 -2000-04-07 20:00:00;175 -2000-04-07 23:00:00;176 -2000-04-08 17:00:00;184 -2000-04-08 20:00:00;182 -2000-04-08 23:00:00;183 -2000-04-09 17:00:00;174 -2000-04-09 20:00:00;176 -2000-04-09 23:00:00;178 -2000-04-10 17:00:00;176 -2000-04-10 20:00:00;178 -2000-04-10 23:00:00;176 -2000-04-11 17:00:00;174 -2000-04-11 20:00:00;182 -2000-04-11 23:00:00;181 -2000-04-12 17:00:00;172 -2000-04-12 20:00:00;173 -2000-04-12 23:00:00;174 -2000-04-13 17:00:00;166 -2000-04-13 20:00:00;165 -2000-04-13 23:00:00;169 -2000-04-14 17:00:00;166 -2000-04-14 20:00:00;166 -2000-04-14 23:00:00;166 -2000-04-15 17:00:00;165 -2000-04-15 20:00:00;164 -2000-04-15 23:00:00;161 -2000-04-16 17:00:00;159 -2000-04-16 20:00:00;160 -2000-04-16 23:00:00;157 -2000-04-17 17:00:00;159 -2000-04-17 20:00:00;159 -2000-04-17 23:00:00;158 -2000-04-18 17:00:00;159 -2000-04-18 20:00:00;161 -2000-04-18 23:00:00;162 -2000-04-19 17:00:00;167 -2000-04-19 20:00:00;169 -2000-04-19 23:00:00;170 -2000-04-20 17:00:00;177 -2000-04-20 20:00:00;182 -2000-04-20 23:00:00;185 -2000-04-21 17:00:00;188 -2000-04-21 20:00:00;189 -2000-04-21 23:00:00;196 -2000-04-22 17:00:00;201 -2000-04-22 20:00:00;204 -2000-04-22 23:00:00;205 -2000-04-23 17:00:00;208 -2000-04-23 20:00:00;208 -2000-04-23 23:00:00;210 -2000-04-24 17:00:00;205 -2000-04-24 20:00:00;208 -2000-04-24 23:00:00;206 -2000-04-25 17:00:00;207 -2000-04-25 20:00:00;205 -2000-04-25 23:00:00;207 -2000-04-26 17:00:00;195 -2000-04-26 20:00:00;192 -2000-04-26 23:00:00;194 -2000-04-27 17:00:00;187 -2000-04-27 20:00:00;186 -2000-04-27 23:00:00;189 -2000-04-28 17:00:00;186 -2000-04-28 20:00:00;186 -2000-04-28 23:00:00;186 -2000-04-29 17:00:00;179 -2000-04-29 20:00:00;177 -2000-04-29 23:00:00;176 -2000-04-30 17:00:00;174 -2000-04-30 20:00:00;172 -2000-04-30 23:00:00;170 -2000-05-01 17:00:00;159 -2000-05-01 20:00:00;160 -2000-05-01 23:00:00;160 -2000-05-02 17:00:00;156 -2000-05-02 20:00:00;155 -2000-05-02 23:00:00;152 -2000-05-03 17:00:00;144 -2000-05-03 20:00:00;139 -2000-05-03 23:00:00;144 -2000-05-04 17:00:00;135 -2000-05-04 20:00:00;136 -2000-05-04 23:00:00;136 -2000-05-05 17:00:00;134 -2000-05-05 20:00:00;132 -2000-05-05 23:00:00;132 -2000-05-06 17:00:00;128 -2000-05-06 20:00:00;129 -2000-05-06 23:00:00;129 -2000-05-07 17:00:00;130 -2000-05-07 20:00:00;133 -2000-05-07 23:00:00;134 -2000-05-08 17:00:00;141 -2000-05-08 20:00:00;139 -2000-05-08 23:00:00;141 -2000-05-09 17:00:00;149 -2000-05-09 20:00:00;152 -2000-05-09 23:00:00;154 -2000-05-10 17:00:00;163 -2000-05-10 20:00:00;182 -2000-05-10 23:00:00;171 -2000-05-11 17:00:00;181 -2000-05-11 20:00:00;181 -2000-05-11 23:00:00;190 -2000-05-12 17:00:00;191 -2000-05-12 20:00:00;194 -2000-05-12 23:00:00;214 -2000-05-13 17:00:00;215 -2000-05-13 20:00:00;222 -2000-05-13 23:00:00;224 -2000-05-14 17:00:00;241 -2000-05-14 20:00:00;237 -2000-05-14 23:00:00;240 -2000-05-15 17:00:00;890 -2000-05-15 20:00:00;249 -2000-05-15 23:00:00;244 -2000-05-16 17:00:00;256 -2000-05-16 20:00:00;264 -2000-05-16 23:00:00;264 -2000-05-17 17:00:00;261 -2000-05-17 20:00:00;268 -2000-05-17 23:00:00;259 -2000-05-18 17:00:00;260 -2000-05-18 20:00:00;258 -2000-05-18 23:00:00;261 -2000-05-19 17:00:00;257 -2000-05-19 20:00:00;260 -2000-05-19 23:00:00;260 -2000-05-20 17:00:00;264 -2000-05-20 20:00:00;251 -2000-05-20 23:00:00;250 -2000-05-21 17:00:00;238 -2000-05-21 20:00:00;238 -2000-05-21 23:00:00;239 -2000-05-22 17:00:00;221 -2000-05-22 20:00:00;220 -2000-05-22 23:00:00;220 -2000-05-23 17:00:00;204 -2000-05-23 20:00:00;209 -2000-05-23 23:00:00;206 -2000-05-24 17:00:00;198 -2000-05-24 20:00:00;194 -2000-05-24 23:00:00;200 -2000-05-25 17:00:00;178 -2000-05-25 20:00:00;177 -2000-05-25 23:00:00;177 -2000-05-26 17:00:00;173 -2000-05-26 20:00:00;172 -2000-05-26 23:00:00;168 -2000-05-27 17:00:00;164 -2000-05-27 20:00:00;166 -2000-05-27 23:00:00;164 -2000-05-28 17:00:00;161 -2000-05-28 20:00:00;160 -2000-05-28 23:00:00;157 -2000-05-29 17:00:00;151 -2000-05-29 20:00:00;153 -2000-05-29 23:00:00;152 -2000-05-30 17:00:00;150 -2000-05-30 20:00:00;150 -2000-05-30 23:00:00;151 -2000-05-31 17:00:00;152 -2000-05-31 20:00:00;158 -2000-05-31 23:00:00;155 -2000-06-01 17:00:00;151 -2000-06-01 20:00:00;152 -2000-06-01 23:00:00;152 -2000-06-02 17:00:00;155 -2000-06-02 20:00:00;192 -2000-06-02 23:00:00;175 -2000-06-03 17:00:00;162 -2000-06-03 20:00:00;170 -2000-06-03 23:00:00;163 -2000-06-04 17:00:00;173 -2000-06-04 20:00:00;174 -2000-06-04 23:00:00;190 -2000-06-05 17:00:00;174 -2000-06-05 20:00:00;176 -2000-06-05 23:00:00;175 -2000-06-06 17:00:00;218 -2000-06-06 20:00:00;192 -2000-06-06 23:00:00;186 -2000-06-07 17:00:00;196 -2000-06-07 20:00:00;185 -2000-06-07 23:00:00;185 -2000-06-08 17:00:00;180 -2000-06-08 20:00:00;179 -2000-06-08 23:00:00;182 -2000-06-09 17:00:00;176 -2000-06-09 20:00:00;174 -2000-06-09 23:00:00;181 -2000-06-10 17:00:00;229 -2000-06-10 20:00:00;185 -2000-06-10 23:00:00;187 -2000-06-11 17:00:00;192 -2000-06-11 20:00:00;192 -2000-06-11 23:00:00;194 -2000-06-12 17:00:00;195 -2000-06-12 20:00:00;198 -2000-06-12 23:00:00;199 -2000-06-13 17:00:00;202 -2000-06-13 20:00:00;205 -2000-06-13 23:00:00;208 -2000-06-14 17:00:00;212 -2000-06-14 20:00:00;206 -2000-06-14 23:00:00;207 -2000-06-15 17:00:00;206 -2000-06-15 20:00:00;208 -2000-06-15 23:00:00;209 -2000-06-16 17:00:00;207 -2000-06-16 20:00:00;203 -2000-06-16 23:00:00;203 -2000-06-17 17:00:00;201 -2000-06-17 20:00:00;199 -2000-06-17 23:00:00;200 -2000-06-18 17:00:00;191 -2000-06-18 20:00:00;193 -2000-06-18 23:00:00;199 -2000-06-19 17:00:00;189 -2000-06-19 20:00:00;184 -2000-06-19 23:00:00;189 -2000-06-20 17:00:00;189 -2000-06-20 20:00:00;189 -2000-06-20 23:00:00;193 -2000-06-21 17:00:00;191 -2000-06-21 20:00:00;194 -2000-06-21 23:00:00;193 -2000-06-22 17:00:00;188 -2000-06-22 20:00:00;185 -2000-06-22 23:00:00;185 -2000-06-23 17:00:00;181 -2000-06-23 20:00:00;181 -2000-06-23 23:00:00;183 -2000-06-24 17:00:00;175 -2000-06-24 20:00:00;173 -2000-06-24 23:00:00;177 -2000-06-25 17:00:00;176 -2000-06-25 20:00:00;180 -2000-06-25 23:00:00;177 -2000-06-26 17:00:00;180 -2000-06-26 20:00:00;183 -2000-06-26 23:00:00;184 -2000-06-27 17:00:00;185 -2000-06-27 20:00:00;184 -2000-06-27 23:00:00;185 -2000-06-28 17:00:00;174 -2000-06-28 20:00:00;181 -2000-06-28 23:00:00;175 -2000-06-29 17:00:00;168 -2000-06-29 20:00:00;168 -2000-06-29 23:00:00;169 -2000-06-30 17:00:00;166 -2000-06-30 20:00:00;165 -2000-06-30 23:00:00;166 -2000-07-01 17:00:00;169 -2000-07-01 20:00:00;169 -2000-07-01 23:00:00;169 -2000-07-02 17:00:00;166 -2000-07-02 20:00:00;167 -2000-07-02 23:00:00;169 -2000-07-03 17:00:00;166 -2000-07-03 20:00:00;161 -2000-07-03 23:00:00;164 -2000-07-04 17:00:00;163 -2000-07-04 20:00:00;163 -2000-07-04 23:00:00;167 -2000-07-05 17:00:00;172 -2000-07-05 20:00:00;174 -2000-07-05 23:00:00;174 -2000-07-06 17:00:00;178 -2000-07-06 20:00:00;180 -2000-07-06 23:00:00;184 -2000-07-07 17:00:00;188 -2000-07-07 20:00:00;193 -2000-07-07 23:00:00;199 -2000-07-08 17:00:00;209 -2000-07-08 20:00:00;217 -2000-07-08 23:00:00;221 -2000-07-09 17:00:00;213 -2000-07-09 20:00:00;218 -2000-07-09 23:00:00;222 -2000-07-10 17:00:00;238 -2000-07-10 20:00:00;252 -2000-07-10 23:00:00;456 -2000-07-11 17:00:00;250 -2000-07-11 20:00:00;249 -2000-07-11 23:00:00;241 -2000-07-12 17:00:00;263 -2000-07-12 20:00:00;325 -2000-07-12 23:00:00;258 -2000-07-13 17:00:00;248 -2000-07-13 20:00:00;239 -2000-07-13 23:00:00;235 -2000-07-14 17:00:00;213 -2000-07-14 20:00:00;210 -2000-07-14 23:00:00;212 -2000-07-15 17:00:00;216 -2000-07-15 20:00:00;220 -2000-07-15 23:00:00;222 -2000-07-16 17:00:00;229 -2000-07-16 20:00:00;226 -2000-07-16 23:00:00;227 -2000-07-17 17:00:00;234 -2000-07-17 20:00:00;235 -2000-07-17 23:00:00;242 -2000-07-18 17:00:00;256 -2000-07-18 20:00:00;270 -2000-07-18 23:00:00;256 -2000-07-19 17:00:00;257 -2000-07-19 20:00:00;258 -2000-07-19 23:00:00;263 -2000-07-20 17:00:00;264 -2000-07-20 20:00:00;261 -2000-07-20 23:00:00;261 -2000-07-21 17:00:00;263 -2000-07-21 20:00:00;259 -2000-07-21 23:00:00;256 -2000-07-22 17:00:00;264 -2000-07-22 20:00:00;259 -2000-07-22 23:00:00;252 -2000-07-23 17:00:00;228 -2000-07-23 20:00:00;224 -2000-07-23 23:00:00;225 -2000-07-24 17:00:00;230 -2000-07-24 20:00:00;232 -2000-07-24 23:00:00;229 -2000-07-25 17:00:00;210 -2000-07-25 20:00:00;208 -2000-07-25 23:00:00;209 -2000-07-26 17:00:00;183 -2000-07-26 20:00:00;180 -2000-07-26 23:00:00;179 -2000-07-27 17:00:00;170 -2000-07-27 20:00:00;167 -2000-07-27 23:00:00;165 -2000-07-28 17:00:00;165 -2000-07-28 20:00:00;162 -2000-07-28 23:00:00;166 -2000-07-29 17:00:00;160 -2000-07-29 20:00:00;157 -2000-07-29 23:00:00;155 -2000-07-30 17:00:00;154 -2000-07-30 20:00:00;154 -2000-07-30 23:00:00;154 -2000-07-31 17:00:00;152 -2000-07-31 20:00:00;152 -2000-07-31 23:00:00;150 -2000-08-01 17:00:00;155 -2000-08-01 20:00:00;153 -2000-08-01 23:00:00;155 -2000-08-02 17:00:00;155 -2000-08-02 20:00:00;155 -2000-08-02 23:00:00;158 -2000-08-03 17:00:00;156 -2000-08-03 20:00:00;158 -2000-08-03 23:00:00;159 -2000-08-04 17:00:00;156 -2000-08-04 20:00:00;158 -2000-08-04 23:00:00;157 -2000-08-05 17:00:00;165 -2000-08-05 20:00:00;163 -2000-08-05 23:00:00;168 -2000-08-06 17:00:00;170 -2000-08-06 20:00:00;170 -2000-08-06 23:00:00;171 -2000-08-07 17:00:00;169 -2000-08-07 20:00:00;171 -2000-08-07 23:00:00;176 -2000-08-08 17:00:00;176 -2000-08-08 20:00:00;175 -2000-08-08 23:00:00;175 -2000-08-09 17:00:00;195 -2000-08-09 20:00:00;187 -2000-08-09 23:00:00;186 -2000-08-10 17:00:00;184 -2000-08-10 20:00:00;185 -2000-08-10 23:00:00;186 -2000-08-11 17:00:00;192 -2000-08-11 20:00:00;192 -2000-08-11 23:00:00;197 -2000-08-12 17:00:00;200 -2000-08-12 20:00:00;194 -2000-08-12 23:00:00;192 -2000-08-13 17:00:00;190 -2000-08-13 20:00:00;190 -2000-08-13 23:00:00;190 -2000-08-14 17:00:00;194 -2000-08-14 20:00:00;194 -2000-08-14 23:00:00;193 -2000-08-15 17:00:00;197 -2000-08-15 20:00:00;198 -2000-08-15 23:00:00;200 -2000-08-16 17:00:00;192 -2000-08-16 20:00:00;190 -2000-08-16 23:00:00;188 -2000-08-17 17:00:00;182 -2000-08-17 20:00:00;181 -2000-08-17 23:00:00;179 -2000-08-18 17:00:00;176 -2000-08-18 20:00:00;173 -2000-08-18 23:00:00;171 -2000-08-19 17:00:00;160 -2000-08-19 20:00:00;160 -2000-08-19 23:00:00;159 -2000-08-20 17:00:00;154 -2000-08-20 20:00:00;156 -2000-08-20 23:00:00;157 -2000-08-21 17:00:00;155 -2000-08-21 20:00:00;154 -2000-08-21 23:00:00;154 -2000-08-22 17:00:00;147 -2000-08-22 20:00:00;147 -2000-08-22 23:00:00;146 -2000-08-23 17:00:00;141 -2000-08-23 20:00:00;139 -2000-08-23 23:00:00;139 -2000-08-24 17:00:00;132 -2000-08-24 20:00:00;133 -2000-08-24 23:00:00;133 -2000-08-25 17:00:00;137 -2000-08-25 20:00:00;136 -2000-08-25 23:00:00;136 -2000-08-26 17:00:00;138 -2000-08-26 20:00:00;139 -2000-08-26 23:00:00;143 -2000-08-27 17:00:00;151 -2000-08-27 20:00:00;153 -2000-08-27 23:00:00;154 -2000-08-28 17:00:00;163 -2000-08-28 20:00:00;163 -2000-08-28 23:00:00;164 -2000-08-29 17:00:00;166 -2000-08-29 20:00:00;166 -2000-08-29 23:00:00;172 -2000-08-30 17:00:00;169 -2000-08-30 20:00:00;167 -2000-08-30 23:00:00;170 -2000-08-31 17:00:00;168 -2000-08-31 20:00:00;165 -2000-08-31 23:00:00;164 -2000-09-01 17:00:00;160 -2000-09-01 20:00:00;160 -2000-09-01 23:00:00;162 -2000-09-02 17:00:00;158 -2000-09-02 20:00:00;156 -2000-09-02 23:00:00;156 -2000-09-03 17:00:00;155 -2000-09-03 20:00:00;156 -2000-09-03 23:00:00;161 -2000-09-04 17:00:00;168 -2000-09-04 20:00:00;173 -2000-09-04 23:00:00;177 -2000-09-05 17:00:00;181 -2000-09-05 20:00:00;183 -2000-09-05 23:00:00;182 -2000-09-06 17:00:00;183 -2000-09-06 20:00:00;181 -2000-09-06 23:00:00;182 -2000-09-07 17:00:00;178 -2000-09-07 20:00:00;175 -2000-09-07 23:00:00;177 -2000-09-08 17:00:00;166 -2000-09-08 20:00:00;165 -2000-09-08 23:00:00;163 -2000-09-09 17:00:00;154 -2000-09-09 20:00:00;153 -2000-09-09 23:00:00;150 -2000-09-10 17:00:00;140 -2000-09-10 20:00:00;142 -2000-09-10 23:00:00;141 -2000-09-11 17:00:00;133 -2000-09-11 20:00:00;136 -2000-09-11 23:00:00;137 -2000-09-12 17:00:00;136 -2000-09-12 20:00:00;134 -2000-09-12 23:00:00;132 -2000-09-13 17:00:00;131 -2000-09-13 20:00:00;134 -2000-09-13 23:00:00;136 -2000-09-14 17:00:00;147 -2000-09-14 20:00:00;152 -2000-09-14 23:00:00;151 -2000-09-15 17:00:00;168 -2000-09-15 20:00:00;161 -2000-09-15 23:00:00;163 -2000-09-16 17:00:00;173 -2000-09-16 20:00:00;176 -2000-09-16 23:00:00;178 -2000-09-17 17:00:00;185 -2000-09-17 20:00:00;183 -2000-09-17 23:00:00;187 -2000-09-18 17:00:00;203 -2000-09-18 20:00:00;205 -2000-09-18 23:00:00;209 -2000-09-19 17:00:00;207 -2000-09-19 20:00:00;208 -2000-09-19 23:00:00;210 -2000-09-20 17:00:00;223 -2000-09-20 20:00:00;213 -2000-09-20 23:00:00;217 -2000-09-21 17:00:00;220 -2000-09-21 20:00:00;226 -2000-09-21 23:00:00;231 -2000-09-22 17:00:00;233 -2000-09-22 20:00:00;233 -2000-09-22 23:00:00;234 -2000-09-23 17:00:00;225 -2000-09-23 20:00:00;226 -2000-09-23 23:00:00;235 -2000-09-24 17:00:00;226 -2000-09-24 20:00:00;225 -2000-09-24 23:00:00;241 -2000-09-25 17:00:00;224 -2000-09-25 20:00:00;226 -2000-09-25 23:00:00;227 -2000-09-26 17:00:00;224 -2000-09-26 20:00:00;224 -2000-09-26 23:00:00;227 -2000-09-27 17:00:00;205 -2000-09-27 20:00:00;205 -2000-09-27 23:00:00;211 -2000-09-28 17:00:00;198 -2000-09-28 20:00:00;203 -2000-09-28 23:00:00;200 -2000-09-29 17:00:00;190 -2000-09-29 20:00:00;192 -2000-09-29 23:00:00;193 -2000-09-30 17:00:00;190 -2000-09-30 20:00:00;194 -2000-09-30 23:00:00;216 -2000-10-01 17:00:00;201 -2000-10-01 20:00:00;201 -2000-10-01 23:00:00;199 -2000-10-02 17:00:00;200 -2000-10-02 20:00:00;202 -2000-10-02 23:00:00;196 -2000-10-03 17:00:00;192 -2000-10-03 20:00:00;192 -2000-10-03 23:00:00;193 -2000-10-04 17:00:00;187 -2000-10-04 20:00:00;184 -2000-10-04 23:00:00;184 -2000-10-05 17:00:00;171 -2000-10-05 20:00:00;173 -2000-10-05 23:00:00;170 -2000-10-06 17:00:00;160 -2000-10-06 20:00:00;157 -2000-10-06 23:00:00;158 -2000-10-07 17:00:00;157 -2000-10-07 20:00:00;155 -2000-10-07 23:00:00;153 -2000-10-08 17:00:00;148 -2000-10-08 20:00:00;148 -2000-10-08 23:00:00;148 -2000-10-09 17:00:00;141 -2000-10-09 20:00:00;140 -2000-10-09 23:00:00;142 -2000-10-10 17:00:00;138 -2000-10-10 20:00:00;139 -2000-10-10 23:00:00;142 -2000-10-11 17:00:00;144 -2000-10-11 20:00:00;150 -2000-10-11 23:00:00;149 -2000-10-12 17:00:00;157 -2000-10-12 20:00:00;161 -2000-10-12 23:00:00;166 -2000-10-13 17:00:00;165 -2000-10-13 20:00:00;167 -2000-10-13 23:00:00;169 -2000-10-14 17:00:00;162 -2000-10-14 20:00:00;162 -2000-10-14 23:00:00;166 -2000-10-15 17:00:00;160 -2000-10-15 20:00:00;160 -2000-10-15 23:00:00;162 -2000-10-16 17:00:00;158 -2000-10-16 20:00:00;159 -2000-10-16 23:00:00;158 -2000-10-17 17:00:00;151 -2000-10-17 20:00:00;153 -2000-10-17 23:00:00;164 -2000-10-18 17:00:00;148 -2000-10-18 20:00:00;149 -2000-10-18 23:00:00;154 -2000-10-19 17:00:00;155 -2000-10-19 20:00:00;156 -2000-10-19 23:00:00;156 -2000-10-20 17:00:00;157 -2000-10-20 20:00:00;159 -2000-10-20 23:00:00;159 -2000-10-21 17:00:00;156 -2000-10-21 20:00:00;156 -2000-10-21 23:00:00;158 -2000-10-22 17:00:00;158 -2000-10-22 20:00:00;158 -2000-10-22 23:00:00;163 -2000-10-23 17:00:00;165 -2000-10-23 20:00:00;164 -2000-10-23 23:00:00;164 -2000-10-24 17:00:00;157 -2000-10-24 20:00:00;157 -2000-10-24 23:00:00;160 -2000-10-25 17:00:00;165 -2000-10-25 20:00:00;162 -2000-10-25 23:00:00;165 -2000-10-26 17:00:00;169 -2000-10-26 20:00:00;168 -2000-10-26 23:00:00;171 -2000-10-27 17:00:00;171 -2000-10-27 20:00:00;173 -2000-10-27 23:00:00;176 -2000-10-28 17:00:00;186 -2000-10-28 20:00:00;179 -2000-10-28 23:00:00;182 -2000-10-29 17:00:00;188 -2000-10-29 20:00:00;184 -2000-10-29 23:00:00;191 -2000-10-30 17:00:00;186 -2000-10-30 20:00:00;191 -2000-10-30 23:00:00;194 -2000-10-31 17:00:00;185 -2000-10-31 20:00:00;190 -2000-10-31 23:00:00;192 -2000-11-01 17:00:00;200 -2000-11-01 20:00:00;201 -2000-11-01 23:00:00;200 -2000-11-02 18:00:00;194 -2000-11-02 20:00:00;193 -2000-11-02 22:00:00;192 -2000-11-03 18:00:00;186 -2000-11-03 20:00:00;195 -2000-11-03 22:00:00;196 -2000-11-04 18:00:00;187 -2000-11-04 20:00:00;191 -2000-11-04 22:00:00;191 -2000-11-05 18:00:00;185 -2000-11-05 20:00:00;183 -2000-11-05 22:00:00;184 -2000-11-06 18:00:00;174 -2000-11-06 20:00:00;174 -2000-11-06 22:00:00;176 -2000-11-07 18:00:00;175 -2000-11-07 20:00:00;176 -2000-11-07 22:00:00;177 -2000-11-08 18:00:00;171 -2000-11-08 20:00:00;169 -2000-11-08 22:00:00;172 -2000-11-09 18:00:00;169 -2000-11-09 20:00:00;163 -2000-11-09 22:00:00;166 -2000-11-10 18:00:00;151 -2000-11-10 20:00:00;150 -2000-11-10 22:00:00;150 -2000-11-11 18:00:00;145 -2000-11-11 20:00:00;146 -2000-11-11 22:00:00;146 -2000-11-12 18:00:00;143 -2000-11-12 20:00:00;143 -2000-11-12 22:00:00;143 -2000-11-13 18:00:00;138 -2000-11-13 20:00:00;140 -2000-11-13 22:00:00;143 -2000-11-14 18:00:00;144 -2000-11-14 20:00:00;145 -2000-11-14 22:00:00;148 -2000-11-15 18:00:00;142 -2000-11-15 20:00:00;143 -2000-11-15 22:00:00;145 -2000-11-16 18:00:00;149 -2000-11-16 20:00:00;150 -2000-11-16 22:00:00;153 -2000-11-17 18:00:00;157 -2000-11-17 20:00:00;159 -2000-11-17 22:00:00;168 -2000-11-18 18:00:00;169 -2000-11-18 20:00:00;172 -2000-11-18 22:00:00;176 -2000-11-19 18:00:00;170 -2000-11-19 20:00:00;170 -2000-11-19 22:00:00;172 -2000-11-20 18:00:00;169 -2000-11-20 20:00:00;169 -2000-11-20 22:00:00;175 -2000-11-21 18:00:00;175 -2000-11-21 20:00:00;180 -2000-11-21 22:00:00;184 -2000-11-22 18:00:00;187 -2000-11-22 20:00:00;190 -2000-11-22 22:00:00;198 -2000-11-23 18:00:00;197 -2000-11-23 20:00:00;200 -2000-11-23 22:00:00;209 -2000-11-24 18:00:00;194 -2000-11-24 20:00:00;192 -2000-11-24 22:00:00;211 -2000-11-25 18:00:00;197 -2000-11-25 20:00:00;274 -2000-11-25 22:00:00;194 -2000-11-26 18:00:00;198 -2000-11-26 20:00:00;197 -2000-11-26 22:00:00;198 -2000-11-27 18:00:00;184 -2000-11-27 20:00:00;186 -2000-11-27 22:00:00;191 -2000-11-28 18:00:00;193 -2000-11-28 20:00:00;190 -2000-11-28 22:00:00;196 -2000-11-29 18:00:00;181 -2000-11-29 20:00:00;183 -2000-11-29 22:00:00;188 -2000-11-30 18:00:00;186 -2000-11-30 20:00:00;187 -2000-11-30 22:00:00;192 -2000-12-01 18:00:00;175 -2000-12-01 20:00:00;179 -2000-12-01 22:00:00;174 -2000-12-02 18:00:00;161 -2000-12-02 20:00:00;162 -2000-12-02 22:00:00;164 -2000-12-03 18:00:00;156 -2000-12-03 20:00:00;158 -2000-12-03 22:00:00;156 -2000-12-04 18:00:00;146 -2000-12-04 20:00:00;147 -2000-12-04 22:00:00;148 -2000-12-05 18:00:00;142 -2000-12-05 20:00:00;142 -2000-12-05 22:00:00;143 -2000-12-06 18:00:00;136 -2000-12-06 20:00:00;136 -2000-12-06 22:00:00;141 -2000-12-07 18:00:00;136 -2000-12-07 20:00:00;139 -2000-12-07 22:00:00;142 -2000-12-08 18:00:00;131 -2000-12-08 20:00:00;134 -2000-12-08 22:00:00;133 -2000-12-09 18:00:00;126 -2000-12-09 20:00:00;130 -2000-12-09 22:00:00;131 -2000-12-10 18:00:00;136 -2000-12-10 20:00:00;142 -2000-12-10 22:00:00;138 -2000-12-11 18:00:00;135 -2000-12-11 20:00:00;139 -2000-12-11 22:00:00;139 -2000-12-12 18:00:00;143 -2000-12-12 20:00:00;145 -2000-12-12 22:00:00;147 -2000-12-13 18:00:00;153 -2000-12-13 20:00:00;159 -2000-12-13 22:00:00;167 -2000-12-14 18:00:00;172 -2000-12-14 20:00:00;176 -2000-12-14 22:00:00;176 -2000-12-15 18:00:00;176 -2000-12-15 20:00:00;181 -2000-12-15 22:00:00;182 -2000-12-16 18:00:00;183 -2000-12-16 20:00:00;184 -2000-12-16 22:00:00;189 -2000-12-17 18:00:00;184 -2000-12-17 20:00:00;190 -2000-12-17 22:00:00;179 -2000-12-18 18:00:00;186 -2000-12-18 20:00:00;191 -2000-12-18 22:00:00;194 -2000-12-19 18:00:00;191 -2000-12-19 20:00:00;192 -2000-12-19 22:00:00;193 -2000-12-20 18:00:00;190 -2000-12-20 20:00:00;194 -2000-12-20 22:00:00;201 -2000-12-21 18:00:00;187 -2000-12-21 20:00:00;188 -2000-12-21 22:00:00;189 -2000-12-22 18:00:00;184 -2000-12-22 20:00:00;183 -2000-12-22 22:00:00;189 -2000-12-23 18:00:00;185 -2000-12-23 20:00:00;184 -2000-12-23 22:00:00;191 -2000-12-24 18:00:00;182 -2000-12-24 20:00:00;186 -2000-12-24 22:00:00;190 -2000-12-25 18:00:00;175 -2000-12-25 20:00:00;180 -2000-12-25 22:00:00;188 -2000-12-26 18:00:00;180 -2000-12-26 20:00:00;182 -2000-12-26 22:00:00;185 -2000-12-27 18:00:00;183 -2000-12-27 20:00:00;181 -2000-12-27 22:00:00;185 -2000-12-28 18:00:00;179 -2000-12-28 20:00:00;179 -2000-12-28 22:00:00;181 -2000-12-29 18:00:00;175 -2000-12-29 20:00:00;175 -2000-12-29 22:00:00;179 -2000-12-30 18:00:00;172 -2000-12-30 20:00:00;176 -2000-12-30 22:00:00;178 -2000-12-31 18:00:00;164 -2000-12-31 20:00:00;163 -2000-12-31 22:00:00;167 -2001-01-01 18:00:00;164 -2001-01-01 20:00:00;165 -2001-01-01 22:00:00;167 -2001-01-02 18:00:00;165 -2001-01-02 20:00:00;170 -2001-01-02 22:00:00;168 -2001-01-03 18:00:00;163 -2001-01-03 20:00:00;164 -2001-01-03 22:00:00;168 -2001-01-04 18:00:00;166 -2001-01-04 20:00:00;168 -2001-01-04 22:00:00;173 -2001-01-05 18:00:00;165 -2001-01-05 20:00:00;170 -2001-01-05 22:00:00;169 -2001-01-06 18:00:00;172 -2001-01-06 20:00:00;173 -2001-01-06 22:00:00;175 -2001-01-07 18:00:00;168 -2001-01-07 20:00:00;170 -2001-01-07 22:00:00;171 -2001-01-08 18:00:00;161 -2001-01-08 20:00:00;161 -2001-01-08 22:00:00;164 -2001-01-09 18:00:00;160 -2001-01-09 20:00:00;160 -2001-01-09 22:00:00;162 -2001-01-10 18:00:00;158 -2001-01-10 20:00:00;157 -2001-01-10 22:00:00;160 -2001-01-11 18:00:00;162 -2001-01-11 20:00:00;160 -2001-01-11 22:00:00;164 -2001-01-12 18:00:00;177 -2001-01-12 20:00:00;172 -2001-01-12 22:00:00;173 -2001-01-13 18:00:00;174 -2001-01-13 20:00:00;178 -2001-01-13 22:00:00;177 -2001-01-14 18:00:00;170 -2001-01-14 20:00:00;170 -2001-01-14 22:00:00;172 -2001-01-15 18:00:00;164 -2001-01-15 20:00:00;163 -2001-01-15 22:00:00;161 -2001-01-16 18:00:00;155 -2001-01-16 20:00:00;156 -2001-01-16 22:00:00;156 -2001-01-17 18:00:00;148 -2001-01-17 20:00:00;147 -2001-01-17 22:00:00;148 -2001-01-18 18:00:00;148 -2001-01-18 20:00:00;146 -2001-01-18 22:00:00;146 -2001-01-19 18:00:00;156 -2001-01-19 20:00:00;147 -2001-01-19 22:00:00;147 -2001-01-20 18:00:00;143 -2001-01-20 20:00:00;148 -2001-01-20 22:00:00;202 -2001-01-21 18:00:00;146 -2001-01-21 20:00:00;146 -2001-01-21 22:00:00;148 -2001-01-22 18:00:00;155 -2001-01-22 20:00:00;157 -2001-01-22 22:00:00;159 -2001-01-23 18:00:00;161 -2001-01-23 20:00:00;162 -2001-01-23 22:00:00;165 -2001-01-24 18:00:00;167 -2001-01-24 20:00:00;167 -2001-01-24 22:00:00;163 -2001-01-25 18:00:00;161 -2001-01-25 20:00:00;163 -2001-01-25 22:00:00;163 -2001-01-26 18:00:00;160 -2001-01-26 20:00:00;160 -2001-01-26 22:00:00;159 -2001-01-27 18:00:00;160 -2001-01-27 20:00:00;161 -2001-01-27 22:00:00;163 -2001-01-28 18:00:00;167 -2001-01-28 20:00:00;162 -2001-01-28 22:00:00;164 -2001-01-29 18:00:00;164 -2001-01-29 20:00:00;160 -2001-01-29 22:00:00;158 -2001-01-30 18:00:00;154 -2001-01-30 20:00:00;154 -2001-01-30 22:00:00;157 -2001-01-31 18:00:00;150 -2001-01-31 20:00:00;148 -2001-01-31 22:00:00;148 -2001-02-01 18:00:00;156 -2001-02-01 20:00:00;156 -2001-02-01 22:00:00;155 -2001-02-02 18:00:00;156 -2001-02-02 20:00:00;161 -2001-02-02 22:00:00;164 -2001-02-03 20:00:00;159 -2001-02-03 22:00:00;161 -2001-02-04 18:00:00;153 -2001-02-04 20:00:00;144 -2001-02-04 22:00:00;145 -2001-02-05 18:00:00;161 -2001-02-05 20:00:00;160 -2001-02-05 22:00:00;162 -2001-02-06 18:00:00;165 -2001-02-06 20:00:00;165 -2001-02-06 22:00:00;165 -2001-02-07 18:00:00;157 -2001-02-07 20:00:00;159 -2001-02-07 22:00:00;158 -2001-02-08 18:00:00;153 -2001-02-08 20:00:00;152 -2001-02-08 22:00:00;152 -2001-02-09 18:00:00;154 -2001-02-09 20:00:00;158 -2001-02-09 22:00:00;161 -2001-02-10 18:00:00;156 -2001-02-10 20:00:00;156 -2001-02-10 22:00:00;154 -2001-02-11 18:00:00;148 -2001-02-11 20:00:00;147 -2001-02-11 22:00:00;145 -2001-02-12 18:00:00;139 -2001-02-12 20:00:00;140 -2001-02-12 22:00:00;139 -2001-02-13 18:00:00;136 -2001-02-13 20:00:00;137 -2001-02-13 22:00:00;138 -2001-02-14 18:00:00;134 -2001-02-14 20:00:00;134 -2001-02-14 22:00:00;134 -2001-02-15 18:00:00;132 -2001-02-15 20:00:00;131 -2001-02-15 22:00:00;133 -2001-02-16 18:00:00;126 -2001-02-16 20:00:00;126 -2001-02-16 22:00:00;126 -2001-02-17 18:00:00;127 -2001-02-17 20:00:00;126 -2001-02-17 22:00:00;127 -2001-02-18 18:00:00;127 -2001-02-18 20:00:00;129 -2001-02-18 22:00:00;129 -2001-02-19 18:00:00;133 -2001-02-19 20:00:00;134 -2001-02-19 22:00:00;138 -2001-02-20 18:00:00;144 -2001-02-20 20:00:00;142 -2001-02-20 22:00:00;143 -2001-02-21 18:00:00;139 -2001-02-21 20:00:00;140 -2001-02-21 22:00:00;141 -2001-02-22 18:00:00;143 -2001-02-22 20:00:00;142 -2001-02-22 22:00:00;142 -2001-02-23 18:00:00;142 -2001-02-23 20:00:00;142 -2001-02-23 22:00:00;142 -2001-02-24 18:00:00;134 -2001-02-24 20:00:00;134 -2001-02-24 22:00:00;134 -2001-02-25 18:00:00;132 -2001-02-25 20:00:00;132 -2001-02-25 22:00:00;135 -2001-02-26 18:00:00;132 -2001-02-26 20:00:00;132 -2001-02-26 22:00:00;132 -2001-02-27 18:00:00;130 -2001-02-27 20:00:00;128 -2001-02-27 22:00:00;127 -2001-02-28 18:00:00;132 -2001-02-28 20:00:00;129 -2001-02-28 22:00:00;128 -2001-03-01 17:00:00;124 -2001-03-01 20:00:00;129 -2001-03-01 23:00:00;127 -2001-03-02 17:00:00;125 -2001-03-02 20:00:00;127 -2001-03-02 23:00:00;129 -2001-03-03 17:00:00;138 -2001-03-03 20:00:00;137 -2001-03-03 23:00:00;140 -2001-03-04 17:00:00;139 -2001-03-04 20:00:00;138 -2001-03-04 23:00:00;140 -2001-03-05 17:00:00;151 -2001-03-05 20:00:00;153 -2001-03-05 23:00:00;150 -2001-03-06 17:00:00;155 -2001-03-06 20:00:00;155 -2001-03-06 23:00:00;155 -2001-03-07 17:00:00;162 -2001-03-07 20:00:00;174 -2001-03-07 23:00:00;163 -2001-03-08 17:00:00;169 -2001-03-08 20:00:00;164 -2001-03-08 23:00:00;162 -2001-03-09 17:00:00;158 -2001-03-09 20:00:00;159 -2001-03-09 23:00:00;164 -2001-03-10 17:00:00;159 -2001-03-10 20:00:00;158 -2001-03-10 23:00:00;155 -2001-03-11 17:00:00;154 -2001-03-11 20:00:00;155 -2001-03-11 23:00:00;155 -2001-03-12 17:00:00;160 -2001-03-12 20:00:00;155 -2001-03-12 23:00:00;151 -2001-03-13 17:00:00;146 -2001-03-13 20:00:00;145 -2001-03-13 23:00:00;143 -2001-03-14 17:00:00;141 -2001-03-14 20:00:00;140 -2001-03-14 23:00:00;140 -2001-03-15 17:00:00;138 -2001-03-15 20:00:00;134 -2001-03-15 23:00:00;139 -2001-03-16 17:00:00;134 -2001-03-16 20:00:00;138 -2001-03-16 23:00:00;136 -2001-03-17 17:00:00;133 -2001-03-17 20:00:00;132 -2001-03-17 23:00:00;132 -2001-03-18 17:00:00;134 -2001-03-18 20:00:00;138 -2001-03-18 23:00:00;141 -2001-03-19 17:00:00;144 -2001-03-19 20:00:00;145 -2001-03-19 23:00:00;146 -2001-03-20 17:00:00;156 -2001-03-20 20:00:00;152 -2001-03-20 23:00:00;156 -2001-03-21 17:00:00;153 -2001-03-21 20:00:00;158 -2001-03-21 23:00:00;159 -2001-03-22 17:00:00;179 -2001-03-22 20:00:00;181 -2001-03-22 23:00:00;182 -2001-03-23 17:00:00;177 -2001-03-23 20:00:00;178 -2001-03-23 23:00:00;178 -2001-03-24 17:00:00;200 -2001-03-24 20:00:00;217 -2001-03-24 23:00:00;215 -2001-03-25 17:00:00;247 -2001-03-25 20:00:00;215 -2001-03-25 23:00:00;228 -2001-03-26 17:00:00;246 -2001-03-26 20:00:00;262 -2001-03-26 23:00:00;260 -2001-03-27 17:00:00;270 -2001-03-27 20:00:00;272 -2001-03-27 23:00:00;275 -2001-03-28 17:00:00;271 -2001-03-28 20:00:00;272 -2001-03-28 23:00:00;292 -2001-03-29 17:00:00;260 -2001-03-29 20:00:00;261 -2001-03-29 23:00:00;275 -2001-03-30 17:00:00;269 -2001-03-30 20:00:00;256 -2001-03-30 23:00:00;256 -2001-03-31 17:00:00;251 -2001-03-31 20:00:00;245 -2001-03-31 23:00:00;247 -2001-04-01 17:00:00;243 -2001-04-01 20:00:00;257 -2001-04-01 23:00:00;245 -2001-04-02 17:00:00;236 -2001-04-02 20:00:00;227 -2001-04-02 23:00:00;562 -2001-04-03 17:00:00;217 -2001-04-03 20:00:00;223 -2001-04-03 23:00:00;214 -2001-04-04 17:00:00;212 -2001-04-04 20:00:00;205 -2001-04-04 23:00:00;199 -2001-04-05 17:00:00;583 -2001-04-05 20:00:00;399 -2001-04-05 23:00:00;207 -2001-04-06 17:00:00;192 -2001-04-06 20:00:00;564 -2001-04-06 23:00:00;198 -2001-04-07 17:00:00;181 -2001-04-07 20:00:00;180 -2001-04-07 23:00:00;177 -2001-04-08 17:00:00;174 -2001-04-08 20:00:00;169 -2001-04-08 23:00:00;174 -2001-04-09 17:00:00;182 -2001-04-09 20:00:00;165 -2001-04-09 23:00:00;164 -2001-04-10 17:00:00;163 -2001-04-10 20:00:00;170 -2001-04-10 23:00:00;168 -2001-04-11 17:00:00;165 -2001-04-11 20:00:00;160 -2001-04-11 23:00:00;157 -2001-04-12 17:00:00;152 -2001-04-12 20:00:00;149 -2001-04-12 23:00:00;147 -2001-04-13 17:00:00;138 -2001-04-13 20:00:00;137 -2001-04-13 23:00:00;138 -2001-04-14 17:00:00;140 -2001-04-14 20:00:00;139 -2001-04-14 23:00:00;136 -2001-04-15 17:00:00;163 -2001-04-15 20:00:00;135 -2001-04-15 23:00:00;133 -2001-04-16 17:00:00;125 -2001-04-16 20:00:00;124 -2001-04-16 23:00:00;123 -2001-04-17 17:00:00;124 -2001-04-17 20:00:00;127 -2001-04-17 23:00:00;128 -2001-04-18 17:00:00;132 -2001-04-18 20:00:00;133 -2001-04-18 23:00:00;135 -2001-04-19 17:00:00;145 -2001-04-19 20:00:00;145 -2001-04-19 23:00:00;146 -2001-04-20 17:00:00;169 -2001-04-20 20:00:00;182 -2001-04-20 23:00:00;174 -2001-04-21 17:00:00;189 -2001-04-21 20:00:00;193 -2001-04-21 23:00:00;195 -2001-04-22 17:00:00;201 -2001-04-22 20:00:00;194 -2001-04-22 23:00:00;201 -2001-04-23 17:00:00;193 -2001-04-23 20:00:00;198 -2001-04-23 23:00:00;189 -2001-04-24 17:00:00;195 -2001-04-24 20:00:00;195 -2001-04-24 23:00:00;205 -2001-04-25 17:00:00;201 -2001-04-25 20:00:00;196 -2001-04-25 23:00:00;193 -2001-04-26 17:00:00;203 -2001-04-26 20:00:00;198 -2001-04-26 23:00:00;197 -2001-04-27 17:00:00;190 -2001-04-27 20:00:00;193 -2001-04-27 23:00:00;199 -2001-04-28 17:00:00;195 -2001-04-28 20:00:00;190 -2001-04-28 23:00:00;191 -2001-04-29 17:00:00;195 -2001-04-29 20:00:00;194 -2001-04-29 23:00:00;195 -2001-04-30 17:00:00;192 -2001-04-30 20:00:00;190 -2001-04-30 23:00:00;189 -2001-05-01 17:00:00;187 -2001-05-01 20:00:00;213 -2001-05-01 23:00:00;182 -2001-05-02 17:00:00;176 -2001-05-02 20:00:00;179 -2001-05-02 23:00:00;176 -2001-05-03 17:00:00;177 -2001-05-03 20:00:00;175 -2001-05-03 23:00:00;177 -2001-05-04 17:00:00;178 -2001-05-04 20:00:00;178 -2001-05-04 23:00:00;175 -2001-05-05 17:00:00;163 -2001-05-05 20:00:00;163 -2001-05-05 23:00:00;156 -2001-05-06 17:00:00;150 -2001-05-06 20:00:00;157 -2001-05-06 23:00:00;143 -2001-05-07 17:00:00;140 -2001-05-07 20:00:00;140 -2001-05-07 23:00:00;137 -2001-05-08 17:00:00;133 -2001-05-08 20:00:00;131 -2001-05-08 23:00:00;132 -2001-05-09 17:00:00;133 -2001-05-09 20:00:00;131 -2001-05-09 23:00:00;133 -2001-05-10 17:00:00;135 -2001-05-10 20:00:00;133 -2001-05-10 23:00:00;135 -2001-05-11 17:00:00;137 -2001-05-11 20:00:00;139 -2001-05-11 23:00:00;143 -2001-05-12 17:00:00;142 -2001-05-12 20:00:00;141 -2001-05-12 23:00:00;146 -2001-05-13 17:00:00;142 -2001-05-13 20:00:00;141 -2001-05-13 23:00:00;142 -2001-05-14 17:00:00;140 -2001-05-14 20:00:00;141 -2001-05-14 23:00:00;142 -2001-05-15 17:00:00;142 -2001-05-15 20:00:00;145 -2001-05-15 23:00:00;146 -2001-05-16 17:00:00;142 -2001-05-16 20:00:00;140 -2001-05-16 23:00:00;145 -2001-05-17 17:00:00;142 -2001-05-17 20:00:00;150 -2001-05-17 23:00:00;150 -2001-05-18 17:00:00;141 -2001-05-18 20:00:00;141 -2001-05-18 23:00:00;142 -2001-05-19 17:00:00;142 -2001-05-19 20:00:00;144 -2001-05-19 23:00:00;145 -2001-05-20 17:00:00;145 -2001-05-20 20:00:00;144 -2001-05-20 23:00:00;146 -2001-05-21 17:00:00;151 -2001-05-21 20:00:00;153 -2001-05-21 23:00:00;154 -2001-05-22 17:00:00;154 -2001-05-22 20:00:00;155 -2001-05-22 23:00:00;161 -2001-05-23 17:00:00;163 -2001-05-23 20:00:00;162 -2001-05-23 23:00:00;165 -2001-05-24 17:00:00;161 -2001-05-24 20:00:00;174 -2001-05-24 23:00:00;160 -2001-05-25 17:00:00;157 -2001-05-25 20:00:00;166 -2001-05-25 23:00:00;160 -2001-05-26 17:00:00;151 -2001-05-26 20:00:00;151 -2001-05-26 23:00:00;152 -2001-05-27 17:00:00;151 -2001-05-27 20:00:00;150 -2001-05-27 23:00:00;150 -2001-05-28 17:00:00;147 -2001-05-28 20:00:00;146 -2001-05-28 23:00:00;145 -2001-05-29 17:00:00;141 -2001-05-29 20:00:00;142 -2001-05-29 23:00:00;141 -2001-05-30 17:00:00;135 -2001-05-30 20:00:00;136 -2001-05-30 23:00:00;138 -2001-05-31 17:00:00;136 -2001-05-31 20:00:00;136 -2001-05-31 23:00:00;135 -2001-06-01 17:00:00;136 -2001-06-01 20:00:00;136 -2001-06-01 23:00:00;138 -2001-06-02 17:00:00;137 -2001-06-02 20:00:00;137 -2001-06-02 23:00:00;138 -2001-06-03 17:00:00;146 -2001-06-03 20:00:00;149 -2001-06-03 23:00:00;151 -2001-06-04 17:00:00;158 -2001-06-04 20:00:00;158 -2001-06-04 23:00:00;165 -2001-06-05 17:00:00;155 -2001-06-05 20:00:00;158 -2001-06-05 23:00:00;155 -2001-06-06 17:00:00;161 -2001-06-06 20:00:00;162 -2001-06-06 23:00:00;161 -2001-06-07 17:00:00;166 -2001-06-07 20:00:00;169 -2001-06-07 23:00:00;172 -2001-06-08 17:00:00;179 -2001-06-08 20:00:00;185 -2001-06-08 23:00:00;187 -2001-06-09 17:00:00;177 -2001-06-09 20:00:00;182 -2001-06-09 23:00:00;185 -2001-06-10 17:00:00;177 -2001-06-10 20:00:00;168 -2001-06-10 23:00:00;175 -2001-06-11 17:00:00;167 -2001-06-11 20:00:00;167 -2001-06-11 23:00:00;165 -2001-06-12 17:00:00;171 -2001-06-12 20:00:00;171 -2001-06-12 23:00:00;177 -2001-06-13 17:00:00;186 -2001-06-13 20:00:00;187 -2001-06-13 23:00:00;195 -2001-06-14 17:00:00;204 -2001-06-14 20:00:00;200 -2001-06-14 23:00:00;201 -2001-06-15 17:00:00;201 -2001-06-15 20:00:00;203 -2001-06-15 23:00:00;210 -2001-06-16 17:00:00;209 -2001-06-16 20:00:00;214 -2001-06-16 23:00:00;213 -2001-06-17 17:00:00;211 -2001-06-17 20:00:00;211 -2001-06-17 23:00:00;214 -2001-06-18 17:00:00;205 -2001-06-18 20:00:00;228 -2001-06-18 23:00:00;224 -2001-06-19 17:00:00;202 -2001-06-19 20:00:00;201 -2001-06-19 23:00:00;202 -2001-06-20 17:00:00;200 -2001-06-20 20:00:00;205 -2001-06-20 23:00:00;209 -2001-06-21 17:00:00;209 -2001-06-21 20:00:00;206 -2001-06-21 23:00:00;206 -2001-06-22 17:00:00;206 -2001-06-22 20:00:00;210 -2001-06-22 23:00:00;236 -2001-06-23 17:00:00;212 -2001-06-23 20:00:00;213 -2001-06-23 23:00:00;208 -2001-06-24 17:00:00;198 -2001-06-24 20:00:00;201 -2001-06-24 23:00:00;197 -2001-06-25 17:00:00;188 -2001-06-25 20:00:00;188 -2001-06-25 23:00:00;190 -2001-06-26 17:00:00;178 -2001-06-26 20:00:00;173 -2001-06-26 23:00:00;172 -2001-06-27 17:00:00;158 -2001-06-27 20:00:00;152 -2001-06-27 23:00:00;159 -2001-06-28 17:00:00;145 -2001-06-28 20:00:00;144 -2001-06-28 23:00:00;145 -2001-06-29 17:00:00;146 -2001-06-29 20:00:00;144 -2001-06-29 23:00:00;145 -2001-06-30 17:00:00;140 -2001-06-30 20:00:00;141 -2001-06-30 23:00:00;141 -2001-07-01 17:00:00;139 -2001-07-01 20:00:00;140 -2001-07-01 23:00:00;139 -2001-07-02 17:00:00;138 -2001-07-02 20:00:00;138 -2001-07-02 23:00:00;139 -2001-07-03 17:00:00;137 -2001-07-03 20:00:00;136 -2001-07-03 23:00:00;136 -2001-07-04 17:00:00;132 -2001-07-04 20:00:00;131 -2001-07-04 23:00:00;132 -2001-07-05 17:00:00;125 -2001-07-05 20:00:00;123 -2001-07-05 23:00:00;123 -2001-07-06 17:00:00;120 -2001-07-06 20:00:00;120 -2001-07-06 23:00:00;121 -2001-07-07 17:00:00;122 -2001-07-07 20:00:00;121 -2001-07-07 23:00:00;122 -2001-07-08 17:00:00;129 -2001-07-08 20:00:00;130 -2001-07-08 23:00:00;130 -2001-07-09 17:00:00;135 -2001-07-09 20:00:00;134 -2001-07-09 23:00:00;133 -2001-07-10 17:00:00;134 -2001-07-10 20:00:00;134 -2001-07-10 23:00:00;135 -2001-07-11 17:00:00;136 -2001-07-11 20:00:00;136 -2001-07-11 23:00:00;137 -2001-07-12 17:00:00;139 -2001-07-12 20:00:00;138 -2001-07-12 23:00:00;140 -2001-07-13 17:00:00;137 -2001-07-13 20:00:00;137 -2001-07-13 23:00:00;139 -2001-07-14 17:00:00;143 -2001-07-14 20:00:00;145 -2001-07-14 23:00:00;146 -2001-07-15 17:00:00;146 -2001-07-15 20:00:00;146 -2001-07-15 23:00:00;149 -2001-07-16 17:00:00;156 -2001-07-16 20:00:00;154 -2001-07-16 23:00:00;154 -2001-07-17 17:00:00;148 -2001-07-17 20:00:00;150 -2001-07-17 23:00:00;153 -2001-07-18 17:00:00;145 -2001-07-18 20:00:00;147 -2001-07-18 23:00:00;152 -2001-07-19 17:00:00;148 -2001-07-19 20:00:00;146 -2001-07-19 23:00:00;147 -2001-07-20 17:00:00;148 -2001-07-20 20:00:00;147 -2001-07-20 23:00:00;151 -2001-07-21 17:00:00;145 -2001-07-21 20:00:00;143 -2001-07-21 23:00:00;147 -2001-07-22 17:00:00;143 -2001-07-22 20:00:00;144 -2001-07-22 23:00:00;146 -2001-07-23 17:00:00;148 -2001-07-23 20:00:00;147 -2001-07-23 23:00:00;146 -2001-07-24 17:00:00;138 -2001-07-24 20:00:00;136 -2001-07-24 23:00:00;138 -2001-07-25 17:00:00;138 -2001-07-25 20:00:00;137 -2001-07-25 23:00:00;137 -2001-07-26 17:00:00;128 -2001-07-26 20:00:00;127 -2001-07-26 23:00:00;126 -2001-07-27 17:00:00;125 -2001-07-27 20:00:00;125 -2001-07-27 23:00:00;124 -2001-07-28 17:00:00;117 -2001-07-28 20:00:00;119 -2001-07-28 23:00:00;120 -2001-07-29 17:00:00;119 -2001-07-29 20:00:00;120 -2001-07-29 23:00:00;120 -2001-07-30 17:00:00;117 -2001-07-30 20:00:00;118 -2001-07-30 23:00:00;118 -2001-07-31 17:00:00;123 -2001-07-31 20:00:00;120 -2001-07-31 23:00:00;122 -2001-08-01 17:00:00;120 -2001-08-01 20:00:00;123 -2001-08-01 23:00:00;125 -2001-08-02 17:00:00;125 -2001-08-02 20:00:00;124 -2001-08-02 23:00:00;126 -2001-08-03 17:00:00;132 -2001-08-03 20:00:00;135 -2001-08-03 23:00:00;137 -2001-08-04 17:00:00;150 -2001-08-04 20:00:00;152 -2001-08-04 23:00:00;156 -2001-08-05 17:00:00;157 -2001-08-05 20:00:00;160 -2001-08-05 23:00:00;164 -2001-08-06 17:00:00;168 -2001-08-06 20:00:00;168 -2001-08-06 23:00:00;173 -2001-08-07 17:00:00;173 -2001-08-07 20:00:00;171 -2001-08-07 23:00:00;174 -2001-08-08 17:00:00;176 -2001-08-08 20:00:00;171 -2001-08-08 23:00:00;170 -2001-08-09 17:00:00;164 -2001-08-09 20:00:00;167 -2001-08-09 23:00:00;165 -2001-08-10 17:00:00;161 -2001-08-10 20:00:00;164 -2001-08-10 23:00:00;164 -2001-08-11 17:00:00;169 -2001-08-11 20:00:00;169 -2001-08-11 23:00:00;170 -2001-08-12 17:00:00;163 -2001-08-12 20:00:00;164 -2001-08-12 23:00:00;161 -2001-08-13 17:00:00;158 -2001-08-13 20:00:00;155 -2001-08-13 23:00:00;155 -2001-08-14 17:00:00;155 -2001-08-14 20:00:00;151 -2001-08-14 23:00:00;148 -2001-08-15 17:00:00;148 -2001-08-15 20:00:00;150 -2001-08-15 23:00:00;151 -2001-08-16 17:00:00;145 -2001-08-16 20:00:00;146 -2001-08-16 23:00:00;146 -2001-08-17 17:00:00;147 -2001-08-17 20:00:00;148 -2001-08-17 23:00:00;151 -2001-08-18 17:00:00;157 -2001-08-18 20:00:00;159 -2001-08-18 23:00:00;161 -2001-08-19 17:00:00;159 -2001-08-19 20:00:00;161 -2001-08-19 23:00:00;163 -2001-08-20 17:00:00;160 -2001-08-20 20:00:00;159 -2001-08-20 23:00:00;164 -2001-08-21 17:00:00;168 -2001-08-21 20:00:00;163 -2001-08-21 23:00:00;165 -2001-08-22 17:00:00;166 -2001-08-22 20:00:00;165 -2001-08-22 23:00:00;169 -2001-08-23 17:00:00;176 -2001-08-23 20:00:00;173 -2001-08-23 23:00:00;175 -2001-08-24 17:00:00;175 -2001-08-24 20:00:00;178 -2001-08-24 23:00:00;191 -2001-08-25 17:00:00;512 -2001-08-25 20:00:00;203 -2001-08-25 23:00:00;191 -2001-08-26 17:00:00;192 -2001-08-26 20:00:00;193 -2001-08-26 23:00:00;197 -2001-08-27 17:00:00;194 -2001-08-27 20:00:00;195 -2001-08-27 23:00:00;200 -2001-08-28 17:00:00;208 -2001-08-28 20:00:00;203 -2001-08-28 23:00:00;204 -2001-08-29 17:00:00;196 -2001-08-29 20:00:00;200 -2001-08-29 23:00:00;199 -2001-08-30 17:00:00;199 -2001-08-30 20:00:00;203 -2001-08-30 23:00:00;196 -2001-08-31 17:00:00;195 -2001-08-31 20:00:00;192 -2001-08-31 23:00:00;209 -2001-09-01 17:00:00;185 -2001-09-01 20:00:00;187 -2001-09-01 23:00:00;188 -2001-09-02 17:00:00;187 -2001-09-02 20:00:00;185 -2001-09-02 23:00:00;189 -2001-09-03 17:00:00;197 -2001-09-03 20:00:00;202 -2001-09-03 23:00:00;204 -2001-09-04 17:00:00;221 -2001-09-04 20:00:00;222 -2001-09-04 23:00:00;224 -2001-09-05 17:00:00;215 -2001-09-05 20:00:00;221 -2001-09-05 23:00:00;234 -2001-09-06 17:00:00;224 -2001-09-06 20:00:00;225 -2001-09-06 23:00:00;231 -2001-09-07 17:00:00;233 -2001-09-07 20:00:00;229 -2001-09-07 23:00:00;232 -2001-09-08 17:00:00;244 -2001-09-08 20:00:00;253 -2001-09-08 23:00:00;250 -2001-09-09 17:00:00;245 -2001-09-09 20:00:00;239 -2001-09-09 23:00:00;247 -2001-09-10 17:00:00;243 -2001-09-10 20:00:00;247 -2001-09-10 23:00:00;250 -2001-09-11 17:00:00;252 -2001-09-11 20:00:00;252 -2001-09-11 23:00:00;254 -2001-09-12 17:00:00;246 -2001-09-12 20:00:00;238 -2001-09-12 23:00:00;242 -2001-09-13 17:00:00;240 -2001-09-13 20:00:00;242 -2001-09-13 23:00:00;240 -2001-09-14 17:00:00;240 -2001-09-14 20:00:00;239 -2001-09-14 23:00:00;243 -2001-09-15 17:00:00;223 -2001-09-15 20:00:00;221 -2001-09-15 23:00:00;224 -2001-09-16 17:00:00;213 -2001-09-16 20:00:00;209 -2001-09-16 23:00:00;208 -2001-09-17 17:00:00;201 -2001-09-17 20:00:00;201 -2001-09-17 23:00:00;200 -2001-09-18 17:00:00;202 -2001-09-18 20:00:00;205 -2001-09-18 23:00:00;201 -2001-09-19 17:00:00;207 -2001-09-19 20:00:00;200 -2001-09-19 23:00:00;204 -2001-09-20 17:00:00;221 -2001-09-20 20:00:00;228 -2001-09-20 23:00:00;227 -2001-09-21 17:00:00;238 -2001-09-21 20:00:00;240 -2001-09-21 23:00:00;242 -2001-09-22 17:00:00;254 -2001-09-22 20:00:00;257 -2001-09-22 23:00:00;257 -2001-09-23 17:00:00;257 -2001-09-23 20:00:00;260 -2001-09-23 23:00:00;266 -2001-09-24 17:00:00;283 -2001-09-24 20:00:00;281 -2001-09-24 23:00:00;282 -2001-09-25 17:00:00;283 -2001-09-25 20:00:00;276 -2001-09-25 23:00:00;279 -2001-09-26 17:00:00;278 -2001-09-26 20:00:00;284 -2001-09-26 23:00:00;285 -2001-09-27 17:00:00;279 -2001-09-27 20:00:00;270 -2001-09-27 23:00:00;266 -2001-09-28 17:00:00;266 -2001-09-28 20:00:00;285 -2001-09-28 23:00:00;276 -2001-09-29 17:00:00;239 -2001-09-29 20:00:00;240 -2001-09-29 23:00:00;240 -2001-09-30 17:00:00;237 -2001-09-30 20:00:00;236 -2001-09-30 23:00:00;231 -2001-10-01 17:00:00;221 -2001-10-01 20:00:00;216 -2001-10-01 23:00:00;216 -2001-10-02 17:00:00;202 -2001-10-02 20:00:00;201 -2001-10-02 23:00:00;204 -2001-10-03 17:00:00;193 -2001-10-03 20:00:00;191 -2001-10-03 23:00:00;192 -2001-10-04 17:00:00;186 -2001-10-04 20:00:00;186 -2001-10-04 23:00:00;185 -2001-10-05 17:00:00;178 -2001-10-05 20:00:00;176 -2001-10-05 23:00:00;182 -2001-10-06 17:00:00;172 -2001-10-06 20:00:00;180 -2001-10-06 23:00:00;175 -2001-10-07 17:00:00;174 -2001-10-07 20:00:00;172 -2001-10-07 23:00:00;176 -2001-10-08 17:00:00;167 -2001-10-08 20:00:00;170 -2001-10-08 23:00:00;173 -2001-10-09 17:00:00;176 -2001-10-09 20:00:00;175 -2001-10-09 23:00:00;180 -2001-10-10 17:00:00;176 -2001-10-10 20:00:00;178 -2001-10-10 23:00:00;184 -2001-10-11 17:00:00;173 -2001-10-11 20:00:00;174 -2001-10-11 23:00:00;178 -2001-10-12 17:00:00;178 -2001-10-12 20:00:00;178 -2001-10-12 23:00:00;172 -2001-10-13 17:00:00;178 -2001-10-13 20:00:00;178 -2001-10-13 23:00:00;183 -2001-10-14 17:00:00;187 -2001-10-14 20:00:00;190 -2001-10-14 23:00:00;193 -2001-10-15 17:00:00;192 -2001-10-15 20:00:00;191 -2001-10-15 23:00:00;196 -2001-10-16 17:00:00;200 -2001-10-16 20:00:00;205 -2001-10-16 23:00:00;207 -2001-10-17 17:00:00;213 -2001-10-17 20:00:00;215 -2001-10-17 23:00:00;221 -2001-10-18 17:00:00;221 -2001-10-18 20:00:00;226 -2001-10-18 23:00:00;224 -2001-10-19 17:00:00;390 -2001-10-19 20:00:00;245 -2001-10-19 23:00:00;260 -2001-10-20 17:00:00;243 -2001-10-20 20:00:00;242 -2001-10-20 23:00:00;239 -2001-10-21 17:00:00;230 -2001-10-21 20:00:00;222 -2001-10-21 23:00:00;231 -2001-10-22 17:00:00;228 -2001-10-22 20:00:00;230 -2001-10-22 23:00:00;235 -2001-10-23 17:00:00;223 -2001-10-23 20:00:00;224 -2001-10-23 23:00:00;229 -2001-10-24 17:00:00;228 -2001-10-24 20:00:00;236 -2001-10-24 23:00:00;248 -2001-10-25 17:00:00;235 -2001-10-25 20:00:00;236 -2001-10-25 23:00:00;232 -2001-10-26 17:00:00;227 -2001-10-26 20:00:00;233 -2001-10-26 23:00:00;242 -2001-10-27 17:00:00;236 -2001-10-27 20:00:00;243 -2001-10-27 23:00:00;251 -2001-10-28 17:00:00;236 -2001-10-28 20:00:00;224 -2001-10-28 23:00:00;228 -2001-10-29 17:00:00;215 -2001-10-29 20:00:00;212 -2001-10-29 23:00:00;217 -2001-10-30 17:00:00;209 -2001-10-30 20:00:00;222 -2001-10-30 23:00:00;220 -2001-10-31 17:00:00;226 -2001-10-31 20:00:00;217 -2001-10-31 23:00:00;224 -2001-11-01 17:00:00;242 -2001-11-01 20:00:00;232 -2001-11-01 23:00:00;243 -2001-11-02 18:00:00;210 -2001-11-02 20:00:00;210 -2001-11-02 22:00:00;212 -2001-11-03 18:00:00;210 -2001-11-03 20:00:00;212 -2001-11-03 22:00:00;210 -2001-11-04 18:00:00;244 -2001-11-04 20:00:00;223 -2001-11-04 22:00:00;227 -2001-11-05 18:00:00;230 -2001-11-05 20:00:00;230 -2001-11-05 22:00:00;230 -2001-11-06 18:00:00;243 -2001-11-06 20:00:00;233 -2001-11-06 22:00:00;228 -2001-11-07 18:00:00;226 -2001-11-07 20:00:00;263 -2001-11-07 22:00:00;252 -2001-11-08 18:00:00;252 -2001-11-08 20:00:00;243 -2001-11-08 22:00:00;236 -2001-11-09 18:00:00;257 -2001-11-09 20:00:00;265 -2001-11-09 22:00:00;250 -2001-11-10 18:00:00;237 -2001-11-10 20:00:00;241 -2001-11-10 22:00:00;239 -2001-11-11 18:00:00;223 -2001-11-11 20:00:00;229 -2001-11-11 22:00:00;225 -2001-11-12 18:00:00;222 -2001-11-12 20:00:00;222 -2001-11-12 22:00:00;223 -2001-11-13 18:00:00;212 -2001-11-13 20:00:00;226 -2001-11-13 22:00:00;213 -2001-11-14 18:00:00;213 -2001-11-14 20:00:00;212 -2001-11-14 22:00:00;228 -2001-11-15 18:00:00;203 -2001-11-15 20:00:00;202 -2001-11-15 22:00:00;204 -2001-11-16 18:00:00;195 -2001-11-16 20:00:00;197 -2001-11-16 22:00:00;199 -2001-11-17 18:00:00;194 -2001-11-17 20:00:00;194 -2001-11-17 22:00:00;193 -2001-11-18 18:00:00;183 -2001-11-18 20:00:00;183 -2001-11-18 22:00:00;186 -2001-11-19 18:00:00;183 -2001-11-19 20:00:00;186 -2001-11-19 22:00:00;185 -2001-11-20 18:00:00;180 -2001-11-20 20:00:00;180 -2001-11-20 22:00:00;189 -2001-11-21 18:00:00;182 -2001-11-21 20:00:00;179 -2001-11-21 22:00:00;182 -2001-11-22 18:00:00;185 -2001-11-22 20:00:00;275 -2001-11-22 22:00:00;278 -2001-11-23 18:00:00;173 -2001-11-23 20:00:00;172 -2001-11-23 22:00:00;174 -2001-11-24 18:00:00;164 -2001-11-24 20:00:00;168 -2001-11-24 22:00:00;169 -2001-11-25 18:00:00;166 -2001-11-25 20:00:00;165 -2001-11-25 22:00:00;168 -2001-11-26 18:00:00;166 -2001-11-26 20:00:00;170 -2001-11-26 22:00:00;169 -2001-11-27 18:00:00;186 -2001-11-27 20:00:00;185 -2001-11-27 22:00:00;190 -2001-11-28 18:00:00;196 -2001-11-28 20:00:00;193 -2001-11-28 22:00:00;204 -2001-11-29 18:00:00;206 -2001-11-29 20:00:00;210 -2001-11-29 22:00:00;211 -2001-11-30 18:00:00;210 -2001-11-30 20:00:00;219 -2001-11-30 22:00:00;226 -2001-12-01 18:00:00;115 -2001-12-01 20:00:00;215 -2001-12-01 22:00:00;232 -2001-12-02 18:00:00;235 -2001-12-02 20:00:00;238 -2001-12-02 22:00:00;242 -2001-12-03 18:00:00;230 -2001-12-03 20:00:00;228 -2001-12-03 22:00:00;233 -2001-12-04 18:00:00;224 -2001-12-04 20:00:00;226 -2001-12-04 22:00:00;230 -2001-12-05 18:00:00;229 -2001-12-05 20:00:00;230 -2001-12-05 22:00:00;233 -2001-12-06 18:00:00;224 -2001-12-06 20:00:00;239 -2001-12-06 22:00:00;240 -2001-12-07 18:00:00;222 -2001-12-07 20:00:00;219 -2001-12-07 22:00:00;223 -2001-12-08 18:00:00;215 -2001-12-08 20:00:00;213 -2001-12-08 22:00:00;222 -2001-12-09 18:00:00;218 -2001-12-09 20:00:00;217 -2001-12-09 22:00:00;219 -2001-12-10 18:00:00;215 -2001-12-10 20:00:00;212 -2001-12-10 22:00:00;215 -2001-12-11 18:00:00;216 -2001-12-11 20:00:00;213 -2001-12-11 22:00:00;219 -2001-12-12 18:00:00;215 -2001-12-12 20:00:00;229 -2001-12-12 22:00:00;243 -2001-12-13 18:00:00;216 -2001-12-13 20:00:00;213 -2001-12-13 22:00:00;208 -2001-12-14 18:00:00;209 -2001-12-14 20:00:00;238 -2001-12-14 22:00:00;237 -2001-12-15 18:00:00;212 -2001-12-15 20:00:00;211 -2001-12-15 22:00:00;213 -2001-12-16 18:00:00;202 -2001-12-16 20:00:00;202 -2001-12-16 22:00:00;202 -2001-12-17 18:00:00;195 -2001-12-17 20:00:00;199 -2001-12-17 22:00:00;200 -2001-12-18 18:00:00;200 -2001-12-18 20:00:00;205 -2001-12-18 22:00:00;205 -2001-12-19 18:00:00;197 -2001-12-19 20:00:00;201 -2001-12-19 22:00:00;206 -2001-12-20 18:00:00;214 -2001-12-20 20:00:00;214 -2001-12-20 22:00:00;220 -2001-12-21 18:00:00;221 -2001-12-21 20:00:00;226 -2001-12-21 22:00:00;233 -2001-12-22 18:00:00;231 -2001-12-22 20:00:00;234 -2001-12-22 22:00:00;236 -2001-12-23 18:00:00;246 -2001-12-23 20:00:00;246 -2001-12-23 22:00:00;253 -2001-12-24 18:00:00;258 -2001-12-24 20:00:00;265 -2001-12-24 22:00:00;265 -2001-12-25 18:00:00;251 -2001-12-25 20:00:00;250 -2001-12-25 22:00:00;272 -2001-12-26 18:00:00;264 -2001-12-26 20:00:00;259 -2001-12-26 22:00:00;267 -2001-12-27 18:00:00;275 -2001-12-27 20:00:00;265 -2001-12-27 22:00:00;263 -2001-12-28 18:00:00;254 -2001-12-28 20:00:00;634 -2001-12-28 22:00:00;320 -2001-12-29 18:00:00;248 -2001-12-29 20:00:00;255 -2001-12-29 22:00:00;266 -2001-12-30 18:00:00;238 -2001-12-30 20:00:00;238 -2001-12-30 22:00:00;242 -2001-12-31 18:00:00;231 -2001-12-31 20:00:00;237 -2001-12-31 22:00:00;237 -2002-01-01 18:00:00;225 -2002-01-01 20:00:00;224 -2002-01-01 22:00:00;227 -2002-01-02 18:00:00;215 -2002-01-02 20:00:00;223 -2002-01-02 22:00:00;234 -2002-01-03 18:00:00;217 -2002-01-03 20:00:00;213 -2002-01-03 22:00:00;215 -2002-01-04 18:00:00;210 -2002-01-04 20:00:00;211 -2002-01-04 22:00:00;223 -2002-01-05 18:00:00;203 -2002-01-05 20:00:00;205 -2002-01-05 22:00:00;201 -2002-01-06 18:00:00;192 -2002-01-06 20:00:00;190 -2002-01-06 22:00:00;188 -2002-01-07 18:00:00;182 -2002-01-07 20:00:00;182 -2002-01-07 22:00:00;187 -2002-01-08 18:00:00;187 -2002-01-08 20:00:00;192 -2002-01-08 22:00:00;199 -2002-01-09 18:00:00;250 -2002-01-09 20:00:00;220 -2002-01-09 22:00:00;216 -2002-01-10 18:00:00;207 -2002-01-10 20:00:00;217 -2002-01-10 22:00:00;216 -2002-01-11 18:00:00;214 -2002-01-11 20:00:00;221 -2002-01-11 22:00:00;223 -2002-01-12 18:00:00;222 -2002-01-12 20:00:00;225 -2002-01-12 22:00:00;226 -2002-01-13 18:00:00;228 -2002-01-13 20:00:00;232 -2002-01-13 22:00:00;231 -2002-01-14 18:00:00;224 -2002-01-14 20:00:00;221 -2002-01-14 22:00:00;227 -2002-01-15 18:00:00;210 -2002-01-15 20:00:00;211 -2002-01-15 22:00:00;213 -2002-01-16 18:00:00;209 -2002-01-16 20:00:00;209 -2002-01-16 22:00:00;210 -2002-01-17 18:00:00;205 -2002-01-17 20:00:00;205 -2002-01-17 22:00:00;206 -2002-01-18 18:00:00;203 -2002-01-18 20:00:00;203 -2002-01-18 22:00:00;206 -2002-01-19 18:00:00;203 -2002-01-19 20:00:00;206 -2002-01-19 22:00:00;208 -2002-01-20 18:00:00;214 -2002-01-20 20:00:00;215 -2002-01-20 22:00:00;218 -2002-01-21 18:00:00;219 -2002-01-21 20:00:00;217 -2002-01-21 22:00:00;222 -2002-01-22 18:00:00;220 -2002-01-22 20:00:00;221 -2002-01-22 22:00:00;223 -2002-01-23 18:00:00;219 -2002-01-23 20:00:00;219 -2002-01-23 22:00:00;225 -2002-01-24 18:00:00;224 -2002-01-24 20:00:00;223 -2002-01-24 22:00:00;224 -2002-01-25 18:00:00;226 -2002-01-25 20:00:00;227 -2002-01-25 22:00:00;230 -2002-01-26 18:00:00;236 -2002-01-26 20:00:00;248 -2002-01-26 22:00:00;241 -2002-01-27 18:00:00;237 -2002-01-27 20:00:00;240 -2002-01-27 22:00:00;243 -2002-01-28 18:00:00;255 -2002-01-28 20:00:00;252 -2002-01-28 22:00:00;247 -2002-01-29 18:00:00;246 -2002-01-29 20:00:00;253 -2002-01-29 22:00:00;252 -2002-01-30 18:00:00;245 -2002-01-30 20:00:00;248 -2002-01-30 22:00:00;248 -2002-01-31 18:00:00;233 -2002-01-31 20:00:00;235 -2002-01-31 22:00:00;240 -2002-02-01 18:00:00;237 -2002-02-01 20:00:00;238 -2002-02-01 22:00:00;249 -2002-02-02 18:00:00;232 -2002-02-02 20:00:00;233 -2002-02-02 22:00:00;236 -2002-02-03 18:00:00;226 -2002-02-03 20:00:00;226 -2002-02-03 22:00:00;227 -2002-02-04 18:00:00;225 -2002-02-04 20:00:00;228 -2002-02-04 22:00:00;228 -2002-02-05 18:00:00;215 -2002-02-05 20:00:00;214 -2002-02-05 22:00:00;215 -2002-02-06 18:00:00;199 -2002-02-06 20:00:00;196 -2002-02-06 22:00:00;196 -2002-02-07 18:00:00;185 -2002-02-07 20:00:00;186 -2002-02-07 22:00:00;188 -2002-02-08 20:00:00;186 -2002-02-08 22:00:00;188 -2002-02-09 18:00:00;192 -2002-02-09 20:00:00;194 -2002-02-09 22:00:00;195 -2002-02-10 18:00:00;201 -2002-02-10 20:00:00;210 -2002-02-10 22:00:00;203 -2002-02-11 18:00:00;196 -2002-02-11 20:00:00;196 -2002-02-11 22:00:00;199 -2002-02-12 18:00:00;203 -2002-02-12 20:00:00;203 -2002-02-12 22:00:00;205 -2002-02-13 18:00:00;197 -2002-02-13 20:00:00;198 -2002-02-13 22:00:00;198 -2002-02-14 18:00:00;192 -2002-02-14 20:00:00;191 -2002-02-14 22:00:00;191 -2002-02-15 18:00:00;190 -2002-02-15 20:00:00;190 -2002-02-15 22:00:00;190 -2002-02-16 18:00:00;187 -2002-02-16 20:00:00;188 -2002-02-16 22:00:00;186 -2002-02-17 18:00:00;192 -2002-02-17 20:00:00;192 -2002-02-17 22:00:00;191 -2002-02-18 18:00:00;185 -2002-02-18 20:00:00;188 -2002-02-18 22:00:00;203 -2002-02-19 18:00:00;184 -2002-02-19 20:00:00;185 -2002-02-19 22:00:00;187 -2002-02-20 18:00:00;191 -2002-02-20 20:00:00;189 -2002-02-20 22:00:00;192 -2002-02-21 18:00:00;188 -2002-02-21 20:00:00;196 -2002-02-21 22:00:00;197 -2002-02-22 18:00:00;186 -2002-02-22 20:00:00;187 -2002-02-22 22:00:00;190 -2002-02-23 18:00:00;183 -2002-02-23 20:00:00;184 -2002-02-23 22:00:00;185 -2002-02-24 18:00:00;191 -2002-02-24 20:00:00;188 -2002-02-24 22:00:00;191 -2002-02-25 18:00:00;203 -2002-02-25 20:00:00;206 -2002-02-25 22:00:00;203 -2002-02-26 18:00:00;201 -2002-02-26 20:00:00;203 -2002-02-26 22:00:00;199 -2002-02-27 18:00:00;199 -2002-02-27 20:00:00;194 -2002-02-27 22:00:00;194 -2002-02-28 18:00:00;194 -2002-02-28 20:00:00;200 -2002-02-28 22:00:00;193 -2002-03-01 17:00:00;185 -2002-03-01 20:00:00;184 -2002-03-01 23:00:00;182 -2002-03-02 17:00:00;189 -2002-03-02 20:00:00;187 -2002-03-02 23:00:00;185 -2002-03-03 17:00:00;180 -2002-03-03 20:00:00;179 -2002-03-03 23:00:00;180 -2002-03-04 17:00:00;173 -2002-03-04 20:00:00;172 -2002-03-04 23:00:00;173 -2002-03-05 17:00:00;171 -2002-03-05 20:00:00;169 -2002-03-05 23:00:00;173 -2002-03-06 17:00:00;175 -2002-03-06 20:00:00;175 -2002-03-06 23:00:00;174 -2002-03-07 17:00:00;176 -2002-03-07 20:00:00;177 -2002-03-07 23:00:00;182 -2002-03-08 17:00:00;169 -2002-03-08 20:00:00;174 -2002-03-08 23:00:00;173 -2002-03-09 17:00:00;181 -2002-03-09 20:00:00;204 -2002-03-09 23:00:00;190 -2002-03-10 17:00:00;177 -2002-03-10 20:00:00;176 -2002-03-10 23:00:00;186 -2002-03-11 17:00:00;179 -2002-03-11 20:00:00;180 -2002-03-11 23:00:00;183 -2002-03-12 17:00:00;174 -2002-03-12 20:00:00;176 -2002-03-12 23:00:00;178 -2002-03-13 17:00:00;180 -2002-03-13 20:00:00;182 -2002-03-13 23:00:00;190 -2002-03-14 17:00:00;176 -2002-03-14 20:00:00;178 -2002-03-14 23:00:00;178 -2002-03-15 17:00:00;174 -2002-03-15 20:00:00;174 -2002-03-15 23:00:00;260 -2002-03-16 17:00:00;180 -2002-03-16 20:00:00;182 -2002-03-16 23:00:00;178 -2002-03-17 17:00:00;183 -2002-03-17 20:00:00;182 -2002-03-17 23:00:00;182 -2002-03-18 17:00:00;179 -2002-03-18 20:00:00;176 -2002-03-18 23:00:00;173 -2002-03-19 17:00:00;171 -2002-03-19 20:00:00;173 -2002-03-19 23:00:00;171 -2002-03-20 17:00:00;181 -2002-03-20 20:00:00;186 -2002-03-20 23:00:00;182 -2002-03-21 17:00:00;174 -2002-03-21 20:00:00;172 -2002-03-21 23:00:00;172 -2002-03-22 17:00:00;171 -2002-03-22 20:00:00;170 -2002-03-22 23:00:00;169 -2002-03-23 17:00:00;168 -2002-03-23 20:00:00;169 -2002-03-23 23:00:00;169 -2002-03-24 17:00:00;168 -2002-03-24 20:00:00;174 -2002-03-24 23:00:00;172 -2002-03-25 17:00:00;170 -2002-03-25 20:00:00;169 -2002-03-25 23:00:00;165 -2002-03-26 17:00:00;164 -2002-03-26 20:00:00;164 -2002-03-26 23:00:00;167 -2002-03-27 17:00:00;165 -2002-03-27 20:00:00;168 -2002-03-27 23:00:00;172 -2002-03-28 17:00:00;172 -2002-03-28 20:00:00;175 -2002-03-28 23:00:00;174 -2002-03-29 17:00:00;180 -2002-03-29 20:00:00;180 -2002-03-29 23:00:00;182 -2002-03-30 17:00:00;179 -2002-03-30 20:00:00;188 -2002-03-30 23:00:00;194 -2002-03-31 17:00:00;198 -2002-03-31 20:00:00;204 -2002-03-31 23:00:00;208 -2002-04-01 17:00:00;202 -2002-04-01 20:00:00;206 -2002-04-01 23:00:00;207 -2002-04-02 17:00:00;204 -2002-04-02 20:00:00;205 -2002-04-02 23:00:00;208 -2002-04-03 17:00:00;209 -2002-04-03 20:00:00;209 -2002-04-03 23:00:00;211 -2002-04-04 17:00:00;212 -2002-04-04 20:00:00;216 -2002-04-04 23:00:00;224 -2002-04-05 17:00:00;220 -2002-04-05 20:00:00;217 -2002-04-05 23:00:00;217 -2002-04-06 17:00:00;207 -2002-04-06 20:00:00;206 -2002-04-06 23:00:00;208 -2002-04-07 17:00:00;209 -2002-04-07 20:00:00;208 -2002-04-07 23:00:00;209 -2002-04-08 17:00:00;207 -2002-04-08 20:00:00;206 -2002-04-08 23:00:00;210 -2002-04-09 17:00:00;207 -2002-04-09 20:00:00;205 -2002-04-09 23:00:00;204 -2002-04-10 17:00:00;199 -2002-04-10 20:00:00;195 -2002-04-10 23:00:00;207 -2002-04-11 17:00:00;197 -2002-04-11 20:00:00;198 -2002-04-11 23:00:00;202 -2002-04-12 17:00:00;215 -2002-04-12 20:00:00;213 -2002-04-12 23:00:00;211 -2002-04-13 17:00:00;224 -2002-04-13 20:00:00;227 -2002-04-13 23:00:00;223 -2002-04-14 17:00:00;211 -2002-04-14 20:00:00;211 -2002-04-14 23:00:00;215 -2002-04-15 17:00:00;204 -2002-04-15 20:00:00;204 -2002-04-15 23:00:00;208 -2002-04-16 17:00:00;190 -2002-04-16 20:00:00;197 -2002-04-16 23:00:00;202 -2002-04-17 17:00:00;194 -2002-04-17 20:00:00;195 -2002-04-17 23:00:00;192 -2002-04-18 17:00:00;189 -2002-04-18 20:00:00;189 -2002-04-18 23:00:00;186 -2002-04-19 17:00:00;182 -2002-04-19 20:00:00;181 -2002-04-19 23:00:00;180 -2002-04-20 17:00:00;177 -2002-04-20 20:00:00;179 -2002-04-20 23:00:00;176 -2002-04-21 17:00:00;173 -2002-04-21 20:00:00;175 -2002-04-21 23:00:00;172 -2002-04-22 17:00:00;167 -2002-04-22 20:00:00;171 -2002-04-22 23:00:00;175 -2002-04-23 17:00:00;173 -2002-04-23 20:00:00;177 -2002-04-23 23:00:00;179 -2002-04-24 17:00:00;180 -2002-04-24 20:00:00;178 -2002-04-24 23:00:00;176 -2002-04-25 17:00:00;168 -2002-04-25 20:00:00;169 -2002-04-25 23:00:00;167 -2002-04-26 17:00:00;160 -2002-04-26 20:00:00;164 -2002-04-26 23:00:00;167 -2002-04-27 17:00:00;164 -2002-04-27 20:00:00;159 -2002-04-27 23:00:00;161 -2002-04-28 17:00:00;149 -2002-04-28 20:00:00;149 -2002-04-28 23:00:00;156 -2002-04-29 17:00:00;154 -2002-04-29 20:00:00;155 -2002-04-29 23:00:00;155 -2002-04-30 17:00:00;156 -2002-04-30 20:00:00;155 -2002-04-30 23:00:00;160 -2002-05-01 17:00:00;162 -2002-05-01 20:00:00;164 -2002-05-01 23:00:00;166 -2002-05-02 17:00:00;173 -2002-05-02 20:00:00;171 -2002-05-02 23:00:00;187 -2002-05-03 17:00:00;183 -2002-05-03 20:00:00;182 -2002-05-03 23:00:00;187 -2002-05-04 17:00:00;195 -2002-05-04 20:00:00;192 -2002-05-04 23:00:00;192 -2002-05-05 17:00:00;187 -2002-05-05 20:00:00;183 -2002-05-05 23:00:00;186 -2002-05-06 17:00:00;193 -2002-05-06 20:00:00;194 -2002-05-06 23:00:00;192 -2002-05-07 17:00:00;190 -2002-05-07 20:00:00;190 -2002-05-07 23:00:00;191 -2002-05-08 17:00:00;191 -2002-05-08 20:00:00;190 -2002-05-08 23:00:00;191 -2002-05-09 17:00:00;188 -2002-05-09 20:00:00;193 -2002-05-09 23:00:00;195 -2002-05-10 17:00:00;196 -2002-05-10 20:00:00;194 -2002-05-10 23:00:00;195 -2002-05-11 17:00:00;193 -2002-05-11 20:00:00;191 -2002-05-11 23:00:00;195 -2002-05-12 17:00:00;185 -2002-05-12 20:00:00;187 -2002-05-12 23:00:00;185 -2002-05-13 17:00:00;175 -2002-05-13 20:00:00;175 -2002-05-13 23:00:00;174 -2002-05-14 17:00:00;167 -2002-05-14 20:00:00;164 -2002-05-14 23:00:00;163 -2002-05-15 17:00:00;165 -2002-05-15 20:00:00;162 -2002-05-15 23:00:00;164 -2002-05-16 17:00:00;163 -2002-05-16 20:00:00;162 -2002-05-16 23:00:00;161 -2002-05-17 17:00:00;160 -2002-05-17 20:00:00;160 -2002-05-17 23:00:00;163 -2002-05-18 17:00:00;171 -2002-05-18 20:00:00;166 -2002-05-18 23:00:00;168 -2002-05-19 17:00:00;172 -2002-05-19 20:00:00;175 -2002-05-19 23:00:00;182 -2002-05-20 17:00:00;182 -2002-05-20 20:00:00;175 -2002-05-20 23:00:00;177 -2002-05-21 17:00:00;189 -2002-05-21 20:00:00;190 -2002-05-21 23:00:00;197 -2002-05-22 17:00:00;183 -2002-05-22 20:00:00;185 -2002-05-22 23:00:00;185 -2002-05-23 17:00:00;188 -2002-05-23 20:00:00;184 -2002-05-23 23:00:00;185 -2002-05-24 17:00:00;185 -2002-05-24 20:00:00;193 -2002-05-24 23:00:00;188 -2002-05-25 17:00:00;188 -2002-05-25 20:00:00;187 -2002-05-25 23:00:00;188 -2002-05-26 17:00:00;190 -2002-05-26 20:00:00;188 -2002-05-26 23:00:00;190 -2002-05-27 17:00:00;192 -2002-05-27 20:00:00;191 -2002-05-27 23:00:00;192 -2002-05-28 17:00:00;192 -2002-05-28 20:00:00;191 -2002-05-28 23:00:00;191 -2002-05-29 17:00:00;186 -2002-05-29 20:00:00;189 -2002-05-29 23:00:00;189 -2002-05-30 17:00:00;196 -2002-05-30 20:00:00;185 -2002-05-30 23:00:00;207 -2002-05-31 17:00:00;187 -2002-05-31 20:00:00;187 -2002-05-31 23:00:00;188 -2002-06-01 17:00:00;184 -2002-06-01 20:00:00;183 -2002-06-01 23:00:00;187 -2002-06-02 17:00:00;182 -2002-06-02 20:00:00;180 -2002-06-02 23:00:00;188 -2002-06-03 17:00:00;177 -2002-06-03 20:00:00;175 -2002-06-03 23:00:00;174 -2002-06-04 17:00:00;180 -2002-06-04 20:00:00;174 -2002-06-04 23:00:00;174 -2002-06-05 17:00:00;164 -2002-06-05 20:00:00;163 -2002-06-05 23:00:00;164 -2002-06-06 17:00:00;161 -2002-06-06 20:00:00;159 -2002-06-06 23:00:00;159 -2002-06-07 17:00:00;162 -2002-06-07 20:00:00;163 -2002-06-07 23:00:00;162 -2002-06-08 17:00:00;162 -2002-06-08 20:00:00;159 -2002-06-08 23:00:00;161 -2002-06-09 17:00:00;161 -2002-06-09 20:00:00;161 -2002-06-09 23:00:00;163 -2002-06-10 17:00:00;157 -2002-06-10 20:00:00;156 -2002-06-10 23:00:00;158 -2002-06-11 17:00:00;153 -2002-06-11 20:00:00;152 -2002-06-11 23:00:00;152 -2002-06-12 17:00:00;147 -2002-06-12 20:00:00;146 -2002-06-12 23:00:00;146 -2002-06-13 17:00:00;138 -2002-06-13 20:00:00;137 -2002-06-13 23:00:00;140 -2002-06-14 17:00:00;136 -2002-06-14 20:00:00;135 -2002-06-14 23:00:00;138 -2002-06-15 17:00:00;140 -2002-06-15 20:00:00;139 -2002-06-15 23:00:00;140 -2002-06-16 17:00:00;140 -2002-06-16 20:00:00;141 -2002-06-16 23:00:00;141 -2002-06-17 17:00:00;142 -2002-06-17 20:00:00;147 -2002-06-17 23:00:00;148 -2002-06-18 17:00:00;149 -2002-06-18 20:00:00;147 -2002-06-18 23:00:00;145 -2002-06-19 17:00:00;151 -2002-06-19 20:00:00;150 -2002-06-19 23:00:00;151 -2002-06-20 17:00:00;150 -2002-06-20 20:00:00;149 -2002-06-20 23:00:00;149 -2002-06-21 17:00:00;144 -2002-06-21 20:00:00;144 -2002-06-21 23:00:00;147 -2002-06-22 17:00:00;148 -2002-06-22 20:00:00;146 -2002-06-22 23:00:00;146 -2002-06-23 17:00:00;148 -2002-06-23 20:00:00;147 -2002-06-23 23:00:00;148 -2002-06-24 17:00:00;156 -2002-06-24 20:00:00;155 -2002-06-24 23:00:00;154 -2002-06-25 17:00:00;150 -2002-06-25 20:00:00;149 -2002-06-25 23:00:00;149 -2002-06-26 17:00:00;148 -2002-06-26 20:00:00;148 -2002-06-26 23:00:00;147 -2002-06-27 17:00:00;143 -2002-06-27 20:00:00;143 -2002-06-27 23:00:00;144 -2002-06-28 17:00:00;143 -2002-06-28 20:00:00;141 -2002-06-28 23:00:00;144 -2002-06-29 17:00:00;148 -2002-06-29 20:00:00;147 -2002-06-29 23:00:00;149 -2002-06-30 17:00:00;154 -2002-06-30 20:00:00;151 -2002-06-30 23:00:00;150 -2002-07-01 17:00:00;155 -2002-07-01 20:00:00;152 -2002-07-01 23:00:00;150 -2002-07-02 17:00:00;149 -2002-07-02 20:00:00;153 -2002-07-02 23:00:00;149 -2002-07-03 17:00:00;152 -2002-07-03 20:00:00;178 -2002-07-03 23:00:00;164 -2002-07-04 17:00:00;153 -2002-07-04 20:00:00;151 -2002-07-04 23:00:00;146 -2002-07-05 17:00:00;144 -2002-07-05 20:00:00;143 -2002-07-05 23:00:00;143 -2002-07-06 17:00:00;137 -2002-07-06 20:00:00;138 -2002-07-06 23:00:00;139 -2002-07-07 17:00:00;137 -2002-07-07 20:00:00;141 -2002-07-07 23:00:00;141 -2002-07-08 17:00:00;135 -2002-07-08 20:00:00;135 -2002-07-08 23:00:00;136 -2002-07-09 17:00:00;137 -2002-07-09 20:00:00;140 -2002-07-09 23:00:00;137 -2002-07-10 17:00:00;132 -2002-07-10 20:00:00;133 -2002-07-10 23:00:00;135 -2002-07-11 17:00:00;152 -2002-07-11 20:00:00;141 -2002-07-11 23:00:00;135 -2002-07-12 17:00:00;137 -2002-07-12 20:00:00;137 -2002-07-12 23:00:00;139 -2002-07-13 17:00:00;140 -2002-07-13 20:00:00;139 -2002-07-13 23:00:00;139 -2002-07-14 17:00:00;150 -2002-07-14 20:00:00;148 -2002-07-14 23:00:00;152 -2002-07-15 17:00:00;164 -2002-07-15 20:00:00;334 -2002-07-15 23:00:00;203 -2002-07-16 17:00:00;185 -2002-07-16 20:00:00;177 -2002-07-16 23:00:00;182 -2002-07-17 17:00:00;182 -2002-07-17 20:00:00;185 -2002-07-17 23:00:00;186 -2002-07-18 17:00:00;185 -2002-07-18 20:00:00;186 -2002-07-18 23:00:00;187 -2002-07-19 17:00:00;194 -2002-07-19 20:00:00;188 -2002-07-19 23:00:00;187 -2002-07-20 17:00:00;187 -2002-07-20 20:00:00;190 -2002-07-20 23:00:00;191 -2002-07-21 17:00:00;191 -2002-07-21 20:00:00;188 -2002-07-21 23:00:00;192 -2002-07-22 17:00:00;196 -2002-07-22 20:00:00;195 -2002-07-22 23:00:00;203 -2002-07-23 17:00:00;195 -2002-07-23 20:00:00;204 -2002-07-23 23:00:00;210 -2002-07-24 17:00:00;219 -2002-07-24 20:00:00;215 -2002-07-24 23:00:00;219 -2002-07-25 17:00:00;222 -2002-07-25 20:00:00;224 -2002-07-25 23:00:00;235 -2002-07-26 17:00:00;240 -2002-07-26 20:00:00;249 -2002-07-26 23:00:00;283 -2002-07-27 17:00:00;236 -2002-07-27 20:00:00;238 -2002-07-27 23:00:00;238 -2002-07-28 17:00:00;246 -2002-07-28 20:00:00;246 -2002-07-28 23:00:00;245 -2002-07-29 17:00:00;238 -2002-07-29 20:00:00;241 -2002-07-29 23:00:00;238 -2002-07-30 17:00:00;237 -2002-07-30 20:00:00;234 -2002-07-30 23:00:00;229 -2002-07-31 17:00:00;212 -2002-07-31 20:00:00;214 -2002-07-31 23:00:00;213 -2002-08-01 17:00:00;200 -2002-08-01 20:00:00;198 -2002-08-01 23:00:00;196 -2002-08-02 17:00:00;184 -2002-08-02 20:00:00;185 -2002-08-02 23:00:00;186 -2002-08-03 17:00:00;169 -2002-08-03 20:00:00;172 -2002-08-03 23:00:00;169 -2002-08-04 17:00:00;155 -2002-08-04 20:00:00;155 -2002-08-04 23:00:00;153 -2002-08-05 17:00:00;143 -2002-08-05 20:00:00;146 -2002-08-05 23:00:00;145 -2002-08-06 17:00:00;142 -2002-08-06 20:00:00;148 -2002-08-06 23:00:00;145 -2002-08-07 17:00:00;140 -2002-08-07 20:00:00;140 -2002-08-07 23:00:00;140 -2002-08-08 17:00:00;138 -2002-08-08 20:00:00;138 -2002-08-08 23:00:00;141 -2002-08-09 17:00:00;143 -2002-08-09 20:00:00;144 -2002-08-09 23:00:00;145 -2002-08-10 17:00:00;151 -2002-08-10 20:00:00;152 -2002-08-10 23:00:00;154 -2002-08-11 17:00:00;171 -2002-08-11 20:00:00;176 -2002-08-11 23:00:00;177 -2002-08-12 17:00:00;183 -2002-08-12 20:00:00;188 -2002-08-12 23:00:00;184 -2002-08-13 17:00:00;195 -2002-08-13 20:00:00;196 -2002-08-13 23:00:00;199 -2002-08-14 17:00:00;205 -2002-08-14 20:00:00;213 -2002-08-14 23:00:00;211 -2002-08-15 17:00:00;215 -2002-08-15 20:00:00;215 -2002-08-15 23:00:00;219 -2002-08-16 17:00:00;228 -2002-08-16 20:00:00;219 -2002-08-16 23:00:00;221 -2002-08-17 17:00:00;226 -2002-08-17 20:00:00;232 -2002-08-17 23:00:00;233 -2002-08-18 17:00:00;243 -2002-08-18 20:00:00;246 -2002-08-18 23:00:00;244 -2002-08-19 17:00:00;243 -2002-08-19 20:00:00;242 -2002-08-19 23:00:00;249 -2002-08-20 17:00:00;228 -2002-08-20 20:00:00;232 -2002-08-20 23:00:00;232 -2002-08-21 17:00:00;230 -2002-08-21 20:00:00;225 -2002-08-21 23:00:00;227 -2002-08-22 17:00:00;222 -2002-08-22 20:00:00;225 -2002-08-22 23:00:00;225 -2002-08-23 17:00:00;220 -2002-08-23 20:00:00;229 -2002-08-23 23:00:00;219 -2002-08-24 17:00:00;203 -2002-08-24 20:00:00;199 -2002-08-24 23:00:00;192 -2002-08-25 17:00:00;181 -2002-08-25 20:00:00;182 -2002-08-25 23:00:00;182 -2002-08-26 17:00:00;169 -2002-08-26 20:00:00;172 -2002-08-26 23:00:00;176 -2002-08-27 17:00:00;163 -2002-08-27 20:00:00;164 -2002-08-27 23:00:00;165 -2002-08-28 17:00:00;164 -2002-08-28 20:00:00;166 -2002-08-28 23:00:00;166 -2002-08-29 17:00:00;174 -2002-08-29 20:00:00;172 -2002-08-29 23:00:00;172 -2002-08-30 17:00:00;173 -2002-08-30 23:00:00;176 -2002-08-31 17:00:00;183 -2002-08-31 20:00:00;183 -2002-08-31 23:00:00;183 -2002-09-01 17:00:00;185 -2002-09-01 20:00:00;183 -2002-09-01 23:00:00;181 -2002-09-02 17:00:00;176 -2002-09-02 20:00:00;176 -2002-09-02 23:00:00;174 -2002-09-03 17:00:00;177 -2002-09-03 20:00:00;174 -2002-09-03 23:00:00;176 -2002-09-04 17:00:00;176 -2002-09-04 20:00:00;174 -2002-09-04 23:00:00;175 -2002-09-05 17:00:00;188 -2002-09-05 20:00:00;178 -2002-09-05 23:00:00;178 -2002-09-06 17:00:00;178 -2002-09-06 20:00:00;180 -2002-09-06 23:00:00;181 -2002-09-07 17:00:00;186 -2002-09-07 20:00:00;185 -2002-09-07 23:00:00;185 -2002-09-08 17:00:00;192 -2002-09-08 20:00:00;194 -2002-09-08 23:00:00;200 -2002-09-09 17:00:00;214 -2002-09-09 20:00:00;209 -2002-09-09 23:00:00;211 -2002-09-10 17:00:00;222 -2002-09-10 20:00:00;223 -2002-09-10 23:00:00;220 -2002-09-11 17:00:00;221 -2002-09-11 20:00:00;219 -2002-09-11 23:00:00;218 -2002-09-12 17:00:00;216 -2002-09-12 20:00:00;215 -2002-09-12 23:00:00;218 -2002-09-13 17:00:00;210 -2002-09-13 20:00:00;208 -2002-09-13 23:00:00;206 -2002-09-14 17:00:00;208 -2002-09-14 20:00:00;209 -2002-09-14 23:00:00;202 -2002-09-15 17:00:00;193 -2002-09-15 20:00:00;189 -2002-09-15 23:00:00;192 -2002-09-16 17:00:00;185 -2002-09-16 20:00:00;184 -2002-09-16 23:00:00;183 -2002-09-17 17:00:00;195 -2002-09-17 20:00:00;195 -2002-09-17 23:00:00;194 -2002-09-18 17:00:00;185 -2002-09-18 20:00:00;178 -2002-09-18 23:00:00;180 -2002-09-19 17:00:00;169 -2002-09-19 20:00:00;166 -2002-09-19 23:00:00;169 -2002-09-20 17:00:00;170 -2002-09-20 20:00:00;165 -2002-09-20 23:00:00;167 -2002-09-21 17:00:00;161 -2002-09-21 20:00:00;159 -2002-09-21 23:00:00;163 -2002-09-22 17:00:00;160 -2002-09-22 20:00:00;161 -2002-09-22 23:00:00;162 -2002-09-23 17:00:00;153 -2002-09-23 20:00:00;154 -2002-09-23 23:00:00;155 -2002-09-24 17:00:00;156 -2002-09-24 20:00:00;158 -2002-09-24 23:00:00;155 -2002-09-25 17:00:00;155 -2002-09-25 20:00:00;154 -2002-09-25 23:00:00;155 -2002-09-26 17:00:00;146 -2002-09-26 20:00:00;150 -2002-09-26 23:00:00;146 -2002-09-27 17:00:00;154 -2002-09-27 20:00:00;152 -2002-09-27 23:00:00;150 -2002-09-28 17:00:00;147 -2002-09-28 20:00:00;149 -2002-09-28 23:00:00;146 -2002-09-29 17:00:00;136 -2002-09-29 20:00:00;138 -2002-09-29 23:00:00;143 -2002-09-30 17:00:00;142 -2002-09-30 20:00:00;140 -2002-09-30 23:00:00;140 -2002-10-01 17:00:00;138 -2002-10-01 20:00:00;140 -2002-10-01 23:00:00;140 -2002-10-02 17:00:00;136 -2002-10-02 20:00:00;136 -2002-10-02 23:00:00;139 -2002-10-03 17:00:00;140 -2002-10-03 20:00:00;146 -2002-10-03 23:00:00;145 -2002-10-04 17:00:00;156 -2002-10-04 20:00:00;157 -2002-10-04 23:00:00;171 -2002-10-05 17:00:00;153 -2002-10-05 20:00:00;155 -2002-10-05 23:00:00;158 -2002-10-06 17:00:00;160 -2002-10-06 20:00:00;161 -2002-10-06 23:00:00;161 -2002-10-07 17:00:00;164 -2002-10-07 20:00:00;163 -2002-10-07 23:00:00;169 -2002-10-08 17:00:00;164 -2002-10-08 20:00:00;165 -2002-10-08 23:00:00;168 -2002-10-09 17:00:00;166 -2002-10-09 20:00:00;166 -2002-10-09 23:00:00;167 -2002-10-10 17:00:00;170 -2002-10-10 20:00:00;171 -2002-10-10 23:00:00;177 -2002-10-11 17:00:00;176 -2002-10-11 20:00:00;178 -2002-10-11 23:00:00;181 -2002-10-12 17:00:00;181 -2002-10-12 20:00:00;179 -2002-10-12 23:00:00;183 -2002-10-13 17:00:00;179 -2002-10-13 20:00:00;178 -2002-10-13 23:00:00;180 -2002-10-14 17:00:00;178 -2002-10-14 20:00:00;180 -2002-10-14 23:00:00;185 -2002-10-15 17:00:00;175 -2002-10-15 20:00:00;175 -2002-10-15 23:00:00;178 -2002-10-16 17:00:00;189 -2002-10-16 20:00:00;181 -2002-10-16 23:00:00;180 -2002-10-17 17:00:00;175 -2002-10-17 20:00:00;177 -2002-10-17 23:00:00;181 -2002-10-18 17:00:00;170 -2002-10-18 20:00:00;171 -2002-10-18 23:00:00;173 -2002-10-19 17:00:00;175 -2002-10-19 20:00:00;178 -2002-10-19 23:00:00;182 -2002-10-20 17:00:00;182 -2002-10-20 20:00:00;178 -2002-10-20 23:00:00;187 -2002-10-21 17:00:00;178 -2002-10-21 20:00:00;180 -2002-10-21 23:00:00;178 -2002-10-22 17:00:00;171 -2002-10-22 20:00:00;167 -2002-10-22 23:00:00;170 -2002-10-23 17:00:00;171 -2002-10-23 20:00:00;161 -2002-10-23 23:00:00;163 -2002-10-24 17:00:00;157 -2002-10-24 20:00:00;158 -2002-10-24 23:00:00;163 -2002-10-25 17:00:00;172 -2002-10-25 20:00:00;170 -2002-10-25 23:00:00;166 -2002-10-26 17:00:00;154 -2002-10-26 20:00:00;156 -2002-10-26 23:00:00;155 -2002-10-27 17:00:00;156 -2002-10-27 20:00:00;155 -2002-10-27 23:00:00;155 -2002-10-28 17:00:00;145 -2002-10-28 20:00:00;156 -2002-10-28 23:00:00;157 -2002-10-29 17:00:00;159 -2002-10-29 20:00:00;159 -2002-10-29 23:00:00;163 -2002-10-30 17:00:00;171 -2002-10-30 20:00:00;165 -2002-10-30 23:00:00;173 -2002-10-31 17:00:00;164 -2002-10-31 20:00:00;167 -2002-10-31 23:00:00;168 -2002-11-01 17:00:00;162 -2002-11-01 20:00:00;159 -2002-11-01 23:00:00;162 -2002-11-02 18:00:00;160 -2002-11-02 20:00:00;162 -2002-11-02 22:00:00;167 -2002-11-03 18:00:00;168 -2002-11-03 20:00:00;166 -2002-11-03 22:00:00;167 -2002-11-04 18:00:00;173 -2002-11-04 20:00:00;174 -2002-11-04 22:00:00;174 -2002-11-05 18:00:00;180 -2002-11-05 20:00:00;180 -2002-11-05 22:00:00;195 -2002-11-06 18:00:00;179 -2002-11-06 20:00:00;181 -2002-11-06 22:00:00;188 -2002-11-07 18:00:00;185 -2002-11-07 20:00:00;186 -2002-11-07 22:00:00;185 -2002-11-08 18:00:00;196 -2002-11-08 20:00:00;185 -2002-11-08 22:00:00;185 -2002-11-09 18:00:00;188 -2002-11-09 20:00:00;187 -2002-11-09 22:00:00;187 -2002-11-10 18:00:00;181 -2002-11-10 20:00:00;187 -2002-11-10 22:00:00;185 -2002-11-11 18:00:00;184 -2002-11-11 20:00:00;181 -2002-11-11 22:00:00;183 -2002-11-12 18:00:00;172 -2002-11-12 20:00:00;174 -2002-11-12 22:00:00;169 -2002-11-13 18:00:00;178 -2002-11-13 20:00:00;178 -2002-11-13 22:00:00;163 -2002-11-14 18:00:00;177 -2002-11-14 20:00:00;180 -2002-11-14 22:00:00;172 -2002-11-15 18:00:00;193 -2002-11-15 20:00:00;193 -2002-11-15 22:00:00;199 -2002-11-16 18:00:00;192 -2002-11-16 20:00:00;194 -2002-11-16 22:00:00;191 -2002-11-17 18:00:00;181 -2002-11-17 20:00:00;180 -2002-11-17 22:00:00;188 -2002-11-18 18:00:00;175 -2002-11-18 20:00:00;174 -2002-11-18 22:00:00;175 -2002-11-19 18:00:00;165 -2002-11-19 20:00:00;164 -2002-11-19 22:00:00;164 -2002-11-20 18:00:00;162 -2002-11-20 20:00:00;155 -2002-11-20 22:00:00;153 -2002-11-21 18:00:00;143 -2002-11-21 20:00:00;147 -2002-11-21 22:00:00;150 -2002-11-22 18:00:00;143 -2002-11-22 20:00:00;145 -2002-11-22 22:00:00;144 -2002-11-23 18:00:00;143 -2002-11-23 20:00:00;143 -2002-11-23 22:00:00;147 -2002-11-24 18:00:00;143 -2002-11-24 20:00:00;142 -2002-11-24 22:00:00;160 -2002-11-25 18:00:00;136 -2002-11-25 20:00:00;133 -2002-11-25 22:00:00;135 -2002-11-26 18:00:00;138 -2002-11-26 20:00:00;138 -2002-11-26 22:00:00;142 -2002-11-27 18:00:00;139 -2002-11-27 20:00:00;138 -2002-11-27 22:00:00;138 -2002-11-28 18:00:00;134 -2002-11-28 20:00:00;136 -2002-11-28 22:00:00;138 -2002-11-29 18:00:00;136 -2002-11-29 20:00:00;137 -2002-11-29 22:00:00;139 -2002-11-30 18:00:00;141 -2002-11-30 20:00:00;142 -2002-11-30 22:00:00;144 -2002-12-01 18:00:00;144 -2002-12-01 20:00:00;145 -2002-12-01 22:00:00;147 -2002-12-02 18:00:00;140 -2002-12-02 20:00:00;142 -2002-12-02 22:00:00;143 -2002-12-03 18:00:00;140 -2002-12-03 20:00:00;141 -2002-12-03 22:00:00;144 -2002-12-04 18:00:00;143 -2002-12-04 20:00:00;144 -2002-12-04 22:00:00;144 -2002-12-05 18:00:00;142 -2002-12-05 20:00:00;144 -2002-12-05 22:00:00;148 -2002-12-06 18:00:00;143 -2002-12-06 20:00:00;143 -2002-12-06 22:00:00;147 -2002-12-07 18:00:00;144 -2002-12-07 20:00:00;146 -2002-12-07 22:00:00;149 -2002-12-08 18:00:00;147 -2002-12-08 20:00:00;149 -2002-12-08 22:00:00;152 -2002-12-09 18:00:00;152 -2002-12-09 20:00:00;151 -2002-12-09 22:00:00;152 -2002-12-10 18:00:00;152 -2002-12-10 20:00:00;156 -2002-12-10 22:00:00;156 -2002-12-11 18:00:00;146 -2002-12-11 20:00:00;147 -2002-12-11 22:00:00;145 -2002-12-12 18:00:00;139 -2002-12-12 20:00:00;148 -2002-12-12 22:00:00;148 -2002-12-13 18:00:00;159 -2002-12-13 20:00:00;161 -2002-12-13 22:00:00;164 -2002-12-14 18:00:00;176 -2002-12-14 20:00:00;180 -2002-12-14 22:00:00;173 -2002-12-15 18:00:00;200 -2002-12-15 20:00:00;196 -2002-12-15 22:00:00;194 -2002-12-16 18:00:00;194 -2002-12-16 20:00:00;196 -2002-12-16 22:00:00;204 -2002-12-17 18:00:00;197 -2002-12-17 20:00:00;205 -2002-12-17 22:00:00;205 -2002-12-18 18:00:00;193 -2002-12-18 20:00:00;190 -2002-12-18 22:00:00;193 -2002-12-19 18:00:00;183 -2002-12-19 20:00:00;186 -2002-12-19 22:00:00;237 -2002-12-20 18:00:00;187 -2002-12-20 20:00:00;190 -2002-12-20 22:00:00;192 -2002-12-21 18:00:00;178 -2002-12-21 20:00:00;177 -2002-12-21 22:00:00;179 -2002-12-22 18:00:00;169 -2002-12-22 20:00:00;166 -2002-12-22 22:00:00;166 -2002-12-23 18:00:00;152 -2002-12-23 20:00:00;153 -2002-12-23 22:00:00;155 -2002-12-24 18:00:00;142 -2002-12-24 20:00:00;142 -2002-12-24 22:00:00;142 -2002-12-25 18:00:00;127 -2002-12-25 20:00:00;127 -2002-12-25 22:00:00;130 -2002-12-26 18:00:00;119 -2002-12-26 20:00:00;123 -2002-12-26 22:00:00;121 -2002-12-27 18:00:00;111 -2002-12-27 20:00:00;112 -2002-12-27 22:00:00;114 -2002-12-28 18:00:00;111 -2002-12-28 20:00:00;113 -2002-12-28 22:00:00;113 -2002-12-29 18:00:00;109 -2002-12-29 20:00:00;111 -2002-12-29 22:00:00;112 -2002-12-30 18:00:00;107 -2002-12-30 20:00:00;110 -2002-12-30 22:00:00;111 -2002-12-31 18:00:00;107 -2002-12-31 20:00:00;111 -2002-12-31 22:00:00;112 -2003-01-01 18:00:00;109 -2003-01-01 20:00:00;111 -2003-01-01 22:00:00;108 -2003-01-02 18:00:00;110 -2003-01-02 20:00:00;114 -2003-01-02 22:00:00;117 -2003-01-03 18:00:00;127 -2003-01-03 20:00:00;133 -2003-01-03 22:00:00;140 -2003-01-04 18:00:00;135 -2003-01-04 20:00:00;138 -2003-01-04 22:00:00;139 -2003-01-05 20:00:00;143 -2003-01-05 22:00:00;145 -2003-01-06 18:00:00;154 -2003-01-06 20:00:00;156 -2003-01-06 22:00:00;158 -2003-01-07 18:00:00;158 -2003-01-07 20:00:00;157 -2003-01-07 22:00:00;161 -2003-01-08 18:00:00;166 -2003-01-08 20:00:00;168 -2003-01-08 22:00:00;173 -2003-01-09 18:00:00;177 -2003-01-09 20:00:00;176 -2003-01-09 22:00:00;179 -2003-01-10 18:00:00;177 -2003-01-10 20:00:00;178 -2003-01-10 22:00:00;179 -2003-01-11 18:00:00;181 -2003-01-11 20:00:00;182 -2003-01-11 22:00:00;183 -2003-01-12 18:00:00;171 -2003-01-12 20:00:00;167 -2003-01-12 22:00:00;167 -2003-01-13 18:00:00;164 -2003-01-13 20:00:00;166 -2003-01-13 22:00:00;166 -2003-01-14 18:00:00;154 -2003-01-14 20:00:00;158 -2003-01-14 22:00:00;156 -2003-01-15 18:00:00;145 -2003-01-15 20:00:00;145 -2003-01-15 22:00:00;145 -2003-01-16 18:00:00;139 -2003-01-16 20:00:00;139 -2003-01-16 22:00:00;141 -2003-01-17 18:00:00;137 -2003-01-17 20:00:00;137 -2003-01-17 22:00:00;137 -2003-01-18 18:00:00;133 -2003-01-18 20:00:00;133 -2003-01-18 22:00:00;132 -2003-01-19 18:00:00;125 -2003-01-19 20:00:00;126 -2003-01-19 22:00:00;126 -2003-01-20 18:00:00;127 -2003-01-20 20:00:00;133 -2003-01-20 22:00:00;138 -2003-01-21 18:00:00;131 -2003-01-21 20:00:00;129 -2003-01-21 22:00:00;131 -2003-01-22 18:00:00;124 -2003-01-22 20:00:00;125 -2003-01-22 22:00:00;123 -2003-01-23 18:00:00;126 -2003-01-23 20:00:00;131 -2003-01-23 22:00:00;132 -2003-01-24 18:00:00;127 -2003-01-24 20:00:00;125 -2003-01-24 22:00:00;126 -2003-01-25 18:00:00;121 -2003-01-25 20:00:00;124 -2003-01-25 22:00:00;119 -2003-01-26 18:00:00;115 -2003-01-26 20:00:00;121 -2003-01-26 21:00:00;117 -2003-01-26 22:00:00;121 -2003-01-27 18:00:00;116 -2003-01-27 20:00:00;117 -2003-01-27 22:00:00;128 -2003-01-28 18:00:00;120 -2003-01-28 20:00:00;121 -2003-01-28 22:00:00;122 -2003-01-29 18:00:00;122 -2003-01-29 20:00:00;120 -2003-01-29 22:00:00;121 -2003-01-30 18:00:00;117 -2003-01-30 20:00:00;117 -2003-01-30 22:00:00;118 -2003-01-31 18:00:00;116 -2003-01-31 20:00:00;116 -2003-01-31 22:00:00;117 -2003-02-01 18:00:00;118 -2003-02-01 20:00:00;122 -2003-02-01 22:00:00;121 -2003-02-02 18:00:00;125 -2003-02-02 20:00:00;123 -2003-02-02 22:00:00;126 -2003-02-03 18:00:00;126 -2003-02-03 20:00:00;128 -2003-02-03 22:00:00;126 -2003-02-04 18:00:00;131 -2003-02-04 20:00:00;131 -2003-02-04 22:00:00;130 -2003-02-05 18:00:00;134 -2003-02-05 20:00:00;136 -2003-02-05 22:00:00;142 -2003-02-06 18:00:00;144 -2003-02-06 20:00:00;145 -2003-02-06 22:00:00;144 -2003-02-07 18:00:00;143 -2003-02-07 20:00:00;143 -2003-02-07 22:00:00;140 -2003-02-08 18:00:00;137 -2003-02-08 20:00:00;135 -2003-02-08 22:00:00;136 -2003-02-09 18:00:00;137 -2003-02-09 20:00:00;137 -2003-02-09 22:00:00;136 -2003-02-10 18:00:00;132 -2003-02-10 20:00:00;132 -2003-02-10 22:00:00;133 -2003-02-11 18:00:00;133 -2003-02-11 20:00:00;131 -2003-02-11 22:00:00;133 -2003-02-12 18:00:00;127 -2003-02-12 20:00:00;128 -2003-02-12 22:00:00;128 -2003-02-13 18:00:00;129 -2003-02-13 20:00:00;127 -2003-02-13 22:00:00;128 -2003-02-14 18:00:00;128 -2003-02-14 20:00:00;128 -2003-02-14 22:00:00;130 -2003-02-15 18:00:00;121 -2003-02-15 20:00:00;120 -2003-02-15 22:00:00;120 -2003-02-16 18:00:00;114 -2003-02-16 20:00:00;115 -2003-02-16 22:00:00;116 -2003-02-17 18:00:00;109 -2003-02-17 20:00:00;109 -2003-02-17 22:00:00;108 -2003-02-18 18:00:00;107 -2003-02-18 20:00:00;107 -2003-02-18 22:00:00;108 -2003-02-19 18:00:00;111 -2003-02-19 20:00:00;113 -2003-02-19 22:00:00;113 -2003-02-20 18:00:00;115 -2003-02-20 20:00:00;115 -2003-02-20 22:00:00;114 -2003-02-21 18:00:00;116 -2003-02-21 20:00:00;117 -2003-02-21 22:00:00;115 -2003-02-22 18:00:00;103 -2003-02-22 20:00:00;104 -2003-02-22 22:00:00;105 -2003-02-23 18:00:00;101 -2003-02-23 20:00:00;101 -2003-02-23 22:00:00;101 -2003-02-24 18:00:00;99 -2003-02-24 20:00:00;99 -2003-02-24 22:00:00;101 -2003-02-25 18:00:00;99 -2003-02-25 20:00:00;99 -2003-02-25 22:00:00;100 -2003-02-26 18:00:00;106 -2003-02-26 20:00:00;107 -2003-02-26 22:00:00;109 -2003-02-27 18:00:00;115 -2003-02-27 20:00:00;115 -2003-02-27 22:00:00;117 -2003-02-28 18:00:00;124 -2003-02-28 20:00:00;122 -2003-02-28 22:00:00;122 -2003-03-01 17:00:00;132 -2003-03-01 20:00:00;135 -2003-03-01 23:00:00;136 -2003-03-02 17:00:00;130 -2003-03-02 20:00:00;144 -2003-03-02 23:00:00;131 -2003-03-03 17:00:00;138 -2003-03-03 20:00:00;146 -2003-03-03 23:00:00;148 -2003-03-04 17:00:00;144 -2003-03-04 20:00:00;143 -2003-03-04 23:00:00;145 -2003-03-05 17:00:00;144 -2003-03-05 20:00:00;146 -2003-03-05 23:00:00;147 -2003-03-06 17:00:00;144 -2003-03-06 20:00:00;147 -2003-03-06 23:00:00;147 -2003-03-07 17:00:00;148 -2003-03-07 20:00:00;147 -2003-03-07 23:00:00;149 -2003-03-08 17:00:00;148 -2003-03-08 20:00:00;146 -2003-03-08 23:00:00;148 -2003-03-09 17:00:00;150 -2003-03-09 18:00:00;143 -2003-03-09 20:00:00;150 -2003-03-09 23:00:00;150 -2003-03-10 17:00:00;143 -2003-03-10 20:00:00;141 -2003-03-10 23:00:00;142 -2003-03-11 17:00:00;139 -2003-03-11 20:00:00;139 -2003-03-11 23:00:00;141 -2003-03-12 17:00:00;137 -2003-03-12 20:00:00;136 -2003-03-12 23:00:00;136 -2003-03-13 17:00:00;130 -2003-03-13 20:00:00;132 -2003-03-13 23:00:00;131 -2003-03-14 17:00:00;129 -2003-03-14 20:00:00;137 -2003-03-14 23:00:00;132 -2003-03-15 17:00:00;128 -2003-03-15 20:00:00;129 -2003-03-15 23:00:00;130 -2003-03-16 17:00:00;126 -2003-03-16 20:00:00;127 -2003-03-16 23:00:00;127 -2003-03-17 17:00:00;123 -2003-03-17 20:00:00;162 -2003-03-17 23:00:00;123 -2003-03-18 17:00:00;116 -2003-03-18 20:00:00;117 -2003-03-18 23:00:00;118 -2003-03-19 17:00:00;112 -2003-03-19 20:00:00;107 -2003-03-19 23:00:00;106 -2003-03-20 17:00:00;98 -2003-03-20 20:00:00;96 -2003-03-20 23:00:00;95 -2003-03-21 17:00:00;91 -2003-03-21 20:00:00;90 -2003-03-21 23:00:00;90 -2003-03-22 17:00:00;88 -2003-03-22 20:00:00;88 -2003-03-22 23:00:00;88 -2003-03-23 17:00:00;92 -2003-03-23 20:00:00;92 -2003-03-23 23:00:00;92 -2003-03-24 17:00:00;96 -2003-03-24 20:00:00;97 -2003-03-24 23:00:00;98 -2003-03-25 17:00:00;107 -2003-03-25 20:00:00;108 -2003-03-25 23:00:00;109 -2003-03-26 17:00:00;123 -2003-03-26 20:00:00;126 -2003-03-26 23:00:00;129 -2003-03-27 17:00:00;140 -2003-03-27 20:00:00;140 -2003-03-27 23:00:00;141 -2003-03-28 17:00:00;143 -2003-03-28 20:00:00;146 -2003-03-28 23:00:00;147 -2003-03-29 17:00:00;155 -2003-03-29 20:00:00;154 -2003-03-29 23:00:00;152 -2003-03-30 17:00:00;151 -2003-03-30 20:00:00;154 -2003-03-30 23:00:00;153 -2003-03-31 17:00:00;157 -2003-03-31 20:00:00;159 -2003-03-31 23:00:00;159 -2003-04-01 17:00:00;155 -2003-04-01 20:00:00;152 -2003-04-01 23:00:00;152 -2003-04-02 17:00:00;157 -2003-04-02 20:00:00;157 -2003-04-02 23:00:00;158 -2003-04-03 17:00:00;152 -2003-04-03 20:00:00;155 -2003-04-03 23:00:00;155 -2003-04-04 17:00:00;148 -2003-04-04 20:00:00;165 -2003-04-04 23:00:00;152 -2003-04-05 17:00:00;143 -2003-04-05 20:00:00;137 -2003-04-05 23:00:00;137 -2003-04-06 17:00:00;123 -2003-04-06 20:00:00;126 -2003-04-06 23:00:00;123 -2003-04-07 17:00:00;117 -2003-04-07 20:00:00;115 -2003-04-07 23:00:00;116 -2003-04-08 17:00:00;112 -2003-04-08 20:00:00;112 -2003-04-08 23:00:00;114 -2003-04-09 17:00:00;110 -2003-04-09 20:00:00;109 -2003-04-09 23:00:00;109 -2003-04-10 17:00:00;105 -2003-04-10 20:00:00;104 -2003-04-10 23:00:00;103 -2003-04-11 17:00:00;103 -2003-04-11 20:00:00;103 -2003-04-11 23:00:00;102 -2003-04-12 17:00:00;102 -2003-04-12 20:00:00;102 -2003-04-12 23:00:00;100 -2003-04-13 17:00:00;99 -2003-04-13 20:00:00;103 -2003-04-13 23:00:00;104 -2003-04-14 17:00:00;103 -2003-04-14 20:00:00;102 -2003-04-14 23:00:00;103 -2003-04-15 17:00:00;100 -2003-04-15 20:00:00;101 -2003-04-15 23:00:00;100 -2003-04-16 17:00:00;98 -2003-04-16 20:00:00;99 -2003-04-16 23:00:00;99 -2003-04-17 17:00:00;104 -2003-04-17 20:00:00;101 -2003-04-17 23:00:00;109 -2003-04-18 17:00:00;107 -2003-04-18 20:00:00;108 -2003-04-18 23:00:00;109 -2003-04-19 17:00:00;110 -2003-04-19 20:00:00;113 -2003-04-19 23:00:00;112 -2003-04-20 17:00:00;118 -2003-04-20 20:00:00;119 -2003-04-20 23:00:00;118 -2003-04-21 17:00:00;126 -2003-04-21 20:00:00;127 -2003-04-21 23:00:00;130 -2003-04-22 17:00:00;134 -2003-04-22 20:00:00;133 -2003-04-22 23:00:00;131 -2003-04-23 17:00:00;138 -2003-04-23 20:00:00;134 -2003-04-23 23:00:00;135 -2003-04-24 17:00:00;132 -2003-04-24 20:00:00;129 -2003-04-24 23:00:00;132 -2003-04-25 17:00:00;142 -2003-04-25 20:00:00;145 -2003-04-25 23:00:00;145 -2003-04-26 17:00:00;144 -2003-04-26 20:00:00;145 -2003-04-26 23:00:00;150 -2003-04-27 17:00:00;154 -2003-04-27 20:00:00;156 -2003-04-27 23:00:00;151 -2003-04-28 17:00:00;153 -2003-04-28 20:00:00;154 -2003-04-28 23:00:00;155 -2003-04-29 17:00:00;154 -2003-04-29 20:00:00;157 -2003-04-29 23:00:00;156 -2003-04-30 17:00:00;151 -2003-04-30 20:00:00;155 -2003-04-30 23:00:00;154 -2003-05-01 17:00:00;152 -2003-05-01 20:00:00;151 -2003-05-01 23:00:00;154 -2003-05-02 17:00:00;145 -2003-05-02 20:00:00;159 -2003-05-02 23:00:00;148 -2003-05-03 17:00:00;151 -2003-05-03 20:00:00;150 -2003-05-03 23:00:00;146 -2003-05-04 17:00:00;142 -2003-05-04 20:00:00;144 -2003-05-04 23:00:00;141 -2003-05-05 17:00:00;134 -2003-05-05 20:00:00;131 -2003-05-05 23:00:00;131 -2003-05-06 17:00:00;125 -2003-05-06 20:00:00;124 -2003-05-06 23:00:00;123 -2003-05-07 17:00:00;116 -2003-05-07 20:00:00;112 -2003-05-07 23:00:00;111 -2003-05-08 17:00:00;109 -2003-05-08 20:00:00;102 -2003-05-08 23:00:00;102 -2003-05-09 17:00:00;99 -2003-05-09 20:00:00;98 -2003-05-09 23:00:00;99 -2003-05-10 17:00:00;94 -2003-05-10 20:00:00;94 -2003-05-10 23:00:00;94 -2003-05-11 17:00:00;93 -2003-05-11 20:00:00;93 -2003-05-11 23:00:00;93 -2003-05-12 17:00:00;94 -2003-05-12 20:00:00;95 -2003-05-12 23:00:00;96 -2003-05-13 17:00:00;97 -2003-05-13 20:00:00;98 -2003-05-13 23:00:00;97 -2003-05-14 17:00:00;98 -2003-05-14 20:00:00;98 -2003-05-14 23:00:00;99 -2003-05-15 17:00:00;102 -2003-05-15 20:00:00;101 -2003-05-15 23:00:00;101 -2003-05-16 17:00:00;102 -2003-05-16 20:00:00;104 -2003-05-16 23:00:00;105 -2003-05-17 17:00:00;105 -2003-05-17 20:00:00;104 -2003-05-17 23:00:00;106 -2003-05-18 17:00:00;110 -2003-05-18 20:00:00;111 -2003-05-18 23:00:00;110 -2003-05-19 17:00:00;117 -2003-05-19 20:00:00;117 -2003-05-19 23:00:00;118 -2003-05-20 17:00:00;118 -2003-05-20 20:00:00;120 -2003-05-20 23:00:00;119 -2003-05-21 17:00:00;121 -2003-05-21 20:00:00;122 -2003-05-21 23:00:00;122 -2003-05-22 17:00:00;122 -2003-05-22 20:00:00;121 -2003-05-22 23:00:00;127 -2003-05-23 17:00:00;121 -2003-05-23 20:00:00;120 -2003-05-23 23:00:00;120 -2003-05-24 17:00:00;118 -2003-05-24 20:00:00;119 -2003-05-24 23:00:00;123 -2003-05-25 17:00:00;123 -2003-05-25 20:00:00;124 -2003-05-25 23:00:00;123 -2003-05-26 17:00:00;153 -2003-05-26 20:00:00;128 -2003-05-26 23:00:00;131 -2003-05-27 17:00:00;133 -2003-05-27 20:00:00;132 -2003-05-27 23:00:00;224 -2003-05-28 17:00:00;129 -2003-05-28 20:00:00;133 -2003-05-28 23:00:00;132 -2003-05-29 17:00:00;127 -2003-05-29 20:00:00;141 -2003-05-29 23:00:00;125 -2003-05-30 17:00:00;123 -2003-05-30 20:00:00;120 -2003-05-30 23:00:00;121 -2003-05-31 17:00:00;113 -2003-05-31 20:00:00;116 -2003-05-31 23:00:00;117 -2003-06-01 17:00:00;114 -2003-06-01 20:00:00;115 -2003-06-01 23:00:00;121 -2003-06-02 17:00:00;119 -2003-06-02 20:00:00;124 -2003-06-02 23:00:00;121 -2003-06-03 17:00:00;109 -2003-06-03 20:00:00;117 -2003-06-03 23:00:00;112 -2003-06-04 17:00:00;109 -2003-06-04 20:00:00;108 -2003-06-04 23:00:00;108 -2003-06-05 17:00:00;115 -2003-06-05 20:00:00;117 -2003-06-05 23:00:00;118 -2003-06-06 17:00:00;128 -2003-06-06 20:00:00;129 -2003-06-06 23:00:00;133 -2003-06-07 17:00:00;136 -2003-06-07 20:00:00;137 -2003-06-07 23:00:00;140 -2003-06-08 17:00:00;156 -2003-06-08 20:00:00;158 -2003-06-08 23:00:00;153 -2003-06-09 17:00:00;172 -2003-06-09 20:00:00;163 -2003-06-09 23:00:00;192 -2003-06-10 17:00:00;177 -2003-06-10 20:00:00;182 -2003-06-10 23:00:00;179 -2003-06-11 17:00:00;206 -2003-06-11 20:00:00;198 -2003-06-11 23:00:00;193 -2003-06-12 17:00:00;168 -2003-06-12 20:00:00;168 -2003-06-12 23:00:00;174 -2003-06-13 17:00:00;161 -2003-06-13 20:00:00;155 -2003-06-13 23:00:00;155 -2003-06-14 17:00:00;139 -2003-06-14 20:00:00;137 -2003-06-14 23:00:00;136 -2003-06-15 17:00:00;137 -2003-06-15 20:00:00;132 -2003-06-15 23:00:00;134 -2003-06-16 17:00:00;127 -2003-06-16 20:00:00;126 -2003-06-16 23:00:00;126 -2003-06-17 17:00:00;123 -2003-06-17 20:00:00;125 -2003-06-17 23:00:00;399 -2003-06-18 17:00:00;124 -2003-06-18 20:00:00;124 -2003-06-18 23:00:00;126 -2003-06-19 17:00:00;126 -2003-06-19 20:00:00;126 -2003-06-19 23:00:00;126 -2003-06-20 17:00:00;119 -2003-06-20 20:00:00;120 -2003-06-20 23:00:00;125 -2003-06-21 17:00:00;119 -2003-06-21 20:00:00;118 -2003-06-21 23:00:00;119 -2003-06-22 17:00:00;115 -2003-06-22 20:00:00;113 -2003-06-22 23:00:00;115 -2003-06-23 17:00:00;117 -2003-06-23 20:00:00;117 -2003-06-23 23:00:00;123 -2003-06-24 17:00:00;118 -2003-06-24 20:00:00;118 -2003-06-24 23:00:00;118 -2003-06-25 17:00:00;119 -2003-06-25 20:00:00;120 -2003-06-25 23:00:00;123 -2003-06-26 17:00:00;121 -2003-06-26 20:00:00;122 -2003-06-26 23:00:00;123 -2003-06-27 17:00:00;127 -2003-06-27 20:00:00;128 -2003-06-27 23:00:00;129 -2003-06-28 17:00:00;131 -2003-06-28 20:00:00;128 -2003-06-28 23:00:00;130 -2003-06-29 17:00:00;130 -2003-06-29 20:00:00;131 -2003-06-29 23:00:00;133 -2003-06-30 17:00:00;134 -2003-06-30 20:00:00;132 -2003-06-30 23:00:00;132 -2003-07-01 17:00:00;134 -2003-07-01 20:00:00;135 -2003-07-01 23:00:00;134 -2003-07-02 17:00:00;140 -2003-07-02 20:00:00;139 -2003-07-02 23:00:00;143 -2003-07-03 17:00:00;135 -2003-07-03 20:00:00;136 -2003-07-03 23:00:00;141 -2003-07-04 17:00:00;139 -2003-07-04 20:00:00;144 -2003-07-04 23:00:00;139 -2003-07-05 17:00:00;143 -2003-07-05 20:00:00;146 -2003-07-05 23:00:00;139 -2003-07-06 17:00:00;135 -2003-07-06 20:00:00;134 -2003-07-06 23:00:00;135 -2003-07-07 17:00:00;130 -2003-07-07 20:00:00;137 -2003-07-07 23:00:00;132 -2003-07-08 17:00:00;135 -2003-07-08 20:00:00;135 -2003-07-08 23:00:00;137 -2003-07-09 17:00:00;134 -2003-07-09 20:00:00;130 -2003-07-09 23:00:00;137 -2003-07-10 17:00:00;128 -2003-07-10 20:00:00;126 -2003-07-10 23:00:00;128 -2003-07-11 17:00:00;126 -2003-07-11 20:00:00;126 -2003-07-11 23:00:00;125 -2003-07-12 17:00:00;126 -2003-07-12 20:00:00;125 -2003-07-12 23:00:00;127 -2003-07-13 17:00:00;131 -2003-07-13 20:00:00;130 -2003-07-13 23:00:00;132 -2003-07-14 17:00:00;130 -2003-07-14 20:00:00;131 -2003-07-14 23:00:00;131 -2003-07-15 17:00:00;130 -2003-07-15 20:00:00;129 -2003-07-15 23:00:00;131 -2003-07-16 17:00:00;138 -2003-07-16 20:00:00;137 -2003-07-16 23:00:00;138 -2003-07-17 17:00:00;142 -2003-07-17 20:00:00;143 -2003-07-17 23:00:00;141 -2003-07-18 17:00:00;144 -2003-07-18 20:00:00;144 -2003-07-18 23:00:00;147 -2003-07-19 17:00:00;154 -2003-07-19 20:00:00;150 -2003-07-19 23:00:00;157 -2003-07-20 17:00:00;162 -2003-07-20 20:00:00;162 -2003-07-20 23:00:00;165 -2003-07-21 17:00:00;162 -2003-07-21 20:00:00;160 -2003-07-21 23:00:00;167 -2003-07-22 17:00:00;161 -2003-07-22 20:00:00;157 -2003-07-22 23:00:00;158 -2003-07-23 17:00:00;150 -2003-07-23 20:00:00;148 -2003-07-23 23:00:00;146 -2003-07-24 17:00:00;131 -2003-07-24 20:00:00;129 -2003-07-24 23:00:00;129 -2003-07-25 17:00:00;115 -2003-07-25 20:00:00;115 -2003-07-25 23:00:00;114 -2003-07-26 17:00:00;106 -2003-07-26 20:00:00;105 -2003-07-26 23:00:00;105 -2003-07-27 17:00:00;102 -2003-07-27 20:00:00;104 -2003-07-27 23:00:00;106 -2003-07-28 17:00:00;108 -2003-07-28 20:00:00;106 -2003-07-28 23:00:00;106 -2003-07-29 17:00:00;103 -2003-07-29 20:00:00;103 -2003-07-29 23:00:00;103 -2003-07-30 17:00:00;102 -2003-07-30 20:00:00;101 -2003-07-30 23:00:00;102 -2003-07-31 17:00:00;105 -2003-07-31 20:00:00;105 -2003-07-31 23:00:00;106 -2003-08-01 17:00:00;109 -2003-08-01 20:00:00;110 -2003-08-01 23:00:00;113 -2003-08-02 17:00:00;114 -2003-08-02 20:00:00;114 -2003-08-02 23:00:00;115 -2003-08-03 17:00:00;121 -2003-08-03 20:00:00;123 -2003-08-03 23:00:00;126 -2003-08-04 17:00:00;127 -2003-08-04 20:00:00;126 -2003-08-04 23:00:00;126 -2003-08-05 17:00:00;133 -2003-08-05 20:00:00;134 -2003-08-05 23:00:00;134 -2003-08-06 17:00:00;130 -2003-08-06 20:00:00;132 -2003-08-06 23:00:00;134 -2003-08-07 17:00:00;137 -2003-08-07 20:00:00;140 -2003-08-07 23:00:00;139 -2003-08-08 17:00:00;140 -2003-08-08 20:00:00;136 -2003-08-08 23:00:00;138 -2003-08-09 17:00:00;133 -2003-08-09 20:00:00;133 -2003-08-09 23:00:00;135 -2003-08-10 17:00:00;134 -2003-08-10 20:00:00;134 -2003-08-10 23:00:00;132 -2003-08-11 17:00:00;134 -2003-08-11 20:00:00;132 -2003-08-11 23:00:00;132 -2003-08-12 17:00:00;126 -2003-08-12 20:00:00;126 -2003-08-12 23:00:00;126 -2003-08-13 17:00:00;131 -2003-08-13 20:00:00;134 -2003-08-13 23:00:00;134 -2003-08-14 17:00:00;134 -2003-08-14 20:00:00;133 -2003-08-14 23:00:00;128 -2003-08-15 17:00:00;132 -2003-08-15 20:00:00;134 -2003-08-15 23:00:00;138 -2003-08-16 17:00:00;128 -2003-08-16 20:00:00;130 -2003-08-16 23:00:00;130 -2003-08-17 17:00:00;123 -2003-08-17 20:00:00;122 -2003-08-17 23:00:00;123 -2003-08-18 17:00:00;120 -2003-08-18 20:00:00;118 -2003-08-18 23:00:00;120 -2003-08-19 17:00:00;119 -2003-08-19 20:00:00;119 -2003-08-19 23:00:00;116 -2003-08-20 17:00:00;114 -2003-08-20 20:00:00;114 -2003-08-20 23:00:00;113 -2003-08-21 17:00:00;119 -2003-08-21 20:00:00;122 -2003-08-21 23:00:00;121 -2003-08-22 17:00:00;129 -2003-08-22 20:00:00;123 -2003-08-23 20:00:00;122 -2003-08-23 23:00:00;123 -2003-08-24 17:00:00;119 -2003-08-24 20:00:00;119 -2003-08-24 23:00:00;118 -2003-08-25 17:00:00;118 -2003-08-25 20:00:00;119 -2003-08-25 23:00:00;119 -2003-08-26 17:00:00;122 -2003-08-26 20:00:00;123 -2003-08-26 23:00:00;125 -2003-08-27 17:00:00;126 -2003-08-27 20:00:00;128 -2003-08-27 23:00:00;126 -2003-08-28 17:00:00;120 -2003-08-28 20:00:00;121 -2003-08-28 23:00:00;120 -2003-08-29 17:00:00;116 -2003-08-29 20:00:00;118 -2003-08-29 23:00:00;118 -2003-08-30 17:00:00;118 -2003-08-30 20:00:00;116 -2003-08-30 23:00:00;116 -2003-08-31 17:00:00;112 -2003-08-31 20:00:00;111 -2003-08-31 23:00:00;110 -2003-09-01 17:00:00;109 -2003-09-01 20:00:00;110 -2003-09-01 23:00:00;110 -2003-09-02 17:00:00;108 -2003-09-02 20:00:00;107 -2003-09-02 23:00:00;109 -2003-09-03 17:00:00;111 -2003-09-03 20:00:00;112 -2003-09-03 23:00:00;113 -2003-09-04 17:00:00;114 -2003-09-04 20:00:00;114 -2003-09-04 23:00:00;113 -2003-09-05 17:00:00;110 -2003-09-05 20:00:00;109 -2003-09-05 23:00:00;109 -2003-09-06 17:00:00;105 -2003-09-06 20:00:00;106 -2003-09-06 23:00:00;106 -2003-09-07 17:00:00;111 -2003-09-07 20:00:00;109 -2003-09-07 23:00:00;106 -2003-09-08 17:00:00;98 -2003-09-08 20:00:00;100 -2003-09-08 23:00:00;100 -2003-09-09 17:00:00;97 -2003-09-09 20:00:00;97 -2003-09-09 23:00:00;98 -2003-09-10 17:00:00;100 -2003-09-10 20:00:00;100 -2003-09-10 23:00:00;101 -2003-09-11 17:00:00;96 -2003-09-11 20:00:00;98 -2003-09-12 17:00:00;95 -2003-09-12 20:00:00;95 -2003-09-12 23:00:00;96 -2003-09-13 17:00:00;98 -2003-09-13 20:00:00;97 -2003-09-13 23:00:00;97 -2003-09-14 17:00:00;95 -2003-09-14 20:00:00;95 -2003-09-14 23:00:00;96 -2003-09-15 17:00:00;97 -2003-09-15 20:00:00;98 -2003-09-15 23:00:00;99 -2003-09-16 17:00:00;100 -2003-09-16 20:00:00;100 -2003-09-16 23:00:00;110 -2003-09-17 17:00:00;106 -2003-09-17 20:00:00;107 -2003-09-17 23:00:00;106 -2003-09-18 17:00:00;110 -2003-09-18 20:00:00;110 -2003-09-18 23:00:00;114 -2003-09-19 17:00:00;111 -2003-09-19 20:00:00;112 -2003-09-19 23:00:00;113 -2003-09-20 17:00:00;115 -2003-09-20 20:00:00;112 -2003-09-20 23:00:00;114 -2003-09-21 17:00:00;118 -2003-09-21 20:00:00;120 -2003-09-21 23:00:00;121 -2003-09-22 17:00:00;119 -2003-09-22 20:00:00;123 -2003-09-22 23:00:00;122 -2003-09-23 17:00:00;127 -2003-09-23 20:00:00;125 -2003-09-23 23:00:00;126 -2003-09-24 17:00:00;133 -2003-09-24 20:00:00;134 -2003-09-24 23:00:00;135 -2003-09-25 17:00:00;132 -2003-09-25 20:00:00;133 -2003-09-25 23:00:00;137 -2003-09-26 17:00:00;132 -2003-09-26 20:00:00;131 -2003-09-26 23:00:00;131 -2003-09-27 17:00:00;129 -2003-09-27 20:00:00;130 -2003-09-27 23:00:00;129 -2003-09-28 17:00:00;141 -2003-09-28 20:00:00;137 -2003-09-28 23:00:00;134 -2003-09-29 17:00:00;132 -2003-09-29 20:00:00;135 -2003-09-29 23:00:00;137 -2003-09-30 17:00:00;133 -2003-09-30 20:00:00;133 -2003-09-30 23:00:00;134 -2003-10-01 17:00:00;130 -2003-10-01 20:00:00;137 -2003-10-01 23:00:00;131 -2003-10-02 17:00:00;132 -2003-10-02 20:00:00;125 -2003-10-02 23:00:00;127 -2003-10-03 17:00:00;120 -2003-10-03 20:00:00;120 -2003-10-03 23:00:00;123 -2003-10-04 17:00:00;118 -2003-10-04 20:00:00;119 -2003-10-04 23:00:00;119 -2003-10-05 17:00:00;111 -2003-10-05 20:00:00;109 -2003-10-05 23:00:00;110 -2003-10-06 17:00:00;111 -2003-10-06 20:00:00;112 -2003-10-06 23:00:00;113 -2003-10-07 17:00:00;112 -2003-10-07 20:00:00;111 -2003-10-07 23:00:00;116 -2003-10-08 17:00:00;111 -2003-10-08 20:00:00;113 -2003-10-08 23:00:00;114 -2003-10-09 17:00:00;110 -2003-10-09 20:00:00;110 -2003-10-09 23:00:00;112 -2003-10-10 17:00:00;109 -2003-10-10 20:00:00;111 -2003-10-10 23:00:00;112 -2003-10-11 17:00:00;104 -2003-10-11 20:00:00;105 -2003-10-11 23:00:00;106 -2003-10-12 17:00:00;98 -2003-10-12 20:00:00;97 -2003-10-12 23:00:00;98 -2003-10-13 17:00:00;94 -2003-10-13 20:00:00;94 -2003-10-13 23:00:00;95 -2003-10-14 17:00:00;89 -2003-10-14 20:00:00;91 -2003-10-14 23:00:00;93 -2003-10-15 17:00:00;93 -2003-10-15 20:00:00;95 -2003-10-15 23:00:00;94 -2003-10-16 17:00:00;96 -2003-10-16 20:00:00;94 -2003-10-16 23:00:00;97 -2003-10-17 17:00:00;94 -2003-10-17 20:00:00;98 -2003-10-17 23:00:00;100 -2003-10-18 17:00:00;106 -2003-10-18 20:00:00;107 -2003-10-18 23:00:00;110 -2003-10-19 17:00:00;192 -2003-10-19 20:00:00;119 -2003-10-19 23:00:00;121 -2003-10-20 17:00:00;124 -2003-10-20 20:00:00;133 -2003-10-20 23:00:00;128 -2003-10-21 17:00:00;146 -2003-10-21 20:00:00;150 -2003-10-21 23:00:00;160 -2003-10-22 17:00:00;152 -2003-10-22 20:00:00;189 -2003-10-22 23:00:00;170 -2003-10-23 17:00:00;181 -2003-10-23 20:00:00;207 -2003-10-23 23:00:00;200 -2003-10-24 17:00:00;202 -2003-10-24 20:00:00;188 -2003-10-24 23:00:00;185 -2003-10-25 17:00:00;215 -2003-10-25 20:00:00;219 -2003-10-25 23:00:00;219 -2003-10-26 17:00:00;384 -2003-10-26 20:00:00;294 -2003-10-26 23:00:00;240 -2003-10-27 17:00:00;258 -2003-10-27 20:00:00;254 -2003-10-27 23:00:00;256 -2003-10-28 17:00:00;313 -2003-10-28 20:00:00;270 -2003-10-28 23:00:00;268 -2003-10-29 17:00:00;275 -2003-10-29 20:00:00;287 -2003-10-29 23:00:00;309 -2003-10-30 17:00:00;262 -2003-10-30 20:00:00;267 -2003-10-30 23:00:00;261 -2003-10-31 17:00:00;239 -2003-10-31 20:00:00;245 -2003-10-31 23:00:00;251 -2003-11-01 17:00:00;212 -2003-11-01 20:00:00;207 -2003-11-01 23:00:00;233 -2003-11-02 18:00:00;397 -2003-11-02 20:00:00;187 -2003-11-02 22:00:00;184 -2003-11-03 18:00:00;165 -2003-11-03 20:00:00;164 -2003-11-03 22:00:00;162 -2003-11-04 18:00:00;165 -2003-11-04 20:00:00;551 -2003-11-04 22:00:00;193 -2003-11-05 18:00:00;115 -2003-11-05 20:00:00;112 -2003-11-05 22:00:00;111 -2003-11-06 18:00:00;96 -2003-11-06 20:00:00;96 -2003-11-06 22:00:00;96 -2003-11-07 18:00:00;89 -2003-11-07 20:00:00;89 -2003-11-07 22:00:00;88 -2003-11-08 18:00:00;89 -2003-11-08 20:00:00;91 -2003-11-08 22:00:00;91 -2003-11-09 18:00:00;91 -2003-11-09 20:00:00;91 -2003-11-09 22:00:00;91 -2003-11-10 18:00:00;92 -2003-11-10 20:00:00;92 -2003-11-10 22:00:00;93 -2003-11-11 18:00:00;95 -2003-11-11 20:00:00;93 -2003-11-11 22:00:00;93 -2003-11-12 18:00:00;123 -2003-11-12 20:00:00;96 -2003-11-12 22:00:00;95 -2003-11-13 18:00:00;99 -2003-11-13 20:00:00;100 -2003-11-13 22:00:00;99 -2003-11-14 18:00:00;96 -2003-11-14 20:00:00;96 -2003-11-14 22:00:00;99 -2003-11-15 18:00:00;99 -2003-11-15 20:00:00;95 -2003-11-15 22:00:00;96 -2003-11-16 18:00:00;103 -2003-11-16 20:00:00;102 -2003-11-16 22:00:00;103 -2003-11-17 18:00:00;116 -2003-11-17 20:00:00;118 -2003-11-17 22:00:00;121 -2003-11-18 18:00:00;143 -2003-11-18 20:00:00;141 -2003-11-18 22:00:00;135 -2003-11-19 18:00:00;149 -2003-11-19 20:00:00;151 -2003-11-19 22:00:00;155 -2003-11-20 18:00:00;164 -2003-11-20 20:00:00;171 -2003-11-20 22:00:00;168 -2003-11-21 18:00:00;171 -2003-11-21 20:00:00;172 -2003-11-21 22:00:00;175 -2003-11-22 18:00:00;174 -2003-11-22 20:00:00;171 -2003-11-22 22:00:00;184 -2003-11-23 18:00:00;174 -2003-11-23 20:00:00;173 -2003-11-23 22:00:00;175 -2003-11-24 18:00:00;170 -2003-11-24 20:00:00;172 -2003-11-24 22:00:00;176 -2003-11-25 18:00:00;165 -2003-11-25 20:00:00;166 -2003-11-25 22:00:00;168 -2003-11-26 18:00:00;166 -2003-11-26 20:00:00;166 -2003-11-26 22:00:00;168 -2003-11-27 18:00:00;170 -2003-11-27 20:00:00;170 -2003-11-27 22:00:00;170 -2003-11-28 18:00:00;165 -2003-11-28 20:00:00;163 -2003-11-28 22:00:00;165 -2003-11-29 18:00:00;161 -2003-11-29 20:00:00;161 -2003-11-29 22:00:00;162 -2003-11-30 18:00:00;150 -2003-11-30 20:00:00;148 -2003-11-30 22:00:00;150 -2003-12-01 18:00:00;138 -2003-12-01 20:00:00;139 -2003-12-01 22:00:00;139 -2003-12-02 18:00:00;137 -2003-12-02 20:00:00;135 -2003-12-02 22:00:00;134 -2003-12-03 18:00:00;120 -2003-12-03 20:00:00;120 -2003-12-03 22:00:00;120 -2003-12-04 18:00:00;113 -2003-12-04 20:00:00;112 -2003-12-04 22:00:00;114 -2003-12-05 18:00:00;109 -2003-12-05 20:00:00;108 -2003-12-05 22:00:00;105 -2003-12-06 18:00:00;100 -2003-12-06 20:00:00;105 -2003-12-06 22:00:00;103 -2003-12-07 18:00:00;92 -2003-12-07 20:00:00;89 -2003-12-07 22:00:00;93 -2003-12-08 18:00:00;89 -2003-12-08 20:00:00;90 -2003-12-08 22:00:00;91 -2003-12-09 18:00:00;88 -2003-12-09 20:00:00;89 -2003-12-09 22:00:00;89 -2003-12-10 18:00:00;85 -2003-12-10 20:00:00;86 -2003-12-10 22:00:00;88 -2003-12-11 18:00:00;82 -2003-12-11 20:00:00;83 -2003-12-11 22:00:00;84 -2003-12-12 18:00:00;81 -2003-12-12 20:00:00;84 -2003-12-12 22:00:00;85 -2003-12-13 18:00:00;83 -2003-12-13 20:00:00;85 -2003-12-13 22:00:00;86 -2003-12-14 18:00:00;86 -2003-12-14 20:00:00;89 -2003-12-14 22:00:00;90 -2003-12-15 18:00:00;96 -2003-12-15 20:00:00;97 -2003-12-15 22:00:00;99 -2003-12-16 18:00:00;100 -2003-12-16 20:00:00;103 -2003-12-16 22:00:00;103 -2003-12-17 18:00:00;111 -2003-12-17 20:00:00;113 -2003-12-17 22:00:00;114 -2003-12-18 18:00:00;115 -2003-12-18 20:00:00;119 -2003-12-18 22:00:00;119 -2003-12-19 18:00:00;118 -2003-12-19 20:00:00;118 -2003-12-19 22:00:00;125 -2003-12-20 18:00:00;123 -2003-12-20 20:00:00;125 -2003-12-20 22:00:00;127 -2003-12-21 18:00:00;127 -2003-12-21 20:00:00;129 -2003-12-21 22:00:00;129 -2003-12-22 18:00:00;124 -2003-12-22 20:00:00;133 -2003-12-22 22:00:00;137 -2003-12-23 18:00:00;135 -2003-12-23 20:00:00;137 -2003-12-23 22:00:00;137 -2003-12-24 18:00:00;129 -2003-12-24 20:00:00;134 -2003-12-24 22:00:00;136 -2003-12-25 18:00:00;136 -2003-12-25 20:00:00;134 -2003-12-25 22:00:00;134 -2003-12-26 18:00:00;132 -2003-12-26 20:00:00;132 -2003-12-26 22:00:00;131 -2003-12-27 18:00:00;122 -2003-12-27 20:00:00;156 -2003-12-27 22:00:00;124 -2003-12-28 18:00:00;113 -2003-12-28 20:00:00;115 -2003-12-28 22:00:00;116 -2003-12-29 18:00:00;109 -2003-12-29 20:00:00;110 -2003-12-29 22:00:00;113 -2003-12-30 18:00:00;101 -2003-12-30 20:00:00;104 -2003-12-30 22:00:00;104 -2003-12-31 18:00:00;104 -2003-12-31 20:00:00;102 -2003-12-31 22:00:00;123 -2004-01-01 18:00:00;110 -2004-01-01 20:00:00;112 -2004-01-01 22:00:00;113 -2004-01-02 18:00:00;112 -2004-01-02 20:00:00;112 -2004-01-02 22:00:00;113 -2004-01-03 18:00:00;112 -2004-01-03 20:00:00;112 -2004-01-03 22:00:00;116 -2004-01-04 18:00:00;116 -2004-01-04 20:00:00;115 -2004-01-04 22:00:00;119 -2004-01-05 18:00:00;113 -2004-01-05 20:00:00;119 -2004-01-05 22:00:00;121 -2004-01-06 18:00:00;111 -2004-01-06 20:00:00;113 -2004-01-06 22:00:00;116 -2004-01-07 18:00:00;111 -2004-01-07 20:00:00;114 -2004-01-07 22:00:00;116 -2004-01-08 18:00:00;116 -2004-01-08 20:00:00;116 -2004-01-08 22:00:00;117 -2004-01-09 18:00:00;113 -2004-01-09 20:00:00;114 -2004-01-09 22:00:00;116 -2004-01-10 18:00:00;115 -2004-01-10 20:00:00;115 -2004-01-10 22:00:00;117 -2004-01-11 18:00:00;112 -2004-01-11 20:00:00;114 -2004-01-11 22:00:00;117 -2004-01-12 18:00:00;111 -2004-01-12 20:00:00;114 -2004-01-12 22:00:00;114 -2004-01-13 18:00:00;113 -2004-01-13 20:00:00;114 -2004-01-13 22:00:00;115 -2004-01-14 18:00:00;115 -2004-01-14 20:00:00;117 -2004-01-14 22:00:00;116 -2004-01-15 18:00:00;115 -2004-01-15 20:00:00;115 -2004-01-15 22:00:00;112 -2004-01-16 18:00:00;115 -2004-01-16 20:00:00;116 -2004-01-16 22:00:00;116 -2004-01-17 18:00:00;119 -2004-01-17 20:00:00;118 -2004-01-17 22:00:00;118 -2004-01-18 18:00:00;111 -2004-01-18 20:00:00;115 -2004-01-18 22:00:00;112 -2004-01-19 18:00:00;127 -2004-01-19 20:00:00;130 -2004-01-19 22:00:00;124 -2004-01-20 18:00:00;122 -2004-01-20 20:00:00;124 -2004-01-20 22:00:00;126 -2004-01-21 18:00:00;126 -2004-01-21 20:00:00;126 -2004-01-21 22:00:00;126 -2004-01-22 18:00:00;121 -2004-01-22 20:00:00;117 -2004-01-22 22:00:00;118 -2004-01-23 18:00:00;112 -2004-01-23 20:00:00;111 -2004-01-23 22:00:00;111 -2004-01-24 18:00:00;103 -2004-01-24 20:00:00;104 -2004-01-24 22:00:00;98 -2004-01-25 18:00:00;99 -2004-01-25 20:00:00;99 -2004-01-25 22:00:00;100 -2004-01-26 18:00:00;95 -2004-01-26 20:00:00;95 -2004-01-26 22:00:00;94 -2004-01-27 18:00:00;91 -2004-01-27 20:00:00;90 -2004-01-27 22:00:00;91 -2004-01-28 18:00:00;86 -2004-01-28 20:00:00;85 -2004-01-28 22:00:00;85 -2004-01-29 18:00:00;84 -2004-01-29 20:00:00;84 -2004-01-29 22:00:00;84 -2004-01-30 18:00:00;91 -2004-01-30 20:00:00;89 -2004-01-30 22:00:00;89 -2004-01-31 18:00:00;91 -2004-01-31 20:00:00;91 -2004-01-31 22:00:00;92 -2004-02-01 18:00:00;94 -2004-02-01 20:00:00;94 -2004-02-01 22:00:00;95 -2004-02-02 18:00:00;97 -2004-02-02 20:00:00;98 -2004-02-02 22:00:00;101 -2004-02-03 18:00:00;97 -2004-02-03 20:00:00;96 -2004-02-03 22:00:00;97 -2004-02-04 18:00:00;98 -2004-02-04 20:00:00;98 -2004-02-04 22:00:00;98 -2004-02-05 18:00:00;101 -2004-02-05 20:00:00;102 -2004-02-05 22:00:00;102 -2004-02-06 18:00:00;102 -2004-02-06 20:00:00;103 -2004-02-06 22:00:00;105 -2004-02-07 18:00:00;107 -2004-02-07 20:00:00;108 -2004-02-07 22:00:00;108 -2004-02-08 18:00:00;113 -2004-02-08 20:00:00;113 -2004-02-08 22:00:00;117 -2004-02-09 18:00:00;114 -2004-02-09 20:00:00;114 -2004-02-09 22:00:00;114 -2004-02-10 18:00:00;114 -2004-02-10 20:00:00;113 -2004-02-10 22:00:00;115 -2004-02-11 18:00:00;111 -2004-02-11 20:00:00;111 -2004-02-11 22:00:00;112 -2004-02-12 18:00:00;108 -2004-02-12 20:00:00;109 -2004-02-12 22:00:00;109 -2004-02-13 18:00:00;106 -2004-02-13 20:00:00;105 -2004-02-13 22:00:00;105 -2004-02-14 18:00:00;101 -2004-02-14 20:00:00;101 -2004-02-14 22:00:00;103 -2004-02-15 18:00:00;100 -2004-02-15 20:00:00;99 -2004-02-15 22:00:00;99 -2004-02-16 18:00:00;97 -2004-02-16 20:00:00;96 -2004-02-16 22:00:00;96 -2004-02-17 18:00:00;96 -2004-02-17 20:00:00;99 -2004-02-17 22:00:00;98 -2004-02-18 18:00:00;94 -2004-02-18 20:00:00;95 -2004-02-18 22:00:00;95 -2004-02-19 18:00:00;93 -2004-02-19 20:00:00;94 -2004-02-19 22:00:00;94 -2004-02-20 18:00:00;92 -2004-02-20 20:00:00;93 -2004-02-20 22:00:00;92 -2004-02-21 18:00:00;93 -2004-02-21 20:00:00;96 -2004-02-21 22:00:00;97 -2004-02-22 18:00:00;101 -2004-02-22 20:00:00;101 -2004-02-22 22:00:00;101 -2004-02-23 18:00:00;102 -2004-02-23 20:00:00;102 -2004-02-23 22:00:00;102 -2004-02-24 18:00:00;107 -2004-02-24 20:00:00;103 -2004-02-24 22:00:00;105 -2004-02-25 18:00:00;111 -2004-02-25 20:00:00;116 -2004-02-25 22:00:00;114 -2004-02-26 18:00:00;116 -2004-02-26 20:00:00;118 -2004-02-26 22:00:00;121 -2004-02-27 18:00:00;119 -2004-02-27 20:00:00;119 -2004-02-27 22:00:00;121 -2004-02-28 18:00:00;113 -2004-02-28 20:00:00;113 -2004-02-28 22:00:00;113 -2004-02-29 18:00:00;108 -2004-02-29 20:00:00;108 -2004-02-29 22:00:00;106 -2004-03-01 17:00:00;99 -2004-03-01 20:00:00;100 -2004-03-01 23:00:00;99 -2004-03-02 17:00:00;98 -2004-03-02 20:00:00;97 -2004-03-02 23:00:00;96 -2004-03-03 17:00:00;91 -2004-03-03 20:00:00;88 -2004-03-03 23:00:00;94 -2004-03-04 17:00:00;94 -2004-03-04 20:00:00;95 -2004-03-04 23:00:00;100 -2004-03-05 17:00:00;101 -2004-03-05 20:00:00;105 -2004-03-05 23:00:00;103 -2004-03-06 17:00:00;102 -2004-03-06 20:00:00;102 -2004-03-06 23:00:00;103 -2004-03-07 17:00:00;102 -2004-03-07 20:00:00;104 -2004-03-07 23:00:00;106 -2004-03-08 17:00:00;105 -2004-03-08 20:00:00;106 -2004-03-08 23:00:00;108 -2004-03-09 17:00:00;106 -2004-03-09 20:00:00;107 -2004-03-09 23:00:00;108 -2004-03-10 17:00:00;112 -2004-03-10 20:00:00;111 -2004-03-10 23:00:00;113 -2004-03-11 17:00:00;111 -2004-03-11 20:00:00;111 -2004-03-11 23:00:00;111 -2004-03-12 17:00:00;106 -2004-03-12 20:00:00;106 -2004-03-12 23:00:00;106 -2004-03-13 17:00:00;104 -2004-03-13 20:00:00;102 -2004-03-13 23:00:00;103 -2004-03-14 17:00:00;100 -2004-03-14 20:00:00;101 -2004-03-14 23:00:00;101 -2004-03-15 17:00:00;99 -2004-03-15 20:00:00;100 -2004-03-15 23:00:00;100 -2004-03-16 17:00:00;104 -2004-03-16 20:00:00;108 -2004-03-16 23:00:00;107 -2004-03-17 17:00:00;107 -2004-03-17 20:00:00;108 -2004-03-17 23:00:00;109 -2004-03-18 17:00:00;113 -2004-03-18 20:00:00;114 -2004-03-18 23:00:00;118 -2004-03-19 17:00:00;112 -2004-03-19 20:00:00;111 -2004-03-19 23:00:00;111 -2004-03-20 17:00:00;111 -2004-03-20 20:00:00;112 -2004-03-20 23:00:00;112 -2004-03-21 17:00:00;111 -2004-03-21 20:00:00;110 -2004-03-21 23:00:00;110 -2004-03-22 17:00:00;115 -2004-03-22 20:00:00;115 -2004-03-22 23:00:00;116 -2004-03-23 17:00:00;115 -2004-03-23 20:00:00;117 -2004-03-23 23:00:00;117 -2004-03-24 17:00:00;120 -2004-03-24 20:00:00;119 -2004-03-24 23:00:00;121 -2004-03-25 17:00:00;123 -2004-03-25 20:00:00;126 -2004-03-25 23:00:00;125 -2004-03-26 17:00:00;121 -2004-03-26 20:00:00;123 -2004-03-26 23:00:00;125 -2004-03-27 17:00:00;127 -2004-03-27 20:00:00;127 -2004-03-27 23:00:00;127 -2004-03-28 17:00:00;130 -2004-03-28 20:00:00;128 -2004-03-28 23:00:00;130 -2004-03-29 17:00:00;127 -2004-03-29 20:00:00;128 -2004-03-29 23:00:00;134 -2004-03-30 17:00:00;128 -2004-03-30 20:00:00;126 -2004-03-30 23:00:00;126 -2004-03-31 17:00:00;125 -2004-03-31 20:00:00;121 -2004-03-31 23:00:00;119 -2004-04-01 17:00:00;115 -2004-04-01 20:00:00;112 -2004-04-01 23:00:00;114 -2004-04-02 17:00:00;110 -2004-04-02 20:00:00;108 -2004-04-02 23:00:00;107 -2004-04-03 17:00:00;107 -2004-04-03 20:00:00;107 -2004-04-03 23:00:00;109 -2004-04-04 17:00:00;108 -2004-04-04 20:00:00;109 -2004-04-04 23:00:00;109 -2004-04-05 17:00:00;108 -2004-04-05 20:00:00;108 -2004-04-05 23:00:00;108 -2004-04-06 17:00:00;101 -2004-04-06 20:00:00;101 -2004-04-06 23:00:00;102 -2004-04-07 17:00:00;98 -2004-04-07 20:00:00;98 -2004-04-07 23:00:00;98 -2004-04-08 17:00:00;94 -2004-04-08 20:00:00;93 -2004-04-08 23:00:00;93 -2004-04-09 17:00:00;88 -2004-04-09 20:00:00;90 -2004-04-09 23:00:00;89 -2004-04-10 17:00:00;87 -2004-04-10 20:00:00;88 -2004-04-10 23:00:00;88 -2004-04-11 17:00:00;89 -2004-04-11 20:00:00;90 -2004-04-11 23:00:00;91 -2004-04-12 17:00:00;91 -2004-04-12 20:00:00;91 -2004-04-12 23:00:00;92 -2004-04-13 17:00:00;93 -2004-04-13 20:00:00;93 -2004-04-13 23:00:00;95 -2004-04-14 17:00:00;95 -2004-04-14 20:00:00;95 -2004-04-14 23:00:00;97 -2004-04-15 17:00:00;97 -2004-04-15 20:00:00;97 -2004-04-15 23:00:00;97 -2004-04-16 17:00:00;96 -2004-04-16 20:00:00;97 -2004-04-16 23:00:00;97 -2004-04-17 17:00:00;98 -2004-04-17 20:00:00;99 -2004-04-17 23:00:00;99 -2004-04-18 17:00:00;106 -2004-04-18 20:00:00;110 -2004-04-18 23:00:00;107 -2004-04-19 17:00:00;112 -2004-04-19 20:00:00;114 -2004-04-19 23:00:00;111 -2004-04-20 17:00:00;108 -2004-04-20 20:00:00;111 -2004-04-20 23:00:00;110 -2004-04-21 17:00:00;113 -2004-04-21 20:00:00;113 -2004-04-21 23:00:00;110 -2004-04-22 17:00:00;115 -2004-04-22 20:00:00;118 -2004-04-22 23:00:00;117 -2004-04-23 17:00:00;115 -2004-04-23 20:00:00;116 -2004-04-23 23:00:00;114 -2004-04-24 17:00:00;113 -2004-04-24 20:00:00;112 -2004-04-24 23:00:00;112 -2004-04-25 17:00:00;110 -2004-04-25 20:00:00;108 -2004-04-25 23:00:00;107 -2004-04-26 17:00:00;102 -2004-04-26 20:00:00;100 -2004-04-26 23:00:00;101 -2004-04-27 17:00:00;96 -2004-04-27 20:00:00;96 -2004-04-27 23:00:00;94 -2004-04-28 17:00:00;91 -2004-04-28 20:00:00;90 -2004-04-28 23:00:00;91 -2004-04-29 17:00:00;89 -2004-04-29 20:00:00;89 -2004-04-29 23:00:00;89 -2004-04-30 17:00:00;90 -2004-04-30 20:00:00;90 -2004-04-30 23:00:00;92 -2004-05-01 17:00:00;98 -2004-05-01 20:00:00;95 -2004-05-01 23:00:00;97 -2004-05-02 17:00:00;101 -2004-05-02 20:00:00;99 -2004-05-02 23:00:00;96 -2004-05-03 17:00:00;93 -2004-05-03 20:00:00;92 -2004-05-03 23:00:00;92 -2004-05-04 17:00:00;90 -2004-05-04 20:00:00;88 -2004-05-04 23:00:00;90 -2004-05-05 17:00:00;89 -2004-05-05 20:00:00;90 -2004-05-05 23:00:00;89 -2004-05-06 17:00:00;88 -2004-05-06 20:00:00;88 -2004-05-06 23:00:00;88 -2004-05-07 17:00:00;86 -2004-05-07 20:00:00;86 -2004-05-07 23:00:00;87 -2004-05-08 17:00:00;88 -2004-05-08 20:00:00;88 -2004-05-08 23:00:00;89 -2004-05-09 17:00:00;96 -2004-05-09 20:00:00;95 -2004-05-09 23:00:00;96 -2004-05-10 17:00:00;95 -2004-05-10 20:00:00;94 -2004-05-10 23:00:00;94 -2004-05-11 17:00:00;93 -2004-05-11 20:00:00;92 -2004-05-11 23:00:00;95 -2004-05-12 17:00:00;99 -2004-05-12 20:00:00;100 -2004-05-12 23:00:00;99 -2004-05-13 17:00:00;103 -2004-05-13 20:00:00;103 -2004-05-13 23:00:00;105 -2004-05-14 17:00:00;111 -2004-05-14 20:00:00;112 -2004-05-14 23:00:00;113 -2004-05-15 17:00:00;119 -2004-05-15 20:00:00;117 -2004-05-15 23:00:00;118 -2004-05-16 17:00:00;121 -2004-05-16 20:00:00;121 -2004-05-16 23:00:00;119 -2004-05-17 17:00:00;114 -2004-05-17 20:00:00;113 -2004-05-17 23:00:00;115 -2004-05-18 17:00:00;112 -2004-05-18 20:00:00;110 -2004-05-18 23:00:00;109 -2004-05-19 17:00:00;107 -2004-05-19 20:00:00;111 -2004-05-19 23:00:00;110 -2004-05-20 17:00:00;107 -2004-05-20 20:00:00;107 -2004-05-20 23:00:00;107 -2004-05-21 17:00:00;109 -2004-05-21 20:00:00;109 -2004-05-21 23:00:00;111 -2004-05-22 17:00:00;104 -2004-05-22 20:00:00;105 -2004-05-22 23:00:00;105 -2004-05-23 17:00:00;106 -2004-05-23 20:00:00;106 -2004-05-23 23:00:00;107 -2004-05-24 17:00:00;107 -2004-05-24 20:00:00;107 -2004-05-24 23:00:00;111 -2004-05-25 17:00:00;107 -2004-05-25 20:00:00;105 -2004-05-25 23:00:00;103 -2004-05-26 17:00:00;106 -2004-05-26 20:00:00;106 -2004-05-26 23:00:00;105 -2004-05-27 17:00:00;105 -2004-05-27 20:00:00;104 -2004-05-27 23:00:00;103 -2004-05-28 17:00:00;108 -2004-05-28 20:00:00;105 -2004-05-28 23:00:00;106 -2004-05-29 17:00:00;102 -2004-05-29 20:00:00;104 -2004-05-29 23:00:00;104 -2004-05-30 17:00:00;101 -2004-05-30 20:00:00;102 -2004-05-30 23:00:00;98 -2004-05-31 17:00:00;98 -2004-05-31 20:00:00;98 -2004-05-31 23:00:00;97 -2004-06-01 17:00:00;93 -2004-06-01 20:00:00;92 -2004-06-01 23:00:00;92 -2004-06-02 17:00:00;92 -2004-06-02 20:00:00;93 -2004-06-02 23:00:00;92 -2004-06-03 17:00:00;95 -2004-06-03 20:00:00;92 -2004-06-03 23:00:00;92 -2004-06-04 17:00:00;92 -2004-06-04 20:00:00;92 -2004-06-04 23:00:00;92 -2004-06-05 17:00:00;90 -2004-06-05 20:00:00;87 -2004-06-05 23:00:00;89 -2004-06-06 17:00:00;90 -2004-06-06 20:00:00;91 -2004-06-06 23:00:00;94 -2004-06-07 17:00:00;91 -2004-06-07 20:00:00;91 -2004-06-07 23:00:00;91 -2004-06-08 17:00:00;88 -2004-06-08 20:00:00;88 -2004-06-08 23:00:00;88 -2004-06-09 17:00:00;87 -2004-06-09 20:00:00;87 -2004-06-09 23:00:00;88 -2004-06-10 17:00:00;87 -2004-06-10 20:00:00;85 -2004-06-10 23:00:00;88 -2004-06-11 17:00:00;86 -2004-06-11 20:00:00;86 -2004-06-11 23:00:00;85 -2004-06-12 17:00:00;90 -2004-06-12 20:00:00;90 -2004-06-12 23:00:00;92 -2004-06-13 17:00:00;95 -2004-06-13 20:00:00;98 -2004-06-13 23:00:00;99 -2004-06-14 17:00:00;102 -2004-06-14 20:00:00;103 -2004-06-14 23:00:00;105 -2004-06-15 17:00:00;110 -2004-06-15 20:00:00;112 -2004-06-15 23:00:00;112 -2004-06-16 17:00:00;114 -2004-06-16 20:00:00;115 -2004-06-16 23:00:00;116 -2004-06-17 17:00:00;115 -2004-06-17 20:00:00;114 -2004-06-17 23:00:00;116 -2004-06-18 17:00:00;112 -2004-06-18 20:00:00;111 -2004-06-18 23:00:00;112 -2004-06-19 17:00:00;114 -2004-06-19 20:00:00;116 -2004-06-19 23:00:00;117 -2004-06-20 17:00:00;121 -2004-06-20 20:00:00;123 -2004-06-20 23:00:00;121 -2004-06-21 17:00:00;119 -2004-06-21 20:00:00;119 -2004-06-21 23:00:00;119 -2004-06-22 17:00:00;121 -2004-06-22 20:00:00;120 -2004-06-22 23:00:00;121 -2004-06-23 17:00:00;116 -2004-06-23 20:00:00;116 -2004-06-23 23:00:00;117 -2004-06-24 17:00:00;112 -2004-06-24 20:00:00;111 -2004-06-24 23:00:00;112 -2004-06-25 17:00:00;107 -2004-06-25 20:00:00;106 -2004-06-25 23:00:00;106 -2004-06-26 17:00:00;103 -2004-06-26 20:00:00;102 -2004-06-26 23:00:00;101 -2004-06-27 17:00:00;99 -2004-06-27 20:00:00;100 -2004-06-27 23:00:00;98 -2004-06-28 17:00:00;93 -2004-06-28 20:00:00;92 -2004-06-28 23:00:00;92 -2004-06-29 17:00:00;88 -2004-06-29 20:00:00;87 -2004-06-29 23:00:00;87 -2004-06-30 17:00:00;85 -2004-06-30 20:00:00;84 -2004-06-30 23:00:00;84 -2004-07-01 17:00:00;84 -2004-07-01 20:00:00;84 -2004-07-01 23:00:00;84 -2004-07-02 17:00:00;84 -2004-07-02 20:00:00;83 -2004-07-02 23:00:00;83 -2004-07-03 17:00:00;82 -2004-07-03 20:00:00;82 -2004-07-03 23:00:00;82 -2004-07-04 17:00:00;83 -2004-07-04 20:00:00;82 -2004-07-04 23:00:00;82 -2004-07-05 17:00:00;80 -2004-07-05 20:00:00;80 -2004-07-05 23:00:00;81 -2004-07-06 17:00:00;81 -2004-07-06 20:00:00;81 -2004-07-06 23:00:00;81 -2004-07-07 17:00:00;79 -2004-07-07 20:00:00;81 -2004-07-07 23:00:00;82 -2004-07-08 17:00:00;84 -2004-07-08 20:00:00;84 -2004-07-08 23:00:00;87 -2004-07-09 17:00:00;89 -2004-07-09 20:00:00;89 -2004-07-09 23:00:00;89 -2004-07-10 17:00:00;94 -2004-07-10 20:00:00;96 -2004-07-10 23:00:00;97 -2004-07-11 17:00:00;105 -2004-07-11 20:00:00;107 -2004-07-11 23:00:00;108 -2004-07-12 17:00:00;127 -2004-07-12 20:00:00;129 -2004-07-12 23:00:00;129 -2004-07-13 17:00:00;131 -2004-07-13 20:00:00;154 -2004-07-13 23:00:00;140 -2004-07-14 17:00:00;140 -2004-07-14 20:00:00;142 -2004-07-14 23:00:00;143 -2004-07-15 17:00:00;146 -2004-07-15 20:00:00;150 -2004-07-15 23:00:00;148 -2004-07-16 17:00:00;159 -2004-07-16 20:00:00;151 -2004-07-16 23:00:00;149 -2004-07-17 17:00:00;154 -2004-07-17 20:00:00;154 -2004-07-17 23:00:00;160 -2004-07-18 17:00:00;159 -2004-07-18 20:00:00;160 -2004-07-18 23:00:00;164 -2004-07-19 17:00:00;180 -2004-07-19 20:00:00;175 -2004-07-19 23:00:00;175 -2004-07-20 17:00:00;186 -2004-07-20 20:00:00;180 -2004-07-20 23:00:00;180 -2004-07-21 17:00:00;175 -2004-07-21 20:00:00;177 -2004-07-21 23:00:00;181 -2004-07-22 17:00:00;192 -2004-07-22 20:00:00;178 -2004-07-22 23:00:00;202 -2004-07-23 17:00:00;190 -2004-07-23 20:00:00;170 -2004-07-23 23:00:00;167 -2004-07-24 17:00:00;147 -2004-07-24 20:00:00;151 -2004-07-24 23:00:00;149 -2004-07-25 17:00:00;187 -2004-07-25 20:00:00;161 -2004-07-25 23:00:00;143 -2004-07-26 17:00:00;138 -2004-07-26 20:00:00;132 -2004-07-26 23:00:00;131 -2004-07-27 17:00:00;118 -2004-07-27 20:00:00;121 -2004-07-27 23:00:00;113 -2004-07-28 17:00:00;103 -2004-07-28 20:00:00;103 -2004-07-28 23:00:00;105 -2004-07-29 17:00:00;106 -2004-07-29 20:00:00;102 -2004-07-29 23:00:00;101 -2004-07-30 17:00:00;92 -2004-07-30 20:00:00;91 -2004-07-30 23:00:00;91 -2004-07-31 17:00:00;89 -2004-07-31 20:00:00;89 -2004-07-31 23:00:00;87 -2004-08-01 17:00:00;87 -2004-08-01 20:00:00;85 -2004-08-01 23:00:00;87 -2004-08-02 17:00:00;88 -2004-08-02 20:00:00;87 -2004-08-02 23:00:00;89 -2004-08-03 17:00:00;90 -2004-08-03 20:00:00;90 -2004-08-03 23:00:00;90 -2004-08-04 17:00:00;88 -2004-08-04 20:00:00;87 -2004-08-04 23:00:00;89 -2004-08-05 17:00:00;89 -2004-08-05 20:00:00;91 -2004-08-05 23:00:00;92 -2004-08-06 17:00:00;93 -2004-08-06 20:00:00;93 -2004-08-06 23:00:00;94 -2004-08-07 17:00:00;97 -2004-08-07 20:00:00;97 -2004-08-07 23:00:00;99 -2004-08-08 17:00:00;107 -2004-08-08 20:00:00;107 -2004-08-08 23:00:00;112 -2004-08-09 17:00:00;115 -2004-08-09 20:00:00;117 -2004-08-09 23:00:00;120 -2004-08-10 17:00:00;124 -2004-08-10 20:00:00;124 -2004-08-10 23:00:00;127 -2004-08-11 17:00:00;133 -2004-08-11 20:00:00;134 -2004-08-11 23:00:00;139 -2004-08-12 17:00:00;160 -2004-08-12 20:00:00;151 -2004-08-12 23:00:00;146 -2004-08-13 17:00:00;144 -2004-08-13 20:00:00;152 -2004-08-13 23:00:00;141 -2004-08-14 17:00:00;152 -2004-08-14 20:00:00;153 -2004-08-14 23:00:00;154 -2004-08-15 17:00:00;144 -2004-08-15 20:00:00;142 -2004-08-15 23:00:00;142 -2004-08-16 17:00:00;133 -2004-08-16 20:00:00;137 -2004-08-16 23:00:00;140 -2004-08-17 17:00:00;130 -2004-08-17 20:00:00;138 -2004-08-17 23:00:00;139 -2004-08-18 17:00:00;131 -2004-08-18 20:00:00;143 -2004-08-18 23:00:00;135 -2004-08-19 17:00:00;125 -2004-08-19 20:00:00;123 -2004-08-19 23:00:00;123 -2004-08-20 17:00:00;124 -2004-08-20 20:00:00;124 -2004-08-20 23:00:00;123 -2004-08-21 17:00:00;120 -2004-08-21 20:00:00;122 -2004-08-21 23:00:00;120 -2004-08-22 17:00:00;114 -2004-08-22 20:00:00;117 -2004-08-22 23:00:00;117 -2004-08-23 17:00:00;111 -2004-08-23 20:00:00;111 -2004-08-23 23:00:00;110 -2004-08-24 17:00:00;108 -2004-08-24 20:00:00;107 -2004-08-24 23:00:00;107 -2004-08-25 17:00:00;101 -2004-08-25 20:00:00;102 -2004-08-25 23:00:00;102 -2004-08-26 17:00:00;100 -2004-08-26 20:00:00;99 -2004-08-26 23:00:00;98 -2004-08-27 17:00:00;93 -2004-08-27 20:00:00;92 -2004-08-27 23:00:00;91 -2004-08-28 17:00:00;88 -2004-08-28 20:00:00;88 -2004-08-28 23:00:00;88 -2004-08-29 17:00:00;87 -2004-08-29 20:00:00;87 -2004-08-29 23:00:00;88 -2004-08-30 17:00:00;91 -2004-08-30 20:00:00;91 -2004-08-30 23:00:00;91 -2004-08-31 17:00:00;89 -2004-08-31 20:00:00;89 -2004-08-31 23:00:00;90 -2004-09-01 17:00:00;90 -2004-09-01 20:00:00;91 -2004-09-01 23:00:00;92 -2004-09-02 17:00:00;95 -2004-09-02 20:00:00;95 -2004-09-02 23:00:00;96 -2004-09-03 17:00:00;97 -2004-09-03 20:00:00;98 -2004-09-03 23:00:00;99 -2004-09-04 17:00:00;100 -2004-09-04 20:00:00;100 -2004-09-04 23:00:00;102 -2004-09-05 17:00:00;104 -2004-09-05 20:00:00;104 -2004-09-05 23:00:00;106 -2004-09-06 17:00:00;107 -2004-09-06 20:00:00;108 -2004-09-06 23:00:00;110 -2004-09-07 17:00:00;119 -2004-09-07 20:00:00;120 -2004-09-07 23:00:00;121 -2004-09-08 17:00:00;126 -2004-09-08 20:00:00;126 -2004-09-08 23:00:00;128 -2004-09-09 17:00:00;131 -2004-09-09 20:00:00;132 -2004-09-09 23:00:00;133 -2004-09-10 17:00:00;127 -2004-09-10 20:00:00;131 -2004-09-10 23:00:00;128 -2004-09-11 17:00:00;116 -2004-09-11 20:00:00;117 -2004-09-11 23:00:00;118 -2004-09-12 17:00:00;116 -2004-09-12 20:00:00;116 -2004-09-12 23:00:00;116 -2004-09-13 17:00:00;115 -2004-09-13 20:00:00;119 -2004-09-13 23:00:00;119 -2004-09-14 17:00:00;116 -2004-09-14 20:00:00;116 -2004-09-14 23:00:00;113 -2004-09-15 17:00:00;112 -2004-09-15 20:00:00;110 -2004-09-15 23:00:00;110 -2004-09-16 17:00:00;107 -2004-09-16 20:00:00;109 -2004-09-16 23:00:00;107 -2004-09-17 17:00:00;106 -2004-09-17 20:00:00;105 -2004-09-17 23:00:00;105 -2004-09-18 17:00:00;99 -2004-09-18 20:00:00;103 -2004-09-18 23:00:00;105 -2004-09-19 17:00:00;223 -2004-09-19 20:00:00;106 -2004-09-19 23:00:00;108 -2004-09-20 17:00:00;102 -2004-09-20 20:00:00;101 -2004-09-20 23:00:00;102 -2004-09-21 17:00:00;95 -2004-09-21 20:00:00;95 -2004-09-21 23:00:00;96 -2004-09-22 17:00:00;92 -2004-09-22 20:00:00;92 -2004-09-22 23:00:00;92 -2004-09-23 17:00:00;89 -2004-09-23 20:00:00;90 -2004-09-23 23:00:00;91 -2004-09-24 17:00:00;90 -2004-09-24 20:00:00;89 -2004-09-24 23:00:00;91 -2004-09-25 17:00:00;89 -2004-09-25 20:00:00;89 -2004-09-25 23:00:00;90 -2004-09-26 17:00:00;89 -2004-09-26 20:00:00;89 -2004-09-26 23:00:00;91 -2004-09-27 17:00:00;90 -2004-09-27 20:00:00;90 -2004-09-27 23:00:00;90 -2004-09-28 17:00:00;90 -2004-09-28 20:00:00;90 -2004-09-28 23:00:00;89 -2004-09-29 17:00:00;88 -2004-09-29 20:00:00;90 -2004-09-29 23:00:00;90 -2004-09-30 17:00:00;88 -2004-09-30 20:00:00;88 -2004-09-30 23:00:00;89 -2004-10-01 17:00:00;87 -2004-10-01 20:00:00;88 -2004-10-01 23:00:00;88 -2004-10-02 17:00:00;87 -2004-10-02 20:00:00;88 -2004-10-02 23:00:00;88 -2004-10-03 17:00:00;89 -2004-10-03 20:00:00;89 -2004-10-03 23:00:00;90 -2004-10-04 17:00:00;90 -2004-10-04 20:00:00;90 -2004-10-04 23:00:00;92 -2004-10-05 17:00:00;91 -2004-10-05 20:00:00;90 -2004-10-05 23:00:00;92 -2004-10-06 17:00:00;91 -2004-10-06 20:00:00;92 -2004-10-06 23:00:00;92 -2004-10-07 17:00:00;91 -2004-10-07 20:00:00;93 -2004-10-07 23:00:00;94 -2004-10-08 17:00:00;91 -2004-10-08 20:00:00;90 -2004-10-08 23:00:00;91 -2004-10-09 17:00:00;89 -2004-10-09 20:00:00;87 -2004-10-09 23:00:00;89 -2004-10-10 17:00:00;89 -2004-10-10 20:00:00;88 -2004-10-10 23:00:00;89 -2004-10-11 17:00:00;86 -2004-10-11 20:00:00;86 -2004-10-11 23:00:00;87 -2004-10-12 17:00:00;86 -2004-10-12 20:00:00;87 -2004-10-12 23:00:00;87 -2004-10-13 17:00:00;86 -2004-10-13 23:00:00;89 -2004-10-14 17:00:00;89 -2004-10-14 20:00:00;90 -2004-10-14 23:00:00;91 -2004-10-15 17:00:00;88 -2004-10-15 20:00:00;88 -2004-10-15 23:00:00;90 -2004-10-16 17:00:00;90 -2004-10-16 20:00:00;91 -2004-10-16 23:00:00;93 -2004-10-17 17:00:00;92 -2004-10-17 20:00:00;91 -2004-10-17 23:00:00;91 -2004-10-18 17:00:00;95 -2004-10-18 20:00:00;95 -2004-10-18 23:00:00;99 -2004-10-19 17:00:00;97 -2004-10-19 20:00:00;98 -2004-10-19 23:00:00;101 -2004-10-20 17:00:00;110 -2004-10-20 20:00:00;110 -2004-10-20 23:00:00;114 -2004-10-21 17:00:00;112 -2004-10-21 20:00:00;111 -2004-10-21 23:00:00;113 -2004-10-22 17:00:00;121 -2004-10-22 20:00:00;121 -2004-10-22 23:00:00;124 -2004-10-23 17:00:00;134 -2004-10-23 20:00:00;130 -2004-10-23 23:00:00;133 -2004-10-24 17:00:00;136 -2004-10-24 20:00:00;138 -2004-10-24 23:00:00;141 -2004-10-25 17:00:00;137 -2004-10-25 23:00:00;141 -2004-10-26 17:00:00;130 -2004-10-26 20:00:00;135 -2004-10-26 23:00:00;127 -2004-10-27 17:00:00;129 -2004-10-27 20:00:00;127 -2004-10-27 23:00:00;129 -2004-10-28 17:00:00;130.9 -2004-10-28 20:00:00;134.0 -2004-10-28 23:00:00;132 -2004-10-29 17:00:00;128 -2004-10-29 20:00:00;128.8 -2004-10-29 23:00:00;132.3 -2004-10-30 17:00:00;145.8 -2004-10-30 20:00:00;134.4 -2004-10-30 23:00:00;138.2 -2004-10-31 17:00:00;138.2 -2004-10-31 20:00:00;137.1 -2004-10-31 23:00:00;136.3 -2004-11-01 17:00:00;132.0 -2004-11-01 20:00:00;133.4 -2004-11-01 22:00:00;134 -2004-11-02 18:00:00;131.6 -2004-11-02 20:00:00;131.0 -2004-11-02 22:00:00;131.0 -2004-11-03 18:00:00;142.5 -2004-11-03 20:00:00;133.7 -2004-11-03 22:00:00;129.4 -2004-11-04 18:00:00;128.6 -2004-11-04 20:00:00;133.7 -2004-11-04 22:00:00;152.1 -2004-11-05 18:00:00;133.5 -2004-11-05 20:00:00;138.8 -2004-11-05 22:00:00;133.5 -2004-11-06 18:00:00;127.3 -2004-11-06 20:00:00;126.5 -2004-11-06 22:00:00;122.3 -2004-11-07 18:00:00;149.5 -2004-11-07 20:00:00;127.2 -2004-11-07 22:00:00;128.6 -2004-11-08 18:00:00;121.4 -2004-11-08 20:00:00;121.7 -2004-11-08 22:00:00;122.9 -2004-11-09 18:00:00;326.9 -2004-11-09 20:00:00;138.1 -2004-11-09 22:00:00;124.2 -2004-11-10 18:00:00;105.7 -2004-11-10 20:00:00;102.6 -2004-11-10 22:00:00;102.3 -2004-11-11 18:00:00;93.0 -2004-11-11 20:00:00;93.0 -2004-11-11 22:00:00;94.6 -2004-11-12 18:00:00;94.4 -2004-11-12 20:00:00;94.0 -2004-11-12 22:00:00;94.3 -2004-11-13 18:00:00;94.6 -2004-11-13 20:00:00;94.4 -2004-11-13 22:00:00;96.0 -2004-11-14 18:00:00;97.4 -2004-11-14 20:00:00;98.1 -2004-11-14 22:00:00;97.6 -2004-11-15 18:00:00;101.9 -2004-11-15 20:00:00;103.3 -2004-11-15 22:00:00;105.5 -2004-11-16 18:00:00;101.8 -2004-11-16 20:00:00;104.2 -2004-11-16 22:00:00;105.4 -2004-11-17 18:00:00;102.5 -2004-11-17 20:00:00;102.5 -2004-11-17 22:00:00;104.7 -2004-11-18 18:00:00;102.5 -2004-11-18 20:00:00;101.6 -2004-11-18 22:00:00;104.6 -2004-11-19 18:00:00;100.3 -2004-11-19 20:00:00;100.9 -2004-11-19 22:00:00;102.2 -2004-11-20 18:00:00;96.7 -2004-11-20 20:00:00;96.9 -2004-11-20 22:00:00;98.8 -2004-11-21 18:00:00;98.5 -2004-11-21 20:00:00;98.5 -2004-11-21 22:00:00;100.0 -2004-11-22 18:00:00;103.0 -2004-11-22 20:00:00;103.7 -2004-11-22 22:00:00;104.6 -2004-11-23 18:00:00;106.7 -2004-11-23 20:00:00;104.2 -2004-11-23 22:00:00;106.4 -2004-11-24 18:00:00;102.0 -2004-11-24 20:00:00;104.5 -2004-11-24 22:00:00;109.8 -2004-11-25 18:00:00;106.0 -2004-11-25 20:00:00;106.6 -2004-11-25 22:00:00;108.2 -2004-11-26 18:00:00;108.2 -2004-11-26 20:00:00;108.2 -2004-11-26 22:00:00;111.6 -2004-11-27 18:00:00;107.1 -2004-11-27 20:00:00;107.4 -2004-11-27 22:00:00;108.4 -2004-11-28 18:00:00;107.3 -2004-11-28 20:00:00;109.8 -2004-11-28 22:00:00;110.2 -2004-11-29 18:00:00;106.9 -2004-11-29 20:00:00;108.4 -2004-11-29 22:00:00;111.6 -2004-11-30 18:00:00;105.9 -2004-11-30 20:00:00;107.5 -2004-11-30 22:00:00;107.4 -2004-12-01 18:00:00;110.1 -2004-12-01 20:00:00;107.8 -2004-12-01 22:00:00;108.7 -2004-12-02 18:00:00;102.2 -2004-12-02 20:00:00;102.6 -2004-12-02 22:00:00;102.6 -2004-12-03 18:00:00;98.2 -2004-12-03 20:00:00;97.9 -2004-12-03 22:00:00;98.4 -2004-12-04 18:00:00;93.6 -2004-12-04 20:00:00;94.6 -2004-12-04 22:00:00;95.4 -2004-12-05 18:00:00;92.7 -2004-12-05 20:00:00;93.1 -2004-12-05 22:00:00;95.1 -2004-12-06 18:00:00;89.3 -2004-12-06 20:00:00;90.4 -2004-12-06 22:00:00;90.9 -2004-12-07 18:00:00;86.5 -2004-12-07 20:00:00;87.1 -2004-12-07 22:00:00;88.8 -2004-12-08 18:00:00;78.4 -2004-12-08 20:00:00;93.6 -2004-12-08 22:00:00;91.6 -2004-12-09 18:00:00;83.7 -2004-12-09 20:00:00;84.7 -2004-12-09 22:00:00;86.1 -2004-12-10 18:00:00;82.4 -2004-12-10 20:00:00;82.3 -2004-12-10 22:00:00;83.9 -2004-12-11 18:00:00;84.5 -2004-12-11 20:00:00;87.1 -2004-12-11 22:00:00;90.9 -2004-12-12 18:00:00;88.1 -2004-12-12 20:00:00;87.7 -2004-12-12 22:00:00;89.7 -2004-12-13 18:00:00;84.4 -2004-12-13 20:00:00;87.0 -2004-12-13 22:00:00;88.1 -2004-12-14 18:00:00;84.0 -2004-12-14 20:00:00;86.5 -2004-12-14 22:00:00;87.6 -2004-12-15 18:00:00;86.0 -2004-12-15 20:00:00;86.5 -2004-12-15 22:00:00;86.1 -2004-12-16 18:00:00;87 -2004-12-16 20:00:00;87 -2004-12-16 22:00:00;87 -2004-12-17 18:00:00;86 -2004-12-17 20:00:00;87 -2004-12-17 22:00:00;88 -2004-12-18 18:00:00;88 -2004-12-18 20:00:00;87 -2004-12-18 22:00:00;88 -2004-12-19 18:00:00;92 -2004-12-19 20:00:00;90 -2004-12-19 22:00:00;92 -2004-12-20 18:00:00;91 -2004-12-20 20:00:00;90 -2004-12-20 22:00:00;92 -2004-12-21 18:00:00;95 -2004-12-21 20:00:00;97.7 -2004-12-21 22:00:00;97.9 -2004-12-22 18:00:00;95.2 -2004-12-22 20:00:00;95.6 -2004-12-22 22:00:00;96.9 -2004-12-23 18:00:00;93.3 -2004-12-23 20:00:00;93.2 -2004-12-23 22:00:00;94.1 -2004-12-24 18:00:00;93.5 -2004-12-24 20:00:00;94.0 -2004-12-24 22:00:00;94.4 -2004-12-25 18:00:00;89.2 -2004-12-25 20:00:00;90.0 -2004-12-25 22:00:00;91.0 -2004-12-26 18:00:00;85.9 -2004-12-26 20:00:00;88.7 -2004-12-26 22:00:00;92.6 -2004-12-27 18:00:00;91.6 -2004-12-27 20:00:00;93.7 -2004-12-27 22:00:00;95.2 -2004-12-28 18:00:00;108.6 -2004-12-28 20:00:00;101.7 -2004-12-28 22:00:00;99.6 -2004-12-29 18:00:00;97.7 -2004-12-29 20:00:00;95.3 -2004-12-29 22:00:00;98.3 -2004-12-30 18:00:00;96.9 -2004-12-30 20:00:00;96.7 -2004-12-30 22:00:00;97.2 -2004-12-31 18:00:00;92.6 -2004-12-31 20:00:00;95.2 -2004-12-31 22:00:00;97.0 -2005-01-01 18:00:00;93.3 -2005-01-01 20:00:00;95.6 -2005-01-01 22:00:00;97.5 -2005-01-02 18:00:00;95.4 -2005-01-02 20:00:00;96.7 -2005-01-02 22:00:00;95.3 -2005-01-03 18:00:00;88.7 -2005-01-03 20:00:00;91.0 -2005-01-03 22:00:00;90.8 -2005-01-04 18:00:00;84.4 -2005-01-04 20:00:00;85.1 -2005-01-04 22:00:00;85.7 -2005-01-05 18:00:00;84.6 -2005-01-05 20:00:00;84.1 -2005-01-05 22:00:00;83.9 -2005-01-06 18:00:00;80.1 -2005-01-06 20:00:00;80.4 -2005-01-06 22:00:00;81.5 -2005-01-07 18:00:00;79.8 -2005-01-07 20:00:00;80.7 -2005-01-07 22:00:00;81.8 -2005-01-08 18:00:00;82.4 -2005-01-08 20:00:00;84.5 -2005-01-08 22:00:00;84.5 -2005-01-09 18:00:00;86.3 -2005-01-09 20:00:00;84.6 -2005-01-09 22:00:00;87.4 -2005-01-10 18:00:00;86.0 -2005-01-10 20:00:00;87.1 -2005-01-10 22:00:00;89.5 -2005-01-11 18:00:00;90.5 -2005-01-11 20:00:00;91.1 -2005-01-11 22:00:00;92.7 -2005-01-12 18:00:00;97.5 -2005-01-12 20:00:00;98.8 -2005-01-12 22:00:00;99.8 -2005-01-13 18:00:00;109.0 -2005-01-13 20:00:00;111.9 -2005-01-13 22:00:00;113.9 -2005-01-14 18:00:00;123.3 -2005-01-14 20:00:00;125.6 -2005-01-14 22:00:00;131.8 -2005-01-15 18:00:00;142.5 -2005-01-15 20:00:00;140.2 -2005-01-15 22:00:00;175.1 -2005-01-16 18:00:00;139.6 -2005-01-16 20:00:00;139.8 -2005-01-16 22:00:00;144.0 -2005-01-17 18:00:00;134.5 -2005-01-17 20:00:00;133.1 -2005-01-17 22:00:00;134.0 -2005-01-18 18:00:00;129.9 -2005-01-18 20:00:00;120.3 -2005-01-18 22:00:00;126.6 -2005-01-19 18:00:00;130.4 -2005-01-19 20:00:00;128.3 -2005-01-19 22:00:00;127.9 -2005-01-20 18:00:00;118.7 -2005-01-20 20:00:00;118.8 -2005-01-20 22:00:00;119.1 -2005-01-21 18:00:00;111.2 -2005-01-21 20:00:00;109.9 -2005-01-21 22:00:00;110.1 -2005-01-22 18:00:00;101.0 -2005-01-22 20:00:00;99.1 -2005-01-22 22:00:00;100.2 -2005-01-23 18:00:00;92.8 -2005-01-23 20:00:00;92.8 -2005-01-23 22:00:00;93.1 -2005-01-24 18:00:00;90.8 -2005-01-24 20:00:00;91.7 -2005-01-24 22:00:00;91.8 -2005-01-25 18:00:00;87.4 -2005-01-25 20:00:00;91.2 -2005-01-25 22:00:00;91.4 -2005-01-26 18:00:00;87.1 -2005-01-26 20:00:00;86.6 -2005-01-26 22:00:00;86.5 -2005-01-27 18:00:00;82.2 -2005-01-27 20:00:00;84.3 -2005-01-27 22:00:00;84.1 -2005-01-28 18:00:00;82.6 -2005-01-28 20:00:00;82.4 -2005-01-28 22:00:00;83.1 -2005-01-29 18:00:00;82.1 -2005-01-29 20:00:00;83.9 -2005-01-29 22:00:00;83.7 -2005-01-30 18:00:00;82.8 -2005-01-30 20:00:00;82.9 -2005-01-30 22:00:00;83.8 -2005-01-31 18:00:00;83.9 -2005-01-31 20:00:00;83.6 -2005-01-31 22:00:00;84.0 -2005-02-01 18:00:00;81.2 -2005-02-01 20:00:00;81.3 -2005-02-01 22:00:00;81.5 -2005-02-02 18:00:00;79.5 -2005-02-02 20:00:00;79.4 -2005-02-02 22:00:00;80.1 -2005-02-03 18:00:00;80.9 -2005-02-03 20:00:00;80.7 -2005-02-03 22:00:00;81.4 -2005-02-04 18:00:00;82.5 -2005-02-04 20:00:00;79.8 -2005-02-04 22:00:00;84.1 -2005-02-05 18:00:00;90.1 -2005-02-05 20:00:00;92.0 -2005-02-05 22:00:00;93.2 -2005-02-06 18:00:00;97.7 -2005-02-06 20:00:00;94.3 -2005-02-06 22:00:00;94.8 -2005-02-07 18:00:00;99.4 -2005-02-07 20:00:00;100.3 -2005-02-07 22:00:00;100.1 -2005-02-08 18:00:00;105.0 -2005-02-08 20:00:00;105.4 -2005-02-08 22:00:00;107.5 -2005-02-09 18:00:00;105.8 -2005-02-09 20:00:00;105.8 -2005-02-09 22:00:00;106.3 -2005-02-10 18:00:00;109.0 -2005-02-10 20:00:00;111.1 -2005-02-10 22:00:00;110.8 -2005-02-11 18:00:00;112.5 -2005-02-11 20:00:00;111.2 -2005-02-11 22:00:00;112.4 -2005-02-12 18:00:00;113.8 -2005-02-12 20:00:00;113.5 -2005-02-12 22:00:00;113.7 -2005-02-13 18:00:00;112.8 -2005-02-13 20:00:00;112.7 -2005-02-13 22:00:00;115.0 -2005-02-14 18:00:00;114.6 -2005-02-14 20:00:00;115.2 -2005-02-14 22:00:00;114.5 -2005-02-15 18:00:00;117.3 -2005-02-15 20:00:00;118.7 -2005-02-15 22:00:00;115.3 -2005-02-16 18:00:00;110.2 -2005-02-16 20:00:00;110.2 -2005-02-16 22:00:00;110.2 -2005-02-17 18:00:00;108.2 -2005-02-17 20:00:00;108.8 -2005-02-17 22:00:00;106.5 -2005-02-18 18:00:00;101.7 -2005-02-18 20:00:00;101.8 -2005-02-18 22:00:00;102.7 -2005-02-19 18:00:00;96.6 -2005-02-19 20:00:00;96.3 -2005-02-19 22:00:00;96.7 -2005-02-20 18:00:00;92.9 -2005-02-20 20:00:00;93.6 -2005-02-20 22:00:00;94.1 -2005-02-21 18:00:00;91.3 -2005-02-21 20:00:00;92.5 -2005-02-21 22:00:00;92.5 -2005-02-22 18:00:00;89.1 -2005-02-22 20:00:00;90.4 -2005-02-22 22:00:00;89.4 -2005-02-23 18:00:00;84.5 -2005-02-23 20:00:00;82.8 -2005-02-23 22:00:00;82.8 -2005-02-24 18:00:00;79.0 -2005-02-24 20:00:00;78.6 -2005-02-24 22:00:00;78.9 -2005-02-25 18:00:00;76.6 -2005-02-25 20:00:00;76.7 -2005-02-25 22:00:00;76.6 -2005-02-26 18:00:00;75.0 -2005-02-26 20:00:00;75.1 -2005-02-26 22:00:00;75.2 -2005-02-27 18:00:00;74.5 -2005-02-27 20:00:00;74.4 -2005-02-27 22:00:00;74.3 -2005-02-28 18:00:00;73.6 -2005-02-28 20:00:00;73.6 -2005-02-28 22:00:00;73.5 -2005-03-01 17:00:00;72.5 -2005-03-01 20:00:00;72.4 -2005-03-01 23:00:00;73.1 -2005-03-02 17:00:00;73.4 -2005-03-02 20:00:00;73.4 -2005-03-02 23:00:00;73.8 -2005-03-03 17:00:00;76.6 -2005-03-03 20:00:00;75.7 -2005-03-03 23:00:00;76.1 -2005-03-04 17:00:00;77.6 -2005-03-04 20:00:00;77.7 -2005-03-04 23:00:00;78.7 -2005-03-05 17:00:00;79.8 -2005-03-05 20:00:00;79.9 -2005-03-05 23:00:00;80.7 -2005-03-06 17:00:00;81.7 -2005-03-06 20:00:00;82.3 -2005-03-06 23:00:00;83.3 -2005-03-07 17:00:00;85.6 -2005-03-07 20:00:00;85.7 -2005-03-07 23:00:00;87.2 -2005-03-08 17:00:00;91.1 -2005-03-08 20:00:00;92.2 -2005-03-08 23:00:00;94.1 -2005-03-09 17:00:00;97.3 -2005-03-09 20:00:00;98.5 -2005-03-09 23:00:00;100.3 -2005-03-10 17:00:00;100.6 -2005-03-10 20:00:00;100.3 -2005-03-10 23:00:00;101.2 -2005-03-11 17:00:00;104.4 -2005-03-11 20:00:00;103.6 -2005-03-11 23:00:00;104.4 -2005-03-12 17:00:00;108.9 -2005-03-12 20:00:00;108.8 -2005-03-12 23:00:00;110.9 -2005-03-13 17:00:00;112.4 -2005-03-13 20:00:00;112.5 -2005-03-13 23:00:00;112.9 -2005-03-14 17:00:00;113.7 -2005-03-14 20:00:00;110.3 -2005-03-14 23:00:00;110.0 -2005-03-15 17:00:00;107.7 -2005-03-15 20:00:00;107.0 -2005-03-15 23:00:00;107.1 -2005-03-16 17:00:00;102.4 -2005-03-16 20:00:00;103.6 -2005-03-16 23:00:00;100.9 -2005-03-17 17:00:00;100.6 -2005-03-17 20:00:00;100.7 -2005-03-17 23:00:00;101.0 -2005-03-18 17:00:00;96.3 -2005-03-18 20:00:00;95.7 -2005-03-18 23:00:00;95.1 -2005-03-19 17:00:00;89.2 -2005-03-19 20:00:00;92.2 -2005-03-19 23:00:00;91.8 -2005-03-20 17:00:00;85.7 -2005-03-20 20:00:00;88.3 -2005-03-20 23:00:00;85.8 -2005-03-21 17:00:00;88.5 -2005-03-21 20:00:00;89.2 -2005-03-21 23:00:00;90.0 -2005-03-22 17:00:00;87.0 -2005-03-22 20:00:00;86.7 -2005-03-22 23:00:00;88.0 -2005-03-23 17:00:00;87.7 -2005-03-23 20:00:00;87.1 -2005-03-23 23:00:00;87.8 -2005-03-24 17:00:00;87.0 -2005-03-24 20:00:00;86.6 -2005-03-24 23:00:00;86.2 -2005-03-25 17:00:00;82 -2005-03-25 20:00:00;81.7 -2005-03-25 23:00:00;81.3 -2005-03-26 17:00:00;77.7 -2005-03-26 20:00:00;77.4 -2005-03-26 23:00:00;81.2 -2005-03-27 17:00:00;77.0 -2005-03-27 20:00:00;78.1 -2005-03-27 23:00:00;77.1 -2005-03-28 17:00:00;79.3 -2005-03-28 20:00:00;79.4 -2005-03-28 23:00:00;76.7 -2005-03-29 17:00:00;75.9 -2005-03-29 20:00:00;78.6 -2005-03-29 23:00:00;78.5 -2005-03-30 17:00:00;77.3 -2005-03-30 20:00:00;77.5 -2005-03-30 23:00:00;77.5 -2005-03-31 17:00:00;76.4 -2005-03-31 20:00:00;76.5 -2005-03-31 23:00:00;77.1 -2005-04-01 17:00:00;78.2 -2005-04-01 20:00:00;78.2 -2005-04-01 23:00:00;78.5 -2005-04-02 17:00:00;79.6 -2005-04-02 20:00:00;80.2 -2005-04-02 23:00:00;80.8 -2005-04-03 17:00:00;80.2 -2005-04-03 20:00:00;81.1 -2005-04-03 23:00:00;81.9 -2005-04-04 17:00:00;84.4 -2005-04-04 20:00:00;84.9 -2005-04-04 23:00:00;84.7 -2005-04-05 17:00:00;87.7 -2005-04-05 20:00:00;88.5 -2005-04-05 23:00:00;88.1 -2005-04-06 17:00:00;88.3 -2005-04-06 20:00:00;88.2 -2005-04-06 23:00:00;88.8 -2005-04-07 17:00:00;87.7 -2005-04-07 20:00:00;88.0 -2005-04-07 23:00:00;88.1 -2005-04-08 17:00:00;87.6 -2005-04-08 20:00:00;87.9 -2005-04-08 23:00:00;87.7 -2005-04-09 17:00:00;88.1 -2005-04-09 20:00:00;88.8 -2005-04-09 23:00:00;88.3 -2005-04-10 17:00:00;89.0 -2005-04-10 20:00:00;88.6 -2005-04-10 23:00:00;88.0 -2005-04-11 17:00:00;86.6 -2005-04-11 20:00:00;87.9 -2005-04-11 23:00:00;88.7 -2005-04-12 17:00:00;85.6 -2005-04-12 20:00:00;85.3 -2005-04-12 23:00:00;84.2 -2005-04-13 17:00:00;83.8 -2005-04-13 20:00:00;84.0 -2005-04-13 23:00:00;85.0 -2005-04-14 17:00:00;85.9 -2005-04-14 20:00:00;86.0 -2005-04-14 23:00:00;86.8 -2005-04-15 17:00:00;86.0 -2005-04-15 20:00:00;85.5 -2005-04-15 23:00:00;85.3 -2005-04-16 17:00:00;81.8 -2005-04-16 20:00:00;83.6 -2005-04-16 23:00:00;83.7 -2005-04-17 17:00:00;84.8 -2005-04-17 20:00:00;84.2 -2005-04-17 23:00:00;84.0 -2005-04-18 17:00:00;83.1 -2005-04-18 20:00:00;82.0 -2005-04-18 23:00:00;81.8 -2005-04-19 17:00:00;79.2 -2005-04-19 20:00:00;78.9 -2005-04-19 23:00:00;83.2 -2005-04-20 17:00:00;78.0 -2005-04-20 20:00:00;77.8 -2005-04-20 23:00:00;77.9 -2005-04-21 17:00:00;78.1 -2005-04-21 20:00:00;77.9 -2005-04-21 23:00:00;77.9 -2005-04-22 17:00:00;77.7 -2005-04-22 20:00:00;78.1 -2005-04-22 23:00:00;78.1 -2005-04-23 17:00:00;79.4 -2005-04-23 20:00:00;80.2 -2005-04-23 23:00:00;81.0 -2005-04-24 17:00:00;82.7 -2005-04-24 20:00:00;83.2 -2005-04-24 23:00:00;83.5 -2005-04-25 17:00:00;85.2 -2005-04-25 20:00:00;87.1 -2005-04-25 23:00:00;88.2 -2005-04-26 17:00:00;89.5 -2005-04-26 20:00:00;92.1 -2005-04-26 23:00:00;91.2 -2005-04-27 17:00:00;95.7 -2005-04-27 20:00:00;96.6 -2005-04-27 23:00:00;96.1 -2005-04-28 17:00:00;100.0 -2005-04-28 20:00:00;99.4 -2005-04-28 23:00:00;99.8 -2005-04-29 17:00:00;103.5 -2005-04-29 20:00:00;106.5 -2005-04-29 23:00:00;105.1 -2005-04-30 17:00:00;107.2 -2005-04-30 20:00:00;108.0 -2005-04-30 23:00:00;109.7 -2005-05-01 17:00:00;113.6 -2005-05-01 20:00:00;113.4 -2005-05-01 23:00:00;112.8 -2005-05-02 17:00:00;113.3 -2005-05-02 20:00:00;114.0 -2005-05-02 23:00:00;139.3 -2005-05-03 17:00:00;114.6 -2005-05-03 20:00:00;114.2 -2005-05-03 23:00:00;114.7 -2005-05-04 17:00:00;111.8 -2005-05-04 20:00:00;110.6 -2005-05-04 23:00:00;115.3 -2005-05-05 17:00:00;111.7 -2005-05-05 20:00:00;111.0 -2005-05-05 23:00:00;115.4 -2005-05-06 17:00:00;115.9 -2005-05-06 20:00:00;112.4 -2005-05-06 23:00:00;105.1 -2005-05-07 17:00:00;101.8 -2005-05-07 20:00:00;101.8 -2005-05-07 23:00:00;102.0 -2005-05-08 17:00:00;102.5 -2005-05-08 20:00:00;103.2 -2005-05-08 23:00:00;106.3 -2005-05-09 17:00:00;110.6 -2005-05-09 20:00:00;112.2 -2005-05-09 23:00:00;114.2 -2005-05-10 17:00:00;117.1 -2005-05-10 20:00:00;121.6 -2005-05-10 23:00:00;120.8 -2005-05-11 17:00:00;121.2 -2005-05-11 20:00:00;127.9 -2005-05-11 23:00:00;123.5 -2005-05-12 17:00:00;118.8 -2005-05-12 20:00:00;119.9 -2005-05-12 23:00:00;119.2 -2005-05-13 17:00:00;297.1 -2005-05-13 20:00:00;128.6 -2005-05-13 23:00:00;115.5 -2005-05-14 17:00:00;100.8 -2005-05-14 20:00:00;101.7 -2005-05-14 23:00:00;106.9 -2005-05-15 17:00:00;104.1 -2005-05-15 20:00:00;105.2 -2005-05-15 23:00:00;110.9 -2005-05-16 17:00:00;107.8 -2005-05-16 20:00:00;101.4 -2005-05-16 23:00:00;100.8 -2005-05-17 17:00:00;93.6 -2005-05-17 20:00:00;92.0 -2005-05-17 23:00:00;92.0 -2005-05-18 17:00:00;89.1 -2005-05-18 20:00:00;85.8 -2005-05-18 23:00:00;89.3 -2005-05-19 17:00:00;86.7 -2005-05-19 20:00:00;86.7 -2005-05-19 23:00:00;87.4 -2005-05-20 17:00:00;85.0 -2005-05-20 20:00:00;85.6 -2005-05-20 23:00:00;87.2 -2005-05-21 17:00:00;83.8 -2005-05-21 20:00:00;83.9 -2005-05-21 23:00:00;85.0 -2005-05-22 17:00:00;84.2 -2005-05-22 20:00:00;84.2 -2005-05-22 23:00:00;84.4 -2005-05-23 17:00:00;85.5 -2005-05-23 20:00:00;85.5 -2005-05-23 23:00:00;86.9 -2005-05-24 17:00:00;87.6 -2005-05-24 20:00:00;87.4 -2005-05-24 23:00:00;87.5 -2005-05-25 17:00:00;85.9 -2005-05-25 20:00:00;86.0 -2005-05-25 23:00:00;86.1 -2005-05-26 17:00:00;90.1 -2005-05-26 20:00:00;92.8 -2005-05-26 23:00:00;96.1 -2005-05-27 17:00:00;94.3 -2005-05-27 20:00:00;98.1 -2005-05-27 23:00:00;97.3 -2005-05-28 17:00:00;96.7 -2005-05-28 20:00:00;95.1 -2005-05-28 23:00:00;97.7 -2005-05-29 17:00:00;95.7 -2005-05-29 20:00:00;95.3 -2005-05-29 23:00:00;96.3 -2005-05-30 17:00:00;97.6 -2005-05-30 20:00:00;97.5 -2005-05-30 23:00:00;98.1 -2005-05-31 17:00:00;96.8 -2005-05-31 20:00:00;99.0 -2005-05-31 23:00:00;99.0 -2005-06-01 17:00:00;98.6 -2005-06-01 20:00:00;96.9 -2005-06-01 23:00:00;102.4 -2005-06-02 17:00:00;94.6 -2005-06-02 20:00:00;96.0 -2005-06-02 23:00:00;99.6 -2005-06-03 17:00:00;99.9 -2005-06-03 20:00:00;98.0 -2005-06-03 23:00:00;98.9 -2005-06-04 17:00:00;101.0 -2005-06-04 20:00:00;99.8 -2005-06-04 23:00:00;103.7 -2005-06-05 17:00:00;107.6 -2005-06-05 20:00:00;108.6 -2005-06-05 23:00:00;103.6 -2005-06-06 17:00:00;107.9 -2005-06-06 20:00:00;109.2 -2005-06-06 23:00:00;110.4 -2005-06-07 17:00:00;110.2 -2005-06-07 20:00:00;112.4 -2005-06-07 23:00:00;110.4 -2005-06-08 17:00:00;117.6 -2005-06-08 20:00:00;119.3 -2005-06-08 23:00:00;117.7 -2005-06-09 17:00:00;120.5 -2005-06-09 20:00:00;119.7 -2005-06-09 23:00:00;119.6 -2005-06-10 17:00:00;119.8 -2005-06-10 20:00:00;117.9 -2005-06-10 23:00:00;122.6 -2005-06-11 17:00:00;111.1 -2005-06-11 20:00:00;111.4 -2005-06-11 23:00:00;111.1 -2005-06-12 17:00:00;119.0 -2005-06-12 20:00:00;106.3 -2005-06-12 23:00:00;105.2 -2005-06-13 17:00:00;99.6 -2005-06-13 20:00:00;94.7 -2005-06-13 23:00:00;97.5 -2005-06-14 17:00:00;103.0 -2005-06-14 20:00:00;96.8 -2005-06-14 23:00:00;95.3 -2005-06-15 17:00:00;98.3 -2005-06-15 20:00:00;97.5 -2005-06-15 23:00:00;99.2 -2005-06-16 17:00:00;100.2 -2005-06-16 20:00:00;101.3 -2005-06-16 23:00:00;111.2 -2005-06-17 17:00:00;96.4 -2005-06-17 20:00:00;93.7 -2005-06-17 23:00:00;99.0 -2005-06-18 17:00:00;92.5 -2005-06-18 20:00:00;92.9 -2005-06-18 23:00:00;93.0 -2005-06-19 17:00:00;89.7 -2005-06-19 20:00:00;89.8 -2005-06-19 23:00:00;89.1 -2005-06-20 17:00:00;88.6 -2005-06-20 20:00:00;88.9 -2005-06-20 23:00:00;90.0 -2005-06-21 17:00:00;86.6 -2005-06-21 20:00:00;85.5 -2005-06-21 23:00:00;85.5 -2005-06-22 17:00:00;83.8 -2005-06-22 20:00:00;82.1 -2005-06-22 23:00:00;81.9 -2005-06-23 17:00:00;80.3 -2005-06-23 20:00:00;80.1 -2005-06-23 23:00:00;80.4 -2005-06-24 17:00:00;79.2 -2005-06-24 20:00:00;79.2 -2005-06-24 23:00:00;79.5 -2005-06-25 17:00:00;79.7 -2005-06-25 20:00:00;79.3 -2005-06-25 23:00:00;79.8 -2005-06-26 17:00:00;80.8 -2005-06-26 20:00:00;81.3 -2005-06-26 23:00:00;81.8 -2005-06-27 17:00:00;80.7 -2005-06-27 20:00:00;80.0 -2005-06-27 23:00:00;82.7 -2005-06-28 17:00:00;84.9 -2005-06-28 20:00:00;82.6 -2005-06-28 23:00:00;85.2 -2005-06-29 17:00:00;90.2 -2005-06-29 20:00:00;91.2 -2005-06-29 23:00:00;93.4 -2005-06-30 17:00:00;105 -2005-06-30 20:00:00;105 -2005-06-30 23:00:00;106 -2005-07-01 17:00:00;114.0 -2005-07-01 20:00:00;118.5 -2005-07-01 23:00:00;118.9 -2005-07-02 17:00:00;126.0 -2005-07-02 20:00:00;128.0 -2005-07-02 23:00:00;128.2 -2005-07-03 17:00:00;134.3 -2005-07-03 20:00:00;134.1 -2005-07-03 23:00:00;135.8 -2005-07-04 17:00:00;130.4 -2005-07-04 20:00:00;127.8 -2005-07-04 23:00:00;128.8 -2005-07-05 17:00:00;131.1 -2005-07-05 20:00:00;131.0 -2005-07-05 23:00:00;128.6 -2005-07-06 17:00:00;126.9 -2005-07-06 20:00:00;127.2 -2005-07-06 23:00:00;127.5 -2005-07-07 17:00:00;156.3 -2005-07-07 20:00:00;129.1 -2005-07-07 23:00:00;125.5 -2005-07-08 17:00:00;120.0 -2005-07-08 20:00:00;114.2 -2005-07-08 23:00:00;114.1 -2005-07-09 17:00:00;111.9 -2005-07-09 20:00:00;110.2 -2005-07-09 23:00:00;351.9 -2005-07-10 17:00:00;106.3 -2005-07-10 20:00:00;105.2 -2005-07-10 23:00:00;105.9 -2005-07-11 17:00:00;100.7 -2005-07-11 20:00:00;96.4 -2005-07-11 23:00:00;96.7 -2005-07-12 17:00:00;182.9 -2005-07-12 20:00:00;99.4 -2005-07-12 23:00:00;99.7 -2005-07-13 17:00:00;93 -2005-07-13 20:00:00;94 -2005-07-13 23:00:00;94.5 -2005-07-14 17:00:00;91.0 -2005-07-14 20:00:00;92.9 -2005-07-14 23:00:00;90.7 -2005-07-15 17:00:00;107.2 -2005-07-15 20:00:00;90.1 -2005-07-15 23:00:00;87.7 -2005-07-16 17:00:00;79.7 -2005-07-16 20:00:00;78.8 -2005-07-16 23:00:00;78.6 -2005-07-17 17:00:00;77.0 -2005-07-17 20:00:00;76.5 -2005-07-17 23:00:00;76.1 -2005-07-18 17:00:00;74.3 -2005-07-18 20:00:00;74.4 -2005-07-18 23:00:00;74.2 -2005-07-19 17:00:00;73.6 -2005-07-19 20:00:00;73.5 -2005-07-19 23:00:00;74.1 -2005-07-20 17:00:00;74.2 -2005-07-20 20:00:00;74.4 -2005-07-20 23:00:00;74.7 -2005-07-21 17:00:00;74.9 -2005-07-21 20:00:00;75.2 -2005-07-21 23:00:00;75.9 -2005-07-22 17:00:00;76.7 -2005-07-22 20:00:00;75.9 -2005-07-22 23:00:00;75.1 -2005-07-23 17:00:00;82.0 -2005-07-23 20:00:00;82.7 -2005-07-23 23:00:00;83.1 -2005-07-24 17:00:00;82.6 -2005-07-24 20:00:00;82.8 -2005-07-24 23:00:00;84.2 -2005-07-25 17:00:00;85.8 -2005-07-25 20:00:00;86.5 -2005-07-25 23:00:00;87.4 -2005-07-26 17:00:00;88.9 -2005-07-26 20:00:00;89.2 -2005-07-26 23:00:00;90.6 -2005-07-27 17:00:00;92.7 -2005-07-27 20:00:00;93.4 -2005-07-27 23:00:00;95.4 -2005-07-28 17:00:00;97.8 -2005-07-28 20:00:00;98.7 -2005-07-28 23:00:00;105.1 -2005-07-29 17:00:00;107.2 -2005-07-29 20:00:00;106.9 -2005-07-29 23:00:00;105.3 -2005-07-30 17:00:00;107.4 -2005-07-30 20:00:00;108.2 -2005-07-30 23:00:00;110.0 -2005-07-31 17:00:00;112.7 -2005-07-31 20:00:00;113.1 -2005-07-31 23:00:00;112.3 -2005-08-01 17:00:00;116.7 -2005-08-01 20:00:00;114.6 -2005-08-01 23:00:00;115.0 -2005-08-02 17:00:00;113.6 -2005-08-02 20:00:00;113.5 -2005-08-02 23:00:00;115.6 -2005-08-03 17:00:00;113.1 -2005-08-03 20:00:00;112.2 -2005-08-03 23:00:00;113.3 -2005-08-04 17:00:00;109.5 -2005-08-04 20:00:00;109.2 -2005-08-04 23:00:00;108.0 -2005-08-05 17:00:00;103.3 -2005-08-05 20:00:00;101.7 -2005-08-05 23:00:00;99.0 -2005-08-06 17:00:00;95.6 -2005-08-06 20:00:00;96.1 -2005-08-06 23:00:00;96.6 -2005-08-07 17:00:00;94.9 -2005-08-07 20:00:00;94.9 -2005-08-07 23:00:00;95.6 -2005-08-08 17:00:00;89.3 -2005-08-08 20:00:00;88.9 -2005-08-08 23:00:00;88.9 -2005-08-09 17:00:00;85.2 -2005-08-09 20:00:00;84.7 -2005-08-09 23:00:00;84.5 -2005-08-10 17:00:00;79.1 -2005-08-10 20:00:00;78.3 -2005-08-10 23:00:00;78.3 -2005-08-11 17:00:00;78.5 -2005-08-11 20:00:00;77.9 -2005-08-11 23:00:00;77.7 -2005-08-12 17:00:00;77.8 -2005-08-12 20:00:00;78.3 -2005-08-12 23:00:00;78.0 -2005-08-13 17:00:00;77.3 -2005-08-13 20:00:00;77.4 -2005-08-13 23:00:00;77.8 -2005-08-14 17:00:00;77.4 -2005-08-14 20:00:00;76.7 -2005-08-14 23:00:00;77.9 -2005-08-15 17:00:00;77.3 -2005-08-15 20:00:00;77.7 -2005-08-15 23:00:00;78.0 -2005-08-16 17:00:00;77.0 -2005-08-16 20:00:00;77.7 -2005-08-16 23:00:00;77.9 -2005-08-17 17:00:00;78.7 -2005-08-17 20:00:00;78.9 -2005-08-17 23:00:00;80.0 -2005-08-18 17:00:00;83.2 -2005-08-18 20:00:00;84.7 -2005-08-18 23:00:00;86.3 -2005-08-19 17:00:00;95.3 -2005-08-19 20:00:00;95.3 -2005-08-19 23:00:00;96.2 -2005-08-20 17:00:00;99.7 -2005-08-20 20:00:00;100.4 -2005-08-20 23:00:00;98.9 -2005-08-21 17:00:00;101.6 -2005-08-21 20:00:00;100.8 -2005-08-21 23:00:00;102.7 -2005-08-22 17:00:00;387.2 -2005-08-22 20:00:00;160.9 -2005-08-22 23:00:00;107.2 -2005-08-23 17:00:00;478.4 -2005-08-23 20:00:00;114.8 -2005-08-23 23:00:00;109.3 -2005-08-24 17:00:00;103.3 -2005-08-24 20:00:00;100.7 -2005-08-24 23:00:00;100.5 -2005-08-25 17:00:00;95.3 -2005-08-25 20:00:00;94.4 -2005-08-25 23:00:00;95.1 -2005-08-26 17:00:00;96.4 -2005-08-26 20:00:00;95.2 -2005-08-26 23:00:00;98.4 -2005-08-27 17:00:00;93.8 -2005-08-27 20:00:00;94.0 -2005-08-27 23:00:00;95.1 -2005-08-28 17:00:00;92.4 -2005-08-28 20:00:00;91.6 -2005-08-28 23:00:00;91.9 -2005-08-29 17:00:00;89.8 -2005-08-29 20:00:00;90.9 -2005-08-29 23:00:00;93.1 -2005-08-30 17:00:00;88.7 -2005-08-30 20:00:00;87.6 -2005-08-30 23:00:00;87.1 -2005-08-31 17:00:00;87.6 -2005-08-31 20:00:00;85.6 -2005-08-31 23:00:00;85.0 -2005-09-01 17:00:00;81.0 -2005-09-01 20:00:00;80.6 -2005-09-01 23:00:00;81.4 -2005-09-02 17:00:00;79.3 -2005-09-02 20:00:00;78.5 -2005-09-02 23:00:00;78.5 -2005-09-03 17:00:00;75.8 -2005-09-03 20:00:00;75.4 -2005-09-03 23:00:00;75.0 -2005-09-04 17:00:00;79.3 -2005-09-04 20:00:00;75.8 -2005-09-04 23:00:00;75.6 -2005-09-05 17:00:00;75.6 -2005-09-05 20:00:00;76.2 -2005-09-05 23:00:00;77.1 -2005-09-06 17:00:00;82.4 -2005-09-06 20:00:00;84.7 -2005-09-06 23:00:00;100.0 -2005-09-07 17:00:00;93.6 -2005-09-07 20:00:00;118.8 -2005-09-07 23:00:00;95.7 -2005-09-08 17:00:00;92.4 -2005-09-08 20:00:00;95.5 -2005-09-08 23:00:00;126.7 -2005-09-09 17:00:00;100.6 -2005-09-09 20:00:00;717.6 -2005-09-09 23:00:00;315.7 -2005-09-10 17:00:00;123.7 -2005-09-10 20:00:00;117.6 -2005-09-10 23:00:00;638.3 -2005-09-11 17:00:00;115.1 -2005-09-11 20:00:00;111.1 -2005-09-11 23:00:00;118.1 -2005-09-12 17:00:00;117.7 -2005-09-12 20:00:00;119.5 -2005-09-12 23:00:00;125.5 -2005-09-13 17:00:00;115.0 -2005-09-13 20:00:00;305.6 -2005-09-13 23:00:00;138.7 -2005-09-14 17:00:00;115.5 -2005-09-14 20:00:00;117.9 -2005-09-14 23:00:00;119.2 -2005-09-15 17:00:00;117.5 -2005-09-15 20:00:00;120.6 -2005-09-15 23:00:00;114.5 -2005-09-16 17:00:00;112.9 -2005-09-16 20:00:00;135.5 -2005-09-16 23:00:00;108.1 -2005-09-17 17:00:00;105.4 -2005-09-17 20:00:00;104.9 -2005-09-17 23:00:00;105.4 -2005-09-18 17:00:00;105.0 -2005-09-18 20:00:00;103.2 -2005-09-18 23:00:00;100.1 -2005-09-19 17:00:00;94.3 -2005-09-19 20:00:00;91.9 -2005-09-19 23:00:00;92.4 -2005-09-20 17:00:00;90.1 -2005-09-20 20:00:00;88.5 -2005-09-20 23:00:00;90.7 -2005-09-21 17:00:00;87.9 -2005-09-21 20:00:00;86.7 -2005-09-21 23:00:00;87.6 -2005-09-22 17:00:00;84.7 -2005-09-22 20:00:00;84.3 -2005-09-22 23:00:00;85.6 -2005-09-23 17:00:00;82.5 -2005-09-23 20:00:00;83.3 -2005-09-23 23:00:00;83.7 -2005-09-24 17:00:00;81.4 -2005-09-24 20:00:00;81.9 -2005-09-24 23:00:00;82.4 -2005-09-25 17:00:00;81.3 -2005-09-25 20:00:00;81.4 -2005-09-25 23:00:00;81.8 -2005-09-26 17:00:00;81.2 -2005-09-26 20:00:00;81.7 -2005-09-26 23:00:00;82.7 -2005-09-27 17:00:00;77.9 -2005-09-27 20:00:00;77.2 -2005-09-27 23:00:00;77.2 -2005-09-28 17:00:00;75.8 -2005-09-28 20:00:00;74.9 -2005-09-28 23:00:00;75.4 -2005-09-29 17:00:00;74.2 -2005-09-29 20:00:00;74.0 -2005-09-29 23:00:00;74.5 -2005-09-30 17:00:00;72.6 -2005-09-30 20:00:00;72.4 -2005-09-30 23:00:00;73.1 -2005-10-01 17:00:00;72.3 -2005-10-01 20:00:00;72.3 -2005-10-01 23:00:00;72.3 -2005-10-02 17:00:00;74.4 -2005-10-02 20:00:00;75.0 -2005-10-02 23:00:00;75.2 -2005-10-03 17:00:00;70.5 -2005-10-03 20:00:00;74.4 -2005-10-03 23:00:00;75.1 -2005-10-04 17:00:00;80.4 -2005-10-04 20:00:00;82.7 -2005-10-04 23:00:00;84.6 -2005-10-05 17:00:00;80.9 -2005-10-05 20:00:00;81.3 -2005-10-05 23:00:00;81.9 -2005-10-06 17:00:00;80.0 -2005-10-06 20:00:00;79.4 -2005-10-06 23:00:00;79.5 -2005-10-07 17:00:00;78.1 -2005-10-07 20:00:00;78.7 -2005-10-07 23:00:00;79.1 -2005-10-08 17:00:00;78.1 -2005-10-08 20:00:00;78.0 -2005-10-08 23:00:00;78.7 -2005-10-09 17:00:00;78.7 -2005-10-09 20:00:00;78.7 -2005-10-09 23:00:00;79.2 -2005-10-10 17:00:00;78.8 -2005-10-10 20:00:00;78.8 -2005-10-10 23:00:00;79.4 -2005-10-11 17:00:00;77.1 -2005-10-11 20:00:00;77.3 -2005-10-11 23:00:00;78.0 -2005-10-12 17:00:00;75.7 -2005-10-12 20:00:00;76.5 -2005-10-12 23:00:00;77.2 -2005-10-13 17:00:00;77.4 -2005-10-13 20:00:00;77.6 -2005-10-13 23:00:00;78.5 -2005-10-14 17:00:00;77.4 -2005-10-14 20:00:00;78.0 -2005-10-14 23:00:00;78.7 -2005-10-15 17:00:00;77.5 -2005-10-15 20:00:00;79.1 -2005-10-15 23:00:00;79.4 -2005-10-16 17:00:00;78.1 -2005-10-16 20:00:00;78.7 -2005-10-16 23:00:00;79.0 -2005-10-17 17:00:00;78.6 -2005-10-17 20:00:00;77.5 -2005-10-17 23:00:00;78.7 -2005-10-18 17:00:00;77.4 -2005-10-18 20:00:00;77.7 -2005-10-18 23:00:00;78.2 -2005-10-19 17:00:00;76.5 -2005-10-19 20:00:00;77.2 -2005-10-19 23:00:00;78.2 -2005-10-20 17:00:00;75.4 -2005-10-20 20:00:00;76.0 -2005-10-20 23:00:00;76.3 -2005-10-21 17:00:00;74.6 -2005-10-21 20:00:00;74.6 -2005-10-21 23:00:00;75.1 -2005-10-22 17:00:00;74.0 -2005-10-22 20:00:00;74.0 -2005-10-22 23:00:00;74.6 -2005-10-23 17:00:00;73.5 -2005-10-23 20:00:00;73.4 -2005-10-23 23:00:00;74.3 -2005-10-24 17:00:00;72.4 -2005-10-24 20:00:00;72.5 -2005-10-24 23:00:00;73.5 -2005-10-25 17:00:00;71.5 -2005-10-25 20:00:00;72.1 -2005-10-25 23:00:00;73.1 -2005-10-26 17:00:00;71.1 -2005-10-26 20:00:00;71.2 -2005-10-26 23:00:00;72.4 -2005-10-27 17:00:00;70.6 -2005-10-27 20:00:00;70.7 -2005-10-27 23:00:00;71.8 -2005-10-28 17:00:00;71.4 -2005-10-28 20:00:00;72.1 -2005-10-28 23:00:00;73.3 -2005-10-29 17:00:00;72.1 -2005-10-29 20:00:00;73.1 -2005-10-29 23:00:00;74.3 -2005-10-30 17:00:00;73.9 -2005-10-30 20:00:00;74.5 -2005-10-30 23:00:00;75.7 -2005-10-31 17:00:00;77.2 -2005-10-31 20:00:00;76.7 -2005-10-31 23:00:00;77.1 -2005-11-01 17:00:00;75.2 -2005-11-01 20:00:00;76.1 -2005-11-01 23:00:00;76.8 -2005-11-02 18:00:00;75.7 -2005-11-02 20:00:00;76.8 -2005-11-02 22:00:00;76.8 -2005-11-03 18:00:00;75.0 -2005-11-03 20:00:00;75.5 -2005-11-03 22:00:00;75.8 -2005-11-04 18:00:00;75.7 -2005-11-04 20:00:00;76.1 -2005-11-04 22:00:00;77.6 -2005-11-05 18:00:00;76.6 -2005-11-05 20:00:00;77.9 -2005-11-05 22:00:00;79.5 -2005-11-06 18:00:00;79.1 -2005-11-06 20:00:00;80.3 -2005-11-06 22:00:00;80.9 -2005-11-07 18:00:00;78.5 -2005-11-07 20:00:00;78.0 -2005-11-07 22:00:00;79.8 -2005-11-08 18:00:00;77.5 -2005-11-08 20:00:00;77.9 -2005-11-08 22:00:00;79.4 -2005-11-09 18:00:00;76.7 -2005-11-09 20:00:00;76.6 -2005-11-09 22:00:00;77.6 -2005-11-10 18:00:00;76.2 -2005-11-10 20:00:00;76.4 -2005-11-10 22:00:00;76.8 -2005-11-11 18:00:00;75.5 -2005-11-11 20:00:00;77.0 -2005-11-11 22:00:00;77.9 -2005-11-12 18:00:00;82.3 -2005-11-12 20:00:00;81.4 -2005-11-12 22:00:00;81.2 -2005-11-13 18:00:00;86.1 -2005-11-13 20:00:00;86.0 -2005-11-13 22:00:00;87.8 -2005-11-14 18:00:00;91.1 -2005-11-14 20:00:00;90.4 -2005-11-14 22:00:00;92.4 -2005-11-15 18:00:00;93.7 -2005-11-15 20:00:00;97.8 -2005-11-15 22:00:00;92.5 -2005-11-16 18:00:00;91.1 -2005-11-16 20:00:00;91.8 -2005-11-16 22:00:00;93.8 -2005-11-17 18:00:00;94.9 -2005-11-17 20:00:00;98.2 -2005-11-17 22:00:00;100.9 -2005-11-18 18:00:00;97.9 -2005-11-18 20:00:00;98.8 -2005-11-18 22:00:00;98.4 -2005-11-19 18:00:00;98.0 -2005-11-19 20:00:00;99.6 -2005-11-19 22:00:00;101.7 -2005-11-20 18:00:00;94.6 -2005-11-20 20:00:00;94.1 -2005-11-20 22:00:00;95.8 -2005-11-21 18:00:00;92.1 -2005-11-21 20:00:00;92.4 -2005-11-21 22:00:00;93.8 -2005-11-22 18:00:00;89.5 -2005-11-22 20:00:00;90.3 -2005-11-22 22:00:00;92.4 -2005-11-23 18:00:00;87.1 -2005-11-23 20:00:00;87.5 -2005-11-23 22:00:00;88.4 -2005-11-24 18:00:00;85.9 -2005-11-24 20:00:00;84.4 -2005-11-24 22:00:00;85.4 -2005-11-25 18:00:00;79.8 -2005-11-25 20:00:00;77.9 -2005-11-25 22:00:00;77.7 -2005-11-26 18:00:00;78.3 -2005-11-26 20:00:00;78.7 -2005-11-26 22:00:00;79.6 -2005-11-27 18:00:00;78.1 -2005-11-27 20:00:00;78.6 -2005-11-27 22:00:00;80.2 -2005-11-28 18:00:00;78.8 -2005-11-28 20:00:00;79.7 -2005-11-28 22:00:00;80.4 -2005-11-29 18:00:00;86.9 -2005-11-29 20:00:00;82.4 -2005-11-29 22:00:00;82.5 -2005-11-30 18:00:00;89.3 -2005-11-30 20:00:00;92.0 -2005-11-30 22:00:00;91.1 -2005-12-01 18:00:00;93.6 -2005-12-01 20:00:00;95.5 -2005-12-01 22:00:00;97.9 -2005-12-02 18:00:00;101.3 -2005-12-02 20:00:00;103.3 -2005-12-02 22:00:00;124.5 -2005-12-03 18:00:00;97.6 -2005-12-03 20:00:00;98.4 -2005-12-03 22:00:00;98.9 -2005-12-04 18:00:00;91.9 -2005-12-04 20:00:00;92.5 -2005-12-04 22:00:00;92.5 -2005-12-05 18:00:00;88.8 -2005-12-05 20:00:00;89.0 -2005-12-05 22:00:00;88.7 -2005-12-06 18:00:00;85.9 -2005-12-06 20:00:00;86.5 -2005-12-06 22:00:00;86.8 -2005-12-07 18:00:00;82.5 -2005-12-07 20:00:00;86.3 -2005-12-07 22:00:00;84.8 -2005-12-08 18:00:00;85.2 -2005-12-08 20:00:00;86.9 -2005-12-08 22:00:00;87.7 -2005-12-09 18:00:00;85.5 -2005-12-09 20:00:00;86.4 -2005-12-09 22:00:00;87.1 -2005-12-10 18:00:00;86.2 -2005-12-10 20:00:00;88.7 -2005-12-10 22:00:00;89.6 -2005-12-11 18:00:00;87.4 -2005-12-11 20:00:00;90.2 -2005-12-11 22:00:00;90.2 -2005-12-12 18:00:00;84.7 -2005-12-12 20:00:00;85.6 -2005-12-12 22:00:00;84.7 -2005-12-13 18:00:00;84.3 -2005-12-13 20:00:00;85.2 -2005-12-13 22:00:00;89.0 -2005-12-14 18:00:00;84.6 -2005-12-14 20:00:00;86.8 -2005-12-14 22:00:00;86.4 -2005-12-15 18:00:00;82.8 -2005-12-15 20:00:00;84.2 -2005-12-15 22:00:00;84.6 -2005-12-16 18:00:00;81.9 -2005-12-16 20:00:00;83.1 -2005-12-16 22:00:00;84.1 -2005-12-17 18:00:00;81.0 -2005-12-17 20:00:00;82.5 -2005-12-17 22:00:00;82.7 -2005-12-18 18:00:00;81.6 -2005-12-18 20:00:00;82.8 -2005-12-18 22:00:00;84.1 -2005-12-19 18:00:00;84.8 -2005-12-19 20:00:00;86.6 -2005-12-19 22:00:00;86.9 -2005-12-20 18:00:00;84.2 -2005-12-20 20:00:00;84.9 -2005-12-20 22:00:00;86.2 -2005-12-21 18:00:00;82.7 -2005-12-21 20:00:00;83.7 -2005-12-21 22:00:00;85.1 -2005-12-22 18:00:00;88.0 -2005-12-22 20:00:00;84.8 -2005-12-22 22:00:00;89.7 -2005-12-23 18:00:00;89.4 -2005-12-23 20:00:00;90.1 -2005-12-23 22:00:00;91.0 -2005-12-24 18:00:00;88.6 -2005-12-24 20:00:00;88.9 -2005-12-24 22:00:00;90.7 -2005-12-25 18:00:00;87.3 -2005-12-25 20:00:00;88.8 -2005-12-25 22:00:00;90.7 -2005-12-26 18:00:00;88.2 -2005-12-26 20:00:00;89.5 -2005-12-26 22:00:00;90.0 -2005-12-27 18:00:00;84.7 -2005-12-27 20:00:00;89.2 -2005-12-27 22:00:00;89.7 -2005-12-28 18:00:00;85.8 -2005-12-28 20:00:00;86.1 -2005-12-28 22:00:00;84.1 -2005-12-29 18:00:00;85.5 -2005-12-29 20:00:00;87.4 -2005-12-29 22:00:00;93.5 -2005-12-30 18:00:00;85.1 -2005-12-30 20:00:00;86.9 -2005-12-30 22:00:00;88.5 -2005-12-31 18:00:00;81.9 -2005-12-31 20:00:00;84.5 -2005-12-31 22:00:00;86.3 -2006-01-01 18:00:00;83.2 -2006-01-01 20:00:00;84.5 -2006-01-01 22:00:00;85.4 -2006-01-02 18:00:00;80.9 -2006-01-02 20:00:00;81.7 -2006-01-02 22:00:00;82.1 -2006-01-03 18:00:00;80.1 -2006-01-03 20:00:00;82.1 -2006-01-03 22:00:00;82.7 -2006-01-04 18:00:00;80.3 -2006-01-04 20:00:00;81.2 -2006-01-04 22:00:00;81.9 -2006-01-05 18:00:00;78.8 -2006-01-05 20:00:00;80.6 -2006-01-05 22:00:00;81.1 -2006-01-06 18:00:00;78.0 -2006-01-06 20:00:00;79.3 -2006-01-06 22:00:00;79.8 -2006-01-07 18:00:00;75.1 -2006-01-07 20:00:00;76.6 -2006-01-07 22:00:00;77.0 -2006-01-08 18:00:00;75.3 -2006-01-08 20:00:00;75.6 -2006-01-08 22:00:00;76.2 -2006-01-09 18:00:00;73.9 -2006-01-09 20:00:00;75.0 -2006-01-09 22:00:00;75.5 -2006-01-10 18:00:00;73.0 -2006-01-10 20:00:00;75.2 -2006-01-10 22:00:00;75.9 -2006-01-11 18:00:00;73.4 -2006-01-11 20:00:00;74.7 -2006-01-11 22:00:00;75.3 -2006-01-12 18:00:00;72.5 -2006-01-12 20:00:00;74.0 -2006-01-12 22:00:00;74.4 -2006-01-13 18:00:00;72.7 -2006-01-13 20:00:00;74.0 -2006-01-13 22:00:00;74.9 -2006-01-14 18:00:00;74.0 -2006-01-14 20:00:00;74.9 -2006-01-14 22:00:00;75.6 -2006-01-15 18:00:00;77.0 -2006-01-15 20:00:00;78.3 -2006-01-15 22:00:00;80.0 -2006-01-16 18:00:00;80.0 -2006-01-16 20:00:00;81.1 -2006-01-16 22:00:00;81.3 -2006-01-17 18:00:00;76.4 -2006-01-17 20:00:00;79.8 -2006-01-17 22:00:00;81.2 -2006-01-18 18:00:00;81.4 -2006-01-18 20:00:00;82.9 -2006-01-18 22:00:00;84.6 -2006-01-19 18:00:00;85.3 -2006-01-19 20:00:00;85.8 -2006-01-19 22:00:00;86.2 -2006-01-20 18:00:00;87.3 -2006-01-20 20:00:00;87.9 -2006-01-20 22:00:00;89.3 -2006-01-21 18:00:00;90.5 -2006-01-21 20:00:00;90.9 -2006-01-21 22:00:00;90.7 -2006-01-22 18:00:00;89.6 -2006-01-22 20:00:00;89.9 -2006-01-22 22:00:00;90.1 -2006-01-23 18:00:00;87.3 -2006-01-23 20:00:00;89.6 -2006-01-23 22:00:00;91.6 -2006-01-24 18:00:00;88.8 -2006-01-24 20:00:00;89.8 -2006-01-24 22:00:00;88.9 -2006-01-25 18:00:00;87.1 -2006-01-25 20:00:00;86.3 -2006-01-25 22:00:00;87.6 -2006-01-26 18:00:00;84.2 -2006-01-26 20:00:00;84.2 -2006-01-26 22:00:00;84.8 -2006-01-27 18:00:00;80.5 -2006-01-27 20:00:00;81.0 -2006-01-27 22:00:00;81.5 -2006-01-28 18:00:00;56 -2006-01-28 20:00:00;77.6 -2006-01-28 22:00:00;79.3 -2006-01-29 18:00:00;76.2 -2006-01-29 20:00:00;77.2 -2006-01-29 22:00:00;77.8 -2006-01-30 18:00:00;75.5 -2006-01-30 20:00:00;76.5 -2006-01-30 22:00:00;76.8 -2006-01-31 18:00:00;74.7 -2006-01-31 20:00:00;75.3 -2006-01-31 22:00:00;75.6 -2006-02-01 18:00:00;74.6 -2006-02-01 20:00:00;75.3 -2006-02-01 22:00:00;75.4 -2006-02-02 18:00:00;74.7 -2006-02-02 20:00:00;75.1 -2006-02-02 22:00:00;75.4 -2006-02-03 18:00:00;76.6 -2006-02-03 20:00:00;76.4 -2006-02-03 22:00:00;76.5 -2006-02-04 18:00:00;74.7 -2006-02-04 20:00:00;74.9 -2006-02-04 22:00:00;75.2 -2006-02-05 18:00:00;73.6 -2006-02-05 20:00:00;74.2 -2006-02-05 22:00:00;73.9 -2006-02-06 18:00:00;72.9 -2006-02-06 20:00:00;72.9 -2006-02-06 22:00:00;72.9 -2006-02-07 18:00:00;71.9 -2006-02-07 20:00:00;72.0 -2006-02-07 22:00:00;72.6 -2006-02-08 18:00:00;71.3 -2006-02-08 20:00:00;72.0 -2006-02-08 22:00:00;72.6 -2006-02-09 18:00:00;72.4 -2006-02-09 20:00:00;72.8 -2006-02-09 22:00:00;73.0 -2006-02-10 18:00:00;73.0 -2006-02-10 20:00:00;73.2 -2006-02-10 22:00:00;73.7 -2006-02-11 18:00:00;73.8 -2006-02-11 20:00:00;74.1 -2006-02-11 22:00:00;74.7 -2006-02-12 18:00:00;73.3 -2006-02-12 20:00:00;74.1 -2006-02-12 22:00:00;74.3 -2006-02-13 18:00:00;74.2 -2006-02-13 20:00:00;74.4 -2006-02-13 22:00:00;74.9 -2006-02-14 18:00:00;74.6 -2006-02-14 20:00:00;75.4 -2006-02-14 22:00:00;75.8 -2006-02-15 18:00:00;76.2 -2006-02-15 20:00:00;76.6 -2006-02-15 22:00:00;77.1 -2006-02-16 18:00:00;76.7 -2006-02-16 20:00:00;77.3 -2006-02-16 22:00:00;76.8 -2006-02-17 18:00:00;77.3 -2006-02-17 20:00:00;77.3 -2006-02-17 22:00:00;77.6 -2006-02-18 18:00:00;76.3 -2006-02-18 20:00:00;76.7 -2006-02-18 22:00:00;77.4 -2006-02-19 18:00:00;74.7 -2006-02-19 20:00:00;74.8 -2006-02-19 22:00:00;74.6 -2006-02-20 18:00:00;74.3 -2006-02-20 20:00:00;74.5 -2006-02-20 22:00:00;74.5 -2006-02-21 18:00:00;74.1 -2006-02-21 20:00:00;74.2 -2006-02-21 22:00:00;74.3 -2006-02-22 18:00:00;74.2 -2006-02-22 20:00:00;74.4 -2006-02-22 22:00:00;74.0 -2006-02-23 18:00:00;73.4 -2006-02-23 20:00:00;73.6 -2006-02-23 22:00:00;74.3 -2006-02-24 18:00:00;74.4 -2006-02-24 20:00:00;74.4 -2006-02-24 22:00:00;74.7 -2006-02-25 18:00:00;74.4 -2006-02-25 20:00:00;74.5 -2006-02-25 22:00:00;74.5 -2006-02-26 18:00:00;75.0 -2006-02-26 20:00:00;75.0 -2006-02-26 22:00:00;75.2 -2006-02-27 18:00:00;75.5 -2006-02-27 20:00:00;75.5 -2006-02-27 22:00:00;76.2 -2006-02-28 18:00:00;74.6 -2006-02-28 20:00:00;75.7 -2006-02-28 22:00:00;76.5 -2006-03-01 17:00:00;75.2 -2006-03-01 20:00:00;75.6 -2006-03-01 23:00:00;76.0 -2006-03-02 17:00:00;74.9 -2006-03-02 20:00:00;74.7 -2006-03-02 23:00:00;75.1 -2006-03-03 17:00:00;73.8 -2006-03-03 20:00:00;74.2 -2006-03-03 23:00:00;74.8 -2006-03-04 17:00:00;73.4 -2006-03-04 20:00:00;73.8 -2006-03-04 23:00:00;74.1 -2006-03-05 17:00:00;72.6 -2006-03-05 20:00:00;73.0 -2006-03-05 23:00:00;73.0 -2006-03-06 17:00:00;72.1 -2006-03-06 20:00:00;72.5 -2006-03-06 23:00:00;73.1 -2006-03-07 17:00:00;73.3 -2006-03-07 20:00:00;73.3 -2006-03-07 23:00:00;73.6 -2006-03-08 17:00:00;69.9 -2006-03-08 20:00:00;71.3 -2006-03-08 23:00:00;71.3 -2006-03-09 17:00:00;71.1 -2006-03-09 20:00:00;71.8 -2006-03-09 23:00:00;71.6 -2006-03-10 17:00:00;70.8 -2006-03-10 20:00:00;71.2 -2006-03-10 23:00:00;73.0 -2006-03-11 17:00:00;73.0 -2006-03-11 20:00:00;73.1 -2006-03-11 23:00:00;73.5 -2006-03-12 17:00:00;72.2 -2006-03-12 20:00:00;72.3 -2006-03-12 23:00:00;72.4 -2006-03-13 17:00:00;71.2 -2006-03-13 20:00:00;71.7 -2006-03-13 23:00:00;72.3 -2006-03-14 17:00:00;72.4 -2006-03-14 20:00:00;72.8 -2006-03-14 23:00:00;73.2 -2006-03-15 17:00:00;73.1 -2006-03-15 20:00:00;73.4 -2006-03-15 23:00:00;73.1 -2006-03-16 17:00:00;71.4 -2006-03-16 20:00:00;71.7 -2006-03-16 23:00:00;72.3 -2006-03-17 17:00:00;70.9 -2006-03-17 20:00:00;71.3 -2006-03-17 23:00:00;72.6 -2006-03-18 17:00:00;72.3 -2006-03-18 20:00:00;71.7 -2006-03-18 23:00:00;72.6 -2006-03-19 17:00:00;74.6 -2006-03-19 20:00:00;74.6 -2006-03-19 23:00:00;74.2 -2006-03-20 17:00:00;75.5 -2006-03-20 20:00:00;76.2 -2006-03-20 23:00:00;76.0 -2006-03-21 17:00:00;77.3 -2006-03-21 20:00:00;76.1 -2006-03-21 23:00:00;78.0 -2006-03-22 17:00:00;75.9 -2006-03-22 20:00:00;75.4 -2006-03-22 23:00:00;76.1 -2006-03-23 17:00:00;75.5 -2006-03-23 20:00:00;76.1 -2006-03-23 23:00:00;75.8 -2006-03-24 17:00:00;74.9 -2006-03-24 20:00:00;75.4 -2006-03-24 23:00:00;75.3 -2006-03-25 17:00:00;74.8 -2006-03-25 20:00:00;75.2 -2006-03-25 23:00:00;75.0 -2006-03-26 17:00:00;73.4 -2006-03-26 20:00:00;73.3 -2006-03-26 23:00:00;74.1 -2006-03-27 17:00:00;73.4 -2006-03-27 20:00:00;74.0 -2006-03-27 23:00:00;75.4 -2006-03-28 17:00:00;77.7 -2006-03-28 20:00:00;79.0 -2006-03-28 23:00:00;78.6 -2006-03-29 17:00:00;80.9 -2006-03-29 20:00:00;81.5 -2006-03-29 23:00:00;82.7 -2006-03-30 17:00:00;83.4 -2006-03-30 20:00:00;83.7 -2006-03-30 23:00:00;85.0 -2006-03-31 17:00:00;85.0 -2006-03-31 20:00:00;86.1 -2006-03-31 23:00:00;86.0 -2006-04-01 17:00:00;86.6 -2006-04-01 20:00:00;86.9 -2006-04-01 23:00:00;87.2 -2006-04-02 17:00:00;90.7 -2006-04-02 20:00:00;91.1 -2006-04-02 23:00:00;91.7 -2006-04-03 17:00:00;103.0 -2006-04-03 20:00:00;100.4 -2006-04-03 23:00:00;102.7 -2006-04-04 17:00:00;99.6 -2006-04-04 20:00:00;99.6 -2006-04-04 23:00:00;99.9 -2006-04-05 17:00:00;99.6 -2006-04-05 20:00:00;99.1 -2006-04-05 23:00:00;101.0 -2006-04-06 17:00:00;99.4 -2006-04-06 20:00:00;99.1 -2006-04-06 23:00:00;102.1 -2006-04-07 17:00:00;95.6 -2006-04-07 20:00:00;94.7 -2006-04-07 23:00:00;95.4 -2006-04-08 17:00:00;91.1 -2006-04-08 20:00:00;91.3 -2006-04-08 23:00:00;91.1 -2006-04-09 17:00:00;89.1 -2006-04-09 20:00:00;89.5 -2006-04-09 23:00:00;89.8 -2006-04-10 17:00:00;87.4 -2006-04-10 20:00:00;89.1 -2006-04-10 23:00:00;88.1 -2006-04-11 17:00:00;85.1 -2006-04-11 20:00:00;90.1 -2006-04-11 23:00:00;85.2 -2006-04-12 17:00:00;81.8 -2006-04-12 20:00:00;81.6 -2006-04-12 23:00:00;81.8 -2006-04-13 17:00:00;80.3 -2006-04-13 20:00:00;80.5 -2006-04-13 23:00:00;80.0 -2006-04-14 17:00:00;78.7 -2006-04-14 20:00:00;79.4 -2006-04-14 23:00:00;79.4 -2006-04-15 17:00:00;78.1 -2006-04-15 20:00:00;78.9 -2006-04-15 23:00:00;79.0 -2006-04-16 17:00:00;77.3 -2006-04-16 20:00:00;77.0 -2006-04-16 23:00:00;77.4 -2006-04-17 17:00:00;76.7 -2006-04-17 20:00:00;78.5 -2006-04-17 23:00:00;77.1 -2006-04-18 17:00:00;76.1 -2006-04-18 23:00:00;76.5 -2006-04-19 17:00:00;75.9 -2006-04-19 20:00:00;76.5 -2006-04-19 23:00:00;76.7 -2006-04-20 17:00:00;78.9 -2006-04-20 20:00:00;79.3 -2006-04-20 23:00:00;79.5 -2006-04-21 17:00:00;79.5 -2006-04-21 20:00:00;80.0 -2006-04-21 23:00:00;81.2 -2006-04-22 17:00:00;84.0 -2006-04-22 20:00:00;83.2 -2006-04-22 23:00:00;84.5 -2006-04-23 17:00:00;86.7 -2006-04-23 20:00:00;87.7 -2006-04-23 23:00:00;88.6 -2006-04-24 17:00:00;92.3 -2006-04-24 20:00:00;93.9 -2006-04-24 23:00:00;94.4 -2006-04-25 17:00:00;97.8 -2006-04-25 20:00:00;96.3 -2006-04-25 23:00:00;97.7 -2006-04-26 17:00:00;101.4 -2006-04-26 20:00:00;101.3 -2006-04-26 23:00:00;100.9 -2006-04-27 17:00:00;108.1 -2006-04-27 20:00:00;102.0 -2006-04-27 23:00:00;102.8 -2006-04-28 17:00:00;102.8 -2006-04-28 20:00:00;101.5 -2006-04-28 23:00:00;102.8 -2006-04-29 17:00:00;104.0 -2006-04-29 20:00:00;102.7 -2006-04-29 23:00:00;103.9 -2006-04-30 17:00:00;101.7 -2006-04-30 20:00:00;101.4 -2006-04-30 23:00:00;100.6 -2006-05-01 17:00:00;97.4 -2006-05-01 20:00:00;94.8 -2006-05-01 23:00:00;92.9 -2006-05-02 17:00:00;90.5 -2006-05-02 20:00:00;90.9 -2006-05-02 23:00:00;91.5 -2006-05-03 17:00:00;90.5 -2006-05-03 20:00:00;90.4 -2006-05-03 23:00:00;90.9 -2006-05-04 17:00:00;92.1 -2006-05-04 20:00:00;93.4 -2006-05-04 23:00:00;92.0 -2006-05-05 17:00:00;89.0 -2006-05-05 20:00:00;88.2 -2006-05-05 23:00:00;89.3 -2006-05-06 17:00:00;87.9 -2006-05-06 20:00:00;88.6 -2006-05-06 23:00:00;87.7 -2006-05-07 17:00:00;87.3 -2006-05-07 20:00:00;87.8 -2006-05-07 23:00:00;88.2 -2006-05-08 17:00:00;86.1 -2006-05-08 20:00:00;86.3 -2006-05-08 23:00:00;86.6 -2006-05-09 17:00:00;84.0 -2006-05-09 20:00:00;84.2 -2006-05-09 23:00:00;83.6 -2006-05-10 17:00:00;79.7 -2006-05-10 20:00:00;79.8 -2006-05-10 23:00:00;79.3 -2006-05-11 17:00:00;77.1 -2006-05-11 20:00:00;77.9 -2006-05-11 23:00:00;78.1 -2006-05-12 17:00:00;76.7 -2006-05-12 20:00:00;77.3 -2006-05-12 23:00:00;77.0 -2006-05-13 17:00:00;75.1 -2006-05-13 20:00:00;75.0 -2006-05-13 23:00:00;75.0 -2006-05-14 17:00:00;73.7 -2006-05-14 20:00:00;73.6 -2006-05-14 23:00:00;74.0 -2006-05-15 17:00:00;73.3 -2006-05-15 20:00:00;73.2 -2006-05-15 23:00:00;73.4 -2006-05-16 17:00:00;72.3 -2006-05-16 20:00:00;73.1 -2006-05-16 23:00:00;73.4 -2006-05-17 17:00:00;73.1 -2006-05-17 20:00:00;73.6 -2006-05-17 23:00:00;75.0 -2006-05-18 17:00:00;74.5 -2006-05-18 20:00:00;75.0 -2006-05-18 23:00:00;75.2 -2006-05-19 17:00:00;76.5 -2006-05-19 20:00:00;77.1 -2006-05-19 23:00:00;77.9 -2006-05-20 17:00:00;77.7 -2006-05-20 20:00:00;78.0 -2006-05-20 23:00:00;79.1 -2006-05-21 17:00:00;78.7 -2006-05-21 20:00:00;79.4 -2006-05-21 23:00:00;79.8 -2006-05-22 17:00:00;83.2 -2006-05-22 20:00:00;85.1 -2006-05-22 23:00:00;84.0 -2006-05-23 17:00:00;86.8 -2006-05-23 20:00:00;86.3 -2006-05-23 23:00:00;87.0 -2006-05-24 17:00:00;85.4 -2006-05-24 20:00:00;85.9 -2006-05-24 23:00:00;85.7 -2006-05-25 17:00:00;84.2 -2006-05-25 20:00:00;85.9 -2006-05-25 23:00:00;85.2 -2006-05-26 17:00:00;83.8 -2006-05-26 20:00:00;83.8 -2006-05-26 23:00:00;84.4 -2006-05-27 17:00:00;85.5 -2006-05-27 20:00:00;85.2 -2006-05-27 23:00:00;86.5 -2006-05-28 17:00:00;87.1 -2006-05-28 20:00:00;87.0 -2006-05-28 23:00:00;86.7 -2006-05-29 17:00:00;82.8 -2006-05-29 20:00:00;83.3 -2006-05-29 23:00:00;83.8 -2006-05-30 17:00:00;82.0 -2006-05-30 20:00:00;82.3 -2006-05-30 23:00:00;82.4 -2006-05-31 17:00:00;80.9 -2006-05-31 20:00:00;80.6 -2006-05-31 23:00:00;80.3 -2006-06-01 17:00:00;79.3 -2006-06-01 20:00:00;79.4 -2006-06-01 23:00:00;79.6 -2006-06-02 17:00:00;76.6 -2006-06-02 20:00:00;77.5 -2006-06-02 23:00:00;78.7 -2006-06-03 17:00:00;77.8 -2006-06-03 20:00:00;78.1 -2006-06-03 23:00:00;78.4 -2006-06-04 17:00:00;77.6 -2006-06-04 20:00:00;77.8 -2006-06-04 23:00:00;79.2 -2006-06-05 17:00:00;79.5 -2006-06-05 20:00:00;80.2 -2006-06-05 23:00:00;79.9 -2006-06-06 17:00:00;80.0 -2006-06-06 20:00:00;80.3 -2006-06-06 23:00:00;81.9 -2006-06-07 17:00:00;85.1 -2006-06-07 20:00:00;85.2 -2006-06-07 23:00:00;85.9 -2006-06-08 17:00:00;84.1 -2006-06-08 20:00:00;82.5 -2006-06-08 23:00:00;83.2 -2006-06-09 17:00:00;80.3 -2006-06-09 20:00:00;80.0 -2006-06-09 23:00:00;80.6 -2006-06-10 17:00:00;79.6 -2006-06-10 20:00:00;78.5 -2006-06-10 23:00:00;79.5 -2006-06-11 17:00:00;76.6 -2006-06-11 20:00:00;76.7 -2006-06-11 23:00:00;77.2 -2006-06-12 17:00:00;75.8 -2006-06-12 20:00:00;76.5 -2006-06-12 23:00:00;77.0 -2006-06-13 17:00:00;78.7 -2006-06-13 20:00:00;79.5 -2006-06-13 23:00:00;79.8 -2006-06-14 17:00:00;78.7 -2006-06-14 20:00:00;77.7 -2006-06-14 23:00:00;78.3 -2006-06-15 17:00:00;78.6 -2006-06-15 20:00:00;78.8 -2006-06-15 23:00:00;79.3 -2006-06-16 17:00:00;78.0 -2006-06-16 20:00:00;77.7 -2006-06-16 23:00:00;78.4 -2006-06-17 17:00:00;76.1 -2006-06-17 20:00:00;75.6 -2006-06-17 23:00:00;75.8 -2006-06-18 17:00:00;75.5 -2006-06-18 20:00:00;75.7 -2006-06-18 23:00:00;76.8 -2006-06-19 17:00:00;75.3 -2006-06-19 20:00:00;75.7 -2006-06-19 23:00:00;75.7 -2006-06-20 17:00:00;75.1 -2006-06-20 20:00:00;75.3 -2006-06-20 23:00:00;75.6 -2006-06-21 17:00:00;74.4 -2006-06-21 20:00:00;75.1 -2006-06-21 23:00:00;75.6 -2006-06-22 17:00:00;74.0 -2006-06-22 20:00:00;74.4 -2006-06-22 23:00:00;74.7 -2006-06-23 17:00:00;73.3 -2006-06-23 20:00:00;74.1 -2006-06-23 23:00:00;74.3 -2006-06-24 17:00:00;75.2 -2006-06-24 20:00:00;76.1 -2006-06-24 23:00:00;76.1 -2006-06-25 17:00:00;76.4 -2006-06-25 20:00:00;76.5 -2006-06-25 23:00:00;77.1 -2006-06-26 17:00:00;77.9 -2006-06-26 20:00:00;79.0 -2006-06-26 23:00:00;80.2 -2006-06-27 17:00:00;80.9 -2006-06-27 20:00:00;81.2 -2006-06-27 23:00:00;82.6 -2006-06-28 17:00:00;85.3 -2006-06-28 20:00:00;86.3 -2006-06-28 23:00:00;86.8 -2006-06-29 17:00:00;88.7 -2006-06-29 20:00:00;88.4 -2006-06-29 23:00:00;88.9 -2006-06-30 17:00:00;90.0 -2006-06-30 20:00:00;89.0 -2006-06-30 23:00:00;89.1 -2006-07-01 17:00:00;87.3 -2006-07-01 20:00:00;88.4 -2006-07-01 23:00:00;88.4 -2006-07-02 17:00:00;90.1 -2006-07-02 20:00:00;90.0 -2006-07-02 23:00:00;89.8 -2006-07-03 17:00:00;88.7 -2006-07-03 20:00:00;88.8 -2006-07-03 23:00:00;92.9 -2006-07-04 17:00:00;90.6 -2006-07-04 20:00:00;95.1 -2006-07-04 23:00:00;94.5 -2006-07-05 17:00:00;89.3 -2006-07-05 20:00:00;87.5 -2006-07-05 23:00:00;88.0 -2006-07-06 17:00:00;88.9 -2006-07-06 20:00:00;87.9 -2006-07-06 23:00:00;85.5 -2006-07-07 17:00:00;83.0 -2006-07-07 20:00:00;82.6 -2006-07-07 23:00:00;82.5 -2006-07-08 17:00:00;80.3 -2006-07-08 20:00:00;80.0 -2006-07-08 23:00:00;80.7 -2006-07-09 17:00:00;77.0 -2006-07-09 20:00:00;77.1 -2006-07-09 23:00:00;77.0 -2006-07-10 17:00:00;75.9 -2006-07-10 20:00:00;75.2 -2006-07-10 23:00:00;75.6 -2006-07-11 17:00:00;74.2 -2006-07-11 20:00:00;73.6 -2006-07-11 23:00:00;73.9 -2006-07-12 17:00:00;73.4 -2006-07-12 20:00:00;72.9 -2006-07-12 23:00:00;70.8 -2006-07-13 17:00:00;72.4 -2006-07-13 20:00:00;72.2 -2006-07-13 23:00:00;73.1 -2006-07-14 17:00:00;72.7 -2006-07-14 20:00:00;73.3 -2006-07-14 23:00:00;73.5 -2006-07-15 17:00:00;72.6 -2006-07-15 20:00:00;72.6 -2006-07-15 23:00:00;73.2 -2006-07-16 17:00:00;72.9 -2006-07-16 20:00:00;73.2 -2006-07-16 23:00:00;73.4 -2006-07-17 17:00:00;72.6 -2006-07-17 20:00:00;73.3 -2006-07-17 23:00:00;74.0 -2006-07-18 17:00:00;73.3 -2006-07-18 20:00:00;73.6 -2006-07-18 23:00:00;74.8 -2006-07-19 17:00:00;73.3 -2006-07-19 20:00:00;73.4 -2006-07-19 23:00:00;73.6 -2006-07-20 17:00:00;74.5 -2006-07-20 20:00:00;74.5 -2006-07-20 23:00:00;74.7 -2006-07-21 17:00:00;73.8 -2006-07-21 20:00:00;75.0 -2006-07-21 23:00:00;75.3 -2006-07-22 17:00:00;75.1 -2006-07-22 20:00:00;75.9 -2006-07-22 23:00:00;76.6 -2006-07-23 17:00:00;78.1 -2006-07-23 20:00:00;78.9 -2006-07-23 23:00:00;80.0 -2006-07-24 17:00:00;79.6 -2006-07-24 20:00:00;79.5 -2006-07-24 23:00:00;79.6 -2006-07-25 17:00:00;78.5 -2006-07-25 20:00:00;77.9 -2006-07-25 23:00:00;78.3 -2006-07-26 17:00:00;77.1 -2006-07-26 20:00:00;77.0 -2006-07-26 23:00:00;77.8 -2006-07-27 17:00:00;76.2 -2006-07-27 20:00:00;76.7 -2006-07-27 23:00:00;77.0 -2006-07-28 17:00:00;75.7 -2006-07-28 20:00:00;74.9 -2006-07-28 23:00:00;76.1 -2006-07-29 17:00:00;75.0 -2006-07-29 20:00:00;75.2 -2006-07-29 23:00:00;76.3 -2006-07-30 17:00:00;75.9 -2006-07-30 20:00:00;76.2 -2006-07-30 23:00:00;76.0 -2006-07-31 17:00:00;75.1 -2006-07-31 20:00:00;74.6 -2006-07-31 23:00:00;74.9 -2006-08-01 17:00:00;74.2 -2006-08-01 20:00:00;74.9 -2006-08-01 23:00:00;75.5 -2006-08-02 17:00:00;73.7 -2006-08-02 20:00:00;74.3 -2006-08-02 23:00:00;75.2 -2006-08-03 17:00:00;73.6 -2006-08-03 20:00:00;73.4 -2006-08-03 23:00:00;74.0 -2006-08-04 17:00:00;72.1 -2006-08-04 20:00:00;71.6 -2006-08-04 23:00:00;73.2 -2006-08-05 17:00:00;71.5 -2006-08-05 20:00:00;71.5 -2006-08-05 23:00:00;72.4 -2006-08-06 17:00:00;71.5 -2006-08-06 20:00:00;71.5 -2006-08-06 23:00:00;72.6 -2006-08-07 17:00:00;71.7 -2006-08-07 20:00:00;71.8 -2006-08-07 23:00:00;72.3 -2006-08-08 17:00:00;72.6 -2006-08-08 20:00:00;73.4 -2006-08-08 23:00:00;74.4 -2006-08-09 17:00:00;75.2 -2006-08-09 20:00:00;76.1 -2006-08-09 23:00:00;76.9 -2006-08-10 17:00:00;82.0 -2006-08-10 20:00:00;82.5 -2006-08-10 23:00:00;83.6 -2006-08-11 17:00:00;87.0 -2006-08-11 20:00:00;86.2 -2006-08-11 23:00:00;87.4 -2006-08-12 17:00:00;85.8 -2006-08-12 20:00:00;87.0 -2006-08-12 23:00:00;89.7 -2006-08-13 17:00:00;89.3 -2006-08-13 20:00:00;88.1 -2006-08-13 23:00:00;88.2 -2006-08-14 17:00:00;87.7 -2006-08-14 20:00:00;88.6 -2006-08-14 23:00:00;88.9 -2006-08-15 17:00:00;87.3 -2006-08-15 20:00:00;87.8 -2006-08-15 23:00:00;90.2 -2006-08-16 17:00:00;107.5 -2006-08-16 20:00:00;103.2 -2006-08-16 23:00:00;96.4 -2006-08-17 17:00:00;88.8 -2006-08-17 20:00:00;88.0 -2006-08-17 23:00:00;89.7 -2006-08-18 17:00:00;90.6 -2006-08-18 20:00:00;90.6 -2006-08-18 23:00:00;92.8 -2006-08-19 17:00:00;90.3 -2006-08-19 20:00:00;90.9 -2006-08-19 23:00:00;90.7 -2006-08-20 17:00:00;89.4 -2006-08-20 20:00:00;90.2 -2006-08-20 23:00:00;89.3 -2006-08-21 17:00:00;87.4 -2006-08-21 20:00:00;89.8 -2006-08-21 23:00:00;88.0 -2006-08-22 17:00:00;83.3 -2006-08-22 20:00:00;82.7 -2006-08-22 23:00:00;85.1 -2006-08-23 17:00:00;80 -2006-08-23 20:00:00;80.1 -2006-08-23 23:00:00;80.5 -2006-08-24 17:00:00;79 -2006-08-24 20:00:00;79.9 -2006-08-24 23:00:00;79.7 -2006-08-25 17:00:00;78.0 -2006-08-25 20:00:00;78.9 -2006-08-25 23:00:00;78.4 -2006-08-26 17:00:00;79.6 -2006-08-26 20:00:00;77.3 -2006-08-26 23:00:00;84.4 -2006-08-27 17:00:00;81.6 -2006-08-27 20:00:00;80.2 -2006-08-27 23:00:00;80.7 -2006-08-28 17:00:00;77.8 -2006-08-28 20:00:00;78.0 -2006-08-28 23:00:00;78.5 -2006-08-29 17:00:00;75.6 -2006-08-29 20:00:00;74.4 -2006-08-29 23:00:00;76.7 -2006-08-30 17:00:00;76.3 -2006-08-30 20:00:00;75.7 -2006-08-30 23:00:00;76.9 -2006-08-31 17:00:00;77.9 -2006-08-31 20:00:00;84.7 -2006-08-31 23:00:00;78.7 -2006-09-01 17:00:00;77.3 -2006-09-01 20:00:00;78.3 -2006-09-01 23:00:00;78.0 -2006-09-02 17:00:00;76.0 -2006-09-02 20:00:00;76.9 -2006-09-02 23:00:00;77.7 -2006-09-03 17:00:00;77.0 -2006-09-03 20:00:00;77.8 -2006-09-03 23:00:00;78.6 -2006-09-04 17:00:00;80.9 -2006-09-04 20:00:00;80.3 -2006-09-04 23:00:00;80.7 -2006-09-05 17:00:00;80.7 -2006-09-05 20:00:00;81.7 -2006-09-05 23:00:00;82.1 -2006-09-06 17:00:00;84.2 -2006-09-06 20:00:00;85.3 -2006-09-06 23:00:00;87.1 -2006-09-07 17:00:00;88.4 -2006-09-07 20:00:00;88.1 -2006-09-07 23:00:00;89.5 -2006-09-08 17:00:00;89.8 -2006-09-08 20:00:00;88.5 -2006-09-08 23:00:00;89.3 -2006-09-09 17:00:00;86.8 -2006-09-09 20:00:00;86.7 -2006-09-09 23:00:00;88.9 -2006-09-10 17:00:00;88.1 -2006-09-10 20:00:00;88.5 -2006-09-10 23:00:00;89.3 -2006-09-11 17:00:00;85.9 -2006-09-11 20:00:00;85.7 -2006-09-11 23:00:00;86.6 -2006-09-12 17:00:00;85.5 -2006-09-12 20:00:00;85.1 -2006-09-12 23:00:00;87.4 -2006-09-13 17:00:00;84.0 -2006-09-13 20:00:00;83.9 -2006-09-13 23:00:00;84.7 -2006-09-14 17:00:00;85.2 -2006-09-14 20:00:00;83.8 -2006-09-14 23:00:00;83.9 -2006-09-15 17:00:00;82.0 -2006-09-15 20:00:00;81.0 -2006-09-15 23:00:00;81.8 -2006-09-16 17:00:00;79.6 -2006-09-16 20:00:00;80.1 -2006-09-16 23:00:00;80.5 -2006-09-17 17:00:00;78.4 -2006-09-17 20:00:00;78.8 -2006-09-17 23:00:00;78.3 -2006-09-18 17:00:00;74.5 -2006-09-18 20:00:00;75.1 -2006-09-18 23:00:00;76.7 -2006-09-19 17:00:00;73.9 -2006-09-19 20:00:00;74.0 -2006-09-19 23:00:00;74.6 -2006-09-20 17:00:00;72.1 -2006-09-20 20:00:00;71.5 -2006-09-20 23:00:00;73.1 -2006-09-21 17:00:00;71.3 -2006-09-21 20:00:00;72.0 -2006-09-21 23:00:00;74.8 -2006-09-22 17:00:00;72.9 -2006-09-22 20:00:00;72.9 -2006-09-22 23:00:00;73.1 -2006-09-23 17:00:00;70.4 -2006-09-23 20:00:00;70.9 -2006-09-23 23:00:00;71.0 -2006-09-24 17:00:00;70.1 -2006-09-24 20:00:00;70.3 -2006-09-24 23:00:00;70.3 -2006-09-25 17:00:00;70.2 -2006-09-25 20:00:00;70.6 -2006-09-25 23:00:00;71.5 -2006-09-26 17:00:00;70.9 -2006-09-26 20:00:00;71.0 -2006-09-26 23:00:00;71.6 -2006-09-27 17:00:00;72.2 -2006-09-27 20:00:00;72.4 -2006-09-27 23:00:00;72.8 -2006-09-28 17:00:00;72.8 -2006-09-28 20:00:00;73.3 -2006-09-28 23:00:00;75.5 -2006-09-29 17:00:00;76.2 -2006-09-29 20:00:00;76.8 -2006-09-29 23:00:00;76.7 -2006-09-30 17:00:00;77.9 -2006-09-30 20:00:00;77.9 -2006-09-30 23:00:00;78.1 -2006-10-01 17:00:00;77.9 -2006-10-01 20:00:00;78.6 -2006-10-01 23:00:00;78.9 -2006-10-02 17:00:00;77.8 -2006-10-02 20:00:00;78.0 -2006-10-02 23:00:00;78.4 -2006-10-03 17:00:00;76.5 -2006-10-03 20:00:00;76.7 -2006-10-03 23:00:00;77.7 -2006-10-04 17:00:00;76.2 -2006-10-04 20:00:00;76.7 -2006-10-04 23:00:00;77.7 -2006-10-05 17:00:00;76.3 -2006-10-05 20:00:00;77.3 -2006-10-05 23:00:00;77.6 -2006-10-06 17:00:00;77.2 -2006-10-06 20:00:00;76.3 -2006-10-06 23:00:00;77.5 -2006-10-07 17:00:00;75.6 -2006-10-07 20:00:00;76.4 -2006-10-07 23:00:00;77.2 -2006-10-08 17:00:00;75.1 -2006-10-08 20:00:00;75.1 -2006-10-08 23:00:00;75.8 -2006-10-09 17:00:00;74.9 -2006-10-09 20:00:00;74.8 -2006-10-09 23:00:00;75.3 -2006-10-10 17:00:00;74.8 -2006-10-10 20:00:00;75.0 -2006-10-10 23:00:00;75.0 -2006-10-11 17:00:00;72.9 -2006-10-11 20:00:00;73.3 -2006-10-11 23:00:00;74.2 -2006-10-12 17:00:00;73.1 -2006-10-12 20:00:00;73.3 -2006-10-12 23:00:00;74.0 -2006-10-13 17:00:00;72.6 -2006-10-13 20:00:00;72.9 -2006-10-13 23:00:00;73.7 -2006-10-14 17:00:00;71.7 -2006-10-14 20:00:00;72.0 -2006-10-14 23:00:00;72.5 -2006-10-15 17:00:00;70.5 -2006-10-15 20:00:00;70.7 -2006-10-15 23:00:00;70.7 -2006-10-16 17:00:00;69.4 -2006-10-16 20:00:00;69.1 -2006-10-16 23:00:00;69.9 -2006-10-17 17:00:00;69.0 -2006-10-17 20:00:00;69.1 -2006-10-17 23:00:00;70.1 -2006-10-18 17:00:00;68.5 -2006-10-18 20:00:00;69.0 -2006-10-18 23:00:00;69.5 -2006-10-19 17:00:00;68.5 -2006-10-19 20:00:00;69.0 -2006-10-19 23:00:00;70.0 -2006-10-20 17:00:00;69.5 -2006-10-20 20:00:00;70.4 -2006-10-20 23:00:00;71.2 -2006-10-21 17:00:00;72.7 -2006-10-21 20:00:00;74.0 -2006-10-21 23:00:00;75.4 -2006-10-22 17:00:00;75.6 -2006-10-22 20:00:00;75.1 -2006-10-22 23:00:00;76.3 -2006-10-23 17:00:00;75.0 -2006-10-23 20:00:00;75.7 -2006-10-23 23:00:00;76.7 -2006-10-24 17:00:00;73.9 -2006-10-24 20:00:00;74.0 -2006-10-24 23:00:00;75.0 -2006-10-25 17:00:00;72.6 -2006-10-25 20:00:00;73.9 -2006-10-25 23:00:00;74.0 -2006-10-26 17:00:00;71.0 -2006-10-26 20:00:00;71.0 -2006-10-26 23:00:00;71.5 -2006-10-27 17:00:00;70.0 -2006-10-27 20:00:00;71.1 -2006-10-27 23:00:00;72.2 -2006-10-28 17:00:00;72.1 -2006-10-28 20:00:00;73.7 -2006-10-28 23:00:00;74.7 -2006-10-29 17:00:00;71.8 -2006-10-29 20:00:00;72.3 -2006-10-29 23:00:00;73.6 -2006-10-30 17:00:00;73.8 -2006-10-30 20:00:00;74.6 -2006-10-30 23:00:00;77.0 -2006-10-31 17:00:00;78.2 -2006-10-31 20:00:00;78.9 -2006-10-31 23:00:00;80.9 -2006-11-01 17:00:00;83.8 -2006-11-01 20:00:00;85.3 -2006-11-01 23:00:00;84.8 -2006-11-02 18:00:00;85.7 -2006-11-02 20:00:00;86.8 -2006-11-02 22:00:00;89.6 -2006-11-03 18:00:00;85.0 -2006-11-03 20:00:00;86.0 -2006-11-03 22:00:00;86.4 -2006-11-04 18:00:00;83.6 -2006-11-04 20:00:00;84.0 -2006-11-04 22:00:00;84.7 -2006-11-05 18:00:00;83.1 -2006-11-05 20:00:00;83.2 -2006-11-05 22:00:00;83.6 -2006-11-06 18:00:00;82.2 -2006-11-06 20:00:00;82.1 -2006-11-06 22:00:00;84.1 -2006-11-07 18:00:00;85.0 -2006-11-07 20:00:00;85.6 -2006-11-07 22:00:00;85.7 -2006-11-08 18:00:00;85.4 -2006-11-08 20:00:00;84.8 -2006-11-08 22:00:00;86.9 -2006-11-09 18:00:00;87.1 -2006-11-09 20:00:00;87.7 -2006-11-09 22:00:00;89.5 -2006-11-10 18:00:00;88.5 -2006-11-10 20:00:00;89.3 -2006-11-10 22:00:00;90.3 -2006-11-11 18:00:00;93.0 -2006-11-11 20:00:00;95.0 -2006-11-11 22:00:00;95.4 -2006-11-12 18:00:00;95.5 -2006-11-12 20:00:00;94.7 -2006-11-12 22:00:00;96.3 -2006-11-13 18:00:00;92.5 -2006-11-13 20:00:00;93.2 -2006-11-13 22:00:00;94.3 -2006-11-14 18:00:00;92.1 -2006-11-14 20:00:00;92.5 -2006-11-14 22:00:00;92.9 -2006-11-15 18:00:00;93.0 -2006-11-15 20:00:00;94.0 -2006-11-15 22:00:00;94.4 -2006-11-16 18:00:00;92.7 -2006-11-16 20:00:00;92.0 -2006-11-16 22:00:00;92.2 -2006-11-17 18:00:00;86.9 -2006-11-17 20:00:00;87.4 -2006-11-17 22:00:00;87.9 -2006-11-18 18:00:00;86.9 -2006-11-18 20:00:00;86.8 -2006-11-18 22:00:00;86.8 -2006-11-19 18:00:00;82.3 -2006-11-19 20:00:00;82.9 -2006-11-19 22:00:00;83.4 -2006-11-20 18:00:00;78.9 -2006-11-20 20:00:00;78.6 -2006-11-20 22:00:00;79.0 -2006-11-21 18:00:00;75.0 -2006-11-21 20:00:00;75.6 -2006-11-21 22:00:00;76.4 -2006-11-22 18:00:00;74.1 -2006-11-22 20:00:00;74.6 -2006-11-22 22:00:00;75.2 -2006-11-23 18:00:00;74.1 -2006-11-23 20:00:00;74.9 -2006-11-23 22:00:00;75.7 -2006-11-24 18:00:00;74.7 -2006-11-24 20:00:00;75.5 -2006-11-24 22:00:00;76.6 -2006-11-25 18:00:00;76.2 -2006-11-25 20:00:00;76.5 -2006-11-25 22:00:00;77.5 -2006-11-26 18:00:00;75.9 -2006-11-26 20:00:00;76.2 -2006-11-26 22:00:00;77.7 -2006-11-27 18:00:00;79.2 -2006-11-27 20:00:00;80.2 -2006-11-27 22:00:00;80.9 -2006-11-28 18:00:00;82.1 -2006-11-28 20:00:00;83.2 -2006-11-28 22:00:00;83.6 -2006-11-29 18:00:00;82.2 -2006-11-29 20:00:00;82.7 -2006-11-29 22:00:00;83.7 -2006-11-30 18:00:00;82.2 -2006-11-30 20:00:00;81.8 -2006-11-30 22:00:00;82.6 -2006-12-01 18:00:00;80.4 -2006-12-01 20:00:00;81.8 -2006-12-01 22:00:00;83.3 -2006-12-02 18:00:00;84.6 -2006-12-02 20:00:00;84.8 -2006-12-02 22:00:00;84.8 -2006-12-03 18:00:00;84.6 -2006-12-03 20:00:00;84 -2006-12-04 22:00:00;93.6 -2006-12-05 18:00:00;93.0 -2006-12-05 20:00:00;99.4 -2006-12-05 22:00:00;101.5 -2006-12-06 18:00:00;99.7 -2006-12-06 20:00:00;556.6 -2006-12-06 22:00:00;100.9 -2006-12-07 18:00:00;92.9 -2006-12-07 20:00:00;121.0 -2006-12-07 22:00:00;94.4 -2006-12-08 18:00:00;92.0 -2006-12-08 20:00:00;93.1 -2006-12-08 22:00:00;94.0 -2006-12-09 18:00:00;87.7 -2006-12-09 20:00:00;89.6 -2006-12-09 22:00:00;89.3 -2006-12-10 18:00:00;86.3 -2006-12-10 20:00:00;87.3 -2006-12-10 22:00:00;88.7 -2006-12-11 18:00:00;88.5 -2006-12-11 20:00:00;89.4 -2006-12-11 22:00:00;89.6 -2006-12-12 18:00:00;104.0 -2006-12-12 20:00:00;101.0 -2006-12-12 22:00:00;99.1 -2006-12-13 18:00:00;80.4 -2006-12-13 20:00:00;91.7 -2006-12-13 22:00:00;93.5 -2006-12-14 18:00:00;91.6 -2006-12-14 20:00:00;91.4 -2006-12-14 22:00:00;98.9 -2006-12-15 18:00:00;84.7 -2006-12-15 20:00:00;85.4 -2006-12-15 22:00:00;85.1 -2006-12-16 18:00:00;79.3 -2006-12-16 20:00:00;80.0 -2006-12-16 22:00:00;80.1 -2006-12-17 18:00:00;81.6 -2006-12-17 20:00:00;79.5 -2006-12-17 22:00:00;77.8 -2006-12-18 18:00:00;72.4 -2006-12-18 20:00:00;73.0 -2006-12-18 22:00:00;73.6 -2006-12-19 18:00:00;71.2 -2006-12-19 20:00:00;72.0 -2006-12-19 22:00:00;72.4 -2006-12-20 18:00:00;70.8 -2006-12-20 20:00:00;70.3 -2006-12-20 22:00:00;71.4 -2006-12-21 18:00:00;71.4 -2006-12-21 20:00:00;71.6 -2006-12-21 22:00:00;72.6 -2006-12-22 18:00:00;72.0 -2006-12-22 20:00:00;72.2 -2006-12-22 22:00:00;74.3 -2006-12-23 18:00:00;71.9 -2006-12-23 20:00:00;71.2 -2006-12-23 22:00:00;73.1 -2006-12-24 18:00:00;71.7 -2006-12-24 20:00:00;71.9 -2006-12-24 22:00:00;73.2 -2006-12-25 18:00:00;72.3 -2006-12-25 20:00:00;73.9 -2006-12-25 22:00:00;74.3 -2006-12-26 18:00:00;72.1 -2006-12-26 20:00:00;72.5 -2006-12-26 22:00:00;73.3 -2006-12-27 18:00:00;70.6 -2006-12-27 20:00:00;70.9 -2006-12-27 22:00:00;73.0 -2006-12-28 18:00:00;72.5 -2006-12-28 20:00:00;73.8 -2006-12-28 22:00:00;74.4 -2006-12-29 18:00:00;74.5 -2006-12-29 20:00:00;75.8 -2006-12-29 22:00:00;76.6 -2006-12-30 18:00:00;77.3 -2006-12-30 20:00:00;78.2 -2006-12-30 22:00:00;80.0 -2006-12-31 18:00:00;81.1 -2006-12-31 20:00:00;82.3 -2006-12-31 22:00:00;83.2 -2007-01-01 18:00:00;83.7 -2007-01-01 20:00:00;85.5 -2007-01-01 22:00:00;86.4 -2007-01-02 18:00:00;87.6 -2007-01-02 20:00:00;88.6 -2007-01-02 22:00:00;90.5 -2007-01-03 18:00:00;85.5 -2007-01-03 20:00:00;84.8 -2007-01-03 22:00:00;87.2 -2007-01-04 18:00:00;87.9 -2007-01-04 20:00:00;88.0 -2007-01-04 22:00:00;88.8 -2007-01-05 18:00:00;85.3 -2007-01-05 20:00:00;86.5 -2007-01-05 22:00:00;87.8 -2007-01-06 18:00:00;85.3 -2007-01-06 20:00:00;85.6 -2007-01-06 22:00:00;85.8 -2007-01-07 18:00:00;83.4 -2007-01-07 20:00:00;85.3 -2007-01-07 22:00:00;86.2 -2007-01-08 18:00:00;84.4 -2007-01-08 20:00:00;85.7 -2007-01-08 22:00:00;87.5 -2007-01-09 18:00:00;88.2 -2007-01-09 20:00:00;89.1 -2007-01-09 22:00:00;89.6 -2007-01-10 18:00:00;83.5 -2007-01-10 20:00:00;83.3 -2007-01-10 22:00:00;84.0 -2007-01-11 18:00:00;80.7 -2007-01-11 20:00:00;81.2 -2007-01-11 22:00:00;82.3 -2007-01-12 18:00:00;79.6 -2007-01-12 20:00:00;81.0 -2007-01-12 22:00:00;82.1 -2007-01-13 18:00:00;77.6 -2007-01-13 20:00:00;78.7 -2007-01-13 22:00:00;79.4 -2007-01-14 18:00:00;78.5 -2007-01-14 20:00:00;79.4 -2007-01-14 22:00:00;80.0 -2007-01-15 18:00:00;78.0 -2007-01-15 20:00:00;79.3 -2007-01-15 22:00:00;79.0 -2007-01-16 18:00:00;75.2 -2007-01-16 20:00:00;76.1 -2007-01-16 22:00:00;76.3 -2007-01-17 18:00:00;74.7 -2007-01-17 20:00:00;75.6 -2007-01-17 22:00:00;75.9 -2007-01-18 18:00:00;73.8 -2007-01-18 20:00:00;74.4 -2007-01-18 22:00:00;74.6 -2007-01-19 18:00:00;72.9 -2007-01-19 20:00:00;73.9 -2007-01-19 22:00:00;74.3 -2007-01-20 18:00:00;74.8 -2007-01-20 20:00:00;76.3 -2007-01-20 22:00:00;77.0 -2007-01-21 18:00:00;74.5 -2007-01-21 20:00:00;76.1 -2007-01-21 22:00:00;77.5 -2007-01-22 18:00:00;75.9 -2007-01-22 20:00:00;76.0 -2007-01-22 22:00:00;76.2 -2007-01-23 18:00:00;75.5 -2007-01-23 20:00:00;76.8 -2007-01-23 22:00:00;76.9 -2007-01-24 18:00:00;77.4 -2007-01-24 20:00:00;77.9 -2007-01-24 22:00:00;78.5 -2007-01-25 18:00:00;77.0 -2007-01-25 20:00:00;77.5 -2007-01-25 22:00:00;77.7 -2007-01-26 18:00:00;76.5 -2007-01-26 20:00:00;77.3 -2007-01-26 22:00:00;77.1 -2007-01-27 18:00:00;77.5 -2007-01-27 20:00:00;78.0 -2007-01-27 22:00:00;78.3 -2007-01-28 18:00:00;78.1 -2007-01-28 20:00:00;79.3 -2007-01-28 22:00:00;80.3 -2007-01-29 18:00:00;86.9 -2007-01-29 20:00:00;84.1 -2007-01-29 22:00:00;87.9 -2007-01-30 18:00:00;84.6 -2007-01-30 20:00:00;84.9 -2007-01-30 22:00:00;85.9 -2007-01-31 18:00:00;85.0 -2007-01-31 20:00:00;86.6 -2007-01-31 22:00:00;88.2 -2007-02-01 18:00:00;87.7 -2007-02-01 20:00:00;87.3 -2007-02-01 22:00:00;87.6 -2007-02-02 18:00:00;86.8 -2007-02-02 20:00:00;87.7 -2007-02-02 22:00:00;85.1 -2007-02-03 18:00:00;84.6 -2007-02-03 20:00:00;84.8 -2007-02-03 22:00:00;84.4 -2007-02-04 18:00:00;81.0 -2007-02-04 20:00:00;81.3 -2007-02-04 22:00:00;82.1 -2007-02-05 18:00:00;80.4 -2007-02-05 20:00:00;80.7 -2007-02-05 22:00:00;81.5 -2007-02-06 18:00:00;79.7 -2007-02-06 20:00:00;79.6 -2007-02-06 22:00:00;80.2 -2007-02-07 18:00:00;78.5 -2007-02-07 20:00:00;79.8 -2007-02-07 22:00:00;79.5 -2007-02-08 18:00:00;76.3 -2007-02-08 20:00:00;76.3 -2007-02-08 22:00:00;76.8 -2007-02-09 18:00:00;74.3 -2007-02-09 20:00:00;74.6 -2007-02-09 22:00:00;74.8 -2007-02-10 18:00:00;73.4 -2007-02-10 20:00:00;73.9 -2007-02-10 22:00:00;74.1 -2007-02-11 18:00:00;72.6 -2007-02-11 20:00:00;72.8 -2007-02-11 22:00:00;72.9 -2007-02-12 18:00:00;71.3 -2007-02-12 20:00:00;71.8 -2007-02-12 22:00:00;71.9 -2007-02-13 18:00:00;71.0 -2007-02-13 20:00:00;70.9 -2007-02-13 22:00:00;71.1 -2007-02-14 18:00:00;70.5 -2007-02-14 20:00:00;70.9 -2007-02-14 22:00:00;71.3 -2007-02-15 18:00:00;69.8 -2007-02-15 20:00:00;71.8 -2007-02-15 22:00:00;72.4 -2007-02-16 18:00:00;72.6 -2007-02-16 20:00:00;72.9 -2007-02-16 22:00:00;72.8 -2007-02-17 18:00:00;72.9 -2007-02-17 20:00:00;73.5 -2007-02-17 22:00:00;73.6 -2007-02-18 18:00:00;73.4 -2007-02-18 20:00:00;74.1 -2007-02-18 22:00:00;74.4 -2007-02-19 18:00:00;73.2 -2007-02-19 20:00:00;73.2 -2007-02-19 22:00:00;73.7 -2007-02-20 18:00:00;73.1 -2007-02-20 20:00:00;73.1 -2007-02-20 22:00:00;73.5 -2007-02-21 18:00:00;73.2 -2007-02-21 20:00:00;73.2 -2007-02-21 22:00:00;74.0 -2007-02-22 18:00:00;73.8 -2007-02-22 20:00:00;73.9 -2007-02-22 22:00:00;74.5 -2007-02-23 18:00:00;73.4 -2007-02-23 20:00:00;73.6 -2007-02-23 22:00:00;74.1 -2007-02-24 18:00:00;73.9 -2007-02-24 20:00:00;73.9 -2007-02-24 22:00:00;74.4 -2007-02-25 18:00:00;74.9 -2007-02-25 20:00:00;75.1 -2007-02-25 22:00:00;75.3 -2007-02-26 18:00:00;73.5 -2007-02-26 20:00:00;73.9 -2007-02-26 22:00:00;74.1 -2007-02-27 18:00:00;73.8 -2007-02-27 20:00:00;73.4 -2007-02-27 22:00:00;73.7 -2007-02-28 18:00:00;73.8 -2007-02-28 20:00:00;74.4 -2007-02-28 22:00:00;74.3 -2007-03-01 17:00:00;73.3 -2007-03-01 20:00:00;73.4 -2007-03-01 23:00:00;73.5 -2007-03-02 17:00:00;73.1 -2007-03-02 20:00:00;74.2 -2007-03-02 23:00:00;73.2 -2007-03-03 17:00:00;71.6 -2007-03-03 20:00:00;72.0 -2007-03-03 23:00:00;71.7 -2007-03-04 17:00:00;70.9 -2007-03-04 20:00:00;71.3 -2007-03-04 23:00:00;71.5 -2007-03-05 17:00:00;70.5 -2007-03-05 20:00:00;70.8 -2007-03-05 23:00:00;71.0 -2007-03-06 17:00:00;70.3 -2007-03-06 20:00:00;70.8 -2007-03-06 23:00:00;71.0 -2007-03-07 17:00:00;71.6 -2007-03-07 20:00:00;71.8 -2007-03-07 23:00:00;71.9 -2007-03-08 17:00:00;71.1 -2007-03-08 20:00:00;71.4 -2007-03-08 23:00:00;71.7 -2007-03-09 17:00:00;70.1 -2007-03-09 20:00:00;70.6 -2007-03-09 23:00:00;70.7 -2007-03-10 17:00:00;70.1 -2007-03-10 20:00:00;70.2 -2007-03-10 23:00:00;70.3 -2007-03-11 17:00:00;69.9 -2007-03-11 20:00:00;70.1 -2007-03-11 23:00:00;71.1 -2007-03-12 17:00:00;69.8 -2007-03-12 20:00:00;70.3 -2007-03-12 23:00:00;70.5 -2007-03-13 17:00:00;70.3 -2007-03-13 20:00:00;70.6 -2007-03-13 23:00:00;70.9 -2007-03-14 17:00:00;69.4 -2007-03-14 20:00:00;69.2 -2007-03-14 23:00:00;69.8 -2007-03-15 17:00:00;68.2 -2007-03-15 20:00:00;68.5 -2007-03-15 23:00:00;69.2 -2007-03-16 17:00:00;68.0 -2007-03-16 20:00:00;68.0 -2007-03-16 23:00:00;68.9 -2007-03-17 17:00:00;68.4 -2007-03-17 20:00:00;68.6 -2007-03-17 23:00:00;69.5 -2007-03-18 17:00:00;69.4 -2007-03-18 20:00:00;69.8 -2007-03-18 23:00:00;69.7 -2007-03-19 17:00:00;68.9 -2007-03-19 20:00:00;69.5 -2007-03-19 23:00:00;70.5 -2007-03-20 17:00:00;71.4 -2007-03-20 20:00:00;72.0 -2007-03-20 23:00:00;72.4 -2007-03-21 17:00:00;71.9 -2007-03-21 20:00:00;72.3 -2007-03-21 23:00:00;72.6 -2007-03-22 17:00:00;71.7 -2007-03-22 20:00:00;72.0 -2007-03-22 23:00:00;71.9 -2007-03-23 17:00:00;72.4 -2007-03-23 20:00:00;72.0 -2007-03-23 23:00:00;72.4 -2007-03-24 17:00:00;72.3 -2007-03-24 20:00:00;72.4 -2007-03-24 23:00:00;73.0 -2007-03-25 17:00:00;73.0 -2007-03-25 20:00:00;73.3 -2007-03-25 23:00:00;73.9 -2007-03-26 17:00:00;73.3 -2007-03-26 20:00:00;73.5 -2007-03-26 23:00:00;73.2 -2007-03-27 17:00:00;73.4 -2007-03-27 20:00:00;73.0 -2007-03-27 23:00:00;73.3 -2007-03-28 17:00:00;74.6 -2007-03-28 20:00:00;74.3 -2007-03-28 23:00:00;74.8 -2007-03-29 17:00:00;73.3 -2007-03-29 20:00:00;73.6 -2007-03-29 23:00:00;74.2 -2007-03-30 17:00:00;73.5 -2007-03-30 20:00:00;73.9 -2007-03-30 23:00:00;73.9 -2007-03-31 17:00:00;72.7 -2007-03-31 20:00:00;73.1 -2007-03-31 23:00:00;72.8 -2007-04-01 17:00:00;71.3 -2007-04-01 20:00:00;71.6 -2007-04-01 23:00:00;72.1 -2007-04-02 17:00:00;70.6 -2007-04-02 20:00:00;71.1 -2007-04-02 23:00:00;70.8 -2007-04-03 17:00:00;70.2 -2007-04-03 20:00:00;70.8 -2007-04-03 23:00:00;70.7 -2007-04-04 17:00:00;70.7 -2007-04-04 20:00:00;70.8 -2007-04-04 23:00:00;71.6 -2007-04-05 17:00:00;70.5 -2007-04-05 20:00:00;71.0 -2007-04-05 23:00:00;70.7 -2007-04-06 17:00:00;70.5 -2007-04-06 20:00:00;71.1 -2007-04-06 23:00:00;71.4 -2007-04-07 17:00:00;71.1 -2007-04-07 20:00:00;71.4 -2007-04-07 23:00:00;71.5 -2007-04-08 17:00:00;71.2 -2007-04-08 20:00:00;71.3 -2007-04-08 23:00:00;71.1 -2007-04-09 17:00:00;70.2 -2007-04-09 20:00:00;70.2 -2007-04-09 23:00:00;70.7 -2007-04-10 17:00:00;69.8 -2007-04-10 20:00:00;69.7 -2007-04-10 23:00:00;69.7 -2007-04-11 17:00:00;69.2 -2007-04-11 20:00:00;69.5 -2007-04-11 23:00:00;69.4 -2007-04-12 17:00:00;68.0 -2007-04-12 20:00:00;68.6 -2007-04-12 23:00:00;68.5 -2007-04-13 17:00:00;68.5 -2007-04-13 20:00:00;68.6 -2007-04-13 23:00:00;68.8 -2007-04-14 17:00:00;68.4 -2007-04-14 20:00:00;68.6 -2007-04-14 23:00:00;68.9 -2007-04-15 17:00:00;69.7 -2007-04-15 20:00:00;69.8 -2007-04-15 23:00:00;70.0 -2007-04-16 17:00:00;69.4 -2007-04-16 20:00:00;69.8 -2007-04-16 23:00:00;70.1 -2007-04-17 17:00:00;69.8 -2007-04-17 20:00:00;69.8 -2007-04-17 23:00:00;70.2 -2007-04-18 17:00:00;69.3 -2007-04-18 20:00:00;69.3 -2007-04-18 23:00:00;69.3 -2007-04-19 17:00:00;68.6 -2007-04-19 20:00:00;68.9 -2007-04-19 23:00:00;69.0 -2007-04-20 17:00:00;69.5 -2007-04-20 20:00:00;69.1 -2007-04-20 23:00:00;69.5 -2007-04-21 17:00:00;69.3 -2007-04-21 20:00:00;69.4 -2007-04-21 23:00:00;69.6 -2007-04-22 17:00:00;69.2 -2007-04-22 20:00:00;69.7 -2007-04-22 23:00:00;69.7 -2007-04-23 17:00:00;69.5 -2007-04-23 20:00:00;69.8 -2007-04-23 23:00:00;71.0 -2007-04-24 17:00:00;73.5 -2007-04-24 20:00:00;74.0 -2007-04-24 23:00:00;75.3 -2007-04-25 17:00:00;76.5 -2007-04-25 20:00:00;77.4 -2007-04-25 23:00:00;77.9 -2007-04-26 17:00:00;80.4 -2007-04-26 20:00:00;81.5 -2007-04-26 23:00:00;81.7 -2007-04-27 17:00:00;83.0 -2007-04-27 20:00:00;83.8 -2007-04-27 23:00:00;84.6 -2007-04-28 17:00:00;85.8 -2007-04-28 20:00:00;86.1 -2007-04-28 23:00:00;86.5 -2007-04-29 17:00:00;85.7 -2007-04-29 20:00:00;86.0 -2007-04-29 23:00:00;87.0 -2007-04-30 17:00:00;88.4 -2007-04-30 20:00:00;88.2 -2007-04-30 23:00:00;86.3 -2007-05-01 17:00:00;87.2 -2007-05-01 20:00:00;87.6 -2007-05-01 23:00:00;87.2 -2007-05-02 17:00:00;85.5 -2007-05-02 20:00:00;88.8 -2007-05-02 23:00:00;87.7 -2007-05-03 17:00:00;84.2 -2007-05-03 20:00:00;84.4 -2007-05-03 23:00:00;85.7 -2007-05-04 17:00:00;84.0 -2007-05-04 20:00:00;83.9 -2007-05-04 23:00:00;84.5 -2007-05-05 17:00:00;82.0 -2007-05-05 20:00:00;82.4 -2007-05-05 23:00:00;82.6 -2007-05-06 17:00:00;80.1 -2007-05-06 20:00:00;79.4 -2007-05-06 23:00:00;79.1 -2007-05-07 17:00:00;77.0 -2007-05-07 20:00:00;77.1 -2007-05-07 23:00:00;77.1 -2007-05-08 17:00:00;74.4 -2007-05-08 20:00:00;74.7 -2007-05-08 23:00:00;74.6 -2007-05-09 17:00:00;74.1 -2007-05-09 20:00:00;73.5 -2007-05-09 23:00:00;74.3 -2007-05-10 17:00:00;72.3 -2007-05-10 20:00:00;72.6 -2007-05-10 23:00:00;73.3 -2007-05-11 17:00:00;72.3 -2007-05-11 20:00:00;72.9 -2007-05-11 23:00:00;73.2 -2007-05-12 17:00:00;73.2 -2007-05-12 20:00:00;72.9 -2007-05-12 23:00:00;72.9 -2007-05-13 17:00:00;74.1 -2007-05-13 20:00:00;75.0 -2007-05-13 23:00:00;76.3 -2007-05-14 17:00:00;74.4 -2007-05-14 20:00:00;74.4 -2007-05-14 23:00:00;74.6 -2007-05-15 17:00:00;75.8 -2007-05-15 20:00:00;78.5 -2007-05-15 23:00:00;78.1 -2007-05-16 17:00:00;78.5 -2007-05-16 20:00:00;78.9 -2007-05-16 23:00:00;79.0 -2007-05-17 17:00:00;77.9 -2007-05-17 20:00:00;78.3 -2007-05-17 23:00:00;78.4 -2007-05-18 17:00:00;77.6 -2007-05-18 20:00:00;77.6 -2007-05-18 23:00:00;77.9 -2007-05-19 17:00:00;76.0 -2007-05-19 20:00:00;76.6 -2007-05-19 23:00:00;76.4 -2007-05-20 17:00:00;75.7 -2007-05-20 20:00:00;75.9 -2007-05-20 23:00:00;76.5 -2007-05-21 17:00:00;74.9 -2007-05-21 20:00:00;75.0 -2007-05-21 23:00:00;74.7 -2007-05-22 17:00:00;74.8 -2007-05-22 20:00:00;73.7 -2007-05-22 23:00:00;74.2 -2007-05-23 17:00:00;71.2 -2007-05-23 20:00:00;71.9 -2007-05-23 23:00:00;72.1 -2007-05-24 17:00:00;71.1 -2007-05-24 20:00:00;71.7 -2007-05-24 23:00:00;71.5 -2007-05-25 17:00:00;69.6 -2007-05-25 20:00:00;69.9 -2007-05-25 23:00:00;70.2 -2007-05-26 17:00:00;69.5 -2007-05-26 20:00:00;69.5 -2007-05-26 23:00:00;69.9 -2007-05-27 17:00:00;68.4 -2007-05-27 20:00:00;68.8 -2007-05-27 23:00:00;69.8 -2007-05-28 17:00:00;69.8 -2007-05-28 20:00:00;70.5 -2007-05-28 23:00:00;70.9 -2007-05-29 17:00:00;70.7 -2007-05-29 20:00:00;71.5 -2007-05-29 23:00:00;72.2 -2007-05-30 17:00:00;73.4 -2007-05-30 20:00:00;72.6 -2007-05-30 23:00:00;72.8 -2007-05-31 17:00:00;75.0 -2007-05-31 20:00:00;76.7 -2007-05-31 23:00:00;76.9 -2007-06-01 17:00:00;81.3 -2007-06-01 20:00:00;81.6 -2007-06-01 23:00:00;83.1 -2007-06-02 17:00:00;86.7 -2007-06-02 20:00:00;85.6 -2007-06-02 23:00:00;87.8 -2007-06-03 17:00:00;89.5 -2007-06-03 20:00:00;89.5 -2007-06-03 23:00:00;89.8 -2007-06-04 17:00:00;91.0 -2007-06-04 20:00:00;88.2 -2007-06-04 23:00:00;90.1 -2007-06-05 17:00:00;93.4 -2007-06-05 20:00:00;83.6 -2007-06-05 23:00:00;84.8 -2007-06-06 16:44:20;88.88 -2007-06-06 19:44:20;87.13 -2007-06-06 20:00:00;89 -2007-06-06 22:44:20;88.60 -2007-06-07 16:44:20;90.49 -2007-06-07 19:44:20;88.11 -2007-06-07 22:44:20;89.07 -2007-06-08 17:00:00;89.1 -2007-06-08 20:00:00;86.8 -2007-06-08 23:00:00;87.8 -2007-06-09 17:00:00;83.7 -2007-06-09 20:00:00;81.0 -2007-06-09 23:00:00;83.3 -2007-06-10 17:00:00;74.9 -2007-06-10 20:00:00;78.2 -2007-06-10 23:00:00;78.3 -2007-06-11 17:00:00;76.9 -2007-06-11 20:00:00;75.6 -2007-06-11 23:00:00;75.9 -2007-06-12 17:00:00;74.5 -2007-06-12 20:00:00;72.6 -2007-06-12 23:00:00;72.6 -2007-06-13 17:00:00;78.4 -2007-06-13 20:00:00;73.1 -2007-06-13 23:00:00;73.5 -2007-06-14 17:00:00;71.9 -2007-06-14 20:00:00;70.6 -2007-06-14 23:00:00;70.9 -2007-06-15 17:00:00;69.8 -2007-06-15 20:00:00;71.3 -2007-06-15 23:00:00;71.0 -2007-06-16 17:00:00;70.2 -2007-06-16 20:00:00;70.2 -2007-06-16 23:00:00;69.3 -2007-06-17 17:00:00;69.3 -2007-06-17 20:00:00;68.9 -2007-06-17 23:00:00;68.9 -2007-06-18 17:00:00;68.8 -2007-06-18 20:00:00;68.8 -2007-06-18 23:00:00;68.6 -2007-06-19 17:00:00;68.2 -2007-06-19 20:00:00;68.5 -2007-06-19 23:00:00;68.4 -2007-06-20 17:00:00;68.1 -2007-06-20 20:00:00;67.8 -2007-06-20 23:00:00;67.9 -2007-06-21 17:00:00;67.5 -2007-06-21 20:00:00;67.6 -2007-06-21 23:00:00;67.8 -2007-06-22 17:00:00;67.4 -2007-06-22 20:00:00;67.5 -2007-06-22 23:00:00;67.5 -2007-06-23 17:00:00;67.6 -2007-06-23 20:00:00;68.1 -2007-06-23 23:00:00;68.4 -2007-06-24 17:00:00;68.5 -2007-06-24 20:00:00;69.1 -2007-06-24 23:00:00;69.3 -2007-06-25 17:00:00;69.3 -2007-06-25 20:00:00;69.8 -2007-06-25 23:00:00;70.5 -2007-06-26 17:00:00;72.4 -2007-06-26 20:00:00;72.8 -2007-06-26 23:00:00;73.5 -2007-06-27 17:00:00;75.0 -2007-06-27 20:00:00;75.7 -2007-06-27 23:00:00;76.3 -2007-06-28 17:00:00;76.9 -2007-06-28 20:00:00;77.4 -2007-06-28 23:00:00;77.2 -2007-06-29 17:00:00;77.1 -2007-06-29 20:00:00;77.8 -2007-06-29 23:00:00;76.8 -2007-06-30 17:00:00;75.8 -2007-06-30 20:00:00;76.4 -2007-06-30 23:00:00;76.6 -2007-07-01 17:00:00;76.2 -2007-07-01 20:00:00;76.8 -2007-07-01 23:00:00;76.6 -2007-07-02 17:00:00;75.2 -2007-07-02 20:00:00;75.1 -2007-07-02 23:00:00;74.9 -2007-07-03 17:00:00;74.0 -2007-07-03 20:00:00;74.2 -2007-07-03 23:00:00;74.3 -2007-07-04 17:00:00;74.4 -2007-07-04 20:00:00;74.9 -2007-07-04 23:00:00;74.8 -2007-07-05 17:00:00;73.3 -2007-07-05 20:00:00;73.9 -2007-07-05 23:00:00;73.5 -2007-07-06 17:00:00;73.2 -2007-07-06 20:00:00;73.5 -2007-07-06 23:00:00;73.2 -2007-07-07 17:00:00;75.4 -2007-07-07 20:00:00;75.5 -2007-07-07 23:00:00;75.5 -2007-07-08 17:00:00;78.9 -2007-07-08 20:00:00;77.6 -2007-07-08 23:00:00;77.6 -2007-07-09 17:00:00;80.2 -2007-07-09 20:00:00;79.7 -2007-07-09 23:00:00;81.0 -2007-07-10 17:00:00;82.2 -2007-07-10 20:00:00;80.8 -2007-07-10 23:00:00;83.0 -2007-07-11 17:00:00;81.0 -2007-07-11 20:00:00;81.1 -2007-07-11 23:00:00;80.6 -2007-07-12 17:00:00;78.8 -2007-07-12 20:00:00;79.5 -2007-07-12 23:00:00;79.5 -2007-07-13 17:00:00;80.1 -2007-07-13 20:00:00;80.6 -2007-07-13 23:00:00;78.9 -2007-07-14 17:00:00;78.2 -2007-07-14 20:00:00;78.2 -2007-07-14 23:00:00;78.7 -2007-07-15 17:00:00;77.2 -2007-07-15 20:00:00;77.1 -2007-07-15 23:00:00;76.1 -2007-07-16 17:00:00;74.9 -2007-07-16 20:00:00;75.3 -2007-07-16 23:00:00;75.2 -2007-07-17 17:00:00;73.9 -2007-07-17 20:00:00;74.7 -2007-07-17 23:00:00;74.3 -2007-07-18 17:00:00;69.9 -2007-07-18 20:00:00;71.8 -2007-07-18 23:00:00;71.8 -2007-07-19 17:00:00;69.6 -2007-07-19 20:00:00;70.5 -2007-07-19 23:00:00;67.4 -2007-07-20 17:00:00;69.3 -2007-07-20 20:00:00;69.5 -2007-07-20 23:00:00;69.1 -2007-07-21 17:00:00;68.4 -2007-07-21 20:00:00;68.6 -2007-07-21 23:00:00;68.5 -2007-07-22 17:00:00;68.4 -2007-07-22 20:00:00;68.3 -2007-07-22 23:00:00;68.3 -2007-07-23 17:00:00;69.2 -2007-07-23 20:00:00;69.3 -2007-07-23 23:00:00;69.8 -2007-07-24 17:00:00;69.6 -2007-07-24 20:00:00;70.2 -2007-07-24 23:00:00;70.1 -2007-07-25 17:00:00;70.5 -2007-07-25 20:00:00;70.8 -2007-07-25 23:00:00;70.3 -2007-07-26 17:00:00;70.2 -2007-07-26 20:00:00;70.6 -2007-07-26 23:00:00;70.6 -2007-07-27 17:00:00;70.0 -2007-07-27 20:00:00;70.9 -2007-07-27 23:00:00;69.8 -2007-07-28 17:00:00;71.6 -2007-07-28 20:00:00;72.1 -2007-07-28 23:00:00;72.4 -2007-07-29 17:00:00;70.8 -2007-07-29 20:00:00;71.1 -2007-07-29 23:00:00;70.8 -2007-07-30 17:00:00;70.7 -2007-07-30 20:00:00;71.0 -2007-07-30 23:00:00;70.7 -2007-07-31 17:00:00;69.7 -2007-07-31 20:00:00;70.1 -2007-07-31 23:00:00;70.2 -2007-08-01 17:00:00;70.2 -2007-08-01 20:00:00;70.4 -2007-08-01 23:00:00;70.7 -2007-08-02 17:00:00;71.1 -2007-08-02 20:00:00;71.5 -2007-08-02 23:00:00;71.3 -2007-08-03 17:00:00;71.8 -2007-08-03 20:00:00;72.4 -2007-08-03 23:00:00;72.3 -2007-08-04 17:00:00;71.4 -2007-08-04 20:00:00;71.4 -2007-08-04 23:00:00;71.5 -2007-08-05 17:00:00;70.4 -2007-08-05 20:00:00;70.9 -2007-08-05 23:00:00;71.8 -2007-08-06 17:00:00;71.8 -2007-08-06 20:00:00;72.0 -2007-08-06 23:00:00;72.5 -2007-08-07 17:00:00;70.9 -2007-08-07 20:00:00;71.0 -2007-08-07 23:00:00;71.3 -2007-08-08 17:00:00;71.1 -2007-08-08 20:00:00;71.0 -2007-08-08 23:00:00;70.9 -2007-08-09 17:00:00;69.0 -2007-08-09 20:00:00;69.3 -2007-08-09 23:00:00;69.4 -2007-08-10 17:00:00;69.0 -2007-08-10 20:00:00;69.3 -2007-08-10 23:00:00;69.2 -2007-08-11 17:00:00;69.0 -2007-08-11 20:00:00;69.5 -2007-08-11 23:00:00;69.2 -2007-08-12 17:00:00;69.4 -2007-08-12 20:00:00;70.0 -2007-08-12 23:00:00;70.2 -2007-08-13 17:00:00;68.9 -2007-08-13 20:00:00;69.5 -2007-08-13 23:00:00;69.4 -2007-08-14 17:00:00;69.8 -2007-08-14 20:00:00;70.3 -2007-08-14 23:00:00;70.4 -2007-08-15 17:00:00;69.2 -2007-08-15 20:00:00;69.3 -2007-08-15 23:00:00;69.4 -2007-08-16 17:00:00;68.6 -2007-08-16 20:00:00;69.0 -2007-08-16 23:00:00;68.7 -2007-08-17 17:00:00;68.8 -2007-08-17 20:00:00;69.3 -2007-08-17 23:00:00;69.8 -2007-08-18 17:00:00;69.0 -2007-08-18 20:00:00;69.6 -2007-08-18 23:00:00;69.8 -2007-08-19 17:00:00;68.6 -2007-08-19 20:00:00;69.4 -2007-08-19 23:00:00;69.1 -2007-08-20 17:00:00;69.8 -2007-08-20 20:00:00;70.7 -2007-08-20 23:00:00;71.0 -2007-08-21 17:00:00;70.3 -2007-08-21 20:00:00;70.9 -2007-08-21 23:00:00;70.9 -2007-08-22 17:00:00;70.9 -2007-08-22 20:00:00;71.6 -2007-08-22 23:00:00;71.7 -2007-08-23 17:00:00;71.7 -2007-08-23 20:00:00;72.4 -2007-08-23 23:00:00;72.6 -2007-08-24 17:00:00;72.5 -2007-08-24 20:00:00;73.2 -2007-08-24 23:00:00;73.4 -2007-08-25 17:00:00;73.0 -2007-08-25 20:00:00;73.1 -2007-08-25 23:00:00;72.9 -2007-08-26 17:00:00;71.4 -2007-08-26 20:00:00;71.6 -2007-08-26 23:00:00;71.7 -2007-08-27 17:00:00;70.3 -2007-08-27 20:00:00;70.7 -2007-08-27 23:00:00;71.1 -2007-08-28 17:00:00;71.2 -2007-08-28 20:00:00;71.6 -2007-08-28 23:00:00;71.2 -2007-08-29 17:00:00;70.5 -2007-08-29 20:00:00;71.0 -2007-08-29 23:00:00;70.9 -2007-08-30 17:00:00;71.1 -2007-08-30 20:00:00;73.0 -2007-08-30 23:00:00;73.1 -2007-08-31 17:00:00;72.5 -2007-08-31 20:00:00;72.2 -2007-08-31 23:00:00;73.3 -2007-09-01 17:00:00;71.7 -2007-09-01 20:00:00;72.1 -2007-09-01 23:00:00;72.3 -2007-09-02 17:00:00;70.4 -2007-09-02 20:00:00;70.6 -2007-09-02 23:00:00;71.0 -2007-09-03 17:00:00;68.9 -2007-09-03 20:00:00;69.1 -2007-09-03 23:00:00;69.2 -2007-09-04 17:00:00;68.5 -2007-09-04 20:00:00;69.4 -2007-09-04 23:00:00;69.1 -2007-09-05 17:00:00;68.2 -2007-09-05 20:00:00;68.8 -2007-09-05 23:00:00;68.8 -2007-09-06 17:00:00;67.3 -2007-09-06 20:00:00;67.8 -2007-09-06 23:00:00;68.1 -2007-09-07 17:00:00;67.9 -2007-09-07 20:00:00;68.2 -2007-09-07 23:00:00;68.6 -2007-09-08 17:00:00;67.2 -2007-09-08 20:00:00;67.6 -2007-09-08 23:00:00;68.0 -2007-09-09 17:00:00;67.0 -2007-09-09 20:00:00;67.7 -2007-09-09 23:00:00;68.0 -2007-09-10 17:00:00;67.4 -2007-09-10 20:00:00;67.9 -2007-09-10 23:00:00;68.1 -2007-09-11 17:00:00;66.4 -2007-09-11 20:00:00;67.0 -2007-09-11 23:00:00;67.4 -2007-09-12 17:00:00;66.2 -2007-09-12 20:00:00;66.7 -2007-09-12 23:00:00;67.1 -2007-09-13 17:00:00;66.4 -2007-09-13 20:00:00;67.2 -2007-09-13 23:00:00;67.7 -2007-09-14 17:00:00;66.7 -2007-09-14 20:00:00;67.6 -2007-09-14 23:00:00;68.2 -2007-09-15 17:00:00;67.7 -2007-09-15 20:00:00;68.5 -2007-09-15 23:00:00;68.5 -2007-09-16 17:00:00;67.2 -2007-09-16 20:00:00;67.8 -2007-09-16 23:00:00;68.1 -2007-09-17 17:00:00;67.5 -2007-09-17 20:00:00;67.6 -2007-09-17 23:00:00;67.6 -2007-09-18 17:00:00;66.6 -2007-09-18 20:00:00;67.1 -2007-09-18 23:00:00;67.1 -2007-09-19 17:00:00;66.8 -2007-09-19 20:00:00;67.4 -2007-09-19 23:00:00;67.7 -2007-09-20 17:00:00;67.7 -2007-09-20 20:00:00;67.4 -2007-09-20 23:00:00;67.6 -2007-09-21 17:00:00;67.1 -2007-09-21 20:00:00;67.4 -2007-09-21 23:00:00;67.7 -2007-09-22 17:00:00;66.4 -2007-09-22 20:00:00;67.2 -2007-09-22 23:00:00;67.4 -2007-09-23 17:00:00;66.3 -2007-09-23 20:00:00;66.8 -2007-09-23 23:00:00;67.4 -2007-09-24 17:00:00;65.8 -2007-09-24 20:00:00;66.5 -2007-09-24 23:00:00;66.8 -2007-09-25 17:00:00;66.0 -2007-09-25 20:00:00;66.6 -2007-09-25 23:00:00;67.1 -2007-09-26 17:00:00;66.1 -2007-09-26 20:00:00;66.8 -2007-09-26 23:00:00;67.0 -2007-09-27 17:00:00;66.5 -2007-09-27 20:00:00;67.4 -2007-09-27 23:00:00;67.9 -2007-09-28 17:00:00;64.6 -2007-09-28 20:00:00;67.4 -2007-09-28 23:00:00;67.7 -2007-09-29 17:00:00;67.2 -2007-09-29 20:00:00;67.8 -2007-09-29 23:00:00;68.7 -2007-09-30 17:00:00;67.3 -2007-09-30 20:00:00;65.1 -2007-09-30 23:00:00;68.1 -2007-10-01 17:00:00;69.2 -2007-10-01 20:00:00;67.8 -2007-10-01 23:00:00;68.5 -2007-10-02 17:00:00;67.1 -2007-10-02 20:00:00;66.5 -2007-10-02 23:00:00;67.9 -2007-10-03 17:00:00;66.9 -2007-10-03 20:00:00;67.3 -2007-10-03 23:00:00;67.8 -2007-10-04 17:00:00;66.9 -2007-10-04 20:00:00;67.4 -2007-10-04 23:00:00;68.1 -2007-10-05 17:00:00;67.0 -2007-10-05 20:00:00;67.8 -2007-10-05 23:00:00;69.1 -2007-10-06 17:00:00;68.2 -2007-10-06 20:00:00;68.9 -2007-10-06 23:00:00;69.5 -2007-10-07 17:00:00;67.7 -2007-10-07 20:00:00;68.1 -2007-10-07 23:00:00;68.8 -2007-10-08 17:00:00;67.4 -2007-10-08 20:00:00;67.9 -2007-10-08 23:00:00;69.1 -2007-10-09 17:00:00;67.8 -2007-10-09 20:00:00;68.6 -2007-10-09 23:00:00;69.2 -2007-10-10 17:00:00;67.7 -2007-10-10 20:00:00;67.9 -2007-10-10 23:00:00;68.5 -2007-10-11 17:00:00;68.3 -2007-10-11 20:00:00;68.6 -2007-10-11 23:00:00;69.1 -2007-10-12 17:00:00;68.1 -2007-10-12 20:00:00;68.3 -2007-10-12 23:00:00;68.8 -2007-10-13 17:00:00;67.0 -2007-10-13 20:00:00;67.3 -2007-10-13 23:00:00;68.0 -2007-10-14 17:00:00;66.6 -2007-10-14 20:00:00;66.7 -2007-10-14 23:00:00;67.6 -2007-10-15 17:00:00;66.7 -2007-10-15 20:00:00;66.8 -2007-10-15 23:00:00;67.3 -2007-10-16 17:00:00;68.1 -2007-10-16 20:00:00;66.7 -2007-10-16 23:00:00;67.3 -2007-10-17 17:00:00;66.5 -2007-10-17 20:00:00;67.0 -2007-10-17 23:00:00;67.8 -2007-10-18 17:00:00;66.9 -2007-10-18 20:00:00;67.7 -2007-10-18 23:00:00;64.1 -2007-10-19 17:00:00;66.6 -2007-10-19 20:00:00;66.8 -2007-10-19 23:00:00;67.4 -2007-10-20 17:00:00;66.4 -2007-10-20 20:00:00;66.3 -2007-10-20 23:00:00;67.4 -2007-10-21 17:00:00;66.7 -2007-10-21 20:00:00;66.6 -2007-10-21 23:00:00;67.7 -2007-10-22 17:00:00;65.6 -2007-10-22 20:00:00;66.0 -2007-10-22 23:00:00;66.9 -2007-10-23 17:00:00;65.9 -2007-10-23 20:00:00;66.4 -2007-10-23 23:00:00;67.2 -2007-10-24 17:00:00;66.4 -2007-10-24 20:00:00;66.8 -2007-10-24 23:00:00;67.0 -2007-10-25 17:00:00;65.5 -2007-10-25 20:00:00;66.3 -2007-10-25 23:00:00;67.1 -2007-10-26 17:00:00;66.2 -2007-10-26 20:00:00;66.7 -2007-10-26 23:00:00;67.2 -2007-10-27 17:00:00;66.5 -2007-10-27 20:00:00;66.2 -2007-10-27 23:00:00;67.2 -2007-10-28 17:00:00;66.6 -2007-10-28 20:00:00;66.6 -2007-10-28 23:00:00;67.5 -2007-10-29 17:00:00;66.4 -2007-10-29 20:00:00;66.2 -2007-10-29 23:00:00;67.1 -2007-10-30 17:00:00;66.2 -2007-10-30 20:00:00;66.3 -2007-10-30 23:00:00;67.1 -2007-10-31 17:00:00;65.8 -2007-10-31 20:00:00;66.1 -2007-10-31 23:00:00;67.1 -2007-11-01 18:00:00;66.2 -2007-11-01 20:00:00;66.3 -2007-11-01 22:00:00;66.8 -2007-11-02 18:00:00;66.2 -2007-11-02 20:00:00;66.8 -2007-11-02 22:00:00;67.4 -2007-11-03 18:00:00;66.4 -2007-11-03 20:00:00;66.5 -2007-11-03 22:00:00;67.1 -2007-11-04 18:00:00;66.2 -2007-11-04 20:00:00;66.5 -2007-11-04 22:00:00;67.5 -2007-11-05 18:00:00;66.2 -2007-11-05 20:00:00;66.2 -2007-11-05 22:00:00;67.0 -2007-11-06 18:00:00;66.8 -2007-11-06 20:00:00;67.3 -2007-11-06 22:00:00;68.0 -2007-11-07 18:00:00;66.3 -2007-11-07 20:00:00;66.9 -2007-11-07 22:00:00;67.4 -2007-11-08 18:00:00;65.3 -2007-11-08 20:00:00;68.4 -2007-11-08 22:00:00;63.6 -2007-11-09 18:00:00;67.8 -2007-11-09 20:00:00;68.2 -2007-11-09 22:00:00;67.8 -2007-11-10 18:00:00;69.1 -2007-11-10 20:00:00;68.4 -2007-11-10 22:00:00;68.3 -2007-11-11 18:00:00;68.4 -2007-11-11 20:00:00;67.7 -2007-11-11 22:00:00;67.3 -2007-11-12 18:00:00;68.2 -2007-11-12 20:00:00;68.3 -2007-11-12 22:00:00;67.9 -2007-11-13 18:00:00;68.4 -2007-11-13 20:00:00;68.4 -2007-11-13 22:00:00;68.5 -2007-11-14 18:00:00;68.4 -2007-11-14 20:00:00;68.9 -2007-11-14 22:00:00;68.3 -2007-11-15 18:00:00;67.8 -2007-11-15 20:00:00;67.7 -2007-11-15 22:00:00;67.5 -2007-11-16 18:00:00;69.4 -2007-11-16 20:00:00;69.1 -2007-11-16 22:00:00;68.8 -2007-11-17 18:00:00;68.0 -2007-11-17 20:00:00;68.2 -2007-11-17 22:00:00;67.4 -2007-11-18 18:00:00;67.3 -2007-11-18 20:00:00;67.2 -2007-11-18 22:00:00;66.9 -2007-11-19 18:00:00;67.9 -2007-11-19 20:00:00;67.9 -2007-11-19 22:00:00;67.1 -2007-11-20 18:00:00;68.1 -2007-11-20 20:00:00;68.0 -2007-11-20 22:00:00;66.6 -2007-11-21 18:00:00;67.8 -2007-11-21 20:00:00;67.4 -2007-11-21 22:00:00;67.3 -2007-11-22 18:00:00;68.3 -2007-11-22 20:00:00;68.0 -2007-11-22 22:00:00;67.5 -2007-11-23 18:00:00;68.2 -2007-11-23 20:00:00;68.3 -2007-11-23 22:00:00;68.1 -2007-11-24 18:00:00;68.8 -2007-11-24 20:00:00;69.5 -2007-11-24 22:00:00;68.7 -2007-11-25 18:00:00;69.1 -2007-11-25 20:00:00;68.8 -2007-11-25 22:00:00;68.3 -2007-11-26 18:00:00;69.2 -2007-11-26 20:00:00;69.6 -2007-11-26 22:00:00;69.3 -2007-11-27 18:00:00;69.2 -2007-11-27 20:00:00;69.6 -2007-11-27 22:00:00;68.9 -2007-11-28 18:00:00;68.7 -2007-11-28 20:00:00;69.3 -2007-11-28 22:00:00;68.8 -2007-11-29 18:00:00;68.4 -2007-11-29 20:00:00;69.3 -2007-11-29 22:00:00;69.0 -2007-11-30 18:00:00;68.8 -2007-11-30 20:00:00;69.2 -2007-11-30 22:00:00;69.1 -2007-12-01 18:00:00;69.4 -2007-12-01 20:00:00;69.9 -2007-12-01 22:00:00;69.4 -2007-12-02 18:00:00;70.2 -2007-12-02 20:00:00;71.0 -2007-12-02 22:00:00;70.3 -2007-12-03 18:00:00;70.2 -2007-12-03 20:00:00;70.5 -2007-12-03 22:00:00;70.6 -2007-12-04 18:00:00;71.7 -2007-12-04 20:00:00;71.5 -2007-12-04 22:00:00;71.5 -2007-12-05 18:00:00;71.7 -2007-12-05 20:00:00;73.1 -2007-12-05 22:00:00;72.3 -2007-12-06 18:00:00;75.1 -2007-12-06 20:00:00;75.9 -2007-12-06 22:00:00;76.5 -2007-12-07 18:00:00;78.4 -2007-12-07 20:00:00;79.8 -2007-12-07 22:00:00;80.0 -2007-12-08 18:00:00;84.5 -2007-12-08 20:00:00;84.4 -2007-12-08 22:00:00;84.4 -2007-12-09 18:00:00;84.6 -2007-12-09 20:00:00;86.2 -2007-12-09 22:00:00;84.2 -2007-12-10 18:00:00;84.6 -2007-12-10 20:00:00;84.3 -2007-12-10 22:00:00;83.5 -2007-12-11 18:00:00;90.2 -2007-12-11 20:00:00;90.5 -2007-12-11 22:00:00;88.3 -2007-12-12 18:00:00;91.2 -2007-12-12 20:00:00;91.1 -2007-12-12 22:00:00;89.4 -2007-12-13 18:00:00;91.3 -2007-12-13 20:00:00;90.9 -2007-12-13 22:00:00;91.5 -2007-12-14 18:00:00;88.0 -2007-12-14 20:00:00;89.0 -2007-12-14 22:00:00;88.7 -2007-12-15 18:00:00;85.5 -2007-12-15 20:00:00;86.1 -2007-12-15 22:00:00;83.5 -2007-12-16 18:00:00;80.6 -2007-12-16 20:00:00;79.1 -2007-12-16 22:00:00;79.5 -2007-12-17 18:00:00;76.8 -2007-12-17 20:00:00;76.9 -2007-12-17 22:00:00;76.2 -2007-12-18 18:00:00;73.1 -2007-12-18 20:00:00;74.4 -2007-12-18 22:00:00;72.6 -2007-12-19 18:00:00;72.3 -2007-12-19 20:00:00;72.1 -2007-12-19 22:00:00;72.4 -2007-12-20 18:00:00;70.2 -2007-12-20 20:00:00;70.2 -2007-12-20 22:00:00;69.7 -2007-12-21 18:00:00;69.1 -2007-12-21 20:00:00;68.7 -2007-12-21 22:00:00;68.7 -2007-12-22 18:00:00;68.8 -2007-12-22 20:00:00;69.1 -2007-12-22 22:00:00;70.1 -2007-12-23 18:00:00;68.5 -2007-12-23 20:00:00;69.1 -2007-12-23 22:00:00;69.2 -2007-12-24 18:00:00;69.4 -2007-12-24 20:00:00;69.1 -2007-12-24 22:00:00;69.1 -2007-12-25 18:00:00;69.6 -2007-12-25 20:00:00;69.7 -2007-12-25 22:00:00;69.5 -2007-12-26 18:00:00;70.1 -2007-12-26 20:00:00;70.2 -2007-12-26 22:00:00;69.9 -2007-12-27 18:00:00;69.6 -2007-12-27 20:00:00;69.7 -2007-12-27 22:00:00;70.2 -2007-12-28 18:00:00;68.0 -2007-12-28 20:00:00;69.5 -2007-12-28 22:00:00;70.0 -2007-12-29 18:00:00;68.8 -2007-12-29 20:00:00;70.3 -2007-12-29 22:00:00;70.5 -2007-12-30 18:00:00;67.9 -2007-12-30 20:00:00;72.5 -2007-12-30 22:00:00;73.0 -2007-12-31 18:00:00;68.7 -2007-12-31 20:00:00;74.2 -2007-12-31 22:00:00;75.2 -2008-01-01 18:00:00;71.4 -2008-01-01 20:00:00;76.7 -2008-01-01 22:00:00;75.8 -2008-01-02 18:00:00;72.7 -2008-01-02 20:00:00;77.0 -2008-01-02 22:00:00;76.6 -2008-01-03 18:00:00;76.7 -2008-01-03 20:00:00;76.7 -2008-01-03 22:00:00;76.0 -2008-01-04 18:00:00;77.4 -2008-01-04 20:00:00;76.4 -2008-01-04 22:00:00;76.8 -2008-01-05 18:00:00;77.1 -2008-01-05 20:00:00;77.1 -2008-01-05 22:00:00;77.0 -2008-01-06 18:00:00;75.8 -2008-01-06 20:00:00;76.6 -2008-01-06 22:00:00;75.6 -2008-01-07 18:00:00;76.1 -2008-01-07 20:00:00;75.2 -2008-01-07 22:00:00;75.1 -2008-01-08 18:00:00;73.1 -2008-01-08 20:00:00;73.0 -2008-01-08 22:00:00;73.1 -2008-01-09 18:00:00;72.7 -2008-01-09 20:00:00;74.0 -2008-01-09 22:00:00;73.0 -2008-01-10 18:00:00;72.6 -2008-01-10 20:00:00;73.2 -2008-01-10 22:00:00;73.3 -2008-01-11 18:00:00;72.7 -2008-01-11 20:00:00;73.5 -2008-01-11 22:00:00;73.2 -2008-01-12 18:00:00;72.4 -2008-01-12 20:00:00;73.2 -2008-01-12 22:00:00;72.8 -2008-01-13 18:00:00;72.9 -2008-01-13 20:00:00;72.9 -2008-01-13 22:00:00;73.1 -2008-01-14 18:00:00;72.6 -2008-01-14 20:00:00;73.1 -2008-01-14 22:00:00;72.5 -2008-01-15 18:00:00;71.5 -2008-01-15 20:00:00;71.3 -2008-01-15 22:00:00;71.0 -2008-01-16 18:00:00;70.7 -2008-01-16 20:00:00;70.6 -2008-01-16 22:00:00;70.7 -2008-01-17 18:00:00;70.4 -2008-01-17 20:00:00;71.3 -2008-01-17 22:00:00;70.8 -2008-01-18 18:00:00;68.9 -2008-01-18 20:00:00;68.8 -2008-01-18 22:00:00;69.0 -2008-01-19 18:00:00;67.8 -2008-01-19 20:00:00;68.6 -2008-01-19 22:00:00;69.3 -2008-01-20 18:00:00;67.5 -2008-01-20 20:00:00;68.0 -2008-01-20 22:00:00;68.8 -2008-01-21 18:00:00;68.8 -2008-01-21 20:00:00;69.3 -2008-01-21 22:00:00;68.8 -2008-01-22 18:00:00;67.5 -2008-01-22 20:00:00;68.1 -2008-01-22 22:00:00;68.7 -2008-01-23 18:00:00;67.8 -2008-01-23 20:00:00;68.4 -2008-01-23 22:00:00;68.6 -2008-01-24 18:00:00;67.4 -2008-01-24 20:00:00;69.1 -2008-01-24 22:00:00;68.5 -2008-01-25 18:00:00;68.5 -2008-01-25 20:00:00;68.9 -2008-01-25 22:00:00;68.9 -2008-01-26 18:00:00;69.0 -2008-01-26 20:00:00;70.3 -2008-01-26 22:00:00;69.7 -2008-01-27 18:00:00;69.1 -2008-01-27 20:00:00;69.8 -2008-01-27 22:00:00;70.0 -2008-01-28 18:00:00;68.6 -2008-01-28 20:00:00;69.2 -2008-01-28 22:00:00;69.1 -2008-01-29 18:00:00;68.4 -2008-01-29 20:00:00;69.5 -2008-01-29 22:00:00;70.1 -2008-01-30 18:00:00;69.4 -2008-01-30 20:00:00;70.6 -2008-01-30 22:00:00;71.4 -2008-01-31 18:00:00;69.1 -2008-01-31 20:00:00;69.9 -2008-01-31 22:00:00;70.6 -2008-02-01 18:00:00;68.9 -2008-02-01 20:00:00;69.0 -2008-02-01 22:00:00;70.3 -2008-02-02 18:00:00;68.1 -2008-02-02 20:00:00;69.8 -2008-02-04 18:00:00;68.6 -2008-02-04 20:00:00;69.3 -2008-02-04 22:00:00;69.1 -2008-02-05 18:00:00;68.9 -2008-02-05 20:00:00;68.5 -2008-02-05 22:00:00;68.6 -2008-02-06 18:00:00;68.9 -2008-02-06 20:00:00;69.6 -2008-02-06 22:00:00;69.3 -2008-02-07 18:00:00;67.9 -2008-02-07 20:00:00;68.9 -2008-02-07 22:00:00;68.3 -2008-02-08 18:00:00;70.0 -2008-02-08 20:00:00;69.0 -2008-02-08 22:00:00;69.2 -2008-02-09 18:00:00;70.1 -2008-02-09 20:00:00;70.3 -2008-02-09 22:00:00;69.9 -2008-02-10 18:00:00;70.2 -2008-02-10 20:00:00;70.7 -2008-02-10 22:00:00;71.2 -2008-02-11 18:00:00;69.8 -2008-02-11 20:00:00;70.2 -2008-02-11 22:00:00;70.5 -2008-02-12 18:00:00;69.7 -2008-02-12 20:00:00;70.3 -2008-02-12 22:00:00;70.4 -2008-02-13 18:00:00;68.6 -2008-02-13 20:00:00;68.7 -2008-02-13 22:00:00;69.0 -2008-02-14 18:00:00;68.3 -2008-02-14 20:00:00;68.8 -2008-02-14 22:00:00;68.3 -2008-02-15 18:00:00;68.2 -2008-02-15 20:00:00;68.0 -2008-02-15 22:00:00;68.0 -2008-02-16 18:00:00;68.6 -2008-02-16 20:00:00;68.6 -2008-02-16 22:00:00;68.9 -2008-02-17 18:00:00;69.2 -2008-02-17 20:00:00;69.4 -2008-02-17 22:00:00;69.0 -2008-02-18 18:00:00;69.7 -2008-02-18 20:00:00;69.5 -2008-02-18 22:00:00;69.4 -2008-02-19 18:00:00;69.9 -2008-02-19 20:00:00;70.0 -2008-02-19 22:00:00;69.5 -2008-02-20 18:00:00;68.9 -2008-02-20 20:00:00;69.3 -2008-02-20 22:00:00;69.6 -2008-02-21 18:00:00;70.2 -2008-02-21 20:00:00;70.3 -2008-02-21 22:00:00;70.4 -2008-02-22 18:00:00;70.7 -2008-02-22 20:00:00;70.8 -2008-02-22 22:00:00;71.0 -2008-02-23 18:00:00;69.5 -2008-02-23 20:00:00;70.1 -2008-02-23 22:00:00;69.9 -2008-02-24 18:00:00;68.5 -2008-02-24 20:00:00;69.3 -2008-02-24 22:00:00;69.3 -2008-02-25 18:00:00;69.3 -2008-02-25 20:00:00;69.9 -2008-02-25 22:00:00;69.9 -2008-02-26 18:00:00;68.8 -2008-02-26 20:00:00;69.3 -2008-02-26 22:00:00;70.1 -2008-02-27 18:00:00;69.2 -2008-02-27 20:00:00;69.4 -2008-02-27 22:00:00;69.2 -2008-02-28 18:00:00;68.5 -2008-02-28 20:00:00;68.7 -2008-02-28 22:00:00;68.4 -2008-02-29 18:00:00;67.6 -2008-02-29 20:00:00;68.5 -2008-02-29 22:00:00;68.3 -2008-03-01 17:00:00;66.8 -2008-03-01 20:00:00;67.4 -2008-03-01 23:00:00;67.1 -2008-03-02 20:00:00;68.0 -2008-03-02 23:00:00;67.4 -2008-03-03 17:00:00;67.6 -2008-03-03 20:00:00;67.3 -2008-03-03 23:00:00;67.0 -2008-03-04 17:00:00;67.6 -2008-03-04 20:00:00;67.2 -2008-03-04 23:00:00;66.9 -2008-03-05 17:00:00;68.3 -2008-03-05 20:00:00;68.2 -2008-03-05 23:00:00;68.0 -2008-03-06 17:00:00;69.4 -2008-03-06 20:00:00;69.3 -2008-03-06 23:00:00;68.7 -2008-03-07 17:00:00;69.6 -2008-03-07 20:00:00;69.5 -2008-03-07 23:00:00;69.0 -2008-03-08 17:00:00;68.9 -2008-03-08 20:00:00;68.8 -2008-03-08 23:00:00;68.4 -2008-03-09 17:00:00;69.0 -2008-03-09 20:00:00;68.5 -2008-03-09 23:00:00;69.2 -2008-03-10 17:00:00;69.7 -2008-03-10 20:00:00;69.4 -2008-03-10 23:00:00;69.3 -2008-03-11 17:00:00;69.7 -2008-03-11 20:00:00;69.3 -2008-03-11 23:00:00;68.9 -2008-03-12 17:00:00;68.7 -2008-03-12 20:00:00;68.5 -2008-03-12 23:00:00;68.2 -2008-03-13 17:00:00;69.1 -2008-03-13 20:00:00;68.7 -2008-03-13 23:00:00;68.8 -2008-03-14 17:00:00;68.1 -2008-03-14 20:00:00;69.1 -2008-03-14 23:00:00;69.0 -2008-03-15 17:00:00;68.2 -2008-03-15 20:00:00;68.8 -2008-03-15 23:00:00;67.0 -2008-03-16 17:00:00;69.7 -2008-03-16 20:00:00;69.6 -2008-03-16 23:00:00;69.2 -2008-03-17 17:00:00;69.9 -2008-03-17 20:00:00;69.1 -2008-03-17 23:00:00;68.9 -2008-03-18 17:00:00;69.3 -2008-03-18 20:00:00;69.0 -2008-03-18 23:00:00;68.6 -2008-03-19 17:00:00;68.5 -2008-03-19 20:00:00;68.4 -2008-03-19 23:00:00;68.5 -2008-03-20 17:00:00;68.4 -2008-03-20 20:00:00;67.9 -2008-03-20 23:00:00;67.8 -2008-03-21 17:00:00;67.8 -2008-03-21 20:00:00;67.7 -2008-03-21 23:00:00;67.6 -2008-03-22 17:00:00;69.3 -2008-03-22 20:00:00;69.1 -2008-03-22 23:00:00;68.9 -2008-03-23 17:00:00;71.2 -2008-03-23 20:00:00;71.5 -2008-03-23 23:00:00;72.3 -2008-03-24 17:00:00;77.6 -2008-03-24 20:00:00;79.0 -2008-03-24 23:00:00;80.6 -2008-03-25 17:00:00;86.0 -2008-03-25 20:00:00;88.2 -2008-03-25 23:00:00;86.4 -2008-03-26 17:00:00;85.8 -2008-03-26 20:00:00;81.2 -2008-03-26 23:00:00;85.5 -2008-03-27 17:00:00;87.1 -2008-03-27 20:00:00;84.5 -2008-03-27 23:00:00;85.0 -2008-03-28 17:00:00;83.0 -2008-03-28 20:00:00;82.6 -2008-03-28 23:00:00;82.8 -2008-03-29 17:00:00;82.6 -2008-03-29 20:00:00;82.4 -2008-03-29 23:00:00;82.7 -2008-03-30 17:00:00;81.1 -2008-03-30 20:00:00;80.4 -2008-03-30 23:00:00;79.9 -2008-03-31 17:00:00;79.4 -2008-03-31 20:00:00;79.1 -2008-03-31 23:00:00;79.2 -2008-04-01 17:00:00;77.5 -2008-04-01 20:00:00;77.7 -2008-04-01 23:00:00;77.4 -2008-04-02 17:00:00;76.2 -2008-04-02 20:00:00;75.9 -2008-04-02 23:00:00;76.3 -2008-04-03 17:00:00;75.8 -2008-04-03 20:00:00;76.4 -2008-04-03 23:00:00;74.9 -2008-04-04 17:00:00;73.7 -2008-04-04 20:00:00;73.1 -2008-04-04 23:00:00;72.8 -2008-04-05 17:00:00;71.7 -2008-04-05 20:00:00;71.1 -2008-04-05 23:00:00;71.0 -2008-04-06 17:00:00;69.9 -2008-04-06 20:00:00;69.5 -2008-04-06 23:00:00;70.3 -2008-04-07 17:00:00;69.8 -2008-04-07 20:00:00;69.3 -2008-04-07 23:00:00;69.4 -2008-04-08 17:00:00;69.4 -2008-04-08 20:00:00;70.0 -2008-04-08 23:00:00;68.9 -2008-04-09 17:00:00;68.8 -2008-04-09 20:00:00;68.2 -2008-04-09 23:00:00;68.0 -2008-04-10 17:00:00;68.2 -2008-04-10 20:00:00;68.1 -2008-04-10 23:00:00;67.9 -2008-04-11 17:00:00;67.8 -2008-04-11 20:00:00;67.4 -2008-04-11 23:00:00;67.5 -2008-04-12 17:00:00;68.1 -2008-04-12 20:00:00;68.5 -2008-04-12 23:00:00;68.6 -2008-04-13 17:00:00;69.3 -2008-04-13 20:00:00;69.7 -2008-04-13 23:00:00;69.7 -2008-04-14 17:00:00;68.7 -2008-04-14 20:00:00;69.0 -2008-04-14 23:00:00;68.9 -2008-04-15 17:00:00;69.3 -2008-04-15 20:00:00;69.7 -2008-04-15 23:00:00;70.1 -2008-04-16 17:00:00;69.9 -2008-04-16 20:00:00;70.0 -2008-04-16 23:00:00;69.7 -2008-04-17 17:00:00;70.2 -2008-04-17 20:00:00;69.8 -2008-04-17 23:00:00;69.6 -2008-04-18 17:00:00;70.5 -2008-04-18 20:00:00;70.8 -2008-04-18 23:00:00;70.8 -2008-04-19 17:00:00;69.1 -2008-04-19 20:00:00;71.7 -2008-04-19 23:00:00;72.1 -2008-04-20 17:00:00;72.0 -2008-04-20 20:00:00;71.5 -2008-04-20 23:00:00;71.8 -2008-04-21 17:00:00;72.0 -2008-04-21 20:00:00;71.6 -2008-04-21 23:00:00;71.6 -2008-04-22 17:00:00;72.1 -2008-04-22 20:00:00;72.1 -2008-04-22 23:00:00;72.1 -2008-04-23 17:00:00;71.1 -2008-04-23 20:00:00;71.5 -2008-04-23 23:00:00;71.5 -2008-04-24 17:00:00;72.5 -2008-04-24 20:00:00;71.2 -2008-04-24 23:00:00;66.9 -2008-04-25 17:00:00;70.7 -2008-04-25 20:00:00;70.7 -2008-04-25 23:00:00;70.2 -2008-04-26 17:00:00;70.7 -2008-04-26 20:00:00;69.9 -2008-04-26 23:00:00;69.5 -2008-04-27 17:00:00;69.1 -2008-04-27 20:00:00;69.0 -2008-04-27 23:00:00;68.8 -2008-04-28 17:00:00;69.5 -2008-04-28 20:00:00;69.4 -2008-04-28 23:00:00;69.3 -2008-04-29 17:00:00;69.6 -2008-04-29 20:00:00;69.6 -2008-04-29 23:00:00;69.7 -2008-04-30 17:00:00;69.7 -2008-04-30 20:00:00;68.0 -2008-04-30 23:00:00;69.6 -2008-05-01 17:00:00;69.6 -2008-05-01 20:00:00;69.6 -2008-05-01 23:00:00;69.1 -2008-05-02 17:00:00;69.4 -2008-05-02 20:00:00;69.2 -2008-05-02 23:00:00;68.9 -2008-05-03 17:00:00;68.6 -2008-05-03 20:00:00;68.5 -2008-05-03 23:00:00;68.7 -2008-05-04 17:00:00;69.0 -2008-05-04 20:00:00;69.5 -2008-05-04 23:00:00;69.6 -2008-05-05 17:00:00;69.1 -2008-05-05 20:00:00;68.8 -2008-05-05 23:00:00;68.9 -2008-05-06 17:00:00;68.6 -2008-05-06 20:00:00;68.4 -2008-05-06 23:00:00;68.7 -2008-05-07 17:00:00;68.0 -2008-05-07 20:00:00;67.8 -2008-05-07 23:00:00;67.6 -2008-05-08 17:00:00;66.9 -2008-05-08 20:00:00;67.7 -2008-05-08 23:00:00;67.4 -2008-05-09 17:00:00;68.5 -2008-05-09 20:00:00;68.6 -2008-05-09 23:00:00;68.6 -2008-05-10 17:00:00;68.8 -2008-05-10 20:00:00;68.7 -2008-05-10 23:00:00;68.9 -2008-05-11 17:00:00;69.4 -2008-05-11 20:00:00;69.4 -2008-05-11 23:00:00;69.2 -2008-05-12 17:00:00;69.6 -2008-05-12 20:00:00;69.5 -2008-05-12 23:00:00;69.3 -2008-05-13 17:00:00;69.9 -2008-05-13 20:00:00;69.7 -2008-05-13 23:00:00;70.0 -2008-05-14 17:00:00;69.8 -2008-05-14 20:00:00;70.5 -2008-05-14 23:00:00;70.1 -2008-05-15 17:00:00;73.5 -2008-05-15 20:00:00;72.7 -2008-05-15 23:00:00;73.2 -2008-05-16 17:00:00;73.2 -2008-05-16 20:00:00;73.2 -2008-05-16 23:00:00;73.2 -2008-05-17 17:00:00;72.6 -2008-05-17 20:00:00;72.8 -2008-05-17 23:00:00;73.0 -2008-05-18 17:00:00;72.5 -2008-05-18 20:00:00;73.3 -2008-05-18 23:00:00;72.1 -2008-05-19 17:00:00;71.1 -2008-05-19 20:00:00;70.5 -2008-05-19 23:00:00;71.2 -2008-05-20 17:00:00;70.5 -2008-05-20 20:00:00;70.2 -2008-05-20 23:00:00;70.5 -2008-05-21 17:00:00;70.2 -2008-05-21 20:00:00;70.8 -2008-05-21 23:00:00;70.7 -2008-05-22 17:00:00;70.4 -2008-05-22 20:00:00;71.0 -2008-05-22 23:00:00;70.4 -2008-05-23 17:00:00;69.8 -2008-05-23 20:00:00;69.6 -2008-05-23 23:00:00;69.7 -2008-05-24 17:00:00;70.2 -2008-05-24 20:00:00;70.3 -2008-05-24 23:00:00;70.1 -2008-05-25 17:00:00;70.2 -2008-05-25 20:00:00;70.1 -2008-05-25 23:00:00;70.3 -2008-05-26 17:00:00;69.6 -2008-05-26 20:00:00;69.8 -2008-05-26 23:00:00;70.2 -2008-05-27 17:00:00;70.1 -2008-05-27 20:00:00;69.7 -2008-05-27 23:00:00;68.9 -2008-05-28 17:00:00;68.8 -2008-05-28 20:00:00;69.6 -2008-05-28 23:00:00;69.3 -2008-05-29 17:00:00;69.6 -2008-05-29 20:00:00;69.9 -2008-05-29 23:00:00;68.9 -2008-05-30 17:00:00;68.6 -2008-05-30 20:00:00;69.0 -2008-05-30 23:00:00;68.8 -2008-05-31 17:00:00;69.2 -2008-05-31 20:00:00;68.8 -2008-05-31 23:00:00;68.6 -2008-06-01 17:00:00;68.3 -2008-06-01 20:00:00;68.5 -2008-06-01 23:00:00;68.9 -2008-06-02 17:00:00;68.0 -2008-06-02 20:00:00;69.0 -2008-06-02 23:00:00;68.0 -2008-06-03 17:00:00;67.8 -2008-06-03 20:00:00;68.2 -2008-06-03 23:00:00;67.5 -2008-06-04 17:00:00;67.9 -2008-06-04 20:00:00;67.1 -2008-06-04 23:00:00;68.2 -2008-06-05 17:00:00;67.8 -2008-06-05 20:00:00;68.4 -2008-06-05 23:00:00;67.9 -2008-06-06 17:00:00;67.7 -2008-06-06 20:00:00;67.9 -2008-06-06 23:00:00;67.5 -2008-06-07 17:00:00;67.3 -2008-06-07 20:00:00;67.6 -2008-06-07 23:00:00;67.4 -2008-06-08 17:00:00;66.8 -2008-06-08 20:00:00;66.9 -2008-06-08 23:00:00;66.9 -2008-06-09 17:00:00;67.6 -2008-06-09 20:00:00;68.0 -2008-06-09 23:00:00;68.1 -2008-06-10 17:00:00;68.5 -2008-06-10 20:00:00;68.2 -2008-06-10 23:00:00;69.5 -2008-06-11 17:00:00;67.2 -2008-06-11 20:00:00;67.8 -2008-06-11 23:00:00;67.8 -2008-06-12 17:00:00;68.3 -2008-06-12 20:00:00;69.2 -2008-06-12 23:00:00;69.2 -2008-06-13 17:00:00;68.8 -2008-06-13 20:00:00;68.6 -2008-06-13 23:00:00;68.5 -2008-06-14 17:00:00;68.9 -2008-06-14 20:00:00;69.2 -2008-06-14 23:00:00;68.6 -2008-06-15 17:00:00;68.3 -2008-06-15 20:00:00;68.6 -2008-06-15 23:00:00;67.7 -2008-06-16 17:00:00;66.9 -2008-06-16 20:00:00;67.4 -2008-06-16 23:00:00;68.0 -2008-06-17 17:00:00;68.1 -2008-06-17 20:00:00;68.1 -2008-06-17 23:00:00;67.6 -2008-06-18 17:00:00;67.7 -2008-06-18 20:00:00;67.5 -2008-06-18 23:00:00;68.1 -2008-06-19 17:00:00;67.2 -2008-06-19 20:00:00;67.0 -2008-06-19 23:00:00;66.7 -2008-06-20 17:00:00;66.9 -2008-06-20 20:00:00;67.3 -2008-06-20 23:00:00;66.9 -2008-06-21 17:00:00;66.7 -2008-06-21 20:00:00;67.0 -2008-06-21 23:00:00;67.4 -2008-06-22 17:00:00;67.3 -2008-06-22 20:00:00;67.5 -2008-06-22 23:00:00;67.6 -2008-06-23 17:00:00;67.6 -2008-06-23 20:00:00;67.5 -2008-06-23 23:00:00;68.0 -2008-06-24 17:00:00;68.4 -2008-06-24 20:00:00;68.0 -2008-06-24 23:00:00;68.6 -2008-06-25 17:00:00;67.8 -2008-06-25 20:00:00;68.1 -2008-06-25 23:00:00;68.7 -2008-06-26 17:00:00;67.2 -2008-06-26 20:00:00;67.5 -2008-06-26 23:00:00;67.6 -2008-06-27 17:00:00;67.4 -2008-06-27 20:00:00;68.3 -2008-06-27 23:00:00;68.5 -2008-06-28 17:00:00;68.8 -2008-06-28 20:00:00;68.1 -2008-06-28 23:00:00;68.3 -2008-06-29 17:00:00;68.0 -2008-06-29 20:00:00;68.8 -2008-06-29 23:00:00;68.7 -2008-06-30 17:00:00;68.2 -2008-06-30 20:00:00;68.9 -2008-06-30 23:00:00;68.5 -2008-07-01 17:00:00;67.4 -2008-07-01 20:00:00;67.8 -2008-07-01 23:00:00;67.8 -2008-07-02 17:00:00;67.8 -2008-07-02 20:00:00;68.2 -2008-07-02 23:00:00;68.7 -2008-07-03 17:00:00;67.8 -2008-07-03 20:00:00;67.7 -2008-07-03 23:00:00;69.0 -2008-07-04 17:00:00;67.8 -2008-07-04 20:00:00;67.6 -2008-07-04 23:00:00;67.8 -2008-07-05 17:00:00;67.9 -2008-07-05 20:00:00;67.3 -2008-07-05 23:00:00;68.3 -2008-07-06 17:00:00;68.8 -2008-07-06 20:00:00;68.3 -2008-07-06 23:00:00;68.6 -2008-07-07 17:00:00;67.8 -2008-07-07 20:00:00;67.7 -2008-07-07 23:00:00;67.9 -2008-07-08 17:00:00;67.6 -2008-07-08 20:00:00;67.8 -2008-07-08 23:00:00;68.0 -2008-07-09 17:00:00;67.5 -2008-07-09 20:00:00;68.3 -2008-07-09 23:00:00;68.3 -2008-07-10 17:00:00;67.3 -2008-07-10 20:00:00;67.6 -2008-07-10 23:00:00;67.6 -2008-07-11 17:00:00;67.7 -2008-07-11 20:00:00;67.9 -2008-07-11 23:00:00;67.9 -2008-07-12 17:00:00;66.8 -2008-07-12 20:00:00;67.1 -2008-07-12 23:00:00;67.0 -2008-07-13 17:00:00;67.4 -2008-07-13 20:00:00;67.4 -2008-07-13 23:00:00;67.7 -2008-07-14 17:00:00;67.5 -2008-07-14 20:00:00;67.8 -2008-07-14 23:00:00;68.0 -2008-07-15 17:00:00;67.5 -2008-07-15 20:00:00;67.9 -2008-07-15 23:00:00;67.6 -2008-07-16 17:00:00;66.3 -2008-07-16 20:00:00;66.7 -2008-07-16 23:00:00;66.7 -2008-07-17 17:00:00;66.8 -2008-07-17 20:00:00;67.1 -2008-07-17 23:00:00;67.2 -2008-07-18 17:00:00;67.0 -2008-07-18 20:00:00;67.4 -2008-07-18 23:00:00;68.2 -2008-07-19 17:00:00;67.8 -2008-07-19 20:00:00;68.5 -2008-07-19 23:00:00;68.5 -2008-07-20 17:00:00;67.8 -2008-07-20 20:00:00;68.0 -2008-07-20 23:00:00;67.9 -2008-07-21 17:00:00;67.7 -2008-07-21 20:00:00;68.4 -2008-07-21 23:00:00;68.5 -2008-07-22 17:00:00;67.8 -2008-07-22 20:00:00;68.0 -2008-07-22 23:00:00;67.6 -2008-07-23 17:00:00;67.4 -2008-07-23 20:00:00;67.6 -2008-07-23 23:00:00;68.0 -2008-07-24 17:00:00;67.6 -2008-07-24 20:00:00;67.5 -2008-07-24 23:00:00;67.7 -2008-07-25 17:00:00;67.0 -2008-07-25 20:00:00;67.9 -2008-07-25 23:00:00;68.3 -2008-07-26 17:00:00;67.1 -2008-07-26 20:00:00;68.1 -2008-07-26 23:00:00;67.9 -2008-07-27 17:00:00;68.9 -2008-07-27 20:00:00;68.4 -2008-07-27 23:00:00;68.8 -2008-07-28 17:00:00;67.9 -2008-07-28 20:00:00;68.3 -2008-07-28 23:00:00;68.5 -2008-07-29 17:00:00;68.0 -2008-07-29 20:00:00;68.1 -2008-07-29 23:00:00;67.9 -2008-07-30 17:00:00;69.0 -2008-07-30 20:00:00;68.5 -2008-07-30 23:00:00;68.3 -2008-07-31 17:00:00;67.5 -2008-07-31 20:00:00;67.5 -2008-07-31 23:00:00;68.1 -2008-08-01 17:00:00;67.9 -2008-08-01 20:00:00;68.1 -2008-08-01 23:00:00;68.0 -2008-08-02 17:00:00;68.3 -2008-08-02 20:00:00;68.2 -2008-08-02 23:00:00;68.2 -2008-08-03 17:00:00;67.5 -2008-08-03 20:00:00;67.4 -2008-08-03 23:00:00;67.0 -2008-08-04 17:00:00;66.8 -2008-08-04 20:00:00;68.2 -2008-08-04 23:00:00;67.8 -2008-08-05 17:00:00;67.7 -2008-08-05 20:00:00;68.4 -2008-08-05 23:00:00;68.0 -2008-08-06 17:00:00;68.4 -2008-08-06 20:00:00;68.9 -2008-08-06 23:00:00;68.7 -2008-08-07 17:00:00;67.6 -2008-08-07 20:00:00;68.0 -2008-08-07 23:00:00;67.3 -2008-08-08 17:00:00;67.0 -2008-08-08 20:00:00;67.3 -2008-08-08 23:00:00;67.2 -2008-08-09 17:00:00;66.7 -2008-08-09 20:00:00;67.3 -2008-08-09 23:00:00;66.3 -2008-08-10 17:00:00;66.9 -2008-08-10 20:00:00;67.4 -2008-08-10 23:00:00;66.9 -2008-08-11 17:00:00;66.9 -2008-08-11 20:00:00;67.5 -2008-08-11 23:00:00;67.1 -2008-08-12 17:00:00;66.6 -2008-08-12 20:00:00;66.9 -2008-08-12 23:00:00;66.8 -2008-08-13 17:00:00;67.1 -2008-08-13 20:00:00;67.0 -2008-08-13 23:00:00;66.9 -2008-08-14 17:00:00;67.9 -2008-08-14 20:00:00;67.6 -2008-08-14 23:00:00;67.0 -2008-08-15 17:00:00;67.2 -2008-08-15 20:00:00;67.0 -2008-08-15 23:00:00;68.1 -2008-08-16 17:00:00;67.5 -2008-08-16 20:00:00;67.8 -2008-08-16 23:00:00;68.2 -2008-08-17 17:00:00;67.6 -2008-08-17 20:00:00;68.2 -2008-08-17 23:00:00;68.2 -2008-08-18 17:00:00;68.0 -2008-08-18 20:00:00;67.8 -2008-08-18 23:00:00;67.8 -2008-08-19 17:00:00;67.7 -2008-08-19 20:00:00;68.9 -2008-08-19 23:00:00;67.7 -2008-08-20 17:00:00;70.9 -2008-08-20 20:00:00;67.4 -2008-08-20 23:00:00;67.2 -2008-08-21 17:00:00;67.9 -2008-08-21 20:00:00;68.7 -2008-08-21 23:00:00;68.3 -2008-08-22 17:00:00;69.1 -2008-08-22 20:00:00;69.1 -2008-08-22 23:00:00;69.0 -2008-08-23 17:00:00;69.4 -2008-08-23 20:00:00;69.4 -2008-08-23 23:00:00;69.5 -2008-08-24 17:00:00;68.5 -2008-08-24 20:00:00;68.6 -2008-08-24 23:00:00;68.2 -2008-08-25 17:00:00;67.5 -2008-08-25 20:00:00;68.0 -2008-08-25 23:00:00;67.5 -2008-08-26 17:00:00;67.9 -2008-08-26 20:00:00;68.3 -2008-08-26 23:00:00;67.5 -2008-08-27 17:00:00;67.5 -2008-08-27 20:00:00;68.0 -2008-08-27 23:00:00;66.9 -2008-08-28 17:00:00;67.7 -2008-08-28 20:00:00;67.4 -2008-08-28 23:00:00;67.6 -2008-08-29 17:00:00;67.7 -2008-08-29 20:00:00;68.1 -2008-08-29 23:00:00;67.8 -2008-08-30 17:00:00;68.0 -2008-08-30 20:00:00;68.4 -2008-08-30 23:00:00;67.6 -2008-08-31 17:00:00;67.8 -2008-08-31 20:00:00;67.9 -2008-08-31 23:00:00;67.5 -2008-09-01 17:00:00;67.2 -2008-09-01 20:00:00;67.0 -2008-09-01 23:00:00;66.6 -2008-09-02 17:00:00;66.9 -2008-09-02 20:00:00;67.2 -2008-09-02 23:00:00;67.1 -2008-09-03 17:00:00;67.1 -2008-09-03 20:00:00;67.3 -2008-09-03 23:00:00;67.5 -2008-09-04 17:00:00;67.4 -2008-09-04 20:00:00;67.0 -2008-09-04 23:00:00;67.1 -2008-09-05 17:00:00;66.8 -2008-09-05 20:00:00;66.3 -2008-09-05 23:00:00;66.4 -2008-09-06 17:00:00;67.0 -2008-09-06 20:00:00;66.8 -2008-09-06 23:00:00;66.5 -2008-09-07 17:00:00;67.7 -2008-09-07 20:00:00;67.6 -2008-09-07 23:00:00;67.1 -2008-09-08 17:00:00;68.0 -2008-09-08 20:00:00;68.0 -2008-09-08 23:00:00;68.0 -2008-09-09 17:00:00;68.2 -2008-09-09 20:00:00;68.0 -2008-09-09 23:00:00;67.5 -2008-09-10 17:00:00;68.2 -2008-09-10 20:00:00;68.1 -2008-09-10 23:00:00;68.1 -2008-09-11 17:00:00;67.6 -2008-09-11 20:00:00;67.8 -2008-09-11 23:00:00;66.8 -2008-09-12 17:00:00;67.8 -2008-09-12 20:00:00;67.1 -2008-09-12 23:00:00;67.0 -2008-09-13 17:00:00;67.5 -2008-09-13 20:00:00;67.2 -2008-09-13 23:00:00;67.0 -2008-09-14 17:00:00;67.5 -2008-09-14 20:00:00;67.6 -2008-09-14 23:00:00;67.0 -2008-09-15 17:00:00;68.2 -2008-09-15 20:00:00;68.2 -2008-09-15 23:00:00;66.4 -2008-09-16 17:00:00;69.1 -2008-09-16 20:00:00;70.1 -2008-09-16 23:00:00;66.7 -2008-09-17 17:00:00;68.6 -2008-09-17 20:00:00;67.7 -2008-09-17 23:00:00;67.3 -2008-09-18 17:00:00;68.1 -2008-09-18 20:00:00;67.8 -2008-09-18 23:00:00;67.6 -2008-09-19 17:00:00;68.5 -2008-09-19 20:00:00;68.4 -2008-09-19 23:00:00;68.4 -2008-09-20 17:00:00;68.6 -2008-09-20 20:00:00;68.4 -2008-09-20 23:00:00;67.6 -2008-09-21 17:00:00;69.0 -2008-09-21 20:00:00;68.4 -2008-09-21 23:00:00;67.6 -2008-09-22 17:00:00;69.8 -2008-09-22 20:00:00;69.6 -2008-09-22 23:00:00;69.1 -2008-09-23 17:00:00;69.8 -2008-09-23 20:00:00;69.8 -2008-09-23 23:00:00;68.9 -2008-09-24 17:00:00;69.3 -2008-09-24 20:00:00;68.8 -2008-09-24 23:00:00;67.7 -2008-09-25 17:00:00;69.0 -2008-09-25 20:00:00;68.6 -2008-09-25 23:00:00;67.6 -2008-09-26 17:00:00;68.6 -2008-09-26 20:00:00;68.0 -2008-09-26 23:00:00;67.2 -2008-09-27 17:00:00;67.0 -2008-09-27 20:00:00;67.6 -2008-09-27 23:00:00;66.6 -2008-09-28 17:00:00;68.3 -2008-09-28 20:00:00;67.3 -2008-09-28 23:00:00;66.4 -2008-09-29 17:00:00;67.5 -2008-09-29 20:00:00;67.0 -2008-09-29 23:00:00;66.0 -2008-09-30 17:00:00;67.1 -2008-09-30 20:00:00;66.4 -2008-09-30 23:00:00;65.6 -2008-10-01 17:00:00;66.6 -2008-10-01 20:00:00;65.9 -2008-10-01 23:00:00;65.3 -2008-10-02 17:00:00;66.9 -2008-10-02 20:00:00;66.4 -2008-10-02 23:00:00;65.7 -2008-10-03 17:00:00;67.7 -2008-10-03 20:00:00;67.2 -2008-10-03 23:00:00;65.8 -2008-10-04 17:00:00;67.6 -2008-10-04 20:00:00;66.6 -2008-10-04 23:00:00;66.2 -2008-10-05 17:00:00;67.9 -2008-10-05 20:00:00;67.4 -2008-10-05 23:00:00;66.5 -2008-10-06 17:00:00;68.2 -2008-10-06 20:00:00;67.2 -2008-10-06 23:00:00;65.7 -2008-10-07 17:00:00;67.6 -2008-10-07 20:00:00;66.6 -2008-10-07 23:00:00;66.0 -2008-10-08 17:00:00;68.2 -2008-10-08 20:00:00;67.5 -2008-10-08 23:00:00;66.4 -2008-10-09 17:00:00;69.2 -2008-10-09 20:00:00;68.5 -2008-10-09 23:00:00;67.3 -2008-10-10 17:00:00;70.1 -2008-10-10 20:00:00;68.7 -2008-10-10 23:00:00;67.7 -2008-10-11 17:00:00;71.6 -2008-10-11 20:00:00;70.5 -2008-10-11 23:00:00;69.3 -2008-10-12 17:00:00;70.5 -2008-10-12 20:00:00;69.7 -2008-10-12 23:00:00;68.8 -2008-10-13 17:00:00;71.1 -2008-10-13 20:00:00;70.5 -2008-10-13 23:00:00;68.8 -2008-10-14 17:00:00;71.2 -2008-10-14 20:00:00;70.0 -2008-10-14 23:00:00;68.9 -2008-10-15 17:00:00;71.2 -2008-10-15 20:00:00;70.5 -2008-10-15 23:00:00;68.8 -2008-10-16 17:00:00;72.0 -2008-10-16 20:00:00;71.4 -2008-10-16 23:00:00;69.3 -2008-10-17 17:00:00;71.0 -2008-10-17 20:00:00;69.5 -2008-10-17 23:00:00;68.1 -2008-10-18 17:00:00;70.7 -2008-10-18 20:00:00;68.6 -2008-10-18 23:00:00;68.1 -2008-10-19 17:00:00;70.5 -2008-10-19 20:00:00;69.0 -2008-10-19 23:00:00;67.3 -2008-10-20 17:00:00;69.4 -2008-10-20 20:00:00;68.6 -2008-10-20 23:00:00;66.5 -2008-10-21 17:00:00;69.8 -2008-10-21 20:00:00;68.2 -2008-10-21 23:00:00;66.7 -2008-10-22 17:00:00;69.2 -2008-10-22 20:00:00;67.0 -2008-10-22 23:00:00;65.1 -2008-10-23 17:00:00;68.4 -2008-10-23 20:00:00;66.5 -2008-10-23 23:00:00;65.1 -2008-10-24 17:00:00;67.9 -2008-10-24 20:00:00;66.7 -2008-10-24 23:00:00;65.3 -2008-10-25 17:00:00;67.8 -2008-10-25 20:00:00;66.7 -2008-10-25 23:00:00;64.9 -2008-10-26 17:00:00;68.0 -2008-10-26 20:00:00;66.0 -2008-10-26 23:00:00;64.3 -2008-10-27 17:00:00;67.3 -2008-10-27 20:00:00;66.1 -2008-10-27 23:00:00;64.5 -2008-10-28 17:00:00;67.6 -2008-10-28 20:00:00;66.2 -2008-10-28 23:00:00;64.2 -2008-10-29 17:00:00;67.4 -2008-10-29 20:00:00;65.8 -2008-10-29 23:00:00;63.9 -2008-10-30 17:00:00;67.3 -2008-10-30 20:00:00;65.9 -2008-10-30 23:00:00;64.8 -2008-10-31 17:00:00;68.5 -2008-10-31 20:00:00;67.1 -2008-10-31 23:00:00;64.7 -2008-11-01 18:00:00;66.5 -2008-11-01 20:00:00;65.6 -2008-11-01 22:00:00;64.9 -2008-11-02 18:00:00;68.3 -2008-11-02 20:00:00;68.0 -2008-11-02 22:00:00;66.1 -2008-11-03 18:00:00;67.9 -2008-11-03 20:00:00;68.3 -2008-11-03 22:00:00;66.9 -2008-11-04 18:00:00;68.6 -2008-11-04 20:00:00;66.8 -2008-11-04 22:00:00;66.4 -2008-11-05 18:00:00;67.5 -2008-11-05 20:00:00;66.5 -2008-11-05 22:00:00;65.6 -2008-11-06 18:00:00;67.9 -2008-11-06 20:00:00;67.3 -2008-11-06 22:00:00;66.0 -2008-11-07 18:00:00;68.4 -2008-11-07 20:00:00;66.5 -2008-11-07 22:00:00;65.8 -2008-11-08 18:00:00;68.3 -2008-11-08 20:00:00;67.0 -2008-11-08 22:00:00;65.8 -2008-11-09 18:00:00;68.3 -2008-11-09 20:00:00;67.1 -2008-11-09 22:00:00;65.2 -2008-11-10 18:00:00;68.0 -2008-11-10 20:00:00;67.9 -2008-11-10 22:00:00;67.1 -2008-11-11 18:00:00;71.1 -2008-11-11 20:00:00;70.0 -2008-11-11 22:00:00;68.5 -2008-11-12 18:00:00;71.2 -2008-11-12 20:00:00;69.5 -2008-11-12 22:00:00;68.5 -2008-11-13 18:00:00;69.1 -2008-11-13 20:00:00;67.6 -2008-11-13 22:00:00;66.1 -2008-11-14 18:00:00;68.3 -2008-11-14 20:00:00;66.8 -2008-11-14 22:00:00;65.0 -2008-11-15 18:00:00;68.2 -2008-11-15 20:00:00;66.7 -2008-11-15 22:00:00;65.3 -2008-11-16 18:00:00;67.5 -2008-11-16 20:00:00;66.2 -2008-11-16 22:00:00;64.7 -2008-11-17 18:00:00;66.4 -2008-11-17 20:00:00;66.2 -2008-11-17 22:00:00;64.6 -2008-11-18 18:00:00;68.5 -2008-11-18 20:00:00;68.2 -2008-11-18 22:00:00;66.8 -2008-11-19 18:00:00;69.0 -2008-11-19 20:00:00;67.7 -2008-11-19 22:00:00;66.7 -2008-11-20 18:00:00;68.8 -2008-11-20 20:00:00;67.9 -2008-11-20 22:00:00;66.2 -2008-11-21 18:00:00;68.5 -2008-11-21 20:00:00;66.8 -2008-11-21 22:00:00;65.5 -2008-11-22 18:00:00;68.3 -2008-11-22 20:00:00;67.3 -2008-11-22 22:00:00;66.4 -2008-11-23 18:00:00;68.7 -2008-11-23 20:00:00;67.2 -2008-11-23 22:00:00;66.0 -2008-11-24 18:00:00;67.4 -2008-11-24 20:00:00;66.1 -2008-11-24 22:00:00;65.0 -2008-11-25 18:00:00;67.3 -2008-11-25 20:00:00;66.0 -2008-11-25 22:00:00;64.9 -2008-11-26 18:00:00;67.8 -2008-11-26 20:00:00;66.5 -2008-11-26 22:00:00;65.5 -2008-11-27 18:00:00;67.5 -2008-11-27 20:00:00;66.4 -2008-11-27 22:00:00;66.0 -2008-11-28 18:00:00;66.3 -2008-11-28 20:00:00;65.2 -2008-11-28 22:00:00;63.8 -2008-11-29 18:00:00;67.2 -2008-11-29 20:00:00;66.4 -2008-11-29 22:00:00;64.7 -2008-11-30 18:00:00;67.2 -2008-11-30 20:00:00;66.5 -2008-11-30 22:00:00;65.6 -2008-12-01 18:00:00;67.3 -2008-12-01 20:00:00;66.2 -2008-12-01 22:00:00;65.1 -2008-12-02 18:00:00;68.3 -2008-12-02 20:00:00;67.0 -2008-12-02 22:00:00;65.5 -2008-12-03 18:00:00;68.5 -2008-12-03 20:00:00;67.2 -2008-12-03 22:00:00;65.8 -2008-12-04 18:00:00;68.1 -2008-12-04 20:00:00;67.6 -2008-12-04 22:00:00;65.6 -2008-12-05 18:00:00;67.8 -2008-12-05 20:00:00;66.8 -2008-12-05 22:00:00;66.0 -2008-12-06 18:00:00;68.2 -2008-12-06 20:00:00;67.1 -2008-12-06 22:00:00;65.4 -2008-12-07 18:00:00;68.7 -2008-12-07 20:00:00;67.0 -2008-12-07 22:00:00;65.2 -2008-12-08 18:00:00;68.6 -2008-12-08 20:00:00;66.4 -2008-12-08 22:00:00;65.0 -2008-12-09 18:00:00;67.2 -2008-12-09 20:00:00;66.7 -2008-12-09 22:00:00;65.1 -2008-12-10 18:00:00;69.2 -2008-12-10 20:00:00;68.7 -2008-12-10 22:00:00;66.7 -2008-12-11 18:00:00;67.9 -2008-12-11 20:00:00;68.0 -2008-12-11 22:00:00;66.2 -2008-12-12 18:00:00;69.8 -2008-12-12 20:00:00;68.8 -2008-12-12 22:00:00;66.5 -2008-12-13 18:00:00;69.4 -2008-12-13 20:00:00;67.5 -2008-12-13 22:00:00;66.3 -2008-12-14 18:00:00;67.8 -2008-12-14 20:00:00;66.6 -2008-12-14 22:00:00;65.1 -2008-12-15 18:00:00;67.2 -2008-12-15 20:00:00;66.7 -2008-12-15 22:00:00;65.4 -2008-12-16 18:00:00;68.1 -2008-12-16 20:00:00;67.2 -2008-12-16 22:00:00;66.0 -2008-12-17 18:00:00;68.0 -2008-12-17 20:00:00;66.6 -2008-12-17 22:00:00;64.3 -2008-12-18 18:00:00;67.6 -2008-12-18 20:00:00;66.2 -2008-12-18 22:00:00;64.9 -2008-12-19 18:00:00;67.5 -2008-12-19 20:00:00;67.0 -2008-12-19 22:00:00;64.9 -2008-12-20 18:00:00;67.3 -2008-12-20 20:00:00;66.9 -2008-12-20 22:00:00;65.7 -2008-12-22 18:00:00;67.1 -2008-12-22 20:00:00;65.5 -2008-12-22 22:00:00;64.0 -2008-12-23 18:00:00;67.0 -2008-12-23 20:00:00;66.3 -2008-12-23 22:00:00;65.4 -2008-12-24 18:00:00;67.8 -2008-12-24 20:00:00;67.1 -2008-12-24 22:00:00;65.4 -2008-12-25 18:00:00;68.5 -2008-12-25 20:00:00;67.0 -2008-12-25 22:00:00;65.9 -2008-12-26 18:00:00;67.6 -2008-12-26 20:00:00;67.0 -2008-12-26 22:00:00;66.4 -2008-12-27 18:00:00;68.9 -2008-12-27 20:00:00;67.1 -2008-12-27 22:00:00;66.0 -2008-12-28 18:00:00;68.4 -2008-12-28 20:00:00;67.5 -2008-12-28 22:00:00;66.3 -2008-12-29 18:00:00;68.7 -2008-12-29 20:00:00;67.5 -2008-12-29 22:00:00;66.0 -2008-12-30 18:00:00;67.8 -2008-12-30 20:00:00;66.3 -2008-12-30 22:00:00;65.7 -2008-12-31 18:00:00;67.5 -2008-12-31 20:00:00;67.0 -2008-12-31 22:00:00;66.3 -2009-01-01 18:00:00;67.8 -2009-01-01 20:00:00;66.6 -2009-01-01 22:00:00;64.9 -2009-01-02 18:00:00;68.7 -2009-01-02 20:00:00;67.6 -2009-01-02 22:00:00;65.6 -2009-01-03 18:00:00;67.9 -2009-01-03 20:00:00;67.2 -2009-01-03 22:00:00;67.0 -2009-01-04 18:00:00;67.8 -2009-01-04 20:00:00;66.6 -2009-01-04 22:00:00;65.3 -2009-01-05 18:00:00;67.5 -2009-01-05 20:00:00;66.9 -2009-01-05 22:00:00;66.1 -2009-01-06 18:00:00;68.0 -2009-01-06 20:00:00;66.5 -2009-01-06 22:00:00;65.4 -2009-01-07 18:00:00;67.6 -2009-01-07 20:00:00;66.7 -2009-01-07 22:00:00;65.4 -2009-01-08 18:00:00;67.1 -2009-01-08 20:00:00;66.5 -2009-01-08 22:00:00;65.7 -2009-01-09 18:00:00;68.7 -2009-01-09 20:00:00;67.4 -2009-01-09 22:00:00;65.9 -2009-01-10 18:00:00;70.3 -2009-01-10 20:00:00;68.5 -2009-01-10 22:00:00;67.6 -2009-01-11 18:00:00;68.5 -2009-01-11 20:00:00;67.7 -2009-01-11 22:00:00;66.2 -2009-01-12 18:00:00;68.5 -2009-01-12 20:00:00;67.0 -2009-01-12 22:00:00;66.2 -2009-01-13 18:00:00;68.9 -2009-01-13 20:00:00;68.2 -2009-01-13 22:00:00;66.9 -2009-01-14 18:00:00;69.8 -2009-01-14 20:00:00;68.9 -2009-01-14 22:00:00;67.4 -2009-01-15 18:00:00;69.2 -2009-01-15 20:00:00;68.8 -2009-01-15 22:00:00;67.0 -2009-01-16 18:00:00;68.9 -2009-01-16 20:00:00;68.5 -2009-01-16 22:00:00;67.2 -2009-01-17 18:00:00;70.0 -2009-01-17 20:00:00;69.6 -2009-01-17 22:00:00;68.1 -2009-01-18 18:00:00;69.9 -2009-01-18 20:00:00;68.8 -2009-01-18 22:00:00;67.8 -2009-01-19 18:00:00;69.3 -2009-01-19 20:00:00;68.6 -2009-01-19 22:00:00;67.5 -2009-01-20 18:00:00;69.5 -2009-01-20 20:00:00;68.1 -2009-01-20 22:00:00;67.4 -2009-01-21 18:00:00;68.2 -2009-01-21 20:00:00;67.2 -2009-01-21 22:00:00;65.3 -2009-01-22 18:00:00;68.4 -2009-01-22 20:00:00;66.9 -2009-01-22 22:00:00;65.8 -2009-01-23 18:00:00;68.7 -2009-01-23 20:00:00;67.8 -2009-01-23 22:00:00;65.9 -2009-01-24 18:00:00;68.1 -2009-01-24 20:00:00;66.6 -2009-01-24 22:00:00;65.7 -2009-01-25 18:00:00;68.2 -2009-01-25 20:00:00;67.7 -2009-01-25 22:00:00;66.1 -2009-01-26 18:00:00;68.4 -2009-01-26 20:00:00;67.8 -2009-01-26 22:00:00;65.7 -2009-01-27 18:00:00;67.6 -2009-01-27 20:00:00;67.6 -2009-01-27 22:00:00;66.2 -2009-01-28 18:00:00;68.4 -2009-01-28 20:00:00;67.4 -2009-01-28 22:00:00;65.6 -2009-01-29 18:00:00;67.9 -2009-01-29 20:00:00;67.3 -2009-01-29 22:00:00;66.1 -2009-01-30 18:00:00;68.2 -2009-01-30 20:00:00;67.1 -2009-01-30 22:00:00;66.0 -2009-01-31 18:00:00;68.6 -2009-01-31 20:00:00;67.4 -2009-01-31 22:00:00;66.7 -2009-02-01 18:00:00;68.7 -2009-02-01 20:00:00;67.5 -2009-02-01 22:00:00;66.4 -2009-02-02 18:00:00;68.3 -2009-02-02 20:00:00;67.1 -2009-02-02 22:00:00;66.5 -2009-02-03 18:00:00;68.1 -2009-02-03 20:00:00;67.3 -2009-02-03 22:00:00;66.3 -2009-02-04 18:00:00;68.2 -2009-02-04 20:00:00;67.5 -2009-02-04 22:00:00;66.2 -2009-02-05 18:00:00;68.8 -2009-02-05 20:00:00;68.1 -2009-02-05 22:00:00;66.8 -2009-02-06 18:00:00;68.9 -2009-02-06 20:00:00;68.2 -2009-02-06 22:00:00;67.0 -2009-02-07 18:00:00;70.1 -2009-02-07 20:00:00;69.2 -2009-02-07 22:00:00;67.5 -2009-02-08 18:00:00;69.6 -2009-02-08 20:00:00;69.3 -2009-02-08 22:00:00;67.0 -2009-02-09 18:00:00;69.1 -2009-02-09 20:00:00;68.8 -2009-02-09 22:00:00;67.6 -2009-02-10 18:00:00;68.2 -2009-02-10 20:00:00;65.8 -2009-02-10 22:00:00;66.5 -2009-02-11 18:00:00;68.7 -2009-02-11 20:00:00;68.5 -2009-02-11 22:00:00;67.5 -2009-02-12 18:00:00;69.2 -2009-02-12 20:00:00;68.0 -2009-02-12 22:00:00;66.4 -2009-02-13 18:00:00;68.7 -2009-02-13 20:00:00;68.3 -2009-02-13 22:00:00;67.1 -2009-02-14 18:00:00;68.9 -2009-02-14 20:00:00;68.4 -2009-02-14 22:00:00;67.5 -2009-02-15 18:00:00;68.1 -2009-02-15 20:00:00;67.9 -2009-02-15 22:00:00;67.1 -2009-02-16 18:00:00;68.5 -2009-02-16 20:00:00;67.9 -2009-02-16 22:00:00;67.6 -2009-02-17 18:00:00;69.7 -2009-02-17 20:00:00;69.0 -2009-02-17 22:00:00;67.6 -2009-02-18 18:00:00;69.2 -2009-02-18 20:00:00;68.2 -2009-02-18 22:00:00;66.9 -2009-02-19 18:00:00;68.1 -2009-02-19 20:00:00;67.4 -2009-02-19 22:00:00;66.9 -2009-02-20 18:00:00;67.9 -2009-02-20 20:00:00;67.6 -2009-02-20 22:00:00;67.0 -2009-02-21 18:00:00;69.6 -2009-02-21 20:00:00;69.1 -2009-02-21 22:00:00;68.2 -2009-02-22 18:00:00;69.1 -2009-02-22 20:00:00;68.8 -2009-02-22 22:00:00;68.3 -2009-02-23 18:00:00;69.6 -2009-02-23 20:00:00;69.3 -2009-02-23 22:00:00;68.3 -2009-02-24 18:00:00;69.7 -2009-02-24 20:00:00;69.5 -2009-02-24 22:00:00;68.4 -2009-02-25 18:00:00;69.8 -2009-02-25 20:00:00;69.3 -2009-02-25 22:00:00;68.3 -2009-02-26 18:00:00;68.6 -2009-02-26 20:00:00;68.6 -2009-02-26 22:00:00;68.7 -2009-02-27 18:00:00;67.0 -2009-02-27 20:00:00;67.6 -2009-02-27 22:00:00;68.3 -2009-02-28 18:00:00;69.6 -2009-02-28 20:00:00;69.3 -2009-02-28 22:00:00;68.5 -2009-03-01 17:00:00;68.9 -2009-03-01 20:00:00;68.1 -2009-03-01 23:00:00;66.7 -2009-03-02 17:00:00;66.7 -2009-03-02 20:00:00;68.0 -2009-03-02 23:00:00;66.8 -2009-03-03 17:00:00;68.2 -2009-03-03 20:00:00;68.0 -2009-03-03 23:00:00;67.1 -2009-03-04 17:00:00;69.2 -2009-03-04 20:00:00;68.6 -2009-03-04 23:00:00;66.1 -2009-03-05 17:00:00;69.6 -2009-03-05 20:00:00;68.1 -2009-03-05 23:00:00;67.1 -2009-03-06 17:00:00;69.5 -2009-03-06 20:00:00;68.0 -2009-03-06 23:00:00;66.7 -2009-03-07 17:00:00;68.6 -2009-03-07 20:00:00;68.0 -2009-03-07 23:00:00;67.2 -2009-03-08 17:00:00;69.1 -2009-03-08 20:00:00;67.9 -2009-03-08 23:00:00;66.6 -2009-03-09 17:00:00;68.3 -2009-03-09 20:00:00;67.2 -2009-03-09 23:00:00;66.2 -2009-03-10 17:00:00;68.7 -2009-03-10 20:00:00;67.8 -2009-03-10 23:00:00;67.2 -2009-03-11 17:00:00;69.1 -2009-03-11 20:00:00;68.0 -2009-03-11 23:00:00;66.0 -2009-03-12 17:00:00;68.8 -2009-03-12 20:00:00;67.8 -2009-03-12 23:00:00;66.8 -2009-03-13 17:00:00;68.3 -2009-03-13 20:00:00;67.4 -2009-03-13 23:00:00;66.4 -2009-03-14 17:00:00;68.9 -2009-03-14 20:00:00;67.7 -2009-03-14 23:00:00;66.2 -2009-03-15 17:00:00;68.6 -2009-03-15 20:00:00;67.7 -2009-03-15 23:00:00;66.6 -2009-03-16 17:00:00;69.3 -2009-03-16 20:00:00;68.7 -2009-03-16 23:00:00;67.8 -2009-03-17 17:00:00;69.1 -2009-03-17 20:00:00;68.2 -2009-03-17 23:00:00;66.9 -2009-03-18 17:00:00;68.7 -2009-03-18 20:00:00;67.8 -2009-03-18 23:00:00;65.7 -2009-03-19 17:00:00;68.5 -2009-03-19 20:00:00;68.5 -2009-03-19 23:00:00;67.2 -2009-03-20 17:00:00;68.3 -2009-03-20 20:00:00;68.2 -2009-03-20 23:00:00;67.1 -2009-03-21 17:00:00;69.6 -2009-03-21 20:00:00;69.6 -2009-03-21 23:00:00;67.9 -2009-03-22 17:00:00;69.2 -2009-03-22 20:00:00;68.2 -2009-03-22 23:00:00;67.0 -2009-03-23 17:00:00;68.4 -2009-03-23 20:00:00;67.6 -2009-03-23 23:00:00;66.5 -2009-03-24 17:00:00;69.2 -2009-03-24 20:00:00;68.7 -2009-03-24 23:00:00;67.4 -2009-03-25 17:00:00;69.0 -2009-03-25 20:00:00;68.2 -2009-03-25 23:00:00;67.6 -2009-03-26 17:00:00;69.5 -2009-03-26 20:00:00;68.8 -2009-03-26 23:00:00;71.2 -2009-03-27 17:00:00;71.9 -2009-03-27 20:00:00;71.4 -2009-03-27 23:00:00;70.5 -2009-03-28 17:00:00;70.3 -2009-03-28 20:00:00;70.4 -2009-03-28 23:00:00;70.1 -2009-03-29 17:00:00;70.6 -2009-03-29 20:00:00;70.7 -2009-03-29 23:00:00;70.6 -2009-03-30 17:00:00;70.7 -2009-03-30 20:00:00;70.8 -2009-03-30 23:00:00;69.9 -2009-03-31 17:00:00;70.8 -2009-03-31 20:00:00;71.1 -2009-03-31 23:00:00;70.8 -2009-04-01 17:00:00;70.7 -2009-04-01 20:00:00;70.7 -2009-04-01 23:00:00;69.9 -2009-04-02 17:00:00;70.5 -2009-04-02 20:00:00;70.6 -2009-04-02 23:00:00;70.0 -2009-04-03 17:00:00;70.7 -2009-04-03 20:00:00;70.4 -2009-04-03 23:00:00;70.0 -2009-04-04 17:00:00;70.6 -2009-04-04 20:00:00;70.1 -2009-04-04 23:00:00;69.8 -2009-04-05 17:00:00;70.2 -2009-04-05 20:00:00;70.5 -2009-04-05 23:00:00;69.0 -2009-04-06 17:00:00;70.3 -2009-04-06 20:00:00;68.9 -2009-04-06 23:00:00;69.5 -2009-04-07 17:00:00;69.8 -2009-04-07 20:00:00;70.4 -2009-04-07 23:00:00;70.3 -2009-04-08 17:00:00;70.3 -2009-04-08 20:00:00;70.2 -2009-04-08 23:00:00;70.1 -2009-04-09 17:00:00;70.1 -2009-04-09 20:00:00;70.3 -2009-04-09 23:00:00;69.4 -2009-04-10 17:00:00;69.6 -2009-04-10 20:00:00;69.7 -2009-04-10 23:00:00;69.8 -2009-04-11 17:00:00;69.3 -2009-04-11 20:00:00;69.7 -2009-04-11 23:00:00;69.3 -2009-04-12 17:00:00;69.9 -2009-04-12 20:00:00;69.7 -2009-04-12 23:00:00;70.0 -2009-04-13 17:00:00;69.0 -2009-04-13 20:00:00;68.8 -2009-04-13 23:00:00;69.3 -2009-04-14 17:00:00;70.0 -2009-04-14 20:00:00;69.9 -2009-04-14 23:00:00;69.5 -2009-04-15 17:00:00;69.2 -2009-04-15 20:00:00;69.9 -2009-04-15 23:00:00;69.4 -2009-04-16 17:00:00;70.3 -2009-04-16 20:00:00;70.5 -2009-04-16 23:00:00;69.7 -2009-04-17 17:00:00;69.9 -2009-04-17 20:00:00;70.4 -2009-04-17 23:00:00;70.8 -2009-04-18 17:00:00;70.9 -2009-04-18 20:00:00;70.5 -2009-04-18 23:00:00;70.4 -2009-04-19 17:00:00;70.4 -2009-04-19 20:00:00;70.8 -2009-04-19 23:00:00;70.4 -2009-04-20 17:00:00;69.8 -2009-04-20 20:00:00;70.4 -2009-04-20 23:00:00;70.8 -2009-04-21 17:00:00;70.8 -2009-04-21 20:00:00;71.8 -2009-04-21 23:00:00;70.8 -2009-04-22 17:00:00;71.3 -2009-04-22 20:00:00;71.9 -2009-04-22 23:00:00;71.5 -2009-04-23 17:00:00;71.4 -2009-04-23 20:00:00;71.4 -2009-04-23 23:00:00;70.7 -2009-04-24 17:00:00;70.0 -2009-04-24 20:00:00;70.5 -2009-04-24 23:00:00;69.9 -2009-04-25 17:00:00;69.9 -2009-04-25 20:00:00;70.3 -2009-04-25 23:00:00;69.8 -2009-04-26 17:00:00;70.0 -2009-04-26 20:00:00;70.1 -2009-04-26 23:00:00;69.4 -2009-04-27 17:00:00;68.8 -2009-04-27 20:00:00;68.6 -2009-04-27 23:00:00;68.7 -2009-04-28 17:00:00;69.3 -2009-04-28 20:00:00;69.8 -2009-04-28 23:00:00;69.7 -2009-04-29 17:00:00;69.8 -2009-04-29 20:00:00;70.5 -2009-04-29 23:00:00;70.5 -2009-04-30 17:00:00;70.6 -2009-04-30 20:00:00;70.5 -2009-04-30 23:00:00;70.6 -2009-05-01 17:00:00;69.6 -2009-05-01 20:00:00;69.6 -2009-05-01 23:00:00;69.0 -2009-05-02 17:00:00;69.4 -2009-05-02 20:00:00;69.4 -2009-05-02 23:00:00;69.1 -2009-05-03 17:00:00;69.2 -2009-05-03 20:00:00;69.7 -2009-05-03 23:00:00;69.1 -2009-05-04 17:00:00;68.4 -2009-05-04 20:00:00;69.2 -2009-05-04 23:00:00;68.8 -2009-05-05 17:00:00;69.4 -2009-05-05 20:00:00;69.2 -2009-05-05 23:00:00;68.9 -2009-05-06 17:00:00;70.2 -2009-05-06 20:00:00;70.0 -2009-05-06 23:00:00;70.7 -2009-05-07 17:00:00;71.1 -2009-05-07 20:00:00;70.8 -2009-05-07 23:00:00;70.4 -2009-05-08 17:00:00;71.8 -2009-05-08 20:00:00;72.2 -2009-05-08 23:00:00;72.3 -2009-05-09 17:00:00;72.7 -2009-05-09 20:00:00;73.7 -2009-05-09 23:00:00;73.1 -2009-05-10 17:00:00;73.2 -2009-05-10 20:00:00;73.2 -2009-05-10 23:00:00;73.1 -2009-05-11 17:00:00;73.3 -2009-05-11 20:00:00;73.3 -2009-05-11 23:00:00;73.0 -2009-05-12 17:00:00;73.9 -2009-05-12 20:00:00;75.5 -2009-05-12 23:00:00;74.2 -2009-05-13 17:00:00;74.9 -2009-05-13 20:00:00;75.3 -2009-05-13 23:00:00;75.5 -2009-05-14 17:00:00;75.3 -2009-05-14 20:00:00;75.5 -2009-05-14 23:00:00;74.7 -2009-05-15 17:00:00;75.0 -2009-05-15 20:00:00;75.4 -2009-05-15 23:00:00;75.2 -2009-05-16 17:00:00;75.2 -2009-05-16 20:00:00;75.8 -2009-05-16 23:00:00;75.3 -2009-05-17 17:00:00;75.3 -2009-05-17 20:00:00;75.7 -2009-05-17 23:00:00;75.7 -2009-05-18 17:00:00;74.6 -2009-05-18 20:00:00;74.6 -2009-05-18 23:00:00;74.2 -2009-05-19 17:00:00;74.2 -2009-05-19 20:00:00;74.0 -2009-05-19 23:00:00;73.6 -2009-05-20 17:00:00;72.5 -2009-05-20 20:00:00;73.2 -2009-05-20 23:00:00;73.2 -2009-05-21 17:00:00;72.6 -2009-05-21 20:00:00;73.5 -2009-05-21 23:00:00;73.3 -2009-05-22 17:00:00;73.6 -2009-05-22 20:00:00;73.9 -2009-05-22 23:00:00;72.9 -2009-05-23 17:00:00;71.8 -2009-05-23 20:00:00;72.2 -2009-05-23 23:00:00;71.6 -2009-05-24 17:00:00;70.7 -2009-05-24 20:00:00;71.0 -2009-05-24 23:00:00;71.2 -2009-05-25 17:00:00;70.5 -2009-05-25 20:00:00;70.7 -2009-05-25 23:00:00;70.4 -2009-05-26 17:00:00;69.7 -2009-05-26 20:00:00;69.9 -2009-05-26 23:00:00;68.9 -2009-05-27 17:00:00;68.9 -2009-05-27 20:00:00;68.5 -2009-05-27 23:00:00;68.5 -2009-05-28 17:00:00;69.1 -2009-05-28 20:00:00;69.6 -2009-05-28 23:00:00;69.5 -2009-05-29 17:00:00;69.7 -2009-05-29 20:00:00;70.1 -2009-05-29 23:00:00;69.9 -2009-05-30 17:00:00;69.4 -2009-05-30 20:00:00;70.4 -2009-05-30 23:00:00;70.2 -2009-05-31 17:00:00;70.4 -2009-05-31 20:00:00;70.4 -2009-05-31 23:00:00;71.2 -2009-06-01 17:00:00;73.9 -2009-06-01 20:00:00;74.6 -2009-06-01 23:00:00;74.8 -2009-06-02 17:00:00;73.9 -2009-06-02 20:00:00;74.0 -2009-06-02 23:00:00;73.4 -2009-06-03 17:00:00;74.2 -2009-06-03 20:00:00;74.6 -2009-06-03 23:00:00;74.4 -2009-06-04 17:00:00;73.1 -2009-06-04 20:00:00;73.1 -2009-06-04 23:00:00;73.0 -2009-06-05 17:00:00;72.4 -2009-06-05 20:00:00;72.2 -2009-06-05 23:00:00;72.7 -2009-06-06 17:00:00;71.5 -2009-06-06 20:00:00;71.1 -2009-06-06 23:00:00;70.8 -2009-06-07 17:00:00;70.5 -2009-06-07 20:00:00;71.0 -2009-06-07 23:00:00;70.7 -2009-06-08 17:00:00;70.9 -2009-06-08 20:00:00;71.1 -2009-06-08 23:00:00;71.2 -2009-06-09 17:00:00;70.8 -2009-06-09 20:00:00;71.2 -2009-06-09 23:00:00;71.3 -2009-06-10 17:00:00;71.5 -2009-06-10 20:00:00;71.3 -2009-06-10 23:00:00;71.1 -2009-06-11 17:00:00;70.9 -2009-06-11 20:00:00;71.4 -2009-06-11 23:00:00;71.4 -2009-06-12 17:00:00;71.0 -2009-06-12 20:00:00;71.2 -2009-06-12 23:00:00;71.3 -2009-06-13 17:00:00;70.2 -2009-06-13 20:00:00;70.4 -2009-06-13 23:00:00;70.3 -2009-06-14 17:00:00;70.4 -2009-06-14 20:00:00;70.3 -2009-06-14 23:00:00;69.7 -2009-06-15 17:00:00;69.3 -2009-06-15 20:00:00;69.5 -2009-06-15 23:00:00;69.7 -2009-06-16 17:00:00;69.7 -2009-06-16 20:00:00;70.5 -2009-06-16 23:00:00;70.3 -2009-06-17 17:00:00;69.6 -2009-06-17 20:00:00;70.0 -2009-06-17 23:00:00;70.0 -2009-06-18 17:00:00;69.5 -2009-06-18 20:00:00;69.9 -2009-06-18 23:00:00;70.0 -2009-06-19 17:00:00;69.2 -2009-06-19 20:00:00;69.2 -2009-06-19 23:00:00;69.3 -2009-06-20 17:00:00;69.4 -2009-06-20 20:00:00;68.8 -2009-06-20 23:00:00;69.0 -2009-06-21 17:00:00;69.6 -2009-06-21 20:00:00;69.2 -2009-06-21 23:00:00;69.3 -2009-06-22 17:00:00;70.0 -2009-06-22 20:00:00;70.2 -2009-06-22 23:00:00;70.4 -2009-06-23 17:00:00;70.1 -2009-06-23 20:00:00;70.2 -2009-06-23 23:00:00;70.5 -2009-06-24 17:00:00;69.7 -2009-06-24 20:00:00;69.1 -2009-06-24 23:00:00;70.3 -2009-06-25 17:00:00;70.0 -2009-06-25 20:00:00;70.3 -2009-06-25 23:00:00;70.2 -2009-06-26 17:00:00;69.4 -2009-06-26 20:00:00;69.0 -2009-06-26 23:00:00;69.2 -2009-06-27 17:00:00;69.2 -2009-06-27 20:00:00;69.3 -2009-06-27 23:00:00;69.6 -2009-06-28 17:00:00;69.5 -2009-06-28 20:00:00;69.2 -2009-06-28 23:00:00;69.6 -2009-06-29 17:00:00;70.2 -2009-06-29 20:00:00;70.8 -2009-06-29 23:00:00;70.0 -2009-06-30 17:00:00;70.0 -2009-06-30 20:00:00;70.5 -2009-06-30 23:00:00;70.3 -2009-07-01 17:00:00;69.9 -2009-07-01 20:00:00;69.8 -2009-07-01 23:00:00;70.0 -2009-07-02 17:00:00;68.7 -2009-07-02 20:00:00;68.7 -2009-07-02 23:00:00;69.1 -2009-07-03 17:00:00;69.3 -2009-07-03 20:00:00;69.5 -2009-07-03 23:00:00;70.3 -2009-07-04 17:00:00;73.0 -2009-07-04 20:00:00;73.4 -2009-07-04 23:00:00;74.2 -2009-07-05 17:00:00;73.6 -2009-07-05 20:00:00;74.0 -2009-07-05 23:00:00;73.6 -2009-07-06 17:00:00;73.3 -2009-07-06 20:00:00;71.2 -2009-07-06 23:00:00;72.5 -2009-07-07 17:00:00;74.0 -2009-07-07 20:00:00;73.7 -2009-07-07 23:00:00;74.0 -2009-07-08 17:00:00;73.8 -2009-07-08 20:00:00;73.1 -2009-07-08 23:00:00;73.1 -2009-07-09 17:00:00;71.5 -2009-07-09 20:00:00;71.4 -2009-07-09 23:00:00;71.5 -2009-07-10 17:00:00;70.0 -2009-07-10 20:00:00;70.1 -2009-07-10 23:00:00;70.0 -2009-07-11 17:00:00;70.2 -2009-07-11 20:00:00;70.5 -2009-07-11 23:00:00;70.7 -2009-07-12 17:00:00;70.0 -2009-07-12 20:00:00;70.3 -2009-07-12 23:00:00;70.4 -2009-07-13 17:00:00;69.6 -2009-07-13 20:00:00;69.5 -2009-07-13 23:00:00;69.7 -2009-07-14 17:00:00;67.9 -2009-07-14 20:00:00;68.8 -2009-07-14 23:00:00;68.8 -2009-07-15 17:00:00;68.4 -2009-07-15 20:00:00;68.7 -2009-07-15 23:00:00;69.3 -2009-07-16 17:00:00;68.7 -2009-07-16 20:00:00;68.9 -2009-07-16 23:00:00;69.5 -2009-07-17 17:00:00;68.4 -2009-07-17 20:00:00;68.4 -2009-07-17 23:00:00;68.0 -2009-07-18 17:00:00;68.0 -2009-07-18 20:00:00;69.2 -2009-07-18 23:00:00;69.2 -2009-07-19 17:00:00;69.3 -2009-07-19 20:00:00;69.9 -2009-07-19 23:00:00;69.6 -2009-07-20 17:00:00;69.4 -2009-07-20 20:00:00;70.4 -2009-07-20 23:00:00;70.6 -2009-07-21 17:00:00;69.3 -2009-07-21 20:00:00;69.9 -2009-07-21 23:00:00;70.3 -2009-07-22 17:00:00;69.4 -2009-07-22 20:00:00;70.0 -2009-07-22 23:00:00;70.2 -2009-07-23 17:00:00;70.0 -2009-07-23 20:00:00;69.9 -2009-07-23 23:00:00;69.9 -2009-07-24 17:00:00;70.4 -2009-07-24 20:00:00;70.5 -2009-07-24 23:00:00;70.2 -2009-07-25 17:00:00;70.3 -2009-07-25 20:00:00;71.2 -2009-07-25 23:00:00;70.5 -2009-07-26 17:00:00;68.8 -2009-07-26 20:00:00;69.8 -2009-07-26 23:00:00;69.7 -2009-07-27 17:00:00;70.3 -2009-07-27 20:00:00;70.5 -2009-07-27 23:00:00;70.9 -2009-07-28 17:00:00;70.1 -2009-07-28 20:00:00;70.9 -2009-07-28 23:00:00;72.5 -2009-07-29 17:00:00;69.7 -2009-07-29 20:00:00;70.4 -2009-07-29 23:00:00;70.2 -2009-07-30 17:00:00;69.7 -2009-07-30 20:00:00;70.1 -2009-07-30 23:00:00;70.2 -2009-07-31 17:00:00;69.6 -2009-07-31 20:00:00;70.8 -2009-07-31 23:00:00;71.5 -2009-08-01 17:00:00;69.9 -2009-08-01 20:00:00;70.2 -2009-08-01 23:00:00;70.4 -2009-08-02 17:00:00;70.2 -2009-08-02 20:00:00;70.1 -2009-08-02 23:00:00;71.3 -2009-08-03 17:00:00;68.5 -2009-08-03 20:00:00;69.3 -2009-08-03 23:00:00;70.1 -2009-08-04 17:00:00;68.2 -2009-08-04 20:00:00;67.8 -2009-08-04 23:00:00;68.5 -2009-08-05 17:00:00;68.5 -2009-08-05 20:00:00;68.1 -2009-08-05 23:00:00;68.4 -2009-08-06 17:00:00;69.2 -2009-08-06 20:00:00;68.7 -2009-08-06 23:00:00;69.5 -2009-08-07 17:00:00;70.1 -2009-08-07 20:00:00;69.7 -2009-08-07 23:00:00;69.8 -2009-08-08 17:00:00;68.9 -2009-08-08 20:00:00;68.8 -2009-08-08 23:00:00;69.1 -2009-08-09 17:00:00;68.5 -2009-08-09 20:00:00;69.1 -2009-08-09 23:00:00;68.7 -2009-08-10 17:00:00;69.0 -2009-08-10 20:00:00;69.0 -2009-08-10 23:00:00;69.4 -2009-08-11 17:00:00;68.0 -2009-08-11 20:00:00;68.4 -2009-08-11 23:00:00;68.8 -2009-08-12 17:00:00;68.9 -2009-08-12 20:00:00;68.2 -2009-08-12 23:00:00;68.3 -2009-08-13 17:00:00;68.6 -2009-08-13 20:00:00;68.9 -2009-08-13 23:00:00;68.6 -2009-08-14 17:00:00;69.1 -2009-08-14 20:00:00;69.4 -2009-08-14 23:00:00;69.4 -2009-08-15 17:00:00;69.6 -2009-08-15 20:00:00;69.8 -2009-08-15 23:00:00;69.7 -2009-08-16 17:00:00;69.8 -2009-08-16 20:00:00;70.6 -2009-08-16 23:00:00;70.4 -2009-08-17 17:00:00;69.8 -2009-08-17 20:00:00;69.8 -2009-08-17 23:00:00;70.0 -2009-08-18 17:00:00;68.9 -2009-08-18 20:00:00;69.1 -2009-08-18 23:00:00;69.4 -2009-08-19 17:00:00;68.8 -2009-08-19 20:00:00;68.7 -2009-08-19 23:00:00;69.0 -2009-08-20 17:00:00;68.2 -2009-08-20 20:00:00;69.2 -2009-08-20 23:00:00;69.5 -2009-08-21 17:00:00;67.8 -2009-08-21 20:00:00;67.9 -2009-08-21 23:00:00;67.8 -2009-08-22 17:00:00;67.2 -2009-08-22 20:00:00;68.1 -2009-08-22 23:00:00;68.3 -2009-08-23 17:00:00;68.1 -2009-08-23 20:00:00;68.8 -2009-08-23 23:00:00;68.5 -2009-08-24 17:00:00;68.8 -2009-08-24 20:00:00;69.1 -2009-08-24 23:00:00;68.8 -2009-08-25 17:00:00;68.7 -2009-08-25 20:00:00;68.5 -2009-08-25 23:00:00;68.2 -2009-08-26 17:00:00;68.4 -2009-08-26 20:00:00;68.7 -2009-08-26 23:00:00;68.8 -2009-08-27 17:00:00;69.0 -2009-08-27 20:00:00;69.1 -2009-08-27 23:00:00;69.5 -2009-08-28 17:00:00;68.7 -2009-08-28 20:00:00;69.3 -2009-08-28 23:00:00;69.7 -2009-08-29 17:00:00;69.2 -2009-08-29 20:00:00;69.3 -2009-08-29 23:00:00;69.8 -2009-08-30 17:00:00;68.2 -2009-08-30 20:00:00;68.5 -2009-08-30 23:00:00;68.7 -2009-08-31 17:00:00;68.7 -2009-08-31 20:00:00;69.6 -2009-08-31 23:00:00;70.6 -2009-09-01 17:00:00;69.6 -2009-09-01 20:00:00;70.4 -2009-09-01 23:00:00;70.5 -2009-09-02 17:00:00;69.3 -2009-09-02 20:00:00;69.4 -2009-09-02 23:00:00;70.8 -2009-09-03 17:00:00;69.2 -2009-09-03 20:00:00;69.8 -2009-09-03 23:00:00;69.3 -2009-09-04 17:00:00;69.5 -2009-09-04 20:00:00;69.5 -2009-09-04 23:00:00;69.2 -2009-09-05 17:00:00;69.3 -2009-09-05 20:00:00;69.6 -2009-09-05 23:00:00;69.0 -2009-09-06 17:00:00;70.1 -2009-09-06 20:00:00;70.3 -2009-09-06 23:00:00;69.5 -2009-09-07 17:00:00;70.3 -2009-09-07 20:00:00;69.8 -2009-09-07 23:00:00;69.3 -2009-09-08 17:00:00;70.4 -2009-09-08 20:00:00;70.0 -2009-09-08 23:00:00;70.4 -2009-09-09 17:00:00;70.5 -2009-09-09 20:00:00;70.2 -2009-09-09 23:00:00;70.0 -2009-09-10 17:00:00;70.1 -2009-09-10 20:00:00;70.2 -2009-09-10 23:00:00;69.1 -2009-09-11 17:00:00;70.6 -2009-09-11 20:00:00;70.2 -2009-09-11 23:00:00;69.3 -2009-09-12 17:00:00;70.2 -2009-09-12 20:00:00;69.8 -2009-09-12 23:00:00;69.6 -2009-09-13 17:00:00;69.8 -2009-09-13 20:00:00;69.9 -2009-09-13 23:00:00;68.6 -2009-09-14 17:00:00;69.6 -2009-09-14 20:00:00;69.8 -2009-09-14 23:00:00;69.4 -2009-09-15 17:00:00;70.0 -2009-09-15 20:00:00;69.9 -2009-09-15 23:00:00;69.8 -2009-09-16 17:00:00;69.3 -2009-09-16 20:00:00;69.5 -2009-09-16 23:00:00;68.6 -2009-09-17 17:00:00;69.4 -2009-09-17 20:00:00;69.8 -2009-09-17 23:00:00;69.1 -2009-09-18 17:00:00;69.3 -2009-09-18 20:00:00;69.6 -2009-09-18 23:00:00;69.6 -2009-09-19 17:00:00;70.5 -2009-09-19 20:00:00;71.1 -2009-09-19 23:00:00;71.0 -2009-09-20 17:00:00;71.4 -2009-09-20 20:00:00;71.9 -2009-09-20 23:00:00;71.2 -2009-09-21 17:00:00;73.3 -2009-09-21 20:00:00;72.5 -2009-09-21 23:00:00;71.4 -2009-09-22 17:00:00;75.3 -2009-09-22 20:00:00;75.3 -2009-09-22 23:00:00;75.8 -2009-09-23 17:00:00;76.7 -2009-09-23 20:00:00;76.6 -2009-09-23 23:00:00;75.7 -2009-09-24 17:00:00;74.6 -2009-09-24 20:00:00;75.0 -2009-09-24 23:00:00;74.4 -2009-09-25 17:00:00;72.8 -2009-09-25 20:00:00;72.8 -2009-09-25 23:00:00;72.1 -2009-09-26 17:00:00;72.7 -2009-09-26 20:00:00;72.2 -2009-09-26 23:00:00;71.5 -2009-09-27 17:00:00;73.3 -2009-09-27 20:00:00;72.6 -2009-09-27 23:00:00;72.6 -2009-09-28 17:00:00;74.2 -2009-09-28 20:00:00;73.5 -2009-09-28 23:00:00;73.0 -2009-09-29 17:00:00;72.8 -2009-09-29 20:00:00;72.5 -2009-09-29 23:00:00;71.3 -2009-09-30 17:00:00;72.3 -2009-09-30 20:00:00;72.1 -2009-09-30 23:00:00;71.6 -2009-10-01 17:00:00;71.9 -2009-10-01 20:00:00;72.2 -2009-10-01 23:00:00;70.7 -2009-10-02 17:00:00;73.2 -2009-10-02 20:00:00;71.7 -2009-10-02 23:00:00;70.7 -2009-10-03 17:00:00;72.5 -2009-10-03 20:00:00;71.7 -2009-10-03 23:00:00;71.3 -2009-10-04 17:00:00;72.0 -2009-10-04 20:00:00;71.1 -2009-10-04 23:00:00;69.7 -2009-10-05 17:00:00;70.3 -2009-10-05 20:00:00;69.9 -2009-10-05 23:00:00;68.6 -2009-10-06 17:00:00;69.4 -2009-10-06 20:00:00;68.8 -2009-10-06 23:00:00;68.1 -2009-10-07 17:00:00;69.9 -2009-10-07 20:00:00;68.4 -2009-10-07 23:00:00;68.2 -2009-10-08 17:00:00;69.5 -2009-10-08 20:00:00;68.6 -2009-10-08 23:00:00;68.0 -2009-10-09 17:00:00;69.5 -2009-10-09 20:00:00;69.0 -2009-10-09 23:00:00;67.7 -2009-10-10 17:00:00;71.0 -2009-10-10 20:00:00;69.8 -2009-10-10 23:00:00;68.8 -2009-10-11 17:00:00;70.1 -2009-10-11 20:00:00;70.1 -2009-10-11 23:00:00;69.1 -2009-10-12 17:00:00;70.0 -2009-10-12 20:00:00;69.8 -2009-10-12 23:00:00;68.8 -2009-10-13 17:00:00;70.0 -2009-10-13 20:00:00;69.4 -2009-10-13 23:00:00;68.2 -2009-10-14 17:00:00;70.5 -2009-10-14 20:00:00;70.5 -2009-10-14 23:00:00;69.3 -2009-10-15 17:00:00;70.8 -2009-10-15 20:00:00;70.0 -2009-10-15 23:00:00;69.0 -2009-10-16 17:00:00;68.5 -2009-10-16 20:00:00;69.2 -2009-10-16 23:00:00;69.3 -2009-10-17 17:00:00;70.2 -2009-10-17 20:00:00;70.2 -2009-10-17 23:00:00;68.7 -2009-10-18 17:00:00;71.5 -2009-10-18 20:00:00;69.5 -2009-10-18 23:00:00;69.1 -2009-10-19 17:00:00;70.8 -2009-10-19 20:00:00;70.3 -2009-10-19 23:00:00;69.6 -2009-10-20 17:00:00;71.3 -2009-10-20 20:00:00;70.3 -2009-10-20 23:00:00;68.9 -2009-10-21 17:00:00;71.0 -2009-10-21 20:00:00;70.6 -2009-10-21 23:00:00;69.0 -2009-10-22 17:00:00;72.0 -2009-10-22 20:00:00;70.9 -2009-10-22 23:00:00;69.6 -2009-10-23 17:00:00;72.6 -2009-10-23 20:00:00;72.1 -2009-10-23 23:00:00;71.1 -2009-10-24 17:00:00;76.0 -2009-10-24 20:00:00;74.7 -2009-10-24 23:00:00;74.1 -2009-10-25 17:00:00;75.0 -2009-10-25 20:00:00;74.7 -2009-10-25 23:00:00;73.7 -2009-10-26 17:00:00;80.1 -2009-10-26 20:00:00;80.3 -2009-10-26 23:00:00;79.3 -2009-10-27 17:00:00;81.3 -2009-10-27 20:00:00;80.4 -2009-10-27 23:00:00;78.1 -2009-10-28 17:00:00;80.5 -2009-10-28 20:00:00;78.9 -2009-10-28 23:00:00;77.0 -2009-10-29 17:00:00;74.0 -2009-10-29 20:00:00;75.6 -2009-10-29 23:00:00;73.7 -2009-10-30 17:00:00;75.4 -2009-10-30 20:00:00;74.2 -2009-10-30 23:00:00;72.2 -2009-10-31 17:00:00;75.3 -2009-10-31 20:00:00;74.0 -2009-10-31 23:00:00;71.6 -2009-11-01 18:00:00;72.1 -2009-11-01 20:00:00;71.2 -2009-11-01 22:00:00;69.8 -2009-11-02 18:00:00;70.9 -2009-11-02 20:00:00;70.3 -2009-11-02 22:00:00;69.6 -2009-11-03 18:00:00;72.1 -2009-11-03 20:00:00;70.3 -2009-11-03 22:00:00;69.3 -2009-11-04 18:00:00;70.7 -2009-11-04 20:00:00;70.2 -2009-11-04 22:00:00;69.4 -2009-11-05 18:00:00;70.9 -2009-11-05 20:00:00;69.3 -2009-11-05 22:00:00;68.6 -2009-11-06 18:00:00;70.3 -2009-11-06 20:00:00;69.6 -2009-11-06 22:00:00;69.3 -2009-11-07 18:00:00;70.2 -2009-11-07 20:00:00;69.3 -2009-11-07 22:00:00;68.5 -2009-11-08 18:00:00;70.5 -2009-11-08 20:00:00;69.6 -2009-11-08 22:00:00;68.8 -2009-11-09 18:00:00;71.9 -2009-11-09 20:00:00;70.7 -2009-11-09 22:00:00;69.8 -2009-11-10 18:00:00;72.4 -2009-11-10 20:00:00;71.3 -2009-11-10 22:00:00;69.5 -2009-11-11 18:00:00;71.8 -2009-11-11 20:00:00;71.0 -2009-11-11 22:00:00;69.8 -2009-11-12 18:00:00;72.8 -2009-11-12 20:00:00;71.7 -2009-11-12 22:00:00;70.9 -2009-11-13 18:00:00;73.7 -2009-11-13 20:00:00;72.6 -2009-11-13 22:00:00;72.0 -2009-11-14 18:00:00;74.3 -2009-11-14 20:00:00;73.2 -2009-11-14 22:00:00;72.2 -2009-11-15 18:00:00;74.0 -2009-11-15 20:00:00;73.5 -2009-11-15 22:00:00;72.3 -2009-11-16 18:00:00;74.9 -2009-11-16 20:00:00;74.5 -2009-11-16 22:00:00;73.1 -2009-11-17 18:00:00;76.0 -2009-11-17 20:00:00;75.4 -2009-11-17 22:00:00;73.9 -2009-11-18 18:00:00;75.6 -2009-11-18 20:00:00;74.4 -2009-11-18 22:00:00;73.0 -2009-11-19 18:00:00;76.2 -2009-11-19 20:00:00;74.9 -2009-11-19 22:00:00;74.3 -2009-11-20 18:00:00;75.6 -2009-11-20 20:00:00;74.4 -2009-11-20 22:00:00;73.8 -2009-11-21 18:00:00;75.3 -2009-11-21 20:00:00;74.0 -2009-11-21 22:00:00;73.2 -2009-11-22 18:00:00;75.4 -2009-11-22 20:00:00;74.4 -2009-11-22 22:00:00;73.4 -2009-11-23 18:00:00;74.9 -2009-11-23 20:00:00;73.8 -2009-11-23 22:00:00;72.6 -2009-11-24 18:00:00;74.3 -2009-11-24 20:00:00;72.8 -2009-11-24 22:00:00;71.5 -2009-11-25 18:00:00;73.9 -2009-11-25 20:00:00;72.3 -2009-11-25 22:00:00;71.7 -2009-11-26 18:00:00;73.8 -2009-11-26 20:00:00;72.7 -2009-11-26 22:00:00;71.4 -2009-11-27 18:00:00;73.1 -2009-11-27 20:00:00;71.7 -2009-11-27 22:00:00;70.6 -2009-11-28 18:00:00;72.7 -2009-11-28 20:00:00;70.9 -2009-11-28 22:00:00;70.5 -2009-11-29 18:00:00;71.1 -2009-11-29 20:00:00;70.1 -2009-11-29 22:00:00;69.6 -2009-11-30 18:00:00;71.0 -2009-11-30 20:00:00;70.4 -2009-11-30 22:00:00;69.3 -2009-12-01 18:00:00;70.8 -2009-12-01 20:00:00;70.2 -2009-12-01 22:00:00;69.1 -2009-12-02 18:00:00;70.7 -2009-12-02 20:00:00;69.4 -2009-12-02 22:00:00;68.5 -2009-12-03 18:00:00;70.9 -2009-12-03 20:00:00;69.6 -2009-12-03 22:00:00;68.7 -2009-12-04 18:00:00;70.2 -2009-12-04 20:00:00;69.4 -2009-12-04 22:00:00;67.8 -2009-12-05 18:00:00;70.2 -2009-12-05 20:00:00;69.6 -2009-12-05 22:00:00;68.4 -2009-12-06 18:00:00;71.4 -2009-12-06 20:00:00;69.8 -2009-12-06 22:00:00;68.5 -2009-12-07 18:00:00;70.3 -2009-12-07 20:00:00;69.0 -2009-12-07 22:00:00;67.5 -2009-12-08 18:00:00;71.1 -2009-12-08 20:00:00;70.0 -2009-12-08 22:00:00;68.8 -2009-12-09 18:00:00;72.0 -2009-12-09 20:00:00;70.8 -2009-12-09 22:00:00;70.1 -2009-12-10 18:00:00;72.5 -2009-12-10 20:00:00;71.6 -2009-12-10 22:00:00;70.2 -2009-12-11 18:00:00;72.9 -2009-12-11 20:00:00;69.9 -2009-12-11 22:00:00;70.7 -2009-12-12 18:00:00;73.3 -2009-12-12 20:00:00;72.2 -2009-12-12 22:00:00;70.9 -2009-12-13 18:00:00;73.9 -2009-12-13 20:00:00;73.1 -2009-12-13 22:00:00;71.7 -2009-12-14 18:00:00;76.6 -2009-12-14 20:00:00;76.2 -2009-12-14 22:00:00;75.0 -2009-12-15 18:00:00;79.4 -2009-12-15 20:00:00;79.0 -2009-12-15 22:00:00;79.3 -2009-12-16 18:00:00;79.9 -2009-12-16 20:00:00;80.6 -2009-12-16 22:00:00;81.0 -2009-12-17 18:00:00;85.4 -2009-12-17 20:00:00;84.2 -2009-12-17 22:00:00;82.3 -2009-12-18 18:00:00;84.1 -2009-12-18 20:00:00;81.6 -2009-12-18 22:00:00;81.4 -2009-12-19 18:00:00;81.7 -2009-12-19 20:00:00;79.1 -2009-12-19 22:00:00;78.3 -2009-12-20 18:00:00;81.7 -2009-12-20 20:00:00;81.0 -2009-12-20 22:00:00;79.8 -2009-12-21 18:00:00;82.2 -2009-12-21 20:00:00;80.0 -2009-12-21 22:00:00;78.6 -2009-12-22 18:00:00;82.3 -2009-12-22 20:00:00;79.5 -2009-12-22 22:00:00;77.3 -2009-12-23 18:00:00;78.0 -2009-12-23 20:00:00;75.9 -2009-12-23 22:00:00;74.3 -2009-12-24 18:00:00;75.9 -2009-12-24 20:00:00;74.6 -2009-12-24 22:00:00;72.5 -2009-12-25 18:00:00;74.7 -2009-12-25 20:00:00;73.5 -2009-12-25 22:00:00;72.4 -2009-12-26 18:00:00;75.6 -2009-12-26 20:00:00;73.4 -2009-12-26 22:00:00;72.1 -2009-12-27 18:00:00;76.2 -2009-12-27 20:00:00;74.3 -2009-12-27 22:00:00;72.4 -2009-12-28 18:00:00;75.4 -2009-12-28 20:00:00;73.3 -2009-12-28 22:00:00;72.2 -2009-12-29 18:00:00;74.6 -2009-12-29 20:00:00;72.7 -2009-12-29 22:00:00;71.4 -2009-12-30 18:00:00;75.9 -2009-12-30 20:00:00;74.3 -2009-12-30 22:00:00;73.7 -2009-12-31 18:00:00;78.4 -2009-12-31 20:00:00;77.2 -2009-12-31 22:00:00;74.9 -2010-01-01 18:00:00;76.5 -2010-01-01 20:00:00;72.7 -2010-01-01 22:00:00;73.3 -2010-01-02 18:00:00;77.4 -2010-01-02 20:00:00;75.4 -2010-01-02 22:00:00;74.8 -2010-01-03 18:00:00;75.0 -2010-01-03 20:00:00;73.8 -2010-01-03 22:00:00;72.3 -2010-01-04 18:00:00;72.1 -2010-01-04 20:00:00;70.6 -2010-01-05 18:00:00;72.7 -2010-01-05 20:00:00;74.3 -2010-01-05 22:00:00;72.6 -2010-01-06 18:00:00;75.3 -2010-01-06 20:00:00;74.7 -2010-01-06 22:00:00;73.6 -2010-01-07 18:00:00;76.6 -2010-01-07 20:00:00;75.5 -2010-01-07 22:00:00;73.8 -2010-01-08 18:00:00;77.6 -2010-01-08 20:00:00;74.9 -2010-01-08 22:00:00;74.1 -2010-01-09 18:00:00;80.4 -2010-01-09 20:00:00;79.0 -2010-01-09 22:00:00;77.8 -2010-01-10 18:00:00;82.5 -2010-01-10 20:00:00;81.6 -2010-01-10 22:00:00;80.7 -2010-01-11 18:00:00;87.8 -2010-01-11 20:00:00;86.3 -2010-01-11 22:00:00;84.8 -2010-01-12 18:00:00;92.3 -2010-01-12 20:00:00;90.2 -2010-01-12 22:00:00;87.8 -2010-01-13 18:00:00;89.9 -2010-01-13 20:00:00;87.5 -2010-01-13 22:00:00;85.6 -2010-01-14 18:00:00;87.8 -2010-01-14 20:00:00;87.0 -2010-01-14 22:00:00;88.2 -2010-01-15 18:00:00;85.7 -2010-01-15 20:00:00;82.6 -2010-01-15 22:00:00;82.2 -2010-01-16 18:00:00;84.1 -2010-01-16 20:00:00;81.4 -2010-01-16 22:00:00;79.0 -2010-01-17 18:00:00;82.7 -2010-01-17 20:00:00;79.9 -2010-01-17 22:00:00;78.8 -2010-01-18 18:00:00;79.6 -2010-01-18 20:00:00;78.9 -2010-01-18 22:00:00;78.7 -2010-01-19 18:00:00;81.7 -2010-01-19 20:00:00;81.6 -2010-01-19 22:00:00;79.8 -2010-01-20 18:00:00;82.8 -2010-01-20 20:00:00;79.1 -2010-01-20 22:00:00;78.0 -2010-01-21 18:00:00;81.5 -2010-01-21 20:00:00;80.0 -2010-01-21 22:00:00;78.0 -2010-01-22 18:00:00;81.9 -2010-01-22 20:00:00;79.8 -2010-01-22 22:00:00;79.1 -2010-01-23 18:00:00;83.5 -2010-01-23 20:00:00;82.0 -2010-01-23 22:00:00;80.5 -2010-01-24 18:00:00;82.5 -2010-01-24 20:00:00;81.9 -2010-01-24 22:00:00;80.5 -2010-01-25 18:00:00;80.7 -2010-01-25 20:00:00;78.7 -2010-01-25 22:00:00;75.9 -2010-01-26 18:00:00;79.2 -2010-01-26 20:00:00;77.3 -2010-01-26 22:00:00;75.8 -2010-01-27 18:00:00;76.2 -2010-01-27 20:00:00;75.4 -2010-01-27 22:00:00;73.8 -2010-01-28 18:00:00;75.2 -2010-01-28 20:00:00;74.0 -2010-01-28 22:00:00;73.0 -2010-01-29 18:00:00;73.2 -2010-01-29 20:00:00;71.1 -2010-01-29 22:00:00;69.7 -2010-01-30 18:00:00;74.7 -2010-01-30 20:00:00;72.8 -2010-01-30 22:00:00;72.0 -2010-01-31 18:00:00;73.8 -2010-01-31 20:00:00;73.0 -2010-01-31 22:00:00;71.1 -2010-02-01 18:00:00;74.0 -2010-02-01 20:00:00;73.1 -2010-02-01 22:00:00;71.9 -2010-02-02 18:00:00;73.8 -2010-02-02 20:00:00;73.0 -2010-02-02 22:00:00;71.8 -2010-02-03 18:00:00;73.5 -2010-02-03 20:00:00;72.3 -2010-02-03 22:00:00;71.0 -2010-02-04 18:00:00;73.1 -2010-02-04 20:00:00;71.8 -2010-02-04 22:00:00;70.7 -2010-02-05 18:00:00;75.4 -2010-02-05 20:00:00;75.6 -2010-02-05 22:00:00;75.1 -2010-02-06 18:00:00;84.0 -2010-02-06 20:00:00;85.1 -2010-02-06 22:00:00;87.5 -2010-02-07 18:00:00;87.4 -2010-02-07 20:00:00;87.8 -2010-02-07 22:00:00;90.2 -2010-02-08 18:00:00;93.0 -2010-02-08 20:00:00;91.2 -2010-02-08 22:00:00;89.7 -2010-02-09 18:00:00;90.0 -2010-02-09 20:00:00;89.0 -2010-02-09 22:00:00;88.0 -2010-02-10 18:00:00;92.2 -2010-02-10 20:00:00;88.9 -2010-02-10 22:00:00;87.8 -2010-02-11 18:00:00;91.3 -2010-02-11 20:00:00;91.8 -2010-02-11 22:00:00;89.4 -2010-02-12 18:00:00;97.7 -2010-02-12 20:00:00;93.1 -2010-02-12 22:00:00;94.5 -2010-02-13 18:00:00;91.1 -2010-02-13 20:00:00;91.8 -2010-02-13 22:00:00;90.4 -2010-02-14 18:00:00;88.6 -2010-02-14 20:00:00;87.2 -2010-02-14 22:00:00;85.7 -2010-02-15 18:00:00;85.5 -2010-02-15 20:00:00;85.5 -2010-02-15 22:00:00;83.8 -2010-02-16 18:00:00;85.2 -2010-02-16 20:00:00;84.7 -2010-02-16 22:00:00;83.8 -2010-02-17 18:00:00;85.8 -2010-02-17 20:00:00;84.8 -2010-02-17 22:00:00;84.0 -2010-02-18 18:00:00;84.2 -2010-02-18 20:00:00;83.1 -2010-02-18 22:00:00;81.7 -2010-02-19 18:00:00;83.1 -2010-02-19 20:00:00;81.8 -2010-02-19 22:00:00;81.5 -2010-02-20 18:00:00;82.9 -2010-02-20 20:00:00;82.0 -2010-02-20 22:00:00;80.2 -2010-02-21 18:00:00;83.1 -2010-02-21 20:00:00;81.7 -2010-02-21 22:00:00;80.6 -2010-02-22 18:00:00;81.8 -2010-02-22 20:00:00;81.9 -2010-02-22 22:00:00;81.7 -2010-02-23 18:00:00;84.0 -2010-02-23 20:00:00;82.4 -2010-02-23 22:00:00;82.2 -2010-02-24 18:00:00;81.7 -2010-02-24 20:00:00;80.9 -2010-02-24 22:00:00;80.5 -2010-02-25 18:00:00;81.3 -2010-02-25 20:00:00;81.1 -2010-02-25 22:00:00;79.3 -2010-02-26 18:00:00;79.6 -2010-02-26 20:00:00;78.9 -2010-02-26 22:00:00;78.0 -2010-02-27 18:00:00;77.6 -2010-02-27 20:00:00;77.1 -2010-02-27 22:00:00;76.9 -2010-02-28 18:00:00;77.6 -2010-02-28 20:00:00;76.6 -2010-02-28 22:00:00;75.9 -2010-03-01 17:00:00;77.8 -2010-03-01 20:00:00;76.5 -2010-03-01 23:00:00;77.2 -2010-03-02 17:00:00;78.6 -2010-03-02 20:00:00;78.0 -2010-03-02 23:00:00;77.3 -2010-03-03 17:00:00;78.9 -2010-03-03 20:00:00;79.0 -2010-03-03 23:00:00;78.0 -2010-03-04 17:00:00;80.9 -2010-03-04 20:00:00;80.0 -2010-03-04 23:00:00;77.6 -2010-03-05 17:00:00;77.9 -2010-03-05 20:00:00;78.2 -2010-03-05 23:00:00;76.3 -2010-03-06 17:00:00;77.3 -2010-03-06 20:00:00;77.1 -2010-03-06 23:00:00;75.1 -2010-03-07 17:00:00;76.3 -2010-03-07 20:00:00;75.4 -2010-03-07 23:00:00;74.5 -2010-03-08 17:00:00;75.9 -2010-03-08 20:00:00;75.1 -2010-03-08 23:00:00;75.0 -2010-03-09 17:00:00;76.8 -2010-03-09 20:00:00;76.8 -2010-03-09 23:00:00;75.3 -2010-03-10 17:00:00;78.7 -2010-03-10 20:00:00;79.3 -2010-03-10 23:00:00;77.7 -2010-03-11 17:00:00;82.7 -2010-03-11 20:00:00;83.1 -2010-03-11 23:00:00;80.5 -2010-03-12 17:00:00;87.4 -2010-03-12 20:00:00;88.5 -2010-03-12 23:00:00;85.9 -2010-03-13 17:00:00;90.1 -2010-03-13 20:00:00;90.7 -2010-03-13 23:00:00;89.2 -2010-03-14 17:00:00;89.3 -2010-03-14 20:00:00;88.3 -2010-03-14 23:00:00;85.7 -2010-03-15 17:00:00;87.3 -2010-03-15 20:00:00;85.5 -2010-03-15 23:00:00;84.0 -2010-03-16 17:00:00;84.6 -2010-03-16 20:00:00;84.3 -2010-03-16 23:00:00;82.8 -2010-03-17 17:00:00;86.5 -2010-03-17 20:00:00;85.9 -2010-03-17 23:00:00;85.3 -2010-03-18 17:00:00;85.7 -2010-03-18 20:00:00;85.0 -2010-03-18 23:00:00;83.4 -2010-03-19 17:00:00;82.7 -2010-03-19 20:00:00;83.7 -2010-03-19 23:00:00;83.1 -2010-03-20 17:00:00;82.6 -2010-03-20 20:00:00;82.8 -2010-03-20 23:00:00;82.7 -2010-03-21 17:00:00;84.7 -2010-03-21 20:00:00;84.1 -2010-03-21 23:00:00;82.9 -2010-03-22 17:00:00;81.8 -2010-03-22 20:00:00;81.9 -2010-03-22 23:00:00;79.9 -2010-03-23 17:00:00;81.9 -2010-03-23 20:00:00;83.3 -2010-03-23 23:00:00;80.9 -2010-03-24 17:00:00;83.4 -2010-03-24 20:00:00;83.9 -2010-03-24 23:00:00;83.6 -2010-03-25 17:00:00;87.9 -2010-03-25 20:00:00;87.1 -2010-03-25 23:00:00;85.9 -2010-03-26 17:00:00;84.0 -2010-03-26 20:00:00;85.5 -2010-03-26 23:00:00;85.1 -2010-03-27 17:00:00;87.4 -2010-03-27 20:00:00;87.8 -2010-03-27 23:00:00;85.5 -2010-03-28 17:00:00;85.4 -2010-03-28 20:00:00;85.7 -2010-03-28 23:00:00;84.2 -2010-03-29 17:00:00;83.3 -2010-03-29 20:00:00;82.9 -2010-03-29 23:00:00;82.3 -2010-03-30 17:00:00;83.1 -2010-03-30 20:00:00;82.6 -2010-03-30 23:00:00;81.4 -2010-03-31 17:00:00;80.6 -2010-03-31 20:00:00;80.9 -2010-03-31 23:00:00;78.6 -2010-04-01 17:00:00;79.1 -2010-04-01 20:00:00;79.1 -2010-04-01 23:00:00;77.3 -2010-04-02 17:00:00;76.3 -2010-04-02 20:00:00;76.1 -2010-04-02 23:00:00;76.8 -2010-04-03 17:00:00;78.9 -2010-04-03 20:00:00;77.4 -2010-04-03 23:00:00;77.8 -2010-04-04 17:00:00;77.4 -2010-04-04 20:00:00;78.7 -2010-04-04 23:00:00;77.6 -2010-04-05 17:00:00;78.9 -2010-04-05 20:00:00;79.3 -2010-04-05 23:00:00;78.9 -2010-04-06 17:00:00;78.6 -2010-04-06 20:00:00;77.7 -2010-04-06 23:00:00;76.7 -2010-04-07 17:00:00;76.6 -2010-04-07 20:00:00;76.5 -2010-04-07 23:00:00;76.2 -2010-04-08 17:00:00;77.0 -2010-04-08 20:00:00;75.9 -2010-04-08 23:00:00;75.5 -2010-04-09 17:00:00;76.1 -2010-04-09 20:00:00;76.3 -2010-04-09 23:00:00;75.7 -2010-04-10 17:00:00;76.6 -2010-04-10 20:00:00;75.3 -2010-04-10 23:00:00;75.0 -2010-04-11 17:00:00;74.7 -2010-04-11 20:00:00;74.9 -2010-04-11 23:00:00;74.9 -2010-04-12 17:00:00;73.9 -2010-04-12 20:00:00;74.9 -2010-04-12 23:00:00;74.1 -2010-04-13 17:00:00;76.6 -2010-04-13 20:00:00;75.3 -2010-04-13 23:00:00;74.8 -2010-04-14 17:00:00;75.3 -2010-04-14 20:00:00;75.6 -2010-04-14 23:00:00;74.2 -2010-04-15 17:00:00;74.5 -2010-04-15 20:00:00;75.0 -2010-04-15 23:00:00;74.1 -2010-04-16 17:00:00;75.0 -2010-04-16 20:00:00;75.4 -2010-04-16 23:00:00;74.3 -2010-04-17 17:00:00;73.8 -2010-04-17 20:00:00;74.5 -2010-04-17 23:00:00;73.5 -2010-04-18 17:00:00;74.9 -2010-04-18 20:00:00;75.3 -2010-04-18 23:00:00;74.5 -2010-04-19 17:00:00;75.4 -2010-04-19 20:00:00;76.1 -2010-04-19 23:00:00;75.6 -2010-04-20 17:00:00;76.1 -2010-04-20 20:00:00;76.4 -2010-04-20 23:00:00;75.8 -2010-04-21 17:00:00;76.8 -2010-04-21 20:00:00;76.9 -2010-04-21 23:00:00;76.6 -2010-04-22 17:00:00;76.8 -2010-04-22 20:00:00;76.9 -2010-04-22 23:00:00;76.5 -2010-04-23 17:00:00;75.4 -2010-04-23 20:00:00;75.8 -2010-04-23 23:00:00;74.7 -2010-04-24 17:00:00;74.9 -2010-04-24 20:00:00;75.0 -2010-04-24 23:00:00;75.4 -2010-04-25 17:00:00;75.7 -2010-04-25 20:00:00;76.4 -2010-04-25 23:00:00;75.1 -2010-04-26 17:00:00;76.3 -2010-04-26 20:00:00;77.0 -2010-04-26 23:00:00;75.8 -2010-04-27 17:00:00;76.5 -2010-04-27 20:00:00;75.7 -2010-04-27 23:00:00;76.0 -2010-04-28 17:00:00;77.2 -2010-04-28 20:00:00;77.2 -2010-04-28 23:00:00;77.1 -2010-04-29 17:00:00;77.8 -2010-04-29 20:00:00;77.3 -2010-04-29 23:00:00;77.9 -2010-04-30 17:00:00;78.4 -2010-04-30 20:00:00;79.8 -2010-04-30 23:00:00;78.0 -2010-05-01 17:00:00;79.0 -2010-05-01 20:00:00;79.0 -2010-05-01 23:00:00;79.1 -2010-05-02 17:00:00;80.8 -2010-05-02 20:00:00;80.8 -2010-05-02 23:00:00;80.1 -2010-05-03 17:00:00;81.4 -2010-05-03 20:00:00;81.6 -2010-05-03 23:00:00;80.9 -2010-05-04 17:00:00;84.0 -2010-05-04 20:00:00;83.1 -2010-05-04 23:00:00;82.8 -2010-05-05 17:00:00;85.4 -2010-05-05 20:00:00;84.7 -2010-05-05 23:00:00;83.8 -2010-05-06 17:00:00;80.1 -2010-05-06 20:00:00;80.5 -2010-05-06 23:00:00;80.7 -2010-05-07 17:00:00;79.9 -2010-05-07 20:00:00;80.5 -2010-05-07 23:00:00;79.8 -2010-05-08 17:00:00;79.8 -2010-05-08 20:00:00;80.3 -2010-05-08 23:00:00;80.1 -2010-05-09 17:00:00;78.0 -2010-05-09 20:00:00;76.9 -2010-05-09 23:00:00;76.7 -2010-05-10 17:00:00;74.9 -2010-05-10 20:00:00;75.1 -2010-05-10 23:00:00;74.8 -2010-05-11 17:00:00;74.5 -2010-05-11 20:00:00;75.0 -2010-05-11 23:00:00;74.2 -2010-05-12 17:00:00;73.0 -2010-05-12 20:00:00;72.7 -2010-05-12 23:00:00;72.5 -2010-05-13 17:00:00;70.8 -2010-05-13 20:00:00;70.9 -2010-05-13 23:00:00;70.4 -2010-05-14 17:00:00;70.9 -2010-05-14 20:00:00;71.2 -2010-05-14 23:00:00;70.7 -2010-05-15 17:00:00;70.6 -2010-05-15 20:00:00;71.8 -2010-05-15 23:00:00;70.7 -2010-05-16 17:00:00;70.5 -2010-05-16 20:00:00;70.0 -2010-05-16 23:00:00;70.6 -2010-05-17 17:00:00;70.8 -2010-05-17 20:00:00;70.8 -2010-05-17 23:00:00;70.3 -2010-05-18 17:00:00;69.9 -2010-05-18 20:00:00;70.3 -2010-05-18 23:00:00;69.4 -2010-05-19 17:00:00;70.4 -2010-05-19 20:00:00;70.2 -2010-05-19 23:00:00;69.9 -2010-05-20 17:00:00;70.4 -2010-05-20 20:00:00;70.4 -2010-05-20 23:00:00;70.7 -2010-05-21 17:00:00;71.9 -2010-05-21 20:00:00;72.6 -2010-05-21 23:00:00;72.0 -2010-05-22 17:00:00;74.1 -2010-05-22 20:00:00;74.3 -2010-05-22 23:00:00;74.5 -2010-05-23 17:00:00;74.6 -2010-05-23 20:00:00;76.4 -2010-05-23 23:00:00;75.8 -2010-05-24 17:00:00;75.0 -2010-05-24 20:00:00;74.4 -2010-05-24 23:00:00;74.4 -2010-05-25 17:00:00;74.8 -2010-05-25 20:00:00;75.1 -2010-05-25 23:00:00;74.0 -2010-05-26 17:00:00;74.7 -2010-05-26 20:00:00;74.3 -2010-05-26 23:00:00;74.4 -2010-05-27 17:00:00;74.8 -2010-05-27 20:00:00;74.6 -2010-05-27 23:00:00;74.2 -2010-05-28 17:00:00;74.7 -2010-05-28 20:00:00;75.2 -2010-05-28 23:00:00;75.3 -2010-05-29 17:00:00;75.7 -2010-05-29 20:00:00;75.7 -2010-05-29 23:00:00;75.6 -2010-05-30 17:00:00;74.8 -2010-05-30 20:00:00;75.0 -2010-05-30 23:00:00;74.0 -2010-05-31 17:00:00;74.1 -2010-05-31 20:00:00;74.1 -2010-05-31 23:00:00;74.7 -2010-06-01 17:00:00;74.6 -2010-06-01 20:00:00;74.8 -2010-06-01 23:00:00;74.9 -2010-06-02 17:00:00;75.2 -2010-06-02 20:00:00;76.1 -2010-06-02 23:00:00;76.7 -2010-06-03 17:00:00;77.4 -2010-06-03 20:00:00;76.8 -2010-06-03 23:00:00;76.9 -2010-06-04 17:00:00;73.5 -2010-06-04 20:00:00;74.0 -2010-06-04 23:00:00;73.8 -2010-06-05 17:00:00;72.1 -2010-06-05 20:00:00;72.4 -2010-06-05 23:00:00;71.6 -2010-06-06 17:00:00;69.8 -2010-06-06 20:00:00;70.0 -2010-06-06 23:00:00;70.3 -2010-06-07 17:00:00;70.1 -2010-06-07 20:00:00;70.6 -2010-06-07 23:00:00;70.4 -2010-06-08 17:00:00;72.8 -2010-06-08 20:00:00;74.0 -2010-06-08 23:00:00;74.6 -2010-06-09 17:00:00;73.7 -2010-06-09 20:00:00;73.7 -2010-06-09 23:00:00;74.4 -2010-06-10 17:00:00;74.8 -2010-06-10 20:00:00;75.2 -2010-06-10 23:00:00;74.8 -2010-06-11 17:00:00;75.8 -2010-06-11 20:00:00;76.9 -2010-06-11 23:00:00;77.0 -2010-06-12 17:00:00;78.9 -2010-06-12 20:00:00;78.6 -2010-06-12 23:00:00;78.6 -2010-06-13 17:00:00;78.9 -2010-06-13 20:00:00;78.7 -2010-06-13 23:00:00;77.6 -2010-06-14 17:00:00;75.4 -2010-06-14 20:00:00;75.1 -2010-06-14 23:00:00;74.3 -2010-06-15 17:00:00;72.7 -2010-06-15 20:00:00;72.3 -2010-06-15 23:00:00;73.3 -2010-06-16 17:00:00;73.3 -2010-06-16 20:00:00;73.9 -2010-06-16 23:00:00;73.3 -2010-06-17 17:00:00;72.6 -2010-06-17 20:00:00;72.7 -2010-06-17 23:00:00;72.9 -2010-06-18 17:00:00;71.9 -2010-06-18 20:00:00;72.8 -2010-06-18 23:00:00;72.5 -2010-06-19 17:00:00;71.3 -2010-06-19 20:00:00;71.2 -2010-06-19 23:00:00;70.9 -2010-06-20 17:00:00;72.5 -2010-06-20 20:00:00;72.3 -2010-06-20 23:00:00;72.2 -2010-06-21 17:00:00;73.3 -2010-06-21 20:00:00;74.3 -2010-06-21 23:00:00;74.4 -2010-06-22 17:00:00;75.5 -2010-06-22 20:00:00;75.7 -2010-06-22 23:00:00;75.4 -2010-06-23 17:00:00;76.2 -2010-06-23 20:00:00;76.5 -2010-06-23 23:00:00;76.7 -2010-06-24 17:00:00;76.9 -2010-06-24 20:00:00;76.9 -2010-06-24 23:00:00;77.2 -2010-06-25 17:00:00;76.9 -2010-06-25 20:00:00;76.9 -2010-06-25 23:00:00;76.9 -2010-06-26 17:00:00;76.3 -2010-06-26 20:00:00;76.9 -2010-06-26 23:00:00;77.1 -2010-06-27 17:00:00;75.1 -2010-06-27 20:00:00;75.3 -2010-06-27 23:00:00;75.5 -2010-06-28 17:00:00;76.2 -2010-06-28 20:00:00;76.4 -2010-06-28 23:00:00;76.2 -2010-06-29 17:00:00;76.0 -2010-06-29 20:00:00;76.0 -2010-06-29 23:00:00;75.8 -2010-06-30 17:00:00;75.4 -2010-06-30 20:00:00;76.3 -2010-06-30 23:00:00;75.3 -2010-07-01 17:00:00;75.3 -2010-07-01 20:00:00;75.5 -2010-07-01 23:00:00;75.6 -2010-07-02 17:00:00;75.7 -2010-07-02 20:00:00;75.9 -2010-07-02 23:00:00;75.7 -2010-07-03 17:00:00;75.0 -2010-07-03 20:00:00;74.8 -2010-07-03 23:00:00;74.9 -2010-07-04 17:00:00;73.8 -2010-07-04 20:00:00;74.0 -2010-07-04 23:00:00;74.6 -2010-07-05 17:00:00;75.0 -2010-07-05 20:00:00;75.2 -2010-07-05 23:00:00;75.1 -2010-07-06 17:00:00;74.7 -2010-07-06 20:00:00;75.2 -2010-07-06 23:00:00;75.0 -2010-07-07 17:00:00;75.7 -2010-07-07 20:00:00;76.6 -2010-07-07 23:00:00;76.9 -2010-07-08 17:00:00;77.4 -2010-07-08 20:00:00;78.2 -2010-07-08 23:00:00;78.3 -2010-07-09 17:00:00;78.5 -2010-07-09 20:00:00;82.7 -2010-07-09 23:00:00;82.4 -2010-07-10 17:00:00;82.3 -2010-07-10 20:00:00;82.6 -2010-07-10 23:00:00;84.7 -2010-07-11 17:00:00;84.7 -2010-07-11 20:00:00;85.4 -2010-07-11 23:00:00;84.5 -2010-07-12 17:00:00;82.3 -2010-07-12 20:00:00;82.6 -2010-07-12 23:00:00;82.1 -2010-07-13 17:00:00;82.1 -2010-07-13 20:00:00;81.1 -2010-07-13 23:00:00;80.5 -2010-07-14 17:00:00;79.3 -2010-07-14 20:00:00;80.3 -2010-07-14 23:00:00;84.5 -2010-07-15 17:00:00;79.6 -2010-07-15 20:00:00;78.4 -2010-07-15 23:00:00;78.7 -2010-07-16 17:00:00;79.0 -2010-07-16 20:00:00;79.1 -2010-07-16 23:00:00;77.9 -2010-07-17 17:00:00;78.8 -2010-07-17 20:00:00;81.3 -2010-07-17 23:00:00;80.0 -2010-07-18 17:00:00;79.4 -2010-07-18 20:00:00;79.4 -2010-07-18 23:00:00;79.3 -2010-07-19 17:00:00;82.1 -2010-07-19 20:00:00;82.5 -2010-07-19 23:00:00;83.9 -2010-07-20 17:00:00;86.7 -2010-07-20 20:00:00;89.9 -2010-07-20 23:00:00;90.2 -2010-07-21 17:00:00;90.4 -2010-07-21 20:00:00;92.0 -2010-07-21 23:00:00;91.9 -2010-07-22 17:00:00;91.5 -2010-07-22 20:00:00;90.5 -2010-07-22 23:00:00;90.6 -2010-07-23 17:00:00;88.5 -2010-07-23 20:00:00;89.2 -2010-07-23 23:00:00;88.5 -2010-07-24 17:00:00;87.7 -2010-07-24 20:00:00;87.9 -2010-07-24 23:00:00;87.7 -2010-07-25 17:00:00;88.2 -2010-07-25 20:00:00;87.9 -2010-07-25 23:00:00;87.7 -2010-07-26 17:00:00;86.8 -2010-07-26 20:00:00;87.1 -2010-07-26 23:00:00;87.2 -2010-07-27 17:00:00;84.2 -2010-07-27 20:00:00;85.2 -2010-07-27 23:00:00;84.1 -2010-07-28 17:00:00;86.2 -2010-07-28 20:00:00;88.0 -2010-07-28 23:00:00;87.8 -2010-07-29 17:00:00;86.4 -2010-07-29 20:00:00;87.2 -2010-07-29 23:00:00;86.5 -2010-07-30 17:00:00;85.9 -2010-07-30 20:00:00;85.7 -2010-07-30 23:00:00;85.1 -2010-07-31 17:00:00;81.5 -2010-07-31 20:00:00;83.9 -2010-07-31 23:00:00;82.6 -2010-08-01 17:00:00;83.0 -2010-08-01 20:00:00;82.1 -2010-08-01 23:00:00;81.6 -2010-08-02 17:00:00;81.5 -2010-08-02 20:00:00;81.5 -2010-08-02 23:00:00;82.6 -2010-08-03 17:00:00;83.9 -2010-08-03 20:00:00;83.0 -2010-08-03 23:00:00;82.6 -2010-08-04 17:00:00;83.9 -2010-08-04 20:00:00;83.2 -2010-08-04 23:00:00;83.2 -2010-08-05 17:00:00;83.9 -2010-08-05 20:00:00;85.1 -2010-08-05 23:00:00;87.7 -2010-08-06 17:00:00;86.9 -2010-08-06 20:00:00;84.4 -2010-08-06 23:00:00;83.2 -2010-08-07 17:00:00;83.0 -2010-08-07 20:00:00;93.1 -2010-08-07 23:00:00;84.1 -2010-08-08 17:00:00;84.7 -2010-08-08 20:00:00;84.9 -2010-08-08 23:00:00;83.8 -2010-08-09 17:00:00;85.6 -2010-08-09 20:00:00;86.5 -2010-08-09 23:00:00;87.1 -2010-08-10 17:00:00;86.8 -2010-08-10 20:00:00;85.8 -2010-08-10 23:00:00;86.8 -2010-08-11 17:00:00;86.9 -2010-08-11 20:00:00;88.1 -2010-08-11 23:00:00;86.4 -2010-08-12 17:00:00;86.0 -2010-08-12 20:00:00;86.0 -2010-08-12 23:00:00;84.7 -2010-08-13 17:00:00;86.1 -2010-08-13 20:00:00;86.0 -2010-08-13 23:00:00;86.0 -2010-08-14 17:00:00;86.8 -2010-08-14 20:00:00;87.4 -2010-08-14 23:00:00;86.9 -2010-08-15 17:00:00;87.0 -2010-08-15 20:00:00;87.8 -2010-08-15 23:00:00;85.9 -2010-08-16 17:00:00;86.7 -2010-08-16 20:00:00;86.9 -2010-08-16 23:00:00;85.8 -2010-08-17 17:00:00;84.8 -2010-08-17 20:00:00;83.1 -2010-08-17 23:00:00;82.2 -2010-08-18 17:00:00;82.5 -2010-08-18 20:00:00;81.8 -2010-08-18 23:00:00;82.3 -2010-08-19 17:00:00;79.6 -2010-08-19 20:00:00;79.8 -2010-08-19 23:00:00;78.8 -2010-08-20 17:00:00;77.8 -2010-08-20 20:00:00;78.9 -2010-08-20 23:00:00;78.1 -2010-08-21 17:00:00;77.6 -2010-08-21 20:00:00;77.3 -2010-08-21 23:00:00;76.4 -2010-08-22 17:00:00;76.1 -2010-08-22 20:00:00;76.3 -2010-08-22 23:00:00;75.3 -2010-08-23 17:00:00;75.6 -2010-08-23 20:00:00;76.5 -2010-08-23 23:00:00;75.6 -2010-08-24 17:00:00;75.3 -2010-08-24 20:00:00;75.2 -2010-08-24 23:00:00;74.4 -2010-08-25 17:00:00;75.1 -2010-08-25 20:00:00;75.1 -2010-08-25 23:00:00;73.8 -2010-08-26 17:00:00;74.0 -2010-08-26 20:00:00;75.0 -2010-08-26 23:00:00;74.5 -2010-08-27 17:00:00;75.4 -2010-08-27 20:00:00;74.8 -2010-08-27 23:00:00;74.0 -2010-08-28 17:00:00;73.3 -2010-08-28 20:00:00;73.3 -2010-08-28 23:00:00;72.2 -2010-08-29 17:00:00;74.6 -2010-08-29 20:00:00;75.4 -2010-08-29 23:00:00;74.8 -2010-08-30 17:00:00;76.8 -2010-08-30 20:00:00;76.4 -2010-08-30 23:00:00;74.8 -2010-08-31 17:00:00;76.9 -2010-08-31 20:00:00;76.0 -2010-08-31 23:00:00;76.8 -2010-09-01 17:00:00;78.0 -2010-09-01 20:00:00;77.7 -2010-09-01 23:00:00;77.1 -2010-09-02 17:00:00;78.6 -2010-09-02 20:00:00;78.4 -2010-09-02 23:00:00;76.8 -2010-09-03 17:00:00;79.0 -2010-09-03 20:00:00;78.5 -2010-09-03 23:00:00;78.4 -2010-09-04 17:00:00;83.6 -2010-09-04 20:00:00;83.6 -2010-09-04 23:00:00;81.9 -2010-09-05 17:00:00;84.4 -2010-09-05 20:00:00;83.5 -2010-09-05 23:00:00;82.3 -2010-09-06 17:00:00;82.5 -2010-09-06 20:00:00;81.0 -2010-09-06 23:00:00;79.7 -2010-09-07 17:00:00;79.1 -2010-09-07 20:00:00;77.3 -2010-09-07 23:00:00;76.4 -2010-09-08 17:00:00;75.7 -2010-09-08 20:00:00;75.6 -2010-09-08 23:00:00;77.0 -2010-09-09 17:00:00;75.6 -2010-09-09 20:00:00;74.7 -2010-09-09 23:00:00;73.9 -2010-09-10 17:00:00;76.7 -2010-09-10 20:00:00;76.4 -2010-09-10 23:00:00;75.9 -2010-09-11 17:00:00;79.4 -2010-09-11 20:00:00;79.1 -2010-09-11 23:00:00;77.7 -2010-09-12 17:00:00;81.4 -2010-09-12 20:00:00;79.3 -2010-09-12 23:00:00;79.1 -2010-09-13 17:00:00;81.7 -2010-09-13 20:00:00;80.4 -2010-09-13 23:00:00;79.3 -2010-09-14 17:00:00;82.0 -2010-09-14 20:00:00;81.6 -2010-09-14 23:00:00;81.0 -2010-09-15 17:00:00;83.3 -2010-09-15 20:00:00;82.1 -2010-09-15 23:00:00;80.2 -2010-09-16 17:00:00;83.6 -2010-09-16 20:00:00;83.3 -2010-09-16 23:00:00;82.6 -2010-09-17 17:00:00;83.6 -2010-09-17 20:00:00;83.0 -2010-09-17 23:00:00;82.6 -2010-09-18 17:00:00;83.7 -2010-09-18 20:00:00;82.9 -2010-09-18 23:00:00;81.9 -2010-09-19 17:00:00;83.5 -2010-09-19 20:00:00;81.9 -2010-09-19 23:00:00;81.5 -2010-09-20 17:00:00;85.0 -2010-09-20 20:00:00;83.3 -2010-09-20 23:00:00;84.0 -2010-09-21 17:00:00;86.9 -2010-09-21 20:00:00;85.2 -2010-09-21 23:00:00;83.1 -2010-09-22 17:00:00;86.9 -2010-09-22 20:00:00;85.4 -2010-09-22 23:00:00;82.5 -2010-09-23 17:00:00;87.4 -2010-09-23 20:00:00;84.9 -2010-09-23 23:00:00;82.0 -2010-09-24 17:00:00;85.0 -2010-09-24 20:00:00;83.1 -2010-09-24 23:00:00;81.5 -2010-09-25 17:00:00;85.8 -2010-09-25 20:00:00;83.4 -2010-09-25 23:00:00;80.8 -2010-09-26 17:00:00;85.8 -2010-09-26 20:00:00;84.3 -2010-09-26 23:00:00;82.1 -2010-09-27 17:00:00;84.8 -2010-09-27 20:00:00;83.4 -2010-09-27 23:00:00;80.9 -2010-09-28 17:00:00;86.1 -2010-09-28 20:00:00;83.5 -2010-09-28 23:00:00;80.8 -2010-09-29 17:00:00;85.7 -2010-09-29 20:00:00;91.0 -2010-09-29 23:00:00;88.9 -2010-09-30 17:00:00;89.9 -2010-09-30 20:00:00;90.2 -2010-09-30 23:00:00;87.9 -2010-10-01 17:00:00;87.7 -2010-10-01 20:00:00;86.9 -2010-10-01 23:00:00;84.9 -2010-10-02 17:00:00;85.4 -2010-10-02 20:00:00;85.1 -2010-10-02 23:00:00;83.7 -2010-10-03 17:00:00;81.4 -2010-10-03 20:00:00;80.1 -2010-10-03 23:00:00;78.8 -2010-10-04 17:00:00;76.6 -2010-10-04 20:00:00;76.1 -2010-10-04 23:00:00;74.7 -2010-10-05 17:00:00;75.4 -2010-10-05 20:00:00;75.4 -2010-10-05 23:00:00;74.3 -2010-10-06 17:00:00;75.3 -2010-10-06 20:00:00;74.2 -2010-10-06 23:00:00;72.9 -2010-10-07 17:00:00;75.8 -2010-10-07 20:00:00;75.0 -2010-10-07 23:00:00;73.5 -2010-10-08 17:00:00;74.9 -2010-10-08 20:00:00;74.7 -2010-10-08 23:00:00;73.4 -2010-10-09 17:00:00;76.7 -2010-10-09 20:00:00;76.2 -2010-10-09 23:00:00;74.6 -2010-10-10 17:00:00;76.1 -2010-10-10 20:00:00;75.7 -2010-10-10 23:00:00;74.9 -2010-10-11 17:00:00;75.5 -2010-10-11 20:00:00;75.0 -2010-10-11 23:00:00;73.5 -2010-10-12 17:00:00;75.0 -2010-10-12 20:00:00;74.9 -2010-10-12 23:00:00;74.2 -2010-10-13 17:00:00;78.3 -2010-10-13 20:00:00;77.7 -2010-10-13 23:00:00;76.3 -2010-10-14 17:00:00;80.6 -2010-10-14 20:00:00;79.9 -2010-10-14 23:00:00;78.1 -2010-10-15 17:00:00;82.0 -2010-10-15 20:00:00;81.7 -2010-10-15 23:00:00;81.3 -2010-10-16 17:00:00;86.1 -2010-10-16 20:00:00;86.3 -2010-10-16 23:00:00;81.8 -2010-10-17 17:00:00;84.8 -2010-10-17 20:00:00;83.0 -2010-10-17 23:00:00;81.7 -2010-10-18 17:00:00;90.5 -2010-10-18 20:00:00;89.9 -2010-10-18 23:00:00;86.5 -2010-10-19 17:00:00;88.3 -2010-10-19 20:00:00;85.9 -2010-10-19 23:00:00;84.4 -2010-10-20 17:00:00;83.9 -2010-10-20 20:00:00;83.2 -2010-10-20 23:00:00;82.0 -2010-10-21 17:00:00;83.2 -2010-10-21 20:00:00;82.7 -2010-10-21 23:00:00;81.0 -2010-10-22 17:00:00;83.0 -2010-10-22 20:00:00;81.4 -2010-10-22 23:00:00;80.7 -2010-10-23 17:00:00;81.7 -2010-10-23 20:00:00;83.4 -2010-10-23 23:00:00;80.7 -2010-10-24 17:00:00;83.2 -2010-10-24 20:00:00;81.2 -2010-10-24 23:00:00;80.2 -2010-10-25 17:00:00;84.0 -2010-10-25 20:00:00;85.2 -2010-10-25 23:00:00;84.3 -2010-10-26 17:00:00;87.4 -2010-10-26 20:00:00;85.1 -2010-10-26 23:00:00;84.5 -2010-10-27 17:00:00;87.8 -2010-10-27 20:00:00;86.5 -2010-10-27 23:00:00;83.0 -2010-10-28 17:00:00;88.0 -2010-10-28 20:00:00;85.3 -2010-10-28 23:00:00;82.8 -2010-10-29 17:00:00;85.7 -2010-10-29 20:00:00;84.5 -2010-10-29 23:00:00;82.2 -2010-10-30 17:00:00;85.7 -2010-10-30 20:00:00;83.6 -2010-10-30 23:00:00;81.1 -2010-10-31 17:00:00;82.5 -2010-10-31 20:00:00;80.0 -2010-10-31 23:00:00;78.1 -2010-11-01 18:00:00;78.6 -2010-11-01 20:00:00;77.9 -2010-11-01 22:00:00;76.9 -2010-11-02 18:00:00;78.4 -2010-11-02 20:00:00;77.7 -2010-11-02 22:00:00;76.4 -2010-11-03 18:00:00;79.1 -2010-11-03 20:00:00;77.2 -2010-11-03 22:00:00;76.6 -2010-11-04 18:00:00;80.3 -2010-11-04 20:00:00;77.8 -2010-11-04 22:00:00;77.9 -2010-11-05 18:00:00;81.1 -2010-11-05 20:00:00;81.6 -2010-11-05 22:00:00;81.4 -2010-11-06 18:00:00;101.6 -2010-11-06 20:00:00;87.1 -2010-11-06 22:00:00;83.1 -2010-11-07 18:00:00;84.4 -2010-11-07 20:00:00;83.5 -2010-11-07 22:00:00;81.9 -2010-11-08 18:00:00;82.8 -2010-11-08 20:00:00;82.2 -2010-11-08 22:00:00;80.5 -2010-11-09 18:00:00;83.3 -2010-11-09 20:00:00;82.5 -2010-11-09 22:00:00;81.6 -2010-11-10 18:00:00;85.2 -2010-11-10 20:00:00;83.9 -2010-11-10 22:00:00;83.0 -2010-11-11 18:00:00;83.0 -2010-11-11 20:00:00;82.8 -2010-11-11 22:00:00;81.3 -2010-11-12 18:00:00;84.7 -2010-11-12 20:00:00;83.7 -2010-11-12 22:00:00;82.0 -2010-11-13 18:00:00;86.0 -2010-11-13 20:00:00;83.6 -2010-11-13 22:00:00;81.8 -2010-11-14 18:00:00;85.7 -2010-11-14 20:00:00;84.6 -2010-11-14 22:00:00;84.5 -2010-11-15 18:00:00;91.4 -2010-11-15 20:00:00;88.8 -2010-11-15 22:00:00;88.4 -2010-11-16 18:00:00;91.1 -2010-11-16 20:00:00;89.8 -2010-11-16 22:00:00;88.7 -2010-11-17 18:00:00;91.7 -2010-11-17 20:00:00;89.1 -2010-11-17 22:00:00;87.6 -2010-11-18 18:00:00;86.2 -2010-11-18 20:00:00;84.5 -2010-11-18 22:00:00;82.6 -2010-11-19 18:00:00;83.1 -2010-11-19 20:00:00;82.0 -2010-11-19 22:00:00;79.7 -2010-11-20 18:00:00;79.2 -2010-11-20 20:00:00;77.9 -2010-11-20 22:00:00;76.9 -2010-11-21 18:00:00;76.7 -2010-11-21 20:00:00;75.8 -2010-11-21 22:00:00;74.2 -2010-11-22 18:00:00;74.9 -2010-11-22 20:00:00;72.9 -2010-11-22 22:00:00;71.7 -2010-11-23 18:00:00;74.9 -2010-11-23 20:00:00;73.4 -2010-11-23 22:00:00;72.1 -2010-11-24 18:00:00;75.1 -2010-11-24 20:00:00;73.9 -2010-11-24 22:00:00;72.2 -2010-11-25 18:00:00;75.7 -2010-11-25 20:00:00;75.9 -2010-11-25 22:00:00;73.6 -2010-11-26 18:00:00;75.7 -2010-11-26 20:00:00;74.2 -2010-11-26 22:00:00;72.3 -2010-11-27 18:00:00;75.3 -2010-11-27 20:00:00;74.5 -2010-11-27 22:00:00;73.1 -2010-11-28 18:00:00;79.6 -2010-11-28 20:00:00;77.9 -2010-11-28 22:00:00;75.4 -2010-11-29 18:00:00;80.4 -2010-11-29 20:00:00;80.2 -2010-11-29 22:00:00;79.7 -2010-11-30 18:00:00;84.2 -2010-11-30 20:00:00;84.0 -2010-11-30 22:00:00;82.1 -2010-12-01 18:00:00;85.1 -2010-12-01 20:00:00;84.1 -2010-12-01 22:00:00;82.4 -2010-12-02 18:00:00;84.9 -2010-12-02 20:00:00;84.1 -2010-12-02 22:00:00;82.6 -2010-12-03 18:00:00;85.6 -2010-12-03 20:00:00;84.4 -2010-12-03 22:00:00;83.1 -2010-12-04 18:00:00;86.9 -2010-12-04 20:00:00;84.9 -2010-12-04 22:00:00;84.0 -2010-12-05 18:00:00;86.5 -2010-12-05 20:00:00;85.4 -2010-12-05 22:00:00;82.2 -2010-12-06 18:00:00;87.3 -2010-12-06 20:00:00;85.9 -2010-12-06 22:00:00;84.6 -2010-12-07 18:00:00;87.2 -2010-12-07 20:00:00;84.5 -2010-12-07 22:00:00;82.5 -2010-12-08 18:00:00;86.8 -2010-12-08 20:00:00;84.6 -2010-12-08 22:00:00;82.5 -2010-12-09 18:00:00;85.5 -2010-12-09 20:00:00;84.2 -2010-12-09 22:00:00;82.2 -2010-12-10 18:00:00;87.1 -2010-12-10 20:00:00;85.8 -2010-12-10 22:00:00;84.0 -2010-12-11 18:00:00;86.9 -2010-12-11 20:00:00;84.3 -2010-12-11 22:00:00;82.7 -2010-12-12 18:00:00;88.4 -2010-12-12 20:00:00;86.7 -2010-12-12 22:00:00;85.2 -2010-12-13 18:00:00;86.9 -2010-12-13 20:00:00;85.0 -2010-12-13 22:00:00;83.4 -2010-12-14 18:00:00;89.6 -2010-12-14 20:00:00;87.5 -2010-12-14 22:00:00;86.7 -2010-12-15 18:00:00;85.2 -2010-12-15 20:00:00;84.2 -2010-12-15 22:00:00;83.0 -2010-12-16 18:00:00;80.6 -2010-12-16 20:00:00;81.4 -2010-12-16 22:00:00;80.5 -2010-12-17 18:00:00;78.8 -2010-12-17 20:00:00;79.1 -2010-12-17 22:00:00;78.6 -2010-12-18 18:00:00;77.7 -2010-12-18 20:00:00;78.0 -2010-12-18 22:00:00;77.4 -2010-12-19 18:00:00;77.4 -2010-12-19 20:00:00;78.3 -2010-12-19 22:00:00;77.5 -2010-12-20 18:00:00;76.3 -2010-12-20 20:00:00;75.4 -2010-12-20 22:00:00;75.3 -2010-12-21 18:00:00;75.5 -2010-12-21 20:00:00;75.3 -2010-12-21 22:00:00;75.6 -2010-12-22 18:00:00;76.0 -2010-12-22 20:00:00;75.2 -2010-12-22 22:00:00;76.3 -2010-12-23 18:00:00;74.9 -2010-12-23 20:00:00;77.5 -2010-12-23 22:00:00;76.7 -2010-12-24 18:00:00;76.1 -2010-12-24 20:00:00;76.1 -2010-12-24 22:00:00;75.8 -2010-12-25 18:00:00;78.1 -2010-12-25 20:00:00;76.8 -2010-12-25 22:00:00;77.3 -2010-12-26 18:00:00;78.3 -2010-12-26 20:00:00;77.9 -2010-12-26 22:00:00;77.2 -2010-12-27 18:00:00;77.8 -2010-12-27 20:00:00;77.4 -2010-12-27 22:00:00;77.6 -2010-12-28 18:00:00;78.9 -2010-12-28 20:00:00;78.0 -2010-12-28 22:00:00;77.9 -2010-12-29 18:00:00;79.8 -2010-12-29 20:00:00;79.9 -2010-12-29 22:00:00;80.9 -2010-12-30 18:00:00;80.1 -2010-12-30 20:00:00;80.2 -2010-12-30 22:00:00;83.7 -2010-12-31 18:00:00;85.6 -2010-12-31 20:00:00;87.9 -2010-12-31 22:00:00;86.9 -2011-01-02 18:00:00;87.3 -2011-01-02 20:00:00;88.1 -2011-01-02 22:00:00;86.9 -2011-01-03 18:00:00;87.5 -2011-01-03 20:00:00;89.1 -2011-01-03 22:00:00;88.7 -2011-01-04 18:00:00;87.6 -2011-01-04 20:00:00;87.6 -2011-01-04 22:00:00;86.2 -2011-01-05 18:00:00;84.6 -2011-01-05 20:00:00;84.8 -2011-01-05 22:00:00;84.5 -2011-01-06 18:00:00;83.9 -2011-01-06 20:00:00;83.9 -2011-01-06 22:00:00;83.7 -2011-01-07 18:00:00;84.2 -2011-01-07 20:00:00;83.5 -2011-01-07 22:00:00;83.4 -2011-01-08 18:00:00;82.8 -2011-01-08 20:00:00;82.0 -2011-01-08 22:00:00;81.0 -2011-01-09 18:00:00;80.8 -2011-01-09 20:00:00;80.0 -2011-01-09 22:00:00;79.7 -2011-01-10 18:00:00;80.9 -2011-01-10 20:00:00;80.6 -2011-01-10 22:00:00;80.5 -2011-01-11 18:00:00;80.2 -2011-01-11 20:00:00;79.9 -2011-01-11 22:00:00;79.2 -2011-01-12 18:00:00;77.7 -2011-01-12 20:00:00;77.4 -2011-01-12 22:00:00;77.7 -2011-01-13 18:00:00;77.2 -2011-01-13 20:00:00;76.9 -2011-01-13 22:00:00;76.6 -2011-01-14 18:00:00;77.4 -2011-01-14 20:00:00;76.7 -2011-01-14 22:00:00;76.8 -2011-01-15 18:00:00;78.3 -2011-01-15 20:00:00;77.6 -2011-01-15 22:00:00;78.0 -2011-01-16 18:00:00;78.7 -2011-01-16 20:00:00;77.8 -2011-01-16 22:00:00;77.8 -2011-01-17 18:00:00;78.7 -2011-01-17 20:00:00;79.1 -2011-01-17 22:00:00;79.6 -2011-01-18 18:00:00;79.9 -2011-01-18 20:00:00;78.4 -2011-01-18 22:00:00;78.7 -2011-01-19 18:00:00;78.6 -2011-01-19 20:00:00;78.2 -2011-01-19 22:00:00;78.8 -2011-01-20 18:00:00;80.7 -2011-01-20 20:00:00;79.7 -2011-01-20 22:00:00;79.2 -2011-01-21 18:00:00;84.3 -2011-01-21 20:00:00;84.8 -2011-01-21 22:00:00;84.2 -2011-01-22 18:00:00;84.9 -2011-01-22 20:00:00;84.9 -2011-01-22 22:00:00;84.0 -2011-01-23 18:00:00;83.2 -2011-01-23 20:00:00;81.7 -2011-01-23 22:00:00;80.9 -2011-01-24 18:00:00;79.8 -2011-01-24 20:00:00;79.9 -2011-01-24 22:00:00;79.2 -2011-01-25 18:00:00;78.9 -2011-01-25 20:00:00;78.0 -2011-01-25 22:00:00;78.2 -2011-01-26 18:00:00;78.0 -2011-01-26 20:00:00;77.6 -2011-01-26 22:00:00;77.3 -2011-01-27 18:00:00;77.7 -2011-01-27 20:00:00;78.1 -2011-01-27 22:00:00;77.6 -2011-01-28 18:00:00;78.5 -2011-01-28 20:00:00;78.1 -2011-01-28 22:00:00;77.8 -2011-01-29 18:00:00;78.9 -2011-01-29 20:00:00;79.0 -2011-01-29 22:00:00;78.6 -2011-01-30 18:00:00;80.2 -2011-01-30 20:00:00;80.2 -2011-01-30 22:00:00;79.4 -2011-01-31 18:00:00;79.0 -2011-01-31 20:00:00;78.9 -2011-01-31 22:00:00;78.6 -2011-02-01 18:00:00;78.2 -2011-02-01 20:00:00;77.6 -2011-02-01 22:00:00;78.1 -2011-02-02 18:00:00;77.2 -2011-02-02 20:00:00;77.0 -2011-02-02 22:00:00;76.6 -2011-02-03 18:00:00;77.9 -2011-02-03 20:00:00;78.1 -2011-02-03 22:00:00;77.9 -2011-02-04 18:00:00;78.3 -2011-02-04 20:00:00;79.8 -2011-02-04 22:00:00;78.9 -2011-02-05 18:00:00;78.9 -2011-02-05 20:00:00;78.7 -2011-02-05 22:00:00;77.9 -2011-02-06 18:00:00;77.5 -2011-02-06 20:00:00;78.0 -2011-02-06 22:00:00;77.7 -2011-02-07 18:00:00;79.7 -2011-02-07 20:00:00;80.1 -2011-02-07 22:00:00;80.2 -2011-02-08 18:00:00;88.2 -2011-02-08 20:00:00;87.3 -2011-02-08 22:00:00;88.9 -2011-02-09 18:00:00;87.4 -2011-02-09 20:00:00;86.4 -2011-02-09 22:00:00;86.1 -2011-02-10 18:00:00;88.6 -2011-02-10 20:00:00;89.0 -2011-02-10 22:00:00;87.6 -2011-02-11 18:00:00;89.3 -2011-02-11 20:00:00;88.9 -2011-02-11 22:00:00;88.8 -2011-02-12 18:00:00;92.2 -2011-02-12 20:00:00;93.1 -2011-02-12 22:00:00;94.2 -2011-02-13 18:00:00;122.5 -2011-02-13 20:00:00;104.1 -2011-02-13 22:00:00;101.4 -2011-02-14 18:00:00;110.8 -2011-02-14 20:00:00;109.8 -2011-02-14 22:00:00;107.7 -2011-02-15 18:00:00;108.7 -2011-02-15 20:00:00;110.0 -2011-02-15 22:00:00;108.4 -2011-02-16 18:00:00;112.4 -2011-02-16 20:00:00;111.4 -2011-02-16 22:00:00;110.6 -2011-02-17 18:00:00;109.5 -2011-02-17 20:00:00;108.3 -2011-02-17 22:00:00;109.1 -2011-02-18 18:00:00;117.9 -2011-02-18 20:00:00;121.9 -2011-02-18 22:00:00;119.3 -2011-02-19 18:00:00;109.7 -2011-02-19 20:00:00;106.9 -2011-02-19 22:00:00;105.5 -2011-02-20 18:00:00;102.6 -2011-02-20 20:00:00;102.2 -2011-02-20 22:00:00;97.9 -2011-02-21 18:00:00;97.9 -2011-02-21 20:00:00;94.6 -2011-02-21 22:00:00;93.8 -2011-02-22 18:00:00;88.6 -2011-02-22 20:00:00;89.0 -2011-02-22 22:00:00;88.8 -2011-02-23 18:00:00;87.3 -2011-02-23 20:00:00;87.4 -2011-02-23 22:00:00;87.0 -2011-02-24 18:00:00;85.8 -2011-02-24 20:00:00;87.0 -2011-02-24 22:00:00;85.6 -2011-02-25 18:00:00;87.1 -2011-02-25 20:00:00;86.4 -2011-02-25 22:00:00;86.2 -2011-02-26 18:00:00;88.4 -2011-02-26 20:00:00;88.4 -2011-02-26 22:00:00;87.4 -2011-02-27 18:00:00;87.1 -2011-02-27 20:00:00;88.7 -2011-02-27 22:00:00;88.4 -2011-02-28 18:00:00;89.6 -2011-02-28 20:00:00;94.0 -2011-02-28 22:00:00;96.3 -2011-03-01 17:00:00;105.8 -2011-03-01 20:00:00;108.5 -2011-03-01 23:00:00;107.0 -2011-03-02 17:00:00;112.2 -2011-03-02 20:00:00;111.4 -2011-03-02 23:00:00;110.2 -2011-03-03 17:00:00;119.1 -2011-03-03 20:00:00;118.8 -2011-03-03 23:00:00;120.0 -2011-03-04 17:00:00;126.3 -2011-03-04 20:00:00;124.7 -2011-03-04 23:00:00;123.2 -2011-03-05 17:00:00;131.8 -2011-03-05 20:00:00;132.5 -2011-03-05 23:00:00;134.4 -2011-03-06 17:00:00;144.8 -2011-03-06 20:00:00;140.3 -2011-03-06 23:00:00;143.4 -2011-03-07 17:00:00;149.6 -2011-03-07 20:00:00;924.4 -2011-03-07 23:00:00;159.9 -2011-03-08 17:00:00;147.7 -2011-03-08 20:00:00;164.3 -2011-03-08 23:00:00;158.8 -2011-03-09 17:00:00;141.1 -2011-03-09 20:00:00;141.1 -2011-03-09 23:00:00;138.9 -2011-03-10 17:00:00;130.5 -2011-03-10 20:00:00;129.5 -2011-03-10 23:00:00;128.6 -2011-03-11 17:00:00;123.2 -2011-03-11 20:00:00;121.5 -2011-03-11 23:00:00;124.5 -2011-03-12 17:00:00;120.5 -2011-03-12 20:00:00;119.2 -2011-03-12 23:00:00;121.1 -2011-03-13 17:00:00;115.6 -2011-03-13 20:00:00;111.5 -2011-03-13 23:00:00;109.3 -2011-03-14 17:00:00;105.4 -2011-03-14 20:00:00;106.1 -2011-03-14 23:00:00;101.9 -2011-03-15 17:00:00;100.0 -2011-03-15 20:00:00;100.3 -2011-03-15 23:00:00;98.4 -2011-03-16 17:00:00;92.8 -2011-03-16 20:00:00;103.8 -2011-03-16 23:00:00;100.8 -2011-03-17 17:00:00;90.0 -2011-03-17 20:00:00;89.2 -2011-03-17 23:00:00;87.9 -2011-03-18 17:00:00;86.2 -2011-03-18 20:00:00;86.8 -2011-03-18 23:00:00;86.6 -2011-03-19 17:00:00;87.9 -2011-03-19 20:00:00;88.0 -2011-03-19 23:00:00;88.2 -2011-03-20 17:00:00;91.6 -2011-03-20 20:00:00;91.2 -2011-03-20 23:00:00;91.4 -2011-03-21 17:00:00;104.9 -2011-03-21 20:00:00;100.2 -2011-03-21 23:00:00;99.1 -2011-03-22 17:00:00;100.3 -2011-03-22 20:00:00;99.1 -2011-03-22 23:00:00;104.3 -2011-03-23 17:00:00;102.2 -2011-03-23 20:00:00;104.0 -2011-03-23 23:00:00;102.4 -2011-03-24 17:00:00;107.0 -2011-03-24 20:00:00;106.9 -2011-03-24 23:00:00;106.7 -2011-03-25 17:00:00;113.2 -2011-03-25 20:00:00;112.0 -2011-03-25 23:00:00;125.7 -2011-03-26 17:00:00;112.7 -2011-03-26 20:00:00;113.9 -2011-03-26 23:00:00;113.5 -2011-03-27 17:00:00;112.6 -2011-03-27 20:00:00;115.1 -2011-03-27 23:00:00;115.7 -2011-03-28 17:00:00;117.0 -2011-03-28 20:00:00;118.1 -2011-03-28 23:00:00;115.6 -2011-03-29 17:00:00;115.4 -2011-03-29 20:00:00;115.9 -2011-03-29 23:00:00;116.1 -2011-03-30 17:00:00;116.2 -2011-03-30 20:00:00;117.3 -2011-03-30 23:00:00;114.8 -2011-03-31 17:00:00;113.2 -2011-03-31 20:00:00;113.1 -2011-03-31 23:00:00;116.4 -2011-04-01 17:00:00;109.4 -2011-04-01 20:00:00;108.7 -2011-04-01 23:00:00;108.7 -2011-04-02 17:00:00;108.3 -2011-04-02 20:00:00;107.4 -2011-04-02 23:00:00;109.4 -2011-04-03 17:00:00;113.5 -2011-04-03 20:00:00;114.0 -2011-04-03 23:00:00;115.1 -2011-04-04 17:00:00;113.4 -2011-04-04 20:00:00;112.7 -2011-04-04 23:00:00;111.3 -2011-04-05 17:00:00;110.1 -2011-04-05 20:00:00;109.3 -2011-04-05 23:00:00;109.7 -2011-04-06 17:00:00;114.7 -2011-04-06 20:00:00;117.2 -2011-04-06 23:00:00;114.9 -2011-04-07 17:00:00;114.2 -2011-04-07 20:00:00;112.5 -2011-04-07 23:00:00;111.5 -2011-04-08 17:00:00;109.1 -2011-04-08 20:00:00;109.0 -2011-04-08 23:00:00;108.6 -2011-04-09 17:00:00;106.9 -2011-04-09 20:00:00;105.3 -2011-04-09 23:00:00;105.6 -2011-04-10 17:00:00;105.3 -2011-04-10 20:00:00;105.2 -2011-04-10 23:00:00;104.2 -2011-04-11 17:00:00;105.5 -2011-04-11 20:00:00;106.3 -2011-04-11 23:00:00;109.7 -2011-04-12 17:00:00;110.5 -2011-04-12 20:00:00;110.8 -2011-04-12 23:00:00;112.4 -2011-04-13 17:00:00;119.7 -2011-04-13 20:00:00;118.4 -2011-04-13 23:00:00;116.9 -2011-04-14 17:00:00;119.0 -2011-04-14 20:00:00;119.4 -2011-04-14 23:00:00;119.3 -2011-04-15 17:00:00;129.6 -2011-04-15 20:00:00;130.2 -2011-04-15 23:00:00;129.4 -2011-04-16 17:00:00;121.6 -2011-04-16 20:00:00;120.0 -2011-04-16 23:00:00;120.4 -2011-04-17 17:00:00;116.0 -2011-04-17 20:00:00;115.3 -2011-04-17 23:00:00;116.9 -2011-04-18 17:00:00;111.2 -2011-04-18 20:00:00;111.9 -2011-04-18 23:00:00;113.9 -2011-04-19 17:00:00;111.5 -2011-04-19 20:00:00;111.9 -2011-04-19 23:00:00;112.7 -2011-04-20 17:00:00;113.9 -2011-04-20 20:00:00;118.1 -2011-04-20 23:00:00;114.6 -2011-04-21 17:00:00;115.5 -2011-04-21 20:00:00;114.1 -2011-04-21 23:00:00;119.9 -2011-04-22 17:00:00;121.9 -2011-04-22 20:00:00;116.0 -2011-04-22 23:00:00;122.1 -2011-04-23 17:00:00;120.7 -2011-04-23 20:00:00;120.4 -2011-04-23 23:00:00;119.1 -2011-04-24 17:00:00;117.4 -2011-04-24 20:00:00;118.5 -2011-04-24 23:00:00;117.1 -2011-04-25 17:00:00;113.9 -2011-04-25 20:00:00;113.5 -2011-04-25 23:00:00;114.3 -2011-04-26 17:00:00;111.1 -2011-04-26 20:00:00;110.8 -2011-04-26 23:00:00;109.5 -2011-04-27 17:00:00;110.1 -2011-04-27 20:00:00;109.3 -2011-04-27 23:00:00;110.1 -2011-04-28 17:00:00;111.7 -2011-04-28 20:00:00;111.9 -2011-04-28 23:00:00;114.2 -2011-04-29 17:00:00;111.5 -2011-04-29 20:00:00;111.2 -2011-04-29 23:00:00;112.5 -2011-04-30 17:00:00;112.2 -2011-04-30 20:00:00;111.1 -2011-04-30 23:00:00;111.3 -2011-05-01 17:00:00;107.8 -2011-05-01 20:00:00;107.7 -2011-05-01 23:00:00;107.4 -2011-05-02 17:00:00;108.4 -2011-05-02 20:00:00;111.5 -2011-05-02 23:00:00;110.2 -2011-05-03 17:00:00;109.4 -2011-05-03 20:00:00;108.8 -2011-05-03 23:00:00;108.0 -2011-05-04 17:00:00;108.5 -2011-05-04 20:00:00;108.7 -2011-05-04 23:00:00;107.9 -2011-05-05 17:00:00;107.1 -2011-05-05 20:00:00;106.7 -2011-05-05 23:00:00;107.7 -2011-05-06 17:00:00;104.1 -2011-05-06 20:00:00;103.7 -2011-05-06 23:00:00;103.1 -2011-05-07 17:00:00;102.2 -2011-05-07 20:00:00;104.1 -2011-05-07 23:00:00;102.2 -2011-05-08 17:00:00;103.5 -2011-05-08 20:00:00;104.1 -2011-05-08 23:00:00;104.6 -2011-05-09 17:00:00;105.0 -2011-05-09 20:00:00;105.7 -2011-05-09 23:00:00;107.3 -2011-05-10 17:00:00;100.5 -2011-05-10 20:00:00;99.4 -2011-05-10 23:00:00;99.6 -2011-05-11 17:00:00;96.4 -2011-05-11 20:00:00;96.0 -2011-05-11 23:00:00;95.1 -2011-05-12 17:00:00;95.4 -2011-05-12 20:00:00;94.7 -2011-05-12 23:00:00;93.8 -2011-05-13 17:00:00;92.4 -2011-05-13 20:00:00;93.5 -2011-05-13 23:00:00;93.3 -2011-05-14 17:00:00;92.9 -2011-05-14 20:00:00;93.4 -2011-05-14 23:00:00;93.0 -2011-05-15 17:00:00;94.4 -2011-05-15 20:00:00;96.6 -2011-05-15 23:00:00;95.2 -2011-05-16 17:00:00;93.9 -2011-05-16 20:00:00;94.3 -2011-05-16 23:00:00;93.7 -2011-05-17 17:00:00;93.1 -2011-05-17 20:00:00;93.6 -2011-05-17 23:00:00;93.5 -2011-05-18 17:00:00;89.7 -2011-05-18 20:00:00;92.7 -2011-05-18 23:00:00;90.8 -2011-05-19 17:00:00;86.1 -2011-05-19 20:00:00;86.4 -2011-05-19 23:00:00;86.5 -2011-05-20 17:00:00;84.9 -2011-05-20 20:00:00;85.7 -2011-05-20 23:00:00;85.1 -2011-05-21 17:00:00;85.3 -2011-05-21 20:00:00;85.7 -2011-05-21 23:00:00;85.9 -2011-05-22 17:00:00;86.6 -2011-05-22 20:00:00;86.6 -2011-05-22 23:00:00;86.9 -2011-05-23 17:00:00;85.9 -2011-05-23 20:00:00;86.3 -2011-05-23 23:00:00;86.1 -2011-05-24 17:00:00;83.7 -2011-05-24 20:00:00;83.8 -2011-05-24 23:00:00;83.8 -2011-05-25 17:00:00;81.8 -2011-05-25 20:00:00;82.4 -2011-05-25 23:00:00;83.1 -2011-05-26 17:00:00;83.5 -2011-05-26 20:00:00;84.9 -2011-05-26 23:00:00;85.8 -2011-05-27 17:00:00;92.5 -2011-05-27 20:00:00;92.3 -2011-05-27 23:00:00;93.4 -2011-05-28 17:00:00;102.9 -2011-05-28 20:00:00;103.2 -2011-05-28 23:00:00;109.0 -2011-05-29 17:00:00;110.9 -2011-05-29 20:00:00;113.8 -2011-05-29 23:00:00;114.8 -2011-05-30 17:00:00;114.8 -2011-05-30 20:00:00;115.0 -2011-05-30 23:00:00;116.3 -2011-05-31 17:00:00;117.0 -2011-05-31 20:00:00;115.2 -2011-05-31 23:00:00;114.0 -2011-06-01 17:00:00;122.1 -2011-06-01 20:00:00;116.8 -2011-06-01 23:00:00;117.8 -2011-06-02 17:00:00;114.5 -2011-06-02 20:00:00;114.8 -2011-06-02 23:00:00;113.7 -2011-06-03 17:00:00;110.9 -2011-06-03 20:00:00;110.2 -2011-06-03 23:00:00;113.0 -2011-06-04 17:00:00;106.9 -2011-06-04 20:00:00;105.8 -2011-06-04 23:00:00;105.4 -2011-06-05 17:00:00;105.3 -2011-06-05 20:00:00;105.9 -2011-06-05 23:00:00;105.9 -2011-06-06 17:00:00;103.4 -2011-06-06 20:00:00;103.2 -2011-06-06 23:00:00;102.2 -2011-06-07 17:00:00;99.7 -2011-06-07 20:00:00;99.3 -2011-06-07 23:00:00;97.6 -2011-06-08 17:00:00;94.0 -2011-06-08 20:00:00;92.9 -2011-06-08 23:00:00;91.8 -2011-06-09 17:00:00;90.8 -2011-06-09 20:00:00;90.2 -2011-06-09 23:00:00;90.5 -2011-06-10 17:00:00;89.0 -2011-06-10 20:00:00;89.4 -2011-06-10 23:00:00;89.1 -2011-06-11 17:00:00;88.2 -2011-06-11 20:00:00;87.2 -2011-06-11 23:00:00;87.6 -2011-06-12 17:00:00;87.9 -2011-06-12 20:00:00;87.3 -2011-06-12 23:00:00;87.3 -2011-06-13 17:00:00;89.4 -2011-06-13 20:00:00;89.4 -2011-06-13 23:00:00;92.7 -2011-06-14 17:00:00;100.1 -2011-06-14 20:00:00;102.5 -2011-06-14 23:00:00;104.2 -2011-06-15 17:00:00;102.9 -2011-06-15 20:00:00;104.8 -2011-06-15 23:00:00;104.5 -2011-06-16 17:00:00;104.7 -2011-06-16 20:00:00;106.6 -2011-06-16 23:00:00;105.3 -2011-06-17 17:00:00;105.9 -2011-06-17 20:00:00;107.6 -2011-06-17 23:00:00;110.5 -2011-06-18 17:00:00;102.2 -2011-06-18 20:00:00;102.4 -2011-06-18 23:00:00;101.4 -2011-06-19 17:00:00;104.8 -2011-06-19 20:00:00;102.4 -2011-06-19 23:00:00;100.9 -2011-06-20 17:00:00;100.1 -2011-06-20 20:00:00;99.6 -2011-06-20 23:00:00;98.0 -2011-06-21 17:00:00;97.4 -2011-06-21 20:00:00;98.2 -2011-06-21 23:00:00;97.5 -2011-06-22 17:00:00;95.8 -2011-06-22 20:00:00;96.0 -2011-06-22 23:00:00;96.2 -2011-06-23 17:00:00;97.0 -2011-06-23 20:00:00;99.5 -2011-06-23 23:00:00;101.0 -2011-06-24 17:00:00;99.6 -2011-06-24 20:00:00;99.4 -2011-06-24 23:00:00;99.9 -2011-06-25 17:00:00;97.2 -2011-06-25 20:00:00;96.7 -2011-06-25 23:00:00;97.3 -2011-06-26 17:00:00;93.9 -2011-06-26 20:00:00;93.1 -2011-06-26 23:00:00;92.9 -2011-06-27 17:00:00;91.8 -2011-06-27 20:00:00;92.2 -2011-06-27 23:00:00;91.2 -2011-06-28 17:00:00;89.2 -2011-06-28 20:00:00;89.8 -2011-06-28 23:00:00;90.3 -2011-06-29 17:00:00;91.1 -2011-06-29 20:00:00;90.3 -2011-06-29 23:00:00;90.0 -2011-06-30 17:00:00;91.0 -2011-06-30 20:00:00;92.2 -2011-06-30 23:00:00;91.4 -2011-07-01 17:00:00;90.6 -2011-07-01 20:00:00;90.5 -2011-07-01 23:00:00;89.5 -2011-07-02 17:00:00;87.8 -2011-07-02 20:00:00;88.5 -2011-07-02 23:00:00;89.6 -2011-07-03 17:00:00;89.5 -2011-07-03 20:00:00;89.2 -2011-07-03 23:00:00;89.0 -2011-07-04 17:00:00;88.0 -2011-07-04 20:00:00;87.9 -2011-07-04 23:00:00;88.0 -2011-07-05 17:00:00;86.9 -2011-07-05 20:00:00;87.7 -2011-07-05 23:00:00;87.5 -2011-07-06 17:00:00;87.9 -2011-07-06 20:00:00;87.5 -2011-07-06 23:00:00;87.5 -2011-07-07 17:00:00;88.3 -2011-07-07 20:00:00;88.4 -2011-07-07 23:00:00;88.3 -2011-07-08 17:00:00;89.5 -2011-07-08 20:00:00;88.7 -2011-07-08 23:00:00;88.7 -2011-07-09 17:00:00;88.1 -2011-07-09 20:00:00;88.5 -2011-07-09 23:00:00;88.8 -2011-07-10 17:00:00;92.6 -2011-07-10 20:00:00;93.7 -2011-07-10 23:00:00;94.5 -2011-07-11 17:00:00;92.5 -2011-07-11 20:00:00;93.1 -2011-07-11 23:00:00;94.0 -2011-07-12 17:00:00;94.7 -2011-07-12 20:00:00;94.7 -2011-07-12 23:00:00;95.2 -2011-07-13 17:00:00;95.9 -2011-07-13 20:00:00;97.7 -2011-07-13 23:00:00;96.8 -2011-07-14 17:00:00;97.1 -2011-07-14 20:00:00;97.2 -2011-07-14 23:00:00;97.1 -2011-07-15 17:00:00;96.2 -2011-07-15 20:00:00;96.9 -2011-07-15 23:00:00;97.1 -2011-07-16 17:00:00;97.3 -2011-07-16 20:00:00;96.9 -2011-07-16 23:00:00;98.0 -2011-07-17 17:00:00;104.6 -2011-07-17 20:00:00;107.0 -2011-07-17 23:00:00;106.5 -2011-07-18 17:00:00;106.1 -2011-07-18 20:00:00;105.3 -2011-07-18 23:00:00;104.9 -2011-07-19 17:00:00;104.0 -2011-07-19 20:00:00;103.6 -2011-07-19 23:00:00;104.5 -2011-07-20 17:00:00;103.2 -2011-07-20 20:00:00;103.4 -2011-07-20 23:00:00;102.6 -2011-07-21 17:00:00;99.8 -2011-07-21 20:00:00;99.1 -2011-07-21 23:00:00;99.4 -2011-07-22 17:00:00;96.2 -2011-07-22 20:00:00;95.4 -2011-07-22 23:00:00;95.6 -2011-07-23 17:00:00;91.4 -2011-07-23 20:00:00;91.1 -2011-07-23 23:00:00;90.9 -2011-07-24 17:00:00;89.1 -2011-07-24 20:00:00;88.9 -2011-07-24 23:00:00;88.6 -2011-07-25 17:00:00;89.1 -2011-07-25 20:00:00;89.8 -2011-07-25 23:00:00;90.2 -2011-07-26 17:00:00;94.7 -2011-07-26 20:00:00;96.4 -2011-07-26 23:00:00;100.2 -2011-07-27 17:00:00;109.9 -2011-07-27 20:00:00;102.5 -2011-07-27 23:00:00;106.2 -2011-07-28 17:00:00;110.6 -2011-07-28 20:00:00;110.7 -2011-07-28 23:00:00;116.1 -2011-07-29 17:00:00;119.1 -2011-07-29 20:00:00;115.2 -2011-07-29 23:00:00;115.1 -2011-07-30 17:00:00;113.3 -2011-07-30 20:00:00;116.2 -2011-07-30 23:00:00;117.4 -2011-07-31 17:00:00;121.4 -2011-07-31 20:00:00;122.2 -2011-07-31 23:00:00;123.8 -2011-08-01 17:00:00;126.9 -2011-08-01 20:00:00;128.7 -2011-08-01 23:00:00;122.8 -2011-08-02 17:00:00;124.5 -2011-08-02 20:00:00;125.2 -2011-08-02 23:00:00;122.5 -2011-08-03 17:00:00;119.6 -2011-08-03 20:00:00;123.5 -2011-08-03 23:00:00;117.9 -2011-08-04 17:00:00;114.3 -2011-08-04 20:00:00;119.7 -2011-08-04 23:00:00;115.7 -2011-08-05 17:00:00;112.0 -2011-08-05 20:00:00;112.5 -2011-08-05 23:00:00;110.0 -2011-08-06 17:00:00;112.9 -2011-08-06 20:00:00;113.2 -2011-08-06 23:00:00;112.5 -2011-08-07 17:00:00;106.9 -2011-08-07 20:00:00;108.4 -2011-08-07 23:00:00;111.0 -2011-08-08 17:00:00;106.9 -2011-08-08 20:00:00;104.3 -2011-08-08 23:00:00;118.2 -2011-08-09 17:00:00;100.0 -2011-08-09 20:00:00;100.2 -2011-08-09 23:00:00;98.1 -2011-08-10 17:00:00;94.6 -2011-08-10 20:00:00;92.7 -2011-08-10 23:00:00;89.5 -2011-08-11 17:00:00;87.8 -2011-08-11 20:00:00;86.5 -2011-08-11 23:00:00;86.3 -2011-08-12 17:00:00;86.6 -2011-08-12 20:00:00;85.7 -2011-08-12 23:00:00;85.3 -2011-08-13 17:00:00;84.8 -2011-08-13 20:00:00;85.3 -2011-08-13 23:00:00;84.1 -2011-08-14 17:00:00;89.7 -2011-08-14 20:00:00;90.4 -2011-08-14 23:00:00;89.8 -2011-08-15 17:00:00;91.4 -2011-08-15 20:00:00;92.7 -2011-08-15 23:00:00;92.3 -2011-08-16 17:00:00;95.0 -2011-08-16 20:00:00;95.4 -2011-08-16 23:00:00;96.2 -2011-08-17 17:00:00;101.7 -2011-08-17 20:00:00;100.0 -2011-08-17 23:00:00;100.3 -2011-08-18 17:00:00;102.0 -2011-08-18 20:00:00;100.2 -2011-08-18 23:00:00;101.1 -2011-08-19 17:00:00;100.6 -2011-08-19 20:00:00;100.6 -2011-08-19 23:00:00;101.5 -2011-08-20 17:00:00;102.9 -2011-08-20 20:00:00;102.9 -2011-08-20 23:00:00;104.4 -2011-08-21 17:00:00;103.8 -2011-08-21 20:00:00;103.3 -2011-08-21 23:00:00;105.9 -2011-08-22 17:00:00;111.3 -2011-08-22 20:00:00;110.7 -2011-08-22 23:00:00;110.0 -2011-08-23 17:00:00;107.1 -2011-08-23 20:00:00;106.1 -2011-08-23 23:00:00;108.0 -2011-08-24 17:00:00;105.4 -2011-08-24 20:00:00;106.4 -2011-08-24 23:00:00;106.0 -2011-08-25 17:00:00;104.8 -2011-08-25 20:00:00;106.4 -2011-08-25 23:00:00;104.1 -2011-08-26 17:00:00;106.4 -2011-08-26 20:00:00;106.8 -2011-08-26 23:00:00;107.3 -2011-08-27 17:00:00;105.6 -2011-08-27 20:00:00;106.0 -2011-08-27 23:00:00;104.5 -2011-08-28 17:00:00;102.7 -2011-08-28 20:00:00;103.1 -2011-08-28 23:00:00;102.8 -2011-08-29 17:00:00;102.0 -2011-08-29 20:00:00;103.2 -2011-08-29 23:00:00;102.7 -2011-08-30 17:00:00;102.7 -2011-08-30 20:00:00;103.2 -2011-08-30 23:00:00;107.0 -2011-08-31 17:00:00;110.7 -2011-08-31 20:00:00;111.0 -2011-08-31 23:00:00;110.9 -2011-09-01 17:00:00;114.4 -2011-09-01 20:00:00;113.8 -2011-09-01 23:00:00;113.6 -2011-09-02 17:00:00;116.2 -2011-09-02 20:00:00;117.5 -2011-09-02 23:00:00;116.7 -2011-09-03 17:00:00;119.6 -2011-09-03 20:00:00;120.8 -2011-09-03 23:00:00;119.7 -2011-09-04 17:00:00;121.1 -2011-09-04 20:00:00;121.5 -2011-09-04 23:00:00;121.0 -2011-09-05 17:00:00;122.7 -2011-09-05 20:00:00;120.7 -2011-09-05 23:00:00;119.3 -2011-09-06 17:00:00;114.2 -2011-09-06 20:00:00;113.2 -2011-09-06 23:00:00;152.4 -2011-09-07 17:00:00;109.0 -2011-09-07 20:00:00;114.5 -2011-09-07 23:00:00;120.8 -2011-09-08 17:00:00;111.7 -2011-09-08 20:00:00;111.7 -2011-09-08 23:00:00;112.1 -2011-09-09 17:00:00;113.6 -2011-09-09 20:00:00;113.4 -2011-09-09 23:00:00;115.1 -2011-09-10 17:00:00;117.1 -2011-09-10 20:00:00;117.8 -2011-09-10 23:00:00;118.2 -2011-09-11 17:00:00;119.0 -2011-09-11 20:00:00;122.9 -2011-09-11 23:00:00;123.9 -2011-09-12 17:00:00;127.2 -2011-09-12 20:00:00;125.5 -2011-09-12 23:00:00;132.7 -2011-09-13 17:00:00;128.7 -2011-09-13 20:00:00;131.0 -2011-09-13 23:00:00;136.4 -2011-09-14 17:00:00;142.1 -2011-09-14 20:00:00;144.3 -2011-09-14 23:00:00;142.1 -2011-09-15 17:00:00;144.5 -2011-09-15 20:00:00;142.3 -2011-09-15 23:00:00;145.8 -2011-09-16 17:00:00;143.5 -2011-09-16 20:00:00;144.6 -2011-09-16 23:00:00;145.6 -2011-09-17 17:00:00;150.1 -2011-09-17 20:00:00;146.2 -2011-09-17 23:00:00;148.0 -2011-09-18 17:00:00;153.8 -2011-09-18 20:00:00;151.6 -2011-09-18 23:00:00;153.1 -2011-09-19 17:00:00;138.7 -2011-09-19 20:00:00;142.2 -2011-09-19 23:00:00;145.4 -2011-09-20 17:00:00;143.7 -2011-09-20 20:00:00;145.5 -2011-09-20 23:00:00;146.9 -2011-09-21 17:00:00;150.9 -2011-09-21 20:00:00;145.3 -2011-09-21 23:00:00;150.0 -2011-09-22 17:00:00;155.9 -2011-09-22 20:00:00;151.9 -2011-09-22 23:00:00;151.2 -2011-09-23 17:00:00;159.2 -2011-09-23 20:00:00;159.3 -2011-09-23 23:00:00;174.7 -2011-09-24 17:00:00;177.2 -2011-09-24 20:00:00;191.6 -2011-09-24 23:00:00;169.8 -2011-09-25 17:00:00;175.6 -2011-09-25 20:00:00;169.8 -2011-09-25 23:00:00;164.7 -2011-09-26 17:00:00;154.3 -2011-09-26 20:00:00;149.0 -2011-09-26 23:00:00;149.7 -2011-09-27 17:00:00;140.4 -2011-09-27 20:00:00;139.6 -2011-09-27 23:00:00;144.8 -2011-09-28 17:00:00;137.4 -2011-09-28 20:00:00;134.0 -2011-09-28 23:00:00;135.6 -2011-09-29 17:00:00;137.7 -2011-09-29 20:00:00;137.0 -2011-09-29 23:00:00;134.5 -2011-09-30 17:00:00;137.7 -2011-09-30 20:00:00;138.5 -2011-09-30 23:00:00;143.0 -2011-10-01 17:00:00;138.0 -2011-10-01 20:00:00;137.2 -2011-10-01 23:00:00;134.4 -2011-10-02 17:00:00;132.8 -2011-10-02 20:00:00;131.1 -2011-10-02 23:00:00;133.6 -2011-10-03 17:00:00;129.8 -2011-10-03 20:00:00;129.1 -2011-10-03 23:00:00;129.2 -2011-10-04 17:00:00;130.6 -2011-10-04 20:00:00;130.4 -2011-10-04 23:00:00;129.4 -2011-10-05 17:00:00;125.8 -2011-10-05 20:00:00;126.7 -2011-10-05 23:00:00;126.1 -2011-10-06 17:00:00;125.1 -2011-10-06 20:00:00;123.9 -2011-10-06 23:00:00;125.2 -2011-10-07 17:00:00;123.5 -2011-10-07 20:00:00;121.9 -2011-10-07 23:00:00;120.6 -2011-10-08 17:00:00;120.6 -2011-10-08 20:00:00;118.2 -2011-10-08 23:00:00;119.7 -2011-10-09 17:00:00;122.0 -2011-10-09 20:00:00;120.7 -2011-10-09 23:00:00;120.9 -2011-10-10 17:00:00;123.3 -2011-10-10 20:00:00;126.0 -2011-10-10 23:00:00;125.5 -2011-10-11 17:00:00;129.0 -2011-10-11 20:00:00;129.7 -2011-10-11 23:00:00;129.5 -2011-10-12 17:00:00;133.7 -2011-10-12 20:00:00;133.5 -2011-10-12 23:00:00;133.9 -2011-10-13 17:00:00;137.6 -2011-10-13 20:00:00;137.0 -2011-10-13 23:00:00;136.8 -2011-10-14 17:00:00;135.3 -2011-10-14 20:00:00;135.4 -2011-10-14 23:00:00;136.9 -2011-10-15 17:00:00;137.1 -2011-10-15 20:00:00;136.9 -2011-10-15 23:00:00;138.5 -2011-10-16 17:00:00;153.3 -2011-10-16 20:00:00;150.0 -2011-10-16 23:00:00;152.8 -2011-10-17 17:00:00;155.9 -2011-10-17 20:00:00;151.6 -2011-10-17 23:00:00;153.0 -2011-10-18 17:00:00;146.4 -2011-10-18 20:00:00;145.7 -2011-10-18 23:00:00;144.0 -2011-10-19 17:00:00;146.8 -2011-10-19 20:00:00;146.1 -2011-10-19 23:00:00;147.3 -2011-10-20 17:00:00;155.8 -2011-10-20 20:00:00;157.8 -2011-10-20 23:00:00;159.3 -2011-10-21 17:00:00;167.1 -2011-10-21 20:00:00;166.3 -2011-10-21 23:00:00;168.6 -2011-10-22 17:00:00;166.8 -2011-10-22 20:00:00;162.5 -2011-10-22 23:00:00;157.9 -2011-10-23 17:00:00;155.5 -2011-10-23 20:00:00;153.9 -2011-10-23 23:00:00;149.3 -2011-10-24 17:00:00;145.3 -2011-10-24 20:00:00;143.8 -2011-10-24 23:00:00;141.0 -2011-10-25 17:00:00;136.9 -2011-10-25 20:00:00;137.3 -2011-10-25 23:00:00;136.3 -2011-10-26 17:00:00;131.9 -2011-10-26 20:00:00;130.6 -2011-10-26 23:00:00;128.3 -2011-10-27 17:00:00;129.2 -2011-10-27 20:00:00;129.9 -2011-10-27 23:00:00;130.1 -2011-10-28 17:00:00;132.1 -2011-10-28 20:00:00;132.2 -2011-10-28 23:00:00;131.1 -2011-10-29 17:00:00;123.2 -2011-10-29 20:00:00;121.4 -2011-10-29 23:00:00;119.0 -2011-10-30 17:00:00;127.5 -2011-10-30 20:00:00;124.9 -2011-10-30 23:00:00;127.1 -2011-10-31 17:00:00;132.8 -2011-10-31 20:00:00;136.1 -2011-10-31 23:00:00;132.9 -2011-11-01 18:00:00;138.0 -2011-11-01 20:00:00;136.5 -2011-11-01 22:00:00;144.7 -2011-11-02 18:00:00;151.1 -2011-11-02 20:00:00;151.2 -2011-11-02 22:00:00;156.2 -2011-11-03 18:00:00;157.4 -2011-11-03 20:00:00;157.8 -2011-11-03 22:00:00;165.8 -2011-11-04 18:00:00;160.0 -2011-11-04 20:00:00;161.1 -2011-11-04 22:00:00;163.3 -2011-11-05 18:00:00;166.0 -2011-11-05 20:00:00;169.0 -2011-11-05 22:00:00;170.6 -2011-11-06 18:00:00;173.9 -2011-11-06 20:00:00;173.6 -2011-11-06 22:00:00;173.4 -2011-11-07 18:00:00;175.8 -2011-11-07 20:00:00;178.9 -2011-11-07 22:00:00;174.7 -2011-11-08 18:00:00;178.7 -2011-11-08 20:00:00;177.7 -2011-11-08 22:00:00;177.9 -2011-11-09 18:00:00;178.3 -2011-11-09 20:00:00;176.7 -2011-11-09 22:00:00;178.2 -2011-11-10 18:00:00;180.0 -2011-11-10 20:00:00;175.2 -2011-11-10 22:00:00;173.5 -2011-11-11 18:00:00;179.2 -2011-11-11 20:00:00;170.4 -2011-11-11 22:00:00;168.5 -2011-11-12 18:00:00;162.1 -2011-11-12 20:00:00;165.3 -2011-11-12 22:00:00;163.8 -2011-11-13 18:00:00;155.2 -2011-11-13 20:00:00;152.1 -2011-11-13 22:00:00;152.7 -2011-11-14 18:00:00;159.8 -2011-11-14 20:00:00;157.7 -2011-11-14 22:00:00;155.9 -2011-11-15 18:00:00;146.0 -2011-11-15 20:00:00;145.1 -2011-11-15 22:00:00;145.5 -2011-11-16 18:00:00;141.7 -2011-11-16 20:00:00;139.2 -2011-11-16 22:00:00;138.4 -2011-11-17 18:00:00;140.7 -2011-11-17 20:00:00;144.4 -2011-11-17 22:00:00;141.0 -2011-11-18 18:00:00;141.4 -2011-11-18 20:00:00;141.1 -2011-11-18 22:00:00;137.5 -2011-11-19 18:00:00;137.4 -2011-11-19 20:00:00;136.3 -2011-11-19 22:00:00;137.8 -2011-11-20 18:00:00;138.4 -2011-11-20 20:00:00;136.6 -2011-11-20 22:00:00;136.0 -2011-11-21 18:00:00;137.5 -2011-11-21 20:00:00;137.7 -2011-11-21 22:00:00;137.5 -2011-11-22 18:00:00;142.4 -2011-11-22 20:00:00;138.9 -2011-11-22 22:00:00;140.4 -2011-11-23 18:00:00;136.5 -2011-11-23 20:00:00;136.5 -2011-11-23 22:00:00;135.6 -2011-11-24 18:00:00;134.8 -2011-11-24 20:00:00;133.8 -2011-11-24 22:00:00;132.6 -2011-11-25 18:00:00;134.1 -2011-11-25 20:00:00;131.7 -2011-11-25 22:00:00;132.8 -2011-11-26 18:00:00;132.9 -2011-11-26 20:00:00;129.3 -2011-11-26 22:00:00;126.6 -2011-11-27 18:00:00;128.8 -2011-11-27 20:00:00;131.7 -2011-11-27 22:00:00;131.3 -2011-11-28 18:00:00;137.7 -2011-11-28 20:00:00;134.0 -2011-11-28 22:00:00;135.5 -2011-11-29 18:00:00;135.1 -2011-11-29 20:00:00;136.8 -2011-11-29 22:00:00;134.5 -2011-11-30 18:00:00;137.8 -2011-11-30 20:00:00;140.1 -2011-11-30 22:00:00;143.3 -2011-12-01 18:00:00;148.0 -2011-12-01 20:00:00;148.0 -2011-12-01 22:00:00;150.7 -2011-12-02 18:00:00;155.3 -2011-12-02 20:00:00;152.9 -2011-12-02 22:00:00;155.1 -2011-12-03 18:00:00;158.6 -2011-12-03 20:00:00;159.4 -2011-12-03 22:00:00;157.6 -2011-12-04 18:00:00;158.9 -2011-12-04 20:00:00;159.0 -2011-12-04 22:00:00;155.4 -2011-12-05 18:00:00;154.6 -2011-12-05 20:00:00;153.6 -2011-12-05 22:00:00;148.9 -2011-12-06 18:00:00;148.2 -2011-12-06 20:00:00;146.6 -2011-12-06 22:00:00;142.6 -2011-12-07 18:00:00;144.7 -2011-12-07 20:00:00;144.5 -2011-12-07 22:00:00;144.6 -2011-12-08 18:00:00;142.4 -2011-12-08 20:00:00;140.4 -2011-12-08 22:00:00;139.5 -2011-12-09 18:00:00;140.2 -2011-12-09 20:00:00;139.2 -2011-12-09 22:00:00;138.0 -2011-12-10 18:00:00;135.5 -2011-12-10 20:00:00;135.8 -2011-12-10 22:00:00;133.9 -2011-12-11 18:00:00;131.6 -2011-12-11 20:00:00;130.2 -2011-12-11 22:00:00;130.0 -2011-12-12 18:00:00;128.0 -2011-12-12 20:00:00;127.5 -2011-12-12 22:00:00;126.5 -2011-12-13 18:00:00;126.5 -2011-12-13 20:00:00;129.0 -2011-12-13 22:00:00;131.2 -2011-12-14 18:00:00;127.5 -2011-12-14 20:00:00;127.9 -2011-12-14 22:00:00;125.4 -2011-12-15 18:00:00;121.4 -2011-12-15 20:00:00;120.3 -2011-12-15 22:00:00;119.3 -2011-12-16 18:00:00;119.6 -2011-12-16 20:00:00;117.2 -2011-12-16 22:00:00;117.2 -2011-12-17 18:00:00;116.1 -2011-12-17 20:00:00;115.8 -2011-12-17 22:00:00;116.1 -2011-12-18 18:00:00;124.7 -2011-12-18 20:00:00;123.3 -2011-12-18 22:00:00;123.7 -2011-12-19 18:00:00;125.9 -2011-12-19 20:00:00;124.1 -2011-12-19 22:00:00;123.1 -2011-12-20 18:00:00;133.5 -2011-12-20 20:00:00;133.0 -2011-12-20 22:00:00;133.8 -2011-12-21 18:00:00;140.2 -2011-12-21 20:00:00;139.9 -2011-12-21 22:00:00;140.3 -2011-12-22 18:00:00;148.4 -2011-12-22 20:00:00;141.1 -2011-12-22 22:00:00;138.6 -2011-12-23 18:00:00;136.8 -2011-12-23 20:00:00;133.7 -2011-12-23 22:00:00;134.2 -2011-12-24 18:00:00;139.1 -2011-12-24 20:00:00;138.1 -2011-12-24 22:00:00;136.6 -2011-12-25 18:00:00;154.1 -2011-12-25 20:00:00;139.6 -2011-12-25 22:00:00;137.2 -2011-12-26 18:00:00;142.6 -2011-12-26 20:00:00;140.8 -2011-12-26 22:00:00;141.7 -2011-12-27 18:00:00;137.4 -2011-12-27 20:00:00;135.7 -2011-12-27 22:00:00;136.7 -2011-12-28 18:00:00;139.9 -2011-12-28 20:00:00;140.0 -2011-12-28 22:00:00;137.6 -2011-12-29 18:00:00;140.6 -2011-12-29 20:00:00;142.3 -2011-12-29 22:00:00;143.6 -2011-12-30 18:00:00;134.6 -2011-12-30 20:00:00;136.4 -2011-12-30 22:00:00;134.0 -2011-12-31 18:00:00;129.7 -2011-12-31 20:00:00;128.5 -2011-12-31 22:00:00;125.9 -2012-01-02 18:00:00;128.9 -2012-01-02 20:00:00;130.3 -2012-01-02 22:00:00;127.8 -2012-01-03 18:00:00;131.6 -2012-01-03 20:00:00;130.2 -2012-01-03 22:00:00;129.5 -2012-01-04 18:00:00;134.7 -2012-01-04 20:00:00;131.6 -2012-01-04 22:00:00;132.3 -2012-01-05 18:00:00;136.8 -2012-01-05 20:00:00;136.6 -2012-01-05 22:00:00;136.2 -2012-01-06 18:00:00;133.4 -2012-01-06 20:00:00;131.0 -2012-01-06 22:00:00;131.5 -2012-01-07 18:00:00;138.5 -2012-01-07 20:00:00;135.9 -2012-01-07 22:00:00;136.5 -2012-01-08 18:00:00;134.7 -2012-01-08 20:00:00;131.4 -2012-01-08 22:00:00;134.3 -2012-01-09 18:00:00;137.2 -2012-01-09 20:00:00;137.6 -2012-01-09 22:00:00;135.3 -2012-01-10 18:00:00;126.2 -2012-01-10 20:00:00;124.6 -2012-01-10 22:00:00;125.9 -2012-01-11 18:00:00;117.7 -2012-01-11 20:00:00;116.1 -2012-01-11 22:00:00;115.1 -2012-01-12 18:00:00;113.6 -2012-01-12 20:00:00;113.0 -2012-01-12 22:00:00;114.2 -2012-01-13 18:00:00;121.3 -2012-01-13 20:00:00;120.0 -2012-01-13 22:00:00;120.2 -2012-01-14 18:00:00;126.5 -2012-01-14 20:00:00;128.0 -2012-01-14 22:00:00;129.6 -2012-01-15 18:00:00;129.2 -2012-01-15 20:00:00;129.2 -2012-01-15 22:00:00;128.8 -2012-01-16 18:00:00;136.1 -2012-01-16 20:00:00;135.1 -2012-01-16 22:00:00;136.1 -2012-01-17 18:00:00;135.2 -2012-01-17 20:00:00;134.5 -2012-01-17 22:00:00;135.1 -2012-01-18 18:00:00;139.4 -2012-01-18 20:00:00;143.4 -2012-01-18 22:00:00;136.1 -2012-01-19 18:00:00;162.7 -2012-01-19 20:00:00;152.0 -2012-01-19 22:00:00;146.1 -2012-01-20 18:00:00;138.7 -2012-01-20 20:00:00;136.7 -2012-01-20 22:00:00;137.0 -2012-01-21 18:00:00;137.5 -2012-01-21 20:00:00;137.2 -2012-01-21 22:00:00;139.2 -2012-01-22 18:00:00;135.4 -2012-01-22 20:00:00;136.6 -2012-01-22 22:00:00;136.6 -2012-01-23 18:00:00;139.5 -2012-01-23 20:00:00;139.8 -2012-01-23 22:00:00;136.5 -2012-01-24 18:00:00;132.8 -2012-01-24 20:00:00;131.5 -2012-01-24 22:00:00;127.2 -2012-01-25 18:00:00;123.6 -2012-01-25 20:00:00;122.5 -2012-01-25 22:00:00;122.2 -2012-01-26 18:00:00;126.3 -2012-01-26 20:00:00;124.3 -2012-01-26 22:00:00;125.8 -2012-01-27 18:00:00;275.0 -2012-01-27 20:00:00;137.4 -2012-01-27 22:00:00;124.7 -2012-01-28 18:00:00;111.7 -2012-01-28 20:00:00;111.0 -2012-01-28 22:00:00;110.7 -2012-01-29 18:00:00;107.1 -2012-01-29 20:00:00;106.6 -2012-01-29 22:00:00;105.7 -2012-01-30 18:00:00;109.7 -2012-01-30 20:00:00;111.0 -2012-01-30 22:00:00;110.4 -2012-01-31 18:00:00;114.3 -2012-01-31 20:00:00;113.1 -2012-01-31 22:00:00;113.6 -2012-02-01 18:00:00;114.7 -2012-02-01 20:00:00;114.1 -2012-02-01 22:00:00;114.1 -2012-02-02 18:00:00;115.1 -2012-02-02 20:00:00;114.6 -2012-02-02 22:00:00;114.1 -2012-02-03 18:00:00;108.9 -2012-02-03 20:00:00;107.9 -2012-02-03 22:00:00;106.1 -2012-02-04 18:00:00;105.0 -2012-02-04 20:00:00;104.0 -2012-02-04 22:00:00;102.6 -2012-02-05 18:00:00;99.7 -2012-02-05 20:00:00;99.8 -2012-02-05 22:00:00;100.5 -2012-02-06 18:00:00;101.3 -2012-02-06 20:00:00;108.9 -2012-02-06 22:00:00;99.3 -2012-02-07 18:00:00;104.2 -2012-02-07 20:00:00;104.3 -2012-02-07 22:00:00;110.8 -2012-02-08 18:00:00;94.6 -2012-02-08 20:00:00;94.6 -2012-02-08 22:00:00;95.8 -2012-02-09 18:00:00;96.9 -2012-02-09 20:00:00;96.6 -2012-02-09 22:00:00;100.3 -2012-02-10 18:00:00;107.3 -2012-02-10 20:00:00;107.9 -2012-02-10 22:00:00;110.3 -2012-02-11 18:00:00;109.8 -2012-02-11 20:00:00;109.4 -2012-02-11 22:00:00;108.3 -2012-02-12 18:00:00;107.1 -2012-02-12 20:00:00;107.6 -2012-02-12 22:00:00;108.1 -2012-02-13 18:00:00;106.1 -2012-02-13 20:00:00;105.7 -2012-02-13 22:00:00;105.5 -2012-02-14 18:00:00;104.9 -2012-02-14 20:00:00;104.8 -2012-02-14 22:00:00;104.5 -2012-02-15 18:00:00;103.0 -2012-02-15 20:00:00;102.0 -2012-02-15 22:00:00;102.1 -2012-02-16 18:00:00;100.4 -2012-02-16 20:00:00;100.8 -2012-02-16 22:00:00;101.1 -2012-02-17 18:00:00;101.7 -2012-02-17 20:00:00;101.3 -2012-02-17 22:00:00;101.0 -2012-02-18 18:00:00;102.4 -2012-02-18 20:00:00;101.7 -2012-02-18 22:00:00;101.0 -2012-02-19 18:00:00;103.6 -2012-02-19 20:00:00;102.9 -2012-02-19 22:00:00;104.1 -2012-02-20 18:00:00;109.2 -2012-02-20 20:00:00;108.7 -2012-02-20 22:00:00;107.9 -2012-02-21 18:00:00;104.4 -2012-02-21 20:00:00;101.0 -2012-02-21 22:00:00;98.3 -2012-02-22 18:00:00;102.2 -2012-02-22 20:00:00;102.0 -2012-02-22 22:00:00;102.3 -2012-02-23 18:00:00;101.7 -2012-02-23 20:00:00;101.2 -2012-02-23 22:00:00;101.6 -2012-02-24 18:00:00;105.9 -2012-02-24 20:00:00;106.7 -2012-02-24 22:00:00;106.9 -2012-02-25 18:00:00;106.5 -2012-02-25 20:00:00;105.9 -2012-02-25 22:00:00;105.8 -2012-02-26 18:00:00;105.9 -2012-02-26 20:00:00;104.9 -2012-02-26 22:00:00;104.9 -2012-02-27 18:00:00;104.7 -2012-02-27 20:00:00;103.5 -2012-02-27 22:00:00;102.7 -2012-02-28 18:00:00;101.5 -2012-02-28 20:00:00;101.3 -2012-02-28 22:00:00;100.5 -2012-02-29 18:00:00;98.5 -2012-02-29 20:00:00;100.2 -2012-02-29 22:00:00;101.0 -2012-03-01 17:00:00;105.4 -2012-03-01 20:00:00;101.6 -2012-03-01 23:00:00;100.8 -2012-03-02 17:00:00;103.9 -2012-03-02 20:00:00;106.3 -2012-03-02 23:00:00;105.8 -2012-03-03 17:00:00;109.6 -2012-03-03 20:00:00;114.5 -2012-03-03 23:00:00;108.8 -2012-03-04 17:00:00;120.9 -2012-03-04 20:00:00;118.2 -2012-03-04 23:00:00;121.4 -2012-03-05 17:00:00;132.9 -2012-03-05 20:00:00;129.5 -2012-03-05 23:00:00;131.0 -2012-03-06 17:00:00;135.8 -2012-03-06 20:00:00;136.0 -2012-03-06 23:00:00;142.3 -2012-03-07 17:00:00;130.2 -2012-03-07 20:00:00;133.7 -2012-03-07 23:00:00;134.1 -2012-03-08 17:00:00;136.0 -2012-03-08 20:00:00;137.5 -2012-03-08 23:00:00;135.9 -2012-03-09 17:00:00;139.8 -2012-03-09 20:00:00;143.5 -2012-03-09 23:00:00;140.9 -2012-03-10 17:00:00;138.8 -2012-03-10 20:00:00;146.9 -2012-03-10 23:00:00;130.3 -2012-03-11 17:00:00;127.9 -2012-03-11 20:00:00;129.5 -2012-03-11 23:00:00;128.3 -2012-03-12 17:00:00;128.7 -2012-03-12 20:00:00;113.5 -2012-03-12 23:00:00;125.6 -2012-03-13 17:00:00;212.5 -2012-03-13 20:00:00;139.0 -2012-03-13 23:00:00;125.0 -2012-03-14 17:00:00;120.2 -2012-03-14 20:00:00;117.5 -2012-03-14 23:00:00;117.2 -2012-03-15 17:00:00;109.7 -2012-03-15 20:00:00;109.4 -2012-03-15 23:00:00;110.7 -2012-03-16 17:00:00;101.2 -2012-03-16 20:00:00;97.6 -2012-03-16 23:00:00;99.7 -2012-03-17 17:00:00;99.1 -2012-03-17 20:00:00;101.4 -2012-03-17 23:00:00;100.2 -2012-03-18 17:00:00;100.9 -2012-03-18 20:00:00;101.1 -2012-03-18 23:00:00;100.9 -2012-03-19 17:00:00;102.9 -2012-03-19 20:00:00;100.9 -2012-03-19 23:00:00;101.3 -2012-03-20 17:00:00;99.9 -2012-03-20 20:00:00;98.8 -2012-03-20 23:00:00;98.9 -2012-03-21 17:00:00;99.9 -2012-03-21 20:00:00;99.2 -2012-03-21 23:00:00;100.5 -2012-03-22 17:00:00;100.9 -2012-03-22 20:00:00;101.7 -2012-03-22 23:00:00;102.6 -2012-03-23 17:00:00;103.5 -2012-03-23 20:00:00;104.2 -2012-03-23 23:00:00;102.3 -2012-03-24 17:00:00;101.7 -2012-03-24 20:00:00;102.1 -2012-03-24 23:00:00;102.4 -2012-03-25 17:00:00;102.0 -2012-03-25 20:00:00;100.8 -2012-03-25 23:00:00;101.4 -2012-03-26 17:00:00;101.7 -2012-03-26 20:00:00;101.9 -2012-03-26 23:00:00;102.7 -2012-03-27 17:00:00;105.9 -2012-03-27 20:00:00;105.2 -2012-03-27 23:00:00;105.4 -2012-03-28 17:00:00;106.3 -2012-03-28 20:00:00;106.6 -2012-03-28 23:00:00;107.6 -2012-03-29 17:00:00;107.6 -2012-03-29 20:00:00;111.2 -2012-03-29 23:00:00;110.1 -2012-03-30 17:00:00;111.8 -2012-03-30 20:00:00;110.4 -2012-03-30 23:00:00;109.8 -2012-03-31 17:00:00;111.2 -2012-03-31 20:00:00;109.9 -2012-03-31 23:00:00;108.7 -2012-04-01 17:00:00;107.9 -2012-04-01 20:00:00;107.2 -2012-04-01 23:00:00;105.0 -2012-04-02 17:00:00;106.0 -2012-04-02 20:00:00;105.9 -2012-04-02 23:00:00;106.7 -2012-04-03 17:00:00;104.3 -2012-04-03 20:00:00;103.6 -2012-04-03 23:00:00;103.8 -2012-04-04 17:00:00;105.9 -2012-04-04 20:00:00;102.1 -2012-04-04 23:00:00;103.4 -2012-04-05 17:00:00;103.5 -2012-04-05 20:00:00;101.0 -2012-04-05 23:00:00;105.3 -2012-04-06 17:00:00;97.5 -2012-04-06 20:00:00;97.6 -2012-04-06 23:00:00;97.1 -2012-04-07 17:00:00;95.9 -2012-04-07 20:00:00;98.7 -2012-04-07 23:00:00;95.1 -2012-04-08 17:00:00;94.3 -2012-04-08 20:00:00;93.5 -2012-04-08 23:00:00;92.2 -2012-04-09 17:00:00;95.3 -2012-04-09 20:00:00;94.9 -2012-04-09 23:00:00;94.6 -2012-04-10 17:00:00;93.1 -2012-04-10 20:00:00;93.7 -2012-04-10 23:00:00;93.3 -2012-04-11 17:00:00;94.2 -2012-04-11 20:00:00;93.8 -2012-04-11 23:00:00;94.6 -2012-04-12 17:00:00;95.3 -2012-04-12 20:00:00;95.8 -2012-04-12 23:00:00;95.7 -2012-04-13 17:00:00;98.5 -2012-04-13 20:00:00;98.3 -2012-04-13 23:00:00;98.1 -2012-04-14 17:00:00;97.8 -2012-04-14 20:00:00;98.8 -2012-04-14 23:00:00;99.4 -2012-04-15 17:00:00;102.1 -2012-04-15 20:00:00;102.4 -2012-04-15 23:00:00;104.3 -2012-04-16 17:00:00;108.0 -2012-04-16 20:00:00;108.8 -2012-04-16 23:00:00;109.4 -2012-04-17 17:00:00;112.4 -2012-04-17 20:00:00;114.7 -2012-04-17 23:00:00;114.8 -2012-04-18 17:00:00;126.2 -2012-04-18 20:00:00;122.6 -2012-04-18 23:00:00;127.5 -2012-04-19 17:00:00;136.9 -2012-04-19 20:00:00;139.1 -2012-04-19 23:00:00;139.9 -2012-04-20 17:00:00;144.8 -2012-04-20 20:00:00;143.1 -2012-04-20 23:00:00;143.5 -2012-04-21 17:00:00;149.7 -2012-04-21 20:00:00;150.6 -2012-04-21 23:00:00;147.1 -2012-04-22 17:00:00;152.7 -2012-04-22 20:00:00;149.5 -2012-04-22 23:00:00;152.3 -2012-04-23 17:00:00;143.1 -2012-04-23 20:00:00;143.4 -2012-04-23 23:00:00;142.0 -2012-04-24 17:00:00;137.4 -2012-04-24 20:00:00;135.2 -2012-04-24 23:00:00;135.6 -2012-04-25 17:00:00;128.1 -2012-04-25 20:00:00;128.8 -2012-04-25 23:00:00;128.9 -2012-04-26 17:00:00;117.9 -2012-04-26 20:00:00;120.7 -2012-04-26 23:00:00;120.0 -2012-04-27 17:00:00;121.0 -2012-04-27 20:00:00;119.5 -2012-04-27 23:00:00;120.4 -2012-04-28 17:00:00;121.9 -2012-04-28 20:00:00;122.8 -2012-04-28 23:00:00;122.9 -2012-04-29 17:00:00;121.0 -2012-04-29 20:00:00;117.7 -2012-04-29 23:00:00;116.7 -2012-04-30 17:00:00;115.0 -2012-04-30 20:00:00;115.9 -2012-04-30 23:00:00;115.4 -2012-05-01 17:00:00;111.7 -2012-05-01 20:00:00;111.6 -2012-05-01 23:00:00;114.6 -2012-05-02 17:00:00;114.0 -2012-05-02 20:00:00;117.4 -2012-05-02 23:00:00;114.2 -2012-05-03 17:00:00;115.1 -2012-05-03 20:00:00;115.9 -2012-05-03 23:00:00;115.5 -2012-05-04 17:00:00;117.5 -2012-05-04 20:00:00;115.9 -2012-05-04 23:00:00;119.6 -2012-05-05 17:00:00;116.5 -2012-05-05 20:00:00;118.1 -2012-05-05 23:00:00;117.5 -2012-05-06 17:00:00;120.5 -2012-05-06 20:00:00;119.4 -2012-05-06 23:00:00;121.7 -2012-05-07 17:00:00;123.2 -2012-05-07 20:00:00;123.9 -2012-05-07 23:00:00;124.9 -2012-05-08 17:00:00;123.9 -2012-05-08 20:00:00;125.1 -2012-05-08 23:00:00;123.8 -2012-05-09 17:00:00;128.6 -2012-05-09 20:00:00;129.8 -2012-05-09 23:00:00;131.1 -2012-05-10 17:00:00;132.5 -2012-05-10 20:00:00;133.3 -2012-05-10 23:00:00;136.0 -2012-05-11 17:00:00;133.3 -2012-05-11 20:00:00;139.2 -2012-05-11 23:00:00;140.4 -2012-05-12 17:00:00;131.9 -2012-05-12 20:00:00;132.2 -2012-05-12 23:00:00;132.2 -2012-05-13 17:00:00;131.5 -2012-05-13 20:00:00;133.3 -2012-05-13 23:00:00;134.6 -2012-05-14 17:00:00;130.2 -2012-05-14 20:00:00;132.9 -2012-05-14 23:00:00;130.3 -2012-05-15 17:00:00;134.1 -2012-05-15 20:00:00;131.9 -2012-05-15 23:00:00;133.0 -2012-05-16 17:00:00;133.5 -2012-05-16 20:00:00;133.9 -2012-05-16 23:00:00;133.7 -2012-05-17 17:00:00;137.1 -2012-05-17 20:00:00;139.5 -2012-05-17 23:00:00;136.7 -2012-05-18 17:00:00;133.9 -2012-05-18 20:00:00;135.3 -2012-05-18 23:00:00;132.9 -2012-05-19 17:00:00;134.7 -2012-05-19 20:00:00;134.1 -2012-05-19 23:00:00;136.0 -2012-05-20 17:00:00;133.6 -2012-05-20 20:00:00;134.0 -2012-05-20 23:00:00;135.0 -2012-05-21 17:00:00;129.1 -2012-05-21 20:00:00;128.2 -2012-05-21 23:00:00;127.7 -2012-05-22 17:00:00;124.8 -2012-05-22 20:00:00;124.3 -2012-05-22 23:00:00;122.6 -2012-05-23 17:00:00;119.7 -2012-05-23 20:00:00;120.2 -2012-05-23 23:00:00;120.0 -2012-05-24 17:00:00;120.0 -2012-05-24 20:00:00;118.5 -2012-05-24 23:00:00;120.8 -2012-05-25 17:00:00;117.7 -2012-05-25 20:00:00;120.3 -2012-05-25 23:00:00;118.8 -2012-05-26 17:00:00;113.6 -2012-05-26 20:00:00;112.9 -2012-05-26 23:00:00;113.2 -2012-05-27 17:00:00;113.9 -2012-05-27 20:00:00;113.7 -2012-05-27 23:00:00;114.4 -2012-05-28 17:00:00;112.9 -2012-05-28 20:00:00;113.3 -2012-05-28 23:00:00;114.0 -2012-05-29 17:00:00;109.8 -2012-05-29 20:00:00;109.3 -2012-05-29 23:00:00;109.2 -2012-05-30 17:00:00;111.8 -2012-05-30 20:00:00;114.1 -2012-05-30 23:00:00;115.4 -2012-05-31 17:00:00;118.0 -2012-05-31 20:00:00;120.6 -2012-05-31 23:00:00;122.9 -2012-06-01 17:00:00;127.9 -2012-06-01 20:00:00;132.2 -2012-06-01 23:00:00;132.4 -2012-06-02 17:00:00;130.8 -2012-06-02 20:00:00;132.9 -2012-06-02 23:00:00;133.8 -2012-06-03 17:00:00;137.8 -2012-06-03 20:00:00;133.2 -2012-06-03 23:00:00;133.4 -2012-06-04 17:00:00;134.8 -2012-06-04 20:00:00;131.9 -2012-06-04 23:00:00;132.6 -2012-06-05 17:00:00;138.4 -2012-06-05 20:00:00;142.8 -2012-06-05 23:00:00;137.5 -2012-06-06 17:00:00;136.7 -2012-06-06 20:00:00;156.4 -2012-06-06 23:00:00;138.5 -2012-06-07 17:00:00;135.3 -2012-06-07 20:00:00;132.1 -2012-06-07 23:00:00;131.5 -2012-06-08 17:00:00;126.2 -2012-06-08 20:00:00;127.9 -2012-06-08 23:00:00;128.9 -2012-06-09 17:00:00;131.6 -2012-06-09 20:00:00;132.3 -2012-06-09 23:00:00;129.2 -2012-06-10 17:00:00;130.2 -2012-06-10 20:00:00;132.3 -2012-06-10 23:00:00;131.1 -2012-06-11 17:00:00;137.8 -2012-06-11 20:00:00;138.1 -2012-06-11 23:00:00;138.1 -2012-06-12 17:00:00;147.4 -2012-06-12 20:00:00;145.8 -2012-06-12 23:00:00;146.5 -2012-06-13 17:00:00;155.0 -2012-06-13 20:00:00;147.3 -2012-06-13 23:00:00;146.3 -2012-06-14 17:00:00;166.7 -2012-06-14 20:00:00;153.3 -2012-06-14 23:00:00;144.8 -2012-06-15 17:00:00;148.8 -2012-06-15 20:00:00;149.6 -2012-06-15 23:00:00;144.1 -2012-06-16 17:00:00;137.0 -2012-06-16 20:00:00;138.8 -2012-06-16 23:00:00;140.9 -2012-06-17 17:00:00;129.6 -2012-06-17 20:00:00;128.0 -2012-06-17 23:00:00;128.3 -2012-06-18 17:00:00;122.1 -2012-06-18 20:00:00;121.9 -2012-06-18 23:00:00;121.8 -2012-06-19 17:00:00;114.9 -2012-06-19 20:00:00;113.5 -2012-06-19 23:00:00;114.2 -2012-06-20 17:00:00;107.7 -2012-06-20 20:00:00;107.1 -2012-06-20 23:00:00;105.7 -2012-06-21 17:00:00;101.7 -2012-06-21 20:00:00;100.9 -2012-06-21 23:00:00;100.0 -2012-06-22 17:00:00;92.0 -2012-06-22 20:00:00;91.4 -2012-06-22 23:00:00;91.2 -2012-06-23 17:00:00;88.1 -2012-06-23 20:00:00;86.8 -2012-06-23 23:00:00;87.7 -2012-06-24 17:00:00;88.2 -2012-06-24 20:00:00;88.1 -2012-06-24 23:00:00;89.4 -2012-06-25 17:00:00;92.6 -2012-06-25 20:00:00;91.5 -2012-06-25 23:00:00;94.6 -2012-06-26 17:00:00;99.3 -2012-06-26 20:00:00;102.5 -2012-06-26 23:00:00;102.1 -2012-06-27 17:00:00;109.1 -2012-06-27 20:00:00;109.9 -2012-06-27 23:00:00;111.7 -2012-06-28 17:00:00;114.9 -2012-06-28 20:00:00;123.7 -2012-06-28 23:00:00;119.5 -2012-06-29 17:00:00;122.7 -2012-06-29 20:00:00;121.3 -2012-06-29 23:00:00;122.4 -2012-06-30 17:00:00;124.0 -2012-06-30 20:00:00;128.2 -2012-06-30 23:00:00;128.2 -2012-07-01 17:00:00;138.0 -2012-07-01 20:00:00;137.9 -2012-07-01 23:00:00;136.3 -2012-07-02 17:00:00;144.9 -2012-07-02 20:00:00;171.4 -2012-07-02 23:00:00;142.0 -2012-07-03 17:00:00;153.3 -2012-07-03 20:00:00;150.7 -2012-07-03 23:00:00;152.7 -2012-07-04 17:00:00;154.2 -2012-07-04 20:00:00;168.6 -2012-07-04 23:00:00;152.5 -2012-07-05 17:00:00;155.9 -2012-07-05 20:00:00;170.1 -2012-07-05 23:00:00;160.9 -2012-07-06 17:00:00;164.2 -2012-07-06 20:00:00;163.0 -2012-07-06 23:00:00;173.4 -2012-07-07 17:00:00;162.4 -2012-07-07 20:00:00;163.7 -2012-07-07 23:00:00;165.4 -2012-07-08 17:00:00;187.3 -2012-07-08 20:00:00;183.7 -2012-07-08 23:00:00;189.2 -2012-07-09 17:00:00;184.3 -2012-07-09 20:00:00;179.6 -2012-07-09 23:00:00;180.9 -2012-07-10 17:00:00;181.5 -2012-07-10 20:00:00;179.2 -2012-07-10 23:00:00;177.2 -2012-07-11 17:00:00;168.6 -2012-07-11 20:00:00;167.1 -2012-07-11 23:00:00;179.9 -2012-07-12 17:00:00;402.4 -2012-07-12 20:00:00;170.9 -2012-07-12 23:00:00;158.5 -2012-07-13 17:00:00;152.5 -2012-07-13 20:00:00;152.1 -2012-07-13 23:00:00;154.3 -2012-07-14 17:00:00;155.5 -2012-07-14 20:00:00;152.8 -2012-07-14 23:00:00;154.0 -2012-07-15 17:00:00;147.0 -2012-07-15 20:00:00;145.1 -2012-07-15 23:00:00;142.1 -2012-07-16 17:00:00;142.5 -2012-07-16 20:00:00;159.5 -2012-07-16 23:00:00;135.8 -2012-07-17 17:00:00;162.0 -2012-07-17 20:00:00;131.7 -2012-07-17 23:00:00;126.2 -2012-07-18 17:00:00;113.8 -2012-07-18 20:00:00;113.1 -2012-07-18 23:00:00;113.0 -2012-07-19 17:00:00;106.3 -2012-07-19 20:00:00;103.2 -2012-07-19 23:00:00;102.3 -2012-07-20 17:00:00;95.7 -2012-07-20 20:00:00;95.3 -2012-07-20 23:00:00;92.6 -2012-07-21 17:00:00;92.3 -2012-07-21 20:00:00;92.8 -2012-07-21 23:00:00;93.2 -2012-07-22 17:00:00;96.7 -2012-07-22 20:00:00;96.7 -2012-07-22 23:00:00;97.4 -2012-07-23 17:00:00;99.3 -2012-07-23 20:00:00;99.8 -2012-07-23 23:00:00;101.8 -2012-07-24 17:00:00;102.5 -2012-07-24 20:00:00;105.7 -2012-07-24 23:00:00;102.4 -2012-07-25 17:00:00;107.9 -2012-07-25 20:00:00;108.7 -2012-07-25 23:00:00;110.9 -2012-07-26 17:00:00;116.6 -2012-07-26 20:00:00;118.3 -2012-07-26 23:00:00;118.6 -2012-07-27 17:00:00;129.3 -2012-07-27 20:00:00;127.1 -2012-07-27 23:00:00;127.0 -2012-07-28 17:00:00;133.8 -2012-07-28 20:00:00;130.5 -2012-07-28 23:00:00;133.5 -2012-07-29 17:00:00;133.4 -2012-07-29 20:00:00;135.4 -2012-07-29 23:00:00;134.9 -2012-07-30 17:00:00;139.3 -2012-07-30 20:00:00;140.1 -2012-07-30 23:00:00;139.0 -2012-07-31 17:00:00;141.5 -2012-07-31 20:00:00;144.0 -2012-07-31 23:00:00;145.1 -2012-08-01 17:00:00;146.0 -2012-08-01 20:00:00;154.6 -2012-08-01 23:00:00;140.5 -2012-08-02 17:00:00;141.3 -2012-08-02 20:00:00;138.6 -2012-08-02 23:00:00;138.1 -2012-08-03 17:00:00;142.2 -2012-08-03 20:00:00;143.8 -2012-08-03 23:00:00;140.3 -2012-08-04 17:00:00;151.1 -2012-08-04 20:00:00;142.7 -2012-08-04 23:00:00;139.4 -2012-08-05 17:00:00;136.8 -2012-08-05 20:00:00;137.9 -2012-08-05 23:00:00;136.7 -2012-08-06 17:00:00;136.9 -2012-08-06 20:00:00;137.9 -2012-08-06 23:00:00;136.2 -2012-08-07 17:00:00;133.8 -2012-08-07 20:00:00;132.1 -2012-08-07 23:00:00;134.1 -2012-08-08 17:00:00;138.0 -2012-08-08 20:00:00;137.0 -2012-08-08 23:00:00;139.8 -2012-08-09 17:00:00;135.5 -2012-08-09 20:00:00;134.8 -2012-08-09 23:00:00;131.2 -2012-08-10 17:00:00;128.0 -2012-08-10 20:00:00;128.8 -2012-08-10 23:00:00;124.0 -2012-08-11 17:00:00;129.2 -2012-08-11 20:00:00;123.0 -2012-08-11 23:00:00;118.4 -2012-08-12 17:00:00;116.7 -2012-08-12 20:00:00;115.3 -2012-08-12 23:00:00;114.6 -2012-08-13 17:00:00;111.8 -2012-08-13 20:00:00;110.9 -2012-08-13 23:00:00;109.7 -2012-08-14 17:00:00;108.2 -2012-08-14 20:00:00;108.5 -2012-08-14 23:00:00;113.2 -2012-08-15 17:00:00;104.3 -2012-08-15 20:00:00;103.2 -2012-08-15 23:00:00;102.6 -2012-08-16 17:00:00;98.2 -2012-08-16 20:00:00;100.8 -2012-08-16 23:00:00;100.5 -2012-08-17 17:00:00;107.5 -2012-08-17 20:00:00;97.5 -2012-08-17 23:00:00;97.7 -2012-08-18 17:00:00;98.2 -2012-08-18 20:00:00;99.4 -2012-08-18 23:00:00;100.4 -2012-08-19 17:00:00;98.7 -2012-08-19 20:00:00;98.5 -2012-08-19 23:00:00;99.8 -2012-08-20 17:00:00;99.1 -2012-08-20 20:00:00;98.5 -2012-08-20 23:00:00;97.7 -2012-08-21 17:00:00;96.9 -2012-08-21 20:00:00;96.4 -2012-08-21 23:00:00;95.8 -2012-08-22 17:00:00;98.6 -2012-08-22 20:00:00;96.9 -2012-08-22 23:00:00;96.0 -2012-08-23 17:00:00;98.1 -2012-08-23 20:00:00;98.8 -2012-08-23 23:00:00;99.3 -2012-08-24 17:00:00;104.7 -2012-08-24 20:00:00;106.4 -2012-08-24 23:00:00;106.3 -2012-08-25 17:00:00;108.6 -2012-08-25 20:00:00;108.1 -2012-08-25 23:00:00;109.4 -2012-08-26 17:00:00;113.1 -2012-08-26 20:00:00;115.6 -2012-08-26 23:00:00;113.4 -2012-08-27 17:00:00;114.0 -2012-08-27 20:00:00;113.7 -2012-08-27 23:00:00;113.2 -2012-08-28 17:00:00;114.2 -2012-08-28 20:00:00;113.4 -2012-08-28 23:00:00;113.9 -2012-08-29 17:00:00;117.4 -2012-08-29 20:00:00;120.6 -2012-08-29 23:00:00;119.6 -2012-08-30 17:00:00;129.4 -2012-08-30 20:00:00;130.2 -2012-08-30 23:00:00;131.4 -2012-08-31 17:00:00;137.6 -2012-08-31 20:00:00;132.9 -2012-08-31 23:00:00;159.7 -2012-09-01 17:00:00;148.2 -2012-09-01 20:00:00;148.2 -2012-09-01 23:00:00;150.8 -2012-09-02 17:00:00;145.2 -2012-09-02 20:00:00;144.7 -2012-09-02 23:00:00;144.7 -2012-09-03 17:00:00;148.4 -2012-09-03 20:00:00;144.0 -2012-09-03 23:00:00;146.0 -2012-09-04 17:00:00;141.7 -2012-09-04 20:00:00;139.9 -2012-09-04 23:00:00;138.5 -2012-09-05 17:00:00;136.5 -2012-09-05 20:00:00;134.9 -2012-09-05 23:00:00;131.7 -2012-09-06 17:00:00;136.1 -2012-09-06 20:00:00;130.0 -2012-09-06 23:00:00;132.1 -2012-09-07 17:00:00;134.3 -2012-09-07 20:00:00;135.4 -2012-09-07 23:00:00;136.0 -2012-09-08 17:00:00;134.4 -2012-09-08 20:00:00;130.5 -2012-09-08 23:00:00;133.3 -2012-09-09 17:00:00;127.8 -2012-09-09 20:00:00;124.8 -2012-09-09 23:00:00;134.8 -2012-09-10 17:00:00;114.2 -2012-09-10 20:00:00;112.8 -2012-09-10 23:00:00;112.5 -2012-09-11 17:00:00;105.6 -2012-09-11 20:00:00;106.4 -2012-09-11 23:00:00;111.9 -2012-09-12 17:00:00;102.3 -2012-09-12 20:00:00;103.8 -2012-09-12 23:00:00;103.0 -2012-09-13 17:00:00;101.6 -2012-09-13 20:00:00;100.3 -2012-09-13 23:00:00;100.1 -2012-09-14 17:00:00;99.6 -2012-09-14 20:00:00;101.7 -2012-09-14 23:00:00;100.9 -2012-09-15 17:00:00;98.8 -2012-09-15 20:00:00;98.6 -2012-09-15 23:00:00;98.4 -2012-09-16 17:00:00;97.7 -2012-09-16 20:00:00;98.3 -2012-09-16 23:00:00;98.5 -2012-09-17 17:00:00;100.1 -2012-09-17 20:00:00;102.5 -2012-09-17 23:00:00;103.5 -2012-09-18 17:00:00;105.3 -2012-09-18 20:00:00;105.3 -2012-09-18 23:00:00;106.3 -2012-09-19 17:00:00;110.5 -2012-09-19 20:00:00;110.8 -2012-09-19 23:00:00;111.6 -2012-09-20 17:00:00;118.8 -2012-09-20 20:00:00;118.4 -2012-09-20 23:00:00;117.6 -2012-09-21 17:00:00;115.5 -2012-09-21 20:00:00;117.8 -2012-09-21 23:00:00;119.4 -2012-09-22 17:00:00;121.7 -2012-09-22 20:00:00;125.3 -2012-09-22 23:00:00;127.5 -2012-09-23 17:00:00;131.4 -2012-09-23 20:00:00;134.4 -2012-09-23 23:00:00;135.0 -2012-09-24 17:00:00;135.3 -2012-09-24 20:00:00;137.4 -2012-09-24 23:00:00;136.5 -2012-09-25 17:00:00;140.0 -2012-09-25 20:00:00;140.6 -2012-09-25 23:00:00;139.7 -2012-09-26 17:00:00;140.3 -2012-09-26 20:00:00;139.9 -2012-09-26 23:00:00;138.4 -2012-09-27 17:00:00;135.6 -2012-09-27 20:00:00;133.8 -2012-09-27 23:00:00;133.8 -2012-09-28 17:00:00;138.2 -2012-09-28 20:00:00;138.3 -2012-09-28 23:00:00;140.2 -2012-09-29 17:00:00;136.8 -2012-09-29 20:00:00;136.4 -2012-09-29 23:00:00;136.1 -2012-09-30 17:00:00;134.5 -2012-09-30 20:00:00;135.9 -2012-09-30 23:00:00;136.4 -2012-10-01 17:00:00;130.3 -2012-10-01 20:00:00;128.3 -2012-10-01 23:00:00;126.3 -2012-10-02 17:00:00;120.7 -2012-10-02 20:00:00;118.3 -2012-10-02 23:00:00;116.7 -2012-10-03 17:00:00;112.8 -2012-10-03 20:00:00;111.8 -2012-10-03 23:00:00;110.4 -2012-10-04 17:00:00;108.1 -2012-10-04 20:00:00;109.5 -2012-10-04 23:00:00;108.3 -2012-10-05 17:00:00;107.7 -2012-10-05 20:00:00;106.1 -2012-10-05 23:00:00;105.2 -2012-10-06 17:00:00;100.9 -2012-10-06 20:00:00;98.7 -2012-10-06 23:00:00;98.8 -2012-10-07 17:00:00;98.4 -2012-10-07 20:00:00;97.9 -2012-10-07 23:00:00;99.7 -2012-10-08 17:00:00;103.1 -2012-10-08 20:00:00;103.2 -2012-10-08 23:00:00;104.9 -2012-10-09 17:00:00;104.9 -2012-10-09 20:00:00;105.9 -2012-10-09 23:00:00;108.9 -2012-10-10 17:00:00;111.8 -2012-10-10 20:00:00;111.6 -2012-10-10 23:00:00;112.8 -2012-10-11 17:00:00;115.2 -2012-10-11 20:00:00;116.2 -2012-10-11 23:00:00;118.7 -2012-10-12 17:00:00;120.8 -2012-10-12 20:00:00;121.3 -2012-10-12 23:00:00;120.0 -2012-10-13 17:00:00;123.8 -2012-10-13 20:00:00;124.3 -2012-10-13 23:00:00;124.6 -2012-10-14 17:00:00;132.7 -2012-10-14 20:00:00;131.3 -2012-10-14 23:00:00;130.7 -2012-10-15 17:00:00;137.1 -2012-10-15 20:00:00;135.9 -2012-10-15 23:00:00;135.1 -2012-10-16 17:00:00;138.1 -2012-10-16 20:00:00;136.1 -2012-10-16 23:00:00;134.7 -2012-10-17 17:00:00;135.7 -2012-10-17 20:00:00;134.1 -2012-10-17 23:00:00;131.3 -2012-10-18 17:00:00;135.7 -2012-10-18 20:00:00;136.5 -2012-10-18 23:00:00;138.1 -2012-10-19 17:00:00;141.2 -2012-10-19 20:00:00;140.3 -2012-10-19 23:00:00;140.6 -2012-10-20 17:00:00;143.9 -2012-10-20 20:00:00;150.1 -2012-10-20 23:00:00;146.1 -2012-10-21 17:00:00;140.5 -2012-10-21 20:00:00;142.8 -2012-10-21 23:00:00;140.5 -2012-10-22 17:00:00;147.2 -2012-10-22 20:00:00;153.9 -2012-10-22 23:00:00;142.8 -2012-10-23 17:00:00;143.2 -2012-10-23 20:00:00;140.1 -2012-10-23 23:00:00;137.9 -2012-10-24 17:00:00;134.6 -2012-10-24 20:00:00;134.1 -2012-10-24 23:00:00;132.5 -2012-10-25 17:00:00;130.6 -2012-10-25 20:00:00;128.5 -2012-10-25 23:00:00;127.7 -2012-10-26 17:00:00;132.4 -2012-10-26 20:00:00;129.1 -2012-10-26 23:00:00;128.3 -2012-10-27 17:00:00;120.9 -2012-10-27 20:00:00;120.2 -2012-10-27 23:00:00;118.7 -2012-10-28 17:00:00;116.3 -2012-10-28 20:00:00;115.4 -2012-10-28 23:00:00;114.3 -2012-10-29 17:00:00;108.3 -2012-10-29 20:00:00;106.9 -2012-10-29 23:00:00;106.3 -2012-10-30 17:00:00;105.2 -2012-10-30 20:00:00;104.8 -2012-10-30 23:00:00;104.5 -2012-10-31 17:00:00;101.3 -2012-10-31 20:00:00;102.7 -2012-10-31 23:00:00;101.4 -2012-11-01 18:00:00;96.8 -2012-11-01 20:00:00;96.8 -2012-11-01 22:00:00;95.9 -2012-11-02 18:00:00;95.4 -2012-11-02 20:00:00;94.9 -2012-11-02 22:00:00;94.7 -2012-11-03 18:00:00;92.1 -2012-11-03 20:00:00;91.8 -2012-11-03 22:00:00;91.1 -2012-11-04 18:00:00;93.6 -2012-11-04 20:00:00;93.4 -2012-11-04 22:00:00;93.3 -2012-11-05 18:00:00;94.1 -2012-11-05 20:00:00;94.9 -2012-11-05 22:00:00;94.7 -2012-11-06 18:00:00;98.7 -2012-11-06 20:00:00;96.9 -2012-11-06 22:00:00;97.5 -2012-11-07 18:00:00;100.2 -2012-11-07 20:00:00;99.8 -2012-11-07 22:00:00;99.3 -2012-11-08 18:00:00;101.8 -2012-11-08 20:00:00;102.2 -2012-11-08 22:00:00;102.5 -2012-11-09 18:00:00;111.6 -2012-11-09 20:00:00;112.9 -2012-11-09 22:00:00;113.6 -2012-11-10 18:00:00;120.7 -2012-11-10 20:00:00;119.8 -2012-11-10 22:00:00;122.4 -2012-11-11 18:00:00;131.3 -2012-11-11 20:00:00;130.6 -2012-11-11 22:00:00;131.1 -2012-11-12 18:00:00;136.8 -2012-11-12 20:00:00;140.8 -2012-11-12 22:00:00;140.1 -2012-11-13 18:00:00;140.5 -2012-11-13 20:00:00;143.1 -2012-11-13 22:00:00;144.5 -2012-11-14 18:00:00;140.2 -2012-11-14 20:00:00;139.1 -2012-11-14 22:00:00;139.2 -2012-11-15 18:00:00;138.0 -2012-11-15 20:00:00;138.6 -2012-11-15 22:00:00;136.5 -2012-11-16 18:00:00;135.8 -2012-11-16 20:00:00;135.2 -2012-11-16 22:00:00;136.3 -2012-11-17 18:00:00;133.8 -2012-11-17 20:00:00;132.4 -2012-11-17 22:00:00;131.4 -2012-11-18 18:00:00;138.0 -2012-11-18 20:00:00;137.7 -2012-11-18 22:00:00;136.3 -2012-11-19 18:00:00;131.3 -2012-11-19 20:00:00;130.7 -2012-11-19 22:00:00;131.2 -2012-11-20 18:00:00;137.2 -2012-11-20 20:00:00;137.8 -2012-11-20 22:00:00;135.1 -2012-11-21 18:00:00;135.0 -2012-11-21 20:00:00;137.0 -2012-11-21 22:00:00;136.7 -2012-11-22 18:00:00;126.2 -2012-11-22 20:00:00;124.5 -2012-11-22 22:00:00;124.0 -2012-11-23 18:00:00;125.3 -2012-11-23 20:00:00;123.5 -2012-11-23 22:00:00;123.8 -2012-11-24 18:00:00;117.3 -2012-11-24 20:00:00;115.0 -2012-11-24 22:00:00;115.4 -2012-11-25 18:00:00;119.6 -2012-11-25 20:00:00;118.4 -2012-11-25 22:00:00;118.9 -2012-11-26 18:00:00;119.0 -2012-11-26 20:00:00;118.6 -2012-11-26 22:00:00;119.5 -2012-11-27 18:00:00;116.2 -2012-11-27 20:00:00;114.0 -2012-11-27 22:00:00;114.3 -2012-11-28 18:00:00;110.8 -2012-11-28 20:00:00;111.2 -2012-11-28 22:00:00;118.5 -2012-11-29 18:00:00;111.3 -2012-11-29 20:00:00;110.0 -2012-11-29 22:00:00;107.8 -2012-11-30 18:00:00;111.3 -2012-11-30 20:00:00;107.5 -2012-11-30 22:00:00;106.3 -2012-12-01 18:00:00;99.8 -2012-12-01 20:00:00;98.8 -2012-12-01 22:00:00;98.3 -2012-12-02 18:00:00;95.8 -2012-12-02 20:00:00;94.9 -2012-12-02 22:00:00;94.7 -2012-12-03 18:00:00;93.8 -2012-12-03 20:00:00;93.9 -2012-12-03 22:00:00;93.9 -2012-12-04 18:00:00;94.0 -2012-12-04 20:00:00;93.4 -2012-12-04 22:00:00;93.2 -2012-12-05 18:00:00;93.6 -2012-12-05 20:00:00;92.7 -2012-12-05 22:00:00;92.4 -2012-12-06 18:00:00;95.4 -2012-12-06 20:00:00;94.6 -2012-12-06 22:00:00;94.6 -2012-12-07 18:00:00;95.1 -2012-12-07 20:00:00;94.2 -2012-12-07 22:00:00;94.9 -2012-12-08 18:00:00;99.4 -2012-12-08 20:00:00;98.1 -2012-12-08 22:00:00;97.8 -2012-12-09 18:00:00;101.0 -2012-12-09 20:00:00;100.6 -2012-12-09 22:00:00;103.0 -2012-12-10 18:00:00;100.8 -2012-12-10 20:00:00;100.9 -2012-12-10 22:00:00;100.7 -2012-12-11 18:00:00;99.8 -2012-12-11 20:00:00;100.5 -2012-12-11 22:00:00;100.3 -2012-12-12 18:00:00;105.7 -2012-12-12 20:00:00;108.4 -2012-12-12 22:00:00;109.5 -2012-12-13 18:00:00;110.2 -2012-12-13 20:00:00;113.0 -2012-12-13 22:00:00;111.0 -2012-12-14 18:00:00;114.7 -2012-12-14 20:00:00;115.5 -2012-12-14 22:00:00;117.0 -2012-12-15 18:00:00;116.5 -2012-12-15 20:00:00;118.5 -2012-12-15 22:00:00;115.6 -2012-12-16 18:00:00;116.7 -2012-12-16 20:00:00;115.8 -2012-12-16 22:00:00;115.9 -2012-12-17 18:00:00;109.3 -2012-12-17 20:00:00;111.3 -2012-12-17 22:00:00;114.5 -2012-12-18 18:00:00;113.1 -2012-12-18 20:00:00;112.5 -2012-12-18 22:00:00;112.7 -2012-12-19 18:00:00;110.9 -2012-12-19 20:00:00;109.8 -2012-12-19 22:00:00;109.0 -2012-12-20 18:00:00;109.3 -2012-12-20 20:00:00;110.4 -2012-12-20 22:00:00;110.6 -2012-12-21 18:00:00;110.5 -2012-12-21 20:00:00;110.9 -2012-12-21 22:00:00;109.1 -2012-12-22 18:00:00;111.4 -2012-12-22 20:00:00;111.6 -2012-12-22 22:00:00;110.7 -2012-12-23 18:00:00;108.1 -2012-12-23 20:00:00;110.4 -2012-12-23 22:00:00;110.1 -2012-12-24 18:00:00;108.5 -2012-12-24 20:00:00;109.4 -2012-12-24 22:00:00;107.5 -2012-12-25 18:00:00;109.7 -2012-12-25 20:00:00;109.3 -2012-12-25 22:00:00;108.4 -2012-12-26 18:00:00;107.8 -2012-12-26 20:00:00;106.2 -2012-12-26 22:00:00;105.2 -2012-12-27 18:00:00;103.0 -2012-12-27 20:00:00;103.2 -2012-12-27 22:00:00;102.5 -2012-12-28 18:00:00;102.1 -2012-12-28 20:00:00;102.3 -2012-12-28 22:00:00;101.4 -2012-12-29 18:00:00;99.6 -2012-12-29 20:00:00;100.9 -2012-12-29 22:00:00;101.1 -2012-12-30 18:00:00;102.7 -2012-12-30 20:00:00;103.2 -2012-12-30 22:00:00;104.4 -2012-12-31 18:00:00;109.7 -2012-12-31 20:00:00;109.8 -2012-12-31 22:00:00;110.0 -2013-01-01 18:00:00;113.5 -2013-01-01 20:00:00;113.9 -2013-01-01 22:00:00;114.5 -2013-01-02 18:00:00;113.9 -2013-01-02 20:00:00;115.0 -2013-01-02 22:00:00;116.2 -2013-01-03 18:00:00;123.7 -2013-01-03 20:00:00;124.6 -2013-01-03 22:00:00;126.9 -2013-01-04 18:00:00;138.5 -2013-01-04 20:00:00;138.4 -2013-01-04 22:00:00;139.9 -2013-01-05 18:00:00;142.7 -2013-01-05 20:00:00;140.3 -2013-01-05 22:00:00;141.0 -2013-01-06 18:00:00;138.0 -2013-01-06 20:00:00;137.5 -2013-01-06 22:00:00;139.0 -2013-01-07 18:00:00;146.0 -2013-01-07 20:00:00;144.8 -2013-01-07 22:00:00;145.8 -2013-01-08 18:00:00;152.8 -2013-01-08 20:00:00;150.5 -2013-01-08 22:00:00;145.5 -2013-01-09 18:00:00;162.2 -2013-01-09 20:00:00;163.8 -2013-01-09 22:00:00;159.0 -2013-01-10 18:00:00;169.5 -2013-01-10 20:00:00;168.2 -2013-01-10 22:00:00;163.2 -2013-01-11 18:00:00;161.7 -2013-01-11 20:00:00;166.7 -2013-01-11 22:00:00;165.1 -2013-01-12 18:00:00;165.2 -2013-01-12 20:00:00;163.0 -2013-01-12 22:00:00;161.7 -2013-01-13 18:00:00;153.0 -2013-01-13 20:00:00;151.4 -2013-01-13 22:00:00;151.7 -2013-01-14 18:00:00;146.2 -2013-01-14 20:00:00;149.1 -2013-01-14 22:00:00;146.8 -2013-01-15 18:00:00;135.2 -2013-01-15 20:00:00;135.2 -2013-01-15 22:00:00;133.1 -2013-01-16 18:00:00;127.7 -2013-01-16 20:00:00;132.6 -2013-01-16 22:00:00;128.0 -2013-01-17 18:00:00;118.3 -2013-01-17 20:00:00;118.8 -2013-01-17 22:00:00;118.2 -2013-01-18 18:00:00;113.7 -2013-01-18 20:00:00;111.5 -2013-01-18 22:00:00;111.3 -2013-01-19 18:00:00;104.5 -2013-01-19 20:00:00;103.3 -2013-01-19 22:00:00;102.4 -2013-01-20 18:00:00;102.3 -2013-01-20 20:00:00;103.2 -2013-01-20 22:00:00;101.0 -2013-01-21 18:00:00;104.0 -2013-01-21 20:00:00;104.9 -2013-01-21 22:00:00;105.3 -2013-01-22 18:00:00;106.2 -2013-01-22 20:00:00;106.9 -2013-01-22 22:00:00;106.6 -2013-01-23 18:00:00;102.8 -2013-01-23 20:00:00;101.6 -2013-01-23 22:00:00;101.3 -2013-01-24 18:00:00;99.8 -2013-01-24 20:00:00;100.2 -2013-01-24 22:00:00;100.8 -2013-01-25 18:00:00;96.3 -2013-01-25 20:00:00;97.5 -2013-01-25 22:00:00;98.1 -2013-01-26 18:00:00;96.5 -2013-01-26 20:00:00;96.3 -2013-01-26 22:00:00;96.9 -2013-01-27 18:00:00;94.8 -2013-01-27 20:00:00;94.7 -2013-01-27 22:00:00;95.2 -2013-01-28 18:00:00;93.9 -2013-01-28 20:00:00;94.7 -2013-01-28 22:00:00;94.3 -2013-01-29 18:00:00;93.2 -2013-01-29 20:00:00;92.6 -2013-01-29 22:00:00;92.5 -2013-01-30 18:00:00;93.9 -2013-01-30 20:00:00;93.8 -2013-01-30 22:00:00;93.9 -2013-01-31 18:00:00;98.8 -2013-01-31 20:00:00;99.7 -2013-01-31 22:00:00;99.5 -2013-02-01 18:00:00;101.4 -2013-02-01 20:00:00;100.7 -2013-02-01 22:00:00;102.6 -2013-02-02 18:00:00;106.6 -2013-02-02 20:00:00;108.6 -2013-02-02 22:00:00;106.9 -2013-02-03 18:00:00;109.4 -2013-02-03 20:00:00;107.9 -2013-02-03 22:00:00;107.6 -2013-02-04 18:00:00;104.2 -2013-02-04 20:00:00;103.7 -2013-02-04 22:00:00;103.8 -2013-02-05 18:00:00;102.7 -2013-02-05 20:00:00;102.2 -2013-02-05 22:00:00;102.1 -2013-02-06 18:00:00;101.9 -2013-02-06 20:00:00;100.7 -2013-02-06 22:00:00;100.7 -2013-02-07 18:00:00;99.3 -2013-02-07 20:00:00;100.0 -2013-02-07 22:00:00;99.7 -2013-02-08 18:00:00;101.5 -2013-02-08 20:00:00;101.4 -2013-02-08 22:00:00;101.3 -2013-02-09 18:00:00;103.9 -2013-02-09 20:00:00;104.8 -2013-02-09 22:00:00;104.2 -2013-02-10 18:00:00;102.2 -2013-02-10 20:00:00;103.2 -2013-02-10 22:00:00;103.2 -2013-02-11 18:00:00;102.6 -2013-02-11 20:00:00;102.5 -2013-02-11 22:00:00;102.0 -2013-02-12 18:00:00;98.7 -2013-02-12 20:00:00;99.2 -2013-02-12 22:00:00;98.5 -2013-02-13 18:00:00;97.6 -2013-02-13 20:00:00;97.8 -2013-02-13 22:00:00;97.0 -2013-02-14 18:00:00;97.8 -2013-02-14 20:00:00;97.0 -2013-02-14 22:00:00;96.8 -2013-02-15 18:00:00;97.1 -2013-02-15 20:00:00;97.7 -2013-02-15 22:00:00;98.3 -2013-02-16 18:00:00;100.0 -2013-02-16 20:00:00;100.8 -2013-02-16 22:00:00;102.0 -2013-02-17 18:00:00;102.7 -2013-02-17 20:00:00;103.1 -2013-02-17 22:00:00;104.7 -2013-02-18 18:00:00;101.3 -2013-02-18 20:00:00;102.3 -2013-02-18 22:00:00;104.2 -2013-02-19 18:00:00;109.2 -2013-02-19 20:00:00;109.9 -2013-02-19 22:00:00;113.5 -2013-02-20 18:00:00;112.2 -2013-02-20 20:00:00;111.0 -2013-02-20 22:00:00;112.4 -2013-02-21 18:00:00;107.2 -2013-02-21 20:00:00;106.2 -2013-02-21 22:00:00;107.2 -2013-02-22 18:00:00;106.7 -2013-02-22 20:00:00;104.7 -2013-02-22 22:00:00;103.5 -2013-02-23 18:00:00;97.3 -2013-02-23 20:00:00;97.5 -2013-02-23 22:00:00;97.4 -2013-02-24 18:00:00;93.2 -2013-02-24 20:00:00;93.0 -2013-02-24 22:00:00;92.5 -2013-02-25 18:00:00;93.7 -2013-02-25 20:00:00;93.5 -2013-02-25 22:00:00;94.0 -2013-02-26 18:00:00;97.3 -2013-02-26 20:00:00;96.8 -2013-02-26 22:00:00;97.2 -2013-02-27 18:00:00;99.5 -2013-02-27 20:00:00;100.0 -2013-02-27 22:00:00;101.1 -2013-02-28 18:00:00;104.3 -2013-02-28 20:00:00;103.6 -2013-02-28 22:00:00;104.2 -2013-03-01 17:00:00;107.4 -2013-03-01 20:00:00;110.6 -2013-03-01 23:00:00;107.3 -2013-03-02 17:00:00;109.0 -2013-03-02 20:00:00;109.1 -2013-03-02 23:00:00;110.3 -2013-03-03 17:00:00;110.9 -2013-03-03 20:00:00;110.1 -2013-03-03 23:00:00;110.4 -2013-03-04 17:00:00;112.0 -2013-03-04 20:00:00;112.4 -2013-03-04 23:00:00;112.7 -2013-03-05 17:00:00;115.7 -2013-03-05 20:00:00;116.6 -2013-03-05 23:00:00;114.8 -2013-03-06 17:00:00;114.0 -2013-03-06 20:00:00;112.6 -2013-03-06 23:00:00;111.4 -2013-03-07 17:00:00;112.4 -2013-03-07 20:00:00;112.1 -2013-03-07 23:00:00;111.9 -2013-03-08 17:00:00;113.2 -2013-03-08 20:00:00;113.3 -2013-03-08 23:00:00;112.3 -2013-03-09 17:00:00;115.4 -2013-03-09 20:00:00;114.6 -2013-03-09 23:00:00;117.1 -2013-03-10 17:00:00;117.3 -2013-03-10 20:00:00;117.7 -2013-03-10 23:00:00;115.3 -2013-03-11 17:00:00;118.2 -2013-03-11 20:00:00;118.2 -2013-03-11 23:00:00;117.8 -2013-03-12 17:00:00;123.0 -2013-03-12 20:00:00;121.5 -2013-03-12 23:00:00;124.9 -2013-03-13 17:00:00;123.2 -2013-03-13 20:00:00;121.5 -2013-03-13 23:00:00;120.8 -2013-03-14 17:00:00;119.6 -2013-03-14 20:00:00;121.5 -2013-03-14 23:00:00;122.7 -2013-03-15 17:00:00;124.2 -2013-03-15 20:00:00;121.8 -2013-03-15 23:00:00;121.1 -2013-03-16 17:00:00;127.9 -2013-03-16 20:00:00;124.8 -2013-03-16 23:00:00;125.4 -2013-03-17 17:00:00;123.3 -2013-03-17 20:00:00;124.5 -2013-03-17 23:00:00;122.4 -2013-03-18 17:00:00;118.7 -2013-03-18 20:00:00;116.6 -2013-03-18 23:00:00;114.6 -2013-03-19 17:00:00;112.9 -2013-03-19 20:00:00;109.5 -2013-03-19 23:00:00;109.0 -2013-03-20 17:00:00;106.8 -2013-03-20 20:00:00;106.7 -2013-03-20 23:00:00;106.2 -2013-03-21 17:00:00;104.7 -2013-03-21 20:00:00;105.3 -2013-03-21 23:00:00;104.7 -2013-03-22 17:00:00;100.8 -2013-03-22 20:00:00;100.2 -2013-03-22 23:00:00;99.3 -2013-03-23 17:00:00;97.8 -2013-03-23 20:00:00;97.6 -2013-03-23 23:00:00;97.0 -2013-03-24 17:00:00;94.2 -2013-03-24 20:00:00;95.4 -2013-03-24 23:00:00;94.4 -2013-03-25 17:00:00;92.7 -2013-03-25 20:00:00;92.2 -2013-03-25 23:00:00;92.2 -2013-03-26 17:00:00;92.4 -2013-03-26 20:00:00;92.0 -2013-03-26 23:00:00;92.7 -2013-03-27 17:00:00;92.7 -2013-03-27 20:00:00;92.6 -2013-03-27 23:00:00;93.4 -2013-03-28 17:00:00;96.9 -2013-03-28 20:00:00;98.3 -2013-03-28 23:00:00;98.8 -2013-03-29 17:00:00;104.5 -2013-03-29 20:00:00;104.8 -2013-03-29 23:00:00;106.8 -2013-03-30 17:00:00;108.6 -2013-03-30 20:00:00;108.2 -2013-03-30 23:00:00;108.4 -2013-03-31 17:00:00;114.2 -2013-03-31 20:00:00;113.1 -2013-03-31 23:00:00;114.7 -2013-04-01 17:00:00;117.7 -2013-04-01 20:00:00;119.0 -2013-04-01 23:00:00;119.9 -2013-04-02 17:00:00;120.9 -2013-04-02 20:00:00;122.1 -2013-04-02 23:00:00;121.6 -2013-04-03 17:00:00;126.4 -2013-04-03 20:00:00;127.0 -2013-04-03 23:00:00;127.3 -2013-04-04 17:00:00;127.1 -2013-04-04 20:00:00;128.6 -2013-04-04 23:00:00;130.0 -2013-04-05 17:00:00;131.8 -2013-04-05 20:00:00;134.5 -2013-04-05 23:00:00;132.0 -2013-04-06 17:00:00;135.0 -2013-04-06 20:00:00;137.3 -2013-04-06 23:00:00;136.6 -2013-04-07 17:00:00;139.7 -2013-04-07 20:00:00;138.2 -2013-04-07 23:00:00;137.6 -2013-04-08 17:00:00;140.6 -2013-04-08 20:00:00;139.6 -2013-04-08 23:00:00;142.6 -2013-04-09 17:00:00;146.8 -2013-04-09 20:00:00;147.0 -2013-04-09 23:00:00;146.6 -2013-04-10 17:00:00;145.5 -2013-04-10 20:00:00;148.6 -2013-04-10 23:00:00;144.7 -2013-04-11 17:00:00;139.4 -2013-04-11 20:00:00;137.8 -2013-04-11 23:00:00;140.8 -2013-04-12 17:00:00;141.2 -2013-04-12 20:00:00;138.6 -2013-04-12 23:00:00;133.2 -2013-04-13 17:00:00;123.2 -2013-04-13 20:00:00;125.8 -2013-04-13 23:00:00;122.1 -2013-04-14 17:00:00;117.5 -2013-04-14 20:00:00;117.5 -2013-04-14 23:00:00;114.6 -2013-04-15 17:00:00;114.7 -2013-04-15 20:00:00;114.1 -2013-04-15 23:00:00;114.2 -2013-04-16 17:00:00;117.2 -2013-04-16 20:00:00;114.1 -2013-04-16 23:00:00;117.5 -2013-04-17 20:00:00;109.0 -2013-04-17 23:00:00;107.1 -2013-04-18 17:00:00;99.3 -2013-04-18 20:00:00;105.9 -2013-04-18 23:00:00;99.2 -2013-04-19 17:00:00;99.9 -2013-04-19 20:00:00;100.3 -2013-04-19 23:00:00;101.2 -2013-04-20 17:00:00;105.6 -2013-04-20 20:00:00;105.9 -2013-04-20 23:00:00;108.9 -2013-04-21 17:00:00;112.3 -2013-04-21 20:00:00;110.5 -2013-04-21 23:00:00;106.3 -2013-04-22 17:00:00;113.7 -2013-04-22 20:00:00;114.1 -2013-04-22 23:00:00;118.0 -2013-04-23 17:00:00;114.2 -2013-04-23 20:00:00;118.8 -2013-04-23 23:00:00;116.8 -2013-04-24 17:00:00;117.8 -2013-04-24 20:00:00;116.1 -2013-04-24 23:00:00;117.8 -2013-04-25 17:00:00;120.0 -2013-04-25 20:00:00;120.7 -2013-04-25 23:00:00;121.3 -2013-04-26 17:00:00;124.3 -2013-04-26 20:00:00;123.5 -2013-04-26 23:00:00;130.4 -2013-04-27 17:00:00;131.2 -2013-04-27 20:00:00;128.8 -2013-04-27 23:00:00;129.3 -2013-04-28 17:00:00;130.4 -2013-04-28 20:00:00;133.5 -2013-04-28 23:00:00;133.9 -2013-04-29 17:00:00;140.2 -2013-04-29 20:00:00;144.5 -2013-04-29 23:00:00;145.8 -2013-04-30 17:00:00;155.0 -2013-04-30 20:00:00;156.7 -2013-04-30 23:00:00;155.7 -2013-05-01 17:00:00;162.9 -2013-05-01 20:00:00;161.7 -2013-05-01 23:00:00;156.0 -2013-05-02 17:00:00;150.9 -2013-05-02 20:00:00;151.8 -2013-05-02 23:00:00;152.1 -2013-05-03 17:00:00;164.5 -2013-05-03 20:00:00;150.4 -2013-05-03 23:00:00;148.9 -2013-05-04 17:00:00;147.8 -2013-05-04 20:00:00;144.1 -2013-05-04 23:00:00;142.4 -2013-05-05 17:00:00;140.2 -2013-05-05 20:00:00;139.5 -2013-05-05 23:00:00;138.6 -2013-05-06 17:00:00;134.0 -2013-05-06 20:00:00;133.0 -2013-05-06 23:00:00;132.5 -2013-05-07 17:00:00;130.3 -2013-05-07 20:00:00;131.1 -2013-05-07 23:00:00;131.5 -2013-05-08 17:00:00;122.7 -2013-05-08 20:00:00;129.3 -2013-05-08 23:00:00;128.7 -2013-05-09 17:00:00;130.4 -2013-05-09 20:00:00;130.9 -2013-05-09 23:00:00;130.5 -2013-05-10 17:00:00;130.5 -2013-05-10 20:00:00;127.3 -2013-05-10 23:00:00;126.8 -2013-05-11 17:00:00;132.9 -2013-05-11 20:00:00;139.4 -2013-05-11 23:00:00;138.3 -2013-05-12 17:00:00;146.3 -2013-05-12 20:00:00;150.4 -2013-05-12 23:00:00;153.3 -2013-05-13 17:00:00;160.4 -2013-05-13 20:00:00;153.5 -2013-05-13 23:00:00;154.5 -2013-05-14 17:00:00;151.4 -2013-05-14 20:00:00;151.1 -2013-05-14 23:00:00;151.0 -2013-05-15 17:00:00;144.9 -2013-05-15 20:00:00;148.8 -2013-05-15 23:00:00;152.0 -2013-05-16 17:00:00;148.9 -2013-05-16 20:00:00;148.0 -2013-05-16 23:00:00;147.7 -2013-05-17 17:00:00;141.1 -2013-05-17 20:00:00;139.6 -2013-05-17 23:00:00;138.8 -2013-05-18 17:00:00;135.9 -2013-05-18 20:00:00;135.2 -2013-05-18 23:00:00;136.4 -2013-05-19 17:00:00;136.0 -2013-05-19 20:00:00;138.5 -2013-05-19 23:00:00;139.3 -2013-05-20 17:00:00;137.4 -2013-05-20 20:00:00;135.2 -2013-05-20 23:00:00;134.1 -2013-05-21 17:00:00;129.6 -2013-05-21 20:00:00;128.4 -2013-05-21 23:00:00;130.0 -2013-05-22 17:00:00;144.2 -2013-05-22 20:00:00;136.7 -2013-05-22 23:00:00;135.3 -2013-05-23 17:00:00;139.8 -2013-05-23 20:00:00;137.9 -2013-05-23 23:00:00;135.6 -2013-05-24 17:00:00;131.8 -2013-05-24 20:00:00;130.6 -2013-05-24 23:00:00;128.6 -2013-05-25 17:00:00;125.6 -2013-05-25 20:00:00;124.5 -2013-05-25 23:00:00;123.5 -2013-05-26 17:00:00;122.0 -2013-05-26 20:00:00;123.2 -2013-05-26 23:00:00;123.2 -2013-05-27 17:00:00;113.2 -2013-05-27 20:00:00;113.1 -2013-05-27 23:00:00;111.5 -2013-05-28 17:00:00;108.4 -2013-05-28 20:00:00;107.6 -2013-05-28 23:00:00;108.7 -2013-05-29 17:00:00;108.4 -2013-05-29 20:00:00;109.8 -2013-05-29 23:00:00;109.7 -2013-05-30 17:00:00;108.0 -2013-05-30 20:00:00;106.9 -2013-05-30 23:00:00;105.4 -2013-05-31 17:00:00;102.2 -2013-05-31 20:00:00;104.7 -2013-05-31 23:00:00;103.4 -2013-06-01 17:00:00;107.7 -2013-06-01 20:00:00;108.8 -2013-06-01 23:00:00;109.2 -2013-06-02 17:00:00;110.8 -2013-06-02 20:00:00;114.1 -2013-06-02 23:00:00;114.9 -2013-06-03 17:00:00;116.5 -2013-06-03 20:00:00;115.0 -2013-06-03 23:00:00;114.2 -2013-06-04 17:00:00;112.6 -2013-06-04 20:00:00;113.1 -2013-06-04 23:00:00;112.7 -2013-06-05 17:00:00;115.3 -2013-06-05 20:00:00;112.1 -2013-06-05 23:00:00;112.3 -2013-06-06 17:00:00;112.2 -2013-06-06 20:00:00;112.3 -2013-06-06 23:00:00;113.4 -2013-06-07 17:00:00;112.6 -2013-06-07 20:00:00;113.1 -2013-06-07 23:00:00;136.8 -2013-06-08 17:00:00;105.4 -2013-06-08 20:00:00;106.3 -2013-06-08 23:00:00;106.2 -2013-06-09 17:00:00;99.5 -2013-06-09 20:00:00;99.0 -2013-06-09 23:00:00;98.4 -2013-06-10 17:00:00;96.7 -2013-06-10 20:00:00;96.2 -2013-06-10 23:00:00;95.2 -2013-06-11 17:00:00;93.3 -2013-06-11 20:00:00;92.3 -2013-06-11 23:00:00;92.7 -2013-06-12 17:00:00;95.5 -2013-06-12 20:00:00;96.2 -2013-06-12 23:00:00;96.3 -2013-06-13 17:00:00;100.9 -2013-06-13 20:00:00;102.0 -2013-06-13 23:00:00;103.1 -2013-06-14 17:00:00;110.0 -2013-06-14 20:00:00;112.6 -2013-06-14 23:00:00;113.6 -2013-06-15 17:00:00;114.2 -2013-06-15 20:00:00;114.5 -2013-06-15 23:00:00;116.9 -2013-06-16 17:00:00;118.2 -2013-06-16 20:00:00;119.7 -2013-06-16 23:00:00;120.6 -2013-06-17 17:00:00;127.6 -2013-06-17 20:00:00;127.8 -2013-06-17 23:00:00;128.5 -2013-06-18 17:00:00;131.5 -2013-06-18 20:00:00;128.8 -2013-06-18 23:00:00;130.0 -2013-06-19 17:00:00;128.9 -2013-06-19 20:00:00;127.4 -2013-06-19 23:00:00;125.7 -2013-06-20 17:00:00;130.5 -2013-06-20 20:00:00;130.5 -2013-06-20 23:00:00;132.1 -2013-06-21 17:00:00;136.3 -2013-06-21 20:00:00;137.6 -2013-06-21 23:00:00;141.1 -2013-06-22 17:00:00;136.9 -2013-06-22 20:00:00;134.2 -2013-06-22 23:00:00;134.1 -2013-06-23 17:00:00;131.1 -2013-06-23 20:00:00;132.4 -2013-06-23 23:00:00;132.5 -2013-06-24 17:00:00;127.9 -2013-06-24 20:00:00;124.6 -2013-06-24 23:00:00;122.6 -2013-06-25 17:00:00;118.1 -2013-06-25 20:00:00;112.9 -2013-06-25 23:00:00;116.9 -2013-06-26 17:00:00;109.4 -2013-06-26 20:00:00;110.1 -2013-06-26 23:00:00;110.2 -2013-06-27 17:00:00;104.7 -2013-06-27 20:00:00;102.9 -2013-06-27 23:00:00;105.2 -2013-06-28 17:00:00;106.5 -2013-06-28 20:00:00;104.3 -2013-06-28 23:00:00;103.5 -2013-06-29 17:00:00;104.0 -2013-06-29 20:00:00;103.6 -2013-06-29 23:00:00;103.8 -2013-06-30 17:00:00;105.7 -2013-06-30 20:00:00;106.3 -2013-06-30 23:00:00;108.8 -2013-07-01 17:00:00;109.8 -2013-07-01 20:00:00;111.4 -2013-07-01 23:00:00;116.8 -2013-07-02 17:00:00;117.8 -2013-07-02 20:00:00;118.1 -2013-07-02 23:00:00;119.0 -2013-07-03 17:00:00;125.5 -2013-07-03 20:00:00;128.7 -2013-07-03 23:00:00;128.3 -2013-07-04 17:00:00;137.4 -2013-07-04 20:00:00;142.3 -2013-07-04 23:00:00;137.2 -2013-07-05 17:00:00;138.8 -2013-07-05 20:00:00;145.6 -2013-07-05 23:00:00;139.1 -2013-07-06 17:00:00;136.1 -2013-07-06 20:00:00;138.7 -2013-07-06 23:00:00;135.4 -2013-07-07 17:00:00;131.8 -2013-07-07 20:00:00;129.8 -2013-07-07 23:00:00;134.7 -2013-07-08 17:00:00;129.7 -2013-07-08 20:00:00;123.3 -2013-07-08 23:00:00;127.9 -2013-07-09 17:00:00;126.6 -2013-07-09 20:00:00;124.0 -2013-07-09 23:00:00;124.9 -2013-07-10 17:00:00;121.6 -2013-07-10 20:00:00;121.9 -2013-07-10 23:00:00;120.0 -2013-07-11 17:00:00;121.0 -2013-07-11 20:00:00;117.1 -2013-07-11 23:00:00;118.9 -2013-07-12 17:00:00;117.7 -2013-07-12 20:00:00;121.6 -2013-07-12 23:00:00;120.4 -2013-07-13 17:00:00;118.0 -2013-07-13 20:00:00;117.8 -2013-07-13 23:00:00;116.5 -2013-07-14 17:00:00;116.4 -2013-07-14 20:00:00;116.7 -2013-07-14 23:00:00;116.4 -2013-07-15 17:00:00;121.2 -2013-07-15 20:00:00;117.9 -2013-07-15 23:00:00;118.7 -2013-07-16 17:00:00;118.6 -2013-07-16 20:00:00;117.6 -2013-07-16 23:00:00;117.1 -2013-07-17 17:00:00;113.7 -2013-07-17 20:00:00;114.9 -2013-07-17 23:00:00;115.9 -2013-07-18 17:00:00;115.6 -2013-07-18 20:00:00;118.6 -2013-07-18 23:00:00;117.0 -2013-07-19 17:00:00;118.1 -2013-07-19 20:00:00;117.3 -2013-07-19 23:00:00;118.0 -2013-07-20 17:00:00;117.0 -2013-07-20 20:00:00;116.1 -2013-07-20 23:00:00;115.8 -2013-07-21 17:00:00;114.2 -2013-07-21 20:00:00;112.9 -2013-07-21 23:00:00;114.8 -2013-07-22 17:00:00;110.8 -2013-07-22 20:00:00;113.4 -2013-07-22 23:00:00;110.7 -2013-07-23 17:00:00;109.7 -2013-07-23 20:00:00;110.1 -2013-07-23 23:00:00;110.8 -2013-07-24 17:00:00;109.7 -2013-07-24 20:00:00;111.0 -2013-07-24 23:00:00;112.4 -2013-07-25 17:00:00;109.6 -2013-07-25 20:00:00;110.3 -2013-07-25 23:00:00;111.5 -2013-07-26 17:00:00;108.1 -2013-07-26 20:00:00;112.9 -2013-07-26 23:00:00;112.9 -2013-07-27 17:00:00;112.7 -2013-07-27 20:00:00;111.3 -2013-07-27 23:00:00;113.6 -2013-07-28 17:00:00;112.9 -2013-07-28 20:00:00;112.7 -2013-07-28 23:00:00;115.4 -2013-07-29 17:00:00;118.2 -2013-07-29 20:00:00;115.6 -2013-07-29 23:00:00;115.1 -2013-07-30 17:00:00;117.8 -2013-07-30 20:00:00;116.5 -2013-07-30 23:00:00;117.6 -2013-07-31 17:00:00;114.5 -2013-07-31 20:00:00;112.0 -2013-07-31 23:00:00;112.7 -2013-08-01 17:00:00;115.3 -2013-08-01 20:00:00;115.4 -2013-08-01 23:00:00;115.3 -2013-08-02 17:00:00;116.2 -2013-08-02 20:00:00;116.2 -2013-08-02 23:00:00;115.6 -2013-08-03 17:00:00;111.5 -2013-08-03 20:00:00;110.5 -2013-08-03 23:00:00;111.2 -2013-08-04 17:00:00;108.4 -2013-08-04 20:00:00;107.9 -2013-08-04 23:00:00;108.9 -2013-08-05 17:00:00;107.3 -2013-08-05 20:00:00;107.3 -2013-08-05 23:00:00;107.3 -2013-08-06 17:00:00;107.2 -2013-08-06 20:00:00;106.8 -2013-08-06 23:00:00;107.0 -2013-08-07 17:00:00;106.9 -2013-08-07 20:00:00;108.5 -2013-08-07 23:00:00;107.5 -2013-08-08 17:00:00;106.1 -2013-08-08 20:00:00;107.3 -2013-08-08 23:00:00;107.0 -2013-08-09 17:00:00;106.0 -2013-08-09 20:00:00;106.5 -2013-08-09 23:00:00;106.4 -2013-08-10 17:00:00;106.0 -2013-08-10 20:00:00;105.3 -2013-08-10 23:00:00;105.9 -2013-08-11 17:00:00;112.6 -2013-08-11 20:00:00;113.4 -2013-08-11 23:00:00;114.0 -2013-08-12 17:00:00;114.8 -2013-08-12 20:00:00;117.2 -2013-08-12 23:00:00;118.7 -2013-08-13 17:00:00;124.0 -2013-08-13 20:00:00;125.1 -2013-08-13 23:00:00;125.4 -2013-08-14 17:00:00;127.3 -2013-08-14 20:00:00;128.5 -2013-08-14 23:00:00;122.5 -2013-08-15 17:00:00;125.3 -2013-08-15 20:00:00;125.8 -2013-08-15 23:00:00;127.2 -2013-08-16 17:00:00;124.0 -2013-08-16 20:00:00;122.9 -2013-08-16 23:00:00;123.7 -2013-08-17 17:00:00;126.3 -2013-08-17 20:00:00;153.4 -2013-08-17 23:00:00;132.2 -2013-08-18 17:00:00;127.2 -2013-08-18 20:00:00;129.2 -2013-08-18 23:00:00;132.0 -2013-08-19 17:00:00;129.5 -2013-08-19 20:00:00;131.4 -2013-08-19 23:00:00;132.6 -2013-08-20 17:00:00;137.2 -2013-08-20 20:00:00;134.6 -2013-08-20 23:00:00;132.9 -2013-08-21 17:00:00;135.3 -2013-08-21 20:00:00;133.4 -2013-08-21 23:00:00;131.4 -2013-08-22 17:00:00;134.9 -2013-08-22 20:00:00;134.5 -2013-08-22 23:00:00;132.8 -2013-08-23 17:00:00;130.0 -2013-08-23 20:00:00;126.8 -2013-08-23 23:00:00;126.2 -2013-08-24 17:00:00;119.3 -2013-08-24 20:00:00;119.9 -2013-08-24 23:00:00;119.2 -2013-08-25 17:00:00;114.3 -2013-08-25 20:00:00;115.0 -2013-08-25 23:00:00;115.2 -2013-08-26 17:00:00;114.0 -2013-08-26 20:00:00;113.5 -2013-08-26 23:00:00;113.3 -2013-08-27 17:00:00;113.0 -2013-08-27 20:00:00;111.9 -2013-08-27 23:00:00;111.2 -2013-08-28 17:00:00;110.8 -2013-08-28 20:00:00;110.3 -2013-08-28 23:00:00;110.0 -2013-08-29 17:00:00;112.1 -2013-08-29 20:00:00;111.0 -2013-08-29 23:00:00;108.7 -2013-08-30 17:00:00;109.8 -2013-08-30 20:00:00;109.5 -2013-08-30 23:00:00;110.8 -2013-08-31 17:00:00;107.8 -2013-08-31 20:00:00;109.5 -2013-08-31 23:00:00;109.7 -2013-09-01 17:00:00;107.1 -2013-09-01 20:00:00;105.6 -2013-09-01 23:00:00;106.7 -2013-09-02 17:00:00;108.4 -2013-09-02 20:00:00;107.5 -2013-09-02 23:00:00;108.0 -2013-09-03 17:00:00;107.4 -2013-09-03 20:00:00;107.9 -2013-09-03 23:00:00;109.9 -2013-09-04 17:00:00;108.5 -2013-09-04 20:00:00;111.1 -2013-09-04 23:00:00;111.5 -2013-09-05 17:00:00;111.8 -2013-09-05 20:00:00;111.9 -2013-09-05 23:00:00;111.6 -2013-09-06 17:00:00;105.2 -2013-09-06 20:00:00;102.9 -2013-09-06 23:00:00;103.3 -2013-09-07 17:00:00;100.8 -2013-09-07 20:00:00;100.0 -2013-09-07 23:00:00;100.2 -2013-09-08 17:00:00;97.6 -2013-09-08 20:00:00;97.1 -2013-09-08 23:00:00;97.4 -2013-09-09 17:00:00;96.0 -2013-09-09 20:00:00;95.6 -2013-09-09 23:00:00;95.3 -2013-09-10 17:00:00;96.9 -2013-09-10 20:00:00;96.2 -2013-09-10 23:00:00;95.6 -2013-09-11 17:00:00;94.0 -2013-09-11 20:00:00;94.1 -2013-09-11 23:00:00;93.7 -2013-09-12 17:00:00;93.6 -2013-09-12 20:00:00;94.1 -2013-09-12 23:00:00;93.4 -2013-09-13 17:00:00;93.3 -2013-09-13 20:00:00;92.7 -2013-09-13 23:00:00;92.8 -2013-09-14 17:00:00;93.1 -2013-09-14 20:00:00;93.6 -2013-09-14 23:00:00;93.1 -2013-09-15 17:00:00;93.4 -2013-09-15 20:00:00;93.8 -2013-09-15 23:00:00;93.9 -2013-09-16 17:00:00;95.3 -2013-09-16 20:00:00;95.5 -2013-09-16 23:00:00;96.7 -2013-09-17 17:00:00;99.6 -2013-09-17 20:00:00;99.7 -2013-09-17 23:00:00;99.2 -2013-09-18 17:00:00;103.2 -2013-09-18 20:00:00;105.1 -2013-09-18 23:00:00;105.7 -2013-09-19 17:00:00;108.9 -2013-09-19 20:00:00;108.9 -2013-09-19 23:00:00;109.0 -2013-09-20 17:00:00;109.7 -2013-09-20 20:00:00;110.0 -2013-09-20 23:00:00;110.8 -2013-09-21 17:00:00;111.2 -2013-09-21 20:00:00;111.2 -2013-09-21 23:00:00;110.2 -2013-09-22 17:00:00;111.4 -2013-09-22 20:00:00;111.9 -2013-09-22 23:00:00;111.7 -2013-09-23 17:00:00;108.7 -2013-09-23 20:00:00;108.5 -2013-09-23 23:00:00;108.8 -2013-09-24 17:00:00;109.4 -2013-09-24 20:00:00;110.9 -2013-09-24 23:00:00;113.7 -2013-09-25 17:00:00;111.5 -2013-09-25 20:00:00;111.7 -2013-09-25 23:00:00;113.6 -2013-09-26 17:00:00;111.0 -2013-09-26 20:00:00;110.5 -2013-09-26 23:00:00;110.5 -2013-09-27 17:00:00;107.6 -2013-09-27 20:00:00;108.3 -2013-09-27 23:00:00;108.8 -2013-09-28 17:00:00;106.8 -2013-09-28 20:00:00;106.0 -2013-09-28 23:00:00;104.8 -2013-09-29 17:00:00;104.6 -2013-09-29 20:00:00;103.4 -2013-09-29 23:00:00;114.7 -2013-09-30 17:00:00;104.8 -2013-09-30 20:00:00;105.2 -2013-09-30 23:00:00;105.6 -2013-10-01 17:00:00;106.1 -2013-10-01 20:00:00;107.0 -2013-10-01 23:00:00;107.6 -2013-10-02 17:00:00;107.3 -2013-10-02 20:00:00;108.3 -2013-10-02 23:00:00;112.7 -2013-10-03 17:00:00;111.0 -2013-10-03 20:00:00;113.9 -2013-10-03 23:00:00;111.0 -2013-10-04 17:00:00;109.2 -2013-10-04 20:00:00;109.2 -2013-10-04 23:00:00;108.1 -2013-10-05 17:00:00;107.1 -2013-10-05 20:00:00;105.9 -2013-10-05 23:00:00;105.9 -2013-10-06 17:00:00;107.3 -2013-10-06 20:00:00;106.5 -2013-10-06 23:00:00;107.6 -2013-10-07 17:00:00;113.7 -2013-10-07 20:00:00;111.8 -2013-10-07 23:00:00;110.8 -2013-10-08 17:00:00;114.5 -2013-10-08 20:00:00;111.7 -2013-10-08 23:00:00;114.9 -2013-10-09 17:00:00;113.3 -2013-10-09 20:00:00;113.1 -2013-10-09 23:00:00;115.5 -2013-10-10 17:00:00;120.9 -2013-10-10 20:00:00;120.3 -2013-10-10 23:00:00;122.6 -2013-10-11 17:00:00;127.2 -2013-10-11 20:00:00;128.5 -2013-10-11 23:00:00;128.0 -2013-10-12 17:00:00;129.0 -2013-10-12 20:00:00;127.3 -2013-10-12 23:00:00;131.0 -2013-10-13 17:00:00;129.4 -2013-10-13 20:00:00;128.6 -2013-10-13 23:00:00;127.7 -2013-10-14 17:00:00;126.1 -2013-10-14 20:00:00;124.3 -2013-10-14 23:00:00;129.9 -2013-10-15 17:00:00;129.9 -2013-10-15 20:00:00;124.5 -2013-10-15 23:00:00;123.3 -2013-10-16 17:00:00;128.5 -2013-10-16 20:00:00;127.2 -2013-10-16 23:00:00;129.4 -2013-10-17 17:00:00;136.4 -2013-10-17 20:00:00;135.1 -2013-10-17 23:00:00;136.1 -2013-10-18 17:00:00;139.7 -2013-10-18 20:00:00;138.8 -2013-10-18 23:00:00;138.1 -2013-10-19 17:00:00;132.5 -2013-10-19 20:00:00;131.6 -2013-10-19 23:00:00;132.6 -2013-10-20 17:00:00;133.9 -2013-10-20 20:00:00;132.2 -2013-10-20 23:00:00;132.1 -2013-10-21 17:00:00;135.7 -2013-10-21 20:00:00;134.5 -2013-10-21 23:00:00;136.6 -2013-10-22 17:00:00;141.6 -2013-10-22 20:00:00;144.8 -2013-10-22 23:00:00;145.5 -2013-10-23 17:00:00;151.2 -2013-10-23 20:00:00;151.1 -2013-10-23 23:00:00;154.6 -2013-10-24 17:00:00;162.2 -2013-10-24 20:00:00;158.8 -2013-10-24 23:00:00;159.4 -2013-10-25 17:00:00;169.4 -2013-10-25 20:00:00;159.6 -2013-10-25 23:00:00;158.2 -2013-10-26 17:00:00;158.2 -2013-10-26 20:00:00;169.7 -2013-10-26 23:00:00;158.0 -2013-10-27 17:00:00;165.6 -2013-10-27 20:00:00;164.8 -2013-10-27 23:00:00;163.5 -2013-10-28 17:00:00;159.7 -2013-10-28 20:00:00;157.8 -2013-10-28 23:00:00;157.0 -2013-10-29 17:00:00;154.4 -2013-10-29 20:00:00;150.6 -2013-10-29 23:00:00;151.7 -2013-10-30 17:00:00;141.4 -2013-10-30 20:00:00;139.9 -2013-10-30 23:00:00;139.4 -2013-10-31 17:00:00;147.2 -2013-10-31 20:00:00;140.5 -2013-11-01 18:00:00;140.8 -2013-11-01 20:00:00;144.2 -2013-11-01 22:00:00;148.4 -2013-11-02 18:00:00;138.8 -2013-11-02 20:00:00;139.4 -2013-11-02 22:00:00;146.9 -2013-11-03 18:00:00;139.2 -2013-11-03 20:00:00;141.1 -2013-11-03 22:00:00;141.5 -2013-11-04 18:00:00;146.0 -2013-11-04 20:00:00;144.9 -2013-11-04 22:00:00;147.2 -2013-11-05 18:00:00;137.5 -2013-11-05 20:00:00;145.9 -2013-11-05 22:00:00;168.0 -2013-11-06 18:00:00;152.5 -2013-11-06 20:00:00;150.8 -2013-11-06 22:00:00;152.2 -2013-11-07 18:00:00;145.9 -2013-11-07 20:00:00;145.3 -2013-11-07 22:00:00;142.3 -2013-11-08 18:00:00;144.5 -2013-11-08 20:00:00;143.3 -2013-11-08 22:00:00;142.7 -2013-11-09 18:00:00;145.8 -2013-11-09 20:00:00;145.2 -2013-11-09 22:00:00;145.8 -2013-11-10 18:00:00;148.7 -2013-11-10 20:00:00;151.1 -2013-11-10 22:00:00;150.0 -2013-11-11 18:00:00;159.3 -2013-11-11 20:00:00;160.4 -2013-11-11 22:00:00;163.9 -2013-11-12 18:00:00;162.4 -2013-11-12 20:00:00;164.0 -2013-11-12 22:00:00;162.6 -2013-11-13 18:00:00;167.3 -2013-11-13 20:00:00;167.4 -2013-11-13 22:00:00;165.1 -2013-11-14 18:00:00;173.5 -2013-11-14 20:00:00;172.0 -2013-11-14 22:00:00;173.5 -2013-11-15 18:00:00;175.8 -2013-11-15 20:00:00;174.0 -2013-11-15 22:00:00;173.4 -2013-11-16 18:00:00;175.7 -2013-11-16 20:00:00;170.6 -2013-11-16 22:00:00;172.6 -2013-11-17 18:00:00;174.7 -2013-11-17 20:00:00;172.9 -2013-11-17 22:00:00;170.0 -2013-11-18 18:00:00;161.4 -2013-11-18 20:00:00;159.5 -2013-11-18 22:00:00;160.5 -2013-11-19 18:00:00;147.7 -2013-11-19 20:00:00;149.3 -2013-11-19 22:00:00;149.2 -2013-11-20 18:00:00;150.2 -2013-11-20 20:00:00;143.5 -2013-11-20 22:00:00;142.3 -2013-11-21 18:00:00;138.6 -2013-11-21 20:00:00;137.8 -2013-11-21 22:00:00;136.7 -2013-11-22 18:00:00;140.3 -2013-11-22 20:00:00;139.2 -2013-11-22 22:00:00;139.7 -2013-11-23 18:00:00;137.6 -2013-11-23 20:00:00;132.2 -2013-11-23 22:00:00;130.6 -2013-11-24 18:00:00;126.3 -2013-11-24 20:00:00;123.9 -2013-11-24 22:00:00;123.9 -2013-11-25 18:00:00;116.5 -2013-11-25 20:00:00;116.0 -2013-11-25 22:00:00;114.9 -2013-11-26 18:00:00;112.4 -2013-11-26 20:00:00;112.4 -2013-11-26 22:00:00;110.9 -2013-11-27 18:00:00;124.8 -2013-11-27 20:00:00;125.6 -2013-11-27 22:00:00;126.6 -2013-11-28 18:00:00;127.7 -2013-11-28 20:00:00;129.3 -2013-11-28 22:00:00;126.8 -2013-11-29 18:00:00;123.9 -2013-11-29 20:00:00;125.0 -2013-11-29 22:00:00;125.1 -2013-11-30 18:00:00;127.3 -2013-11-30 20:00:00;127.6 -2013-11-30 22:00:00;129.4 -2013-12-01 18:00:00;125.3 -2013-12-01 20:00:00;126.9 -2013-12-01 22:00:00;127.4 -2013-12-02 18:00:00;127.5 -2013-12-02 20:00:00;130.0 -2013-12-02 22:00:00;131.3 -2013-12-03 18:00:00;131.1 -2013-12-03 20:00:00;131.9 -2013-12-03 22:00:00;132.1 -2013-12-04 18:00:00;133.8 -2013-12-04 20:00:00;134.0 -2013-12-04 22:00:00;133.4 -2013-12-05 18:00:00;152.4 -2013-12-05 20:00:00;145.3 -2013-12-05 22:00:00;151.5 -2013-12-06 18:00:00;146.2 -2013-12-06 20:00:00;146.1 -2013-12-06 22:00:00;146.1 -2013-12-07 18:00:00;153.9 -2013-12-07 20:00:00;152.3 -2013-12-07 22:00:00;153.3 -2013-12-08 18:00:00;158.1 -2013-12-08 20:00:00;160.6 -2013-12-08 22:00:00;159.2 -2013-12-09 18:00:00;162.3 -2013-12-09 20:00:00;163.1 -2013-12-09 22:00:00;165.7 -2013-12-10 18:00:00;167.4 -2013-12-10 20:00:00;169.9 -2013-12-10 22:00:00;170.8 -2013-12-11 18:00:00;164.9 -2013-12-11 20:00:00;165.6 -2013-12-11 22:00:00;164.4 -2013-12-12 18:00:00;158.7 -2013-12-12 20:00:00;159.8 -2013-12-12 22:00:00;158.6 -2013-12-13 18:00:00;160.2 -2013-12-13 20:00:00;158.1 -2013-12-13 22:00:00;157.6 -2013-12-14 18:00:00;155.8 -2013-12-14 20:00:00;159.0 -2013-12-14 22:00:00;159.2 -2013-12-15 18:00:00;151.4 -2013-12-15 20:00:00;151.3 -2013-12-15 22:00:00;151.7 -2013-12-16 18:00:00;150.3 -2013-12-16 20:00:00;149.4 -2013-12-16 22:00:00;153.8 -2013-12-17 18:00:00;154.0 -2013-12-17 20:00:00;153.9 -2013-12-17 22:00:00;151.9 -2013-12-18 18:00:00;152.2 -2013-12-18 20:00:00;151.1 -2013-12-18 22:00:00;151.1 -2013-12-19 18:00:00;149.9 -2013-12-19 20:00:00;148.5 -2013-12-19 22:00:00;147.8 -2013-12-20 18:00:00;147.2 -2013-12-20 20:00:00;144.4 -2013-12-20 22:00:00;146.1 -2013-12-21 18:00:00;140.9 -2013-12-21 20:00:00;139.5 -2013-12-21 22:00:00;140.2 -2013-12-22 18:00:00;133.5 -2013-12-22 20:00:00;133.4 -2013-12-22 22:00:00;134.1 -2013-12-23 18:00:00;132.8 -2013-12-23 20:00:00;131.6 -2013-12-23 22:00:00;131.0 -2013-12-24 18:00:00;124.8 -2013-12-24 20:00:00;124.1 -2013-12-24 22:00:00;124.4 -2013-12-25 18:00:00;119.3 -2013-12-25 20:00:00;118.7 -2013-12-25 22:00:00;119.4 -2013-12-26 18:00:00;121.1 -2013-12-26 20:00:00;120.6 -2013-12-26 22:00:00;120.3 -2013-12-27 18:00:00;125.0 -2013-12-27 20:00:00;126.3 -2013-12-27 22:00:00;126.7 -2013-12-28 18:00:00;130.5 -2013-12-28 20:00:00;130.1 -2013-12-28 22:00:00;129.7 -2013-12-29 18:00:00;131.3 -2013-12-29 20:00:00;132.5 -2013-12-29 22:00:00;131.5 -2013-12-30 18:00:00;138.7 -2013-12-30 20:00:00;138.2 -2013-12-30 22:00:00;138.3 -2013-12-31 18:00:00;140.5 -2013-12-31 20:00:00;140.5 -2013-12-31 22:00:00;158.3 -2014-01-01 18:00:00;152.6 -2014-01-01 20:00:00;154.3 -2014-01-01 22:00:00;163.9 -2014-01-02 18:00:00;155.8 -2014-01-02 20:00:00;155.2 -2014-01-02 22:00:00;157.7 -2014-01-03 18:00:00;169.9 -2014-01-03 20:00:00;176.3 -2014-01-03 22:00:00;176.2 -2014-01-04 18:00:00;206.2 -2014-01-04 20:00:00;253.3 -2014-01-04 22:00:00;211.1 -2014-01-05 18:00:00;203.6 -2014-01-05 20:00:00;210.3 -2014-01-05 22:00:00;214.7 -2014-01-06 18:00:00;197.6 -2014-01-06 20:00:00;197.2 -2014-01-06 22:00:00;201.6 -2014-01-07 18:00:00;572.8 -2014-01-07 20:00:00;229.3 -2014-01-07 22:00:00;193.3 -2014-01-08 18:00:00;188.3 -2014-01-08 20:00:00;188.2 -2014-01-08 22:00:00;186.9 -2014-01-09 18:00:00;177.4 -2014-01-09 20:00:00;178.1 -2014-01-09 22:00:00;175.2 -2014-01-10 18:00:00;168.9 -2014-01-10 20:00:00;169.4 -2014-01-10 22:00:00;169.1 -2014-01-11 18:00:00;161.2 -2014-01-11 20:00:00;160.7 -2014-01-11 22:00:00;159.2 -2014-01-12 18:00:00;151.5 -2014-01-12 20:00:00;150.2 -2014-01-12 22:00:00;148.4 -2014-01-13 18:00:00;140.0 -2014-01-13 20:00:00;138.7 -2014-01-13 22:00:00;139.7 -2014-01-14 18:00:00;134.2 -2014-01-14 20:00:00;132.6 -2014-01-14 22:00:00;131.8 -2014-01-15 18:00:00;123.3 -2014-01-15 20:00:00;122.1 -2014-01-15 22:00:00;120.6 -2014-01-16 18:00:00;116.4 -2014-01-16 20:00:00;117.1 -2014-01-16 22:00:00;117.8 -2014-01-17 18:00:00;120.6 -2014-01-17 20:00:00;124.7 -2014-01-17 22:00:00;121.6 -2014-01-18 18:00:00;123.5 -2014-01-18 20:00:00;125.5 -2014-01-18 22:00:00;123.4 -2014-01-19 18:00:00;123.6 -2014-01-19 20:00:00;123.4 -2014-01-19 22:00:00;123.2 -2014-01-20 18:00:00;134.3 -2014-01-20 20:00:00;133.0 -2014-01-20 22:00:00;135.9 -2014-01-21 18:00:00;144.1 -2014-01-21 20:00:00;141.4 -2014-01-21 22:00:00;141.5 -2014-01-22 18:00:00;139.7 -2014-01-22 20:00:00;138.9 -2014-01-22 22:00:00;137.9 -2014-01-23 18:00:00;133.0 -2014-01-23 20:00:00;132.1 -2014-01-23 22:00:00;131.2 -2014-01-24 18:00:00;131.4 -2014-01-24 20:00:00;131.3 -2014-01-24 22:00:00;131.6 -2014-01-25 18:00:00;130.0 -2014-01-25 20:00:00;129.1 -2014-01-25 22:00:00;128.3 -2014-01-26 18:00:00;132.4 -2014-01-26 20:00:00;133.7 -2014-01-26 22:00:00;135.4 -2014-01-27 18:00:00;134.8 -2014-01-27 20:00:00;139.6 -2014-01-27 22:00:00;138.1 -2014-01-28 18:00:00;149.6 -2014-01-28 20:00:00;152.5 -2014-01-28 22:00:00;153.1 -2014-01-29 18:00:00;154.2 -2014-01-29 20:00:00;151.8 -2014-01-29 22:00:00;153.6 -2014-01-30 18:00:00;162.2 -2014-01-30 20:00:00;155.8 -2014-01-30 22:00:00;156.3 -2014-01-31 18:00:00;164.7 -2014-01-31 20:00:00;160.9 -2014-01-31 22:00:00;164.3 -2014-02-01 18:00:00;170.0 -2014-02-01 20:00:00;171.6 -2014-02-01 22:00:00;172.0 -2014-02-02 18:00:00;187.5 -2014-02-02 20:00:00;184.4 -2014-02-02 22:00:00;189.1 -2014-02-03 18:00:00;180.7 -2014-02-03 20:00:00;183.0 -2014-02-03 22:00:00;185.0 -2014-02-04 18:00:00;192.4 -2014-02-04 20:00:00;182.9 -2014-02-04 22:00:00;191.9 -2014-02-05 18:00:00;188.2 -2014-02-05 20:00:00;188.1 -2014-02-05 22:00:00;187.7 -2014-02-06 18:00:00;185.8 -2014-02-06 20:00:00;186.1 -2014-02-06 22:00:00;185.1 -2014-02-07 18:00:00;173.9 -2014-02-07 20:00:00;173.2 -2014-02-07 22:00:00;174.1 -2014-02-08 18:00:00;163.4 -2014-02-08 20:00:00;167.2 -2014-02-08 22:00:00;165.7 -2014-02-09 18:00:00;166.7 -2014-02-09 20:00:00;164.6 -2014-02-09 22:00:00;163.8 -2014-02-10 18:00:00;158.2 -2014-02-10 20:00:00;156.8 -2014-02-10 22:00:00;155.5 -2014-02-11 18:00:00;167.4 -2014-02-11 20:00:00;167.8 -2014-02-11 22:00:00;164.5 -2014-02-12 18:00:00;162.5 -2014-02-12 20:00:00;156.1 -2014-02-12 22:00:00;154.6 -2014-02-13 18:00:00;160.2 -2014-02-13 20:00:00;162.5 -2014-02-13 22:00:00;157.6 -2014-02-14 18:00:00;144.5 -2014-02-14 20:00:00;162.5 -2014-02-14 22:00:00;162.8 -2014-02-15 18:00:00;155.0 -2014-02-15 20:00:00;158.1 -2014-02-15 22:00:00;156.8 -2014-02-16 18:00:00;150.0 -2014-02-16 20:00:00;150.2 -2014-02-16 22:00:00;147.6 -2014-02-17 18:00:00;151.6 -2014-02-17 20:00:00;148.9 -2014-02-17 22:00:00;149.9 -2014-02-18 18:00:00;148.0 -2014-02-18 20:00:00;147.9 -2014-02-18 22:00:00;150.2 -2014-02-19 18:00:00;153.7 -2014-02-19 20:00:00;154.2 -2014-02-19 22:00:00;150.0 -2014-02-20 18:00:00;151.2 -2014-02-20 20:00:00;153.0 -2014-02-20 22:00:00;152.5 -2014-02-21 18:00:00;153.4 -2014-02-21 20:00:00;153.4 -2014-02-21 22:00:00;152.0 -2014-02-22 18:00:00;159.0 -2014-02-22 20:00:00;159.7 -2014-02-22 22:00:00;159.7 -2014-02-23 18:00:00;164.5 -2014-02-23 20:00:00;168.2 -2014-02-23 22:00:00;168.0 -2014-02-24 18:00:00;166.4 -2014-02-24 20:00:00;167.2 -2014-02-24 22:00:00;164.3 -2014-02-25 18:00:00;169.4 -2014-02-25 20:00:00;170.4 -2014-02-25 22:00:00;170.8 -2014-02-26 18:00:00;179.6 -2014-02-26 20:00:00;174.7 -2014-02-26 22:00:00;175.5 -2014-02-27 18:00:00;172.8 -2014-02-27 20:00:00;172.4 -2014-02-27 22:00:00;176.2 -2014-02-28 18:00:00;165.8 -2014-02-28 20:00:00;167.5 -2014-02-28 22:00:00;167.8 -2014-03-01 17:00:00;165.4 -2014-03-01 20:00:00;161.6 -2014-03-01 23:00:00;159.0 -2014-03-02 17:00:00;164.2 -2014-03-02 20:00:00;158.5 -2014-03-02 23:00:00;162.0 -2014-03-03 17:00:00;163.1 -2014-03-03 20:00:00;158.3 -2014-03-03 23:00:00;160.3 -2014-03-04 17:00:00;153.6 -2014-03-04 20:00:00;155.4 -2014-03-04 23:00:00;156.6 -2014-03-05 17:00:00;148.3 -2014-03-05 20:00:00;146.7 -2014-03-05 23:00:00;148.0 -2014-03-06 17:00:00;146.4 -2014-03-06 20:00:00;146.5 -2014-03-06 23:00:00;145.5 -2014-03-07 17:00:00;145.3 -2014-03-07 20:00:00;146.0 -2014-03-07 23:00:00;141.7 -2014-03-08 17:00:00;139.7 -2014-03-08 20:00:00;139.5 -2014-03-08 23:00:00;141.1 -2014-03-09 17:00:00;143.2 -2014-03-09 20:00:00;143.8 -2014-03-09 23:00:00;141.5 -2014-03-10 17:00:00;150.9 -2014-03-10 20:00:00;149.5 -2014-03-10 23:00:00;158.9 -2014-03-11 17:00:00;161.5 -2014-03-11 20:00:00;162.5 -2014-03-11 23:00:00;154.2 -2014-03-12 17:00:00;148.5 -2014-03-12 20:00:00;145.8 -2014-03-12 23:00:00;167.1 -2014-03-13 17:00:00;142.9 -2014-03-13 20:00:00;145.9 -2014-03-13 23:00:00;141.8 -2014-03-14 17:00:00;142.9 -2014-03-14 20:00:00;142.1 -2014-03-14 23:00:00;142.2 -2014-03-15 17:00:00;140.6 -2014-03-15 20:00:00;137.5 -2014-03-15 23:00:00;138.1 -2014-03-16 17:00:00;136.0 -2014-03-16 20:00:00;134.2 -2014-03-16 23:00:00;136.0 -2014-03-17 17:00:00;136.7 -2014-03-17 20:00:00;135.1 -2014-03-17 23:00:00;135.1 -2014-03-18 17:00:00;140.1 -2014-03-18 20:00:00;137.0 -2014-03-18 23:00:00;142.4 -2014-03-19 17:00:00;144.9 -2014-03-19 20:00:00;147.9 -2014-03-19 23:00:00;145.0 -2014-03-20 17:00:00;150.0 -2014-03-20 20:00:00;150.1 -2014-03-20 23:00:00;150.1 -2014-03-21 17:00:00;150.9 -2014-03-21 20:00:00;151.4 -2014-03-21 23:00:00;148.4 -2014-03-22 17:00:00;155.4 -2014-03-22 20:00:00;153.8 -2014-03-22 23:00:00;152.9 -2014-03-23 17:00:00;155.8 -2014-03-23 20:00:00;156.0 -2014-03-23 23:00:00;157.8 -2014-03-24 17:00:00;157.1 -2014-03-24 20:00:00;157.7 -2014-03-24 23:00:00;156.7 -2014-03-25 17:00:00;152.7 -2014-03-25 20:00:00;152.0 -2014-03-25 23:00:00;150.8 -2014-03-26 17:00:00;152.7 -2014-03-26 20:00:00;152.5 -2014-03-26 23:00:00;151.4 -2014-03-27 17:00:00;147.6 -2014-03-27 20:00:00;144.2 -2014-03-27 23:00:00;143.6 -2014-03-28 17:00:00;145.6 -2014-03-28 20:00:00;145.9 -2014-03-28 23:00:00;146.2 -2014-03-29 17:00:00;144.9 -2014-03-29 20:00:00;142.3 -2014-03-29 23:00:00;145.8 -2014-03-30 17:00:00;148.7 -2014-03-30 20:00:00;148.1 -2014-03-30 23:00:00;150.6 -2014-03-31 17:00:00;155.5 -2014-03-31 20:00:00;152.1 -2014-03-31 23:00:00;152.0 -2014-04-01 17:00:00;151.1 -2014-04-01 20:00:00;153.1 -2014-04-01 23:00:00;150.8 -2014-04-02 17:00:00;161.6 -2014-04-02 20:00:00;154.6 -2014-04-02 23:00:00;155.9 -2014-04-03 17:00:00;152.3 -2014-04-03 20:00:00;153.0 -2014-04-03 23:00:00;154.2 -2014-04-04 17:00:00;157.4 -2014-04-04 20:00:00;157.0 -2014-04-04 23:00:00;153.5 -2014-04-05 17:00:00;145.2 -2014-04-05 20:00:00;142.3 -2014-04-05 23:00:00;140.1 -2014-04-06 17:00:00;138.8 -2014-04-06 20:00:00;141.2 -2014-04-06 23:00:00;141.3 -2014-04-07 17:00:00;140.6 -2014-04-07 20:00:00;140.2 -2014-04-07 23:00:00;136.8 -2014-04-08 17:00:00;130.7 -2014-04-08 20:00:00;132.4 -2014-04-08 23:00:00;132.6 -2014-04-09 17:00:00;130.8 -2014-04-09 20:00:00;131.0 -2014-04-09 23:00:00;131.5 -2014-04-10 17:00:00;136.7 -2014-04-10 20:00:00;137.3 -2014-04-10 23:00:00;137.6 -2014-04-11 17:00:00;138.4 -2014-04-11 20:00:00;138.2 -2014-04-11 23:00:00;135.1 -2014-04-12 17:00:00;137.3 -2014-04-12 20:00:00;136.5 -2014-04-12 23:00:00;137.7 -2014-04-13 17:00:00;136.2 -2014-04-13 20:00:00;137.9 -2014-04-13 23:00:00;139.7 -2014-04-14 17:00:00;149.7 -2014-04-14 20:00:00;151.2 -2014-04-14 23:00:00;150.7 -2014-04-15 17:00:00;161.4 -2014-04-15 20:00:00;163.0 -2014-04-15 23:00:00;165.2 -2014-04-16 17:00:00;174.3 -2014-04-16 20:00:00;185.2 -2014-04-16 23:00:00;176.7 -2014-04-17 17:00:00;179.9 -2014-04-17 20:00:00;180.3 -2014-04-17 23:00:00;191.2 -2014-04-18 17:00:00;173.0 -2014-04-18 20:00:00;173.7 -2014-04-18 23:00:00;171.3 -2014-04-19 17:00:00;172.3 -2014-04-19 20:00:00;170.8 -2014-04-19 23:00:00;168.2 -2014-04-20 17:00:00;162.7 -2014-04-20 20:00:00;164.1 -2014-04-20 23:00:00;161.2 -2014-04-21 17:00:00;152.9 -2014-04-21 20:00:00;160.4 -2014-04-21 23:00:00;158.4 -2014-04-22 17:00:00;151.5 -2014-04-22 20:00:00;146.3 -2014-04-22 23:00:00;148.3 -2014-04-23 17:00:00;137.2 -2014-04-23 20:00:00;137.6 -2014-04-23 23:00:00;135.5 -2014-04-24 17:00:00;131.4 -2014-04-24 20:00:00;131.6 -2014-04-24 23:00:00;131.8 -2014-04-25 17:00:00;126.0 -2014-04-25 20:00:00;126.2 -2014-04-25 23:00:00;125.2 -2014-04-26 17:00:00;122.2 -2014-04-26 20:00:00;122.3 -2014-04-26 23:00:00;121.6 -2014-04-27 17:00:00;119.1 -2014-04-27 20:00:00;119.6 -2014-04-27 23:00:00;120.0 -2014-04-28 17:00:00;121.9 -2014-04-28 20:00:00;122.5 -2014-04-28 23:00:00;123.0 -2014-04-29 17:00:00;122.2 -2014-04-29 20:00:00;121.8 -2014-04-29 23:00:00;126.5 -2014-04-30 17:00:00;124.5 -2014-04-30 20:00:00;125.5 -2014-04-30 23:00:00;124.9 -2014-05-01 17:00:00;125.5 -2014-05-01 20:00:00;127.7 -2014-05-01 23:00:00;128.1 -2014-05-02 17:00:00;136.5 -2014-05-02 20:00:00;137.6 -2014-05-02 23:00:00;139.1 -2014-05-03 17:00:00;136.4 -2014-05-03 20:00:00;134.8 -2014-05-03 23:00:00;134.2 -2014-05-04 17:00:00;134.6 -2014-05-04 20:00:00;133.7 -2014-05-04 23:00:00;133.5 -2014-05-05 17:00:00;137.8 -2014-05-05 20:00:00;141.5 -2014-05-05 23:00:00;140.3 -2014-05-06 17:00:00;140.3 -2014-05-06 20:00:00;141.3 -2014-05-06 23:00:00;146.9 -2014-05-07 17:00:00;147.6 -2014-05-07 20:00:00;148.6 -2014-05-07 23:00:00;146.2 -2014-05-08 17:00:00;152.1 -2014-05-08 20:00:00;150.8 -2014-05-08 23:00:00;149.7 -2014-05-09 17:00:00;152.0 -2014-05-09 20:00:00;155.2 -2014-05-09 23:00:00;154.5 -2014-05-10 17:00:00;156.1 -2014-05-10 20:00:00;155.1 -2014-05-10 23:00:00;157.9 -2014-05-11 17:00:00;164.2 -2014-05-11 20:00:00;167.7 -2014-05-11 23:00:00;167.6 -2014-05-12 17:00:00;163.2 -2014-05-12 20:00:00;166.3 -2014-05-12 23:00:00;163.0 -2014-05-13 17:00:00;160.9 -2014-05-13 20:00:00;162.7 -2014-05-13 23:00:00;172.1 -2014-05-14 17:00:00;170.4 -2014-05-14 20:00:00;166.7 -2014-05-14 23:00:00;163.9 -2014-05-15 17:00:00;155.2 -2014-05-15 20:00:00;155.5 -2014-05-15 23:00:00;153.4 -2014-05-16 17:00:00;141.8 -2014-05-16 20:00:00;141.8 -2014-05-16 23:00:00;142.4 -2014-05-17 17:00:00;136.9 -2014-05-17 20:00:00;136.6 -2014-05-17 23:00:00;135.9 -2014-05-18 17:00:00;132.5 -2014-05-18 20:00:00;130.4 -2014-05-18 23:00:00;128.5 -2014-05-19 17:00:00;119.9 -2014-05-19 20:00:00;119.7 -2014-05-19 23:00:00;119.8 -2014-05-20 17:00:00;120.3 -2014-05-20 20:00:00;120.1 -2014-05-20 23:00:00;120.5 -2014-05-21 17:00:00;116.8 -2014-05-21 20:00:00;116.7 -2014-05-21 23:00:00;115.7 -2014-05-22 17:00:00;114.3 -2014-05-22 20:00:00;114.1 -2014-05-22 23:00:00;116.5 -2014-05-23 17:00:00;118.8 -2014-05-23 20:00:00;119.2 -2014-05-23 23:00:00;120.0 -2014-05-24 17:00:00;121.3 -2014-05-24 20:00:00;127.7 -2014-05-24 23:00:00;122.8 -2014-05-25 17:00:00;118.1 -2014-05-25 20:00:00;116.0 -2014-05-25 23:00:00;115.5 -2014-05-26 17:00:00;113.9 -2014-05-26 20:00:00;111.1 -2014-05-26 23:00:00;111.3 -2014-05-27 17:00:00;108.2 -2014-05-27 20:00:00;108.7 -2014-05-27 23:00:00;106.2 -2014-05-28 17:00:00;102.4 -2014-05-28 20:00:00;102.1 -2014-05-28 23:00:00;102.4 -2014-05-29 17:00:00;103.9 -2014-05-29 20:00:00;105.5 -2014-05-29 23:00:00;105.7 -2014-05-30 17:00:00;104.4 -2014-05-30 20:00:00;104.4 -2014-05-30 23:00:00;104.2 -2014-05-31 17:00:00;107.0 -2014-05-31 20:00:00;106.6 -2014-05-31 23:00:00;107.3 -2014-06-01 17:00:00;105.9 -2014-06-01 20:00:00;106.2 -2014-06-01 23:00:00;106.6 -2014-06-02 17:00:00;107.4 -2014-06-02 20:00:00;108.3 -2014-06-02 23:00:00;109.1 -2014-06-03 17:00:00;110.0 -2014-06-03 20:00:00;110.1 -2014-06-03 23:00:00;107.8 -2014-06-04 17:00:00;105.9 -2014-06-04 20:00:00;108.5 -2014-06-04 23:00:00;111.0 -2014-06-05 17:00:00;113.3 -2014-06-05 20:00:00;113.8 -2014-06-05 23:00:00;114.7 -2014-06-06 17:00:00;129.8 -2014-06-06 20:00:00;136.9 -2014-06-06 23:00:00;139.7 -2014-06-07 17:00:00;140.3 -2014-06-07 20:00:00;140.8 -2014-06-07 23:00:00;142.2 -2014-06-08 17:00:00;150.5 -2014-06-08 20:00:00;153.1 -2014-06-08 23:00:00;156.2 -2014-06-09 17:00:00;165.1 -2014-06-09 20:00:00;166.1 -2014-06-09 23:00:00;168.7 -2014-06-10 17:00:00;171.3 -2014-06-10 20:00:00;171.3 -2014-06-10 23:00:00;173.6 -2014-06-11 17:00:00;173.9 -2014-06-11 20:00:00;173.6 -2014-06-11 23:00:00;177.0 -2014-06-12 17:00:00;179.8 -2014-06-12 20:00:00;179.9 -2014-06-12 23:00:00;206.9 -2014-06-13 17:00:00;161.2 -2014-06-13 20:00:00;157.5 -2014-06-13 23:00:00;156.0 -2014-06-14 17:00:00;147.9 -2014-06-14 20:00:00;148.0 -2014-06-14 23:00:00;144.7 -2014-06-15 17:00:00;140.1 -2014-06-15 20:00:00;134.3 -2014-06-15 23:00:00;131.8 -2014-06-16 17:00:00;121.4 -2014-06-16 20:00:00;120.5 -2014-06-16 23:00:00;119.1 -2014-06-17 17:00:00;114.9 -2014-06-17 20:00:00;118.0 -2014-06-17 23:00:00;118.7 -2014-06-18 17:00:00;115.1 -2014-06-18 20:00:00;114.4 -2014-06-18 23:00:00;112.5 -2014-06-19 17:00:00;108.0 -2014-06-19 20:00:00;114.7 -2014-06-19 23:00:00;109.6 -2014-06-20 17:00:00;106.5 -2014-06-20 20:00:00;105.5 -2014-06-20 23:00:00;103.5 -2014-06-21 17:00:00;103.0 -2014-06-21 20:00:00;104.5 -2014-06-21 23:00:00;101.3 -2014-06-22 17:00:00;99.3 -2014-06-22 20:00:00;97.3 -2014-06-22 23:00:00;96.9 -2014-06-23 17:00:00;96.9 -2014-06-23 20:00:00;95.6 -2014-06-23 23:00:00;95.3 -2014-06-24 17:00:00;96.7 -2014-06-24 20:00:00;96.6 -2014-06-24 23:00:00;98.0 -2014-06-25 17:00:00;100.6 -2014-06-25 20:00:00;100.2 -2014-06-25 23:00:00;101.7 -2014-06-26 17:00:00;103.3 -2014-06-26 20:00:00;103.3 -2014-06-26 23:00:00;104.2 -2014-06-27 17:00:00;107.4 -2014-06-27 20:00:00;107.6 -2014-06-27 23:00:00;108.7 -2014-06-28 17:00:00;116.0 -2014-06-28 20:00:00;118.4 -2014-06-28 23:00:00;121.5 -2014-06-29 17:00:00;127.3 -2014-06-29 20:00:00;129.9 -2014-06-29 23:00:00;133.1 -2014-06-30 17:00:00;142.1 -2014-06-30 20:00:00;145.2 -2014-06-30 23:00:00;148.9 -2014-07-01 17:00:00;158.0 -2014-07-01 20:00:00;156.9 -2014-07-01 23:00:00;163.7 -2014-07-02 17:00:00;170.8 -2014-07-02 20:00:00;175.1 -2014-07-02 23:00:00;177.9 -2014-07-03 17:00:00;183.5 -2014-07-03 20:00:00;184.1 -2014-07-03 23:00:00;185.5 -2014-07-04 17:00:00;195.0 -2014-07-04 20:00:00;193.9 -2014-07-04 23:00:00;203.3 -2014-07-05 17:00:00;201.2 -2014-07-05 20:00:00;199.4 -2014-07-05 23:00:00;206.8 -2014-07-06 17:00:00;207.6 -2014-07-06 20:00:00;207.7 -2014-07-06 23:00:00;208.3 -2014-07-07 17:00:00;207.5 -2014-07-07 20:00:00;204.5 -2014-07-07 23:00:00;204.7 -2014-07-08 17:00:00;214.9 -2014-07-08 20:00:00;208.1 -2014-07-08 23:00:00;207.0 -2014-07-09 17:00:00;199.0 -2014-07-09 20:00:00;205.0 -2014-07-09 23:00:00;199.6 -2014-07-10 17:00:00;184.2 -2014-07-10 20:00:00;183.3 -2014-07-10 23:00:00;193.3 -2014-07-11 17:00:00;172.4 -2014-07-11 20:00:00;171.8 -2014-07-11 23:00:00;172.4 -2014-07-12 17:00:00;153.2 -2014-07-12 20:00:00;149.9 -2014-07-12 23:00:00;147.9 -2014-07-13 17:00:00;133.8 -2014-07-13 20:00:00;131.0 -2014-07-13 23:00:00;128.7 -2014-07-14 17:00:00;115.5 -2014-07-14 20:00:00;113.0 -2014-07-14 23:00:00;112.8 -2014-07-15 17:00:00;105.1 -2014-07-15 20:00:00;103.9 -2014-07-15 23:00:00;103.7 -2014-07-16 17:00:00;96.4 -2014-07-16 20:00:00;95.1 -2014-07-16 23:00:00;96.4 -2014-07-17 17:00:00;91.5 -2014-07-17 20:00:00;91.5 -2014-07-17 23:00:00;91.1 -2014-07-18 17:00:00;92.1 -2014-07-18 20:00:00;91.4 -2014-07-18 23:00:00;91.9 -2014-07-19 17:00:00;88.9 -2014-07-19 20:00:00;88.9 -2014-07-19 23:00:00;89.1 -2014-07-20 17:00:00;90.6 -2014-07-20 20:00:00;89.9 -2014-07-20 23:00:00;90.8 -2014-07-21 17:00:00;92.5 -2014-07-21 20:00:00;93.0 -2014-07-21 23:00:00;93.3 -2014-07-22 17:00:00;95.9 -2014-07-22 20:00:00;95.5 -2014-07-22 23:00:00;96.4 -2014-07-23 17:00:00;100.8 -2014-07-23 20:00:00;102.2 -2014-07-23 23:00:00;103.4 -2014-07-24 17:00:00;106.3 -2014-07-24 20:00:00;107.4 -2014-07-24 23:00:00;109.3 -2014-07-25 17:00:00;108.4 -2014-07-25 20:00:00;109.9 -2014-07-25 23:00:00;110.9 -2014-07-26 17:00:00;118.2 -2014-07-26 20:00:00;120.1 -2014-07-26 23:00:00;121.6 -2014-07-27 17:00:00;124.4 -2014-07-27 20:00:00;125.2 -2014-07-27 23:00:00;126.3 -2014-07-28 17:00:00;132.9 -2014-07-28 20:00:00;136.3 -2014-07-28 23:00:00;137.7 -2014-07-29 20:00:00;146.0 -2014-07-29 23:00:00;146.8 -2014-07-30 17:00:00;160.0 -2014-07-30 20:00:00;156.6 -2014-07-30 23:00:00;155.5 -2014-07-31 17:00:00;161.9 -2014-07-31 20:00:00;161.1 -2014-07-31 23:00:00;160.4 -2014-08-01 17:00:00;165.9 -2014-08-01 20:00:00;173.5 -2014-08-01 23:00:00;164.2 -2014-08-02 17:00:00;161.2 -2014-08-02 20:00:00;160.2 -2014-08-02 23:00:00;159.4 -2014-08-03 17:00:00;154.5 -2014-08-03 20:00:00;156.2 -2014-08-03 23:00:00;151.7 -2014-08-04 17:00:00;144.9 -2014-08-04 20:00:00;143.3 -2014-08-04 23:00:00;144.4 -2014-08-05 17:00:00;140.5 -2014-08-05 20:00:00;143.3 -2014-08-05 23:00:00;141.5 -2014-08-06 17:00:00;142.1 -2014-08-06 20:00:00;140.5 -2014-08-06 23:00:00;138.8 -2014-08-07 17:00:00;138.5 -2014-08-07 20:00:00;140.0 -2014-08-07 23:00:00;143.9 -2014-08-08 17:00:00;129.7 -2014-08-08 20:00:00;126.4 -2014-08-08 23:00:00;125.5 -2014-08-09 17:00:00;117.0 -2014-08-09 20:00:00;116.3 -2014-08-09 23:00:00;116.0 -2014-08-10 17:00:00;111.6 -2014-08-10 20:00:00;111.3 -2014-08-10 23:00:00;109.4 -2014-08-11 17:00:00;108.4 -2014-08-11 20:00:00;107.3 -2014-08-11 23:00:00;107.3 -2014-08-12 17:00:00;106.7 -2014-08-12 20:00:00;106.8 -2014-08-12 23:00:00;106.7 -2014-08-13 17:00:00;105.7 -2014-08-13 20:00:00;105.6 -2014-08-13 23:00:00;104.2 -2014-08-14 17:00:00;106.2 -2014-08-14 20:00:00;105.4 -2014-08-14 23:00:00;106.4 -2014-08-15 17:00:00;111.4 -2014-08-15 20:00:00;116.0 -2014-08-15 23:00:00;115.9 -2014-08-16 17:00:00;114.5 -2014-08-16 20:00:00;114.8 -2014-08-16 23:00:00;114.6 -2014-08-17 17:00:00;115.8 -2014-08-17 20:00:00;117.9 -2014-08-17 23:00:00;115.7 -2014-08-18 17:00:00;113.7 -2014-08-18 20:00:00;113.3 -2014-08-18 23:00:00;114.0 -2014-08-19 17:00:00;111.1 -2014-08-19 20:00:00;113.3 -2014-08-19 23:00:00;111.9 -2014-08-20 17:00:00;117.3 -2014-08-20 20:00:00;121.1 -2014-08-20 23:00:00;122.8 -2014-08-21 17:00:00;132.6 -2014-08-21 20:00:00;131.3 -2014-08-21 23:00:00;129.7 -2014-08-22 17:00:00;128.4 -2014-08-22 20:00:00;129.3 -2014-08-22 23:00:00;129.0 -2014-08-23 17:00:00;133.5 -2014-08-23 20:00:00;134.9 -2014-08-23 23:00:00;135.2 -2014-08-24 17:00:00;142.9 -2014-08-24 20:00:00;144.0 -2014-08-24 23:00:00;139.5 -2014-08-25 17:00:00;140.2 -2014-08-25 20:00:00;154.8 -2014-08-25 23:00:00;136.1 -2014-08-26 17:00:00;132.2 -2014-08-26 20:00:00;130.8 -2014-08-26 23:00:00;131.9 -2014-08-27 17:00:00;126.5 -2014-08-27 20:00:00;125.3 -2014-08-27 23:00:00;123.2 -2014-08-28 17:00:00;123.2 -2014-08-28 20:00:00;121.0 -2014-08-28 23:00:00;120.9 -2014-08-29 17:00:00;122.3 -2014-08-29 20:00:00;122.5 -2014-08-29 23:00:00;125.7 -2014-08-30 17:00:00;125.3 -2014-08-30 20:00:00;125.5 -2014-08-30 23:00:00;127.3 -2014-08-31 17:00:00;131.2 -2014-08-31 20:00:00;127.1 -2014-08-31 23:00:00;126.3 -2014-09-01 17:00:00;124.9 -2014-09-01 20:00:00;128.9 -2014-09-01 23:00:00;128.6 -2014-09-02 17:00:00;135.1 -2014-09-02 20:00:00;138.7 -2014-09-02 23:00:00;136.6 -2014-09-03 17:00:00;137.0 -2014-09-03 20:00:00;140.1 -2014-09-03 23:00:00;142.0 -2014-09-04 17:00:00;147.6 -2014-09-04 20:00:00;148.4 -2014-09-04 23:00:00;148.2 -2014-09-05 17:00:00;144.9 -2014-09-05 20:00:00;146.3 -2014-09-05 23:00:00;150.3 -2014-09-06 17:00:00;155.9 -2014-09-06 20:00:00;159.8 -2014-09-06 23:00:00;158.8 -2014-09-07 17:00:00;154.2 -2014-09-07 20:00:00;162.6 -2014-09-07 23:00:00;156.5 -2014-09-08 17:00:00;163.7 -2014-09-08 20:00:00;166.3 -2014-09-08 23:00:00;164.9 -2014-09-09 17:00:00;159.6 -2014-09-09 20:00:00;161.6 -2014-09-09 23:00:00;162.2 -2014-09-10 17:00:00;172.8 -2014-09-10 20:00:00;177.0 -2014-09-10 23:00:00;157.4 -2014-09-11 17:00:00;154.4 -2014-09-11 20:00:00;153.4 -2014-09-11 23:00:00;154.0 -2014-09-12 17:00:00;151.0 -2014-09-12 20:00:00;154.0 -2014-09-12 23:00:00;152.0 -2014-09-13 17:00:00;147.2 -2014-09-13 20:00:00;146.9 -2014-09-13 23:00:00;148.0 -2014-09-14 17:00:00;143.5 -2014-09-14 20:00:00;141.0 -2014-09-14 23:00:00;142.4 -2014-09-15 17:00:00;134.1 -2014-09-15 20:00:00;134.4 -2014-09-15 23:00:00;132.3 -2014-09-16 17:00:00;133.0 -2014-09-16 20:00:00;134.1 -2014-09-16 23:00:00;133.7 -2014-09-17 17:00:00;125.9 -2014-09-17 20:00:00;134.2 -2014-09-17 23:00:00;127.8 -2014-09-18 17:00:00;122.5 -2014-09-18 20:00:00;121.3 -2014-09-18 23:00:00;121.3 -2014-09-19 17:00:00;118.7 -2014-09-19 20:00:00;122.8 -2014-09-19 23:00:00;119.8 -2014-09-20 17:00:00;118.8 -2014-09-20 20:00:00;120.1 -2014-09-20 23:00:00;120.3 -2014-09-21 17:00:00;124.5 -2014-09-21 20:00:00;124.9 -2014-09-21 23:00:00;125.2 -2014-09-22 17:00:00;131.7 -2014-09-22 20:00:00;136.8 -2014-09-22 23:00:00;135.8 -2014-09-23 17:00:00;137.9 -2014-09-23 20:00:00;139.1 -2014-09-23 23:00:00;142.8 -2014-09-24 17:00:00;140.3 -2014-09-24 20:00:00;145.6 -2014-09-24 23:00:00;147.3 -2014-09-25 17:00:00;159.5 -2014-09-25 20:00:00;167.8 -2014-09-25 23:00:00;174.3 -2014-09-26 17:00:00;169.3 -2014-09-26 20:00:00;171.0 -2014-09-26 23:00:00;172.9 -2014-09-27 17:00:00;174.3 -2014-09-27 20:00:00;182.2 -2014-09-27 23:00:00;178.9 -2014-09-28 17:00:00;185.5 -2014-09-28 20:00:00;181.8 -2014-09-28 23:00:00;179.3 -2014-09-29 17:00:00;171.9 -2014-09-29 20:00:00;175.6 -2014-09-29 23:00:00;174.4 -2014-09-30 17:00:00;165.2 -2014-09-30 20:00:00;162.6 -2014-09-30 23:00:00;158.6 -2014-10-01 17:00:00;157.0 -2014-10-01 20:00:00;155.4 -2014-10-01 23:00:00;154.7 -2014-10-02 17:00:00;148.4 -2014-10-02 20:00:00;149.3 -2014-10-02 23:00:00;147.4 -2014-10-03 17:00:00;137.7 -2014-10-03 20:00:00;136.9 -2014-10-03 23:00:00;134.7 -2014-10-04 17:00:00;127.3 -2014-10-04 20:00:00;127.6 -2014-10-04 23:00:00;126.5 -2014-10-05 17:00:00;130.5 -2014-10-05 20:00:00;128.4 -2014-10-05 23:00:00;128.6 -2014-10-06 17:00:00;132.8 -2014-10-06 20:00:00;129.9 -2014-10-06 23:00:00;129.5 -2014-10-07 17:00:00;123.6 -2014-10-07 20:00:00;125.2 -2014-10-07 23:00:00;123.5 -2014-10-08 17:00:00;125.1 -2014-10-08 20:00:00;126.2 -2014-10-08 23:00:00;127.9 -2014-10-09 17:00:00;119.7 -2014-10-09 20:00:00;118.6 -2014-10-09 23:00:00;119.5 -2014-10-10 17:00:00;127.8 -2014-10-10 20:00:00;120.4 -2014-10-10 23:00:00;117.1 -2014-10-11 17:00:00;111.5 -2014-10-11 20:00:00;111.6 -2014-10-11 23:00:00;110.3 -2014-10-12 17:00:00;110.3 -2014-10-12 20:00:00;110.0 -2014-10-12 23:00:00;109.5 -2014-10-13 17:00:00;111.4 -2014-10-13 20:00:00;112.6 -2014-10-13 23:00:00;112.7 -2014-10-14 17:00:00;119.7 -2014-10-14 20:00:00;131.9 -2014-10-14 23:00:00;142.9 -2014-10-15 17:00:00;125.7 -2014-10-15 20:00:00;125.0 -2014-10-15 23:00:00;124.5 -2014-10-16 17:00:00;133.9 -2014-10-16 20:00:00;138.0 -2014-10-16 23:00:00;139.6 -2014-10-17 17:00:00;145.9 -2014-10-17 20:00:00;144.8 -2014-10-17 23:00:00;147.8 -2014-10-18 17:00:00;155.9 -2014-10-18 20:00:00;171.1 -2014-10-18 23:00:00;167.5 -2014-10-19 17:00:00;171.5 -2014-10-19 20:00:00;171.7 -2014-10-19 23:00:00;176.4 -2014-10-20 17:00:00;210.0 -2014-10-20 20:00:00;202.2 -2014-10-20 23:00:00;194.1 -2014-10-21 17:00:00;192.5 -2014-10-21 20:00:00;197.1 -2014-10-21 23:00:00;195.5 -2014-10-22 17:00:00;200.2 -2014-10-22 20:00:00;214.2 -2014-10-22 23:00:00;209.1 -2014-10-23 17:00:00;221.8 -2014-10-23 20:00:00;224.8 -2014-10-23 23:00:00;200.2 -2014-10-24 17:00:00;219.5 -2014-10-24 20:00:00;215.4 -2014-10-24 23:00:00;264.8 -2014-10-25 17:00:00;274.8 -2014-10-25 20:00:00;216.8 -2014-10-25 23:00:00;198.4 -2014-10-26 17:00:00;201.1 -2014-10-26 20:00:00;214.0 -2014-10-26 23:00:00;191.9 -2014-10-27 17:00:00;190.2 -2014-10-27 20:00:00;185.4 -2014-10-27 23:00:00;179.9 -2014-10-28 17:00:00;173.9 -2014-10-28 20:00:00;165.1 -2014-10-28 23:00:00;164.6 -2014-10-29 17:00:00;149.9 -2014-10-29 20:00:00;148.4 -2014-10-29 23:00:00;146.0 -2014-10-30 17:00:00;132.6 -2014-10-30 20:00:00;138.4 -2014-10-30 23:00:00;131.9 -2014-10-31 17:00:00;120.6 -2014-10-31 20:00:00;119.5 -2014-10-31 23:00:00;117.6 -2014-11-01 18:00:00;117.9 -2014-11-01 20:00:00;118.1 -2014-11-01 22:00:00;117.2 -2014-11-02 18:00:00;121.4 -2014-11-02 20:00:00;122.4 -2014-11-02 22:00:00;122.1 -2014-11-03 18:00:00;122.0 -2014-11-03 20:00:00;123.2 -2014-11-03 22:00:00;123.8 -2014-11-04 18:00:00;126.6 -2014-11-04 20:00:00;127.3 -2014-11-04 22:00:00;129.0 -2014-11-05 18:00:00;133.4 -2014-11-05 20:00:00;142.7 -2014-11-05 22:00:00;133.9 -2014-11-06 18:00:00;134.2 -2014-11-06 20:00:00;133.1 -2014-11-06 22:00:00;139.3 -2014-11-07 18:00:00;180.5 -2014-11-07 20:00:00;142.9 -2014-11-07 22:00:00;129.6 -2014-11-08 18:00:00;136.4 -2014-11-08 20:00:00;129.6 -2014-11-08 22:00:00;132.0 -2014-11-09 18:00:00;138.0 -2014-11-09 20:00:00;129.2 -2014-11-09 22:00:00;130.0 -2014-11-10 18:00:00;133.3 -2014-11-10 20:00:00;133.4 -2014-11-10 22:00:00;133.3 -2014-11-11 18:00:00;140.9 -2014-11-11 20:00:00;139.5 -2014-11-11 22:00:00;138.8 -2014-11-12 18:00:00;144.2 -2014-11-12 20:00:00;149.8 -2014-11-12 22:00:00;147.6 -2014-11-13 18:00:00;151.6 -2014-11-13 20:00:00;150.3 -2014-11-13 22:00:00;150.2 -2014-11-14 18:00:00;156.5 -2014-11-14 20:00:00;157.6 -2014-11-14 22:00:00;157.9 -2014-11-15 18:00:00;157.7 -2014-11-15 20:00:00;157.1 -2014-11-15 22:00:00;156.5 -2014-11-16 18:00:00;188.9 -2014-11-16 20:00:00;167.7 -2014-11-16 22:00:00;165.0 -2014-11-17 18:00:00;164.3 -2014-11-17 20:00:00;163.8 -2014-11-17 22:00:00;162.5 -2014-11-18 18:00:00;167.6 -2014-11-18 20:00:00;163.6 -2014-11-18 22:00:00;165.0 -2014-11-19 18:00:00;166.2 -2014-11-19 20:00:00;165.7 -2014-11-19 22:00:00;166.3 -2014-11-20 18:00:00;167.4 -2014-11-20 20:00:00;164.1 -2014-11-20 22:00:00;163.4 -2014-11-21 18:00:00;159.5 -2014-11-21 20:00:00;158.6 -2014-11-21 22:00:00;158.5 -2014-11-22 18:00:00;164.1 -2014-11-22 20:00:00;162.6 -2014-11-22 22:00:00;160.7 -2014-11-23 18:00:00;168.4 -2014-11-23 20:00:00;168.8 -2014-11-23 22:00:00;165.3 -2014-11-24 18:00:00;165.8 -2014-11-24 20:00:00;140.7 -2014-11-24 22:00:00;164.2 -2014-11-25 18:00:00;162.5 -2014-11-25 20:00:00;165.0 -2014-11-25 22:00:00;163.9 -2014-11-26 18:00:00;164.8 -2014-11-26 20:00:00;166.5 -2014-11-26 22:00:00;166.3 -2014-11-27 18:00:00;175.8 -2014-11-27 20:00:00;174.1 -2014-11-27 22:00:00;169.6 -2014-11-28 18:00:00;178.1 -2014-11-28 20:00:00;176.6 -2014-11-28 22:00:00;175.4 -2014-11-29 18:00:00;174.0 -2014-11-29 20:00:00;172.5 -2014-11-29 22:00:00;171.9 -2014-11-30 18:00:00;174.5 -2014-11-30 20:00:00;172.4 -2014-11-30 22:00:00;172.3 -2014-12-01 18:00:00;162.7 -2014-12-01 20:00:00;163.4 -2014-12-01 22:00:00;160.7 -2014-12-02 18:00:00;167.2 -2014-12-02 20:00:00;163.0 -2014-12-02 22:00:00;166.5 -2014-12-03 18:00:00;151.2 -2014-12-03 20:00:00;149.8 -2014-12-03 22:00:00;150.1 -2014-12-04 18:00:00;147.6 -2014-12-04 20:00:00;153.0 -2014-12-04 22:00:00;138.6 -2014-12-05 18:00:00;133.6 -2014-12-05 20:00:00;132.8 -2014-12-05 22:00:00;131.7 -2014-12-06 18:00:00;125.7 -2014-12-06 20:00:00;125.0 -2014-12-06 22:00:00;123.9 -2014-12-07 18:00:00;129.3 -2014-12-07 20:00:00;127.9 -2014-12-07 22:00:00;126.9 -2014-12-08 18:00:00;130.1 -2014-12-08 20:00:00;128.7 -2014-12-08 22:00:00;130.4 -2014-12-09 18:00:00;137.7 -2014-12-09 20:00:00;135.5 -2014-12-09 22:00:00;135.6 -2014-12-10 18:00:00;142.7 -2014-12-10 20:00:00;145.3 -2014-12-10 22:00:00;145.5 -2014-12-11 18:00:00;141.8 -2014-12-11 20:00:00;143.0 -2014-12-11 22:00:00;143.4 -2014-12-12 18:00:00;149.1 -2014-12-12 20:00:00;149.4 -2014-12-12 22:00:00;149.9 -2014-12-13 18:00:00;155.7 -2014-12-13 20:00:00;154.9 -2014-12-13 22:00:00;154.9 -2014-12-14 18:00:00;155.6 -2014-12-14 20:00:00;161.2 -2014-12-14 22:00:00;160.1 -2014-12-15 18:00:00;162.7 -2014-12-15 20:00:00;164.0 -2014-12-15 22:00:00;168.6 -2014-12-16 18:00:00;175.8 -2014-12-16 20:00:00;178.8 -2014-12-16 22:00:00;177.6 -2014-12-17 18:00:00;185.5 -2014-12-17 20:00:00;192.3 -2014-12-17 22:00:00;191.1 -2014-12-18 18:00:00;212.4 -2014-12-18 20:00:00;206.4 -2014-12-18 22:00:00;253.0 -2014-12-19 18:00:00;211.4 -2014-12-19 20:00:00;208.9 -2014-12-19 22:00:00;201.4 -2014-12-20 18:00:00;198.3 -2014-12-20 20:00:00;196.7 -2014-12-20 22:00:00;192.2 -2014-12-21 18:00:00;198.0 -2014-12-21 20:00:00;199.2 -2014-12-21 22:00:00;186.1 -2014-12-22 18:00:00;174.4 -2014-12-22 20:00:00;173.4 -2014-12-22 22:00:00;175.6 -2014-12-23 18:00:00;161.2 -2014-12-23 20:00:00;160.5 -2014-12-23 22:00:00;160.7 -2014-12-24 18:00:00;145.3 -2014-12-24 20:00:00;146.5 -2014-12-24 22:00:00;147.2 -2014-12-25 18:00:00;138.6 -2014-12-25 20:00:00;140.6 -2014-12-25 22:00:00;137.1 -2014-12-26 18:00:00;133.2 -2014-12-26 20:00:00;132.5 -2014-12-26 22:00:00;138.8 -2014-12-27 18:00:00;129.5 -2014-12-27 20:00:00;129.7 -2014-12-27 22:00:00;126.8 -2014-12-28 18:00:00;129.9 -2014-12-28 20:00:00;128.2 -2014-12-28 22:00:00;127.5 -2014-12-29 18:00:00;128.3 -2014-12-29 20:00:00;127.1 -2014-12-29 22:00:00;126.8 -2014-12-30 18:00:00;126.4 -2014-12-30 20:00:00;126.0 -2014-12-30 22:00:00;126.9 -2014-12-31 18:00:00;129.7 -2014-12-31 20:00:00;129.2 -2014-12-31 22:00:00;129.7 -2015-01-01 18:00:00;132.0 -2015-01-01 20:00:00;132.9 -2015-01-01 22:00:00;132.8 -2015-01-02 18:00:00;140.4 -2015-01-02 20:00:00;141.0 -2015-01-02 22:00:00;141.7 -2015-01-03 18:00:00;143.5 -2015-01-03 20:00:00;143.8 -2015-01-03 22:00:00;147.9 -2015-01-04 18:00:00;150.3 -2015-01-04 20:00:00;144.8 -2015-01-04 22:00:00;142.4 -2015-01-05 18:00:00;149.8 -2015-01-05 20:00:00;137.2 -2015-01-05 22:00:00;143.9 -2015-01-06 18:00:00;139.5 -2015-01-06 20:00:00;137.2 -2015-01-06 22:00:00;142.8 -2015-01-07 18:00:00;140.9 -2015-01-07 20:00:00;142.4 -2015-01-07 22:00:00;142.9 -2015-01-08 18:00:00;150.7 -2015-01-08 20:00:00;152.0 -2015-01-08 22:00:00;151.6 -2015-01-09 18:00:00;148.8 -2015-01-09 20:00:00;146.2 -2015-01-09 22:00:00;145.6 -2015-01-10 18:00:00;146.1 -2015-01-10 20:00:00;146.9 -2015-01-10 22:00:00;145.8 -2015-01-11 18:00:00;148.5 -2015-01-11 20:00:00;148.6 -2015-01-11 22:00:00;149.5 -2015-01-12 18:00:00;154.3 -2015-01-12 20:00:00;153.4 -2015-01-12 22:00:00;150.7 -2015-01-14 20:00:00;137.2 -2015-01-14 22:00:00;135.3 -2015-01-15 18:00:00;128.8 -2015-01-15 20:00:00;127.1 -2015-01-15 22:00:00;127.0 -2015-01-16 18:00:00;122.5 -2015-01-16 20:00:00;120.7 -2015-01-16 22:00:00;121.3 -2015-01-17 18:00:00;117.8 -2015-01-17 20:00:00;118.0 -2015-01-17 22:00:00;118.1 -2015-01-18 18:00:00;122.4 -2015-01-18 20:00:00;121.7 -2015-01-18 22:00:00;122.3 -2015-01-19 18:00:00;125.3 -2015-01-19 20:00:00;125.9 -2015-01-19 22:00:00;123.4 -2015-01-20 18:00:00;122.2 -2015-01-20 20:00:00;121.6 -2015-01-20 22:00:00;121.7 -2015-01-21 18:00:00;119.6 -2015-01-21 20:00:00;120.0 -2015-01-21 22:00:00;120.5 -2015-01-22 18:00:00;116.6 -2015-01-22 20:00:00;116.6 -2015-01-22 22:00:00;116.1 -2015-01-23 18:00:00;119.9 -2015-01-23 20:00:00;117.3 -2015-01-23 22:00:00;116.8 -2015-01-24 18:00:00;121.1 -2015-01-24 20:00:00;121.4 -2015-01-24 22:00:00;122.1 -2015-01-25 18:00:00;122.2 -2015-01-25 20:00:00;122.7 -2015-01-25 22:00:00;122.8 -2015-01-26 18:00:00;142.7 -2015-01-26 20:00:00;142.5 -2015-01-26 22:00:00;142.2 -2015-01-27 18:00:00;150.1 -2015-01-27 20:00:00;153.3 -2015-01-27 22:00:00;151.1 -2015-01-28 18:00:00;151.3 -2015-01-28 20:00:00;154.5 -2015-01-28 22:00:00;156.2 -2015-01-29 18:00:00;160.8 -2015-01-29 20:00:00;166.7 -2015-01-29 22:00:00;165.4 -2015-01-30 18:00:00;159.0 -2015-01-30 20:00:00;154.6 -2015-01-30 22:00:00;152.5 -2015-01-31 18:00:00;148.6 -2015-01-31 20:00:00;149.0 -2015-01-31 22:00:00;150.6 -2015-02-01 18:00:00;140.0 -2015-02-01 20:00:00;137.6 -2015-02-01 22:00:00;143.9 -2015-02-02 20:00:00;139.8 -2015-02-02 22:00:00;139.6 -2015-02-03 18:00:00;143.6 -2015-02-03 20:00:00;145.1 -2015-02-03 22:00:00;144.6 -2015-02-04 18:00:00;145.3 -2015-02-04 20:00:00;150.1 -2015-02-04 22:00:00;144.8 -2015-02-05 18:00:00;137.3 -2015-02-05 20:00:00;138.0 -2015-02-05 22:00:00;137.9 -2015-02-06 18:00:00;139.1 -2015-02-06 20:00:00;139.3 -2015-02-06 22:00:00;140.2 -2015-02-07 18:00:00;145.8 -2015-02-07 20:00:00;148.9 -2015-02-07 22:00:00;146.9 -2015-02-08 18:00:00;145.0 -2015-02-08 20:00:00;148.7 -2015-02-08 22:00:00;152.8 -2015-02-09 18:00:00;142.4 -2015-02-09 20:00:00;141.9 -2015-02-09 22:00:00;139.0 -2015-02-10 18:00:00;138.9 -2015-02-10 20:00:00;137.3 -2015-02-10 22:00:00;135.4 -2015-02-11 18:00:00;129.4 -2015-02-11 20:00:00;127.7 -2015-02-11 22:00:00;126.8 -2015-02-12 18:00:00;124.6 -2015-02-12 20:00:00;124.4 -2015-02-12 22:00:00;124.3 -2015-02-13 18:00:00;121.9 -2015-02-13 20:00:00;121.8 -2015-02-13 22:00:00;120.8 -2015-02-14 18:00:00;117.8 -2015-02-14 20:00:00;117.4 -2015-02-14 22:00:00;116.6 -2015-02-15 18:00:00;116.6 -2015-02-15 20:00:00;116.7 -2015-02-15 22:00:00;116.5 -2015-02-16 18:00:00;116.6 -2015-02-16 20:00:00;115.3 -2015-02-16 22:00:00;115.3 -2015-02-17 18:00:00;115.5 -2015-02-17 20:00:00;115.7 -2015-02-17 22:00:00;115.9 -2015-02-18 18:00:00;117.5 -2015-02-18 20:00:00;118.2 -2015-02-18 22:00:00;119.6 -2015-02-19 18:00:00;117.7 -2015-02-19 20:00:00;116.0 -2015-02-19 22:00:00;116.2 -2015-02-20 18:00:00;117.9 -2015-02-20 20:00:00;117.0 -2015-02-20 22:00:00;115.6 -2015-02-21 18:00:00;111.1 -2015-02-21 20:00:00;113.6 -2015-02-21 22:00:00;111.2 -2015-02-22 18:00:00;114.8 -2015-02-22 20:00:00;115.0 -2015-02-22 22:00:00;116.5 -2015-02-23 18:00:00;115.2 -2015-02-23 20:00:00;114.3 -2015-02-23 22:00:00;114.1 -2015-02-24 18:00:00;112.6 -2015-02-24 20:00:00;112.1 -2015-02-24 22:00:00;111.6 -2015-02-25 18:00:00;109.0 -2015-02-25 20:00:00;108.8 -2015-02-25 22:00:00;109.1 -2015-02-26 18:00:00;110.2 -2015-02-26 20:00:00;109.1 -2015-02-26 22:00:00;110.1 -2015-02-27 18:00:00;116.4 -2015-02-27 20:00:00;115.7 -2015-02-27 22:00:00;117.8 -2015-02-28 18:00:00;122.8 -2015-02-28 20:00:00;121.1 -2015-02-28 22:00:00;124.2 -2015-03-01 17:00:00;129.0 -2015-03-01 20:00:00;125.3 -2015-03-01 23:00:00;124.0 -2015-03-02 17:00:00;127.4 -2015-03-02 20:00:00;128.1 -2015-03-02 23:00:00;126.2 -2015-03-03 17:00:00;123.7 -2015-03-03 20:00:00;122.9 -2015-03-03 23:00:00;122.4 -2015-03-04 17:00:00;120.9 -2015-03-04 20:00:00;122.1 -2015-03-04 23:00:00;120.5 -2015-03-05 17:00:00;124.5 -2015-03-05 20:00:00;137.9 -2015-03-05 23:00:00;128.5 -2015-03-06 17:00:00;128.0 -2015-03-06 20:00:00;125.4 -2015-03-06 23:00:00;126.2 -2015-03-07 17:00:00;130.9 -2015-03-07 20:00:00;135.7 -2015-03-07 23:00:00;173.9 -2015-03-08 17:00:00;123.8 -2015-03-08 20:00:00;122.3 -2015-03-08 23:00:00;120.8 -2015-03-09 17:00:00;124.4 -2015-03-09 20:00:00;121.2 -2015-03-09 23:00:00;120.8 -2015-03-10 17:00:00;121.3 -2015-03-10 20:00:00;119.2 -2015-03-10 23:00:00;119.8 -2015-03-11 17:00:00;140.5 -2015-03-11 20:00:00;129.9 -2015-03-11 23:00:00;132.3 -2015-03-12 17:00:00;127.7 -2015-03-12 20:00:00;125.1 -2015-03-12 23:00:00;124.9 -2015-03-13 17:00:00;121.6 -2015-03-13 20:00:00;117.9 -2015-03-13 23:00:00;121.4 -2015-03-14 17:00:00;115.5 -2015-03-14 20:00:00;114.3 -2015-03-14 23:00:00;115.0 -2015-03-15 17:00:00;115.3 -2015-03-15 20:00:00;113.1 -2015-03-15 23:00:00;119.5 -2015-03-16 17:00:00;116.8 -2015-03-16 20:00:00;116.0 -2015-03-16 23:00:00;115.9 -2015-03-17 17:00:00;112.9 -2015-03-17 20:00:00;113.2 -2015-03-17 23:00:00;114.9 -2015-03-18 17:00:00;118.5 -2015-03-18 20:00:00;113.7 -2015-03-18 23:00:00;112.0 -2015-03-19 17:00:00;107.9 -2015-03-19 20:00:00;108.3 -2015-03-19 23:00:00;108.0 -2015-03-20 17:00:00;111.3 -2015-03-20 20:00:00;111.8 -2015-03-20 23:00:00;110.9 -2015-03-21 17:00:00;112.8 -2015-03-21 20:00:00;112.7 -2015-03-21 23:00:00;113.7 -2015-03-22 17:00:00;117.3 -2015-03-22 20:00:00;121.5 -2015-03-22 23:00:00;122.4 -2015-03-23 17:00:00;126.4 -2015-03-23 20:00:00;127.2 -2015-03-23 23:00:00;129.5 -2015-03-24 17:00:00;132.7 -2015-03-24 20:00:00;132.2 -2015-03-24 23:00:00;132.5 -2015-03-25 17:00:00;141.4 -2015-03-25 20:00:00;137.0 -2015-03-25 23:00:00;138.6 -2015-03-26 17:00:00;135.1 -2015-03-26 20:00:00;135.5 -2015-03-26 23:00:00;134.8 -2015-03-27 17:00:00;133.9 -2015-03-27 20:00:00;137.2 -2015-03-27 23:00:00;137.0 -2015-03-28 17:00:00;144.2 -2015-03-28 20:00:00;145.1 -2015-03-28 23:00:00;144.2 -2015-03-29 17:00:00;144.6 -2015-03-29 20:00:00;144.0 -2015-03-29 23:00:00;138.1 -2015-03-30 17:00:00;134.8 -2015-03-30 20:00:00;133.3 -2015-03-30 23:00:00;133.5 -2015-03-31 17:00:00;128.0 -2015-03-31 20:00:00;127.8 -2015-03-31 23:00:00;127.1 -2015-04-01 17:00:00;123.8 -2015-04-01 20:00:00;123.9 -2015-04-01 23:00:00;122.5 -2015-04-02 17:00:00;122.8 -2015-04-02 20:00:00;121.2 -2015-04-02 23:00:00;122.1 -2015-04-03 17:00:00;119.9 -2015-04-03 20:00:00;119.8 -2015-04-03 23:00:00;120.7 -2015-04-04 17:00:00;121.8 -2015-04-04 20:00:00;122.4 -2015-04-04 23:00:00;129.1 -2015-04-05 17:00:00;121.7 -2015-04-05 20:00:00;122.3 -2015-04-05 23:00:00;123.1 -2015-04-06 17:00:00;117.4 -2015-04-06 20:00:00;125.8 -2015-04-06 23:00:00;118.2 -2015-04-07 17:00:00;113.9 -2015-04-07 20:00:00;111.4 -2015-04-07 23:00:00;111.2 -2015-04-08 17:00:00;107.8 -2015-04-08 20:00:00;106.3 -2015-04-08 23:00:00;107.5 -2015-04-09 17:00:00;110.6 -2015-04-09 20:00:00;111.6 -2015-04-09 23:00:00;111.2 -2015-04-10 17:00:00;114.6 -2015-04-10 20:00:00;115.5 -2015-04-10 23:00:00;115.0 -2015-04-11 17:00:00;121.9 -2015-04-11 20:00:00;123.5 -2015-04-11 23:00:00;127.9 -2015-04-12 17:00:00;132.8 -2015-04-12 20:00:00;134.6 -2015-04-12 23:00:00;135.6 -2015-04-13 17:00:00;139.8 -2015-04-13 20:00:00;142.1 -2015-04-13 23:00:00;142.3 -2015-04-14 17:00:00;148.8 -2015-04-14 20:00:00;147.7 -2015-04-14 23:00:00;150.2 -2015-04-15 17:00:00;151.9 -2015-04-15 20:00:00;155.7 -2015-04-15 23:00:00;152.8 -2015-04-16 17:00:00;151.7 -2015-04-16 20:00:00;151.3 -2015-04-16 23:00:00;150.6 -2015-04-17 17:00:00;154.2 -2015-04-17 20:00:00;150.8 -2015-04-17 23:00:00;149.8 -2015-04-18 17:00:00;151.7 -2015-04-18 20:00:00;148.9 -2015-04-18 23:00:00;151.9 -2015-04-19 17:00:00;152.2 -2015-04-19 20:00:00;153.0 -2015-04-19 23:00:00;152.9 -2015-04-20 17:00:00;148.7 -2015-04-20 20:00:00;151.0 -2015-04-20 23:00:00;152.5 -2015-04-21 17:00:00;156.1 -2015-04-21 20:00:00;155.3 -2015-04-21 23:00:00;155.4 -2015-04-22 17:00:00;151.1 -2015-04-22 20:00:00;151.8 -2015-04-22 23:00:00;148.4 -2015-04-23 17:00:00;143.4 -2015-04-23 20:00:00;142.0 -2015-04-23 23:00:00;142.3 -2015-04-24 17:00:00;136.1 -2015-04-24 20:00:00;136.0 -2015-04-24 23:00:00;133.5 -2015-04-25 17:00:00;126.3 -2015-04-25 20:00:00;127.4 -2015-04-25 23:00:00;129.2 -2015-04-26 17:00:00;121.4 -2015-04-26 20:00:00;120.0 -2015-04-26 23:00:00;120.1 -2015-04-27 17:00:00;110.7 -2015-04-27 20:00:00;108.9 -2015-04-27 23:00:00;108.1 -2015-04-28 17:00:00;108.9 -2015-04-28 20:00:00;109.2 -2015-04-28 23:00:00;109.1 -2015-04-29 17:00:00;106.0 -2015-04-29 20:00:00;105.5 -2015-04-29 23:00:00;106.7 -2015-04-30 17:00:00;103.6 -2015-04-30 20:00:00;103.3 -2015-04-30 23:00:00;104.0 -2015-05-01 17:00:00;101.8 -2015-05-01 20:00:00;101.4 -2015-05-01 23:00:00;102.1 -2015-05-02 17:00:00;106.4 -2015-05-02 20:00:00;107.3 -2015-05-02 23:00:00;109.6 -2015-05-03 17:00:00;110.3 -2015-05-03 20:00:00;112.9 -2015-05-03 23:00:00;115.4 -2015-05-04 17:00:00;120.8 -2015-05-04 20:00:00;125.4 -2015-05-04 23:00:00;122.7 -2015-05-05 17:00:00;130.5 -2015-05-05 20:00:00;130.0 -2015-05-05 23:00:00;135.1 -2015-05-06 17:00:00;140.1 -2015-05-06 20:00:00;138.6 -2015-05-06 23:00:00;141.1 -2015-05-07 17:00:00;146.6 -2015-05-07 20:00:00;149.2 -2015-05-07 23:00:00;148.7 -2015-05-08 17:00:00;149.2 -2015-05-08 20:00:00;152.6 -2015-05-08 23:00:00;153.5 -2015-05-09 17:00:00;155.1 -2015-05-09 20:00:00;157.5 -2015-05-09 23:00:00;157.5 -2015-05-10 17:00:00;160.3 -2015-05-10 20:00:00;163.1 -2015-05-10 23:00:00;166.8 -2015-05-11 17:00:00;167.4 -2015-05-11 20:00:00;166.2 -2015-05-11 23:00:00;164.2 -2015-05-12 17:00:00;162.9 -2015-05-12 20:00:00;166.5 -2015-05-12 23:00:00;164.0 -2015-05-13 17:00:00;168.2 -2015-05-13 20:00:00;160.3 -2015-05-13 23:00:00;156.2 -2015-05-14 17:00:00;151.7 -2015-05-14 20:00:00;148.2 -2015-05-14 23:00:00;147.6 -2015-05-15 17:00:00;140.1 -2015-05-15 20:00:00;139.5 -2015-05-15 23:00:00;142.6 -2015-05-16 17:00:00;134.0 -2015-05-16 20:00:00;134.0 -2015-05-16 23:00:00;133.0 -2015-05-17 17:00:00;123.4 -2015-05-17 20:00:00;122.3 -2015-05-17 23:00:00;122.0 -2015-05-18 17:00:00;117.8 -2015-05-18 20:00:00;117.6 -2015-05-18 23:00:00;119.7 -2015-05-19 17:00:00;113.6 -2015-05-19 20:00:00;112.9 -2015-05-19 23:00:00;112.1 -2015-05-20 17:00:00;106.5 -2015-05-20 20:00:00;108.2 -2015-05-20 23:00:00;107.5 -2015-05-21 17:00:00;104.5 -2015-05-21 20:00:00;104.3 -2015-05-21 23:00:00;104.5 -2015-05-22 17:00:00;103.2 -2015-05-22 20:00:00;101.6 -2015-05-22 23:00:00;101.4 -2015-05-23 17:00:00;101.2 -2015-05-23 20:00:00;100.2 -2015-05-23 23:00:00;101.4 -2015-05-24 17:00:00;101.5 -2015-05-24 20:00:00;101.2 -2015-05-24 23:00:00;100.5 -2015-05-25 17:00:00;97.6 -2015-05-25 20:00:00;99.0 -2015-05-25 23:00:00;99.8 -2015-05-26 17:00:00;97.6 -2015-05-26 20:00:00;97.0 -2015-05-26 23:00:00;99.6 -2015-05-27 17:00:00;97.9 -2015-05-27 20:00:00;97.8 -2015-05-27 23:00:00;96.1 -2015-05-28 17:00:00;95.6 -2015-05-28 20:00:00;95.5 -2015-05-28 23:00:00;96.7 -2015-05-29 17:00:00;94.4 -2015-05-29 20:00:00;94.8 -2015-05-29 23:00:00;95.3 -2015-05-30 17:00:00;95.9 -2015-05-30 20:00:00;97.7 -2015-05-30 23:00:00;98.3 -2015-05-31 17:00:00;98.4 -2015-05-31 20:00:00;97.0 -2015-05-31 23:00:00;97.2 -2015-06-01 17:00:00;100.9 -2015-06-01 20:00:00;103.2 -2015-06-01 23:00:00;102.3 -2015-06-02 17:00:00;104.5 -2015-06-02 20:00:00;103.9 -2015-06-02 23:00:00;104.0 -2015-06-03 17:00:00;109.8 -2015-06-03 20:00:00;111.6 -2015-06-03 23:00:00;114.0 -2015-06-04 17:00:00;124.3 -2015-06-04 20:00:00;121.4 -2015-06-04 23:00:00;122.8 -2015-06-05 17:00:00;128.3 -2015-06-05 20:00:00;129.7 -2015-06-05 23:00:00;128.1 -2015-06-06 17:00:00;135.2 -2015-06-06 20:00:00;136.6 -2015-06-06 23:00:00;139.3 -2015-06-07 17:00:00;144.3 -2015-06-07 20:00:00;141.4 -2015-06-07 23:00:00;142.8 -2015-06-08 17:00:00;139.8 -2015-06-08 20:00:00;138.2 -2015-06-08 23:00:00;139.1 -2015-06-09 17:00:00;135.4 -2015-06-09 20:00:00;140.6 -2015-06-09 23:00:00;135.7 -2015-06-10 17:00:00;139.1 -2015-06-10 20:00:00;139.5 -2015-06-10 23:00:00;139.6 -2015-06-11 17:00:00;141.6 -2015-06-11 20:00:00;144.2 -2015-06-11 23:00:00;140.2 -2015-06-12 17:00:00;144.7 -2015-06-12 20:00:00;141.0 -2015-06-12 23:00:00;140.9 -2015-06-13 17:00:00;141.0 -2015-06-13 20:00:00;140.3 -2015-06-13 23:00:00;139.1 -2015-06-14 17:00:00;137.3 -2015-06-14 20:00:00;135.8 -2015-06-14 23:00:00;136.1 -2015-06-15 17:00:00;136.9 -2015-06-15 20:00:00;139.1 -2015-06-15 23:00:00;140.1 -2015-06-16 17:00:00;138.4 -2015-06-16 20:00:00;140.5 -2015-06-16 23:00:00;140.3 -2015-06-17 17:00:00;137.4 -2015-06-17 20:00:00;140.2 -2015-06-17 23:00:00;142.6 -2015-06-18 17:00:00;586.7 -2015-06-18 20:00:00;155.7 -2015-06-18 23:00:00;141.7 -2015-06-19 17:00:00;140.2 -2015-06-19 20:00:00;141.8 -2015-06-19 23:00:00;139.6 -2015-06-20 17:00:00;138.8 -2015-06-20 20:00:00;139.8 -2015-06-20 23:00:00;138.4 -2015-06-21 17:00:00;137.4 -2015-06-21 20:00:00;136.0 -2015-06-21 23:00:00;132.8 -2015-06-22 17:00:00;134.3 -2015-06-22 20:00:00;255.0 -2015-06-22 23:00:00;131.3 -2015-06-23 17:00:00;120.3 -2015-06-23 20:00:00;119.9 -2015-06-23 23:00:00;120.4 -2015-06-24 17:00:00;118.9 -2015-06-24 20:00:00;113.1 -2015-06-24 23:00:00;114.5 -2015-06-25 17:00:00;106.1 -2015-06-25 20:00:00;105.2 -2015-06-25 23:00:00;105.5 -2015-06-26 17:00:00;104.6 -2015-06-26 20:00:00;104.6 -2015-06-26 23:00:00;103.7 -2015-06-27 17:00:00;101.2 -2015-06-27 20:00:00;100.5 -2015-06-27 23:00:00;100.1 -2015-06-28 17:00:00;100.8 -2015-06-28 20:00:00;100.5 -2015-06-28 23:00:00;100.2 -2015-06-29 17:00:00;98.5 -2015-06-29 20:00:00;100.4 -2015-06-29 23:00:00;100.4 -2015-06-30 17:00:00;102.6 -2015-06-30 20:00:00;104.2 -2015-06-30 23:00:00;104.9 -2015-07-01 17:00:00;112.0 -2015-07-01 20:00:00;113.3 -2015-07-01 23:00:00;115.3 -2015-07-02 17:00:00;117.4 -2015-07-02 20:00:00;117.6 -2015-07-02 23:00:00;116.5 -2015-07-03 17:00:00;116.3 -2015-07-03 20:00:00;116.1 -2015-07-03 23:00:00;118.1 -2015-07-04 17:00:00;118.6 -2015-07-04 20:00:00;120.7 -2015-07-04 23:00:00;120.6 -2015-07-05 17:00:00;126.3 -2015-07-05 20:00:00;129.0 -2015-07-05 23:00:00;130.3 -2015-07-06 17:00:00;138.9 -2015-07-06 20:00:00;137.9 -2015-07-06 23:00:00;136.1 -2015-07-07 17:00:00;136.7 -2015-07-07 20:00:00;137.1 -2015-07-07 23:00:00;137.3 -2015-07-08 17:00:00;132.1 -2015-07-08 20:00:00;133.2 -2015-07-08 23:00:00;133.1 -2015-07-09 17:00:00;126.5 -2015-07-09 20:00:00;126.0 -2015-07-09 23:00:00;126.6 -2015-07-10 17:00:00;132.3 -2015-07-10 20:00:00;133.3 -2015-07-10 23:00:00;134.1 -2015-07-11 17:00:00;124.7 -2015-07-11 20:00:00;124.3 -2015-07-11 23:00:00;124.2 -2015-07-12 17:00:00;119.7 -2015-07-12 20:00:00;119.9 -2015-07-12 23:00:00;119.7 -2015-07-13 17:00:00;116.1 -2015-07-13 20:00:00;113.8 -2015-07-13 23:00:00;113.6 -2015-07-14 17:00:00;110.2 -2015-07-14 20:00:00;108.7 -2015-07-14 23:00:00;109.2 -2015-07-15 17:00:00;104.2 -2015-07-15 20:00:00;104.4 -2015-07-15 23:00:00;103.9 -2015-07-16 17:00:00;102.6 -2015-07-16 20:00:00;102.9 -2015-07-16 23:00:00;103.5 -2015-07-17 17:00:00;101.5 -2015-07-17 20:00:00;100.6 -2015-07-17 23:00:00;101.5 -2015-07-18 17:00:00;98.9 -2015-07-18 20:00:00;99.1 -2015-07-18 23:00:00;98.0 -2015-07-19 17:00:00;103.5 -2015-07-19 20:00:00;102.6 -2015-07-19 23:00:00;100.9 -2015-07-20 17:00:00;98.0 -2015-07-20 20:00:00;96.3 -2015-07-20 23:00:00;95.8 -2015-07-21 17:00:00;94.5 -2015-07-21 20:00:00;94.0 -2015-07-21 23:00:00;93.1 -2015-07-22 17:00:00;91.2 -2015-07-22 20:00:00;91.9 -2015-07-22 23:00:00;92.0 -2015-07-23 17:00:00;91.0 -2015-07-23 20:00:00;92.2 -2015-07-23 23:00:00;92.3 -2015-07-24 17:00:00;94.9 -2015-07-24 20:00:00;95.2 -2015-07-24 23:00:00;96.0 -2015-07-25 17:00:00;96.7 -2015-07-25 20:00:00;96.9 -2015-07-25 23:00:00;96.6 -2015-07-26 17:00:00;98.7 -2015-07-26 20:00:00;100.1 -2015-07-26 23:00:00;99.2 -2015-07-27 17:00:00;101.4 -2015-07-27 20:00:00;103.2 -2015-07-27 23:00:00;103.1 -2015-07-28 17:00:00;104.3 -2015-07-28 20:00:00;104.2 -2015-07-28 23:00:00;104.4 -2015-07-29 17:00:00;103.7 -2015-07-29 20:00:00;103.8 -2015-07-29 23:00:00;103.6 -2015-07-30 17:00:00;103.9 -2015-07-30 20:00:00;105.1 -2015-07-30 23:00:00;105.6 -2015-07-31 17:00:00;104.9 -2015-07-31 20:00:00;103.8 -2015-07-31 23:00:00;103.8 -2015-08-01 17:00:00;105.0 -2015-08-01 20:00:00;106.0 -2015-08-01 23:00:00;105.9 -2015-08-02 17:00:00;104.8 -2015-08-02 20:00:00;104.5 -2015-08-02 23:00:00;105.5 -2015-08-03 17:00:00;108.4 -2015-08-03 20:00:00;108.7 -2015-08-03 23:00:00;108.1 -2015-08-04 17:00:00;109.9 -2015-08-04 20:00:00;109.9 -2015-08-04 23:00:00;110.0 -2015-08-05 17:00:00;113.9 -2015-08-05 20:00:00;115.5 -2015-08-05 23:00:00;114.7 -2015-08-06 17:00:00;120.2 -2015-08-06 20:00:00;125.1 -2015-08-06 23:00:00;120.5 -2015-08-07 17:00:00;126.9 -2015-08-07 20:00:00;125.5 -2015-08-07 23:00:00;125.8 -2015-08-08 17:00:00;126.5 -2015-08-08 20:00:00;124.4 -2015-08-08 23:00:00;125.8 -2015-08-09 17:00:00;118.6 -2015-08-09 20:00:00;117.6 -2015-08-09 23:00:00;116.6 -2015-08-10 17:00:00;113.4 -2015-08-10 20:00:00;109.1 -2015-08-10 23:00:00;109.9 -2015-08-11 17:00:00;106.6 -2015-08-11 20:00:00;105.6 -2015-08-11 23:00:00;105.7 -2015-08-12 17:00:00;104.9 -2015-08-12 20:00:00;101.9 -2015-08-12 23:00:00;100.2 -2015-08-13 17:00:00;97.2 -2015-08-13 20:00:00;97.3 -2015-08-13 23:00:00;96.4 -2015-08-14 17:00:00;95.2 -2015-08-14 20:00:00;95.7 -2015-08-14 23:00:00;94.9 -2015-08-15 17:00:00;92.7 -2015-08-15 20:00:00;91.7 -2015-08-15 23:00:00;90.9 -2015-08-16 17:00:00;88.4 -2015-08-16 20:00:00;87.8 -2015-08-16 23:00:00;87.6 -2015-08-17 17:00:00;88.8 -2015-08-17 20:00:00;89.2 -2015-08-17 23:00:00;88.9 -2015-08-18 17:00:00;90.6 -2015-08-18 20:00:00;90.9 -2015-08-18 23:00:00;91.2 -2015-08-19 17:00:00;95.7 -2015-08-19 20:00:00;100.6 -2015-08-19 23:00:00;97.8 -2015-08-20 17:00:00;107.0 -2015-08-20 20:00:00;105.3 -2015-08-20 23:00:00;105.7 -2015-08-21 17:00:00;113.6 -2015-08-21 20:00:00;121.4 -2015-08-21 23:00:00;117.9 -2015-08-22 17:00:00;120.1 -2015-08-22 20:00:00;119.6 -2015-08-22 23:00:00;119.3 -2015-08-23 17:00:00;119.8 -2015-08-23 20:00:00;136.1 -2015-08-23 23:00:00;129.0 -2015-08-24 17:00:00;128.1 -2015-08-24 20:00:00;130.6 -2015-08-24 23:00:00;127.9 -2015-08-25 17:00:00;125.8 -2015-08-25 20:00:00;123.9 -2015-08-25 23:00:00;122.8 -2015-08-26 17:00:00;128.0 -2015-08-26 20:00:00;128.9 -2015-08-26 23:00:00;121.2 -2015-08-27 17:00:00;113.2 -2015-08-27 20:00:00;112.5 -2015-08-27 23:00:00;112.0 -2015-08-28 17:00:00;109.6 -2015-08-28 20:00:00;111.3 -2015-08-28 23:00:00;110.2 -2015-08-29 17:00:00;104.1 -2015-08-29 20:00:00;102.1 -2015-08-29 23:00:00;101.0 -2015-08-30 17:00:00;94.7 -2015-08-30 20:00:00;93.4 -2015-08-30 23:00:00;92.8 -2015-08-31 17:00:00;93.9 -2015-08-31 20:00:00;92.7 -2015-08-31 23:00:00;92.7 -2015-09-01 17:00:00;91.3 -2015-09-01 20:00:00;90.7 -2015-09-01 23:00:00;91.0 -2015-09-02 17:00:00;90.4 -2015-09-02 20:00:00;89.8 -2015-09-02 23:00:00;90.2 -2015-09-03 17:00:00;87.9 -2015-09-03 20:00:00;88.0 -2015-09-03 23:00:00;88.3 -2015-09-04 17:00:00;87.9 -2015-09-04 20:00:00;91.5 -2015-09-04 23:00:00;92.6 -2015-09-05 17:00:00;87.4 -2015-09-05 20:00:00;86.8 -2015-09-05 23:00:00;86.7 -2015-09-06 17:00:00;86.5 -2015-09-06 20:00:00;86.9 -2015-09-06 23:00:00;86.9 -2015-09-07 17:00:00;84.9 -2015-09-07 20:00:00;85.0 -2015-09-07 23:00:00;85.4 -2015-09-08 17:00:00;85.7 -2015-09-08 20:00:00;84.7 -2015-09-08 23:00:00;84.5 -2015-09-09 17:00:00;83.5 -2015-09-09 20:00:00;83.5 -2015-09-09 23:00:00;83.3 -2015-09-10 17:00:00;84.0 -2015-09-10 20:00:00;84.6 -2015-09-10 23:00:00;85.9 -2015-09-11 17:00:00;93.6 -2015-09-11 20:00:00;94.1 -2015-09-11 23:00:00;94.9 -2015-09-12 17:00:00;99.5 -2015-09-12 20:00:00;100.4 -2015-09-12 23:00:00;99.9 -2015-09-13 17:00:00;99.6 -2015-09-13 20:00:00;100.0 -2015-09-13 23:00:00;98.7 -2015-09-14 17:00:00;98.7 -2015-09-14 20:00:00;97.7 -2015-09-14 23:00:00;98.1 -2015-09-15 17:00:00;101.0 -2015-09-15 20:00:00;102.2 -2015-09-15 23:00:00;103.3 -2015-09-16 17:00:00;108.7 -2015-09-16 20:00:00;110.6 -2015-09-16 23:00:00;109.7 -2015-09-17 17:00:00;107.3 -2015-09-17 20:00:00;107.9 -2015-09-17 23:00:00;106.9 -2015-09-18 17:00:00;103.4 -2015-09-18 20:00:00;103.8 -2015-09-18 23:00:00;105.3 -2015-09-19 17:00:00;105.8 -2015-09-19 20:00:00;106.7 -2015-09-19 23:00:00;106.2 -2015-09-20 17:00:00;109.0 -2015-09-20 20:00:00;111.3 -2015-09-20 23:00:00;103.8 -2015-09-21 17:00:00;103.3 -2015-09-21 20:00:00;104.2 -2015-09-21 23:00:00;106.3 -2015-09-22 17:00:00;108.1 -2015-09-22 20:00:00;107.8 -2015-09-22 23:00:00;109.6 -2015-09-23 17:00:00;108.7 -2015-09-23 20:00:00;111.4 -2015-09-23 23:00:00;108.3 -2015-09-24 17:00:00;107.9 -2015-09-24 20:00:00;107.4 -2015-09-24 23:00:00;110.7 -2015-09-25 17:00:00;119.0 -2015-09-25 20:00:00;120.5 -2015-09-25 23:00:00;122.1 -2015-09-26 17:00:00;120.4 -2015-09-26 20:00:00;120.8 -2015-09-26 23:00:00;121.9 -2015-09-27 17:00:00;127.0 -2015-09-27 20:00:00;128.1 -2015-09-27 23:00:00;123.6 -2015-09-28 17:00:00;135.7 -2015-09-28 20:00:00;124.5 -2015-09-28 23:00:00;127.8 -2015-09-29 17:00:00;130.7 -2015-09-29 20:00:00;129.6 -2015-09-29 23:00:00;133.5 -2015-09-30 17:00:00;134.3 -2015-09-30 20:00:00;131.5 -2015-09-30 23:00:00;125.0 -2015-10-01 17:00:00;118.3 -2015-10-01 20:00:00;120.0 -2015-10-01 23:00:00;114.5 -2015-10-02 17:00:00;107.3 -2015-10-02 20:00:00;107.6 -2015-10-02 23:00:00;105.4 -2015-10-03 17:00:00;97.9 -2015-10-03 20:00:00;97.0 -2015-10-03 23:00:00;95.3 -2015-10-04 17:00:00;89.8 -2015-10-04 20:00:00;88.3 -2015-10-04 23:00:00;87.5 -2015-10-05 17:00:00;83.6 -2015-10-05 20:00:00;82.6 -2015-10-05 23:00:00;83.6 -2015-10-06 17:00:00;81.5 -2015-10-06 20:00:00;81.3 -2015-10-06 23:00:00;81.2 -2015-10-07 17:00:00;81.5 -2015-10-07 20:00:00;80.4 -2015-10-07 23:00:00;79.9 -2015-10-08 17:00:00;79.7 -2015-10-08 20:00:00;79.5 -2015-10-08 23:00:00;79.9 -2015-10-09 17:00:00;81.3 -2015-10-09 20:00:00;81.0 -2015-10-09 23:00:00;81.3 -2015-10-10 17:00:00;81.7 -2015-10-10 20:00:00;81.2 -2015-10-10 23:00:00;81.7 -2015-10-11 17:00:00;84.1 -2015-10-11 20:00:00;84.3 -2015-10-11 23:00:00;86.2 -2015-10-12 17:00:00;88.2 -2015-10-12 20:00:00;88.7 -2015-10-12 23:00:00;90.5 -2015-10-13 17:00:00;94.8 -2015-10-13 20:00:00;95.2 -2015-10-13 23:00:00;95.5 -2015-10-14 17:00:00;101.5 -2015-10-14 20:00:00;100.2 -2015-10-14 23:00:00;100.0 -2015-10-15 17:00:00;103.9 -2015-10-15 20:00:00;106.1 -2015-10-15 23:00:00;107.1 -2015-10-16 17:00:00;108.2 -2015-10-16 20:00:00;108.4 -2015-10-16 23:00:00;108.5 -2015-10-17 17:00:00;114.4 -2015-10-17 20:00:00;115.8 -2015-10-17 23:00:00;116.4 -2015-10-18 17:00:00;118.8 -2015-10-18 20:00:00;118.6 -2015-10-18 23:00:00;118.6 -2015-10-19 17:00:00;122.0 -2015-10-19 20:00:00;122.7 -2015-10-19 23:00:00;122.8 -2015-10-20 17:00:00;122.8 -2015-10-20 20:00:00;121.7 -2015-10-20 23:00:00;122.6 -2015-10-21 17:00:00;126.2 -2015-10-21 20:00:00;127.8 -2015-10-21 23:00:00;120.9 -2015-10-22 17:00:00;121.2 -2015-10-22 20:00:00;119.3 -2015-10-22 23:00:00;118.2 -2015-10-23 17:00:00;114.6 -2015-10-23 20:00:00;113.7 -2015-10-23 23:00:00;112.1 -2015-10-24 17:00:00;107.6 -2015-10-24 20:00:00;105.2 -2015-10-24 23:00:00;107.0 -2015-10-25 17:00:00;105.7 -2015-10-25 20:00:00;105.2 -2015-10-25 23:00:00;105.3 -2015-10-26 17:00:00;104.1 -2015-10-26 20:00:00;104.9 -2015-10-26 23:00:00;105.0 -2015-10-27 17:00:00;108.4 -2015-10-27 20:00:00;108.7 -2015-10-27 23:00:00;108.9 -2015-10-28 17:00:00;111.9 -2015-10-28 20:00:00;110.7 -2015-10-28 23:00:00;110.1 -2015-10-29 17:00:00;112.4 -2015-10-29 20:00:00;111.4 -2015-10-29 23:00:00;110.6 -2015-10-30 17:00:00;130.8 -2015-10-30 20:00:00;119.5 -2015-10-30 23:00:00;115.5 -2015-10-31 17:00:00;112.9 -2015-10-31 20:00:00;116.7 -2015-10-31 23:00:00;113.6 -2015-11-01 18:00:00;125.4 -2015-11-01 20:00:00;122.4 -2015-11-01 22:00:00;127.4 -2015-11-02 18:00:00;119.0 -2015-11-02 20:00:00;120.1 -2015-11-02 22:00:00;120.9 -2015-11-03 18:00:00;115.6 -2015-11-03 20:00:00;122.2 -2015-11-03 22:00:00;116.7 -2015-11-04 18:00:00;114.1 -2015-11-04 20:00:00;112.0 -2015-11-04 22:00:00;109.6 -2015-11-05 18:00:00;108.5 -2015-11-05 20:00:00;108.1 -2015-11-05 22:00:00;108.4 -2015-11-06 18:00:00;115.6 -2015-11-06 20:00:00;113.2 -2015-11-06 22:00:00;112.8 -2015-11-07 18:00:00;112.6 -2015-11-07 20:00:00;112.9 -2015-11-07 22:00:00;112.1 -2015-11-08 18:00:00;106.5 -2015-11-08 20:00:00;105.7 -2015-11-08 22:00:00;105.8 -2015-11-09 18:00:00;106.6 -2015-11-09 20:00:00;105.6 -2015-11-09 22:00:00;105.7 -2015-11-10 18:00:00;104.7 -2015-11-10 20:00:00;103.3 -2015-11-10 22:00:00;103.3 -2015-11-11 18:00:00;104.5 -2015-11-11 20:00:00;102.9 -2015-11-11 22:00:00;102.3 -2015-11-12 18:00:00;101.2 -2015-11-12 20:00:00;101.4 -2015-11-12 22:00:00;101.2 -2015-11-13 18:00:00;101.0 -2015-11-13 20:00:00;100.8 -2015-11-13 22:00:00;101.9 -2015-11-14 18:00:00;103.9 -2015-11-14 20:00:00;104.1 -2015-11-14 22:00:00;104.3 -2015-11-15 18:00:00;103.2 -2015-11-15 20:00:00;103.5 -2015-11-15 22:00:00;105.0 -2015-11-16 18:00:00;103.2 -2015-11-16 20:00:00;103.2 -2015-11-16 22:00:00;102.9 -2015-11-17 18:00:00;105.1 -2015-11-17 20:00:00;104.6 -2015-11-17 22:00:00;104.2 -2015-11-18 18:00:00;105.3 -2015-11-18 20:00:00;105.1 -2015-11-18 22:00:00;104.6 -2015-11-19 18:00:00;106.2 -2015-11-19 20:00:00;105.6 -2015-11-19 22:00:00;104.7 -2015-11-20 18:00:00;107.9 -2015-11-20 20:00:00;108.4 -2015-11-20 22:00:00;108.7 -2015-11-21 18:00:00;119.4 -2015-11-21 20:00:00;119.2 -2015-11-21 22:00:00;118.7 -2015-11-22 18:00:00;123.5 -2015-11-22 20:00:00;119.9 -2015-11-22 22:00:00;119.4 -2015-11-23 18:00:00;118.1 -2015-11-23 20:00:00;116.7 -2015-11-23 22:00:00;116.4 -2015-11-24 18:00:00;111.5 -2015-11-24 20:00:00;110.3 -2015-11-24 22:00:00;109.5 -2015-11-25 18:00:00;106.3 -2015-11-25 20:00:00;106.2 -2015-11-25 22:00:00;105.7 -2015-11-26 18:00:00;102.6 -2015-11-26 20:00:00;101.2 -2015-11-26 22:00:00;103.4 -2015-11-27 18:00:00;96.8 -2015-11-27 20:00:00;96.3 -2015-11-27 22:00:00;95.8 -2015-11-28 18:00:00;94.6 -2015-11-28 20:00:00;94.0 -2015-11-28 22:00:00;93.5 -2015-11-29 18:00:00;93.4 -2015-11-29 20:00:00;92.9 -2015-11-29 22:00:00;92.8 -2015-11-30 18:00:00;94.9 -2015-11-30 20:00:00;93.1 -2015-11-30 22:00:00;94.8 -2015-12-01 18:00:00;92.7 -2015-12-01 20:00:00;91.9 -2015-12-01 22:00:00;91.8 -2015-12-02 18:00:00;92.8 -2015-12-02 20:00:00;92.6 -2015-12-02 22:00:00;92.0 -2015-12-03 18:00:00;90.4 -2015-12-03 20:00:00;91.8 -2015-12-03 22:00:00;92.4 -2015-12-04 18:00:00;97.1 -2015-12-04 20:00:00;94.8 -2015-12-04 22:00:00;94.8 -2015-12-05 18:00:00;96.8 -2015-12-05 20:00:00;97.6 -2015-12-05 22:00:00;97.9 -2015-12-06 18:00:00;99.0 -2015-12-06 20:00:00;99.3 -2015-12-06 22:00:00;100.2 -2015-12-07 18:00:00;98.0 -2015-12-07 20:00:00;97.8 -2015-12-07 22:00:00;98.4 -2015-12-08 18:00:00;102.5 -2015-12-08 20:00:00;107.9 -2015-12-08 22:00:00;102.6 -2015-12-09 18:00:00;103.9 -2015-12-09 20:00:00;105.5 -2015-12-09 22:00:00;105.0 -2015-12-10 18:00:00;104.0 -2015-12-10 20:00:00;105.2 -2015-12-10 22:00:00;105.3 -2015-12-11 18:00:00;113.7 -2015-12-11 20:00:00;110.3 -2015-12-11 22:00:00;110.6 -2015-12-12 18:00:00;114.2 -2015-12-12 20:00:00;113.1 -2015-12-12 22:00:00;112.4 -2015-12-13 18:00:00;116.3 -2015-12-13 20:00:00;118.7 -2015-12-13 22:00:00;118.8 -2015-12-14 18:00:00;119.1 -2015-12-14 20:00:00;120.2 -2015-12-14 22:00:00;120.3 -2015-12-15 18:00:00;115.3 -2015-12-15 20:00:00;115.2 -2015-12-15 22:00:00;118.9 -2015-12-16 18:00:00;120.9 -2015-12-16 20:00:00;122.2 -2015-12-16 22:00:00;121.2 -2015-12-17 18:00:00;116.6 -2015-12-17 20:00:00;114.0 -2015-12-17 22:00:00;113.4 -2015-12-18 18:00:00;113.9 -2015-12-18 20:00:00;113.3 -2015-12-18 22:00:00;113.1 -2015-12-19 18:00:00;116.2 -2015-12-19 20:00:00;115.2 -2015-12-19 22:00:00;116.8 -2015-12-20 18:00:00;111.6 -2015-12-20 20:00:00;112.8 -2015-12-20 22:00:00;113.5 -2015-12-21 18:00:00;120.5 -2015-12-21 20:00:00;117.8 -2015-12-21 22:00:00;118.8 -2015-12-22 18:00:00;122.7 -2015-12-22 20:00:00;125.8 -2015-12-22 22:00:00;124.5 -2015-12-23 18:00:00;129.6 -2015-12-23 20:00:00;129.5 -2015-12-23 22:00:00;128.3 -2015-12-24 18:00:00;130.0 -2015-12-24 20:00:00;128.4 -2015-12-24 22:00:00;127.2 -2015-12-25 18:00:00;126.7 -2015-12-25 20:00:00;122.3 -2015-12-25 22:00:00;119.6 -2015-12-26 18:00:00;114.6 -2015-12-26 20:00:00;113.5 -2015-12-26 22:00:00;109.6 -2015-12-27 18:00:00;100.8 -2015-12-27 20:00:00;106.7 -2015-12-27 22:00:00;102.6 -2015-12-28 18:00:00;114.1 -2015-12-28 20:00:00;108.4 -2015-12-28 22:00:00;109.5 -2015-12-29 18:00:00;103.3 -2015-12-29 20:00:00;101.9 -2015-12-29 22:00:00;98.6 -2015-12-30 18:00:00;97.1 -2015-12-30 20:00:00;98.1 -2015-12-30 22:00:00;95.4 -2015-12-31 18:00:00;93.7 -2015-12-31 20:00:00;93.0 -2015-12-31 22:00:00;92.8 -2016-01-01 18:00:00;95.1 -2016-01-01 20:00:00;95.1 -2016-01-01 22:00:00;94.3 -2016-01-02 18:00:00;97.6 -2016-01-02 20:00:00;96.6 -2016-01-02 22:00:00;97.2 -2016-01-03 18:00:00;99.4 -2016-01-03 20:00:00;98.5 -2016-01-03 22:00:00;98.8 -2016-01-04 18:00:00;93.0 -2016-01-04 20:00:00;92.2 -2016-01-04 22:00:00;92.0 -2016-01-05 18:00:00;91.1 -2016-01-05 20:00:00;92.1 -2016-01-05 22:00:00;92.3 -2016-01-06 18:00:00;96.4 -2016-01-06 20:00:00;96.9 -2016-01-06 22:00:00;97.9 -2016-01-07 18:00:00;100.8 -2016-01-07 20:00:00;99.9 -2016-01-07 22:00:00;100.3 -2016-01-08 18:00:00;106.7 -2016-01-08 20:00:00;104.9 -2016-01-08 22:00:00;105.8 -2016-01-09 18:00:00;103.3 -2016-01-09 20:00:00;103.5 -2016-01-09 22:00:00;103.4 -2016-01-10 18:00:00;104.8 -2016-01-10 20:00:00;105.4 -2016-01-10 22:00:00;105.3 -2016-01-11 18:00:00;106.6 -2016-01-11 20:00:00;104.5 -2016-01-11 22:00:00;105.6 -2016-01-12 18:00:00;101.7 -2016-01-12 20:00:00;102.0 -2016-01-12 22:00:00;102.9 -2016-01-13 18:00:00;100.2 -2016-01-13 20:00:00;100.7 -2016-01-13 22:00:00;99.7 -2016-01-14 18:00:00;99.3 -2016-01-14 20:00:00;99.9 -2016-01-14 22:00:00;100.9 -2016-01-15 18:00:00;100.3 -2016-01-15 20:00:00;100.1 -2016-01-15 22:00:00;100.8 -2016-01-16 18:00:00;98.0 -2016-01-16 20:00:00;96.7 -2016-01-16 22:00:00;98.2 -2016-01-17 18:00:00;96.8 -2016-01-17 20:00:00;97.4 -2016-01-17 22:00:00;98.3 -2016-01-18 18:00:00;97.2 -2016-01-18 20:00:00;96.7 -2016-01-18 22:00:00;95.9 -2016-01-19 18:00:00;93.1 -2016-01-19 20:00:00;94.4 -2016-01-19 22:00:00;94.7 -2016-01-20 18:00:00;96.9 -2016-01-20 20:00:00;97.2 -2016-01-20 22:00:00;97.9 -2016-01-21 18:00:00;101.7 -2016-01-21 20:00:00;100.7 -2016-01-21 22:00:00;100.2 -2016-01-22 18:00:00;96.5 -2016-01-22 20:00:00;97.3 -2016-01-22 22:00:00;97.1 -2016-01-23 18:00:00;94.1 -2016-01-23 20:00:00;95.8 -2016-01-23 22:00:00;96.7 -2016-01-24 18:00:00;99.4 -2016-01-24 20:00:00;100.6 -2016-01-24 22:00:00;99.9 -2016-01-25 18:00:00;105.4 -2016-01-25 20:00:00;104.3 -2016-01-25 22:00:00;103.2 -2016-01-26 18:00:00;109.9 -2016-01-26 20:00:00;111.3 -2016-01-26 22:00:00;108.9 -2016-01-27 18:00:00;112.9 -2016-01-27 20:00:00;109.3 -2016-01-27 22:00:00;110.2 -2016-01-28 18:00:00;108.0 -2016-01-28 20:00:00;106.6 -2016-01-28 22:00:00;107.8 -2016-01-29 18:00:00;104.4 -2016-01-29 20:00:00;103.7 -2016-01-29 22:00:00;110.5 -2016-01-30 18:00:00;101.4 -2016-01-30 20:00:00;102.0 -2016-01-30 22:00:00;101.4 -2016-01-31 18:00:00;98.9 -2016-01-31 20:00:00;98.3 -2016-01-31 22:00:00;97.5 -2016-02-01 18:00:00;97.1 -2016-02-01 20:00:00;97.3 -2016-02-01 22:00:00;97.0 -2016-02-02 18:00:00;99.3 -2016-02-02 20:00:00;99.1 -2016-02-02 22:00:00;100.0 -2016-02-03 18:00:00;109.4 -2016-02-03 20:00:00;108.9 -2016-02-03 22:00:00;108.9 -2016-02-04 18:00:00;121.3 -2016-02-04 20:00:00;119.8 -2016-02-04 22:00:00;117.0 -2016-02-05 18:00:00;113.0 -2016-02-05 20:00:00;116.3 -2016-02-05 22:00:00;119.2 -2016-02-06 18:00:00;114.1 -2016-02-06 20:00:00;113.9 -2016-02-06 22:00:00;114.8 -2016-02-07 18:00:00;116.5 -2016-02-07 20:00:00;113.9 -2016-02-07 22:00:00;114.3 -2016-02-08 18:00:00;110.9 -2016-02-08 20:00:00;112.1 -2016-02-08 22:00:00;113.0 -2016-02-09 18:00:00;113.9 -2016-02-09 20:00:00;114.1 -2016-02-09 22:00:00;113.0 -2016-02-10 18:00:00;109.3 -2016-02-10 20:00:00;109.2 -2016-02-10 22:00:00;108.9 -2016-02-11 18:00:00;110.0 -2016-02-11 20:00:00;109.8 -2016-02-11 22:00:00;117.2 -2016-02-12 18:00:00;111.0 -2016-02-12 20:00:00;109.3 -2016-02-12 22:00:00;108.4 -2016-02-13 18:00:00;107.6 -2016-02-13 20:00:00;107.5 -2016-02-13 22:00:00;108.8 -2016-02-14 18:00:00;105.9 -2016-02-14 20:00:00;105.4 -2016-02-14 22:00:00;106.9 -2016-02-15 18:00:00;105.8 -2016-02-15 20:00:00;104.7 -2016-02-15 22:00:00;105.1 -2016-02-16 18:00:00;101.8 -2016-02-16 20:00:00;101.5 -2016-02-16 22:00:00;100.2 -2016-02-17 18:00:00;97.5 -2016-02-17 20:00:00;97.5 -2016-02-17 22:00:00;95.0 -2016-02-18 18:00:00;92.0 -2016-02-18 20:00:00;92.7 -2016-02-18 22:00:00;93.7 -2016-02-19 18:00:00;92.3 -2016-02-19 20:00:00;91.9 -2016-02-19 22:00:00;91.3 -2016-02-20 18:00:00;96.2 -2016-02-20 20:00:00;97.8 -2016-02-20 22:00:00;96.7 -2016-02-21 18:00:00;94.8 -2016-02-21 20:00:00;93.5 -2016-02-21 22:00:00;93.6 -2016-02-22 18:00:00;92.1 -2016-02-22 20:00:00;91.7 -2016-02-22 22:00:00;91.6 -2016-02-23 18:00:00;89.6 -2016-02-23 20:00:00;89.1 -2016-02-23 22:00:00;89.8 -2016-02-24 18:00:00;86.5 -2016-02-24 20:00:00;86.1 -2016-02-24 22:00:00;87.5 -2016-02-25 18:00:00;87.8 -2016-02-25 20:00:00;89.9 -2016-02-25 22:00:00;88.8 -2016-02-26 18:00:00;86.6 -2016-02-26 20:00:00;87.2 -2016-02-26 22:00:00;88.0 -2016-02-27 18:00:00;89.1 -2016-02-27 20:00:00;88.6 -2016-02-27 22:00:00;89.1 -2016-02-28 18:00:00;91.3 -2016-02-28 20:00:00;91.5 -2016-02-28 22:00:00;92.0 -2016-02-29 18:00:00;89.8 -2016-02-29 20:00:00;89.3 -2016-02-29 22:00:00;89.6 -2016-03-01 17:00:00;94.7 -2016-03-01 20:00:00;95.1 -2016-03-01 23:00:00;94.7 -2016-03-02 17:00:00;96.9 -2016-03-02 20:00:00;96.5 -2016-03-02 23:00:00;97.5 -2016-03-03 17:00:00;98.9 -2016-03-03 20:00:00;97.1 -2016-03-03 23:00:00;97.7 -2016-03-04 17:00:00;99.5 -2016-03-04 20:00:00;98.9 -2016-03-04 23:00:00;98.3 -2016-03-05 17:00:00;95.2 -2016-03-05 20:00:00;94.7 -2016-03-05 23:00:00;95.2 -2016-03-06 17:00:00;94.7 -2016-03-06 20:00:00;94.1 -2016-03-06 23:00:00;93.9 -2016-03-07 17:00:00;93.3 -2016-03-07 20:00:00;92.8 -2016-03-07 23:00:00;91.4 -2016-03-08 17:00:00;94.6 -2016-03-08 20:00:00;94.2 -2016-03-08 23:00:00;93.9 -2016-03-09 17:00:00;97.8 -2016-03-09 20:00:00;96.0 -2016-03-09 23:00:00;95.3 -2016-03-10 17:00:00;94.6 -2016-03-10 20:00:00;93.7 -2016-03-10 23:00:00;94.2 -2016-03-11 17:00:00;93.4 -2016-03-11 20:00:00;93.0 -2016-03-11 23:00:00;93.8 -2016-03-12 17:00:00;94.4 -2016-03-12 20:00:00;93.9 -2016-03-12 23:00:00;93.9 -2016-03-13 17:00:00;92.5 -2016-03-13 20:00:00;91.5 -2016-03-13 23:00:00;94.2 -2016-03-14 17:00:00;91.9 -2016-03-14 20:00:00;92.4 -2016-03-14 23:00:00;92.6 -2016-03-15 17:00:00;94.0 -2016-03-15 20:00:00;93.1 -2016-03-15 23:00:00;92.1 -2016-03-16 17:00:00;90.3 -2016-03-16 20:00:00;90.1 -2016-03-16 23:00:00;91.1 -2016-03-17 17:00:00;90.9 -2016-03-17 20:00:00;90.7 -2016-03-17 23:00:00;66.1 -2016-03-18 17:00:00;90.2 -2016-03-18 20:00:00;89.5 -2016-03-18 23:00:00;90.7 -2016-03-19 17:00:00;88.9 -2016-03-19 20:00:00;88.6 -2016-03-19 23:00:00;88.5 -2016-03-20 17:00:00;87.0 -2016-03-20 20:00:00;86.9 -2016-03-20 23:00:00;87.6 -2016-03-21 17:00:00;88.8 -2016-03-21 20:00:00;88.2 -2016-03-21 23:00:00;88.4 -2016-03-22 17:00:00;86.4 -2016-03-22 20:00:00;86.7 -2016-03-22 23:00:00;86.7 -2016-03-23 17:00:00;86.2 -2016-03-23 20:00:00;86.2 -2016-03-23 23:00:00;85.9 -2016-03-24 17:00:00;85.9 -2016-03-24 20:00:00;86.0 -2016-03-24 23:00:00;85.4 -2016-03-25 17:00:00;85.0 -2016-03-25 20:00:00;85.1 -2016-03-25 23:00:00;84.9 -2016-03-26 17:00:00;84.9 -2016-03-26 20:00:00;85.1 -2016-03-26 23:00:00;86.1 -2016-03-27 17:00:00;87.9 -2016-03-27 20:00:00;87.9 -2016-03-27 23:00:00;88.2 -2016-03-28 17:00:00;88.1 -2016-03-28 20:00:00;87.4 -2016-03-28 23:00:00;87.4 -2016-03-29 17:00:00;87.6 -2016-03-29 20:00:00;87.5 -2016-03-29 23:00:00;87.3 -2016-03-30 17:00:00;84.1 -2016-03-30 20:00:00;83.6 -2016-03-30 23:00:00;83.6 -2016-03-31 17:00:00;81.5 -2016-03-31 20:00:00;81.6 -2016-03-31 23:00:00;81.7 -2016-04-01 17:00:00;82.0 -2016-04-01 20:00:00;82.0 -2016-04-01 23:00:00;81.6 -2016-04-02 17:00:00;80.5 -2016-04-02 20:00:00;81.5 -2016-04-02 23:00:00;81.4 -2016-04-03 17:00:00;82.2 -2016-04-03 20:00:00;82.3 -2016-04-03 23:00:00;82.6 -2016-04-04 17:00:00;83.0 -2016-04-04 20:00:00;83.5 -2016-04-04 23:00:00;82.3 -2016-04-05 17:00:00;82.5 -2016-04-05 20:00:00;83.5 -2016-04-05 23:00:00;83.4 -2016-04-06 17:00:00;86.9 -2016-04-06 20:00:00;87.2 -2016-04-06 23:00:00;88.7 -2016-04-07 17:00:00;92.4 -2016-04-07 20:00:00;92.5 -2016-04-07 23:00:00;93.5 -2016-04-08 17:00:00;95.8 -2016-04-08 20:00:00;98.6 -2016-04-08 23:00:00;101.3 -2016-04-09 17:00:00;108.8 -2016-04-09 20:00:00;105.9 -2016-04-09 23:00:00;107.0 -2016-04-10 17:00:00;110.6 -2016-04-10 20:00:00;111.1 -2016-04-10 23:00:00;114.6 -2016-04-11 17:00:00;115.3 -2016-04-11 20:00:00;117.2 -2016-04-11 23:00:00;113.7 -2016-04-12 17:00:00;110.9 -2016-04-12 20:00:00;111.9 -2016-04-12 23:00:00;114.3 -2016-04-13 17:00:00;110.1 -2016-04-13 20:00:00;108.8 -2016-04-13 23:00:00;113.5 -2016-04-14 17:00:00;111.2 -2016-04-14 20:00:00;111.8 -2016-04-14 23:00:00;113.0 -2016-04-15 17:00:00;114.0 -2016-04-15 20:00:00;113.2 -2016-04-15 23:00:00;114.7 -2016-04-16 17:00:00;110.3 -2016-04-16 20:00:00;114.0 -2016-04-16 23:00:00;109.4 -2016-04-17 17:00:00;104.8 -2016-04-17 20:00:00;102.9 -2016-04-17 23:00:00;103.8 -2016-04-18 17:00:00;97.0 -2016-04-18 20:00:00;95.4 -2016-04-18 23:00:00;96.2 -2016-04-19 17:00:00;90.3 -2016-04-19 20:00:00;89.9 -2016-04-19 23:00:00;89.3 -2016-04-20 17:00:00;84.7 -2016-04-20 20:00:00;84.0 -2016-04-20 23:00:00;83.4 -2016-04-21 17:00:00;77.5 -2016-04-21 20:00:00;77.5 -2016-04-21 23:00:00;77.7 -2016-04-22 17:00:00;77.2 -2016-04-22 20:00:00;77.5 -2016-04-22 23:00:00;78.0 -2016-04-23 17:00:00;78.9 -2016-04-23 20:00:00;79.6 -2016-04-23 23:00:00;80.0 -2016-04-24 17:00:00;83.8 -2016-04-24 20:00:00;82.8 -2016-04-24 23:00:00;83.0 -2016-04-25 17:00:00;83.2 -2016-04-25 20:00:00;82.9 -2016-04-25 23:00:00;82.9 -2016-04-26 17:00:00;85.6 -2016-04-26 20:00:00;86.3 -2016-04-26 23:00:00;87.3 -2016-04-27 17:00:00;91.6 -2016-04-27 20:00:00;93.8 -2016-04-27 23:00:00;92.8 -2016-04-28 17:00:00;95.1 -2016-04-28 20:00:00;96.3 -2016-04-28 23:00:00;94.3 -2016-04-29 17:00:00;93.8 -2016-04-29 20:00:00;93.8 -2016-04-29 23:00:00;93.5 -2016-04-30 17:00:00;95.2 -2016-04-30 20:00:00;95.4 -2016-04-30 23:00:00;95.2 -2016-05-01 17:00:00;93.1 -2016-05-01 20:00:00;93.6 -2016-05-01 23:00:00;94.5 -2016-05-02 17:00:00;96.7 -2016-05-02 20:00:00;91.3 -2016-05-02 23:00:00;93.0 -2016-05-03 17:00:00;89.6 -2016-05-03 20:00:00;91.5 -2016-05-03 23:00:00;92.6 -2016-05-04 17:00:00;91.9 -2016-05-04 20:00:00;91.6 -2016-05-04 23:00:00;92.5 -2016-05-05 17:00:00;90.9 -2016-05-05 20:00:00;88.7 -2016-05-05 23:00:00;89.4 -2016-05-06 17:00:00;86.8 -2016-05-06 20:00:00;91.2 -2016-05-06 23:00:00;91.4 -2016-05-07 17:00:00;90.8 -2016-05-07 20:00:00;89.7 -2016-05-07 23:00:00;89.3 -2016-05-08 17:00:00;86.8 -2016-05-08 20:00:00;85.6 -2016-05-08 23:00:00;84.9 -2016-05-09 17:00:00;87.6 -2016-05-09 20:00:00;90.2 -2016-05-09 23:00:00;90.1 -2016-05-10 17:00:00;92.0 -2016-05-10 20:00:00;90.5 -2016-05-10 23:00:00;92.3 -2016-05-11 17:00:00;92.8 -2016-05-11 20:00:00;95.8 -2016-05-11 23:00:00;93.7 -2016-05-12 17:00:00;93.8 -2016-05-12 20:00:00;93.9 -2016-05-12 23:00:00;94.1 -2016-05-13 17:00:00;97.2 -2016-05-13 20:00:00;95.4 -2016-05-13 23:00:00;98.5 -2016-05-14 17:00:00;103.3 -2016-05-14 20:00:00;103.4 -2016-05-14 23:00:00;104.9 -2016-05-15 17:00:00;119.1 -2016-05-15 20:00:00;110.8 -2016-05-15 23:00:00;105.7 -2016-05-16 17:00:00;107.0 -2016-05-16 20:00:00;104.3 -2016-05-16 23:00:00;104.7 -2016-05-17 17:00:00;107.2 -2016-05-17 20:00:00;105.6 -2016-05-17 23:00:00;106.6 -2016-05-18 17:00:00;104.9 -2016-05-18 20:00:00;104.7 -2016-05-18 23:00:00;103.7 -2016-05-19 17:00:00;101.3 -2016-05-19 20:00:00;101.2 -2016-05-19 23:00:00;103.0 -2016-05-20 17:00:00;102.4 -2016-05-20 20:00:00;102.0 -2016-05-20 23:00:00;104.0 -2016-05-21 17:00:00;99.7 -2016-05-21 20:00:00;100.2 -2016-05-21 23:00:00;101.4 -2016-05-22 17:00:00;99.7 -2016-05-22 20:00:00;99.8 -2016-05-22 23:00:00;100.9 -2016-05-23 17:00:00;98.7 -2016-05-23 20:00:00;99.8 -2016-05-23 23:00:00;97.5 -2016-05-24 17:00:00;98.5 -2016-05-24 20:00:00;96.7 -2016-05-24 23:00:00;96.3 -2016-05-25 17:00:00;96.4 -2016-05-25 20:00:00;96.1 -2016-05-25 23:00:00;96.1 -2016-05-26 17:00:00;93.1 -2016-05-26 20:00:00;94.2 -2016-05-26 23:00:00;91.0 -2016-05-27 17:00:00;91.1 -2016-05-27 20:00:00;92.8 -2016-05-27 23:00:00;93.1 -2016-05-28 17:00:00;88.3 -2016-05-28 20:00:00;90.1 -2016-05-28 23:00:00;89.8 -2016-05-29 17:00:00;86.0 -2016-05-29 20:00:00;85.3 -2016-05-29 23:00:00;85.6 -2016-05-30 17:00:00;90.1 -2016-05-30 20:00:00;88.7 -2016-05-30 23:00:00;88.4 -2016-05-31 17:00:00;90.1 -2016-05-31 20:00:00;89.0 -2016-05-31 23:00:00;88.9 -2016-06-01 17:00:00;89.8 -2016-06-01 20:00:00;88.4 -2016-06-01 23:00:00;90.5 -2016-06-02 17:00:00;88.0 -2016-06-02 20:00:00;87.7 -2016-06-02 23:00:00;87.6 -2016-06-03 17:00:00;86.8 -2016-06-03 20:00:00;85.7 -2016-06-03 23:00:00;85.3 -2016-06-04 17:00:00;83.1 -2016-06-04 20:00:00;82.4 -2016-06-04 23:00:00;82.4 -2016-06-05 17:00:00;80.6 -2016-06-05 20:00:00;81.5 -2016-06-05 23:00:00;81.3 -2016-06-06 17:00:00;80.0 -2016-06-06 20:00:00;80.8 -2016-06-06 23:00:00;80.6 -2016-06-07 17:00:00;80.5 -2016-06-07 20:00:00;80.8 -2016-06-07 23:00:00;81.4 -2016-06-08 17:00:00;81.7 -2016-06-08 20:00:00;82.6 -2016-06-08 23:00:00;81.8 -2016-06-09 17:00:00;88.3 -2016-06-09 20:00:00;87.8 -2016-06-09 23:00:00;87.7 -2016-06-10 17:00:00;88.1 -2016-06-10 20:00:00;87.5 -2016-06-10 23:00:00;87.7 -2016-06-11 17:00:00;92.3 -2016-06-11 20:00:00;90.9 -2016-06-11 23:00:00;98.4 -2016-06-12 17:00:00;95.2 -2016-06-12 20:00:00;97.1 -2016-06-12 23:00:00;95.3 -2016-06-13 17:00:00;93.3 -2016-06-13 20:00:00;93.9 -2016-06-13 23:00:00;92.7 -2016-06-14 17:00:00;90.5 -2016-06-14 20:00:00;90.4 -2016-06-14 23:00:00;90.2 -2016-06-15 17:00:00;89.3 -2016-06-15 20:00:00;90.1 -2016-06-15 23:00:00;89.8 -2016-06-16 17:00:00;90.5 -2016-06-16 20:00:00;91.0 -2016-06-16 23:00:00;90.3 -2016-06-17 17:00:00;88.6 -2016-06-17 20:00:00;89.4 -2016-06-17 23:00:00;87.7 -2016-06-18 17:00:00;86.4 -2016-06-18 20:00:00;86.3 -2016-06-18 23:00:00;87.0 -2016-06-19 17:00:00;86.5 -2016-06-19 20:00:00;87.9 -2016-06-19 23:00:00;85.2 -2016-06-20 17:00:00;86.7 -2016-06-20 20:00:00;87.1 -2016-06-20 23:00:00;84.8 -2016-06-21 17:00:00;84.5 -2016-06-21 20:00:00;82.9 -2016-06-21 23:00:00;82.6 -2016-06-22 17:00:00;81.3 -2016-06-22 20:00:00;80.9 -2016-06-22 23:00:00;81.5 -2016-06-23 17:00:00;81.0 -2016-06-23 20:00:00;80.0 -2016-06-23 23:00:00;80.1 -2016-06-24 17:00:00;78.3 -2016-06-24 20:00:00;78.2 -2016-06-24 23:00:00;79.4 -2016-06-25 17:00:00;80.9 -2016-06-25 20:00:00;79.6 -2016-06-25 23:00:00;79.4 -2016-06-26 17:00:00;80.0 -2016-06-26 20:00:00;79.2 -2016-06-26 23:00:00;79.2 -2016-06-27 17:00:00;78.5 -2016-06-27 20:00:00;78.0 -2016-06-27 23:00:00;78.1 -2016-06-28 17:00:00;75.4 -2016-06-28 20:00:00;75.5 -2016-06-28 23:00:00;76.6 -2016-06-29 17:00:00;75.8 -2016-06-29 20:00:00;76.0 -2016-06-29 23:00:00;76.6 -2016-06-30 17:00:00;75.3 -2016-06-30 20:00:00;75.4 -2016-06-30 23:00:00;75.7 -2016-07-01 17:00:00;74.8 -2016-07-01 20:00:00;74.4 -2016-07-01 23:00:00;74.3 -2016-07-02 17:00:00;73.6 -2016-07-02 20:00:00;73.3 -2016-07-02 23:00:00;73.7 -2016-07-03 17:00:00;75.2 -2016-07-03 20:00:00;74.8 -2016-07-03 23:00:00;74.8 -2016-07-04 17:00:00;77.9 -2016-07-04 20:00:00;76.3 -2016-07-04 23:00:00;75.6 -2016-07-05 17:00:00;75.8 -2016-07-05 20:00:00;74.9 -2016-07-05 23:00:00;80.5 -2016-07-06 17:00:00;82.3 -2016-07-06 20:00:00;79.7 -2016-07-06 23:00:00;80.4 -2016-07-07 17:00:00;86.4 -2016-07-07 20:00:00;86.1 -2016-07-07 23:00:00;87.0 -2016-07-08 17:00:00;89.8 -2016-07-08 20:00:00;90.0 -2016-07-08 23:00:00;89.7 -2016-07-09 17:00:00;94.2 -2016-07-09 20:00:00;95.3 -2016-07-09 23:00:00;95.6 -2016-07-10 17:00:00;98.4 -2016-07-10 20:00:00;97.6 -2016-07-10 23:00:00;97.4 -2016-07-11 17:00:00;99.0 -2016-07-11 20:00:00;97.8 -2016-07-11 23:00:00;97.9 -2016-07-12 17:00:00;95.9 -2016-07-12 20:00:00;95.5 -2016-07-12 23:00:00;96.3 -2016-07-13 17:00:00;96.9 -2016-07-13 20:00:00;100.0 -2016-07-13 23:00:00;98.1 -2016-07-14 17:00:00;97.2 -2016-07-14 20:00:00;98.2 -2016-07-14 23:00:00;98.4 -2016-07-15 17:00:00;103.6 -2016-07-15 20:00:00;105.4 -2016-07-15 23:00:00;104.7 -2016-07-16 17:00:00;107.8 -2016-07-16 20:00:00;110.1 -2016-07-16 23:00:00;109.7 -2016-07-17 17:00:00;113.6 -2016-07-17 20:00:00;108.6 -2016-07-17 23:00:00;116.1 -2016-07-18 17:00:00;112.3 -2016-07-18 20:00:00;110.6 -2016-07-18 23:00:00;110.9 -2016-07-19 17:00:00;109.6 -2016-07-19 20:00:00;104.1 -2016-07-19 23:00:00;108.7 -2016-07-20 17:00:00;109.7 -2016-07-20 20:00:00;111.5 -2016-07-20 23:00:00;116.2 -2016-07-21 17:00:00;104.5 -2016-07-21 20:00:00;103.3 -2016-07-21 23:00:00;107.3 -2016-07-22 17:00:00;93.3 -2016-07-22 20:00:00;93.3 -2016-07-22 23:00:00;92.7 -2016-07-23 17:00:00;91.8 -2016-07-23 20:00:00;88.9 -2016-07-23 23:00:00;87.3 -2016-07-24 17:00:00;84.0 -2016-07-24 20:00:00;84.8 -2016-07-24 23:00:00;80.6 -2016-07-25 17:00:00;76.8 -2016-07-25 20:00:00;75.9 -2016-07-25 23:00:00;75.6 -2016-07-26 17:00:00;75.5 -2016-07-26 20:00:00;75.9 -2016-07-26 23:00:00;74.2 -2016-07-27 17:00:00;73.5 -2016-07-27 20:00:00;73.8 -2016-07-27 23:00:00;73.9 -2016-07-28 17:00:00;72.6 -2016-07-28 20:00:00;72.5 -2016-07-28 23:00:00;73.1 -2016-07-29 17:00:00;72.8 -2016-07-29 20:00:00;72.6 -2016-07-29 23:00:00;73.3 -2016-07-30 17:00:00;73.2 -2016-07-30 20:00:00;73.1 -2016-07-30 23:00:00;72.6 -2016-07-31 17:00:00;73.8 -2016-07-31 20:00:00;73.7 -2016-07-31 23:00:00;74.2 -2016-08-01 17:00:00;75.9 -2016-08-01 20:00:00;74.1 -2016-08-01 23:00:00;74.1 -2016-08-02 17:00:00;75.8 -2016-08-02 20:00:00;77.1 -2016-08-02 23:00:00;75.4 -2016-08-03 17:00:00;76.8 -2016-08-03 20:00:00;77.0 -2016-08-03 23:00:00;77.2 -2016-08-04 17:00:00;78.4 -2016-08-04 20:00:00;78.5 -2016-08-04 23:00:00;80.4 -2016-08-05 17:00:00;82.0 -2016-08-05 20:00:00;82.1 -2016-08-05 23:00:00;82.8 -2016-08-06 17:00:00;84.2 -2016-08-06 20:00:00;85.5 -2016-08-06 23:00:00;86.3 -2016-08-07 17:00:00;95.7 -2016-08-07 20:00:00;95.3 -2016-08-07 23:00:00;99.0 -2016-08-08 17:00:00;101.9 -2016-08-08 20:00:00;99.0 -2016-08-08 23:00:00;97.9 -2016-08-09 17:00:00;99.0 -2016-08-09 20:00:00;94.9 -2016-08-09 23:00:00;96.9 -2016-08-10 17:00:00;97.0 -2016-08-10 20:00:00;97.6 -2016-08-10 23:00:00;95.7 -2016-08-11 17:00:00;104.0 -2016-08-11 20:00:00;97.2 -2016-08-11 23:00:00;95.5 -2016-08-12 17:00:00;96.9 -2016-08-12 20:00:00;97.3 -2016-08-12 23:00:00;93.6 -2016-08-13 17:00:00;93.1 -2016-08-13 20:00:00;92.9 -2016-08-13 23:00:00;92.0 -2016-08-14 17:00:00;89.7 -2016-08-14 20:00:00;89.4 -2016-08-14 23:00:00;89.5 -2016-08-15 17:00:00;88.8 -2016-08-15 20:00:00;89.8 -2016-08-15 23:00:00;90.2 -2016-08-16 17:00:00;87.4 -2016-08-16 20:00:00;88.7 -2016-08-16 23:00:00;87.4 -2016-08-17 17:00:00;85.7 -2016-08-17 20:00:00;84.9 -2016-08-17 23:00:00;83.0 -2016-08-18 17:00:00;83.8 -2016-08-18 20:00:00;84.4 -2016-08-18 23:00:00;82.3 -2016-08-19 17:00:00;82.9 -2016-08-19 20:00:00;82.7 -2016-08-19 23:00:00;81.6 -2016-08-20 17:00:00;81.0 -2016-08-20 20:00:00;80.0 -2016-08-20 23:00:00;79.9 -2016-08-21 17:00:00;78.8 -2016-08-21 20:00:00;78.4 -2016-08-21 23:00:00;78.6 -2016-08-22 17:00:00;80.9 -2016-08-22 20:00:00;81.8 -2016-08-22 23:00:00;83.6 -2016-08-23 17:00:00;83.3 -2016-08-23 20:00:00;83.1 -2016-08-23 23:00:00;82.1 -2016-08-24 17:00:00;81.1 -2016-08-24 20:00:00;79.7 -2016-08-24 23:00:00;79.8 -2016-08-25 17:00:00;81.3 -2016-08-25 20:00:00;80.3 -2016-08-25 23:00:00;81.9 -2016-08-26 17:00:00;85.6 -2016-08-26 20:00:00;83.6 -2016-08-26 23:00:00;84.0 -2016-08-27 17:00:00;86.5 -2016-08-27 20:00:00;85.6 -2016-08-27 23:00:00;86.4 -2016-08-28 17:00:00;88.2 -2016-08-28 20:00:00;87.1 -2016-08-28 23:00:00;88.9 -2016-08-29 17:00:00;93.1 -2016-08-29 20:00:00;89.5 -2016-08-29 23:00:00;92.3 -2016-08-30 17:00:00;100.4 -2016-08-30 20:00:00;102.3 -2016-08-30 23:00:00;101.2 -2016-08-31 17:00:00;99.3 -2016-08-31 20:00:00;99.3 -2016-08-31 23:00:00;97.5 -2016-09-01 17:00:00;98.9 -2016-09-01 20:00:00;96.9 -2016-09-01 23:00:00;98.6 -2016-09-02 17:00:00;100.4 -2016-09-02 20:00:00;96.3 -2016-09-02 23:00:00;99.7 -2016-09-03 17:00:00;100.7 -2016-09-03 20:00:00;100.7 -2016-09-03 23:00:00;101.5 -2016-09-04 17:00:00;97.3 -2016-09-04 20:00:00;99.0 -2016-09-04 23:00:00;96.9 -2016-09-05 17:00:00;93.5 -2016-09-05 20:00:00;95.3 -2016-09-05 23:00:00;93.8 -2016-09-06 17:00:00;93.0 -2016-09-06 20:00:00;93.9 -2016-09-06 23:00:00;94.1 -2016-09-07 17:00:00;94.4 -2016-09-07 20:00:00;94.4 -2016-09-07 23:00:00;93.6 -2016-09-08 17:00:00;94.0 -2016-09-08 20:00:00;95.9 -2016-09-08 23:00:00;92.4 -2016-09-09 17:00:00;90.6 -2016-09-09 20:00:00;92.3 -2016-09-09 23:00:00;92.2 -2016-09-10 17:00:00;95.7 -2016-09-10 20:00:00;94.3 -2016-09-10 23:00:00;91.8 -2016-09-11 17:00:00;87.5 -2016-09-11 20:00:00;87.5 -2016-09-11 23:00:00;88.4 -2016-09-12 17:00:00;85.4 -2016-09-12 20:00:00;87.5 -2016-09-12 23:00:00;87.5 -2016-09-13 17:00:00;85.6 -2016-09-13 20:00:00;87.0 -2016-09-13 23:00:00;85.8 -2016-09-14 17:00:00;86.2 -2016-09-14 20:00:00;86.2 -2016-09-14 23:00:00;85.6 -2016-09-15 17:00:00;86.5 -2016-09-15 20:00:00;85.3 -2016-09-15 23:00:00;85.5 -2016-09-16 17:00:00;85.3 -2016-09-16 20:00:00;84.5 -2016-09-16 23:00:00;84.5 -2016-09-17 17:00:00;81.6 -2016-09-17 20:00:00;81.0 -2016-09-17 23:00:00;81.5 -2016-09-18 17:00:00;82.5 -2016-09-18 20:00:00;83.8 -2016-09-18 23:00:00;83.5 -2016-09-19 17:00:00;84.5 -2016-09-19 20:00:00;83.3 -2016-09-19 23:00:00;84.1 -2016-09-20 17:00:00;84.2 -2016-09-20 20:00:00;85.2 -2016-09-20 23:00:00;85.8 -2016-09-21 17:00:00;86.6 -2016-09-21 20:00:00;86.1 -2016-09-21 23:00:00;85.7 -2016-09-22 17:00:00;83.5 -2016-09-22 20:00:00;85.7 -2016-09-22 23:00:00;83.6 -2016-09-23 17:00:00;86.4 -2016-09-23 20:00:00;86.1 -2016-09-23 23:00:00;84.2 -2016-09-24 17:00:00;84.9 -2016-09-24 20:00:00;85.4 -2016-09-24 23:00:00;83.8 -2016-09-25 17:00:00;83.8 -2016-09-25 20:00:00;85.1 -2016-09-25 23:00:00;82.8 -2016-09-26 17:00:00;85.4 -2016-09-26 20:00:00;87.2 -2016-09-26 23:00:00;86.9 -2016-09-27 17:00:00;85.3 -2016-09-27 20:00:00;85.9 -2016-09-27 23:00:00;84.3 -2016-09-28 17:00:00;84.5 -2016-09-28 20:00:00;84.8 -2016-09-28 23:00:00;84.3 -2016-09-29 17:00:00;81.1 -2016-09-29 20:00:00;83.0 -2016-09-29 23:00:00;83.7 -2016-09-30 17:00:00;79.0 -2016-09-30 20:00:00;80.8 -2016-09-30 23:00:00;80.0 -2016-10-01 17:00:00;79.0 -2016-10-01 20:00:00;81.2 -2016-10-01 23:00:00;79.8 -2016-10-02 17:00:00;80.9 -2016-10-02 20:00:00;82.4 -2016-10-02 23:00:00;84.4 -2016-10-03 17:00:00;86.8 -2016-10-03 20:00:00;87.9 -2016-10-03 23:00:00;89.8 -2016-10-04 17:00:00;93.1 -2016-10-04 20:00:00;93.1 -2016-10-04 23:00:00;93.4 -2016-10-05 17:00:00;96.8 -2016-10-05 20:00:00;99.3 -2016-10-05 23:00:00;99.4 -2016-10-06 17:00:00;102.2 -2016-10-06 20:00:00;101.4 -2016-10-06 23:00:00;102.3 -2016-10-07 17:00:00;103.6 -2016-10-07 20:00:00;104.0 -2016-10-07 23:00:00;105.7 -2016-10-08 17:00:00;106.0 -2016-10-08 20:00:00;104.1 -2016-10-08 23:00:00;103.3 -2016-10-09 17:00:00;104.1 -2016-10-09 20:00:00;104.2 -2016-10-09 23:00:00;104.3 -2016-10-10 17:00:00;103.1 -2016-10-10 20:00:00;101.6 -2016-10-10 23:00:00;102.5 -2016-10-11 17:00:00;100.1 -2016-10-11 20:00:00;98.8 -2016-10-11 23:00:00;99.8 -2016-10-12 17:00:00;97.5 -2016-10-12 20:00:00;97.2 -2016-10-12 23:00:00;98.6 -2016-10-13 17:00:00;95.4 -2016-10-13 20:00:00;94.8 -2016-10-13 23:00:00;95.8 -2016-10-14 17:00:00;93.4 -2016-10-14 20:00:00;92.3 -2016-10-14 23:00:00;91.0 -2016-10-15 17:00:00;84.6 -2016-10-15 20:00:00;84.4 -2016-10-15 23:00:00;82.7 -2016-10-16 17:00:00;82.2 -2016-10-16 20:00:00;80.4 -2016-10-16 23:00:00;79.4 -2016-10-17 17:00:00;75.8 -2016-10-17 20:00:00;75.6 -2016-10-17 23:00:00;76.3 -2016-10-18 17:00:00;77.1 -2016-10-18 20:00:00;76.8 -2016-10-18 23:00:00;77.2 -2016-10-19 17:00:00;75.6 -2016-10-19 20:00:00;75.8 -2016-10-19 23:00:00;76.2 -2016-10-20 17:00:00;74.9 -2016-10-20 20:00:00;74.0 -2016-10-20 23:00:00;74.8 -2016-10-21 17:00:00;76.6 -2016-10-21 20:00:00;77.1 -2016-10-21 23:00:00;76.5 -2016-10-22 17:00:00;76.4 -2016-10-22 20:00:00;76.7 -2016-10-22 23:00:00;75.9 -2016-10-23 17:00:00;76.0 -2016-10-23 20:00:00;76.0 -2016-10-23 23:00:00;76.6 -2016-10-24 17:00:00;74.8 -2016-10-24 20:00:00;74.5 -2016-10-24 23:00:00;74.7 -2016-10-25 17:00:00;76.3 -2016-10-25 20:00:00;76.9 -2016-10-25 23:00:00;76.7 -2016-10-26 17:00:00;76.7 -2016-10-26 20:00:00;77.1 -2016-10-26 23:00:00;76.3 -2016-10-27 17:00:00;77.0 -2016-10-27 20:00:00;77.8 -2016-10-27 23:00:00;78.3 -2016-10-28 17:00:00;77.5 -2016-10-28 20:00:00;78.2 -2016-10-28 23:00:00;77.3 -2016-10-29 17:00:00;77.8 -2016-10-29 20:00:00;78.0 -2016-10-29 23:00:00;77.4 -2016-10-30 17:00:00;75.7 -2016-10-30 20:00:00;75.1 -2016-10-30 23:00:00;74.8 -2016-10-31 17:00:00;74.8 -2016-10-31 20:00:00;75.5 -2016-10-31 23:00:00;76.4 -2016-11-01 18:00:00;75.1 -2016-11-01 20:00:00;75.4 -2016-11-01 22:00:00;75.2 -2016-11-02 18:00:00;74.3 -2016-11-02 20:00:00;74.8 -2016-11-02 22:00:00;74.7 -2016-11-03 18:00:00;74.2 -2016-11-03 20:00:00;74.4 -2016-11-03 22:00:00;73.9 -2016-11-04 18:00:00;75.8 -2016-11-04 20:00:00;75.4 -2016-11-04 22:00:00;74.8 -2016-11-05 18:00:00;75.1 -2016-11-05 20:00:00;75.3 -2016-11-05 22:00:00;75.7 -2016-11-06 18:00:00;75.3 -2016-11-06 20:00:00;74.9 -2016-11-06 22:00:00;74.7 -2016-11-07 18:00:00;75.8 -2016-11-07 20:00:00;75.1 -2016-11-07 22:00:00;75.0 -2016-11-08 18:00:00;75.2 -2016-11-08 20:00:00;75.4 -2016-11-08 22:00:00;75.3 -2016-11-09 18:00:00;77.9 -2016-11-09 20:00:00;78.3 -2016-11-09 22:00:00;77.7 -2016-11-10 18:00:00;78.1 -2016-11-10 20:00:00;78.6 -2016-11-10 22:00:00;78.0 -2016-11-11 18:00:00;78.1 -2016-11-11 20:00:00;76.8 -2016-11-11 22:00:00;77.3 -2016-11-12 18:00:00;76.4 -2016-11-12 20:00:00;76.8 -2016-11-12 22:00:00;77.4 -2016-11-13 18:00:00;76.0 -2016-11-13 20:00:00;76.2 -2016-11-13 22:00:00;76.8 -2016-11-14 18:00:00;75.4 -2016-11-14 20:00:00;75.6 -2016-11-14 22:00:00;75.5 -2016-11-15 18:00:00;74.3 -2016-11-15 20:00:00;74.9 -2016-11-15 22:00:00;74.6 -2016-11-16 18:00:00;78.0 -2016-11-16 20:00:00;79.1 -2016-11-16 22:00:00;78.0 -2016-11-17 18:00:00;76.2 -2016-11-17 20:00:00;76.8 -2016-11-17 22:00:00;76.3 -2016-11-18 18:00:00;76.7 -2016-11-18 20:00:00;75.8 -2016-11-18 22:00:00;75.8 -2016-11-19 18:00:00;74.9 -2016-11-19 20:00:00;74.9 -2016-11-19 22:00:00;75.7 -2016-11-20 18:00:00;74.5 -2016-11-20 20:00:00;74.6 -2016-11-20 22:00:00;73.9 -2016-11-21 18:00:00;73.9 -2016-11-21 20:00:00;73.1 -2016-11-21 22:00:00;73.5 -2016-11-22 18:00:00;75.7 -2016-11-22 20:00:00;75.4 -2016-11-22 22:00:00;75.1 -2016-11-23 18:00:00;76.2 -2016-11-23 20:00:00;75.7 -2016-11-23 22:00:00;75.8 -2016-11-24 18:00:00;76.4 -2016-11-24 20:00:00;77.0 -2016-11-24 22:00:00;77.0 -2016-11-25 18:00:00;78.2 -2016-11-25 20:00:00;78.8 -2016-11-25 22:00:00;78.4 -2016-11-26 18:00:00;79.0 -2016-11-26 20:00:00;79.1 -2016-11-26 22:00:00;79.3 -2016-11-27 18:00:00;80.5 -2016-11-27 20:00:00;80.4 -2016-11-27 22:00:00;80.3 -2016-11-28 18:00:00;82.7 -2016-11-28 20:00:00;82.9 -2016-11-28 22:00:00;83.0 -2016-11-29 18:00:00;85.8 -2016-11-29 20:00:00;83.1 -2016-11-29 22:00:00;82.9 -2016-11-30 18:00:00;81.9 -2016-11-30 20:00:00;81.3 -2016-11-30 22:00:00;81.4 -2016-12-01 18:00:00;82.0 -2016-12-01 20:00:00;82.1 -2016-12-01 22:00:00;82.0 -2016-12-02 18:00:00;82.5 -2016-12-02 20:00:00;82.0 -2016-12-02 22:00:00;81.1 -2016-12-03 18:00:00;83.4 -2016-12-03 20:00:00;82.2 -2016-12-03 22:00:00;81.9 -2016-12-04 18:00:00;85.5 -2016-12-04 20:00:00;80.0 -2016-12-04 22:00:00;80.2 -2016-12-05 18:00:00;81.2 -2016-12-05 20:00:00;80.3 -2016-12-05 22:00:00;78.9 -2016-12-06 18:00:00;78.7 -2016-12-06 20:00:00;77.4 -2016-12-06 22:00:00;77.0 -2016-12-07 18:00:00;75.7 -2016-12-07 20:00:00;74.9 -2016-12-07 22:00:00;75.0 -2016-12-08 18:00:00;72.7 -2016-12-08 20:00:00;72.6 -2016-12-08 22:00:00;71.6 -2016-12-09 18:00:00;70.7 -2016-12-09 20:00:00;70.7 -2016-12-09 22:00:00;69.8 -2016-12-10 18:00:00;71.6 -2016-12-10 20:00:00;70.0 -2016-12-10 22:00:00;70.5 -2016-12-11 18:00:00;68.9 -2016-12-11 20:00:00;69.2 -2016-12-11 22:00:00;69.5 -2016-12-12 18:00:00;69.5 -2016-12-12 20:00:00;68.6 -2016-12-12 22:00:00;68.4 -2016-12-13 18:00:00;69.6 -2016-12-13 20:00:00;69.0 -2016-12-13 22:00:00;69.1 -2016-12-14 18:00:00;71.7 -2016-12-14 20:00:00;70.1 -2016-12-14 22:00:00;69.2 -2016-12-15 18:00:00;70.9 -2016-12-15 20:00:00;70.2 -2016-12-15 22:00:00;69.8 -2016-12-16 18:00:00;69.7 -2016-12-16 20:00:00;70.3 -2016-12-16 22:00:00;70.0 -2016-12-17 18:00:00;69.9 -2016-12-17 20:00:00;69.8 -2016-12-17 22:00:00;69.1 -2016-12-18 18:00:00;70.6 -2016-12-18 20:00:00;70.0 -2016-12-18 22:00:00;70.5 -2016-12-19 18:00:00;71.2 -2016-12-19 20:00:00;70.5 -2016-12-19 22:00:00;70.6 -2016-12-20 18:00:00;72.5 -2016-12-20 20:00:00;72.5 -2016-12-20 22:00:00;74.6 -2016-12-21 18:00:00;72.5 -2016-12-21 20:00:00;72.6 -2016-12-21 22:00:00;73.0 -2016-12-22 18:00:00;73.6 -2016-12-22 20:00:00;72.4 -2016-12-22 22:00:00;72.3 -2016-12-23 18:00:00;71.3 -2016-12-23 20:00:00;71.3 -2016-12-23 22:00:00;71.2 -2016-12-24 18:00:00;71.1 -2016-12-24 20:00:00;70.7 -2016-12-24 22:00:00;70.7 -2016-12-25 18:00:00;70.6 -2016-12-25 20:00:00;70.1 -2016-12-25 22:00:00;69.8 -2016-12-26 18:00:00;70.7 -2016-12-26 20:00:00;71.4 -2016-12-26 22:00:00;71.5 -2016-12-27 18:00:00;71.1 -2016-12-27 20:00:00;71.3 -2016-12-27 22:00:00;70.8 -2016-12-28 18:00:00;71.2 -2016-12-28 20:00:00;70.9 -2016-12-28 22:00:00;71.2 -2016-12-29 18:00:00;71.4 -2016-12-29 20:00:00;70.9 -2016-12-29 22:00:00;71.0 -2016-12-30 18:00:00;71.1 -2016-12-30 20:00:00;71.2 -2016-12-30 22:00:00;71.0 -2016-12-31 18:00:00;71.3 -2016-12-31 20:00:00;71.1 -2016-12-31 22:00:00;71.1 -2017-01-01 18:00:00;70.4 -2017-01-01 20:00:00;70.1 -2017-01-01 22:00:00;70.3 -2017-01-02 18:00:00;70.0 -2017-01-02 20:00:00;70.6 -2017-01-02 22:00:00;70.1 -2017-01-03 18:00:00;71.1 -2017-01-03 20:00:00;71.0 -2017-01-03 22:00:00;70.0 -2017-01-04 18:00:00;70.6 -2017-01-04 20:00:00;70.0 -2017-01-04 22:00:00;70.7 -2017-01-05 18:00:00;70.5 -2017-01-05 20:00:00;70.9 -2017-01-05 22:00:00;70.4 -2017-01-06 18:00:00;69.5 -2017-01-06 20:00:00;69.6 -2017-01-06 22:00:00;69.9 -2017-01-07 18:00:00;69.3 -2017-01-07 20:00:00;69.7 -2017-01-07 22:00:00;68.8 -2017-01-08 18:00:00;69.2 -2017-01-08 20:00:00;69.2 -2017-01-08 22:00:00;69.6 -2017-01-09 18:00:00;69.2 -2017-01-09 20:00:00;68.9 -2017-01-09 22:00:00;69.0 -2017-01-10 18:00:00;71.3 -2017-01-10 20:00:00;70.3 -2017-01-10 22:00:00;69.8 -2017-01-11 18:00:00;71.7 -2017-01-11 20:00:00;72.0 -2017-01-11 22:00:00;71.3 -2017-01-12 18:00:00;74.0 -2017-01-12 20:00:00;73.0 -2017-01-12 22:00:00;72.6 -2017-01-13 18:00:00;72.6 -2017-01-13 20:00:00;72.4 -2017-01-13 22:00:00;71.9 -2017-01-14 18:00:00;73.6 -2017-01-14 20:00:00;74.1 -2017-01-14 22:00:00;73.8 -2017-01-15 18:00:00;75.2 -2017-01-15 20:00:00;75.0 -2017-01-15 22:00:00;75.7 -2017-01-16 18:00:00;77.0 -2017-01-16 20:00:00;75.8 -2017-01-16 22:00:00;75.4 -2017-01-17 18:00:00;76.1 -2017-01-17 20:00:00;76.1 -2017-01-17 22:00:00;76.0 -2017-01-18 18:00:00;76.7 -2017-01-18 20:00:00;76.1 -2017-01-18 22:00:00;76.4 -2017-01-19 18:00:00;77.0 -2017-01-19 20:00:00;77.0 -2017-01-19 22:00:00;77.2 -2017-01-20 18:00:00;81.3 -2017-01-20 20:00:00;80.6 -2017-01-20 22:00:00;81.2 -2017-01-21 18:00:00;84.2 -2017-01-21 20:00:00;83.4 -2017-01-21 22:00:00;83.9 -2017-01-22 18:00:00;84.2 -2017-01-22 20:00:00;84.0 -2017-01-22 22:00:00;83.8 -2017-01-23 18:00:00;81.1 -2017-01-23 20:00:00;81.5 -2017-01-23 22:00:00;79.5 -2017-01-24 18:00:00;79.3 -2017-01-24 20:00:00;79.7 -2017-01-24 22:00:00;79.6 -2017-01-25 18:00:00;82.0 -2017-01-25 20:00:00;82.5 -2017-01-25 22:00:00;82.6 -2017-01-26 18:00:00;80.5 -2017-01-26 20:00:00;80.6 -2017-01-26 22:00:00;80.1 -2017-01-27 18:00:00;77.6 -2017-01-27 20:00:00;77.9 -2017-01-27 22:00:00;78.0 -2017-01-28 18:00:00;76.7 -2017-01-28 20:00:00;76.1 -2017-01-28 22:00:00;77.8 -2017-01-29 18:00:00;75.0 -2017-01-29 20:00:00;74.4 -2017-01-29 22:00:00;74.8 -2017-01-30 18:00:00;74.7 -2017-01-30 20:00:00;74.7 -2017-01-30 22:00:00;74.3 -2017-01-31 18:00:00;74.8 -2017-01-31 20:00:00;73.8 -2017-01-31 22:00:00;74.8 -2017-02-01 18:00:00;73.6 -2017-02-01 20:00:00;73.9 -2017-02-01 22:00:00;74.3 -2017-02-02 18:00:00;72.8 -2017-02-02 20:00:00;73.1 -2017-02-02 22:00:00;73.8 -2017-02-03 18:00:00;73.1 -2017-02-03 20:00:00;73.0 -2017-02-03 22:00:00;72.7 -2017-02-04 18:00:00;72.6 -2017-02-04 20:00:00;71.9 -2017-02-04 22:00:00;72.1 -2017-02-05 18:00:00;70.8 -2017-02-05 20:00:00;70.6 -2017-02-05 22:00:00;70.9 -2017-02-06 18:00:00;70.4 -2017-02-06 20:00:00;70.5 -2017-02-06 22:00:00;70.7 -2017-02-07 18:00:00;70.3 -2017-02-07 20:00:00;70.1 -2017-02-07 22:00:00;69.7 -2017-02-08 18:00:00;71.2 -2017-02-08 20:00:00;71.1 -2017-02-08 22:00:00;71.3 -2017-02-09 18:00:00;72.3 -2017-02-09 20:00:00;71.5 -2017-02-09 22:00:00;72.6 -2017-02-10 18:00:00;72.9 -2017-02-10 20:00:00;72.1 -2017-02-10 22:00:00;72.3 -2017-02-11 18:00:00;73.5 -2017-02-11 20:00:00;73.8 -2017-02-11 22:00:00;73.6 -2017-02-12 18:00:00;73.4 -2017-02-12 20:00:00;74.3 -2017-02-12 22:00:00;73.7 -2017-02-13 18:00:00;73.0 -2017-02-13 20:00:00;73.0 -2017-02-13 22:00:00;73.7 -2017-02-14 18:00:00;72.6 -2017-02-14 20:00:00;72.7 -2017-02-14 22:00:00;72.6 -2017-02-15 18:00:00;73.1 -2017-02-15 20:00:00;73.0 -2017-02-15 22:00:00;72.8 -2017-02-16 18:00:00;72.9 -2017-02-16 20:00:00;72.2 -2017-02-16 22:00:00;72.6 -2017-02-17 18:00:00;72.6 -2017-02-17 20:00:00;72.8 -2017-02-17 22:00:00;72.7 -2017-02-18 18:00:00;74.1 -2017-02-18 20:00:00;74.9 -2017-02-18 22:00:00;75.0 -2017-02-19 18:00:00;76.7 -2017-02-19 20:00:00;76.4 -2017-02-19 22:00:00;76.5 -2017-02-20 18:00:00;78.5 -2017-02-20 20:00:00;78.9 -2017-02-20 22:00:00;78.3 -2017-02-21 18:00:00;81.3 -2017-02-21 20:00:00;80.7 -2017-02-21 22:00:00;80.4 -2017-02-22 18:00:00;81.8 -2017-02-22 20:00:00;81.4 -2017-02-22 22:00:00;82.4 -2017-02-23 18:00:00;81.4 -2017-02-23 20:00:00;81.6 -2017-02-23 22:00:00;82.9 -2017-02-24 18:00:00;82.2 -2017-02-24 20:00:00;80.5 -2017-02-24 22:00:00;80.3 -2017-02-25 18:00:00;79.2 -2017-02-25 20:00:00;78.5 -2017-02-25 22:00:00;77.8 -2017-02-26 18:00:00;77.4 -2017-02-26 20:00:00;77.5 -2017-02-26 22:00:00;78.0 -2017-02-27 18:00:00;80.7 -2017-02-27 20:00:00;80.6 -2017-02-27 22:00:00;80.7 -2017-02-28 18:00:00;80.2 -2017-02-28 20:00:00;80.1 -2017-02-28 22:00:00;79.5 -2017-03-01 17:00:00;80.2 -2017-03-01 20:00:00;79.3 -2017-03-01 23:00:00;78.9 -2017-03-02 17:00:00;78.6 -2017-03-02 20:00:00;77.8 -2017-03-02 23:00:00;77.7 -2017-03-03 17:00:00;76.7 -2017-03-03 20:00:00;76.7 -2017-03-03 23:00:00;76.1 -2017-03-04 17:00:00;74.4 -2017-03-04 20:00:00;73.9 -2017-03-04 23:00:00;74.4 -2017-03-05 17:00:00;72.6 -2017-03-05 20:00:00;71.6 -2017-03-05 23:00:00;71.6 -2017-03-06 17:00:00;71.6 -2017-03-06 20:00:00;71.3 -2017-03-06 23:00:00;70.9 -2017-03-07 17:00:00;71.4 -2017-03-07 20:00:00;70.6 -2017-03-07 23:00:00;70.9 -2017-03-08 17:00:00;70.0 -2017-03-08 20:00:00;69.6 -2017-03-08 23:00:00;69.9 -2017-03-09 17:00:00;70.5 -2017-03-09 20:00:00;70.3 -2017-03-09 23:00:00;70.0 -2017-03-10 17:00:00;68.4 -2017-03-10 20:00:00;70.0 -2017-03-10 23:00:00;69.8 -2017-03-11 17:00:00;69.5 -2017-03-11 20:00:00;69.1 -2017-03-11 23:00:00;69.0 -2017-03-12 17:00:00;69.7 -2017-03-12 20:00:00;69.2 -2017-03-12 23:00:00;69.9 -2017-03-13 17:00:00;70.8 -2017-03-13 20:00:00;69.5 -2017-03-13 23:00:00;71.7 -2017-03-14 17:00:00;69.1 -2017-03-14 20:00:00;68.8 -2017-03-14 23:00:00;69.5 -2017-03-15 17:00:00;68.6 -2017-03-15 20:00:00;69.1 -2017-03-15 23:00:00;68.7 -2017-03-16 17:00:00;69.8 -2017-03-16 20:00:00;69.7 -2017-03-16 23:00:00;69.6 -2017-03-17 17:00:00;69.5 -2017-03-17 20:00:00;69.9 -2017-03-17 23:00:00;69.2 -2017-03-18 17:00:00;69.2 -2017-03-18 20:00:00;69.6 -2017-03-18 23:00:00;70.3 -2017-03-19 17:00:00;70.8 -2017-03-19 20:00:00;70.5 -2017-03-19 23:00:00;70.6 -2017-03-20 17:00:00;71.8 -2017-03-20 20:00:00;72.1 -2017-03-20 23:00:00;71.7 -2017-03-21 17:00:00;70.9 -2017-03-21 20:00:00;70.5 -2017-03-21 23:00:00;70.9 -2017-03-22 17:00:00;70.6 -2017-03-22 20:00:00;72.0 -2017-03-22 23:00:00;71.1 -2017-03-23 17:00:00;71.4 -2017-03-23 20:00:00;71.5 -2017-03-23 23:00:00;72.0 -2017-03-24 17:00:00;71.9 -2017-03-24 20:00:00;71.9 -2017-03-24 23:00:00;71.7 -2017-03-25 17:00:00;72.8 -2017-03-25 20:00:00;73.7 -2017-03-25 23:00:00;73.9 -2017-03-26 17:00:00;75.4 -2017-03-26 20:00:00;76.8 -2017-03-26 23:00:00;77.7 -2017-03-27 17:00:00;83.0 -2017-03-27 20:00:00;82.5 -2017-03-27 23:00:00;84.9 -2017-03-28 17:00:00;83.8 -2017-03-28 20:00:00;83.4 -2017-03-28 23:00:00;85.3 -2017-03-29 17:00:00;82.2 -2017-03-29 20:00:00;83.1 -2017-03-29 23:00:00;83.2 -2017-03-30 17:00:00;85.1 -2017-03-30 20:00:00;85.7 -2017-03-30 23:00:00;86.2 -2017-03-31 17:00:00;88.4 -2017-03-31 20:00:00;90.4 -2017-03-31 23:00:00;91.4 -2017-04-01 17:00:00;96.7 -2017-04-01 20:00:00;100.9 -2017-04-01 23:00:00;99.8 -2017-04-02 17:00:00;105.2 -2017-04-02 20:00:00;111.9 -2017-04-02 23:00:00;106.9 -2017-04-03 17:00:00;111.0 -2017-04-03 20:00:00;107.9 -2017-04-03 23:00:00;106.0 -2017-04-04 17:00:00;95.6 -2017-04-04 20:00:00;93.9 -2017-04-04 23:00:00;93.5 -2017-04-05 17:00:00;85.3 -2017-04-05 20:00:00;84.7 -2017-04-05 23:00:00;83.5 -2017-04-06 17:00:00;79.6 -2017-04-06 20:00:00;75.8 -2017-04-06 23:00:00;85.8 -2017-04-07 17:00:00;73.5 -2017-04-07 20:00:00;74.1 -2017-04-07 23:00:00;67.0 -2017-04-08 17:00:00;73.6 -2017-04-08 20:00:00;73.3 -2017-04-08 23:00:00;73.6 -2017-04-09 17:00:00;72.3 -2017-04-09 20:00:00;74.7 -2017-04-09 23:00:00;73.8 -2017-04-10 17:00:00;73.0 -2017-04-10 20:00:00;73.9 -2017-04-10 23:00:00;73.7 -2017-04-11 17:00:00;74.3 -2017-04-11 20:00:00;74.9 -2017-04-11 23:00:00;73.9 -2017-04-12 17:00:00;72.6 -2017-04-12 20:00:00;71.8 -2017-04-12 23:00:00;72.6 -2017-04-13 17:00:00;72.8 -2017-04-13 20:00:00;73.9 -2017-04-13 23:00:00;73.4 -2017-04-14 17:00:00;73.3 -2017-04-14 20:00:00;73.3 -2017-04-14 23:00:00;72.9 -2017-04-15 17:00:00;73.9 -2017-04-15 20:00:00;73.5 -2017-04-15 23:00:00;72.8 -2017-04-16 17:00:00;75.8 -2017-04-16 20:00:00;75.0 -2017-04-16 23:00:00;75.4 -2017-04-17 17:00:00;76.1 -2017-04-17 20:00:00;75.8 -2017-04-17 23:00:00;76.4 -2017-04-18 17:00:00;77.5 -2017-04-18 20:00:00;86.4 -2017-04-18 23:00:00;86.6 -2017-04-19 17:00:00;82.5 -2017-04-19 20:00:00;81.6 -2017-04-19 23:00:00;81.2 -2017-04-20 17:00:00;81.3 -2017-04-20 20:00:00;81.4 -2017-04-20 23:00:00;83.4 -2017-04-21 17:00:00;84.8 -2017-04-21 20:00:00;83.1 -2017-04-21 23:00:00;83.8 -2017-04-22 17:00:00;83.7 -2017-04-22 20:00:00;84.5 -2017-04-22 23:00:00;83.6 -2017-04-23 17:00:00;84.6 -2017-04-23 20:00:00;83.4 -2017-04-23 23:00:00;83.7 -2017-04-24 17:00:00;81.9 -2017-04-24 20:00:00;81.1 -2017-04-24 23:00:00;81.2 -2017-04-25 17:00:00;82.6 -2017-04-25 20:00:00;82.3 -2017-04-25 23:00:00;82.1 -2017-04-26 17:00:00;82.7 -2017-04-26 20:00:00;80.6 -2017-04-26 23:00:00;79.5 -2017-04-27 17:00:00;80.2 -2017-04-27 20:00:00;79.3 -2017-04-27 23:00:00;79.5 -2017-04-28 17:00:00;78.6 -2017-04-28 20:00:00;79.1 -2017-04-28 23:00:00;78.9 -2017-04-29 17:00:00;79.0 -2017-04-29 20:00:00;78.2 -2017-04-29 23:00:00;77.4 -2017-04-30 17:00:00;79.0 -2017-04-30 20:00:00;78.6 -2017-04-30 23:00:00;78.0 -2017-05-01 17:00:00;77.0 -2017-05-01 20:00:00;76.4 -2017-05-01 23:00:00;75.8 -2017-05-02 17:00:00;80.1 -2017-05-02 20:00:00;78.4 -2017-05-02 23:00:00;77.6 -2017-05-03 17:00:00;76.0 -2017-05-03 20:00:00;76.2 -2017-05-03 23:00:00;75.5 -2017-05-04 17:00:00;77.3 -2017-05-04 20:00:00;75.4 -2017-05-04 23:00:00;75.7 -2017-05-05 17:00:00;75.9 -2017-05-05 20:00:00;74.8 -2017-05-05 23:00:00;75.3 -2017-05-06 17:00:00;72.4 -2017-05-06 20:00:00;74.1 -2017-05-06 23:00:00;73.3 -2017-05-07 17:00:00;74.2 -2017-05-07 20:00:00;73.0 -2017-05-07 23:00:00;72.0 -2017-05-08 17:00:00;73.0 -2017-05-08 20:00:00;71.8 -2017-05-08 23:00:00;71.5 -2017-05-09 17:00:00;72.0 -2017-05-09 20:00:00;70.2 -2017-05-09 23:00:00;69.7 -2017-05-10 17:00:00;71.3 -2017-05-10 20:00:00;69.9 -2017-05-10 23:00:00;70.8 -2017-05-11 17:00:00;69.8 -2017-05-11 20:00:00;70.5 -2017-05-11 23:00:00;71.2 -2017-05-12 17:00:00;70.8 -2017-05-12 20:00:00;70.4 -2017-05-12 23:00:00;71.3 -2017-05-13 17:00:00;72.0 -2017-05-13 20:00:00;71.9 -2017-05-13 23:00:00;71.9 -2017-05-14 17:00:00;72.2 -2017-05-14 20:00:00;72.7 -2017-05-14 23:00:00;72.3 -2017-05-15 17:00:00;72.2 -2017-05-15 20:00:00;72.2 -2017-05-15 23:00:00;71.9 -2017-05-16 17:00:00;72.6 -2017-05-16 20:00:00;73.5 -2017-05-16 23:00:00;72.3 -2017-05-17 17:00:00;74.4 -2017-05-17 20:00:00;73.1 -2017-05-17 23:00:00;73.4 -2017-05-18 17:00:00;76.0 -2017-05-18 20:00:00;73.9 -2017-05-18 23:00:00;73.9 -2017-05-19 17:00:00;74.8 -2017-05-19 20:00:00;74.0 -2017-05-19 23:00:00;74.0 -2017-05-20 17:00:00;74.9 -2017-05-20 20:00:00;74.2 -2017-05-20 23:00:00;74.2 -2017-05-21 17:00:00;75.0 -2017-05-21 20:00:00;75.3 -2017-05-21 23:00:00;75.2 -2017-05-22 17:00:00;76.0 -2017-05-22 20:00:00;76.3 -2017-05-22 23:00:00;76.5 -2017-05-23 17:00:00;77.3 -2017-05-23 20:00:00;77.9 -2017-05-23 23:00:00;77.3 -2017-05-24 17:00:00;79.7 -2017-05-24 20:00:00;79.9 -2017-05-24 23:00:00;80.3 -2017-05-25 17:00:00;80.7 -2017-05-25 20:00:00;78.1 -2017-05-25 23:00:00;79.1 -2017-05-26 17:00:00;82.5 -2017-05-26 20:00:00;82.4 -2017-05-26 23:00:00;82.0 -2017-05-27 17:00:00;83.7 -2017-05-27 20:00:00;84.1 -2017-05-27 23:00:00;82.1 -2017-05-28 17:00:00;79.2 -2017-05-28 20:00:00;81.0 -2017-05-28 23:00:00;80.0 -2017-05-29 17:00:00;77.0 -2017-05-29 20:00:00;77.9 -2017-05-29 23:00:00;76.6 -2017-05-30 17:00:00;75.5 -2017-05-30 20:00:00;75.7 -2017-05-30 23:00:00;75.6 -2017-05-31 17:00:00;75.6 -2017-05-31 20:00:00;76.2 -2017-05-31 23:00:00;77.2 -2017-06-01 17:00:00;78.3 -2017-06-01 20:00:00;77.9 -2017-06-01 23:00:00;84.2 -2017-06-02 17:00:00;80.6 -2017-06-02 20:00:00;80.4 -2017-06-02 23:00:00;79.2 -2017-06-03 17:00:00;79.3 -2017-06-03 20:00:00;80.2 -2017-06-03 23:00:00;79.2 -2017-06-04 17:00:00;79.7 -2017-06-04 20:00:00;79.9 -2017-06-04 23:00:00;79.9 -2017-06-05 17:00:00;82.6 -2017-06-05 20:00:00;81.8 -2017-06-05 23:00:00;81.0 -2017-06-06 17:00:00;79.2 -2017-06-06 20:00:00;77.6 -2017-06-06 23:00:00;78.4 -2017-06-07 17:00:00;79.0 -2017-06-07 20:00:00;77.8 -2017-06-07 23:00:00;76.9 -2017-06-08 17:00:00;76.0 -2017-06-08 20:00:00;76.2 -2017-06-08 23:00:00;75.0 -2017-06-09 17:00:00;76.9 -2017-06-09 20:00:00;76.0 -2017-06-09 23:00:00;75.5 -2017-06-10 17:00:00;77.4 -2017-06-10 20:00:00;77.0 -2017-06-10 23:00:00;76.7 -2017-06-11 17:00:00;77.6 -2017-06-11 20:00:00;76.6 -2017-06-11 23:00:00;77.3 -2017-06-12 17:00:00;77.5 -2017-06-12 20:00:00;77.5 -2017-06-12 23:00:00;78.1 -2017-06-13 17:00:00;77.6 -2017-06-13 20:00:00;77.2 -2017-06-13 23:00:00;76.1 -2017-06-14 17:00:00;77.9 -2017-06-14 20:00:00;76.4 -2017-06-14 23:00:00;77.9 -2017-06-15 17:00:00;79.2 -2017-06-15 20:00:00;79.9 -2017-06-15 23:00:00;79.6 -2017-06-16 17:00:00;77.1 -2017-06-16 20:00:00;75.8 -2017-06-16 23:00:00;76.4 -2017-06-17 17:00:00;79.2 -2017-06-17 20:00:00;77.2 -2017-06-17 23:00:00;76.9 -2017-06-18 17:00:00;76.5 -2017-06-18 20:00:00;77.3 -2017-06-18 23:00:00;76.4 -2017-06-19 17:00:00;76.2 -2017-06-19 20:00:00;76.0 -2017-06-19 23:00:00;76.2 -2017-06-20 17:00:00;76.6 -2017-06-20 20:00:00;76.9 -2017-06-20 23:00:00;76.4 -2017-06-21 17:00:00;77.6 -2017-06-21 20:00:00;76.2 -2017-06-21 23:00:00;76.2 -2017-06-22 17:00:00;76.9 -2017-06-22 20:00:00;76.1 -2017-06-22 23:00:00;76.7 -2017-06-23 17:00:00;76.0 -2017-06-23 20:00:00;76.1 -2017-06-23 23:00:00;76.4 -2017-06-24 17:00:00;75.3 -2017-06-24 20:00:00;76.6 -2017-06-24 23:00:00;76.5 -2017-06-25 17:00:00;74.7 -2017-06-25 20:00:00;76.2 -2017-06-25 23:00:00;76.3 -2017-06-26 17:00:00;76.1 -2017-06-26 20:00:00;76.2 -2017-06-26 23:00:00;76.0 -2017-06-27 17:00:00;76.2 -2017-06-27 20:00:00;76.6 -2017-06-27 23:00:00;76.2 -2017-06-28 17:00:00;75.3 -2017-06-28 20:00:00;74.5 -2017-06-28 23:00:00;74.1 -2017-06-29 17:00:00;73.9 -2017-06-29 20:00:00;74.2 -2017-06-29 23:00:00;74.0 -2017-06-30 17:00:00;74.0 -2017-06-30 20:00:00;73.9 -2017-06-30 23:00:00;74.5 -2017-07-01 17:00:00;72.9 -2017-07-01 20:00:00;73.1 -2017-07-01 23:00:00;73.7 -2017-07-02 17:00:00;73.7 -2017-07-02 20:00:00;73.6 -2017-07-02 23:00:00;73.4 -2017-07-03 17:00:00;74.7 -2017-07-03 20:00:00;74.1 -2017-07-03 23:00:00;74.6 -2017-07-04 17:00:00;73.8 -2017-07-04 20:00:00;74.2 -2017-07-04 23:00:00;75.3 -2017-07-05 17:00:00;76.2 -2017-07-05 20:00:00;75.5 -2017-07-05 23:00:00;76.3 -2017-07-06 17:00:00;77.5 -2017-07-06 20:00:00;78.5 -2017-07-06 23:00:00;79.7 -2017-07-07 17:00:00;83.1 -2017-07-07 20:00:00;82.2 -2017-07-07 23:00:00;84.0 -2017-07-08 17:00:00;89.1 -2017-07-08 20:00:00;89.5 -2017-07-08 23:00:00;90.8 -2017-07-09 17:00:00;92.6 -2017-07-09 20:00:00;94.0 -2017-07-09 23:00:00;95.0 -2017-07-10 17:00:00;96.0 -2017-07-10 20:00:00;98.2 -2017-07-10 23:00:00;95.3 -2017-07-11 17:00:00;93.7 -2017-07-11 20:00:00;94.1 -2017-07-11 23:00:00;94.5 -2017-07-12 17:00:00;92.5 -2017-07-12 20:00:00;93.2 -2017-07-12 23:00:00;94.0 -2017-07-13 17:00:00;95.1 -2017-07-13 20:00:00;95.3 -2017-07-13 23:00:00;94.3 -2017-07-14 17:00:00;91.9 -2017-07-14 20:00:00;97.0 -2017-07-14 23:00:00;94.7 -2017-07-15 17:00:00;90.9 -2017-07-15 20:00:00;94.6 -2017-07-15 23:00:00;93.7 -2017-07-16 17:00:00;90.7 -2017-07-16 20:00:00;89.3 -2017-07-16 23:00:00;88.9 -2017-07-17 17:00:00;88.5 -2017-07-17 20:00:00;88.4 -2017-07-17 23:00:00;87.1 -2017-07-18 17:00:00;82.5 -2017-07-18 20:00:00;80.8 -2017-07-18 23:00:00;81.0 -2017-07-19 17:00:00;76.5 -2017-07-19 20:00:00;75.5 -2017-07-19 23:00:00;75.0 -2017-07-20 17:00:00;73.9 -2017-07-20 20:00:00;72.5 -2017-07-20 23:00:00;71.9 -2017-07-21 17:00:00;72.2 -2017-07-21 20:00:00;71.6 -2017-07-21 23:00:00;71.3 -2017-07-22 17:00:00;72.1 -2017-07-22 20:00:00;71.8 -2017-07-22 23:00:00;71.9 -2017-07-23 17:00:00;71.6 -2017-07-23 20:00:00;72.8 -2017-07-23 23:00:00;72.8 -2017-07-24 17:00:00;72.4 -2017-07-24 20:00:00;72.3 -2017-07-24 23:00:00;72.3 -2017-07-25 17:00:00;72.2 -2017-07-25 20:00:00;72.0 -2017-07-25 23:00:00;72.3 -2017-07-26 17:00:00;71.1 -2017-07-26 20:00:00;70.7 -2017-07-26 23:00:00;70.8 -2017-07-27 17:00:00;70.5 -2017-07-27 20:00:00;70.5 -2017-07-27 23:00:00;71.0 -2017-07-28 17:00:00;72.0 -2017-07-28 20:00:00;71.6 -2017-07-28 23:00:00;72.3 -2017-07-29 17:00:00;72.6 -2017-07-29 20:00:00;72.1 -2017-07-29 23:00:00;71.9 -2017-07-30 17:00:00;71.5 -2017-07-30 20:00:00;71.7 -2017-07-30 23:00:00;71.7 -2017-07-31 17:00:00;74.9 -2017-07-31 20:00:00;74.4 -2017-07-31 23:00:00;75.1 -2017-08-01 17:00:00;75.9 -2017-08-01 20:00:00;75.7 -2017-08-01 23:00:00;75.8 -2017-08-02 17:00:00;77.7 -2017-08-02 20:00:00;76.6 -2017-08-02 23:00:00;78.0 -2017-08-03 17:00:00;78.2 -2017-08-03 20:00:00;77.3 -2017-08-03 23:00:00;77.5 -2017-08-04 17:00:00;77.0 -2017-08-04 20:00:00;76.3 -2017-08-04 23:00:00;76.4 -2017-08-05 17:00:00;76.6 -2017-08-05 20:00:00;76.3 -2017-08-05 23:00:00;76.2 -2017-08-06 17:00:00;77.0 -2017-08-06 20:00:00;75.6 -2017-08-06 23:00:00;75.3 -2017-08-07 17:00:00;75.9 -2017-08-07 20:00:00;74.8 -2017-08-07 23:00:00;75.4 -2017-08-08 17:00:00;74.7 -2017-08-08 20:00:00;73.0 -2017-08-08 23:00:00;73.1 -2017-08-09 17:00:00;74.7 -2017-08-09 20:00:00;73.4 -2017-08-09 23:00:00;73.8 -2017-08-10 17:00:00;73.9 -2017-08-10 20:00:00;73.0 -2017-08-10 23:00:00;72.9 -2017-08-11 17:00:00;73.4 -2017-08-11 20:00:00;71.7 -2017-08-11 23:00:00;72.3 -2017-08-12 17:00:00;73.4 -2017-08-12 20:00:00;72.2 -2017-08-12 23:00:00;72.2 -2017-08-13 17:00:00;70.7 -2017-08-13 20:00:00;70.0 -2017-08-13 23:00:00;71.5 -2017-08-14 17:00:00;74.4 -2017-08-14 20:00:00;74.9 -2017-08-14 23:00:00;75.3 -2017-08-15 17:00:00;78.9 -2017-08-15 20:00:00;76.1 -2017-08-15 23:00:00;76.5 -2017-08-16 17:00:00;80.3 -2017-08-16 20:00:00;79.2 -2017-08-16 23:00:00;78.6 -2017-08-17 17:00:00;80.0 -2017-08-17 20:00:00;78.5 -2017-08-17 23:00:00;77.9 -2017-08-18 17:00:00;84.0 -2017-08-18 20:00:00;82.0 -2017-08-18 23:00:00;83.8 -2017-08-19 17:00:00;86.9 -2017-08-19 20:00:00;88.9 -2017-08-19 23:00:00;90.8 -2017-08-20 17:00:00;88.4 -2017-08-20 20:00:00;88.0 -2017-08-20 23:00:00;87.4 -2017-08-21 20:00:00;89.1 -2017-08-21 23:00:00;93.5 -2017-08-22 17:00:00;90.8 -2017-08-22 20:00:00;92.3 -2017-08-22 23:00:00;87.8 -2017-08-23 17:00:00;87.4 -2017-08-23 20:00:00;87.0 -2017-08-23 23:00:00;87.1 -2017-08-24 17:00:00;82.6 -2017-08-24 20:00:00;80.5 -2017-08-24 23:00:00;81.7 -2017-08-25 17:00:00;82.3 -2017-08-25 20:00:00;82.5 -2017-08-25 23:00:00;82.9 -2017-08-26 17:00:00;81.4 -2017-08-26 20:00:00;79.2 -2017-08-26 23:00:00;80.1 -2017-08-27 17:00:00;80.0 -2017-08-27 20:00:00;79.8 -2017-08-27 23:00:00;79.4 -2017-08-28 17:00:00;85.4 -2017-08-28 20:00:00;83.2 -2017-08-28 23:00:00;84.3 -2017-08-29 17:00:00;87.2 -2017-08-29 20:00:00;85.9 -2017-08-29 23:00:00;86.9 -2017-08-30 17:00:00;91.4 -2017-08-30 20:00:00;88.6 -2017-08-30 23:00:00;89.2 -2017-08-31 17:00:00;93.2 -2017-08-31 20:00:00;93.6 -2017-08-31 23:00:00;93.9 -2017-09-01 17:00:00;96.8 -2017-09-01 20:00:00;95.1 -2017-09-01 23:00:00;95.3 -2017-09-02 17:00:00;102.9 -2017-09-02 20:00:00;101.7 -2017-09-02 23:00:00;105.3 -2017-09-03 17:00:00;122.6 -2017-09-03 20:00:00;122.2 -2017-09-03 23:00:00;125.1 -2017-09-04 17:00:00;136.3 -2017-09-04 20:00:00;185.5 -2017-09-04 23:00:00;147.2 -2017-09-05 17:00:00;129.5 -2017-09-05 20:00:00;122.5 -2017-09-05 23:00:00;124.5 -2017-09-06 17:00:00;141.9 -2017-09-06 20:00:00;134.9 -2017-09-06 23:00:00;129.2 -2017-09-07 17:00:00;132.1 -2017-09-07 20:00:00;130.4 -2017-09-07 23:00:00;125.2 -2017-09-08 17:00:00;118.5 -2017-09-08 20:00:00;118.5 -2017-09-08 23:00:00;119.3 -2017-09-09 17:00:00;108.3 -2017-09-09 20:00:00;108.7 -2017-09-09 23:00:00;231.4 -2017-09-10 17:00:00;275.5 -2017-09-10 20:00:00;101.6 -2017-09-10 23:00:00;94.0 -2017-09-11 17:00:00;81.3 -2017-09-11 20:00:00;80.9 -2017-09-11 23:00:00;79.8 -2017-09-12 17:00:00;77.3 -2017-09-12 20:00:00;76.4 -2017-09-12 23:00:00;76.9 -2017-09-13 17:00:00;75.1 -2017-09-13 20:00:00;76.0 -2017-09-13 23:00:00;74.7 -2017-09-14 17:00:00;73.5 -2017-09-14 20:00:00;75.1 -2017-09-14 23:00:00;74.3 -2017-09-15 17:00:00;73.0 -2017-09-15 20:00:00;73.6 -2017-09-15 23:00:00;73.3 -2017-09-16 17:00:00;71.2 -2017-09-16 20:00:00;72.9 -2017-09-16 23:00:00;72.3 -2017-09-17 17:00:00;71.2 -2017-09-17 20:00:00;72.9 -2017-09-17 23:00:00;73.0 -2017-09-18 17:00:00;71.1 -2017-09-18 20:00:00;72.9 -2017-09-18 23:00:00;71.9 -2017-09-19 17:00:00;71.9 -2017-09-19 20:00:00;71.3 -2017-09-19 23:00:00;72.2 -2017-09-20 17:00:00;73.37084 -2017-09-20 20:00:00;74.5 -2017-09-20 23:00:00;73.7 -2017-09-21 17:00:00;73.2 -2017-09-21 20:00:00;73.6 -2017-09-21 23:00:00;75.3 -2017-09-22 17:00:00;76.6 -2017-09-22 20:00:00;78.1 -2017-09-22 23:00:00;78.8 -2017-09-23 17:00:00;80.7 -2017-09-23 20:00:00;81.7 -2017-09-23 23:00:00;83.0 -2017-09-24 17:00:00;84.8 -2017-09-24 20:00:00;87.4 -2017-09-24 23:00:00;87.7 -2017-09-25 17:00:00;88.1 -2017-09-25 20:00:00;90.4 -2017-09-25 23:00:00;91.4 -2017-09-26 17:00:00;90.7 -2017-09-26 20:00:00;91.1 -2017-09-26 23:00:00;90.4 -2017-09-27 17:00:00;89.3 -2017-09-27 20:00:00;91.3 -2017-09-27 23:00:00;89.5 -2017-09-28 17:00:00;92.1 -2017-09-28 20:00:00;91.2 -2017-09-28 23:00:00;90.5 -2017-09-29 17:00:00;89.1 -2017-09-29 20:00:00;90.0 -2017-09-29 23:00:00;88.8 -2017-09-30 17:00:00;87.1 -2017-09-30 20:00:00;89.6 -2017-09-30 23:00:00;88.6 -2017-10-01 17:00:00;86.6 -2017-10-01 20:00:00;85.9 -2017-10-01 23:00:00;85.0 -2017-10-02 17:00:00;86.6 -2017-10-02 20:00:00;86.1 -2017-10-02 23:00:00;86.9 -2017-10-03 17:00:00;85.6 -2017-10-03 20:00:00;86.5 -2017-10-03 23:00:00;86.5 -2017-10-04 17:00:00;85.4 -2017-10-04 20:00:00;86.8 -2017-10-04 23:00:00;86.1 -2017-10-05 17:00:00;84.1 -2017-10-05 20:00:00;84.7 -2017-10-05 23:00:00;85.5 -2017-10-06 17:00:00;81.6 -2017-10-06 20:00:00;84.0 -2017-10-06 23:00:00;81.7 -2017-10-07 17:00:00;78.9 -2017-10-07 20:00:00;79.5 -2017-10-07 23:00:00;79.9 -2017-10-08 17:00:00;76.9 -2017-10-08 20:00:00;76.5 -2017-10-08 23:00:00;75.3 -2017-10-09 17:00:00;72.8 -2017-10-09 20:00:00;72.1 -2017-10-09 23:00:00;72.5 -2017-10-10 17:00:00;71.1 -2017-10-10 20:00:00;70.7 -2017-10-10 23:00:00;70.9 -2017-10-11 17:00:00;69.7 -2017-10-11 20:00:00;69.3 -2017-10-11 23:00:00;69.9 -2017-10-12 17:00:00;69.7 -2017-10-12 20:00:00;69.9 -2017-10-12 23:00:00;69.1 -2017-10-13 17:00:00;68.6 -2017-10-13 20:00:00;69.4 -2017-10-13 23:00:00;68.3 -2017-10-14 17:00:00;68.2 -2017-10-14 20:00:00;68.6 -2017-10-14 23:00:00;67.8 -2017-10-15 17:00:00;68.7 -2017-10-15 20:00:00;69.9 -2017-10-15 23:00:00;70.1 -2017-10-16 17:00:00;70.1 -2017-10-16 20:00:00;70.4 -2017-10-16 23:00:00;70.4 -2017-10-17 17:00:00;71.7 -2017-10-17 20:00:00;69.8 -2017-10-17 23:00:00;71.7 -2017-10-18 17:00:00;72.3 -2017-10-18 20:00:00;72.7 -2017-10-18 23:00:00;72.2 -2017-10-19 17:00:00;72.7 -2017-10-19 20:00:00;72.8 -2017-10-19 23:00:00;73.6 -2017-10-20 17:00:00;74.1 -2017-10-20 20:00:00;75.1 -2017-10-20 23:00:00;75.2 -2017-10-21 17:00:00;76.7 -2017-10-21 20:00:00;75.7 -2017-10-21 23:00:00;77.4 -2017-10-22 17:00:00;77.3 -2017-10-22 20:00:00;76.5 -2017-10-22 23:00:00;75.9 -2017-10-23 17:00:00;78.4 -2017-10-23 20:00:00;77.2 -2017-10-23 23:00:00;76.8 -2017-10-24 17:00:00;77.4 -2017-10-24 20:00:00;76.7 -2017-10-24 23:00:00;76.8 -2017-10-25 17:00:00;77.7 -2017-10-25 20:00:00;77.9 -2017-10-25 23:00:00;76.7 -2017-10-26 17:00:00;76.6 -2017-10-26 20:00:00;76.4 -2017-10-26 23:00:00;75.9 -2017-10-27 17:00:00;76.0 -2017-10-27 20:00:00;75.0 -2017-10-27 23:00:00;74.4 -2017-10-28 17:00:00;75.5 -2017-10-28 20:00:00;74.4 -2017-10-28 23:00:00;75.4 -2017-10-29 17:00:00;76.1 -2017-10-29 20:00:00;74.3 -2017-10-29 23:00:00;75.3 -2017-10-30 17:00:00;74.1 -2017-10-30 20:00:00;74.5 -2017-10-30 23:00:00;73.9 -2017-10-31 17:00:00;73.7 -2017-10-31 20:00:00;74.2 -2017-10-31 23:00:00;73.4 -2017-11-01 18:00:00;71.7 -2017-11-01 20:00:00;71.5 -2017-11-01 22:00:00;72.0 -2017-11-02 18:00:00;72.6 -2017-11-02 20:00:00;72.4 -2017-11-02 22:00:00;72.2 -2017-11-03 18:00:00;71.6 -2017-11-03 20:00:00;72.0 -2017-11-03 22:00:00;71.6 -2017-11-04 18:00:00;70.8 -2017-11-04 20:00:00;70.9 -2017-11-04 22:00:00;70.6 -2017-11-05 18:00:00;69.9 -2017-11-05 20:00:00;69.9 -2017-11-05 22:00:00;70.1 -2017-11-06 18:00:00;69.0 -2017-11-06 20:00:00;68.1 -2017-11-06 22:00:00;68.3 -2017-11-07 18:00:00;67.2 -2017-11-07 20:00:00;67.0 -2017-11-07 22:00:00;67.4 -2017-11-08 18:00:00;66.7 -2017-11-08 20:00:00;66.4 -2017-11-08 22:00:00;66.1 -2017-11-09 18:00:00;64.8 -2017-11-09 20:00:00;64.6 -2017-11-09 22:00:00;64.3 -2017-11-10 18:00:00;67.0 -2017-11-10 20:00:00;67.2 -2017-11-10 22:00:00;68.0 -2017-11-11 18:00:00;66.3 -2017-11-11 20:00:00;65.9 -2017-11-11 22:00:00;66.7 -2017-11-12 18:00:00;67.7 -2017-11-12 20:00:00;68.0 -2017-11-12 22:00:00;68.5 -2017-11-13 18:00:00;70.6 -2017-11-13 20:00:00;70.6 -2017-11-13 22:00:00;70.9 -2017-11-14 18:00:00;72.8 -2017-11-14 20:00:00;72.8 -2017-11-14 22:00:00;73.0 -2017-11-15 18:00:00;72.8 -2017-11-15 20:00:00;72.6 -2017-11-15 22:00:00;73.7 -2017-11-16 18:00:00;73.4 -2017-11-16 20:00:00;71.6 -2017-11-16 22:00:00;72.8 -2017-11-17 18:00:00;73.9 -2017-11-17 20:00:00;74.7 -2017-11-17 22:00:00;72.9 -2017-11-18 18:00:00;73.6 -2017-11-18 20:00:00;74.3 -2017-11-18 22:00:00;73.2 -2017-11-19 18:00:00;73.6 -2017-11-19 20:00:00;72.7 -2017-11-19 22:00:00;72.8 -2017-11-20 18:00:00;72.6 -2017-11-20 20:00:00;71.8 -2017-11-20 22:00:00;72.0 -2017-11-21 18:00:00;72.2 -2017-11-21 20:00:00;71.4 -2017-11-21 22:00:00;72.4 -2017-11-22 18:00:00;72.1 -2017-11-22 20:00:00;71.6 -2017-11-22 22:00:00;72.2 -2017-11-23 18:00:00;70.7 -2017-11-23 20:00:00;70.6 -2017-11-23 22:00:00;70.9 -2017-11-24 18:00:00;71.0 -2017-11-24 20:00:00;72.2 -2017-11-24 22:00:00;71.7 -2017-11-25 18:00:00;72.4 -2017-11-25 20:00:00;72.4 -2017-11-25 22:00:00;72.6 -2017-11-26 18:00:00;74.1 -2017-11-26 20:00:00;73.5 -2017-11-26 22:00:00;74.1 -2017-11-27 18:00:00;72.4 -2017-11-27 20:00:00;71.7 -2017-11-27 22:00:00;72.2 -2017-11-28 18:00:00;70.7 -2017-11-28 20:00:00;70.0 -2017-11-28 22:00:00;69.8 -2017-11-29 18:00:00;69.6 -2017-11-29 20:00:00;70.6 -2017-11-29 22:00:00;69.6 -2017-11-30 18:00:00;69.9 -2017-11-30 20:00:00;69.8 -2017-11-30 22:00:00;69.7 -2017-12-01 18:00:00;68.8 -2017-12-01 20:00:00;68.3 -2017-12-01 22:00:00;68.7 -2017-12-02 18:00:00;69.6 -2017-12-02 20:00:00;69.5 -2017-12-02 22:00:00;68.3 -2017-12-03 18:00:00;67.5 -2017-12-03 20:00:00;67.0 -2017-12-03 22:00:00;66.9 -2017-12-04 18:00:00;66.5 -2017-12-04 20:00:00;66.4 -2017-12-04 22:00:00;66.1 -2017-12-05 18:00:00;66.1 -2017-12-05 20:00:00;66.0 -2017-12-05 22:00:00;65.4 -2017-12-06 18:00:00;66.8 -2017-12-06 20:00:00;66.3 -2017-12-06 22:00:00;66.7 -2017-12-07 18:00:00;66.8 -2017-12-07 20:00:00;65.9 -2017-12-07 22:00:00;65.8 -2017-12-08 18:00:00;68.3 -2017-12-08 20:00:00;67.8 -2017-12-08 22:00:00;67.3 -2017-12-09 18:00:00;69.4 -2017-12-09 20:00:00;69.0 -2017-12-09 22:00:00;68.9 -2017-12-10 18:00:00;70.4 -2017-12-10 20:00:00;69.8 -2017-12-10 22:00:00;70.0 -2017-12-11 18:00:00;70.0 -2017-12-11 20:00:00;70.1 -2017-12-11 22:00:00;69.8 -2017-12-12 18:00:00;70.0 -2017-12-12 20:00:00;69.2 -2017-12-12 22:00:00;68.8 -2017-12-13 18:00:00;70.0 -2017-12-13 20:00:00;69.9 -2017-12-13 22:00:00;69.7 -2017-12-14 18:00:00;70.5 -2017-12-14 20:00:00;69.8 -2017-12-14 22:00:00;70.1 -2017-12-15 18:00:00;70.2 -2017-12-15 20:00:00;69.5 -2017-12-15 22:00:00;69.0 -2017-12-16 18:00:00;69.5 -2017-12-16 20:00:00;69.0 -2017-12-16 22:00:00;68.8 -2017-12-17 18:00:00;69.2 -2017-12-17 20:00:00;68.8 -2017-12-17 22:00:00;68.6 -2017-12-18 18:00:00;67.7 -2017-12-18 20:00:00;69.4 -2017-12-18 22:00:00;68.7 -2017-12-19 18:00:00;67.8 -2017-12-19 20:00:00;66.6 -2017-12-19 22:00:00;69.0 -2017-12-20 18:00:00;72.7 -2017-12-20 20:00:00;71.8 -2017-12-20 22:00:00;71.4 -2017-12-21 18:00:00;72.9 -2017-12-21 20:00:00;73.6 -2017-12-21 22:00:00;74.0 -2017-12-22 18:00:00;73.7 -2017-12-22 20:00:00;72.9 -2017-12-22 22:00:00;74.2 -2017-12-23 18:00:00;74.1 -2017-12-23 20:00:00;73.7 -2017-12-23 22:00:00;73.5 -2017-12-24 18:00:00;73.7 -2017-12-24 20:00:00;73.6 -2017-12-24 22:00:00;73.9 -2017-12-25 18:00:00;73.3 -2017-12-25 20:00:00;73.2 -2017-12-25 22:00:00;73.1 -2017-12-26 18:00:00;70.5 -2017-12-26 20:00:00;69.5 -2017-12-26 22:00:00;70.4 -2017-12-27 18:00:00;69.4 -2017-12-27 20:00:00;68.6 -2017-12-27 22:00:00;68.8 -2017-12-28 18:00:00;69.4 -2017-12-28 20:00:00;68.8 -2017-12-28 22:00:00;69.4 -2017-12-29 18:00:00;69.9 -2017-12-29 20:00:00;69.1 -2017-12-29 22:00:00;69.1 -2017-12-30 18:00:00;67.3 -2017-12-30 20:00:00;68.1 -2017-12-30 22:00:00;68.1 -2017-12-31 18:00:00;68.3 -2017-12-31 20:00:00;68.3 -2017-12-31 22:00:00;67.9 -2018-01-01 18:00:00;67.7 -2018-01-01 20:00:00;66.8 -2018-01-01 22:00:00;70.1 -2018-01-02 18:00:00;69.6 -2018-01-02 20:00:00;67.2 -2018-01-02 22:00:00;67.7 -2018-01-03 18:00:00;69.0 -2018-01-03 20:00:00;68.3 -2018-01-03 22:00:00;68.2 -2018-01-04 18:00:00;67.8 -2018-01-04 20:00:00;67.2 -2018-01-04 22:00:00;67.3 -2018-01-05 18:00:00;66.8 -2018-01-05 20:00:00;67.0 -2018-01-05 22:00:00;66.4 -2018-01-06 18:00:00;67.3 -2018-01-06 20:00:00;67.1 -2018-01-06 22:00:00;67.0 -2018-01-07 18:00:00;67.8 -2018-01-07 20:00:00;67.6 -2018-01-07 22:00:00;67.4 -2018-01-08 18:00:00;68.2 -2018-01-08 20:00:00;68.0 -2018-01-08 22:00:00;67.5 -2018-01-09 18:00:00;68.7 -2018-01-09 20:00:00;68.5 -2018-01-09 22:00:00;67.7 -2018-01-10 18:00:00;68.6 -2018-01-10 20:00:00;68.1 -2018-01-10 22:00:00;68.8 -2018-01-11 18:00:00;68.5 -2018-01-11 20:00:00;68.5 -2018-01-11 22:00:00;67.2 -2018-01-12 18:00:00;67.5 -2018-01-12 20:00:00;68.6 -2018-01-12 22:00:00;67.0 -2018-01-13 18:00:00;68.0 -2018-01-13 20:00:00;68.5 -2018-01-13 22:00:00;68.2 -2018-01-14 18:00:00;68.4 -2018-01-14 20:00:00;68.2 -2018-01-14 22:00:00;67.4 -2018-01-15 18:00:00;67.7 -2018-01-15 20:00:00;67.9 -2018-01-15 22:00:00;68.1 -2018-01-16 18:00:00;68.3 -2018-01-16 20:00:00;68.8 -2018-01-16 22:00:00;69.3 -2018-01-17 18:00:00;68.5 -2018-01-17 20:00:00;68.6 -2018-01-17 22:00:00;68.4 -2018-01-18 18:00:00;69.2 -2018-01-18 20:00:00;68.8 -2018-01-18 22:00:00;69.4 -2018-01-19 18:00:00;68.1 -2018-01-19 20:00:00;68.5 -2018-01-19 22:00:00;69.0 -2018-01-20 18:00:00;68.0 -2018-01-20 20:00:00;67.4 -2018-01-20 22:00:00;67.5 -2018-01-21 18:00:00;67.1 -2018-01-21 20:00:00;66.1 -2018-01-21 22:00:00;66.7 -2018-01-22 18:00:00;68.1 -2018-01-22 20:00:00;67.9 -2018-01-22 22:00:00;68.0 -2018-01-23 18:00:00;68.6 -2018-01-23 20:00:00;68.3 -2018-01-23 22:00:00;68.2 -2018-01-24 18:00:00;67.7 -2018-01-24 20:00:00;67.7 -2018-01-24 22:00:00;67.7 -2018-01-25 18:00:00;67.8 -2018-01-25 20:00:00;68.2 -2018-01-25 22:00:00;67.7 -2018-01-26 18:00:00;67.7 -2018-01-26 20:00:00;67.7 -2018-01-26 22:00:00;67.5 -2018-01-27 18:00:00;62.3 -2018-01-27 20:00:00;66.7 -2018-01-27 22:00:00;67.1 -2018-01-28 18:00:00;65.8 -2018-01-28 20:00:00;66.4 -2018-01-28 22:00:00;65.8 -2018-01-29 18:00:00;66.2 -2018-01-29 20:00:00;66.2 -2018-01-29 22:00:00;66.0 -2018-01-30 18:00:00;67.6 -2018-01-30 20:00:00;66.9 -2018-01-30 22:00:00;67.6 -2018-01-31 18:00:00;67.8 -2018-01-31 20:00:00;67.2 -2018-01-31 22:00:00;66.9 -2018-02-01 18:00:00;67.3 -2018-02-01 20:00:00;67.0 -2018-02-01 22:00:00;67.3 -2018-02-02 20:00:00;66.8 -2018-02-02 22:00:00;66.6 -2018-02-03 18:00:00;68.0 -2018-02-03 20:00:00;67.3 -2018-02-03 22:00:00;68.3 -2018-02-04 18:00:00;68.5 -2018-02-04 20:00:00;71.0 -2018-02-04 22:00:00;69.0 -2018-02-05 18:00:00;72.2 -2018-02-05 20:00:00;72.0 -2018-02-05 22:00:00;72.2 -2018-02-06 18:00:00;73.4 -2018-02-06 18:06:19;74.6 -2018-02-06 20:00:00;74.8 -2018-02-06 22:00:00;73.0 -2018-02-07 18:00:00;74.5 -2018-02-07 20:00:00;74.6 -2018-02-07 22:00:00;75.3 -2018-02-08 18:00:00;77.0 -2018-02-08 20:00:00;75.5 -2018-02-08 22:00:00;76.3 -2018-02-09 18:00:00;76.5 -2018-02-09 20:00:00;76.1 -2018-02-09 22:00:00;75.3 -2018-02-10 18:00:00;76.6 -2018-02-10 20:00:00;76.2 -2018-02-10 22:00:00;76.9 -2018-02-11 18:00:00;75.5 -2018-02-11 20:00:00;76.2 -2018-02-11 22:00:00;75.3 -2018-02-12 18:00:00;76.0 -2018-02-12 20:00:00;76.6 -2018-02-12 22:00:00;76.4 -2018-02-13 18:00:00;74.7 -2018-02-13 20:00:00;74.1 -2018-02-13 22:00:00;73.4 -2018-02-14 18:00:00;72.7 -2018-02-14 20:00:00;73.4 -2018-02-14 22:00:00;73.3 -2018-02-15 18:00:00;70.4 -2018-02-15 20:00:00;70.8 -2018-02-15 22:00:00;71.0 -2018-02-16 18:00:00;69.3 -2018-02-16 20:00:00;69.8 -2018-02-16 22:00:00;70.3 -2018-02-17 18:00:00;67.9 -2018-02-17 20:00:00;67.4 -2018-02-17 22:00:00;70.5 -2018-02-18 18:00:00;68.8 -2018-02-18 20:00:00;68.7 -2018-02-18 22:00:00;68.3 -2018-02-19 18:00:00;67.5 -2018-02-19 20:00:00;67.5 -2018-02-19 22:00:00;68.2 -2018-02-20 18:00:00;66.9 -2018-02-20 20:00:00;66.3 -2018-02-20 22:00:00;66.9 -2018-02-21 18:00:00;67.1 -2018-02-21 20:00:00;66.1 -2018-02-21 22:00:00;66.4 -2018-02-22 18:00:00;66.7 -2018-02-22 20:00:00;67.0 -2018-02-22 22:00:00;66.7 -2018-02-23 18:00:00;66.5 -2018-02-23 20:00:00;66.2 -2018-02-23 22:00:00;66.6 -2018-02-24 18:00:00;66.1 -2018-02-24 20:00:00;66.8 -2018-02-24 22:00:00;66.1 -2018-02-25 18:00:00;66.1 -2018-02-25 20:00:00;65.9 -2018-02-25 22:00:00;66.0 -2018-02-26 18:00:00;68.0 -2018-02-26 20:00:00;68.4 -2018-02-26 22:00:00;67.9 -2018-02-27 18:00:00;66.6 -2018-02-27 20:00:00;66.6 -2018-02-27 22:00:00;66.5 -2018-02-28 18:00:00;67.1 -2018-02-28 20:00:00;67.5 -2018-02-28 22:00:00;67.2 -2018-03-01 17:00:00;66.6 -2018-03-01 20:00:00;66.0 -2018-03-01 23:00:00;66.6 -2018-03-02 17:00:00;65.8 -2018-03-02 20:00:00;66.6 -2018-03-02 23:00:00;66.0 -2018-03-03 17:00:00;66.3 -2018-03-03 20:00:00;66.7 -2018-03-03 23:00:00;66.2 -2018-03-04 17:00:00;67.2 -2018-03-04 20:00:00;66.4 -2018-03-04 23:00:00;66.9 -2018-03-05 17:00:00;66.6 -2018-03-05 20:00:00;66.5 -2018-03-05 23:00:00;66.8 -2018-03-06 17:00:00;66.2 -2018-03-06 20:00:00;66.5 -2018-03-06 23:00:00;67.0 -2018-03-07 17:00:00;66.9 -2018-03-07 20:00:00;66.8 -2018-03-07 23:00:00;66.5 -2018-03-08 17:00:00;66.4 -2018-03-08 20:00:00;65.6 -2018-03-08 23:00:00;65.7 -2018-03-09 17:00:00;66.7 -2018-03-09 20:00:00;66.6 -2018-03-09 23:00:00;66.6 -2018-03-10 17:00:00;66.7 -2018-03-10 20:00:00;66.8 -2018-03-10 23:00:00;67.3 -2018-03-11 17:00:00;67.3 -2018-03-11 20:00:00;66.9 -2018-03-11 23:00:00;68.0 -2018-03-12 17:00:00;68.1 -2018-03-12 20:00:00;67.3 -2018-03-12 23:00:00;68.0 -2018-03-13 17:00:00;68.1 -2018-03-13 20:00:00;67.7 -2018-03-13 23:00:00;68.1 -2018-03-14 17:00:00;67.5 -2018-03-14 20:00:00;66.9 -2018-03-14 23:00:00;67.8 -2018-03-15 17:00:00;67.9 -2018-03-15 20:00:00;68.3 -2018-03-15 23:00:00;68.2 -2018-03-16 17:00:00;67.8 -2018-03-16 20:00:00;67.9 -2018-03-16 23:00:00;67.7 -2018-03-17 17:00:00;69.0 -2018-03-17 20:00:00;69.0 -2018-03-17 23:00:00;67.9 -2018-03-18 17:00:00;68.4 -2018-03-18 20:00:00;68.5 -2018-03-18 23:00:00;68.6 -2018-03-19 17:00:00;69.4 -2018-03-19 20:00:00;69.7 -2018-03-19 23:00:00;68.8 -2018-03-20 17:00:00;68.4 -2018-03-20 20:00:00;68.2 -2018-03-20 23:00:00;68.7 -2018-03-21 17:00:00;68.1 -2018-03-21 20:00:00;68.8 -2018-03-21 23:00:00;67.8 -2018-03-22 17:00:00;67.7 -2018-03-22 20:00:00;68.0 -2018-03-22 23:00:00;67.5 -2018-03-23 17:00:00;68.3 -2018-03-23 20:00:00;67.7 -2018-03-23 23:00:00;67.5 -2018-03-24 17:00:00;66.7 -2018-03-24 20:00:00;67.2 -2018-03-24 23:00:00;67.9 -2018-03-25 17:00:00;67.9 -2018-03-25 20:00:00;68.0 -2018-03-25 23:00:00;68.2 -2018-03-26 17:00:00;67.7 -2018-03-26 20:00:00;67.5 -2018-03-26 23:00:00;67.3 -2018-03-27 17:00:00;67.2 -2018-03-27 20:00:00;68.0 -2018-03-27 23:00:00;67.5 -2018-03-28 17:00:00;68.5 -2018-03-28 20:00:00;68.3 -2018-03-28 23:00:00;68.3 -2018-03-29 17:00:00;68.3 -2018-03-29 20:00:00;68.8 -2018-03-29 23:00:00;68.4 -2018-03-30 17:00:00;68.2 -2018-03-30 20:00:00;68.6 -2018-03-30 23:00:00;68.6 -2018-03-31 17:00:00;69.2 -2018-03-31 20:00:00;68.9 -2018-03-31 23:00:00;68.6 -2018-04-01 17:00:00;68.1 -2018-04-01 20:00:00;68.9 -2018-04-01 23:00:00;68.8 -2018-04-02 17:00:00;68.2 -2018-04-02 20:00:00;68.4 -2018-04-02 23:00:00;68.0 -2018-04-03 17:00:00;68.0 -2018-04-03 20:00:00;67.8 -2018-04-03 23:00:00;67.4 -2018-04-04 17:00:00;67.2 -2018-04-04 20:00:00;68.6 -2018-04-04 23:00:00;67.5 -2018-04-05 17:00:00;66.8 -2018-04-05 20:00:00;66.4 -2018-04-05 23:00:00;66.9 -2018-04-06 17:00:00;66.5 -2018-04-06 20:00:00;67.4 -2018-04-06 23:00:00;67.8 -2018-04-07 17:00:00;67.2 -2018-04-07 20:00:00;67.0 -2018-04-07 23:00:00;67.5 -2018-04-08 17:00:00;68.0 -2018-04-08 20:00:00;68.1 -2018-04-08 23:00:00;68.6 -2018-04-09 17:00:00;69.2 -2018-04-09 20:00:00;68.9 -2018-04-09 23:00:00;69.2 -2018-04-10 17:00:00;68.4 -2018-04-10 20:00:00;68.8 -2018-04-10 23:00:00;68.0 -2018-04-11 17:00:00;68.8 -2018-04-11 20:00:00;68.6 -2018-04-11 23:00:00;68.6 -2018-04-12 17:00:00;70.1 -2018-04-12 20:00:00;70.4 -2018-04-12 23:00:00;70.2 -2018-04-13 17:00:00;69.9 -2018-04-13 20:00:00;70.1 -2018-04-13 23:00:00;69.9 -2018-04-14 17:00:00;70.2 -2018-04-14 20:00:00;69.9 -2018-04-14 23:00:00;69.9 -2018-04-15 17:00:00;70.8 -2018-04-15 20:00:00;71.0 -2018-04-15 23:00:00;70.3 -2018-04-16 17:00:00;68.9 -2018-04-16 20:00:00;69.7 -2018-04-16 23:00:00;69.5 -2018-04-17 17:00:00;69.9 -2018-04-17 20:00:00;69.8 -2018-04-17 23:00:00;69.4 -2018-04-18 17:00:00;71.4 -2018-04-18 20:00:00;71.4 -2018-04-18 23:00:00;71.9 -2018-04-19 17:00:00;71.9 -2018-04-19 20:00:00;71.4 -2018-04-19 23:00:00;71.5 -2018-04-20 17:00:00;74.6 -2018-04-20 20:00:00;73.7 -2018-04-20 23:00:00;74.2 -2018-04-21 17:00:00;76.7 -2018-04-21 20:00:00;77.5 -2018-04-21 23:00:00;76.1 -2018-04-22 17:00:00;76.9 -2018-04-22 20:00:00;76.5 -2018-04-22 23:00:00;75.6 -2018-04-23 17:00:00;75.1 -2018-04-23 20:00:00;74.7 -2018-04-23 23:00:00;73.9 -2018-04-24 17:00:00;75.5 -2018-04-24 20:00:00;73.7 -2018-04-24 23:00:00;73.4 -2018-04-25 17:00:00;73.3 -2018-04-25 20:00:00;71.6 -2018-04-25 23:00:00;70.8 -2018-04-26 17:00:00;72.7 -2018-04-26 20:00:00;70.3 -2018-04-26 23:00:00;70.0 -2018-04-27 17:00:00;71.3 -2018-04-27 20:00:00;69.6 -2018-04-27 23:00:00;70.4 -2018-04-28 17:00:00;69.9 -2018-04-28 20:00:00;71.1 -2018-04-28 23:00:00;70.9 -2018-04-29 17:00:00;72.0 -2018-04-29 20:00:00;72.2 -2018-04-29 23:00:00;72.0 -2018-04-30 17:00:00;70.5 -2018-04-30 20:00:00;71.3 -2018-04-30 23:00:00;69.8 -2018-05-01 17:00:00;70.9 -2018-05-01 20:00:00;69.5 -2018-05-01 23:00:00;69.0 -2018-05-02 17:00:00;68.6 -2018-05-02 20:00:00;68.1 -2018-05-02 23:00:00;68.2 -2018-05-03 17:00:00;68.4 -2018-05-03 20:00:00;67.6 -2018-05-03 23:00:00;68.0 -2018-05-04 17:00:00;70.1 -2018-05-04 20:00:00;68.9 -2018-05-04 23:00:00;69.9 -2018-05-05 17:00:00;69.5 -2018-05-05 20:00:00;68.7 -2018-05-05 23:00:00;69.3 -2018-05-06 17:00:00;69.3 -2018-05-06 20:00:00;68.4 -2018-05-06 23:00:00;70.2 -2018-05-07 17:00:00;69.8 -2018-05-07 20:00:00;70.9 -2018-05-07 23:00:00;69.8 -2018-05-08 17:00:00;71.5 -2018-05-08 20:00:00;70.9 -2018-05-08 23:00:00;71.4 -2018-05-09 17:00:00;71.4 -2018-05-09 20:00:00;70.9 -2018-05-09 23:00:00;71.3 -2018-05-10 17:00:00;70.9 -2018-05-10 20:00:00;71.0 -2018-05-10 23:00:00;75.9 -2018-05-11 17:00:00;71.9 -2018-05-11 20:00:00;71.7 -2018-05-11 23:00:00;71.8 -2018-05-12 17:00:00;71.2 -2018-05-12 20:00:00;71.2 -2018-05-12 23:00:00;70.9 -2018-05-13 17:00:00;72.0 -2018-05-13 20:00:00;72.4 -2018-05-13 23:00:00;71.6 -2018-05-14 17:00:00;71.5 -2018-05-14 20:00:00;71.8 -2018-05-14 23:00:00;71.6 -2018-05-15 17:00:00;72.1 -2018-05-15 20:00:00;71.9 -2018-05-15 23:00:00;71.2 -2018-05-16 17:00:00;71.4 -2018-05-16 20:00:00;71.5 -2018-05-16 23:00:00;70.4 -2018-05-17 17:00:00;70.7 -2018-05-17 20:00:00;70.5 -2018-05-17 23:00:00;72.6 -2018-05-18 17:00:00;70.5 -2018-05-18 20:00:00;71.1 -2018-05-18 23:00:00;70.3 -2018-05-19 17:00:00;72.0 -2018-05-19 20:00:00;71.9 -2018-05-19 23:00:00;71.7 -2018-05-20 17:00:00;70.4 -2018-05-20 20:00:00;70.4 -2018-05-20 23:00:00;70.2 -2018-05-21 17:00:00;70.6 -2018-05-21 20:00:00;71.3 -2018-05-21 23:00:00;70.6 -2018-05-22 17:00:00;72.2 -2018-05-22 20:00:00;72.6 -2018-05-22 23:00:00;73.6 -2018-05-23 17:00:00;74.9 -2018-05-23 20:00:00;75.0 -2018-05-23 23:00:00;74.4 -2018-05-24 17:00:00;75.5 -2018-05-24 20:00:00;75.6 -2018-05-24 23:00:00;75.7 -2018-05-25 17:00:00;76.8 -2018-05-25 20:00:00;77.7 -2018-05-25 23:00:00;77.4 -2018-05-26 17:00:00;76.5 -2018-05-26 20:00:00;74.9 -2018-05-26 23:00:00;75.2 -2018-05-27 17:00:00;76.1 -2018-05-27 20:00:00;76.6 -2018-05-27 23:00:00;77.1 -2018-05-28 17:00:00;79.7 -2018-05-28 20:00:00;78.9 -2018-05-28 23:00:00;79.1 -2018-05-29 17:00:00;78.1 -2018-05-29 20:00:00;77.0 -2018-05-29 23:00:00;75.9 -2018-05-30 17:00:00;77.2 -2018-05-30 20:00:00;77.3 -2018-05-30 23:00:00;76.4 -2018-05-31 17:00:00;79.5 -2018-05-31 20:00:00;78.9 -2018-05-31 23:00:00;78.0 -2018-06-01 17:00:00;79.7 -2018-06-01 20:00:00;76.9 -2018-06-01 23:00:00;77.0 -2018-06-02 17:00:00;77.2 -2018-06-02 20:00:00;76.5 -2018-06-02 23:00:00;76.4 -2018-06-03 17:00:00;76.2 -2018-06-03 20:00:00;75.7 -2018-06-03 23:00:00;75.0 -2018-06-04 17:00:00;74.9 -2018-06-04 20:00:00;72.6 -2018-06-04 23:00:00;73.7 -2018-06-05 17:00:00;73.6 -2018-06-05 20:00:00;73.4 -2018-06-05 23:00:00;72.3 -2018-06-06 17:00:00;73.6 -2018-06-06 20:00:00;73.2 -2018-06-06 23:00:00;72.9 -2018-06-07 17:00:00;71.0 -2018-06-07 20:00:00;71.3 -2018-06-07 23:00:00;70.8 -2018-06-08 17:00:00;70.0 -2018-06-08 20:00:00;70.2 -2018-06-08 23:00:00;70.3 -2018-06-09 17:00:00;70.2 -2018-06-09 20:00:00;68.8 -2018-06-09 23:00:00;70.3 -2018-06-10 17:00:00;72.7 -2018-06-10 20:00:00;72.4 -2018-06-10 23:00:00;71.2 -2018-06-11 17:00:00;73.8 -2018-06-11 20:00:00;72.0 -2018-06-11 23:00:00;71.7 -2018-06-12 17:00:00;73.5 -2018-06-12 20:00:00;72.5 -2018-06-12 23:00:00;73.0 -2018-06-13 17:00:00;74.9 -2018-06-13 20:00:00;73.0 -2018-06-13 23:00:00;74.2 -2018-06-14 17:00:00;74.7 -2018-06-14 20:00:00;74.7 -2018-06-14 23:00:00;74.1 -2018-06-15 17:00:00;73.2 -2018-06-15 20:00:00;72.8 -2018-06-15 23:00:00;74.2 -2018-06-16 17:00:00;74.0 -2018-06-16 20:00:00;72.7 -2018-06-16 23:00:00;72.5 -2018-06-17 17:00:00;73.7 -2018-06-17 20:00:00;74.6 -2018-06-17 23:00:00;75.1 -2018-06-18 17:00:00;75.4 -2018-06-18 20:00:00;76.1 -2018-06-18 23:00:00;76.6 -2018-06-19 17:00:00;77.3 -2018-06-19 20:00:00;79.0 -2018-06-19 23:00:00;79.7 -2018-06-20 17:00:00;83.2 -2018-06-20 20:00:00;84.7 -2018-06-20 23:00:00;85.1 -2018-06-21 17:00:00;84.7 -2018-06-21 20:00:00;84.2 -2018-06-21 23:00:00;84.3 -2018-06-22 17:00:00;83.7 -2018-06-22 20:00:00;83.0 -2018-06-22 23:00:00;82.5 -2018-06-23 17:00:00;80.6 -2018-06-23 20:00:00;79.7 -2018-06-23 23:00:00;80.0 -2018-06-24 17:00:00;77.6 -2018-06-24 20:00:00;77.0 -2018-06-24 23:00:00;76.3 -2018-06-25 17:00:00;75.9 -2018-06-25 20:00:00;75.2 -2018-06-25 23:00:00;75.2 -2018-06-26 17:00:00;74.9 -2018-06-26 20:00:00;73.4 -2018-06-26 23:00:00;74.2 -2018-06-27 17:00:00;74.1 -2018-06-27 20:00:00;72.4 -2018-06-27 23:00:00;72.6 -2018-06-28 17:00:00;72.5 -2018-06-28 20:00:00;71.9 -2018-06-28 23:00:00;72.6 -2018-06-29 17:00:00;70.8 -2018-06-29 20:00:00;70.9 -2018-06-29 23:00:00;71.2 -2018-06-30 17:00:00;70.5 -2018-06-30 20:00:00;71.1 -2018-06-30 23:00:00;70.5 -2018-07-01 17:00:00;70.0 -2018-07-01 20:00:00;70.4 -2018-07-01 23:00:00;69.9 -2018-07-02 17:00:00;69.1 -2018-07-02 20:00:00;68.8 -2018-07-02 23:00:00;71.1 -2018-07-03 17:00:00;70.1 -2018-07-03 20:00:00;70.5 -2018-07-03 23:00:00;70.0 -2018-07-04 17:00:00;71.0 -2018-07-04 20:00:00;70.2 -2018-07-04 23:00:00;70.7 -2018-07-05 17:00:00;70.9 -2018-07-05 20:00:00;70.4 -2018-07-05 23:00:00;70.4 -2018-07-06 17:00:00;71.6 -2018-07-06 20:00:00;72.9 -2018-07-06 23:00:00;73.5 -2018-07-07 17:00:00;74.2 -2018-07-07 20:00:00;74.4 -2018-07-07 23:00:00;74.3 -2018-07-08 17:00:00;73.5 -2018-07-08 20:00:00;74.0 -2018-07-08 23:00:00;74.0 -2018-07-09 17:00:00;74.9 -2018-07-09 20:00:00;75.4 -2018-07-09 23:00:00;74.2 -2018-07-10 17:00:00;73.6 -2018-07-10 20:00:00;74.5 -2018-07-10 23:00:00;74.7 -2018-07-11 17:00:00;75.5 -2018-07-11 20:00:00;75.8 -2018-07-11 23:00:00;75.5 -2018-07-12 17:00:00;74.8 -2018-07-12 20:00:00;74.6 -2018-07-12 23:00:00;74.5 -2018-07-13 17:00:00;74.4 -2018-07-13 20:00:00;74.9 -2018-07-13 23:00:00;74.9 -2018-07-14 17:00:00;75.2 -2018-07-14 20:00:00;74.7 -2018-07-14 23:00:00;74.7 -2018-07-15 17:00:00;73.9 -2018-07-15 20:00:00;74.1 -2018-07-15 23:00:00;73.5 -2018-07-16 17:00:00;74.0 -2018-07-16 20:00:00;74.3 -2018-07-16 23:00:00;74.5 -2018-07-17 17:00:00;73.5 -2018-07-17 20:00:00;73.5 -2018-07-17 23:00:00;73.6 -2018-07-18 17:00:00;74.0 -2018-07-18 20:00:00;73.6 -2018-07-18 23:00:00;73.4 -2018-07-19 17:00:00;74.0 -2018-07-19 20:00:00;72.8 -2018-07-19 23:00:00;72.5 -2018-07-20 17:00:00;72.4 -2018-07-20 20:00:00;72.7 -2018-07-20 23:00:00;72.5 -2018-07-21 17:00:00;72.4 -2018-07-21 20:00:00;72.2 -2018-07-21 23:00:00;71.8 -2018-07-22 17:00:00;69.9 -2018-07-22 20:00:00;70.4 -2018-07-22 23:00:00;70.1 -2018-07-23 17:00:00;68.9 -2018-07-23 20:00:00;69.1 -2018-07-23 23:00:00;69.0 -2018-07-24 17:00:00;68.3 -2018-07-24 20:00:00;69.0 -2018-07-24 23:00:00;68.8 -2018-07-25 17:00:00;68.5 -2018-07-25 20:00:00;67.9 -2018-07-25 23:00:00;67.9 -2018-07-26 17:00:00;68.8 -2018-07-26 20:00:00;68.3 -2018-07-26 23:00:00;68.3 -2018-07-27 17:00:00;68.7 -2018-07-27 20:00:00;68.6 -2018-07-27 23:00:00;68.4 -2018-07-28 17:00:00;68.3 -2018-07-28 20:00:00;70.0 -2018-07-28 23:00:00;70.9 -2018-07-29 17:00:00;70.0 -2018-07-29 20:00:00;70.0 -2018-07-29 23:00:00;70.5 -2018-07-30 17:00:00;69.7 -2018-07-30 20:00:00;70.4 -2018-07-30 23:00:00;70.9 -2018-07-31 17:00:00;71.3 -2018-07-31 20:00:00;71.0 -2018-07-31 23:00:00;71.0 -2018-08-01 17:00:00;71.8 -2018-08-01 20:00:00;72.3 -2018-08-01 23:00:00;73.1 -2018-08-02 17:00:00;72.2 -2018-08-02 20:00:00;72.0 -2018-08-02 23:00:00;71.7 -2018-08-03 17:00:00;72.4 -2018-08-03 20:00:00;72.3 -2018-08-03 23:00:00;71.6 -2018-08-04 17:00:00;72.7 -2018-08-04 20:00:00;72.5 -2018-08-04 23:00:00;72.6 -2018-08-05 17:00:00;70.9 -2018-08-05 20:00:00;71.2 -2018-08-05 23:00:00;70.7 -2018-08-06 17:00:00;71.1 -2018-08-06 20:00:00;71.1 -2018-08-06 23:00:00;71.1 -2018-08-07 17:00:00;72.1 -2018-08-07 20:00:00;71.5 -2018-08-07 23:00:00;71.2 -2018-08-08 17:00:00;72.5 -2018-08-08 20:00:00;71.6 -2018-08-08 23:00:00;71.8 -2018-08-09 17:00:00;71.6 -2018-08-09 20:00:00;72.2 -2018-08-09 23:00:00;72.2 -2018-08-10 17:00:00;71.4 -2018-08-10 20:00:00;71.4 -2018-08-10 23:00:00;71.3 -2018-08-11 17:00:00;69.6 -2018-08-11 20:00:00;69.3 -2018-08-11 23:00:00;69.2 -2018-08-12 17:00:00;71.2 -2018-08-12 20:00:00;69.9 -2018-08-12 23:00:00;69.4 -2018-08-13 17:00:00;69.7 -2018-08-13 20:00:00;69.6 -2018-08-13 23:00:00;68.1 -2018-08-14 17:00:00;71.2 -2018-08-14 20:00:00;70.5 -2018-08-14 23:00:00;70.9 -2018-08-15 17:00:00;70.3 -2018-08-15 20:00:00;70.6 -2018-08-15 23:00:00;71.1 -2018-08-16 17:00:00;71.0 -2018-08-16 20:00:00;70.0 -2018-08-16 23:00:00;70.6 -2018-08-17 17:00:00;69.9 -2018-08-17 20:00:00;69.0 -2018-08-17 23:00:00;69.5 -2018-08-18 17:00:00;69.8 -2018-08-18 20:00:00;68.9 -2018-08-18 23:00:00;68.0 -2018-08-19 17:00:00;67.9 -2018-08-19 20:00:00;68.4 -2018-08-19 23:00:00;68.1 -2018-08-20 17:00:00;69.8 -2018-08-20 20:00:00;69.6 -2018-08-20 23:00:00;69.7 -2018-08-21 17:00:00;69.6 -2018-08-21 20:00:00;69.4 -2018-08-21 23:00:00;69.2 -2018-08-22 17:00:00;69.6 -2018-08-22 20:00:00;68.4 -2018-08-22 23:00:00;68.5 -2018-08-23 17:00:00;71.9 -2018-08-23 20:00:00;71.1 -2018-08-23 23:00:00;71.1 -2018-08-24 17:00:00;72.4 -2018-08-24 20:00:00;74.0 -2018-08-24 23:00:00;73.3 -2018-08-25 17:00:00;72.0 -2018-08-25 20:00:00;73.1 -2018-08-25 23:00:00;72.1 -2018-08-26 17:00:00;70.7 -2018-08-26 20:00:00;72.6 -2018-08-26 23:00:00;70.8 -2018-08-27 17:00:00;71.1 -2018-08-27 20:00:00;71.0 -2018-08-27 23:00:00;70.3 -2018-08-28 17:00:00;70.6 -2018-08-28 20:00:00;71.2 -2018-08-28 23:00:00;71.5 -2018-08-29 17:00:00;72.1 -2018-08-29 20:00:00;71.8 -2018-08-29 23:00:00;70.9 -2018-08-30 17:00:00;70.8 -2018-08-30 20:00:00;69.6 -2018-08-30 23:00:00;69.6 -2018-08-31 17:00:00;69.5 -2018-08-31 20:00:00;68.8 -2018-08-31 23:00:00;68.7 -2018-09-01 17:00:00;69.7 -2018-09-01 20:00:00;69.5 -2018-09-01 23:00:00;68.7 -2018-09-02 17:00:00;69.2 -2018-09-02 20:00:00;68.9 -2018-09-02 23:00:00;69.5 -2018-09-03 17:00:00;67.8 -2018-09-03 20:00:00;69.3 -2018-09-03 23:00:00;69.2 -2018-09-04 17:00:00;69.3 -2018-09-04 20:00:00;68.6 -2018-09-04 23:00:00;68.7 -2018-09-05 17:00:00;68.2 -2018-09-05 20:00:00;68.6 -2018-09-05 23:00:00;68.3 -2018-09-06 17:00:00;68.6 -2018-09-06 20:00:00;68.4 -2018-09-06 23:00:00;68.1 -2018-09-07 17:00:00;69.1 -2018-09-07 20:00:00;68.6 -2018-09-07 23:00:00;68.4 -2018-09-08 17:00:00;70.9 -2018-09-08 20:00:00;69.7 -2018-09-08 23:00:00;68.9 -2018-09-09 17:00:00;69.9 -2018-09-09 20:00:00;69.4 -2018-09-09 23:00:00;69.3 -2018-09-10 17:00:00;70.0 -2018-09-10 20:00:00;69.9 -2018-09-10 23:00:00;69.2 -2018-09-11 17:00:00;71.9 -2018-09-11 20:00:00;70.3 -2018-09-11 23:00:00;70.1 -2018-09-12 17:00:00;69.4 -2018-09-12 20:00:00;70.6 -2018-09-12 23:00:00;69.4 -2018-09-13 17:00:00;69.5 -2018-09-13 20:00:00;70.5 -2018-09-13 23:00:00;70.4 -2018-09-14 17:00:00;70.1 -2018-09-14 20:00:00;69.8 -2018-09-14 23:00:00;69.6 -2018-09-15 17:00:00;68.9 -2018-09-15 20:00:00;69.2 -2018-09-15 23:00:00;69.3 -2018-09-16 17:00:00;69.5 -2018-09-16 20:00:00;69.8 -2018-09-16 23:00:00;68.4 -2018-09-17 17:00:00;68.7 -2018-09-17 20:00:00;68.5 -2018-09-17 23:00:00;67.8 -2018-09-18 17:00:00;68.9 -2018-09-18 20:00:00;68.8 -2018-09-18 23:00:00;67.8 -2018-09-19 17:00:00;67.9 -2018-09-19 20:00:00;68.5 -2018-09-19 23:00:00;68.1 -2018-09-20 17:00:00;68.2 -2018-09-20 20:00:00;67.2 -2018-09-20 23:00:00;67.2 -2018-09-21 17:00:00;66.7 -2018-09-21 20:00:00;67.4 -2018-09-21 23:00:00;67.7 -2018-09-22 17:00:00;67.7 -2018-09-22 20:00:00;68.4 -2018-09-22 23:00:00;67.5 -2018-09-23 17:00:00;68.9 -2018-09-23 20:00:00;68.9 -2018-09-23 23:00:00;68.3 -2018-09-24 17:00:00;69.1 -2018-09-24 20:00:00;69.0 -2018-09-24 23:00:00;68.3 -2018-09-25 17:00:00;69.3 -2018-09-25 20:00:00;68.0 -2018-09-25 23:00:00;68.9 -2018-09-26 17:00:00;69.6 -2018-09-26 20:00:00;69.3 -2018-09-26 23:00:00;68.9 -2018-09-27 17:00:00;69.1 -2018-09-27 20:00:00;67.4 -2018-09-27 23:00:00;68.0 -2018-09-28 17:00:00;69.0 -2018-09-28 20:00:00;69.4 -2018-09-28 23:00:00;66.8 -2018-09-29 17:00:00;69.0 -2018-09-29 20:00:00;68.9 -2018-09-29 23:00:00;69.1 -2018-09-30 17:00:00;69.0 -2018-09-30 20:00:00;68.5 -2018-09-30 23:00:00;68.4 -2018-10-01 17:00:00;69.0 -2018-10-01 20:00:00;70.3 -2018-10-01 23:00:00;69.6 -2018-10-02 17:00:00;68.1 -2018-10-02 20:00:00;67.1 -2018-10-02 23:00:00;68.2 -2018-10-03 17:00:00;68.5 -2018-10-03 20:00:00;68.4 -2018-10-03 23:00:00;67.7 -2018-10-04 17:00:00;67.8 -2018-10-04 20:00:00;67.2 -2018-10-04 23:00:00;66.5 -2018-10-05 17:00:00;68.6 -2018-10-05 20:00:00;68.7 -2018-10-05 23:00:00;67.7 -2018-10-06 17:00:00;68.5 -2018-10-06 20:00:00;68.6 -2018-10-06 23:00:00;68.3 -2018-10-07 17:00:00;68.4 -2018-10-07 20:00:00;69.4 -2018-10-07 23:00:00;68.5 -2018-10-08 17:00:00;68.5 -2018-10-08 20:00:00;68.7 -2018-10-08 23:00:00;68.1 -2018-10-09 17:00:00;68.9 -2018-10-09 20:00:00;69.3 -2018-10-09 23:00:00;69.6 -2018-10-10 17:00:00;70.0 -2018-10-10 20:00:00;69.6 -2018-10-10 23:00:00;69.8 -2018-10-11 17:00:00;70.9 -2018-10-11 20:00:00;70.6 -2018-10-11 23:00:00;70.4 -2018-10-12 17:00:00;71.5 -2018-10-12 20:00:00;71.3 -2018-10-12 23:00:00;71.5 -2018-10-13 17:00:00;72.8 -2018-10-13 20:00:00;72.1 -2018-10-13 23:00:00;71.7 -2018-10-14 17:00:00;72.5 -2018-10-14 20:00:00;71.1 -2018-10-14 23:00:00;70.7 -2018-10-15 17:00:00;71.0 -2018-10-15 20:00:00;69.6 -2018-10-15 23:00:00;70.3 -2018-10-16 17:00:00;70.7 -2018-10-16 20:00:00;69.3 -2018-10-16 23:00:00;69.0 -2018-10-17 17:00:00;69.4 -2018-10-17 20:00:00;69.6 -2018-10-17 23:00:00;69.2 -2018-10-18 17:00:00;69.3 -2018-10-18 20:00:00;69.0 -2018-10-18 23:00:00;69.0 -2018-10-19 17:00:00;69.4 -2018-10-19 20:00:00;69.0 -2018-10-19 23:00:00;69.8 -2018-10-20 17:00:00;70.1 -2018-10-20 20:00:00;69.8 -2018-10-20 23:00:00;69.2 -2018-10-21 17:00:00;71.2 -2018-10-21 20:00:00;70.4 -2018-10-21 23:00:00;70.4 -2018-10-22 17:00:00;71.4 -2018-10-22 20:00:00;70.2 -2018-10-22 23:00:00;69.5 -2018-10-23 17:00:00;70.1 -2018-10-23 20:00:00;70.9 -2018-10-23 23:00:00;69.9 -2018-10-24 17:00:00;69.1 -2018-10-24 20:00:00;68.9 -2018-10-24 23:00:00;68.6 -2018-10-25 17:00:00;69.1 -2018-10-25 20:00:00;68.6 -2018-10-25 23:00:00;68.2 -2018-10-26 17:00:00;68.2 -2018-10-26 20:00:00;68.3 -2018-10-26 23:00:00;68.2 -2018-10-27 17:00:00;68.0 -2018-10-27 20:00:00;68.5 -2018-10-27 23:00:00;68.1 -2018-10-28 17:00:00;67.4 -2018-10-28 20:00:00;67.4 -2018-10-28 23:00:00;67.0 -2018-10-29 17:00:00;67.6 -2018-10-29 20:00:00;67.9 -2018-10-29 23:00:00;67.4 -2018-10-30 17:00:00;66.5 -2018-10-30 20:00:00;66.1 -2018-10-30 23:00:00;66.9 -2018-10-31 17:00:00;66.2 -2018-10-31 20:00:00;67.1 -2018-10-31 23:00:00;67.0 -2018-11-01 18:00:00;65.9 -2018-11-01 20:00:00;65.8 -2018-11-01 22:00:00;65.3 -2018-11-02 18:00:00;66.9 -2018-11-02 20:00:00;66.5 -2018-11-02 22:00:00;66.8 -2018-11-03 18:00:00;67.2 -2018-11-03 20:00:00;66.3 -2018-11-03 22:00:00;66.4 -2018-11-04 18:00:00;66.6 -2018-11-04 20:00:00;65.5 -2018-11-04 22:00:00;66.4 -2018-11-05 18:00:00;68.3 -2018-11-05 20:00:00;67.2 -2018-11-05 22:00:00;67.2 -2018-11-06 18:00:00;68.2 -2018-11-06 20:00:00;67.6 -2018-11-06 22:00:00;67.7 -2018-11-07 18:00:00;68.2 -2018-11-07 20:00:00;67.5 -2018-11-07 22:00:00;67.7 -2018-11-08 18:00:00;68.2 -2018-11-08 20:00:00;68.2 -2018-11-08 22:00:00;67.8 -2018-11-09 18:00:00;68.0 -2018-11-09 20:00:00;67.6 -2018-11-09 22:00:00;66.5 -2018-11-10 18:00:00;67.5 -2018-11-10 20:00:00;67.6 -2018-11-10 22:00:00;66.7 -2018-11-11 18:00:00;68.4 -2018-11-11 20:00:00;68.0 -2018-11-11 22:00:00;67.8 -2018-11-12 18:00:00;66.7 -2018-11-12 20:00:00;66.8 -2018-11-12 22:00:00;66.5 -2018-11-13 18:00:00;66.6 -2018-11-13 20:00:00;65.6 -2018-11-13 22:00:00;64.6 -2018-11-14 18:00:00;67.3 -2018-11-14 20:00:00;66.5 -2018-11-14 22:00:00;67.7 -2018-11-15 18:00:00;67.7 -2018-11-15 20:00:00;66.9 -2018-11-15 22:00:00;69.9 -2018-11-16 18:00:00;69.6 -2018-11-16 20:00:00;69.5 -2018-11-16 22:00:00;69.5 -2018-11-17 18:00:00;71.6 -2018-11-17 20:00:00;71.7 -2018-11-17 22:00:00;71.3 -2018-11-18 18:00:00;70.8 -2018-11-18 20:00:00;70.6 -2018-11-18 22:00:00;71.5 -2018-11-19 18:00:00;69.0 -2018-11-19 20:00:00;69.5 -2018-11-19 22:00:00;68.8 -2018-11-20 18:00:00;67.2 -2018-11-20 20:00:00;68.8 -2018-11-20 22:00:00;69.0 -2018-11-21 18:00:00;67.8 -2018-11-21 20:00:00;67.1 -2018-11-21 22:00:00;67.9 -2018-11-22 18:00:00;68.2 -2018-11-22 20:00:00;67.5 -2018-11-22 22:00:00;67.4 -2018-11-23 18:00:00;68.0 -2018-11-23 20:00:00;67.5 -2018-11-23 22:00:00;66.3 -2018-11-24 18:00:00;67.2 -2018-11-24 20:00:00;68.2 -2018-11-24 22:00:00;67.6 -2018-11-25 18:00:00;67.4 -2018-11-25 20:00:00;67.8 -2018-11-25 22:00:00;66.8 -2018-11-26 18:00:00;67.3 -2018-11-26 20:00:00;66.8 -2018-11-26 22:00:00;66.4 -2018-11-27 18:00:00;66.8 -2018-11-27 20:00:00;66.6 -2018-11-27 22:00:00;66.1 -2018-11-28 18:00:00;66.3 -2018-11-28 20:00:00;65.7 -2018-11-28 22:00:00;65.5 -2018-11-29 18:00:00;66.2 -2018-11-29 20:00:00;66.0 -2018-11-29 22:00:00;66.5 -2018-11-30 18:00:00;66.9 -2018-11-30 20:00:00;66.1 -2018-11-30 22:00:00;66.2 -2018-12-01 18:00:00;66.5 -2018-12-01 20:00:00;67.4 -2018-12-01 22:00:00;67.4 -2018-12-02 18:00:00;66.6 -2018-12-02 20:00:00;67.0 -2018-12-02 22:00:00;67.3 -2018-12-03 18:00:00;66.3 -2018-12-03 20:00:00;66.4 -2018-12-03 22:00:00;66.0 -2018-12-04 18:00:00;66.9 -2018-12-04 20:00:00;66.8 -2018-12-04 22:00:00;67.2 -2018-12-05 18:00:00;68.8 -2018-12-05 20:00:00;68.8 -2018-12-05 22:00:00;68.9 -2018-12-06 18:00:00;68.2 -2018-12-06 20:00:00;67.7 -2018-12-06 22:00:00;67.6 -2018-12-07 18:00:00;68.9 -2018-12-07 20:00:00;68.1 -2018-12-07 22:00:00;68.3 -2018-12-08 18:00:00;69.6 -2018-12-08 20:00:00;68.4 -2018-12-08 22:00:00;69.0 -2018-12-09 18:00:00;69.9 -2018-12-09 20:00:00;69.5 -2018-12-09 22:00:00;69.1 -2018-12-10 18:00:00;68.7 -2018-12-10 20:00:00;68.8 -2018-12-10 22:00:00;68.0 -2018-12-11 18:00:00;68.8 -2018-12-11 20:00:00;68.9 -2018-12-11 22:00:00;68.1 -2018-12-12 18:00:00;69.1 -2018-12-12 20:00:00;68.6 -2018-12-12 22:00:00;68.6 -2018-12-13 18:00:00;68.4 -2018-12-13 20:00:00;68.0 -2018-12-13 22:00:00;68.4 -2018-12-14 18:00:00;69.3 -2018-12-14 20:00:00;68.6 -2018-12-14 22:00:00;69.5 -2018-12-15 18:00:00;70.1 -2018-12-15 20:00:00;68.9 -2018-12-15 22:00:00;69.8 -2018-12-16 18:00:00;67.8 -2018-12-16 20:00:00;67.6 -2018-12-16 22:00:00;68.5 -2018-12-17 18:00:00;68.8 -2018-12-17 20:00:00;67.9 -2018-12-17 22:00:00;67.8 -2018-12-18 18:00:00;68.0 -2018-12-18 20:00:00;68.1 -2018-12-18 22:00:00;67.9 -2018-12-19 18:00:00;68.0 -2018-12-19 20:00:00;68.0 -2018-12-19 22:00:00;68.1 -2018-12-20 18:00:00;67.5 -2018-12-20 20:00:00;67.6 -2018-12-20 22:00:00;68.2 -2018-12-21 18:00:00;69.1 -2018-12-21 20:00:00;68.8 -2018-12-21 22:00:00;68.0 -2018-12-22 18:00:00;68.3 -2018-12-22 20:00:00;68.7 -2018-12-22 22:00:00;68.0 -2018-12-23 18:00:00;68.8 -2018-12-23 20:00:00;68.0 -2018-12-23 22:00:00;66.7 -2018-12-24 18:00:00;67.6 -2018-12-24 20:00:00;67.2 -2018-12-24 22:00:00;67.5 -2018-12-25 18:00:00;67.7 -2018-12-25 20:00:00;67.3 -2018-12-25 22:00:00;67.4 -2018-12-26 18:00:00;67.4 -2018-12-26 20:00:00;66.5 -2018-12-26 22:00:00;66.2 -2018-12-27 18:00:00;65.4 -2018-12-27 20:00:00;66.2 -2018-12-27 22:00:00;66.8 -2018-12-28 18:00:00;67.7 -2018-12-28 20:00:00;67.0 -2018-12-28 22:00:00;66.6 -2018-12-29 18:00:00;64.7 -2018-12-29 20:00:00;66.7 -2018-12-29 22:00:00;67.2 -2018-12-30 18:00:00;67.5 -2018-12-30 20:00:00;67.1 -2018-12-30 22:00:00;66.8 -2018-12-31 18:00:00;67.2 -2018-12-31 20:00:00;67.0 -2018-12-31 22:00:00;67.1 -2019-01-01 18:00:00;69.5 -2019-01-01 20:00:00;69.5 -2019-01-01 22:00:00;70.6 -2019-01-02 18:00:00;72.4 -2019-01-02 20:00:00;72.7 -2019-01-02 22:00:00;72.1 -2019-01-03 18:00:00;71.4 -2019-01-03 20:00:00;70.2 -2019-01-03 22:00:00;70.0 -2019-01-04 18:00:00;69.9 -2019-01-04 20:00:00;69.1 -2019-01-04 22:00:00;69.7 -2019-01-05 18:00:00;68.6 -2019-01-05 20:00:00;68.8 -2019-01-05 22:00:00;69.6 -2019-01-06 18:00:00;70.0 -2019-01-06 20:00:00;69.6 -2019-01-06 22:00:00;69.7 -2019-01-07 18:00:00;69.9 -2019-01-07 20:00:00;69.1 -2019-01-07 22:00:00;68.9 -2019-01-08 18:00:00;69.2 -2019-01-08 20:00:00;69.0 -2019-01-08 22:00:00;68.4 -2019-01-09 18:00:00;67.6 -2019-01-09 20:00:00;69.2 -2019-01-09 22:00:00;67.7 -2019-01-10 18:00:00;67.0 -2019-01-10 20:00:00;67.8 -2019-01-10 22:00:00;67.8 -2019-01-11 18:00:00;66.5 -2019-01-11 20:00:00;65.9 -2019-01-11 22:00:00;66.5 -2019-01-12 18:00:00;67.2 -2019-01-12 20:00:00;67.3 -2019-01-12 22:00:00;67.2 -2019-01-13 18:00:00;66.9 -2019-01-13 20:00:00;66.6 -2019-01-13 22:00:00;66.8 -2019-01-14 18:00:00;67.9 -2019-01-14 20:00:00;67.8 -2019-01-14 22:00:00;67.5 -2019-01-15 18:00:00;67.3 -2019-01-15 20:00:00;67.3 -2019-01-15 22:00:00;67.0 -2019-01-16 18:00:00;67.3 -2019-01-16 20:00:00;67.5 -2019-01-16 22:00:00;67.3 -2019-01-17 18:00:00;67.2 -2019-01-17 20:00:00;66.4 -2019-01-17 22:00:00;66.6 -2019-01-18 18:00:00;67.7 -2019-01-18 20:00:00;66.6 -2019-01-18 22:00:00;66.8 -2019-01-19 18:00:00;67.1 -2019-01-19 20:00:00;67.4 -2019-01-19 22:00:00;66.7 -2019-01-20 18:00:00;67.2 -2019-01-20 20:00:00;67.0 -2019-01-20 22:00:00;66.6 -2019-01-21 18:00:00;67.7 -2019-01-21 20:00:00;67.7 -2019-01-21 22:00:00;67.8 -2019-01-22 18:00:00;69.9 -2019-01-22 20:00:00;68.5 -2019-01-22 22:00:00;69.6 -2019-01-23 18:00:00;70.4 -2019-01-23 20:00:00;69.3 -2019-01-23 22:00:00;70.6 -2019-01-24 18:00:00;69.7 -2019-01-24 20:00:00;70.2 -2019-01-24 22:00:00;69.6 -2019-01-25 18:00:00;72.3 -2019-01-25 20:00:00;72.7 -2019-01-25 22:00:00;74.5 -2019-01-26 18:00:00;73.8 -2019-01-26 20:00:00;74.3 -2019-01-26 22:00:00;73.5 -2019-01-27 18:00:00;71.9 -2019-01-27 20:00:00;72.8 -2019-01-27 22:00:00;72.5 -2019-01-28 18:00:00;72.6 -2019-01-28 20:00:00;73.5 -2019-01-28 22:00:00;71.9 -2019-01-29 18:00:00;70.7 -2019-01-29 20:00:00;70.9 -2019-01-29 22:00:00;73.1 -2019-01-30 18:00:00;71.0 -2019-01-30 20:00:00;71.4 -2019-01-30 22:00:00;72.1 -2019-01-31 18:00:00;70.6 -2019-01-31 20:00:00;70.0 -2019-01-31 22:00:00;70.6 -2019-02-01 18:00:00;70.3 -2019-02-01 20:00:00;70.0 -2019-02-01 22:00:00;69.3 -2019-02-02 18:00:00;69.2 -2019-02-02 20:00:00;68.8 -2019-02-02 22:00:00;69.7 -2019-02-03 18:00:00;69.7 -2019-02-03 20:00:00;69.1 -2019-02-03 22:00:00;69.3 -2019-02-04 20:00:00;68.7 -2019-02-04 22:00:00;68.7 -2019-02-05 18:00:00;68.9 -2019-02-05 20:00:00;68.7 -2019-02-05 22:00:00;68.3 -2019-02-06 18:00:00;67.4 -2019-02-06 20:00:00;67.9 -2019-02-06 22:00:00;67.8 -2019-02-07 18:00:00;68.0 -2019-02-07 20:00:00;68.3 -2019-02-07 22:00:00;68.1 -2019-02-08 18:00:00;68.9 -2019-02-08 20:00:00;68.1 -2019-02-08 22:00:00;68.3 -2019-02-09 18:00:00;68.1 -2019-02-09 20:00:00;68.4 -2019-02-09 22:00:00;68.5 -2019-02-10 18:00:00;68.4 -2019-02-10 20:00:00;68.1 -2019-02-10 22:00:00;68.2 -2019-02-11 18:00:00;68.5 -2019-02-11 20:00:00;68.0 -2019-02-11 22:00:00;67.3 -2019-02-12 18:00:00;68.2 -2019-02-12 20:00:00;68.4 -2019-02-12 22:00:00;67.9 -2019-02-13 18:00:00;69.7 -2019-02-13 20:00:00;68.6 -2019-02-13 22:00:00;69.9 -2019-02-14 18:00:00;69.5 -2019-02-14 20:00:00;69.7 -2019-02-14 22:00:00;68.7 -2019-02-15 18:00:00;68.8 -2019-02-15 20:00:00;69.2 -2019-02-15 22:00:00;68.8 -2019-02-16 18:00:00;69.0 -2019-02-16 20:00:00;69.0 -2019-02-16 22:00:00;68.2 -2019-02-17 18:00:00;68.9 -2019-02-17 20:00:00;68.4 -2019-02-17 22:00:00;68.3 -2019-02-18 18:00:00;68.5 -2019-02-18 20:00:00;68.3 -2019-02-18 22:00:00;68.4 -2019-02-19 18:00:00;68.8 -2019-02-19 20:00:00;68.6 -2019-02-19 22:00:00;67.4 -2019-02-20 18:00:00;69.4 -2019-02-20 20:00:00;69.4 -2019-02-20 22:00:00;68.7 -2019-02-21 18:00:00;70.3 -2019-02-21 20:00:00;69.2 -2019-02-21 22:00:00;69.7 -2019-02-22 18:00:00;69.7 -2019-02-22 20:00:00;69.7 -2019-02-22 22:00:00;69.4 -2019-02-23 18:00:00;68.8 -2019-02-23 20:00:00;69.2 -2019-02-23 22:00:00;69.1 -2019-02-24 18:00:00;69.4 -2019-02-24 20:00:00;69.0 -2019-02-24 22:00:00;68.9 -2019-02-25 18:00:00;69.3 -2019-02-25 20:00:00;68.9 -2019-02-25 22:00:00;69.3 -2019-02-26 18:00:00;69.6 -2019-02-26 20:00:00;69.2 -2019-02-26 22:00:00;69.4 -2019-02-27 18:00:00;68.2 -2019-02-27 20:00:00;69.4 -2019-02-27 22:00:00;68.8 -2019-02-28 18:00:00;68.2 -2019-02-28 20:00:00;68.8 -2019-02-28 22:00:00;68.7 -2019-03-01 17:00:00;68.3 -2019-03-01 20:00:00;68.7 -2019-03-01 23:00:00;69.3 -2019-03-02 17:00:00;68.4 -2019-03-02 20:00:00;68.2 -2019-03-02 23:00:00;67.8 -2019-03-03 17:00:00;68.3 -2019-03-03 20:00:00;68.3 -2019-03-03 23:00:00;69.2 -2019-03-04 17:00:00;69.8 -2019-03-04 20:00:00;69.7 -2019-03-04 23:00:00;69.4 -2019-03-05 17:00:00;69.5 -2019-03-05 20:00:00;70.8 -2019-03-05 23:00:00;70.9 -2019-03-06 17:00:00;72.2 -2019-03-06 20:00:00;71.3 -2019-03-06 23:00:00;71.2 -2019-03-07 17:00:00;69.3 -2019-03-07 20:00:00;69.9 -2019-03-07 23:00:00;68.9 -2019-03-08 17:00:00;70.0 -2019-03-08 20:00:00;70.7 -2019-03-08 23:00:00;70.4 -2019-03-09 17:00:00;70.3 -2019-03-09 20:00:00;69.7 -2019-03-09 23:00:00;69.7 -2019-03-10 20:00:00;70.1 -2019-03-10 23:00:00;70.8 -2019-03-11 17:00:00;70.0 -2019-03-11 20:00:00;69.5 -2019-03-11 23:00:00;68.8 -2019-03-12 17:00:00;68.6 -2019-03-12 20:00:00;69.8 -2019-03-12 23:00:00;68.5 -2019-03-13 17:00:00;69.6 -2019-03-13 20:00:00;70.0 -2019-03-13 23:00:00;70.3 -2019-03-14 17:00:00;69.6 -2019-03-14 20:00:00;69.3 -2019-03-14 23:00:00;69.5 -2019-03-15 17:00:00;68.7 -2019-03-15 20:00:00;68.9 -2019-03-15 23:00:00;69.2 -2019-03-16 17:00:00;68.8 -2019-03-16 20:00:00;68.8 -2019-03-16 23:00:00;68.6 -2019-03-17 17:00:00;69.4 -2019-03-17 20:00:00;68.6 -2019-03-17 23:00:00;68.6 -2019-03-18 17:00:00;70.2 -2019-03-18 20:00:00;69.3 -2019-03-18 23:00:00;69.3 -2019-03-19 17:00:00;70.3 -2019-03-19 20:00:00;69.1 -2019-03-19 23:00:00;68.8 -2019-03-20 17:00:00;74.6 -2019-03-20 20:00:00;76.2 -2019-03-20 23:00:00;73.3 -2019-03-21 17:00:00;80.8 -2019-03-21 20:00:00;79.4 -2019-03-21 23:00:00;78.6 -2019-03-22 17:00:00;81.2 -2019-03-22 20:00:00;81.8 -2019-03-22 23:00:00;80.3 -2019-03-23 17:00:00;78.8 -2019-03-23 20:00:00;78.9 -2019-03-23 23:00:00;78.1 -2019-03-24 17:00:00;75.1 -2019-03-24 20:00:00;75.0 -2019-03-24 23:00:00;73.3 -2019-03-25 17:00:00;71.6 -2019-03-25 20:00:00;70.8 -2019-03-25 23:00:00;70.5 -2019-03-26 17:00:00;71.4 -2019-03-26 20:00:00;68.7 -2019-03-26 23:00:00;68.6 -2019-03-27 17:00:00;69.7 -2019-03-27 20:00:00;68.6 -2019-03-27 23:00:00;68.1 -2019-03-28 17:00:00;69.1 -2019-03-28 20:00:00;68.1 -2019-03-28 23:00:00;67.6 -2019-03-29 17:00:00;69.5 -2019-03-29 20:00:00;68.6 -2019-03-29 23:00:00;68.5 -2019-03-30 17:00:00;69.4 -2019-03-30 20:00:00;69.2 -2019-03-30 23:00:00;68.8 -2019-03-31 17:00:00;69.9 -2019-03-31 20:00:00;69.4 -2019-03-31 23:00:00;69.2 -2019-04-01 17:00:00;70.6 -2019-04-01 20:00:00;69.2 -2019-04-01 23:00:00;69.4 -2019-04-02 17:00:00;70.6 -2019-04-02 20:00:00;70.8 -2019-04-02 23:00:00;71.2 -2019-04-03 17:00:00;70.7 -2019-04-03 20:00:00;70.6 -2019-04-03 23:00:00;69.8 -2019-04-04 17:00:00;70.3 -2019-04-04 20:00:00;70.3 -2019-04-04 23:00:00;70.1 -2019-04-05 17:00:00;71.5 -2019-04-05 20:00:00;71.8 -2019-04-05 23:00:00;72.4 -2019-04-06 17:00:00;74.4 -2019-04-06 20:00:00;73.7 -2019-04-06 23:00:00;72.0 -2019-04-07 17:00:00;75.9 -2019-04-07 20:00:00;76.6 -2019-04-07 23:00:00;76.9 -2019-04-08 17:00:00;79.4 -2019-04-08 20:00:00;78.8 -2019-04-08 23:00:00;78.5 -2019-04-09 17:00:00;78.8 -2019-04-09 20:00:00;79.3 -2019-04-09 23:00:00;78.7 -2019-04-10 17:00:00;79.7 -2019-04-10 20:00:00;78.4 -2019-04-10 23:00:00;78.2 -2019-04-11 17:00:00;81.1 -2019-04-11 20:00:00;78.9 -2019-04-11 23:00:00;79.3 -2019-04-12 17:00:00;77.9 -2019-04-12 20:00:00;77.7 -2019-04-12 23:00:00;78.1 -2019-04-13 17:00:00;79.4 -2019-04-13 20:00:00;78.3 -2019-04-13 23:00:00;77.0 -2019-04-14 17:00:00;75.9 -2019-04-14 20:00:00;75.9 -2019-04-14 23:00:00;75.7 -2019-04-15 17:00:00;75.5 -2019-04-15 20:00:00;75.9 -2019-04-15 23:00:00;74.7 -2019-04-16 17:00:00;75.4 -2019-04-16 20:00:00;74.7 -2019-04-16 23:00:00;75.5 -2019-04-17 17:00:00;76.8 -2019-04-17 20:00:00;76.7 -2019-04-17 23:00:00;75.4 -2019-04-18 17:00:00;75.5 -2019-04-18 20:00:00;75.2 -2019-04-18 23:00:00;75.3 -2019-04-19 17:00:00;73.0 -2019-04-19 20:00:00;73.3 -2019-04-19 23:00:00;72.9 -2019-04-20 17:00:00;72.9 -2019-04-20 20:00:00;70.6 -2019-04-20 23:00:00;72.2 -2019-04-21 17:00:00;70.5 -2019-04-21 20:00:00;69.9 -2019-04-21 23:00:00;69.5 -2019-04-22 17:00:00;71.0 -2019-04-22 20:00:00;70.2 -2019-04-22 23:00:00;69.6 -2019-04-23 17:00:00;69.1 -2019-04-23 20:00:00;69.6 -2019-04-23 23:00:00;68.8 -2019-04-24 17:00:00;70.0 -2019-04-24 20:00:00;70.1 -2019-04-24 23:00:00;68.9 -2019-04-25 17:00:00;69.0 -2019-04-25 20:00:00;68.4 -2019-04-25 23:00:00;68.3 -2019-04-26 17:00:00;68.6 -2019-04-26 20:00:00;68.0 -2019-04-26 23:00:00;67.8 -2019-04-27 17:00:00;68.7 -2019-04-27 20:00:00;67.8 -2019-04-27 23:00:00;68.7 -2019-04-28 17:00:00;68.6 -2019-04-28 20:00:00;68.8 -2019-04-28 23:00:00;68.7 -2019-04-29 17:00:00;68.7 -2019-04-29 20:00:00;67.9 -2019-04-29 23:00:00;68.2 -2019-04-30 17:00:00;68.5 -2019-04-30 20:00:00;69.5 -2019-04-30 23:00:00;68.9 -2019-05-01 17:00:00;68.6 -2019-05-01 20:00:00;68.7 -2019-05-01 23:00:00;68.3 -2019-05-02 17:00:00;69.7 -2019-05-02 20:00:00;70.3 -2019-05-02 23:00:00;69.8 -2019-05-03 17:00:00;71.2 -2019-05-03 20:00:00;70.9 -2019-05-03 23:00:00;71.1 -2019-05-04 17:00:00;73.0 -2019-05-04 20:00:00;73.5 -2019-05-04 23:00:00;75.4 -2019-05-05 17:00:00;76.3 -2019-05-05 20:00:00;74.7 -2019-05-05 23:00:00;77.0 -2019-05-06 17:00:00;78.0 -2019-05-06 20:00:00;77.3 -2019-05-06 23:00:00;77.9 -2019-05-07 17:00:00;79.4 -2019-05-07 20:00:00;80.1 -2019-05-07 23:00:00;79.8 -2019-05-08 17:00:00;78.9 -2019-05-08 20:00:00;76.8 -2019-05-08 23:00:00;77.4 -2019-05-09 17:00:00;77.8 -2019-05-09 20:00:00;77.7 -2019-05-09 23:00:00;77.0 -2019-05-10 17:00:00;76.8 -2019-05-10 20:00:00;77.8 -2019-05-10 23:00:00;77.9 -2019-05-11 17:00:00;77.7 -2019-05-11 20:00:00;79.5 -2019-05-11 23:00:00;78.4 -2019-05-12 17:00:00;76.5 -2019-05-12 20:00:00;77.6 -2019-05-12 23:00:00;79.1 -2019-05-13 17:00:00;78.1 -2019-05-13 20:00:00;76.2 -2019-05-13 23:00:00;75.7 -2019-05-14 17:00:00;77.5 -2019-05-14 20:00:00;76.0 -2019-05-14 23:00:00;76.0 -2019-05-15 17:00:00;75.8 -2019-05-15 20:00:00;75.6 -2019-05-15 23:00:00;74.6 -2019-05-16 17:00:00;74.7 -2019-05-16 20:00:00;75.3 -2019-05-16 23:00:00;74.3 -2019-05-17 17:00:00;74.8 -2019-05-17 20:00:00;73.8 -2019-05-17 23:00:00;73.5 -2019-05-18 17:00:00;73.3 -2019-05-18 20:00:00;72.2 -2019-05-18 23:00:00;71.7 -2019-05-19 17:00:00;71.1 -2019-05-19 20:00:00;69.6 -2019-05-19 23:00:00;69.6 -2019-05-20 17:00:00;70.4 -2019-05-20 20:00:00;70.4 -2019-05-20 23:00:00;68.8 -2019-05-21 17:00:00;70.2 -2019-05-21 20:00:00;69.7 -2019-05-21 23:00:00;69.0 -2019-05-22 17:00:00;68.7 -2019-05-22 20:00:00;69.0 -2019-05-22 23:00:00;68.7 -2019-05-23 17:00:00;69.4 -2019-05-23 20:00:00;68.2 -2019-05-23 23:00:00;68.5 -2019-05-24 17:00:00;68.6 -2019-05-24 20:00:00;68.1 -2019-05-24 23:00:00;68.3 -2019-05-25 17:00:00;69.6 -2019-05-25 20:00:00;68.7 -2019-05-25 23:00:00;69.3 -2019-05-26 17:00:00;70.0 -2019-05-26 20:00:00;69.8 -2019-05-26 23:00:00;68.6 -2019-05-27 17:00:00;69.5 -2019-05-27 20:00:00;69.3 -2019-05-27 23:00:00;69.0 -2019-05-28 17:00:00;69.0 -2019-05-28 20:00:00;70.0 -2019-05-28 23:00:00;70.0 -2019-05-29 17:00:00;69.6 -2019-05-29 20:00:00;70.1 -2019-05-29 23:00:00;69.0 -2019-05-30 17:00:00;71.4 -2019-05-30 20:00:00;70.6 -2019-05-30 23:00:00;70.0 -2019-05-31 17:00:00;70.6 -2019-05-31 20:00:00;70.6 -2019-05-31 23:00:00;70.1 -2019-06-01 17:00:00;71.1 -2019-06-01 20:00:00;71.7 -2019-06-01 23:00:00;71.5 -2019-06-02 17:00:00;71.6 -2019-06-02 20:00:00;71.9 -2019-06-02 23:00:00;71.6 -2019-06-03 17:00:00;71.6 -2019-06-03 20:00:00;71.8 -2019-06-03 23:00:00;71.5 -2019-06-04 17:00:00;72.0 -2019-06-04 20:00:00;72.1 -2019-06-04 23:00:00;72.0 -2019-06-05 17:00:00;73.5 -2019-06-05 20:00:00;71.8 -2019-06-05 23:00:00;72.3 -2019-06-06 17:00:00;72.7 -2019-06-06 20:00:00;70.9 -2019-06-06 23:00:00;70.4 -2019-06-07 17:00:00;72.3 -2019-06-07 20:00:00;71.0 -2019-06-07 23:00:00;70.5 -2019-06-08 17:00:00;71.2 -2019-06-08 20:00:00;70.5 -2019-06-08 23:00:00;70.1 -2019-06-09 17:00:00;71.0 -2019-06-09 20:00:00;70.5 -2019-06-09 23:00:00;71.0 -2019-06-10 17:00:00;70.7 -2019-06-10 20:00:00;71.0 -2019-06-10 23:00:00;71.1 -2019-06-11 17:00:00;71.1 -2019-06-11 20:00:00;71.9 -2019-06-11 23:00:00;71.3 -2019-06-12 17:00:00;71.7 -2019-06-12 20:00:00;71.6 -2019-06-12 23:00:00;71.3 -2019-06-13 17:00:00;70.5 -2019-06-13 20:00:00;69.6 -2019-06-13 23:00:00;70.1 -2019-06-14 17:00:00;70.0 -2019-06-14 20:00:00;70.1 -2019-06-14 23:00:00;70.0 -2019-06-15 17:00:00;69.1 -2019-06-15 20:00:00;68.8 -2019-06-15 23:00:00;68.7 -2019-06-16 17:00:00;68.6 -2019-06-16 20:00:00;68.0 -2019-06-16 23:00:00;67.2 -2019-06-17 17:00:00;69.0 -2019-06-17 20:00:00;68.5 -2019-06-17 23:00:00;67.9 -2019-06-18 17:00:00;68.8 -2019-06-18 20:00:00;69.2 -2019-06-18 23:00:00;68.6 -2019-06-19 17:00:00;69.4 -2019-06-19 20:00:00;70.2 -2019-06-19 23:00:00;70.0 -2019-06-20 17:00:00;69.4 -2019-06-20 20:00:00;69.9 -2019-06-20 23:00:00;68.7 -2019-06-21 17:00:00;69.0 -2019-06-21 20:00:00;68.6 -2019-06-21 23:00:00;68.5 -2019-06-22 17:00:00;69.1 -2019-06-22 20:00:00;68.6 -2019-06-22 23:00:00;68.4 -2019-06-23 17:00:00;70.5 -2019-06-23 20:00:00;69.5 -2019-06-23 23:00:00;69.4 -2019-06-24 17:00:00;70.5 -2019-06-24 20:00:00;70.2 -2019-06-24 23:00:00;69.9 -2019-06-25 17:00:00;71.4 -2019-06-25 20:00:00;70.2 -2019-06-25 23:00:00;69.5 -2019-06-26 17:00:00;71.0 -2019-06-26 20:00:00;70.3 -2019-06-26 23:00:00;70.4 -2019-06-27 17:00:00;70.6 -2019-06-27 20:00:00;69.3 -2019-06-27 23:00:00;70.0 -2019-06-28 17:00:00;70.0 -2019-06-28 20:00:00;70.4 -2019-06-28 23:00:00;67.5 -2019-06-29 17:00:00;71.6 -2019-06-29 20:00:00;69.9 -2019-06-29 23:00:00;69.8 -2019-06-30 17:00:00;70.0 -2019-06-30 20:00:00;69.7 -2019-06-30 23:00:00;69.9 -2019-07-01 17:00:00;69.0 -2019-07-01 20:00:00;70.5 -2019-07-01 23:00:00;69.8 -2019-07-02 17:00:00;69.9 -2019-07-02 20:00:00;69.5 -2019-07-02 23:00:00;69.4 -2019-07-03 17:00:00;69.5 -2019-07-03 20:00:00;69.1 -2019-07-03 23:00:00;69.1 -2019-07-04 17:00:00;70.4 -2019-07-04 20:00:00;69.9 -2019-07-04 23:00:00;69.6 -2019-07-05 17:00:00;70.2 -2019-07-05 20:00:00;69.0 -2019-07-05 23:00:00;68.7 -2019-07-06 17:00:00;70.2 -2019-07-06 20:00:00;68.8 -2019-07-06 23:00:00;68.5 -2019-07-07 17:00:00;70.3 -2019-07-07 20:00:00;69.6 -2019-07-07 23:00:00;69.9 -2019-07-08 17:00:00;69.6 -2019-07-08 20:00:00;68.7 -2019-07-08 23:00:00;69.3 -2019-07-09 17:00:00;69.1 -2019-07-09 20:00:00;69.7 -2019-07-09 23:00:00;69.2 -2019-07-10 17:00:00;69.8 -2019-07-10 20:00:00;70.1 -2019-07-10 23:00:00;69.0 -2019-07-11 17:00:00;68.9 -2019-07-11 20:00:00;69.4 -2019-07-11 23:00:00;69.0 -2019-07-12 17:00:00;69.0 -2019-07-12 20:00:00;69.0 -2019-07-12 23:00:00;68.9 -2019-07-13 17:00:00;69.4 -2019-07-13 20:00:00;68.2 -2019-07-13 23:00:00;68.6 -2019-07-14 17:00:00;69.0 -2019-07-14 20:00:00;69.4 -2019-07-14 23:00:00;69.1 -2019-07-15 17:00:00;69.9 -2019-07-15 20:00:00;69.3 -2019-07-15 23:00:00;69.5 -2019-07-16 17:00:00;69.0 -2019-07-16 20:00:00;69.5 -2019-07-16 23:00:00;69.6 -2019-07-17 17:00:00;69.1 -2019-07-17 20:00:00;70.0 -2019-07-17 23:00:00;68.7 -2019-07-18 17:00:00;70.0 -2019-07-18 20:00:00;69.2 -2019-07-18 23:00:00;69.5 -2019-07-19 17:00:00;68.4 -2019-07-19 20:00:00;68.9 -2019-07-19 23:00:00;69.0 -2019-07-20 17:00:00;70.6 -2019-07-20 20:00:00;69.1 -2019-07-20 23:00:00;68.5 -2019-07-21 17:00:00;70.0 -2019-07-21 20:00:00;69.8 -2019-07-21 23:00:00;69.9 -2019-07-22 17:00:00;69.4 -2019-07-22 20:00:00;69.5 -2019-07-22 23:00:00;69.9 -2019-07-23 17:00:00;69.1 -2019-07-23 20:00:00;69.6 -2019-07-23 23:00:00;69.7 -2019-07-24 17:00:00;70.1 -2019-07-24 20:00:00;70.0 -2019-07-24 23:00:00;70.0 -2019-07-25 17:00:00;70.4 -2019-07-25 20:00:00;70.3 -2019-07-25 23:00:00;69.9 -2019-07-26 17:00:00;69.5 -2019-07-26 20:00:00;69.8 -2019-07-26 23:00:00;77.6 -2019-07-27 17:00:00;68.2 -2019-07-27 20:00:00;68.7 -2019-07-27 23:00:00;69.1 -2019-07-28 17:00:00;70.0 -2019-07-28 20:00:00;69.2 -2019-07-28 23:00:00;67.8 -2019-07-29 17:00:00;68.5 -2019-07-29 20:00:00;68.2 -2019-07-29 23:00:00;70.0 -2019-07-30 17:00:00;68.5 -2019-07-30 20:00:00;68.3 -2019-07-30 23:00:00;69.2 -2019-07-31 17:00:00;69.0 -2019-07-31 20:00:00;68.9 -2019-07-31 23:00:00;68.9 -2019-08-01 17:00:00;68.5 -2019-08-01 20:00:00;68.8 -2019-08-01 23:00:00;70.3 -2019-08-02 17:00:00;67.9 -2019-08-02 20:00:00;68.9 -2019-08-02 23:00:00;68.4 -2019-08-03 17:00:00;69.2 -2019-08-03 20:00:00;67.7 -2019-08-03 23:00:00;67.5 -2019-08-04 17:00:00;68.4 -2019-08-04 20:00:00;68.8 -2019-08-04 23:00:00;68.9 -2019-08-05 17:00:00;70.7 -2019-08-05 20:00:00;70.1 -2019-08-05 23:00:00;70.1 -2019-08-06 17:00:00;69.6 -2019-08-06 20:00:00;70.1 -2019-08-06 23:00:00;70.4 -2019-08-07 17:00:00;70.1 -2019-08-07 20:00:00;69.9 -2019-08-07 23:00:00;70.1 -2019-08-08 17:00:00;70.2 -2019-08-08 20:00:00;70.6 -2019-08-08 23:00:00;69.7 -2019-08-09 17:00:00;69.1 -2019-08-09 20:00:00;69.1 -2019-08-09 23:00:00;69.0 -2019-08-10 17:00:00;68.7 -2019-08-10 20:00:00;69.1 -2019-08-10 23:00:00;68.6 -2019-08-11 17:00:00;67.8 -2019-08-11 20:00:00;69.5 -2019-08-11 23:00:00;69.2 -2019-08-12 17:00:00;69.7 -2019-08-12 20:00:00;69.0 -2019-08-12 23:00:00;68.4 -2019-08-13 17:00:00;69.5 -2019-08-13 20:00:00;68.6 -2019-08-13 23:00:00;68.5 -2019-08-14 17:00:00;70.0 -2019-08-14 20:00:00;69.1 -2019-08-14 23:00:00;70.0 -2019-08-15 17:00:00;70.0 -2019-08-15 20:00:00;69.4 -2019-08-15 23:00:00;70.0 -2019-08-16 17:00:00;70.0 -2019-08-16 20:00:00;69.2 -2019-08-16 23:00:00;68.9 -2019-08-17 17:00:00;69.3 -2019-08-17 20:00:00;69.7 -2019-08-17 23:00:00;68.4 -2019-08-18 17:00:00;69.2 -2019-08-18 20:00:00;69.2 -2019-08-18 23:00:00;70.2 -2019-08-19 17:00:00;69.3 -2019-08-19 20:00:00;69.3 -2019-08-19 23:00:00;69.4 -2019-08-20 17:00:00;69.2 -2019-08-20 20:00:00;68.9 -2019-08-20 23:00:00;69.5 -2019-08-21 17:00:00;68.0 -2019-08-21 20:00:00;68.4 -2019-08-21 23:00:00;67.9 -2019-08-22 17:00:00;68.5 -2019-08-22 20:00:00;67.3 -2019-08-22 23:00:00;66.9 -2019-08-23 17:00:00;68.8 -2019-08-23 20:00:00;68.0 -2019-08-23 23:00:00;67.6 -2019-08-24 17:00:00;69.2 -2019-08-24 20:00:00;67.8 -2019-08-24 23:00:00;66.9 -2019-08-25 17:00:00;68.4 -2019-08-25 20:00:00;67.4 -2019-08-25 23:00:00;68.1 -2019-08-26 17:00:00;68.4 -2019-08-26 20:00:00;67.2 -2019-08-26 23:00:00;66.6 -2019-08-27 17:00:00;68.1 -2019-08-27 20:00:00;67.5 -2019-08-27 23:00:00;67.3 -2019-08-28 17:00:00;66.7 -2019-08-28 20:00:00;67.2 -2019-08-28 23:00:00;67.2 -2019-08-29 17:00:00;67.9 -2019-08-29 20:00:00;67.2 -2019-08-29 23:00:00;67.9 -2019-08-30 17:00:00;68.7 -2019-08-30 20:00:00;67.8 -2019-08-30 23:00:00;67.8 -2019-08-31 17:00:00;67.8 -2019-08-31 20:00:00;67.7 -2019-08-31 23:00:00;68.2 -2019-09-01 17:00:00;69.1 -2019-09-01 20:00:00;68.3 -2019-09-01 23:00:00;68.5 -2019-09-02 17:00:00;70.2 -2019-09-02 20:00:00;70.0 -2019-09-02 23:00:00;69.9 -2019-09-03 17:00:00;70.6 -2019-09-03 20:00:00;69.8 -2019-09-03 23:00:00;69.4 -2019-09-04 17:00:00;70.9 -2019-09-04 20:00:00;69.8 -2019-09-04 23:00:00;69.4 -2019-09-05 17:00:00;69.3 -2019-09-05 20:00:00;69.4 -2019-09-05 23:00:00;69.4 -2019-09-06 17:00:00;70.2 -2019-09-06 20:00:00;70.0 -2019-09-06 23:00:00;70.3 -2019-09-07 17:00:00;70.7 -2019-09-07 20:00:00;75.0 -2019-09-07 23:00:00;70.9 -2019-09-08 17:00:00;74.5 -2019-09-08 20:00:00;68.5 -2019-09-09 17:00:00;70.0 -2019-09-09 20:00:00;69.8 -2019-09-09 23:00:00;68.1 -2019-09-10 17:00:00;69.4 -2019-09-10 20:00:00;70.9 -2019-09-10 23:00:00;68.9 -2019-09-11 17:00:00;69.9 -2019-09-11 20:00:00;69.0 -2019-09-11 23:00:00;68.6 -2019-09-12 17:00:00;69.6 -2019-09-12 20:00:00;70.3 -2019-09-12 23:00:00;69.1 -2019-09-13 17:00:00;70.4 -2019-09-13 20:00:00;69.1 -2019-09-13 23:00:00;69.0 -2019-09-14 17:00:00;69.0 -2019-09-14 20:00:00;69.4 -2019-09-14 23:00:00;69.6 -2019-09-15 17:00:00;68.5 -2019-09-15 20:00:00;68.4 -2019-09-15 23:00:00;67.8 -2019-09-16 17:00:00;69.6 -2019-09-16 20:00:00;69.4 -2019-09-16 23:00:00;68.3 -2019-09-17 17:00:00;68.8 -2019-09-17 20:00:00;68.2 -2019-09-17 23:00:00;67.5 -2019-09-18 17:00:00;66.6 -2019-09-18 20:00:00;66.9 -2019-09-18 23:00:00;66.8 -2019-09-19 17:00:00;67.6 -2019-09-19 20:00:00;67.7 -2019-09-19 23:00:00;67.9 -2019-09-20 17:00:00;68.4 -2019-09-20 20:00:00;67.7 -2019-09-20 23:00:00;67.9 -2019-09-21 17:00:00;68.9 -2019-09-21 20:00:00;68.2 -2019-09-21 23:00:00;67.5 -2019-09-22 17:00:00;67.5 -2019-09-22 20:00:00;68.8 -2019-09-22 23:00:00;68.1 -2019-09-23 17:00:00;67.9 -2019-09-23 20:00:00;66.6 -2019-09-23 23:00:00;66.9 -2019-09-24 17:00:00;68.4 -2019-09-24 20:00:00;67.5 -2019-09-24 23:00:00;66.9 -2019-09-25 17:00:00;67.8 -2019-09-25 20:00:00;67.9 -2019-09-25 23:00:00;66.6 -2019-09-26 17:00:00;67.1 -2019-09-26 20:00:00;67.4 -2019-09-26 23:00:00;66.7 -2019-09-27 17:00:00;67.1 -2019-09-27 20:00:00;66.8 -2019-09-27 23:00:00;67.2 -2019-09-28 17:00:00;67.7 -2019-09-28 20:00:00;67.5 -2019-09-28 23:00:00;67.0 -2019-09-29 17:00:00;67.9 -2019-09-29 20:00:00;67.7 -2019-09-29 23:00:00;68.2 -2019-09-30 17:00:00;68.0 -2019-09-30 20:00:00;68.1 -2019-09-30 23:00:00;69.1 -2019-10-01 17:00:00;69.4 -2019-10-01 20:00:00;68.8 -2019-10-01 23:00:00;67.4 -2019-10-02 17:00:00;68.7 -2019-10-02 20:00:00;68.4 -2019-10-02 23:00:00;67.6 -2019-10-03 17:00:00;69.6 -2019-10-03 20:00:00;68.3 -2019-10-03 23:00:00;68.0 -2019-10-04 17:00:00;68.9 -2019-10-04 20:00:00;68.1 -2019-10-04 23:00:00;67.8 -2019-10-05 17:00:00;67.7 -2019-10-05 20:00:00;67.8 -2019-10-05 23:00:00;67.2 -2019-10-06 17:00:00;68.3 -2019-10-06 20:00:00;67.3 -2019-10-06 23:00:00;67.7 -2019-10-07 17:00:00;67.3 -2019-10-07 20:00:00;67.6 -2019-10-07 23:00:00;67.5 -2019-10-08 17:00:00;68.0 -2019-10-08 20:00:00;67.0 -2019-10-08 23:00:00;67.0 -2019-10-09 17:00:00;67.8 -2019-10-09 20:00:00;67.9 -2019-10-09 23:00:00;67.5 -2019-10-10 17:00:00;67.4 -2019-10-10 20:00:00;67.3 -2019-10-10 23:00:00;66.5 -2019-10-11 17:00:00;68.1 -2019-10-11 20:00:00;68.3 -2019-10-11 23:00:00;68.1 -2019-10-12 17:00:00;67.5 -2019-10-12 20:00:00;68.0 -2019-10-12 23:00:00;67.1 -2019-10-13 17:00:00;67.1 -2019-10-13 20:00:00;66.9 -2019-10-13 23:00:00;66.6 -2019-10-14 17:00:00;66.7 -2019-10-14 20:00:00;65.8 -2019-10-14 23:00:00;65.6 -2019-10-15 17:00:00;66.2 -2019-10-15 20:00:00;66.9 -2019-10-15 23:00:00;65.8 -2019-10-16 17:00:00;66.1 -2019-10-16 20:00:00;65.9 -2019-10-16 23:00:00;65.9 -2019-10-17 17:00:00;65.8 -2019-10-17 20:00:00;65.6 -2019-10-17 23:00:00;65.5 -2019-10-18 17:00:00;65.8 -2019-10-18 20:00:00;65.6 -2019-10-18 23:00:00;64.9 -2019-10-19 17:00:00;65.3 -2019-10-19 20:00:00;65.5 -2019-10-19 23:00:00;64.6 -2019-10-20 17:00:00;64.8 -2019-10-20 20:00:00;64.4 -2019-10-21 17:00:00;64.1 -2019-10-21 20:00:00;63.4 -2019-10-21 23:00:00;63.5 -2019-10-22 17:00:00;65.0 -2019-10-22 20:00:00;64.9 -2019-10-22 23:00:00;64.2 -2019-10-23 17:00:00;65.4 -2019-10-23 20:00:00;63.9 -2019-10-23 23:00:00;63.6 -2019-10-24 17:00:00;65.3 -2019-10-24 20:00:00;64.3 -2019-10-25 17:00:00;67.3 -2019-10-25 20:00:00;67.9 -2019-10-25 23:00:00;67.2 -2019-10-26 17:00:00;68.9 -2019-10-26 20:00:00;67.8 -2019-10-26 23:00:00;67.4 -2019-10-27 17:00:00;68.1 -2019-10-27 20:00:00;68.0 -2019-10-27 23:00:00;68.3 -2019-10-28 17:00:00;68.7 -2019-10-28 20:00:00;68.5 -2019-10-28 23:00:00;67.8 -2019-10-29 17:00:00;68.0 -2019-10-29 20:00:00;68.2 -2019-10-29 23:00:00;68.2 -2019-10-30 17:00:00;68.6 -2019-10-30 20:00:00;68.8 -2019-10-30 23:00:00;68.2 -2019-10-31 17:00:00;69.5 -2019-10-31 20:00:00;70.2 -2019-10-31 23:00:00;70.9 -2019-11-01 18:00:00;70.4 -2019-11-01 20:00:00;69.6 -2019-11-01 22:00:00;70.0 -2019-11-02 18:00:00;70.2 -2019-11-02 20:00:00;69.6 -2019-11-02 22:00:00;67.9 -2019-11-03 18:00:00;67.8 -2019-11-03 20:00:00;68.3 -2019-11-03 22:00:00;68.1 -2019-11-04 18:00:00;69.4 -2019-11-04 20:00:00;69.6 -2019-11-04 22:00:00;69.2 -2019-11-05 18:00:00;69.5 -2019-11-05 20:00:00;69.2 -2019-11-05 22:00:00;69.2 -2019-11-06 18:00:00;68.9 -2019-11-06 20:00:00;68.1 -2019-11-06 22:00:00;68.3 -2019-11-07 18:00:00;68.1 -2019-11-07 20:00:00;68.5 -2019-11-07 22:00:00;68.4 -2019-11-08 18:00:00;68.0 -2019-11-08 20:00:00;68.9 -2019-11-09 18:00:00;68.3 -2019-11-09 20:00:00;68.3 -2019-11-09 22:00:00;68.7 -2019-11-10 18:00:00;68.0 -2019-11-10 20:00:00;69.4 -2019-11-10 22:00:00;68.0 -2019-11-11 18:00:00;68.5 -2019-11-11 20:00:00;68.1 -2019-11-11 22:00:00;68.2 -2019-11-12 18:00:00;68.8 -2019-11-12 20:00:00;69.3 -2019-11-12 22:00:00;67.3 -2019-11-13 18:00:00;69.8 -2019-11-13 20:00:00;69.6 -2019-11-13 22:00:00;69.4 -2019-11-14 18:00:00;69.2 -2019-11-14 20:00:00;68.4 -2019-11-14 22:00:00;68.8 -2019-11-15 18:00:00;68.4 -2019-11-15 20:00:00;68.5 -2019-11-15 22:00:00;68.0 -2019-11-16 18:00:00;68.6 -2019-11-16 20:00:00;68.2 -2019-11-16 22:00:00;67.4 -2019-11-17 18:00:00;68.6 -2019-11-17 20:00:00;68.5 -2019-11-17 22:00:00;68.1 -2019-11-18 18:00:00;67.8 -2019-11-18 20:00:00;68.8 -2019-11-18 22:00:00;69.3 -2019-11-19 18:00:00;67.8 -2019-11-19 20:00:00;67.6 -2019-11-19 22:00:00;68.8 -2019-11-20 18:00:00;69.0 -2019-11-20 20:00:00;68.5 -2019-11-20 22:00:00;68.2 -2019-11-21 18:00:00;70.1 -2019-11-21 20:00:00;69.1 -2019-11-21 22:00:00;69.0 -2019-11-22 18:00:00;68.9 -2019-11-22 20:00:00;67.9 -2019-11-22 22:00:00;68.9 -2019-11-23 18:00:00;67.8 -2019-11-23 20:00:00;68.5 -2019-11-23 22:00:00;67.9 -2019-11-24 18:00:00;69.0 -2019-11-24 20:00:00;68.8 -2019-11-24 22:00:00;68.0 -2019-11-25 18:00:00;67.6 -2019-11-25 20:00:00;67.7 -2019-11-25 22:00:00;67.4 -2019-11-26 18:00:00;68.7 -2019-11-26 20:00:00;68.6 -2019-11-26 22:00:00;71.4 -2019-11-27 18:00:00;69.7 -2019-11-27 20:00:00;69.6 -2019-11-27 22:00:00;69.3 -2019-11-28 18:00:00;68.8 -2019-11-28 20:00:00;68.3 -2019-11-28 22:00:00;68.9 -2019-11-29 18:00:00;68.2 -2019-11-29 20:00:00;67.9 -2019-11-29 22:00:00;67.7 -2019-11-30 18:00:00;68.9 -2019-11-30 20:00:00;68.5 -2019-11-30 22:00:00;68.1 -2019-12-01 18:00:00;69.3 -2019-12-01 20:00:00;69.2 -2019-12-01 22:00:00;69.1 -2019-12-02 18:00:00;68.5 -2019-12-02 20:00:00;68.4 -2019-12-02 22:00:00;67.9 -2019-12-03 18:00:00;68.5 -2019-12-03 20:00:00;67.9 -2019-12-03 22:00:00;67.8 -2019-12-04 18:00:00;68.2 -2019-12-04 20:00:00;67.6 -2019-12-04 22:00:00;66.8 -2019-12-05 18:00:00;68.0 -2019-12-05 20:00:00;68.6 -2019-12-05 22:00:00;68.1 -2019-12-06 18:00:00;68.6 -2019-12-06 20:00:00;68.3 -2019-12-06 22:00:00;68.1 -2019-12-07 18:00:00;68.5 -2019-12-07 20:00:00;68.2 -2019-12-07 22:00:00;67.2 -2019-12-08 18:00:00;69.2 -2019-12-08 20:00:00;69.4 -2019-12-08 22:00:00;68.9 -2019-12-09 18:00:00;70.3 -2019-12-09 20:00:00;68.6 -2019-12-09 22:00:00;68.3 -2019-12-10 18:00:00;69.2 -2019-12-10 20:00:00;68.4 -2019-12-10 22:00:00;68.7 -2019-12-11 18:00:00;69.0 -2019-12-11 20:00:00;68.6 -2019-12-11 22:00:00;69.0 -2019-12-12 18:00:00;68.0 -2019-12-12 20:00:00;68.3 -2019-12-12 22:00:00;67.5 -2019-12-13 18:00:00;66.5 -2019-12-13 20:00:00;66.8 -2019-12-13 22:00:00;66.9 -2019-12-14 18:00:00;68.4 -2019-12-14 20:00:00;68.1 -2019-12-14 22:00:00;68.4 -2019-12-15 18:00:00;68.5 -2019-12-15 20:00:00;68.8 -2019-12-15 22:00:00;68.3 -2019-12-16 18:00:00;67.6 -2019-12-16 20:00:00;67.7 -2019-12-16 22:00:00;67.4 -2019-12-17 18:00:00;68.3 -2019-12-17 20:00:00;68.2 -2019-12-17 22:00:00;68.1 -2019-12-18 18:00:00;68.7 -2019-12-18 20:00:00;68.0 -2019-12-18 22:00:00;67.8 -2019-12-19 18:00:00;67.7 -2019-12-19 20:00:00;67.7 -2019-12-19 22:00:00;67.6 -2019-12-20 18:00:00;67.9 -2019-12-20 20:00:00;67.7 -2019-12-20 22:00:00;68.2 -2019-12-21 18:00:00;69.1 -2019-12-21 20:00:00;68.4 -2019-12-21 22:00:00;68.8 -2019-12-22 18:00:00;69.1 -2019-12-22 20:00:00;68.7 -2019-12-22 22:00:00;68.6 -2019-12-23 18:00:00;69.6 -2019-12-23 20:00:00;70.2 -2019-12-23 22:00:00;70.4 -2019-12-24 18:00:00;70.9 -2019-12-24 20:00:00;70.3 -2019-12-24 22:00:00;70.4 -2019-12-25 18:00:00;70.3 -2019-12-25 20:00:00;69.8 -2019-12-25 22:00:00;70.4 -2019-12-26 18:00:00;70.7 -2019-12-26 20:00:00;69.7 -2019-12-26 22:00:00;70.0 -2019-12-27 18:00:00;70.7 -2019-12-27 20:00:00;70.1 -2019-12-27 22:00:00;70.3 -2019-12-28 18:00:00;69.8 -2019-12-28 20:00:00;69.8 -2019-12-28 22:00:00;69.1 -2019-12-29 18:00:00;70.2 -2019-12-29 20:00:00;69.6 -2019-12-29 22:00:00;69.6 -2019-12-30 18:00:00;69.4 -2019-12-30 20:00:00;68.6 -2019-12-30 22:00:00;68.6 -2019-12-31 18:00:00;68.2 -2019-12-31 20:00:00;68.2 -2019-12-31 22:00:00;68.6 -2020-01-01 18:00:00;69.2 -2020-01-01 20:00:00;69.4 -2020-01-01 22:00:00;69.5 -2020-01-02 18:00:00;68.8 -2020-01-02 20:00:00;69.5 -2020-01-02 22:00:00;68.9 -2020-01-03 18:00:00;69.7 -2020-01-03 20:00:00;68.9 -2020-01-03 22:00:00;70.6 -2020-01-04 18:00:00;70.1 -2020-01-04 20:00:00;69.8 -2020-01-04 22:00:00;68.8 -2020-01-05 18:00:00;69.2 -2020-01-05 20:00:00;69.4 -2020-01-05 22:00:00;69.9 -2020-01-06 18:00:00;69.0 -2020-01-06 20:00:00;68.1 -2020-01-06 22:00:00;66.5 -2020-01-07 18:00:00;68.9 -2020-01-07 20:00:00;69.3 -2020-01-07 22:00:00;69.6 -2020-01-08 18:00:00;71.7 -2020-01-08 20:00:00;71.2 -2020-01-08 22:00:00;71.0 -2020-01-09 18:00:00;72.1 -2020-01-09 20:00:00;71.9 -2020-01-09 22:00:00;71.4 -2020-01-10 18:00:00;70.7 -2020-01-10 20:00:00;70.4 -2020-01-10 22:00:00;70.7 -2020-01-11 18:00:00;71.2 -2020-01-11 20:00:00;71.0 -2020-01-11 22:00:00;70.0 -2020-01-12 18:00:00;70.1 -2020-01-12 20:00:00;69.5 -2020-01-12 22:00:00;69.8 -2020-01-13 18:00:00;71.3 -2020-01-13 20:00:00;69.1 -2020-01-13 22:00:00;69.0 -2020-01-14 18:00:00;69.8 -2020-01-14 20:00:00;69.5 -2020-01-14 22:00:00;69.3 -2020-01-15 18:00:00;68.4 -2020-01-15 20:00:00;68.9 -2020-01-15 22:00:00;67.8 -2020-01-16 18:00:00;69.1 -2020-01-16 20:00:00;69.4 -2020-01-16 22:00:00;69.7 -2020-01-17 18:00:00;68.7 -2020-01-17 20:00:00;67.9 -2020-01-17 22:00:00;68.0 -2020-01-18 18:00:00;69.1 -2020-01-18 20:00:00;69.0 -2020-01-18 22:00:00;69.5 -2020-01-19 18:00:00;69.3 -2020-01-19 20:00:00;69.5 -2020-01-19 22:00:00;69.1 -2020-01-20 18:00:00;68.4 -2020-01-20 20:00:00;69.0 -2020-01-20 22:00:00;69.1 -2020-01-21 18:00:00;68.3 -2020-01-21 20:00:00;68.3 -2020-01-21 22:00:00;68.1 -2020-01-22 18:00:00;68.8 -2020-01-22 20:00:00;69.6 -2020-01-22 22:00:00;67.7 -2020-01-23 18:00:00;71.0 -2020-01-23 20:00:00;68.6 -2020-01-23 22:00:00;68.0 -2020-01-24 18:00:00;69.1 -2020-01-24 20:00:00;68.8 -2020-01-24 22:00:00;69.6 -2020-01-25 18:00:00;70.4 -2020-01-25 20:00:00;70.4 -2020-01-25 22:00:00;70.2 -2020-01-26 18:00:00;72.0 -2020-01-26 20:00:00;72.4 -2020-01-26 22:00:00;72.2 -2020-01-27 18:00:00;72.2 -2020-01-27 20:00:00;70.7 -2020-01-27 22:00:00;74.1 -2020-01-28 18:00:00;74.7 -2020-01-28 20:00:00;72.0 -2020-01-28 22:00:00;73.4 -2020-01-29 18:00:00;71.6 -2020-01-29 20:00:00;72.0 -2020-01-29 22:00:00;72.1 -2020-01-30 18:00:00;72.4 -2020-01-30 20:00:00;71.9 -2020-01-30 22:00:00;71.6 -2020-01-31 18:00:00;71.5 -2020-01-31 20:00:00;71.7 -2020-01-31 22:00:00;71.3 -2020-02-01 18:00:00;70.5 -2020-02-01 20:00:00;70.4 -2020-02-01 22:00:00;70.9 -2020-02-02 18:00:00;70.5 -2020-02-02 20:00:00;70.2 -2020-02-02 22:00:00;69.8 -2020-02-03 18:00:00;69.7 -2020-02-03 20:00:00;70.0 -2020-02-03 22:00:00;68.9 -2020-02-04 18:00:00;69.3 -2020-02-04 20:00:00;68.3 -2020-02-04 22:00:00;68.8 -2020-02-05 18:00:00;69.1 -2020-02-05 20:00:00;68.6 -2020-02-05 22:00:00;68.4 -2020-02-06 18:00:00;68.6 -2020-02-06 20:00:00;69.3 -2020-02-06 22:00:00;68.2 -2020-02-07 18:00:00;69.0 -2020-02-07 20:00:00;68.9 -2020-02-07 22:00:00;68.8 -2020-02-08 18:00:00;68.1 -2020-02-08 20:00:00;70.0 -2020-02-08 22:00:00;69.1 -2020-02-09 18:00:00;69.0 -2020-02-09 20:00:00;68.8 -2020-02-09 22:00:00;69.0 -2020-02-10 18:00:00;68.6 -2020-02-10 20:00:00;68.3 -2020-02-10 22:00:00;68.2 -2020-02-11 18:00:00;69.0 -2020-02-11 20:00:00;69.3 -2020-02-11 22:00:00;69.1 -2020-02-12 18:00:00;69.3 -2020-02-12 20:00:00;69.8 -2020-02-12 22:00:00;67.7 -2020-02-13 18:00:00;69.6 -2020-02-13 20:00:00;69.4 -2020-02-13 22:00:00;69.2 -2020-02-14 18:00:00;68.9 -2020-02-14 20:00:00;69.5 -2020-02-14 22:00:00;68.2 -2020-02-15 18:00:00;68.8 -2020-02-15 20:00:00;68.8 -2020-02-15 22:00:00;67.8 -2020-02-16 18:00:00;69.7 -2020-02-16 20:00:00;68.8 -2020-02-16 22:00:00;69.0 -2020-02-17 18:00:00;70.0 -2020-02-17 20:00:00;69.0 -2020-02-17 22:00:00;69.1 -2020-02-18 18:00:00;69.5 -2020-02-18 20:00:00;69.4 -2020-02-18 22:00:00;69.4 -2020-02-19 18:00:00;69.5 -2020-02-19 20:00:00;69.4 -2020-02-19 22:00:00;69.0 -2020-02-20 18:00:00;69.6 -2020-02-20 20:00:00;69.2 -2020-02-20 22:00:00;67.8 -2020-02-21 18:00:00;69.9 -2020-02-21 20:00:00;69.6 -2020-02-21 22:00:00;69.6 -2020-02-22 18:00:00;70.4 -2020-02-22 20:00:00;70.7 -2020-02-22 22:00:00;69.9 -2020-02-23 18:00:00;70.1 -2020-02-23 20:00:00;68.8 -2020-02-23 22:00:00;69.4 -2020-02-24 18:00:00;68.7 -2020-02-24 20:00:00;68.7 -2020-02-24 22:00:00;69.0 -2020-02-25 18:00:00;69.5 -2020-02-25 20:00:00;69.1 -2020-02-25 22:00:00;69.6 -2020-02-26 18:00:00;68.3 -2020-02-26 20:00:00;68.7 -2020-02-26 22:00:00;69.1 -2020-02-27 18:00:00;69.2 -2020-02-27 20:00:00;69.6 -2020-02-27 22:00:00;69.6 -2020-02-28 18:00:00;68.9 -2020-02-28 20:00:00;69.3 -2020-02-28 22:00:00;68.8 -2020-02-29 18:00:00;68.5 -2020-02-29 20:00:00;68.8 -2020-02-29 22:00:00;69.2 -2020-03-01 17:00:00;68.6 -2020-03-01 20:00:00;68.1 -2020-03-01 23:00:00;68.9 -2020-03-02 17:00:00;68.6 -2020-03-02 20:00:00;68.1 -2020-03-02 23:00:00;68.8 -2020-03-03 17:00:00;68.7 -2020-03-03 20:00:00;68.8 -2020-03-03 23:00:00;68.9 -2020-03-04 17:00:00;68.5 -2020-03-04 20:00:00;68.7 -2020-03-04 23:00:00;68.2 -2020-03-05 17:00:00;69.2 -2020-03-05 20:00:00;68.3 -2020-03-05 23:00:00;68.1 -2020-03-06 17:00:00;68.3 -2020-03-06 20:00:00;68.9 -2020-03-06 23:00:00;68.8 -2020-03-07 17:00:00;67.9 -2020-03-07 20:00:00;68.8 -2020-03-07 23:00:00;69.6 -2020-03-08 17:00:00;69.3 -2020-03-08 20:00:00;69.2 -2020-03-08 23:00:00;69.0 -2020-03-09 17:00:00;69.9 -2020-03-09 20:00:00;69.8 -2020-03-09 23:00:00;69.0 -2020-03-10 17:00:00;69.8 -2020-03-10 20:00:00;69.8 -2020-03-10 23:00:00;70.1 -2020-03-11 17:00:00;68.1 -2020-03-11 20:00:00;69.6 -2020-03-11 23:00:00;68.7 -2020-03-12 17:00:00;68.9 -2020-03-12 20:00:00;69.1 -2020-03-12 23:00:00;68.6 -2020-03-13 17:00:00;69.4 -2020-03-13 20:00:00;67.9 -2020-03-13 23:00:00;68.6 -2020-03-14 17:00:00;68.5 -2020-03-14 20:00:00;67.4 -2020-03-14 23:00:00;69.9 -2020-03-15 17:00:00;69.6 -2020-03-15 20:00:00;69.5 -2020-03-15 23:00:00;69.1 -2020-03-16 17:00:00;68.7 -2020-03-16 20:00:00;69.1 -2020-03-16 23:00:00;69.5 -2020-03-17 17:00:00;70.7 -2020-03-17 20:00:00;70.9 -2020-03-17 23:00:00;72.0 -2020-03-18 17:00:00;72.1 -2020-03-18 20:00:00;71.4 -2020-03-18 23:00:00;70.9 -2020-03-19 17:00:00;72.6 -2020-03-19 20:00:00;71.5 -2020-03-19 23:00:00;70.8 -2020-03-20 17:00:00;71.8 -2020-03-20 20:00:00;71.1 -2020-03-20 23:00:00;70.5 -2020-03-21 17:00:00;70.8 -2020-03-21 20:00:00;70.3 -2020-03-21 23:00:00;69.5 -2020-03-22 17:00:00;71.2 -2020-03-22 20:00:00;69.8 -2020-03-22 23:00:00;69.5 -2020-03-23 17:00:00;70.3 -2020-03-23 20:00:00;69.9 -2020-03-23 23:00:00;69.6 -2020-03-24 17:00:00;71.3 -2020-03-24 20:00:00;70.8 -2020-03-24 23:00:00;69.6 -2020-03-25 17:00:00;70.8 -2020-03-25 20:00:00;70.9 -2020-03-25 23:00:00;70.5 -2020-03-26 17:00:00;70.3 -2020-03-26 20:00:00;69.9 -2020-03-26 23:00:00;69.6 -2020-03-27 17:00:00;69.1 -2020-03-27 20:00:00;69.2 -2020-03-27 23:00:00;68.0 -2020-03-28 17:00:00;68.9 -2020-03-28 20:00:00;69.0 -2020-03-28 23:00:00;68.8 -2020-03-29 17:00:00;68.0 -2020-03-29 20:00:00;68.6 -2020-03-29 23:00:00;69.7 -2020-03-30 17:00:00;68.3 -2020-03-30 20:00:00;69.1 -2020-03-30 23:00:00;68.9 -2020-03-31 17:00:00;70.5 -2020-03-31 20:00:00;69.8 -2020-03-31 23:00:00;69.0 -2020-04-01 17:00:00;69.3 -2020-04-01 20:00:00;69.2 -2020-04-01 23:00:00;69.5 -2020-04-02 17:00:00;69.2 -2020-04-02 20:00:00;69.7 -2020-04-02 23:00:00;70.3 -2020-04-03 17:00:00;70.0 -2020-04-03 20:00:00;70.0 -2020-04-03 23:00:00;70.5 -2020-04-04 17:00:00;69.8 -2020-04-04 20:00:00;70.2 -2020-04-04 23:00:00;70.6 -2020-04-05 17:00:00;69.1 -2020-04-05 20:00:00;71.3 -2020-04-05 23:00:00;71.4 -2020-04-06 17:00:00;71.1 -2020-04-06 20:00:00;70.1 -2020-04-06 23:00:00;70.3 -2020-04-07 17:00:00;70.3 -2020-04-07 20:00:00;70.1 -2020-04-07 23:00:00;69.1 -2020-04-08 17:00:00;71.2 -2020-04-08 20:00:00;70.7 -2020-04-08 23:00:00;70.0 -2020-04-09 17:00:00;70.8 -2020-04-09 20:00:00;70.6 -2020-04-09 23:00:00;69.4 -2020-04-10 17:00:00;70.9 -2020-04-10 20:00:00;69.5 -2020-04-10 23:00:00;69.7 -2020-04-11 17:00:00;70.5 -2020-04-11 20:00:00;70.9 -2020-04-11 23:00:00;70.9 -2020-04-12 17:00:00;71.3 -2020-04-12 20:00:00;71.1 -2020-04-12 23:00:00;71.7 -2020-04-13 17:00:00;71.5 -2020-04-13 20:00:00;70.7 -2020-04-13 23:00:00;69.6 -2020-04-14 17:00:00;70.6 -2020-04-14 20:00:00;69.4 -2020-04-14 23:00:00;68.8 -2020-04-15 17:00:00;68.5 -2020-04-15 20:00:00;68.9 -2020-04-15 23:00:00;68.7 -2020-04-16 17:00:00;70.0 -2020-04-16 20:00:00;69.0 -2020-04-16 23:00:00;68.9 -2020-04-17 17:00:00;70.1 -2020-04-17 20:00:00;68.4 -2020-04-17 23:00:00;69.5 -2020-04-18 17:00:00;69.6 -2020-04-18 20:00:00;70.4 -2020-04-18 23:00:00;68.6 -2020-04-19 17:00:00;69.8 -2020-04-19 20:00:00;69.2 -2020-04-19 23:00:00;69.1 -2020-04-20 17:00:00;70.3 -2020-04-20 20:00:00;68.9 -2020-04-20 23:00:00;69.2 -2020-04-21 17:00:00;70.9 -2020-04-21 20:00:00;69.8 -2020-04-21 23:00:00;70.3 -2020-04-22 17:00:00;71.5 -2020-04-22 20:00:00;71.4 -2020-04-22 23:00:00;69.9 -2020-04-23 17:00:00;69.2 -2020-04-23 20:00:00;69.5 -2020-04-23 23:00:00;68.9 -2020-04-24 17:00:00;71.0 -2020-04-24 20:00:00;70.5 -2020-04-24 23:00:00;69.9 -2020-04-25 17:00:00;69.4 -2020-04-25 20:00:00;69.8 -2020-04-25 23:00:00;69.4 -2020-04-26 17:00:00;70.8 -2020-04-26 20:00:00;70.1 -2020-04-26 23:00:00;70.6 -2020-04-27 17:00:00;70.5 -2020-04-27 20:00:00;69.9 -2020-04-27 23:00:00;69.0 -2020-04-28 17:00:00;69.2 -2020-04-28 20:00:00;69.9 -2020-04-28 23:00:00;70.5 -2020-04-29 17:00:00;71.4 -2020-04-29 20:00:00;71.0 -2020-04-29 23:00:00;71.0 -2020-04-30 17:00:00;71.3 -2020-04-30 20:00:00;70.9 -2020-04-30 23:00:00;70.4 -2020-05-01 17:00:00;71.6 -2020-05-01 20:00:00;71.3 -2020-05-01 23:00:00;69.4 -2020-05-02 17:00:00;70.8 -2020-05-02 20:00:00;70.3 -2020-05-02 23:00:00;68.8 -2020-05-03 17:00:00;70.0 -2020-05-03 20:00:00;69.8 -2020-05-03 23:00:00;69.2 -2020-05-04 17:00:00;70.5 -2020-05-04 20:00:00;70.5 -2020-05-04 23:00:00;70.5 -2020-05-05 17:00:00;69.8 -2020-05-05 20:00:00;70.5 -2020-05-05 23:00:00;70.5 -2020-05-06 17:00:00;70.7 -2020-05-06 20:00:00;71.1 -2020-05-06 23:00:00;71.4 -2020-05-07 17:00:00;70.5 -2020-05-07 20:00:00;70.0 -2020-05-07 23:00:00;69.5 -2020-05-08 17:00:00;69.4 -2020-05-08 20:00:00;69.2 -2020-05-08 23:00:00;69.1 -2020-05-09 17:00:00;69.0 -2020-05-09 20:00:00;72.4 -2020-05-09 23:00:00;68.9 -2020-05-10 17:00:00;69.0 -2020-05-10 20:00:00;69.3 -2020-05-10 23:00:00;69.0 -2020-05-11 17:00:00;69.4 -2020-05-11 20:00:00;67.5 -2020-05-11 23:00:00;67.4 -2020-05-12 17:00:00;70.8 -2020-05-12 20:00:00;70.3 -2020-05-12 23:00:00;70.9 -2020-05-13 17:00:00;71.1 -2020-05-13 20:00:00;70.2 -2020-05-13 23:00:00;70.7 -2020-05-14 17:00:00;70.6 -2020-05-14 20:00:00;69.0 -2020-05-14 23:00:00;69.5 -2020-05-15 17:00:00;70.5 -2020-05-15 20:00:00;69.4 -2020-05-15 23:00:00;69.6 -2020-05-16 17:00:00;70.5 -2020-05-16 20:00:00;71.0 -2020-05-16 23:00:00;71.7 -2020-05-17 17:00:00;71.4 -2020-05-17 20:00:00;71.2 -2020-05-17 23:00:00;72.0 -2020-05-18 17:00:00;72.7 -2020-05-18 20:00:00;71.8 -2020-05-18 23:00:00;71.7 -2020-05-19 17:00:00;71.4 -2020-05-19 20:00:00;70.3 -2020-05-19 23:00:00;70.8 -2020-05-20 17:00:00;71.1 -2020-05-20 20:00:00;71.3 -2020-05-20 23:00:00;71.3 -2020-05-21 17:00:00;72.7 -2020-05-21 20:00:00;71.9 -2020-05-21 23:00:00;73.0 -2020-05-22 17:00:00;72.3 -2020-05-22 20:00:00;72.6 -2020-05-22 23:00:00;72.1 -2020-05-23 17:00:00;72.5 -2020-05-23 20:00:00;70.9 -2020-05-23 23:00:00;70.3 -2020-05-24 17:00:00;71.0 -2020-05-24 20:00:00;70.6 -2020-05-24 23:00:00;69.5 -2020-05-25 17:00:00;71.2 -2020-05-25 20:00:00;72.1 -2020-05-25 23:00:00;71.3 -2020-05-26 17:00:00;70.5 -2020-05-26 20:00:00;71.6 -2020-05-26 23:00:00;70.8 -2020-05-27 17:00:00;81.5 -2020-05-27 20:00:00;69.9 -2020-05-27 23:00:00;70.0 -2020-05-28 17:00:00;69.5 -2020-05-28 20:00:00;69.3 -2020-05-28 23:00:00;69.6 -2020-05-29 20:00:00;71.5 -2020-05-29 23:00:00;71.2 -2020-05-30 17:00:00;72.1 -2020-05-30 20:00:00;71.9 -2020-05-30 23:00:00;71.2 -2020-05-31 17:00:00;73.0 -2020-05-31 20:00:00;72.8 -2020-05-31 23:00:00;72.6 -2020-06-01 17:00:00;73.2 -2020-06-01 20:00:00;71.2 -2020-06-01 23:00:00;72.0 -2020-06-02 17:00:00;74.1 -2020-06-02 20:00:00;72.4 -2020-06-02 23:00:00;73.0 -2020-06-03 17:00:00;72.5 -2020-06-03 20:00:00;72.0 -2020-06-03 23:00:00;72.1 -2020-06-04 17:00:00;73.6 -2020-06-04 20:00:00;72.1 -2020-06-04 23:00:00;71.6 -2020-06-05 17:00:00;74.8 -2020-06-05 20:00:00;73.2 -2020-06-05 23:00:00;72.9 -2020-06-06 17:00:00;75.6 -2020-06-06 20:00:00;73.8 -2020-06-06 23:00:00;74.2 -2020-06-07 17:00:00;74.7 -2020-06-07 20:00:00;73.8 -2020-06-07 23:00:00;74.2 -2020-06-08 17:00:00;74.5 -2020-06-08 20:00:00;73.2 -2020-06-08 23:00:00;73.9 -2020-06-09 17:00:00;75.9 -2020-06-09 20:00:00;74.6 -2020-06-09 23:00:00;75.2 -2020-06-10 17:00:00;73.5 -2020-06-10 20:00:00;73.2 -2020-06-10 23:00:00;72.9 -2020-06-11 17:00:00;74.6 -2020-06-11 20:00:00;73.7 -2020-06-11 23:00:00;73.2 -2020-06-12 17:00:00;73.3 -2020-06-12 20:00:00;72.7 -2020-06-12 23:00:00;72.4 -2020-06-13 17:00:00;72.4 -2020-06-13 20:00:00;71.6 -2020-06-13 23:00:00;72.9 -2020-06-14 17:00:00;73.1 -2020-06-14 20:00:00;72.4 -2020-06-14 23:00:00;73.8 -2020-06-15 17:00:00;72.6 -2020-06-15 20:00:00;72.7 -2020-06-15 23:00:00;71.8 -2020-06-16 17:00:00;72.3 -2020-06-16 20:00:00;71.5 -2020-06-16 23:00:00;71.4 -2020-06-17 17:00:00;71.5 -2020-06-17 20:00:00;71.0 -2020-06-17 23:00:00;70.6 -2020-06-18 17:00:00;69.7 -2020-06-18 20:00:00;70.2 -2020-06-18 23:00:00;70.0 -2020-06-19 17:00:00;70.8 -2020-06-19 20:00:00;71.1 -2020-06-19 23:00:00;70.2 -2020-06-20 17:00:00;70.4 -2020-06-20 20:00:00;70.0 -2020-06-20 23:00:00;69.9 -2020-06-21 17:00:00;71.1 -2020-06-21 20:00:00;69.9 -2020-06-21 23:00:00;69.5 -2020-06-22 17:00:00;70.3 -2020-06-22 20:00:00;69.9 -2020-06-22 23:00:00;70.0 -2020-06-23 17:00:00;69.2 -2020-06-23 20:00:00;69.3 -2020-06-23 23:00:00;69.4 -2020-06-24 17:00:00;70.2 -2020-06-24 20:00:00;69.1 -2020-06-24 23:00:00;69.6 -2020-06-25 17:00:00;70.9 -2020-06-25 20:00:00;71.2 -2020-06-25 23:00:00;70.3 -2020-06-26 17:00:00;70.0 -2020-06-26 20:00:00;70.0 -2020-06-26 23:00:00;70.0 -2020-06-27 17:00:00;71.2 -2020-06-27 20:00:00;71.2 -2020-06-27 23:00:00;70.5 -2020-06-28 17:00:00;71.3 -2020-06-28 20:00:00;71.5 -2020-06-28 23:00:00;71.2 -2020-06-29 17:00:00;70.9 -2020-06-29 20:00:00;71.0 -2020-06-29 23:00:00;70.8 -2020-06-30 17:00:00;72.0 -2020-06-30 20:00:00;70.4 -2020-06-30 23:00:00;71.9 -2020-07-01 17:00:00;71.5 -2020-07-01 20:00:00;71.2 -2020-07-01 23:00:00;71.5 -2020-07-02 17:00:00;71.1 -2020-07-02 20:00:00;70.3 -2020-07-02 23:00:00;70.2 -2020-07-03 17:00:00;72.5 -2020-07-03 20:00:00;71.6 -2020-07-03 23:00:00;71.6 -2020-07-04 17:00:00;72.2 -2020-07-04 20:00:00;71.8 -2020-07-04 23:00:00;71.9 -2020-07-05 17:00:00;71.1 -2020-07-05 20:00:00;71.8 -2020-07-05 23:00:00;71.0 -2020-07-06 17:00:00;71.0 -2020-07-06 20:00:00;70.8 -2020-07-06 23:00:00;70.3 -2020-07-07 17:00:00;69.5 -2020-07-07 20:00:00;70.0 -2020-07-07 23:00:00;70.9 -2020-07-08 17:00:00;70.4 -2020-07-08 20:00:00;69.4 -2020-07-08 23:00:00;70.0 -2020-07-09 17:00:00;71.3 -2020-07-09 20:00:00;71.0 -2020-07-09 23:00:00;70.7 -2020-07-10 17:00:00;71.0 -2020-07-10 20:00:00;71.1 -2020-07-10 23:00:00;71.3 -2020-07-11 17:00:00;70.9 -2020-07-11 20:00:00;71.0 -2020-07-11 23:00:00;70.4 -2020-07-12 17:00:00;70.5 -2020-07-12 20:00:00;69.8 -2020-07-12 23:00:00;70.0 -2020-07-13 17:00:00;71.7 -2020-07-13 20:00:00;70.5 -2020-07-13 23:00:00;70.3 -2020-07-14 17:00:00;71.1 -2020-07-14 20:00:00;71.2 -2020-07-14 23:00:00;71.2 -2020-07-15 17:00:00;71.0 -2020-07-15 20:00:00;70.6 -2020-07-15 23:00:00;70.1 -2020-07-16 17:00:00;71.4 -2020-07-16 20:00:00;70.9 -2020-07-16 23:00:00;71.3 -2020-07-17 17:00:00;70.5 -2020-07-17 20:00:00;71.3 -2020-07-17 23:00:00;70.9 -2020-07-18 17:00:00;70.8 -2020-07-18 20:00:00;70.0 -2020-07-18 23:00:00;71.0 -2020-07-19 17:00:00;70.1 -2020-07-19 20:00:00;71.1 -2020-07-19 23:00:00;70.9 -2020-07-20 17:00:00;71.7 -2020-07-20 20:00:00;71.6 -2020-07-20 23:00:00;71.4 -2020-07-21 17:00:00;71.4 -2020-07-21 20:00:00;72.1 -2020-07-21 23:00:00;71.4 -2020-07-22 17:00:00;71.8 -2020-07-22 20:00:00;72.2 -2020-07-22 23:00:00;71.3 -2020-07-23 17:00:00;72.3 -2020-07-23 20:00:00;72.5 -2020-07-23 23:00:00;72.4 -2020-07-24 17:00:00;72.2 -2020-07-24 20:00:00;71.7 -2020-07-24 23:00:00;71.2 -2020-07-25 17:00:00;72.2 -2020-07-25 20:00:00;72.6 -2020-07-25 23:00:00;72.5 -2020-07-26 17:00:00;73.6 -2020-07-26 20:00:00;73.6 -2020-07-26 23:00:00;73.2 -2020-07-27 17:00:00;74.3 -2020-07-27 20:00:00;73.7 -2020-07-27 23:00:00;73.0 -2020-07-28 17:00:00;75.0 -2020-07-28 20:00:00;74.1 -2020-07-28 23:00:00;74.3 -2020-07-29 17:00:00;74.5 -2020-07-29 20:00:00;74.9 -2020-07-29 23:00:00;75.3 -2020-07-30 17:00:00;74.2 -2020-07-30 20:00:00;75.6 -2020-07-30 23:00:00;73.3 -2020-07-31 17:00:00;74.7 -2020-07-31 20:00:00;74.4 -2020-07-31 23:00:00;74.4 -2020-08-01 17:00:00;74.1 -2020-08-01 20:00:00;74.1 -2020-08-01 23:00:00;74.3 -2020-08-02 17:00:00;74.5 -2020-08-02 20:00:00;74.9 -2020-08-02 23:00:00;74.7 -2020-08-03 17:00:00;75.1 -2020-08-03 20:00:00;74.8 -2020-08-03 23:00:00;74.3 -2020-08-04 17:00:00;75.3 -2020-08-04 20:00:00;75.1 -2020-08-04 23:00:00;74.7 -2020-08-05 17:00:00;75.2 -2020-08-05 20:00:00;75.6 -2020-08-05 23:00:00;75.9 -2020-08-06 17:00:00;75.6 -2020-08-06 20:00:00;75.1 -2020-08-06 23:00:00;75.1 -2020-08-07 17:00:00;76.9 -2020-08-07 20:00:00;76.0 -2020-08-07 23:00:00;75.8 -2020-08-08 17:00:00;76.7 -2020-08-08 20:00:00;76.8 -2020-08-08 23:00:00;75.7 -2020-08-09 17:00:00;78.7 -2020-08-09 20:00:00;76.0 -2020-08-09 23:00:00;76.7 -2020-08-10 17:00:00;76.4 -2020-08-10 20:00:00;76.2 -2020-08-10 23:00:00;75.7 -2020-08-11 17:00:00;75.8 -2020-08-11 20:00:00;75.4 -2020-08-11 23:00:00;74.7 -2020-08-12 17:00:00;75.3 -2020-08-12 20:00:00;75.1 -2020-08-12 23:00:00;74.7 -2020-08-13 17:00:00;73.5 -2020-08-13 20:00:00;74.2 -2020-08-13 23:00:00;74.4 -2020-08-14 17:00:00;74.9 -2020-08-14 20:00:00;72.6 -2020-08-14 23:00:00;73.4 -2020-08-15 17:00:00;71.8 -2020-08-15 20:00:00;72.4 -2020-08-15 23:00:00;72.1 -2020-08-16 17:00:00;72.2 -2020-08-16 20:00:00;72.6 -2020-08-16 23:00:00;72.7 -2020-08-17 17:00:00;72.1 -2020-08-17 20:00:00;72.5 -2020-08-17 23:00:00;71.9 -2020-08-18 17:00:00;72.9 -2020-08-18 20:00:00;73.1 -2020-08-18 23:00:00;73.3 -2020-08-19 17:00:00;71.9 -2020-08-19 20:00:00;72.2 -2020-08-19 23:00:00;72.4 -2020-08-20 17:00:00;73.0 -2020-08-20 20:00:00;71.6 -2020-08-20 23:00:00;72.1 -2020-08-21 17:00:00;72.9 -2020-08-21 20:00:00;72.6 -2020-08-21 23:00:00;72.0 -2020-08-22 17:00:00;72.5 -2020-08-22 20:00:00;71.6 -2020-08-22 23:00:00;71.6 -2020-08-23 17:00:00;73.2 -2020-08-23 20:00:00;72.1 -2020-08-23 23:00:00;71.9 -2020-08-24 17:00:00;73.2 -2020-08-24 20:00:00;71.8 -2020-08-24 23:00:00;72.5 -2020-08-25 17:00:00;71.7 -2020-08-25 20:00:00;72.1 -2020-08-25 23:00:00;72.2 -2020-08-26 17:00:00;71.8 -2020-08-26 20:00:00;71.9 -2020-08-26 23:00:00;71.4 -2020-08-27 17:00:00;71.9 -2020-08-27 20:00:00;71.4 -2020-08-27 23:00:00;71.0 -2020-08-28 17:00:00;72.5 -2020-08-28 20:00:00;71.5 -2020-08-28 23:00:00;71.6 -2020-08-29 17:00:00;71.8 -2020-08-29 20:00:00;71.6 -2020-08-29 23:00:00;71.1 -2020-08-30 17:00:00;70.3 -2020-08-30 20:00:00;71.4 -2020-08-30 23:00:00;70.3 -2020-08-31 17:00:00;71.5 -2020-08-31 20:00:00;70.5 -2020-08-31 23:00:00;70.6 -2020-09-01 17:00:00;71.7 -2020-09-01 20:00:00;70.8 -2020-09-01 23:00:00;70.1 -2020-09-02 17:00:00;69.0 -2020-09-02 20:00:00;69.5 -2020-09-02 23:00:00;69.7 -2020-09-03 17:00:00;72.2 -2020-09-03 20:00:00;71.2 -2020-09-03 23:00:00;71.0 -2020-09-04 17:00:00;71.2 -2020-09-04 20:00:00;70.8 -2020-09-04 23:00:00;70.6 -2020-09-05 17:00:00;70.8 -2020-09-05 20:00:00;70.3 -2020-09-05 23:00:00;70.8 -2020-09-06 17:00:00;71.2 -2020-09-06 20:00:00;70.5 -2020-09-06 23:00:00;70.7 -2020-09-07 17:00:00;71.7 -2020-09-07 20:00:00;71.3 -2020-09-07 23:00:00;70.6 -2020-09-08 17:00:00;72.2 -2020-09-08 20:00:00;70.9 -2020-09-08 23:00:00;71.1 -2020-09-09 17:00:00;70.8 -2020-09-09 20:00:00;70.7 -2020-09-09 23:00:00;70.2 -2020-09-10 17:00:00;71.2 -2020-09-10 20:00:00;70.2 -2020-09-10 23:00:00;70.2 -2020-09-11 17:00:00;70.0 -2020-09-11 20:00:00;69.6 -2020-09-11 23:00:00;70.5 -2020-09-12 17:00:00;69.8 -2020-09-12 20:00:00;70.2 -2020-09-12 23:00:00;69.4 -2020-09-13 17:00:00;69.7 -2020-09-13 20:00:00;70.6 -2020-09-13 23:00:00;69.0 -2020-09-14 17:00:00;70.0 -2020-09-14 20:00:00;69.7 -2020-09-14 23:00:00;70.1 -2020-09-15 17:00:00;69.9 -2020-09-15 20:00:00;69.6 -2020-09-15 23:00:00;70.3 -2020-09-16 17:00:00;71.0 -2020-09-16 20:00:00;70.2 -2020-09-16 23:00:00;70.3 -2020-09-17 17:00:00;70.7 -2020-09-17 20:00:00;70.4 -2020-09-17 23:00:00;70.1 -2020-09-18 17:00:00;69.1 -2020-09-18 20:00:00;70.6 -2020-09-18 23:00:00;70.4 -2020-09-19 17:00:00;70.9 -2020-09-19 20:00:00;71.2 -2020-09-19 23:00:00;70.4 -2020-09-20 17:00:00;71.0 -2020-09-20 20:00:00;70.7 -2020-09-20 23:00:00;70.4 -2020-09-21 17:00:00;69.4 -2020-09-21 20:00:00;71.9 -2020-09-21 23:00:00;73.1 -2020-09-22 17:00:00;72.9 -2020-09-22 20:00:00;72.9 -2020-09-22 23:00:00;71.8 -2020-09-23 17:00:00;73.5 -2020-09-23 20:00:00;73.7 -2020-09-23 23:00:00;72.7 -2020-09-24 17:00:00;74.1 -2020-09-24 20:00:00;74.1 -2020-09-24 23:00:00;75.0 -2020-09-25 17:00:00;73.1 -2020-09-25 20:00:00;73.8 -2020-09-25 23:00:00;73.9 -2020-09-26 17:00:00;70.7 -2020-09-26 20:00:00;72.9 -2020-09-26 23:00:00;73.6 -2020-09-27 17:00:00;70.5 -2020-09-27 20:00:00;74.4 -2020-09-27 23:00:00;72.3 -2020-09-28 17:00:00;71.7 -2020-09-28 20:00:00;74.1 -2020-09-28 23:00:00;74.1 -2020-09-29 17:00:00;71.6 -2020-09-29 20:00:00;73.0 -2020-09-29 23:00:00;72.4 -2020-09-30 17:00:00;73.8 -2020-09-30 20:00:00;73.5 -2020-09-30 23:00:00;72.6 -2020-10-01 17:00:00;70.8 -2020-10-01 20:00:00;73.0 -2020-10-01 23:00:00;72.8 -2020-10-02 17:00:00;70.2 -2020-10-02 20:00:00;72.3 -2020-10-02 23:00:00;71.6 -2020-10-03 17:00:00;70.1 -2020-10-03 20:00:00;71.9 -2020-10-03 23:00:00;72.0 -2020-10-04 17:00:00;69.8 -2020-10-04 20:00:00;71.2 -2020-10-04 23:00:00;71.8 -2020-10-05 17:00:00;70.2 -2020-10-05 20:00:00;72.2 -2020-10-05 23:00:00;71.6 -2020-10-06 17:00:00;68.2 -2020-10-06 20:00:00;71.6 -2020-10-06 23:00:00;70.8 -2020-10-07 17:00:00;71.1 -2020-10-07 20:00:00;70.6 -2020-10-07 23:00:00;71.5 -2020-10-08 17:00:00;72.5 -2020-10-08 20:00:00;71.5 -2020-10-08 23:00:00;72.4 -2020-10-09 17:00:00;72.3 -2020-10-09 20:00:00;72.9 -2020-10-09 23:00:00;74.0 -2020-10-10 17:00:00;73.0 -2020-10-10 20:00:00;73.3 -2020-10-10 23:00:00;72.9 -2020-10-11 17:00:00;74.9 -2020-10-11 20:00:00;72.6 -2020-10-11 23:00:00;72.9 -2020-10-12 17:00:00;72.3 -2020-10-12 20:00:00;73.4 -2020-10-12 23:00:00;72.1 -2020-10-13 17:00:00;72.7 -2020-10-13 20:00:00;72.0 -2020-10-13 23:00:00;73.1 -2020-10-14 17:00:00;73.8 -2020-10-14 20:00:00;74.1 -2020-10-14 23:00:00;73.9 -2020-10-15 17:00:00;72.8 -2020-10-15 20:00:00;73.4 -2020-10-15 23:00:00;73.2 -2020-10-16 17:00:00;73.5 -2020-10-16 20:00:00;74.8 -2020-10-16 23:00:00;74.1 -2020-10-17 17:00:00;74.2 -2020-10-17 20:00:00;72.5 -2020-10-17 23:00:00;73.5 -2020-10-18 17:00:00;75.3 -2020-10-18 20:00:00;75.3 -2020-10-18 23:00:00;76.0 -2020-10-19 17:00:00;75.2 -2020-10-19 20:00:00;74.2 -2020-10-19 23:00:00;74.8 -2020-10-20 17:00:00;74.4 -2020-10-20 20:00:00;74.0 -2020-10-20 23:00:00;73.4 -2020-10-21 17:00:00;73.6 -2020-10-21 20:00:00;73.0 -2020-10-21 23:00:00;72.2 -2020-10-22 17:00:00;73.2 -2020-10-22 20:00:00;74.2 -2020-10-22 23:00:00;72.6 -2020-10-23 17:00:00;71.0 -2020-10-24 17:00:00;71.9 -2020-10-24 20:00:00;71.3 -2020-10-24 23:00:00;71.3 -2020-10-25 17:00:00;73.0 -2020-10-25 20:00:00;73.3 -2020-10-25 23:00:00;74.5 -2020-10-26 17:00:00;75.4 -2020-10-26 20:00:00;74.1 -2020-10-26 23:00:00;75.7 -2020-10-27 17:00:00;82.1 -2020-10-27 20:00:00;81.4 -2020-10-27 23:00:00;82.2 -2020-10-28 17:00:00;83.0 -2020-10-28 20:00:00;86.4 -2020-10-28 23:00:00;85.1 -2020-10-29 17:00:00;81.9 -2020-10-29 20:00:00;83.5 -2020-10-29 23:00:00;81.2 -2020-10-30 17:00:00;79.1 -2020-10-30 20:00:00;78.4 -2020-10-30 23:00:00;77.3 -2020-10-31 17:00:00;77.8 -2020-10-31 20:00:00;75.6 -2020-10-31 23:00:00;74.7 -2020-11-01 18:00:00;77.1 -2020-11-01 20:00:00;76.1 -2020-11-01 22:00:00;77.3 -2020-11-02 18:00:00;82.6 -2020-11-02 20:00:00;80.3 -2020-11-02 22:00:00;80.6 -2020-11-03 18:00:00;81.5 -2020-11-03 20:00:00;81.6 -2020-11-03 22:00:00;82.4 -2020-11-04 18:00:00;85.4 -2020-11-04 20:00:00;86.6 -2020-11-04 22:00:00;87.5 -2020-11-05 18:00:00;89.6 -2020-11-05 20:00:00;89.1 -2020-11-05 22:00:00;90.4 -2020-11-06 18:00:00;89.8 -2020-11-06 20:00:00;92.1 -2020-11-06 22:00:00;91.8 -2020-11-07 18:00:00;90.8 -2020-11-07 20:00:00;88.9 -2020-11-07 22:00:00;91.2 -2020-11-08 18:00:00;90.4 -2020-11-08 20:00:00;88.3 -2020-11-08 22:00:00;89.5 -2020-11-09 18:00:00;91.4 -2020-11-09 20:00:00;88.3 -2020-11-09 22:00:00;88.1 -2020-11-10 18:00:00;89.1 -2020-11-10 20:00:00;85.1 -2020-11-10 22:00:00;85.1 -2020-11-11 18:00:00;85.8 -2020-11-11 20:00:00;86.3 -2020-11-11 22:00:00;84.5 -2020-11-12 18:00:00;81.3 -2020-11-12 20:00:00;83.3 -2020-11-12 22:00:00;82.2 -2020-11-13 18:00:00;64.1 -2020-11-13 20:00:00;80.2 -2020-11-13 22:00:00;80.7 -2020-11-14 18:00:00;80.2 -2020-11-14 20:00:00;78.5 -2020-11-14 22:00:00;79.8 -2020-11-15 18:00:00;77.7 -2020-11-15 20:00:00;76.9 -2020-11-15 22:00:00;78.5 -2020-11-16 18:00:00;76.5 -2020-11-16 20:00:00;74.9 -2020-11-16 22:00:00;73.5 -2020-11-17 18:00:00;77.4 -2020-11-17 20:00:00;77.3 -2020-11-17 22:00:00;77.8 -2020-11-18 18:00:00;76.6 -2020-11-18 20:00:00;75.5 -2020-11-18 22:00:00;76.9 -2020-11-19 18:00:00;79.1 -2020-11-19 20:00:00;74.9 -2020-11-19 22:00:00;78.3 -2020-11-20 18:00:00;79.2 -2020-11-20 20:00:00;79.7 -2020-11-20 22:00:00;79.8 -2020-11-21 18:00:00;82.5 -2020-11-21 20:00:00;82.9 -2020-11-21 22:00:00;81.6 -2020-11-22 18:00:00;84.7 -2020-11-22 20:00:00;85.5 -2020-11-22 22:00:00;86.2 -2020-11-23 18:00:00;91.9 -2020-11-23 20:00:00;93.1 -2020-11-23 22:00:00;93.3 -2020-11-24 18:00:00;97.3 -2020-11-24 20:00:00;97.9 -2020-11-24 22:00:00;97.1 -2020-11-25 18:00:00;100.1 -2020-11-25 20:00:00;101.0 -2020-11-25 22:00:00;101.3 -2020-11-26 18:00:00;102.9 -2020-11-26 20:00:00;103.0 -2020-11-26 22:00:00;107.3 -2020-11-27 18:00:00;105.5 -2020-11-27 20:00:00;103.5 -2020-11-27 22:00:00;104.8 -2020-11-28 18:00:00;109.5 -2020-11-28 20:00:00;106.6 -2020-11-28 22:00:00;107.4 -2020-11-29 18:00:00;111.8 -2020-11-29 20:00:00;113.1 -2020-11-29 22:00:00;112.1 -2020-11-30 18:00:00;107.2 -2020-11-30 20:00:00;106.4 -2020-11-30 22:00:00;106.3 -2020-12-01 18:00:00;106.7 -2020-12-01 20:00:00;101.2 -2020-12-01 22:00:00;103.5 -2020-12-02 18:00:00;102.2 -2020-12-02 20:00:00;101.9 -2020-12-02 22:00:00;100.3 -2020-12-03 18:00:00;99.4 -2020-12-03 20:00:00;99.9 -2020-12-03 22:00:00;97.8 -2020-12-04 18:00:00;95.1 -2020-12-04 20:00:00;93.0 -2020-12-04 22:00:00;94.2 -2020-12-05 18:00:00;94.8 -2020-12-05 20:00:00;97.0 -2020-12-05 22:00:00;93.0 -2020-12-06 18:00:00;87.0 -2020-12-06 20:00:00;88.2 -2020-12-06 22:00:00;85.1 -2020-12-07 18:00:00;95.1 -2020-12-07 20:00:00;86.8 -2020-12-07 22:00:00;84.7 -2020-12-08 18:00:00;80.6 -2020-12-08 20:00:00;80.0 -2020-12-08 22:00:00;79.8 -2020-12-09 18:00:00;79.6 -2020-12-09 20:00:00;79.6 -2020-12-09 22:00:00;79.5 -2020-12-10 18:00:00;80.1 -2020-12-10 20:00:00;79.1 -2020-12-10 22:00:00;79.2 -2020-12-11 18:00:00;80.3 -2020-12-11 20:00:00;80.8 -2020-12-11 22:00:00;79.7 -2020-12-12 18:00:00;79.9 -2020-12-12 20:00:00;79.3 -2020-12-12 22:00:00;78.6 -2020-12-13 18:00:00;78.8 -2020-12-13 20:00:00;78.1 -2020-12-13 22:00:00;78.4 -2020-12-14 18:00:00;80.6 -2020-12-14 20:00:00;80.4 -2020-12-14 22:00:00;80.6 -2020-12-15 18:00:00;80.8 -2020-12-15 20:00:00;80.3 -2020-12-15 22:00:00;81.3 -2020-12-16 18:00:00;79.2 -2020-12-16 20:00:00;79.3 -2020-12-16 22:00:00;78.8 -2020-12-17 18:00:00;79.1 -2020-12-18 22:00:00;77.9 -2020-12-19 18:00:00;79.9 -2020-12-19 20:00:00;79.1 -2020-12-19 22:00:00;79.5 -2020-12-20 18:00:00;78.7 -2020-12-20 20:00:00;81.1 -2020-12-20 22:00:00;75.6 -2020-12-21 18:00:00;76.3 -2020-12-21 20:00:00;77.0 -2020-12-21 22:00:00;79.7 -2020-12-22 18:00:00;81.1 -2020-12-22 20:00:00;83.0 -2020-12-22 22:00:00;86.5 -2020-12-23 18:00:00;83.9 -2020-12-23 20:00:00;83.6 -2020-12-23 22:00:00;85.0 -2020-12-24 18:00:00;84.6 -2020-12-24 20:00:00;84.5 -2020-12-24 22:00:00;85.5 -2020-12-25 18:00:00;85.5 -2020-12-25 20:00:00;84.9 -2020-12-25 22:00:00;85.6 -2020-12-26 18:00:00;85.9 -2020-12-26 20:00:00;85.0 -2020-12-26 22:00:00;85.1 -2020-12-27 18:00:00;84.6 -2020-12-27 20:00:00;84.9 -2020-12-27 22:00:00;84.4 -2020-12-28 18:00:00;84.2 -2020-12-28 20:00:00;84.3 -2020-12-28 22:00:00;84.1 -2020-12-29 18:00:00;81.7 -2020-12-29 20:00:00;81.4 -2020-12-29 22:00:00;81.8 -2020-12-30 18:00:00;80.8 -2020-12-30 20:00:00;80.1 -2020-12-30 22:00:00;80.5 -2020-12-31 18:00:00;79.2 -2020-12-31 20:00:00;78.5 -2020-12-31 22:00:00;82.2 -2021-01-01 18:00:00;77.2 -2021-01-01 20:00:00;77.7 -2021-01-01 22:00:00;77.3 -2021-01-02 18:00:00;78.0 -2021-01-02 20:00:00;78.8 -2021-01-02 22:00:00;79.4 -2021-01-03 18:00:00;77.0 -2021-01-03 20:00:00;77.8 -2021-01-03 22:00:00;75.2 -2021-01-04 18:00:00;73.6 -2021-01-04 20:00:00;75.0 -2021-01-04 22:00:00;73.2 -2021-01-05 18:00:00;73.4 -2021-01-05 20:00:00;72.6 -2021-01-05 22:00:00;72.8 -2021-01-06 18:00:00;71.7 -2021-01-06 20:00:00;71.7 -2021-01-06 22:00:00;74.2 -2021-01-07 18:00:00;71.4 -2021-01-07 20:00:00;72.2 -2021-01-07 22:00:00;71.9 -2021-01-08 18:00:00;73.3 -2021-01-08 20:00:00;72.8 -2021-01-08 22:00:00;73.0 -2021-01-09 18:00:00;72.2 -2021-01-09 20:00:00;71.8 -2021-01-09 22:00:00;72.2 -2021-01-10 18:00:00;72.1 -2021-01-10 20:00:00;70.7 -2021-01-10 22:00:00;71.3 -2021-01-11 18:00:00;71.7 -2021-01-11 20:00:00;70.8 -2021-01-11 22:00:00;71.1 -2021-01-12 18:00:00;70.3 -2021-01-12 20:00:00;70.4 -2021-01-12 22:00:00;70.5 -2021-01-13 18:00:00;70.1 -2021-01-13 20:00:00;70.8 -2021-01-13 22:00:00;69.9 -2021-01-14 18:00:00;70.7 -2021-01-14 20:00:00;71.2 -2021-01-14 22:00:00;71.8 -2021-01-15 18:00:00;72.9 -2021-01-15 20:00:00;71.0 -2021-01-15 22:00:00;72.3 -2021-01-16 18:00:00;72.9 -2021-01-16 20:00:00;75.2 -2021-01-16 22:00:00;72.4 -2021-01-17 18:00:00;73.8 -2021-01-17 20:00:00;74.8 -2021-01-17 22:00:00;75.2 -2021-01-18 18:00:00;74.9 -2021-01-18 20:00:00;72.9 -2021-01-18 22:00:00;70.8 -2021-01-19 18:00:00;75.4 -2021-01-19 20:00:00;75.6 -2021-01-19 22:00:00;75.0 -2021-01-20 18:00:00;75.1 -2021-01-20 20:00:00;74.7 -2021-01-20 22:00:00;76.3 -2021-01-21 18:00:00;75.2 -2021-01-21 20:00:00;75.2 -2021-01-21 22:00:00;75.6 -2021-01-22 18:00:00;75.3 -2021-01-22 20:00:00;75.8 -2021-01-22 22:00:00;75.8 -2021-01-23 18:00:00;74.7 -2021-01-23 20:00:00;75.5 -2021-01-23 22:00:00;75.9 -2021-01-24 18:00:00;74.8 -2021-01-24 20:00:00;75.2 -2021-01-24 22:00:00;76.2 -2021-01-25 18:00:00;74.5 -2021-01-25 20:00:00;74.8 -2021-01-25 22:00:00;75.5 -2021-01-26 18:00:00;74.2 -2021-01-26 20:00:00;73.4 -2021-01-26 22:00:00;74.7 -2021-01-27 18:00:00;72.7 -2021-01-27 20:00:00;74.0 -2021-01-27 22:00:00;75.1 -2021-01-28 18:00:00;72.8 -2021-01-28 20:00:00;73.4 -2021-01-28 22:00:00;72.8 -2021-01-29 18:00:00;74.1 -2021-01-29 20:00:00;73.2 -2021-01-29 22:00:00;74.2 -2021-01-30 18:00:00;73.6 -2021-01-30 20:00:00;71.6 -2021-01-30 22:00:00;72.7 -2021-01-31 18:00:00;71.6 -2021-01-31 20:00:00;71.2 -2021-01-31 22:00:00;72.4 -2021-02-01 18:00:00;72.3 -2021-02-01 20:00:00;71.5 -2021-02-01 22:00:00;71.7 -2021-02-02 18:00:00;70.6 -2021-02-02 20:00:00;70.8 -2021-02-02 22:00:00;68.3 -2021-02-03 18:00:00;71.2 -2021-02-03 20:00:00;72.2 -2021-02-03 22:00:00;70.1 -2021-02-04 18:00:00;71.9 -2021-02-04 20:00:00;71.8 -2021-02-04 22:00:00;71.6 -2021-02-05 18:00:00;77.9 -2021-02-05 20:00:00;70.8 -2021-02-05 22:00:00;70.7 -2021-02-06 18:00:00;71.4 -2021-02-06 20:00:00;70.5 -2021-02-06 22:00:00;71.6 -2021-02-07 18:00:00;71.0 -2021-02-07 20:00:00;71.2 -2021-02-07 22:00:00;71.5 -2021-02-08 18:00:00;72.0 -2021-02-08 20:00:00;71.6 -2021-02-08 22:00:00;70.7 -2021-02-09 18:00:00;66.9 -2021-02-09 20:00:00;68.1 -2021-02-09 22:00:00;69.6 -2021-02-10 18:00:00;68.1 -2021-02-10 20:00:00;71.8 -2021-02-10 22:00:00;70.6 -2021-02-11 18:00:00;67.0 -2021-02-11 20:00:00;73.8 -2021-02-11 22:00:00;70.2 -2021-02-12 18:00:00;70.9 -2021-02-12 20:00:00;70.3 -2021-02-12 22:00:00;70.8 -2021-02-13 18:00:00;70.9 -2021-02-13 20:00:00;69.6 -2021-02-13 22:00:00;70.7 -2021-02-14 18:00:00;70.1 -2021-02-14 20:00:00;69.7 -2021-02-14 22:00:00;70.1 -2021-02-15 18:00:00;68.6 -2021-02-15 20:00:00;68.0 -2021-02-15 22:00:00;68.2 -2021-02-16 18:00:00;69.6 -2021-02-16 20:00:00;69.1 -2021-02-16 22:00:00;69.9 -2021-02-17 18:00:00;70.0 -2021-02-17 20:00:00;70.7 -2021-02-17 22:00:00;73.2 -2021-02-18 18:00:00;71.4 -2021-02-18 20:00:00;69.5 -2021-02-18 22:00:00;70.8 -2021-02-19 18:00:00;70.5 -2021-02-19 20:00:00;71.3 -2021-02-19 22:00:00;72.9 -2021-02-20 18:00:00;72.9 -2021-02-20 20:00:00;74.7 -2021-02-20 22:00:00;71.4 -2021-02-21 18:00:00;71.7 -2021-02-21 20:00:00;73.6 -2021-02-21 22:00:00;71.5 -2021-02-22 18:00:00;75.1 -2021-02-22 20:00:00;74.3 -2021-02-22 22:00:00;75.8 -2021-02-23 18:00:00;79.9 -2021-02-23 20:00:00;76.5 -2021-02-23 22:00:00;76.4 -2021-02-24 18:00:00;81.4 -2021-02-24 20:00:00;78.9 -2021-02-24 22:00:00;76.6 -2021-02-25 18:00:00;78.5 -2021-02-25 20:00:00;78.5 -2021-02-25 22:00:00;80.4 -2021-02-26 18:00:00;80.4 -2021-02-26 20:00:00;78.5 -2021-02-26 22:00:00;79.9 -2021-02-27 18:00:00;75.9 -2021-02-27 20:00:00;77.7 -2021-02-27 22:00:00;78.1 -2021-02-28 18:00:00;76.5 -2021-02-28 20:00:00;76.2 -2021-02-28 22:00:00;76.2 -2021-03-01 17:00:00;74.4 -2021-03-01 20:00:00;69.7 -2021-03-01 23:00:00;73.2 -2021-03-02 17:00:00;74.9 -2021-03-02 20:00:00;73.3 -2021-03-02 23:00:00;75.3 -2021-03-03 17:00:00;76.1 -2021-03-03 20:00:00;72.9 -2021-03-03 23:00:00;74.9 -2021-03-04 17:00:00;74.6 -2021-03-04 20:00:00;80.0 -2021-03-04 23:00:00;73.1 -2021-03-05 17:00:00;75.0 -2021-03-05 20:00:00;72.0 -2021-03-05 23:00:00;75.8 -2021-03-06 17:00:00;73.7 -2021-03-06 20:00:00;75.8 -2021-03-06 23:00:00;75.0 -2021-03-07 17:00:00;76.5 -2021-03-07 20:00:00;76.4 -2021-03-07 23:00:00;79.2 -2021-03-08 17:00:00;75.2 -2021-03-08 20:00:00;78.7 -2021-03-08 23:00:00;74.9 -2021-03-09 17:00:00;76.1 -2021-03-09 20:00:00;82.5 -2021-03-09 23:00:00;75.9 -2021-03-10 17:00:00;75.2 -2021-03-10 20:00:00;78.3 -2021-03-10 23:00:00;76.1 -2021-03-11 17:00:00;74.6 -2021-03-11 20:00:00;77.2 -2021-03-11 23:00:00;75.6 -2021-03-12 17:00:00;75.5 -2021-03-12 20:00:00;75.9 -2021-03-12 23:00:00;75.6 -2021-03-13 17:00:00;75.7 -2021-03-13 20:00:00;80.1 -2021-03-13 23:00:00;75.3 -2021-03-14 17:00:00;75.8 -2021-03-14 20:00:00;77.1 -2021-03-14 23:00:00;75.4 -2021-03-15 17:00:00;73.5 -2021-03-15 20:00:00;74.0 -2021-03-15 23:00:00;73.3 -2021-03-16 17:00:00;73.2 -2021-03-16 20:00:00;78.4 -2021-03-16 23:00:00;71.5 -2021-03-17 17:00:00;70.1 -2021-03-17 20:00:00;77.5 -2021-03-17 23:00:00;72.6 -2021-03-18 17:00:00;73.5 -2021-03-18 20:00:00;72.7 -2021-03-18 23:00:00;73.1 -2021-03-19 17:00:00;76.0 -2021-03-19 20:00:00;72.9 -2021-03-19 23:00:00;72.4 -2021-03-20 17:00:00;75.2 -2021-03-20 20:00:00;79.7 -2021-03-20 23:00:00;73.9 -2021-03-21 17:00:00;76.0 -2021-03-21 20:00:00;76.5 -2021-03-21 23:00:00;76.5 -2021-03-22 17:00:00;77.1 -2021-03-22 20:00:00;79.9 -2021-03-22 23:00:00;76.2 -2021-03-23 17:00:00;78.3 -2021-03-23 20:00:00;81.3 -2021-03-23 23:00:00;76.0 -2021-03-24 17:00:00;77.4 -2021-03-24 20:00:00;83.1 -2021-03-24 23:00:00;76.8 -2021-03-25 17:00:00;77.3 -2021-03-25 20:00:00;78.4 -2021-03-25 23:00:00;77.9 -2021-03-26 17:00:00;76.4 -2021-03-26 20:00:00;79.2 -2021-03-26 23:00:00;75.9 -2021-03-27 17:00:00;77.4 -2021-03-27 20:00:00;80.1 -2021-03-27 23:00:00;74.1 -2021-03-28 17:00:00;74.9 -2021-03-28 20:00:00;74.8 -2021-03-28 23:00:00;74.6 -2021-03-29 17:00:00;75.7 -2021-03-29 20:00:00;74.1 -2021-03-29 23:00:00;74.6 -2021-03-30 17:00:00;73.7 -2021-03-30 20:00:00;79.4 -2021-03-30 23:00:00;74.4 -2021-03-31 17:00:00;73.8 -2021-03-31 20:00:00;73.7 -2021-03-31 23:00:00;73.2 -2021-04-01 20:00:00;77.8 -2021-04-01 23:00:00;71.6 -2021-04-02 17:00:00;73.6 -2021-04-02 20:00:00;72.0 -2021-04-02 23:00:00;72.3 -2021-04-03 17:00:00;73.5 -2021-04-03 20:00:00;72.8 -2021-04-03 23:00:00;73.0 -2021-04-04 17:00:00;73.7 -2021-04-04 20:00:00;70.1 -2021-04-04 23:00:00;71.3 -2021-04-05 17:00:00;73.5 -2021-04-05 20:00:00;72.0 -2021-04-05 23:00:00;72.1 -2021-04-06 17:00:00;72.8 -2021-04-06 20:00:00;73.8 -2021-04-06 23:00:00;71.6 -2021-04-07 17:00:00;72.5 -2021-04-07 20:00:00;75.9 -2021-04-07 23:00:00;72.0 -2021-04-08 17:00:00;72.4 -2021-04-08 20:00:00;74.2 -2021-04-08 23:00:00;71.6 -2021-04-09 17:00:00;71.6 -2021-04-09 20:00:00;78.0 -2021-04-09 23:00:00;73.3 -2021-04-10 17:00:00;71.8 -2021-04-10 20:00:00;70.7 -2021-04-10 23:00:00;73.4 -2021-04-11 17:00:00;71.2 -2021-04-11 20:00:00;73.3 -2021-04-11 23:00:00;72.8 -2021-04-12 17:00:00;74.2 -2021-04-12 20:00:00;83.3 -2021-04-12 23:00:00;75.7 -2021-04-13 17:00:00;74.8 -2021-04-13 20:00:00;73.3 -2021-04-13 23:00:00;74.4 -2021-04-14 17:00:00;77.4 -2021-04-14 20:00:00;74.9 -2021-04-14 23:00:00;74.8 -2021-04-15 17:00:00;83.4 -2021-04-15 20:00:00;72.5 -2021-04-15 23:00:00;77.6 -2021-04-16 17:00:00;78.9 -2021-04-16 20:00:00;77.1 -2021-04-16 23:00:00;76.0 -2021-04-17 17:00:00;80.3 -2021-04-17 20:00:00;75.9 -2021-04-17 23:00:00;76.2 -2021-04-18 17:00:00;78.9 -2021-04-18 20:00:00;78.8 -2021-04-18 23:00:00;78.4 -2021-04-19 17:00:00;84.7 -2021-04-19 20:00:00;86.7 -2021-04-19 23:00:00;83.7 -2021-04-20 17:00:00;86.5 -2021-04-20 20:00:00;80.7 -2021-04-20 23:00:00;82.6 -2021-04-21 17:00:00;80.6 -2021-04-21 20:00:00;78.7 -2021-04-21 23:00:00;80.3 -2021-04-22 17:00:00;82.2 -2021-04-22 20:00:00;84.4 -2021-04-22 23:00:00;80.3 -2021-04-23 17:00:00;79.4 -2021-04-23 20:00:00;78.3 -2021-04-23 23:00:00;79.4 -2021-04-24 17:00:00;79.2 -2021-04-24 20:00:00;79.5 -2021-04-24 23:00:00;79.3 -2021-04-25 17:00:00;78.1 -2021-04-25 20:00:00;79.7 -2021-04-25 23:00:00;80.6 -2021-04-26 17:00:00;81.7 -2021-04-26 20:00:00;81.3 -2021-04-26 23:00:00;80.4 -2021-04-27 17:00:00;82.1 -2021-04-27 20:00:00;80.4 -2021-04-27 23:00:00;79.8 -2021-04-28 17:00:00;79.4 -2021-04-28 20:00:00;77.9 -2021-04-28 23:00:00;76.7 -2021-04-29 17:00:00;75.6 -2021-04-29 20:00:00;78.0 -2021-04-29 23:00:00;75.9 -2021-04-30 17:00:00;73.7 -2021-04-30 20:00:00;74.0 -2021-04-30 23:00:00;74.7 -2021-05-01 17:00:00;72.4 -2021-05-01 20:00:00;72.7 -2021-05-01 23:00:00;73.0 -2021-05-02 17:00:00;72.7 -2021-05-02 20:00:00;73.1 -2021-05-02 23:00:00;73.7 -2021-05-03 20:00:00;72.8 -2021-05-03 23:00:00;72.4 -2021-05-04 17:00:00;71.8 -2021-05-04 20:00:00;71.8 -2021-05-04 23:00:00;71.6 -2021-05-05 17:00:00;70.6 -2021-05-05 20:00:00;70.7 -2021-05-05 23:00:00;70.4 -2021-05-06 17:00:00;71.5 -2021-05-06 20:00:00;72.1 -2021-05-06 23:00:00;72.1 -2021-05-07 17:00:00;74.2 -2021-05-07 20:00:00;75.9 -2021-05-07 23:00:00;74.1 -2021-05-08 17:00:00;74.8 -2021-05-08 20:00:00;77.4 -2021-05-08 23:00:00;74.6 -2021-05-10 17:00:00;78.5 -2021-05-10 20:00:00;78.0 -2021-05-10 23:00:00;79.6 -2021-05-11 17:00:00;76.9 -2021-05-11 20:00:00;77.6 -2021-05-11 23:00:00;77.5 -2021-05-12 17:00:00;76.5 -2021-05-12 20:00:00;76.3 -2021-05-12 23:00:00;76.4 -2021-05-13 17:00:00;76.2 -2021-05-13 20:00:00;76.3 -2021-05-13 23:00:00;75.7 -2021-05-14 17:00:00;74.3 -2021-05-14 20:00:00;72.4 -2021-05-14 23:00:00;77.6 -2021-05-15 17:00:00;75.5 -2021-05-15 20:00:00;74.9 -2021-05-15 23:00:00;74.7 -2021-05-16 17:00:00;78.0 -2021-05-16 20:00:00;74.9 -2021-05-16 23:00:00;76.9 -2021-05-17 17:00:00;77.0 -2021-05-17 20:00:00;76.5 -2021-05-17 23:00:00;78.2 -2021-05-18 17:00:00;78.8 -2021-05-18 20:00:00;78.2 -2021-05-18 23:00:00;79.0 -2021-05-19 17:00:00;81.4 -2021-05-19 20:00:00;77.7 -2021-05-19 23:00:00;66.8 -2021-05-20 17:00:00;76.5 -2021-05-20 20:00:00;74.0 -2021-05-20 23:00:00;78.6 -2021-05-21 17:00:00;77.1 -2021-05-21 20:00:00;75.5 -2021-05-21 23:00:00;74.2 -2021-05-22 17:00:00;80.3 -2021-05-22 20:00:00;77.5 -2021-05-22 23:00:00;85.3 -2021-05-23 17:00:00;78.6 -2021-05-23 20:00:00;81.0 -2021-05-23 23:00:00;80.3 -2021-05-24 17:00:00;78.3 -2021-05-24 20:00:00;74.5 -2021-05-24 23:00:00;78.1 -2021-05-25 17:00:00;81.6 -2021-05-25 20:00:00;85.7 -2021-05-25 23:00:00;85.7 -2021-05-26 17:00:00;90.5 -2021-05-26 20:00:00;90.3 -2021-05-26 23:00:00;88.7 -2021-05-27 17:00:00;85.1 -2021-05-27 20:00:00;85.5 -2021-05-27 23:00:00;96.7 -2021-05-28 17:00:00;80.1 -2021-05-28 20:00:00;79.5 -2021-05-28 23:00:00;86.8 -2021-05-29 17:00:00;78.6 -2021-05-29 20:00:00;78.1 -2021-05-29 23:00:00;78.2 -2021-05-30 17:00:00;75.5 -2021-05-30 20:00:00;76.5 -2021-05-30 23:00:00;77.1 -2021-05-31 17:00:00;76.5 -2021-05-31 20:00:00;84.0 -2021-05-31 23:00:00;78.5 -2021-06-01 17:00:00;76.9 -2021-06-01 20:00:00;77.3 -2021-06-01 23:00:00;77.4 -2021-06-02 17:00:00;77.6 -2021-06-02 20:00:00;78.5 -2021-06-02 23:00:00;78.2 -2021-06-03 17:00:00;78.5 -2021-06-03 20:00:00;77.7 -2021-06-03 23:00:00;75.2 -2021-06-04 17:00:00;79.5 -2021-06-04 20:00:00;79.4 -2021-06-04 23:00:00;74.3 -2021-06-05 17:00:00;77.7 -2021-06-05 20:00:00;76.6 -2021-06-05 23:00:00;78.9 -2021-06-06 17:00:00;78.2 -2021-06-06 20:00:00;79.7 -2021-06-06 23:00:00;81.4 -2021-06-07 17:00:00;82.4 -2021-06-07 20:00:00;83.2 -2021-06-07 23:00:00;83.6 -2021-06-08 17:00:00;81.5 -2021-06-08 20:00:00;82.3 -2021-06-08 23:00:00;77.4 -2021-06-09 17:00:00;81.3 -2021-06-09 20:00:00;81.0 -2021-06-09 23:00:00;80.1 -2021-06-10 17:00:00;76.7 -2021-06-10 20:00:00;75.6 -2021-06-10 23:00:00;77.4 -2021-06-11 17:00:00;80.5 -2021-06-11 20:00:00;79.7 -2021-06-11 23:00:00;81.4 -2021-06-12 17:00:00;78.5 -2021-06-12 20:00:00;80.0 -2021-06-12 23:00:00;88.1 -2021-06-13 17:00:00;80.5 -2021-06-13 20:00:00;71.1 -2021-06-13 23:00:00;71.2 -2021-06-14 17:00:00;79.2 -2021-06-14 20:00:00;79.3 -2021-06-14 23:00:00;80.0 -2021-06-15 17:00:00;79.0 -2021-06-15 20:00:00;77.9 -2021-06-15 23:00:00;79.1 -2021-06-16 17:00:00;79.4 -2021-06-16 23:00:00;79.6 -2021-06-17 17:00:00;79.9 -2021-06-17 20:00:00;87.7 -2021-06-17 23:00:00;80.7 -2021-06-18 17:00:00;78.9 -2021-06-18 20:00:00;79.5 -2021-06-18 23:00:00;75.2 -2021-06-19 17:00:00;79.2 -2021-06-19 20:00:00;79.6 -2021-06-19 23:00:00;78.9 -2021-06-20 17:00:00;79.0 -2021-06-20 20:00:00;78.9 -2021-06-20 23:00:00;79.2 -2021-06-21 17:00:00;81.0 -2021-06-21 20:00:00;81.7 -2021-06-21 23:00:00;83.4 -2021-06-22 17:00:00;83.4 -2021-06-22 20:00:00;83.5 -2021-06-22 23:00:00;107.9 -2021-06-23 17:00:00;81.7 -2021-06-23 20:00:00;82.3 -2021-06-23 23:00:00;82.4 -2021-06-24 17:00:00;82.1 -2021-06-24 20:00:00;83.3 -2021-06-24 23:00:00;83.4 -2021-06-25 17:00:00;84.2 -2021-06-25 20:00:00;86.1 -2021-06-25 23:00:00;85.6 -2021-06-26 17:00:00;87.0 -2021-06-26 20:00:00;85.1 -2021-06-26 23:00:00;89.4 -2021-06-27 17:00:00;88.1 -2021-06-27 20:00:00;89.9 -2021-06-27 23:00:00;84.7 -2021-06-28 17:00:00;94.0 -2021-06-28 20:00:00;91.6 -2021-06-28 23:00:00;101.1 -2021-06-29 17:00:00;94.7 -2021-06-29 20:00:00;95.6 -2021-06-29 23:00:00;98.5 -2021-06-30 17:00:00;94.9 -2021-06-30 20:00:00;97.3 -2021-06-30 23:00:00;97.2 -2021-07-01 17:00:00;97.5 -2021-07-01 20:00:00;97.2 -2021-07-01 23:00:00;98.9 -2021-07-02 17:00:00;98.9 -2021-07-02 20:00:00;98.1 -2021-07-02 23:00:00;97.9 -2021-07-03 17:00:00;98.7 -2021-07-03 20:00:00;96.8 -2021-07-03 23:00:00;93.7 -2021-07-04 17:00:00;94.6 -2021-07-04 20:00:00;94.1 -2021-07-04 23:00:00;95.5 -2021-07-05 17:00:00;90.3 -2021-07-05 20:00:00;92.4 -2021-07-05 23:00:00;89.7 -2021-07-06 17:00:00;88.8 -2021-07-06 20:00:00;86.0 -2021-07-06 23:00:00;84.5 -2021-07-07 17:00:00;81.7 -2021-07-07 20:00:00;78.6 -2021-07-07 23:00:00;79.4 -2021-07-08 17:00:00;76.1 -2021-07-08 20:00:00;75.9 -2021-07-08 23:00:00;78.3 -2021-07-09 17:00:00;76.6 -2021-07-09 20:00:00;76.2 -2021-07-09 23:00:00;74.5 -2021-07-10 17:00:00;77.6 -2021-07-10 20:00:00;76.5 -2021-07-10 23:00:00;75.1 -2021-07-11 17:00:00;75.6 -2021-07-11 20:00:00;76.0 -2021-07-11 23:00:00;75.2 -2021-07-12 17:00:00;73.7 -2021-07-12 20:00:00;74.0 -2021-07-12 23:00:00;73.3 -2021-07-13 17:00:00;73.9 -2021-07-13 20:00:00;74.3 -2021-07-13 23:00:00;74.7 -2021-07-14 17:00:00;74.6 -2021-07-14 20:00:00;74.5 -2021-07-14 23:00:00;74.0 -2021-07-15 17:00:00;75.7 -2021-07-15 20:00:00;75.9 -2021-07-15 23:00:00;76.7 -2021-07-16 17:00:00;77.8 -2021-07-16 20:00:00;77.5 -2021-07-16 23:00:00;78.1 -2021-07-17 17:00:00;80.7 -2021-07-17 20:00:00;80.0 -2021-07-17 23:00:00;80.9 -2021-07-18 17:00:00;82.1 -2021-07-18 20:00:00;83.0 -2021-07-18 23:00:00;82.8 -2021-07-19 17:00:00;84.8 -2021-07-19 20:00:00;85.3 -2021-07-19 23:00:00;88.5 -2021-07-20 17:00:00;91.3 -2021-07-20 20:00:00;89.8 -2021-07-20 23:00:00;89.0 -2021-07-21 17:00:00;94.3 -2021-07-21 20:00:00;96.5 -2021-07-21 23:00:00;94.6 -2021-07-22 17:00:00;91.3 -2021-07-22 20:00:00;91.8 -2021-07-22 23:00:00;90.9 -2021-07-23 17:00:00;88.8 -2021-07-23 20:00:00;90.2 -2021-07-23 23:00:00;88.8 -2021-07-24 17:00:00;86.2 -2021-07-24 20:00:00;86.5 -2021-07-24 23:00:00;86.6 -2021-07-25 17:00:00;84.9 -2021-07-25 20:00:00;84.2 -2021-07-25 23:00:00;83.6 -2021-07-26 17:00:00;83.7 -2021-07-26 20:00:00;83.4 -2021-07-26 23:00:00;83.2 -2021-07-27 17:00:00;83.4 -2021-07-27 20:00:00;82.1 -2021-07-27 23:00:00;83.9 -2021-07-28 17:00:00;80.9 -2021-07-28 20:00:00;81.2 -2021-07-28 23:00:00;81.1 -2021-07-29 17:00:00;78.6 -2021-07-29 20:00:00;78.1 -2021-07-29 23:00:00;78.8 -2021-07-30 17:00:00;77.3 -2021-07-30 20:00:00;77.8 -2021-07-30 23:00:00;77.3 -2021-07-31 17:00:00;77.7 -2021-07-31 20:00:00;78.2 -2021-07-31 23:00:00;76.7 -2021-08-01 17:00:00;77.3 -2021-08-01 20:00:00;77.2 -2021-08-01 23:00:00;77.4 -2021-08-02 17:00:00;77.3 -2021-08-02 20:00:00;76.8 -2021-08-02 23:00:00;78.9 -2021-08-03 17:00:00;78.0 -2021-08-03 20:00:00;78.1 -2021-08-03 23:00:00;76.0 -2021-08-04 17:00:00;75.2 -2021-08-04 20:00:00;72.8 -2021-08-04 23:00:00;74.5 -2021-08-05 17:00:00;75.0 -2021-08-05 20:00:00;76.5 -2021-08-05 23:00:00;76.1 -2021-08-06 17:00:00;76.4 -2021-08-06 20:00:00;76.5 -2021-08-06 23:00:00;76.4 -2021-08-07 17:00:00;75.7 -2021-08-07 20:00:00;75.8 -2021-08-07 23:00:00;76.0 -2021-08-08 17:00:00;75.3 -2021-08-08 20:00:00;75.5 -2021-08-08 23:00:00;75.3 -2021-08-09 17:00:00;74.5 -2021-08-09 20:00:00;75.0 -2021-08-09 23:00:00;75.7 -2021-08-10 17:00:00;74.5 -2021-08-10 20:00:00;75.3 -2021-08-10 23:00:00;74.6 -2021-08-11 17:00:00;75.2 -2021-08-11 20:00:00;75.8 -2021-08-11 23:00:00;76.8 -2021-08-12 17:00:00;75.5 -2021-08-12 20:00:00;75.6 -2021-08-12 23:00:00;75.6 -2021-08-13 17:00:00;75.2 -2021-08-13 20:00:00;74.8 -2021-08-13 23:00:00;75.0 -2021-08-14 17:00:00;75.9 -2021-08-14 20:00:00;74.5 -2021-08-14 23:00:00;76.3 -2021-08-15 17:00:00;76.2 -2021-08-15 20:00:00;76.5 -2021-08-15 23:00:00;77.2 -2021-08-16 17:00:00;76.2 -2021-08-16 20:00:00;76.3 -2021-08-16 23:00:00;76.0 -2021-08-17 17:00:00;75.2 -2021-08-17 20:00:00;75.0 -2021-08-17 23:00:00;75.1 -2021-08-18 17:00:00;76.2 -2021-08-18 20:00:00;77.1 -2021-08-18 23:00:00;76.4 -2021-08-19 17:00:00;76.3 -2021-08-19 20:00:00;76.7 -2021-08-19 23:00:00;77.3 -2021-08-20 17:00:00;80.3 -2021-08-20 20:00:00;79.5 -2021-08-20 23:00:00;79.2 -2021-08-21 17:00:00;78.2 -2021-08-21 20:00:00;78.9 -2021-08-21 23:00:00;79.9 -2021-08-22 17:00:00;79.8 -2021-08-22 20:00:00;78.8 -2021-08-22 23:00:00;79.4 -2021-08-23 17:00:00;80.0 -2021-08-23 20:00:00;79.8 -2021-08-23 23:00:00;79.9 -2021-08-24 17:00:00;81.4 -2021-08-24 20:00:00;82.6 -2021-08-24 23:00:00;83.8 -2021-08-25 17:00:00;85.1 -2021-08-25 20:00:00;85.4 -2021-08-25 23:00:00;85.3 -2021-08-26 17:00:00;86.9 -2021-08-26 20:00:00;90.5 -2021-08-26 23:00:00;95.3 -2021-08-27 17:00:00;91.3 -2021-08-27 20:00:00;91.3 -2021-08-27 23:00:00;94.4 -2021-08-28 17:00:00;94.1 -2021-08-28 20:00:00;91.7 -2021-08-28 23:00:00;94.0 -2021-08-29 17:00:00;92.9 -2021-08-29 20:00:00;90.5 -2021-08-29 23:00:00;92.0 -2021-08-30 17:00:00;91.4 -2021-08-30 20:00:00;92.4 -2021-08-30 23:00:00;92.1 -2021-08-31 17:00:00;86.5 -2021-08-31 20:00:00;86.0 -2021-08-31 23:00:00;85.9 -2021-09-01 17:00:00;85.9 -2021-09-01 20:00:00;85.7 -2021-09-01 23:00:00;86.2 -2021-09-02 17:00:00;86.4 -2021-09-02 20:00:00;87.3 -2021-09-02 23:00:00;87.4 -2021-09-03 17:00:00;86.0 -2021-09-03 20:00:00;85.3 -2021-09-03 23:00:00;85.6 -2021-09-04 17:00:00;87.2 -2021-09-04 20:00:00;88.0 -2021-09-04 23:00:00;89.7 -2021-09-05 17:00:00;92.2 -2021-09-05 20:00:00;94.9 -2021-09-05 23:00:00;95.1 -2021-09-06 17:00:00;100.2 -2021-09-06 20:00:00;101.1 -2021-09-06 23:00:00;103.3 -2021-09-07 17:00:00;102.1 -2021-09-07 20:00:00;102.8 -2021-09-07 23:00:00;103.0 -2021-09-08 17:00:00;102.8 -2021-09-08 20:00:00;101.9 -2021-09-08 23:00:00;103.4 -2021-09-09 17:00:00;102.2 -2021-09-09 20:00:00;101.1 -2021-09-09 23:00:00;102.4 -2021-09-10 17:00:00;98.8 -2021-09-10 20:00:00;97.6 -2021-09-10 23:00:00;97.0 -2021-09-11 17:00:00;94.5 -2021-09-11 20:00:00;93.0 -2021-09-11 23:00:00;94.1 -2021-09-12 17:00:00;88.6 -2021-09-12 20:00:00;88.8 -2021-09-12 23:00:00;88.2 -2021-09-13 17:00:00;84.2 -2021-09-13 20:00:00;84.3 -2021-09-13 23:00:00;84.3 -2021-09-14 17:00:00;79.8 -2021-09-14 20:00:00;79.0 -2021-09-14 23:00:00;78.5 -2021-09-15 17:00:00;76.6 -2021-09-15 20:00:00;76.1 -2021-09-15 23:00:00;76.2 -2021-09-16 17:00:00;74.0 -2021-09-16 20:00:00;74.0 -2021-09-16 23:00:00;73.8 -2021-09-17 17:00:00;74.1 -2021-09-17 20:00:00;74.1 -2021-09-17 23:00:00;73.9 -2021-09-18 17:00:00;74.8 -2021-09-18 20:00:00;74.4 -2021-09-18 23:00:00;74.8 -2021-09-19 17:00:00;75.2 -2021-09-19 20:00:00;75.7 -2021-09-19 23:00:00;76.7 -2021-09-20 17:00:00;79.1 -2021-09-20 20:00:00;80.7 -2021-09-20 23:00:00;81.9 -2021-09-21 17:00:00;84.8 -2021-09-21 20:00:00;85.5 -2021-09-21 23:00:00;88.5 -2021-09-22 17:00:00;87.9 -2021-09-22 20:00:00;89.2 -2021-09-22 23:00:00;89.6 -2021-09-23 17:00:00;91.7 -2021-09-23 20:00:00;90.2 -2021-09-23 23:00:00;90.1 -2021-09-24 17:00:00;87.7 -2021-09-24 20:00:00;88.9 -2021-09-24 23:00:00;89.6 -2021-09-25 17:00:00;88.2 -2021-09-25 20:00:00;88.9 -2021-09-25 23:00:00;89.1 -2021-09-26 17:00:00;87.8 -2021-09-26 20:00:00;86.7 -2021-09-26 23:00:00;88.0 -2021-09-27 17:00:00;85.3 -2021-09-27 20:00:00;85.6 -2021-09-27 23:00:00;86.8 -2021-09-28 20:00:00;89.3 -2021-09-28 23:00:00;90.2 -2021-09-29 17:00:00;98.6 -2021-09-29 20:00:00;102.0 -2021-09-29 23:00:00;102.8 -2021-09-30 17:00:00;95.2 -2021-09-30 20:00:00;94.8 -2021-09-30 23:00:00;94.3 -2021-10-01 17:00:00;90.5 -2021-10-01 20:00:00;90.7 -2021-10-01 23:00:00;91.8 -2021-10-02 17:00:00;88.0 -2021-10-02 20:00:00;87.1 -2021-10-02 23:00:00;90.1 -2021-10-03 17:00:00;87.4 -2021-10-03 20:00:00;86.1 -2021-10-03 23:00:00;87.0 -2021-10-04 17:00:00;83.1 -2021-10-04 20:00:00;83.5 -2021-10-04 23:00:00;82.9 -2021-10-05 17:00:00;86.2 -2021-10-05 20:00:00;81.7 -2021-10-05 23:00:00;84.2 -2021-10-06 17:00:00;83.6 -2021-10-06 20:00:00;84.7 -2021-10-06 23:00:00;87.4 -2021-10-07 17:00:00;83.4 -2021-10-07 20:00:00;85.6 -2021-10-07 23:00:00;86.2 -2021-10-08 17:00:00;85.5 -2021-10-08 20:00:00;92.2 -2021-10-08 23:00:00;88.9 -2021-10-09 17:00:00;86.9 -2021-10-09 20:00:00;80.8 -2021-10-09 23:00:00;89.8 -2021-10-10 17:00:00;83.3 -2021-10-10 20:00:00;84.2 -2021-10-10 23:00:00;89.4 -2021-10-11 17:00:00;85.8 -2021-10-11 20:00:00;88.2 -2021-10-11 23:00:00;94.1 -2021-10-12 17:00:00;84.8 -2021-10-12 20:00:00;83.1 -2021-10-12 23:00:00;85.1 -2021-10-13 17:00:00;83.3 -2021-10-13 20:00:00;83.1 -2021-10-13 23:00:00;83.4 -2021-10-14 17:00:00;83.3 -2021-10-14 20:00:00;82.9 -2021-10-14 23:00:00;89.6 -2021-10-15 17:00:00;78.7 -2021-10-15 20:00:00;83.5 -2021-10-15 23:00:00;78.2 -2021-10-16 17:00:00;79.6 -2021-10-16 20:00:00;77.0 -2021-10-16 23:00:00;78.7 -2021-10-17 17:00:00;77.9 -2021-10-17 20:00:00;76.9 -2021-10-17 23:00:00;77.5 -2021-10-18 17:00:00;75.0 -2021-10-18 20:00:00;75.3 -2021-10-18 23:00:00;76.6 -2021-10-19 17:00:00;75.7 -2021-10-19 20:00:00;75.4 -2021-10-19 23:00:00;76.0 -2021-10-20 17:00:00;78.0 -2021-10-20 20:00:00;75.3 -2021-10-20 23:00:00;76.6 -2021-10-21 17:00:00;79.1 -2021-10-21 20:00:00;81.1 -2021-10-21 23:00:00;81.8 -2021-10-22 17:00:00;86.2 -2021-10-22 20:00:00;86.0 -2021-10-22 23:00:00;85.3 -2021-10-23 17:00:00;89.1 -2021-10-23 20:00:00;85.8 -2021-10-23 23:00:00;90.3 -2021-10-24 17:00:00;93.7 -2021-10-24 20:00:00;92.2 -2021-10-24 23:00:00;95.1 -2021-10-25 17:00:00;97.9 -2021-10-25 20:00:00;99.4 -2021-10-25 23:00:00;104.0 -2021-10-26 17:00:00;108.3 -2021-10-26 20:00:00;107.9 -2021-10-26 23:00:00;109.7 -2021-10-27 17:00:00;113.2 -2021-10-27 20:00:00;109.5 -2021-10-27 23:00:00;112.2 -2021-10-28 17:00:00;120.0 -2021-10-28 20:00:00;110.3 -2021-10-28 23:00:00;111.8 -2021-10-29 17:00:00;107.3 -2021-10-29 20:00:00;106.9 -2021-10-29 23:00:00;111.0 -2021-10-30 17:00:00;108.5 -2021-10-30 20:00:00;105.7 -2021-10-30 23:00:00;109.6 -2021-10-31 17:00:00;107.1 -2021-10-31 20:00:00;101.2 -2021-10-31 23:00:00;99.9 -2021-11-01 18:00:00;95.4 -2021-11-01 20:00:00;96.3 -2021-11-01 22:00:00;103.5 -2021-11-02 18:00:00;95.0 -2021-11-02 20:00:00;95.5 -2021-11-02 22:00:00;93.5 -2021-11-03 18:00:00;91.6 -2021-11-03 20:00:00;87.6 -2021-11-03 22:00:00;92.5 -2021-11-04 18:00:00;89.8 -2021-11-04 20:00:00;92.3 -2021-11-04 22:00:00;83.1 -2021-11-05 18:00:00;80.5 -2021-11-05 20:00:00;91.2 -2021-11-05 22:00:00;90.1 -2021-11-06 18:00:00;88.3 -2021-11-06 20:00:00;80.6 -2021-11-06 22:00:00;86.5 -2021-11-07 18:00:00;85.0 -2021-11-07 20:00:00;85.9 -2021-11-07 22:00:00;86.2 -2021-11-08 18:00:00;94.4 -2021-11-08 20:00:00;86.6 -2021-11-08 22:00:00;87.0 -2021-11-09 18:00:00;95.4 -2021-11-09 20:00:00;90.3 -2021-11-09 22:00:00;85.2 -2021-11-10 18:00:00;92.4 -2021-11-10 20:00:00;85.8 -2021-11-10 22:00:00;86.0 -2021-11-11 18:00:00;83.9 -2021-11-11 20:00:00;82.8 -2021-11-11 22:00:00;83.0 -2021-11-12 18:00:00;80.1 -2021-11-12 20:00:00;81.2 -2021-11-12 22:00:00;82.6 -2021-11-13 18:00:00;78.8 -2021-11-13 20:00:00;79.3 -2021-11-13 22:00:00;80.2 -2021-11-14 18:00:00;77.2 -2021-11-14 20:00:00;77.0 -2021-11-14 22:00:00;78.2 -2021-11-15 18:00:00;77.3 -2021-11-15 20:00:00;77.6 -2021-11-15 22:00:00;78.3 -2021-11-16 18:00:00;78.1 -2021-11-16 20:00:00;78.4 -2021-11-16 22:00:00;79.7 -2021-11-17 18:00:00;78.5 -2021-11-17 20:00:00;77.4 -2021-11-17 22:00:00;78.8 -2021-11-18 18:00:00;77.0 -2021-11-18 20:00:00;79.9 -2021-11-18 22:00:00;76.2 -2021-11-19 18:00:00;76.1 -2021-11-19 20:00:00;77.1 -2021-11-19 22:00:00;77.6 -2021-11-20 18:00:00;77.6 -2021-11-20 20:00:00;77.7 -2021-11-20 22:00:00;79.7 -2021-11-21 18:00:00;76.9 -2021-11-21 20:00:00;77.0 -2021-11-21 22:00:00;78.5 -2021-11-22 18:00:00;76.9 -2021-11-22 20:00:00;76.3 -2021-11-22 22:00:00;77.9 -2021-11-23 18:00:00;76.9 -2021-11-23 20:00:00;77.8 -2021-11-23 22:00:00;81.6 -2021-11-24 18:00:00;83.6 -2021-11-24 20:00:00;81.3 -2021-11-24 22:00:00;84.1 -2021-11-25 18:00:00;85.6 -2021-11-25 20:00:00;91.2 -2021-11-25 22:00:00;90.5 -2021-11-26 18:00:00;88.3 -2021-11-26 20:00:00;89.9 -2021-11-26 22:00:00;105.3 -2021-11-27 18:00:00;86.7 -2021-11-27 20:00:00;89.4 -2021-11-27 22:00:00;89.7 -2021-11-28 18:00:00;89.3 -2021-11-28 20:00:00;89.7 -2021-11-28 22:00:00;90.9 -2021-11-29 18:00:00;85.7 -2021-11-29 20:00:00;87.3 -2021-11-29 22:00:00;89.4 -2021-11-30 18:00:00;89.3 -2021-11-30 20:00:00;87.5 -2021-11-30 22:00:00;87.1 -2021-12-01 18:00:00;83.1 -2021-12-01 20:00:00;84.0 -2021-12-01 22:00:00;83.3 -2021-12-02 18:00:00;83.6 -2021-12-02 20:00:00;84.2 -2021-12-02 22:00:00;81.6 -2021-12-03 18:00:00;85.1 -2021-12-03 20:00:00;82.9 -2021-12-03 22:00:00;84.0 -2021-12-04 18:00:00;83.7 -2021-12-04 20:00:00;85.6 -2021-12-04 22:00:00;83.1 -2021-12-05 18:00:00;82.7 -2021-12-05 20:00:00;80.3 -2021-12-05 22:00:00;80.2 -2021-12-06 18:00:00;78.6 -2021-12-06 20:00:00;77.6 -2021-12-06 22:00:00;76.8 -2021-12-07 18:00:00;76.5 -2021-12-07 20:00:00;76.6 -2021-12-07 22:00:00;76.4 -2021-12-08 18:00:00;74.9 -2021-12-08 20:00:00;74.6 -2021-12-08 22:00:00;75.0 -2021-12-09 18:00:00;74.1 -2021-12-09 20:00:00;74.4 -2021-12-09 22:00:00;73.2 -2021-12-10 18:00:00;75.1 -2021-12-10 20:00:00;73.4 -2021-12-10 22:00:00;73.9 -2021-12-11 18:00:00;75.7 -2021-12-11 20:00:00;73.9 -2021-12-11 22:00:00;75.2 -2021-12-12 18:00:00;77.8 -2021-12-12 20:00:00;77.4 -2021-12-12 22:00:00;76.4 -2021-12-13 18:00:00;78.2 -2021-12-13 20:00:00;78.2 -2021-12-13 22:00:00;77.6 -2021-12-14 18:00:00;84.4 -2021-12-14 20:00:00;86.2 -2021-12-14 22:00:00;88.4 -2021-12-15 18:00:00;98.4 -2021-12-15 20:00:00;99.3 -2021-12-15 22:00:00;101.5 -2021-12-16 18:00:00;113.3 -2021-12-16 20:00:00;114.2 -2021-12-16 22:00:00;117.7 -2021-12-17 18:00:00;118.7 -2021-12-17 20:00:00;117.0 -2021-12-17 22:00:00;115.6 -2021-12-18 18:00:00;124.7 -2021-12-18 20:00:00;117.4 -2021-12-18 22:00:00;114.5 -2021-12-19 18:00:00;113.7 -2021-12-19 20:00:00;111.6 -2021-12-19 22:00:00;113.9 -2021-12-20 18:00:00;118.3 -2021-12-20 20:00:00;118.8 -2021-12-20 22:00:00;119.7 -2021-12-21 18:00:00;128.5 -2021-12-21 20:00:00;132.2 -2021-12-21 22:00:00;128.6 -2021-12-22 18:00:00;137.8 -2021-12-22 20:00:00;135.8 -2021-12-22 22:00:00;129.9 -2021-12-23 18:00:00;124.2 -2021-12-23 20:00:00;125.6 -2021-12-23 22:00:00;122.5 -2021-12-24 18:00:00;120.3 -2021-12-24 20:00:00;122.1 -2021-12-24 22:00:00;121.1 -2021-12-25 18:00:00;127.3 -2021-12-25 20:00:00;126.5 -2021-12-25 22:00:00;127.4 -2021-12-26 18:00:00;122.6 -2021-12-26 20:00:00;121.2 -2021-12-26 22:00:00;119.8 -2021-12-27 18:00:00;119.1 -2021-12-27 20:00:00;119.9 -2021-12-27 22:00:00;118.0 -2021-12-28 18:00:00;120.2 -2021-12-28 20:00:00;116.5 -2021-12-28 22:00:00;115.1 -2021-12-29 18:00:00;108.7 -2021-12-29 20:00:00;107.8 -2021-12-29 22:00:00;106.0 -2021-12-30 18:00:00;99.6 -2021-12-30 20:00:00;99.0 -2021-12-30 22:00:00;99.8 diff --git a/srcData/f107_from_ftp.txt b/srcData/f107_from_ftp.txt deleted file mode 100644 index c3d821af..00000000 --- a/srcData/f107_from_ftp.txt +++ /dev/null @@ -1,24293 +0,0 @@ -#-------------------------------------------------- -#> -#Element: adjusted -#Description: Adjusted daily solar radio flux -#Measure units: W/m^2/Hz -#Origin: f107_download.py code -# -#Sampling: 1 day -#Missing value: 1.0E33 -#> -#yyyy-MM-dd HH:mm value qualifier description -1958-01-01 00:00 257.0 '' '' -1958-01-02 00:00 263.0 '' '' -1958-01-03 00:00 262.0 '' '' -1958-01-04 00:00 261.0 '' '' -1958-01-05 00:00 246.0 '' '' -1958-01-06 00:00 254.0 '' '' -1958-01-07 00:00 255.0 '' '' -1958-01-08 00:00 255.0 '' '' -1958-01-09 00:00 259.0 '' '' -1958-01-10 00:00 274.0 '' '' -1958-01-11 00:00 273.0 '' '' -1958-01-12 00:00 290.0 '' '' -1958-01-13 00:00 310.0 '' '' -1958-01-14 00:00 321.0 '' '' -1958-01-15 00:00 309.0 '' '' -1958-01-16 00:00 297.0 '' '' -1958-01-17 00:00 285.0 '' '' -1958-01-18 00:00 260.0 '' '' -1958-01-19 00:00 238.0 '' '' -1958-01-20 00:00 251.0 '' '' -1958-01-21 00:00 239.0 '' '' -1958-01-22 00:00 227.0 '' '' -1958-01-23 00:00 210.0 '' '' -1958-01-24 00:00 211.0 '' '' -1958-01-25 00:00 206.0 '' '' -1958-01-26 00:00 220.0 '' '' -1958-01-27 00:00 200.0 '' '' -1958-01-28 00:00 189.0 '' '' -1958-01-29 00:00 194.0 '' '' -1958-01-30 00:00 181.0 '' '' -1958-01-31 00:00 187.0 '' '' -1958-02-01 00:00 195.0 '' '' -1958-02-02 00:00 217.0 '' '' -1958-02-03 00:00 222.0 '' '' -1958-02-04 00:00 233.0 '' '' -1958-02-05 00:00 249.0 '' '' -1958-02-06 00:00 252.0 '' '' -1958-02-07 00:00 257.0 '' '' -1958-02-08 00:00 250.0 '' '' -1958-02-09 00:00 234.0 '' '' -1958-02-10 00:00 231.0 '' '' -1958-02-11 00:00 228.0 '' '' -1958-02-12 00:00 226.0 '' '' -1958-02-13 00:00 222.0 '' '' -1958-02-14 00:00 210.0 '' '' -1958-02-15 00:00 202.0 '' '' -1958-02-16 00:00 187.0 '' '' -1958-02-17 00:00 183.0 '' '' -1958-02-18 00:00 177.0 '' '' -1958-02-19 00:00 173.0 '' '' -1958-02-20 00:00 172.0 '' '' -1958-02-21 00:00 175.0 '' '' -1958-02-22 00:00 176.0 '' '' -1958-02-23 00:00 194.0 '' '' -1958-02-24 00:00 206.0 '' '' -1958-02-25 00:00 207.0 '' '' -1958-02-26 00:00 205.0 '' '' -1958-02-27 00:00 197.0 '' '' -1958-02-28 00:00 196.0 '' '' -1958-03-01 00:00 195.0 '' '' -1958-03-02 00:00 209.0 '' '' -1958-03-03 00:00 223.0 '' '' -1958-03-04 00:00 232.0 '' '' -1958-03-05 00:00 233.0 '' '' -1958-03-06 00:00 251.0 '' '' -1958-03-07 00:00 256.0 '' '' -1958-03-08 00:00 251.0 '' '' -1958-03-09 00:00 255.0 '' '' -1958-03-10 00:00 242.0 '' '' -1958-03-11 00:00 235.0 '' '' -1958-03-12 00:00 232.0 '' '' -1958-03-13 00:00 238.0 '' '' -1958-03-14 00:00 227.0 '' '' -1958-03-15 00:00 217.0 '' '' -1958-03-16 00:00 214.0 '' '' -1958-03-17 00:00 208.0 '' '' -1958-03-18 00:00 210.0 '' '' -1958-03-19 00:00 220.0 '' '' -1958-03-20 00:00 232.0 '' '' -1958-03-21 00:00 224.0 '' '' -1958-03-22 00:00 266.0 '' '' -1958-03-23 00:00 268.0 '' '' -1958-03-24 00:00 274.0 '' '' -1958-03-25 00:00 258.0 '' '' -1958-03-26 00:00 284.0 '' '' -1958-03-27 00:00 302.0 '' '' -1958-03-28 00:00 295.0 '' '' -1958-03-29 00:00 332.0 '' '' -1958-03-30 00:00 344.0 '' '' -1958-03-31 00:00 338.0 '' '' -1958-04-01 00:00 331.0 '' '' -1958-04-02 00:00 326.0 '' '' -1958-04-03 00:00 302.0 '' '' -1958-04-04 00:00 295.0 '' '' -1958-04-05 00:00 290.0 '' '' -1958-04-06 00:00 289.0 '' '' -1958-04-07 00:00 283.0 '' '' -1958-04-08 00:00 272.0 '' '' -1958-04-09 00:00 250.0 '' '' -1958-04-10 00:00 244.0 '' '' -1958-04-11 00:00 216.0 '' '' -1958-04-12 00:00 196.0 '' '' -1958-04-13 00:00 179.0 '' '' -1958-04-14 00:00 177.0 '' '' -1958-04-15 00:00 188.0 '' '' -1958-04-16 00:00 197.0 '' '' -1958-04-17 00:00 207.0 '' '' -1958-04-18 00:00 213.0 '' '' -1958-04-19 00:00 221.0 '' '' -1958-04-20 00:00 226.0 '' '' -1958-04-21 00:00 229.0 '' '' -1958-04-22 00:00 237.0 '' '' -1958-04-23 00:00 235.0 '' '' -1958-04-24 00:00 244.0 '' '' -1958-04-25 00:00 241.0 '' '' -1958-04-26 00:00 245.0 '' '' -1958-04-27 00:00 247.0 '' '' -1958-04-28 00:00 258.0 '' '' -1958-04-29 00:00 255.0 '' '' -1958-04-30 00:00 265.0 '' '' -1958-05-01 00:00 266.0 '' '' -1958-05-02 00:00 276.0 '' '' -1958-05-03 00:00 278.0 '' '' -1958-05-04 00:00 280.0 '' '' -1958-05-05 00:00 269.0 '' '' -1958-05-06 00:00 263.0 '' '' -1958-05-07 00:00 249.0 '' '' -1958-05-08 00:00 236.0 '' '' -1958-05-09 00:00 239.0 '' '' -1958-05-10 00:00 209.0 '' '' -1958-05-11 00:00 211.0 '' '' -1958-05-12 00:00 209.0 '' '' -1958-05-13 00:00 203.0 '' '' -1958-05-14 00:00 194.0 '' '' -1958-05-15 00:00 196.0 '' '' -1958-05-16 00:00 194.0 '' '' -1958-05-17 00:00 194.0 '' '' -1958-05-18 00:00 197.0 '' '' -1958-05-19 00:00 197.0 '' '' -1958-05-20 00:00 197.0 '' '' -1958-05-21 00:00 199.0 '' '' -1958-05-22 00:00 199.0 '' '' -1958-05-23 00:00 206.0 '' '' -1958-05-24 00:00 211.0 '' '' -1958-05-25 00:00 207.0 '' '' -1958-05-26 00:00 210.0 '' '' -1958-05-27 00:00 201.0 '' '' -1958-05-28 00:00 202.0 '' '' -1958-05-29 00:00 219.0 '' '' -1958-05-30 00:00 213.0 '' '' -1958-05-31 00:00 209.0 '' '' -1958-06-01 00:00 219.0 '' '' -1958-06-02 00:00 220.0 '' '' -1958-06-03 00:00 227.0 '' '' -1958-06-04 00:00 246.0 '' '' -1958-06-05 00:00 256.0 '' '' -1958-06-06 00:00 260.0 '' '' -1958-06-07 00:00 238.0 '' '' -1958-06-08 00:00 233.0 '' '' -1958-06-09 00:00 252.0 '' '' -1958-06-10 00:00 234.0 '' '' -1958-06-11 00:00 235.0 '' '' -1958-06-12 00:00 227.0 '' '' -1958-06-13 00:00 220.0 '' '' -1958-06-14 00:00 208.0 '' '' -1958-06-15 00:00 197.0 '' '' -1958-06-16 00:00 191.0 '' '' -1958-06-17 00:00 182.0 '' '' -1958-06-18 00:00 177.0 '' '' -1958-06-19 00:00 189.0 '' '' -1958-06-20 00:00 193.0 '' '' -1958-06-21 00:00 194.0 '' '' -1958-06-22 00:00 213.0 '' '' -1958-06-23 00:00 217.0 '' '' -1958-06-24 00:00 221.0 '' '' -1958-06-25 00:00 226.0 '' '' -1958-06-26 00:00 233.0 '' '' -1958-06-27 00:00 237.0 '' '' -1958-06-28 00:00 232.0 '' '' -1958-06-29 00:00 220.0 '' '' -1958-06-30 00:00 217.0 '' '' -1958-07-01 00:00 215.0 '' '' -1958-07-02 00:00 215.0 '' '' -1958-07-03 00:00 224.0 '' '' -1958-07-04 00:00 232.0 '' '' -1958-07-05 00:00 238.0 '' '' -1958-07-06 00:00 232.0 '' '' -1958-07-07 00:00 237.0 '' '' -1958-07-08 00:00 232.0 '' '' -1958-07-09 00:00 218.0 '' '' -1958-07-10 00:00 208.0 '' '' -1958-07-11 00:00 203.0 '' '' -1958-07-12 00:00 188.0 '' '' -1958-07-13 00:00 191.0 '' '' -1958-07-14 00:00 182.0 '' '' -1958-07-15 00:00 181.0 '' '' -1958-07-16 00:00 192.0 '' '' -1958-07-17 00:00 188.0 '' '' -1958-07-18 00:00 190.0 '' '' -1958-07-19 00:00 205.0 '' '' -1958-07-20 00:00 200.0 '' '' -1958-07-21 00:00 209.0 '' '' -1958-07-22 00:00 214.0 '' '' -1958-07-23 00:00 213.0 '' '' -1958-07-24 00:00 228.0 '' '' -1958-07-25 00:00 240.0 '' '' -1958-07-26 00:00 260.0 '' '' -1958-07-27 00:00 261.0 '' '' -1958-07-28 00:00 290.0 '' '' -1958-07-29 00:00 285.0 '' '' -1958-07-30 00:00 287.0 '' '' -1958-07-31 00:00 288.0 '' '' -1958-08-01 00:00 274.0 '' '' -1958-08-02 00:00 254.0 '' '' -1958-08-03 00:00 237.0 '' '' -1958-08-04 00:00 216.0 '' '' -1958-08-05 00:00 221.0 '' '' -1958-08-06 00:00 239.0 '' '' -1958-08-07 00:00 235.0 '' '' -1958-08-08 00:00 236.0 '' '' -1958-08-09 00:00 225.0 '' '' -1958-08-10 00:00 222.0 '' '' -1958-08-11 00:00 225.0 '' '' -1958-08-12 00:00 222.0 '' '' -1958-08-13 00:00 236.0 '' '' -1958-08-14 00:00 235.0 '' '' -1958-08-15 00:00 231.0 '' '' -1958-08-16 00:00 215.0 '' '' -1958-08-17 00:00 211.0 '' '' -1958-08-18 00:00 218.0 '' '' -1958-08-19 00:00 219.0 '' '' -1958-08-20 00:00 220.0 '' '' -1958-08-21 00:00 231.0 '' '' -1958-08-22 00:00 239.0 '' '' -1958-08-23 00:00 243.0 '' '' -1958-08-24 00:00 253.0 '' '' -1958-08-25 00:00 263.0 '' '' -1958-08-26 00:00 264.0 '' '' -1958-08-27 00:00 252.0 '' '' -1958-08-28 00:00 244.0 '' '' -1958-08-29 00:00 252.0 '' '' -1958-08-30 00:00 249.0 '' '' -1958-08-31 00:00 259.0 '' '' -1958-09-01 00:00 261.0 '' '' -1958-09-02 00:00 281.0 '' '' -1958-09-03 00:00 270.0 '' '' -1958-09-04 00:00 256.0 '' '' -1958-09-05 00:00 233.0 '' '' -1958-09-06 00:00 216.0 '' '' -1958-09-07 00:00 210.0 '' '' -1958-09-08 00:00 211.0 '' '' -1958-09-09 00:00 235.0 '' '' -1958-09-10 00:00 245.0 '' '' -1958-09-11 00:00 250.0 '' '' -1958-09-12 00:00 270.0 '' '' -1958-09-13 00:00 285.0 '' '' -1958-09-14 00:00 290.0 '' '' -1958-09-15 00:00 271.0 '' '' -1958-09-16 00:00 263.0 '' '' -1958-09-17 00:00 259.0 '' '' -1958-09-18 00:00 246.0 '' '' -1958-09-19 00:00 243.0 '' '' -1958-09-20 00:00 231.0 '' '' -1958-09-21 00:00 221.0 '' '' -1958-09-22 00:00 249.0 '' '' -1958-09-23 00:00 226.0 '' '' -1958-09-24 00:00 225.0 '' '' -1958-09-25 00:00 222.0 '' '' -1958-09-26 00:00 218.0 '' '' -1958-09-27 00:00 219.0 '' '' -1958-09-28 00:00 225.0 '' '' -1958-09-29 00:00 227.0 '' '' -1958-09-30 00:00 228.0 '' '' -1958-10-01 00:00 231.0 '' '' -1958-10-02 00:00 221.0 '' '' -1958-10-03 00:00 219.0 '' '' -1958-10-04 00:00 215.0 '' '' -1958-10-05 00:00 199.0 '' '' -1958-10-06 00:00 189.0 '' '' -1958-10-07 00:00 189.0 '' '' -1958-10-08 00:00 187.0 '' '' -1958-10-09 00:00 192.0 '' '' -1958-10-10 00:00 198.0 '' '' -1958-10-11 00:00 210.0 '' '' -1958-10-12 00:00 219.0 '' '' -1958-10-13 00:00 225.0 '' '' -1958-10-14 00:00 228.0 '' '' -1958-10-15 00:00 230.0 '' '' -1958-10-16 00:00 253.0 '' '' -1958-10-17 00:00 286.0 '' '' -1958-10-18 00:00 286.0 '' '' -1958-10-19 00:00 296.0 '' '' -1958-10-20 00:00 278.0 '' '' -1958-10-21 00:00 277.0 '' '' -1958-10-22 00:00 270.0 '' '' -1958-10-23 00:00 240.0 '' '' -1958-10-24 00:00 227.0 '' '' -1958-10-25 00:00 191.0 '' '' -1958-10-26 00:00 194.0 '' '' -1958-10-27 00:00 191.0 '' '' -1958-10-28 00:00 209.0 '' '' -1958-10-29 00:00 220.0 '' '' -1958-10-30 00:00 228.0 '' '' -1958-10-31 00:00 222.0 '' '' -1958-11-01 00:00 234.0 '' '' -1958-11-02 00:00 241.0 '' '' -1958-11-03 00:00 224.0 '' '' -1958-11-04 00:00 220.0 '' '' -1958-11-05 00:00 222.0 '' '' -1958-11-06 00:00 204.0 '' '' -1958-11-07 00:00 206.0 '' '' -1958-11-08 00:00 191.0 '' '' -1958-11-09 00:00 180.0 '' '' -1958-11-10 00:00 169.0 '' '' -1958-11-11 00:00 166.0 '' '' -1958-11-12 00:00 166.0 '' '' -1958-11-13 00:00 163.0 '' '' -1958-11-14 00:00 166.0 '' '' -1958-11-15 00:00 166.0 '' '' -1958-11-16 00:00 169.0 '' '' -1958-11-17 00:00 173.0 '' '' -1958-11-18 00:00 174.0 '' '' -1958-11-19 00:00 183.0 '' '' -1958-11-20 00:00 187.0 '' '' -1958-11-21 00:00 194.0 '' '' -1958-11-22 00:00 200.0 '' '' -1958-11-23 00:00 213.0 '' '' -1958-11-24 00:00 229.0 '' '' -1958-11-25 00:00 243.0 '' '' -1958-11-26 00:00 264.0 '' '' -1958-11-27 00:00 268.0 '' '' -1958-11-28 00:00 259.0 '' '' -1958-11-29 00:00 263.0 '' '' -1958-11-30 00:00 264.0 '' '' -1958-12-01 00:00 268.0 '' '' -1958-12-02 00:00 259.0 '' '' -1958-12-03 00:00 241.0 '' '' -1958-12-04 00:00 241.0 '' '' -1958-12-05 00:00 253.0 '' '' -1958-12-06 00:00 249.0 '' '' -1958-12-07 00:00 253.0 '' '' -1958-12-08 00:00 260.0 '' '' -1958-12-09 00:00 254.0 '' '' -1958-12-10 00:00 269.0 '' '' -1958-12-11 00:00 256.0 '' '' -1958-12-12 00:00 257.0 '' '' -1958-12-13 00:00 260.0 '' '' -1958-12-14 00:00 258.0 '' '' -1958-12-15 00:00 235.0 '' '' -1958-12-16 00:00 217.0 '' '' -1958-12-17 00:00 204.0 '' '' -1958-12-18 00:00 202.0 '' '' -1958-12-19 00:00 187.0 '' '' -1958-12-20 00:00 199.0 '' '' -1958-12-21 00:00 198.0 '' '' -1958-12-22 00:00 211.0 '' '' -1958-12-23 00:00 215.0 '' '' -1958-12-24 00:00 224.0 '' '' -1958-12-25 00:00 231.0 '' '' -1958-12-26 00:00 238.0 '' '' -1958-12-27 00:00 227.0 '' '' -1958-12-28 00:00 223.0 '' '' -1958-12-29 00:00 219.0 '' '' -1958-12-30 00:00 224.0 '' '' -1958-12-31 00:00 226.0 '' '' -1959-01-01 00:00 235.0 '' '' -1959-01-02 00:00 250.0 '' '' -1959-01-03 00:00 266.0 '' '' -1959-01-04 00:00 270.0 '' '' -1959-01-05 00:00 282.0 '' '' -1959-01-06 00:00 294.0 '' '' -1959-01-07 00:00 306.0 '' '' -1959-01-08 00:00 278.0 '' '' -1959-01-09 00:00 268.0 '' '' -1959-01-10 00:00 282.0 '' '' -1959-01-11 00:00 260.0 '' '' -1959-01-12 00:00 251.0 '' '' -1959-01-13 00:00 235.0 '' '' -1959-01-14 00:00 224.0 '' '' -1959-01-15 00:00 207.0 '' '' -1959-01-16 00:00 213.0 '' '' -1959-01-17 00:00 220.0 '' '' -1959-01-18 00:00 237.0 '' '' -1959-01-19 00:00 265.0 '' '' -1959-01-20 00:00 294.0 '' '' -1959-01-21 00:00 315.0 '' '' -1959-01-22 00:00 337.0 '' '' -1959-01-23 00:00 328.0 '' '' -1959-01-24 00:00 334.0 '' '' -1959-01-25 00:00 321.0 '' '' -1959-01-26 00:00 314.0 '' '' -1959-01-27 00:00 314.0 '' '' -1959-01-28 00:00 322.0 '' '' -1959-01-29 00:00 304.0 '' '' -1959-01-30 00:00 262.0 '' '' -1959-01-31 00:00 224.0 '' '' -1959-02-01 00:00 205.0 '' '' -1959-02-02 00:00 205.0 '' '' -1959-02-03 00:00 204.0 '' '' -1959-02-04 00:00 201.0 '' '' -1959-02-05 00:00 191.0 '' '' -1959-02-06 00:00 195.0 '' '' -1959-02-07 00:00 182.0 '' '' -1959-02-08 00:00 182.0 '' '' -1959-02-09 00:00 174.0 '' '' -1959-02-10 00:00 190.0 '' '' -1959-02-11 00:00 199.0 '' '' -1959-02-12 00:00 199.0 '' '' -1959-02-13 00:00 201.0 '' '' -1959-02-14 00:00 199.0 '' '' -1959-02-15 00:00 213.0 '' '' -1959-02-16 00:00 214.0 '' '' -1959-02-17 00:00 220.0 '' '' -1959-02-18 00:00 218.0 '' '' -1959-02-19 00:00 218.0 '' '' -1959-02-20 00:00 228.0 '' '' -1959-02-21 00:00 224.0 '' '' -1959-02-22 00:00 219.0 '' '' -1959-02-23 00:00 212.0 '' '' -1959-02-24 00:00 220.0 '' '' -1959-02-25 00:00 227.0 '' '' -1959-02-26 00:00 219.0 '' '' -1959-02-27 00:00 211.0 '' '' -1959-02-28 00:00 201.0 '' '' -1959-03-01 00:00 187.0 '' '' -1959-03-02 00:00 181.0 '' '' -1959-03-03 00:00 181.0 '' '' -1959-03-04 00:00 178.0 '' '' -1959-03-05 00:00 179.0 '' '' -1959-03-06 00:00 190.0 '' '' -1959-03-07 00:00 188.0 '' '' -1959-03-08 00:00 191.0 '' '' -1959-03-09 00:00 198.0 '' '' -1959-03-10 00:00 204.0 '' '' -1959-03-11 00:00 201.0 '' '' -1959-03-12 00:00 194.0 '' '' -1959-03-13 00:00 207.0 '' '' -1959-03-14 00:00 215.0 '' '' -1959-03-15 00:00 235.0 '' '' -1959-03-16 00:00 246.0 '' '' -1959-03-17 00:00 259.0 '' '' -1959-03-18 00:00 274.0 '' '' -1959-03-19 00:00 281.0 '' '' -1959-03-20 00:00 285.0 '' '' -1959-03-21 00:00 287.0 '' '' -1959-03-22 00:00 262.0 '' '' -1959-03-23 00:00 258.0 '' '' -1959-03-24 00:00 247.0 '' '' -1959-03-25 00:00 248.0 '' '' -1959-03-26 00:00 247.0 '' '' -1959-03-27 00:00 246.0 '' '' -1959-03-28 00:00 248.0 '' '' -1959-03-29 00:00 245.0 '' '' -1959-03-30 00:00 258.0 '' '' -1959-03-31 00:00 254.0 '' '' -1959-04-01 00:00 256.0 '' '' -1959-04-02 00:00 236.0 '' '' -1959-04-03 00:00 216.0 '' '' -1959-04-04 00:00 215.0 '' '' -1959-04-05 00:00 196.0 '' '' -1959-04-06 00:00 196.0 '' '' -1959-04-07 00:00 217.0 '' '' -1959-04-08 00:00 215.0 '' '' -1959-04-09 00:00 215.0 '' '' -1959-04-10 00:00 220.0 '' '' -1959-04-11 00:00 232.0 '' '' -1959-04-12 00:00 224.0 '' '' -1959-04-13 00:00 209.0 '' '' -1959-04-14 00:00 198.0 '' '' -1959-04-15 00:00 189.0 '' '' -1959-04-16 00:00 188.0 '' '' -1959-04-17 00:00 190.0 '' '' -1959-04-18 00:00 181.0 '' '' -1959-04-19 00:00 196.0 '' '' -1959-04-20 00:00 203.0 '' '' -1959-04-21 00:00 203.0 '' '' -1959-04-22 00:00 199.0 '' '' -1959-04-23 00:00 213.0 '' '' -1959-04-24 00:00 213.0 '' '' -1959-04-25 00:00 211.0 '' '' -1959-04-26 00:00 218.0 '' '' -1959-04-27 00:00 212.0 '' '' -1959-04-28 00:00 216.0 '' '' -1959-04-29 00:00 211.0 '' '' -1959-04-30 00:00 220.0 '' '' -1959-05-01 00:00 204.0 '' '' -1959-05-02 00:00 194.0 '' '' -1959-05-03 00:00 195.0 '' '' -1959-05-04 00:00 184.0 '' '' -1959-05-05 00:00 186.0 '' '' -1959-05-06 00:00 202.0 '' '' -1959-05-07 00:00 208.0 '' '' -1959-05-08 00:00 244.0 '' '' -1959-05-09 00:00 249.0 '' '' -1959-05-10 00:00 259.0 '' '' -1959-05-11 00:00 264.0 '' '' -1959-05-12 00:00 266.0 '' '' -1959-05-13 00:00 264.0 '' '' -1959-05-14 00:00 244.0 '' '' -1959-05-15 00:00 228.0 '' '' -1959-05-16 00:00 222.0 '' '' -1959-05-17 00:00 224.0 '' '' -1959-05-18 00:00 213.0 '' '' -1959-05-19 00:00 199.0 '' '' -1959-05-20 00:00 201.0 '' '' -1959-05-21 00:00 201.0 '' '' -1959-05-22 00:00 201.0 '' '' -1959-05-23 00:00 198.0 '' '' -1959-05-24 00:00 199.0 '' '' -1959-05-25 00:00 203.0 '' '' -1959-05-26 00:00 205.0 '' '' -1959-05-27 00:00 208.0 '' '' -1959-05-28 00:00 195.0 '' '' -1959-05-29 00:00 176.0 '' '' -1959-05-30 00:00 177.0 '' '' -1959-05-31 00:00 179.0 '' '' -1959-06-01 00:00 193.0 '' '' -1959-06-02 00:00 198.0 '' '' -1959-06-03 00:00 198.0 '' '' -1959-06-04 00:00 190.0 '' '' -1959-06-05 00:00 197.0 '' '' -1959-06-06 00:00 210.0 '' '' -1959-06-07 00:00 198.0 '' '' -1959-06-08 00:00 213.0 '' '' -1959-06-09 00:00 223.0 '' '' -1959-06-10 00:00 228.0 '' '' -1959-06-11 00:00 226.0 '' '' -1959-06-12 00:00 220.0 '' '' -1959-06-13 00:00 212.0 '' '' -1959-06-14 00:00 208.0 '' '' -1959-06-15 00:00 225.0 '' '' -1959-06-16 00:00 220.0 '' '' -1959-06-17 00:00 225.0 '' '' -1959-06-18 00:00 228.0 '' '' -1959-06-19 00:00 237.0 '' '' -1959-06-20 00:00 226.0 '' '' -1959-06-21 00:00 228.0 '' '' -1959-06-22 00:00 219.0 '' '' -1959-06-23 00:00 220.0 '' '' -1959-06-24 00:00 232.0 '' '' -1959-06-25 00:00 233.0 '' '' -1959-06-26 00:00 238.0 '' '' -1959-06-27 00:00 240.0 '' '' -1959-06-28 00:00 224.0 '' '' -1959-06-29 00:00 219.0 '' '' -1959-06-30 00:00 196.0 '' '' -1959-07-01 00:00 188.0 '' '' -1959-07-02 00:00 174.0 '' '' -1959-07-03 00:00 171.0 '' '' -1959-07-04 00:00 177.0 '' '' -1959-07-05 00:00 176.0 '' '' -1959-07-06 00:00 188.0 '' '' -1959-07-07 00:00 192.0 '' '' -1959-07-08 00:00 185.0 '' '' -1959-07-09 00:00 185.0 '' '' -1959-07-10 00:00 201.0 '' '' -1959-07-11 00:00 194.0 '' '' -1959-07-12 00:00 234.0 '' '' -1959-07-13 00:00 243.0 '' '' -1959-07-14 00:00 264.0 '' '' -1959-07-15 00:00 245.0 '' '' -1959-07-16 00:00 261.0 '' '' -1959-07-17 00:00 240.0 '' '' -1959-07-18 00:00 231.0 '' '' -1959-07-19 00:00 222.0 '' '' -1959-07-20 00:00 208.0 '' '' -1959-07-21 00:00 189.0 '' '' -1959-07-22 00:00 178.0 '' '' -1959-07-23 00:00 178.0 '' '' -1959-07-24 00:00 181.0 '' '' -1959-07-25 00:00 182.0 '' '' -1959-07-26 00:00 182.0 '' '' -1959-07-27 00:00 200.0 '' '' -1959-07-28 00:00 205.0 '' '' -1959-07-29 00:00 207.0 '' '' -1959-07-30 00:00 204.0 '' '' -1959-07-31 00:00 208.0 '' '' -1959-08-01 00:00 214.0 '' '' -1959-08-02 00:00 228.0 '' '' -1959-08-03 00:00 240.0 '' '' -1959-08-04 00:00 236.0 '' '' -1959-08-05 00:00 229.0 '' '' -1959-08-06 00:00 227.0 '' '' -1959-08-07 00:00 212.0 '' '' -1959-08-08 00:00 204.0 '' '' -1959-08-09 00:00 204.0 '' '' -1959-08-10 00:00 202.0 '' '' -1959-08-11 00:00 200.0 '' '' -1959-08-12 00:00 196.0 '' '' -1959-08-13 00:00 194.0 '' '' -1959-08-14 00:00 189.0 '' '' -1959-08-15 00:00 190.0 '' '' -1959-08-16 00:00 201.0 '' '' -1959-08-17 00:00 224.0 '' '' -1959-08-18 00:00 229.0 '' '' -1959-08-19 00:00 215.0 '' '' -1959-08-20 00:00 224.0 '' '' -1959-08-21 00:00 230.0 '' '' -1959-08-22 00:00 243.0 '' '' -1959-08-23 00:00 262.0 '' '' -1959-08-24 00:00 245.0 '' '' -1959-08-25 00:00 253.0 '' '' -1959-08-26 00:00 257.0 '' '' -1959-08-27 00:00 279.0 '' '' -1959-08-28 00:00 302.0 '' '' -1959-08-29 00:00 308.0 '' '' -1959-08-30 00:00 312.0 '' '' -1959-08-31 00:00 305.0 '' '' -1959-09-01 00:00 282.0 '' '' -1959-09-02 00:00 269.0 '' '' -1959-09-03 00:00 257.0 '' '' -1959-09-04 00:00 239.0 '' '' -1959-09-05 00:00 220.0 '' '' -1959-09-06 00:00 200.0 '' '' -1959-09-07 00:00 192.0 '' '' -1959-09-08 00:00 199.0 '' '' -1959-09-09 00:00 209.0 '' '' -1959-09-10 00:00 201.0 '' '' -1959-09-11 00:00 203.0 '' '' -1959-09-12 00:00 195.0 '' '' -1959-09-13 00:00 189.0 '' '' -1959-09-14 00:00 196.0 '' '' -1959-09-15 00:00 184.0 '' '' -1959-09-16 00:00 168.0 '' '' -1959-09-17 00:00 170.0 '' '' -1959-09-18 00:00 167.0 '' '' -1959-09-19 00:00 175.0 '' '' -1959-09-20 00:00 185.0 '' '' -1959-09-21 00:00 182.0 '' '' -1959-09-22 00:00 188.0 '' '' -1959-09-23 00:00 182.0 '' '' -1959-09-24 00:00 183.0 '' '' -1959-09-25 00:00 175.0 '' '' -1959-09-26 00:00 164.0 '' '' -1959-09-27 00:00 163.0 '' '' -1959-09-28 00:00 162.0 '' '' -1959-09-29 00:00 159.0 '' '' -1959-09-30 00:00 156.0 '' '' -1959-10-01 00:00 150.0 '' '' -1959-10-02 00:00 145.0 '' '' -1959-10-03 00:00 144.0 '' '' -1959-10-04 00:00 148.0 '' '' -1959-10-05 00:00 155.0 '' '' -1959-10-06 00:00 174.0 '' '' -1959-10-07 00:00 169.0 '' '' -1959-10-08 00:00 155.0 '' '' -1959-10-09 00:00 153.0 '' '' -1959-10-10 00:00 149.0 '' '' -1959-10-11 00:00 147.0 '' '' -1959-10-12 00:00 154.0 '' '' -1959-10-13 00:00 155.0 '' '' -1959-10-14 00:00 153.0 '' '' -1959-10-15 00:00 160.0 '' '' -1959-10-16 00:00 167.0 '' '' -1959-10-17 00:00 169.0 '' '' -1959-10-18 00:00 171.0 '' '' -1959-10-19 00:00 173.0 '' '' -1959-10-20 00:00 175.0 '' '' -1959-10-21 00:00 175.0 '' '' -1959-10-22 00:00 187.0 '' '' -1959-10-23 00:00 183.0 '' '' -1959-10-24 00:00 181.0 '' '' -1959-10-25 00:00 186.0 '' '' -1959-10-26 00:00 190.0 '' '' -1959-10-27 00:00 184.2 '' '' -1959-10-28 00:00 178.4 '' '' -1959-10-29 00:00 172.6 '' '' -1959-10-30 00:00 166.8 '' '' -1959-10-31 00:00 161.0 '' '' -1959-11-01 00:00 159.0 '' '' -1959-11-02 00:00 168.0 '' '' -1959-11-03 00:00 165.0 '' '' -1959-11-04 00:00 154.0 '' '' -1959-11-05 00:00 151.0 '' '' -1959-11-06 00:00 157.0 '' '' -1959-11-07 00:00 161.0 '' '' -1959-11-08 00:00 173.0 '' '' -1959-11-09 00:00 183.0 '' '' -1959-11-10 00:00 194.0 '' '' -1959-11-11 00:00 193.0 '' '' -1959-11-12 00:00 192.0 '' '' -1959-11-13 00:00 191.0 '' '' -1959-11-14 00:00 187.0 '' '' -1959-11-15 00:00 182.0 '' '' -1959-11-16 00:00 175.0 '' '' -1959-11-17 00:00 161.0 '' '' -1959-11-18 00:00 155.0 '' '' -1959-11-19 00:00 157.0 '' '' -1959-11-20 00:00 154.0 '' '' -1959-11-21 00:00 154.0 '' '' -1959-11-22 00:00 173.0 '' '' -1959-11-23 00:00 187.0 '' '' -1959-11-24 00:00 205.0 '' '' -1959-11-25 00:00 226.0 '' '' -1959-11-26 00:00 221.0 '' '' -1959-11-27 00:00 218.0 '' '' -1959-11-28 00:00 227.0 '' '' -1959-11-29 00:00 225.0 '' '' -1959-11-30 00:00 230.0 '' '' -1959-12-01 00:00 222.0 '' '' -1959-12-02 00:00 217.0 '' '' -1959-12-03 00:00 202.0 '' '' -1959-12-04 00:00 199.0 '' '' -1959-12-05 00:00 204.0 '' '' -1959-12-06 00:00 202.0 '' '' -1959-12-07 00:00 191.0 '' '' -1959-12-08 00:00 193.0 '' '' -1959-12-09 00:00 173.0 '' '' -1959-12-10 00:00 174.0 '' '' -1959-12-11 00:00 171.0 '' '' -1959-12-12 00:00 169.0 '' '' -1959-12-13 00:00 162.0 '' '' -1959-12-14 00:00 165.0 '' '' -1959-12-15 00:00 171.0 '' '' -1959-12-16 00:00 164.0 '' '' -1959-12-17 00:00 167.0 '' '' -1959-12-18 00:00 169.0 '' '' -1959-12-19 00:00 180.0 '' '' -1959-12-20 00:00 178.0 '' '' -1959-12-21 00:00 185.0 '' '' -1959-12-22 00:00 171.0 '' '' -1959-12-23 00:00 166.0 '' '' -1959-12-24 00:00 163.0 '' '' -1959-12-25 00:00 162.0 '' '' -1959-12-26 00:00 161.0 '' '' -1959-12-27 00:00 167.0 '' '' -1959-12-28 00:00 172.0 '' '' -1959-12-29 00:00 171.0 '' '' -1959-12-30 00:00 179.0 '' '' -1959-12-31 00:00 167.0 '' '' -1960-01-01 00:00 171.0 '' '' -1960-01-02 00:00 175.0 '' '' -1960-01-03 00:00 182.0 '' '' -1960-01-04 00:00 193.0 '' '' -1960-01-05 00:00 213.0 '' '' -1960-01-06 00:00 215.0 '' '' -1960-01-07 00:00 224.0 '' '' -1960-01-08 00:00 219.0 '' '' -1960-01-09 00:00 201.0 '' '' -1960-01-10 00:00 194.0 '' '' -1960-01-11 00:00 200.0 '' '' -1960-01-12 00:00 184.0 '' '' -1960-01-13 00:00 178.0 '' '' -1960-01-14 00:00 176.0 '' '' -1960-01-15 00:00 183.0 '' '' -1960-01-16 00:00 183.0 '' '' -1960-01-17 00:00 179.0 '' '' -1960-01-18 00:00 176.0 '' '' -1960-01-19 00:00 164.0 '' '' -1960-01-20 00:00 157.0 '' '' -1960-01-21 00:00 162.0 '' '' -1960-01-22 00:00 172.0 '' '' -1960-01-23 00:00 188.0 '' '' -1960-01-24 00:00 210.0 '' '' -1960-01-25 00:00 230.0 '' '' -1960-01-26 00:00 242.0 '' '' -1960-01-27 00:00 248.0 '' '' -1960-01-28 00:00 252.0 '' '' -1960-01-29 00:00 237.0 '' '' -1960-01-30 00:00 230.0 '' '' -1960-01-31 00:00 223.0 '' '' -1960-02-01 00:00 225.0 '' '' -1960-02-02 00:00 213.0 '' '' -1960-02-03 00:00 215.0 '' '' -1960-02-04 00:00 209.0 '' '' -1960-02-05 00:00 209.0 '' '' -1960-02-06 00:00 192.0 '' '' -1960-02-07 00:00 187.0 '' '' -1960-02-08 00:00 183.0 '' '' -1960-02-09 00:00 183.0 '' '' -1960-02-10 00:00 178.0 '' '' -1960-02-11 00:00 175.0 '' '' -1960-02-12 00:00 166.0 '' '' -1960-02-13 00:00 167.0 '' '' -1960-02-14 00:00 167.0 '' '' -1960-02-15 00:00 160.0 '' '' -1960-02-16 00:00 158.0 '' '' -1960-02-17 00:00 153.0 '' '' -1960-02-18 00:00 151.0 '' '' -1960-02-19 00:00 146.5 '' '' -1960-02-20 00:00 142.0 '' '' -1960-02-21 00:00 156.0 '' '' -1960-02-22 00:00 149.0 '' '' -1960-02-23 00:00 143.0 '' '' -1960-02-24 00:00 140.0 '' '' -1960-02-25 00:00 147.0 '' '' -1960-02-26 00:00 147.0 '' '' -1960-02-27 00:00 147.0 '' '' -1960-02-28 00:00 140.0 '' '' -1960-02-29 00:00 140.0 '' '' -1960-03-01 00:00 137.0 '' '' -1960-03-02 00:00 137.0 '' '' -1960-03-03 00:00 138.0 '' '' -1960-03-04 00:00 139.0 '' '' -1960-03-05 00:00 140.0 '' '' -1960-03-06 00:00 135.0 '' '' -1960-03-07 00:00 139.0 '' '' -1960-03-08 00:00 141.0 '' '' -1960-03-09 00:00 143.0 '' '' -1960-03-10 00:00 132.0 '' '' -1960-03-11 00:00 132.0 '' '' -1960-03-12 00:00 129.0 '' '' -1960-03-13 00:00 135.0 '' '' -1960-03-14 00:00 134.0 '' '' -1960-03-15 00:00 137.0 '' '' -1960-03-16 00:00 142.0 '' '' -1960-03-17 00:00 140.0 '' '' -1960-03-18 00:00 133.0 '' '' -1960-03-19 00:00 137.0 '' '' -1960-03-20 00:00 143.0 '' '' -1960-03-21 00:00 145.0 '' '' -1960-03-22 00:00 150.0 '' '' -1960-03-23 00:00 154.0 '' '' -1960-03-24 00:00 158.0 '' '' -1960-03-25 00:00 157.0 '' '' -1960-03-26 00:00 163.0 '' '' -1960-03-27 00:00 169.0 '' '' -1960-03-28 00:00 175.0 '' '' -1960-03-29 00:00 181.0 '' '' -1960-03-30 00:00 193.0 '' '' -1960-03-31 00:00 182.0 '' '' -1960-04-01 00:00 201.0 '' '' -1960-04-02 00:00 184.0 '' '' -1960-04-03 00:00 179.0 '' '' -1960-04-04 00:00 188.0 '' '' -1960-04-05 00:00 182.0 '' '' -1960-04-06 00:00 169.0 '' '' -1960-04-07 00:00 165.0 '' '' -1960-04-08 00:00 147.0 '' '' -1960-04-09 00:00 148.0 '' '' -1960-04-10 00:00 156.0 '' '' -1960-04-11 00:00 159.0 '' '' -1960-04-12 00:00 168.0 '' '' -1960-04-13 00:00 179.0 '' '' -1960-04-14 00:00 183.0 '' '' -1960-04-15 00:00 190.0 '' '' -1960-04-16 00:00 183.0 '' '' -1960-04-17 00:00 178.0 '' '' -1960-04-18 00:00 176.0 '' '' -1960-04-19 00:00 170.0 '' '' -1960-04-20 00:00 175.0 '' '' -1960-04-21 00:00 163.0 '' '' -1960-04-22 00:00 160.0 '' '' -1960-04-23 00:00 166.0 '' '' -1960-04-24 00:00 165.0 '' '' -1960-04-25 00:00 147.0 '' '' -1960-04-26 00:00 143.0 '' '' -1960-04-27 00:00 140.0 '' '' -1960-04-28 00:00 142.0 '' '' -1960-04-29 00:00 153.0 '' '' -1960-04-30 00:00 161.0 '' '' -1960-05-01 00:00 152.0 '' '' -1960-05-02 00:00 160.0 '' '' -1960-05-03 00:00 158.0 '' '' -1960-05-04 00:00 156.0 '' '' -1960-05-05 00:00 152.0 '' '' -1960-05-06 00:00 156.0 '' '' -1960-05-07 00:00 162.0 '' '' -1960-05-08 00:00 168.0 '' '' -1960-05-09 00:00 170.0 '' '' -1960-05-10 00:00 170.0 '' '' -1960-05-11 00:00 180.0 '' '' -1960-05-12 00:00 179.0 '' '' -1960-05-13 00:00 170.0 '' '' -1960-05-14 00:00 162.0 '' '' -1960-05-15 00:00 162.0 '' '' -1960-05-16 00:00 155.0 '' '' -1960-05-17 00:00 151.0 '' '' -1960-05-18 00:00 153.0 '' '' -1960-05-19 00:00 153.0 '' '' -1960-05-20 00:00 160.0 '' '' -1960-05-21 00:00 164.0 '' '' -1960-05-22 00:00 164.0 '' '' -1960-05-23 00:00 163.0 '' '' -1960-05-24 00:00 164.0 '' '' -1960-05-25 00:00 163.0 '' '' -1960-05-26 00:00 158.0 '' '' -1960-05-27 00:00 166.0 '' '' -1960-05-28 00:00 171.0 '' '' -1960-05-29 00:00 170.0 '' '' -1960-05-30 00:00 170.0 '' '' -1960-05-31 00:00 159.0 '' '' -1960-06-01 00:00 166.0 '' '' -1960-06-02 00:00 167.0 '' '' -1960-06-03 00:00 167.0 '' '' -1960-06-04 00:00 172.0 '' '' -1960-06-05 00:00 170.0 '' '' -1960-06-06 00:00 175.0 '' '' -1960-06-07 00:00 185.0 '' '' -1960-06-08 00:00 185.0 '' '' -1960-06-09 00:00 181.0 '' '' -1960-06-10 00:00 178.0 '' '' -1960-06-11 00:00 171.0 '' '' -1960-06-12 00:00 167.0 '' '' -1960-06-13 00:00 162.0 '' '' -1960-06-14 00:00 166.0 '' '' -1960-06-15 00:00 166.0 '' '' -1960-06-16 00:00 157.0 '' '' -1960-06-17 00:00 153.0 '' '' -1960-06-18 00:00 139.0 '' '' -1960-06-19 00:00 140.0 '' '' -1960-06-20 00:00 133.0 '' '' -1960-06-21 00:00 131.0 '' '' -1960-06-22 00:00 130.0 '' '' -1960-06-23 00:00 136.0 '' '' -1960-06-24 00:00 132.0 '' '' -1960-06-25 00:00 140.0 '' '' -1960-06-26 00:00 155.0 '' '' -1960-06-27 00:00 164.0 '' '' -1960-06-28 00:00 184.0 '' '' -1960-06-29 00:00 190.0 '' '' -1960-06-30 00:00 194.0 '' '' -1960-07-01 00:00 208.0 '' '' -1960-07-02 00:00 207.0 '' '' -1960-07-03 00:00 210.0 '' '' -1960-07-04 00:00 212.0 '' '' -1960-07-05 00:00 209.0 '' '' -1960-07-06 00:00 200.0 '' '' -1960-07-07 00:00 187.0 '' '' -1960-07-08 00:00 176.0 '' '' -1960-07-09 00:00 176.0 '' '' -1960-07-10 00:00 166.0 '' '' -1960-07-11 00:00 153.0 '' '' -1960-07-12 00:00 142.0 '' '' -1960-07-13 00:00 135.0 '' '' -1960-07-14 00:00 139.0 '' '' -1960-07-15 00:00 146.0 '' '' -1960-07-16 00:00 144.0 '' '' -1960-07-17 00:00 153.0 '' '' -1960-07-18 00:00 159.0 '' '' -1960-07-19 00:00 156.0 '' '' -1960-07-20 00:00 152.0 '' '' -1960-07-21 00:00 153.0 '' '' -1960-07-22 00:00 148.0 '' '' -1960-07-23 00:00 151.0 '' '' -1960-07-24 00:00 159.0 '' '' -1960-07-25 00:00 148.0 '' '' -1960-07-26 00:00 149.0 '' '' -1960-07-27 00:00 150.0 '' '' -1960-07-28 00:00 149.0 '' '' -1960-07-29 00:00 154.0 '' '' -1960-07-30 00:00 146.0 '' '' -1960-07-31 00:00 145.0 '' '' -1960-08-01 00:00 140.0 '' '' -1960-08-02 00:00 134.0 '' '' -1960-08-03 00:00 125.0 '' '' -1960-08-04 00:00 122.0 '' '' -1960-08-05 00:00 126.0 '' '' -1960-08-06 00:00 127.0 '' '' -1960-08-07 00:00 134.0 '' '' -1960-08-08 00:00 145.0 '' '' -1960-08-09 00:00 152.0 '' '' -1960-08-10 00:00 170.0 '' '' -1960-08-11 00:00 187.0 '' '' -1960-08-12 00:00 214.0 '' '' -1960-08-13 00:00 234.0 '' '' -1960-08-14 00:00 238.0 '' '' -1960-08-15 00:00 240.0 '' '' -1960-08-16 00:00 241.0 '' '' -1960-08-17 00:00 247.0 '' '' -1960-08-18 00:00 250.0 '' '' -1960-08-19 00:00 234.0 '' '' -1960-08-20 00:00 219.0 '' '' -1960-08-21 00:00 201.0 '' '' -1960-08-22 00:00 189.0 '' '' -1960-08-23 00:00 171.0 '' '' -1960-08-24 00:00 162.0 '' '' -1960-08-25 00:00 158.0 '' '' -1960-08-26 00:00 162.0 '' '' -1960-08-27 00:00 150.0 '' '' -1960-08-28 00:00 140.0 '' '' -1960-08-29 00:00 129.0 '' '' -1960-08-30 00:00 129.0 '' '' -1960-08-31 00:00 132.0 '' '' -1960-09-01 00:00 137.0 '' '' -1960-09-02 00:00 152.0 '' '' -1960-09-03 00:00 149.0 '' '' -1960-09-04 00:00 142.0 '' '' -1960-09-05 00:00 142.0 '' '' -1960-09-06 00:00 149.0 '' '' -1960-09-07 00:00 162.0 '' '' -1960-09-08 00:00 170.0 '' '' -1960-09-09 00:00 173.0 '' '' -1960-09-10 00:00 175.0 '' '' -1960-09-11 00:00 175.0 '' '' -1960-09-12 00:00 177.0 '' '' -1960-09-13 00:00 181.0 '' '' -1960-09-14 00:00 181.0 '' '' -1960-09-15 00:00 178.0 '' '' -1960-09-16 00:00 177.0 '' '' -1960-09-17 00:00 185.0 '' '' -1960-09-18 00:00 190.0 '' '' -1960-09-19 00:00 199.0 '' '' -1960-09-20 00:00 195.0 '' '' -1960-09-21 00:00 189.0 '' '' -1960-09-22 00:00 184.0 '' '' -1960-09-23 00:00 175.0 '' '' -1960-09-24 00:00 162.0 '' '' -1960-09-25 00:00 155.0 '' '' -1960-09-26 00:00 148.0 '' '' -1960-09-27 00:00 142.0 '' '' -1960-09-28 00:00 132.0 '' '' -1960-09-29 00:00 124.0 '' '' -1960-09-30 00:00 121.0 '' '' -1960-10-01 00:00 115.0 '' '' -1960-10-02 00:00 112.0 '' '' -1960-10-03 00:00 120.0 '' '' -1960-10-04 00:00 132.0 '' '' -1960-10-05 00:00 132.0 '' '' -1960-10-06 00:00 132.0 '' '' -1960-10-07 00:00 144.0 '' '' -1960-10-08 00:00 143.0 '' '' -1960-10-09 00:00 151.0 '' '' -1960-10-10 00:00 159.0 '' '' -1960-10-11 00:00 152.0 '' '' -1960-10-12 00:00 159.0 '' '' -1960-10-13 00:00 162.0 '' '' -1960-10-14 00:00 166.0 '' '' -1960-10-15 00:00 165.0 '' '' -1960-10-16 00:00 165.0 '' '' -1960-10-17 00:00 167.0 '' '' -1960-10-18 00:00 154.0 '' '' -1960-10-19 00:00 153.0 '' '' -1960-10-20 00:00 149.0 '' '' -1960-10-21 00:00 144.0 '' '' -1960-10-22 00:00 141.0 '' '' -1960-10-23 00:00 134.0 '' '' -1960-10-24 00:00 129.0 '' '' -1960-10-25 00:00 130.0 '' '' -1960-10-26 00:00 132.0 '' '' -1960-10-27 00:00 132.0 '' '' -1960-10-28 00:00 122.0 '' '' -1960-10-29 00:00 131.0 '' '' -1960-10-30 00:00 128.0 '' '' -1960-10-31 00:00 127.0 '' '' -1960-11-01 00:00 124.0 '' '' -1960-11-02 00:00 129.0 '' '' -1960-11-03 00:00 130.0 '' '' -1960-11-04 00:00 131.0 '' '' -1960-11-05 00:00 144.0 '' '' -1960-11-06 00:00 148.0 '' '' -1960-11-07 00:00 157.0 '' '' -1960-11-08 00:00 168.0 '' '' -1960-11-09 00:00 175.0 '' '' -1960-11-10 00:00 200.0 '' '' -1960-11-11 00:00 188.0 '' '' -1960-11-12 00:00 168.0 '' '' -1960-11-13 00:00 180.0 '' '' -1960-11-14 00:00 192.0 '' '' -1960-11-15 00:00 183.0 '' '' -1960-11-16 00:00 174.0 '' '' -1960-11-17 00:00 164.0 '' '' -1960-11-18 00:00 153.0 '' '' -1960-11-19 00:00 150.0 '' '' -1960-11-20 00:00 147.0 '' '' -1960-11-21 00:00 139.0 '' '' -1960-11-22 00:00 127.0 '' '' -1960-11-23 00:00 116.0 '' '' -1960-11-24 00:00 113.0 '' '' -1960-11-25 00:00 111.0 '' '' -1960-11-26 00:00 117.0 '' '' -1960-11-27 00:00 119.0 '' '' -1960-11-28 00:00 117.0 '' '' -1960-11-29 00:00 119.0 '' '' -1960-11-30 00:00 131.0 '' '' -1960-12-01 00:00 136.0 '' '' -1960-12-02 00:00 145.0 '' '' -1960-12-03 00:00 152.0 '' '' -1960-12-04 00:00 163.0 '' '' -1960-12-05 00:00 159.0 '' '' -1960-12-06 00:00 161.0 '' '' -1960-12-07 00:00 152.0 '' '' -1960-12-08 00:00 154.0 '' '' -1960-12-09 00:00 150.0 '' '' -1960-12-10 00:00 151.0 '' '' -1960-12-11 00:00 144.0 '' '' -1960-12-12 00:00 140.0 '' '' -1960-12-13 00:00 136.0 '' '' -1960-12-14 00:00 132.0 '' '' -1960-12-15 00:00 138.0 '' '' -1960-12-16 00:00 134.0 '' '' -1960-12-17 00:00 125.0 '' '' -1960-12-18 00:00 118.0 '' '' -1960-12-19 00:00 115.0 '' '' -1960-12-20 00:00 118.0 '' '' -1960-12-21 00:00 116.0 '' '' -1960-12-22 00:00 106.0 '' '' -1960-12-23 00:00 103.0 '' '' -1960-12-24 00:00 106.0 '' '' -1960-12-25 00:00 111.0 '' '' -1960-12-26 00:00 116.0 '' '' -1960-12-27 00:00 125.0 '' '' -1960-12-28 00:00 136.0 '' '' -1960-12-29 00:00 145.0 '' '' -1960-12-30 00:00 159.0 '' '' -1960-12-31 00:00 163.0 '' '' -1961-01-01 00:00 164.0 '' '' -1961-01-02 00:00 176.0 '' '' -1961-01-03 00:00 175.0 '' '' -1961-01-04 00:00 165.0 '' '' -1961-01-05 00:00 160.0 '' '' -1961-01-06 00:00 143.0 '' '' -1961-01-07 00:00 132.0 '' '' -1961-01-08 00:00 125.0 '' '' -1961-01-09 00:00 122.0 '' '' -1961-01-10 00:00 115.0 '' '' -1961-01-11 00:00 110.0 '' '' -1961-01-12 00:00 103.0 '' '' -1961-01-13 00:00 96.0 '' '' -1961-01-14 00:00 96.0 '' '' -1961-01-15 00:00 97.0 '' '' -1961-01-16 00:00 100.0 '' '' -1961-01-17 00:00 102.0 '' '' -1961-01-18 00:00 103.0 '' '' -1961-01-19 00:00 102.0 '' '' -1961-01-20 00:00 102.0 '' '' -1961-01-21 00:00 104.0 '' '' -1961-01-22 00:00 102.0 '' '' -1961-01-23 00:00 100.0 '' '' -1961-01-24 00:00 103.0 '' '' -1961-01-25 00:00 103.0 '' '' -1961-01-26 00:00 108.0 '' '' -1961-01-27 00:00 109.0 '' '' -1961-01-28 00:00 125.0 '' '' -1961-01-29 00:00 132.0 '' '' -1961-01-30 00:00 129.0 '' '' -1961-01-31 00:00 123.0 '' '' -1961-02-01 00:00 123.0 '' '' -1961-02-02 00:00 122.0 '' '' -1961-02-03 00:00 118.0 '' '' -1961-02-04 00:00 118.0 '' '' -1961-02-05 00:00 118.0 '' '' -1961-02-06 00:00 121.0 '' '' -1961-02-07 00:00 114.0 '' '' -1961-02-08 00:00 111.0 '' '' -1961-02-09 00:00 108.0 '' '' -1961-02-10 00:00 104.0 '' '' -1961-02-11 00:00 101.0 '' '' -1961-02-12 00:00 98.0 '' '' -1961-02-13 00:00 97.0 '' '' -1961-02-14 00:00 97.0 '' '' -1961-02-15 00:00 98.0 '' '' -1961-02-16 00:00 96.0 '' '' -1961-02-17 00:00 96.0 '' '' -1961-02-18 00:00 96.0 '' '' -1961-02-19 00:00 96.0 '' '' -1961-02-20 00:00 99.0 '' '' -1961-02-21 00:00 100.0 '' '' -1961-02-22 00:00 102.0 '' '' -1961-02-23 00:00 103.0 '' '' -1961-02-24 00:00 104.0 '' '' -1961-02-25 00:00 106.0 '' '' -1961-02-26 00:00 101.0 '' '' -1961-02-27 00:00 103.0 '' '' -1961-02-28 00:00 103.0 '' '' -1961-03-01 00:00 103.0 '' '' -1961-03-02 00:00 103.0 '' '' -1961-03-03 00:00 104.0 '' '' -1961-03-04 00:00 96.0 '' '' -1961-03-05 00:00 94.0 '' '' -1961-03-06 00:00 93.0 '' '' -1961-03-07 00:00 95.0 '' '' -1961-03-08 00:00 94.0 '' '' -1961-03-09 00:00 90.0 '' '' -1961-03-10 00:00 91.0 '' '' -1961-03-11 00:00 98.0 '' '' -1961-03-12 00:00 92.0 '' '' -1961-03-13 00:00 93.0 '' '' -1961-03-14 00:00 91.0 '' '' -1961-03-15 00:00 98.0 '' '' -1961-03-16 00:00 99.0 '' '' -1961-03-17 00:00 98.0 '' '' -1961-03-18 00:00 101.0 '' '' -1961-03-19 00:00 102.0 '' '' -1961-03-20 00:00 105.0 '' '' -1961-03-21 00:00 105.0 '' '' -1961-03-22 00:00 106.0 '' '' -1961-03-23 00:00 110.0 '' '' -1961-03-24 00:00 116.0 '' '' -1961-03-25 00:00 118.0 '' '' -1961-03-26 00:00 121.0 '' '' -1961-03-27 00:00 125.0 '' '' -1961-03-28 00:00 126.0 '' '' -1961-03-29 00:00 126.0 '' '' -1961-03-30 00:00 125.0 '' '' -1961-03-31 00:00 117.0 '' '' -1961-04-01 00:00 113.0 '' '' -1961-04-02 00:00 105.0 '' '' -1961-04-03 00:00 101.0 '' '' -1961-04-04 00:00 103.0 '' '' -1961-04-05 00:00 107.0 '' '' -1961-04-06 00:00 106.0 '' '' -1961-04-07 00:00 98.0 '' '' -1961-04-08 00:00 104.0 '' '' -1961-04-09 00:00 96.0 '' '' -1961-04-10 00:00 93.0 '' '' -1961-04-11 00:00 92.0 '' '' -1961-04-12 00:00 89.0 '' '' -1961-04-13 00:00 88.0 '' '' -1961-04-14 00:00 93.0 '' '' -1961-04-15 00:00 98.0 '' '' -1961-04-16 00:00 103.0 '' '' -1961-04-17 00:00 105.0 '' '' -1961-04-18 00:00 107.0 '' '' -1961-04-19 00:00 105.0 '' '' -1961-04-20 00:00 103.0 '' '' -1961-04-21 00:00 104.0 '' '' -1961-04-22 00:00 103.0 '' '' -1961-04-23 00:00 105.0 '' '' -1961-04-24 00:00 111.0 '' '' -1961-04-25 00:00 111.0 '' '' -1961-04-26 00:00 126.0 '' '' -1961-04-27 00:00 120.0 '' '' -1961-04-28 00:00 114.0 '' '' -1961-04-29 00:00 121.0 '' '' -1961-04-30 00:00 122.0 '' '' -1961-05-01 00:00 125.0 '' '' -1961-05-02 00:00 119.0 '' '' -1961-05-03 00:00 111.0 '' '' -1961-05-04 00:00 104.0 '' '' -1961-05-05 00:00 103.0 '' '' -1961-05-06 00:00 97.0 '' '' -1961-05-07 00:00 97.0 '' '' -1961-05-08 00:00 94.0 '' '' -1961-05-09 00:00 96.0 '' '' -1961-05-10 00:00 92.0 '' '' -1961-05-11 00:00 98.0 '' '' -1961-05-12 00:00 101.0 '' '' -1961-05-13 00:00 97.0 '' '' -1961-05-14 00:00 93.0 '' '' -1961-05-15 00:00 91.0 '' '' -1961-05-16 00:00 88.0 '' '' -1961-05-17 00:00 88.0 '' '' -1961-05-18 00:00 95.0 '' '' -1961-05-19 00:00 100.0 '' '' -1961-05-20 00:00 105.0 '' '' -1961-05-21 00:00 110.0 '' '' -1961-05-22 00:00 109.0 '' '' -1961-05-23 00:00 110.0 '' '' -1961-05-24 00:00 108.0 '' '' -1961-05-25 00:00 106.0 '' '' -1961-05-26 00:00 88.0 '' '' -1961-05-27 00:00 95.0 '' '' -1961-05-28 00:00 91.0 '' '' -1961-05-29 00:00 91.0 '' '' -1961-05-30 00:00 88.0 '' '' -1961-05-31 00:00 88.0 '' '' -1961-06-01 00:00 86.0 '' '' -1961-06-02 00:00 88.0 '' '' -1961-06-03 00:00 92.0 '' '' -1961-06-04 00:00 89.0 '' '' -1961-06-05 00:00 86.0 '' '' -1961-06-06 00:00 88.0 '' '' -1961-06-07 00:00 89.0 '' '' -1961-06-08 00:00 91.0 '' '' -1961-06-09 00:00 100.0 '' '' -1961-06-10 00:00 102.0 '' '' -1961-06-11 00:00 110.0 '' '' -1961-06-12 00:00 108.0 '' '' -1961-06-13 00:00 114.0 '' '' -1961-06-14 00:00 123.0 '' '' -1961-06-15 00:00 129.0 '' '' -1961-06-16 00:00 132.0 '' '' -1961-06-17 00:00 137.0 '' '' -1961-06-18 00:00 136.0 '' '' -1961-06-19 00:00 131.0 '' '' -1961-06-20 00:00 131.0 '' '' -1961-06-21 00:00 132.0 '' '' -1961-06-22 00:00 134.0 '' '' -1961-06-23 00:00 135.0 '' '' -1961-06-24 00:00 117.0 '' '' -1961-06-25 00:00 111.0 '' '' -1961-06-26 00:00 108.0 '' '' -1961-06-27 00:00 99.0 '' '' -1961-06-28 00:00 95.0 '' '' -1961-06-29 00:00 102.0 '' '' -1961-06-30 00:00 103.0 '' '' -1961-07-01 00:00 104.0 '' '' -1961-07-02 00:00 99.0 '' '' -1961-07-03 00:00 104.0 '' '' -1961-07-04 00:00 103.0 '' '' -1961-07-05 00:00 106.0 '' '' -1961-07-06 00:00 102.0 '' '' -1961-07-07 00:00 105.0 '' '' -1961-07-08 00:00 107.0 '' '' -1961-07-09 00:00 112.0 '' '' -1961-07-10 00:00 124.0 '' '' -1961-07-11 00:00 138.0 '' '' -1961-07-12 00:00 137.0 '' '' -1961-07-13 00:00 141.0 '' '' -1961-07-14 00:00 136.0 '' '' -1961-07-15 00:00 136.0 '' '' -1961-07-16 00:00 132.0 '' '' -1961-07-17 00:00 137.0 '' '' -1961-07-18 00:00 131.0 '' '' -1961-07-19 00:00 126.0 '' '' -1961-07-20 00:00 123.0 '' '' -1961-07-21 00:00 118.0 '' '' -1961-07-22 00:00 119.0 '' '' -1961-07-23 00:00 118.0 '' '' -1961-07-24 00:00 118.0 '' '' -1961-07-25 00:00 117.0 '' '' -1961-07-26 00:00 115.0 '' '' -1961-07-27 00:00 111.0 '' '' -1961-07-28 00:00 105.0 '' '' -1961-07-29 00:00 103.0 '' '' -1961-07-30 00:00 92.0 '' '' -1961-07-31 00:00 91.0 '' '' -1961-08-01 00:00 90.0 '' '' -1961-08-02 00:00 87.0 '' '' -1961-08-03 00:00 91.0 '' '' -1961-08-04 00:00 88.0 '' '' -1961-08-05 00:00 90.0 '' '' -1961-08-06 00:00 92.0 '' '' -1961-08-07 00:00 99.0 '' '' -1961-08-08 00:00 105.0 '' '' -1961-08-09 00:00 113.0 '' '' -1961-08-10 00:00 122.0 '' '' -1961-08-11 00:00 130.0 '' '' -1961-08-12 00:00 128.0 '' '' -1961-08-13 00:00 128.0 '' '' -1961-08-14 00:00 127.0 '' '' -1961-08-15 00:00 123.0 '' '' -1961-08-16 00:00 119.0 '' '' -1961-08-17 00:00 119.0 '' '' -1961-08-18 00:00 116.0 '' '' -1961-08-19 00:00 113.0 '' '' -1961-08-20 00:00 109.0 '' '' -1961-08-21 00:00 104.0 '' '' -1961-08-22 00:00 103.0 '' '' -1961-08-23 00:00 98.0 '' '' -1961-08-24 00:00 97.0 '' '' -1961-08-25 00:00 93.0 '' '' -1961-08-26 00:00 95.0 '' '' -1961-08-27 00:00 95.0 '' '' -1961-08-28 00:00 100.0 '' '' -1961-08-29 00:00 103.0 '' '' -1961-08-30 00:00 106.0 '' '' -1961-08-31 00:00 108.0 '' '' -1961-09-01 00:00 110.0 '' '' -1961-09-02 00:00 110.0 '' '' -1961-09-03 00:00 117.0 '' '' -1961-09-04 00:00 118.0 '' '' -1961-09-05 00:00 114.0 '' '' -1961-09-06 00:00 112.0 '' '' -1961-09-07 00:00 115.0 '' '' -1961-09-08 00:00 117.0 '' '' -1961-09-09 00:00 126.0 '' '' -1961-09-10 00:00 130.0 '' '' -1961-09-11 00:00 127.0 '' '' -1961-09-12 00:00 130.0 '' '' -1961-09-13 00:00 130.0 '' '' -1961-09-14 00:00 137.0 '' '' -1961-09-15 00:00 135.0 '' '' -1961-09-16 00:00 133.0 '' '' -1961-09-17 00:00 124.0 '' '' -1961-09-18 00:00 115.0 '' '' -1961-09-19 00:00 108.0 '' '' -1961-09-20 00:00 101.0 '' '' -1961-09-21 00:00 96.0 '' '' -1961-09-22 00:00 92.0 '' '' -1961-09-23 00:00 90.0 '' '' -1961-09-24 00:00 97.0 '' '' -1961-09-25 00:00 97.0 '' '' -1961-09-26 00:00 98.0 '' '' -1961-09-27 00:00 96.0 '' '' -1961-09-28 00:00 96.0 '' '' -1961-09-29 00:00 102.0 '' '' -1961-09-30 00:00 100.0 '' '' -1961-10-01 00:00 98.0 '' '' -1961-10-02 00:00 97.0 '' '' -1961-10-03 00:00 97.0 '' '' -1961-10-04 00:00 102.0 '' '' -1961-10-05 00:00 108.0 '' '' -1961-10-06 00:00 101.0 '' '' -1961-10-07 00:00 99.0 '' '' -1961-10-08 00:00 98.0 '' '' -1961-10-09 00:00 107.0 '' '' -1961-10-10 00:00 106.0 '' '' -1961-10-11 00:00 107.0 '' '' -1961-10-12 00:00 111.0 '' '' -1961-10-13 00:00 111.0 '' '' -1961-10-14 00:00 105.0 '' '' -1961-10-15 00:00 106.0 '' '' -1961-10-16 00:00 100.0 '' '' -1961-10-17 00:00 97.0 '' '' -1961-10-18 00:00 95.0 '' '' -1961-10-19 00:00 95.0 '' '' -1961-10-20 00:00 93.0 '' '' -1961-10-21 00:00 92.0 '' '' -1961-10-22 00:00 89.0 '' '' -1961-10-23 00:00 85.0 '' '' -1961-10-24 00:00 85.0 '' '' -1961-10-25 00:00 83.0 '' '' -1961-10-26 00:00 83.0 '' '' -1961-10-27 00:00 84.0 '' '' -1961-10-28 00:00 86.0 '' '' -1961-10-29 00:00 85.0 '' '' -1961-10-30 00:00 87.0 '' '' -1961-10-31 00:00 86.0 '' '' -1961-11-01 00:00 86.0 '' '' -1961-11-02 00:00 83.0 '' '' -1961-11-03 00:00 81.0 '' '' -1961-11-04 00:00 82.0 '' '' -1961-11-05 00:00 87.0 '' '' -1961-11-06 00:00 87.0 '' '' -1961-11-07 00:00 93.0 '' '' -1961-11-08 00:00 99.0 '' '' -1961-11-09 00:00 98.0 '' '' -1961-11-10 00:00 101.0 '' '' -1961-11-11 00:00 99.0 '' '' -1961-11-12 00:00 94.0 '' '' -1961-11-13 00:00 91.0 '' '' -1961-11-14 00:00 86.0 '' '' -1961-11-15 00:00 84.0 '' '' -1961-11-16 00:00 86.0 '' '' -1961-11-17 00:00 83.0 '' '' -1961-11-18 00:00 79.0 '' '' -1961-11-19 00:00 77.0 '' '' -1961-11-20 00:00 80.0 '' '' -1961-11-21 00:00 83.0 '' '' -1961-11-22 00:00 84.0 '' '' -1961-11-23 00:00 87.0 '' '' -1961-11-24 00:00 87.0 '' '' -1961-11-25 00:00 92.0 '' '' -1961-11-26 00:00 93.0 '' '' -1961-11-27 00:00 95.0 '' '' -1961-11-28 00:00 98.0 '' '' -1961-11-29 00:00 98.0 '' '' -1961-11-30 00:00 104.0 '' '' -1961-12-01 00:00 105.0 '' '' -1961-12-02 00:00 108.0 '' '' -1961-12-03 00:00 111.0 '' '' -1961-12-04 00:00 105.0 '' '' -1961-12-05 00:00 101.0 '' '' -1961-12-06 00:00 101.0 '' '' -1961-12-07 00:00 94.0 '' '' -1961-12-08 00:00 96.0 '' '' -1961-12-09 00:00 92.0 '' '' -1961-12-10 00:00 87.0 '' '' -1961-12-11 00:00 82.0 '' '' -1961-12-12 00:00 78.0 '' '' -1961-12-13 00:00 82.0 '' '' -1961-12-14 00:00 81.0 '' '' -1961-12-15 00:00 81.0 '' '' -1961-12-16 00:00 81.0 '' '' -1961-12-17 00:00 79.0 '' '' -1961-12-18 00:00 81.0 '' '' -1961-12-19 00:00 82.0 '' '' -1961-12-20 00:00 88.0 '' '' -1961-12-21 00:00 90.0 '' '' -1961-12-22 00:00 99.0 '' '' -1961-12-23 00:00 101.0 '' '' -1961-12-24 00:00 104.0 '' '' -1961-12-25 00:00 103.0 '' '' -1961-12-26 00:00 102.0 '' '' -1961-12-27 00:00 103.0 '' '' -1961-12-28 00:00 98.0 '' '' -1961-12-29 00:00 98.0 '' '' -1961-12-30 00:00 94.0 '' '' -1961-12-31 00:00 93.0 '' '' -1962-01-01 00:00 88.3 '' '' -1962-01-02 00:00 83.7 '' '' -1962-01-03 00:00 79.0 '' '' -1962-01-04 00:00 81.0 '' '' -1962-01-05 00:00 78.0 '' '' -1962-01-06 00:00 77.0 '' '' -1962-01-07 00:00 77.0 '' '' -1962-01-08 00:00 74.0 '' '' -1962-01-09 00:00 74.0 '' '' -1962-01-10 00:00 75.0 '' '' -1962-01-11 00:00 76.0 '' '' -1962-01-12 00:00 77.0 '' '' -1962-01-13 00:00 74.0 '' '' -1962-01-14 00:00 82.0 '' '' -1962-01-15 00:00 86.0 '' '' -1962-01-16 00:00 84.0 '' '' -1962-01-17 00:00 87.0 '' '' -1962-01-18 00:00 94.0 '' '' -1962-01-19 00:00 99.0 '' '' -1962-01-20 00:00 107.0 '' '' -1962-01-21 00:00 112.0 '' '' -1962-01-22 00:00 111.0 '' '' -1962-01-23 00:00 116.0 '' '' -1962-01-24 00:00 114.0 '' '' -1962-01-25 00:00 115.0 '' '' -1962-01-26 00:00 115.0 '' '' -1962-01-27 00:00 115.0 '' '' -1962-01-28 00:00 115.0 '' '' -1962-01-29 00:00 109.0 '' '' -1962-01-30 00:00 101.0 '' '' -1962-01-31 00:00 102.0 '' '' -1962-02-01 00:00 110.0 '' '' -1962-02-02 00:00 103.0 '' '' -1962-02-03 00:00 101.0 '' '' -1962-02-04 00:00 104.0 '' '' -1962-02-05 00:00 92.0 '' '' -1962-02-06 00:00 86.0 '' '' -1962-02-07 00:00 82.0 '' '' -1962-02-08 00:00 82.0 '' '' -1962-02-09 00:00 83.0 '' '' -1962-02-10 00:00 81.0 '' '' -1962-02-11 00:00 82.0 '' '' -1962-02-12 00:00 81.0 '' '' -1962-02-13 00:00 84.0 '' '' -1962-02-14 00:00 83.0 '' '' -1962-02-15 00:00 83.0 '' '' -1962-02-16 00:00 86.0 '' '' -1962-02-17 00:00 87.0 '' '' -1962-02-18 00:00 91.0 '' '' -1962-02-19 00:00 108.0 '' '' -1962-02-20 00:00 107.0 '' '' -1962-02-21 00:00 114.0 '' '' -1962-02-22 00:00 121.0 '' '' -1962-02-23 00:00 136.0 '' '' -1962-02-24 00:00 134.0 '' '' -1962-02-25 00:00 129.0 '' '' -1962-02-26 00:00 129.0 '' '' -1962-02-27 00:00 136.0 '' '' -1962-02-28 00:00 122.0 '' '' -1962-03-01 00:00 121.0 '' '' -1962-03-02 00:00 112.0 '' '' -1962-03-03 00:00 100.0 '' '' -1962-03-04 00:00 89.0 '' '' -1962-03-05 00:00 86.0 '' '' -1962-03-06 00:00 81.0 '' '' -1962-03-07 00:00 80.0 '' '' -1962-03-08 00:00 77.0 '' '' -1962-03-09 00:00 79.0 '' '' -1962-03-10 00:00 76.0 '' '' -1962-03-11 00:00 78.0 '' '' -1962-03-12 00:00 82.0 '' '' -1962-03-13 00:00 81.0 '' '' -1962-03-14 00:00 82.0 '' '' -1962-03-15 00:00 84.0 '' '' -1962-03-16 00:00 86.0 '' '' -1962-03-17 00:00 94.0 '' '' -1962-03-18 00:00 98.0 '' '' -1962-03-19 00:00 116.0 '' '' -1962-03-20 00:00 118.0 '' '' -1962-03-21 00:00 127.0 '' '' -1962-03-22 00:00 128.0 '' '' -1962-03-23 00:00 130.0 '' '' -1962-03-24 00:00 126.0 '' '' -1962-03-25 00:00 128.0 '' '' -1962-03-26 00:00 118.0 '' '' -1962-03-27 00:00 117.0 '' '' -1962-03-28 00:00 109.0 '' '' -1962-03-29 00:00 103.0 '' '' -1962-03-30 00:00 99.0 '' '' -1962-03-31 00:00 92.0 '' '' -1962-04-01 00:00 88.0 '' '' -1962-04-02 00:00 83.0 '' '' -1962-04-03 00:00 80.0 '' '' -1962-04-04 00:00 78.0 '' '' -1962-04-05 00:00 76.0 '' '' -1962-04-06 00:00 78.0 '' '' -1962-04-07 00:00 77.0 '' '' -1962-04-08 00:00 77.0 '' '' -1962-04-09 00:00 78.0 '' '' -1962-04-10 00:00 81.0 '' '' -1962-04-11 00:00 88.0 '' '' -1962-04-12 00:00 93.0 '' '' -1962-04-13 00:00 102.0 '' '' -1962-04-14 00:00 110.0 '' '' -1962-04-15 00:00 111.0 '' '' -1962-04-16 00:00 119.0 '' '' -1962-04-17 00:00 114.0 '' '' -1962-04-18 00:00 110.0 '' '' -1962-04-19 00:00 109.0 '' '' -1962-04-20 00:00 109.0 '' '' -1962-04-21 00:00 112.0 '' '' -1962-04-22 00:00 113.0 '' '' -1962-04-23 00:00 108.0 '' '' -1962-04-24 00:00 105.0 '' '' -1962-04-25 00:00 101.0 '' '' -1962-04-26 00:00 100.0 '' '' -1962-04-27 00:00 100.0 '' '' -1962-04-28 00:00 96.0 '' '' -1962-04-29 00:00 93.0 '' '' -1962-04-30 00:00 91.0 '' '' -1962-05-01 00:00 91.0 '' '' -1962-05-02 00:00 91.0 '' '' -1962-05-03 00:00 91.0 '' '' -1962-05-04 00:00 91.0 '' '' -1962-05-05 00:00 87.0 '' '' -1962-05-06 00:00 86.0 '' '' -1962-05-07 00:00 83.0 '' '' -1962-05-08 00:00 84.0 '' '' -1962-05-09 00:00 87.0 '' '' -1962-05-10 00:00 92.5 '' '' -1962-05-11 00:00 98.0 '' '' -1962-05-12 00:00 98.0 '' '' -1962-05-13 00:00 96.0 '' '' -1962-05-14 00:00 94.0 '' '' -1962-05-15 00:00 88.0 '' '' -1962-05-16 00:00 82.0 '' '' -1962-05-17 00:00 93.0 '' '' -1962-05-18 00:00 91.0 '' '' -1962-05-19 00:00 97.0 '' '' -1962-05-20 00:00 103.0 '' '' -1962-05-21 00:00 106.0 '' '' -1962-05-22 00:00 107.3 '' '' -1962-05-23 00:00 108.7 '' '' -1962-05-24 00:00 110.0 '' '' -1962-05-25 00:00 112.0 '' '' -1962-05-26 00:00 110.0 '' '' -1962-05-27 00:00 108.0 '' '' -1962-05-28 00:00 105.0 '' '' -1962-05-29 00:00 104.0 '' '' -1962-05-30 00:00 105.0 '' '' -1962-05-31 00:00 101.5 '' '' -1962-06-01 00:00 98.0 '' '' -1962-06-02 00:00 92.0 '' '' -1962-06-03 00:00 87.0 '' '' -1962-06-04 00:00 85.0 '' '' -1962-06-05 00:00 85.0 '' '' -1962-06-06 00:00 87.0 '' '' -1962-06-07 00:00 92.0 '' '' -1962-06-08 00:00 90.0 '' '' -1962-06-09 00:00 91.0 '' '' -1962-06-10 00:00 90.0 '' '' -1962-06-11 00:00 89.0 '' '' -1962-06-12 00:00 88.0 '' '' -1962-06-13 00:00 89.0 '' '' -1962-06-14 00:00 89.0 '' '' -1962-06-15 00:00 93.0 '' '' -1962-06-16 00:00 95.0 '' '' -1962-06-17 00:00 98.0 '' '' -1962-06-18 00:00 97.0 '' '' -1962-06-19 00:00 98.0 '' '' -1962-06-20 00:00 96.0 '' '' -1962-06-21 00:00 90.0 '' '' -1962-06-22 00:00 90.0 '' '' -1962-06-23 00:00 86.0 '' '' -1962-06-24 00:00 87.0 '' '' -1962-06-25 00:00 90.0 '' '' -1962-06-26 00:00 92.0 '' '' -1962-06-27 00:00 93.0 '' '' -1962-06-28 00:00 91.0 '' '' -1962-06-29 00:00 90.8 '' '' -1962-06-30 00:00 90.7 '' '' -1962-07-01 00:00 90.5 '' '' -1962-07-02 00:00 90.3 '' '' -1962-07-03 00:00 90.2 '' '' -1962-07-04 00:00 90.0 '' '' -1962-07-05 00:00 88.0 '' '' -1962-07-06 00:00 86.0 '' '' -1962-07-07 00:00 88.0 '' '' -1962-07-08 00:00 83.0 '' '' -1962-07-09 00:00 80.0 '' '' -1962-07-10 00:00 81.0 '' '' -1962-07-11 00:00 83.0 '' '' -1962-07-12 00:00 82.0 '' '' -1962-07-13 00:00 86.0 '' '' -1962-07-14 00:00 86.0 '' '' -1962-07-15 00:00 85.0 '' '' -1962-07-16 00:00 84.0 '' '' -1962-07-17 00:00 84.0 '' '' -1962-07-18 00:00 82.0 '' '' -1962-07-19 00:00 80.0 '' '' -1962-07-20 00:00 80.0 '' '' -1962-07-21 00:00 79.0 '' '' -1962-07-22 00:00 80.0 '' '' -1962-07-23 00:00 78.0 '' '' -1962-07-24 00:00 78.0 '' '' -1962-07-25 00:00 74.0 '' '' -1962-07-26 00:00 76.0 '' '' -1962-07-27 00:00 74.0 '' '' -1962-07-28 00:00 74.0 '' '' -1962-07-29 00:00 73.0 '' '' -1962-07-30 00:00 72.0 '' '' -1962-07-31 00:00 73.0 '' '' -1962-08-01 00:00 71.0 '' '' -1962-08-02 00:00 73.0 '' '' -1962-08-03 00:00 72.0 '' '' -1962-08-04 00:00 73.0 '' '' -1962-08-05 00:00 70.0 '' '' -1962-08-06 00:00 72.0 '' '' -1962-08-07 00:00 71.0 '' '' -1962-08-08 00:00 72.0 '' '' -1962-08-09 00:00 73.0 '' '' -1962-08-10 00:00 76.0 '' '' -1962-08-11 00:00 74.0 '' '' -1962-08-12 00:00 76.0 '' '' -1962-08-13 00:00 79.0 '' '' -1962-08-14 00:00 83.0 '' '' -1962-08-15 00:00 92.0 '' '' -1962-08-16 00:00 90.0 '' '' -1962-08-17 00:00 89.0 '' '' -1962-08-18 00:00 85.0 '' '' -1962-08-19 00:00 83.0 '' '' -1962-08-20 00:00 84.0 '' '' -1962-08-21 00:00 82.0 '' '' -1962-08-22 00:00 80.0 '' '' -1962-08-23 00:00 79.0 '' '' -1962-08-24 00:00 79.0 '' '' -1962-08-25 00:00 77.0 '' '' -1962-08-26 00:00 75.0 '' '' -1962-08-27 00:00 73.0 '' '' -1962-08-28 00:00 72.0 '' '' -1962-08-29 00:00 72.0 '' '' -1962-08-30 00:00 72.0 '' '' -1962-08-31 00:00 75.0 '' '' -1962-09-01 00:00 84.0 '' '' -1962-09-02 00:00 93.0 '' '' -1962-09-03 00:00 98.0 '' '' -1962-09-04 00:00 99.0 '' '' -1962-09-05 00:00 98.0 '' '' -1962-09-06 00:00 100.0 '' '' -1962-09-07 00:00 100.0 '' '' -1962-09-08 00:00 97.0 '' '' -1962-09-09 00:00 94.0 '' '' -1962-09-10 00:00 91.0 '' '' -1962-09-11 00:00 90.0 '' '' -1962-09-12 00:00 93.0 '' '' -1962-09-13 00:00 92.0 '' '' -1962-09-14 00:00 95.0 '' '' -1962-09-15 00:00 93.0 '' '' -1962-09-16 00:00 91.0 '' '' -1962-09-17 00:00 78.0 '' '' -1962-09-18 00:00 86.0 '' '' -1962-09-19 00:00 84.0 '' '' -1962-09-20 00:00 84.0 '' '' -1962-09-21 00:00 83.0 '' '' -1962-09-22 00:00 81.0 '' '' -1962-09-23 00:00 82.0 '' '' -1962-09-24 00:00 82.0 '' '' -1962-09-25 00:00 84.0 '' '' -1962-09-26 00:00 84.0 '' '' -1962-09-27 00:00 84.0 '' '' -1962-09-28 00:00 83.0 '' '' -1962-09-29 00:00 86.0 '' '' -1962-09-30 00:00 90.0 '' '' -1962-10-01 00:00 86.0 '' '' -1962-10-02 00:00 86.0 '' '' -1962-10-03 00:00 83.0 '' '' -1962-10-04 00:00 82.0 '' '' -1962-10-05 00:00 86.0 '' '' -1962-10-06 00:00 84.0 '' '' -1962-10-07 00:00 85.0 '' '' -1962-10-08 00:00 87.0 '' '' -1962-10-09 00:00 86.0 '' '' -1962-10-10 00:00 93.0 '' '' -1962-10-11 00:00 93.0 '' '' -1962-10-12 00:00 93.0 '' '' -1962-10-13 00:00 95.0 '' '' -1962-10-14 00:00 95.0 '' '' -1962-10-15 00:00 94.0 '' '' -1962-10-16 00:00 91.0 '' '' -1962-10-17 00:00 91.0 '' '' -1962-10-18 00:00 89.0 '' '' -1962-10-19 00:00 87.0 '' '' -1962-10-20 00:00 88.0 '' '' -1962-10-21 00:00 87.0 '' '' -1962-10-22 00:00 85.0 '' '' -1962-10-23 00:00 84.0 '' '' -1962-10-24 00:00 89.0 '' '' -1962-10-25 00:00 87.0 '' '' -1962-10-26 00:00 87.0 '' '' -1962-10-27 00:00 86.0 '' '' -1962-10-28 00:00 82.0 '' '' -1962-10-29 00:00 80.0 '' '' -1962-10-30 00:00 82.0 '' '' -1962-10-31 00:00 81.0 '' '' -1962-11-01 00:00 80.0 '' '' -1962-11-02 00:00 80.0 '' '' -1962-11-03 00:00 80.0 '' '' -1962-11-04 00:00 82.0 '' '' -1962-11-05 00:00 82.0 '' '' -1962-11-06 00:00 83.0 '' '' -1962-11-07 00:00 84.0 '' '' -1962-11-08 00:00 85.0 '' '' -1962-11-09 00:00 86.0 '' '' -1962-11-10 00:00 86.5 '' '' -1962-11-11 00:00 87.0 '' '' -1962-11-12 00:00 88.0 '' '' -1962-11-13 00:00 93.0 '' '' -1962-11-14 00:00 99.0 '' '' -1962-11-15 00:00 95.0 '' '' -1962-11-16 00:00 99.0 '' '' -1962-11-17 00:00 94.0 '' '' -1962-11-18 00:00 88.0 '' '' -1962-11-19 00:00 89.0 '' '' -1962-11-20 00:00 86.0 '' '' -1962-11-21 00:00 81.0 '' '' -1962-11-22 00:00 79.0 '' '' -1962-11-23 00:00 77.0 '' '' -1962-11-24 00:00 80.0 '' '' -1962-11-25 00:00 77.0 '' '' -1962-11-26 00:00 77.0 '' '' -1962-11-27 00:00 75.0 '' '' -1962-11-28 00:00 74.0 '' '' -1962-11-29 00:00 75.0 '' '' -1962-11-30 00:00 77.0 '' '' -1962-12-01 00:00 77.0 '' '' -1962-12-02 00:00 81.0 '' '' -1962-12-03 00:00 83.0 '' '' -1962-12-04 00:00 82.0 '' '' -1962-12-05 00:00 82.0 '' '' -1962-12-06 00:00 83.0 '' '' -1962-12-07 00:00 86.0 '' '' -1962-12-08 00:00 84.0 '' '' -1962-12-09 00:00 83.0 '' '' -1962-12-10 00:00 84.0 '' '' -1962-12-11 00:00 78.0 '' '' -1962-12-12 00:00 76.0 '' '' -1962-12-13 00:00 77.0 '' '' -1962-12-14 00:00 76.0 '' '' -1962-12-15 00:00 76.0 '' '' -1962-12-16 00:00 76.0 '' '' -1962-12-17 00:00 78.0 '' '' -1962-12-18 00:00 83.0 '' '' -1962-12-19 00:00 84.0 '' '' -1962-12-20 00:00 86.0 '' '' -1962-12-21 00:00 85.0 '' '' -1962-12-22 00:00 82.0 '' '' -1962-12-23 00:00 79.0 '' '' -1962-12-24 00:00 79.0 '' '' -1962-12-25 00:00 77.8 '' '' -1962-12-26 00:00 76.5 '' '' -1962-12-27 00:00 75.2 '' '' -1962-12-28 00:00 74.0 '' '' -1962-12-29 00:00 74.5 '' '' -1962-12-30 00:00 75.0 '' '' -1962-12-31 00:00 75.5 '' '' -1963-01-01 00:00 76.0 '' '' -1963-01-02 00:00 76.5 '' '' -1963-01-03 00:00 77.0 '' '' -1963-01-04 00:00 79.0 '' '' -1963-01-05 00:00 77.0 '' '' -1963-01-06 00:00 77.0 '' '' -1963-01-07 00:00 77.0 '' '' -1963-01-08 00:00 76.0 '' '' -1963-01-09 00:00 78.0 '' '' -1963-01-10 00:00 80.0 '' '' -1963-01-11 00:00 81.0 '' '' -1963-01-12 00:00 78.0 '' '' -1963-01-13 00:00 79.0 '' '' -1963-01-14 00:00 86.0 '' '' -1963-01-15 00:00 85.0 '' '' -1963-01-16 00:00 82.0 '' '' -1963-01-17 00:00 82.0 '' '' -1963-01-18 00:00 80.0 '' '' -1963-01-19 00:00 78.0 '' '' -1963-01-20 00:00 78.0 '' '' -1963-01-21 00:00 76.0 '' '' -1963-01-22 00:00 75.0 '' '' -1963-01-23 00:00 74.0 '' '' -1963-01-24 00:00 73.0 '' '' -1963-01-25 00:00 74.0 '' '' -1963-01-26 00:00 73.0 '' '' -1963-01-27 00:00 81.0 '' '' -1963-01-28 00:00 80.0 '' '' -1963-01-29 00:00 79.0 '' '' -1963-01-30 00:00 78.0 '' '' -1963-01-31 00:00 82.0 '' '' -1963-02-01 00:00 87.0 '' '' -1963-02-02 00:00 86.0 '' '' -1963-02-03 00:00 85.0 '' '' -1963-02-04 00:00 88.0 '' '' -1963-02-05 00:00 87.0 '' '' -1963-02-06 00:00 85.0 '' '' -1963-02-07 00:00 83.0 '' '' -1963-02-08 00:00 82.0 '' '' -1963-02-09 00:00 79.0 '' '' -1963-02-10 00:00 79.0 '' '' -1963-02-11 00:00 76.0 '' '' -1963-02-12 00:00 74.0 '' '' -1963-02-13 00:00 74.0 '' '' -1963-02-14 00:00 75.0 '' '' -1963-02-15 00:00 76.0 '' '' -1963-02-16 00:00 77.0 '' '' -1963-02-17 00:00 79.0 '' '' -1963-02-18 00:00 81.0 '' '' -1963-02-19 00:00 79.0 '' '' -1963-02-20 00:00 77.0 '' '' -1963-02-21 00:00 74.0 '' '' -1963-02-22 00:00 76.0 '' '' -1963-02-23 00:00 75.0 '' '' -1963-02-24 00:00 76.0 '' '' -1963-02-25 00:00 78.0 '' '' -1963-02-26 00:00 77.0 '' '' -1963-02-27 00:00 75.0 '' '' -1963-02-28 00:00 74.0 '' '' -1963-03-01 00:00 74.0 '' '' -1963-03-02 00:00 75.0 '' '' -1963-03-03 00:00 78.0 '' '' -1963-03-04 00:00 80.0 '' '' -1963-03-05 00:00 82.0 '' '' -1963-03-06 00:00 85.0 '' '' -1963-03-07 00:00 84.0 '' '' -1963-03-08 00:00 83.0 '' '' -1963-03-09 00:00 82.0 '' '' -1963-03-10 00:00 80.0 '' '' -1963-03-11 00:00 78.0 '' '' -1963-03-12 00:00 77.0 '' '' -1963-03-13 00:00 74.0 '' '' -1963-03-14 00:00 80.0 '' '' -1963-03-15 00:00 80.0 '' '' -1963-03-16 00:00 79.0 '' '' -1963-03-17 00:00 79.0 '' '' -1963-03-18 00:00 80.0 '' '' -1963-03-19 00:00 77.0 '' '' -1963-03-20 00:00 77.0 '' '' -1963-03-21 00:00 76.0 '' '' -1963-03-22 00:00 76.0 '' '' -1963-03-23 00:00 75.0 '' '' -1963-03-24 00:00 75.0 '' '' -1963-03-25 00:00 75.0 '' '' -1963-03-26 00:00 73.0 '' '' -1963-03-27 00:00 74.0 '' '' -1963-03-28 00:00 73.0 '' '' -1963-03-29 00:00 75.0 '' '' -1963-03-30 00:00 74.0 '' '' -1963-03-31 00:00 71.0 '' '' -1963-04-01 00:00 73.0 '' '' -1963-04-02 00:00 74.0 '' '' -1963-04-03 00:00 74.0 '' '' -1963-04-04 00:00 70.0 '' '' -1963-04-05 00:00 72.0 '' '' -1963-04-06 00:00 78.0 '' '' -1963-04-07 00:00 80.0 '' '' -1963-04-08 00:00 81.0 '' '' -1963-04-09 00:00 82.0 '' '' -1963-04-10 00:00 82.0 '' '' -1963-04-11 00:00 88.0 '' '' -1963-04-12 00:00 93.0 '' '' -1963-04-13 00:00 89.0 '' '' -1963-04-14 00:00 87.0 '' '' -1963-04-15 00:00 88.0 '' '' -1963-04-16 00:00 88.0 '' '' -1963-04-17 00:00 87.0 '' '' -1963-04-18 00:00 88.0 '' '' -1963-04-19 00:00 84.0 '' '' -1963-04-20 00:00 78.0 '' '' -1963-04-21 00:00 74.0 '' '' -1963-04-22 00:00 72.0 '' '' -1963-04-23 00:00 71.0 '' '' -1963-04-24 00:00 73.0 '' '' -1963-04-25 00:00 72.0 '' '' -1963-04-26 00:00 72.0 '' '' -1963-04-27 00:00 75.0 '' '' -1963-04-28 00:00 78.0 '' '' -1963-04-29 00:00 78.0 '' '' -1963-04-30 00:00 80.0 '' '' -1963-05-01 00:00 82.0 '' '' -1963-05-02 00:00 82.0 '' '' -1963-05-03 00:00 81.0 '' '' -1963-05-04 00:00 82.0 '' '' -1963-05-05 00:00 84.0 '' '' -1963-05-06 00:00 87.0 '' '' -1963-05-07 00:00 88.0 '' '' -1963-05-08 00:00 86.0 '' '' -1963-05-09 00:00 88.0 '' '' -1963-05-10 00:00 87.0 '' '' -1963-05-11 00:00 84.0 '' '' -1963-05-12 00:00 87.0 '' '' -1963-05-13 00:00 89.0 '' '' -1963-05-14 00:00 95.0 '' '' -1963-05-15 00:00 98.0 '' '' -1963-05-16 00:00 100.0 '' '' -1963-05-17 00:00 100.0 '' '' -1963-05-18 00:00 98.0 '' '' -1963-05-19 00:00 99.0 '' '' -1963-05-20 00:00 91.0 '' '' -1963-05-21 00:00 88.0 '' '' -1963-05-22 00:00 89.0 '' '' -1963-05-23 00:00 93.0 '' '' -1963-05-24 00:00 89.0 '' '' -1963-05-25 00:00 83.0 '' '' -1963-05-26 00:00 76.0 '' '' -1963-05-27 00:00 80.0 '' '' -1963-05-28 00:00 79.0 '' '' -1963-05-29 00:00 80.0 '' '' -1963-05-30 00:00 83.0 '' '' -1963-05-31 00:00 89.0 '' '' -1963-06-01 00:00 84.0 '' '' -1963-06-02 00:00 81.0 '' '' -1963-06-03 00:00 81.0 '' '' -1963-06-04 00:00 79.0 '' '' -1963-06-05 00:00 78.0 '' '' -1963-06-06 00:00 77.0 '' '' -1963-06-07 00:00 84.0 '' '' -1963-06-08 00:00 90.0 '' '' -1963-06-09 00:00 93.0 '' '' -1963-06-10 00:00 99.0 '' '' -1963-06-11 00:00 103.0 '' '' -1963-06-12 00:00 109.0 '' '' -1963-06-13 00:00 107.0 '' '' -1963-06-14 00:00 100.0 '' '' -1963-06-15 00:00 96.0 '' '' -1963-06-16 00:00 89.0 '' '' -1963-06-17 00:00 86.0 '' '' -1963-06-18 00:00 82.0 '' '' -1963-06-19 00:00 79.0 '' '' -1963-06-20 00:00 75.0 '' '' -1963-06-21 00:00 73.0 '' '' -1963-06-22 00:00 72.0 '' '' -1963-06-23 00:00 72.0 '' '' -1963-06-24 00:00 72.0 '' '' -1963-06-25 00:00 74.0 '' '' -1963-06-26 00:00 74.0 '' '' -1963-06-27 00:00 72.0 '' '' -1963-06-28 00:00 74.0 '' '' -1963-06-29 00:00 73.0 '' '' -1963-06-30 00:00 76.0 '' '' -1963-07-01 00:00 76.0 '' '' -1963-07-02 00:00 77.0 '' '' -1963-07-03 00:00 78.0 '' '' -1963-07-04 00:00 78.0 '' '' -1963-07-05 00:00 78.0 '' '' -1963-07-06 00:00 77.0 '' '' -1963-07-07 00:00 77.0 '' '' -1963-07-08 00:00 77.0 '' '' -1963-07-09 00:00 77.0 '' '' -1963-07-10 00:00 86.0 '' '' -1963-07-11 00:00 75.0 '' '' -1963-07-12 00:00 74.0 '' '' -1963-07-13 00:00 76.0 '' '' -1963-07-14 00:00 77.0 '' '' -1963-07-15 00:00 76.0 '' '' -1963-07-16 00:00 76.0 '' '' -1963-07-17 00:00 74.0 '' '' -1963-07-18 00:00 74.0 '' '' -1963-07-19 00:00 74.0 '' '' -1963-07-20 00:00 77.0 '' '' -1963-07-21 00:00 75.0 '' '' -1963-07-22 00:00 73.0 '' '' -1963-07-23 00:00 72.0 '' '' -1963-07-24 00:00 72.0 '' '' -1963-07-25 00:00 74.0 '' '' -1963-07-26 00:00 73.0 '' '' -1963-07-27 00:00 74.0 '' '' -1963-07-28 00:00 73.0 '' '' -1963-07-29 00:00 77.0 '' '' -1963-07-30 00:00 84.0 '' '' -1963-07-31 00:00 85.0 '' '' -1963-08-01 00:00 87.0 '' '' -1963-08-02 00:00 87.0 '' '' -1963-08-03 00:00 87.0 '' '' -1963-08-04 00:00 88.0 '' '' -1963-08-05 00:00 86.0 '' '' -1963-08-06 00:00 88.0 '' '' -1963-08-07 00:00 85.0 '' '' -1963-08-08 00:00 81.0 '' '' -1963-08-09 00:00 80.0 '' '' -1963-08-10 00:00 77.0 '' '' -1963-08-11 00:00 72.0 '' '' -1963-08-12 00:00 73.0 '' '' -1963-08-13 00:00 74.0 '' '' -1963-08-14 00:00 71.0 '' '' -1963-08-15 00:00 72.0 '' '' -1963-08-16 00:00 76.0 '' '' -1963-08-17 00:00 82.0 '' '' -1963-08-18 00:00 80.0 '' '' -1963-08-19 00:00 79.0 '' '' -1963-08-20 00:00 81.0 '' '' -1963-08-21 00:00 84.0 '' '' -1963-08-22 00:00 86.0 '' '' -1963-08-23 00:00 90.0 '' '' -1963-08-24 00:00 87.0 '' '' -1963-08-25 00:00 85.0 '' '' -1963-08-26 00:00 82.0 '' '' -1963-08-27 00:00 80.0 '' '' -1963-08-28 00:00 77.0 '' '' -1963-08-29 00:00 77.0 '' '' -1963-08-30 00:00 77.0 '' '' -1963-08-31 00:00 77.0 '' '' -1963-09-01 00:00 74.0 '' '' -1963-09-02 00:00 73.0 '' '' -1963-09-03 00:00 74.0 '' '' -1963-09-04 00:00 75.0 '' '' -1963-09-05 00:00 74.0 '' '' -1963-09-06 00:00 74.0 '' '' -1963-09-07 00:00 78.0 '' '' -1963-09-08 00:00 75.0 '' '' -1963-09-09 00:00 77.0 '' '' -1963-09-10 00:00 76.0 '' '' -1963-09-11 00:00 72.0 '' '' -1963-09-12 00:00 77.0 '' '' -1963-09-13 00:00 89.0 '' '' -1963-09-14 00:00 98.0 '' '' -1963-09-15 00:00 99.0 '' '' -1963-09-16 00:00 105.0 '' '' -1963-09-17 00:00 99.0 '' '' -1963-09-18 00:00 97.0 '' '' -1963-09-19 00:00 102.0 '' '' -1963-09-20 00:00 109.0 '' '' -1963-09-21 00:00 90.0 '' '' -1963-09-22 00:00 105.0 '' '' -1963-09-23 00:00 99.0 '' '' -1963-09-24 00:00 95.0 '' '' -1963-09-25 00:00 86.0 '' '' -1963-09-26 00:00 84.0 '' '' -1963-09-27 00:00 78.0 '' '' -1963-09-28 00:00 74.0 '' '' -1963-09-29 00:00 71.0 '' '' -1963-09-30 00:00 69.0 '' '' -1963-10-01 00:00 68.0 '' '' -1963-10-02 00:00 69.0 '' '' -1963-10-03 00:00 70.0 '' '' -1963-10-04 00:00 71.0 '' '' -1963-10-05 00:00 73.0 '' '' -1963-10-06 00:00 77.0 '' '' -1963-10-07 00:00 79.0 '' '' -1963-10-08 00:00 85.0 '' '' -1963-10-09 00:00 86.0 '' '' -1963-10-10 00:00 87.0 '' '' -1963-10-11 00:00 87.0 '' '' -1963-10-12 00:00 84.0 '' '' -1963-10-13 00:00 84.0 '' '' -1963-10-14 00:00 86.0 '' '' -1963-10-15 00:00 88.0 '' '' -1963-10-16 00:00 87.0 '' '' -1963-10-17 00:00 84.0 '' '' -1963-10-18 00:00 83.0 '' '' -1963-10-19 00:00 88.0 '' '' -1963-10-20 00:00 89.0 '' '' -1963-10-21 00:00 94.0 '' '' -1963-10-22 00:00 96.0 '' '' -1963-10-23 00:00 94.0 '' '' -1963-10-24 00:00 94.0 '' '' -1963-10-25 00:00 96.0 '' '' -1963-10-26 00:00 96.0 '' '' -1963-10-27 00:00 88.0 '' '' -1963-10-28 00:00 84.0 '' '' -1963-10-29 00:00 85.0 '' '' -1963-10-30 00:00 85.0 '' '' -1963-10-31 00:00 82.0 '' '' -1963-11-01 00:00 87.0 '' '' -1963-11-02 00:00 85.0 '' '' -1963-11-03 00:00 83.0 '' '' -1963-11-04 00:00 83.0 '' '' -1963-11-05 00:00 80.0 '' '' -1963-11-06 00:00 78.0 '' '' -1963-11-07 00:00 76.0 '' '' -1963-11-08 00:00 75.0 '' '' -1963-11-09 00:00 76.0 '' '' -1963-11-10 00:00 75.0 '' '' -1963-11-11 00:00 76.0 '' '' -1963-11-12 00:00 77.0 '' '' -1963-11-13 00:00 77.0 '' '' -1963-11-14 00:00 78.0 '' '' -1963-11-15 00:00 81.0 '' '' -1963-11-16 00:00 81.0 '' '' -1963-11-17 00:00 80.0 '' '' -1963-11-18 00:00 82.0 '' '' -1963-11-19 00:00 86.0 '' '' -1963-11-20 00:00 84.0 '' '' -1963-11-21 00:00 86.0 '' '' -1963-11-22 00:00 86.0 '' '' -1963-11-23 00:00 84.0 '' '' -1963-11-24 00:00 83.0 '' '' -1963-11-25 00:00 82.0 '' '' -1963-11-26 00:00 82.0 '' '' -1963-11-27 00:00 81.0 '' '' -1963-11-28 00:00 79.0 '' '' -1963-11-29 00:00 79.0 '' '' -1963-11-30 00:00 79.0 '' '' -1963-12-01 00:00 79.0 '' '' -1963-12-02 00:00 80.0 '' '' -1963-12-03 00:00 79.0 '' '' -1963-12-04 00:00 77.0 '' '' -1963-12-05 00:00 76.0 '' '' -1963-12-06 00:00 76.0 '' '' -1963-12-07 00:00 77.0 '' '' -1963-12-08 00:00 77.0 '' '' -1963-12-09 00:00 78.0 '' '' -1963-12-10 00:00 79.0 '' '' -1963-12-11 00:00 80.0 '' '' -1963-12-12 00:00 82.0 '' '' -1963-12-13 00:00 81.0 '' '' -1963-12-14 00:00 79.0 '' '' -1963-12-15 00:00 81.0 '' '' -1963-12-16 00:00 78.0 '' '' -1963-12-17 00:00 78.0 '' '' -1963-12-18 00:00 79.0 '' '' -1963-12-19 00:00 78.0 '' '' -1963-12-20 00:00 79.0 '' '' -1963-12-21 00:00 79.0 '' '' -1963-12-22 00:00 77.0 '' '' -1963-12-23 00:00 76.0 '' '' -1963-12-24 00:00 76.0 '' '' -1963-12-25 00:00 75.0 '' '' -1963-12-26 00:00 74.0 '' '' -1963-12-27 00:00 74.0 '' '' -1963-12-28 00:00 73.0 '' '' -1963-12-29 00:00 72.0 '' '' -1963-12-30 00:00 71.0 '' '' -1963-12-31 00:00 71.0 '' '' -1964-01-01 00:00 69.7 '' '' -1964-01-02 00:00 68.3 '' '' -1964-01-03 00:00 70.7 '' '' -1964-01-04 00:00 70.4 '' '' -1964-01-05 00:00 71.3 '' '' -1964-01-06 00:00 72.5 '' '' -1964-01-07 00:00 72.8 '' '' -1964-01-08 00:00 70.8 '' '' -1964-01-09 00:00 71.0 '' '' -1964-01-10 00:00 70.9 '' '' -1964-01-11 00:00 72.1 '' '' -1964-01-12 00:00 73.7 '' '' -1964-01-13 00:00 73.6 '' '' -1964-01-14 00:00 73.1 '' '' -1964-01-15 00:00 72.1 '' '' -1964-01-16 00:00 72.0 '' '' -1964-01-17 00:00 69.2 '' '' -1964-01-18 00:00 71.5 '' '' -1964-01-19 00:00 72.4 '' '' -1964-01-20 00:00 73.5 '' '' -1964-01-21 00:00 72.5 '' '' -1964-01-22 00:00 72.3 '' '' -1964-01-23 00:00 72.4 '' '' -1964-01-24 00:00 72.0 '' '' -1964-01-25 00:00 70.9 '' '' -1964-01-26 00:00 71.5 '' '' -1964-01-27 00:00 71.1 '' '' -1964-01-28 00:00 74.9 '' '' -1964-01-29 00:00 75.2 '' '' -1964-01-30 00:00 72.7 '' '' -1964-01-31 00:00 72.1 '' '' -1964-02-01 00:00 70.8 '' '' -1964-02-02 00:00 69.5 '' '' -1964-02-03 00:00 68.8 '' '' -1964-02-04 00:00 69.2 '' '' -1964-02-05 00:00 70.4 '' '' -1964-02-06 00:00 70.7 '' '' -1964-02-07 00:00 70.1 '' '' -1964-02-08 00:00 71.2 '' '' -1964-02-09 00:00 69.9 '' '' -1964-02-10 00:00 70.8 '' '' -1964-02-11 00:00 69.8 '' '' -1964-02-12 00:00 70.9 '' '' -1964-02-13 00:00 71.5 '' '' -1964-02-14 00:00 70.8 '' '' -1964-02-15 00:00 70.9 '' '' -1964-02-16 00:00 71.3 '' '' -1964-02-17 00:00 72.1 '' '' -1964-02-18 00:00 74.3 '' '' -1964-02-19 00:00 73.9 '' '' -1964-02-20 00:00 74.5 '' '' -1964-02-21 00:00 76.8 '' '' -1964-02-22 00:00 78.0 '' '' -1964-02-23 00:00 82.6 '' '' -1964-02-24 00:00 83.4 '' '' -1964-02-25 00:00 82.7 '' '' -1964-02-26 00:00 84.8 '' '' -1964-02-27 00:00 83.3 '' '' -1964-02-28 00:00 82.8 '' '' -1964-02-29 00:00 79.3 '' '' -1964-03-01 00:00 76.1 '' '' -1964-03-02 00:00 73.9 '' '' -1964-03-03 00:00 72.5 '' '' -1964-03-04 00:00 73.8 '' '' -1964-03-05 00:00 70.9 '' '' -1964-03-06 00:00 72.4 '' '' -1964-03-07 00:00 71.8 '' '' -1964-03-08 00:00 72.7 '' '' -1964-03-09 00:00 70.6 '' '' -1964-03-10 00:00 72.2 '' '' -1964-03-11 00:00 74.1 '' '' -1964-03-12 00:00 76.3 '' '' -1964-03-13 00:00 77.3 '' '' -1964-03-14 00:00 78.0 '' '' -1964-03-15 00:00 77.8 '' '' -1964-03-16 00:00 76.2 '' '' -1964-03-17 00:00 76.7 '' '' -1964-03-18 00:00 74.6 '' '' -1964-03-19 00:00 73.6 '' '' -1964-03-20 00:00 73.7 '' '' -1964-03-21 00:00 73.9 '' '' -1964-03-22 00:00 77.9 '' '' -1964-03-23 00:00 76.9 '' '' -1964-03-24 00:00 76.5 '' '' -1964-03-25 00:00 73.7 '' '' -1964-03-26 00:00 74.0 '' '' -1964-03-27 00:00 74.9 '' '' -1964-03-28 00:00 75.5 '' '' -1964-03-29 00:00 74.8 '' '' -1964-03-30 00:00 78.0 '' '' -1964-03-31 00:00 76.7 '' '' -1964-04-01 00:00 77.3 '' '' -1964-04-02 00:00 75.3 '' '' -1964-04-03 00:00 76.8 '' '' -1964-04-04 00:00 76.9 '' '' -1964-04-05 00:00 76.1 '' '' -1964-04-06 00:00 75.8 '' '' -1964-04-07 00:00 75.7 '' '' -1964-04-08 00:00 73.7 '' '' -1964-04-09 00:00 75.2 '' '' -1964-04-10 00:00 73.1 '' '' -1964-04-11 00:00 74.3 '' '' -1964-04-12 00:00 73.1 '' '' -1964-04-13 00:00 73.4 '' '' -1964-04-14 00:00 72.0 '' '' -1964-04-15 00:00 71.9 '' '' -1964-04-16 00:00 71.2 '' '' -1964-04-17 00:00 72.4 '' '' -1964-04-18 00:00 72.4 '' '' -1964-04-19 00:00 71.5 '' '' -1964-04-20 00:00 72.1 '' '' -1964-04-21 00:00 72.3 '' '' -1964-04-22 00:00 71.5 '' '' -1964-04-23 00:00 71.1 '' '' -1964-04-24 00:00 72.5 '' '' -1964-04-25 00:00 71.4 '' '' -1964-04-26 00:00 70.5 '' '' -1964-04-27 00:00 70.5 '' '' -1964-04-28 00:00 70.9 '' '' -1964-04-29 00:00 69.8 '' '' -1964-04-30 00:00 70.0 '' '' -1964-05-01 00:00 70.0 '' '' -1964-05-02 00:00 69.5 '' '' -1964-05-03 00:00 71.0 '' '' -1964-05-04 00:00 71.5 '' '' -1964-05-05 00:00 73.2 '' '' -1964-05-06 00:00 72.2 '' '' -1964-05-07 00:00 72.2 '' '' -1964-05-08 00:00 72.9 '' '' -1964-05-09 00:00 72.2 '' '' -1964-05-10 00:00 71.5 '' '' -1964-05-11 00:00 71.5 '' '' -1964-05-12 00:00 70.9 '' '' -1964-05-13 00:00 69.9 '' '' -1964-05-14 00:00 69.8 '' '' -1964-05-15 00:00 69.5 '' '' -1964-05-16 00:00 71.6 '' '' -1964-05-17 00:00 71.2 '' '' -1964-05-18 00:00 72.1 '' '' -1964-05-19 00:00 70.3 '' '' -1964-05-20 00:00 69.3 '' '' -1964-05-21 00:00 69.7 '' '' -1964-05-22 00:00 68.8 '' '' -1964-05-23 00:00 69.0 '' '' -1964-05-24 00:00 69.8 '' '' -1964-05-25 00:00 69.3 '' '' -1964-05-26 00:00 70.2 '' '' -1964-05-27 00:00 69.5 '' '' -1964-05-28 00:00 71.5 '' '' -1964-05-29 00:00 71.0 '' '' -1964-05-30 00:00 70.1 '' '' -1964-05-31 00:00 69.6 '' '' -1964-06-01 00:00 69.7 '' '' -1964-06-02 00:00 70.0 '' '' -1964-06-03 00:00 70.2 '' '' -1964-06-04 00:00 70.2 '' '' -1964-06-05 00:00 69.8 '' '' -1964-06-06 00:00 70.5 '' '' -1964-06-07 00:00 71.7 '' '' -1964-06-08 00:00 71.9 '' '' -1964-06-09 00:00 71.1 '' '' -1964-06-10 00:00 72.5 '' '' -1964-06-11 00:00 72.5 '' '' -1964-06-12 00:00 71.0 '' '' -1964-06-13 00:00 72.4 '' '' -1964-06-14 00:00 72.8 '' '' -1964-06-15 00:00 73.9 '' '' -1964-06-16 00:00 72.9 '' '' -1964-06-17 00:00 73.8 '' '' -1964-06-18 00:00 74.1 '' '' -1964-06-19 00:00 72.4 '' '' -1964-06-20 00:00 72.7 '' '' -1964-06-21 00:00 72.0 '' '' -1964-06-22 00:00 71.8 '' '' -1964-06-23 00:00 69.6 '' '' -1964-06-24 00:00 70.2 '' '' -1964-06-25 00:00 69.9 '' '' -1964-06-26 00:00 69.9 '' '' -1964-06-27 00:00 69.7 '' '' -1964-06-28 00:00 69.6 '' '' -1964-06-29 00:00 69.4 '' '' -1964-06-30 00:00 69.5 '' '' -1964-07-01 00:00 69.7 '' '' -1964-07-02 00:00 69.3 '' '' -1964-07-03 00:00 69.6 '' '' -1964-07-04 00:00 70.4 '' '' -1964-07-05 00:00 69.9 '' '' -1964-07-06 00:00 70.1 '' '' -1964-07-07 00:00 69.3 '' '' -1964-07-08 00:00 70.2 '' '' -1964-07-09 00:00 69.4 '' '' -1964-07-10 00:00 68.9 '' '' -1964-07-11 00:00 69.9 '' '' -1964-07-12 00:00 69.1 '' '' -1964-07-13 00:00 68.7 '' '' -1964-07-14 00:00 71.5 '' '' -1964-07-15 00:00 71.8 '' '' -1964-07-16 00:00 71.6 '' '' -1964-07-17 00:00 70.9 '' '' -1964-07-18 00:00 70.2 '' '' -1964-07-19 00:00 69.6 '' '' -1964-07-20 00:00 68.8 '' '' -1964-07-21 00:00 68.5 '' '' -1964-07-22 00:00 68.2 '' '' -1964-07-23 00:00 68.5 '' '' -1964-07-24 00:00 68.2 '' '' -1964-07-25 00:00 67.9 '' '' -1964-07-26 00:00 66.9 '' '' -1964-07-27 00:00 67.3 '' '' -1964-07-28 00:00 67.4 '' '' -1964-07-29 00:00 67.9 '' '' -1964-07-30 00:00 68.3 '' '' -1964-07-31 00:00 68.2 '' '' -1964-08-01 00:00 68.9 '' '' -1964-08-02 00:00 69.7 '' '' -1964-08-03 00:00 70.1 '' '' -1964-08-04 00:00 69.8 '' '' -1964-08-05 00:00 71.0 '' '' -1964-08-06 00:00 70.2 '' '' -1964-08-07 00:00 69.6 '' '' -1964-08-08 00:00 69.4 '' '' -1964-08-09 00:00 69.8 '' '' -1964-08-10 00:00 70.7 '' '' -1964-08-11 00:00 69.9 '' '' -1964-08-12 00:00 70.6 '' '' -1964-08-13 00:00 75.9 '' '' -1964-08-14 00:00 78.0 '' '' -1964-08-15 00:00 77.3 '' '' -1964-08-16 00:00 74.8 '' '' -1964-08-17 00:00 73.3 '' '' -1964-08-18 00:00 71.3 '' '' -1964-08-19 00:00 72.2 '' '' -1964-08-20 00:00 71.4 '' '' -1964-08-21 00:00 70.8 '' '' -1964-08-22 00:00 70.6 '' '' -1964-08-23 00:00 70.3 '' '' -1964-08-24 00:00 69.9 '' '' -1964-08-25 00:00 69.1 '' '' -1964-08-26 00:00 68.9 '' '' -1964-08-27 00:00 69.6 '' '' -1964-08-28 00:00 68.6 '' '' -1964-08-29 00:00 68.5 '' '' -1964-08-30 00:00 69.9 '' '' -1964-08-31 00:00 70.2 '' '' -1964-09-01 00:00 71.3 '' '' -1964-09-02 00:00 70.4 '' '' -1964-09-03 00:00 70.8 '' '' -1964-09-04 00:00 71.0 '' '' -1964-09-05 00:00 70.8 '' '' -1964-09-06 00:00 71.5 '' '' -1964-09-07 00:00 71.8 '' '' -1964-09-08 00:00 71.9 '' '' -1964-09-09 00:00 72.4 '' '' -1964-09-10 00:00 72.8 '' '' -1964-09-11 00:00 73.0 '' '' -1964-09-12 00:00 73.2 '' '' -1964-09-13 00:00 72.9 '' '' -1964-09-14 00:00 72.5 '' '' -1964-09-15 00:00 71.9 '' '' -1964-09-16 00:00 70.2 '' '' -1964-09-17 00:00 69.0 '' '' -1964-09-18 00:00 69.0 '' '' -1964-09-19 00:00 69.4 '' '' -1964-09-20 00:00 69.5 '' '' -1964-09-21 00:00 69.1 '' '' -1964-09-22 00:00 69.1 '' '' -1964-09-23 00:00 69.0 '' '' -1964-09-24 00:00 68.4 '' '' -1964-09-25 00:00 68.1 '' '' -1964-09-26 00:00 69.7 '' '' -1964-09-27 00:00 70.0 '' '' -1964-09-28 00:00 70.5 '' '' -1964-09-29 00:00 70.9 '' '' -1964-09-30 00:00 71.6 '' '' -1964-10-01 00:00 72.0 '' '' -1964-10-02 00:00 71.6 '' '' -1964-10-03 00:00 71.8 '' '' -1964-10-04 00:00 70.8 '' '' -1964-10-05 00:00 71.6 '' '' -1964-10-06 00:00 72.6 '' '' -1964-10-07 00:00 74.0 '' '' -1964-10-08 00:00 76.8 '' '' -1964-10-09 00:00 72.9 '' '' -1964-10-10 00:00 72.7 '' '' -1964-10-11 00:00 71.5 '' '' -1964-10-12 00:00 69.7 '' '' -1964-10-13 00:00 71.9 '' '' -1964-10-14 00:00 70.3 '' '' -1964-10-15 00:00 70.2 '' '' -1964-10-16 00:00 70.5 '' '' -1964-10-17 00:00 70.4 '' '' -1964-10-18 00:00 71.8 '' '' -1964-10-19 00:00 72.2 '' '' -1964-10-20 00:00 71.9 '' '' -1964-10-21 00:00 70.3 '' '' -1964-10-22 00:00 71.8 '' '' -1964-10-23 00:00 72.3 '' '' -1964-10-24 00:00 73.0 '' '' -1964-10-25 00:00 75.4 '' '' -1964-10-26 00:00 75.4 '' '' -1964-10-27 00:00 74.9 '' '' -1964-10-28 00:00 73.5 '' '' -1964-10-29 00:00 73.2 '' '' -1964-10-30 00:00 73.2 '' '' -1964-10-31 00:00 74.0 '' '' -1964-11-01 00:00 73.6 '' '' -1964-11-02 00:00 73.3 '' '' -1964-11-03 00:00 72.7 '' '' -1964-11-04 00:00 72.1 '' '' -1964-11-05 00:00 71.6 '' '' -1964-11-06 00:00 72.6 '' '' -1964-11-07 00:00 71.5 '' '' -1964-11-08 00:00 71.1 '' '' -1964-11-09 00:00 70.4 '' '' -1964-11-10 00:00 70.1 '' '' -1964-11-11 00:00 70.2 '' '' -1964-11-12 00:00 70.7 '' '' -1964-11-13 00:00 70.7 '' '' -1964-11-14 00:00 71.1 '' '' -1964-11-15 00:00 70.6 '' '' -1964-11-16 00:00 70.3 '' '' -1964-11-17 00:00 73.7 '' '' -1964-11-18 00:00 73.3 '' '' -1964-11-19 00:00 73.1 '' '' -1964-11-20 00:00 74.0 '' '' -1964-11-21 00:00 72.0 '' '' -1964-11-22 00:00 71.5 '' '' -1964-11-23 00:00 69.9 '' '' -1964-11-24 00:00 69.3 '' '' -1964-11-25 00:00 69.5 '' '' -1964-11-26 00:00 68.1 '' '' -1964-11-27 00:00 69.6 '' '' -1964-11-28 00:00 68.8 '' '' -1964-11-29 00:00 71.0 '' '' -1964-11-30 00:00 71.5 '' '' -1964-12-01 00:00 73.9 '' '' -1964-12-02 00:00 73.8 '' '' -1964-12-03 00:00 74.4 '' '' -1964-12-04 00:00 75.7 '' '' -1964-12-05 00:00 75.3 '' '' -1964-12-06 00:00 74.6 '' '' -1964-12-07 00:00 73.8 '' '' -1964-12-08 00:00 75.0 '' '' -1964-12-09 00:00 75.0 '' '' -1964-12-10 00:00 76.0 '' '' -1964-12-11 00:00 77.0 '' '' -1964-12-12 00:00 74.3 '' '' -1964-12-13 00:00 75.5 '' '' -1964-12-14 00:00 76.1 '' '' -1964-12-15 00:00 76.5 '' '' -1964-12-16 00:00 78.2 '' '' -1964-12-17 00:00 77.8 '' '' -1964-12-18 00:00 78.1 '' '' -1964-12-19 00:00 79.1 '' '' -1964-12-20 00:00 77.6 '' '' -1964-12-21 00:00 76.2 '' '' -1964-12-22 00:00 74.9 '' '' -1964-12-23 00:00 73.5 '' '' -1964-12-24 00:00 72.5 '' '' -1964-12-25 00:00 72.4 '' '' -1964-12-26 00:00 71.5 '' '' -1964-12-27 00:00 73.8 '' '' -1964-12-28 00:00 74.7 '' '' -1964-12-29 00:00 75.1 '' '' -1964-12-30 00:00 74.1 '' '' -1964-12-31 00:00 75.9 '' '' -1965-01-01 00:00 82.7 '' '' -1965-01-02 00:00 81.5 '' '' -1965-01-03 00:00 79.4 '' '' -1965-01-04 00:00 78.0 '' '' -1965-01-05 00:00 77.4 '' '' -1965-01-06 00:00 77.7 '' '' -1965-01-07 00:00 75.7 '' '' -1965-01-08 00:00 74.9 '' '' -1965-01-09 00:00 74.1 '' '' -1965-01-10 00:00 73.5 '' '' -1965-01-11 00:00 72.7 '' '' -1965-01-12 00:00 72.6 '' '' -1965-01-13 00:00 72.5 '' '' -1965-01-14 00:00 72.0 '' '' -1965-01-15 00:00 72.4 '' '' -1965-01-16 00:00 71.4 '' '' -1965-01-17 00:00 71.2 '' '' -1965-01-18 00:00 72.1 '' '' -1965-01-19 00:00 71.5 '' '' -1965-01-20 00:00 73.7 '' '' -1965-01-21 00:00 74.1 '' '' -1965-01-22 00:00 74.4 '' '' -1965-01-23 00:00 73.4 '' '' -1965-01-24 00:00 74.1 '' '' -1965-01-25 00:00 73.1 '' '' -1965-01-26 00:00 73.5 '' '' -1965-01-27 00:00 76.8 '' '' -1965-01-28 00:00 75.1 '' '' -1965-01-29 00:00 76.6 '' '' -1965-01-30 00:00 78.6 '' '' -1965-01-31 00:00 77.7 '' '' -1965-02-01 00:00 76.2 '' '' -1965-02-02 00:00 76.8 '' '' -1965-02-03 00:00 76.4 '' '' -1965-02-04 00:00 75.2 '' '' -1965-02-05 00:00 74.1 '' '' -1965-02-06 00:00 74.1 '' '' -1965-02-07 00:00 75.2 '' '' -1965-02-08 00:00 73.4 '' '' -1965-02-09 00:00 73.4 '' '' -1965-02-10 00:00 73.9 '' '' -1965-02-11 00:00 71.8 '' '' -1965-02-12 00:00 71.2 '' '' -1965-02-13 00:00 70.6 '' '' -1965-02-14 00:00 70.1 '' '' -1965-02-15 00:00 70.8 '' '' -1965-02-16 00:00 71.4 '' '' -1965-02-17 00:00 71.6 '' '' -1965-02-18 00:00 70.5 '' '' -1965-02-19 00:00 70.6 '' '' -1965-02-20 00:00 69.8 '' '' -1965-02-21 00:00 70.0 '' '' -1965-02-22 00:00 70.3 '' '' -1965-02-23 00:00 71.5 '' '' -1965-02-24 00:00 72.9 '' '' -1965-02-25 00:00 72.7 '' '' -1965-02-26 00:00 72.3 '' '' -1965-02-27 00:00 74.6 '' '' -1965-02-28 00:00 74.8 '' '' -1965-03-01 00:00 75.1 '' '' -1965-03-02 00:00 74.0 '' '' -1965-03-03 00:00 73.7 '' '' -1965-03-04 00:00 73.8 '' '' -1965-03-05 00:00 74.8 '' '' -1965-03-06 00:00 75.5 '' '' -1965-03-07 00:00 75.8 '' '' -1965-03-08 00:00 73.4 '' '' -1965-03-09 00:00 71.9 '' '' -1965-03-10 00:00 72.1 '' '' -1965-03-11 00:00 70.9 '' '' -1965-03-12 00:00 72.6 '' '' -1965-03-13 00:00 74.6 '' '' -1965-03-14 00:00 73.7 '' '' -1965-03-15 00:00 71.9 '' '' -1965-03-16 00:00 70.5 '' '' -1965-03-17 00:00 70.8 '' '' -1965-03-18 00:00 74.3 '' '' -1965-03-19 00:00 76.3 '' '' -1965-03-20 00:00 73.8 '' '' -1965-03-21 00:00 73.4 '' '' -1965-03-22 00:00 72.1 '' '' -1965-03-23 00:00 72.5 '' '' -1965-03-24 00:00 72.0 '' '' -1965-03-25 00:00 73.4 '' '' -1965-03-26 00:00 73.0 '' '' -1965-03-27 00:00 71.8 '' '' -1965-03-28 00:00 71.4 '' '' -1965-03-29 00:00 71.7 '' '' -1965-03-30 00:00 71.2 '' '' -1965-03-31 00:00 71.4 '' '' -1965-04-01 00:00 71.1 '' '' -1965-04-02 00:00 71.5 '' '' -1965-04-03 00:00 71.3 '' '' -1965-04-04 00:00 71.1 '' '' -1965-04-05 00:00 70.8 '' '' -1965-04-06 00:00 71.0 '' '' -1965-04-07 00:00 70.8 '' '' -1965-04-08 00:00 70.7 '' '' -1965-04-09 00:00 71.9 '' '' -1965-04-10 00:00 73.4 '' '' -1965-04-11 00:00 74.1 '' '' -1965-04-12 00:00 73.7 '' '' -1965-04-13 00:00 74.0 '' '' -1965-04-14 00:00 75.8 '' '' -1965-04-15 00:00 75.5 '' '' -1965-04-16 00:00 75.1 '' '' -1965-04-17 00:00 73.8 '' '' -1965-04-18 00:00 73.7 '' '' -1965-04-19 00:00 74.8 '' '' -1965-04-20 00:00 73.1 '' '' -1965-04-21 00:00 73.7 '' '' -1965-04-22 00:00 73.5 '' '' -1965-04-23 00:00 74.0 '' '' -1965-04-24 00:00 71.6 '' '' -1965-04-25 00:00 70.4 '' '' -1965-04-26 00:00 70.0 '' '' -1965-04-27 00:00 70.2 '' '' -1965-04-28 00:00 70.5 '' '' -1965-04-29 00:00 71.2 '' '' -1965-04-30 00:00 70.9 '' '' -1965-05-01 00:00 72.2 '' '' -1965-05-02 00:00 71.9 '' '' -1965-05-03 00:00 71.9 '' '' -1965-05-04 00:00 70.9 '' '' -1965-05-05 00:00 70.2 '' '' -1965-05-06 00:00 71.7 '' '' -1965-05-07 00:00 72.7 '' '' -1965-05-08 00:00 73.4 '' '' -1965-05-09 00:00 73.8 '' '' -1965-05-10 00:00 73.5 '' '' -1965-05-11 00:00 72.5 '' '' -1965-05-12 00:00 73.3 '' '' -1965-05-13 00:00 76.0 '' '' -1965-05-14 00:00 77.0 '' '' -1965-05-15 00:00 82.3 '' '' -1965-05-16 00:00 88.3 '' '' -1965-05-17 00:00 93.2 '' '' -1965-05-18 00:00 92.6 '' '' -1965-05-19 00:00 94.6 '' '' -1965-05-20 00:00 97.0 '' '' -1965-05-21 00:00 95.1 '' '' -1965-05-22 00:00 94.5 '' '' -1965-05-23 00:00 88.4 '' '' -1965-05-24 00:00 87.3 '' '' -1965-05-25 00:00 83.1 '' '' -1965-05-26 00:00 80.0 '' '' -1965-05-27 00:00 78.1 '' '' -1965-05-28 00:00 76.5 '' '' -1965-05-29 00:00 75.8 '' '' -1965-05-30 00:00 76.1 '' '' -1965-05-31 00:00 73.6 '' '' -1965-06-01 00:00 72.8 '' '' -1965-06-02 00:00 75.8 '' '' -1965-06-03 00:00 77.4 '' '' -1965-06-04 00:00 80.5 '' '' -1965-06-05 00:00 80.6 '' '' -1965-06-06 00:00 80.7 '' '' -1965-06-07 00:00 79.5 '' '' -1965-06-08 00:00 80.7 '' '' -1965-06-09 00:00 81.4 '' '' -1965-06-10 00:00 80.7 '' '' -1965-06-11 00:00 78.9 '' '' -1965-06-12 00:00 78.4 '' '' -1965-06-13 00:00 79.2 '' '' -1965-06-14 00:00 78.5 '' '' -1965-06-15 00:00 79.1 '' '' -1965-06-16 00:00 78.4 '' '' -1965-06-17 00:00 78.7 '' '' -1965-06-18 00:00 80.8 '' '' -1965-06-19 00:00 77.4 '' '' -1965-06-20 00:00 78.5 '' '' -1965-06-21 00:00 78.4 '' '' -1965-06-22 00:00 80.7 '' '' -1965-06-23 00:00 82.8 '' '' -1965-06-24 00:00 80.7 '' '' -1965-06-25 00:00 81.9 '' '' -1965-06-26 00:00 81.4 '' '' -1965-06-27 00:00 80.3 '' '' -1965-06-28 00:00 79.3 '' '' -1965-06-29 00:00 79.0 '' '' -1965-06-30 00:00 79.6 '' '' -1965-07-01 00:00 78.6 '' '' -1965-07-02 00:00 78.2 '' '' -1965-07-03 00:00 78.8 '' '' -1965-07-04 00:00 78.5 '' '' -1965-07-05 00:00 78.0 '' '' -1965-07-06 00:00 81.2 '' '' -1965-07-07 00:00 84.3 '' '' -1965-07-08 00:00 83.8 '' '' -1965-07-09 00:00 84.1 '' '' -1965-07-10 00:00 83.0 '' '' -1965-07-11 00:00 82.6 '' '' -1965-07-12 00:00 80.8 '' '' -1965-07-13 00:00 78.8 '' '' -1965-07-14 00:00 77.2 '' '' -1965-07-15 00:00 77.0 '' '' -1965-07-16 00:00 74.5 '' '' -1965-07-17 00:00 74.3 '' '' -1965-07-18 00:00 74.3 '' '' -1965-07-19 00:00 74.9 '' '' -1965-07-20 00:00 75.4 '' '' -1965-07-21 00:00 75.0 '' '' -1965-07-22 00:00 73.9 '' '' -1965-07-23 00:00 73.2 '' '' -1965-07-24 00:00 72.4 '' '' -1965-07-25 00:00 72.3 '' '' -1965-07-26 00:00 71.7 '' '' -1965-07-27 00:00 72.3 '' '' -1965-07-28 00:00 72.9 '' '' -1965-07-29 00:00 73.4 '' '' -1965-07-30 00:00 73.4 '' '' -1965-07-31 00:00 73.0 '' '' -1965-08-01 00:00 74.2 '' '' -1965-08-02 00:00 75.2 '' '' -1965-08-03 00:00 79.6 '' '' -1965-08-04 00:00 80.7 '' '' -1965-08-05 00:00 78.5 '' '' -1965-08-06 00:00 81.1 '' '' -1965-08-07 00:00 81.8 '' '' -1965-08-08 00:00 79.5 '' '' -1965-08-09 00:00 79.8 '' '' -1965-08-10 00:00 78.2 '' '' -1965-08-11 00:00 78.8 '' '' -1965-08-12 00:00 77.9 '' '' -1965-08-13 00:00 76.7 '' '' -1965-08-14 00:00 75.6 '' '' -1965-08-15 00:00 74.4 '' '' -1965-08-16 00:00 75.6 '' '' -1965-08-17 00:00 74.2 '' '' -1965-08-18 00:00 75.0 '' '' -1965-08-19 00:00 76.1 '' '' -1965-08-20 00:00 75.5 '' '' -1965-08-21 00:00 75.3 '' '' -1965-08-22 00:00 74.6 '' '' -1965-08-23 00:00 74.6 '' '' -1965-08-24 00:00 74.3 '' '' -1965-08-25 00:00 73.8 '' '' -1965-08-26 00:00 73.5 '' '' -1965-08-27 00:00 76.0 '' '' -1965-08-28 00:00 74.7 '' '' -1965-08-29 00:00 75.7 '' '' -1965-08-30 00:00 76.4 '' '' -1965-08-31 00:00 76.3 '' '' -1965-09-01 00:00 76.8 '' '' -1965-09-02 00:00 77.3 '' '' -1965-09-03 00:00 77.9 '' '' -1965-09-04 00:00 78.0 '' '' -1965-09-05 00:00 80.0 '' '' -1965-09-06 00:00 78.3 '' '' -1965-09-07 00:00 78.9 '' '' -1965-09-08 00:00 79.8 '' '' -1965-09-09 00:00 77.2 '' '' -1965-09-10 00:00 76.7 '' '' -1965-09-11 00:00 76.7 '' '' -1965-09-12 00:00 76.3 '' '' -1965-09-13 00:00 75.9 '' '' -1965-09-14 00:00 76.1 '' '' -1965-09-15 00:00 75.7 '' '' -1965-09-16 00:00 74.5 '' '' -1965-09-17 00:00 74.5 '' '' -1965-09-18 00:00 73.7 '' '' -1965-09-19 00:00 73.4 '' '' -1965-09-20 00:00 73.4 '' '' -1965-09-21 00:00 73.1 '' '' -1965-09-22 00:00 71.7 '' '' -1965-09-23 00:00 72.3 '' '' -1965-09-24 00:00 76.6 '' '' -1965-09-25 00:00 76.2 '' '' -1965-09-26 00:00 77.4 '' '' -1965-09-27 00:00 78.7 '' '' -1965-09-28 00:00 80.8 '' '' -1965-09-29 00:00 87.6 '' '' -1965-09-30 00:00 89.3 '' '' -1965-10-01 00:00 92.2 '' '' -1965-10-02 00:00 93.3 '' '' -1965-10-03 00:00 96.1 '' '' -1965-10-04 00:00 97.5 '' '' -1965-10-05 00:00 91.6 '' '' -1965-10-06 00:00 85.1 '' '' -1965-10-07 00:00 83.5 '' '' -1965-10-08 00:00 82.6 '' '' -1965-10-09 00:00 83.0 '' '' -1965-10-10 00:00 80.1 '' '' -1965-10-11 00:00 75.7 '' '' -1965-10-12 00:00 74.5 '' '' -1965-10-13 00:00 75.4 '' '' -1965-10-14 00:00 74.3 '' '' -1965-10-15 00:00 73.3 '' '' -1965-10-16 00:00 71.8 '' '' -1965-10-17 00:00 72.0 '' '' -1965-10-18 00:00 71.6 '' '' -1965-10-19 00:00 71.2 '' '' -1965-10-20 00:00 72.0 '' '' -1965-10-21 00:00 72.6 '' '' -1965-10-22 00:00 75.4 '' '' -1965-10-23 00:00 77.9 '' '' -1965-10-24 00:00 75.5 '' '' -1965-10-25 00:00 77.0 '' '' -1965-10-26 00:00 77.3 '' '' -1965-10-27 00:00 77.0 '' '' -1965-10-28 00:00 76.2 '' '' -1965-10-29 00:00 75.6 '' '' -1965-10-30 00:00 75.1 '' '' -1965-10-31 00:00 76.9 '' '' -1965-11-01 00:00 77.6 '' '' -1965-11-02 00:00 78.2 '' '' -1965-11-03 00:00 79.8 '' '' -1965-11-04 00:00 78.4 '' '' -1965-11-05 00:00 76.7 '' '' -1965-11-06 00:00 79.2 '' '' -1965-11-07 00:00 83.7 '' '' -1965-11-08 00:00 78.9 '' '' -1965-11-09 00:00 80.4 '' '' -1965-11-10 00:00 82.4 '' '' -1965-11-11 00:00 82.5 '' '' -1965-11-12 00:00 79.1 '' '' -1965-11-13 00:00 75.7 '' '' -1965-11-14 00:00 74.4 '' '' -1965-11-15 00:00 74.8 '' '' -1965-11-16 00:00 72.4 '' '' -1965-11-17 00:00 72.6 '' '' -1965-11-18 00:00 73.3 '' '' -1965-11-19 00:00 71.6 '' '' -1965-11-20 00:00 70.9 '' '' -1965-11-21 00:00 70.5 '' '' -1965-11-22 00:00 70.0 '' '' -1965-11-23 00:00 69.5 '' '' -1965-11-24 00:00 69.3 '' '' -1965-11-25 00:00 68.8 '' '' -1965-11-26 00:00 69.9 '' '' -1965-11-27 00:00 72.1 '' '' -1965-11-28 00:00 74.9 '' '' -1965-11-29 00:00 71.9 '' '' -1965-11-30 00:00 73.0 '' '' -1965-12-01 00:00 73.3 '' '' -1965-12-02 00:00 72.9 '' '' -1965-12-03 00:00 72.7 '' '' -1965-12-04 00:00 72.3 '' '' -1965-12-05 00:00 73.2 '' '' -1965-12-06 00:00 74.0 '' '' -1965-12-07 00:00 73.0 '' '' -1965-12-08 00:00 74.4 '' '' -1965-12-09 00:00 72.7 '' '' -1965-12-10 00:00 73.0 '' '' -1965-12-11 00:00 73.2 '' '' -1965-12-12 00:00 73.5 '' '' -1965-12-13 00:00 71.7 '' '' -1965-12-14 00:00 72.4 '' '' -1965-12-15 00:00 74.4 '' '' -1965-12-16 00:00 75.1 '' '' -1965-12-17 00:00 75.9 '' '' -1965-12-18 00:00 75.9 '' '' -1965-12-19 00:00 74.3 '' '' -1965-12-20 00:00 72.1 '' '' -1965-12-21 00:00 71.7 '' '' -1965-12-22 00:00 70.0 '' '' -1965-12-23 00:00 70.3 '' '' -1965-12-24 00:00 68.8 '' '' -1965-12-25 00:00 69.7 '' '' -1965-12-26 00:00 74.4 '' '' -1965-12-27 00:00 80.9 '' '' -1965-12-28 00:00 81.0 '' '' -1965-12-29 00:00 81.9 '' '' -1965-12-30 00:00 79.2 '' '' -1965-12-31 00:00 78.1 '' '' -1966-01-01 00:00 79.3 '' '' -1966-01-02 00:00 76.3 '' '' -1966-01-03 00:00 75.9 '' '' -1966-01-04 00:00 77.8 '' '' -1966-01-05 00:00 77.4 '' '' -1966-01-06 00:00 77.1 '' '' -1966-01-07 00:00 78.2 '' '' -1966-01-08 00:00 77.9 '' '' -1966-01-09 00:00 77.4 '' '' -1966-01-10 00:00 77.2 '' '' -1966-01-11 00:00 78.2 '' '' -1966-01-12 00:00 81.2 '' '' -1966-01-13 00:00 84.3 '' '' -1966-01-14 00:00 90.1 '' '' -1966-01-15 00:00 98.5 '' '' -1966-01-16 00:00 102.6 '' '' -1966-01-17 00:00 98.4 '' '' -1966-01-18 00:00 101.4 '' '' -1966-01-19 00:00 105.1 '' '' -1966-01-20 00:00 99.0 '' '' -1966-01-21 00:00 95.7 '' '' -1966-01-22 00:00 91.8 '' '' -1966-01-23 00:00 90.6 '' '' -1966-01-24 00:00 88.9 '' '' -1966-01-25 00:00 85.4 '' '' -1966-01-26 00:00 82.7 '' '' -1966-01-27 00:00 79.9 '' '' -1966-01-28 00:00 78.1 '' '' -1966-01-29 00:00 78.3 '' '' -1966-01-30 00:00 76.3 '' '' -1966-01-31 00:00 75.4 '' '' -1966-02-01 00:00 77.6 '' '' -1966-02-02 00:00 76.9 '' '' -1966-02-03 00:00 77.5 '' '' -1966-02-04 00:00 79.0 '' '' -1966-02-05 00:00 80.6 '' '' -1966-02-06 00:00 82.1 '' '' -1966-02-07 00:00 82.8 '' '' -1966-02-08 00:00 82.3 '' '' -1966-02-09 00:00 82.9 '' '' -1966-02-10 00:00 83.8 '' '' -1966-02-11 00:00 83.6 '' '' -1966-02-12 00:00 83.2 '' '' -1966-02-13 00:00 83.9 '' '' -1966-02-14 00:00 83.9 '' '' -1966-02-15 00:00 83.3 '' '' -1966-02-16 00:00 82.7 '' '' -1966-02-17 00:00 82.1 '' '' -1966-02-18 00:00 82.2 '' '' -1966-02-19 00:00 81.1 '' '' -1966-02-20 00:00 82.8 '' '' -1966-02-21 00:00 85.7 '' '' -1966-02-22 00:00 86.0 '' '' -1966-02-23 00:00 82.7 '' '' -1966-02-24 00:00 81.9 '' '' -1966-02-25 00:00 79.3 '' '' -1966-02-26 00:00 83.1 '' '' -1966-02-27 00:00 83.2 '' '' -1966-02-28 00:00 84.1 '' '' -1966-03-01 00:00 79.7 '' '' -1966-03-02 00:00 76.7 '' '' -1966-03-03 00:00 75.8 '' '' -1966-03-04 00:00 75.5 '' '' -1966-03-05 00:00 74.8 '' '' -1966-03-06 00:00 75.5 '' '' -1966-03-07 00:00 76.2 '' '' -1966-03-08 00:00 76.4 '' '' -1966-03-09 00:00 78.5 '' '' -1966-03-10 00:00 78.6 '' '' -1966-03-11 00:00 78.0 '' '' -1966-03-12 00:00 78.3 '' '' -1966-03-13 00:00 80.0 '' '' -1966-03-14 00:00 81.4 '' '' -1966-03-15 00:00 87.1 '' '' -1966-03-16 00:00 92.9 '' '' -1966-03-17 00:00 105.1 '' '' -1966-03-18 00:00 109.6 '' '' -1966-03-19 00:00 114.6 '' '' -1966-03-20 00:00 111.0 '' '' -1966-03-21 00:00 120.3 '' '' -1966-03-22 00:00 105.1 '' '' -1966-03-23 00:00 96.2 '' '' -1966-03-24 00:00 92.9 '' '' -1966-03-25 00:00 91.1 '' '' -1966-03-26 00:00 84.7 '' '' -1966-03-27 00:00 83.1 '' '' -1966-03-28 00:00 87.6 '' '' -1966-03-29 00:00 96.1 '' '' -1966-03-30 00:00 99.0 '' '' -1966-03-31 00:00 110.4 '' '' -1966-04-01 00:00 106.8 '' '' -1966-04-02 00:00 106.3 '' '' -1966-04-03 00:00 102.1 '' '' -1966-04-04 00:00 102.6 '' '' -1966-04-05 00:00 102.0 '' '' -1966-04-06 00:00 104.2 '' '' -1966-04-07 00:00 102.8 '' '' -1966-04-08 00:00 107.3 '' '' -1966-04-09 00:00 100.3 '' '' -1966-04-10 00:00 94.8 '' '' -1966-04-11 00:00 93.9 '' '' -1966-04-12 00:00 94.8 '' '' -1966-04-13 00:00 93.1 '' '' -1966-04-14 00:00 91.0 '' '' -1966-04-15 00:00 96.3 '' '' -1966-04-16 00:00 93.2 '' '' -1966-04-17 00:00 95.2 '' '' -1966-04-18 00:00 92.9 '' '' -1966-04-19 00:00 89.0 '' '' -1966-04-20 00:00 93.5 '' '' -1966-04-21 00:00 91.7 '' '' -1966-04-22 00:00 93.4 '' '' -1966-04-23 00:00 98.8 '' '' -1966-04-24 00:00 103.7 '' '' -1966-04-25 00:00 103.8 '' '' -1966-04-26 00:00 101.3 '' '' -1966-04-27 00:00 96.0 '' '' -1966-04-28 00:00 94.9 '' '' -1966-04-29 00:00 94.5 '' '' -1966-04-30 00:00 93.3 '' '' -1966-05-01 00:00 91.7 '' '' -1966-05-02 00:00 94.0 '' '' -1966-05-03 00:00 94.0 '' '' -1966-05-04 00:00 92.5 '' '' -1966-05-05 00:00 88.6 '' '' -1966-05-06 00:00 87.5 '' '' -1966-05-07 00:00 89.9 '' '' -1966-05-08 00:00 87.8 '' '' -1966-05-09 00:00 87.5 '' '' -1966-05-10 00:00 86.6 '' '' -1966-05-11 00:00 88.3 '' '' -1966-05-12 00:00 92.6 '' '' -1966-05-13 00:00 92.9 '' '' -1966-05-14 00:00 97.2 '' '' -1966-05-15 00:00 99.2 '' '' -1966-05-16 00:00 100.1 '' '' -1966-05-17 00:00 98.9 '' '' -1966-05-18 00:00 98.7 '' '' -1966-05-19 00:00 107.1 '' '' -1966-05-20 00:00 115.5 '' '' -1966-05-21 00:00 123.6 '' '' -1966-05-22 00:00 121.0 '' '' -1966-05-23 00:00 113.9 '' '' -1966-05-24 00:00 117.7 '' '' -1966-05-25 00:00 115.1 '' '' -1966-05-26 00:00 112.3 '' '' -1966-05-27 00:00 108.5 '' '' -1966-05-28 00:00 107.7 '' '' -1966-05-29 00:00 106.8 '' '' -1966-05-30 00:00 101.6 '' '' -1966-05-31 00:00 105.6 '' '' -1966-06-01 00:00 104.8 '' '' -1966-06-02 00:00 103.9 '' '' -1966-06-03 00:00 102.6 '' '' -1966-06-04 00:00 102.0 '' '' -1966-06-05 00:00 101.7 '' '' -1966-06-06 00:00 101.9 '' '' -1966-06-07 00:00 96.9 '' '' -1966-06-08 00:00 99.5 '' '' -1966-06-09 00:00 98.9 '' '' -1966-06-10 00:00 96.8 '' '' -1966-06-11 00:00 96.1 '' '' -1966-06-12 00:00 95.9 '' '' -1966-06-13 00:00 96.1 '' '' -1966-06-14 00:00 96.9 '' '' -1966-06-15 00:00 94.7 '' '' -1966-06-16 00:00 97.9 '' '' -1966-06-17 00:00 99.5 '' '' -1966-06-18 00:00 98.2 '' '' -1966-06-19 00:00 96.9 '' '' -1966-06-20 00:00 94.3 '' '' -1966-06-21 00:00 93.5 '' '' -1966-06-22 00:00 96.1 '' '' -1966-06-23 00:00 99.2 '' '' -1966-06-24 00:00 103.5 '' '' -1966-06-25 00:00 104.8 '' '' -1966-06-26 00:00 105.6 '' '' -1966-06-27 00:00 100.8 '' '' -1966-06-28 00:00 101.4 '' '' -1966-06-29 00:00 99.8 '' '' -1966-06-30 00:00 100.7 '' '' -1966-07-01 00:00 100.1 '' '' -1966-07-02 00:00 98.2 '' '' -1966-07-03 00:00 99.3 '' '' -1966-07-04 00:00 104.8 '' '' -1966-07-05 00:00 105.0 '' '' -1966-07-06 00:00 109.7 '' '' -1966-07-07 00:00 112.6 '' '' -1966-07-08 00:00 114.4 '' '' -1966-07-09 00:00 107.8 '' '' -1966-07-10 00:00 108.1 '' '' -1966-07-11 00:00 109.0 '' '' -1966-07-12 00:00 102.7 '' '' -1966-07-13 00:00 100.4 '' '' -1966-07-14 00:00 99.8 '' '' -1966-07-15 00:00 101.1 '' '' -1966-07-16 00:00 102.8 '' '' -1966-07-17 00:00 101.2 '' '' -1966-07-18 00:00 101.3 '' '' -1966-07-19 00:00 101.5 '' '' -1966-07-20 00:00 101.8 '' '' -1966-07-21 00:00 103.7 '' '' -1966-07-22 00:00 106.5 '' '' -1966-07-23 00:00 114.9 '' '' -1966-07-24 00:00 120.6 '' '' -1966-07-25 00:00 126.0 '' '' -1966-07-26 00:00 127.6 '' '' -1966-07-27 00:00 123.8 '' '' -1966-07-28 00:00 124.2 '' '' -1966-07-29 00:00 132.9 '' '' -1966-07-30 00:00 128.0 '' '' -1966-07-31 00:00 124.6 '' '' -1966-08-01 00:00 125.9 '' '' -1966-08-02 00:00 119.6 '' '' -1966-08-03 00:00 118.2 '' '' -1966-08-04 00:00 116.0 '' '' -1966-08-05 00:00 110.5 '' '' -1966-08-06 00:00 106.0 '' '' -1966-08-07 00:00 101.5 '' '' -1966-08-08 00:00 97.7 '' '' -1966-08-09 00:00 96.4 '' '' -1966-08-10 00:00 94.3 '' '' -1966-08-11 00:00 92.5 '' '' -1966-08-12 00:00 92.8 '' '' -1966-08-13 00:00 93.2 '' '' -1966-08-14 00:00 92.8 '' '' -1966-08-15 00:00 93.7 '' '' -1966-08-16 00:00 95.1 '' '' -1966-08-17 00:00 96.8 '' '' -1966-08-18 00:00 97.5 '' '' -1966-08-19 00:00 100.0 '' '' -1966-08-20 00:00 101.6 '' '' -1966-08-21 00:00 102.7 '' '' -1966-08-22 00:00 105.5 '' '' -1966-08-23 00:00 114.7 '' '' -1966-08-24 00:00 122.0 '' '' -1966-08-25 00:00 126.3 '' '' -1966-08-26 00:00 130.2 '' '' -1966-08-27 00:00 133.4 '' '' -1966-08-28 00:00 132.6 '' '' -1966-08-29 00:00 129.8 '' '' -1966-08-30 00:00 126.1 '' '' -1966-08-31 00:00 120.9 '' '' -1966-09-01 00:00 116.6 '' '' -1966-09-02 00:00 106.3 '' '' -1966-09-03 00:00 103.2 '' '' -1966-09-04 00:00 101.9 '' '' -1966-09-05 00:00 100.5 '' '' -1966-09-06 00:00 97.9 '' '' -1966-09-07 00:00 95.8 '' '' -1966-09-08 00:00 96.2 '' '' -1966-09-09 00:00 95.3 '' '' -1966-09-10 00:00 93.9 '' '' -1966-09-11 00:00 96.6 '' '' -1966-09-12 00:00 100.8 '' '' -1966-09-13 00:00 102.4 '' '' -1966-09-14 00:00 107.4 '' '' -1966-09-15 00:00 112.0 '' '' -1966-09-16 00:00 124.6 '' '' -1966-09-17 00:00 129.1 '' '' -1966-09-18 00:00 142.6 '' '' -1966-09-19 00:00 146.6 '' '' -1966-09-20 00:00 146.0 '' '' -1966-09-21 00:00 137.2 '' '' -1966-09-22 00:00 131.5 '' '' -1966-09-23 00:00 127.5 '' '' -1966-09-24 00:00 126.0 '' '' -1966-09-25 00:00 118.8 '' '' -1966-09-26 00:00 109.4 '' '' -1966-09-27 00:00 102.9 '' '' -1966-09-28 00:00 97.9 '' '' -1966-09-29 00:00 98.6 '' '' -1966-09-30 00:00 95.7 '' '' -1966-10-01 00:00 101.4 '' '' -1966-10-02 00:00 102.0 '' '' -1966-10-03 00:00 103.2 '' '' -1966-10-04 00:00 100.6 '' '' -1966-10-05 00:00 100.0 '' '' -1966-10-06 00:00 101.9 '' '' -1966-10-07 00:00 103.1 '' '' -1966-10-08 00:00 99.4 '' '' -1966-10-09 00:00 103.5 '' '' -1966-10-10 00:00 106.5 '' '' -1966-10-11 00:00 109.8 '' '' -1966-10-12 00:00 114.8 '' '' -1966-10-13 00:00 122.8 '' '' -1966-10-14 00:00 120.3 '' '' -1966-10-15 00:00 120.6 '' '' -1966-10-16 00:00 120.3 '' '' -1966-10-17 00:00 120.5 '' '' -1966-10-18 00:00 118.5 '' '' -1966-10-19 00:00 115.6 '' '' -1966-10-20 00:00 124.1 '' '' -1966-10-21 00:00 120.9 '' '' -1966-10-22 00:00 119.8 '' '' -1966-10-23 00:00 111.1 '' '' -1966-10-24 00:00 106.1 '' '' -1966-10-25 00:00 100.8 '' '' -1966-10-26 00:00 97.7 '' '' -1966-10-27 00:00 92.0 '' '' -1966-10-28 00:00 94.1 '' '' -1966-10-29 00:00 99.7 '' '' -1966-10-30 00:00 95.7 '' '' -1966-10-31 00:00 97.1 '' '' -1966-11-01 00:00 94.6 '' '' -1966-11-02 00:00 96.7 '' '' -1966-11-03 00:00 93.1 '' '' -1966-11-04 00:00 91.7 '' '' -1966-11-05 00:00 97.9 '' '' -1966-11-06 00:00 104.7 '' '' -1966-11-07 00:00 113.4 '' '' -1966-11-08 00:00 116.9 '' '' -1966-11-09 00:00 117.2 '' '' -1966-11-10 00:00 121.9 '' '' -1966-11-11 00:00 126.1 '' '' -1966-11-12 00:00 126.2 '' '' -1966-11-13 00:00 126.4 '' '' -1966-11-14 00:00 124.0 '' '' -1966-11-15 00:00 122.6 '' '' -1966-11-16 00:00 121.2 '' '' -1966-11-17 00:00 113.2 '' '' -1966-11-18 00:00 113.4 '' '' -1966-11-19 00:00 111.0 '' '' -1966-11-20 00:00 110.9 '' '' -1966-11-21 00:00 110.7 '' '' -1966-11-22 00:00 116.5 '' '' -1966-11-23 00:00 114.7 '' '' -1966-11-24 00:00 113.8 '' '' -1966-11-25 00:00 110.7 '' '' -1966-11-26 00:00 107.3 '' '' -1966-11-27 00:00 111.1 '' '' -1966-11-28 00:00 104.1 '' '' -1966-11-29 00:00 98.0 '' '' -1966-11-30 00:00 94.6 '' '' -1966-12-01 00:00 92.2 '' '' -1966-12-02 00:00 95.1 '' '' -1966-12-03 00:00 100.0 '' '' -1966-12-04 00:00 104.8 '' '' -1966-12-05 00:00 110.9 '' '' -1966-12-06 00:00 115.6 '' '' -1966-12-07 00:00 117.7 '' '' -1966-12-08 00:00 123.7 '' '' -1966-12-09 00:00 146.2 '' '' -1966-12-10 00:00 157.3 '' '' -1966-12-11 00:00 162.8 '' '' -1966-12-12 00:00 157.6 '' '' -1966-12-13 00:00 155.5 '' '' -1966-12-14 00:00 149.5 '' '' -1966-12-15 00:00 144.9 '' '' -1966-12-16 00:00 135.1 '' '' -1966-12-17 00:00 124.9 '' '' -1966-12-18 00:00 111.2 '' '' -1966-12-19 00:00 112.3 '' '' -1966-12-20 00:00 107.6 '' '' -1966-12-21 00:00 106.5 '' '' -1966-12-22 00:00 105.5 '' '' -1966-12-23 00:00 110.6 '' '' -1966-12-24 00:00 110.5 '' '' -1966-12-25 00:00 111.6 '' '' -1966-12-26 00:00 110.9 '' '' -1966-12-27 00:00 109.6 '' '' -1966-12-28 00:00 107.5 '' '' -1966-12-29 00:00 109.3 '' '' -1966-12-30 00:00 115.1 '' '' -1966-12-31 00:00 120.5 '' '' -1967-01-01 00:00 124.4 '' '' -1967-01-02 00:00 143.0 '' '' -1967-01-03 00:00 154.0 '' '' -1967-01-04 00:00 160.7 '' '' -1967-01-05 00:00 168.2 '' '' -1967-01-06 00:00 160.5 '' '' -1967-01-07 00:00 153.6 '' '' -1967-01-08 00:00 142.9 '' '' -1967-01-09 00:00 144.7 '' '' -1967-01-10 00:00 145.6 '' '' -1967-01-11 00:00 139.8 '' '' -1967-01-12 00:00 139.1 '' '' -1967-01-13 00:00 138.1 '' '' -1967-01-14 00:00 135.2 '' '' -1967-01-15 00:00 126.6 '' '' -1967-01-16 00:00 120.2 '' '' -1967-01-17 00:00 116.9 '' '' -1967-01-18 00:00 117.4 '' '' -1967-01-19 00:00 116.4 '' '' -1967-01-20 00:00 127.0 '' '' -1967-01-21 00:00 138.2 '' '' -1967-01-22 00:00 139.9 '' '' -1967-01-23 00:00 148.8 '' '' -1967-01-24 00:00 146.8 '' '' -1967-01-25 00:00 142.7 '' '' -1967-01-26 00:00 154.3 '' '' -1967-01-27 00:00 158.3 '' '' -1967-01-28 00:00 156.2 '' '' -1967-01-29 00:00 158.2 '' '' -1967-01-30 00:00 159.0 '' '' -1967-01-31 00:00 156.4 '' '' -1967-02-01 00:00 151.6 '' '' -1967-02-02 00:00 143.5 '' '' -1967-02-03 00:00 138.7 '' '' -1967-02-04 00:00 137.3 '' '' -1967-02-05 00:00 146.8 '' '' -1967-02-06 00:00 148.8 '' '' -1967-02-07 00:00 162.5 '' '' -1967-02-08 00:00 148.3 '' '' -1967-02-09 00:00 145.9 '' '' -1967-02-10 00:00 140.5 '' '' -1967-02-11 00:00 133.7 '' '' -1967-02-12 00:00 132.9 '' '' -1967-02-13 00:00 130.0 '' '' -1967-02-14 00:00 129.2 '' '' -1967-02-15 00:00 126.4 '' '' -1967-02-16 00:00 124.9 '' '' -1967-02-17 00:00 122.2 '' '' -1967-02-18 00:00 124.2 '' '' -1967-02-19 00:00 121.0 '' '' -1967-02-20 00:00 128.6 '' '' -1967-02-21 00:00 131.8 '' '' -1967-02-22 00:00 146.0 '' '' -1967-02-23 00:00 149.3 '' '' -1967-02-24 00:00 162.2 '' '' -1967-02-25 00:00 159.5 '' '' -1967-02-26 00:00 173.3 '' '' -1967-02-27 00:00 176.7 '' '' -1967-02-28 00:00 180.2 '' '' -1967-03-01 00:00 194.2 '' '' -1967-03-02 00:00 197.8 '' '' -1967-03-03 00:00 196.4 '' '' -1967-03-04 00:00 205.9 '' '' -1967-03-05 00:00 179.2 '' '' -1967-03-06 00:00 177.4 '' '' -1967-03-07 00:00 163.8 '' '' -1967-03-08 00:00 156.1 '' '' -1967-03-09 00:00 157.9 '' '' -1967-03-10 00:00 148.4 '' '' -1967-03-11 00:00 141.6 '' '' -1967-03-12 00:00 134.3 '' '' -1967-03-13 00:00 129.1 '' '' -1967-03-14 00:00 127.2 '' '' -1967-03-15 00:00 132.4 '' '' -1967-03-16 00:00 132.1 '' '' -1967-03-17 00:00 132.6 '' '' -1967-03-18 00:00 132.2 '' '' -1967-03-19 00:00 136.0 '' '' -1967-03-20 00:00 140.4 '' '' -1967-03-21 00:00 147.2 '' '' -1967-03-22 00:00 149.5 '' '' -1967-03-23 00:00 155.7 '' '' -1967-03-24 00:00 161.9 '' '' -1967-03-25 00:00 169.2 '' '' -1967-03-26 00:00 163.9 '' '' -1967-03-27 00:00 162.8 '' '' -1967-03-28 00:00 180.7 '' '' -1967-03-29 00:00 178.4 '' '' -1967-03-30 00:00 175.8 '' '' -1967-03-31 00:00 167.6 '' '' -1967-04-01 00:00 158.6 '' '' -1967-04-02 00:00 141.0 '' '' -1967-04-03 00:00 133.3 '' '' -1967-04-04 00:00 125.0 '' '' -1967-04-05 00:00 122.1 '' '' -1967-04-06 00:00 119.0 '' '' -1967-04-07 00:00 126.2 '' '' -1967-04-08 00:00 135.7 '' '' -1967-04-09 00:00 133.3 '' '' -1967-04-10 00:00 130.3 '' '' -1967-04-11 00:00 131.1 '' '' -1967-04-12 00:00 129.8 '' '' -1967-04-13 00:00 126.8 '' '' -1967-04-14 00:00 133.5 '' '' -1967-04-15 00:00 124.1 '' '' -1967-04-16 00:00 126.1 '' '' -1967-04-17 00:00 125.9 '' '' -1967-04-18 00:00 128.7 '' '' -1967-04-19 00:00 126.7 '' '' -1967-04-20 00:00 127.1 '' '' -1967-04-21 00:00 134.0 '' '' -1967-04-22 00:00 131.5 '' '' -1967-04-23 00:00 128.0 '' '' -1967-04-24 00:00 130.5 '' '' -1967-04-25 00:00 132.9 '' '' -1967-04-26 00:00 125.4 '' '' -1967-04-27 00:00 129.2 '' '' -1967-04-28 00:00 135.1 '' '' -1967-04-29 00:00 137.5 '' '' -1967-04-30 00:00 135.3 '' '' -1967-05-01 00:00 136.6 '' '' -1967-05-02 00:00 131.8 '' '' -1967-05-03 00:00 128.8 '' '' -1967-05-04 00:00 125.8 '' '' -1967-05-05 00:00 128.1 '' '' -1967-05-06 00:00 122.8 '' '' -1967-05-07 00:00 119.7 '' '' -1967-05-08 00:00 116.9 '' '' -1967-05-09 00:00 113.6 '' '' -1967-05-10 00:00 109.4 '' '' -1967-05-11 00:00 106.1 '' '' -1967-05-12 00:00 109.7 '' '' -1967-05-13 00:00 107.3 '' '' -1967-05-14 00:00 108.6 '' '' -1967-05-15 00:00 111.0 '' '' -1967-05-16 00:00 113.1 '' '' -1967-05-17 00:00 115.4 '' '' -1967-05-18 00:00 124.8 '' '' -1967-05-19 00:00 135.6 '' '' -1967-05-20 00:00 146.3 '' '' -1967-05-21 00:00 160.3 '' '' -1967-05-22 00:00 182.7 '' '' -1967-05-23 00:00 194.0 '' '' -1967-05-24 00:00 200.9 '' '' -1967-05-25 00:00 210.7 '' '' -1967-05-26 00:00 218.9 '' '' -1967-05-27 00:00 213.8 '' '' -1967-05-28 00:00 202.6 '' '' -1967-05-29 00:00 188.3 '' '' -1967-05-30 00:00 177.4 '' '' -1967-05-31 00:00 175.4 '' '' -1967-06-01 00:00 174.6 '' '' -1967-06-02 00:00 158.0 '' '' -1967-06-03 00:00 150.4 '' '' -1967-06-04 00:00 148.4 '' '' -1967-06-05 00:00 138.7 '' '' -1967-06-06 00:00 130.5 '' '' -1967-06-07 00:00 119.1 '' '' -1967-06-08 00:00 110.1 '' '' -1967-06-09 00:00 103.7 '' '' -1967-06-10 00:00 97.1 '' '' -1967-06-11 00:00 96.9 '' '' -1967-06-12 00:00 96.5 '' '' -1967-06-13 00:00 99.8 '' '' -1967-06-14 00:00 103.8 '' '' -1967-06-15 00:00 107.2 '' '' -1967-06-16 00:00 111.8 '' '' -1967-06-17 00:00 112.0 '' '' -1967-06-18 00:00 115.4 '' '' -1967-06-19 00:00 119.0 '' '' -1967-06-20 00:00 121.3 '' '' -1967-06-21 00:00 122.9 '' '' -1967-06-22 00:00 129.6 '' '' -1967-06-23 00:00 133.1 '' '' -1967-06-24 00:00 132.4 '' '' -1967-06-25 00:00 133.1 '' '' -1967-06-26 00:00 127.8 '' '' -1967-06-27 00:00 131.5 '' '' -1967-06-28 00:00 136.7 '' '' -1967-06-29 00:00 133.4 '' '' -1967-06-30 00:00 126.1 '' '' -1967-07-01 00:00 125.0 '' '' -1967-07-02 00:00 125.7 '' '' -1967-07-03 00:00 129.6 '' '' -1967-07-04 00:00 127.2 '' '' -1967-07-05 00:00 123.7 '' '' -1967-07-06 00:00 116.6 '' '' -1967-07-07 00:00 116.0 '' '' -1967-07-08 00:00 111.8 '' '' -1967-07-09 00:00 109.7 '' '' -1967-07-10 00:00 105.8 '' '' -1967-07-11 00:00 107.1 '' '' -1967-07-12 00:00 106.1 '' '' -1967-07-13 00:00 113.8 '' '' -1967-07-14 00:00 122.4 '' '' -1967-07-15 00:00 127.6 '' '' -1967-07-16 00:00 130.1 '' '' -1967-07-17 00:00 129.6 '' '' -1967-07-18 00:00 131.3 '' '' -1967-07-19 00:00 128.6 '' '' -1967-07-20 00:00 135.5 '' '' -1967-07-21 00:00 140.2 '' '' -1967-07-22 00:00 152.4 '' '' -1967-07-23 00:00 161.8 '' '' -1967-07-24 00:00 176.4 '' '' -1967-07-25 00:00 195.5 '' '' -1967-07-26 00:00 199.9 '' '' -1967-07-27 00:00 213.2 '' '' -1967-07-28 00:00 213.1 '' '' -1967-07-29 00:00 215.7 '' '' -1967-07-30 00:00 211.6 '' '' -1967-07-31 00:00 188.9 '' '' -1967-08-01 00:00 176.6 '' '' -1967-08-02 00:00 166.7 '' '' -1967-08-03 00:00 163.5 '' '' -1967-08-04 00:00 149.3 '' '' -1967-08-05 00:00 155.4 '' '' -1967-08-06 00:00 155.4 '' '' -1967-08-07 00:00 150.2 '' '' -1967-08-08 00:00 143.4 '' '' -1967-08-09 00:00 141.2 '' '' -1967-08-10 00:00 136.7 '' '' -1967-08-11 00:00 136.2 '' '' -1967-08-12 00:00 138.9 '' '' -1967-08-13 00:00 137.5 '' '' -1967-08-14 00:00 130.0 '' '' -1967-08-15 00:00 127.4 '' '' -1967-08-16 00:00 132.9 '' '' -1967-08-17 00:00 148.3 '' '' -1967-08-18 00:00 157.1 '' '' -1967-08-19 00:00 172.3 '' '' -1967-08-20 00:00 172.9 '' '' -1967-08-21 00:00 178.8 '' '' -1967-08-22 00:00 178.5 '' '' -1967-08-23 00:00 178.3 '' '' -1967-08-24 00:00 169.9 '' '' -1967-08-25 00:00 170.8 '' '' -1967-08-26 00:00 172.0 '' '' -1967-08-27 00:00 171.2 '' '' -1967-08-28 00:00 169.9 '' '' -1967-08-29 00:00 172.7 '' '' -1967-08-30 00:00 164.0 '' '' -1967-08-31 00:00 165.7 '' '' -1967-09-01 00:00 160.5 '' '' -1967-09-02 00:00 156.6 '' '' -1967-09-03 00:00 147.0 '' '' -1967-09-04 00:00 140.9 '' '' -1967-09-05 00:00 138.7 '' '' -1967-09-06 00:00 133.8 '' '' -1967-09-07 00:00 128.4 '' '' -1967-09-08 00:00 133.9 '' '' -1967-09-09 00:00 131.5 '' '' -1967-09-10 00:00 133.6 '' '' -1967-09-11 00:00 131.8 '' '' -1967-09-12 00:00 131.7 '' '' -1967-09-13 00:00 127.6 '' '' -1967-09-14 00:00 128.0 '' '' -1967-09-15 00:00 130.4 '' '' -1967-09-16 00:00 126.4 '' '' -1967-09-17 00:00 126.7 '' '' -1967-09-18 00:00 128.7 '' '' -1967-09-19 00:00 127.7 '' '' -1967-09-20 00:00 130.6 '' '' -1967-09-21 00:00 126.6 '' '' -1967-09-22 00:00 124.6 '' '' -1967-09-23 00:00 123.8 '' '' -1967-09-24 00:00 131.8 '' '' -1967-09-25 00:00 134.1 '' '' -1967-09-26 00:00 134.4 '' '' -1967-09-27 00:00 137.3 '' '' -1967-09-28 00:00 134.6 '' '' -1967-09-29 00:00 131.7 '' '' -1967-09-30 00:00 131.7 '' '' -1967-10-01 00:00 139.7 '' '' -1967-10-02 00:00 135.0 '' '' -1967-10-03 00:00 131.5 '' '' -1967-10-04 00:00 129.9 '' '' -1967-10-05 00:00 125.7 '' '' -1967-10-06 00:00 129.9 '' '' -1967-10-07 00:00 125.8 '' '' -1967-10-08 00:00 121.5 '' '' -1967-10-09 00:00 122.1 '' '' -1967-10-10 00:00 127.3 '' '' -1967-10-11 00:00 136.5 '' '' -1967-10-12 00:00 135.4 '' '' -1967-10-13 00:00 130.8 '' '' -1967-10-14 00:00 127.8 '' '' -1967-10-15 00:00 122.6 '' '' -1967-10-16 00:00 118.0 '' '' -1967-10-17 00:00 117.3 '' '' -1967-10-18 00:00 113.3 '' '' -1967-10-19 00:00 119.3 '' '' -1967-10-20 00:00 131.2 '' '' -1967-10-21 00:00 130.1 '' '' -1967-10-22 00:00 137.3 '' '' -1967-10-23 00:00 139.4 '' '' -1967-10-24 00:00 141.3 '' '' -1967-10-25 00:00 142.1 '' '' -1967-10-26 00:00 148.2 '' '' -1967-10-27 00:00 161.1 '' '' -1967-10-28 00:00 177.0 '' '' -1967-10-29 00:00 163.4 '' '' -1967-10-30 00:00 159.5 '' '' -1967-10-31 00:00 148.6 '' '' -1967-11-01 00:00 140.3 '' '' -1967-11-02 00:00 140.9 '' '' -1967-11-03 00:00 137.5 '' '' -1967-11-04 00:00 130.5 '' '' -1967-11-05 00:00 121.8 '' '' -1967-11-06 00:00 119.6 '' '' -1967-11-07 00:00 113.1 '' '' -1967-11-08 00:00 112.8 '' '' -1967-11-09 00:00 111.1 '' '' -1967-11-10 00:00 117.3 '' '' -1967-11-11 00:00 124.1 '' '' -1967-11-12 00:00 132.7 '' '' -1967-11-13 00:00 134.7 '' '' -1967-11-14 00:00 136.9 '' '' -1967-11-15 00:00 142.9 '' '' -1967-11-16 00:00 151.8 '' '' -1967-11-17 00:00 154.9 '' '' -1967-11-18 00:00 156.9 '' '' -1967-11-19 00:00 166.7 '' '' -1967-11-20 00:00 166.0 '' '' -1967-11-21 00:00 161.4 '' '' -1967-11-22 00:00 159.4 '' '' -1967-11-23 00:00 156.6 '' '' -1967-11-24 00:00 152.6 '' '' -1967-11-25 00:00 154.7 '' '' -1967-11-26 00:00 157.9 '' '' -1967-11-27 00:00 155.0 '' '' -1967-11-28 00:00 157.2 '' '' -1967-11-29 00:00 150.3 '' '' -1967-11-30 00:00 144.4 '' '' -1967-12-01 00:00 140.0 '' '' -1967-12-02 00:00 131.5 '' '' -1967-12-03 00:00 120.5 '' '' -1967-12-04 00:00 126.3 '' '' -1967-12-05 00:00 121.6 '' '' -1967-12-06 00:00 130.3 '' '' -1967-12-07 00:00 127.6 '' '' -1967-12-08 00:00 129.6 '' '' -1967-12-09 00:00 130.0 '' '' -1967-12-10 00:00 127.7 '' '' -1967-12-11 00:00 136.6 '' '' -1967-12-12 00:00 139.1 '' '' -1967-12-13 00:00 143.0 '' '' -1967-12-14 00:00 153.4 '' '' -1967-12-15 00:00 164.3 '' '' -1967-12-16 00:00 181.3 '' '' -1967-12-17 00:00 202.0 '' '' -1967-12-18 00:00 212.4 '' '' -1967-12-19 00:00 205.4 '' '' -1967-12-20 00:00 201.5 '' '' -1967-12-21 00:00 198.0 '' '' -1967-12-22 00:00 182.3 '' '' -1967-12-23 00:00 164.0 '' '' -1967-12-24 00:00 152.9 '' '' -1967-12-25 00:00 159.4 '' '' -1967-12-26 00:00 165.3 '' '' -1967-12-27 00:00 177.0 '' '' -1967-12-28 00:00 184.1 '' '' -1967-12-29 00:00 176.5 '' '' -1967-12-30 00:00 158.9 '' '' -1967-12-31 00:00 152.6 '' '' -1968-01-01 00:00 171.4 '' '' -1968-01-02 00:00 171.8 '' '' -1968-01-03 00:00 179.3 '' '' -1968-01-04 00:00 183.8 '' '' -1968-01-05 00:00 191.2 '' '' -1968-01-06 00:00 209.7 '' '' -1968-01-07 00:00 223.9 '' '' -1968-01-08 00:00 230.2 '' '' -1968-01-09 00:00 222.0 '' '' -1968-01-10 00:00 208.3 '' '' -1968-01-11 00:00 202.5 '' '' -1968-01-12 00:00 198.9 '' '' -1968-01-13 00:00 197.2 '' '' -1968-01-14 00:00 187.0 '' '' -1968-01-15 00:00 176.6 '' '' -1968-01-16 00:00 160.8 '' '' -1968-01-17 00:00 157.4 '' '' -1968-01-18 00:00 148.5 '' '' -1968-01-19 00:00 141.6 '' '' -1968-01-20 00:00 137.3 '' '' -1968-01-21 00:00 132.5 '' '' -1968-01-22 00:00 135.7 '' '' -1968-01-23 00:00 137.9 '' '' -1968-01-24 00:00 148.6 '' '' -1968-01-25 00:00 160.1 '' '' -1968-01-26 00:00 174.0 '' '' -1968-01-27 00:00 185.0 '' '' -1968-01-28 00:00 213.0 '' '' -1968-01-29 00:00 220.7 '' '' -1968-01-30 00:00 229.1 '' '' -1968-01-31 00:00 239.1 '' '' -1968-02-01 00:00 254.1 '' '' -1968-02-02 00:00 253.0 '' '' -1968-02-03 00:00 244.3 '' '' -1968-02-04 00:00 220.3 '' '' -1968-02-05 00:00 191.4 '' '' -1968-02-06 00:00 172.2 '' '' -1968-02-07 00:00 164.2 '' '' -1968-02-08 00:00 151.5 '' '' -1968-02-09 00:00 151.7 '' '' -1968-02-10 00:00 155.7 '' '' -1968-02-11 00:00 155.7 '' '' -1968-02-12 00:00 159.1 '' '' -1968-02-13 00:00 149.1 '' '' -1968-02-14 00:00 145.7 '' '' -1968-02-15 00:00 141.8 '' '' -1968-02-16 00:00 142.5 '' '' -1968-02-17 00:00 138.6 '' '' -1968-02-18 00:00 135.2 '' '' -1968-02-19 00:00 137.5 '' '' -1968-02-20 00:00 138.6 '' '' -1968-02-21 00:00 148.5 '' '' -1968-02-22 00:00 151.8 '' '' -1968-02-23 00:00 156.5 '' '' -1968-02-24 00:00 164.6 '' '' -1968-02-25 00:00 177.4 '' '' -1968-02-26 00:00 183.9 '' '' -1968-02-27 00:00 175.7 '' '' -1968-02-28 00:00 170.7 '' '' -1968-02-29 00:00 167.4 '' '' -1968-03-01 00:00 162.8 '' '' -1968-03-02 00:00 164.4 '' '' -1968-03-03 00:00 150.8 '' '' -1968-03-04 00:00 144.5 '' '' -1968-03-05 00:00 137.8 '' '' -1968-03-06 00:00 136.0 '' '' -1968-03-07 00:00 131.6 '' '' -1968-03-08 00:00 124.1 '' '' -1968-03-09 00:00 122.8 '' '' -1968-03-10 00:00 124.1 '' '' -1968-03-11 00:00 128.3 '' '' -1968-03-12 00:00 130.4 '' '' -1968-03-13 00:00 127.8 '' '' -1968-03-14 00:00 127.9 '' '' -1968-03-15 00:00 125.9 '' '' -1968-03-16 00:00 128.2 '' '' -1968-03-17 00:00 135.2 '' '' -1968-03-18 00:00 132.2 '' '' -1968-03-19 00:00 130.1 '' '' -1968-03-20 00:00 129.6 '' '' -1968-03-21 00:00 140.0 '' '' -1968-03-22 00:00 142.2 '' '' -1968-03-23 00:00 145.5 '' '' -1968-03-24 00:00 154.4 '' '' -1968-03-25 00:00 156.0 '' '' -1968-03-26 00:00 156.8 '' '' -1968-03-27 00:00 159.2 '' '' -1968-03-28 00:00 157.1 '' '' -1968-03-29 00:00 156.2 '' '' -1968-03-30 00:00 160.3 '' '' -1968-03-31 00:00 155.8 '' '' -1968-04-01 00:00 143.8 '' '' -1968-04-02 00:00 144.1 '' '' -1968-04-03 00:00 137.1 '' '' -1968-04-04 00:00 131.7 '' '' -1968-04-05 00:00 129.1 '' '' -1968-04-06 00:00 125.1 '' '' -1968-04-07 00:00 124.7 '' '' -1968-04-08 00:00 130.7 '' '' -1968-04-09 00:00 141.1 '' '' -1968-04-10 00:00 142.8 '' '' -1968-04-11 00:00 138.4 '' '' -1968-04-12 00:00 142.7 '' '' -1968-04-13 00:00 141.9 '' '' -1968-04-14 00:00 138.3 '' '' -1968-04-15 00:00 140.0 '' '' -1968-04-16 00:00 141.0 '' '' -1968-04-17 00:00 132.2 '' '' -1968-04-18 00:00 127.7 '' '' -1968-04-19 00:00 125.3 '' '' -1968-04-20 00:00 122.4 '' '' -1968-04-21 00:00 123.4 '' '' -1968-04-22 00:00 115.6 '' '' -1968-04-23 00:00 111.7 '' '' -1968-04-24 00:00 117.5 '' '' -1968-04-25 00:00 119.9 '' '' -1968-04-26 00:00 114.3 '' '' -1968-04-27 00:00 119.1 '' '' -1968-04-28 00:00 128.4 '' '' -1968-04-29 00:00 128.0 '' '' -1968-04-30 00:00 132.8 '' '' -1968-05-01 00:00 144.8 '' '' -1968-05-02 00:00 148.2 '' '' -1968-05-03 00:00 156.3 '' '' -1968-05-04 00:00 154.5 '' '' -1968-05-05 00:00 156.0 '' '' -1968-05-06 00:00 148.5 '' '' -1968-05-07 00:00 145.4 '' '' -1968-05-08 00:00 141.6 '' '' -1968-05-09 00:00 139.8 '' '' -1968-05-10 00:00 139.7 '' '' -1968-05-11 00:00 133.5 '' '' -1968-05-12 00:00 127.3 '' '' -1968-05-13 00:00 128.3 '' '' -1968-05-14 00:00 138.2 '' '' -1968-05-15 00:00 141.8 '' '' -1968-05-16 00:00 150.7 '' '' -1968-05-17 00:00 166.5 '' '' -1968-05-18 00:00 178.4 '' '' -1968-05-19 00:00 185.3 '' '' -1968-05-20 00:00 193.6 '' '' -1968-05-21 00:00 194.6 '' '' -1968-05-22 00:00 190.3 '' '' -1968-05-23 00:00 185.7 '' '' -1968-05-24 00:00 182.6 '' '' -1968-05-25 00:00 181.0 '' '' -1968-05-26 00:00 177.1 '' '' -1968-05-27 00:00 170.9 '' '' -1968-05-28 00:00 158.1 '' '' -1968-05-29 00:00 150.9 '' '' -1968-05-30 00:00 151.3 '' '' -1968-05-31 00:00 148.9 '' '' -1968-06-01 00:00 152.0 '' '' -1968-06-02 00:00 145.4 '' '' -1968-06-03 00:00 143.8 '' '' -1968-06-04 00:00 144.0 '' '' -1968-06-05 00:00 138.3 '' '' -1968-06-06 00:00 145.5 '' '' -1968-06-07 00:00 152.2 '' '' -1968-06-08 00:00 154.6 '' '' -1968-06-09 00:00 149.0 '' '' -1968-06-10 00:00 147.9 '' '' -1968-06-11 00:00 146.5 '' '' -1968-06-12 00:00 143.4 '' '' -1968-06-13 00:00 143.4 '' '' -1968-06-14 00:00 139.5 '' '' -1968-06-15 00:00 139.7 '' '' -1968-06-16 00:00 138.2 '' '' -1968-06-17 00:00 139.6 '' '' -1968-06-18 00:00 143.2 '' '' -1968-06-19 00:00 147.5 '' '' -1968-06-20 00:00 151.5 '' '' -1968-06-21 00:00 157.2 '' '' -1968-06-22 00:00 154.6 '' '' -1968-06-23 00:00 163.8 '' '' -1968-06-24 00:00 157.5 '' '' -1968-06-25 00:00 154.0 '' '' -1968-06-26 00:00 146.2 '' '' -1968-06-27 00:00 147.6 '' '' -1968-06-28 00:00 142.8 '' '' -1968-06-29 00:00 139.1 '' '' -1968-06-30 00:00 135.9 '' '' -1968-07-01 00:00 128.3 '' '' -1968-07-02 00:00 120.3 '' '' -1968-07-03 00:00 117.2 '' '' -1968-07-04 00:00 116.0 '' '' -1968-07-05 00:00 119.4 '' '' -1968-07-06 00:00 120.1 '' '' -1968-07-07 00:00 135.0 '' '' -1968-07-08 00:00 147.1 '' '' -1968-07-09 00:00 153.6 '' '' -1968-07-10 00:00 157.0 '' '' -1968-07-11 00:00 162.8 '' '' -1968-07-12 00:00 166.1 '' '' -1968-07-13 00:00 155.6 '' '' -1968-07-14 00:00 155.9 '' '' -1968-07-15 00:00 147.9 '' '' -1968-07-16 00:00 149.5 '' '' -1968-07-17 00:00 143.6 '' '' -1968-07-18 00:00 135.2 '' '' -1968-07-19 00:00 135.3 '' '' -1968-07-20 00:00 133.9 '' '' -1968-07-21 00:00 133.0 '' '' -1968-07-22 00:00 139.0 '' '' -1968-07-23 00:00 146.1 '' '' -1968-07-24 00:00 152.7 '' '' -1968-07-25 00:00 158.2 '' '' -1968-07-26 00:00 154.4 '' '' -1968-07-27 00:00 146.8 '' '' -1968-07-28 00:00 143.6 '' '' -1968-07-29 00:00 144.3 '' '' -1968-07-30 00:00 138.6 '' '' -1968-07-31 00:00 134.7 '' '' -1968-08-01 00:00 134.2 '' '' -1968-08-02 00:00 134.2 '' '' -1968-08-03 00:00 140.9 '' '' -1968-08-04 00:00 135.6 '' '' -1968-08-05 00:00 135.9 '' '' -1968-08-06 00:00 148.0 '' '' -1968-08-07 00:00 139.8 '' '' -1968-08-08 00:00 141.8 '' '' -1968-08-09 00:00 146.7 '' '' -1968-08-10 00:00 146.6 '' '' -1968-08-11 00:00 150.7 '' '' -1968-08-12 00:00 161.6 '' '' -1968-08-13 00:00 170.8 '' '' -1968-08-14 00:00 185.1 '' '' -1968-08-15 00:00 185.7 '' '' -1968-08-16 00:00 179.0 '' '' -1968-08-17 00:00 169.2 '' '' -1968-08-18 00:00 164.8 '' '' -1968-08-19 00:00 159.8 '' '' -1968-08-20 00:00 159.9 '' '' -1968-08-21 00:00 158.6 '' '' -1968-08-22 00:00 153.8 '' '' -1968-08-23 00:00 137.7 '' '' -1968-08-24 00:00 130.8 '' '' -1968-08-25 00:00 124.2 '' '' -1968-08-26 00:00 118.0 '' '' -1968-08-27 00:00 114.5 '' '' -1968-08-28 00:00 119.4 '' '' -1968-08-29 00:00 121.7 '' '' -1968-08-30 00:00 125.5 '' '' -1968-08-31 00:00 123.5 '' '' -1968-09-01 00:00 129.5 '' '' -1968-09-02 00:00 134.2 '' '' -1968-09-03 00:00 142.8 '' '' -1968-09-04 00:00 143.2 '' '' -1968-09-05 00:00 139.6 '' '' -1968-09-06 00:00 136.0 '' '' -1968-09-07 00:00 141.1 '' '' -1968-09-08 00:00 149.4 '' '' -1968-09-09 00:00 149.4 '' '' -1968-09-10 00:00 156.2 '' '' -1968-09-11 00:00 152.5 '' '' -1968-09-12 00:00 156.0 '' '' -1968-09-13 00:00 150.6 '' '' -1968-09-14 00:00 146.7 '' '' -1968-09-15 00:00 135.7 '' '' -1968-09-16 00:00 132.0 '' '' -1968-09-17 00:00 131.5 '' '' -1968-09-18 00:00 128.7 '' '' -1968-09-19 00:00 127.3 '' '' -1968-09-20 00:00 127.4 '' '' -1968-09-21 00:00 133.6 '' '' -1968-09-22 00:00 127.5 '' '' -1968-09-23 00:00 126.8 '' '' -1968-09-24 00:00 143.0 '' '' -1968-09-25 00:00 158.1 '' '' -1968-09-26 00:00 160.0 '' '' -1968-09-27 00:00 157.8 '' '' -1968-09-28 00:00 158.8 '' '' -1968-09-29 00:00 154.0 '' '' -1968-09-30 00:00 144.3 '' '' -1968-10-01 00:00 136.5 '' '' -1968-10-02 00:00 136.3 '' '' -1968-10-03 00:00 145.2 '' '' -1968-10-04 00:00 146.1 '' '' -1968-10-05 00:00 147.9 '' '' -1968-10-06 00:00 145.3 '' '' -1968-10-07 00:00 146.9 '' '' -1968-10-08 00:00 141.6 '' '' -1968-10-09 00:00 137.3 '' '' -1968-10-10 00:00 134.6 '' '' -1968-10-11 00:00 133.9 '' '' -1968-10-12 00:00 136.8 '' '' -1968-10-13 00:00 127.2 '' '' -1968-10-14 00:00 132.1 '' '' -1968-10-15 00:00 137.0 '' '' -1968-10-16 00:00 137.2 '' '' -1968-10-17 00:00 142.5 '' '' -1968-10-18 00:00 149.6 '' '' -1968-10-19 00:00 153.7 '' '' -1968-10-20 00:00 155.5 '' '' -1968-10-21 00:00 163.3 '' '' -1968-10-22 00:00 164.8 '' '' -1968-10-23 00:00 167.0 '' '' -1968-10-24 00:00 173.3 '' '' -1968-10-25 00:00 171.7 '' '' -1968-10-26 00:00 172.5 '' '' -1968-10-27 00:00 172.8 '' '' -1968-10-28 00:00 171.0 '' '' -1968-10-29 00:00 191.1 '' '' -1968-10-30 00:00 163.9 '' '' -1968-10-31 00:00 159.5 '' '' -1968-11-01 00:00 153.4 '' '' -1968-11-02 00:00 151.5 '' '' -1968-11-03 00:00 146.1 '' '' -1968-11-04 00:00 140.3 '' '' -1968-11-05 00:00 132.9 '' '' -1968-11-06 00:00 131.4 '' '' -1968-11-07 00:00 129.1 '' '' -1968-11-08 00:00 133.1 '' '' -1968-11-09 00:00 135.4 '' '' -1968-11-10 00:00 135.2 '' '' -1968-11-11 00:00 132.6 '' '' -1968-11-12 00:00 129.3 '' '' -1968-11-13 00:00 131.5 '' '' -1968-11-14 00:00 131.3 '' '' -1968-11-15 00:00 133.5 '' '' -1968-11-16 00:00 127.6 '' '' -1968-11-17 00:00 140.5 '' '' -1968-11-18 00:00 148.0 '' '' -1968-11-19 00:00 141.3 '' '' -1968-11-20 00:00 139.1 '' '' -1968-11-21 00:00 133.8 '' '' -1968-11-22 00:00 131.0 '' '' -1968-11-23 00:00 132.3 '' '' -1968-11-24 00:00 134.2 '' '' -1968-11-25 00:00 135.3 '' '' -1968-11-26 00:00 135.2 '' '' -1968-11-27 00:00 134.1 '' '' -1968-11-28 00:00 129.6 '' '' -1968-11-29 00:00 128.2 '' '' -1968-11-30 00:00 128.6 '' '' -1968-12-01 00:00 140.2 '' '' -1968-12-02 00:00 149.9 '' '' -1968-12-03 00:00 149.6 '' '' -1968-12-04 00:00 147.9 '' '' -1968-12-05 00:00 146.6 '' '' -1968-12-06 00:00 142.9 '' '' -1968-12-07 00:00 140.2 '' '' -1968-12-08 00:00 141.8 '' '' -1968-12-09 00:00 145.6 '' '' -1968-12-10 00:00 148.0 '' '' -1968-12-11 00:00 143.6 '' '' -1968-12-12 00:00 139.0 '' '' -1968-12-13 00:00 131.5 '' '' -1968-12-14 00:00 134.3 '' '' -1968-12-15 00:00 134.1 '' '' -1968-12-16 00:00 127.0 '' '' -1968-12-17 00:00 130.2 '' '' -1968-12-18 00:00 133.9 '' '' -1968-12-19 00:00 141.9 '' '' -1968-12-20 00:00 144.7 '' '' -1968-12-21 00:00 147.1 '' '' -1968-12-22 00:00 147.3 '' '' -1968-12-23 00:00 146.3 '' '' -1968-12-24 00:00 154.0 '' '' -1968-12-25 00:00 155.3 '' '' -1968-12-26 00:00 154.0 '' '' -1968-12-27 00:00 163.5 '' '' -1968-12-28 00:00 150.7 '' '' -1968-12-29 00:00 147.2 '' '' -1968-12-30 00:00 144.2 '' '' -1968-12-31 00:00 139.6 '' '' -1969-01-01 00:00 139.9 '' '' -1969-01-02 00:00 142.1 '' '' -1969-01-03 00:00 144.1 '' '' -1969-01-04 00:00 154.5 '' '' -1969-01-05 00:00 162.5 '' '' -1969-01-06 00:00 178.9 '' '' -1969-01-07 00:00 183.0 '' '' -1969-01-08 00:00 183.1 '' '' -1969-01-09 00:00 183.3 '' '' -1969-01-10 00:00 169.3 '' '' -1969-01-11 00:00 168.5 '' '' -1969-01-12 00:00 163.1 '' '' -1969-01-13 00:00 157.2 '' '' -1969-01-14 00:00 153.3 '' '' -1969-01-15 00:00 154.1 '' '' -1969-01-16 00:00 152.8 '' '' -1969-01-17 00:00 149.1 '' '' -1969-01-18 00:00 144.3 '' '' -1969-01-19 00:00 131.6 '' '' -1969-01-20 00:00 128.0 '' '' -1969-01-21 00:00 131.9 '' '' -1969-01-22 00:00 133.9 '' '' -1969-01-23 00:00 124.8 '' '' -1969-01-24 00:00 130.8 '' '' -1969-01-25 00:00 134.1 '' '' -1969-01-26 00:00 142.2 '' '' -1969-01-27 00:00 131.5 '' '' -1969-01-28 00:00 129.6 '' '' -1969-01-29 00:00 129.2 '' '' -1969-01-30 00:00 126.1 '' '' -1969-01-31 00:00 126.4 '' '' -1969-02-01 00:00 129.8 '' '' -1969-02-02 00:00 139.0 '' '' -1969-02-03 00:00 139.1 '' '' -1969-02-04 00:00 137.8 '' '' -1969-02-05 00:00 138.9 '' '' -1969-02-06 00:00 138.5 '' '' -1969-02-07 00:00 140.3 '' '' -1969-02-08 00:00 134.3 '' '' -1969-02-09 00:00 133.3 '' '' -1969-02-10 00:00 129.6 '' '' -1969-02-11 00:00 128.9 '' '' -1969-02-12 00:00 124.6 '' '' -1969-02-13 00:00 126.2 '' '' -1969-02-14 00:00 125.0 '' '' -1969-02-15 00:00 124.8 '' '' -1969-02-16 00:00 128.0 '' '' -1969-02-17 00:00 134.3 '' '' -1969-02-18 00:00 139.4 '' '' -1969-02-19 00:00 150.0 '' '' -1969-02-20 00:00 159.1 '' '' -1969-02-21 00:00 169.2 '' '' -1969-02-22 00:00 184.7 '' '' -1969-02-23 00:00 201.4 '' '' -1969-02-24 00:00 205.8 '' '' -1969-02-25 00:00 207.1 '' '' -1969-02-26 00:00 194.7 '' '' -1969-02-27 00:00 197.1 '' '' -1969-02-28 00:00 180.5 '' '' -1969-03-01 00:00 165.6 '' '' -1969-03-02 00:00 152.0 '' '' -1969-03-03 00:00 147.8 '' '' -1969-03-04 00:00 143.9 '' '' -1969-03-05 00:00 135.9 '' '' -1969-03-06 00:00 139.4 '' '' -1969-03-07 00:00 138.1 '' '' -1969-03-08 00:00 137.3 '' '' -1969-03-09 00:00 141.8 '' '' -1969-03-10 00:00 137.8 '' '' -1969-03-11 00:00 136.0 '' '' -1969-03-12 00:00 138.5 '' '' -1969-03-13 00:00 134.0 '' '' -1969-03-14 00:00 139.0 '' '' -1969-03-15 00:00 161.8 '' '' -1969-03-16 00:00 174.9 '' '' -1969-03-17 00:00 200.1 '' '' -1969-03-18 00:00 210.9 '' '' -1969-03-19 00:00 208.5 '' '' -1969-03-20 00:00 213.7 '' '' -1969-03-21 00:00 230.8 '' '' -1969-03-22 00:00 222.5 '' '' -1969-03-23 00:00 205.8 '' '' -1969-03-24 00:00 195.4 '' '' -1969-03-25 00:00 181.1 '' '' -1969-03-26 00:00 191.2 '' '' -1969-03-27 00:00 177.7 '' '' -1969-03-28 00:00 177.5 '' '' -1969-03-29 00:00 181.9 '' '' -1969-03-30 00:00 182.9 '' '' -1969-03-31 00:00 185.5 '' '' -1969-04-01 00:00 188.7 '' '' -1969-04-02 00:00 191.4 '' '' -1969-04-03 00:00 189.8 '' '' -1969-04-04 00:00 177.3 '' '' -1969-04-05 00:00 175.7 '' '' -1969-04-06 00:00 162.6 '' '' -1969-04-07 00:00 154.2 '' '' -1969-04-08 00:00 147.6 '' '' -1969-04-09 00:00 143.8 '' '' -1969-04-10 00:00 148.9 '' '' -1969-04-11 00:00 150.8 '' '' -1969-04-12 00:00 155.5 '' '' -1969-04-13 00:00 172.5 '' '' -1969-04-14 00:00 179.4 '' '' -1969-04-15 00:00 181.2 '' '' -1969-04-16 00:00 167.1 '' '' -1969-04-17 00:00 154.7 '' '' -1969-04-18 00:00 146.8 '' '' -1969-04-19 00:00 146.4 '' '' -1969-04-20 00:00 149.3 '' '' -1969-04-21 00:00 157.2 '' '' -1969-04-22 00:00 147.8 '' '' -1969-04-23 00:00 144.1 '' '' -1969-04-24 00:00 144.7 '' '' -1969-04-25 00:00 147.7 '' '' -1969-04-26 00:00 143.7 '' '' -1969-04-27 00:00 135.0 '' '' -1969-04-28 00:00 134.9 '' '' -1969-04-29 00:00 128.2 '' '' -1969-04-30 00:00 129.1 '' '' -1969-05-01 00:00 125.0 '' '' -1969-05-02 00:00 127.8 '' '' -1969-05-03 00:00 131.9 '' '' -1969-05-04 00:00 135.5 '' '' -1969-05-05 00:00 154.1 '' '' -1969-05-06 00:00 138.2 '' '' -1969-05-07 00:00 129.8 '' '' -1969-05-08 00:00 138.5 '' '' -1969-05-09 00:00 135.4 '' '' -1969-05-10 00:00 137.7 '' '' -1969-05-11 00:00 150.1 '' '' -1969-05-12 00:00 160.3 '' '' -1969-05-13 00:00 154.1 '' '' -1969-05-14 00:00 157.7 '' '' -1969-05-15 00:00 158.8 '' '' -1969-05-16 00:00 159.4 '' '' -1969-05-17 00:00 164.1 '' '' -1969-05-18 00:00 162.4 '' '' -1969-05-19 00:00 157.6 '' '' -1969-05-20 00:00 159.0 '' '' -1969-05-21 00:00 170.7 '' '' -1969-05-22 00:00 177.4 '' '' -1969-05-23 00:00 172.8 '' '' -1969-05-24 00:00 171.4 '' '' -1969-05-25 00:00 168.5 '' '' -1969-05-26 00:00 163.7 '' '' -1969-05-27 00:00 153.5 '' '' -1969-05-28 00:00 143.2 '' '' -1969-05-29 00:00 122.6 '' '' -1969-05-30 00:00 116.7 '' '' -1969-05-31 00:00 111.9 '' '' -1969-06-01 00:00 113.3 '' '' -1969-06-02 00:00 121.2 '' '' -1969-06-03 00:00 133.4 '' '' -1969-06-04 00:00 159.0 '' '' -1969-06-05 00:00 177.8 '' '' -1969-06-06 00:00 196.4 '' '' -1969-06-07 00:00 222.2 '' '' -1969-06-08 00:00 238.4 '' '' -1969-06-09 00:00 235.8 '' '' -1969-06-10 00:00 243.5 '' '' -1969-06-11 00:00 246.6 '' '' -1969-06-12 00:00 236.7 '' '' -1969-06-13 00:00 228.7 '' '' -1969-06-14 00:00 223.5 '' '' -1969-06-15 00:00 200.5 '' '' -1969-06-16 00:00 174.7 '' '' -1969-06-17 00:00 157.2 '' '' -1969-06-18 00:00 153.9 '' '' -1969-06-19 00:00 147.0 '' '' -1969-06-20 00:00 144.9 '' '' -1969-06-21 00:00 139.7 '' '' -1969-06-22 00:00 133.1 '' '' -1969-06-23 00:00 131.6 '' '' -1969-06-24 00:00 128.9 '' '' -1969-06-25 00:00 120.2 '' '' -1969-06-26 00:00 117.2 '' '' -1969-06-27 00:00 114.2 '' '' -1969-06-28 00:00 118.3 '' '' -1969-06-29 00:00 123.8 '' '' -1969-06-30 00:00 136.8 '' '' -1969-07-01 00:00 149.2 '' '' -1969-07-02 00:00 162.1 '' '' -1969-07-03 00:00 167.5 '' '' -1969-07-04 00:00 169.2 '' '' -1969-07-05 00:00 166.6 '' '' -1969-07-06 00:00 165.2 '' '' -1969-07-07 00:00 166.7 '' '' -1969-07-08 00:00 165.2 '' '' -1969-07-09 00:00 165.8 '' '' -1969-07-10 00:00 164.4 '' '' -1969-07-11 00:00 158.1 '' '' -1969-07-12 00:00 151.4 '' '' -1969-07-13 00:00 145.1 '' '' -1969-07-14 00:00 134.3 '' '' -1969-07-15 00:00 126.5 '' '' -1969-07-16 00:00 126.1 '' '' -1969-07-17 00:00 124.2 '' '' -1969-07-18 00:00 119.9 '' '' -1969-07-19 00:00 118.1 '' '' -1969-07-20 00:00 115.4 '' '' -1969-07-21 00:00 115.7 '' '' -1969-07-22 00:00 115.1 '' '' -1969-07-23 00:00 116.5 '' '' -1969-07-24 00:00 115.7 '' '' -1969-07-25 00:00 117.8 '' '' -1969-07-26 00:00 119.2 '' '' -1969-07-27 00:00 126.3 '' '' -1969-07-28 00:00 135.1 '' '' -1969-07-29 00:00 137.1 '' '' -1969-07-30 00:00 147.0 '' '' -1969-07-31 00:00 167.0 '' '' -1969-08-01 00:00 175.7 '' '' -1969-08-02 00:00 192.5 '' '' -1969-08-03 00:00 188.8 '' '' -1969-08-04 00:00 192.9 '' '' -1969-08-05 00:00 187.7 '' '' -1969-08-06 00:00 171.9 '' '' -1969-08-07 00:00 163.1 '' '' -1969-08-08 00:00 150.3 '' '' -1969-08-09 00:00 145.5 '' '' -1969-08-10 00:00 139.3 '' '' -1969-08-11 00:00 135.9 '' '' -1969-08-12 00:00 128.6 '' '' -1969-08-13 00:00 123.1 '' '' -1969-08-14 00:00 117.5 '' '' -1969-08-15 00:00 115.5 '' '' -1969-08-16 00:00 112.3 '' '' -1969-08-17 00:00 107.9 '' '' -1969-08-18 00:00 105.2 '' '' -1969-08-19 00:00 103.9 '' '' -1969-08-20 00:00 109.5 '' '' -1969-08-21 00:00 116.2 '' '' -1969-08-22 00:00 121.0 '' '' -1969-08-23 00:00 133.2 '' '' -1969-08-24 00:00 146.0 '' '' -1969-08-25 00:00 154.8 '' '' -1969-08-26 00:00 156.4 '' '' -1969-08-27 00:00 167.8 '' '' -1969-08-28 00:00 171.5 '' '' -1969-08-29 00:00 177.6 '' '' -1969-08-30 00:00 169.6 '' '' -1969-08-31 00:00 163.8 '' '' -1969-09-01 00:00 156.3 '' '' -1969-09-02 00:00 155.2 '' '' -1969-09-03 00:00 151.7 '' '' -1969-09-04 00:00 150.5 '' '' -1969-09-05 00:00 138.2 '' '' -1969-09-06 00:00 135.7 '' '' -1969-09-07 00:00 128.3 '' '' -1969-09-08 00:00 124.1 '' '' -1969-09-09 00:00 117.3 '' '' -1969-09-10 00:00 116.6 '' '' -1969-09-11 00:00 119.0 '' '' -1969-09-12 00:00 120.7 '' '' -1969-09-13 00:00 131.2 '' '' -1969-09-14 00:00 129.8 '' '' -1969-09-15 00:00 135.3 '' '' -1969-09-16 00:00 134.2 '' '' -1969-09-17 00:00 133.3 '' '' -1969-09-18 00:00 134.4 '' '' -1969-09-19 00:00 131.5 '' '' -1969-09-20 00:00 136.5 '' '' -1969-09-21 00:00 137.8 '' '' -1969-09-22 00:00 140.5 '' '' -1969-09-23 00:00 145.5 '' '' -1969-09-24 00:00 159.7 '' '' -1969-09-25 00:00 169.3 '' '' -1969-09-26 00:00 158.9 '' '' -1969-09-27 00:00 151.3 '' '' -1969-09-28 00:00 142.7 '' '' -1969-09-29 00:00 139.9 '' '' -1969-09-30 00:00 137.0 '' '' -1969-10-01 00:00 133.9 '' '' -1969-10-02 00:00 143.2 '' '' -1969-10-03 00:00 132.5 '' '' -1969-10-04 00:00 132.2 '' '' -1969-10-05 00:00 140.9 '' '' -1969-10-06 00:00 143.2 '' '' -1969-10-07 00:00 145.0 '' '' -1969-10-08 00:00 150.1 '' '' -1969-10-09 00:00 141.7 '' '' -1969-10-10 00:00 136.7 '' '' -1969-10-11 00:00 130.1 '' '' -1969-10-12 00:00 128.0 '' '' -1969-10-13 00:00 124.3 '' '' -1969-10-14 00:00 119.1 '' '' -1969-10-15 00:00 117.7 '' '' -1969-10-16 00:00 115.4 '' '' -1969-10-17 00:00 122.3 '' '' -1969-10-18 00:00 128.8 '' '' -1969-10-19 00:00 145.8 '' '' -1969-10-20 00:00 161.9 '' '' -1969-10-21 00:00 177.0 '' '' -1969-10-22 00:00 186.2 '' '' -1969-10-23 00:00 193.1 '' '' -1969-10-24 00:00 204.5 '' '' -1969-10-25 00:00 204.0 '' '' -1969-10-26 00:00 204.6 '' '' -1969-10-27 00:00 200.8 '' '' -1969-10-28 00:00 189.6 '' '' -1969-10-29 00:00 172.5 '' '' -1969-10-30 00:00 161.7 '' '' -1969-10-31 00:00 153.9 '' '' -1969-11-01 00:00 139.4 '' '' -1969-11-02 00:00 138.9 '' '' -1969-11-03 00:00 126.7 '' '' -1969-11-04 00:00 129.6 '' '' -1969-11-05 00:00 130.0 '' '' -1969-11-06 00:00 131.9 '' '' -1969-11-07 00:00 135.8 '' '' -1969-11-08 00:00 130.4 '' '' -1969-11-09 00:00 127.7 '' '' -1969-11-10 00:00 122.8 '' '' -1969-11-11 00:00 122.0 '' '' -1969-11-12 00:00 122.3 '' '' -1969-11-13 00:00 126.6 '' '' -1969-11-14 00:00 134.1 '' '' -1969-11-15 00:00 137.9 '' '' -1969-11-16 00:00 145.5 '' '' -1969-11-17 00:00 160.1 '' '' -1969-11-18 00:00 177.2 '' '' -1969-11-19 00:00 185.2 '' '' -1969-11-20 00:00 188.9 '' '' -1969-11-21 00:00 198.2 '' '' -1969-11-22 00:00 205.3 '' '' -1969-11-23 00:00 209.5 '' '' -1969-11-24 00:00 200.7 '' '' -1969-11-25 00:00 185.7 '' '' -1969-11-26 00:00 175.3 '' '' -1969-11-27 00:00 172.8 '' '' -1969-11-28 00:00 156.8 '' '' -1969-11-29 00:00 141.5 '' '' -1969-11-30 00:00 136.5 '' '' -1969-12-01 00:00 130.2 '' '' -1969-12-02 00:00 131.5 '' '' -1969-12-03 00:00 131.7 '' '' -1969-12-04 00:00 138.9 '' '' -1969-12-05 00:00 133.3 '' '' -1969-12-06 00:00 123.4 '' '' -1969-12-07 00:00 120.7 '' '' -1969-12-08 00:00 112.1 '' '' -1969-12-09 00:00 116.1 '' '' -1969-12-10 00:00 114.8 '' '' -1969-12-11 00:00 117.9 '' '' -1969-12-12 00:00 122.3 '' '' -1969-12-13 00:00 129.6 '' '' -1969-12-14 00:00 132.7 '' '' -1969-12-15 00:00 135.9 '' '' -1969-12-16 00:00 136.9 '' '' -1969-12-17 00:00 144.1 '' '' -1969-12-18 00:00 144.1 '' '' -1969-12-19 00:00 147.2 '' '' -1969-12-20 00:00 154.2 '' '' -1969-12-21 00:00 160.3 '' '' -1969-12-22 00:00 163.0 '' '' -1969-12-23 00:00 156.3 '' '' -1969-12-24 00:00 152.9 '' '' -1969-12-25 00:00 153.6 '' '' -1969-12-26 00:00 151.0 '' '' -1969-12-27 00:00 146.9 '' '' -1969-12-28 00:00 149.0 '' '' -1969-12-29 00:00 153.4 '' '' -1969-12-30 00:00 157.9 '' '' -1969-12-31 00:00 151.3 '' '' -1970-01-01 00:00 159.0 '' '' -1970-01-02 00:00 144.5 '' '' -1970-01-03 00:00 137.1 '' '' -1970-01-04 00:00 131.5 '' '' -1970-01-05 00:00 126.5 '' '' -1970-01-06 00:00 117.6 '' '' -1970-01-07 00:00 113.0 '' '' -1970-01-08 00:00 113.3 '' '' -1970-01-09 00:00 119.6 '' '' -1970-01-10 00:00 134.5 '' '' -1970-01-11 00:00 160.1 '' '' -1970-01-12 00:00 171.6 '' '' -1970-01-13 00:00 172.9 '' '' -1970-01-14 00:00 171.8 '' '' -1970-01-15 00:00 180.0 '' '' -1970-01-16 00:00 174.3 '' '' -1970-01-17 00:00 180.6 '' '' -1970-01-18 00:00 179.4 '' '' -1970-01-19 00:00 175.3 '' '' -1970-01-20 00:00 168.4 '' '' -1970-01-21 00:00 177.0 '' '' -1970-01-22 00:00 160.5 '' '' -1970-01-23 00:00 153.4 '' '' -1970-01-24 00:00 143.6 '' '' -1970-01-25 00:00 149.5 '' '' -1970-01-26 00:00 156.4 '' '' -1970-01-27 00:00 163.0 '' '' -1970-01-28 00:00 162.0 '' '' -1970-01-29 00:00 163.3 '' '' -1970-01-30 00:00 154.8 '' '' -1970-01-31 00:00 143.4 '' '' -1970-02-01 00:00 134.6 '' '' -1970-02-02 00:00 133.1 '' '' -1970-02-03 00:00 123.7 '' '' -1970-02-04 00:00 119.4 '' '' -1970-02-05 00:00 121.0 '' '' -1970-02-06 00:00 131.9 '' '' -1970-02-07 00:00 139.4 '' '' -1970-02-08 00:00 152.6 '' '' -1970-02-09 00:00 154.1 '' '' -1970-02-10 00:00 170.3 '' '' -1970-02-11 00:00 184.3 '' '' -1970-02-12 00:00 201.0 '' '' -1970-02-13 00:00 197.6 '' '' -1970-02-14 00:00 196.2 '' '' -1970-02-15 00:00 201.6 '' '' -1970-02-16 00:00 193.3 '' '' -1970-02-17 00:00 193.9 '' '' -1970-02-18 00:00 197.7 '' '' -1970-02-19 00:00 198.5 '' '' -1970-02-20 00:00 196.5 '' '' -1970-02-21 00:00 191.1 '' '' -1970-02-22 00:00 183.0 '' '' -1970-02-23 00:00 183.9 '' '' -1970-02-24 00:00 185.9 '' '' -1970-02-25 00:00 179.6 '' '' -1970-02-26 00:00 178.3 '' '' -1970-02-27 00:00 176.9 '' '' -1970-02-28 00:00 174.1 '' '' -1970-03-01 00:00 175.7 '' '' -1970-03-02 00:00 173.0 '' '' -1970-03-03 00:00 167.3 '' '' -1970-03-04 00:00 165.3 '' '' -1970-03-05 00:00 169.8 '' '' -1970-03-06 00:00 167.8 '' '' -1970-03-07 00:00 168.4 '' '' -1970-03-08 00:00 172.8 '' '' -1970-03-09 00:00 164.4 '' '' -1970-03-10 00:00 158.3 '' '' -1970-03-11 00:00 156.3 '' '' -1970-03-12 00:00 164.4 '' '' -1970-03-13 00:00 152.4 '' '' -1970-03-14 00:00 147.3 '' '' -1970-03-15 00:00 144.9 '' '' -1970-03-16 00:00 139.0 '' '' -1970-03-17 00:00 133.7 '' '' -1970-03-18 00:00 133.5 '' '' -1970-03-19 00:00 130.2 '' '' -1970-03-20 00:00 141.1 '' '' -1970-03-21 00:00 149.7 '' '' -1970-03-22 00:00 150.9 '' '' -1970-03-23 00:00 164.9 '' '' -1970-03-24 00:00 169.8 '' '' -1970-03-25 00:00 167.2 '' '' -1970-03-26 00:00 166.4 '' '' -1970-03-27 00:00 159.2 '' '' -1970-03-28 00:00 153.8 '' '' -1970-03-29 00:00 153.1 '' '' -1970-03-30 00:00 149.4 '' '' -1970-03-31 00:00 149.3 '' '' -1970-04-01 00:00 160.8 '' '' -1970-04-02 00:00 167.1 '' '' -1970-04-03 00:00 163.5 '' '' -1970-04-04 00:00 170.4 '' '' -1970-04-05 00:00 179.4 '' '' -1970-04-06 00:00 192.9 '' '' -1970-04-07 00:00 193.4 '' '' -1970-04-08 00:00 203.1 '' '' -1970-04-09 00:00 218.5 '' '' -1970-04-10 00:00 224.7 '' '' -1970-04-11 00:00 206.4 '' '' -1970-04-12 00:00 198.5 '' '' -1970-04-13 00:00 185.3 '' '' -1970-04-14 00:00 173.8 '' '' -1970-04-15 00:00 163.6 '' '' -1970-04-16 00:00 152.2 '' '' -1970-04-17 00:00 148.0 '' '' -1970-04-18 00:00 141.9 '' '' -1970-04-19 00:00 135.7 '' '' -1970-04-20 00:00 131.2 '' '' -1970-04-21 00:00 126.3 '' '' -1970-04-22 00:00 128.6 '' '' -1970-04-23 00:00 130.1 '' '' -1970-04-24 00:00 130.1 '' '' -1970-04-25 00:00 134.8 '' '' -1970-04-26 00:00 135.3 '' '' -1970-04-27 00:00 138.0 '' '' -1970-04-28 00:00 148.6 '' '' -1970-04-29 00:00 156.1 '' '' -1970-04-30 00:00 153.3 '' '' -1970-05-01 00:00 159.5 '' '' -1970-05-02 00:00 160.7 '' '' -1970-05-03 00:00 163.5 '' '' -1970-05-04 00:00 162.3 '' '' -1970-05-05 00:00 167.9 '' '' -1970-05-06 00:00 163.3 '' '' -1970-05-07 00:00 162.4 '' '' -1970-05-08 00:00 156.7 '' '' -1970-05-09 00:00 154.9 '' '' -1970-05-10 00:00 162.8 '' '' -1970-05-11 00:00 176.2 '' '' -1970-05-12 00:00 180.3 '' '' -1970-05-13 00:00 193.1 '' '' -1970-05-14 00:00 196.8 '' '' -1970-05-15 00:00 206.3 '' '' -1970-05-16 00:00 206.0 '' '' -1970-05-17 00:00 197.0 '' '' -1970-05-18 00:00 194.6 '' '' -1970-05-19 00:00 197.4 '' '' -1970-05-20 00:00 183.9 '' '' -1970-05-21 00:00 174.9 '' '' -1970-05-22 00:00 170.3 '' '' -1970-05-23 00:00 163.7 '' '' -1970-05-24 00:00 162.6 '' '' -1970-05-25 00:00 160.6 '' '' -1970-05-26 00:00 162.8 '' '' -1970-05-27 00:00 155.2 '' '' -1970-05-28 00:00 153.8 '' '' -1970-05-29 00:00 158.5 '' '' -1970-05-30 00:00 163.7 '' '' -1970-05-31 00:00 165.2 '' '' -1970-06-01 00:00 145.6 '' '' -1970-06-02 00:00 141.8 '' '' -1970-06-03 00:00 133.4 '' '' -1970-06-04 00:00 131.7 '' '' -1970-06-05 00:00 132.9 '' '' -1970-06-06 00:00 130.0 '' '' -1970-06-07 00:00 134.5 '' '' -1970-06-08 00:00 134.2 '' '' -1970-06-09 00:00 138.2 '' '' -1970-06-10 00:00 145.9 '' '' -1970-06-11 00:00 169.5 '' '' -1970-06-12 00:00 171.7 '' '' -1970-06-13 00:00 200.3 '' '' -1970-06-14 00:00 207.4 '' '' -1970-06-15 00:00 209.2 '' '' -1970-06-16 00:00 198.6 '' '' -1970-06-17 00:00 190.6 '' '' -1970-06-18 00:00 181.8 '' '' -1970-06-19 00:00 175.1 '' '' -1970-06-20 00:00 163.3 '' '' -1970-06-21 00:00 160.6 '' '' -1970-06-22 00:00 150.1 '' '' -1970-06-23 00:00 143.7 '' '' -1970-06-24 00:00 142.3 '' '' -1970-06-25 00:00 149.3 '' '' -1970-06-26 00:00 151.4 '' '' -1970-06-27 00:00 160.0 '' '' -1970-06-28 00:00 160.5 '' '' -1970-06-29 00:00 168.0 '' '' -1970-06-30 00:00 174.8 '' '' -1970-07-01 00:00 179.9 '' '' -1970-07-02 00:00 189.0 '' '' -1970-07-03 00:00 194.6 '' '' -1970-07-04 00:00 195.0 '' '' -1970-07-05 00:00 191.0 '' '' -1970-07-06 00:00 186.4 '' '' -1970-07-07 00:00 166.3 '' '' -1970-07-08 00:00 160.4 '' '' -1970-07-09 00:00 148.4 '' '' -1970-07-10 00:00 143.8 '' '' -1970-07-11 00:00 137.7 '' '' -1970-07-12 00:00 135.4 '' '' -1970-07-13 00:00 130.7 '' '' -1970-07-14 00:00 126.3 '' '' -1970-07-15 00:00 121.9 '' '' -1970-07-16 00:00 121.4 '' '' -1970-07-17 00:00 125.9 '' '' -1970-07-18 00:00 131.0 '' '' -1970-07-19 00:00 135.8 '' '' -1970-07-20 00:00 136.4 '' '' -1970-07-21 00:00 150.6 '' '' -1970-07-22 00:00 163.8 '' '' -1970-07-23 00:00 158.7 '' '' -1970-07-24 00:00 164.0 '' '' -1970-07-25 00:00 169.0 '' '' -1970-07-26 00:00 176.3 '' '' -1970-07-27 00:00 185.9 '' '' -1970-07-28 00:00 182.1 '' '' -1970-07-29 00:00 161.0 '' '' -1970-07-30 00:00 156.1 '' '' -1970-07-31 00:00 141.5 '' '' -1970-08-01 00:00 134.0 '' '' -1970-08-02 00:00 128.5 '' '' -1970-08-03 00:00 127.9 '' '' -1970-08-04 00:00 127.4 '' '' -1970-08-05 00:00 128.4 '' '' -1970-08-06 00:00 128.0 '' '' -1970-08-07 00:00 128.2 '' '' -1970-08-08 00:00 131.8 '' '' -1970-08-09 00:00 138.3 '' '' -1970-08-10 00:00 137.3 '' '' -1970-08-11 00:00 127.2 '' '' -1970-08-12 00:00 136.9 '' '' -1970-08-13 00:00 149.7 '' '' -1970-08-14 00:00 167.0 '' '' -1970-08-15 00:00 169.1 '' '' -1970-08-16 00:00 162.5 '' '' -1970-08-17 00:00 151.6 '' '' -1970-08-18 00:00 149.0 '' '' -1970-08-19 00:00 145.4 '' '' -1970-08-20 00:00 148.6 '' '' -1970-08-21 00:00 142.8 '' '' -1970-08-22 00:00 141.7 '' '' -1970-08-23 00:00 146.2 '' '' -1970-08-24 00:00 140.2 '' '' -1970-08-25 00:00 136.5 '' '' -1970-08-26 00:00 135.7 '' '' -1970-08-27 00:00 137.2 '' '' -1970-08-28 00:00 141.6 '' '' -1970-08-29 00:00 148.7 '' '' -1970-08-30 00:00 149.0 '' '' -1970-08-31 00:00 154.5 '' '' -1970-09-01 00:00 154.1 '' '' -1970-09-02 00:00 156.7 '' '' -1970-09-03 00:00 163.2 '' '' -1970-09-04 00:00 163.4 '' '' -1970-09-05 00:00 162.3 '' '' -1970-09-06 00:00 161.5 '' '' -1970-09-07 00:00 164.4 '' '' -1970-09-08 00:00 156.9 '' '' -1970-09-09 00:00 157.2 '' '' -1970-09-10 00:00 143.9 '' '' -1970-09-11 00:00 134.4 '' '' -1970-09-12 00:00 126.1 '' '' -1970-09-13 00:00 120.1 '' '' -1970-09-14 00:00 121.9 '' '' -1970-09-15 00:00 118.0 '' '' -1970-09-16 00:00 118.4 '' '' -1970-09-17 00:00 116.9 '' '' -1970-09-18 00:00 120.7 '' '' -1970-09-19 00:00 134.7 '' '' -1970-09-20 00:00 146.9 '' '' -1970-09-21 00:00 149.4 '' '' -1970-09-22 00:00 155.2 '' '' -1970-09-23 00:00 161.6 '' '' -1970-09-24 00:00 156.0 '' '' -1970-09-25 00:00 155.8 '' '' -1970-09-26 00:00 155.9 '' '' -1970-09-27 00:00 145.0 '' '' -1970-09-28 00:00 144.5 '' '' -1970-09-29 00:00 138.7 '' '' -1970-09-30 00:00 134.7 '' '' -1970-10-01 00:00 128.7 '' '' -1970-10-02 00:00 125.4 '' '' -1970-10-03 00:00 126.0 '' '' -1970-10-04 00:00 137.3 '' '' -1970-10-05 00:00 134.5 '' '' -1970-10-06 00:00 128.0 '' '' -1970-10-07 00:00 133.3 '' '' -1970-10-08 00:00 142.0 '' '' -1970-10-09 00:00 144.9 '' '' -1970-10-10 00:00 147.6 '' '' -1970-10-11 00:00 142.8 '' '' -1970-10-12 00:00 135.4 '' '' -1970-10-13 00:00 131.8 '' '' -1970-10-14 00:00 134.9 '' '' -1970-10-15 00:00 140.2 '' '' -1970-10-16 00:00 134.0 '' '' -1970-10-17 00:00 131.5 '' '' -1970-10-18 00:00 138.5 '' '' -1970-10-19 00:00 139.0 '' '' -1970-10-20 00:00 137.2 '' '' -1970-10-21 00:00 136.5 '' '' -1970-10-22 00:00 135.0 '' '' -1970-10-23 00:00 149.0 '' '' -1970-10-24 00:00 161.2 '' '' -1970-10-25 00:00 168.6 '' '' -1970-10-26 00:00 187.1 '' '' -1970-10-27 00:00 191.8 '' '' -1970-10-28 00:00 190.3 '' '' -1970-10-29 00:00 189.0 '' '' -1970-10-30 00:00 175.2 '' '' -1970-10-31 00:00 168.6 '' '' -1970-11-01 00:00 163.3 '' '' -1970-11-02 00:00 159.1 '' '' -1970-11-03 00:00 153.2 '' '' -1970-11-04 00:00 148.3 '' '' -1970-11-05 00:00 147.5 '' '' -1970-11-06 00:00 149.8 '' '' -1970-11-07 00:00 150.6 '' '' -1970-11-08 00:00 141.1 '' '' -1970-11-09 00:00 141.9 '' '' -1970-11-10 00:00 147.8 '' '' -1970-11-11 00:00 155.6 '' '' -1970-11-12 00:00 165.1 '' '' -1970-11-13 00:00 179.1 '' '' -1970-11-14 00:00 186.4 '' '' -1970-11-15 00:00 200.0 '' '' -1970-11-16 00:00 193.5 '' '' -1970-11-17 00:00 184.1 '' '' -1970-11-18 00:00 193.1 '' '' -1970-11-19 00:00 185.5 '' '' -1970-11-20 00:00 173.7 '' '' -1970-11-21 00:00 163.3 '' '' -1970-11-22 00:00 154.2 '' '' -1970-11-23 00:00 142.4 '' '' -1970-11-24 00:00 133.9 '' '' -1970-11-25 00:00 127.9 '' '' -1970-11-26 00:00 129.3 '' '' -1970-11-27 00:00 135.1 '' '' -1970-11-28 00:00 148.9 '' '' -1970-11-29 00:00 148.4 '' '' -1970-11-30 00:00 152.5 '' '' -1970-12-01 00:00 146.4 '' '' -1970-12-02 00:00 148.4 '' '' -1970-12-03 00:00 148.1 '' '' -1970-12-04 00:00 154.0 '' '' -1970-12-05 00:00 161.9 '' '' -1970-12-06 00:00 167.5 '' '' -1970-12-07 00:00 166.5 '' '' -1970-12-08 00:00 167.3 '' '' -1970-12-09 00:00 171.5 '' '' -1970-12-10 00:00 170.9 '' '' -1970-12-11 00:00 172.6 '' '' -1970-12-12 00:00 178.4 '' '' -1970-12-13 00:00 164.3 '' '' -1970-12-14 00:00 154.6 '' '' -1970-12-15 00:00 154.1 '' '' -1970-12-16 00:00 146.7 '' '' -1970-12-17 00:00 146.8 '' '' -1970-12-18 00:00 151.6 '' '' -1970-12-19 00:00 152.4 '' '' -1970-12-20 00:00 155.6 '' '' -1970-12-21 00:00 146.3 '' '' -1970-12-22 00:00 136.8 '' '' -1970-12-23 00:00 132.1 '' '' -1970-12-24 00:00 124.4 '' '' -1970-12-25 00:00 124.0 '' '' -1970-12-26 00:00 122.3 '' '' -1970-12-27 00:00 119.8 '' '' -1970-12-28 00:00 117.3 '' '' -1970-12-29 00:00 123.4 '' '' -1970-12-30 00:00 129.0 '' '' -1970-12-31 00:00 133.3 '' '' -1971-01-01 00:00 130.5 '' '' -1971-01-02 00:00 134.8 '' '' -1971-01-03 00:00 134.7 '' '' -1971-01-04 00:00 140.2 '' '' -1971-01-05 00:00 146.1 '' '' -1971-01-06 00:00 146.9 '' '' -1971-01-07 00:00 150.2 '' '' -1971-01-08 00:00 149.1 '' '' -1971-01-09 00:00 152.8 '' '' -1971-01-10 00:00 152.1 '' '' -1971-01-11 00:00 149.0 '' '' -1971-01-12 00:00 150.5 '' '' -1971-01-13 00:00 148.1 '' '' -1971-01-14 00:00 153.9 '' '' -1971-01-15 00:00 153.7 '' '' -1971-01-16 00:00 156.4 '' '' -1971-01-17 00:00 155.3 '' '' -1971-01-18 00:00 160.3 '' '' -1971-01-19 00:00 165.8 '' '' -1971-01-20 00:00 169.2 '' '' -1971-01-21 00:00 178.7 '' '' -1971-01-22 00:00 180.6 '' '' -1971-01-23 00:00 182.9 '' '' -1971-01-24 00:00 177.0 '' '' -1971-01-25 00:00 168.6 '' '' -1971-01-26 00:00 164.9 '' '' -1971-01-27 00:00 166.7 '' '' -1971-01-28 00:00 166.2 '' '' -1971-01-29 00:00 160.7 '' '' -1971-01-30 00:00 163.0 '' '' -1971-01-31 00:00 170.1 '' '' -1971-02-01 00:00 165.6 '' '' -1971-02-02 00:00 160.5 '' '' -1971-02-03 00:00 154.7 '' '' -1971-02-04 00:00 148.6 '' '' -1971-02-05 00:00 144.7 '' '' -1971-02-06 00:00 143.7 '' '' -1971-02-07 00:00 133.4 '' '' -1971-02-08 00:00 123.2 '' '' -1971-02-09 00:00 110.4 '' '' -1971-02-10 00:00 109.5 '' '' -1971-02-11 00:00 109.7 '' '' -1971-02-12 00:00 110.5 '' '' -1971-02-13 00:00 113.2 '' '' -1971-02-14 00:00 114.8 '' '' -1971-02-15 00:00 117.1 '' '' -1971-02-16 00:00 129.8 '' '' -1971-02-17 00:00 132.6 '' '' -1971-02-18 00:00 130.4 '' '' -1971-02-19 00:00 138.5 '' '' -1971-02-20 00:00 136.2 '' '' -1971-02-21 00:00 136.1 '' '' -1971-02-22 00:00 143.6 '' '' -1971-02-23 00:00 143.2 '' '' -1971-02-24 00:00 147.5 '' '' -1971-02-25 00:00 146.4 '' '' -1971-02-26 00:00 143.2 '' '' -1971-02-27 00:00 140.0 '' '' -1971-02-28 00:00 136.6 '' '' -1971-03-01 00:00 129.2 '' '' -1971-03-02 00:00 125.8 '' '' -1971-03-03 00:00 121.7 '' '' -1971-03-04 00:00 116.0 '' '' -1971-03-05 00:00 113.7 '' '' -1971-03-06 00:00 109.1 '' '' -1971-03-07 00:00 105.2 '' '' -1971-03-08 00:00 104.0 '' '' -1971-03-09 00:00 104.5 '' '' -1971-03-10 00:00 107.0 '' '' -1971-03-11 00:00 109.5 '' '' -1971-03-12 00:00 115.3 '' '' -1971-03-13 00:00 112.5 '' '' -1971-03-14 00:00 111.7 '' '' -1971-03-15 00:00 110.3 '' '' -1971-03-16 00:00 114.5 '' '' -1971-03-17 00:00 116.1 '' '' -1971-03-18 00:00 114.2 '' '' -1971-03-19 00:00 109.1 '' '' -1971-03-20 00:00 106.3 '' '' -1971-03-21 00:00 112.6 '' '' -1971-03-22 00:00 112.4 '' '' -1971-03-23 00:00 108.2 '' '' -1971-03-24 00:00 107.8 '' '' -1971-03-25 00:00 108.3 '' '' -1971-03-26 00:00 107.8 '' '' -1971-03-27 00:00 108.5 '' '' -1971-03-28 00:00 106.2 '' '' -1971-03-29 00:00 103.4 '' '' -1971-03-30 00:00 100.9 '' '' -1971-03-31 00:00 102.9 '' '' -1971-04-01 00:00 100.5 '' '' -1971-04-02 00:00 107.6 '' '' -1971-04-03 00:00 109.0 '' '' -1971-04-04 00:00 107.7 '' '' -1971-04-05 00:00 108.3 '' '' -1971-04-06 00:00 107.3 '' '' -1971-04-07 00:00 113.2 '' '' -1971-04-08 00:00 110.1 '' '' -1971-04-09 00:00 108.9 '' '' -1971-04-10 00:00 109.8 '' '' -1971-04-11 00:00 124.1 '' '' -1971-04-12 00:00 129.7 '' '' -1971-04-13 00:00 139.6 '' '' -1971-04-14 00:00 141.0 '' '' -1971-04-15 00:00 140.0 '' '' -1971-04-16 00:00 139.6 '' '' -1971-04-17 00:00 139.9 '' '' -1971-04-18 00:00 137.2 '' '' -1971-04-19 00:00 138.4 '' '' -1971-04-20 00:00 136.8 '' '' -1971-04-21 00:00 128.9 '' '' -1971-04-22 00:00 120.5 '' '' -1971-04-23 00:00 117.5 '' '' -1971-04-24 00:00 109.1 '' '' -1971-04-25 00:00 106.0 '' '' -1971-04-26 00:00 104.8 '' '' -1971-04-27 00:00 101.7 '' '' -1971-04-28 00:00 97.5 '' '' -1971-04-29 00:00 95.8 '' '' -1971-04-30 00:00 94.8 '' '' -1971-05-01 00:00 95.3 '' '' -1971-05-02 00:00 99.6 '' '' -1971-05-03 00:00 106.2 '' '' -1971-05-04 00:00 112.6 '' '' -1971-05-05 00:00 117.9 '' '' -1971-05-06 00:00 125.6 '' '' -1971-05-07 00:00 131.1 '' '' -1971-05-08 00:00 132.7 '' '' -1971-05-09 00:00 138.3 '' '' -1971-05-10 00:00 135.8 '' '' -1971-05-11 00:00 135.3 '' '' -1971-05-12 00:00 130.2 '' '' -1971-05-13 00:00 125.0 '' '' -1971-05-14 00:00 122.3 '' '' -1971-05-15 00:00 118.0 '' '' -1971-05-16 00:00 116.1 '' '' -1971-05-17 00:00 112.8 '' '' -1971-05-18 00:00 111.2 '' '' -1971-05-19 00:00 109.8 '' '' -1971-05-20 00:00 106.0 '' '' -1971-05-21 00:00 102.0 '' '' -1971-05-22 00:00 93.4 '' '' -1971-05-23 00:00 89.7 '' '' -1971-05-24 00:00 88.9 '' '' -1971-05-25 00:00 92.3 '' '' -1971-05-26 00:00 93.7 '' '' -1971-05-27 00:00 103.9 '' '' -1971-05-28 00:00 107.0 '' '' -1971-05-29 00:00 108.5 '' '' -1971-05-30 00:00 110.3 '' '' -1971-05-31 00:00 111.6 '' '' -1971-06-01 00:00 110.1 '' '' -1971-06-02 00:00 108.3 '' '' -1971-06-03 00:00 107.8 '' '' -1971-06-04 00:00 107.3 '' '' -1971-06-05 00:00 106.2 '' '' -1971-06-06 00:00 105.0 '' '' -1971-06-07 00:00 101.5 '' '' -1971-06-08 00:00 101.8 '' '' -1971-06-09 00:00 100.9 '' '' -1971-06-10 00:00 97.5 '' '' -1971-06-11 00:00 96.0 '' '' -1971-06-12 00:00 93.3 '' '' -1971-06-13 00:00 93.7 '' '' -1971-06-14 00:00 94.0 '' '' -1971-06-15 00:00 91.3 '' '' -1971-06-16 00:00 90.8 '' '' -1971-06-17 00:00 93.1 '' '' -1971-06-18 00:00 95.4 '' '' -1971-06-19 00:00 94.6 '' '' -1971-06-20 00:00 94.2 '' '' -1971-06-21 00:00 95.2 '' '' -1971-06-22 00:00 98.4 '' '' -1971-06-23 00:00 94.9 '' '' -1971-06-24 00:00 105.3 '' '' -1971-06-25 00:00 110.1 '' '' -1971-06-26 00:00 115.9 '' '' -1971-06-27 00:00 122.5 '' '' -1971-06-28 00:00 131.1 '' '' -1971-06-29 00:00 141.1 '' '' -1971-06-30 00:00 148.8 '' '' -1971-07-01 00:00 145.1 '' '' -1971-07-02 00:00 139.4 '' '' -1971-07-03 00:00 130.5 '' '' -1971-07-04 00:00 134.7 '' '' -1971-07-05 00:00 134.6 '' '' -1971-07-06 00:00 127.0 '' '' -1971-07-07 00:00 122.5 '' '' -1971-07-08 00:00 116.7 '' '' -1971-07-09 00:00 107.7 '' '' -1971-07-10 00:00 108.5 '' '' -1971-07-11 00:00 108.7 '' '' -1971-07-12 00:00 109.6 '' '' -1971-07-13 00:00 111.2 '' '' -1971-07-14 00:00 113.9 '' '' -1971-07-15 00:00 125.6 '' '' -1971-07-16 00:00 125.3 '' '' -1971-07-17 00:00 121.5 '' '' -1971-07-18 00:00 121.0 '' '' -1971-07-19 00:00 126.9 '' '' -1971-07-20 00:00 118.8 '' '' -1971-07-21 00:00 113.6 '' '' -1971-07-22 00:00 115.7 '' '' -1971-07-23 00:00 121.3 '' '' -1971-07-24 00:00 134.5 '' '' -1971-07-25 00:00 121.4 '' '' -1971-07-26 00:00 122.3 '' '' -1971-07-27 00:00 119.0 '' '' -1971-07-28 00:00 116.7 '' '' -1971-07-29 00:00 114.3 '' '' -1971-07-30 00:00 116.3 '' '' -1971-07-31 00:00 113.2 '' '' -1971-08-01 00:00 109.7 '' '' -1971-08-02 00:00 109.2 '' '' -1971-08-03 00:00 106.4 '' '' -1971-08-04 00:00 106.4 '' '' -1971-08-05 00:00 106.9 '' '' -1971-08-06 00:00 105.0 '' '' -1971-08-07 00:00 102.6 '' '' -1971-08-08 00:00 108.6 '' '' -1971-08-09 00:00 112.1 '' '' -1971-08-10 00:00 109.7 '' '' -1971-08-11 00:00 104.7 '' '' -1971-08-12 00:00 102.1 '' '' -1971-08-13 00:00 101.9 '' '' -1971-08-14 00:00 100.7 '' '' -1971-08-15 00:00 97.3 '' '' -1971-08-16 00:00 98.8 '' '' -1971-08-17 00:00 103.6 '' '' -1971-08-18 00:00 110.5 '' '' -1971-08-19 00:00 126.2 '' '' -1971-08-20 00:00 141.1 '' '' -1971-08-21 00:00 150.3 '' '' -1971-08-22 00:00 151.2 '' '' -1971-08-23 00:00 148.6 '' '' -1971-08-24 00:00 157.6 '' '' -1971-08-25 00:00 143.5 '' '' -1971-08-26 00:00 138.8 '' '' -1971-08-27 00:00 135.3 '' '' -1971-08-28 00:00 123.6 '' '' -1971-08-29 00:00 112.0 '' '' -1971-08-30 00:00 103.3 '' '' -1971-08-31 00:00 96.3 '' '' -1971-09-01 00:00 90.3 '' '' -1971-09-02 00:00 90.1 '' '' -1971-09-03 00:00 92.5 '' '' -1971-09-04 00:00 92.6 '' '' -1971-09-05 00:00 95.2 '' '' -1971-09-06 00:00 101.8 '' '' -1971-09-07 00:00 107.3 '' '' -1971-09-08 00:00 103.5 '' '' -1971-09-09 00:00 98.3 '' '' -1971-09-10 00:00 91.8 '' '' -1971-09-11 00:00 89.3 '' '' -1971-09-12 00:00 91.6 '' '' -1971-09-13 00:00 98.9 '' '' -1971-09-14 00:00 108.1 '' '' -1971-09-15 00:00 113.5 '' '' -1971-09-16 00:00 112.5 '' '' -1971-09-17 00:00 116.5 '' '' -1971-09-18 00:00 116.6 '' '' -1971-09-19 00:00 113.1 '' '' -1971-09-20 00:00 110.3 '' '' -1971-09-21 00:00 109.2 '' '' -1971-09-22 00:00 110.3 '' '' -1971-09-23 00:00 108.1 '' '' -1971-09-24 00:00 106.3 '' '' -1971-09-25 00:00 109.2 '' '' -1971-09-26 00:00 111.9 '' '' -1971-09-27 00:00 116.6 '' '' -1971-09-28 00:00 116.6 '' '' -1971-09-29 00:00 114.8 '' '' -1971-09-30 00:00 116.9 '' '' -1971-10-01 00:00 114.6 '' '' -1971-10-02 00:00 114.2 '' '' -1971-10-03 00:00 113.4 '' '' -1971-10-04 00:00 109.1 '' '' -1971-10-05 00:00 106.1 '' '' -1971-10-06 00:00 102.4 '' '' -1971-10-07 00:00 98.3 '' '' -1971-10-08 00:00 98.1 '' '' -1971-10-09 00:00 99.5 '' '' -1971-10-10 00:00 95.4 '' '' -1971-10-11 00:00 94.5 '' '' -1971-10-12 00:00 94.9 '' '' -1971-10-13 00:00 91.0 '' '' -1971-10-14 00:00 89.9 '' '' -1971-10-15 00:00 89.8 '' '' -1971-10-16 00:00 89.3 '' '' -1971-10-17 00:00 94.7 '' '' -1971-10-18 00:00 99.1 '' '' -1971-10-19 00:00 109.8 '' '' -1971-10-20 00:00 115.6 '' '' -1971-10-21 00:00 119.3 '' '' -1971-10-22 00:00 122.2 '' '' -1971-10-23 00:00 123.9 '' '' -1971-10-24 00:00 125.7 '' '' -1971-10-25 00:00 124.3 '' '' -1971-10-26 00:00 119.3 '' '' -1971-10-27 00:00 116.1 '' '' -1971-10-28 00:00 110.5 '' '' -1971-10-29 00:00 105.1 '' '' -1971-10-30 00:00 107.5 '' '' -1971-10-31 00:00 106.2 '' '' -1971-11-01 00:00 109.5 '' '' -1971-11-02 00:00 111.7 '' '' -1971-11-03 00:00 115.2 '' '' -1971-11-04 00:00 112.8 '' '' -1971-11-05 00:00 116.0 '' '' -1971-11-06 00:00 109.5 '' '' -1971-11-07 00:00 104.6 '' '' -1971-11-08 00:00 100.7 '' '' -1971-11-09 00:00 101.6 '' '' -1971-11-10 00:00 102.7 '' '' -1971-11-11 00:00 104.6 '' '' -1971-11-12 00:00 102.6 '' '' -1971-11-13 00:00 103.3 '' '' -1971-11-14 00:00 103.1 '' '' -1971-11-15 00:00 101.1 '' '' -1971-11-16 00:00 104.7 '' '' -1971-11-17 00:00 105.4 '' '' -1971-11-18 00:00 104.1 '' '' -1971-11-19 00:00 107.6 '' '' -1971-11-20 00:00 113.0 '' '' -1971-11-21 00:00 114.9 '' '' -1971-11-22 00:00 118.8 '' '' -1971-11-23 00:00 120.4 '' '' -1971-11-24 00:00 121.6 '' '' -1971-11-25 00:00 121.7 '' '' -1971-11-26 00:00 128.8 '' '' -1971-11-27 00:00 128.1 '' '' -1971-11-28 00:00 125.6 '' '' -1971-11-29 00:00 117.2 '' '' -1971-11-30 00:00 114.1 '' '' -1971-12-01 00:00 116.9 '' '' -1971-12-02 00:00 109.4 '' '' -1971-12-03 00:00 109.7 '' '' -1971-12-04 00:00 106.2 '' '' -1971-12-05 00:00 111.7 '' '' -1971-12-06 00:00 111.8 '' '' -1971-12-07 00:00 113.0 '' '' -1971-12-08 00:00 114.7 '' '' -1971-12-09 00:00 121.2 '' '' -1971-12-10 00:00 122.4 '' '' -1971-12-11 00:00 122.2 '' '' -1971-12-12 00:00 124.0 '' '' -1971-12-13 00:00 118.7 '' '' -1971-12-14 00:00 118.5 '' '' -1971-12-15 00:00 117.3 '' '' -1971-12-16 00:00 117.6 '' '' -1971-12-17 00:00 131.2 '' '' -1971-12-18 00:00 134.6 '' '' -1971-12-19 00:00 134.4 '' '' -1971-12-20 00:00 135.2 '' '' -1971-12-21 00:00 135.7 '' '' -1971-12-22 00:00 139.2 '' '' -1971-12-23 00:00 132.9 '' '' -1971-12-24 00:00 129.4 '' '' -1971-12-25 00:00 126.8 '' '' -1971-12-26 00:00 120.2 '' '' -1971-12-27 00:00 120.2 '' '' -1971-12-28 00:00 113.2 '' '' -1971-12-29 00:00 112.7 '' '' -1971-12-30 00:00 112.4 '' '' -1971-12-31 00:00 106.8 '' '' -1972-01-01 00:00 104.7 '' '' -1972-01-02 00:00 103.1 '' '' -1972-01-03 00:00 99.6 '' '' -1972-01-04 00:00 97.9 '' '' -1972-01-05 00:00 99.1 '' '' -1972-01-06 00:00 103.1 '' '' -1972-01-07 00:00 99.5 '' '' -1972-01-08 00:00 98.8 '' '' -1972-01-09 00:00 94.3 '' '' -1972-01-10 00:00 92.3 '' '' -1972-01-11 00:00 95.8 '' '' -1972-01-12 00:00 99.6 '' '' -1972-01-13 00:00 99.0 '' '' -1972-01-14 00:00 105.8 '' '' -1972-01-15 00:00 115.4 '' '' -1972-01-16 00:00 113.5 '' '' -1972-01-17 00:00 113.9 '' '' -1972-01-18 00:00 110.9 '' '' -1972-01-19 00:00 115.9 '' '' -1972-01-20 00:00 123.0 '' '' -1972-01-21 00:00 127.9 '' '' -1972-01-22 00:00 123.2 '' '' -1972-01-23 00:00 136.3 '' '' -1972-01-24 00:00 137.2 '' '' -1972-01-25 00:00 131.8 '' '' -1972-01-26 00:00 123.8 '' '' -1972-01-27 00:00 118.9 '' '' -1972-01-28 00:00 119.5 '' '' -1972-01-29 00:00 116.1 '' '' -1972-01-30 00:00 112.9 '' '' -1972-01-31 00:00 111.9 '' '' -1972-02-01 00:00 106.7 '' '' -1972-02-02 00:00 106.5 '' '' -1972-02-03 00:00 104.8 '' '' -1972-02-04 00:00 103.6 '' '' -1972-02-05 00:00 102.6 '' '' -1972-02-06 00:00 98.6 '' '' -1972-02-07 00:00 102.2 '' '' -1972-02-08 00:00 104.3 '' '' -1972-02-09 00:00 106.3 '' '' -1972-02-10 00:00 113.6 '' '' -1972-02-11 00:00 118.4 '' '' -1972-02-12 00:00 123.9 '' '' -1972-02-13 00:00 126.3 '' '' -1972-02-14 00:00 136.7 '' '' -1972-02-15 00:00 145.8 '' '' -1972-02-16 00:00 153.2 '' '' -1972-02-17 00:00 168.2 '' '' -1972-02-18 00:00 184.4 '' '' -1972-02-19 00:00 190.6 '' '' -1972-02-20 00:00 202.5 '' '' -1972-02-21 00:00 189.6 '' '' -1972-02-22 00:00 180.4 '' '' -1972-02-23 00:00 175.6 '' '' -1972-02-24 00:00 164.2 '' '' -1972-02-25 00:00 151.9 '' '' -1972-02-26 00:00 149.3 '' '' -1972-02-27 00:00 140.3 '' '' -1972-02-28 00:00 133.2 '' '' -1972-02-29 00:00 130.5 '' '' -1972-03-01 00:00 125.5 '' '' -1972-03-02 00:00 129.7 '' '' -1972-03-03 00:00 131.1 '' '' -1972-03-04 00:00 137.1 '' '' -1972-03-05 00:00 140.8 '' '' -1972-03-06 00:00 143.7 '' '' -1972-03-07 00:00 143.3 '' '' -1972-03-08 00:00 141.6 '' '' -1972-03-09 00:00 137.4 '' '' -1972-03-10 00:00 132.5 '' '' -1972-03-11 00:00 134.9 '' '' -1972-03-12 00:00 128.5 '' '' -1972-03-13 00:00 129.3 '' '' -1972-03-14 00:00 129.7 '' '' -1972-03-15 00:00 135.3 '' '' -1972-03-16 00:00 133.0 '' '' -1972-03-17 00:00 133.8 '' '' -1972-03-18 00:00 131.9 '' '' -1972-03-19 00:00 131.0 '' '' -1972-03-20 00:00 135.2 '' '' -1972-03-21 00:00 135.8 '' '' -1972-03-22 00:00 131.2 '' '' -1972-03-23 00:00 140.0 '' '' -1972-03-24 00:00 126.6 '' '' -1972-03-25 00:00 116.4 '' '' -1972-03-26 00:00 110.5 '' '' -1972-03-27 00:00 104.1 '' '' -1972-03-28 00:00 101.1 '' '' -1972-03-29 00:00 96.5 '' '' -1972-03-30 00:00 98.3 '' '' -1972-03-31 00:00 95.7 '' '' -1972-04-01 00:00 96.0 '' '' -1972-04-02 00:00 97.3 '' '' -1972-04-03 00:00 98.1 '' '' -1972-04-04 00:00 101.0 '' '' -1972-04-05 00:00 105.3 '' '' -1972-04-06 00:00 118.1 '' '' -1972-04-07 00:00 121.3 '' '' -1972-04-08 00:00 123.8 '' '' -1972-04-09 00:00 130.5 '' '' -1972-04-10 00:00 130.3 '' '' -1972-04-11 00:00 129.8 '' '' -1972-04-12 00:00 128.3 '' '' -1972-04-13 00:00 128.4 '' '' -1972-04-14 00:00 125.0 '' '' -1972-04-15 00:00 126.0 '' '' -1972-04-16 00:00 124.3 '' '' -1972-04-17 00:00 120.3 '' '' -1972-04-18 00:00 115.7 '' '' -1972-04-19 00:00 115.4 '' '' -1972-04-20 00:00 111.3 '' '' -1972-04-21 00:00 106.9 '' '' -1972-04-22 00:00 109.4 '' '' -1972-04-23 00:00 108.4 '' '' -1972-04-24 00:00 110.2 '' '' -1972-04-25 00:00 111.6 '' '' -1972-04-26 00:00 109.9 '' '' -1972-04-27 00:00 109.0 '' '' -1972-04-28 00:00 103.2 '' '' -1972-04-29 00:00 98.6 '' '' -1972-04-30 00:00 97.0 '' '' -1972-05-01 00:00 95.0 '' '' -1972-05-02 00:00 94.9 '' '' -1972-05-03 00:00 97.7 '' '' -1972-05-04 00:00 102.7 '' '' -1972-05-05 00:00 108.7 '' '' -1972-05-06 00:00 117.6 '' '' -1972-05-07 00:00 120.9 '' '' -1972-05-08 00:00 128.8 '' '' -1972-05-09 00:00 133.0 '' '' -1972-05-10 00:00 138.3 '' '' -1972-05-11 00:00 140.8 '' '' -1972-05-12 00:00 148.6 '' '' -1972-05-13 00:00 161.6 '' '' -1972-05-14 00:00 162.8 '' '' -1972-05-15 00:00 164.6 '' '' -1972-05-16 00:00 161.8 '' '' -1972-05-17 00:00 169.3 '' '' -1972-05-18 00:00 165.5 '' '' -1972-05-19 00:00 156.7 '' '' -1972-05-20 00:00 152.3 '' '' -1972-05-21 00:00 148.2 '' '' -1972-05-22 00:00 143.3 '' '' -1972-05-23 00:00 135.2 '' '' -1972-05-24 00:00 135.5 '' '' -1972-05-25 00:00 127.3 '' '' -1972-05-26 00:00 116.3 '' '' -1972-05-27 00:00 114.3 '' '' -1972-05-28 00:00 110.8 '' '' -1972-05-29 00:00 116.2 '' '' -1972-05-30 00:00 116.8 '' '' -1972-05-31 00:00 122.5 '' '' -1972-06-01 00:00 128.2 '' '' -1972-06-02 00:00 130.0 '' '' -1972-06-03 00:00 137.5 '' '' -1972-06-04 00:00 149.5 '' '' -1972-06-05 00:00 164.8 '' '' -1972-06-06 00:00 159.1 '' '' -1972-06-07 00:00 152.7 '' '' -1972-06-08 00:00 150.2 '' '' -1972-06-09 00:00 149.1 '' '' -1972-06-10 00:00 139.5 '' '' -1972-06-11 00:00 143.2 '' '' -1972-06-12 00:00 149.7 '' '' -1972-06-13 00:00 138.9 '' '' -1972-06-14 00:00 136.5 '' '' -1972-06-15 00:00 139.5 '' '' -1972-06-16 00:00 142.7 '' '' -1972-06-17 00:00 149.6 '' '' -1972-06-18 00:00 149.0 '' '' -1972-06-19 00:00 143.2 '' '' -1972-06-20 00:00 142.5 '' '' -1972-06-21 00:00 139.0 '' '' -1972-06-22 00:00 135.1 '' '' -1972-06-23 00:00 130.7 '' '' -1972-06-24 00:00 128.5 '' '' -1972-06-25 00:00 125.5 '' '' -1972-06-26 00:00 120.8 '' '' -1972-06-27 00:00 121.9 '' '' -1972-06-28 00:00 127.3 '' '' -1972-06-29 00:00 132.4 '' '' -1972-06-30 00:00 134.5 '' '' -1972-07-01 00:00 133.0 '' '' -1972-07-02 00:00 137.0 '' '' -1972-07-03 00:00 139.9 '' '' -1972-07-04 00:00 146.7 '' '' -1972-07-05 00:00 150.2 '' '' -1972-07-06 00:00 146.1 '' '' -1972-07-07 00:00 143.2 '' '' -1972-07-08 00:00 136.7 '' '' -1972-07-09 00:00 127.1 '' '' -1972-07-10 00:00 121.7 '' '' -1972-07-11 00:00 123.6 '' '' -1972-07-12 00:00 119.3 '' '' -1972-07-13 00:00 119.9 '' '' -1972-07-14 00:00 119.5 '' '' -1972-07-15 00:00 117.6 '' '' -1972-07-16 00:00 115.1 '' '' -1972-07-17 00:00 114.6 '' '' -1972-07-18 00:00 108.9 '' '' -1972-07-19 00:00 108.9 '' '' -1972-07-20 00:00 110.9 '' '' -1972-07-21 00:00 111.7 '' '' -1972-07-22 00:00 111.6 '' '' -1972-07-23 00:00 109.6 '' '' -1972-07-24 00:00 109.5 '' '' -1972-07-25 00:00 112.4 '' '' -1972-07-26 00:00 120.6 '' '' -1972-07-27 00:00 127.2 '' '' -1972-07-28 00:00 133.3 '' '' -1972-07-29 00:00 139.1 '' '' -1972-07-30 00:00 141.2 '' '' -1972-07-31 00:00 150.2 '' '' -1972-08-01 00:00 156.3 '' '' -1972-08-02 00:00 150.4 '' '' -1972-08-03 00:00 147.1 '' '' -1972-08-04 00:00 146.0 '' '' -1972-08-05 00:00 146.5 '' '' -1972-08-06 00:00 143.4 '' '' -1972-08-07 00:00 139.0 '' '' -1972-08-08 00:00 125.3 '' '' -1972-08-09 00:00 123.8 '' '' -1972-08-10 00:00 118.6 '' '' -1972-08-11 00:00 113.3 '' '' -1972-08-12 00:00 107.6 '' '' -1972-08-13 00:00 101.7 '' '' -1972-08-14 00:00 97.9 '' '' -1972-08-15 00:00 97.6 '' '' -1972-08-16 00:00 100.6 '' '' -1972-08-17 00:00 106.4 '' '' -1972-08-18 00:00 109.6 '' '' -1972-08-19 00:00 116.2 '' '' -1972-08-20 00:00 117.9 '' '' -1972-08-21 00:00 119.5 '' '' -1972-08-22 00:00 127.3 '' '' -1972-08-23 00:00 122.9 '' '' -1972-08-24 00:00 122.6 '' '' -1972-08-25 00:00 127.8 '' '' -1972-08-26 00:00 137.4 '' '' -1972-08-27 00:00 144.1 '' '' -1972-08-28 00:00 147.2 '' '' -1972-08-29 00:00 163.3 '' '' -1972-08-30 00:00 163.3 '' '' -1972-08-31 00:00 154.2 '' '' -1972-09-01 00:00 144.3 '' '' -1972-09-02 00:00 139.7 '' '' -1972-09-03 00:00 129.4 '' '' -1972-09-04 00:00 122.0 '' '' -1972-09-05 00:00 117.0 '' '' -1972-09-06 00:00 119.2 '' '' -1972-09-07 00:00 110.4 '' '' -1972-09-08 00:00 115.9 '' '' -1972-09-09 00:00 112.9 '' '' -1972-09-10 00:00 107.2 '' '' -1972-09-11 00:00 102.7 '' '' -1972-09-12 00:00 100.6 '' '' -1972-09-13 00:00 94.6 '' '' -1972-09-14 00:00 99.5 '' '' -1972-09-15 00:00 103.4 '' '' -1972-09-16 00:00 103.1 '' '' -1972-09-17 00:00 100.3 '' '' -1972-09-18 00:00 102.6 '' '' -1972-09-19 00:00 106.2 '' '' -1972-09-20 00:00 113.2 '' '' -1972-09-21 00:00 113.4 '' '' -1972-09-22 00:00 119.4 '' '' -1972-09-23 00:00 125.2 '' '' -1972-09-24 00:00 126.8 '' '' -1972-09-25 00:00 126.3 '' '' -1972-09-26 00:00 122.5 '' '' -1972-09-27 00:00 118.3 '' '' -1972-09-28 00:00 116.4 '' '' -1972-09-29 00:00 115.2 '' '' -1972-09-30 00:00 118.5 '' '' -1972-10-01 00:00 114.7 '' '' -1972-10-02 00:00 108.4 '' '' -1972-10-03 00:00 107.3 '' '' -1972-10-04 00:00 103.3 '' '' -1972-10-05 00:00 100.6 '' '' -1972-10-06 00:00 98.4 '' '' -1972-10-07 00:00 96.1 '' '' -1972-10-08 00:00 97.2 '' '' -1972-10-09 00:00 100.5 '' '' -1972-10-10 00:00 94.7 '' '' -1972-10-11 00:00 93.5 '' '' -1972-10-12 00:00 94.7 '' '' -1972-10-13 00:00 94.5 '' '' -1972-10-14 00:00 97.0 '' '' -1972-10-15 00:00 102.1 '' '' -1972-10-16 00:00 106.2 '' '' -1972-10-17 00:00 112.1 '' '' -1972-10-18 00:00 111.0 '' '' -1972-10-19 00:00 117.1 '' '' -1972-10-20 00:00 122.2 '' '' -1972-10-21 00:00 132.8 '' '' -1972-10-22 00:00 141.7 '' '' -1972-10-23 00:00 151.2 '' '' -1972-10-24 00:00 156.5 '' '' -1972-10-25 00:00 171.8 '' '' -1972-10-26 00:00 170.0 '' '' -1972-10-27 00:00 167.6 '' '' -1972-10-28 00:00 159.1 '' '' -1972-10-29 00:00 151.8 '' '' -1972-10-30 00:00 144.6 '' '' -1972-10-31 00:00 140.1 '' '' -1972-11-01 00:00 129.9 '' '' -1972-11-02 00:00 121.8 '' '' -1972-11-03 00:00 113.9 '' '' -1972-11-04 00:00 115.8 '' '' -1972-11-05 00:00 102.6 '' '' -1972-11-06 00:00 93.2 '' '' -1972-11-07 00:00 85.7 '' '' -1972-11-08 00:00 82.5 '' '' -1972-11-09 00:00 82.3 '' '' -1972-11-10 00:00 84.7 '' '' -1972-11-11 00:00 88.3 '' '' -1972-11-12 00:00 88.7 '' '' -1972-11-13 00:00 86.7 '' '' -1972-11-14 00:00 85.1 '' '' -1972-11-15 00:00 86.5 '' '' -1972-11-16 00:00 89.6 '' '' -1972-11-17 00:00 91.5 '' '' -1972-11-18 00:00 94.6 '' '' -1972-11-19 00:00 99.7 '' '' -1972-11-20 00:00 109.4 '' '' -1972-11-21 00:00 109.3 '' '' -1972-11-22 00:00 110.9 '' '' -1972-11-23 00:00 115.3 '' '' -1972-11-24 00:00 115.4 '' '' -1972-11-25 00:00 112.7 '' '' -1972-11-26 00:00 108.6 '' '' -1972-11-27 00:00 102.3 '' '' -1972-11-28 00:00 97.5 '' '' -1972-11-29 00:00 92.7 '' '' -1972-11-30 00:00 95.1 '' '' -1972-12-01 00:00 91.1 '' '' -1972-12-02 00:00 89.4 '' '' -1972-12-03 00:00 85.2 '' '' -1972-12-04 00:00 82.3 '' '' -1972-12-05 00:00 80.4 '' '' -1972-12-06 00:00 77.8 '' '' -1972-12-07 00:00 87.1 '' '' -1972-12-08 00:00 91.6 '' '' -1972-12-09 00:00 94.7 '' '' -1972-12-10 00:00 97.2 '' '' -1972-12-11 00:00 105.1 '' '' -1972-12-12 00:00 108.9 '' '' -1972-12-13 00:00 111.2 '' '' -1972-12-14 00:00 114.8 '' '' -1972-12-15 00:00 116.1 '' '' -1972-12-16 00:00 110.2 '' '' -1972-12-17 00:00 111.9 '' '' -1972-12-18 00:00 112.4 '' '' -1972-12-19 00:00 113.2 '' '' -1972-12-20 00:00 111.4 '' '' -1972-12-21 00:00 113.4 '' '' -1972-12-22 00:00 107.9 '' '' -1972-12-23 00:00 106.2 '' '' -1972-12-24 00:00 101.1 '' '' -1972-12-25 00:00 103.3 '' '' -1972-12-26 00:00 97.7 '' '' -1972-12-27 00:00 97.6 '' '' -1972-12-28 00:00 91.9 '' '' -1972-12-29 00:00 92.8 '' '' -1972-12-30 00:00 92.0 '' '' -1972-12-31 00:00 94.3 '' '' -1973-01-01 00:00 93.9 '' '' -1973-01-02 00:00 98.2 '' '' -1973-01-03 00:00 105.1 '' '' -1973-01-04 00:00 109.3 '' '' -1973-01-05 00:00 113.3 '' '' -1973-01-06 00:00 115.0 '' '' -1973-01-07 00:00 112.3 '' '' -1973-01-08 00:00 103.2 '' '' -1973-01-09 00:00 103.7 '' '' -1973-01-10 00:00 103.8 '' '' -1973-01-11 00:00 102.8 '' '' -1973-01-12 00:00 103.5 '' '' -1973-01-13 00:00 100.9 '' '' -1973-01-14 00:00 96.2 '' '' -1973-01-15 00:00 94.6 '' '' -1973-01-16 00:00 93.8 '' '' -1973-01-17 00:00 94.2 '' '' -1973-01-18 00:00 95.3 '' '' -1973-01-19 00:00 94.8 '' '' -1973-01-20 00:00 98.3 '' '' -1973-01-21 00:00 97.9 '' '' -1973-01-22 00:00 98.5 '' '' -1973-01-23 00:00 97.2 '' '' -1973-01-24 00:00 96.9 '' '' -1973-01-25 00:00 95.6 '' '' -1973-01-26 00:00 95.3 '' '' -1973-01-27 00:00 93.4 '' '' -1973-01-28 00:00 91.7 '' '' -1973-01-29 00:00 91.4 '' '' -1973-01-30 00:00 89.7 '' '' -1973-01-31 00:00 87.7 '' '' -1973-02-01 00:00 88.6 '' '' -1973-02-02 00:00 88.6 '' '' -1973-02-03 00:00 93.1 '' '' -1973-02-04 00:00 94.1 '' '' -1973-02-05 00:00 94.3 '' '' -1973-02-06 00:00 95.3 '' '' -1973-02-07 00:00 98.5 '' '' -1973-02-08 00:00 100.5 '' '' -1973-02-09 00:00 100.9 '' '' -1973-02-10 00:00 102.1 '' '' -1973-02-11 00:00 101.2 '' '' -1973-02-12 00:00 104.6 '' '' -1973-02-13 00:00 104.7 '' '' -1973-02-14 00:00 105.6 '' '' -1973-02-15 00:00 104.7 '' '' -1973-02-16 00:00 98.7 '' '' -1973-02-17 00:00 94.2 '' '' -1973-02-18 00:00 90.7 '' '' -1973-02-19 00:00 88.9 '' '' -1973-02-20 00:00 89.4 '' '' -1973-02-21 00:00 89.9 '' '' -1973-02-22 00:00 89.7 '' '' -1973-02-23 00:00 91.4 '' '' -1973-02-24 00:00 93.6 '' '' -1973-02-25 00:00 97.2 '' '' -1973-02-26 00:00 95.6 '' '' -1973-02-27 00:00 98.2 '' '' -1973-02-28 00:00 100.9 '' '' -1973-03-01 00:00 99.5 '' '' -1973-03-02 00:00 101.6 '' '' -1973-03-03 00:00 97.8 '' '' -1973-03-04 00:00 96.6 '' '' -1973-03-05 00:00 94.8 '' '' -1973-03-06 00:00 98.9 '' '' -1973-03-07 00:00 92.2 '' '' -1973-03-08 00:00 98.9 '' '' -1973-03-09 00:00 104.7 '' '' -1973-03-10 00:00 105.6 '' '' -1973-03-11 00:00 113.4 '' '' -1973-03-12 00:00 114.5 '' '' -1973-03-13 00:00 118.9 '' '' -1973-03-14 00:00 114.0 '' '' -1973-03-15 00:00 107.1 '' '' -1973-03-16 00:00 106.9 '' '' -1973-03-17 00:00 101.5 '' '' -1973-03-18 00:00 94.9 '' '' -1973-03-19 00:00 96.7 '' '' -1973-03-20 00:00 91.0 '' '' -1973-03-21 00:00 87.4 '' '' -1973-03-22 00:00 90.3 '' '' -1973-03-23 00:00 87.1 '' '' -1973-03-24 00:00 89.4 '' '' -1973-03-25 00:00 90.0 '' '' -1973-03-26 00:00 88.6 '' '' -1973-03-27 00:00 92.0 '' '' -1973-03-28 00:00 94.2 '' '' -1973-03-29 00:00 99.0 '' '' -1973-03-30 00:00 102.7 '' '' -1973-03-31 00:00 110.3 '' '' -1973-04-01 00:00 115.0 '' '' -1973-04-02 00:00 118.1 '' '' -1973-04-03 00:00 129.4 '' '' -1973-04-04 00:00 122.3 '' '' -1973-04-05 00:00 117.7 '' '' -1973-04-06 00:00 112.7 '' '' -1973-04-07 00:00 110.3 '' '' -1973-04-08 00:00 121.0 '' '' -1973-04-09 00:00 120.5 '' '' -1973-04-10 00:00 115.5 '' '' -1973-04-11 00:00 110.3 '' '' -1973-04-12 00:00 103.4 '' '' -1973-04-13 00:00 99.4 '' '' -1973-04-14 00:00 92.7 '' '' -1973-04-15 00:00 89.5 '' '' -1973-04-16 00:00 85.0 '' '' -1973-04-17 00:00 82.1 '' '' -1973-04-18 00:00 80.9 '' '' -1973-04-19 00:00 82.8 '' '' -1973-04-20 00:00 86.4 '' '' -1973-04-21 00:00 95.2 '' '' -1973-04-22 00:00 105.0 '' '' -1973-04-23 00:00 109.2 '' '' -1973-04-24 00:00 109.0 '' '' -1973-04-25 00:00 109.2 '' '' -1973-04-26 00:00 110.0 '' '' -1973-04-27 00:00 111.6 '' '' -1973-04-28 00:00 112.6 '' '' -1973-04-29 00:00 109.5 '' '' -1973-04-30 00:00 106.2 '' '' -1973-05-01 00:00 111.9 '' '' -1973-05-02 00:00 115.0 '' '' -1973-05-03 00:00 117.3 '' '' -1973-05-04 00:00 115.9 '' '' -1973-05-05 00:00 115.0 '' '' -1973-05-06 00:00 109.7 '' '' -1973-05-07 00:00 103.4 '' '' -1973-05-08 00:00 100.0 '' '' -1973-05-09 00:00 95.1 '' '' -1973-05-10 00:00 90.9 '' '' -1973-05-11 00:00 87.0 '' '' -1973-05-12 00:00 86.8 '' '' -1973-05-13 00:00 85.2 '' '' -1973-05-14 00:00 89.3 '' '' -1973-05-15 00:00 90.1 '' '' -1973-05-16 00:00 89.5 '' '' -1973-05-17 00:00 91.4 '' '' -1973-05-18 00:00 95.4 '' '' -1973-05-19 00:00 99.4 '' '' -1973-05-20 00:00 104.7 '' '' -1973-05-21 00:00 102.2 '' '' -1973-05-22 00:00 103.1 '' '' -1973-05-23 00:00 99.6 '' '' -1973-05-24 00:00 104.5 '' '' -1973-05-25 00:00 104.7 '' '' -1973-05-26 00:00 101.1 '' '' -1973-05-27 00:00 99.9 '' '' -1973-05-28 00:00 94.1 '' '' -1973-05-29 00:00 93.3 '' '' -1973-05-30 00:00 90.8 '' '' -1973-05-31 00:00 87.2 '' '' -1973-06-01 00:00 97.7 '' '' -1973-06-02 00:00 98.2 '' '' -1973-06-03 00:00 95.2 '' '' -1973-06-04 00:00 89.8 '' '' -1973-06-05 00:00 91.4 '' '' -1973-06-06 00:00 99.2 '' '' -1973-06-07 00:00 105.4 '' '' -1973-06-08 00:00 108.8 '' '' -1973-06-09 00:00 109.4 '' '' -1973-06-10 00:00 108.8 '' '' -1973-06-11 00:00 106.1 '' '' -1973-06-12 00:00 101.3 '' '' -1973-06-13 00:00 100.3 '' '' -1973-06-14 00:00 85.2 '' '' -1973-06-15 00:00 83.1 '' '' -1973-06-16 00:00 81.5 '' '' -1973-06-17 00:00 81.0 '' '' -1973-06-18 00:00 82.5 '' '' -1973-06-19 00:00 85.1 '' '' -1973-06-20 00:00 85.3 '' '' -1973-06-21 00:00 87.4 '' '' -1973-06-22 00:00 88.9 '' '' -1973-06-23 00:00 91.0 '' '' -1973-06-24 00:00 92.9 '' '' -1973-06-25 00:00 93.6 '' '' -1973-06-26 00:00 96.3 '' '' -1973-06-27 00:00 94.8 '' '' -1973-06-28 00:00 95.2 '' '' -1973-06-29 00:00 95.1 '' '' -1973-06-30 00:00 94.1 '' '' -1973-07-01 00:00 90.9 '' '' -1973-07-02 00:00 93.1 '' '' -1973-07-03 00:00 93.5 '' '' -1973-07-04 00:00 94.9 '' '' -1973-07-05 00:00 97.9 '' '' -1973-07-06 00:00 99.4 '' '' -1973-07-07 00:00 99.9 '' '' -1973-07-08 00:00 97.6 '' '' -1973-07-09 00:00 98.6 '' '' -1973-07-10 00:00 100.5 '' '' -1973-07-11 00:00 94.0 '' '' -1973-07-12 00:00 85.4 '' '' -1973-07-13 00:00 80.3 '' '' -1973-07-14 00:00 79.5 '' '' -1973-07-15 00:00 78.7 '' '' -1973-07-16 00:00 79.5 '' '' -1973-07-17 00:00 79.1 '' '' -1973-07-18 00:00 83.6 '' '' -1973-07-19 00:00 84.1 '' '' -1973-07-20 00:00 79.5 '' '' -1973-07-21 00:00 79.4 '' '' -1973-07-22 00:00 77.6 '' '' -1973-07-23 00:00 78.6 '' '' -1973-07-24 00:00 81.6 '' '' -1973-07-25 00:00 83.8 '' '' -1973-07-26 00:00 85.0 '' '' -1973-07-27 00:00 85.5 '' '' -1973-07-28 00:00 84.2 '' '' -1973-07-29 00:00 89.5 '' '' -1973-07-30 00:00 86.1 '' '' -1973-07-31 00:00 86.6 '' '' -1973-08-01 00:00 86.9 '' '' -1973-08-02 00:00 86.8 '' '' -1973-08-03 00:00 85.0 '' '' -1973-08-04 00:00 86.2 '' '' -1973-08-05 00:00 85.1 '' '' -1973-08-06 00:00 88.8 '' '' -1973-08-07 00:00 90.8 '' '' -1973-08-08 00:00 87.5 '' '' -1973-08-09 00:00 87.1 '' '' -1973-08-10 00:00 83.4 '' '' -1973-08-11 00:00 78.9 '' '' -1973-08-12 00:00 76.3 '' '' -1973-08-13 00:00 74.7 '' '' -1973-08-14 00:00 74.1 '' '' -1973-08-15 00:00 72.6 '' '' -1973-08-16 00:00 74.1 '' '' -1973-08-17 00:00 75.0 '' '' -1973-08-18 00:00 75.3 '' '' -1973-08-19 00:00 75.4 '' '' -1973-08-20 00:00 76.8 '' '' -1973-08-21 00:00 80.4 '' '' -1973-08-22 00:00 80.4 '' '' -1973-08-23 00:00 81.8 '' '' -1973-08-24 00:00 85.3 '' '' -1973-08-25 00:00 88.9 '' '' -1973-08-26 00:00 91.2 '' '' -1973-08-27 00:00 95.1 '' '' -1973-08-28 00:00 97.5 '' '' -1973-08-29 00:00 100.8 '' '' -1973-08-30 00:00 101.3 '' '' -1973-08-31 00:00 109.6 '' '' -1973-09-01 00:00 114.9 '' '' -1973-09-02 00:00 129.2 '' '' -1973-09-03 00:00 136.5 '' '' -1973-09-04 00:00 135.0 '' '' -1973-09-05 00:00 135.1 '' '' -1973-09-06 00:00 130.9 '' '' -1973-09-07 00:00 121.7 '' '' -1973-09-08 00:00 115.7 '' '' -1973-09-09 00:00 113.1 '' '' -1973-09-10 00:00 106.7 '' '' -1973-09-11 00:00 96.8 '' '' -1973-09-12 00:00 89.5 '' '' -1973-09-13 00:00 84.6 '' '' -1973-09-14 00:00 82.9 '' '' -1973-09-15 00:00 82.6 '' '' -1973-09-16 00:00 83.9 '' '' -1973-09-17 00:00 81.8 '' '' -1973-09-18 00:00 84.6 '' '' -1973-09-19 00:00 86.6 '' '' -1973-09-20 00:00 92.0 '' '' -1973-09-21 00:00 94.9 '' '' -1973-09-22 00:00 99.5 '' '' -1973-09-23 00:00 103.9 '' '' -1973-09-24 00:00 106.2 '' '' -1973-09-25 00:00 112.7 '' '' -1973-09-26 00:00 115.5 '' '' -1973-09-27 00:00 115.9 '' '' -1973-09-28 00:00 118.1 '' '' -1973-09-29 00:00 116.5 '' '' -1973-09-30 00:00 116.5 '' '' -1973-10-01 00:00 109.0 '' '' -1973-10-02 00:00 106.1 '' '' -1973-10-03 00:00 103.5 '' '' -1973-10-04 00:00 94.9 '' '' -1973-10-05 00:00 90.6 '' '' -1973-10-06 00:00 85.9 '' '' -1973-10-07 00:00 82.2 '' '' -1973-10-08 00:00 80.1 '' '' -1973-10-09 00:00 79.1 '' '' -1973-10-10 00:00 77.0 '' '' -1973-10-11 00:00 74.9 '' '' -1973-10-12 00:00 72.0 '' '' -1973-10-13 00:00 70.5 '' '' -1973-10-14 00:00 72.7 '' '' -1973-10-15 00:00 75.7 '' '' -1973-10-16 00:00 75.6 '' '' -1973-10-17 00:00 79.5 '' '' -1973-10-18 00:00 78.3 '' '' -1973-10-19 00:00 76.7 '' '' -1973-10-20 00:00 73.4 '' '' -1973-10-21 00:00 80.0 '' '' -1973-10-22 00:00 85.0 '' '' -1973-10-23 00:00 89.9 '' '' -1973-10-24 00:00 97.6 '' '' -1973-10-25 00:00 101.0 '' '' -1973-10-26 00:00 101.0 '' '' -1973-10-27 00:00 101.7 '' '' -1973-10-28 00:00 100.7 '' '' -1973-10-29 00:00 99.1 '' '' -1973-10-30 00:00 97.4 '' '' -1973-10-31 00:00 89.5 '' '' -1973-11-01 00:00 87.0 '' '' -1973-11-02 00:00 83.9 '' '' -1973-11-03 00:00 81.1 '' '' -1973-11-04 00:00 77.4 '' '' -1973-11-05 00:00 73.9 '' '' -1973-11-06 00:00 73.2 '' '' -1973-11-07 00:00 72.1 '' '' -1973-11-08 00:00 70.4 '' '' -1973-11-09 00:00 70.4 '' '' -1973-11-10 00:00 70.7 '' '' -1973-11-11 00:00 71.2 '' '' -1973-11-12 00:00 70.7 '' '' -1973-11-13 00:00 72.6 '' '' -1973-11-14 00:00 73.8 '' '' -1973-11-15 00:00 75.0 '' '' -1973-11-16 00:00 76.2 '' '' -1973-11-17 00:00 75.3 '' '' -1973-11-18 00:00 75.5 '' '' -1973-11-19 00:00 75.4 '' '' -1973-11-20 00:00 76.8 '' '' -1973-11-21 00:00 80.7 '' '' -1973-11-22 00:00 84.7 '' '' -1973-11-23 00:00 86.5 '' '' -1973-11-24 00:00 87.0 '' '' -1973-11-25 00:00 88.0 '' '' -1973-11-26 00:00 91.8 '' '' -1973-11-27 00:00 88.8 '' '' -1973-11-28 00:00 90.7 '' '' -1973-11-29 00:00 94.9 '' '' -1973-11-30 00:00 95.7 '' '' -1973-12-01 00:00 86.9 '' '' -1973-12-02 00:00 86.3 '' '' -1973-12-03 00:00 82.7 '' '' -1973-12-04 00:00 78.6 '' '' -1973-12-05 00:00 73.6 '' '' -1973-12-06 00:00 70.9 '' '' -1973-12-07 00:00 70.4 '' '' -1973-12-08 00:00 70.9 '' '' -1973-12-09 00:00 71.2 '' '' -1973-12-10 00:00 72.3 '' '' -1973-12-11 00:00 71.9 '' '' -1973-12-12 00:00 72.5 '' '' -1973-12-13 00:00 73.1 '' '' -1973-12-14 00:00 73.8 '' '' -1973-12-15 00:00 76.6 '' '' -1973-12-16 00:00 79.7 '' '' -1973-12-17 00:00 82.1 '' '' -1973-12-18 00:00 84.9 '' '' -1973-12-19 00:00 87.8 '' '' -1973-12-20 00:00 89.9 '' '' -1973-12-21 00:00 97.6 '' '' -1973-12-22 00:00 96.7 '' '' -1973-12-23 00:00 96.0 '' '' -1973-12-24 00:00 98.1 '' '' -1973-12-25 00:00 97.6 '' '' -1973-12-26 00:00 92.9 '' '' -1973-12-27 00:00 88.6 '' '' -1973-12-28 00:00 81.7 '' '' -1973-12-29 00:00 76.4 '' '' -1973-12-30 00:00 74.1 '' '' -1973-12-31 00:00 72.0 '' '' -1974-01-01 00:00 71.5 '' '' -1974-01-02 00:00 73.2 '' '' -1974-01-03 00:00 73.3 '' '' -1974-01-04 00:00 72.5 '' '' -1974-01-05 00:00 72.1 '' '' -1974-01-06 00:00 74.7 '' '' -1974-01-07 00:00 76.0 '' '' -1974-01-08 00:00 79.7 '' '' -1974-01-09 00:00 84.9 '' '' -1974-01-10 00:00 89.2 '' '' -1974-01-11 00:00 91.0 '' '' -1974-01-12 00:00 94.6 '' '' -1974-01-13 00:00 94.8 '' '' -1974-01-14 00:00 95.7 '' '' -1974-01-15 00:00 91.8 '' '' -1974-01-16 00:00 90.0 '' '' -1974-01-17 00:00 89.2 '' '' -1974-01-18 00:00 87.1 '' '' -1974-01-19 00:00 85.8 '' '' -1974-01-20 00:00 84.4 '' '' -1974-01-21 00:00 79.7 '' '' -1974-01-22 00:00 83.5 '' '' -1974-01-23 00:00 81.0 '' '' -1974-01-24 00:00 77.8 '' '' -1974-01-25 00:00 74.1 '' '' -1974-01-26 00:00 71.5 '' '' -1974-01-27 00:00 70.7 '' '' -1974-01-28 00:00 70.8 '' '' -1974-01-29 00:00 70.7 '' '' -1974-01-30 00:00 70.8 '' '' -1974-01-31 00:00 71.3 '' '' -1974-02-01 00:00 71.8 '' '' -1974-02-02 00:00 73.1 '' '' -1974-02-03 00:00 73.1 '' '' -1974-02-04 00:00 72.9 '' '' -1974-02-05 00:00 74.0 '' '' -1974-02-06 00:00 75.4 '' '' -1974-02-07 00:00 77.4 '' '' -1974-02-08 00:00 78.8 '' '' -1974-02-09 00:00 80.8 '' '' -1974-02-10 00:00 80.5 '' '' -1974-02-11 00:00 77.5 '' '' -1974-02-12 00:00 76.5 '' '' -1974-02-13 00:00 77.3 '' '' -1974-02-14 00:00 76.3 '' '' -1974-02-15 00:00 83.7 '' '' -1974-02-16 00:00 84.7 '' '' -1974-02-17 00:00 85.9 '' '' -1974-02-18 00:00 87.5 '' '' -1974-02-19 00:00 82.7 '' '' -1974-02-20 00:00 82.2 '' '' -1974-02-21 00:00 82.2 '' '' -1974-02-22 00:00 82.2 '' '' -1974-02-23 00:00 84.2 '' '' -1974-02-24 00:00 80.9 '' '' -1974-02-25 00:00 78.6 '' '' -1974-02-26 00:00 76.2 '' '' -1974-02-27 00:00 76.4 '' '' -1974-02-28 00:00 75.8 '' '' -1974-03-01 00:00 76.4 '' '' -1974-03-02 00:00 76.5 '' '' -1974-03-03 00:00 77.1 '' '' -1974-03-04 00:00 79.0 '' '' -1974-03-05 00:00 78.6 '' '' -1974-03-06 00:00 77.5 '' '' -1974-03-07 00:00 76.0 '' '' -1974-03-08 00:00 77.0 '' '' -1974-03-09 00:00 80.2 '' '' -1974-03-10 00:00 86.1 '' '' -1974-03-11 00:00 85.9 '' '' -1974-03-12 00:00 86.2 '' '' -1974-03-13 00:00 84.5 '' '' -1974-03-14 00:00 81.9 '' '' -1974-03-15 00:00 82.9 '' '' -1974-03-16 00:00 81.8 '' '' -1974-03-17 00:00 82.7 '' '' -1974-03-18 00:00 80.2 '' '' -1974-03-19 00:00 80.0 '' '' -1974-03-20 00:00 79.6 '' '' -1974-03-21 00:00 79.1 '' '' -1974-03-22 00:00 80.0 '' '' -1974-03-23 00:00 79.8 '' '' -1974-03-24 00:00 76.6 '' '' -1974-03-25 00:00 74.3 '' '' -1974-03-26 00:00 72.6 '' '' -1974-03-27 00:00 71.8 '' '' -1974-03-28 00:00 70.4 '' '' -1974-03-29 00:00 71.5 '' '' -1974-03-30 00:00 72.1 '' '' -1974-03-31 00:00 72.9 '' '' -1974-04-01 00:00 72.1 '' '' -1974-04-02 00:00 71.3 '' '' -1974-04-03 00:00 71.6 '' '' -1974-04-04 00:00 73.3 '' '' -1974-04-05 00:00 76.3 '' '' -1974-04-06 00:00 80.0 '' '' -1974-04-07 00:00 80.2 '' '' -1974-04-08 00:00 81.1 '' '' -1974-04-09 00:00 87.8 '' '' -1974-04-10 00:00 93.5 '' '' -1974-04-11 00:00 99.8 '' '' -1974-04-12 00:00 105.6 '' '' -1974-04-13 00:00 102.8 '' '' -1974-04-14 00:00 116.3 '' '' -1974-04-15 00:00 122.9 '' '' -1974-04-16 00:00 115.0 '' '' -1974-04-17 00:00 101.8 '' '' -1974-04-18 00:00 98.0 '' '' -1974-04-19 00:00 87.5 '' '' -1974-04-20 00:00 82.3 '' '' -1974-04-21 00:00 79.5 '' '' -1974-04-22 00:00 75.3 '' '' -1974-04-23 00:00 73.9 '' '' -1974-04-24 00:00 75.0 '' '' -1974-04-25 00:00 76.5 '' '' -1974-04-26 00:00 74.9 '' '' -1974-04-27 00:00 75.3 '' '' -1974-04-28 00:00 77.9 '' '' -1974-04-29 00:00 81.6 '' '' -1974-04-30 00:00 91.7 '' '' -1974-05-01 00:00 98.5 '' '' -1974-05-02 00:00 113.1 '' '' -1974-05-03 00:00 115.5 '' '' -1974-05-04 00:00 118.0 '' '' -1974-05-05 00:00 119.7 '' '' -1974-05-06 00:00 123.0 '' '' -1974-05-07 00:00 119.3 '' '' -1974-05-08 00:00 115.8 '' '' -1974-05-09 00:00 110.0 '' '' -1974-05-10 00:00 105.1 '' '' -1974-05-11 00:00 104.3 '' '' -1974-05-12 00:00 97.1 '' '' -1974-05-13 00:00 93.5 '' '' -1974-05-14 00:00 88.2 '' '' -1974-05-15 00:00 84.9 '' '' -1974-05-16 00:00 80.3 '' '' -1974-05-17 00:00 75.8 '' '' -1974-05-18 00:00 75.2 '' '' -1974-05-19 00:00 73.0 '' '' -1974-05-20 00:00 72.5 '' '' -1974-05-21 00:00 71.9 '' '' -1974-05-22 00:00 72.2 '' '' -1974-05-23 00:00 71.5 '' '' -1974-05-24 00:00 71.6 '' '' -1974-05-25 00:00 72.4 '' '' -1974-05-26 00:00 79.6 '' '' -1974-05-27 00:00 85.1 '' '' -1974-05-28 00:00 87.4 '' '' -1974-05-29 00:00 89.4 '' '' -1974-05-30 00:00 91.3 '' '' -1974-05-31 00:00 95.1 '' '' -1974-06-01 00:00 97.9 '' '' -1974-06-02 00:00 100.1 '' '' -1974-06-03 00:00 98.9 '' '' -1974-06-04 00:00 98.2 '' '' -1974-06-05 00:00 96.5 '' '' -1974-06-06 00:00 95.0 '' '' -1974-06-07 00:00 92.8 '' '' -1974-06-08 00:00 95.0 '' '' -1974-06-09 00:00 95.1 '' '' -1974-06-10 00:00 97.0 '' '' -1974-06-11 00:00 95.3 '' '' -1974-06-12 00:00 91.7 '' '' -1974-06-13 00:00 89.8 '' '' -1974-06-14 00:00 88.1 '' '' -1974-06-15 00:00 84.7 '' '' -1974-06-16 00:00 86.2 '' '' -1974-06-17 00:00 87.2 '' '' -1974-06-18 00:00 84.4 '' '' -1974-06-19 00:00 82.8 '' '' -1974-06-20 00:00 83.8 '' '' -1974-06-21 00:00 81.4 '' '' -1974-06-22 00:00 82.3 '' '' -1974-06-23 00:00 80.2 '' '' -1974-06-24 00:00 79.1 '' '' -1974-06-25 00:00 78.8 '' '' -1974-06-26 00:00 79.6 '' '' -1974-06-27 00:00 82.4 '' '' -1974-06-28 00:00 83.0 '' '' -1974-06-29 00:00 89.4 '' '' -1974-06-30 00:00 93.1 '' '' -1974-07-01 00:00 105.4 '' '' -1974-07-02 00:00 112.7 '' '' -1974-07-03 00:00 118.5 '' '' -1974-07-04 00:00 127.8 '' '' -1974-07-05 00:00 125.6 '' '' -1974-07-06 00:00 121.5 '' '' -1974-07-07 00:00 110.9 '' '' -1974-07-08 00:00 104.7 '' '' -1974-07-09 00:00 95.5 '' '' -1974-07-10 00:00 88.2 '' '' -1974-07-11 00:00 83.1 '' '' -1974-07-12 00:00 83.3 '' '' -1974-07-13 00:00 83.3 '' '' -1974-07-14 00:00 83.3 '' '' -1974-07-15 00:00 85.5 '' '' -1974-07-16 00:00 91.3 '' '' -1974-07-17 00:00 91.0 '' '' -1974-07-18 00:00 86.5 '' '' -1974-07-19 00:00 87.1 '' '' -1974-07-20 00:00 86.7 '' '' -1974-07-21 00:00 90.1 '' '' -1974-07-22 00:00 95.3 '' '' -1974-07-23 00:00 98.5 '' '' -1974-07-24 00:00 92.1 '' '' -1974-07-25 00:00 89.5 '' '' -1974-07-26 00:00 93.1 '' '' -1974-07-27 00:00 87.9 '' '' -1974-07-28 00:00 84.5 '' '' -1974-07-29 00:00 85.2 '' '' -1974-07-30 00:00 85.9 '' '' -1974-07-31 00:00 87.4 '' '' -1974-08-01 00:00 85.1 '' '' -1974-08-02 00:00 85.2 '' '' -1974-08-03 00:00 83.0 '' '' -1974-08-04 00:00 85.8 '' '' -1974-08-05 00:00 86.5 '' '' -1974-08-06 00:00 88.0 '' '' -1974-08-07 00:00 85.8 '' '' -1974-08-08 00:00 89.4 '' '' -1974-08-09 00:00 87.5 '' '' -1974-08-10 00:00 88.3 '' '' -1974-08-11 00:00 94.4 '' '' -1974-08-12 00:00 99.4 '' '' -1974-08-13 00:00 95.2 '' '' -1974-08-14 00:00 93.2 '' '' -1974-08-15 00:00 92.1 '' '' -1974-08-16 00:00 96.6 '' '' -1974-08-17 00:00 98.8 '' '' -1974-08-18 00:00 95.1 '' '' -1974-08-19 00:00 88.8 '' '' -1974-08-20 00:00 82.6 '' '' -1974-08-21 00:00 81.2 '' '' -1974-08-22 00:00 80.6 '' '' -1974-08-23 00:00 81.0 '' '' -1974-08-24 00:00 77.4 '' '' -1974-08-25 00:00 75.7 '' '' -1974-08-26 00:00 73.8 '' '' -1974-08-27 00:00 72.7 '' '' -1974-08-28 00:00 71.8 '' '' -1974-08-29 00:00 72.4 '' '' -1974-08-30 00:00 74.2 '' '' -1974-08-31 00:00 75.6 '' '' -1974-09-01 00:00 77.8 '' '' -1974-09-02 00:00 79.4 '' '' -1974-09-03 00:00 79.2 '' '' -1974-09-04 00:00 81.0 '' '' -1974-09-05 00:00 81.5 '' '' -1974-09-06 00:00 82.2 '' '' -1974-09-07 00:00 85.4 '' '' -1974-09-08 00:00 93.4 '' '' -1974-09-09 00:00 96.0 '' '' -1974-09-10 00:00 102.0 '' '' -1974-09-11 00:00 104.6 '' '' -1974-09-12 00:00 105.6 '' '' -1974-09-13 00:00 106.8 '' '' -1974-09-14 00:00 104.1 '' '' -1974-09-15 00:00 103.6 '' '' -1974-09-16 00:00 102.0 '' '' -1974-09-17 00:00 100.3 '' '' -1974-09-18 00:00 100.0 '' '' -1974-09-19 00:00 91.7 '' '' -1974-09-20 00:00 85.9 '' '' -1974-09-21 00:00 82.7 '' '' -1974-09-22 00:00 81.0 '' '' -1974-09-23 00:00 74.6 '' '' -1974-09-24 00:00 72.8 '' '' -1974-09-25 00:00 72.8 '' '' -1974-09-26 00:00 75.4 '' '' -1974-09-27 00:00 77.0 '' '' -1974-09-28 00:00 80.7 '' '' -1974-09-29 00:00 90.7 '' '' -1974-09-30 00:00 91.5 '' '' -1974-10-01 00:00 93.1 '' '' -1974-10-02 00:00 94.6 '' '' -1974-10-03 00:00 93.4 '' '' -1974-10-04 00:00 100.5 '' '' -1974-10-05 00:00 113.3 '' '' -1974-10-06 00:00 115.0 '' '' -1974-10-07 00:00 114.5 '' '' -1974-10-08 00:00 125.2 '' '' -1974-10-09 00:00 128.9 '' '' -1974-10-10 00:00 129.3 '' '' -1974-10-11 00:00 137.5 '' '' -1974-10-12 00:00 144.1 '' '' -1974-10-13 00:00 126.6 '' '' -1974-10-14 00:00 113.2 '' '' -1974-10-15 00:00 103.7 '' '' -1974-10-16 00:00 94.9 '' '' -1974-10-17 00:00 83.8 '' '' -1974-10-18 00:00 81.0 '' '' -1974-10-19 00:00 75.2 '' '' -1974-10-20 00:00 75.5 '' '' -1974-10-21 00:00 73.9 '' '' -1974-10-22 00:00 72.6 '' '' -1974-10-23 00:00 74.0 '' '' -1974-10-24 00:00 74.7 '' '' -1974-10-25 00:00 76.9 '' '' -1974-10-26 00:00 80.7 '' '' -1974-10-27 00:00 80.0 '' '' -1974-10-28 00:00 81.6 '' '' -1974-10-29 00:00 81.6 '' '' -1974-10-30 00:00 82.7 '' '' -1974-10-31 00:00 86.7 '' '' -1974-11-01 00:00 90.2 '' '' -1974-11-02 00:00 92.0 '' '' -1974-11-03 00:00 96.2 '' '' -1974-11-04 00:00 99.5 '' '' -1974-11-05 00:00 97.6 '' '' -1974-11-06 00:00 92.3 '' '' -1974-11-07 00:00 85.6 '' '' -1974-11-08 00:00 82.0 '' '' -1974-11-09 00:00 78.9 '' '' -1974-11-10 00:00 78.4 '' '' -1974-11-11 00:00 77.3 '' '' -1974-11-12 00:00 79.1 '' '' -1974-11-13 00:00 76.1 '' '' -1974-11-14 00:00 77.7 '' '' -1974-11-15 00:00 80.0 '' '' -1974-11-16 00:00 82.5 '' '' -1974-11-17 00:00 84.6 '' '' -1974-11-18 00:00 88.5 '' '' -1974-11-19 00:00 96.0 '' '' -1974-11-20 00:00 95.6 '' '' -1974-11-21 00:00 96.2 '' '' -1974-11-22 00:00 98.7 '' '' -1974-11-23 00:00 98.1 '' '' -1974-11-24 00:00 95.9 '' '' -1974-11-25 00:00 94.5 '' '' -1974-11-26 00:00 92.2 '' '' -1974-11-27 00:00 90.8 '' '' -1974-11-28 00:00 86.6 '' '' -1974-11-29 00:00 83.8 '' '' -1974-11-30 00:00 82.0 '' '' -1974-12-01 00:00 79.7 '' '' -1974-12-02 00:00 78.7 '' '' -1974-12-03 00:00 76.7 '' '' -1974-12-04 00:00 74.7 '' '' -1974-12-05 00:00 73.2 '' '' -1974-12-06 00:00 71.9 '' '' -1974-12-07 00:00 71.1 '' '' -1974-12-08 00:00 69.6 '' '' -1974-12-09 00:00 69.6 '' '' -1974-12-10 00:00 70.4 '' '' -1974-12-11 00:00 76.2 '' '' -1974-12-12 00:00 77.9 '' '' -1974-12-13 00:00 78.0 '' '' -1974-12-14 00:00 78.2 '' '' -1974-12-15 00:00 83.2 '' '' -1974-12-16 00:00 88.3 '' '' -1974-12-17 00:00 88.3 '' '' -1974-12-18 00:00 90.3 '' '' -1974-12-19 00:00 91.9 '' '' -1974-12-20 00:00 87.3 '' '' -1974-12-21 00:00 86.0 '' '' -1974-12-22 00:00 84.4 '' '' -1974-12-23 00:00 83.0 '' '' -1974-12-24 00:00 80.1 '' '' -1974-12-25 00:00 78.9 '' '' -1974-12-26 00:00 75.8 '' '' -1974-12-27 00:00 74.3 '' '' -1974-12-28 00:00 73.7 '' '' -1974-12-29 00:00 74.1 '' '' -1974-12-30 00:00 74.5 '' '' -1974-12-31 00:00 76.1 '' '' -1975-01-01 00:00 78.0 '' '' -1975-01-02 00:00 75.8 '' '' -1975-01-03 00:00 77.1 '' '' -1975-01-04 00:00 74.4 '' '' -1975-01-05 00:00 73.7 '' '' -1975-01-06 00:00 73.8 '' '' -1975-01-07 00:00 75.7 '' '' -1975-01-08 00:00 77.7 '' '' -1975-01-09 00:00 79.9 '' '' -1975-01-10 00:00 80.5 '' '' -1975-01-11 00:00 81.2 '' '' -1975-01-12 00:00 82.4 '' '' -1975-01-13 00:00 80.4 '' '' -1975-01-14 00:00 77.7 '' '' -1975-01-15 00:00 77.4 '' '' -1975-01-16 00:00 76.5 '' '' -1975-01-17 00:00 74.7 '' '' -1975-01-18 00:00 75.8 '' '' -1975-01-19 00:00 74.1 '' '' -1975-01-20 00:00 73.8 '' '' -1975-01-21 00:00 74.5 '' '' -1975-01-22 00:00 73.6 '' '' -1975-01-23 00:00 72.7 '' '' -1975-01-24 00:00 71.0 '' '' -1975-01-25 00:00 70.3 '' '' -1975-01-26 00:00 70.5 '' '' -1975-01-27 00:00 70.1 '' '' -1975-01-28 00:00 70.7 '' '' -1975-01-29 00:00 70.4 '' '' -1975-01-30 00:00 70.5 '' '' -1975-01-31 00:00 70.1 '' '' -1975-02-01 00:00 70.8 '' '' -1975-02-02 00:00 72.3 '' '' -1975-02-03 00:00 74.3 '' '' -1975-02-04 00:00 75.4 '' '' -1975-02-05 00:00 76.5 '' '' -1975-02-06 00:00 81.1 '' '' -1975-02-07 00:00 79.4 '' '' -1975-02-08 00:00 78.8 '' '' -1975-02-09 00:00 77.1 '' '' -1975-02-10 00:00 76.7 '' '' -1975-02-11 00:00 74.8 '' '' -1975-02-12 00:00 74.9 '' '' -1975-02-13 00:00 73.7 '' '' -1975-02-14 00:00 72.0 '' '' -1975-02-15 00:00 69.7 '' '' -1975-02-16 00:00 71.4 '' '' -1975-02-17 00:00 69.3 '' '' -1975-02-18 00:00 68.3 '' '' -1975-02-19 00:00 70.0 '' '' -1975-02-20 00:00 69.5 '' '' -1975-02-21 00:00 68.9 '' '' -1975-02-22 00:00 68.3 '' '' -1975-02-23 00:00 68.3 '' '' -1975-02-24 00:00 68.6 '' '' -1975-02-25 00:00 69.4 '' '' -1975-02-26 00:00 68.8 '' '' -1975-02-27 00:00 69.4 '' '' -1975-02-28 00:00 68.6 '' '' -1975-03-01 00:00 70.7 '' '' -1975-03-02 00:00 72.4 '' '' -1975-03-03 00:00 73.4 '' '' -1975-03-04 00:00 72.8 '' '' -1975-03-05 00:00 71.3 '' '' -1975-03-06 00:00 72.4 '' '' -1975-03-07 00:00 71.9 '' '' -1975-03-08 00:00 72.5 '' '' -1975-03-09 00:00 73.8 '' '' -1975-03-10 00:00 73.3 '' '' -1975-03-11 00:00 73.0 '' '' -1975-03-12 00:00 74.2 '' '' -1975-03-13 00:00 75.6 '' '' -1975-03-14 00:00 75.0 '' '' -1975-03-15 00:00 73.4 '' '' -1975-03-16 00:00 76.0 '' '' -1975-03-17 00:00 75.3 '' '' -1975-03-18 00:00 74.2 '' '' -1975-03-19 00:00 72.9 '' '' -1975-03-20 00:00 71.9 '' '' -1975-03-21 00:00 71.2 '' '' -1975-03-22 00:00 69.3 '' '' -1975-03-23 00:00 67.6 '' '' -1975-03-24 00:00 67.4 '' '' -1975-03-25 00:00 67.5 '' '' -1975-03-26 00:00 68.6 '' '' -1975-03-27 00:00 67.3 '' '' -1975-03-28 00:00 67.8 '' '' -1975-03-29 00:00 69.0 '' '' -1975-03-30 00:00 69.0 '' '' -1975-03-31 00:00 70.5 '' '' -1975-04-01 00:00 70.2 '' '' -1975-04-02 00:00 71.2 '' '' -1975-04-03 00:00 72.2 '' '' -1975-04-04 00:00 73.0 '' '' -1975-04-05 00:00 73.7 '' '' -1975-04-06 00:00 73.7 '' '' -1975-04-07 00:00 74.3 '' '' -1975-04-08 00:00 73.6 '' '' -1975-04-09 00:00 73.4 '' '' -1975-04-10 00:00 72.4 '' '' -1975-04-11 00:00 72.3 '' '' -1975-04-12 00:00 70.8 '' '' -1975-04-13 00:00 70.7 '' '' -1975-04-14 00:00 69.7 '' '' -1975-04-15 00:00 69.7 '' '' -1975-04-16 00:00 69.2 '' '' -1975-04-17 00:00 69.6 '' '' -1975-04-18 00:00 68.3 '' '' -1975-04-19 00:00 67.5 '' '' -1975-04-20 00:00 68.0 '' '' -1975-04-21 00:00 68.2 '' '' -1975-04-22 00:00 67.8 '' '' -1975-04-23 00:00 68.7 '' '' -1975-04-24 00:00 69.3 '' '' -1975-04-25 00:00 71.6 '' '' -1975-04-26 00:00 72.1 '' '' -1975-04-27 00:00 74.4 '' '' -1975-04-28 00:00 74.8 '' '' -1975-04-29 00:00 73.2 '' '' -1975-04-30 00:00 73.4 '' '' -1975-05-01 00:00 76.3 '' '' -1975-05-02 00:00 81.1 '' '' -1975-05-03 00:00 79.6 '' '' -1975-05-04 00:00 79.6 '' '' -1975-05-05 00:00 78.4 '' '' -1975-05-06 00:00 75.9 '' '' -1975-05-07 00:00 73.6 '' '' -1975-05-08 00:00 71.9 '' '' -1975-05-09 00:00 70.6 '' '' -1975-05-10 00:00 70.1 '' '' -1975-05-11 00:00 69.8 '' '' -1975-05-12 00:00 69.6 '' '' -1975-05-13 00:00 69.1 '' '' -1975-05-14 00:00 68.7 '' '' -1975-05-15 00:00 68.0 '' '' -1975-05-16 00:00 68.5 '' '' -1975-05-17 00:00 68.3 '' '' -1975-05-18 00:00 68.7 '' '' -1975-05-19 00:00 68.9 '' '' -1975-05-20 00:00 68.6 '' '' -1975-05-21 00:00 69.7 '' '' -1975-05-22 00:00 70.8 '' '' -1975-05-23 00:00 70.6 '' '' -1975-05-24 00:00 70.6 '' '' -1975-05-25 00:00 70.2 '' '' -1975-05-26 00:00 69.0 '' '' -1975-05-27 00:00 70.5 '' '' -1975-05-28 00:00 70.6 '' '' -1975-05-29 00:00 71.0 '' '' -1975-05-30 00:00 71.0 '' '' -1975-05-31 00:00 71.1 '' '' -1975-06-01 00:00 71.4 '' '' -1975-06-02 00:00 73.0 '' '' -1975-06-03 00:00 70.8 '' '' -1975-06-04 00:00 70.4 '' '' -1975-06-05 00:00 69.3 '' '' -1975-06-06 00:00 68.2 '' '' -1975-06-07 00:00 68.1 '' '' -1975-06-08 00:00 67.5 '' '' -1975-06-09 00:00 67.7 '' '' -1975-06-10 00:00 68.8 '' '' -1975-06-11 00:00 68.1 '' '' -1975-06-12 00:00 68.4 '' '' -1975-06-13 00:00 67.9 '' '' -1975-06-14 00:00 68.5 '' '' -1975-06-15 00:00 68.9 '' '' -1975-06-16 00:00 71.4 '' '' -1975-06-17 00:00 70.2 '' '' -1975-06-18 00:00 70.2 '' '' -1975-06-19 00:00 71.0 '' '' -1975-06-20 00:00 72.5 '' '' -1975-06-21 00:00 68.7 '' '' -1975-06-22 00:00 69.9 '' '' -1975-06-23 00:00 72.9 '' '' -1975-06-24 00:00 75.9 '' '' -1975-06-25 00:00 77.7 '' '' -1975-06-26 00:00 79.8 '' '' -1975-06-27 00:00 81.5 '' '' -1975-06-28 00:00 80.7 '' '' -1975-06-29 00:00 79.4 '' '' -1975-06-30 00:00 78.8 '' '' -1975-07-01 00:00 78.7 '' '' -1975-07-02 00:00 76.8 '' '' -1975-07-03 00:00 77.1 '' '' -1975-07-04 00:00 76.8 '' '' -1975-07-05 00:00 76.8 '' '' -1975-07-06 00:00 76.1 '' '' -1975-07-07 00:00 74.1 '' '' -1975-07-08 00:00 74.0 '' '' -1975-07-09 00:00 73.3 '' '' -1975-07-10 00:00 73.0 '' '' -1975-07-11 00:00 77.6 '' '' -1975-07-12 00:00 82.7 '' '' -1975-07-13 00:00 88.5 '' '' -1975-07-14 00:00 89.0 '' '' -1975-07-15 00:00 85.6 '' '' -1975-07-16 00:00 83.6 '' '' -1975-07-17 00:00 81.2 '' '' -1975-07-18 00:00 82.8 '' '' -1975-07-19 00:00 81.9 '' '' -1975-07-20 00:00 83.3 '' '' -1975-07-21 00:00 83.1 '' '' -1975-07-22 00:00 82.7 '' '' -1975-07-23 00:00 82.0 '' '' -1975-07-24 00:00 79.3 '' '' -1975-07-25 00:00 79.8 '' '' -1975-07-26 00:00 80.0 '' '' -1975-07-27 00:00 78.5 '' '' -1975-07-28 00:00 76.5 '' '' -1975-07-29 00:00 75.5 '' '' -1975-07-30 00:00 78.9 '' '' -1975-07-31 00:00 81.9 '' '' -1975-08-01 00:00 91.6 '' '' -1975-08-02 00:00 95.4 '' '' -1975-08-03 00:00 97.0 '' '' -1975-08-04 00:00 104.6 '' '' -1975-08-05 00:00 107.9 '' '' -1975-08-06 00:00 120.0 '' '' -1975-08-07 00:00 123.2 '' '' -1975-08-08 00:00 123.7 '' '' -1975-08-09 00:00 115.9 '' '' -1975-08-10 00:00 116.5 '' '' -1975-08-11 00:00 107.3 '' '' -1975-08-12 00:00 104.5 '' '' -1975-08-13 00:00 98.0 '' '' -1975-08-14 00:00 90.9 '' '' -1975-08-15 00:00 86.0 '' '' -1975-08-16 00:00 82.8 '' '' -1975-08-17 00:00 79.0 '' '' -1975-08-18 00:00 76.4 '' '' -1975-08-19 00:00 76.7 '' '' -1975-08-20 00:00 77.2 '' '' -1975-08-21 00:00 80.0 '' '' -1975-08-22 00:00 78.5 '' '' -1975-08-23 00:00 76.8 '' '' -1975-08-24 00:00 77.0 '' '' -1975-08-25 00:00 80.6 '' '' -1975-08-26 00:00 81.3 '' '' -1975-08-27 00:00 83.6 '' '' -1975-08-28 00:00 83.3 '' '' -1975-08-29 00:00 84.7 '' '' -1975-08-30 00:00 86.2 '' '' -1975-08-31 00:00 86.7 '' '' -1975-09-01 00:00 87.0 '' '' -1975-09-02 00:00 87.9 '' '' -1975-09-03 00:00 87.8 '' '' -1975-09-04 00:00 92.8 '' '' -1975-09-05 00:00 94.4 '' '' -1975-09-06 00:00 94.0 '' '' -1975-09-07 00:00 91.1 '' '' -1975-09-08 00:00 88.5 '' '' -1975-09-09 00:00 84.3 '' '' -1975-09-10 00:00 82.5 '' '' -1975-09-11 00:00 81.1 '' '' -1975-09-12 00:00 78.2 '' '' -1975-09-13 00:00 75.2 '' '' -1975-09-14 00:00 74.2 '' '' -1975-09-15 00:00 74.1 '' '' -1975-09-16 00:00 74.3 '' '' -1975-09-17 00:00 74.8 '' '' -1975-09-18 00:00 76.2 '' '' -1975-09-19 00:00 76.2 '' '' -1975-09-20 00:00 76.5 '' '' -1975-09-21 00:00 76.7 '' '' -1975-09-22 00:00 75.3 '' '' -1975-09-23 00:00 76.1 '' '' -1975-09-24 00:00 76.8 '' '' -1975-09-25 00:00 76.7 '' '' -1975-09-26 00:00 76.7 '' '' -1975-09-27 00:00 75.7 '' '' -1975-09-28 00:00 76.1 '' '' -1975-09-29 00:00 75.9 '' '' -1975-09-30 00:00 75.8 '' '' -1975-10-01 00:00 76.4 '' '' -1975-10-02 00:00 78.1 '' '' -1975-10-03 00:00 78.4 '' '' -1975-10-04 00:00 76.3 '' '' -1975-10-05 00:00 76.1 '' '' -1975-10-06 00:00 75.1 '' '' -1975-10-07 00:00 74.3 '' '' -1975-10-08 00:00 74.0 '' '' -1975-10-09 00:00 75.4 '' '' -1975-10-10 00:00 74.3 '' '' -1975-10-11 00:00 73.3 '' '' -1975-10-12 00:00 74.8 '' '' -1975-10-13 00:00 79.0 '' '' -1975-10-14 00:00 80.0 '' '' -1975-10-15 00:00 80.3 '' '' -1975-10-16 00:00 78.5 '' '' -1975-10-17 00:00 78.9 '' '' -1975-10-18 00:00 79.2 '' '' -1975-10-19 00:00 78.0 '' '' -1975-10-20 00:00 77.1 '' '' -1975-10-21 00:00 75.7 '' '' -1975-10-22 00:00 74.2 '' '' -1975-10-23 00:00 74.3 '' '' -1975-10-24 00:00 72.7 '' '' -1975-10-25 00:00 72.1 '' '' -1975-10-26 00:00 71.9 '' '' -1975-10-27 00:00 72.1 '' '' -1975-10-28 00:00 71.7 '' '' -1975-10-29 00:00 70.8 '' '' -1975-10-30 00:00 70.2 '' '' -1975-10-31 00:00 69.9 '' '' -1975-11-01 00:00 70.4 '' '' -1975-11-02 00:00 71.4 '' '' -1975-11-03 00:00 73.0 '' '' -1975-11-04 00:00 75.4 '' '' -1975-11-05 00:00 78.9 '' '' -1975-11-06 00:00 80.1 '' '' -1975-11-07 00:00 80.5 '' '' -1975-11-08 00:00 80.9 '' '' -1975-11-09 00:00 78.8 '' '' -1975-11-10 00:00 78.9 '' '' -1975-11-11 00:00 78.6 '' '' -1975-11-12 00:00 79.9 '' '' -1975-11-13 00:00 79.2 '' '' -1975-11-14 00:00 82.7 '' '' -1975-11-15 00:00 83.7 '' '' -1975-11-16 00:00 87.6 '' '' -1975-11-17 00:00 88.9 '' '' -1975-11-18 00:00 90.8 '' '' -1975-11-19 00:00 93.0 '' '' -1975-11-20 00:00 90.9 '' '' -1975-11-21 00:00 86.6 '' '' -1975-11-22 00:00 81.5 '' '' -1975-11-23 00:00 77.2 '' '' -1975-11-24 00:00 74.7 '' '' -1975-11-25 00:00 73.7 '' '' -1975-11-26 00:00 71.9 '' '' -1975-11-27 00:00 70.7 '' '' -1975-11-28 00:00 70.4 '' '' -1975-11-29 00:00 70.9 '' '' -1975-11-30 00:00 70.6 '' '' -1975-12-01 00:00 72.1 '' '' -1975-12-02 00:00 74.8 '' '' -1975-12-03 00:00 74.3 '' '' -1975-12-04 00:00 74.1 '' '' -1975-12-05 00:00 77.4 '' '' -1975-12-06 00:00 75.8 '' '' -1975-12-07 00:00 73.7 '' '' -1975-12-08 00:00 76.0 '' '' -1975-12-09 00:00 73.3 '' '' -1975-12-10 00:00 73.3 '' '' -1975-12-11 00:00 74.3 '' '' -1975-12-12 00:00 73.4 '' '' -1975-12-13 00:00 72.8 '' '' -1975-12-14 00:00 71.8 '' '' -1975-12-15 00:00 71.8 '' '' -1975-12-16 00:00 70.5 '' '' -1975-12-17 00:00 70.5 '' '' -1975-12-18 00:00 69.6 '' '' -1975-12-19 00:00 69.1 '' '' -1975-12-20 00:00 69.7 '' '' -1975-12-21 00:00 69.0 '' '' -1975-12-22 00:00 68.9 '' '' -1975-12-23 00:00 69.6 '' '' -1975-12-24 00:00 71.4 '' '' -1975-12-25 00:00 71.0 '' '' -1975-12-26 00:00 71.8 '' '' -1975-12-27 00:00 72.5 '' '' -1975-12-28 00:00 71.5 '' '' -1975-12-29 00:00 72.5 '' '' -1975-12-30 00:00 71.9 '' '' -1975-12-31 00:00 72.1 '' '' -1976-01-01 00:00 72.1 '' '' -1976-01-02 00:00 71.2 '' '' -1976-01-03 00:00 71.3 '' '' -1976-01-04 00:00 71.8 '' '' -1976-01-05 00:00 71.9 '' '' -1976-01-06 00:00 71.7 '' '' -1976-01-07 00:00 71.6 '' '' -1976-01-08 00:00 70.9 '' '' -1976-01-09 00:00 69.4 '' '' -1976-01-10 00:00 70.5 '' '' -1976-01-11 00:00 72.1 '' '' -1976-01-12 00:00 76.9 '' '' -1976-01-13 00:00 80.0 '' '' -1976-01-14 00:00 82.1 '' '' -1976-01-15 00:00 80.4 '' '' -1976-01-16 00:00 78.1 '' '' -1976-01-17 00:00 76.6 '' '' -1976-01-18 00:00 76.7 '' '' -1976-01-19 00:00 75.2 '' '' -1976-01-20 00:00 74.6 '' '' -1976-01-21 00:00 72.1 '' '' -1976-01-22 00:00 70.9 '' '' -1976-01-23 00:00 70.2 '' '' -1976-01-24 00:00 68.5 '' '' -1976-01-25 00:00 68.2 '' '' -1976-01-26 00:00 68.2 '' '' -1976-01-27 00:00 67.2 '' '' -1976-01-28 00:00 67.1 '' '' -1976-01-29 00:00 67.4 '' '' -1976-01-30 00:00 68.9 '' '' -1976-01-31 00:00 69.1 '' '' -1976-02-01 00:00 68.6 '' '' -1976-02-02 00:00 68.6 '' '' -1976-02-03 00:00 68.4 '' '' -1976-02-04 00:00 68.4 '' '' -1976-02-05 00:00 67.6 '' '' -1976-02-06 00:00 68.1 '' '' -1976-02-07 00:00 69.3 '' '' -1976-02-08 00:00 68.4 '' '' -1976-02-09 00:00 68.3 '' '' -1976-02-10 00:00 68.5 '' '' -1976-02-11 00:00 68.4 '' '' -1976-02-12 00:00 67.8 '' '' -1976-02-13 00:00 69.7 '' '' -1976-02-14 00:00 69.9 '' '' -1976-02-15 00:00 69.6 '' '' -1976-02-16 00:00 69.7 '' '' -1976-02-17 00:00 69.9 '' '' -1976-02-18 00:00 70.1 '' '' -1976-02-19 00:00 70.1 '' '' -1976-02-20 00:00 70.0 '' '' -1976-02-21 00:00 68.8 '' '' -1976-02-22 00:00 68.9 '' '' -1976-02-23 00:00 69.2 '' '' -1976-02-24 00:00 69.6 '' '' -1976-02-25 00:00 68.4 '' '' -1976-02-26 00:00 68.5 '' '' -1976-02-27 00:00 68.5 '' '' -1976-02-28 00:00 67.9 '' '' -1976-02-29 00:00 67.4 '' '' -1976-03-01 00:00 67.7 '' '' -1976-03-02 00:00 68.1 '' '' -1976-03-03 00:00 67.4 '' '' -1976-03-04 00:00 67.4 '' '' -1976-03-05 00:00 67.6 '' '' -1976-03-06 00:00 67.5 '' '' -1976-03-07 00:00 67.9 '' '' -1976-03-08 00:00 67.9 '' '' -1976-03-09 00:00 68.2 '' '' -1976-03-10 00:00 68.4 '' '' -1976-03-11 00:00 68.8 '' '' -1976-03-12 00:00 68.9 '' '' -1976-03-13 00:00 70.9 '' '' -1976-03-14 00:00 70.1 '' '' -1976-03-15 00:00 69.1 '' '' -1976-03-16 00:00 72.5 '' '' -1976-03-17 00:00 74.4 '' '' -1976-03-18 00:00 79.0 '' '' -1976-03-19 00:00 81.6 '' '' -1976-03-20 00:00 85.0 '' '' -1976-03-21 00:00 91.2 '' '' -1976-03-22 00:00 83.0 '' '' -1976-03-23 00:00 86.9 '' '' -1976-03-24 00:00 82.2 '' '' -1976-03-25 00:00 85.1 '' '' -1976-03-26 00:00 84.1 '' '' -1976-03-27 00:00 85.5 '' '' -1976-03-28 00:00 87.1 '' '' -1976-03-29 00:00 84.0 '' '' -1976-03-30 00:00 82.4 '' '' -1976-03-31 00:00 82.7 '' '' -1976-04-01 00:00 79.6 '' '' -1976-04-02 00:00 76.8 '' '' -1976-04-03 00:00 76.1 '' '' -1976-04-04 00:00 74.7 '' '' -1976-04-05 00:00 73.0 '' '' -1976-04-06 00:00 71.3 '' '' -1976-04-07 00:00 70.3 '' '' -1976-04-08 00:00 71.9 '' '' -1976-04-09 00:00 74.1 '' '' -1976-04-10 00:00 75.3 '' '' -1976-04-11 00:00 77.1 '' '' -1976-04-12 00:00 78.1 '' '' -1976-04-13 00:00 79.6 '' '' -1976-04-14 00:00 79.5 '' '' -1976-04-15 00:00 79.2 '' '' -1976-04-16 00:00 80.6 '' '' -1976-04-17 00:00 80.5 '' '' -1976-04-18 00:00 80.5 '' '' -1976-04-19 00:00 79.8 '' '' -1976-04-20 00:00 80.0 '' '' -1976-04-21 00:00 78.0 '' '' -1976-04-22 00:00 76.2 '' '' -1976-04-23 00:00 75.7 '' '' -1976-04-24 00:00 76.8 '' '' -1976-04-25 00:00 75.7 '' '' -1976-04-26 00:00 75.7 '' '' -1976-04-27 00:00 74.6 '' '' -1976-04-28 00:00 73.4 '' '' -1976-04-29 00:00 79.6 '' '' -1976-04-30 00:00 79.5 '' '' -1976-05-01 00:00 77.6 '' '' -1976-05-02 00:00 74.2 '' '' -1976-05-03 00:00 71.9 '' '' -1976-05-04 00:00 71.5 '' '' -1976-05-05 00:00 71.1 '' '' -1976-05-06 00:00 69.9 '' '' -1976-05-07 00:00 70.3 '' '' -1976-05-08 00:00 70.2 '' '' -1976-05-09 00:00 70.6 '' '' -1976-05-10 00:00 71.7 '' '' -1976-05-11 00:00 72.5 '' '' -1976-05-12 00:00 72.6 '' '' -1976-05-13 00:00 73.6 '' '' -1976-05-14 00:00 74.2 '' '' -1976-05-15 00:00 76.9 '' '' -1976-05-16 00:00 79.2 '' '' -1976-05-17 00:00 76.5 '' '' -1976-05-18 00:00 75.6 '' '' -1976-05-19 00:00 73.8 '' '' -1976-05-20 00:00 73.0 '' '' -1976-05-21 00:00 74.0 '' '' -1976-05-22 00:00 72.5 '' '' -1976-05-23 00:00 71.9 '' '' -1976-05-24 00:00 70.8 '' '' -1976-05-25 00:00 69.8 '' '' -1976-05-26 00:00 69.5 '' '' -1976-05-27 00:00 69.6 '' '' -1976-05-28 00:00 69.0 '' '' -1976-05-29 00:00 68.0 '' '' -1976-05-30 00:00 68.1 '' '' -1976-05-31 00:00 68.7 '' '' -1976-06-01 00:00 68.4 '' '' -1976-06-02 00:00 67.9 '' '' -1976-06-03 00:00 68.1 '' '' -1976-06-04 00:00 68.4 '' '' -1976-06-05 00:00 68.7 '' '' -1976-06-06 00:00 69.3 '' '' -1976-06-07 00:00 69.0 '' '' -1976-06-08 00:00 70.7 '' '' -1976-06-09 00:00 70.1 '' '' -1976-06-10 00:00 71.0 '' '' -1976-06-11 00:00 71.4 '' '' -1976-06-12 00:00 71.7 '' '' -1976-06-13 00:00 72.0 '' '' -1976-06-14 00:00 73.7 '' '' -1976-06-15 00:00 74.3 '' '' -1976-06-16 00:00 77.1 '' '' -1976-06-17 00:00 77.1 '' '' -1976-06-18 00:00 77.9 '' '' -1976-06-19 00:00 76.9 '' '' -1976-06-20 00:00 76.9 '' '' -1976-06-21 00:00 77.7 '' '' -1976-06-22 00:00 78.9 '' '' -1976-06-23 00:00 76.5 '' '' -1976-06-24 00:00 75.2 '' '' -1976-06-25 00:00 74.9 '' '' -1976-06-26 00:00 74.3 '' '' -1976-06-27 00:00 72.8 '' '' -1976-06-28 00:00 71.8 '' '' -1976-06-29 00:00 71.3 '' '' -1976-06-30 00:00 70.3 '' '' -1976-07-01 00:00 69.3 '' '' -1976-07-02 00:00 69.1 '' '' -1976-07-03 00:00 69.5 '' '' -1976-07-04 00:00 68.6 '' '' -1976-07-05 00:00 69.5 '' '' -1976-07-06 00:00 69.6 '' '' -1976-07-07 00:00 69.5 '' '' -1976-07-08 00:00 69.7 '' '' -1976-07-09 00:00 69.7 '' '' -1976-07-10 00:00 70.1 '' '' -1976-07-11 00:00 70.2 '' '' -1976-07-12 00:00 69.8 '' '' -1976-07-13 00:00 69.8 '' '' -1976-07-14 00:00 70.7 '' '' -1976-07-15 00:00 71.4 '' '' -1976-07-16 00:00 69.8 '' '' -1976-07-17 00:00 69.4 '' '' -1976-07-18 00:00 70.6 '' '' -1976-07-19 00:00 70.2 '' '' -1976-07-20 00:00 69.4 '' '' -1976-07-21 00:00 70.1 '' '' -1976-07-22 00:00 70.1 '' '' -1976-07-23 00:00 68.7 '' '' -1976-07-24 00:00 69.4 '' '' -1976-07-25 00:00 68.8 '' '' -1976-07-26 00:00 68.5 '' '' -1976-07-27 00:00 69.4 '' '' -1976-07-28 00:00 69.4 '' '' -1976-07-29 00:00 69.4 '' '' -1976-07-30 00:00 70.7 '' '' -1976-07-31 00:00 72.3 '' '' -1976-08-01 00:00 75.9 '' '' -1976-08-02 00:00 77.8 '' '' -1976-08-03 00:00 82.3 '' '' -1976-08-04 00:00 82.3 '' '' -1976-08-05 00:00 84.2 '' '' -1976-08-06 00:00 84.3 '' '' -1976-08-07 00:00 83.7 '' '' -1976-08-08 00:00 82.0 '' '' -1976-08-09 00:00 82.8 '' '' -1976-08-10 00:00 82.8 '' '' -1976-08-11 00:00 80.4 '' '' -1976-08-12 00:00 80.6 '' '' -1976-08-13 00:00 78.7 '' '' -1976-08-14 00:00 73.4 '' '' -1976-08-15 00:00 72.8 '' '' -1976-08-16 00:00 72.9 '' '' -1976-08-17 00:00 77.8 '' '' -1976-08-18 00:00 78.2 '' '' -1976-08-19 00:00 76.1 '' '' -1976-08-20 00:00 74.5 '' '' -1976-08-21 00:00 73.2 '' '' -1976-08-22 00:00 72.3 '' '' -1976-08-23 00:00 70.8 '' '' -1976-08-24 00:00 70.9 '' '' -1976-08-25 00:00 70.6 '' '' -1976-08-26 00:00 70.1 '' '' -1976-08-27 00:00 71.5 '' '' -1976-08-28 00:00 72.8 '' '' -1976-08-29 00:00 73.3 '' '' -1976-08-30 00:00 73.0 '' '' -1976-08-31 00:00 73.8 '' '' -1976-09-01 00:00 76.3 '' '' -1976-09-02 00:00 75.3 '' '' -1976-09-03 00:00 75.7 '' '' -1976-09-04 00:00 75.9 '' '' -1976-09-05 00:00 75.4 '' '' -1976-09-06 00:00 73.1 '' '' -1976-09-07 00:00 73.0 '' '' -1976-09-08 00:00 72.9 '' '' -1976-09-09 00:00 73.2 '' '' -1976-09-10 00:00 75.8 '' '' -1976-09-11 00:00 75.7 '' '' -1976-09-12 00:00 75.7 '' '' -1976-09-13 00:00 74.3 '' '' -1976-09-14 00:00 74.7 '' '' -1976-09-15 00:00 73.9 '' '' -1976-09-16 00:00 75.8 '' '' -1976-09-17 00:00 76.5 '' '' -1976-09-18 00:00 74.3 '' '' -1976-09-19 00:00 73.3 '' '' -1976-09-20 00:00 72.2 '' '' -1976-09-21 00:00 70.9 '' '' -1976-09-22 00:00 70.5 '' '' -1976-09-23 00:00 72.0 '' '' -1976-09-24 00:00 72.5 '' '' -1976-09-25 00:00 73.4 '' '' -1976-09-26 00:00 72.8 '' '' -1976-09-27 00:00 73.3 '' '' -1976-09-28 00:00 73.6 '' '' -1976-09-29 00:00 71.9 '' '' -1976-09-30 00:00 72.6 '' '' -1976-10-01 00:00 74.6 '' '' -1976-10-02 00:00 73.9 '' '' -1976-10-03 00:00 73.8 '' '' -1976-10-04 00:00 73.1 '' '' -1976-10-05 00:00 74.8 '' '' -1976-10-06 00:00 74.7 '' '' -1976-10-07 00:00 74.5 '' '' -1976-10-08 00:00 74.6 '' '' -1976-10-09 00:00 74.8 '' '' -1976-10-10 00:00 74.9 '' '' -1976-10-11 00:00 73.7 '' '' -1976-10-12 00:00 73.3 '' '' -1976-10-13 00:00 72.6 '' '' -1976-10-14 00:00 74.4 '' '' -1976-10-15 00:00 75.5 '' '' -1976-10-16 00:00 77.0 '' '' -1976-10-17 00:00 78.0 '' '' -1976-10-18 00:00 77.3 '' '' -1976-10-19 00:00 76.6 '' '' -1976-10-20 00:00 75.8 '' '' -1976-10-21 00:00 73.5 '' '' -1976-10-22 00:00 75.4 '' '' -1976-10-23 00:00 80.1 '' '' -1976-10-24 00:00 80.1 '' '' -1976-10-25 00:00 84.7 '' '' -1976-10-26 00:00 80.4 '' '' -1976-10-27 00:00 77.4 '' '' -1976-10-28 00:00 73.8 '' '' -1976-10-29 00:00 72.1 '' '' -1976-10-30 00:00 72.1 '' '' -1976-10-31 00:00 70.4 '' '' -1976-11-01 00:00 70.9 '' '' -1976-11-02 00:00 69.1 '' '' -1976-11-03 00:00 69.8 '' '' -1976-11-04 00:00 69.9 '' '' -1976-11-05 00:00 70.9 '' '' -1976-11-06 00:00 69.7 '' '' -1976-11-07 00:00 69.5 '' '' -1976-11-08 00:00 69.3 '' '' -1976-11-09 00:00 70.7 '' '' -1976-11-10 00:00 69.4 '' '' -1976-11-11 00:00 70.5 '' '' -1976-11-12 00:00 70.8 '' '' -1976-11-13 00:00 69.4 '' '' -1976-11-14 00:00 69.2 '' '' -1976-11-15 00:00 71.1 '' '' -1976-11-16 00:00 71.1 '' '' -1976-11-17 00:00 72.8 '' '' -1976-11-18 00:00 75.6 '' '' -1976-11-19 00:00 74.6 '' '' -1976-11-20 00:00 72.9 '' '' -1976-11-21 00:00 73.2 '' '' -1976-11-22 00:00 73.3 '' '' -1976-11-23 00:00 72.5 '' '' -1976-11-24 00:00 72.9 '' '' -1976-11-25 00:00 72.7 '' '' -1976-11-26 00:00 72.1 '' '' -1976-11-27 00:00 73.7 '' '' -1976-11-28 00:00 71.7 '' '' -1976-11-29 00:00 69.7 '' '' -1976-11-30 00:00 69.7 '' '' -1976-12-01 00:00 70.2 '' '' -1976-12-02 00:00 71.6 '' '' -1976-12-03 00:00 71.2 '' '' -1976-12-04 00:00 71.3 '' '' -1976-12-05 00:00 70.1 '' '' -1976-12-06 00:00 70.1 '' '' -1976-12-07 00:00 69.7 '' '' -1976-12-08 00:00 70.8 '' '' -1976-12-09 00:00 74.3 '' '' -1976-12-10 00:00 76.8 '' '' -1976-12-11 00:00 78.3 '' '' -1976-12-12 00:00 78.6 '' '' -1976-12-13 00:00 78.1 '' '' -1976-12-14 00:00 81.0 '' '' -1976-12-15 00:00 79.8 '' '' -1976-12-16 00:00 77.8 '' '' -1976-12-17 00:00 75.5 '' '' -1976-12-18 00:00 73.8 '' '' -1976-12-19 00:00 72.9 '' '' -1976-12-20 00:00 71.7 '' '' -1976-12-21 00:00 71.8 '' '' -1976-12-22 00:00 73.4 '' '' -1976-12-23 00:00 73.7 '' '' -1976-12-24 00:00 74.2 '' '' -1976-12-25 00:00 75.6 '' '' -1976-12-26 00:00 75.6 '' '' -1976-12-27 00:00 75.2 '' '' -1976-12-28 00:00 74.5 '' '' -1976-12-29 00:00 74.8 '' '' -1976-12-30 00:00 75.1 '' '' -1976-12-31 00:00 76.4 '' '' -1977-01-01 00:00 73.8 '' '' -1977-01-02 00:00 76.5 '' '' -1977-01-03 00:00 76.0 '' '' -1977-01-04 00:00 75.5 '' '' -1977-01-05 00:00 74.0 '' '' -1977-01-06 00:00 72.4 '' '' -1977-01-07 00:00 71.4 '' '' -1977-01-08 00:00 69.6 '' '' -1977-01-09 00:00 68.4 '' '' -1977-01-10 00:00 68.8 '' '' -1977-01-11 00:00 71.2 '' '' -1977-01-12 00:00 74.9 '' '' -1977-01-13 00:00 77.5 '' '' -1977-01-14 00:00 74.5 '' '' -1977-01-15 00:00 75.6 '' '' -1977-01-16 00:00 77.5 '' '' -1977-01-17 00:00 76.1 '' '' -1977-01-18 00:00 75.4 '' '' -1977-01-19 00:00 76.9 '' '' -1977-01-20 00:00 75.2 '' '' -1977-01-21 00:00 74.0 '' '' -1977-01-22 00:00 76.8 '' '' -1977-01-23 00:00 78.7 '' '' -1977-01-24 00:00 77.4 '' '' -1977-01-25 00:00 74.9 '' '' -1977-01-26 00:00 76.0 '' '' -1977-01-27 00:00 75.3 '' '' -1977-01-28 00:00 77.1 '' '' -1977-01-29 00:00 76.1 '' '' -1977-01-30 00:00 76.3 '' '' -1977-01-31 00:00 79.6 '' '' -1977-02-01 00:00 81.7 '' '' -1977-02-02 00:00 82.1 '' '' -1977-02-03 00:00 80.9 '' '' -1977-02-04 00:00 78.7 '' '' -1977-02-05 00:00 77.8 '' '' -1977-02-06 00:00 75.2 '' '' -1977-02-07 00:00 74.6 '' '' -1977-02-08 00:00 78.6 '' '' -1977-02-09 00:00 83.1 '' '' -1977-02-10 00:00 83.5 '' '' -1977-02-11 00:00 84.6 '' '' -1977-02-12 00:00 86.9 '' '' -1977-02-13 00:00 88.5 '' '' -1977-02-14 00:00 85.2 '' '' -1977-02-15 00:00 84.4 '' '' -1977-02-16 00:00 85.7 '' '' -1977-02-17 00:00 89.6 '' '' -1977-02-18 00:00 86.5 '' '' -1977-02-19 00:00 82.8 '' '' -1977-02-20 00:00 81.1 '' '' -1977-02-21 00:00 78.6 '' '' -1977-02-22 00:00 75.9 '' '' -1977-02-23 00:00 75.9 '' '' -1977-02-24 00:00 74.2 '' '' -1977-02-25 00:00 74.3 '' '' -1977-02-26 00:00 72.3 '' '' -1977-02-27 00:00 72.0 '' '' -1977-02-28 00:00 72.6 '' '' -1977-03-01 00:00 72.6 '' '' -1977-03-02 00:00 75.4 '' '' -1977-03-03 00:00 74.8 '' '' -1977-03-04 00:00 76.9 '' '' -1977-03-05 00:00 77.6 '' '' -1977-03-06 00:00 77.6 '' '' -1977-03-07 00:00 77.2 '' '' -1977-03-08 00:00 81.6 '' '' -1977-03-09 00:00 80.3 '' '' -1977-03-10 00:00 80.5 '' '' -1977-03-11 00:00 78.9 '' '' -1977-03-12 00:00 78.6 '' '' -1977-03-13 00:00 77.9 '' '' -1977-03-14 00:00 77.2 '' '' -1977-03-15 00:00 74.8 '' '' -1977-03-16 00:00 74.1 '' '' -1977-03-17 00:00 74.1 '' '' -1977-03-18 00:00 73.9 '' '' -1977-03-19 00:00 74.0 '' '' -1977-03-20 00:00 72.3 '' '' -1977-03-21 00:00 72.8 '' '' -1977-03-22 00:00 74.6 '' '' -1977-03-23 00:00 74.7 '' '' -1977-03-24 00:00 74.8 '' '' -1977-03-25 00:00 74.0 '' '' -1977-03-26 00:00 75.1 '' '' -1977-03-27 00:00 74.5 '' '' -1977-03-28 00:00 74.4 '' '' -1977-03-29 00:00 75.4 '' '' -1977-03-30 00:00 74.6 '' '' -1977-03-31 00:00 74.1 '' '' -1977-04-01 00:00 74.8 '' '' -1977-04-02 00:00 76.3 '' '' -1977-04-03 00:00 76.6 '' '' -1977-04-04 00:00 76.8 '' '' -1977-04-05 00:00 75.5 '' '' -1977-04-06 00:00 76.1 '' '' -1977-04-07 00:00 75.5 '' '' -1977-04-08 00:00 74.3 '' '' -1977-04-09 00:00 74.8 '' '' -1977-04-10 00:00 76.5 '' '' -1977-04-11 00:00 79.2 '' '' -1977-04-12 00:00 80.2 '' '' -1977-04-13 00:00 82.7 '' '' -1977-04-14 00:00 83.4 '' '' -1977-04-15 00:00 86.8 '' '' -1977-04-16 00:00 83.7 '' '' -1977-04-17 00:00 83.6 '' '' -1977-04-18 00:00 80.8 '' '' -1977-04-19 00:00 79.8 '' '' -1977-04-20 00:00 80.4 '' '' -1977-04-21 00:00 80.8 '' '' -1977-04-22 00:00 80.1 '' '' -1977-04-23 00:00 77.5 '' '' -1977-04-24 00:00 76.5 '' '' -1977-04-25 00:00 76.4 '' '' -1977-04-26 00:00 75.4 '' '' -1977-04-27 00:00 74.9 '' '' -1977-04-28 00:00 74.2 '' '' -1977-04-29 00:00 74.8 '' '' -1977-04-30 00:00 76.6 '' '' -1977-05-01 00:00 77.2 '' '' -1977-05-02 00:00 78.5 '' '' -1977-05-03 00:00 81.9 '' '' -1977-05-04 00:00 81.4 '' '' -1977-05-05 00:00 79.6 '' '' -1977-05-06 00:00 78.5 '' '' -1977-05-07 00:00 77.1 '' '' -1977-05-08 00:00 77.9 '' '' -1977-05-09 00:00 83.6 '' '' -1977-05-10 00:00 80.8 '' '' -1977-05-11 00:00 80.8 '' '' -1977-05-12 00:00 79.7 '' '' -1977-05-13 00:00 81.5 '' '' -1977-05-14 00:00 84.8 '' '' -1977-05-15 00:00 85.0 '' '' -1977-05-16 00:00 85.1 '' '' -1977-05-17 00:00 84.1 '' '' -1977-05-18 00:00 82.9 '' '' -1977-05-19 00:00 82.1 '' '' -1977-05-20 00:00 81.3 '' '' -1977-05-21 00:00 81.4 '' '' -1977-05-22 00:00 82.9 '' '' -1977-05-23 00:00 82.4 '' '' -1977-05-24 00:00 79.2 '' '' -1977-05-25 00:00 77.4 '' '' -1977-05-26 00:00 76.8 '' '' -1977-05-27 00:00 77.9 '' '' -1977-05-28 00:00 79.1 '' '' -1977-05-29 00:00 81.7 '' '' -1977-05-30 00:00 89.9 '' '' -1977-05-31 00:00 92.0 '' '' -1977-06-01 00:00 88.9 '' '' -1977-06-02 00:00 90.9 '' '' -1977-06-03 00:00 93.0 '' '' -1977-06-04 00:00 94.2 '' '' -1977-06-05 00:00 90.2 '' '' -1977-06-06 00:00 90.6 '' '' -1977-06-07 00:00 92.0 '' '' -1977-06-08 00:00 91.9 '' '' -1977-06-09 00:00 90.9 '' '' -1977-06-10 00:00 89.2 '' '' -1977-06-11 00:00 87.2 '' '' -1977-06-12 00:00 83.3 '' '' -1977-06-13 00:00 84.2 '' '' -1977-06-14 00:00 82.3 '' '' -1977-06-15 00:00 82.3 '' '' -1977-06-16 00:00 81.4 '' '' -1977-06-17 00:00 82.4 '' '' -1977-06-18 00:00 84.3 '' '' -1977-06-19 00:00 85.2 '' '' -1977-06-20 00:00 88.9 '' '' -1977-06-21 00:00 92.4 '' '' -1977-06-22 00:00 98.8 '' '' -1977-06-23 00:00 99.4 '' '' -1977-06-24 00:00 107.4 '' '' -1977-06-25 00:00 113.8 '' '' -1977-06-26 00:00 120.7 '' '' -1977-06-27 00:00 115.9 '' '' -1977-06-28 00:00 113.4 '' '' -1977-06-29 00:00 111.9 '' '' -1977-06-30 00:00 106.9 '' '' -1977-07-01 00:00 102.0 '' '' -1977-07-02 00:00 100.7 '' '' -1977-07-03 00:00 97.4 '' '' -1977-07-04 00:00 94.0 '' '' -1977-07-05 00:00 88.0 '' '' -1977-07-06 00:00 90.2 '' '' -1977-07-07 00:00 85.2 '' '' -1977-07-08 00:00 82.1 '' '' -1977-07-09 00:00 79.0 '' '' -1977-07-10 00:00 76.9 '' '' -1977-07-11 00:00 76.2 '' '' -1977-07-12 00:00 75.8 '' '' -1977-07-13 00:00 77.8 '' '' -1977-07-14 00:00 76.8 '' '' -1977-07-15 00:00 76.0 '' '' -1977-07-16 00:00 76.9 '' '' -1977-07-17 00:00 76.5 '' '' -1977-07-18 00:00 76.9 '' '' -1977-07-19 00:00 76.9 '' '' -1977-07-20 00:00 80.1 '' '' -1977-07-21 00:00 81.7 '' '' -1977-07-22 00:00 83.1 '' '' -1977-07-23 00:00 85.0 '' '' -1977-07-24 00:00 84.0 '' '' -1977-07-25 00:00 86.0 '' '' -1977-07-26 00:00 86.0 '' '' -1977-07-27 00:00 85.4 '' '' -1977-07-28 00:00 87.5 '' '' -1977-07-29 00:00 86.7 '' '' -1977-07-30 00:00 84.1 '' '' -1977-07-31 00:00 80.4 '' '' -1977-08-01 00:00 83.0 '' '' -1977-08-02 00:00 82.8 '' '' -1977-08-03 00:00 82.3 '' '' -1977-08-04 00:00 82.9 '' '' -1977-08-05 00:00 86.4 '' '' -1977-08-06 00:00 88.2 '' '' -1977-08-07 00:00 86.9 '' '' -1977-08-08 00:00 85.1 '' '' -1977-08-09 00:00 85.9 '' '' -1977-08-10 00:00 87.2 '' '' -1977-08-11 00:00 87.6 '' '' -1977-08-12 00:00 86.5 '' '' -1977-08-13 00:00 89.0 '' '' -1977-08-14 00:00 87.5 '' '' -1977-08-15 00:00 86.9 '' '' -1977-08-16 00:00 87.3 '' '' -1977-08-17 00:00 87.1 '' '' -1977-08-18 00:00 88.6 '' '' -1977-08-19 00:00 87.0 '' '' -1977-08-20 00:00 88.7 '' '' -1977-08-21 00:00 90.8 '' '' -1977-08-22 00:00 89.6 '' '' -1977-08-23 00:00 86.0 '' '' -1977-08-24 00:00 86.0 '' '' -1977-08-25 00:00 87.7 '' '' -1977-08-26 00:00 86.4 '' '' -1977-08-27 00:00 85.4 '' '' -1977-08-28 00:00 82.4 '' '' -1977-08-29 00:00 86.1 '' '' -1977-08-30 00:00 85.5 '' '' -1977-08-31 00:00 84.7 '' '' -1977-09-01 00:00 83.1 '' '' -1977-09-02 00:00 84.2 '' '' -1977-09-03 00:00 87.2 '' '' -1977-09-04 00:00 84.2 '' '' -1977-09-05 00:00 85.6 '' '' -1977-09-06 00:00 84.9 '' '' -1977-09-07 00:00 89.3 '' '' -1977-09-08 00:00 91.6 '' '' -1977-09-09 00:00 95.9 '' '' -1977-09-10 00:00 99.8 '' '' -1977-09-11 00:00 104.6 '' '' -1977-09-12 00:00 107.8 '' '' -1977-09-13 00:00 112.9 '' '' -1977-09-14 00:00 118.2 '' '' -1977-09-15 00:00 120.7 '' '' -1977-09-16 00:00 120.4 '' '' -1977-09-17 00:00 120.6 '' '' -1977-09-18 00:00 120.5 '' '' -1977-09-19 00:00 104.5 '' '' -1977-09-20 00:00 108.8 '' '' -1977-09-21 00:00 104.9 '' '' -1977-09-22 00:00 102.4 '' '' -1977-09-23 00:00 99.3 '' '' -1977-09-24 00:00 100.6 '' '' -1977-09-25 00:00 98.8 '' '' -1977-09-26 00:00 99.4 '' '' -1977-09-27 00:00 100.0 '' '' -1977-09-28 00:00 100.0 '' '' -1977-09-29 00:00 99.4 '' '' -1977-09-30 00:00 97.7 '' '' -1977-10-01 00:00 93.8 '' '' -1977-10-02 00:00 93.2 '' '' -1977-10-03 00:00 97.4 '' '' -1977-10-04 00:00 98.8 '' '' -1977-10-05 00:00 104.0 '' '' -1977-10-06 00:00 103.5 '' '' -1977-10-07 00:00 105.5 '' '' -1977-10-08 00:00 103.8 '' '' -1977-10-09 00:00 100.7 '' '' -1977-10-10 00:00 96.4 '' '' -1977-10-11 00:00 95.3 '' '' -1977-10-12 00:00 100.8 '' '' -1977-10-13 00:00 98.5 '' '' -1977-10-14 00:00 98.9 '' '' -1977-10-15 00:00 98.2 '' '' -1977-10-16 00:00 96.8 '' '' -1977-10-17 00:00 94.9 '' '' -1977-10-18 00:00 95.4 '' '' -1977-10-19 00:00 105.0 '' '' -1977-10-20 00:00 99.6 '' '' -1977-10-21 00:00 98.6 '' '' -1977-10-22 00:00 93.9 '' '' -1977-10-23 00:00 87.3 '' '' -1977-10-24 00:00 88.3 '' '' -1977-10-25 00:00 88.1 '' '' -1977-10-26 00:00 88.6 '' '' -1977-10-27 00:00 88.5 '' '' -1977-10-28 00:00 90.3 '' '' -1977-10-29 00:00 90.3 '' '' -1977-10-30 00:00 94.9 '' '' -1977-10-31 00:00 95.9 '' '' -1977-11-01 00:00 94.4 '' '' -1977-11-02 00:00 93.6 '' '' -1977-11-03 00:00 90.4 '' '' -1977-11-04 00:00 89.4 '' '' -1977-11-05 00:00 90.6 '' '' -1977-11-06 00:00 91.1 '' '' -1977-11-07 00:00 90.2 '' '' -1977-11-08 00:00 90.3 '' '' -1977-11-09 00:00 91.1 '' '' -1977-11-10 00:00 93.1 '' '' -1977-11-11 00:00 94.9 '' '' -1977-11-12 00:00 91.4 '' '' -1977-11-13 00:00 94.0 '' '' -1977-11-14 00:00 97.9 '' '' -1977-11-15 00:00 97.9 '' '' -1977-11-16 00:00 95.9 '' '' -1977-11-17 00:00 100.4 '' '' -1977-11-18 00:00 102.0 '' '' -1977-11-19 00:00 99.2 '' '' -1977-11-20 00:00 95.7 '' '' -1977-11-21 00:00 92.8 '' '' -1977-11-22 00:00 89.3 '' '' -1977-11-23 00:00 88.0 '' '' -1977-11-24 00:00 86.7 '' '' -1977-11-25 00:00 84.7 '' '' -1977-11-26 00:00 84.1 '' '' -1977-11-27 00:00 83.8 '' '' -1977-11-28 00:00 85.6 '' '' -1977-11-29 00:00 85.6 '' '' -1977-11-30 00:00 85.3 '' '' -1977-12-01 00:00 88.4 '' '' -1977-12-02 00:00 91.2 '' '' -1977-12-03 00:00 93.7 '' '' -1977-12-04 00:00 95.9 '' '' -1977-12-05 00:00 96.9 '' '' -1977-12-06 00:00 102.0 '' '' -1977-12-07 00:00 105.5 '' '' -1977-12-08 00:00 106.7 '' '' -1977-12-09 00:00 112.6 '' '' -1977-12-10 00:00 114.7 '' '' -1977-12-11 00:00 107.4 '' '' -1977-12-12 00:00 111.0 '' '' -1977-12-13 00:00 100.6 '' '' -1977-12-14 00:00 93.7 '' '' -1977-12-15 00:00 92.5 '' '' -1977-12-16 00:00 92.5 '' '' -1977-12-17 00:00 91.1 '' '' -1977-12-18 00:00 93.6 '' '' -1977-12-19 00:00 91.0 '' '' -1977-12-20 00:00 88.7 '' '' -1977-12-21 00:00 87.8 '' '' -1977-12-22 00:00 89.9 '' '' -1977-12-23 00:00 91.2 '' '' -1977-12-24 00:00 93.9 '' '' -1977-12-25 00:00 96.3 '' '' -1977-12-26 00:00 99.3 '' '' -1977-12-27 00:00 98.3 '' '' -1977-12-28 00:00 98.9 '' '' -1977-12-29 00:00 105.6 '' '' -1977-12-30 00:00 114.7 '' '' -1977-12-31 00:00 120.2 '' '' -1978-01-01 00:00 126.9 '' '' -1978-01-02 00:00 133.9 '' '' -1978-01-03 00:00 130.2 '' '' -1978-01-04 00:00 124.8 '' '' -1978-01-05 00:00 119.2 '' '' -1978-01-06 00:00 118.7 '' '' -1978-01-07 00:00 111.6 '' '' -1978-01-08 00:00 102.8 '' '' -1978-01-09 00:00 97.0 '' '' -1978-01-10 00:00 93.5 '' '' -1978-01-11 00:00 93.1 '' '' -1978-01-12 00:00 92.1 '' '' -1978-01-13 00:00 90.3 '' '' -1978-01-14 00:00 88.6 '' '' -1978-01-15 00:00 89.6 '' '' -1978-01-16 00:00 86.4 '' '' -1978-01-17 00:00 83.8 '' '' -1978-01-18 00:00 84.7 '' '' -1978-01-19 00:00 85.4 '' '' -1978-01-20 00:00 87.0 '' '' -1978-01-21 00:00 91.4 '' '' -1978-01-22 00:00 96.9 '' '' -1978-01-23 00:00 99.6 '' '' -1978-01-24 00:00 100.4 '' '' -1978-01-25 00:00 103.3 '' '' -1978-01-26 00:00 112.7 '' '' -1978-01-27 00:00 116.4 '' '' -1978-01-28 00:00 127.7 '' '' -1978-01-29 00:00 132.2 '' '' -1978-01-30 00:00 134.9 '' '' -1978-01-31 00:00 133.3 '' '' -1978-02-01 00:00 139.1 '' '' -1978-02-02 00:00 152.6 '' '' -1978-02-03 00:00 156.6 '' '' -1978-02-04 00:00 154.0 '' '' -1978-02-05 00:00 159.0 '' '' -1978-02-06 00:00 156.1 '' '' -1978-02-07 00:00 157.3 '' '' -1978-02-08 00:00 157.0 '' '' -1978-02-09 00:00 155.2 '' '' -1978-02-10 00:00 148.7 '' '' -1978-02-11 00:00 154.2 '' '' -1978-02-12 00:00 159.0 '' '' -1978-02-13 00:00 151.2 '' '' -1978-02-14 00:00 148.4 '' '' -1978-02-15 00:00 136.8 '' '' -1978-02-16 00:00 130.2 '' '' -1978-02-17 00:00 125.9 '' '' -1978-02-18 00:00 124.9 '' '' -1978-02-19 00:00 119.1 '' '' -1978-02-20 00:00 122.2 '' '' -1978-02-21 00:00 122.2 '' '' -1978-02-22 00:00 127.7 '' '' -1978-02-23 00:00 131.8 '' '' -1978-02-24 00:00 135.6 '' '' -1978-02-25 00:00 139.3 '' '' -1978-02-26 00:00 134.8 '' '' -1978-02-27 00:00 137.5 '' '' -1978-02-28 00:00 135.4 '' '' -1978-03-01 00:00 136.3 '' '' -1978-03-02 00:00 141.1 '' '' -1978-03-03 00:00 146.6 '' '' -1978-03-04 00:00 148.4 '' '' -1978-03-05 00:00 154.5 '' '' -1978-03-06 00:00 162.8 '' '' -1978-03-07 00:00 165.2 '' '' -1978-03-08 00:00 168.7 '' '' -1978-03-09 00:00 183.7 '' '' -1978-03-10 00:00 179.1 '' '' -1978-03-11 00:00 175.2 '' '' -1978-03-12 00:00 169.8 '' '' -1978-03-13 00:00 160.9 '' '' -1978-03-14 00:00 160.5 '' '' -1978-03-15 00:00 154.2 '' '' -1978-03-16 00:00 143.3 '' '' -1978-03-17 00:00 135.4 '' '' -1978-03-18 00:00 132.3 '' '' -1978-03-19 00:00 128.1 '' '' -1978-03-20 00:00 125.3 '' '' -1978-03-21 00:00 118.2 '' '' -1978-03-22 00:00 117.0 '' '' -1978-03-23 00:00 116.4 '' '' -1978-03-24 00:00 117.5 '' '' -1978-03-25 00:00 118.2 '' '' -1978-03-26 00:00 112.5 '' '' -1978-03-27 00:00 114.1 '' '' -1978-03-28 00:00 112.7 '' '' -1978-03-29 00:00 111.1 '' '' -1978-03-30 00:00 115.4 '' '' -1978-03-31 00:00 124.5 '' '' -1978-04-01 00:00 130.0 '' '' -1978-04-02 00:00 129.8 '' '' -1978-04-03 00:00 134.5 '' '' -1978-04-04 00:00 143.3 '' '' -1978-04-05 00:00 146.7 '' '' -1978-04-06 00:00 145.3 '' '' -1978-04-07 00:00 146.9 '' '' -1978-04-08 00:00 148.6 '' '' -1978-04-09 00:00 156.1 '' '' -1978-04-10 00:00 155.4 '' '' -1978-04-11 00:00 162.8 '' '' -1978-04-12 00:00 156.2 '' '' -1978-04-13 00:00 145.6 '' '' -1978-04-14 00:00 139.1 '' '' -1978-04-15 00:00 141.4 '' '' -1978-04-16 00:00 137.6 '' '' -1978-04-17 00:00 133.4 '' '' -1978-04-18 00:00 134.1 '' '' -1978-04-19 00:00 139.5 '' '' -1978-04-20 00:00 138.1 '' '' -1978-04-21 00:00 138.4 '' '' -1978-04-22 00:00 146.4 '' '' -1978-04-23 00:00 162.9 '' '' -1978-04-24 00:00 159.8 '' '' -1978-04-25 00:00 159.1 '' '' -1978-04-26 00:00 166.7 '' '' -1978-04-27 00:00 172.8 '' '' -1978-04-28 00:00 176.6 '' '' -1978-04-29 00:00 185.2 '' '' -1978-04-30 00:00 182.1 '' '' -1978-05-01 00:00 181.4 '' '' -1978-05-02 00:00 183.0 '' '' -1978-05-03 00:00 182.2 '' '' -1978-05-04 00:00 178.4 '' '' -1978-05-05 00:00 173.9 '' '' -1978-05-06 00:00 173.1 '' '' -1978-05-07 00:00 162.6 '' '' -1978-05-08 00:00 143.4 '' '' -1978-05-09 00:00 135.1 '' '' -1978-05-10 00:00 129.5 '' '' -1978-05-11 00:00 133.8 '' '' -1978-05-12 00:00 138.2 '' '' -1978-05-13 00:00 140.2 '' '' -1978-05-14 00:00 143.7 '' '' -1978-05-15 00:00 146.1 '' '' -1978-05-16 00:00 147.8 '' '' -1978-05-17 00:00 143.8 '' '' -1978-05-18 00:00 135.6 '' '' -1978-05-19 00:00 133.6 '' '' -1978-05-20 00:00 132.3 '' '' -1978-05-21 00:00 132.7 '' '' -1978-05-22 00:00 135.7 '' '' -1978-05-23 00:00 142.9 '' '' -1978-05-24 00:00 146.5 '' '' -1978-05-25 00:00 147.6 '' '' -1978-05-26 00:00 152.8 '' '' -1978-05-27 00:00 150.6 '' '' -1978-05-28 00:00 147.1 '' '' -1978-05-29 00:00 148.6 '' '' -1978-05-30 00:00 147.2 '' '' -1978-05-31 00:00 152.6 '' '' -1978-06-01 00:00 149.1 '' '' -1978-06-02 00:00 147.0 '' '' -1978-06-03 00:00 130.8 '' '' -1978-06-04 00:00 118.6 '' '' -1978-06-05 00:00 116.9 '' '' -1978-06-06 00:00 109.8 '' '' -1978-06-07 00:00 110.6 '' '' -1978-06-08 00:00 109.3 '' '' -1978-06-09 00:00 106.5 '' '' -1978-06-10 00:00 108.4 '' '' -1978-06-11 00:00 113.2 '' '' -1978-06-12 00:00 116.4 '' '' -1978-06-13 00:00 120.3 '' '' -1978-06-14 00:00 126.4 '' '' -1978-06-15 00:00 132.5 '' '' -1978-06-16 00:00 139.5 '' '' -1978-06-17 00:00 149.0 '' '' -1978-06-18 00:00 153.5 '' '' -1978-06-19 00:00 162.0 '' '' -1978-06-20 00:00 174.2 '' '' -1978-06-21 00:00 185.4 '' '' -1978-06-22 00:00 190.3 '' '' -1978-06-23 00:00 196.7 '' '' -1978-06-24 00:00 194.8 '' '' -1978-06-25 00:00 183.5 '' '' -1978-06-26 00:00 182.4 '' '' -1978-06-27 00:00 179.5 '' '' -1978-06-28 00:00 174.1 '' '' -1978-06-29 00:00 167.4 '' '' -1978-06-30 00:00 154.6 '' '' -1978-07-01 00:00 142.9 '' '' -1978-07-02 00:00 127.6 '' '' -1978-07-03 00:00 116.5 '' '' -1978-07-04 00:00 117.4 '' '' -1978-07-05 00:00 118.9 '' '' -1978-07-06 00:00 119.3 '' '' -1978-07-07 00:00 128.9 '' '' -1978-07-08 00:00 135.9 '' '' -1978-07-09 00:00 147.1 '' '' -1978-07-10 00:00 156.0 '' '' -1978-07-11 00:00 163.2 '' '' -1978-07-12 00:00 174.2 '' '' -1978-07-13 00:00 165.5 '' '' -1978-07-14 00:00 163.1 '' '' -1978-07-15 00:00 169.5 '' '' -1978-07-16 00:00 163.4 '' '' -1978-07-17 00:00 159.5 '' '' -1978-07-18 00:00 154.1 '' '' -1978-07-19 00:00 148.6 '' '' -1978-07-20 00:00 142.9 '' '' -1978-07-21 00:00 140.2 '' '' -1978-07-22 00:00 127.0 '' '' -1978-07-23 00:00 123.4 '' '' -1978-07-24 00:00 118.5 '' '' -1978-07-25 00:00 113.7 '' '' -1978-07-26 00:00 112.2 '' '' -1978-07-27 00:00 110.8 '' '' -1978-07-28 00:00 109.9 '' '' -1978-07-29 00:00 109.2 '' '' -1978-07-30 00:00 109.2 '' '' -1978-07-31 00:00 108.8 '' '' -1978-08-01 00:00 106.0 '' '' -1978-08-02 00:00 106.0 '' '' -1978-08-03 00:00 109.6 '' '' -1978-08-04 00:00 112.3 '' '' -1978-08-05 00:00 117.6 '' '' -1978-08-06 00:00 122.6 '' '' -1978-08-07 00:00 128.2 '' '' -1978-08-08 00:00 130.6 '' '' -1978-08-09 00:00 128.1 '' '' -1978-08-10 00:00 127.5 '' '' -1978-08-11 00:00 121.7 '' '' -1978-08-12 00:00 124.5 '' '' -1978-08-13 00:00 134.9 '' '' -1978-08-14 00:00 132.7 '' '' -1978-08-15 00:00 130.0 '' '' -1978-08-16 00:00 123.6 '' '' -1978-08-17 00:00 119.3 '' '' -1978-08-18 00:00 115.6 '' '' -1978-08-19 00:00 111.6 '' '' -1978-08-20 00:00 107.5 '' '' -1978-08-21 00:00 104.8 '' '' -1978-08-22 00:00 106.0 '' '' -1978-08-23 00:00 104.1 '' '' -1978-08-24 00:00 105.4 '' '' -1978-08-25 00:00 104.2 '' '' -1978-08-26 00:00 100.7 '' '' -1978-08-27 00:00 107.3 '' '' -1978-08-28 00:00 107.7 '' '' -1978-08-29 00:00 116.2 '' '' -1978-08-30 00:00 124.1 '' '' -1978-08-31 00:00 133.9 '' '' -1978-09-01 00:00 159.8 '' '' -1978-09-02 00:00 171.7 '' '' -1978-09-03 00:00 167.0 '' '' -1978-09-04 00:00 174.4 '' '' -1978-09-05 00:00 179.4 '' '' -1978-09-06 00:00 181.1 '' '' -1978-09-07 00:00 177.5 '' '' -1978-09-08 00:00 167.1 '' '' -1978-09-09 00:00 157.6 '' '' -1978-09-10 00:00 149.8 '' '' -1978-09-11 00:00 141.5 '' '' -1978-09-12 00:00 138.5 '' '' -1978-09-13 00:00 138.0 '' '' -1978-09-14 00:00 143.5 '' '' -1978-09-15 00:00 152.6 '' '' -1978-09-16 00:00 161.5 '' '' -1978-09-17 00:00 161.8 '' '' -1978-09-18 00:00 169.3 '' '' -1978-09-19 00:00 168.8 '' '' -1978-09-20 00:00 168.6 '' '' -1978-09-21 00:00 172.5 '' '' -1978-09-22 00:00 171.5 '' '' -1978-09-23 00:00 165.5 '' '' -1978-09-24 00:00 158.9 '' '' -1978-09-25 00:00 157.2 '' '' -1978-09-26 00:00 148.5 '' '' -1978-09-27 00:00 146.2 '' '' -1978-09-28 00:00 147.8 '' '' -1978-09-29 00:00 148.1 '' '' -1978-09-30 00:00 142.6 '' '' -1978-10-01 00:00 139.0 '' '' -1978-10-02 00:00 137.8 '' '' -1978-10-03 00:00 131.7 '' '' -1978-10-04 00:00 132.0 '' '' -1978-10-05 00:00 138.7 '' '' -1978-10-06 00:00 137.4 '' '' -1978-10-07 00:00 141.6 '' '' -1978-10-08 00:00 150.1 '' '' -1978-10-09 00:00 155.8 '' '' -1978-10-10 00:00 162.3 '' '' -1978-10-11 00:00 171.6 '' '' -1978-10-12 00:00 177.2 '' '' -1978-10-13 00:00 178.5 '' '' -1978-10-14 00:00 180.1 '' '' -1978-10-15 00:00 182.0 '' '' -1978-10-16 00:00 176.7 '' '' -1978-10-17 00:00 171.5 '' '' -1978-10-18 00:00 169.4 '' '' -1978-10-19 00:00 170.4 '' '' -1978-10-20 00:00 171.0 '' '' -1978-10-21 00:00 166.9 '' '' -1978-10-22 00:00 161.4 '' '' -1978-10-23 00:00 161.4 '' '' -1978-10-24 00:00 156.9 '' '' -1978-10-25 00:00 156.1 '' '' -1978-10-26 00:00 154.4 '' '' -1978-10-27 00:00 150.7 '' '' -1978-10-28 00:00 148.4 '' '' -1978-10-29 00:00 149.8 '' '' -1978-10-30 00:00 146.5 '' '' -1978-10-31 00:00 144.0 '' '' -1978-11-01 00:00 152.0 '' '' -1978-11-02 00:00 159.0 '' '' -1978-11-03 00:00 169.9 '' '' -1978-11-04 00:00 177.4 '' '' -1978-11-05 00:00 181.2 '' '' -1978-11-06 00:00 172.2 '' '' -1978-11-07 00:00 174.6 '' '' -1978-11-08 00:00 168.0 '' '' -1978-11-09 00:00 164.9 '' '' -1978-11-10 00:00 166.3 '' '' -1978-11-11 00:00 163.7 '' '' -1978-11-12 00:00 150.4 '' '' -1978-11-13 00:00 145.3 '' '' -1978-11-14 00:00 136.3 '' '' -1978-11-15 00:00 133.8 '' '' -1978-11-16 00:00 128.8 '' '' -1978-11-17 00:00 128.1 '' '' -1978-11-18 00:00 127.4 '' '' -1978-11-19 00:00 128.9 '' '' -1978-11-20 00:00 134.9 '' '' -1978-11-21 00:00 126.0 '' '' -1978-11-22 00:00 127.1 '' '' -1978-11-23 00:00 121.9 '' '' -1978-11-24 00:00 123.5 '' '' -1978-11-25 00:00 124.7 '' '' -1978-11-26 00:00 132.7 '' '' -1978-11-27 00:00 144.4 '' '' -1978-11-28 00:00 154.1 '' '' -1978-11-29 00:00 162.2 '' '' -1978-11-30 00:00 167.8 '' '' -1978-12-01 00:00 166.6 '' '' -1978-12-02 00:00 167.6 '' '' -1978-12-03 00:00 164.2 '' '' -1978-12-04 00:00 165.3 '' '' -1978-12-05 00:00 169.5 '' '' -1978-12-06 00:00 164.5 '' '' -1978-12-07 00:00 178.5 '' '' -1978-12-08 00:00 189.9 '' '' -1978-12-09 00:00 189.6 '' '' -1978-12-10 00:00 204.7 '' '' -1978-12-11 00:00 210.5 '' '' -1978-12-12 00:00 217.3 '' '' -1978-12-13 00:00 210.6 '' '' -1978-12-14 00:00 197.0 '' '' -1978-12-15 00:00 192.7 '' '' -1978-12-16 00:00 180.5 '' '' -1978-12-17 00:00 177.7 '' '' -1978-12-18 00:00 161.5 '' '' -1978-12-19 00:00 152.9 '' '' -1978-12-20 00:00 138.1 '' '' -1978-12-21 00:00 132.1 '' '' -1978-12-22 00:00 132.7 '' '' -1978-12-23 00:00 133.4 '' '' -1978-12-24 00:00 135.2 '' '' -1978-12-25 00:00 138.0 '' '' -1978-12-26 00:00 144.2 '' '' -1978-12-27 00:00 148.7 '' '' -1978-12-28 00:00 164.1 '' '' -1978-12-29 00:00 166.2 '' '' -1978-12-30 00:00 181.7 '' '' -1978-12-31 00:00 195.1 '' '' -1979-01-01 00:00 194.1 '' '' -1979-01-02 00:00 200.1 '' '' -1979-01-03 00:00 203.5 '' '' -1979-01-04 00:00 192.7 '' '' -1979-01-05 00:00 194.9 '' '' -1979-01-06 00:00 190.9 '' '' -1979-01-07 00:00 186.2 '' '' -1979-01-08 00:00 200.1 '' '' -1979-01-09 00:00 192.6 '' '' -1979-01-10 00:00 186.2 '' '' -1979-01-11 00:00 179.5 '' '' -1979-01-12 00:00 174.5 '' '' -1979-01-13 00:00 193.9 '' '' -1979-01-14 00:00 200.0 '' '' -1979-01-15 00:00 192.1 '' '' -1979-01-16 00:00 189.9 '' '' -1979-01-17 00:00 175.7 '' '' -1979-01-18 00:00 177.6 '' '' -1979-01-19 00:00 187.8 '' '' -1979-01-20 00:00 197.2 '' '' -1979-01-21 00:00 210.3 '' '' -1979-01-22 00:00 226.9 '' '' -1979-01-23 00:00 225.1 '' '' -1979-01-24 00:00 208.5 '' '' -1979-01-25 00:00 206.1 '' '' -1979-01-26 00:00 192.9 '' '' -1979-01-27 00:00 205.4 '' '' -1979-01-28 00:00 209.6 '' '' -1979-01-29 00:00 209.3 '' '' -1979-01-30 00:00 194.1 '' '' -1979-01-31 00:00 193.7 '' '' -1979-02-01 00:00 185.8 '' '' -1979-02-02 00:00 185.6 '' '' -1979-02-03 00:00 187.4 '' '' -1979-02-04 00:00 187.7 '' '' -1979-02-05 00:00 197.4 '' '' -1979-02-06 00:00 206.5 '' '' -1979-02-07 00:00 203.4 '' '' -1979-02-08 00:00 207.2 '' '' -1979-02-09 00:00 198.7 '' '' -1979-02-10 00:00 198.4 '' '' -1979-02-11 00:00 202.2 '' '' -1979-02-12 00:00 195.4 '' '' -1979-02-13 00:00 195.4 '' '' -1979-02-14 00:00 204.2 '' '' -1979-02-15 00:00 205.0 '' '' -1979-02-16 00:00 209.2 '' '' -1979-02-17 00:00 213.1 '' '' -1979-02-18 00:00 237.7 '' '' -1979-02-19 00:00 237.8 '' '' -1979-02-20 00:00 230.1 '' '' -1979-02-21 00:00 225.1 '' '' -1979-02-22 00:00 223.3 '' '' -1979-02-23 00:00 196.0 '' '' -1979-02-24 00:00 182.8 '' '' -1979-02-25 00:00 167.5 '' '' -1979-02-26 00:00 166.0 '' '' -1979-02-27 00:00 162.7 '' '' -1979-02-28 00:00 163.6 '' '' -1979-03-01 00:00 168.5 '' '' -1979-03-02 00:00 170.7 '' '' -1979-03-03 00:00 173.3 '' '' -1979-03-04 00:00 181.4 '' '' -1979-03-05 00:00 180.1 '' '' -1979-03-06 00:00 182.4 '' '' -1979-03-07 00:00 183.1 '' '' -1979-03-08 00:00 178.9 '' '' -1979-03-09 00:00 181.4 '' '' -1979-03-10 00:00 180.6 '' '' -1979-03-11 00:00 181.7 '' '' -1979-03-12 00:00 188.7 '' '' -1979-03-13 00:00 186.3 '' '' -1979-03-14 00:00 189.4 '' '' -1979-03-15 00:00 181.3 '' '' -1979-03-16 00:00 183.5 '' '' -1979-03-17 00:00 177.7 '' '' -1979-03-18 00:00 188.6 '' '' -1979-03-19 00:00 177.6 '' '' -1979-03-20 00:00 184.1 '' '' -1979-03-21 00:00 182.2 '' '' -1979-03-22 00:00 181.1 '' '' -1979-03-23 00:00 188.5 '' '' -1979-03-24 00:00 188.3 '' '' -1979-03-25 00:00 188.2 '' '' -1979-03-26 00:00 200.2 '' '' -1979-03-27 00:00 187.9 '' '' -1979-03-28 00:00 188.6 '' '' -1979-03-29 00:00 191.4 '' '' -1979-03-30 00:00 186.6 '' '' -1979-03-31 00:00 201.4 '' '' -1979-04-01 00:00 202.6 '' '' -1979-04-02 00:00 203.4 '' '' -1979-04-03 00:00 194.2 '' '' -1979-04-04 00:00 183.5 '' '' -1979-04-05 00:00 179.3 '' '' -1979-04-06 00:00 176.3 '' '' -1979-04-07 00:00 166.7 '' '' -1979-04-08 00:00 169.0 '' '' -1979-04-09 00:00 169.6 '' '' -1979-04-10 00:00 173.0 '' '' -1979-04-11 00:00 170.0 '' '' -1979-04-12 00:00 174.5 '' '' -1979-04-13 00:00 175.8 '' '' -1979-04-14 00:00 170.9 '' '' -1979-04-15 00:00 168.1 '' '' -1979-04-16 00:00 171.7 '' '' -1979-04-17 00:00 168.0 '' '' -1979-04-18 00:00 158.7 '' '' -1979-04-19 00:00 159.4 '' '' -1979-04-20 00:00 156.1 '' '' -1979-04-21 00:00 161.5 '' '' -1979-04-22 00:00 159.7 '' '' -1979-04-23 00:00 162.3 '' '' -1979-04-24 00:00 161.9 '' '' -1979-04-25 00:00 172.5 '' '' -1979-04-26 00:00 182.0 '' '' -1979-04-27 00:00 195.1 '' '' -1979-04-28 00:00 192.1 '' '' -1979-04-29 00:00 185.7 '' '' -1979-04-30 00:00 185.2 '' '' -1979-05-01 00:00 180.4 '' '' -1979-05-02 00:00 179.2 '' '' -1979-05-03 00:00 164.3 '' '' -1979-05-04 00:00 176.0 '' '' -1979-05-05 00:00 169.6 '' '' -1979-05-06 00:00 171.1 '' '' -1979-05-07 00:00 178.0 '' '' -1979-05-08 00:00 182.4 '' '' -1979-05-09 00:00 181.3 '' '' -1979-05-10 00:00 174.7 '' '' -1979-05-11 00:00 178.6 '' '' -1979-05-12 00:00 184.2 '' '' -1979-05-13 00:00 186.6 '' '' -1979-05-14 00:00 182.0 '' '' -1979-05-15 00:00 181.9 '' '' -1979-05-16 00:00 176.4 '' '' -1979-05-17 00:00 187.7 '' '' -1979-05-18 00:00 171.3 '' '' -1979-05-19 00:00 161.5 '' '' -1979-05-20 00:00 155.6 '' '' -1979-05-21 00:00 155.7 '' '' -1979-05-22 00:00 156.5 '' '' -1979-05-23 00:00 156.0 '' '' -1979-05-24 00:00 159.2 '' '' -1979-05-25 00:00 153.3 '' '' -1979-05-26 00:00 149.1 '' '' -1979-05-27 00:00 149.4 '' '' -1979-05-28 00:00 149.2 '' '' -1979-05-29 00:00 150.2 '' '' -1979-05-30 00:00 158.4 '' '' -1979-05-31 00:00 174.9 '' '' -1979-06-01 00:00 189.5 '' '' -1979-06-02 00:00 206.8 '' '' -1979-06-03 00:00 216.1 '' '' -1979-06-04 00:00 228.8 '' '' -1979-06-05 00:00 230.2 '' '' -1979-06-06 00:00 238.1 '' '' -1979-06-07 00:00 238.1 '' '' -1979-06-08 00:00 242.7 '' '' -1979-06-09 00:00 247.4 '' '' -1979-06-10 00:00 239.9 '' '' -1979-06-11 00:00 229.6 '' '' -1979-06-12 00:00 208.3 '' '' -1979-06-13 00:00 193.7 '' '' -1979-06-14 00:00 185.7 '' '' -1979-06-15 00:00 176.0 '' '' -1979-06-16 00:00 167.5 '' '' -1979-06-17 00:00 158.1 '' '' -1979-06-18 00:00 152.6 '' '' -1979-06-19 00:00 146.2 '' '' -1979-06-20 00:00 151.5 '' '' -1979-06-21 00:00 148.9 '' '' -1979-06-22 00:00 141.1 '' '' -1979-06-23 00:00 139.0 '' '' -1979-06-24 00:00 141.2 '' '' -1979-06-25 00:00 147.8 '' '' -1979-06-26 00:00 153.7 '' '' -1979-06-27 00:00 158.5 '' '' -1979-06-28 00:00 159.1 '' '' -1979-06-29 00:00 166.9 '' '' -1979-06-30 00:00 176.7 '' '' -1979-07-01 00:00 186.3 '' '' -1979-07-02 00:00 200.9 '' '' -1979-07-03 00:00 213.4 '' '' -1979-07-04 00:00 218.1 '' '' -1979-07-05 00:00 204.5 '' '' -1979-07-06 00:00 211.3 '' '' -1979-07-07 00:00 207.2 '' '' -1979-07-08 00:00 206.7 '' '' -1979-07-09 00:00 197.9 '' '' -1979-07-10 00:00 185.9 '' '' -1979-07-11 00:00 178.6 '' '' -1979-07-12 00:00 170.1 '' '' -1979-07-13 00:00 161.4 '' '' -1979-07-14 00:00 154.7 '' '' -1979-07-15 00:00 151.1 '' '' -1979-07-16 00:00 143.6 '' '' -1979-07-17 00:00 142.7 '' '' -1979-07-18 00:00 141.2 '' '' -1979-07-19 00:00 143.6 '' '' -1979-07-20 00:00 146.6 '' '' -1979-07-21 00:00 143.7 '' '' -1979-07-22 00:00 155.7 '' '' -1979-07-23 00:00 163.1 '' '' -1979-07-24 00:00 168.6 '' '' -1979-07-25 00:00 164.5 '' '' -1979-07-26 00:00 165.6 '' '' -1979-07-27 00:00 159.1 '' '' -1979-07-28 00:00 158.1 '' '' -1979-07-29 00:00 156.7 '' '' -1979-07-30 00:00 160.3 '' '' -1979-07-31 00:00 152.4 '' '' -1979-08-01 00:00 149.1 '' '' -1979-08-02 00:00 143.9 '' '' -1979-08-03 00:00 145.1 '' '' -1979-08-04 00:00 141.7 '' '' -1979-08-05 00:00 141.6 '' '' -1979-08-06 00:00 149.5 '' '' -1979-08-07 00:00 151.1 '' '' -1979-08-08 00:00 152.7 '' '' -1979-08-09 00:00 157.3 '' '' -1979-08-10 00:00 152.1 '' '' -1979-08-11 00:00 154.4 '' '' -1979-08-12 00:00 144.8 '' '' -1979-08-13 00:00 155.8 '' '' -1979-08-14 00:00 158.2 '' '' -1979-08-15 00:00 167.6 '' '' -1979-08-16 00:00 164.8 '' '' -1979-08-17 00:00 165.8 '' '' -1979-08-18 00:00 180.0 '' '' -1979-08-19 00:00 186.4 '' '' -1979-08-20 00:00 204.2 '' '' -1979-08-21 00:00 207.6 '' '' -1979-08-22 00:00 223.2 '' '' -1979-08-23 00:00 218.6 '' '' -1979-08-24 00:00 225.2 '' '' -1979-08-25 00:00 229.3 '' '' -1979-08-26 00:00 223.3 '' '' -1979-08-27 00:00 212.8 '' '' -1979-08-28 00:00 214.2 '' '' -1979-08-29 00:00 197.6 '' '' -1979-08-30 00:00 187.8 '' '' -1979-08-31 00:00 179.9 '' '' -1979-09-01 00:00 175.8 '' '' -1979-09-02 00:00 180.1 '' '' -1979-09-03 00:00 180.8 '' '' -1979-09-04 00:00 175.3 '' '' -1979-09-05 00:00 177.1 '' '' -1979-09-06 00:00 180.4 '' '' -1979-09-07 00:00 186.3 '' '' -1979-09-08 00:00 183.6 '' '' -1979-09-09 00:00 187.4 '' '' -1979-09-10 00:00 184.6 '' '' -1979-09-11 00:00 181.5 '' '' -1979-09-12 00:00 181.7 '' '' -1979-09-13 00:00 186.1 '' '' -1979-09-14 00:00 192.6 '' '' -1979-09-15 00:00 193.8 '' '' -1979-09-16 00:00 196.3 '' '' -1979-09-17 00:00 202.7 '' '' -1979-09-18 00:00 215.7 '' '' -1979-09-19 00:00 218.1 '' '' -1979-09-20 00:00 213.9 '' '' -1979-09-21 00:00 218.4 '' '' -1979-09-22 00:00 216.5 '' '' -1979-09-23 00:00 224.2 '' '' -1979-09-24 00:00 230.7 '' '' -1979-09-25 00:00 235.5 '' '' -1979-09-26 00:00 229.9 '' '' -1979-09-27 00:00 228.7 '' '' -1979-09-28 00:00 233.8 '' '' -1979-09-29 00:00 225.0 '' '' -1979-09-30 00:00 231.9 '' '' -1979-10-01 00:00 212.8 '' '' -1979-10-02 00:00 211.5 '' '' -1979-10-03 00:00 204.7 '' '' -1979-10-04 00:00 197.7 '' '' -1979-10-05 00:00 192.8 '' '' -1979-10-06 00:00 195.5 '' '' -1979-10-07 00:00 197.0 '' '' -1979-10-08 00:00 200.3 '' '' -1979-10-09 00:00 209.5 '' '' -1979-10-10 00:00 208.7 '' '' -1979-10-11 00:00 211.8 '' '' -1979-10-12 00:00 216.4 '' '' -1979-10-13 00:00 239.1 '' '' -1979-10-14 00:00 236.4 '' '' -1979-10-15 00:00 230.7 '' '' -1979-10-16 00:00 232.3 '' '' -1979-10-17 00:00 226.0 '' '' -1979-10-18 00:00 236.8 '' '' -1979-10-19 00:00 237.3 '' '' -1979-10-20 00:00 236.7 '' '' -1979-10-21 00:00 230.1 '' '' -1979-10-22 00:00 221.9 '' '' -1979-10-23 00:00 214.9 '' '' -1979-10-24 00:00 225.6 '' '' -1979-10-25 00:00 215.2 '' '' -1979-10-26 00:00 202.9 '' '' -1979-10-27 00:00 211.2 '' '' -1979-10-28 00:00 210.0 '' '' -1979-10-29 00:00 214.8 '' '' -1979-10-30 00:00 213.7 '' '' -1979-10-31 00:00 214.9 '' '' -1979-11-01 00:00 211.6 '' '' -1979-11-02 00:00 209.5 '' '' -1979-11-03 00:00 207.5 '' '' -1979-11-04 00:00 214.2 '' '' -1979-11-05 00:00 235.5 '' '' -1979-11-06 00:00 273.2 '' '' -1979-11-07 00:00 286.9 '' '' -1979-11-08 00:00 310.1 '' '' -1979-11-09 00:00 314.4 '' '' -1979-11-10 00:00 367.0 '' '' -1979-11-11 00:00 325.7 '' '' -1979-11-12 00:00 294.4 '' '' -1979-11-13 00:00 272.7 '' '' -1979-11-14 00:00 256.4 '' '' -1979-11-15 00:00 239.7 '' '' -1979-11-16 00:00 230.6 '' '' -1979-11-17 00:00 231.8 '' '' -1979-11-18 00:00 231.9 '' '' -1979-11-19 00:00 214.8 '' '' -1979-11-20 00:00 205.9 '' '' -1979-11-21 00:00 189.8 '' '' -1979-11-22 00:00 182.5 '' '' -1979-11-23 00:00 183.2 '' '' -1979-11-24 00:00 175.2 '' '' -1979-11-25 00:00 165.8 '' '' -1979-11-26 00:00 161.6 '' '' -1979-11-27 00:00 155.7 '' '' -1979-11-28 00:00 150.1 '' '' -1979-11-29 00:00 154.0 '' '' -1979-11-30 00:00 152.2 '' '' -1979-12-01 00:00 161.9 '' '' -1979-12-02 00:00 172.0 '' '' -1979-12-03 00:00 195.1 '' '' -1979-12-04 00:00 221.0 '' '' -1979-12-05 00:00 223.4 '' '' -1979-12-06 00:00 223.4 '' '' -1979-12-07 00:00 222.6 '' '' -1979-12-08 00:00 228.9 '' '' -1979-12-09 00:00 232.4 '' '' -1979-12-10 00:00 230.3 '' '' -1979-12-11 00:00 230.6 '' '' -1979-12-12 00:00 232.3 '' '' -1979-12-13 00:00 231.7 '' '' -1979-12-14 00:00 238.3 '' '' -1979-12-15 00:00 231.8 '' '' -1979-12-16 00:00 216.3 '' '' -1979-12-17 00:00 202.2 '' '' -1979-12-18 00:00 187.4 '' '' -1979-12-19 00:00 183.0 '' '' -1979-12-20 00:00 180.8 '' '' -1979-12-21 00:00 176.7 '' '' -1979-12-22 00:00 175.3 '' '' -1979-12-23 00:00 168.6 '' '' -1979-12-24 00:00 160.2 '' '' -1979-12-25 00:00 162.0 '' '' -1979-12-26 00:00 159.7 '' '' -1979-12-27 00:00 153.6 '' '' -1979-12-28 00:00 163.1 '' '' -1979-12-29 00:00 174.0 '' '' -1979-12-30 00:00 185.5 '' '' -1979-12-31 00:00 188.9 '' '' -1980-01-01 00:00 189.1 '' '' -1980-01-02 00:00 199.9 '' '' -1980-01-03 00:00 211.9 '' '' -1980-01-04 00:00 212.4 '' '' -1980-01-05 00:00 207.7 '' '' -1980-01-06 00:00 222.1 '' '' -1980-01-07 00:00 228.0 '' '' -1980-01-08 00:00 228.1 '' '' -1980-01-09 00:00 240.9 '' '' -1980-01-10 00:00 253.0 '' '' -1980-01-11 00:00 255.7 '' '' -1980-01-12 00:00 245.1 '' '' -1980-01-13 00:00 221.6 '' '' -1980-01-14 00:00 203.8 '' '' -1980-01-15 00:00 200.0 '' '' -1980-01-16 00:00 188.6 '' '' -1980-01-17 00:00 186.9 '' '' -1980-01-18 00:00 177.5 '' '' -1980-01-19 00:00 164.4 '' '' -1980-01-20 00:00 156.5 '' '' -1980-01-21 00:00 153.4 '' '' -1980-01-22 00:00 158.2 '' '' -1980-01-23 00:00 166.7 '' '' -1980-01-24 00:00 171.1 '' '' -1980-01-25 00:00 171.3 '' '' -1980-01-26 00:00 178.8 '' '' -1980-01-27 00:00 190.6 '' '' -1980-01-28 00:00 194.0 '' '' -1980-01-29 00:00 197.0 '' '' -1980-01-30 00:00 197.9 '' '' -1980-01-31 00:00 213.9 '' '' -1980-02-01 00:00 212.6 '' '' -1980-02-02 00:00 217.9 '' '' -1980-02-03 00:00 225.7 '' '' -1980-02-04 00:00 231.7 '' '' -1980-02-05 00:00 218.9 '' '' -1980-02-06 00:00 221.7 '' '' -1980-02-07 00:00 223.9 '' '' -1980-02-08 00:00 218.7 '' '' -1980-02-09 00:00 208.2 '' '' -1980-02-10 00:00 204.6 '' '' -1980-02-11 00:00 213.7 '' '' -1980-02-12 00:00 213.7 '' '' -1980-02-13 00:00 217.9 '' '' -1980-02-14 00:00 201.0 '' '' -1980-02-15 00:00 201.2 '' '' -1980-02-16 00:00 200.2 '' '' -1980-02-17 00:00 182.8 '' '' -1980-02-18 00:00 180.0 '' '' -1980-02-19 00:00 177.3 '' '' -1980-02-20 00:00 174.7 '' '' -1980-02-21 00:00 169.6 '' '' -1980-02-22 00:00 167.3 '' '' -1980-02-23 00:00 160.1 '' '' -1980-02-24 00:00 157.2 '' '' -1980-02-25 00:00 165.7 '' '' -1980-02-26 00:00 169.0 '' '' -1980-02-27 00:00 173.2 '' '' -1980-02-28 00:00 171.7 '' '' -1980-02-29 00:00 176.7 '' '' -1980-03-01 00:00 175.7 '' '' -1980-03-02 00:00 172.9 '' '' -1980-03-03 00:00 170.2 '' '' -1980-03-04 00:00 172.7 '' '' -1980-03-05 00:00 171.8 '' '' -1980-03-06 00:00 169.4 '' '' -1980-03-07 00:00 166.3 '' '' -1980-03-08 00:00 164.9 '' '' -1980-03-09 00:00 161.3 '' '' -1980-03-10 00:00 153.9 '' '' -1980-03-11 00:00 147.8 '' '' -1980-03-12 00:00 138.6 '' '' -1980-03-13 00:00 144.6 '' '' -1980-03-14 00:00 141.2 '' '' -1980-03-15 00:00 139.3 '' '' -1980-03-16 00:00 137.3 '' '' -1980-03-17 00:00 142.9 '' '' -1980-03-18 00:00 147.4 '' '' -1980-03-19 00:00 162.3 '' '' -1980-03-20 00:00 162.1 '' '' -1980-03-21 00:00 162.4 '' '' -1980-03-22 00:00 162.5 '' '' -1980-03-23 00:00 172.4 '' '' -1980-03-24 00:00 172.4 '' '' -1980-03-25 00:00 182.5 '' '' -1980-03-26 00:00 185.2 '' '' -1980-03-27 00:00 195.3 '' '' -1980-03-28 00:00 203.5 '' '' -1980-03-29 00:00 199.9 '' '' -1980-03-30 00:00 194.3 '' '' -1980-03-31 00:00 187.2 '' '' -1980-04-01 00:00 181.9 '' '' -1980-04-02 00:00 181.1 '' '' -1980-04-03 00:00 176.1 '' '' -1980-04-04 00:00 184.3 '' '' -1980-04-05 00:00 209.7 '' '' -1980-04-06 00:00 238.4 '' '' -1980-04-07 00:00 236.1 '' '' -1980-04-08 00:00 241.7 '' '' -1980-04-09 00:00 244.7 '' '' -1980-04-10 00:00 249.0 '' '' -1980-04-11 00:00 249.9 '' '' -1980-04-12 00:00 245.6 '' '' -1980-04-13 00:00 232.8 '' '' -1980-04-14 00:00 226.3 '' '' -1980-04-15 00:00 206.1 '' '' -1980-04-16 00:00 192.4 '' '' -1980-04-17 00:00 191.9 '' '' -1980-04-18 00:00 201.4 '' '' -1980-04-19 00:00 214.5 '' '' -1980-04-20 00:00 215.8 '' '' -1980-04-21 00:00 207.7 '' '' -1980-04-22 00:00 199.2 '' '' -1980-04-23 00:00 186.2 '' '' -1980-04-24 00:00 186.3 '' '' -1980-04-25 00:00 185.9 '' '' -1980-04-26 00:00 186.6 '' '' -1980-04-27 00:00 200.6 '' '' -1980-04-28 00:00 203.7 '' '' -1980-04-29 00:00 203.5 '' '' -1980-04-30 00:00 200.9 '' '' -1980-05-01 00:00 218.5 '' '' -1980-05-02 00:00 223.0 '' '' -1980-05-03 00:00 221.2 '' '' -1980-05-04 00:00 223.1 '' '' -1980-05-05 00:00 221.9 '' '' -1980-05-06 00:00 203.5 '' '' -1980-05-07 00:00 203.4 '' '' -1980-05-08 00:00 200.2 '' '' -1980-05-09 00:00 193.6 '' '' -1980-05-10 00:00 191.1 '' '' -1980-05-11 00:00 191.4 '' '' -1980-05-12 00:00 189.5 '' '' -1980-05-13 00:00 192.9 '' '' -1980-05-14 00:00 202.9 '' '' -1980-05-15 00:00 199.8 '' '' -1980-05-16 00:00 202.9 '' '' -1980-05-17 00:00 207.5 '' '' -1980-05-18 00:00 214.3 '' '' -1980-05-19 00:00 234.2 '' '' -1980-05-20 00:00 244.7 '' '' -1980-05-21 00:00 252.6 '' '' -1980-05-22 00:00 276.6 '' '' -1980-05-23 00:00 289.5 '' '' -1980-05-24 00:00 290.2 '' '' -1980-05-25 00:00 292.8 '' '' -1980-05-26 00:00 284.2 '' '' -1980-05-27 00:00 281.2 '' '' -1980-05-28 00:00 280.8 '' '' -1980-05-29 00:00 252.3 '' '' -1980-05-30 00:00 222.7 '' '' -1980-05-31 00:00 200.6 '' '' -1980-06-01 00:00 191.2 '' '' -1980-06-02 00:00 184.0 '' '' -1980-06-03 00:00 178.8 '' '' -1980-06-04 00:00 181.5 '' '' -1980-06-05 00:00 178.4 '' '' -1980-06-06 00:00 172.4 '' '' -1980-06-07 00:00 165.7 '' '' -1980-06-08 00:00 172.4 '' '' -1980-06-09 00:00 174.3 '' '' -1980-06-10 00:00 176.1 '' '' -1980-06-11 00:00 182.9 '' '' -1980-06-12 00:00 189.3 '' '' -1980-06-13 00:00 186.5 '' '' -1980-06-14 00:00 188.8 '' '' -1980-06-15 00:00 186.4 '' '' -1980-06-16 00:00 193.3 '' '' -1980-06-17 00:00 197.4 '' '' -1980-06-18 00:00 207.6 '' '' -1980-06-19 00:00 219.8 '' '' -1980-06-20 00:00 227.9 '' '' -1980-06-21 00:00 228.0 '' '' -1980-06-22 00:00 250.0 '' '' -1980-06-23 00:00 251.5 '' '' -1980-06-24 00:00 245.9 '' '' -1980-06-25 00:00 238.8 '' '' -1980-06-26 00:00 226.3 '' '' -1980-06-27 00:00 212.6 '' '' -1980-06-28 00:00 199.7 '' '' -1980-06-29 00:00 188.8 '' '' -1980-06-30 00:00 183.4 '' '' -1980-07-01 00:00 160.0 '' '' -1980-07-02 00:00 154.9 '' '' -1980-07-03 00:00 147.7 '' '' -1980-07-04 00:00 146.7 '' '' -1980-07-05 00:00 152.5 '' '' -1980-07-06 00:00 150.1 '' '' -1980-07-07 00:00 152.5 '' '' -1980-07-08 00:00 152.8 '' '' -1980-07-09 00:00 155.2 '' '' -1980-07-10 00:00 162.3 '' '' -1980-07-11 00:00 173.3 '' '' -1980-07-12 00:00 178.0 '' '' -1980-07-13 00:00 196.8 '' '' -1980-07-14 00:00 209.7 '' '' -1980-07-15 00:00 218.4 '' '' -1980-07-16 00:00 235.4 '' '' -1980-07-17 00:00 250.2 '' '' -1980-07-18 00:00 249.8 '' '' -1980-07-19 00:00 255.2 '' '' -1980-07-20 00:00 258.0 '' '' -1980-07-21 00:00 254.0 '' '' -1980-07-22 00:00 248.7 '' '' -1980-07-23 00:00 235.1 '' '' -1980-07-24 00:00 222.2 '' '' -1980-07-25 00:00 206.4 '' '' -1980-07-26 00:00 197.4 '' '' -1980-07-27 00:00 188.4 '' '' -1980-07-28 00:00 169.5 '' '' -1980-07-29 00:00 155.3 '' '' -1980-07-30 00:00 143.3 '' '' -1980-07-31 00:00 136.5 '' '' -1980-08-01 00:00 131.9 '' '' -1980-08-02 00:00 131.8 '' '' -1980-08-03 00:00 133.2 '' '' -1980-08-04 00:00 130.9 '' '' -1980-08-05 00:00 132.6 '' '' -1980-08-06 00:00 143.2 '' '' -1980-08-07 00:00 142.3 '' '' -1980-08-08 00:00 146.4 '' '' -1980-08-09 00:00 156.5 '' '' -1980-08-10 00:00 173.5 '' '' -1980-08-11 00:00 184.1 '' '' -1980-08-12 00:00 189.6 '' '' -1980-08-13 00:00 193.3 '' '' -1980-08-14 00:00 191.7 '' '' -1980-08-15 00:00 191.9 '' '' -1980-08-16 00:00 195.7 '' '' -1980-08-17 00:00 197.7 '' '' -1980-08-18 00:00 204.3 '' '' -1980-08-19 00:00 201.4 '' '' -1980-08-20 00:00 193.0 '' '' -1980-08-21 00:00 194.1 '' '' -1980-08-22 00:00 178.3 '' '' -1980-08-23 00:00 174.1 '' '' -1980-08-24 00:00 164.3 '' '' -1980-08-25 00:00 153.8 '' '' -1980-08-26 00:00 154.6 '' '' -1980-08-27 00:00 159.3 '' '' -1980-08-28 00:00 168.3 '' '' -1980-08-29 00:00 178.5 '' '' -1980-08-30 00:00 191.4 '' '' -1980-08-31 00:00 198.7 '' '' -1980-09-01 00:00 213.2 '' '' -1980-09-02 00:00 224.5 '' '' -1980-09-03 00:00 232.1 '' '' -1980-09-04 00:00 225.1 '' '' -1980-09-05 00:00 215.6 '' '' -1980-09-06 00:00 210.9 '' '' -1980-09-07 00:00 213.0 '' '' -1980-09-08 00:00 200.9 '' '' -1980-09-09 00:00 189.7 '' '' -1980-09-10 00:00 188.7 '' '' -1980-09-11 00:00 188.1 '' '' -1980-09-12 00:00 178.9 '' '' -1980-09-13 00:00 171.9 '' '' -1980-09-14 00:00 163.4 '' '' -1980-09-15 00:00 153.8 '' '' -1980-09-16 00:00 159.6 '' '' -1980-09-17 00:00 158.0 '' '' -1980-09-18 00:00 154.4 '' '' -1980-09-19 00:00 160.1 '' '' -1980-09-20 00:00 167.5 '' '' -1980-09-21 00:00 159.6 '' '' -1980-09-22 00:00 178.6 '' '' -1980-09-23 00:00 188.7 '' '' -1980-09-24 00:00 191.3 '' '' -1980-09-25 00:00 183.8 '' '' -1980-09-26 00:00 184.3 '' '' -1980-09-27 00:00 183.2 '' '' -1980-09-28 00:00 185.2 '' '' -1980-09-29 00:00 178.2 '' '' -1980-09-30 00:00 174.1 '' '' -1980-10-01 00:00 171.1 '' '' -1980-10-02 00:00 167.9 '' '' -1980-10-03 00:00 174.1 '' '' -1980-10-04 00:00 175.2 '' '' -1980-10-05 00:00 182.6 '' '' -1980-10-06 00:00 185.3 '' '' -1980-10-07 00:00 198.7 '' '' -1980-10-08 00:00 212.1 '' '' -1980-10-09 00:00 223.4 '' '' -1980-10-10 00:00 232.7 '' '' -1980-10-11 00:00 240.7 '' '' -1980-10-12 00:00 247.8 '' '' -1980-10-13 00:00 253.3 '' '' -1980-10-14 00:00 251.1 '' '' -1980-10-15 00:00 237.0 '' '' -1980-10-16 00:00 214.9 '' '' -1980-10-17 00:00 201.1 '' '' -1980-10-18 00:00 200.6 '' '' -1980-10-19 00:00 203.3 '' '' -1980-10-20 00:00 200.5 '' '' -1980-10-21 00:00 204.2 '' '' -1980-10-22 00:00 205.3 '' '' -1980-10-23 00:00 196.1 '' '' -1980-10-24 00:00 192.5 '' '' -1980-10-25 00:00 182.9 '' '' -1980-10-26 00:00 180.3 '' '' -1980-10-27 00:00 177.2 '' '' -1980-10-28 00:00 178.2 '' '' -1980-10-29 00:00 186.4 '' '' -1980-10-30 00:00 201.8 '' '' -1980-10-31 00:00 211.5 '' '' -1980-11-01 00:00 226.3 '' '' -1980-11-02 00:00 234.2 '' '' -1980-11-03 00:00 241.6 '' '' -1980-11-04 00:00 249.9 '' '' -1980-11-05 00:00 263.3 '' '' -1980-11-06 00:00 273.9 '' '' -1980-11-07 00:00 272.7 '' '' -1980-11-08 00:00 266.2 '' '' -1980-11-09 00:00 255.4 '' '' -1980-11-10 00:00 257.2 '' '' -1980-11-11 00:00 256.0 '' '' -1980-11-12 00:00 233.2 '' '' -1980-11-13 00:00 226.8 '' '' -1980-11-14 00:00 218.8 '' '' -1980-11-15 00:00 205.2 '' '' -1980-11-16 00:00 191.1 '' '' -1980-11-17 00:00 181.6 '' '' -1980-11-18 00:00 174.9 '' '' -1980-11-19 00:00 172.4 '' '' -1980-11-20 00:00 161.6 '' '' -1980-11-21 00:00 161.8 '' '' -1980-11-22 00:00 171.4 '' '' -1980-11-23 00:00 167.2 '' '' -1980-11-24 00:00 174.9 '' '' -1980-11-25 00:00 176.4 '' '' -1980-11-26 00:00 189.6 '' '' -1980-11-27 00:00 185.3 '' '' -1980-11-28 00:00 191.4 '' '' -1980-11-29 00:00 206.1 '' '' -1980-11-30 00:00 216.3 '' '' -1980-12-01 00:00 223.0 '' '' -1980-12-02 00:00 213.3 '' '' -1980-12-03 00:00 197.9 '' '' -1980-12-04 00:00 199.4 '' '' -1980-12-05 00:00 186.4 '' '' -1980-12-06 00:00 171.0 '' '' -1980-12-07 00:00 176.4 '' '' -1980-12-08 00:00 169.3 '' '' -1980-12-09 00:00 175.1 '' '' -1980-12-10 00:00 180.5 '' '' -1980-12-11 00:00 203.5 '' '' -1980-12-12 00:00 240.5 '' '' -1980-12-13 00:00 244.2 '' '' -1980-12-14 00:00 253.2 '' '' -1980-12-15 00:00 266.2 '' '' -1980-12-16 00:00 273.0 '' '' -1980-12-17 00:00 254.8 '' '' -1980-12-18 00:00 255.1 '' '' -1980-12-19 00:00 238.5 '' '' -1980-12-20 00:00 235.9 '' '' -1980-12-21 00:00 224.8 '' '' -1980-12-22 00:00 231.2 '' '' -1980-12-23 00:00 226.0 '' '' -1980-12-24 00:00 223.6 '' '' -1980-12-25 00:00 220.7 '' '' -1980-12-26 00:00 220.1 '' '' -1980-12-27 00:00 220.3 '' '' -1980-12-28 00:00 231.5 '' '' -1980-12-29 00:00 217.2 '' '' -1980-12-30 00:00 209.9 '' '' -1980-12-31 00:00 199.0 '' '' -1981-01-01 00:00 189.7 '' '' -1981-01-02 00:00 181.4 '' '' -1981-01-03 00:00 173.1 '' '' -1981-01-04 00:00 166.8 '' '' -1981-01-05 00:00 161.8 '' '' -1981-01-06 00:00 157.4 '' '' -1981-01-07 00:00 168.6 '' '' -1981-01-08 00:00 169.2 '' '' -1981-01-09 00:00 167.0 '' '' -1981-01-10 00:00 164.6 '' '' -1981-01-11 00:00 160.5 '' '' -1981-01-12 00:00 156.6 '' '' -1981-01-13 00:00 158.1 '' '' -1981-01-14 00:00 153.9 '' '' -1981-01-15 00:00 149.8 '' '' -1981-01-16 00:00 152.5 '' '' -1981-01-17 00:00 155.3 '' '' -1981-01-18 00:00 161.0 '' '' -1981-01-19 00:00 165.4 '' '' -1981-01-20 00:00 159.9 '' '' -1981-01-21 00:00 156.6 '' '' -1981-01-22 00:00 156.4 '' '' -1981-01-23 00:00 156.8 '' '' -1981-01-24 00:00 157.3 '' '' -1981-01-25 00:00 169.2 '' '' -1981-01-26 00:00 174.6 '' '' -1981-01-27 00:00 175.8 '' '' -1981-01-28 00:00 197.2 '' '' -1981-01-29 00:00 204.2 '' '' -1981-01-30 00:00 209.1 '' '' -1981-01-31 00:00 209.1 '' '' -1981-02-01 00:00 207.3 '' '' -1981-02-02 00:00 210.1 '' '' -1981-02-03 00:00 205.4 '' '' -1981-02-04 00:00 197.5 '' '' -1981-02-05 00:00 187.8 '' '' -1981-02-06 00:00 185.4 '' '' -1981-02-07 00:00 180.5 '' '' -1981-02-08 00:00 179.1 '' '' -1981-02-09 00:00 176.7 '' '' -1981-02-10 00:00 185.2 '' '' -1981-02-11 00:00 186.4 '' '' -1981-02-12 00:00 190.6 '' '' -1981-02-13 00:00 197.8 '' '' -1981-02-14 00:00 200.3 '' '' -1981-02-15 00:00 193.5 '' '' -1981-02-16 00:00 186.9 '' '' -1981-02-17 00:00 188.1 '' '' -1981-02-18 00:00 190.2 '' '' -1981-02-19 00:00 178.8 '' '' -1981-02-20 00:00 188.3 '' '' -1981-02-21 00:00 189.9 '' '' -1981-02-22 00:00 199.5 '' '' -1981-02-23 00:00 217.9 '' '' -1981-02-24 00:00 231.5 '' '' -1981-02-25 00:00 233.8 '' '' -1981-02-26 00:00 238.5 '' '' -1981-02-27 00:00 235.4 '' '' -1981-02-28 00:00 224.9 '' '' -1981-03-01 00:00 224.4 '' '' -1981-03-02 00:00 230.6 '' '' -1981-03-03 00:00 238.9 '' '' -1981-03-04 00:00 245.6 '' '' -1981-03-05 00:00 227.3 '' '' -1981-03-06 00:00 212.7 '' '' -1981-03-07 00:00 201.4 '' '' -1981-03-08 00:00 200.6 '' '' -1981-03-09 00:00 202.9 '' '' -1981-03-10 00:00 203.1 '' '' -1981-03-11 00:00 199.7 '' '' -1981-03-12 00:00 188.8 '' '' -1981-03-13 00:00 202.1 '' '' -1981-03-14 00:00 208.9 '' '' -1981-03-15 00:00 206.3 '' '' -1981-03-16 00:00 194.9 '' '' -1981-03-17 00:00 181.5 '' '' -1981-03-18 00:00 180.0 '' '' -1981-03-19 00:00 175.1 '' '' -1981-03-20 00:00 182.7 '' '' -1981-03-21 00:00 189.5 '' '' -1981-03-22 00:00 189.4 '' '' -1981-03-23 00:00 188.0 '' '' -1981-03-24 00:00 191.4 '' '' -1981-03-25 00:00 199.3 '' '' -1981-03-26 00:00 198.6 '' '' -1981-03-27 00:00 197.6 '' '' -1981-03-28 00:00 203.7 '' '' -1981-03-29 00:00 212.4 '' '' -1981-03-30 00:00 208.2 '' '' -1981-03-31 00:00 214.0 '' '' -1981-04-01 00:00 210.8 '' '' -1981-04-02 00:00 211.2 '' '' -1981-04-03 00:00 221.2 '' '' -1981-04-04 00:00 219.7 '' '' -1981-04-05 00:00 226.2 '' '' -1981-04-06 00:00 235.7 '' '' -1981-04-07 00:00 242.3 '' '' -1981-04-08 00:00 268.8 '' '' -1981-04-09 00:00 287.7 '' '' -1981-04-10 00:00 268.8 '' '' -1981-04-11 00:00 272.1 '' '' -1981-04-12 00:00 251.9 '' '' -1981-04-13 00:00 254.9 '' '' -1981-04-14 00:00 256.5 '' '' -1981-04-15 00:00 254.9 '' '' -1981-04-16 00:00 247.5 '' '' -1981-04-17 00:00 242.7 '' '' -1981-04-18 00:00 229.2 '' '' -1981-04-19 00:00 214.9 '' '' -1981-04-20 00:00 200.9 '' '' -1981-04-21 00:00 196.1 '' '' -1981-04-22 00:00 191.5 '' '' -1981-04-23 00:00 204.9 '' '' -1981-04-24 00:00 203.0 '' '' -1981-04-25 00:00 203.8 '' '' -1981-04-26 00:00 198.8 '' '' -1981-04-27 00:00 194.7 '' '' -1981-04-28 00:00 178.2 '' '' -1981-04-29 00:00 176.9 '' '' -1981-04-30 00:00 175.3 '' '' -1981-05-01 00:00 188.0 '' '' -1981-05-02 00:00 193.4 '' '' -1981-05-03 00:00 206.5 '' '' -1981-05-04 00:00 221.2 '' '' -1981-05-05 00:00 237.5 '' '' -1981-05-06 00:00 231.2 '' '' -1981-05-07 00:00 234.2 '' '' -1981-05-08 00:00 222.4 '' '' -1981-05-09 00:00 218.6 '' '' -1981-05-10 00:00 217.7 '' '' -1981-05-11 00:00 228.1 '' '' -1981-05-12 00:00 223.4 '' '' -1981-05-13 00:00 221.3 '' '' -1981-05-14 00:00 232.5 '' '' -1981-05-15 00:00 223.9 '' '' -1981-05-16 00:00 218.9 '' '' -1981-05-17 00:00 207.6 '' '' -1981-05-18 00:00 194.4 '' '' -1981-05-19 00:00 186.6 '' '' -1981-05-20 00:00 180.0 '' '' -1981-05-21 00:00 180.4 '' '' -1981-05-22 00:00 169.3 '' '' -1981-05-23 00:00 159.6 '' '' -1981-05-24 00:00 169.8 '' '' -1981-05-25 00:00 177.2 '' '' -1981-05-26 00:00 173.8 '' '' -1981-05-27 00:00 177.0 '' '' -1981-05-28 00:00 181.3 '' '' -1981-05-29 00:00 170.6 '' '' -1981-05-30 00:00 164.6 '' '' -1981-05-31 00:00 156.1 '' '' -1981-06-01 00:00 149.6 '' '' -1981-06-02 00:00 144.3 '' '' -1981-06-03 00:00 134.9 '' '' -1981-06-04 00:00 133.8 '' '' -1981-06-05 00:00 136.0 '' '' -1981-06-06 00:00 140.6 '' '' -1981-06-07 00:00 146.7 '' '' -1981-06-08 00:00 146.7 '' '' -1981-06-09 00:00 152.8 '' '' -1981-06-10 00:00 157.1 '' '' -1981-06-11 00:00 154.8 '' '' -1981-06-12 00:00 152.0 '' '' -1981-06-13 00:00 152.6 '' '' -1981-06-14 00:00 159.1 '' '' -1981-06-15 00:00 164.7 '' '' -1981-06-16 00:00 169.1 '' '' -1981-06-17 00:00 171.2 '' '' -1981-06-18 00:00 170.1 '' '' -1981-06-19 00:00 165.9 '' '' -1981-06-20 00:00 159.8 '' '' -1981-06-21 00:00 153.6 '' '' -1981-06-22 00:00 166.1 '' '' -1981-06-23 00:00 171.2 '' '' -1981-06-24 00:00 174.6 '' '' -1981-06-25 00:00 183.6 '' '' -1981-06-26 00:00 193.9 '' '' -1981-06-27 00:00 193.4 '' '' -1981-06-28 00:00 191.6 '' '' -1981-06-29 00:00 187.5 '' '' -1981-06-30 00:00 179.0 '' '' -1981-07-01 00:00 175.4 '' '' -1981-07-02 00:00 168.9 '' '' -1981-07-03 00:00 163.3 '' '' -1981-07-04 00:00 165.9 '' '' -1981-07-05 00:00 152.5 '' '' -1981-07-06 00:00 148.7 '' '' -1981-07-07 00:00 149.8 '' '' -1981-07-08 00:00 152.4 '' '' -1981-07-09 00:00 150.0 '' '' -1981-07-10 00:00 156.5 '' '' -1981-07-11 00:00 167.4 '' '' -1981-07-12 00:00 167.7 '' '' -1981-07-13 00:00 174.2 '' '' -1981-07-14 00:00 184.2 '' '' -1981-07-15 00:00 194.5 '' '' -1981-07-16 00:00 205.3 '' '' -1981-07-17 00:00 200.8 '' '' -1981-07-18 00:00 204.7 '' '' -1981-07-19 00:00 220.3 '' '' -1981-07-20 00:00 234.7 '' '' -1981-07-21 00:00 228.1 '' '' -1981-07-22 00:00 235.9 '' '' -1981-07-23 00:00 254.7 '' '' -1981-07-24 00:00 261.6 '' '' -1981-07-25 00:00 259.7 '' '' -1981-07-26 00:00 273.1 '' '' -1981-07-27 00:00 255.8 '' '' -1981-07-28 00:00 223.6 '' '' -1981-07-29 00:00 213.3 '' '' -1981-07-30 00:00 204.2 '' '' -1981-07-31 00:00 197.6 '' '' -1981-08-01 00:00 183.9 '' '' -1981-08-02 00:00 182.6 '' '' -1981-08-03 00:00 192.4 '' '' -1981-08-04 00:00 190.6 '' '' -1981-08-05 00:00 178.8 '' '' -1981-08-06 00:00 179.6 '' '' -1981-08-07 00:00 173.0 '' '' -1981-08-08 00:00 178.4 '' '' -1981-08-09 00:00 180.5 '' '' -1981-08-10 00:00 182.0 '' '' -1981-08-11 00:00 206.4 '' '' -1981-08-12 00:00 209.0 '' '' -1981-08-13 00:00 208.7 '' '' -1981-08-14 00:00 208.2 '' '' -1981-08-15 00:00 225.1 '' '' -1981-08-16 00:00 221.8 '' '' -1981-08-17 00:00 228.7 '' '' -1981-08-18 00:00 244.1 '' '' -1981-08-19 00:00 254.6 '' '' -1981-08-20 00:00 269.8 '' '' -1981-08-21 00:00 267.1 '' '' -1981-08-22 00:00 262.2 '' '' -1981-08-23 00:00 254.8 '' '' -1981-08-24 00:00 258.9 '' '' -1981-08-25 00:00 254.8 '' '' -1981-08-26 00:00 272.9 '' '' -1981-08-27 00:00 281.6 '' '' -1981-08-28 00:00 275.3 '' '' -1981-08-29 00:00 259.1 '' '' -1981-08-30 00:00 265.1 '' '' -1981-08-31 00:00 256.0 '' '' -1981-09-01 00:00 248.3 '' '' -1981-09-02 00:00 242.8 '' '' -1981-09-03 00:00 229.0 '' '' -1981-09-04 00:00 233.4 '' '' -1981-09-05 00:00 248.7 '' '' -1981-09-06 00:00 263.2 '' '' -1981-09-07 00:00 262.5 '' '' -1981-09-08 00:00 266.3 '' '' -1981-09-09 00:00 256.5 '' '' -1981-09-10 00:00 247.6 '' '' -1981-09-11 00:00 240.8 '' '' -1981-09-12 00:00 234.2 '' '' -1981-09-13 00:00 230.2 '' '' -1981-09-14 00:00 228.7 '' '' -1981-09-15 00:00 230.4 '' '' -1981-09-16 00:00 227.5 '' '' -1981-09-17 00:00 218.2 '' '' -1981-09-18 00:00 216.5 '' '' -1981-09-19 00:00 210.5 '' '' -1981-09-20 00:00 200.1 '' '' -1981-09-21 00:00 191.2 '' '' -1981-09-22 00:00 183.0 '' '' -1981-09-23 00:00 183.8 '' '' -1981-09-24 00:00 182.2 '' '' -1981-09-25 00:00 182.0 '' '' -1981-09-26 00:00 188.8 '' '' -1981-09-27 00:00 202.8 '' '' -1981-09-28 00:00 200.9 '' '' -1981-09-29 00:00 204.5 '' '' -1981-09-30 00:00 203.8 '' '' -1981-10-01 00:00 210.6 '' '' -1981-10-02 00:00 204.8 '' '' -1981-10-03 00:00 196.5 '' '' -1981-10-04 00:00 191.1 '' '' -1981-10-05 00:00 193.6 '' '' -1981-10-06 00:00 200.3 '' '' -1981-10-07 00:00 204.1 '' '' -1981-10-08 00:00 200.7 '' '' -1981-10-09 00:00 205.4 '' '' -1981-10-10 00:00 213.4 '' '' -1981-10-11 00:00 220.0 '' '' -1981-10-12 00:00 236.8 '' '' -1981-10-13 00:00 256.2 '' '' -1981-10-14 00:00 275.6 '' '' -1981-10-15 00:00 287.1 '' '' -1981-10-16 00:00 302.4 '' '' -1981-10-17 00:00 302.9 '' '' -1981-10-18 00:00 296.5 '' '' -1981-10-19 00:00 278.6 '' '' -1981-10-20 00:00 257.8 '' '' -1981-10-21 00:00 238.2 '' '' -1981-10-22 00:00 218.6 '' '' -1981-10-23 00:00 208.2 '' '' -1981-10-24 00:00 201.1 '' '' -1981-10-25 00:00 186.0 '' '' -1981-10-26 00:00 172.0 '' '' -1981-10-27 00:00 171.2 '' '' -1981-10-28 00:00 182.4 '' '' -1981-10-29 00:00 187.5 '' '' -1981-10-30 00:00 201.5 '' '' -1981-10-31 00:00 207.1 '' '' -1981-11-01 00:00 222.5 '' '' -1981-11-02 00:00 241.3 '' '' -1981-11-03 00:00 255.3 '' '' -1981-11-04 00:00 263.1 '' '' -1981-11-05 00:00 254.1 '' '' -1981-11-06 00:00 244.6 '' '' -1981-11-07 00:00 241.4 '' '' -1981-11-08 00:00 234.7 '' '' -1981-11-09 00:00 232.6 '' '' -1981-11-10 00:00 231.0 '' '' -1981-11-11 00:00 217.0 '' '' -1981-11-12 00:00 223.5 '' '' -1981-11-13 00:00 215.9 '' '' -1981-11-14 00:00 207.4 '' '' -1981-11-15 00:00 191.2 '' '' -1981-11-16 00:00 181.2 '' '' -1981-11-17 00:00 172.7 '' '' -1981-11-18 00:00 160.8 '' '' -1981-11-19 00:00 157.0 '' '' -1981-11-20 00:00 152.0 '' '' -1981-11-21 00:00 153.9 '' '' -1981-11-22 00:00 152.7 '' '' -1981-11-23 00:00 151.9 '' '' -1981-11-24 00:00 150.4 '' '' -1981-11-25 00:00 159.1 '' '' -1981-11-26 00:00 178.3 '' '' -1981-11-27 00:00 190.3 '' '' -1981-11-28 00:00 206.4 '' '' -1981-11-29 00:00 226.5 '' '' -1981-11-30 00:00 231.6 '' '' -1981-12-01 00:00 230.7 '' '' -1981-12-02 00:00 230.3 '' '' -1981-12-03 00:00 238.6 '' '' -1981-12-04 00:00 241.7 '' '' -1981-12-05 00:00 260.0 '' '' -1981-12-06 00:00 262.1 '' '' -1981-12-07 00:00 275.6 '' '' -1981-12-08 00:00 287.8 '' '' -1981-12-09 00:00 292.4 '' '' -1981-12-10 00:00 278.7 '' '' -1981-12-11 00:00 266.7 '' '' -1981-12-12 00:00 254.2 '' '' -1981-12-13 00:00 218.9 '' '' -1981-12-14 00:00 193.0 '' '' -1981-12-15 00:00 172.6 '' '' -1981-12-16 00:00 157.4 '' '' -1981-12-17 00:00 144.2 '' '' -1981-12-18 00:00 136.3 '' '' -1981-12-19 00:00 129.7 '' '' -1981-12-20 00:00 133.9 '' '' -1981-12-21 00:00 142.2 '' '' -1981-12-22 00:00 145.9 '' '' -1981-12-23 00:00 153.0 '' '' -1981-12-24 00:00 156.1 '' '' -1981-12-25 00:00 162.1 '' '' -1981-12-26 00:00 166.2 '' '' -1981-12-27 00:00 176.8 '' '' -1981-12-28 00:00 183.0 '' '' -1981-12-29 00:00 183.6 '' '' -1981-12-30 00:00 185.7 '' '' -1981-12-31 00:00 182.8 '' '' -1982-01-01 00:00 179.9 '' '' -1982-01-02 00:00 177.2 '' '' -1982-01-03 00:00 176.1 '' '' -1982-01-04 00:00 170.4 '' '' -1982-01-05 00:00 165.5 '' '' -1982-01-06 00:00 166.8 '' '' -1982-01-07 00:00 166.9 '' '' -1982-01-08 00:00 156.9 '' '' -1982-01-09 00:00 164.4 '' '' -1982-01-10 00:00 145.7 '' '' -1982-01-11 00:00 136.3 '' '' -1982-01-12 00:00 132.4 '' '' -1982-01-13 00:00 127.5 '' '' -1982-01-14 00:00 130.5 '' '' -1982-01-15 00:00 136.3 '' '' -1982-01-16 00:00 146.7 '' '' -1982-01-17 00:00 152.6 '' '' -1982-01-18 00:00 167.6 '' '' -1982-01-19 00:00 169.4 '' '' -1982-01-20 00:00 167.0 '' '' -1982-01-21 00:00 163.3 '' '' -1982-01-22 00:00 152.9 '' '' -1982-01-23 00:00 148.0 '' '' -1982-01-24 00:00 149.1 '' '' -1982-01-25 00:00 169.3 '' '' -1982-01-26 00:00 182.7 '' '' -1982-01-27 00:00 197.2 '' '' -1982-01-28 00:00 234.7 '' '' -1982-01-29 00:00 267.0 '' '' -1982-01-30 00:00 284.5 '' '' -1982-01-31 00:00 289.1 '' '' -1982-02-01 00:00 284.8 '' '' -1982-02-02 00:00 279.7 '' '' -1982-02-03 00:00 272.9 '' '' -1982-02-04 00:00 252.8 '' '' -1982-02-05 00:00 245.2 '' '' -1982-02-06 00:00 245.2 '' '' -1982-02-07 00:00 239.9 '' '' -1982-02-08 00:00 245.1 '' '' -1982-02-09 00:00 231.7 '' '' -1982-02-10 00:00 213.7 '' '' -1982-02-11 00:00 211.1 '' '' -1982-02-12 00:00 204.0 '' '' -1982-02-13 00:00 194.9 '' '' -1982-02-14 00:00 185.3 '' '' -1982-02-15 00:00 180.3 '' '' -1982-02-16 00:00 170.5 '' '' -1982-02-17 00:00 162.5 '' '' -1982-02-18 00:00 165.7 '' '' -1982-02-19 00:00 170.9 '' '' -1982-02-20 00:00 171.3 '' '' -1982-02-21 00:00 165.2 '' '' -1982-02-22 00:00 163.7 '' '' -1982-02-23 00:00 173.1 '' '' -1982-02-24 00:00 185.9 '' '' -1982-02-25 00:00 184.1 '' '' -1982-02-26 00:00 204.0 '' '' -1982-02-27 00:00 222.1 '' '' -1982-02-28 00:00 224.0 '' '' -1982-03-01 00:00 231.3 '' '' -1982-03-02 00:00 228.3 '' '' -1982-03-03 00:00 230.1 '' '' -1982-03-04 00:00 238.3 '' '' -1982-03-05 00:00 245.4 '' '' -1982-03-06 00:00 230.0 '' '' -1982-03-07 00:00 228.3 '' '' -1982-03-08 00:00 207.1 '' '' -1982-03-09 00:00 192.2 '' '' -1982-03-10 00:00 178.9 '' '' -1982-03-11 00:00 178.2 '' '' -1982-03-12 00:00 181.2 '' '' -1982-03-13 00:00 185.5 '' '' -1982-03-14 00:00 201.3 '' '' -1982-03-15 00:00 207.6 '' '' -1982-03-16 00:00 227.7 '' '' -1982-03-17 00:00 230.4 '' '' -1982-03-18 00:00 226.8 '' '' -1982-03-19 00:00 219.7 '' '' -1982-03-20 00:00 217.0 '' '' -1982-03-21 00:00 212.4 '' '' -1982-03-22 00:00 213.7 '' '' -1982-03-23 00:00 202.4 '' '' -1982-03-24 00:00 189.0 '' '' -1982-03-25 00:00 189.9 '' '' -1982-03-26 00:00 192.8 '' '' -1982-03-27 00:00 195.4 '' '' -1982-03-28 00:00 200.6 '' '' -1982-03-29 00:00 198.0 '' '' -1982-03-30 00:00 194.5 '' '' -1982-03-31 00:00 184.1 '' '' -1982-04-01 00:00 172.2 '' '' -1982-04-02 00:00 172.0 '' '' -1982-04-03 00:00 169.9 '' '' -1982-04-04 00:00 158.2 '' '' -1982-04-05 00:00 159.9 '' '' -1982-04-06 00:00 165.2 '' '' -1982-04-07 00:00 164.0 '' '' -1982-04-08 00:00 162.1 '' '' -1982-04-09 00:00 167.3 '' '' -1982-04-10 00:00 177.1 '' '' -1982-04-11 00:00 178.7 '' '' -1982-04-12 00:00 177.5 '' '' -1982-04-13 00:00 170.9 '' '' -1982-04-14 00:00 157.9 '' '' -1982-04-15 00:00 152.2 '' '' -1982-04-16 00:00 148.2 '' '' -1982-04-17 00:00 145.9 '' '' -1982-04-18 00:00 147.0 '' '' -1982-04-19 00:00 145.1 '' '' -1982-04-20 00:00 144.2 '' '' -1982-04-21 00:00 145.2 '' '' -1982-04-22 00:00 156.9 '' '' -1982-04-23 00:00 175.2 '' '' -1982-04-24 00:00 181.0 '' '' -1982-04-25 00:00 182.6 '' '' -1982-04-26 00:00 178.3 '' '' -1982-04-27 00:00 167.3 '' '' -1982-04-28 00:00 161.0 '' '' -1982-04-29 00:00 155.6 '' '' -1982-04-30 00:00 149.8 '' '' -1982-05-01 00:00 151.7 '' '' -1982-05-02 00:00 147.4 '' '' -1982-05-03 00:00 147.7 '' '' -1982-05-04 00:00 144.7 '' '' -1982-05-05 00:00 148.7 '' '' -1982-05-06 00:00 153.0 '' '' -1982-05-07 00:00 151.0 '' '' -1982-05-08 00:00 150.8 '' '' -1982-05-09 00:00 139.8 '' '' -1982-05-10 00:00 130.7 '' '' -1982-05-11 00:00 132.3 '' '' -1982-05-12 00:00 132.3 '' '' -1982-05-13 00:00 129.8 '' '' -1982-05-14 00:00 132.2 '' '' -1982-05-15 00:00 132.1 '' '' -1982-05-16 00:00 139.0 '' '' -1982-05-17 00:00 142.2 '' '' -1982-05-18 00:00 146.8 '' '' -1982-05-19 00:00 155.9 '' '' -1982-05-20 00:00 155.6 '' '' -1982-05-21 00:00 165.4 '' '' -1982-05-22 00:00 158.8 '' '' -1982-05-23 00:00 155.7 '' '' -1982-05-24 00:00 144.8 '' '' -1982-05-25 00:00 145.7 '' '' -1982-05-26 00:00 158.0 '' '' -1982-05-27 00:00 171.5 '' '' -1982-05-28 00:00 171.3 '' '' -1982-05-29 00:00 170.9 '' '' -1982-05-30 00:00 142.8 '' '' -1982-05-31 00:00 136.7 '' '' -1982-06-01 00:00 134.2 '' '' -1982-06-02 00:00 135.1 '' '' -1982-06-03 00:00 141.5 '' '' -1982-06-04 00:00 158.2 '' '' -1982-06-05 00:00 156.6 '' '' -1982-06-06 00:00 149.6 '' '' -1982-06-07 00:00 158.6 '' '' -1982-06-08 00:00 167.3 '' '' -1982-06-09 00:00 177.4 '' '' -1982-06-10 00:00 196.0 '' '' -1982-06-11 00:00 224.2 '' '' -1982-06-12 00:00 238.3 '' '' -1982-06-13 00:00 240.2 '' '' -1982-06-14 00:00 240.8 '' '' -1982-06-15 00:00 235.8 '' '' -1982-06-16 00:00 210.6 '' '' -1982-06-17 00:00 206.0 '' '' -1982-06-18 00:00 200.7 '' '' -1982-06-19 00:00 207.5 '' '' -1982-06-20 00:00 207.1 '' '' -1982-06-21 00:00 210.7 '' '' -1982-06-22 00:00 197.2 '' '' -1982-06-23 00:00 187.3 '' '' -1982-06-24 00:00 168.2 '' '' -1982-06-25 00:00 159.1 '' '' -1982-06-26 00:00 142.3 '' '' -1982-06-27 00:00 127.6 '' '' -1982-06-28 00:00 123.1 '' '' -1982-06-29 00:00 111.7 '' '' -1982-06-30 00:00 108.5 '' '' -1982-07-01 00:00 106.5 '' '' -1982-07-02 00:00 106.9 '' '' -1982-07-03 00:00 109.4 '' '' -1982-07-04 00:00 111.5 '' '' -1982-07-05 00:00 114.1 '' '' -1982-07-06 00:00 121.3 '' '' -1982-07-07 00:00 128.2 '' '' -1982-07-08 00:00 150.3 '' '' -1982-07-09 00:00 176.6 '' '' -1982-07-10 00:00 203.5 '' '' -1982-07-11 00:00 226.4 '' '' -1982-07-12 00:00 239.7 '' '' -1982-07-13 00:00 252.6 '' '' -1982-07-14 00:00 269.2 '' '' -1982-07-15 00:00 274.0 '' '' -1982-07-16 00:00 269.4 '' '' -1982-07-17 00:00 273.3 '' '' -1982-07-18 00:00 247.2 '' '' -1982-07-19 00:00 234.7 '' '' -1982-07-20 00:00 196.5 '' '' -1982-07-21 00:00 173.7 '' '' -1982-07-22 00:00 149.5 '' '' -1982-07-23 00:00 128.5 '' '' -1982-07-24 00:00 117.8 '' '' -1982-07-25 00:00 108.2 '' '' -1982-07-26 00:00 102.1 '' '' -1982-07-27 00:00 97.8 '' '' -1982-07-28 00:00 96.4 '' '' -1982-07-29 00:00 97.5 '' '' -1982-07-30 00:00 112.4 '' '' -1982-07-31 00:00 114.4 '' '' -1982-08-01 00:00 123.4 '' '' -1982-08-02 00:00 138.2 '' '' -1982-08-03 00:00 153.5 '' '' -1982-08-04 00:00 167.3 '' '' -1982-08-05 00:00 180.9 '' '' -1982-08-06 00:00 201.2 '' '' -1982-08-07 00:00 219.6 '' '' -1982-08-08 00:00 217.5 '' '' -1982-08-09 00:00 212.5 '' '' -1982-08-10 00:00 209.5 '' '' -1982-08-11 00:00 205.0 '' '' -1982-08-12 00:00 195.2 '' '' -1982-08-13 00:00 182.9 '' '' -1982-08-14 00:00 176.8 '' '' -1982-08-15 00:00 173.0 '' '' -1982-08-16 00:00 161.4 '' '' -1982-08-17 00:00 165.1 '' '' -1982-08-18 00:00 166.4 '' '' -1982-08-19 00:00 159.2 '' '' -1982-08-20 00:00 144.7 '' '' -1982-08-21 00:00 138.6 '' '' -1982-08-22 00:00 138.8 '' '' -1982-08-23 00:00 141.2 '' '' -1982-08-24 00:00 142.9 '' '' -1982-08-25 00:00 158.5 '' '' -1982-08-26 00:00 166.4 '' '' -1982-08-27 00:00 180.4 '' '' -1982-08-28 00:00 181.4 '' '' -1982-08-29 00:00 183.4 '' '' -1982-08-30 00:00 174.5 '' '' -1982-08-31 00:00 175.0 '' '' -1982-09-01 00:00 184.3 '' '' -1982-09-02 00:00 168.7 '' '' -1982-09-03 00:00 171.0 '' '' -1982-09-04 00:00 188.1 '' '' -1982-09-05 00:00 179.4 '' '' -1982-09-06 00:00 172.1 '' '' -1982-09-07 00:00 176.8 '' '' -1982-09-08 00:00 178.5 '' '' -1982-09-09 00:00 179.2 '' '' -1982-09-10 00:00 165.6 '' '' -1982-09-11 00:00 158.3 '' '' -1982-09-12 00:00 152.5 '' '' -1982-09-13 00:00 151.3 '' '' -1982-09-14 00:00 147.4 '' '' -1982-09-15 00:00 149.0 '' '' -1982-09-16 00:00 147.3 '' '' -1982-09-17 00:00 147.0 '' '' -1982-09-18 00:00 143.2 '' '' -1982-09-19 00:00 142.6 '' '' -1982-09-20 00:00 146.9 '' '' -1982-09-21 00:00 145.4 '' '' -1982-09-22 00:00 146.2 '' '' -1982-09-23 00:00 152.6 '' '' -1982-09-24 00:00 165.4 '' '' -1982-09-25 00:00 170.3 '' '' -1982-09-26 00:00 187.3 '' '' -1982-09-27 00:00 191.4 '' '' -1982-09-28 00:00 196.9 '' '' -1982-09-29 00:00 204.6 '' '' -1982-09-30 00:00 202.4 '' '' -1982-10-01 00:00 205.2 '' '' -1982-10-02 00:00 209.4 '' '' -1982-10-03 00:00 197.0 '' '' -1982-10-04 00:00 182.3 '' '' -1982-10-05 00:00 163.9 '' '' -1982-10-06 00:00 151.9 '' '' -1982-10-07 00:00 140.2 '' '' -1982-10-08 00:00 136.9 '' '' -1982-10-09 00:00 137.4 '' '' -1982-10-10 00:00 134.8 '' '' -1982-10-11 00:00 137.3 '' '' -1982-10-12 00:00 136.4 '' '' -1982-10-13 00:00 143.9 '' '' -1982-10-14 00:00 140.4 '' '' -1982-10-15 00:00 134.1 '' '' -1982-10-16 00:00 129.8 '' '' -1982-10-17 00:00 130.1 '' '' -1982-10-18 00:00 132.8 '' '' -1982-10-19 00:00 136.7 '' '' -1982-10-20 00:00 146.2 '' '' -1982-10-21 00:00 161.4 '' '' -1982-10-22 00:00 168.2 '' '' -1982-10-23 00:00 177.3 '' '' -1982-10-24 00:00 190.9 '' '' -1982-10-25 00:00 196.8 '' '' -1982-10-26 00:00 193.5 '' '' -1982-10-27 00:00 187.7 '' '' -1982-10-28 00:00 181.4 '' '' -1982-10-29 00:00 170.9 '' '' -1982-10-30 00:00 166.7 '' '' -1982-10-31 00:00 165.1 '' '' -1982-11-01 00:00 159.6 '' '' -1982-11-02 00:00 154.5 '' '' -1982-11-03 00:00 147.4 '' '' -1982-11-04 00:00 143.4 '' '' -1982-11-05 00:00 136.4 '' '' -1982-11-06 00:00 142.1 '' '' -1982-11-07 00:00 142.3 '' '' -1982-11-08 00:00 144.8 '' '' -1982-11-09 00:00 147.5 '' '' -1982-11-10 00:00 152.9 '' '' -1982-11-11 00:00 154.1 '' '' -1982-11-12 00:00 164.9 '' '' -1982-11-13 00:00 161.2 '' '' -1982-11-14 00:00 159.5 '' '' -1982-11-15 00:00 157.0 '' '' -1982-11-16 00:00 163.3 '' '' -1982-11-17 00:00 158.0 '' '' -1982-11-18 00:00 170.2 '' '' -1982-11-19 00:00 182.3 '' '' -1982-11-20 00:00 189.2 '' '' -1982-11-21 00:00 200.9 '' '' -1982-11-22 00:00 231.1 '' '' -1982-11-23 00:00 196.1 '' '' -1982-11-24 00:00 172.9 '' '' -1982-11-25 00:00 164.8 '' '' -1982-11-26 00:00 168.8 '' '' -1982-11-27 00:00 158.6 '' '' -1982-11-28 00:00 160.3 '' '' -1982-11-29 00:00 161.4 '' '' -1982-11-30 00:00 164.8 '' '' -1982-12-01 00:00 167.8 '' '' -1982-12-02 00:00 166.3 '' '' -1982-12-03 00:00 181.6 '' '' -1982-12-04 00:00 194.5 '' '' -1982-12-05 00:00 195.9 '' '' -1982-12-06 00:00 210.4 '' '' -1982-12-07 00:00 244.3 '' '' -1982-12-08 00:00 241.7 '' '' -1982-12-09 00:00 258.6 '' '' -1982-12-10 00:00 273.5 '' '' -1982-12-11 00:00 259.3 '' '' -1982-12-12 00:00 251.1 '' '' -1982-12-13 00:00 239.0 '' '' -1982-12-14 00:00 235.6 '' '' -1982-12-15 00:00 221.9 '' '' -1982-12-16 00:00 213.2 '' '' -1982-12-17 00:00 200.5 '' '' -1982-12-18 00:00 186.5 '' '' -1982-12-19 00:00 176.8 '' '' -1982-12-20 00:00 159.2 '' '' -1982-12-21 00:00 149.4 '' '' -1982-12-22 00:00 150.1 '' '' -1982-12-23 00:00 157.0 '' '' -1982-12-24 00:00 166.8 '' '' -1982-12-25 00:00 170.6 '' '' -1982-12-26 00:00 168.7 '' '' -1982-12-27 00:00 166.2 '' '' -1982-12-28 00:00 157.0 '' '' -1982-12-29 00:00 147.3 '' '' -1982-12-30 00:00 142.5 '' '' -1982-12-31 00:00 134.4 '' '' -1983-01-01 00:00 131.4 '' '' -1983-01-02 00:00 131.4 '' '' -1983-01-03 00:00 136.2 '' '' -1983-01-04 00:00 138.2 '' '' -1983-01-05 00:00 154.6 '' '' -1983-01-06 00:00 161.6 '' '' -1983-01-07 00:00 163.3 '' '' -1983-01-08 00:00 155.9 '' '' -1983-01-09 00:00 150.0 '' '' -1983-01-10 00:00 144.2 '' '' -1983-01-11 00:00 139.3 '' '' -1983-01-12 00:00 135.7 '' '' -1983-01-13 00:00 135.1 '' '' -1983-01-14 00:00 137.2 '' '' -1983-01-15 00:00 141.0 '' '' -1983-01-16 00:00 140.2 '' '' -1983-01-17 00:00 138.0 '' '' -1983-01-18 00:00 134.8 '' '' -1983-01-19 00:00 127.4 '' '' -1983-01-20 00:00 120.5 '' '' -1983-01-21 00:00 116.1 '' '' -1983-01-22 00:00 113.5 '' '' -1983-01-23 00:00 115.4 '' '' -1983-01-24 00:00 114.1 '' '' -1983-01-25 00:00 122.7 '' '' -1983-01-26 00:00 132.6 '' '' -1983-01-27 00:00 133.6 '' '' -1983-01-28 00:00 140.6 '' '' -1983-01-29 00:00 148.9 '' '' -1983-01-30 00:00 154.8 '' '' -1983-01-31 00:00 161.9 '' '' -1983-02-01 00:00 162.6 '' '' -1983-02-02 00:00 156.5 '' '' -1983-02-03 00:00 145.5 '' '' -1983-02-04 00:00 156.8 '' '' -1983-02-05 00:00 154.3 '' '' -1983-02-06 00:00 152.3 '' '' -1983-02-07 00:00 142.2 '' '' -1983-02-08 00:00 133.3 '' '' -1983-02-09 00:00 121.9 '' '' -1983-02-10 00:00 113.4 '' '' -1983-02-11 00:00 106.9 '' '' -1983-02-12 00:00 99.8 '' '' -1983-02-13 00:00 95.5 '' '' -1983-02-14 00:00 91.7 '' '' -1983-02-15 00:00 88.5 '' '' -1983-02-16 00:00 89.7 '' '' -1983-02-17 00:00 91.9 '' '' -1983-02-18 00:00 97.2 '' '' -1983-02-19 00:00 94.6 '' '' -1983-02-20 00:00 97.3 '' '' -1983-02-21 00:00 101.6 '' '' -1983-02-22 00:00 106.2 '' '' -1983-02-23 00:00 112.0 '' '' -1983-02-24 00:00 114.3 '' '' -1983-02-25 00:00 120.3 '' '' -1983-02-26 00:00 126.2 '' '' -1983-02-27 00:00 138.3 '' '' -1983-02-28 00:00 137.6 '' '' -1983-03-01 00:00 145.4 '' '' -1983-03-02 00:00 138.7 '' '' -1983-03-03 00:00 141.0 '' '' -1983-03-04 00:00 143.7 '' '' -1983-03-05 00:00 146.6 '' '' -1983-03-06 00:00 139.3 '' '' -1983-03-07 00:00 132.3 '' '' -1983-03-08 00:00 128.1 '' '' -1983-03-09 00:00 122.0 '' '' -1983-03-10 00:00 115.1 '' '' -1983-03-11 00:00 103.0 '' '' -1983-03-12 00:00 99.5 '' '' -1983-03-13 00:00 95.8 '' '' -1983-03-14 00:00 95.9 '' '' -1983-03-15 00:00 100.6 '' '' -1983-03-16 00:00 107.8 '' '' -1983-03-17 00:00 114.5 '' '' -1983-03-18 00:00 117.7 '' '' -1983-03-19 00:00 118.3 '' '' -1983-03-20 00:00 120.7 '' '' -1983-03-21 00:00 118.8 '' '' -1983-03-22 00:00 117.2 '' '' -1983-03-23 00:00 116.2 '' '' -1983-03-24 00:00 117.1 '' '' -1983-03-25 00:00 114.2 '' '' -1983-03-26 00:00 114.7 '' '' -1983-03-27 00:00 109.6 '' '' -1983-03-28 00:00 104.9 '' '' -1983-03-29 00:00 98.9 '' '' -1983-03-30 00:00 100.7 '' '' -1983-03-31 00:00 98.7 '' '' -1983-04-01 00:00 100.7 '' '' -1983-04-02 00:00 101.2 '' '' -1983-04-03 00:00 101.4 '' '' -1983-04-04 00:00 100.8 '' '' -1983-04-05 00:00 98.7 '' '' -1983-04-06 00:00 99.5 '' '' -1983-04-07 00:00 102.2 '' '' -1983-04-08 00:00 104.1 '' '' -1983-04-09 00:00 106.1 '' '' -1983-04-10 00:00 103.3 '' '' -1983-04-11 00:00 104.4 '' '' -1983-04-12 00:00 107.7 '' '' -1983-04-13 00:00 109.1 '' '' -1983-04-14 00:00 111.7 '' '' -1983-04-15 00:00 103.6 '' '' -1983-04-16 00:00 105.1 '' '' -1983-04-17 00:00 113.5 '' '' -1983-04-18 00:00 120.7 '' '' -1983-04-19 00:00 125.0 '' '' -1983-04-20 00:00 127.4 '' '' -1983-04-21 00:00 133.3 '' '' -1983-04-22 00:00 139.7 '' '' -1983-04-23 00:00 140.4 '' '' -1983-04-24 00:00 142.7 '' '' -1983-04-25 00:00 145.6 '' '' -1983-04-26 00:00 146.8 '' '' -1983-04-27 00:00 149.6 '' '' -1983-04-28 00:00 156.4 '' '' -1983-04-29 00:00 148.4 '' '' -1983-04-30 00:00 147.2 '' '' -1983-05-01 00:00 142.0 '' '' -1983-05-02 00:00 145.4 '' '' -1983-05-03 00:00 139.4 '' '' -1983-05-04 00:00 132.9 '' '' -1983-05-05 00:00 130.8 '' '' -1983-05-06 00:00 125.8 '' '' -1983-05-07 00:00 117.4 '' '' -1983-05-08 00:00 127.0 '' '' -1983-05-09 00:00 132.2 '' '' -1983-05-10 00:00 143.5 '' '' -1983-05-11 00:00 159.3 '' '' -1983-05-12 00:00 160.4 '' '' -1983-05-13 00:00 154.4 '' '' -1983-05-14 00:00 153.5 '' '' -1983-05-15 00:00 145.7 '' '' -1983-05-16 00:00 134.0 '' '' -1983-05-17 00:00 131.7 '' '' -1983-05-18 00:00 137.6 '' '' -1983-05-19 00:00 146.8 '' '' -1983-05-20 00:00 151.8 '' '' -1983-05-21 00:00 149.8 '' '' -1983-05-22 00:00 152.0 '' '' -1983-05-23 00:00 143.7 '' '' -1983-05-24 00:00 140.5 '' '' -1983-05-25 00:00 138.8 '' '' -1983-05-26 00:00 132.3 '' '' -1983-05-27 00:00 130.5 '' '' -1983-05-28 00:00 133.1 '' '' -1983-05-29 00:00 139.0 '' '' -1983-05-30 00:00 135.4 '' '' -1983-05-31 00:00 138.0 '' '' -1983-06-01 00:00 131.3 '' '' -1983-06-02 00:00 139.0 '' '' -1983-06-03 00:00 139.3 '' '' -1983-06-04 00:00 149.2 '' '' -1983-06-05 00:00 167.9 '' '' -1983-06-06 00:00 191.4 '' '' -1983-06-07 00:00 179.5 '' '' -1983-06-08 00:00 173.7 '' '' -1983-06-09 00:00 159.5 '' '' -1983-06-10 00:00 150.5 '' '' -1983-06-11 00:00 139.2 '' '' -1983-06-12 00:00 134.5 '' '' -1983-06-13 00:00 128.3 '' '' -1983-06-14 00:00 126.4 '' '' -1983-06-15 00:00 128.7 '' '' -1983-06-16 00:00 128.8 '' '' -1983-06-17 00:00 130.7 '' '' -1983-06-18 00:00 130.5 '' '' -1983-06-19 00:00 133.8 '' '' -1983-06-20 00:00 136.9 '' '' -1983-06-21 00:00 144.0 '' '' -1983-06-22 00:00 148.9 '' '' -1983-06-23 00:00 149.8 '' '' -1983-06-24 00:00 141.7 '' '' -1983-06-25 00:00 141.4 '' '' -1983-06-26 00:00 144.1 '' '' -1983-06-27 00:00 137.1 '' '' -1983-06-28 00:00 129.4 '' '' -1983-06-29 00:00 128.9 '' '' -1983-06-30 00:00 126.8 '' '' -1983-07-01 00:00 124.1 '' '' -1983-07-02 00:00 125.4 '' '' -1983-07-03 00:00 131.5 '' '' -1983-07-04 00:00 137.2 '' '' -1983-07-05 00:00 132.1 '' '' -1983-07-06 00:00 132.4 '' '' -1983-07-07 00:00 132.7 '' '' -1983-07-08 00:00 127.9 '' '' -1983-07-09 00:00 123.1 '' '' -1983-07-10 00:00 123.1 '' '' -1983-07-11 00:00 125.7 '' '' -1983-07-12 00:00 124.7 '' '' -1983-07-13 00:00 123.5 '' '' -1983-07-14 00:00 124.4 '' '' -1983-07-15 00:00 124.6 '' '' -1983-07-16 00:00 121.3 '' '' -1983-07-17 00:00 120.0 '' '' -1983-07-18 00:00 116.4 '' '' -1983-07-19 00:00 119.5 '' '' -1983-07-20 00:00 125.1 '' '' -1983-07-21 00:00 128.1 '' '' -1983-07-22 00:00 138.9 '' '' -1983-07-23 00:00 132.9 '' '' -1983-07-24 00:00 136.3 '' '' -1983-07-25 00:00 136.7 '' '' -1983-07-26 00:00 128.9 '' '' -1983-07-27 00:00 123.1 '' '' -1983-07-28 00:00 127.1 '' '' -1983-07-29 00:00 138.5 '' '' -1983-07-30 00:00 144.3 '' '' -1983-07-31 00:00 153.1 '' '' -1983-08-01 00:00 151.1 '' '' -1983-08-02 00:00 145.4 '' '' -1983-08-03 00:00 139.4 '' '' -1983-08-04 00:00 136.5 '' '' -1983-08-05 00:00 136.5 '' '' -1983-08-06 00:00 142.0 '' '' -1983-08-07 00:00 141.9 '' '' -1983-08-08 00:00 141.0 '' '' -1983-08-09 00:00 142.9 '' '' -1983-08-10 00:00 151.6 '' '' -1983-08-11 00:00 151.3 '' '' -1983-08-12 00:00 156.7 '' '' -1983-08-13 00:00 147.3 '' '' -1983-08-14 00:00 141.6 '' '' -1983-08-15 00:00 135.8 '' '' -1983-08-16 00:00 132.1 '' '' -1983-08-17 00:00 126.8 '' '' -1983-08-18 00:00 122.2 '' '' -1983-08-19 00:00 117.7 '' '' -1983-08-20 00:00 118.7 '' '' -1983-08-21 00:00 114.2 '' '' -1983-08-22 00:00 110.8 '' '' -1983-08-23 00:00 110.8 '' '' -1983-08-24 00:00 108.7 '' '' -1983-08-25 00:00 104.2 '' '' -1983-08-26 00:00 105.8 '' '' -1983-08-27 00:00 103.7 '' '' -1983-08-28 00:00 102.8 '' '' -1983-08-29 00:00 105.7 '' '' -1983-08-30 00:00 104.0 '' '' -1983-08-31 00:00 104.2 '' '' -1983-09-01 00:00 110.5 '' '' -1983-09-02 00:00 110.9 '' '' -1983-09-03 00:00 106.4 '' '' -1983-09-04 00:00 110.5 '' '' -1983-09-05 00:00 117.6 '' '' -1983-09-06 00:00 120.7 '' '' -1983-09-07 00:00 118.6 '' '' -1983-09-08 00:00 118.4 '' '' -1983-09-09 00:00 115.3 '' '' -1983-09-10 00:00 109.7 '' '' -1983-09-11 00:00 110.5 '' '' -1983-09-12 00:00 104.9 '' '' -1983-09-13 00:00 104.4 '' '' -1983-09-14 00:00 105.2 '' '' -1983-09-15 00:00 106.3 '' '' -1983-09-16 00:00 106.3 '' '' -1983-09-17 00:00 105.1 '' '' -1983-09-18 00:00 102.5 '' '' -1983-09-19 00:00 101.2 '' '' -1983-09-20 00:00 100.4 '' '' -1983-09-21 00:00 103.0 '' '' -1983-09-22 00:00 106.0 '' '' -1983-09-23 00:00 112.6 '' '' -1983-09-24 00:00 111.8 '' '' -1983-09-25 00:00 110.5 '' '' -1983-09-26 00:00 114.6 '' '' -1983-09-27 00:00 119.8 '' '' -1983-09-28 00:00 114.8 '' '' -1983-09-29 00:00 114.5 '' '' -1983-09-30 00:00 113.0 '' '' -1983-10-01 00:00 117.5 '' '' -1983-10-02 00:00 120.4 '' '' -1983-10-03 00:00 123.1 '' '' -1983-10-04 00:00 125.1 '' '' -1983-10-05 00:00 126.6 '' '' -1983-10-06 00:00 132.7 '' '' -1983-10-07 00:00 133.9 '' '' -1983-10-08 00:00 131.1 '' '' -1983-10-09 00:00 130.4 '' '' -1983-10-10 00:00 133.6 '' '' -1983-10-11 00:00 138.3 '' '' -1983-10-12 00:00 133.7 '' '' -1983-10-13 00:00 133.5 '' '' -1983-10-14 00:00 131.5 '' '' -1983-10-15 00:00 127.0 '' '' -1983-10-16 00:00 117.2 '' '' -1983-10-17 00:00 110.9 '' '' -1983-10-18 00:00 103.6 '' '' -1983-10-19 00:00 105.2 '' '' -1983-10-20 00:00 99.1 '' '' -1983-10-21 00:00 89.3 '' '' -1983-10-22 00:00 87.2 '' '' -1983-10-23 00:00 87.8 '' '' -1983-10-24 00:00 88.6 '' '' -1983-10-25 00:00 89.2 '' '' -1983-10-26 00:00 89.1 '' '' -1983-10-27 00:00 88.9 '' '' -1983-10-28 00:00 90.4 '' '' -1983-10-29 00:00 90.7 '' '' -1983-10-30 00:00 92.6 '' '' -1983-10-31 00:00 95.5 '' '' -1983-11-01 00:00 98.3 '' '' -1983-11-02 00:00 97.6 '' '' -1983-11-03 00:00 96.9 '' '' -1983-11-04 00:00 103.1 '' '' -1983-11-05 00:00 105.1 '' '' -1983-11-06 00:00 106.8 '' '' -1983-11-07 00:00 108.5 '' '' -1983-11-08 00:00 103.5 '' '' -1983-11-09 00:00 99.2 '' '' -1983-11-10 00:00 100.8 '' '' -1983-11-11 00:00 96.7 '' '' -1983-11-12 00:00 89.6 '' '' -1983-11-13 00:00 91.9 '' '' -1983-11-14 00:00 91.0 '' '' -1983-11-15 00:00 90.9 '' '' -1983-11-16 00:00 90.6 '' '' -1983-11-17 00:00 85.6 '' '' -1983-11-18 00:00 84.4 '' '' -1983-11-19 00:00 82.3 '' '' -1983-11-20 00:00 80.3 '' '' -1983-11-21 00:00 79.3 '' '' -1983-11-22 00:00 80.1 '' '' -1983-11-23 00:00 78.2 '' '' -1983-11-24 00:00 78.8 '' '' -1983-11-25 00:00 79.2 '' '' -1983-11-26 00:00 80.4 '' '' -1983-11-27 00:00 84.4 '' '' -1983-11-28 00:00 86.6 '' '' -1983-11-29 00:00 89.4 '' '' -1983-11-30 00:00 90.0 '' '' -1983-12-01 00:00 90.5 '' '' -1983-12-02 00:00 88.9 '' '' -1983-12-03 00:00 88.5 '' '' -1983-12-04 00:00 91.9 '' '' -1983-12-05 00:00 92.0 '' '' -1983-12-06 00:00 97.1 '' '' -1983-12-07 00:00 98.6 '' '' -1983-12-08 00:00 98.3 '' '' -1983-12-09 00:00 108.2 '' '' -1983-12-10 00:00 108.0 '' '' -1983-12-11 00:00 101.7 '' '' -1983-12-12 00:00 101.1 '' '' -1983-12-13 00:00 100.8 '' '' -1983-12-14 00:00 96.5 '' '' -1983-12-15 00:00 92.2 '' '' -1983-12-16 00:00 93.5 '' '' -1983-12-17 00:00 92.0 '' '' -1983-12-18 00:00 90.1 '' '' -1983-12-19 00:00 86.2 '' '' -1983-12-20 00:00 83.6 '' '' -1983-12-21 00:00 82.3 '' '' -1983-12-22 00:00 82.9 '' '' -1983-12-23 00:00 83.0 '' '' -1983-12-24 00:00 83.1 '' '' -1983-12-25 00:00 82.4 '' '' -1983-12-26 00:00 82.9 '' '' -1983-12-27 00:00 83.5 '' '' -1983-12-28 00:00 80.7 '' '' -1983-12-29 00:00 81.1 '' '' -1983-12-30 00:00 81.3 '' '' -1983-12-31 00:00 83.8 '' '' -1984-01-01 00:00 84.3 '' '' -1984-01-02 00:00 87.4 '' '' -1984-01-03 00:00 89.5 '' '' -1984-01-04 00:00 91.0 '' '' -1984-01-05 00:00 88.2 '' '' -1984-01-06 00:00 85.6 '' '' -1984-01-07 00:00 86.5 '' '' -1984-01-08 00:00 92.3 '' '' -1984-01-09 00:00 94.4 '' '' -1984-01-10 00:00 95.2 '' '' -1984-01-11 00:00 96.8 '' '' -1984-01-12 00:00 101.1 '' '' -1984-01-13 00:00 102.1 '' '' -1984-01-14 00:00 99.2 '' '' -1984-01-15 00:00 97.8 '' '' -1984-01-16 00:00 96.6 '' '' -1984-01-17 00:00 95.2 '' '' -1984-01-18 00:00 95.0 '' '' -1984-01-19 00:00 93.4 '' '' -1984-01-20 00:00 102.2 '' '' -1984-01-21 00:00 103.3 '' '' -1984-01-22 00:00 110.5 '' '' -1984-01-23 00:00 113.3 '' '' -1984-01-24 00:00 126.4 '' '' -1984-01-25 00:00 146.8 '' '' -1984-01-26 00:00 164.8 '' '' -1984-01-27 00:00 172.3 '' '' -1984-01-28 00:00 168.9 '' '' -1984-01-29 00:00 174.6 '' '' -1984-01-30 00:00 161.5 '' '' -1984-01-31 00:00 169.3 '' '' -1984-02-01 00:00 154.6 '' '' -1984-02-02 00:00 142.0 '' '' -1984-02-03 00:00 131.4 '' '' -1984-02-04 00:00 126.0 '' '' -1984-02-05 00:00 114.2 '' '' -1984-02-06 00:00 111.8 '' '' -1984-02-07 00:00 113.6 '' '' -1984-02-08 00:00 127.2 '' '' -1984-02-09 00:00 139.9 '' '' -1984-02-10 00:00 136.7 '' '' -1984-02-11 00:00 141.1 '' '' -1984-02-12 00:00 135.8 '' '' -1984-02-13 00:00 128.4 '' '' -1984-02-14 00:00 120.3 '' '' -1984-02-15 00:00 113.4 '' '' -1984-02-16 00:00 114.5 '' '' -1984-02-17 00:00 116.5 '' '' -1984-02-18 00:00 122.2 '' '' -1984-02-19 00:00 128.4 '' '' -1984-02-20 00:00 134.6 '' '' -1984-02-21 00:00 143.8 '' '' -1984-02-22 00:00 158.0 '' '' -1984-02-23 00:00 166.1 '' '' -1984-02-24 00:00 172.9 '' '' -1984-02-25 00:00 169.4 '' '' -1984-02-26 00:00 164.2 '' '' -1984-02-27 00:00 154.3 '' '' -1984-02-28 00:00 148.8 '' '' -1984-02-29 00:00 148.1 '' '' -1984-03-01 00:00 143.6 '' '' -1984-03-02 00:00 138.2 '' '' -1984-03-03 00:00 122.5 '' '' -1984-03-04 00:00 114.4 '' '' -1984-03-05 00:00 109.3 '' '' -1984-03-06 00:00 109.5 '' '' -1984-03-07 00:00 105.0 '' '' -1984-03-08 00:00 103.8 '' '' -1984-03-09 00:00 102.4 '' '' -1984-03-10 00:00 98.8 '' '' -1984-03-11 00:00 98.6 '' '' -1984-03-12 00:00 102.3 '' '' -1984-03-13 00:00 114.7 '' '' -1984-03-14 00:00 121.1 '' '' -1984-03-15 00:00 134.4 '' '' -1984-03-16 00:00 124.0 '' '' -1984-03-17 00:00 129.1 '' '' -1984-03-18 00:00 125.8 '' '' -1984-03-19 00:00 126.5 '' '' -1984-03-20 00:00 126.3 '' '' -1984-03-21 00:00 122.4 '' '' -1984-03-22 00:00 122.7 '' '' -1984-03-23 00:00 115.1 '' '' -1984-03-24 00:00 113.0 '' '' -1984-03-25 00:00 111.6 '' '' -1984-03-26 00:00 120.2 '' '' -1984-03-27 00:00 129.1 '' '' -1984-03-28 00:00 135.9 '' '' -1984-03-29 00:00 138.1 '' '' -1984-03-30 00:00 143.8 '' '' -1984-03-31 00:00 143.7 '' '' -1984-04-01 00:00 135.7 '' '' -1984-04-02 00:00 134.6 '' '' -1984-04-03 00:00 128.8 '' '' -1984-04-04 00:00 129.5 '' '' -1984-04-05 00:00 118.7 '' '' -1984-04-06 00:00 112.1 '' '' -1984-04-07 00:00 107.8 '' '' -1984-04-08 00:00 100.7 '' '' -1984-04-09 00:00 94.9 '' '' -1984-04-10 00:00 93.9 '' '' -1984-04-11 00:00 97.3 '' '' -1984-04-12 00:00 107.2 '' '' -1984-04-13 00:00 113.7 '' '' -1984-04-14 00:00 118.8 '' '' -1984-04-15 00:00 119.7 '' '' -1984-04-16 00:00 117.2 '' '' -1984-04-17 00:00 122.9 '' '' -1984-04-18 00:00 119.9 '' '' -1984-04-19 00:00 112.5 '' '' -1984-04-20 00:00 124.1 '' '' -1984-04-21 00:00 127.7 '' '' -1984-04-22 00:00 130.8 '' '' -1984-04-23 00:00 136.6 '' '' -1984-04-24 00:00 142.9 '' '' -1984-04-25 00:00 152.4 '' '' -1984-04-26 00:00 174.0 '' '' -1984-04-27 00:00 183.7 '' '' -1984-04-28 00:00 182.6 '' '' -1984-04-29 00:00 178.2 '' '' -1984-04-30 00:00 170.8 '' '' -1984-05-01 00:00 153.7 '' '' -1984-05-02 00:00 139.3 '' '' -1984-05-03 00:00 123.1 '' '' -1984-05-04 00:00 113.5 '' '' -1984-05-05 00:00 114.9 '' '' -1984-05-06 00:00 108.1 '' '' -1984-05-07 00:00 118.3 '' '' -1984-05-08 00:00 121.9 '' '' -1984-05-09 00:00 138.3 '' '' -1984-05-10 00:00 150.9 '' '' -1984-05-11 00:00 147.9 '' '' -1984-05-12 00:00 148.2 '' '' -1984-05-13 00:00 151.4 '' '' -1984-05-14 00:00 146.9 '' '' -1984-05-15 00:00 139.6 '' '' -1984-05-16 00:00 137.3 '' '' -1984-05-17 00:00 130.1 '' '' -1984-05-18 00:00 131.9 '' '' -1984-05-19 00:00 137.6 '' '' -1984-05-20 00:00 138.0 '' '' -1984-05-21 00:00 145.3 '' '' -1984-05-22 00:00 130.1 '' '' -1984-05-23 00:00 130.0 '' '' -1984-05-24 00:00 126.9 '' '' -1984-05-25 00:00 125.7 '' '' -1984-05-26 00:00 121.0 '' '' -1984-05-27 00:00 120.3 '' '' -1984-05-28 00:00 118.5 '' '' -1984-05-29 00:00 121.0 '' '' -1984-05-30 00:00 119.7 '' '' -1984-05-31 00:00 115.9 '' '' -1984-06-01 00:00 116.1 '' '' -1984-06-02 00:00 111.3 '' '' -1984-06-03 00:00 109.6 '' '' -1984-06-04 00:00 106.8 '' '' -1984-06-05 00:00 104.6 '' '' -1984-06-06 00:00 98.9 '' '' -1984-06-07 00:00 97.3 '' '' -1984-06-08 00:00 94.6 '' '' -1984-06-09 00:00 93.6 '' '' -1984-06-10 00:00 92.3 '' '' -1984-06-11 00:00 93.2 '' '' -1984-06-12 00:00 93.0 '' '' -1984-06-13 00:00 98.6 '' '' -1984-06-14 00:00 110.2 '' '' -1984-06-15 00:00 116.5 '' '' -1984-06-16 00:00 110.3 '' '' -1984-06-17 00:00 109.5 '' '' -1984-06-18 00:00 108.9 '' '' -1984-06-19 00:00 107.8 '' '' -1984-06-20 00:00 106.6 '' '' -1984-06-21 00:00 103.4 '' '' -1984-06-22 00:00 104.6 '' '' -1984-06-23 00:00 105.3 '' '' -1984-06-24 00:00 103.6 '' '' -1984-06-25 00:00 104.6 '' '' -1984-06-26 00:00 100.1 '' '' -1984-06-27 00:00 101.5 '' '' -1984-06-28 00:00 99.5 '' '' -1984-06-29 00:00 100.3 '' '' -1984-06-30 00:00 101.1 '' '' -1984-07-01 00:00 101.7 '' '' -1984-07-02 00:00 103.6 '' '' -1984-07-03 00:00 104.8 '' '' -1984-07-04 00:00 105.7 '' '' -1984-07-05 00:00 104.4 '' '' -1984-07-06 00:00 100.3 '' '' -1984-07-07 00:00 100.1 '' '' -1984-07-08 00:00 101.1 '' '' -1984-07-09 00:00 104.5 '' '' -1984-07-10 00:00 101.3 '' '' -1984-07-11 00:00 96.8 '' '' -1984-07-12 00:00 94.7 '' '' -1984-07-13 00:00 92.6 '' '' -1984-07-14 00:00 92.2 '' '' -1984-07-15 00:00 92.2 '' '' -1984-07-16 00:00 90.1 '' '' -1984-07-17 00:00 87.3 '' '' -1984-07-18 00:00 85.5 '' '' -1984-07-19 00:00 84.7 '' '' -1984-07-20 00:00 84.8 '' '' -1984-07-21 00:00 86.7 '' '' -1984-07-22 00:00 86.3 '' '' -1984-07-23 00:00 87.3 '' '' -1984-07-24 00:00 86.8 '' '' -1984-07-25 00:00 85.9 '' '' -1984-07-26 00:00 83.4 '' '' -1984-07-27 00:00 83.0 '' '' -1984-07-28 00:00 82.5 '' '' -1984-07-29 00:00 82.3 '' '' -1984-07-30 00:00 82.2 '' '' -1984-07-31 00:00 83.0 '' '' -1984-08-01 00:00 84.0 '' '' -1984-08-02 00:00 86.3 '' '' -1984-08-03 00:00 88.4 '' '' -1984-08-04 00:00 85.7 '' '' -1984-08-05 00:00 85.7 '' '' -1984-08-06 00:00 89.9 '' '' -1984-08-07 00:00 92.4 '' '' -1984-08-08 00:00 94.0 '' '' -1984-08-09 00:00 94.4 '' '' -1984-08-10 00:00 95.4 '' '' -1984-08-11 00:00 90.8 '' '' -1984-08-12 00:00 88.0 '' '' -1984-08-13 00:00 86.5 '' '' -1984-08-14 00:00 84.0 '' '' -1984-08-15 00:00 82.6 '' '' -1984-08-16 00:00 83.1 '' '' -1984-08-17 00:00 81.0 '' '' -1984-08-18 00:00 79.1 '' '' -1984-08-19 00:00 76.2 '' '' -1984-08-20 00:00 75.6 '' '' -1984-08-21 00:00 77.2 '' '' -1984-08-22 00:00 75.7 '' '' -1984-08-23 00:00 76.0 '' '' -1984-08-24 00:00 81.6 '' '' -1984-08-25 00:00 83.0 '' '' -1984-08-26 00:00 87.7 '' '' -1984-08-27 00:00 90.4 '' '' -1984-08-28 00:00 88.6 '' '' -1984-08-29 00:00 90.3 '' '' -1984-08-30 00:00 91.8 '' '' -1984-08-31 00:00 93.1 '' '' -1984-09-01 00:00 94.1 '' '' -1984-09-02 00:00 93.2 '' '' -1984-09-03 00:00 94.5 '' '' -1984-09-04 00:00 91.9 '' '' -1984-09-05 00:00 89.8 '' '' -1984-09-06 00:00 85.9 '' '' -1984-09-07 00:00 85.2 '' '' -1984-09-08 00:00 83.4 '' '' -1984-09-09 00:00 80.6 '' '' -1984-09-10 00:00 79.1 '' '' -1984-09-11 00:00 77.8 '' '' -1984-09-12 00:00 76.5 '' '' -1984-09-13 00:00 75.0 '' '' -1984-09-14 00:00 74.5 '' '' -1984-09-15 00:00 73.3 '' '' -1984-09-16 00:00 73.4 '' '' -1984-09-17 00:00 74.6 '' '' -1984-09-18 00:00 73.8 '' '' -1984-09-19 00:00 74.6 '' '' -1984-09-20 00:00 74.1 '' '' -1984-09-21 00:00 75.1 '' '' -1984-09-22 00:00 75.9 '' '' -1984-09-23 00:00 76.1 '' '' -1984-09-24 00:00 76.2 '' '' -1984-09-25 00:00 74.6 '' '' -1984-09-26 00:00 74.3 '' '' -1984-09-27 00:00 73.5 '' '' -1984-09-28 00:00 73.1 '' '' -1984-09-29 00:00 71.7 '' '' -1984-09-30 00:00 72.4 '' '' -1984-10-01 00:00 72.0 '' '' -1984-10-02 00:00 74.8 '' '' -1984-10-03 00:00 75.2 '' '' -1984-10-04 00:00 75.2 '' '' -1984-10-05 00:00 74.0 '' '' -1984-10-06 00:00 73.2 '' '' -1984-10-07 00:00 73.5 '' '' -1984-10-08 00:00 74.5 '' '' -1984-10-09 00:00 73.5 '' '' -1984-10-10 00:00 74.1 '' '' -1984-10-11 00:00 74.3 '' '' -1984-10-12 00:00 73.9 '' '' -1984-10-13 00:00 74.7 '' '' -1984-10-14 00:00 73.2 '' '' -1984-10-15 00:00 76.4 '' '' -1984-10-16 00:00 76.6 '' '' -1984-10-17 00:00 76.2 '' '' -1984-10-18 00:00 76.5 '' '' -1984-10-19 00:00 74.2 '' '' -1984-10-20 00:00 73.5 '' '' -1984-10-21 00:00 73.2 '' '' -1984-10-22 00:00 74.5 '' '' -1984-10-23 00:00 72.7 '' '' -1984-10-24 00:00 70.8 '' '' -1984-10-25 00:00 70.2 '' '' -1984-10-26 00:00 69.4 '' '' -1984-10-27 00:00 68.6 '' '' -1984-10-28 00:00 69.3 '' '' -1984-10-29 00:00 68.2 '' '' -1984-10-30 00:00 68.8 '' '' -1984-10-31 00:00 69.8 '' '' -1984-11-01 00:00 69.5 '' '' -1984-11-02 00:00 70.1 '' '' -1984-11-03 00:00 72.0 '' '' -1984-11-04 00:00 72.2 '' '' -1984-11-05 00:00 71.7 '' '' -1984-11-06 00:00 71.0 '' '' -1984-11-07 00:00 70.1 '' '' -1984-11-08 00:00 70.5 '' '' -1984-11-09 00:00 72.7 '' '' -1984-11-10 00:00 75.8 '' '' -1984-11-11 00:00 73.1 '' '' -1984-11-12 00:00 72.8 '' '' -1984-11-13 00:00 71.6 '' '' -1984-11-14 00:00 72.0 '' '' -1984-11-15 00:00 72.9 '' '' -1984-11-16 00:00 70.7 '' '' -1984-11-17 00:00 71.0 '' '' -1984-11-18 00:00 71.7 '' '' -1984-11-19 00:00 72.3 '' '' -1984-11-20 00:00 74.8 '' '' -1984-11-21 00:00 78.3 '' '' -1984-11-22 00:00 78.2 '' '' -1984-11-23 00:00 79.3 '' '' -1984-11-24 00:00 81.1 '' '' -1984-11-25 00:00 83.1 '' '' -1984-11-26 00:00 82.5 '' '' -1984-11-27 00:00 82.5 '' '' -1984-11-28 00:00 81.1 '' '' -1984-11-29 00:00 77.1 '' '' -1984-11-30 00:00 76.4 '' '' -1984-12-01 00:00 77.0 '' '' -1984-12-02 00:00 76.8 '' '' -1984-12-03 00:00 77.9 '' '' -1984-12-04 00:00 75.9 '' '' -1984-12-05 00:00 73.4 '' '' -1984-12-06 00:00 73.0 '' '' -1984-12-07 00:00 72.7 '' '' -1984-12-08 00:00 74.1 '' '' -1984-12-09 00:00 74.5 '' '' -1984-12-10 00:00 75.7 '' '' -1984-12-11 00:00 78.9 '' '' -1984-12-12 00:00 77.8 '' '' -1984-12-13 00:00 76.2 '' '' -1984-12-14 00:00 75.8 '' '' -1984-12-15 00:00 74.9 '' '' -1984-12-16 00:00 74.2 '' '' -1984-12-17 00:00 72.6 '' '' -1984-12-18 00:00 70.2 '' '' -1984-12-19 00:00 71.0 '' '' -1984-12-20 00:00 69.9 '' '' -1984-12-21 00:00 69.7 '' '' -1984-12-22 00:00 70.7 '' '' -1984-12-23 00:00 71.3 '' '' -1984-12-24 00:00 71.8 '' '' -1984-12-25 00:00 72.2 '' '' -1984-12-26 00:00 72.3 '' '' -1984-12-27 00:00 72.0 '' '' -1984-12-28 00:00 72.2 '' '' -1984-12-29 00:00 72.1 '' '' -1984-12-30 00:00 71.4 '' '' -1984-12-31 00:00 70.0 '' '' -1985-01-01 00:00 68.4 '' '' -1985-01-02 00:00 67.8 '' '' -1985-01-03 00:00 67.7 '' '' -1985-01-04 00:00 67.8 '' '' -1985-01-05 00:00 67.0 '' '' -1985-01-06 00:00 67.9 '' '' -1985-01-07 00:00 68.1 '' '' -1985-01-08 00:00 67.4 '' '' -1985-01-09 00:00 68.1 '' '' -1985-01-10 00:00 67.4 '' '' -1985-01-11 00:00 67.7 '' '' -1985-01-12 00:00 68.4 '' '' -1985-01-13 00:00 72.6 '' '' -1985-01-14 00:00 72.3 '' '' -1985-01-15 00:00 72.4 '' '' -1985-01-16 00:00 74.7 '' '' -1985-01-17 00:00 75.8 '' '' -1985-01-18 00:00 74.1 '' '' -1985-01-19 00:00 75.4 '' '' -1985-01-20 00:00 81.7 '' '' -1985-01-21 00:00 84.9 '' '' -1985-01-22 00:00 85.3 '' '' -1985-01-23 00:00 82.5 '' '' -1985-01-24 00:00 78.2 '' '' -1985-01-25 00:00 73.9 '' '' -1985-01-26 00:00 71.0 '' '' -1985-01-27 00:00 69.5 '' '' -1985-01-28 00:00 69.6 '' '' -1985-01-29 00:00 68.7 '' '' -1985-01-30 00:00 68.3 '' '' -1985-01-31 00:00 69.9 '' '' -1985-02-01 00:00 72.2 '' '' -1985-02-02 00:00 73.8 '' '' -1985-02-03 00:00 73.6 '' '' -1985-02-04 00:00 70.9 '' '' -1985-02-05 00:00 71.2 '' '' -1985-02-06 00:00 70.6 '' '' -1985-02-07 00:00 70.3 '' '' -1985-02-08 00:00 72.5 '' '' -1985-02-09 00:00 73.2 '' '' -1985-02-10 00:00 73.6 '' '' -1985-02-11 00:00 73.2 '' '' -1985-02-12 00:00 72.3 '' '' -1985-02-13 00:00 70.8 '' '' -1985-02-14 00:00 70.6 '' '' -1985-02-15 00:00 70.2 '' '' -1985-02-16 00:00 69.8 '' '' -1985-02-17 00:00 70.9 '' '' -1985-02-18 00:00 73.4 '' '' -1985-02-19 00:00 76.1 '' '' -1985-02-20 00:00 75.0 '' '' -1985-02-21 00:00 74.2 '' '' -1985-02-22 00:00 73.3 '' '' -1985-02-23 00:00 71.7 '' '' -1985-02-24 00:00 70.5 '' '' -1985-02-25 00:00 70.1 '' '' -1985-02-26 00:00 69.7 '' '' -1985-02-27 00:00 68.9 '' '' -1985-02-28 00:00 69.7 '' '' -1985-03-01 00:00 69.3 '' '' -1985-03-02 00:00 69.1 '' '' -1985-03-03 00:00 69.0 '' '' -1985-03-04 00:00 68.6 '' '' -1985-03-05 00:00 67.5 '' '' -1985-03-06 00:00 68.1 '' '' -1985-03-07 00:00 68.0 '' '' -1985-03-08 00:00 68.7 '' '' -1985-03-09 00:00 68.7 '' '' -1985-03-10 00:00 68.0 '' '' -1985-03-11 00:00 69.6 '' '' -1985-03-12 00:00 69.3 '' '' -1985-03-13 00:00 69.5 '' '' -1985-03-14 00:00 69.5 '' '' -1985-03-15 00:00 69.6 '' '' -1985-03-16 00:00 70.1 '' '' -1985-03-17 00:00 72.1 '' '' -1985-03-18 00:00 74.6 '' '' -1985-03-19 00:00 74.2 '' '' -1985-03-20 00:00 74.2 '' '' -1985-03-21 00:00 76.1 '' '' -1985-03-22 00:00 75.9 '' '' -1985-03-23 00:00 77.3 '' '' -1985-03-24 00:00 79.6 '' '' -1985-03-25 00:00 78.5 '' '' -1985-03-26 00:00 79.7 '' '' -1985-03-27 00:00 77.4 '' '' -1985-03-28 00:00 77.7 '' '' -1985-03-29 00:00 76.7 '' '' -1985-03-30 00:00 75.8 '' '' -1985-03-31 00:00 76.4 '' '' -1985-04-01 00:00 72.2 '' '' -1985-04-02 00:00 72.6 '' '' -1985-04-03 00:00 72.5 '' '' -1985-04-04 00:00 71.9 '' '' -1985-04-05 00:00 71.2 '' '' -1985-04-06 00:00 70.5 '' '' -1985-04-07 00:00 70.3 '' '' -1985-04-08 00:00 69.9 '' '' -1985-04-09 00:00 69.4 '' '' -1985-04-10 00:00 69.7 '' '' -1985-04-11 00:00 69.0 '' '' -1985-04-12 00:00 69.6 '' '' -1985-04-13 00:00 69.8 '' '' -1985-04-14 00:00 70.6 '' '' -1985-04-15 00:00 70.0 '' '' -1985-04-16 00:00 69.4 '' '' -1985-04-17 00:00 70.2 '' '' -1985-04-18 00:00 71.7 '' '' -1985-04-19 00:00 71.7 '' '' -1985-04-20 00:00 72.3 '' '' -1985-04-21 00:00 77.9 '' '' -1985-04-22 00:00 89.8 '' '' -1985-04-23 00:00 93.3 '' '' -1985-04-24 00:00 89.0 '' '' -1985-04-25 00:00 95.2 '' '' -1985-04-26 00:00 88.3 '' '' -1985-04-27 00:00 80.6 '' '' -1985-04-28 00:00 78.1 '' '' -1985-04-29 00:00 83.2 '' '' -1985-04-30 00:00 80.8 '' '' -1985-05-01 00:00 80.6 '' '' -1985-05-02 00:00 76.5 '' '' -1985-05-03 00:00 72.6 '' '' -1985-05-04 00:00 70.8 '' '' -1985-05-05 00:00 71.4 '' '' -1985-05-06 00:00 75.0 '' '' -1985-05-07 00:00 79.1 '' '' -1985-05-08 00:00 83.7 '' '' -1985-05-09 00:00 89.6 '' '' -1985-05-10 00:00 91.7 '' '' -1985-05-11 00:00 89.9 '' '' -1985-05-12 00:00 92.1 '' '' -1985-05-13 00:00 91.9 '' '' -1985-05-14 00:00 90.7 '' '' -1985-05-15 00:00 92.0 '' '' -1985-05-16 00:00 95.5 '' '' -1985-05-17 00:00 92.3 '' '' -1985-05-18 00:00 92.7 '' '' -1985-05-19 00:00 89.6 '' '' -1985-05-20 00:00 86.7 '' '' -1985-05-21 00:00 84.4 '' '' -1985-05-22 00:00 82.7 '' '' -1985-05-23 00:00 80.0 '' '' -1985-05-24 00:00 78.3 '' '' -1985-05-25 00:00 77.2 '' '' -1985-05-26 00:00 75.5 '' '' -1985-05-27 00:00 74.6 '' '' -1985-05-28 00:00 72.7 '' '' -1985-05-29 00:00 72.5 '' '' -1985-05-30 00:00 71.4 '' '' -1985-05-31 00:00 69.6 '' '' -1985-06-01 00:00 69.5 '' '' -1985-06-02 00:00 72.4 '' '' -1985-06-03 00:00 74.6 '' '' -1985-06-04 00:00 77.5 '' '' -1985-06-05 00:00 84.3 '' '' -1985-06-06 00:00 87.4 '' '' -1985-06-07 00:00 88.4 '' '' -1985-06-08 00:00 88.9 '' '' -1985-06-09 00:00 89.8 '' '' -1985-06-10 00:00 91.7 '' '' -1985-06-11 00:00 91.2 '' '' -1985-06-12 00:00 89.8 '' '' -1985-06-13 00:00 89.2 '' '' -1985-06-14 00:00 85.3 '' '' -1985-06-15 00:00 83.8 '' '' -1985-06-16 00:00 80.9 '' '' -1985-06-17 00:00 77.3 '' '' -1985-06-18 00:00 73.8 '' '' -1985-06-19 00:00 72.2 '' '' -1985-06-20 00:00 71.9 '' '' -1985-06-21 00:00 71.5 '' '' -1985-06-22 00:00 71.6 '' '' -1985-06-23 00:00 71.8 '' '' -1985-06-24 00:00 70.8 '' '' -1985-06-25 00:00 71.0 '' '' -1985-06-26 00:00 70.0 '' '' -1985-06-27 00:00 70.2 '' '' -1985-06-28 00:00 71.0 '' '' -1985-06-29 00:00 72.3 '' '' -1985-06-30 00:00 74.8 '' '' -1985-07-01 00:00 76.9 '' '' -1985-07-02 00:00 79.1 '' '' -1985-07-03 00:00 81.3 '' '' -1985-07-04 00:00 80.4 '' '' -1985-07-05 00:00 83.3 '' '' -1985-07-06 00:00 87.5 '' '' -1985-07-07 00:00 97.7 '' '' -1985-07-08 00:00 96.7 '' '' -1985-07-09 00:00 100.9 '' '' -1985-07-10 00:00 104.6 '' '' -1985-07-11 00:00 97.3 '' '' -1985-07-12 00:00 92.9 '' '' -1985-07-13 00:00 85.5 '' '' -1985-07-14 00:00 76.4 '' '' -1985-07-15 00:00 73.0 '' '' -1985-07-16 00:00 71.9 '' '' -1985-07-17 00:00 71.9 '' '' -1985-07-18 00:00 71.8 '' '' -1985-07-19 00:00 71.7 '' '' -1985-07-20 00:00 71.7 '' '' -1985-07-21 00:00 71.2 '' '' -1985-07-22 00:00 71.0 '' '' -1985-07-23 00:00 71.1 '' '' -1985-07-24 00:00 71.0 '' '' -1985-07-25 00:00 75.6 '' '' -1985-07-26 00:00 77.4 '' '' -1985-07-27 00:00 79.2 '' '' -1985-07-28 00:00 81.2 '' '' -1985-07-29 00:00 83.5 '' '' -1985-07-30 00:00 83.8 '' '' -1985-07-31 00:00 82.4 '' '' -1985-08-01 00:00 80.5 '' '' -1985-08-02 00:00 80.4 '' '' -1985-08-03 00:00 79.2 '' '' -1985-08-04 00:00 79.3 '' '' -1985-08-05 00:00 78.5 '' '' -1985-08-06 00:00 77.9 '' '' -1985-08-07 00:00 79.5 '' '' -1985-08-08 00:00 78.5 '' '' -1985-08-09 00:00 74.9 '' '' -1985-08-10 00:00 72.8 '' '' -1985-08-11 00:00 68.4 '' '' -1985-08-12 00:00 69.7 '' '' -1985-08-13 00:00 68.9 '' '' -1985-08-14 00:00 69.3 '' '' -1985-08-15 00:00 69.0 '' '' -1985-08-16 00:00 68.2 '' '' -1985-08-17 00:00 67.9 '' '' -1985-08-18 00:00 68.6 '' '' -1985-08-19 00:00 69.1 '' '' -1985-08-20 00:00 70.6 '' '' -1985-08-21 00:00 70.4 '' '' -1985-08-22 00:00 72.7 '' '' -1985-08-23 00:00 72.9 '' '' -1985-08-24 00:00 72.1 '' '' -1985-08-25 00:00 72.5 '' '' -1985-08-26 00:00 72.3 '' '' -1985-08-27 00:00 73.1 '' '' -1985-08-28 00:00 73.1 '' '' -1985-08-29 00:00 73.1 '' '' -1985-08-30 00:00 73.9 '' '' -1985-08-31 00:00 74.1 '' '' -1985-09-01 00:00 73.0 '' '' -1985-09-02 00:00 72.8 '' '' -1985-09-03 00:00 73.1 '' '' -1985-09-04 00:00 73.5 '' '' -1985-09-05 00:00 72.2 '' '' -1985-09-06 00:00 72.5 '' '' -1985-09-07 00:00 70.8 '' '' -1985-09-08 00:00 70.3 '' '' -1985-09-09 00:00 70.6 '' '' -1985-09-10 00:00 70.3 '' '' -1985-09-11 00:00 69.2 '' '' -1985-09-12 00:00 68.5 '' '' -1985-09-13 00:00 70.7 '' '' -1985-09-14 00:00 70.4 '' '' -1985-09-15 00:00 71.1 '' '' -1985-09-16 00:00 70.3 '' '' -1985-09-17 00:00 70.0 '' '' -1985-09-18 00:00 70.4 '' '' -1985-09-19 00:00 70.7 '' '' -1985-09-20 00:00 69.8 '' '' -1985-09-21 00:00 69.6 '' '' -1985-09-22 00:00 69.8 '' '' -1985-09-23 00:00 69.2 '' '' -1985-09-24 00:00 69.0 '' '' -1985-09-25 00:00 68.7 '' '' -1985-09-26 00:00 68.4 '' '' -1985-09-27 00:00 67.7 '' '' -1985-09-28 00:00 67.8 '' '' -1985-09-29 00:00 68.3 '' '' -1985-09-30 00:00 68.3 '' '' -1985-10-01 00:00 68.3 '' '' -1985-10-02 00:00 67.5 '' '' -1985-10-03 00:00 68.7 '' '' -1985-10-04 00:00 68.3 '' '' -1985-10-05 00:00 67.0 '' '' -1985-10-06 00:00 66.0 '' '' -1985-10-07 00:00 65.9 '' '' -1985-10-08 00:00 65.8 '' '' -1985-10-09 00:00 66.0 '' '' -1985-10-10 00:00 66.7 '' '' -1985-10-11 00:00 67.7 '' '' -1985-10-12 00:00 66.9 '' '' -1985-10-13 00:00 66.7 '' '' -1985-10-14 00:00 69.8 '' '' -1985-10-15 00:00 71.7 '' '' -1985-10-16 00:00 73.2 '' '' -1985-10-17 00:00 75.5 '' '' -1985-10-18 00:00 75.5 '' '' -1985-10-19 00:00 77.7 '' '' -1985-10-20 00:00 79.4 '' '' -1985-10-21 00:00 84.7 '' '' -1985-10-22 00:00 94.3 '' '' -1985-10-23 00:00 93.2 '' '' -1985-10-24 00:00 92.5 '' '' -1985-10-25 00:00 88.5 '' '' -1985-10-26 00:00 83.0 '' '' -1985-10-27 00:00 78.5 '' '' -1985-10-28 00:00 76.7 '' '' -1985-10-29 00:00 73.6 '' '' -1985-10-30 00:00 70.5 '' '' -1985-10-31 00:00 69.5 '' '' -1985-11-01 00:00 69.0 '' '' -1985-11-02 00:00 68.8 '' '' -1985-11-03 00:00 68.0 '' '' -1985-11-04 00:00 67.6 '' '' -1985-11-05 00:00 68.5 '' '' -1985-11-06 00:00 70.0 '' '' -1985-11-07 00:00 71.8 '' '' -1985-11-08 00:00 73.7 '' '' -1985-11-09 00:00 72.9 '' '' -1985-11-10 00:00 72.5 '' '' -1985-11-11 00:00 74.7 '' '' -1985-11-12 00:00 74.7 '' '' -1985-11-13 00:00 74.3 '' '' -1985-11-14 00:00 76.9 '' '' -1985-11-15 00:00 82.2 '' '' -1985-11-16 00:00 78.8 '' '' -1985-11-17 00:00 77.4 '' '' -1985-11-18 00:00 77.3 '' '' -1985-11-19 00:00 75.6 '' '' -1985-11-20 00:00 75.7 '' '' -1985-11-21 00:00 73.7 '' '' -1985-11-22 00:00 73.1 '' '' -1985-11-23 00:00 72.8 '' '' -1985-11-24 00:00 71.9 '' '' -1985-11-25 00:00 70.3 '' '' -1985-11-26 00:00 69.5 '' '' -1985-11-27 00:00 69.8 '' '' -1985-11-28 00:00 69.0 '' '' -1985-11-29 00:00 69.1 '' '' -1985-11-30 00:00 68.8 '' '' -1985-12-01 00:00 67.8 '' '' -1985-12-02 00:00 68.4 '' '' -1985-12-03 00:00 68.5 '' '' -1985-12-04 00:00 68.3 '' '' -1985-12-05 00:00 69.7 '' '' -1985-12-06 00:00 71.1 '' '' -1985-12-07 00:00 71.9 '' '' -1985-12-08 00:00 73.0 '' '' -1985-12-09 00:00 75.2 '' '' -1985-12-10 00:00 75.6 '' '' -1985-12-11 00:00 76.6 '' '' -1985-12-12 00:00 77.3 '' '' -1985-12-13 00:00 75.6 '' '' -1985-12-14 00:00 76.4 '' '' -1985-12-15 00:00 80.2 '' '' -1985-12-16 00:00 83.7 '' '' -1985-12-17 00:00 80.2 '' '' -1985-12-18 00:00 78.4 '' '' -1985-12-19 00:00 77.5 '' '' -1985-12-20 00:00 75.4 '' '' -1985-12-21 00:00 75.1 '' '' -1985-12-22 00:00 73.5 '' '' -1985-12-23 00:00 71.2 '' '' -1985-12-24 00:00 69.9 '' '' -1985-12-25 00:00 67.3 '' '' -1985-12-26 00:00 66.3 '' '' -1985-12-27 00:00 66.2 '' '' -1985-12-28 00:00 66.2 '' '' -1985-12-29 00:00 66.0 '' '' -1985-12-30 00:00 66.3 '' '' -1985-12-31 00:00 66.6 '' '' -1986-01-01 00:00 67.0 '' '' -1986-01-02 00:00 67.6 '' '' -1986-01-03 00:00 68.4 '' '' -1986-01-04 00:00 69.5 '' '' -1986-01-05 00:00 70.7 '' '' -1986-01-06 00:00 72.2 '' '' -1986-01-07 00:00 71.6 '' '' -1986-01-08 00:00 71.2 '' '' -1986-01-09 00:00 72.7 '' '' -1986-01-10 00:00 72.2 '' '' -1986-01-11 00:00 71.9 '' '' -1986-01-12 00:00 71.2 '' '' -1986-01-13 00:00 74.3 '' '' -1986-01-14 00:00 76.4 '' '' -1986-01-15 00:00 75.1 '' '' -1986-01-16 00:00 75.5 '' '' -1986-01-17 00:00 74.4 '' '' -1986-01-18 00:00 73.1 '' '' -1986-01-19 00:00 70.2 '' '' -1986-01-20 00:00 69.2 '' '' -1986-01-21 00:00 67.9 '' '' -1986-01-22 00:00 67.3 '' '' -1986-01-23 00:00 67.0 '' '' -1986-01-24 00:00 66.9 '' '' -1986-01-25 00:00 68.0 '' '' -1986-01-26 00:00 67.7 '' '' -1986-01-27 00:00 67.2 '' '' -1986-01-28 00:00 70.0 '' '' -1986-01-29 00:00 71.2 '' '' -1986-01-30 00:00 73.7 '' '' -1986-01-31 00:00 76.6 '' '' -1986-02-01 00:00 81.8 '' '' -1986-02-02 00:00 86.4 '' '' -1986-02-03 00:00 96.0 '' '' -1986-02-04 00:00 97.8 '' '' -1986-02-05 00:00 99.8 '' '' -1986-02-06 00:00 99.0 '' '' -1986-02-07 00:00 96.7 '' '' -1986-02-08 00:00 94.3 '' '' -1986-02-09 00:00 92.5 '' '' -1986-02-10 00:00 93.4 '' '' -1986-02-11 00:00 95.1 '' '' -1986-02-12 00:00 88.4 '' '' -1986-02-13 00:00 86.4 '' '' -1986-02-14 00:00 86.2 '' '' -1986-02-15 00:00 79.6 '' '' -1986-02-16 00:00 71.2 '' '' -1986-02-17 00:00 68.3 '' '' -1986-02-18 00:00 68.7 '' '' -1986-02-19 00:00 68.1 '' '' -1986-02-20 00:00 68.1 '' '' -1986-02-21 00:00 66.0 '' '' -1986-02-22 00:00 67.7 '' '' -1986-02-23 00:00 67.7 '' '' -1986-02-24 00:00 68.6 '' '' -1986-02-25 00:00 70.1 '' '' -1986-02-26 00:00 72.0 '' '' -1986-02-27 00:00 75.2 '' '' -1986-02-28 00:00 77.0 '' '' -1986-03-01 00:00 84.1 '' '' -1986-03-02 00:00 89.2 '' '' -1986-03-03 00:00 91.1 '' '' -1986-03-04 00:00 91.4 '' '' -1986-03-05 00:00 90.5 '' '' -1986-03-06 00:00 89.7 '' '' -1986-03-07 00:00 87.6 '' '' -1986-03-08 00:00 85.1 '' '' -1986-03-09 00:00 84.3 '' '' -1986-03-10 00:00 81.6 '' '' -1986-03-11 00:00 79.3 '' '' -1986-03-12 00:00 76.9 '' '' -1986-03-13 00:00 74.3 '' '' -1986-03-14 00:00 71.9 '' '' -1986-03-15 00:00 69.7 '' '' -1986-03-16 00:00 68.9 '' '' -1986-03-17 00:00 68.9 '' '' -1986-03-18 00:00 68.9 '' '' -1986-03-19 00:00 68.8 '' '' -1986-03-20 00:00 68.4 '' '' -1986-03-21 00:00 68.5 '' '' -1986-03-22 00:00 69.1 '' '' -1986-03-23 00:00 69.8 '' '' -1986-03-24 00:00 69.5 '' '' -1986-03-25 00:00 69.6 '' '' -1986-03-26 00:00 70.8 '' '' -1986-03-27 00:00 70.2 '' '' -1986-03-28 00:00 70.4 '' '' -1986-03-29 00:00 71.5 '' '' -1986-03-30 00:00 71.5 '' '' -1986-03-31 00:00 71.5 '' '' -1986-04-01 00:00 71.8 '' '' -1986-04-02 00:00 70.6 '' '' -1986-04-03 00:00 70.9 '' '' -1986-04-04 00:00 71.7 '' '' -1986-04-05 00:00 71.9 '' '' -1986-04-06 00:00 71.9 '' '' -1986-04-07 00:00 71.9 '' '' -1986-04-08 00:00 71.8 '' '' -1986-04-09 00:00 72.0 '' '' -1986-04-10 00:00 72.5 '' '' -1986-04-11 00:00 72.4 '' '' -1986-04-12 00:00 73.1 '' '' -1986-04-13 00:00 74.2 '' '' -1986-04-14 00:00 76.0 '' '' -1986-04-15 00:00 76.0 '' '' -1986-04-16 00:00 75.8 '' '' -1986-04-17 00:00 75.3 '' '' -1986-04-18 00:00 74.4 '' '' -1986-04-19 00:00 74.9 '' '' -1986-04-20 00:00 75.0 '' '' -1986-04-21 00:00 74.2 '' '' -1986-04-22 00:00 75.1 '' '' -1986-04-23 00:00 82.1 '' '' -1986-04-24 00:00 87.4 '' '' -1986-04-25 00:00 85.7 '' '' -1986-04-26 00:00 84.2 '' '' -1986-04-27 00:00 83.4 '' '' -1986-04-28 00:00 80.1 '' '' -1986-04-29 00:00 77.0 '' '' -1986-04-30 00:00 74.7 '' '' -1986-05-01 00:00 72.5 '' '' -1986-05-02 00:00 74.3 '' '' -1986-05-03 00:00 73.8 '' '' -1986-05-04 00:00 71.6 '' '' -1986-05-05 00:00 70.8 '' '' -1986-05-06 00:00 69.8 '' '' -1986-05-07 00:00 69.9 '' '' -1986-05-08 00:00 69.5 '' '' -1986-05-09 00:00 69.8 '' '' -1986-05-10 00:00 70.9 '' '' -1986-05-11 00:00 71.4 '' '' -1986-05-12 00:00 70.9 '' '' -1986-05-13 00:00 71.7 '' '' -1986-05-14 00:00 71.6 '' '' -1986-05-15 00:00 72.7 '' '' -1986-05-16 00:00 74.3 '' '' -1986-05-17 00:00 75.3 '' '' -1986-05-18 00:00 78.7 '' '' -1986-05-19 00:00 78.7 '' '' -1986-05-20 00:00 79.6 '' '' -1986-05-21 00:00 79.2 '' '' -1986-05-22 00:00 79.2 '' '' -1986-05-23 00:00 78.8 '' '' -1986-05-24 00:00 79.5 '' '' -1986-05-25 00:00 81.1 '' '' -1986-05-26 00:00 77.1 '' '' -1986-05-27 00:00 74.7 '' '' -1986-05-28 00:00 74.3 '' '' -1986-05-29 00:00 74.3 '' '' -1986-05-30 00:00 72.5 '' '' -1986-05-31 00:00 73.2 '' '' -1986-06-01 00:00 71.1 '' '' -1986-06-02 00:00 69.8 '' '' -1986-06-03 00:00 69.9 '' '' -1986-06-04 00:00 69.3 '' '' -1986-06-05 00:00 69.3 '' '' -1986-06-06 00:00 69.8 '' '' -1986-06-07 00:00 70.0 '' '' -1986-06-08 00:00 70.2 '' '' -1986-06-09 00:00 71.1 '' '' -1986-06-10 00:00 70.3 '' '' -1986-06-11 00:00 70.1 '' '' -1986-06-12 00:00 70.5 '' '' -1986-06-13 00:00 70.4 '' '' -1986-06-14 00:00 72.1 '' '' -1986-06-15 00:00 71.3 '' '' -1986-06-16 00:00 70.7 '' '' -1986-06-17 00:00 69.8 '' '' -1986-06-18 00:00 69.9 '' '' -1986-06-19 00:00 69.6 '' '' -1986-06-20 00:00 69.6 '' '' -1986-06-21 00:00 69.2 '' '' -1986-06-22 00:00 69.7 '' '' -1986-06-23 00:00 69.6 '' '' -1986-06-24 00:00 68.4 '' '' -1986-06-25 00:00 68.5 '' '' -1986-06-26 00:00 68.2 '' '' -1986-06-27 00:00 68.6 '' '' -1986-06-28 00:00 68.3 '' '' -1986-06-29 00:00 68.3 '' '' -1986-06-30 00:00 68.3 '' '' -1986-07-01 00:00 68.9 '' '' -1986-07-02 00:00 68.7 '' '' -1986-07-03 00:00 68.9 '' '' -1986-07-04 00:00 69.3 '' '' -1986-07-05 00:00 71.1 '' '' -1986-07-06 00:00 73.9 '' '' -1986-07-07 00:00 72.1 '' '' -1986-07-08 00:00 71.6 '' '' -1986-07-09 00:00 72.5 '' '' -1986-07-10 00:00 75.0 '' '' -1986-07-11 00:00 74.7 '' '' -1986-07-12 00:00 73.5 '' '' -1986-07-13 00:00 74.2 '' '' -1986-07-14 00:00 74.6 '' '' -1986-07-15 00:00 74.0 '' '' -1986-07-16 00:00 74.4 '' '' -1986-07-17 00:00 74.9 '' '' -1986-07-18 00:00 74.6 '' '' -1986-07-19 00:00 73.3 '' '' -1986-07-20 00:00 73.2 '' '' -1986-07-21 00:00 72.5 '' '' -1986-07-22 00:00 73.2 '' '' -1986-07-23 00:00 71.6 '' '' -1986-07-24 00:00 71.2 '' '' -1986-07-25 00:00 70.9 '' '' -1986-07-26 00:00 71.1 '' '' -1986-07-27 00:00 71.6 '' '' -1986-07-28 00:00 72.5 '' '' -1986-07-29 00:00 74.0 '' '' -1986-07-30 00:00 73.6 '' '' -1986-07-31 00:00 72.6 '' '' -1986-08-01 00:00 72.8 '' '' -1986-08-02 00:00 72.3 '' '' -1986-08-03 00:00 72.9 '' '' -1986-08-04 00:00 71.6 '' '' -1986-08-05 00:00 71.7 '' '' -1986-08-06 00:00 72.1 '' '' -1986-08-07 00:00 71.9 '' '' -1986-08-08 00:00 71.3 '' '' -1986-08-09 00:00 71.3 '' '' -1986-08-10 00:00 70.5 '' '' -1986-08-11 00:00 68.6 '' '' -1986-08-12 00:00 68.4 '' '' -1986-08-13 00:00 67.9 '' '' -1986-08-14 00:00 68.2 '' '' -1986-08-15 00:00 69.5 '' '' -1986-08-16 00:00 69.4 '' '' -1986-08-17 00:00 68.9 '' '' -1986-08-18 00:00 69.1 '' '' -1986-08-19 00:00 69.3 '' '' -1986-08-20 00:00 70.7 '' '' -1986-08-21 00:00 70.5 '' '' -1986-08-22 00:00 70.1 '' '' -1986-08-23 00:00 69.6 '' '' -1986-08-24 00:00 69.1 '' '' -1986-08-25 00:00 69.3 '' '' -1986-08-26 00:00 69.9 '' '' -1986-08-27 00:00 69.1 '' '' -1986-08-28 00:00 68.8 '' '' -1986-08-29 00:00 68.8 '' '' -1986-08-30 00:00 69.3 '' '' -1986-08-31 00:00 69.6 '' '' -1986-09-01 00:00 69.8 '' '' -1986-09-02 00:00 69.2 '' '' -1986-09-03 00:00 69.3 '' '' -1986-09-04 00:00 69.4 '' '' -1986-09-05 00:00 69.6 '' '' -1986-09-06 00:00 69.5 '' '' -1986-09-07 00:00 69.9 '' '' -1986-09-08 00:00 69.4 '' '' -1986-09-09 00:00 69.4 '' '' -1986-09-10 00:00 69.3 '' '' -1986-09-11 00:00 68.8 '' '' -1986-09-12 00:00 68.8 '' '' -1986-09-13 00:00 69.0 '' '' -1986-09-14 00:00 70.0 '' '' -1986-09-15 00:00 71.5 '' '' -1986-09-16 00:00 70.5 '' '' -1986-09-17 00:00 69.2 '' '' -1986-09-18 00:00 68.8 '' '' -1986-09-19 00:00 68.7 '' '' -1986-09-20 00:00 68.6 '' '' -1986-09-21 00:00 68.8 '' '' -1986-09-22 00:00 68.3 '' '' -1986-09-23 00:00 68.7 '' '' -1986-09-24 00:00 68.8 '' '' -1986-09-25 00:00 69.4 '' '' -1986-09-26 00:00 68.5 '' '' -1986-09-27 00:00 68.9 '' '' -1986-09-28 00:00 70.3 '' '' -1986-09-29 00:00 71.5 '' '' -1986-09-30 00:00 71.6 '' '' -1986-10-01 00:00 71.2 '' '' -1986-10-02 00:00 71.6 '' '' -1986-10-03 00:00 72.1 '' '' -1986-10-04 00:00 70.7 '' '' -1986-10-05 00:00 71.1 '' '' -1986-10-06 00:00 72.4 '' '' -1986-10-07 00:00 74.3 '' '' -1986-10-08 00:00 74.8 '' '' -1986-10-09 00:00 74.6 '' '' -1986-10-10 00:00 73.3 '' '' -1986-10-11 00:00 73.2 '' '' -1986-10-12 00:00 75.3 '' '' -1986-10-13 00:00 75.1 '' '' -1986-10-14 00:00 75.0 '' '' -1986-10-15 00:00 71.8 '' '' -1986-10-16 00:00 79.1 '' '' -1986-10-17 00:00 82.6 '' '' -1986-10-18 00:00 86.3 '' '' -1986-10-19 00:00 88.6 '' '' -1986-10-20 00:00 92.2 '' '' -1986-10-21 00:00 91.5 '' '' -1986-10-22 00:00 94.4 '' '' -1986-10-23 00:00 97.9 '' '' -1986-10-24 00:00 97.3 '' '' -1986-10-25 00:00 94.4 '' '' -1986-10-26 00:00 94.2 '' '' -1986-10-27 00:00 94.3 '' '' -1986-10-28 00:00 93.6 '' '' -1986-10-29 00:00 91.4 '' '' -1986-10-30 00:00 89.8 '' '' -1986-10-31 00:00 89.2 '' '' -1986-11-01 00:00 87.6 '' '' -1986-11-02 00:00 84.1 '' '' -1986-11-03 00:00 80.8 '' '' -1986-11-04 00:00 82.3 '' '' -1986-11-05 00:00 81.5 '' '' -1986-11-06 00:00 80.6 '' '' -1986-11-07 00:00 76.9 '' '' -1986-11-08 00:00 73.5 '' '' -1986-11-09 00:00 71.9 '' '' -1986-11-10 00:00 70.4 '' '' -1986-11-11 00:00 69.9 '' '' -1986-11-12 00:00 71.4 '' '' -1986-11-13 00:00 76.0 '' '' -1986-11-14 00:00 74.1 '' '' -1986-11-15 00:00 75.1 '' '' -1986-11-16 00:00 75.0 '' '' -1986-11-17 00:00 73.8 '' '' -1986-11-18 00:00 73.0 '' '' -1986-11-19 00:00 72.5 '' '' -1986-11-20 00:00 72.5 '' '' -1986-11-21 00:00 74.1 '' '' -1986-11-22 00:00 74.5 '' '' -1986-11-23 00:00 75.8 '' '' -1986-11-24 00:00 77.0 '' '' -1986-11-25 00:00 75.5 '' '' -1986-11-26 00:00 74.3 '' '' -1986-11-27 00:00 73.6 '' '' -1986-11-28 00:00 73.1 '' '' -1986-11-29 00:00 72.4 '' '' -1986-11-30 00:00 70.9 '' '' -1986-12-01 00:00 70.7 '' '' -1986-12-02 00:00 70.6 '' '' -1986-12-03 00:00 70.2 '' '' -1986-12-04 00:00 69.2 '' '' -1986-12-05 00:00 70.0 '' '' -1986-12-06 00:00 69.1 '' '' -1986-12-07 00:00 68.2 '' '' -1986-12-08 00:00 69.1 '' '' -1986-12-09 00:00 70.8 '' '' -1986-12-10 00:00 72.3 '' '' -1986-12-11 00:00 73.0 '' '' -1986-12-12 00:00 71.1 '' '' -1986-12-13 00:00 71.5 '' '' -1986-12-14 00:00 71.4 '' '' -1986-12-15 00:00 70.9 '' '' -1986-12-16 00:00 70.8 '' '' -1986-12-17 00:00 71.7 '' '' -1986-12-18 00:00 71.4 '' '' -1986-12-19 00:00 71.0 '' '' -1986-12-20 00:00 70.4 '' '' -1986-12-21 00:00 70.6 '' '' -1986-12-22 00:00 71.4 '' '' -1986-12-23 00:00 70.8 '' '' -1986-12-24 00:00 70.0 '' '' -1986-12-25 00:00 70.0 '' '' -1986-12-26 00:00 69.7 '' '' -1986-12-27 00:00 69.4 '' '' -1986-12-28 00:00 69.2 '' '' -1986-12-29 00:00 69.2 '' '' -1986-12-30 00:00 69.6 '' '' -1986-12-31 00:00 68.1 '' '' -1987-01-01 00:00 71.6 '' '' -1987-01-02 00:00 70.5 '' '' -1987-01-03 00:00 69.1 '' '' -1987-01-04 00:00 69.0 '' '' -1987-01-05 00:00 70.3 '' '' -1987-01-06 00:00 69.3 '' '' -1987-01-07 00:00 69.7 '' '' -1987-01-08 00:00 68.2 '' '' -1987-01-09 00:00 68.0 '' '' -1987-01-10 00:00 67.4 '' '' -1987-01-11 00:00 68.0 '' '' -1987-01-12 00:00 68.9 '' '' -1987-01-13 00:00 69.7 '' '' -1987-01-14 00:00 71.1 '' '' -1987-01-15 00:00 71.5 '' '' -1987-01-16 00:00 70.7 '' '' -1987-01-17 00:00 70.8 '' '' -1987-01-18 00:00 70.6 '' '' -1987-01-19 00:00 70.0 '' '' -1987-01-20 00:00 68.9 '' '' -1987-01-21 00:00 71.2 '' '' -1987-01-22 00:00 73.6 '' '' -1987-01-23 00:00 72.1 '' '' -1987-01-24 00:00 71.6 '' '' -1987-01-25 00:00 71.5 '' '' -1987-01-26 00:00 72.6 '' '' -1987-01-27 00:00 69.9 '' '' -1987-01-28 00:00 70.8 '' '' -1987-01-29 00:00 70.6 '' '' -1987-01-30 00:00 69.8 '' '' -1987-01-31 00:00 68.7 '' '' -1987-02-01 00:00 69.2 '' '' -1987-02-02 00:00 69.8 '' '' -1987-02-03 00:00 70.0 '' '' -1987-02-04 00:00 68.3 '' '' -1987-02-05 00:00 67.5 '' '' -1987-02-06 00:00 67.7 '' '' -1987-02-07 00:00 69.1 '' '' -1987-02-08 00:00 68.9 '' '' -1987-02-09 00:00 69.2 '' '' -1987-02-10 00:00 69.3 '' '' -1987-02-11 00:00 68.5 '' '' -1987-02-12 00:00 67.8 '' '' -1987-02-13 00:00 68.0 '' '' -1987-02-14 00:00 68.3 '' '' -1987-02-15 00:00 69.3 '' '' -1987-02-16 00:00 68.4 '' '' -1987-02-17 00:00 68.1 '' '' -1987-02-18 00:00 69.8 '' '' -1987-02-19 00:00 69.5 '' '' -1987-02-20 00:00 69.6 '' '' -1987-02-21 00:00 70.7 '' '' -1987-02-22 00:00 70.4 '' '' -1987-02-23 00:00 70.5 '' '' -1987-02-24 00:00 72.1 '' '' -1987-02-25 00:00 73.5 '' '' -1987-02-26 00:00 73.9 '' '' -1987-02-27 00:00 74.0 '' '' -1987-02-28 00:00 72.7 '' '' -1987-03-01 00:00 72.8 '' '' -1987-03-02 00:00 73.3 '' '' -1987-03-03 00:00 71.6 '' '' -1987-03-04 00:00 73.3 '' '' -1987-03-05 00:00 73.7 '' '' -1987-03-06 00:00 75.6 '' '' -1987-03-07 00:00 75.5 '' '' -1987-03-08 00:00 76.9 '' '' -1987-03-09 00:00 73.6 '' '' -1987-03-10 00:00 71.4 '' '' -1987-03-11 00:00 70.5 '' '' -1987-03-12 00:00 69.5 '' '' -1987-03-13 00:00 69.6 '' '' -1987-03-14 00:00 71.1 '' '' -1987-03-15 00:00 70.5 '' '' -1987-03-16 00:00 71.0 '' '' -1987-03-17 00:00 71.2 '' '' -1987-03-18 00:00 72.5 '' '' -1987-03-19 00:00 71.5 '' '' -1987-03-20 00:00 73.8 '' '' -1987-03-21 00:00 74.2 '' '' -1987-03-22 00:00 73.8 '' '' -1987-03-23 00:00 75.5 '' '' -1987-03-24 00:00 75.9 '' '' -1987-03-25 00:00 75.7 '' '' -1987-03-26 00:00 75.6 '' '' -1987-03-27 00:00 75.4 '' '' -1987-03-28 00:00 75.0 '' '' -1987-03-29 00:00 75.3 '' '' -1987-03-30 00:00 74.6 '' '' -1987-03-31 00:00 71.9 '' '' -1987-04-01 00:00 72.5 '' '' -1987-04-02 00:00 71.9 '' '' -1987-04-03 00:00 72.4 '' '' -1987-04-04 00:00 74.0 '' '' -1987-04-05 00:00 77.6 '' '' -1987-04-06 00:00 89.4 '' '' -1987-04-07 00:00 94.4 '' '' -1987-04-08 00:00 94.8 '' '' -1987-04-09 00:00 100.5 '' '' -1987-04-10 00:00 100.0 '' '' -1987-04-11 00:00 101.3 '' '' -1987-04-12 00:00 98.6 '' '' -1987-04-13 00:00 99.3 '' '' -1987-04-14 00:00 97.7 '' '' -1987-04-15 00:00 97.8 '' '' -1987-04-16 00:00 95.3 '' '' -1987-04-17 00:00 97.3 '' '' -1987-04-18 00:00 94.0 '' '' -1987-04-19 00:00 91.7 '' '' -1987-04-20 00:00 85.6 '' '' -1987-04-21 00:00 78.3 '' '' -1987-04-22 00:00 76.5 '' '' -1987-04-23 00:00 76.5 '' '' -1987-04-24 00:00 78.6 '' '' -1987-04-25 00:00 75.8 '' '' -1987-04-26 00:00 74.3 '' '' -1987-04-27 00:00 74.8 '' '' -1987-04-28 00:00 74.3 '' '' -1987-04-29 00:00 73.6 '' '' -1987-04-30 00:00 76.8 '' '' -1987-05-01 00:00 79.3 '' '' -1987-05-02 00:00 80.2 '' '' -1987-05-03 00:00 82.8 '' '' -1987-05-04 00:00 84.4 '' '' -1987-05-05 00:00 86.1 '' '' -1987-05-06 00:00 87.9 '' '' -1987-05-07 00:00 88.1 '' '' -1987-05-08 00:00 89.1 '' '' -1987-05-09 00:00 87.3 '' '' -1987-05-10 00:00 89.5 '' '' -1987-05-11 00:00 86.4 '' '' -1987-05-12 00:00 85.4 '' '' -1987-05-13 00:00 87.4 '' '' -1987-05-14 00:00 91.2 '' '' -1987-05-15 00:00 93.6 '' '' -1987-05-16 00:00 98.2 '' '' -1987-05-17 00:00 96.7 '' '' -1987-05-18 00:00 98.5 '' '' -1987-05-19 00:00 100.1 '' '' -1987-05-20 00:00 99.8 '' '' -1987-05-21 00:00 99.9 '' '' -1987-05-22 00:00 101.0 '' '' -1987-05-23 00:00 94.9 '' '' -1987-05-24 00:00 98.5 '' '' -1987-05-25 00:00 96.8 '' '' -1987-05-26 00:00 92.3 '' '' -1987-05-27 00:00 87.5 '' '' -1987-05-28 00:00 85.1 '' '' -1987-05-29 00:00 79.3 '' '' -1987-05-30 00:00 77.9 '' '' -1987-05-31 00:00 77.3 '' '' -1987-06-01 00:00 77.8 '' '' -1987-06-02 00:00 77.9 '' '' -1987-06-03 00:00 76.4 '' '' -1987-06-04 00:00 77.3 '' '' -1987-06-05 00:00 76.1 '' '' -1987-06-06 00:00 75.8 '' '' -1987-06-07 00:00 76.0 '' '' -1987-06-08 00:00 77.0 '' '' -1987-06-09 00:00 76.8 '' '' -1987-06-10 00:00 78.1 '' '' -1987-06-11 00:00 80.7 '' '' -1987-06-12 00:00 82.1 '' '' -1987-06-13 00:00 82.3 '' '' -1987-06-14 00:00 80.6 '' '' -1987-06-15 00:00 80.4 '' '' -1987-06-16 00:00 81.3 '' '' -1987-06-17 00:00 81.8 '' '' -1987-06-18 00:00 82.9 '' '' -1987-06-19 00:00 82.4 '' '' -1987-06-20 00:00 81.1 '' '' -1987-06-21 00:00 82.6 '' '' -1987-06-22 00:00 87.1 '' '' -1987-06-23 00:00 87.5 '' '' -1987-06-24 00:00 89.1 '' '' -1987-06-25 00:00 86.3 '' '' -1987-06-26 00:00 84.3 '' '' -1987-06-27 00:00 78.9 '' '' -1987-06-28 00:00 79.2 '' '' -1987-06-29 00:00 76.6 '' '' -1987-06-30 00:00 75.9 '' '' -1987-07-01 00:00 76.0 '' '' -1987-07-02 00:00 74.4 '' '' -1987-07-03 00:00 73.7 '' '' -1987-07-04 00:00 73.2 '' '' -1987-07-05 00:00 73.4 '' '' -1987-07-06 00:00 73.3 '' '' -1987-07-07 00:00 74.1 '' '' -1987-07-08 00:00 76.1 '' '' -1987-07-09 00:00 76.3 '' '' -1987-07-10 00:00 76.3 '' '' -1987-07-11 00:00 75.7 '' '' -1987-07-12 00:00 75.5 '' '' -1987-07-13 00:00 75.1 '' '' -1987-07-14 00:00 76.6 '' '' -1987-07-15 00:00 78.8 '' '' -1987-07-16 00:00 80.9 '' '' -1987-07-17 00:00 81.5 '' '' -1987-07-18 00:00 82.5 '' '' -1987-07-19 00:00 85.1 '' '' -1987-07-20 00:00 93.8 '' '' -1987-07-21 00:00 95.6 '' '' -1987-07-22 00:00 102.6 '' '' -1987-07-23 00:00 115.6 '' '' -1987-07-24 00:00 115.0 '' '' -1987-07-25 00:00 114.9 '' '' -1987-07-26 00:00 109.8 '' '' -1987-07-27 00:00 105.4 '' '' -1987-07-28 00:00 102.5 '' '' -1987-07-29 00:00 97.3 '' '' -1987-07-30 00:00 94.0 '' '' -1987-07-31 00:00 91.9 '' '' -1987-08-01 00:00 91.0 '' '' -1987-08-02 00:00 89.7 '' '' -1987-08-03 00:00 87.1 '' '' -1987-08-04 00:00 84.0 '' '' -1987-08-05 00:00 81.6 '' '' -1987-08-06 00:00 85.2 '' '' -1987-08-07 00:00 89.5 '' '' -1987-08-08 00:00 93.8 '' '' -1987-08-09 00:00 94.8 '' '' -1987-08-10 00:00 94.0 '' '' -1987-08-11 00:00 99.8 '' '' -1987-08-12 00:00 100.0 '' '' -1987-08-13 00:00 101.8 '' '' -1987-08-14 00:00 102.4 '' '' -1987-08-15 00:00 101.3 '' '' -1987-08-16 00:00 102.7 '' '' -1987-08-17 00:00 101.2 '' '' -1987-08-18 00:00 100.4 '' '' -1987-08-19 00:00 99.0 '' '' -1987-08-20 00:00 101.2 '' '' -1987-08-21 00:00 96.6 '' '' -1987-08-22 00:00 94.4 '' '' -1987-08-23 00:00 91.8 '' '' -1987-08-24 00:00 89.6 '' '' -1987-08-25 00:00 89.9 '' '' -1987-08-26 00:00 87.3 '' '' -1987-08-27 00:00 85.1 '' '' -1987-08-28 00:00 81.3 '' '' -1987-08-29 00:00 79.9 '' '' -1987-08-30 00:00 78.5 '' '' -1987-08-31 00:00 83.2 '' '' -1987-09-01 00:00 85.3 '' '' -1987-09-02 00:00 85.5 '' '' -1987-09-03 00:00 87.5 '' '' -1987-09-04 00:00 89.6 '' '' -1987-09-05 00:00 93.5 '' '' -1987-09-06 00:00 95.6 '' '' -1987-09-07 00:00 99.5 '' '' -1987-09-08 00:00 101.9 '' '' -1987-09-09 00:00 100.9 '' '' -1987-09-10 00:00 97.8 '' '' -1987-09-11 00:00 95.4 '' '' -1987-09-12 00:00 91.1 '' '' -1987-09-13 00:00 89.7 '' '' -1987-09-14 00:00 86.8 '' '' -1987-09-15 00:00 85.0 '' '' -1987-09-16 00:00 83.5 '' '' -1987-09-17 00:00 84.0 '' '' -1987-09-18 00:00 82.4 '' '' -1987-09-19 00:00 82.7 '' '' -1987-09-20 00:00 84.9 '' '' -1987-09-21 00:00 83.0 '' '' -1987-09-22 00:00 81.3 '' '' -1987-09-23 00:00 80.4 '' '' -1987-09-24 00:00 80.3 '' '' -1987-09-25 00:00 77.9 '' '' -1987-09-26 00:00 76.4 '' '' -1987-09-27 00:00 80.2 '' '' -1987-09-28 00:00 82.3 '' '' -1987-09-29 00:00 83.5 '' '' -1987-09-30 00:00 81.9 '' '' -1987-10-01 00:00 84.2 '' '' -1987-10-02 00:00 84.8 '' '' -1987-10-03 00:00 85.6 '' '' -1987-10-04 00:00 89.2 '' '' -1987-10-05 00:00 90.1 '' '' -1987-10-06 00:00 89.5 '' '' -1987-10-07 00:00 90.9 '' '' -1987-10-08 00:00 95.0 '' '' -1987-10-09 00:00 92.7 '' '' -1987-10-10 00:00 101.1 '' '' -1987-10-11 00:00 100.8 '' '' -1987-10-12 00:00 102.2 '' '' -1987-10-13 00:00 105.5 '' '' -1987-10-14 00:00 113.3 '' '' -1987-10-15 00:00 117.8 '' '' -1987-10-16 00:00 111.1 '' '' -1987-10-17 00:00 106.0 '' '' -1987-10-18 00:00 106.5 '' '' -1987-10-19 00:00 100.4 '' '' -1987-10-20 00:00 95.6 '' '' -1987-10-21 00:00 89.3 '' '' -1987-10-22 00:00 88.2 '' '' -1987-10-23 00:00 87.0 '' '' -1987-10-24 00:00 87.1 '' '' -1987-10-25 00:00 92.3 '' '' -1987-10-26 00:00 96.9 '' '' -1987-10-27 00:00 105.9 '' '' -1987-10-28 00:00 106.2 '' '' -1987-10-29 00:00 102.7 '' '' -1987-10-30 00:00 104.2 '' '' -1987-10-31 00:00 97.8 '' '' -1987-11-01 00:00 99.1 '' '' -1987-11-02 00:00 105.0 '' '' -1987-11-03 00:00 98.0 '' '' -1987-11-04 00:00 101.1 '' '' -1987-11-05 00:00 99.2 '' '' -1987-11-06 00:00 94.9 '' '' -1987-11-07 00:00 94.4 '' '' -1987-11-08 00:00 92.7 '' '' -1987-11-09 00:00 90.3 '' '' -1987-11-10 00:00 89.2 '' '' -1987-11-11 00:00 92.6 '' '' -1987-11-12 00:00 92.6 '' '' -1987-11-13 00:00 92.9 '' '' -1987-11-14 00:00 92.3 '' '' -1987-11-15 00:00 93.7 '' '' -1987-11-16 00:00 95.0 '' '' -1987-11-17 00:00 96.8 '' '' -1987-11-18 00:00 100.0 '' '' -1987-11-19 00:00 106.6 '' '' -1987-11-20 00:00 112.2 '' '' -1987-11-21 00:00 115.3 '' '' -1987-11-22 00:00 117.8 '' '' -1987-11-23 00:00 115.1 '' '' -1987-11-24 00:00 109.4 '' '' -1987-11-25 00:00 104.9 '' '' -1987-11-26 00:00 101.3 '' '' -1987-11-27 00:00 94.9 '' '' -1987-11-28 00:00 92.3 '' '' -1987-11-29 00:00 90.7 '' '' -1987-11-30 00:00 89.1 '' '' -1987-12-01 00:00 87.6 '' '' -1987-12-02 00:00 86.5 '' '' -1987-12-03 00:00 85.8 '' '' -1987-12-04 00:00 85.1 '' '' -1987-12-05 00:00 86.8 '' '' -1987-12-06 00:00 85.7 '' '' -1987-12-07 00:00 85.3 '' '' -1987-12-08 00:00 88.7 '' '' -1987-12-09 00:00 91.2 '' '' -1987-12-10 00:00 90.1 '' '' -1987-12-11 00:00 91.1 '' '' -1987-12-12 00:00 91.5 '' '' -1987-12-13 00:00 91.1 '' '' -1987-12-14 00:00 91.5 '' '' -1987-12-15 00:00 92.0 '' '' -1987-12-16 00:00 93.4 '' '' -1987-12-17 00:00 92.2 '' '' -1987-12-18 00:00 90.2 '' '' -1987-12-19 00:00 88.4 '' '' -1987-12-20 00:00 86.9 '' '' -1987-12-21 00:00 90.7 '' '' -1987-12-22 00:00 88.1 '' '' -1987-12-23 00:00 88.2 '' '' -1987-12-24 00:00 89.9 '' '' -1987-12-25 00:00 96.2 '' '' -1987-12-26 00:00 96.8 '' '' -1987-12-27 00:00 101.4 '' '' -1987-12-28 00:00 102.5 '' '' -1987-12-29 00:00 101.4 '' '' -1987-12-30 00:00 99.2 '' '' -1987-12-31 00:00 99.7 '' '' -1988-01-01 00:00 100.1 '' '' -1988-01-02 00:00 93.7 '' '' -1988-01-03 00:00 101.2 '' '' -1988-01-04 00:00 98.2 '' '' -1988-01-05 00:00 99.5 '' '' -1988-01-06 00:00 101.7 '' '' -1988-01-07 00:00 102.1 '' '' -1988-01-08 00:00 105.6 '' '' -1988-01-09 00:00 100.6 '' '' -1988-01-10 00:00 100.9 '' '' -1988-01-11 00:00 101.7 '' '' -1988-01-12 00:00 107.5 '' '' -1988-01-13 00:00 108.1 '' '' -1988-01-14 00:00 113.7 '' '' -1988-01-15 00:00 112.4 '' '' -1988-01-16 00:00 121.8 '' '' -1988-01-17 00:00 116.4 '' '' -1988-01-18 00:00 110.9 '' '' -1988-01-19 00:00 114.2 '' '' -1988-01-20 00:00 112.7 '' '' -1988-01-21 00:00 111.6 '' '' -1988-01-22 00:00 104.5 '' '' -1988-01-23 00:00 104.7 '' '' -1988-01-24 00:00 102.2 '' '' -1988-01-25 00:00 94.9 '' '' -1988-01-26 00:00 93.5 '' '' -1988-01-27 00:00 101.6 '' '' -1988-01-28 00:00 103.0 '' '' -1988-01-29 00:00 99.1 '' '' -1988-01-30 00:00 100.1 '' '' -1988-01-31 00:00 103.1 '' '' -1988-02-01 00:00 105.5 '' '' -1988-02-02 00:00 104.3 '' '' -1988-02-03 00:00 103.6 '' '' -1988-02-04 00:00 103.1 '' '' -1988-02-05 00:00 102.6 '' '' -1988-02-06 00:00 103.6 '' '' -1988-02-07 00:00 105.3 '' '' -1988-02-08 00:00 102.5 '' '' -1988-02-09 00:00 101.0 '' '' -1988-02-10 00:00 100.2 '' '' -1988-02-11 00:00 99.6 '' '' -1988-02-12 00:00 101.3 '' '' -1988-02-13 00:00 102.9 '' '' -1988-02-14 00:00 102.6 '' '' -1988-02-15 00:00 100.4 '' '' -1988-02-16 00:00 101.0 '' '' -1988-02-17 00:00 106.2 '' '' -1988-02-18 00:00 112.5 '' '' -1988-02-19 00:00 109.0 '' '' -1988-02-20 00:00 106.5 '' '' -1988-02-21 00:00 104.7 '' '' -1988-02-22 00:00 102.5 '' '' -1988-02-23 00:00 100.2 '' '' -1988-02-24 00:00 99.6 '' '' -1988-02-25 00:00 96.4 '' '' -1988-02-26 00:00 96.7 '' '' -1988-02-27 00:00 96.3 '' '' -1988-02-28 00:00 97.1 '' '' -1988-02-29 00:00 103.3 '' '' -1988-03-01 00:00 99.8 '' '' -1988-03-02 00:00 99.1 '' '' -1988-03-03 00:00 101.9 '' '' -1988-03-04 00:00 102.6 '' '' -1988-03-05 00:00 106.7 '' '' -1988-03-06 00:00 107.6 '' '' -1988-03-07 00:00 107.3 '' '' -1988-03-08 00:00 104.1 '' '' -1988-03-09 00:00 101.5 '' '' -1988-03-10 00:00 99.2 '' '' -1988-03-11 00:00 102.9 '' '' -1988-03-12 00:00 103.5 '' '' -1988-03-13 00:00 107.8 '' '' -1988-03-14 00:00 108.9 '' '' -1988-03-15 00:00 112.6 '' '' -1988-03-16 00:00 114.1 '' '' -1988-03-17 00:00 117.4 '' '' -1988-03-18 00:00 116.1 '' '' -1988-03-19 00:00 116.1 '' '' -1988-03-20 00:00 116.3 '' '' -1988-03-21 00:00 117.5 '' '' -1988-03-22 00:00 117.6 '' '' -1988-03-23 00:00 120.9 '' '' -1988-03-24 00:00 123.0 '' '' -1988-03-25 00:00 128.5 '' '' -1988-03-26 00:00 127.5 '' '' -1988-03-27 00:00 128.0 '' '' -1988-03-28 00:00 129.8 '' '' -1988-03-29 00:00 131.7 '' '' -1988-03-30 00:00 128.3 '' '' -1988-03-31 00:00 130.6 '' '' -1988-04-01 00:00 127.2 '' '' -1988-04-02 00:00 126.5 '' '' -1988-04-03 00:00 127.6 '' '' -1988-04-04 00:00 122.6 '' '' -1988-04-05 00:00 114.6 '' '' -1988-04-06 00:00 116.8 '' '' -1988-04-07 00:00 120.0 '' '' -1988-04-08 00:00 121.8 '' '' -1988-04-09 00:00 121.8 '' '' -1988-04-10 00:00 127.2 '' '' -1988-04-11 00:00 128.0 '' '' -1988-04-12 00:00 130.6 '' '' -1988-04-13 00:00 134.6 '' '' -1988-04-14 00:00 146.3 '' '' -1988-04-15 00:00 143.5 '' '' -1988-04-16 00:00 147.6 '' '' -1988-04-17 00:00 145.5 '' '' -1988-04-18 00:00 145.3 '' '' -1988-04-19 00:00 138.5 '' '' -1988-04-20 00:00 134.9 '' '' -1988-04-21 00:00 127.6 '' '' -1988-04-22 00:00 120.1 '' '' -1988-04-23 00:00 111.5 '' '' -1988-04-24 00:00 105.6 '' '' -1988-04-25 00:00 106.7 '' '' -1988-04-26 00:00 103.8 '' '' -1988-04-27 00:00 101.9 '' '' -1988-04-28 00:00 101.6 '' '' -1988-04-29 00:00 102.1 '' '' -1988-04-30 00:00 104.8 '' '' -1988-05-01 00:00 108.8 '' '' -1988-05-02 00:00 113.1 '' '' -1988-05-03 00:00 116.4 '' '' -1988-05-04 00:00 127.4 '' '' -1988-05-05 00:00 121.1 '' '' -1988-05-06 00:00 116.5 '' '' -1988-05-07 00:00 112.9 '' '' -1988-05-08 00:00 116.7 '' '' -1988-05-09 00:00 121.9 '' '' -1988-05-10 00:00 116.4 '' '' -1988-05-11 00:00 114.6 '' '' -1988-05-12 00:00 111.6 '' '' -1988-05-13 00:00 105.9 '' '' -1988-05-14 00:00 105.2 '' '' -1988-05-15 00:00 103.4 '' '' -1988-05-16 00:00 103.3 '' '' -1988-05-17 00:00 103.7 '' '' -1988-05-18 00:00 106.7 '' '' -1988-05-19 00:00 104.8 '' '' -1988-05-20 00:00 106.1 '' '' -1988-05-21 00:00 112.6 '' '' -1988-05-22 00:00 114.0 '' '' -1988-05-23 00:00 122.2 '' '' -1988-05-24 00:00 119.8 '' '' -1988-05-25 00:00 123.8 '' '' -1988-05-26 00:00 127.8 '' '' -1988-05-27 00:00 130.0 '' '' -1988-05-28 00:00 130.1 '' '' -1988-05-29 00:00 140.2 '' '' -1988-05-30 00:00 142.8 '' '' -1988-05-31 00:00 153.6 '' '' -1988-06-01 00:00 149.3 '' '' -1988-06-02 00:00 147.6 '' '' -1988-06-03 00:00 149.5 '' '' -1988-06-04 00:00 150.9 '' '' -1988-06-05 00:00 151.2 '' '' -1988-06-06 00:00 159.0 '' '' -1988-06-07 00:00 164.6 '' '' -1988-06-08 00:00 168.3 '' '' -1988-06-09 00:00 165.9 '' '' -1988-06-10 00:00 149.8 '' '' -1988-06-11 00:00 137.8 '' '' -1988-06-12 00:00 125.9 '' '' -1988-06-13 00:00 115.0 '' '' -1988-06-14 00:00 111.7 '' '' -1988-06-15 00:00 113.5 '' '' -1988-06-16 00:00 121.7 '' '' -1988-06-17 00:00 124.8 '' '' -1988-06-18 00:00 125.7 '' '' -1988-06-19 00:00 119.4 '' '' -1988-06-20 00:00 118.5 '' '' -1988-06-21 00:00 122.8 '' '' -1988-06-22 00:00 124.4 '' '' -1988-06-23 00:00 129.3 '' '' -1988-06-24 00:00 135.7 '' '' -1988-06-25 00:00 153.7 '' '' -1988-06-26 00:00 157.6 '' '' -1988-06-27 00:00 160.5 '' '' -1988-06-28 00:00 183.2 '' '' -1988-06-29 00:00 189.5 '' '' -1988-06-30 00:00 187.4 '' '' -1988-07-01 00:00 194.4 '' '' -1988-07-02 00:00 198.9 '' '' -1988-07-03 00:00 190.2 '' '' -1988-07-04 00:00 181.0 '' '' -1988-07-05 00:00 171.2 '' '' -1988-07-06 00:00 156.7 '' '' -1988-07-07 00:00 152.4 '' '' -1988-07-08 00:00 142.4 '' '' -1988-07-09 00:00 137.7 '' '' -1988-07-10 00:00 138.3 '' '' -1988-07-11 00:00 137.7 '' '' -1988-07-12 00:00 137.9 '' '' -1988-07-13 00:00 141.3 '' '' -1988-07-14 00:00 150.1 '' '' -1988-07-15 00:00 150.7 '' '' -1988-07-16 00:00 153.3 '' '' -1988-07-17 00:00 152.8 '' '' -1988-07-18 00:00 152.3 '' '' -1988-07-19 00:00 142.1 '' '' -1988-07-20 00:00 141.3 '' '' -1988-07-21 00:00 145.8 '' '' -1988-07-22 00:00 141.2 '' '' -1988-07-23 00:00 144.6 '' '' -1988-07-24 00:00 138.6 '' '' -1988-07-25 00:00 140.9 '' '' -1988-07-26 00:00 149.7 '' '' -1988-07-27 00:00 161.5 '' '' -1988-07-28 00:00 175.4 '' '' -1988-07-29 00:00 185.9 '' '' -1988-07-30 00:00 188.3 '' '' -1988-07-31 00:00 192.5 '' '' -1988-08-01 00:00 180.9 '' '' -1988-08-02 00:00 187.6 '' '' -1988-08-03 00:00 172.2 '' '' -1988-08-04 00:00 163.6 '' '' -1988-08-05 00:00 159.2 '' '' -1988-08-06 00:00 163.4 '' '' -1988-08-07 00:00 170.4 '' '' -1988-08-08 00:00 186.9 '' '' -1988-08-09 00:00 182.4 '' '' -1988-08-10 00:00 181.8 '' '' -1988-08-11 00:00 178.2 '' '' -1988-08-12 00:00 161.2 '' '' -1988-08-13 00:00 159.7 '' '' -1988-08-14 00:00 151.6 '' '' -1988-08-15 00:00 144.0 '' '' -1988-08-16 00:00 137.8 '' '' -1988-08-17 00:00 145.6 '' '' -1988-08-18 00:00 128.5 '' '' -1988-08-19 00:00 123.9 '' '' -1988-08-20 00:00 118.1 '' '' -1988-08-21 00:00 116.1 '' '' -1988-08-22 00:00 114.9 '' '' -1988-08-23 00:00 121.7 '' '' -1988-08-24 00:00 133.7 '' '' -1988-08-25 00:00 144.3 '' '' -1988-08-26 00:00 157.1 '' '' -1988-08-27 00:00 166.8 '' '' -1988-08-28 00:00 174.0 '' '' -1988-08-29 00:00 189.0 '' '' -1988-08-30 00:00 190.0 '' '' -1988-08-31 00:00 194.5 '' '' -1988-09-01 00:00 191.3 '' '' -1988-09-02 00:00 178.9 '' '' -1988-09-03 00:00 177.3 '' '' -1988-09-04 00:00 165.9 '' '' -1988-09-05 00:00 166.3 '' '' -1988-09-06 00:00 152.4 '' '' -1988-09-07 00:00 145.4 '' '' -1988-09-08 00:00 138.9 '' '' -1988-09-09 00:00 128.0 '' '' -1988-09-10 00:00 117.6 '' '' -1988-09-11 00:00 121.9 '' '' -1988-09-12 00:00 127.0 '' '' -1988-09-13 00:00 124.8 '' '' -1988-09-14 00:00 130.2 '' '' -1988-09-15 00:00 126.1 '' '' -1988-09-16 00:00 128.5 '' '' -1988-09-17 00:00 135.3 '' '' -1988-09-18 00:00 139.5 '' '' -1988-09-19 00:00 138.6 '' '' -1988-09-20 00:00 151.4 '' '' -1988-09-21 00:00 157.8 '' '' -1988-09-22 00:00 178.6 '' '' -1988-09-23 00:00 177.8 '' '' -1988-09-24 00:00 178.6 '' '' -1988-09-25 00:00 177.4 '' '' -1988-09-26 00:00 172.0 '' '' -1988-09-27 00:00 179.6 '' '' -1988-09-28 00:00 171.0 '' '' -1988-09-29 00:00 172.0 '' '' -1988-09-30 00:00 173.1 '' '' -1988-10-01 00:00 179.4 '' '' -1988-10-02 00:00 197.0 '' '' -1988-10-03 00:00 200.4 '' '' -1988-10-04 00:00 189.2 '' '' -1988-10-05 00:00 191.0 '' '' -1988-10-06 00:00 193.4 '' '' -1988-10-07 00:00 182.4 '' '' -1988-10-08 00:00 172.6 '' '' -1988-10-09 00:00 176.5 '' '' -1988-10-10 00:00 177.8 '' '' -1988-10-11 00:00 168.2 '' '' -1988-10-12 00:00 148.4 '' '' -1988-10-13 00:00 157.5 '' '' -1988-10-14 00:00 150.4 '' '' -1988-10-15 00:00 149.1 '' '' -1988-10-16 00:00 152.3 '' '' -1988-10-17 00:00 175.0 '' '' -1988-10-18 00:00 162.3 '' '' -1988-10-19 00:00 164.0 '' '' -1988-10-20 00:00 166.0 '' '' -1988-10-21 00:00 165.9 '' '' -1988-10-22 00:00 166.2 '' '' -1988-10-23 00:00 171.1 '' '' -1988-10-24 00:00 168.4 '' '' -1988-10-25 00:00 162.1 '' '' -1988-10-26 00:00 155.4 '' '' -1988-10-27 00:00 161.8 '' '' -1988-10-28 00:00 156.0 '' '' -1988-10-29 00:00 155.9 '' '' -1988-10-30 00:00 154.2 '' '' -1988-10-31 00:00 160.4 '' '' -1988-11-01 00:00 157.2 '' '' -1988-11-02 00:00 156.5 '' '' -1988-11-03 00:00 164.0 '' '' -1988-11-04 00:00 159.7 '' '' -1988-11-05 00:00 163.8 '' '' -1988-11-06 00:00 161.2 '' '' -1988-11-07 00:00 151.6 '' '' -1988-11-08 00:00 143.5 '' '' -1988-11-09 00:00 152.4 '' '' -1988-11-10 00:00 147.7 '' '' -1988-11-11 00:00 153.8 '' '' -1988-11-12 00:00 150.6 '' '' -1988-11-13 00:00 157.8 '' '' -1988-11-14 00:00 173.2 '' '' -1988-11-15 00:00 161.1 '' '' -1988-11-16 00:00 186.1 '' '' -1988-11-17 00:00 175.6 '' '' -1988-11-18 00:00 161.8 '' '' -1988-11-19 00:00 151.2 '' '' -1988-11-20 00:00 146.6 '' '' -1988-11-21 00:00 152.9 '' '' -1988-11-22 00:00 153.1 '' '' -1988-11-23 00:00 135.7 '' '' -1988-11-24 00:00 138.0 '' '' -1988-11-25 00:00 137.5 '' '' -1988-11-26 00:00 137.4 '' '' -1988-11-27 00:00 140.9 '' '' -1988-11-28 00:00 138.8 '' '' -1988-11-29 00:00 137.6 '' '' -1988-11-30 00:00 135.8 '' '' -1988-12-01 00:00 150.5 '' '' -1988-12-02 00:00 149.4 '' '' -1988-12-03 00:00 147.3 '' '' -1988-12-04 00:00 142.7 '' '' -1988-12-05 00:00 154.6 '' '' -1988-12-06 00:00 157.7 '' '' -1988-12-07 00:00 152.9 '' '' -1988-12-08 00:00 164.1 '' '' -1988-12-09 00:00 165.2 '' '' -1988-12-10 00:00 161.2 '' '' -1988-12-11 00:00 176.4 '' '' -1988-12-12 00:00 173.9 '' '' -1988-12-13 00:00 181.1 '' '' -1988-12-14 00:00 204.4 '' '' -1988-12-15 00:00 212.0 '' '' -1988-12-16 00:00 232.1 '' '' -1988-12-17 00:00 241.7 '' '' -1988-12-18 00:00 243.5 '' '' -1988-12-19 00:00 240.2 '' '' -1988-12-20 00:00 238.8 '' '' -1988-12-21 00:00 245.2 '' '' -1988-12-22 00:00 246.6 '' '' -1988-12-23 00:00 234.8 '' '' -1988-12-24 00:00 221.6 '' '' -1988-12-25 00:00 210.5 '' '' -1988-12-26 00:00 193.0 '' '' -1988-12-27 00:00 201.9 '' '' -1988-12-28 00:00 201.6 '' '' -1988-12-29 00:00 196.7 '' '' -1988-12-30 00:00 179.5 '' '' -1988-12-31 00:00 177.6 '' '' -1989-01-01 00:00 179.5 '' '' -1989-01-02 00:00 193.7 '' '' -1989-01-03 00:00 189.2 '' '' -1989-01-04 00:00 195.7 '' '' -1989-01-05 00:00 201.6 '' '' -1989-01-06 00:00 198.7 '' '' -1989-01-07 00:00 239.5 '' '' -1989-01-08 00:00 260.2 '' '' -1989-01-09 00:00 251.3 '' '' -1989-01-10 00:00 250.0 '' '' -1989-01-11 00:00 254.7 '' '' -1989-01-12 00:00 263.2 '' '' -1989-01-13 00:00 291.7 '' '' -1989-01-14 00:00 274.9 '' '' -1989-01-15 00:00 280.1 '' '' -1989-01-16 00:00 292.1 '' '' -1989-01-17 00:00 266.7 '' '' -1989-01-18 00:00 271.2 '' '' -1989-01-19 00:00 241.6 '' '' -1989-01-20 00:00 222.0 '' '' -1989-01-21 00:00 198.2 '' '' -1989-01-22 00:00 203.6 '' '' -1989-01-23 00:00 205.6 '' '' -1989-01-24 00:00 211.0 '' '' -1989-01-25 00:00 227.3 '' '' -1989-01-26 00:00 206.3 '' '' -1989-01-27 00:00 211.1 '' '' -1989-01-28 00:00 207.1 '' '' -1989-01-29 00:00 200.5 '' '' -1989-01-30 00:00 187.3 '' '' -1989-01-31 00:00 187.5 '' '' -1989-02-01 00:00 184.8 '' '' -1989-02-02 00:00 171.2 '' '' -1989-02-03 00:00 185.8 '' '' -1989-02-04 00:00 183.4 '' '' -1989-02-05 00:00 195.1 '' '' -1989-02-06 00:00 205.3 '' '' -1989-02-07 00:00 210.5 '' '' -1989-02-08 00:00 243.9 '' '' -1989-02-09 00:00 259.3 '' '' -1989-02-10 00:00 269.8 '' '' -1989-02-11 00:00 257.0 '' '' -1989-02-12 00:00 257.3 '' '' -1989-02-13 00:00 258.4 '' '' -1989-02-14 00:00 260.7 '' '' -1989-02-15 00:00 241.3 '' '' -1989-02-16 00:00 241.1 '' '' -1989-02-17 00:00 233.9 '' '' -1989-02-18 00:00 213.8 '' '' -1989-02-19 00:00 214.0 '' '' -1989-02-20 00:00 202.2 '' '' -1989-02-21 00:00 217.8 '' '' -1989-02-22 00:00 213.9 '' '' -1989-02-23 00:00 214.7 '' '' -1989-02-24 00:00 213.4 '' '' -1989-02-25 00:00 203.8 '' '' -1989-02-26 00:00 190.3 '' '' -1989-02-27 00:00 168.6 '' '' -1989-02-28 00:00 163.5 '' '' -1989-03-01 00:00 168.8 '' '' -1989-03-02 00:00 173.7 '' '' -1989-03-03 00:00 169.0 '' '' -1989-03-04 00:00 163.6 '' '' -1989-03-05 00:00 183.5 '' '' -1989-03-06 00:00 201.1 '' '' -1989-03-07 00:00 190.3 '' '' -1989-03-08 00:00 202.6 '' '' -1989-03-09 00:00 204.2 '' '' -1989-03-10 00:00 212.4 '' '' -1989-03-11 00:00 232.4 '' '' -1989-03-12 00:00 237.6 '' '' -1989-03-13 00:00 253.0 '' '' -1989-03-14 00:00 263.8 '' '' -1989-03-15 00:00 255.8 '' '' -1989-03-16 00:00 261.6 '' '' -1989-03-17 00:00 240.7 '' '' -1989-03-18 00:00 234.2 '' '' -1989-03-19 00:00 221.1 '' '' -1989-03-20 00:00 218.2 '' '' -1989-03-21 00:00 213.5 '' '' -1989-03-22 00:00 222.5 '' '' -1989-03-23 00:00 216.1 '' '' -1989-03-24 00:00 193.2 '' '' -1989-03-25 00:00 186.2 '' '' -1989-03-26 00:00 171.6 '' '' -1989-03-27 00:00 162.6 '' '' -1989-03-28 00:00 157.3 '' '' -1989-03-29 00:00 155.8 '' '' -1989-03-30 00:00 159.8 '' '' -1989-03-31 00:00 167.5 '' '' -1989-04-01 00:00 173.8 '' '' -1989-04-02 00:00 183.5 '' '' -1989-04-03 00:00 196.5 '' '' -1989-04-04 00:00 188.9 '' '' -1989-04-05 00:00 191.1 '' '' -1989-04-06 00:00 196.5 '' '' -1989-04-07 00:00 199.8 '' '' -1989-04-08 00:00 207.1 '' '' -1989-04-09 00:00 194.0 '' '' -1989-04-10 00:00 182.3 '' '' -1989-04-11 00:00 180.7 '' '' -1989-04-12 00:00 181.3 '' '' -1989-04-13 00:00 185.3 '' '' -1989-04-14 00:00 198.1 '' '' -1989-04-15 00:00 199.5 '' '' -1989-04-16 00:00 203.9 '' '' -1989-04-17 00:00 210.6 '' '' -1989-04-18 00:00 204.1 '' '' -1989-04-19 00:00 209.7 '' '' -1989-04-20 00:00 192.5 '' '' -1989-04-21 00:00 196.1 '' '' -1989-04-22 00:00 193.6 '' '' -1989-04-23 00:00 183.1 '' '' -1989-04-24 00:00 189.0 '' '' -1989-04-25 00:00 179.7 '' '' -1989-04-26 00:00 176.9 '' '' -1989-04-27 00:00 176.9 '' '' -1989-04-28 00:00 183.2 '' '' -1989-04-29 00:00 189.5 '' '' -1989-04-30 00:00 180.6 '' '' -1989-05-01 00:00 180.5 '' '' -1989-05-02 00:00 184.5 '' '' -1989-05-03 00:00 190.6 '' '' -1989-05-04 00:00 198.2 '' '' -1989-05-05 00:00 193.7 '' '' -1989-05-06 00:00 195.9 '' '' -1989-05-07 00:00 200.6 '' '' -1989-05-08 00:00 212.4 '' '' -1989-05-09 00:00 205.1 '' '' -1989-05-10 00:00 208.7 '' '' -1989-05-11 00:00 198.9 '' '' -1989-05-12 00:00 197.2 '' '' -1989-05-13 00:00 197.5 '' '' -1989-05-14 00:00 193.1 '' '' -1989-05-15 00:00 195.8 '' '' -1989-05-16 00:00 188.6 '' '' -1989-05-17 00:00 187.0 '' '' -1989-05-18 00:00 184.9 '' '' -1989-05-19 00:00 188.6 '' '' -1989-05-20 00:00 203.1 '' '' -1989-05-21 00:00 211.9 '' '' -1989-05-22 00:00 203.9 '' '' -1989-05-23 00:00 212.2 '' '' -1989-05-24 00:00 210.0 '' '' -1989-05-25 00:00 194.6 '' '' -1989-05-26 00:00 188.0 '' '' -1989-05-27 00:00 176.6 '' '' -1989-05-28 00:00 173.5 '' '' -1989-05-29 00:00 173.6 '' '' -1989-05-30 00:00 183.0 '' '' -1989-05-31 00:00 194.2 '' '' -1989-06-01 00:00 191.6 '' '' -1989-06-02 00:00 208.2 '' '' -1989-06-03 00:00 203.3 '' '' -1989-06-04 00:00 221.3 '' '' -1989-06-05 00:00 213.2 '' '' -1989-06-06 00:00 212.2 '' '' -1989-06-07 00:00 205.3 '' '' -1989-06-08 00:00 222.9 '' '' -1989-06-09 00:00 241.9 '' '' -1989-06-10 00:00 250.9 '' '' -1989-06-11 00:00 270.3 '' '' -1989-06-12 00:00 285.8 '' '' -1989-06-13 00:00 319.2 '' '' -1989-06-14 00:00 327.2 '' '' -1989-06-15 00:00 334.7 '' '' -1989-06-16 00:00 320.9 '' '' -1989-06-17 00:00 303.7 '' '' -1989-06-18 00:00 271.5 '' '' -1989-06-19 00:00 270.6 '' '' -1989-06-20 00:00 249.3 '' '' -1989-06-21 00:00 242.8 '' '' -1989-06-22 00:00 233.1 '' '' -1989-06-23 00:00 238.7 '' '' -1989-06-24 00:00 227.6 '' '' -1989-06-25 00:00 221.6 '' '' -1989-06-26 00:00 233.0 '' '' -1989-06-27 00:00 227.5 '' '' -1989-06-28 00:00 227.4 '' '' -1989-06-29 00:00 223.0 '' '' -1989-06-30 00:00 217.4 '' '' -1989-07-01 00:00 204.0 '' '' -1989-07-02 00:00 193.4 '' '' -1989-07-03 00:00 192.5 '' '' -1989-07-04 00:00 189.8 '' '' -1989-07-05 00:00 183.4 '' '' -1989-07-06 00:00 192.3 '' '' -1989-07-07 00:00 193.5 '' '' -1989-07-08 00:00 188.9 '' '' -1989-07-09 00:00 188.1 '' '' -1989-07-10 00:00 184.1 '' '' -1989-07-11 00:00 193.2 '' '' -1989-07-12 00:00 190.7 '' '' -1989-07-13 00:00 184.0 '' '' -1989-07-14 00:00 183.9 '' '' -1989-07-15 00:00 185.7 '' '' -1989-07-16 00:00 183.9 '' '' -1989-07-17 00:00 184.1 '' '' -1989-07-18 00:00 189.2 '' '' -1989-07-19 00:00 193.7 '' '' -1989-07-20 00:00 192.4 '' '' -1989-07-21 00:00 195.0 '' '' -1989-07-22 00:00 200.9 '' '' -1989-07-23 00:00 196.5 '' '' -1989-07-24 00:00 191.1 '' '' -1989-07-25 00:00 180.4 '' '' -1989-07-26 00:00 169.8 '' '' -1989-07-27 00:00 172.8 '' '' -1989-07-28 00:00 170.7 '' '' -1989-07-29 00:00 180.9 '' '' -1989-07-30 00:00 185.1 '' '' -1989-07-31 00:00 188.2 '' '' -1989-08-01 00:00 198.5 '' '' -1989-08-02 00:00 201.7 '' '' -1989-08-03 00:00 220.2 '' '' -1989-08-04 00:00 225.7 '' '' -1989-08-05 00:00 241.5 '' '' -1989-08-06 00:00 240.3 '' '' -1989-08-07 00:00 240.6 '' '' -1989-08-08 00:00 233.6 '' '' -1989-08-09 00:00 233.9 '' '' -1989-08-10 00:00 232.6 '' '' -1989-08-11 00:00 243.6 '' '' -1989-08-12 00:00 256.1 '' '' -1989-08-13 00:00 263.9 '' '' -1989-08-14 00:00 271.3 '' '' -1989-08-15 00:00 281.7 '' '' -1989-08-16 00:00 259.8 '' '' -1989-08-17 00:00 262.9 '' '' -1989-08-18 00:00 265.0 '' '' -1989-08-19 00:00 249.1 '' '' -1989-08-20 00:00 236.4 '' '' -1989-08-21 00:00 225.7 '' '' -1989-08-22 00:00 205.4 '' '' -1989-08-23 00:00 191.3 '' '' -1989-08-24 00:00 182.0 '' '' -1989-08-25 00:00 159.7 '' '' -1989-08-26 00:00 161.0 '' '' -1989-08-27 00:00 159.6 '' '' -1989-08-28 00:00 174.1 '' '' -1989-08-29 00:00 180.3 '' '' -1989-08-30 00:00 192.0 '' '' -1989-08-31 00:00 208.9 '' '' -1989-09-01 00:00 223.8 '' '' -1989-09-02 00:00 233.3 '' '' -1989-09-03 00:00 243.0 '' '' -1989-09-04 00:00 245.0 '' '' -1989-09-05 00:00 273.3 '' '' -1989-09-06 00:00 288.4 '' '' -1989-09-07 00:00 303.4 '' '' -1989-09-08 00:00 302.1 '' '' -1989-09-09 00:00 311.5 '' '' -1989-09-10 00:00 303.3 '' '' -1989-09-11 00:00 299.3 '' '' -1989-09-12 00:00 292.2 '' '' -1989-09-13 00:00 249.3 '' '' -1989-09-14 00:00 244.9 '' '' -1989-09-15 00:00 226.0 '' '' -1989-09-16 00:00 233.7 '' '' -1989-09-17 00:00 216.2 '' '' -1989-09-18 00:00 208.6 '' '' -1989-09-19 00:00 197.0 '' '' -1989-09-20 00:00 173.1 '' '' -1989-09-21 00:00 161.8 '' '' -1989-09-22 00:00 159.3 '' '' -1989-09-23 00:00 157.5 '' '' -1989-09-24 00:00 157.0 '' '' -1989-09-25 00:00 166.8 '' '' -1989-09-26 00:00 182.2 '' '' -1989-09-27 00:00 199.4 '' '' -1989-09-28 00:00 194.3 '' '' -1989-09-29 00:00 204.7 '' '' -1989-09-30 00:00 202.0 '' '' -1989-10-01 00:00 198.4 '' '' -1989-10-02 00:00 208.5 '' '' -1989-10-03 00:00 222.4 '' '' -1989-10-04 00:00 234.1 '' '' -1989-10-05 00:00 223.2 '' '' -1989-10-06 00:00 220.5 '' '' -1989-10-07 00:00 225.7 '' '' -1989-10-08 00:00 210.1 '' '' -1989-10-09 00:00 201.9 '' '' -1989-10-10 00:00 195.5 '' '' -1989-10-11 00:00 191.5 '' '' -1989-10-12 00:00 203.2 '' '' -1989-10-13 00:00 224.2 '' '' -1989-10-14 00:00 225.9 '' '' -1989-10-15 00:00 225.4 '' '' -1989-10-16 00:00 237.0 '' '' -1989-10-17 00:00 225.3 '' '' -1989-10-18 00:00 221.3 '' '' -1989-10-19 00:00 214.7 '' '' -1989-10-20 00:00 205.4 '' '' -1989-10-21 00:00 206.2 '' '' -1989-10-22 00:00 217.8 '' '' -1989-10-23 00:00 210.4 '' '' -1989-10-24 00:00 214.2 '' '' -1989-10-25 00:00 183.3 '' '' -1989-10-26 00:00 171.7 '' '' -1989-10-27 00:00 176.9 '' '' -1989-10-28 00:00 173.0 '' '' -1989-10-29 00:00 172.0 '' '' -1989-10-30 00:00 186.3 '' '' -1989-10-31 00:00 202.0 '' '' -1989-11-01 00:00 211.4 '' '' -1989-11-02 00:00 216.0 '' '' -1989-11-03 00:00 217.6 '' '' -1989-11-04 00:00 223.9 '' '' -1989-11-05 00:00 235.4 '' '' -1989-11-06 00:00 255.3 '' '' -1989-11-07 00:00 207.3 '' '' -1989-11-08 00:00 270.9 '' '' -1989-11-09 00:00 257.2 '' '' -1989-11-10 00:00 246.3 '' '' -1989-11-11 00:00 249.1 '' '' -1989-11-12 00:00 253.5 '' '' -1989-11-13 00:00 240.3 '' '' -1989-11-14 00:00 243.0 '' '' -1989-11-15 00:00 216.5 '' '' -1989-11-16 00:00 216.2 '' '' -1989-11-17 00:00 215.0 '' '' -1989-11-18 00:00 221.6 '' '' -1989-11-19 00:00 229.2 '' '' -1989-11-20 00:00 223.7 '' '' -1989-11-21 00:00 229.4 '' '' -1989-11-22 00:00 222.0 '' '' -1989-11-23 00:00 213.4 '' '' -1989-11-24 00:00 208.8 '' '' -1989-11-25 00:00 216.0 '' '' -1989-11-26 00:00 234.3 '' '' -1989-11-27 00:00 239.4 '' '' -1989-11-28 00:00 231.3 '' '' -1989-11-29 00:00 215.1 '' '' -1989-11-30 00:00 240.9 '' '' -1989-12-01 00:00 223.7 '' '' -1989-12-02 00:00 213.7 '' '' -1989-12-03 00:00 205.6 '' '' -1989-12-04 00:00 212.9 '' '' -1989-12-05 00:00 209.7 '' '' -1989-12-06 00:00 209.7 '' '' -1989-12-07 00:00 221.5 '' '' -1989-12-08 00:00 203.6 '' '' -1989-12-09 00:00 194.6 '' '' -1989-12-10 00:00 177.1 '' '' -1989-12-11 00:00 171.7 '' '' -1989-12-12 00:00 164.9 '' '' -1989-12-13 00:00 163.2 '' '' -1989-12-14 00:00 161.8 '' '' -1989-12-15 00:00 165.5 '' '' -1989-12-16 00:00 164.1 '' '' -1989-12-17 00:00 176.0 '' '' -1989-12-18 00:00 185.9 '' '' -1989-12-19 00:00 188.2 '' '' -1989-12-20 00:00 189.3 '' '' -1989-12-21 00:00 189.9 '' '' -1989-12-22 00:00 199.9 '' '' -1989-12-23 00:00 213.8 '' '' -1989-12-24 00:00 231.0 '' '' -1989-12-25 00:00 248.0 '' '' -1989-12-26 00:00 252.6 '' '' -1989-12-27 00:00 274.8 '' '' -1989-12-28 00:00 246.4 '' '' -1989-12-29 00:00 242.7 '' '' -1989-12-30 00:00 258.2 '' '' -1989-12-31 00:00 236.7 '' '' -1990-01-01 00:00 209.3 '' '' -1990-01-02 00:00 208.6 '' '' -1990-01-03 00:00 192.5 '' '' -1990-01-04 00:00 189.2 '' '' -1990-01-05 00:00 187.1 '' '' -1990-01-06 00:00 180.9 '' '' -1990-01-07 00:00 177.1 '' '' -1990-01-08 00:00 170.9 '' '' -1990-01-09 00:00 160.6 '' '' -1990-01-10 00:00 167.2 '' '' -1990-01-11 00:00 169.5 '' '' -1990-01-12 00:00 170.0 '' '' -1990-01-13 00:00 167.0 '' '' -1990-01-14 00:00 165.9 '' '' -1990-01-15 00:00 184.9 '' '' -1990-01-16 00:00 187.6 '' '' -1990-01-17 00:00 186.8 '' '' -1990-01-18 00:00 217.2 '' '' -1990-01-19 00:00 233.1 '' '' -1990-01-20 00:00 238.2 '' '' -1990-01-21 00:00 250.8 '' '' -1990-01-22 00:00 233.7 '' '' -1990-01-23 00:00 233.6 '' '' -1990-01-24 00:00 239.8 '' '' -1990-01-25 00:00 234.6 '' '' -1990-01-26 00:00 238.8 '' '' -1990-01-27 00:00 232.2 '' '' -1990-01-28 00:00 230.1 '' '' -1990-01-29 00:00 227.8 '' '' -1990-01-30 00:00 211.4 '' '' -1990-01-31 00:00 209.3 '' '' -1990-02-01 00:00 200.8 '' '' -1990-02-02 00:00 177.8 '' '' -1990-02-03 00:00 157.9 '' '' -1990-02-04 00:00 154.8 '' '' -1990-02-05 00:00 150.9 '' '' -1990-02-06 00:00 147.5 '' '' -1990-02-07 00:00 144.3 '' '' -1990-02-08 00:00 142.2 '' '' -1990-02-09 00:00 142.0 '' '' -1990-02-10 00:00 148.5 '' '' -1990-02-11 00:00 134.9 '' '' -1990-02-12 00:00 140.0 '' '' -1990-02-13 00:00 142.8 '' '' -1990-02-14 00:00 149.5 '' '' -1990-02-15 00:00 148.8 '' '' -1990-02-16 00:00 148.8 '' '' -1990-02-17 00:00 151.6 '' '' -1990-02-18 00:00 161.1 '' '' -1990-02-19 00:00 180.3 '' '' -1990-02-20 00:00 189.5 '' '' -1990-02-21 00:00 211.9 '' '' -1990-02-22 00:00 215.7 '' '' -1990-02-23 00:00 216.6 '' '' -1990-02-24 00:00 231.5 '' '' -1990-02-25 00:00 225.3 '' '' -1990-02-26 00:00 213.3 '' '' -1990-02-27 00:00 224.1 '' '' -1990-02-28 00:00 222.0 '' '' -1990-03-01 00:00 200.0 '' '' -1990-03-02 00:00 192.7 '' '' -1990-03-03 00:00 176.3 '' '' -1990-03-04 00:00 168.9 '' '' -1990-03-05 00:00 161.7 '' '' -1990-03-06 00:00 163.8 '' '' -1990-03-07 00:00 168.1 '' '' -1990-03-08 00:00 157.1 '' '' -1990-03-09 00:00 150.9 '' '' -1990-03-10 00:00 149.0 '' '' -1990-03-11 00:00 142.5 '' '' -1990-03-12 00:00 146.1 '' '' -1990-03-13 00:00 146.3 '' '' -1990-03-14 00:00 149.8 '' '' -1990-03-15 00:00 164.2 '' '' -1990-03-16 00:00 178.1 '' '' -1990-03-17 00:00 182.0 '' '' -1990-03-18 00:00 196.4 '' '' -1990-03-19 00:00 216.3 '' '' -1990-03-20 00:00 223.9 '' '' -1990-03-21 00:00 227.6 '' '' -1990-03-22 00:00 243.1 '' '' -1990-03-23 00:00 245.3 '' '' -1990-03-24 00:00 231.3 '' '' -1990-03-25 00:00 223.9 '' '' -1990-03-26 00:00 226.9 '' '' -1990-03-27 00:00 215.1 '' '' -1990-03-28 00:00 206.0 '' '' -1990-03-29 00:00 184.1 '' '' -1990-03-30 00:00 186.5 '' '' -1990-03-31 00:00 172.8 '' '' -1990-04-01 00:00 159.2 '' '' -1990-04-02 00:00 153.3 '' '' -1990-04-03 00:00 151.6 '' '' -1990-04-04 00:00 148.6 '' '' -1990-04-05 00:00 156.5 '' '' -1990-04-06 00:00 150.2 '' '' -1990-04-07 00:00 155.0 '' '' -1990-04-08 00:00 152.3 '' '' -1990-04-09 00:00 146.8 '' '' -1990-04-10 00:00 149.3 '' '' -1990-04-11 00:00 160.8 '' '' -1990-04-12 00:00 169.9 '' '' -1990-04-13 00:00 195.5 '' '' -1990-04-14 00:00 215.7 '' '' -1990-04-15 00:00 222.9 '' '' -1990-04-16 00:00 226.3 '' '' -1990-04-17 00:00 236.7 '' '' -1990-04-18 00:00 243.0 '' '' -1990-04-19 00:00 244.2 '' '' -1990-04-20 00:00 257.1 '' '' -1990-04-21 00:00 239.6 '' '' -1990-04-22 00:00 232.8 '' '' -1990-04-23 00:00 226.3 '' '' -1990-04-24 00:00 217.4 '' '' -1990-04-25 00:00 198.3 '' '' -1990-04-26 00:00 188.9 '' '' -1990-04-27 00:00 169.8 '' '' -1990-04-28 00:00 152.7 '' '' -1990-04-29 00:00 140.9 '' '' -1990-04-30 00:00 136.9 '' '' -1990-05-01 00:00 129.0 '' '' -1990-05-02 00:00 129.2 '' '' -1990-05-03 00:00 125.2 '' '' -1990-05-04 00:00 123.6 '' '' -1990-05-05 00:00 130.6 '' '' -1990-05-06 00:00 151.0 '' '' -1990-05-07 00:00 155.5 '' '' -1990-05-08 00:00 170.7 '' '' -1990-05-09 00:00 174.6 '' '' -1990-05-10 00:00 195.4 '' '' -1990-05-11 00:00 205.4 '' '' -1990-05-12 00:00 215.2 '' '' -1990-05-13 00:00 225.8 '' '' -1990-05-14 00:00 224.2 '' '' -1990-05-15 00:00 246.6 '' '' -1990-05-16 00:00 251.5 '' '' -1990-05-17 00:00 248.9 '' '' -1990-05-18 00:00 271.8 '' '' -1990-05-19 00:00 280.0 '' '' -1990-05-20 00:00 272.5 '' '' -1990-05-21 00:00 259.2 '' '' -1990-05-22 00:00 250.0 '' '' -1990-05-23 00:00 239.5 '' '' -1990-05-24 00:00 209.2 '' '' -1990-05-25 00:00 189.1 '' '' -1990-05-26 00:00 186.3 '' '' -1990-05-27 00:00 164.6 '' '' -1990-05-28 00:00 159.3 '' '' -1990-05-29 00:00 144.8 '' '' -1990-05-30 00:00 142.5 '' '' -1990-05-31 00:00 142.5 '' '' -1990-06-01 00:00 140.6 '' '' -1990-06-02 00:00 141.2 '' '' -1990-06-03 00:00 146.1 '' '' -1990-06-04 00:00 148.1 '' '' -1990-06-05 00:00 153.7 '' '' -1990-06-06 00:00 161.4 '' '' -1990-06-07 00:00 183.6 '' '' -1990-06-08 00:00 195.5 '' '' -1990-06-09 00:00 203.9 '' '' -1990-06-10 00:00 207.5 '' '' -1990-06-11 00:00 217.2 '' '' -1990-06-12 00:00 221.8 '' '' -1990-06-13 00:00 208.8 '' '' -1990-06-14 00:00 206.8 '' '' -1990-06-15 00:00 196.3 '' '' -1990-06-16 00:00 189.9 '' '' -1990-06-17 00:00 187.5 '' '' -1990-06-18 00:00 169.5 '' '' -1990-06-19 00:00 163.5 '' '' -1990-06-20 00:00 161.2 '' '' -1990-06-21 00:00 155.8 '' '' -1990-06-22 00:00 145.2 '' '' -1990-06-23 00:00 139.1 '' '' -1990-06-24 00:00 143.8 '' '' -1990-06-25 00:00 149.3 '' '' -1990-06-26 00:00 154.5 '' '' -1990-06-27 00:00 173.4 '' '' -1990-06-28 00:00 187.7 '' '' -1990-06-29 00:00 210.8 '' '' -1990-06-30 00:00 226.6 '' '' -1990-07-01 00:00 248.3 '' '' -1990-07-02 00:00 276.6 '' '' -1990-07-03 00:00 253.8 '' '' -1990-07-04 00:00 238.3 '' '' -1990-07-05 00:00 231.6 '' '' -1990-07-06 00:00 221.8 '' '' -1990-07-07 00:00 215.7 '' '' -1990-07-08 00:00 189.6 '' '' -1990-07-09 00:00 170.9 '' '' -1990-07-10 00:00 164.0 '' '' -1990-07-11 00:00 160.2 '' '' -1990-07-12 00:00 160.9 '' '' -1990-07-13 00:00 161.5 '' '' -1990-07-14 00:00 155.4 '' '' -1990-07-15 00:00 149.1 '' '' -1990-07-16 00:00 146.5 '' '' -1990-07-17 00:00 147.6 '' '' -1990-07-18 00:00 144.7 '' '' -1990-07-19 00:00 145.3 '' '' -1990-07-20 00:00 154.0 '' '' -1990-07-21 00:00 159.2 '' '' -1990-07-22 00:00 166.0 '' '' -1990-07-23 00:00 180.4 '' '' -1990-07-24 00:00 186.6 '' '' -1990-07-25 00:00 213.6 '' '' -1990-07-26 00:00 209.9 '' '' -1990-07-27 00:00 197.2 '' '' -1990-07-28 00:00 193.1 '' '' -1990-07-29 00:00 180.3 '' '' -1990-07-30 00:00 188.3 '' '' -1990-07-31 00:00 183.4 '' '' -1990-08-01 00:00 199.0 '' '' -1990-08-02 00:00 208.6 '' '' -1990-08-03 00:00 192.4 '' '' -1990-08-04 00:00 191.2 '' '' -1990-08-05 00:00 180.8 '' '' -1990-08-06 00:00 174.6 '' '' -1990-08-07 00:00 172.1 '' '' -1990-08-08 00:00 184.8 '' '' -1990-08-09 00:00 183.2 '' '' -1990-08-10 00:00 186.3 '' '' -1990-08-11 00:00 187.1 '' '' -1990-08-12 00:00 188.2 '' '' -1990-08-13 00:00 192.5 '' '' -1990-08-14 00:00 188.2 '' '' -1990-08-15 00:00 199.6 '' '' -1990-08-16 00:00 211.0 '' '' -1990-08-17 00:00 228.4 '' '' -1990-08-18 00:00 246.1 '' '' -1990-08-19 00:00 268.0 '' '' -1990-08-20 00:00 288.7 '' '' -1990-08-21 00:00 298.3 '' '' -1990-08-22 00:00 322.8 '' '' -1990-08-23 00:00 322.7 '' '' -1990-08-24 00:00 329.2 '' '' -1990-08-25 00:00 303.9 '' '' -1990-08-26 00:00 285.1 '' '' -1990-08-27 00:00 269.2 '' '' -1990-08-28 00:00 250.2 '' '' -1990-08-29 00:00 225.2 '' '' -1990-08-30 00:00 210.4 '' '' -1990-08-31 00:00 182.9 '' '' -1990-09-01 00:00 171.4 '' '' -1990-09-02 00:00 168.9 '' '' -1990-09-03 00:00 162.6 '' '' -1990-09-04 00:00 158.2 '' '' -1990-09-05 00:00 157.5 '' '' -1990-09-06 00:00 157.6 '' '' -1990-09-07 00:00 165.1 '' '' -1990-09-08 00:00 163.5 '' '' -1990-09-09 00:00 170.4 '' '' -1990-09-10 00:00 171.2 '' '' -1990-09-11 00:00 180.6 '' '' -1990-09-12 00:00 193.3 '' '' -1990-09-13 00:00 198.0 '' '' -1990-09-14 00:00 209.4 '' '' -1990-09-15 00:00 207.3 '' '' -1990-09-16 00:00 205.2 '' '' -1990-09-17 00:00 210.7 '' '' -1990-09-18 00:00 207.5 '' '' -1990-09-19 00:00 213.8 '' '' -1990-09-20 00:00 204.0 '' '' -1990-09-21 00:00 203.2 '' '' -1990-09-22 00:00 195.3 '' '' -1990-09-23 00:00 185.4 '' '' -1990-09-24 00:00 178.7 '' '' -1990-09-25 00:00 167.1 '' '' -1990-09-26 00:00 159.6 '' '' -1990-09-27 00:00 152.6 '' '' -1990-09-28 00:00 152.1 '' '' -1990-09-29 00:00 150.1 '' '' -1990-09-30 00:00 157.8 '' '' -1990-10-01 00:00 160.5 '' '' -1990-10-02 00:00 162.8 '' '' -1990-10-03 00:00 177.4 '' '' -1990-10-04 00:00 186.8 '' '' -1990-10-05 00:00 170.0 '' '' -1990-10-06 00:00 170.0 '' '' -1990-10-07 00:00 169.3 '' '' -1990-10-08 00:00 175.9 '' '' -1990-10-09 00:00 183.9 '' '' -1990-10-10 00:00 194.7 '' '' -1990-10-11 00:00 205.1 '' '' -1990-10-12 00:00 200.6 '' '' -1990-10-13 00:00 209.4 '' '' -1990-10-14 00:00 220.6 '' '' -1990-10-15 00:00 231.6 '' '' -1990-10-16 00:00 224.6 '' '' -1990-10-17 00:00 193.7 '' '' -1990-10-18 00:00 198.2 '' '' -1990-10-19 00:00 214.2 '' '' -1990-10-20 00:00 201.7 '' '' -1990-10-21 00:00 188.7 '' '' -1990-10-22 00:00 167.9 '' '' -1990-10-23 00:00 164.0 '' '' -1990-10-24 00:00 157.5 '' '' -1990-10-25 00:00 161.8 '' '' -1990-10-26 00:00 153.5 '' '' -1990-10-27 00:00 162.5 '' '' -1990-10-28 00:00 150.9 '' '' -1990-10-29 00:00 155.9 '' '' -1990-10-30 00:00 151.1 '' '' -1990-10-31 00:00 141.6 '' '' -1990-11-01 00:00 141.6 '' '' -1990-11-02 00:00 138.5 '' '' -1990-11-03 00:00 150.2 '' '' -1990-11-04 00:00 154.7 '' '' -1990-11-05 00:00 169.7 '' '' -1990-11-06 00:00 196.4 '' '' -1990-11-07 00:00 214.3 '' '' -1990-11-08 00:00 211.8 '' '' -1990-11-09 00:00 210.2 '' '' -1990-11-10 00:00 191.1 '' '' -1990-11-11 00:00 195.0 '' '' -1990-11-12 00:00 191.0 '' '' -1990-11-13 00:00 181.5 '' '' -1990-11-14 00:00 198.0 '' '' -1990-11-15 00:00 207.3 '' '' -1990-11-16 00:00 207.3 '' '' -1990-11-17 00:00 217.1 '' '' -1990-11-18 00:00 198.9 '' '' -1990-11-19 00:00 191.2 '' '' -1990-11-20 00:00 186.8 '' '' -1990-11-21 00:00 177.6 '' '' -1990-11-22 00:00 177.4 '' '' -1990-11-23 00:00 171.7 '' '' -1990-11-24 00:00 167.2 '' '' -1990-11-25 00:00 162.3 '' '' -1990-11-26 00:00 153.2 '' '' -1990-11-27 00:00 155.0 '' '' -1990-11-28 00:00 167.1 '' '' -1990-11-29 00:00 163.2 '' '' -1990-11-30 00:00 169.6 '' '' -1990-12-01 00:00 172.6 '' '' -1990-12-02 00:00 178.0 '' '' -1990-12-03 00:00 187.6 '' '' -1990-12-04 00:00 199.3 '' '' -1990-12-05 00:00 207.0 '' '' -1990-12-06 00:00 221.0 '' '' -1990-12-07 00:00 222.0 '' '' -1990-12-08 00:00 223.6 '' '' -1990-12-09 00:00 230.3 '' '' -1990-12-10 00:00 233.4 '' '' -1990-12-11 00:00 233.4 '' '' -1990-12-12 00:00 228.0 '' '' -1990-12-13 00:00 219.5 '' '' -1990-12-14 00:00 195.3 '' '' -1990-12-15 00:00 193.2 '' '' -1990-12-16 00:00 186.2 '' '' -1990-12-17 00:00 192.5 '' '' -1990-12-18 00:00 201.6 '' '' -1990-12-19 00:00 191.2 '' '' -1990-12-20 00:00 181.6 '' '' -1990-12-21 00:00 185.8 '' '' -1990-12-22 00:00 178.1 '' '' -1990-12-23 00:00 185.6 '' '' -1990-12-24 00:00 184.9 '' '' -1990-12-25 00:00 185.0 '' '' -1990-12-26 00:00 188.1 '' '' -1990-12-27 00:00 191.9 '' '' -1990-12-28 00:00 192.4 '' '' -1990-12-29 00:00 195.5 '' '' -1990-12-30 00:00 189.6 '' '' -1990-12-31 00:00 180.6 '' '' -1991-01-01 00:00 180.6 '' '' -1991-01-02 00:00 175.8 '' '' -1991-01-03 00:00 170.0 '' '' -1991-01-04 00:00 170.2 '' '' -1991-01-05 00:00 172.9 '' '' -1991-01-06 00:00 179.7 '' '' -1991-01-07 00:00 199.6 '' '' -1991-01-08 00:00 207.9 '' '' -1991-01-09 00:00 209.1 '' '' -1991-01-10 00:00 214.6 '' '' -1991-01-11 00:00 209.4 '' '' -1991-01-12 00:00 201.6 '' '' -1991-01-13 00:00 190.5 '' '' -1991-01-14 00:00 184.5 '' '' -1991-01-15 00:00 184.6 '' '' -1991-01-16 00:00 181.8 '' '' -1991-01-17 00:00 202.0 '' '' -1991-01-18 00:00 196.8 '' '' -1991-01-19 00:00 192.3 '' '' -1991-01-20 00:00 197.5 '' '' -1991-01-21 00:00 195.9 '' '' -1991-01-22 00:00 217.5 '' '' -1991-01-23 00:00 216.0 '' '' -1991-01-24 00:00 236.8 '' '' -1991-01-25 00:00 260.9 '' '' -1991-01-26 00:00 276.9 '' '' -1991-01-27 00:00 293.8 '' '' -1991-01-28 00:00 313.8 '' '' -1991-01-29 00:00 344.5 '' '' -1991-01-30 00:00 359.2 '' '' -1991-01-31 00:00 348.6 '' '' -1991-02-01 00:00 307.3 '' '' -1991-02-02 00:00 289.3 '' '' -1991-02-03 00:00 258.4 '' '' -1991-02-04 00:00 239.2 '' '' -1991-02-05 00:00 216.5 '' '' -1991-02-06 00:00 198.7 '' '' -1991-02-07 00:00 192.7 '' '' -1991-02-08 00:00 192.7 '' '' -1991-02-09 00:00 174.0 '' '' -1991-02-10 00:00 169.5 '' '' -1991-02-11 00:00 176.5 '' '' -1991-02-12 00:00 181.6 '' '' -1991-02-13 00:00 182.2 '' '' -1991-02-14 00:00 184.0 '' '' -1991-02-15 00:00 191.9 '' '' -1991-02-16 00:00 200.4 '' '' -1991-02-17 00:00 210.2 '' '' -1991-02-18 00:00 259.6 '' '' -1991-02-19 00:00 269.8 '' '' -1991-02-20 00:00 283.8 '' '' -1991-02-21 00:00 299.2 '' '' -1991-02-22 00:00 302.6 '' '' -1991-02-23 00:00 311.5 '' '' -1991-02-24 00:00 313.1 '' '' -1991-02-25 00:00 288.4 '' '' -1991-02-26 00:00 271.8 '' '' -1991-02-27 00:00 248.7 '' '' -1991-02-28 00:00 228.0 '' '' -1991-03-01 00:00 216.5 '' '' -1991-03-02 00:00 207.5 '' '' -1991-03-03 00:00 206.4 '' '' -1991-03-04 00:00 218.9 '' '' -1991-03-05 00:00 208.1 '' '' -1991-03-06 00:00 206.7 '' '' -1991-03-07 00:00 214.5 '' '' -1991-03-08 00:00 209.1 '' '' -1991-03-09 00:00 215.7 '' '' -1991-03-10 00:00 222.8 '' '' -1991-03-11 00:00 221.9 '' '' -1991-03-12 00:00 228.7 '' '' -1991-03-13 00:00 239.1 '' '' -1991-03-14 00:00 241.6 '' '' -1991-03-15 00:00 242.2 '' '' -1991-03-16 00:00 258.5 '' '' -1991-03-17 00:00 245.4 '' '' -1991-03-18 00:00 274.8 '' '' -1991-03-19 00:00 264.9 '' '' -1991-03-20 00:00 254.2 '' '' -1991-03-21 00:00 253.1 '' '' -1991-03-22 00:00 257.7 '' '' -1991-03-23 00:00 233.4 '' '' -1991-03-24 00:00 260.5 '' '' -1991-03-25 00:00 235.2 '' '' -1991-03-26 00:00 229.4 '' '' -1991-03-27 00:00 203.0 '' '' -1991-03-28 00:00 197.7 '' '' -1991-03-29 00:00 192.9 '' '' -1991-03-30 00:00 201.3 '' '' -1991-03-31 00:00 194.7 '' '' -1991-04-01 00:00 192.8 '' '' -1991-04-02 00:00 189.1 '' '' -1991-04-03 00:00 195.9 '' '' -1991-04-04 00:00 195.1 '' '' -1991-04-05 00:00 196.7 '' '' -1991-04-06 00:00 199.9 '' '' -1991-04-07 00:00 192.6 '' '' -1991-04-08 00:00 182.8 '' '' -1991-04-09 00:00 204.2 '' '' -1991-04-10 00:00 223.6 '' '' -1991-04-11 00:00 231.5 '' '' -1991-04-12 00:00 254.4 '' '' -1991-04-13 00:00 242.6 '' '' -1991-04-14 00:00 269.3 '' '' -1991-04-15 00:00 263.1 '' '' -1991-04-16 00:00 269.1 '' '' -1991-04-17 00:00 254.2 '' '' -1991-04-18 00:00 239.1 '' '' -1991-04-19 00:00 232.0 '' '' -1991-04-20 00:00 235.3 '' '' -1991-04-21 00:00 181.6 '' '' -1991-04-22 00:00 168.7 '' '' -1991-04-23 00:00 149.0 '' '' -1991-04-24 00:00 137.4 '' '' -1991-04-25 00:00 138.1 '' '' -1991-04-26 00:00 138.3 '' '' -1991-04-27 00:00 144.6 '' '' -1991-04-28 00:00 158.4 '' '' -1991-04-29 00:00 161.0 '' '' -1991-04-30 00:00 161.7 '' '' -1991-05-01 00:00 163.6 '' '' -1991-05-02 00:00 159.6 '' '' -1991-05-03 00:00 159.5 '' '' -1991-05-04 00:00 165.8 '' '' -1991-05-05 00:00 183.2 '' '' -1991-05-06 00:00 207.2 '' '' -1991-05-07 00:00 215.3 '' '' -1991-05-08 00:00 235.6 '' '' -1991-05-09 00:00 230.1 '' '' -1991-05-10 00:00 237.0 '' '' -1991-05-11 00:00 234.5 '' '' -1991-05-12 00:00 253.7 '' '' -1991-05-13 00:00 219.7 '' '' -1991-05-14 00:00 212.8 '' '' -1991-05-15 00:00 197.7 '' '' -1991-05-16 00:00 193.4 '' '' -1991-05-17 00:00 176.2 '' '' -1991-05-18 00:00 174.2 '' '' -1991-05-19 00:00 162.7 '' '' -1991-05-20 00:00 151.8 '' '' -1991-05-21 00:00 153.0 '' '' -1991-05-22 00:00 151.9 '' '' -1991-05-23 00:00 158.6 '' '' -1991-05-24 00:00 162.8 '' '' -1991-05-25 00:00 178.8 '' '' -1991-05-26 00:00 191.4 '' '' -1991-05-27 00:00 202.9 '' '' -1991-05-28 00:00 221.4 '' '' -1991-05-29 00:00 231.1 '' '' -1991-05-30 00:00 213.5 '' '' -1991-05-31 00:00 230.7 '' '' -1991-06-01 00:00 224.9 '' '' -1991-06-02 00:00 243.1 '' '' -1991-06-03 00:00 226.8 '' '' -1991-06-04 00:00 245.6 '' '' -1991-06-05 00:00 258.1 '' '' -1991-06-06 00:00 241.3 '' '' -1991-06-07 00:00 236.6 '' '' -1991-06-08 00:00 250.7 '' '' -1991-06-09 00:00 245.3 '' '' -1991-06-10 00:00 246.2 '' '' -1991-06-11 00:00 242.8 '' '' -1991-06-12 00:00 236.8 '' '' -1991-06-13 00:00 224.7 '' '' -1991-06-14 00:00 207.2 '' '' -1991-06-15 00:00 203.1 '' '' -1991-06-16 00:00 190.5 '' '' -1991-06-17 00:00 182.1 '' '' -1991-06-18 00:00 178.7 '' '' -1991-06-19 00:00 180.7 '' '' -1991-06-20 00:00 171.7 '' '' -1991-06-21 00:00 175.1 '' '' -1991-06-22 00:00 175.4 '' '' -1991-06-23 00:00 166.6 '' '' -1991-06-24 00:00 173.9 '' '' -1991-06-25 00:00 178.8 '' '' -1991-06-26 00:00 191.3 '' '' -1991-06-27 00:00 206.3 '' '' -1991-06-28 00:00 217.5 '' '' -1991-06-29 00:00 234.4 '' '' -1991-06-30 00:00 243.6 '' '' -1991-07-01 00:00 250.3 '' '' -1991-07-02 00:00 251.8 '' '' -1991-07-03 00:00 257.3 '' '' -1991-07-04 00:00 255.4 '' '' -1991-07-05 00:00 259.5 '' '' -1991-07-06 00:00 240.8 '' '' -1991-07-07 00:00 226.1 '' '' -1991-07-08 00:00 211.2 '' '' -1991-07-09 00:00 200.6 '' '' -1991-07-10 00:00 200.2 '' '' -1991-07-11 00:00 202.3 '' '' -1991-07-12 00:00 209.9 '' '' -1991-07-13 00:00 202.3 '' '' -1991-07-14 00:00 194.8 '' '' -1991-07-15 00:00 192.0 '' '' -1991-07-16 00:00 172.6 '' '' -1991-07-17 00:00 163.9 '' '' -1991-07-18 00:00 194.8 '' '' -1991-07-19 00:00 184.1 '' '' -1991-07-20 00:00 205.3 '' '' -1991-07-21 00:00 221.6 '' '' -1991-07-22 00:00 230.2 '' '' -1991-07-23 00:00 234.0 '' '' -1991-07-24 00:00 240.8 '' '' -1991-07-25 00:00 237.5 '' '' -1991-07-26 00:00 226.6 '' '' -1991-07-27 00:00 219.5 '' '' -1991-07-28 00:00 219.4 '' '' -1991-07-29 00:00 226.6 '' '' -1991-07-30 00:00 228.4 '' '' -1991-07-31 00:00 225.9 '' '' -1991-08-01 00:00 232.0 '' '' -1991-08-02 00:00 213.2 '' '' -1991-08-03 00:00 219.4 '' '' -1991-08-04 00:00 198.8 '' '' -1991-08-05 00:00 179.4 '' '' -1991-08-06 00:00 171.4 '' '' -1991-08-07 00:00 170.0 '' '' -1991-08-08 00:00 163.5 '' '' -1991-08-09 00:00 154.6 '' '' -1991-08-10 00:00 145.7 '' '' -1991-08-11 00:00 142.4 '' '' -1991-08-12 00:00 150.7 '' '' -1991-08-13 00:00 159.5 '' '' -1991-08-14 00:00 179.6 '' '' -1991-08-15 00:00 220.4 '' '' -1991-08-16 00:00 270.7 '' '' -1991-08-17 00:00 277.7 '' '' -1991-08-18 00:00 290.5 '' '' -1991-08-19 00:00 296.6 '' '' -1991-08-20 00:00 293.1 '' '' -1991-08-21 00:00 291.8 '' '' -1991-08-22 00:00 291.5 '' '' -1991-08-23 00:00 277.0 '' '' -1991-08-24 00:00 255.4 '' '' -1991-08-25 00:00 243.4 '' '' -1991-08-26 00:00 214.7 '' '' -1991-08-27 00:00 200.4 '' '' -1991-08-28 00:00 193.7 '' '' -1991-08-29 00:00 199.2 '' '' -1991-08-30 00:00 199.4 '' '' -1991-08-31 00:00 185.2 '' '' -1991-09-01 00:00 179.1 '' '' -1991-09-02 00:00 184.3 '' '' -1991-09-03 00:00 178.1 '' '' -1991-09-04 00:00 173.8 '' '' -1991-09-05 00:00 166.2 '' '' -1991-09-06 00:00 179.0 '' '' -1991-09-07 00:00 177.1 '' '' -1991-09-08 00:00 199.0 '' '' -1991-09-09 00:00 183.3 '' '' -1991-09-10 00:00 187.2 '' '' -1991-09-11 00:00 179.9 '' '' -1991-09-12 00:00 185.4 '' '' -1991-09-13 00:00 187.1 '' '' -1991-09-14 00:00 183.4 '' '' -1991-09-15 00:00 182.1 '' '' -1991-09-16 00:00 176.1 '' '' -1991-09-17 00:00 178.6 '' '' -1991-09-18 00:00 182.9 '' '' -1991-09-19 00:00 173.9 '' '' -1991-09-20 00:00 171.1 '' '' -1991-09-21 00:00 178.0 '' '' -1991-09-22 00:00 189.0 '' '' -1991-09-23 00:00 186.1 '' '' -1991-09-24 00:00 180.9 '' '' -1991-09-25 00:00 181.9 '' '' -1991-09-26 00:00 201.6 '' '' -1991-09-27 00:00 178.7 '' '' -1991-09-28 00:00 176.3 '' '' -1991-09-29 00:00 195.4 '' '' -1991-09-30 00:00 200.3 '' '' -1991-10-01 00:00 208.0 '' '' -1991-10-02 00:00 220.9 '' '' -1991-10-03 00:00 211.8 '' '' -1991-10-04 00:00 212.6 '' '' -1991-10-05 00:00 193.4 '' '' -1991-10-06 00:00 181.9 '' '' -1991-10-07 00:00 180.0 '' '' -1991-10-08 00:00 178.7 '' '' -1991-10-09 00:00 183.7 '' '' -1991-10-10 00:00 179.2 '' '' -1991-10-11 00:00 178.2 '' '' -1991-10-12 00:00 187.2 '' '' -1991-10-13 00:00 182.5 '' '' -1991-10-14 00:00 186.1 '' '' -1991-10-15 00:00 177.7 '' '' -1991-10-16 00:00 180.3 '' '' -1991-10-17 00:00 168.2 '' '' -1991-10-18 00:00 156.5 '' '' -1991-10-19 00:00 153.0 '' '' -1991-10-20 00:00 155.5 '' '' -1991-10-21 00:00 166.8 '' '' -1991-10-22 00:00 182.7 '' '' -1991-10-23 00:00 192.0 '' '' -1991-10-24 00:00 228.0 '' '' -1991-10-25 00:00 237.4 '' '' -1991-10-26 00:00 248.1 '' '' -1991-10-27 00:00 246.3 '' '' -1991-10-28 00:00 267.5 '' '' -1991-10-29 00:00 268.8 '' '' -1991-10-30 00:00 258.0 '' '' -1991-10-31 00:00 228.1 '' '' -1991-11-01 00:00 226.8 '' '' -1991-11-02 00:00 214.8 '' '' -1991-11-03 00:00 183.1 '' '' -1991-11-04 00:00 173.9 '' '' -1991-11-05 00:00 172.6 '' '' -1991-11-06 00:00 183.4 '' '' -1991-11-07 00:00 190.0 '' '' -1991-11-08 00:00 196.7 '' '' -1991-11-09 00:00 193.6 '' '' -1991-11-10 00:00 191.5 '' '' -1991-11-11 00:00 193.6 '' '' -1991-11-12 00:00 188.5 '' '' -1991-11-13 00:00 177.4 '' '' -1991-11-14 00:00 179.6 '' '' -1991-11-15 00:00 169.4 '' '' -1991-11-16 00:00 161.9 '' '' -1991-11-17 00:00 160.8 '' '' -1991-11-18 00:00 159.6 '' '' -1991-11-19 00:00 154.6 '' '' -1991-11-20 00:00 149.6 '' '' -1991-11-21 00:00 141.5 '' '' -1991-11-22 00:00 135.7 '' '' -1991-11-23 00:00 133.0 '' '' -1991-11-24 00:00 128.1 '' '' -1991-11-25 00:00 130.9 '' '' -1991-11-26 00:00 140.4 '' '' -1991-11-27 00:00 148.9 '' '' -1991-11-28 00:00 150.4 '' '' -1991-11-29 00:00 156.6 '' '' -1991-11-30 00:00 163.2 '' '' -1991-12-01 00:00 167.6 '' '' -1991-12-02 00:00 166.2 '' '' -1991-12-03 00:00 177.7 '' '' -1991-12-04 00:00 185.2 '' '' -1991-12-05 00:00 186.3 '' '' -1991-12-06 00:00 191.6 '' '' -1991-12-07 00:00 202.9 '' '' -1991-12-08 00:00 219.6 '' '' -1991-12-09 00:00 249.7 '' '' -1991-12-10 00:00 252.5 '' '' -1991-12-11 00:00 237.8 '' '' -1991-12-12 00:00 235.8 '' '' -1991-12-13 00:00 246.6 '' '' -1991-12-14 00:00 222.2 '' '' -1991-12-15 00:00 206.5 '' '' -1991-12-16 00:00 225.1 '' '' -1991-12-17 00:00 192.0 '' '' -1991-12-18 00:00 189.0 '' '' -1991-12-19 00:00 181.8 '' '' -1991-12-20 00:00 191.8 '' '' -1991-12-21 00:00 186.2 '' '' -1991-12-22 00:00 216.0 '' '' -1991-12-23 00:00 218.9 '' '' -1991-12-24 00:00 222.3 '' '' -1991-12-25 00:00 250.8 '' '' -1991-12-26 00:00 252.2 '' '' -1991-12-27 00:00 243.7 '' '' -1991-12-28 00:00 263.3 '' '' -1991-12-29 00:00 246.0 '' '' -1991-12-30 00:00 263.2 '' '' -1991-12-31 00:00 235.0 '' '' -1992-01-01 00:00 240.3 '' '' -1992-01-02 00:00 251.6 '' '' -1992-01-03 00:00 270.4 '' '' -1992-01-04 00:00 265.6 '' '' -1992-01-05 00:00 257.7 '' '' -1992-01-06 00:00 245.7 '' '' -1992-01-07 00:00 253.7 '' '' -1992-01-08 00:00 253.1 '' '' -1992-01-09 00:00 248.8 '' '' -1992-01-10 00:00 225.1 '' '' -1992-01-11 00:00 202.4 '' '' -1992-01-12 00:00 182.4 '' '' -1992-01-13 00:00 177.3 '' '' -1992-01-14 00:00 172.8 '' '' -1992-01-15 00:00 167.7 '' '' -1992-01-16 00:00 156.1 '' '' -1992-01-17 00:00 150.6 '' '' -1992-01-18 00:00 147.0 '' '' -1992-01-19 00:00 155.0 '' '' -1992-01-20 00:00 162.9 '' '' -1992-01-21 00:00 168.7 '' '' -1992-01-22 00:00 167.6 '' '' -1992-01-23 00:00 167.6 '' '' -1992-01-24 00:00 172.9 '' '' -1992-01-25 00:00 195.9 '' '' -1992-01-26 00:00 202.7 '' '' -1992-01-27 00:00 214.0 '' '' -1992-01-28 00:00 230.6 '' '' -1992-01-29 00:00 258.3 '' '' -1992-01-30 00:00 272.0 '' '' -1992-01-31 00:00 293.5 '' '' -1992-02-01 00:00 275.5 '' '' -1992-02-02 00:00 280.1 '' '' -1992-02-03 00:00 263.2 '' '' -1992-02-04 00:00 244.4 '' '' -1992-02-05 00:00 239.4 '' '' -1992-02-06 00:00 232.1 '' '' -1992-02-07 00:00 234.0 '' '' -1992-02-08 00:00 218.9 '' '' -1992-02-09 00:00 229.3 '' '' -1992-02-10 00:00 234.5 '' '' -1992-02-11 00:00 218.4 '' '' -1992-02-12 00:00 204.9 '' '' -1992-02-13 00:00 193.0 '' '' -1992-02-14 00:00 198.7 '' '' -1992-02-15 00:00 197.9 '' '' -1992-02-16 00:00 195.2 '' '' -1992-02-17 00:00 201.7 '' '' -1992-02-18 00:00 201.6 '' '' -1992-02-19 00:00 191.2 '' '' -1992-02-20 00:00 199.0 '' '' -1992-02-21 00:00 212.3 '' '' -1992-02-22 00:00 229.5 '' '' -1992-02-23 00:00 244.0 '' '' -1992-02-24 00:00 250.1 '' '' -1992-02-25 00:00 248.3 '' '' -1992-02-26 00:00 248.0 '' '' -1992-02-27 00:00 239.5 '' '' -1992-02-28 00:00 228.8 '' '' -1992-02-29 00:00 213.9 '' '' -1992-03-01 00:00 196.8 '' '' -1992-03-02 00:00 178.3 '' '' -1992-03-03 00:00 160.3 '' '' -1992-03-04 00:00 157.1 '' '' -1992-03-05 00:00 152.4 '' '' -1992-03-06 00:00 153.1 '' '' -1992-03-07 00:00 157.2 '' '' -1992-03-08 00:00 179.4 '' '' -1992-03-09 00:00 169.4 '' '' -1992-03-10 00:00 167.0 '' '' -1992-03-11 00:00 163.1 '' '' -1992-03-12 00:00 161.7 '' '' -1992-03-13 00:00 163.3 '' '' -1992-03-14 00:00 162.9 '' '' -1992-03-15 00:00 167.2 '' '' -1992-03-16 00:00 159.7 '' '' -1992-03-17 00:00 157.6 '' '' -1992-03-18 00:00 159.0 '' '' -1992-03-19 00:00 166.1 '' '' -1992-03-20 00:00 167.2 '' '' -1992-03-21 00:00 166.4 '' '' -1992-03-22 00:00 159.7 '' '' -1992-03-23 00:00 165.3 '' '' -1992-03-24 00:00 174.7 '' '' -1992-03-25 00:00 185.1 '' '' -1992-03-26 00:00 177.9 '' '' -1992-03-27 00:00 180.0 '' '' -1992-03-28 00:00 185.4 '' '' -1992-03-29 00:00 192.4 '' '' -1992-03-30 00:00 182.1 '' '' -1992-03-31 00:00 191.2 '' '' -1992-04-01 00:00 185.9 '' '' -1992-04-02 00:00 161.2 '' '' -1992-04-03 00:00 159.8 '' '' -1992-04-04 00:00 154.0 '' '' -1992-04-05 00:00 154.7 '' '' -1992-04-06 00:00 143.0 '' '' -1992-04-07 00:00 141.8 '' '' -1992-04-08 00:00 151.6 '' '' -1992-04-09 00:00 140.2 '' '' -1992-04-10 00:00 141.2 '' '' -1992-04-11 00:00 144.0 '' '' -1992-04-12 00:00 144.7 '' '' -1992-04-13 00:00 147.1 '' '' -1992-04-14 00:00 155.2 '' '' -1992-04-15 00:00 150.3 '' '' -1992-04-16 00:00 158.9 '' '' -1992-04-17 00:00 185.6 '' '' -1992-04-18 00:00 204.8 '' '' -1992-04-19 00:00 207.7 '' '' -1992-04-20 00:00 206.5 '' '' -1992-04-21 00:00 197.1 '' '' -1992-04-22 00:00 184.8 '' '' -1992-04-23 00:00 174.7 '' '' -1992-04-24 00:00 162.9 '' '' -1992-04-25 00:00 155.7 '' '' -1992-04-26 00:00 145.0 '' '' -1992-04-27 00:00 139.1 '' '' -1992-04-28 00:00 130.4 '' '' -1992-04-29 00:00 132.5 '' '' -1992-04-30 00:00 129.9 '' '' -1992-05-01 00:00 133.0 '' '' -1992-05-02 00:00 138.0 '' '' -1992-05-03 00:00 127.8 '' '' -1992-05-04 00:00 137.0 '' '' -1992-05-05 00:00 135.4 '' '' -1992-05-06 00:00 133.0 '' '' -1992-05-07 00:00 131.5 '' '' -1992-05-08 00:00 145.3 '' '' -1992-05-09 00:00 129.2 '' '' -1992-05-10 00:00 126.9 '' '' -1992-05-11 00:00 128.8 '' '' -1992-05-12 00:00 127.8 '' '' -1992-05-13 00:00 128.2 '' '' -1992-05-14 00:00 129.3 '' '' -1992-05-15 00:00 124.8 '' '' -1992-05-16 00:00 118.5 '' '' -1992-05-17 00:00 115.5 '' '' -1992-05-18 00:00 120.2 '' '' -1992-05-19 00:00 134.5 '' '' -1992-05-20 00:00 140.3 '' '' -1992-05-21 00:00 145.5 '' '' -1992-05-22 00:00 148.4 '' '' -1992-05-23 00:00 145.6 '' '' -1992-05-24 00:00 136.9 '' '' -1992-05-25 00:00 126.1 '' '' -1992-05-26 00:00 122.1 '' '' -1992-05-27 00:00 117.7 '' '' -1992-05-28 00:00 113.9 '' '' -1992-05-29 00:00 108.1 '' '' -1992-05-30 00:00 101.7 '' '' -1992-05-31 00:00 101.8 '' '' -1992-06-01 00:00 101.4 '' '' -1992-06-02 00:00 105.0 '' '' -1992-06-03 00:00 110.1 '' '' -1992-06-04 00:00 111.5 '' '' -1992-06-05 00:00 118.4 '' '' -1992-06-06 00:00 123.2 '' '' -1992-06-07 00:00 119.2 '' '' -1992-06-08 00:00 118.7 '' '' -1992-06-09 00:00 122.3 '' '' -1992-06-10 00:00 129.3 '' '' -1992-06-11 00:00 133.1 '' '' -1992-06-12 00:00 130.6 '' '' -1992-06-13 00:00 127.5 '' '' -1992-06-14 00:00 127.2 '' '' -1992-06-15 00:00 124.7 '' '' -1992-06-16 00:00 122.9 '' '' -1992-06-17 00:00 134.4 '' '' -1992-06-18 00:00 119.8 '' '' -1992-06-19 00:00 119.1 '' '' -1992-06-20 00:00 116.8 '' '' -1992-06-21 00:00 121.3 '' '' -1992-06-22 00:00 120.0 '' '' -1992-06-23 00:00 125.5 '' '' -1992-06-24 00:00 121.8 '' '' -1992-06-25 00:00 127.4 '' '' -1992-06-26 00:00 115.3 '' '' -1992-06-27 00:00 113.1 '' '' -1992-06-28 00:00 112.0 '' '' -1992-06-29 00:00 114.4 '' '' -1992-06-30 00:00 127.0 '' '' -1992-07-01 00:00 134.1 '' '' -1992-07-02 00:00 141.2 '' '' -1992-07-03 00:00 141.1 '' '' -1992-07-04 00:00 141.3 '' '' -1992-07-05 00:00 150.6 '' '' -1992-07-06 00:00 155.4 '' '' -1992-07-07 00:00 159.9 '' '' -1992-07-08 00:00 156.6 '' '' -1992-07-09 00:00 165.0 '' '' -1992-07-10 00:00 175.7 '' '' -1992-07-11 00:00 173.9 '' '' -1992-07-12 00:00 177.8 '' '' -1992-07-13 00:00 181.4 '' '' -1992-07-14 00:00 181.3 '' '' -1992-07-15 00:00 173.3 '' '' -1992-07-16 00:00 162.8 '' '' -1992-07-17 00:00 140.4 '' '' -1992-07-18 00:00 130.2 '' '' -1992-07-19 00:00 122.3 '' '' -1992-07-20 00:00 127.5 '' '' -1992-07-21 00:00 111.8 '' '' -1992-07-22 00:00 107.7 '' '' -1992-07-23 00:00 101.9 '' '' -1992-07-24 00:00 103.2 '' '' -1992-07-25 00:00 101.5 '' '' -1992-07-26 00:00 104.3 '' '' -1992-07-27 00:00 103.4 '' '' -1992-07-28 00:00 98.5 '' '' -1992-07-29 00:00 101.1 '' '' -1992-07-30 00:00 99.9 '' '' -1992-07-31 00:00 106.3 '' '' -1992-08-01 00:00 113.6 '' '' -1992-08-02 00:00 128.2 '' '' -1992-08-03 00:00 135.1 '' '' -1992-08-04 00:00 134.7 '' '' -1992-08-05 00:00 134.3 '' '' -1992-08-06 00:00 141.9 '' '' -1992-08-07 00:00 145.4 '' '' -1992-08-08 00:00 147.5 '' '' -1992-08-09 00:00 141.4 '' '' -1992-08-10 00:00 136.3 '' '' -1992-08-11 00:00 133.9 '' '' -1992-08-12 00:00 131.7 '' '' -1992-08-13 00:00 132.3 '' '' -1992-08-14 00:00 132.0 '' '' -1992-08-15 00:00 133.8 '' '' -1992-08-16 00:00 140.0 '' '' -1992-08-17 00:00 137.1 '' '' -1992-08-18 00:00 132.7 '' '' -1992-08-19 00:00 138.0 '' '' -1992-08-20 00:00 159.1 '' '' -1992-08-21 00:00 127.8 '' '' -1992-08-22 00:00 124.4 '' '' -1992-08-23 00:00 113.2 '' '' -1992-08-24 00:00 104.0 '' '' -1992-08-25 00:00 100.1 '' '' -1992-08-26 00:00 94.4 '' '' -1992-08-27 00:00 95.8 '' '' -1992-08-28 00:00 97.6 '' '' -1992-08-29 00:00 97.1 '' '' -1992-08-30 00:00 96.6 '' '' -1992-08-31 00:00 99.0 '' '' -1992-09-01 00:00 101.6 '' '' -1992-09-02 00:00 106.3 '' '' -1992-09-03 00:00 108.9 '' '' -1992-09-04 00:00 106.4 '' '' -1992-09-05 00:00 121.2 '' '' -1992-09-06 00:00 141.3 '' '' -1992-09-07 00:00 133.6 '' '' -1992-09-08 00:00 130.8 '' '' -1992-09-09 00:00 118.5 '' '' -1992-09-10 00:00 118.4 '' '' -1992-09-11 00:00 120.1 '' '' -1992-09-12 00:00 118.7 '' '' -1992-09-13 00:00 128.8 '' '' -1992-09-14 00:00 123.1 '' '' -1992-09-15 00:00 121.5 '' '' -1992-09-16 00:00 127.9 '' '' -1992-09-17 00:00 120.6 '' '' -1992-09-18 00:00 118.5 '' '' -1992-09-19 00:00 113.4 '' '' -1992-09-20 00:00 107.1 '' '' -1992-09-21 00:00 110.4 '' '' -1992-09-22 00:00 112.3 '' '' -1992-09-23 00:00 112.6 '' '' -1992-09-24 00:00 112.6 '' '' -1992-09-25 00:00 116.5 '' '' -1992-09-26 00:00 117.3 '' '' -1992-09-27 00:00 121.6 '' '' -1992-09-28 00:00 116.6 '' '' -1992-09-29 00:00 117.7 '' '' -1992-09-30 00:00 116.2 '' '' -1992-10-01 00:00 118.2 '' '' -1992-10-02 00:00 119.5 '' '' -1992-10-03 00:00 120.2 '' '' -1992-10-04 00:00 126.1 '' '' -1992-10-05 00:00 130.1 '' '' -1992-10-06 00:00 137.3 '' '' -1992-10-07 00:00 135.8 '' '' -1992-10-08 00:00 125.4 '' '' -1992-10-09 00:00 121.0 '' '' -1992-10-10 00:00 112.1 '' '' -1992-10-11 00:00 110.0 '' '' -1992-10-12 00:00 106.5 '' '' -1992-10-13 00:00 108.2 '' '' -1992-10-14 00:00 104.9 '' '' -1992-10-15 00:00 97.8 '' '' -1992-10-16 00:00 99.9 '' '' -1992-10-17 00:00 105.8 '' '' -1992-10-18 00:00 111.4 '' '' -1992-10-19 00:00 123.4 '' '' -1992-10-20 00:00 131.9 '' '' -1992-10-21 00:00 139.2 '' '' -1992-10-22 00:00 149.2 '' '' -1992-10-23 00:00 140.3 '' '' -1992-10-24 00:00 145.1 '' '' -1992-10-25 00:00 159.4 '' '' -1992-10-26 00:00 167.9 '' '' -1992-10-27 00:00 168.9 '' '' -1992-10-28 00:00 172.3 '' '' -1992-10-29 00:00 161.6 '' '' -1992-10-30 00:00 225.8 '' '' -1992-10-31 00:00 147.3 '' '' -1992-11-01 00:00 144.8 '' '' -1992-11-02 00:00 138.8 '' '' -1992-11-03 00:00 132.9 '' '' -1992-11-04 00:00 140.4 '' '' -1992-11-05 00:00 133.6 '' '' -1992-11-06 00:00 130.5 '' '' -1992-11-07 00:00 132.4 '' '' -1992-11-08 00:00 129.7 '' '' -1992-11-09 00:00 129.9 '' '' -1992-11-10 00:00 133.7 '' '' -1992-11-11 00:00 132.0 '' '' -1992-11-12 00:00 124.7 '' '' -1992-11-13 00:00 122.2 '' '' -1992-11-14 00:00 123.4 '' '' -1992-11-15 00:00 124.1 '' '' -1992-11-16 00:00 133.7 '' '' -1992-11-17 00:00 148.9 '' '' -1992-11-18 00:00 158.2 '' '' -1992-11-19 00:00 157.1 '' '' -1992-11-20 00:00 155.0 '' '' -1992-11-21 00:00 158.5 '' '' -1992-11-22 00:00 162.0 '' '' -1992-11-23 00:00 171.7 '' '' -1992-11-24 00:00 169.4 '' '' -1992-11-25 00:00 162.4 '' '' -1992-11-26 00:00 158.2 '' '' -1992-11-27 00:00 152.6 '' '' -1992-11-28 00:00 144.7 '' '' -1992-11-29 00:00 136.0 '' '' -1992-11-30 00:00 135.9 '' '' -1992-12-01 00:00 127.1 '' '' -1992-12-02 00:00 126.0 '' '' -1992-12-03 00:00 121.3 '' '' -1992-12-04 00:00 115.9 '' '' -1992-12-05 00:00 112.4 '' '' -1992-12-06 00:00 115.9 '' '' -1992-12-07 00:00 116.1 '' '' -1992-12-08 00:00 124.8 '' '' -1992-12-09 00:00 129.6 '' '' -1992-12-10 00:00 137.5 '' '' -1992-12-11 00:00 159.0 '' '' -1992-12-12 00:00 163.1 '' '' -1992-12-13 00:00 167.6 '' '' -1992-12-14 00:00 161.8 '' '' -1992-12-15 00:00 150.4 '' '' -1992-12-16 00:00 145.8 '' '' -1992-12-17 00:00 145.5 '' '' -1992-12-18 00:00 144.9 '' '' -1992-12-19 00:00 142.2 '' '' -1992-12-20 00:00 143.2 '' '' -1992-12-21 00:00 140.8 '' '' -1992-12-22 00:00 137.6 '' '' -1992-12-23 00:00 139.3 '' '' -1992-12-24 00:00 132.0 '' '' -1992-12-25 00:00 132.0 '' '' -1992-12-26 00:00 127.2 '' '' -1992-12-27 00:00 121.2 '' '' -1992-12-28 00:00 123.4 '' '' -1992-12-29 00:00 121.3 '' '' -1992-12-30 00:00 121.9 '' '' -1992-12-31 00:00 125.8 '' '' -1993-01-01 00:00 118.3 '' '' -1993-01-02 00:00 117.4 '' '' -1993-01-03 00:00 120.6 '' '' -1993-01-04 00:00 117.1 '' '' -1993-01-05 00:00 120.8 '' '' -1993-01-06 00:00 125.8 '' '' -1993-01-07 00:00 126.3 '' '' -1993-01-08 00:00 128.6 '' '' -1993-01-09 00:00 124.5 '' '' -1993-01-10 00:00 127.7 '' '' -1993-01-11 00:00 127.4 '' '' -1993-01-12 00:00 135.6 '' '' -1993-01-13 00:00 136.6 '' '' -1993-01-14 00:00 128.8 '' '' -1993-01-15 00:00 121.9 '' '' -1993-01-16 00:00 129.1 '' '' -1993-01-17 00:00 121.9 '' '' -1993-01-18 00:00 117.7 '' '' -1993-01-19 00:00 112.7 '' '' -1993-01-20 00:00 106.5 '' '' -1993-01-21 00:00 103.3 '' '' -1993-01-22 00:00 101.0 '' '' -1993-01-23 00:00 102.7 '' '' -1993-01-24 00:00 101.6 '' '' -1993-01-25 00:00 102.6 '' '' -1993-01-26 00:00 103.3 '' '' -1993-01-27 00:00 107.6 '' '' -1993-01-28 00:00 108.6 '' '' -1993-01-29 00:00 110.7 '' '' -1993-01-30 00:00 109.6 '' '' -1993-01-31 00:00 115.6 '' '' -1993-02-01 00:00 121.5 '' '' -1993-02-02 00:00 124.7 '' '' -1993-02-03 00:00 133.0 '' '' -1993-02-04 00:00 143.2 '' '' -1993-02-05 00:00 155.6 '' '' -1993-02-06 00:00 178.8 '' '' -1993-02-07 00:00 171.2 '' '' -1993-02-08 00:00 183.4 '' '' -1993-02-09 00:00 180.3 '' '' -1993-02-10 00:00 175.0 '' '' -1993-02-11 00:00 168.8 '' '' -1993-02-12 00:00 144.9 '' '' -1993-02-13 00:00 131.7 '' '' -1993-02-14 00:00 137.9 '' '' -1993-02-15 00:00 131.6 '' '' -1993-02-16 00:00 130.5 '' '' -1993-02-17 00:00 121.4 '' '' -1993-02-18 00:00 123.2 '' '' -1993-02-19 00:00 113.4 '' '' -1993-02-20 00:00 120.6 '' '' -1993-02-21 00:00 120.3 '' '' -1993-02-22 00:00 130.3 '' '' -1993-02-23 00:00 129.6 '' '' -1993-02-24 00:00 132.7 '' '' -1993-02-25 00:00 125.5 '' '' -1993-02-26 00:00 123.8 '' '' -1993-02-27 00:00 121.6 '' '' -1993-02-28 00:00 121.4 '' '' -1993-03-01 00:00 129.6 '' '' -1993-03-02 00:00 141.0 '' '' -1993-03-03 00:00 148.6 '' '' -1993-03-04 00:00 163.8 '' '' -1993-03-05 00:00 162.5 '' '' -1993-03-06 00:00 164.0 '' '' -1993-03-07 00:00 150.9 '' '' -1993-03-08 00:00 144.3 '' '' -1993-03-09 00:00 140.6 '' '' -1993-03-10 00:00 146.7 '' '' -1993-03-11 00:00 148.0 '' '' -1993-03-12 00:00 158.7 '' '' -1993-03-13 00:00 139.9 '' '' -1993-03-14 00:00 134.2 '' '' -1993-03-15 00:00 129.7 '' '' -1993-03-16 00:00 120.5 '' '' -1993-03-17 00:00 122.4 '' '' -1993-03-18 00:00 126.2 '' '' -1993-03-19 00:00 133.4 '' '' -1993-03-20 00:00 127.0 '' '' -1993-03-21 00:00 129.7 '' '' -1993-03-22 00:00 126.6 '' '' -1993-03-23 00:00 120.1 '' '' -1993-03-24 00:00 114.4 '' '' -1993-03-25 00:00 116.0 '' '' -1993-03-26 00:00 116.4 '' '' -1993-03-27 00:00 122.4 '' '' -1993-03-28 00:00 125.8 '' '' -1993-03-29 00:00 128.3 '' '' -1993-03-30 00:00 128.7 '' '' -1993-03-31 00:00 124.9 '' '' -1993-04-01 00:00 123.5 '' '' -1993-04-02 00:00 120.7 '' '' -1993-04-03 00:00 117.0 '' '' -1993-04-04 00:00 116.4 '' '' -1993-04-05 00:00 118.9 '' '' -1993-04-06 00:00 133.1 '' '' -1993-04-07 00:00 130.0 '' '' -1993-04-08 00:00 143.5 '' '' -1993-04-09 00:00 136.0 '' '' -1993-04-10 00:00 139.2 '' '' -1993-04-11 00:00 119.4 '' '' -1993-04-12 00:00 103.7 '' '' -1993-04-13 00:00 97.7 '' '' -1993-04-14 00:00 92.8 '' '' -1993-04-15 00:00 88.8 '' '' -1993-04-16 00:00 90.9 '' '' -1993-04-17 00:00 96.5 '' '' -1993-04-18 00:00 106.6 '' '' -1993-04-19 00:00 111.9 '' '' -1993-04-20 00:00 119.9 '' '' -1993-04-21 00:00 120.5 '' '' -1993-04-22 00:00 118.4 '' '' -1993-04-23 00:00 122.9 '' '' -1993-04-24 00:00 130.3 '' '' -1993-04-25 00:00 126.2 '' '' -1993-04-26 00:00 125.0 '' '' -1993-04-27 00:00 119.6 '' '' -1993-04-28 00:00 115.2 '' '' -1993-04-29 00:00 108.1 '' '' -1993-04-30 00:00 107.4 '' '' -1993-05-01 00:00 104.2 '' '' -1993-05-02 00:00 104.7 '' '' -1993-05-03 00:00 108.9 '' '' -1993-05-04 00:00 112.4 '' '' -1993-05-05 00:00 120.0 '' '' -1993-05-06 00:00 122.2 '' '' -1993-05-07 00:00 133.0 '' '' -1993-05-08 00:00 131.2 '' '' -1993-05-09 00:00 131.5 '' '' -1993-05-10 00:00 136.8 '' '' -1993-05-11 00:00 134.7 '' '' -1993-05-12 00:00 129.0 '' '' -1993-05-13 00:00 122.4 '' '' -1993-05-14 00:00 114.6 '' '' -1993-05-15 00:00 106.7 '' '' -1993-05-16 00:00 101.1 '' '' -1993-05-17 00:00 98.4 '' '' -1993-05-18 00:00 93.5 '' '' -1993-05-19 00:00 93.1 '' '' -1993-05-20 00:00 93.4 '' '' -1993-05-21 00:00 93.3 '' '' -1993-05-22 00:00 94.1 '' '' -1993-05-23 00:00 97.3 '' '' -1993-05-24 00:00 100.9 '' '' -1993-05-25 00:00 102.4 '' '' -1993-05-26 00:00 110.4 '' '' -1993-05-27 00:00 122.7 '' '' -1993-05-28 00:00 129.2 '' '' -1993-05-29 00:00 132.5 '' '' -1993-05-30 00:00 144.1 '' '' -1993-05-31 00:00 142.1 '' '' -1993-06-01 00:00 140.4 '' '' -1993-06-02 00:00 143.4 '' '' -1993-06-03 00:00 140.4 '' '' -1993-06-04 00:00 133.7 '' '' -1993-06-05 00:00 137.7 '' '' -1993-06-06 00:00 131.3 '' '' -1993-06-07 00:00 115.7 '' '' -1993-06-08 00:00 115.2 '' '' -1993-06-09 00:00 118.9 '' '' -1993-06-10 00:00 116.0 '' '' -1993-06-11 00:00 104.9 '' '' -1993-06-12 00:00 96.2 '' '' -1993-06-13 00:00 89.4 '' '' -1993-06-14 00:00 86.4 '' '' -1993-06-15 00:00 84.6 '' '' -1993-06-16 00:00 85.0 '' '' -1993-06-17 00:00 86.1 '' '' -1993-06-18 00:00 87.4 '' '' -1993-06-19 00:00 88.8 '' '' -1993-06-20 00:00 94.1 '' '' -1993-06-21 00:00 94.0 '' '' -1993-06-22 00:00 99.8 '' '' -1993-06-23 00:00 113.1 '' '' -1993-06-24 00:00 125.4 '' '' -1993-06-25 00:00 122.6 '' '' -1993-06-26 00:00 126.0 '' '' -1993-06-27 00:00 131.7 '' '' -1993-06-28 00:00 127.8 '' '' -1993-06-29 00:00 126.7 '' '' -1993-06-30 00:00 120.3 '' '' -1993-07-01 00:00 111.8 '' '' -1993-07-02 00:00 113.6 '' '' -1993-07-03 00:00 114.2 '' '' -1993-07-04 00:00 110.1 '' '' -1993-07-05 00:00 103.9 '' '' -1993-07-06 00:00 98.4 '' '' -1993-07-07 00:00 96.5 '' '' -1993-07-08 00:00 96.4 '' '' -1993-07-09 00:00 93.2 '' '' -1993-07-10 00:00 89.0 '' '' -1993-07-11 00:00 85.8 '' '' -1993-07-12 00:00 88.7 '' '' -1993-07-13 00:00 89.5 '' '' -1993-07-14 00:00 95.7 '' '' -1993-07-15 00:00 96.3 '' '' -1993-07-16 00:00 100.3 '' '' -1993-07-17 00:00 102.6 '' '' -1993-07-18 00:00 103.7 '' '' -1993-07-19 00:00 104.1 '' '' -1993-07-20 00:00 105.6 '' '' -1993-07-21 00:00 108.9 '' '' -1993-07-22 00:00 111.2 '' '' -1993-07-23 00:00 113.3 '' '' -1993-07-24 00:00 109.8 '' '' -1993-07-25 00:00 105.1 '' '' -1993-07-26 00:00 106.8 '' '' -1993-07-27 00:00 106.4 '' '' -1993-07-28 00:00 104.6 '' '' -1993-07-29 00:00 103.5 '' '' -1993-07-30 00:00 100.8 '' '' -1993-07-31 00:00 99.1 '' '' -1993-08-01 00:00 102.8 '' '' -1993-08-02 00:00 103.7 '' '' -1993-08-03 00:00 100.8 '' '' -1993-08-04 00:00 98.9 '' '' -1993-08-05 00:00 97.0 '' '' -1993-08-06 00:00 97.1 '' '' -1993-08-07 00:00 93.8 '' '' -1993-08-08 00:00 93.4 '' '' -1993-08-09 00:00 99.1 '' '' -1993-08-10 00:00 104.5 '' '' -1993-08-11 00:00 111.2 '' '' -1993-08-12 00:00 103.2 '' '' -1993-08-13 00:00 99.2 '' '' -1993-08-14 00:00 94.6 '' '' -1993-08-15 00:00 92.8 '' '' -1993-08-16 00:00 92.4 '' '' -1993-08-17 00:00 95.1 '' '' -1993-08-18 00:00 94.3 '' '' -1993-08-19 00:00 93.9 '' '' -1993-08-20 00:00 93.8 '' '' -1993-08-21 00:00 97.0 '' '' -1993-08-22 00:00 96.2 '' '' -1993-08-23 00:00 94.8 '' '' -1993-08-24 00:00 92.5 '' '' -1993-08-25 00:00 90.6 '' '' -1993-08-26 00:00 90.2 '' '' -1993-08-27 00:00 89.4 '' '' -1993-08-28 00:00 90.2 '' '' -1993-08-29 00:00 91.7 '' '' -1993-08-30 00:00 90.7 '' '' -1993-08-31 00:00 90.6 '' '' -1993-09-01 00:00 87.1 '' '' -1993-09-02 00:00 82.6 '' '' -1993-09-03 00:00 80.9 '' '' -1993-09-04 00:00 80.5 '' '' -1993-09-05 00:00 81.0 '' '' -1993-09-06 00:00 80.2 '' '' -1993-09-07 00:00 79.6 '' '' -1993-09-08 00:00 80.2 '' '' -1993-09-09 00:00 80.1 '' '' -1993-09-10 00:00 80.1 '' '' -1993-09-11 00:00 79.8 '' '' -1993-09-12 00:00 79.5 '' '' -1993-09-13 00:00 81.1 '' '' -1993-09-14 00:00 82.6 '' '' -1993-09-15 00:00 85.6 '' '' -1993-09-16 00:00 89.0 '' '' -1993-09-17 00:00 85.9 '' '' -1993-09-18 00:00 86.0 '' '' -1993-09-19 00:00 85.0 '' '' -1993-09-20 00:00 80.3 '' '' -1993-09-21 00:00 80.6 '' '' -1993-09-22 00:00 79.8 '' '' -1993-09-23 00:00 82.0 '' '' -1993-09-24 00:00 90.0 '' '' -1993-09-25 00:00 96.5 '' '' -1993-09-26 00:00 106.8 '' '' -1993-09-27 00:00 104.9 '' '' -1993-09-28 00:00 111.7 '' '' -1993-09-29 00:00 116.8 '' '' -1993-09-30 00:00 120.9 '' '' -1993-10-01 00:00 117.1 '' '' -1993-10-02 00:00 126.9 '' '' -1993-10-03 00:00 124.8 '' '' -1993-10-04 00:00 121.5 '' '' -1993-10-05 00:00 123.7 '' '' -1993-10-06 00:00 118.0 '' '' -1993-10-07 00:00 116.6 '' '' -1993-10-08 00:00 113.1 '' '' -1993-10-09 00:00 110.1 '' '' -1993-10-10 00:00 107.1 '' '' -1993-10-11 00:00 102.3 '' '' -1993-10-12 00:00 97.3 '' '' -1993-10-13 00:00 94.5 '' '' -1993-10-14 00:00 90.8 '' '' -1993-10-15 00:00 93.5 '' '' -1993-10-16 00:00 90.3 '' '' -1993-10-17 00:00 89.4 '' '' -1993-10-18 00:00 86.7 '' '' -1993-10-19 00:00 88.1 '' '' -1993-10-20 00:00 93.5 '' '' -1993-10-21 00:00 94.2 '' '' -1993-10-22 00:00 91.3 '' '' -1993-10-23 00:00 91.4 '' '' -1993-10-24 00:00 90.6 '' '' -1993-10-25 00:00 86.0 '' '' -1993-10-26 00:00 87.4 '' '' -1993-10-27 00:00 86.0 '' '' -1993-10-28 00:00 87.3 '' '' -1993-10-29 00:00 90.5 '' '' -1993-10-30 00:00 90.0 '' '' -1993-10-31 00:00 90.1 '' '' -1993-11-01 00:00 90.0 '' '' -1993-11-02 00:00 91.8 '' '' -1993-11-03 00:00 92.4 '' '' -1993-11-04 00:00 94.1 '' '' -1993-11-05 00:00 94.8 '' '' -1993-11-06 00:00 94.9 '' '' -1993-11-07 00:00 93.5 '' '' -1993-11-08 00:00 90.2 '' '' -1993-11-09 00:00 88.7 '' '' -1993-11-10 00:00 88.2 '' '' -1993-11-11 00:00 87.0 '' '' -1993-11-12 00:00 88.9 '' '' -1993-11-13 00:00 92.2 '' '' -1993-11-14 00:00 92.3 '' '' -1993-11-15 00:00 99.9 '' '' -1993-11-16 00:00 98.2 '' '' -1993-11-17 00:00 97.7 '' '' -1993-11-18 00:00 100.2 '' '' -1993-11-19 00:00 98.7 '' '' -1993-11-20 00:00 98.0 '' '' -1993-11-21 00:00 94.8 '' '' -1993-11-22 00:00 96.8 '' '' -1993-11-23 00:00 97.9 '' '' -1993-11-24 00:00 97.5 '' '' -1993-11-25 00:00 94.7 '' '' -1993-11-26 00:00 90.8 '' '' -1993-11-27 00:00 87.3 '' '' -1993-11-28 00:00 90.7 '' '' -1993-11-29 00:00 91.2 '' '' -1993-11-30 00:00 100.8 '' '' -1993-12-01 00:00 105.6 '' '' -1993-12-02 00:00 101.3 '' '' -1993-12-03 00:00 102.6 '' '' -1993-12-04 00:00 101.6 '' '' -1993-12-05 00:00 98.3 '' '' -1993-12-06 00:00 99.9 '' '' -1993-12-07 00:00 103.8 '' '' -1993-12-08 00:00 101.9 '' '' -1993-12-09 00:00 95.4 '' '' -1993-12-10 00:00 93.2 '' '' -1993-12-11 00:00 89.7 '' '' -1993-12-12 00:00 88.1 '' '' -1993-12-13 00:00 85.1 '' '' -1993-12-14 00:00 85.1 '' '' -1993-12-15 00:00 82.8 '' '' -1993-12-16 00:00 81.9 '' '' -1993-12-17 00:00 81.1 '' '' -1993-12-18 00:00 82.4 '' '' -1993-12-19 00:00 84.2 '' '' -1993-12-20 00:00 88.1 '' '' -1993-12-21 00:00 89.9 '' '' -1993-12-22 00:00 96.6 '' '' -1993-12-23 00:00 101.6 '' '' -1993-12-24 00:00 107.5 '' '' -1993-12-25 00:00 115.2 '' '' -1993-12-26 00:00 120.5 '' '' -1993-12-27 00:00 135.8 '' '' -1993-12-28 00:00 129.2 '' '' -1993-12-29 00:00 124.4 '' '' -1993-12-30 00:00 138.0 '' '' -1993-12-31 00:00 136.2 '' '' -1994-01-01 00:00 143.4 '' '' -1994-01-02 00:00 141.4 '' '' -1994-01-03 00:00 128.7 '' '' -1994-01-04 00:00 124.6 '' '' -1994-01-05 00:00 132.4 '' '' -1994-01-06 00:00 127.7 '' '' -1994-01-07 00:00 122.1 '' '' -1994-01-08 00:00 118.9 '' '' -1994-01-09 00:00 113.1 '' '' -1994-01-10 00:00 106.5 '' '' -1994-01-11 00:00 97.8 '' '' -1994-01-12 00:00 94.6 '' '' -1994-01-13 00:00 91.9 '' '' -1994-01-14 00:00 87.3 '' '' -1994-01-15 00:00 92.6 '' '' -1994-01-16 00:00 97.0 '' '' -1994-01-17 00:00 102.0 '' '' -1994-01-18 00:00 97.5 '' '' -1994-01-19 00:00 99.5 '' '' -1994-01-20 00:00 101.6 '' '' -1994-01-21 00:00 107.3 '' '' -1994-01-22 00:00 109.5 '' '' -1994-01-23 00:00 114.6 '' '' -1994-01-24 00:00 125.1 '' '' -1994-01-25 00:00 128.1 '' '' -1994-01-26 00:00 123.9 '' '' -1994-01-27 00:00 116.8 '' '' -1994-01-28 00:00 115.7 '' '' -1994-01-29 00:00 98.9 '' '' -1994-01-30 00:00 96.1 '' '' -1994-01-31 00:00 94.7 '' '' -1994-02-01 00:00 91.7 '' '' -1994-02-02 00:00 93.5 '' '' -1994-02-03 00:00 95.1 '' '' -1994-02-04 00:00 92.7 '' '' -1994-02-05 00:00 90.6 '' '' -1994-02-06 00:00 92.2 '' '' -1994-02-07 00:00 93.3 '' '' -1994-02-08 00:00 92.6 '' '' -1994-02-09 00:00 98.3 '' '' -1994-02-10 00:00 91.8 '' '' -1994-02-11 00:00 90.7 '' '' -1994-02-12 00:00 95.1 '' '' -1994-02-13 00:00 95.4 '' '' -1994-02-14 00:00 98.9 '' '' -1994-02-15 00:00 101.3 '' '' -1994-02-16 00:00 102.3 '' '' -1994-02-17 00:00 103.9 '' '' -1994-02-18 00:00 103.9 '' '' -1994-02-19 00:00 105.6 '' '' -1994-02-20 00:00 105.2 '' '' -1994-02-21 00:00 103.1 '' '' -1994-02-22 00:00 104.4 '' '' -1994-02-23 00:00 105.1 '' '' -1994-02-24 00:00 102.9 '' '' -1994-02-25 00:00 94.8 '' '' -1994-02-26 00:00 92.6 '' '' -1994-02-27 00:00 93.0 '' '' -1994-02-28 00:00 90.8 '' '' -1994-03-01 00:00 92.4 '' '' -1994-03-02 00:00 96.3 '' '' -1994-03-03 00:00 99.2 '' '' -1994-03-04 00:00 96.3 '' '' -1994-03-05 00:00 94.2 '' '' -1994-03-06 00:00 94.1 '' '' -1994-03-07 00:00 90.0 '' '' -1994-03-08 00:00 89.9 '' '' -1994-03-09 00:00 88.7 '' '' -1994-03-10 00:00 86.8 '' '' -1994-03-11 00:00 87.0 '' '' -1994-03-12 00:00 91.7 '' '' -1994-03-13 00:00 89.1 '' '' -1994-03-14 00:00 86.2 '' '' -1994-03-15 00:00 86.5 '' '' -1994-03-16 00:00 85.3 '' '' -1994-03-17 00:00 84.3 '' '' -1994-03-18 00:00 85.9 '' '' -1994-03-19 00:00 88.3 '' '' -1994-03-20 00:00 87.9 '' '' -1994-03-21 00:00 90.0 '' '' -1994-03-22 00:00 90.5 '' '' -1994-03-23 00:00 91.2 '' '' -1994-03-24 00:00 92.1 '' '' -1994-03-25 00:00 90.4 '' '' -1994-03-26 00:00 88.1 '' '' -1994-03-27 00:00 88.0 '' '' -1994-03-28 00:00 87.3 '' '' -1994-03-29 00:00 85.8 '' '' -1994-03-30 00:00 86.1 '' '' -1994-03-31 00:00 84.9 '' '' -1994-04-01 00:00 82.4 '' '' -1994-04-02 00:00 79.3 '' '' -1994-04-03 00:00 77.4 '' '' -1994-04-04 00:00 77.2 '' '' -1994-04-05 00:00 77.2 '' '' -1994-04-06 00:00 73.3 '' '' -1994-04-07 00:00 73.0 '' '' -1994-04-08 00:00 72.9 '' '' -1994-04-09 00:00 72.9 '' '' -1994-04-10 00:00 75.7 '' '' -1994-04-11 00:00 74.6 '' '' -1994-04-12 00:00 74.2 '' '' -1994-04-13 00:00 74.3 '' '' -1994-04-14 00:00 79.9 '' '' -1994-04-15 00:00 80.6 '' '' -1994-04-16 00:00 82.3 '' '' -1994-04-17 00:00 82.5 '' '' -1994-04-18 00:00 84.9 '' '' -1994-04-19 00:00 86.2 '' '' -1994-04-20 00:00 87.0 '' '' -1994-04-21 00:00 87.6 '' '' -1994-04-22 00:00 86.3 '' '' -1994-04-23 00:00 86.1 '' '' -1994-04-24 00:00 84.3 '' '' -1994-04-25 00:00 83.8 '' '' -1994-04-26 00:00 82.0 '' '' -1994-04-27 00:00 79.0 '' '' -1994-04-28 00:00 78.4 '' '' -1994-04-29 00:00 78.9 '' '' -1994-04-30 00:00 76.0 '' '' -1994-05-01 00:00 76.3 '' '' -1994-05-02 00:00 77.1 '' '' -1994-05-03 00:00 75.6 '' '' -1994-05-04 00:00 74.4 '' '' -1994-05-05 00:00 74.4 '' '' -1994-05-06 00:00 75.3 '' '' -1994-05-07 00:00 75.2 '' '' -1994-05-08 00:00 75.8 '' '' -1994-05-09 00:00 78.8 '' '' -1994-05-10 00:00 81.4 '' '' -1994-05-11 00:00 83.6 '' '' -1994-05-12 00:00 89.2 '' '' -1994-05-13 00:00 91.4 '' '' -1994-05-14 00:00 92.1 '' '' -1994-05-15 00:00 93.4 '' '' -1994-05-16 00:00 93.3 '' '' -1994-05-17 00:00 97.2 '' '' -1994-05-18 00:00 95.8 '' '' -1994-05-19 00:00 92.7 '' '' -1994-05-20 00:00 91.9 '' '' -1994-05-21 00:00 89.8 '' '' -1994-05-22 00:00 86.7 '' '' -1994-05-23 00:00 83.6 '' '' -1994-05-24 00:00 79.9 '' '' -1994-05-25 00:00 76.1 '' '' -1994-05-26 00:00 73.4 '' '' -1994-05-27 00:00 72.1 '' '' -1994-05-28 00:00 71.4 '' '' -1994-05-29 00:00 71.4 '' '' -1994-05-30 00:00 71.3 '' '' -1994-05-31 00:00 71.1 '' '' -1994-06-01 00:00 69.6 '' '' -1994-06-02 00:00 69.9 '' '' -1994-06-03 00:00 70.3 '' '' -1994-06-04 00:00 69.5 '' '' -1994-06-05 00:00 70.3 '' '' -1994-06-06 00:00 72.7 '' '' -1994-06-07 00:00 79.4 '' '' -1994-06-08 00:00 82.9 '' '' -1994-06-09 00:00 85.5 '' '' -1994-06-10 00:00 88.0 '' '' -1994-06-11 00:00 89.1 '' '' -1994-06-12 00:00 89.0 '' '' -1994-06-13 00:00 87.7 '' '' -1994-06-14 00:00 88.0 '' '' -1994-06-15 00:00 91.0 '' '' -1994-06-16 00:00 90.8 '' '' -1994-06-17 00:00 86.6 '' '' -1994-06-18 00:00 80.9 '' '' -1994-06-19 00:00 79.8 '' '' -1994-06-20 00:00 78.9 '' '' -1994-06-21 00:00 76.8 '' '' -1994-06-22 00:00 74.6 '' '' -1994-06-23 00:00 75.5 '' '' -1994-06-24 00:00 75.2 '' '' -1994-06-25 00:00 75.5 '' '' -1994-06-26 00:00 76.3 '' '' -1994-06-27 00:00 75.4 '' '' -1994-06-28 00:00 76.4 '' '' -1994-06-29 00:00 81.4 '' '' -1994-06-30 00:00 85.4 '' '' -1994-07-01 00:00 89.7 '' '' -1994-07-02 00:00 85.6 '' '' -1994-07-03 00:00 89.3 '' '' -1994-07-04 00:00 87.4 '' '' -1994-07-05 00:00 86.2 '' '' -1994-07-06 00:00 87.1 '' '' -1994-07-07 00:00 91.1 '' '' -1994-07-08 00:00 88.7 '' '' -1994-07-09 00:00 88.8 '' '' -1994-07-10 00:00 88.9 '' '' -1994-07-11 00:00 88.5 '' '' -1994-07-12 00:00 85.7 '' '' -1994-07-13 00:00 84.1 '' '' -1994-07-14 00:00 84.6 '' '' -1994-07-15 00:00 85.7 '' '' -1994-07-16 00:00 85.1 '' '' -1994-07-17 00:00 83.0 '' '' -1994-07-18 00:00 82.7 '' '' -1994-07-19 00:00 80.1 '' '' -1994-07-20 00:00 79.4 '' '' -1994-07-21 00:00 79.8 '' '' -1994-07-22 00:00 80.1 '' '' -1994-07-23 00:00 78.2 '' '' -1994-07-24 00:00 77.7 '' '' -1994-07-25 00:00 77.8 '' '' -1994-07-26 00:00 76.3 '' '' -1994-07-27 00:00 76.6 '' '' -1994-07-28 00:00 77.1 '' '' -1994-07-29 00:00 78.0 '' '' -1994-07-30 00:00 77.6 '' '' -1994-07-31 00:00 76.8 '' '' -1994-08-01 00:00 76.2 '' '' -1994-08-02 00:00 77.2 '' '' -1994-08-03 00:00 78.7 '' '' -1994-08-04 00:00 77.4 '' '' -1994-08-05 00:00 77.8 '' '' -1994-08-06 00:00 77.5 '' '' -1994-08-07 00:00 77.9 '' '' -1994-08-08 00:00 75.9 '' '' -1994-08-09 00:00 77.4 '' '' -1994-08-10 00:00 79.7 '' '' -1994-08-11 00:00 78.7 '' '' -1994-08-12 00:00 82.9 '' '' -1994-08-13 00:00 86.7 '' '' -1994-08-14 00:00 91.2 '' '' -1994-08-15 00:00 83.5 '' '' -1994-08-16 00:00 78.8 '' '' -1994-08-17 00:00 79.5 '' '' -1994-08-18 00:00 79.3 '' '' -1994-08-19 00:00 77.1 '' '' -1994-08-20 00:00 74.0 '' '' -1994-08-21 00:00 72.7 '' '' -1994-08-22 00:00 72.2 '' '' -1994-08-23 00:00 73.5 '' '' -1994-08-24 00:00 73.5 '' '' -1994-08-25 00:00 72.5 '' '' -1994-08-26 00:00 73.7 '' '' -1994-08-27 00:00 72.5 '' '' -1994-08-28 00:00 72.5 '' '' -1994-08-29 00:00 79.1 '' '' -1994-08-30 00:00 84.7 '' '' -1994-08-31 00:00 83.8 '' '' -1994-09-01 00:00 87.3 '' '' -1994-09-02 00:00 94.9 '' '' -1994-09-03 00:00 98.2 '' '' -1994-09-04 00:00 95.8 '' '' -1994-09-05 00:00 95.1 '' '' -1994-09-06 00:00 95.0 '' '' -1994-09-07 00:00 92.1 '' '' -1994-09-08 00:00 89.6 '' '' -1994-09-09 00:00 87.3 '' '' -1994-09-10 00:00 82.8 '' '' -1994-09-11 00:00 82.0 '' '' -1994-09-12 00:00 78.2 '' '' -1994-09-13 00:00 76.5 '' '' -1994-09-14 00:00 74.8 '' '' -1994-09-15 00:00 72.3 '' '' -1994-09-16 00:00 71.6 '' '' -1994-09-17 00:00 71.0 '' '' -1994-09-18 00:00 72.5 '' '' -1994-09-19 00:00 70.8 '' '' -1994-09-20 00:00 70.3 '' '' -1994-09-21 00:00 70.4 '' '' -1994-09-22 00:00 71.2 '' '' -1994-09-23 00:00 71.8 '' '' -1994-09-24 00:00 73.3 '' '' -1994-09-25 00:00 76.6 '' '' -1994-09-26 00:00 77.4 '' '' -1994-09-27 00:00 75.0 '' '' -1994-09-28 00:00 74.2 '' '' -1994-09-29 00:00 74.7 '' '' -1994-09-30 00:00 74.7 '' '' -1994-10-01 00:00 74.7 '' '' -1994-10-02 00:00 74.6 '' '' -1994-10-03 00:00 74.3 '' '' -1994-10-04 00:00 74.7 '' '' -1994-10-05 00:00 79.4 '' '' -1994-10-06 00:00 84.2 '' '' -1994-10-07 00:00 83.7 '' '' -1994-10-08 00:00 86.0 '' '' -1994-10-09 00:00 86.9 '' '' -1994-10-10 00:00 86.6 '' '' -1994-10-11 00:00 87.2 '' '' -1994-10-12 00:00 87.7 '' '' -1994-10-13 00:00 92.7 '' '' -1994-10-14 00:00 92.1 '' '' -1994-10-15 00:00 92.2 '' '' -1994-10-16 00:00 90.9 '' '' -1994-10-17 00:00 91.0 '' '' -1994-10-18 00:00 89.8 '' '' -1994-10-19 00:00 89.9 '' '' -1994-10-20 00:00 89.3 '' '' -1994-10-21 00:00 87.0 '' '' -1994-10-22 00:00 84.7 '' '' -1994-10-23 00:00 83.3 '' '' -1994-10-24 00:00 81.3 '' '' -1994-10-25 00:00 88.5 '' '' -1994-10-26 00:00 91.5 '' '' -1994-10-27 00:00 91.9 '' '' -1994-10-28 00:00 96.1 '' '' -1994-10-29 00:00 96.9 '' '' -1994-10-30 00:00 96.4 '' '' -1994-10-31 00:00 95.2 '' '' -1994-11-01 00:00 90.9 '' '' -1994-11-02 00:00 90.0 '' '' -1994-11-03 00:00 85.9 '' '' -1994-11-04 00:00 82.6 '' '' -1994-11-05 00:00 82.0 '' '' -1994-11-06 00:00 79.7 '' '' -1994-11-07 00:00 80.4 '' '' -1994-11-08 00:00 78.6 '' '' -1994-11-09 00:00 77.4 '' '' -1994-11-10 00:00 78.5 '' '' -1994-11-11 00:00 77.5 '' '' -1994-11-12 00:00 78.5 '' '' -1994-11-13 00:00 79.5 '' '' -1994-11-14 00:00 77.0 '' '' -1994-11-15 00:00 77.2 '' '' -1994-11-16 00:00 77.2 '' '' -1994-11-17 00:00 77.3 '' '' -1994-11-18 00:00 78.1 '' '' -1994-11-19 00:00 76.6 '' '' -1994-11-20 00:00 76.9 '' '' -1994-11-21 00:00 76.0 '' '' -1994-11-22 00:00 74.5 '' '' -1994-11-23 00:00 75.6 '' '' -1994-11-24 00:00 76.6 '' '' -1994-11-25 00:00 79.4 '' '' -1994-11-26 00:00 81.0 '' '' -1994-11-27 00:00 78.3 '' '' -1994-11-28 00:00 77.6 '' '' -1994-11-29 00:00 77.4 '' '' -1994-11-30 00:00 76.1 '' '' -1994-12-01 00:00 76.9 '' '' -1994-12-02 00:00 76.8 '' '' -1994-12-03 00:00 79.5 '' '' -1994-12-04 00:00 79.5 '' '' -1994-12-05 00:00 78.4 '' '' -1994-12-06 00:00 76.2 '' '' -1994-12-07 00:00 77.7 '' '' -1994-12-08 00:00 78.8 '' '' -1994-12-09 00:00 84.0 '' '' -1994-12-10 00:00 83.8 '' '' -1994-12-11 00:00 92.3 '' '' -1994-12-12 00:00 96.4 '' '' -1994-12-13 00:00 93.8 '' '' -1994-12-14 00:00 91.7 '' '' -1994-12-15 00:00 90.3 '' '' -1994-12-16 00:00 90.1 '' '' -1994-12-17 00:00 88.9 '' '' -1994-12-18 00:00 84.6 '' '' -1994-12-19 00:00 82.3 '' '' -1994-12-20 00:00 79.8 '' '' -1994-12-21 00:00 79.6 '' '' -1994-12-22 00:00 79.5 '' '' -1994-12-23 00:00 77.2 '' '' -1994-12-24 00:00 77.0 '' '' -1994-12-25 00:00 78.0 '' '' -1994-12-26 00:00 77.2 '' '' -1994-12-27 00:00 73.4 '' '' -1994-12-28 00:00 76.3 '' '' -1994-12-29 00:00 77.0 '' '' -1994-12-30 00:00 74.0 '' '' -1994-12-31 00:00 74.8 '' '' -1995-01-01 00:00 72.9 '' '' -1995-01-02 00:00 74.8 '' '' -1995-01-03 00:00 74.3 '' '' -1995-01-04 00:00 74.4 '' '' -1995-01-05 00:00 73.8 '' '' -1995-01-06 00:00 72.0 '' '' -1995-01-07 00:00 72.2 '' '' -1995-01-08 00:00 71.3 '' '' -1995-01-09 00:00 71.4 '' '' -1995-01-10 00:00 70.9 '' '' -1995-01-11 00:00 72.8 '' '' -1995-01-12 00:00 73.7 '' '' -1995-01-13 00:00 72.5 '' '' -1995-01-14 00:00 74.7 '' '' -1995-01-15 00:00 78.0 '' '' -1995-01-16 00:00 80.1 '' '' -1995-01-17 00:00 80.8 '' '' -1995-01-18 00:00 83.9 '' '' -1995-01-19 00:00 87.3 '' '' -1995-01-20 00:00 89.6 '' '' -1995-01-21 00:00 93.4 '' '' -1995-01-22 00:00 92.5 '' '' -1995-01-23 00:00 93.0 '' '' -1995-01-24 00:00 94.1 '' '' -1995-01-25 00:00 86.8 '' '' -1995-01-26 00:00 83.1 '' '' -1995-01-27 00:00 85.8 '' '' -1995-01-28 00:00 80.2 '' '' -1995-01-29 00:00 82.1 '' '' -1995-01-30 00:00 83.9 '' '' -1995-01-31 00:00 84.2 '' '' -1995-02-01 00:00 84.6 '' '' -1995-02-02 00:00 83.5 '' '' -1995-02-03 00:00 80.4 '' '' -1995-02-04 00:00 83.6 '' '' -1995-02-05 00:00 78.8 '' '' -1995-02-06 00:00 82.0 '' '' -1995-02-07 00:00 81.5 '' '' -1995-02-08 00:00 83.2 '' '' -1995-02-09 00:00 81.5 '' '' -1995-02-10 00:00 79.3 '' '' -1995-02-11 00:00 79.0 '' '' -1995-02-12 00:00 79.1 '' '' -1995-02-13 00:00 83.5 '' '' -1995-02-14 00:00 80.4 '' '' -1995-02-15 00:00 82.9 '' '' -1995-02-16 00:00 83.5 '' '' -1995-02-17 00:00 86.9 '' '' -1995-02-18 00:00 86.7 '' '' -1995-02-19 00:00 92.4 '' '' -1995-02-20 00:00 88.8 '' '' -1995-02-21 00:00 87.1 '' '' -1995-02-22 00:00 83.4 '' '' -1995-02-23 00:00 82.9 '' '' -1995-02-24 00:00 81.7 '' '' -1995-02-25 00:00 81.6 '' '' -1995-02-26 00:00 84.5 '' '' -1995-02-27 00:00 85.9 '' '' -1995-02-28 00:00 89.1 '' '' -1995-03-01 00:00 88.3 '' '' -1995-03-02 00:00 88.7 '' '' -1995-03-03 00:00 89.4 '' '' -1995-03-04 00:00 87.6 '' '' -1995-03-05 00:00 82.9 '' '' -1995-03-06 00:00 82.2 '' '' -1995-03-07 00:00 82.7 '' '' -1995-03-08 00:00 79.6 '' '' -1995-03-09 00:00 75.8 '' '' -1995-03-10 00:00 78.1 '' '' -1995-03-11 00:00 75.1 '' '' -1995-03-12 00:00 75.3 '' '' -1995-03-13 00:00 76.6 '' '' -1995-03-14 00:00 78.1 '' '' -1995-03-15 00:00 80.2 '' '' -1995-03-16 00:00 83.3 '' '' -1995-03-17 00:00 82.5 '' '' -1995-03-18 00:00 90.9 '' '' -1995-03-19 00:00 83.4 '' '' -1995-03-20 00:00 88.3 '' '' -1995-03-21 00:00 89.3 '' '' -1995-03-22 00:00 92.9 '' '' -1995-03-23 00:00 93.6 '' '' -1995-03-24 00:00 94.4 '' '' -1995-03-25 00:00 91.8 '' '' -1995-03-26 00:00 89.9 '' '' -1995-03-27 00:00 88.6 '' '' -1995-03-28 00:00 83.4 '' '' -1995-03-29 00:00 80.7 '' '' -1995-03-30 00:00 79.5 '' '' -1995-03-31 00:00 76.7 '' '' -1995-04-01 00:00 75.3 '' '' -1995-04-02 00:00 76.2 '' '' -1995-04-03 00:00 75.2 '' '' -1995-04-04 00:00 73.1 '' '' -1995-04-05 00:00 72.2 '' '' -1995-04-06 00:00 71.9 '' '' -1995-04-07 00:00 70.7 '' '' -1995-04-08 00:00 72.0 '' '' -1995-04-09 00:00 72.9 '' '' -1995-04-10 00:00 74.8 '' '' -1995-04-11 00:00 78.0 '' '' -1995-04-12 00:00 82.3 '' '' -1995-04-13 00:00 83.3 '' '' -1995-04-14 00:00 88.9 '' '' -1995-04-15 00:00 92.0 '' '' -1995-04-16 00:00 89.7 '' '' -1995-04-17 00:00 89.6 '' '' -1995-04-18 00:00 90.7 '' '' -1995-04-19 00:00 92.6 '' '' -1995-04-20 00:00 87.2 '' '' -1995-04-21 00:00 85.5 '' '' -1995-04-22 00:00 84.8 '' '' -1995-04-23 00:00 77.6 '' '' -1995-04-24 00:00 73.4 '' '' -1995-04-25 00:00 71.3 '' '' -1995-04-26 00:00 70.2 '' '' -1995-04-27 00:00 69.1 '' '' -1995-04-28 00:00 68.6 '' '' -1995-04-29 00:00 69.0 '' '' -1995-04-30 00:00 68.2 '' '' -1995-05-01 00:00 69.7 '' '' -1995-05-02 00:00 69.9 '' '' -1995-05-03 00:00 70.2 '' '' -1995-05-04 00:00 71.8 '' '' -1995-05-05 00:00 74.2 '' '' -1995-05-06 00:00 77.8 '' '' -1995-05-07 00:00 79.0 '' '' -1995-05-08 00:00 79.4 '' '' -1995-05-09 00:00 79.2 '' '' -1995-05-10 00:00 79.3 '' '' -1995-05-11 00:00 78.4 '' '' -1995-05-12 00:00 82.4 '' '' -1995-05-13 00:00 82.2 '' '' -1995-05-14 00:00 81.6 '' '' -1995-05-15 00:00 87.8 '' '' -1995-05-16 00:00 95.9 '' '' -1995-05-17 00:00 97.3 '' '' -1995-05-18 00:00 93.4 '' '' -1995-05-19 00:00 88.3 '' '' -1995-05-20 00:00 82.8 '' '' -1995-05-21 00:00 77.0 '' '' -1995-05-22 00:00 72.6 '' '' -1995-05-23 00:00 70.4 '' '' -1995-05-24 00:00 68.8 '' '' -1995-05-25 00:00 68.9 '' '' -1995-05-26 00:00 68.1 '' '' -1995-05-27 00:00 67.5 '' '' -1995-05-28 00:00 68.4 '' '' -1995-05-29 00:00 68.7 '' '' -1995-05-30 00:00 69.4 '' '' -1995-05-31 00:00 70.9 '' '' -1995-06-01 00:00 72.5 '' '' -1995-06-02 00:00 75.4 '' '' -1995-06-03 00:00 76.8 '' '' -1995-06-04 00:00 81.4 '' '' -1995-06-05 00:00 84.2 '' '' -1995-06-06 00:00 81.8 '' '' -1995-06-07 00:00 85.0 '' '' -1995-06-08 00:00 86.8 '' '' -1995-06-09 00:00 89.0 '' '' -1995-06-10 00:00 87.0 '' '' -1995-06-11 00:00 85.1 '' '' -1995-06-12 00:00 83.3 '' '' -1995-06-13 00:00 79.2 '' '' -1995-06-14 00:00 78.1 '' '' -1995-06-15 00:00 75.6 '' '' -1995-06-16 00:00 73.1 '' '' -1995-06-17 00:00 72.1 '' '' -1995-06-18 00:00 71.8 '' '' -1995-06-19 00:00 73.7 '' '' -1995-06-20 00:00 74.2 '' '' -1995-06-21 00:00 74.7 '' '' -1995-06-22 00:00 75.5 '' '' -1995-06-23 00:00 74.3 '' '' -1995-06-24 00:00 73.4 '' '' -1995-06-25 00:00 73.2 '' '' -1995-06-26 00:00 73.2 '' '' -1995-06-27 00:00 74.7 '' '' -1995-06-28 00:00 77.0 '' '' -1995-06-29 00:00 80.1 '' '' -1995-06-30 00:00 80.8 '' '' -1995-07-01 00:00 81.5 '' '' -1995-07-02 00:00 80.3 '' '' -1995-07-03 00:00 80.7 '' '' -1995-07-04 00:00 83.5 '' '' -1995-07-05 00:00 82.9 '' '' -1995-07-06 00:00 83.6 '' '' -1995-07-07 00:00 83.3 '' '' -1995-07-08 00:00 84.2 '' '' -1995-07-09 00:00 82.9 '' '' -1995-07-10 00:00 79.9 '' '' -1995-07-11 00:00 78.6 '' '' -1995-07-12 00:00 76.7 '' '' -1995-07-13 00:00 74.9 '' '' -1995-07-14 00:00 76.8 '' '' -1995-07-15 00:00 76.8 '' '' -1995-07-16 00:00 75.9 '' '' -1995-07-17 00:00 74.7 '' '' -1995-07-18 00:00 74.4 '' '' -1995-07-19 00:00 72.8 '' '' -1995-07-20 00:00 72.0 '' '' -1995-07-21 00:00 70.8 '' '' -1995-07-22 00:00 71.1 '' '' -1995-07-23 00:00 70.7 '' '' -1995-07-24 00:00 71.5 '' '' -1995-07-25 00:00 72.0 '' '' -1995-07-26 00:00 71.6 '' '' -1995-07-27 00:00 72.7 '' '' -1995-07-28 00:00 72.6 '' '' -1995-07-29 00:00 72.0 '' '' -1995-07-30 00:00 71.9 '' '' -1995-07-31 00:00 72.9 '' '' -1995-08-01 00:00 74.8 '' '' -1995-08-02 00:00 75.7 '' '' -1995-08-03 00:00 75.5 '' '' -1995-08-04 00:00 75.1 '' '' -1995-08-05 00:00 77.2 '' '' -1995-08-06 00:00 77.3 '' '' -1995-08-07 00:00 75.8 '' '' -1995-08-08 00:00 75.6 '' '' -1995-08-09 00:00 75.5 '' '' -1995-08-10 00:00 75.0 '' '' -1995-08-11 00:00 74.9 '' '' -1995-08-12 00:00 73.8 '' '' -1995-08-13 00:00 72.7 '' '' -1995-08-14 00:00 71.9 '' '' -1995-08-15 00:00 73.2 '' '' -1995-08-16 00:00 72.3 '' '' -1995-08-17 00:00 71.5 '' '' -1995-08-18 00:00 73.6 '' '' -1995-08-19 00:00 73.4 '' '' -1995-08-20 00:00 73.0 '' '' -1995-08-21 00:00 72.7 '' '' -1995-08-22 00:00 71.9 '' '' -1995-08-23 00:00 75.9 '' '' -1995-08-24 00:00 78.8 '' '' -1995-08-25 00:00 78.8 '' '' -1995-08-26 00:00 78.9 '' '' -1995-08-27 00:00 81.6 '' '' -1995-08-28 00:00 83.2 '' '' -1995-08-29 00:00 79.7 '' '' -1995-08-30 00:00 78.9 '' '' -1995-08-31 00:00 77.0 '' '' -1995-09-01 00:00 75.0 '' '' -1995-09-02 00:00 74.6 '' '' -1995-09-03 00:00 74.9 '' '' -1995-09-04 00:00 75.6 '' '' -1995-09-05 00:00 75.9 '' '' -1995-09-06 00:00 73.0 '' '' -1995-09-07 00:00 71.2 '' '' -1995-09-08 00:00 70.1 '' '' -1995-09-09 00:00 69.7 '' '' -1995-09-10 00:00 68.9 '' '' -1995-09-11 00:00 68.9 '' '' -1995-09-12 00:00 69.5 '' '' -1995-09-13 00:00 70.1 '' '' -1995-09-14 00:00 70.3 '' '' -1995-09-15 00:00 70.9 '' '' -1995-09-16 00:00 70.4 '' '' -1995-09-17 00:00 70.5 '' '' -1995-09-18 00:00 72.3 '' '' -1995-09-19 00:00 74.3 '' '' -1995-09-20 00:00 76.2 '' '' -1995-09-21 00:00 74.5 '' '' -1995-09-22 00:00 75.1 '' '' -1995-09-23 00:00 75.5 '' '' -1995-09-24 00:00 74.2 '' '' -1995-09-25 00:00 74.5 '' '' -1995-09-26 00:00 73.9 '' '' -1995-09-27 00:00 72.6 '' '' -1995-09-28 00:00 73.0 '' '' -1995-09-29 00:00 74.0 '' '' -1995-09-30 00:00 73.0 '' '' -1995-10-01 00:00 72.8 '' '' -1995-10-02 00:00 72.7 '' '' -1995-10-03 00:00 71.1 '' '' -1995-10-04 00:00 70.8 '' '' -1995-10-05 00:00 69.8 '' '' -1995-10-06 00:00 70.9 '' '' -1995-10-07 00:00 72.8 '' '' -1995-10-08 00:00 74.1 '' '' -1995-10-09 00:00 76.0 '' '' -1995-10-10 00:00 82.1 '' '' -1995-10-11 00:00 89.1 '' '' -1995-10-12 00:00 91.8 '' '' -1995-10-13 00:00 87.5 '' '' -1995-10-14 00:00 86.7 '' '' -1995-10-15 00:00 82.5 '' '' -1995-10-16 00:00 85.0 '' '' -1995-10-17 00:00 84.1 '' '' -1995-10-18 00:00 80.9 '' '' -1995-10-19 00:00 79.8 '' '' -1995-10-20 00:00 81.8 '' '' -1995-10-21 00:00 80.3 '' '' -1995-10-22 00:00 79.7 '' '' -1995-10-23 00:00 75.9 '' '' -1995-10-24 00:00 73.5 '' '' -1995-10-25 00:00 73.1 '' '' -1995-10-26 00:00 73.0 '' '' -1995-10-27 00:00 73.1 '' '' -1995-10-28 00:00 72.9 '' '' -1995-10-29 00:00 72.8 '' '' -1995-10-30 00:00 72.3 '' '' -1995-10-31 00:00 72.2 '' '' -1995-11-01 00:00 73.3 '' '' -1995-11-02 00:00 72.1 '' '' -1995-11-03 00:00 71.4 '' '' -1995-11-04 00:00 72.0 '' '' -1995-11-05 00:00 73.9 '' '' -1995-11-06 00:00 73.5 '' '' -1995-11-07 00:00 73.2 '' '' -1995-11-08 00:00 74.8 '' '' -1995-11-09 00:00 75.7 '' '' -1995-11-10 00:00 76.5 '' '' -1995-11-11 00:00 75.9 '' '' -1995-11-12 00:00 74.6 '' '' -1995-11-13 00:00 71.5 '' '' -1995-11-14 00:00 73.4 '' '' -1995-11-15 00:00 75.0 '' '' -1995-11-16 00:00 74.2 '' '' -1995-11-17 00:00 73.4 '' '' -1995-11-18 00:00 73.4 '' '' -1995-11-19 00:00 72.2 '' '' -1995-11-20 00:00 71.5 '' '' -1995-11-21 00:00 71.1 '' '' -1995-11-22 00:00 71.0 '' '' -1995-11-23 00:00 70.9 '' '' -1995-11-24 00:00 70.4 '' '' -1995-11-25 00:00 69.9 '' '' -1995-11-26 00:00 70.8 '' '' -1995-11-27 00:00 68.9 '' '' -1995-11-28 00:00 71.5 '' '' -1995-11-29 00:00 70.4 '' '' -1995-11-30 00:00 72.3 '' '' -1995-12-01 00:00 70.7 '' '' -1995-12-02 00:00 71.2 '' '' -1995-12-03 00:00 71.2 '' '' -1995-12-04 00:00 70.7 '' '' -1995-12-05 00:00 71.4 '' '' -1995-12-06 00:00 71.8 '' '' -1995-12-07 00:00 71.9 '' '' -1995-12-08 00:00 71.8 '' '' -1995-12-09 00:00 71.6 '' '' -1995-12-10 00:00 71.3 '' '' -1995-12-11 00:00 71.1 '' '' -1995-12-12 00:00 70.0 '' '' -1995-12-13 00:00 70.4 '' '' -1995-12-14 00:00 67.6 '' '' -1995-12-15 00:00 68.0 '' '' -1995-12-16 00:00 67.7 '' '' -1995-12-17 00:00 67.1 '' '' -1995-12-18 00:00 66.4 '' '' -1995-12-19 00:00 67.0 '' '' -1995-12-20 00:00 67.3 '' '' -1995-12-21 00:00 67.8 '' '' -1995-12-22 00:00 68.9 '' '' -1995-12-23 00:00 69.9 '' '' -1995-12-24 00:00 69.9 '' '' -1995-12-25 00:00 70.1 '' '' -1995-12-26 00:00 71.7 '' '' -1995-12-27 00:00 71.5 '' '' -1995-12-28 00:00 73.4 '' '' -1995-12-29 00:00 73.9 '' '' -1995-12-30 00:00 72.8 '' '' -1995-12-31 00:00 72.7 '' '' -1996-01-01 00:00 72.6 '' '' -1996-01-02 00:00 72.3 '' '' -1996-01-03 00:00 78.2 '' '' -1996-01-04 00:00 83.1 '' '' -1996-01-05 00:00 82.1 '' '' -1996-01-06 00:00 79.9 '' '' -1996-01-07 00:00 79.8 '' '' -1996-01-08 00:00 76.7 '' '' -1996-01-09 00:00 73.4 '' '' -1996-01-10 00:00 71.4 '' '' -1996-01-11 00:00 69.1 '' '' -1996-01-12 00:00 67.2 '' '' -1996-01-13 00:00 66.7 '' '' -1996-01-14 00:00 67.4 '' '' -1996-01-15 00:00 67.9 '' '' -1996-01-16 00:00 67.6 '' '' -1996-01-17 00:00 68.2 '' '' -1996-01-18 00:00 68.7 '' '' -1996-01-19 00:00 68.5 '' '' -1996-01-20 00:00 69.1 '' '' -1996-01-21 00:00 69.5 '' '' -1996-01-22 00:00 70.0 '' '' -1996-01-23 00:00 71.0 '' '' -1996-01-24 00:00 70.7 '' '' -1996-01-25 00:00 71.7 '' '' -1996-01-26 00:00 71.5 '' '' -1996-01-27 00:00 71.6 '' '' -1996-01-28 00:00 71.4 '' '' -1996-01-29 00:00 71.8 '' '' -1996-01-30 00:00 72.5 '' '' -1996-01-31 00:00 74.5 '' '' -1996-02-01 00:00 72.9 '' '' -1996-02-02 00:00 74.2 '' '' -1996-02-03 00:00 71.9 '' '' -1996-02-04 00:00 71.4 '' '' -1996-02-05 00:00 69.4 '' '' -1996-02-06 00:00 69.2 '' '' -1996-02-07 00:00 68.2 '' '' -1996-02-08 00:00 65.7 '' '' -1996-02-09 00:00 68.1 '' '' -1996-02-10 00:00 68.0 '' '' -1996-02-11 00:00 68.2 '' '' -1996-02-12 00:00 67.3 '' '' -1996-02-13 00:00 67.0 '' '' -1996-02-14 00:00 67.2 '' '' -1996-02-15 00:00 67.4 '' '' -1996-02-16 00:00 68.5 '' '' -1996-02-17 00:00 69.0 '' '' -1996-02-18 00:00 68.6 '' '' -1996-02-19 00:00 69.4 '' '' -1996-02-20 00:00 70.6 '' '' -1996-02-21 00:00 70.4 '' '' -1996-02-22 00:00 70.1 '' '' -1996-02-23 00:00 72.3 '' '' -1996-02-24 00:00 74.1 '' '' -1996-02-25 00:00 71.8 '' '' -1996-02-26 00:00 70.9 '' '' -1996-02-27 00:00 70.7 '' '' -1996-02-28 00:00 70.8 '' '' -1996-02-29 00:00 70.9 '' '' -1996-03-01 00:00 70.6 '' '' -1996-03-02 00:00 69.8 '' '' -1996-03-03 00:00 69.0 '' '' -1996-03-04 00:00 68.1 '' '' -1996-03-05 00:00 68.0 '' '' -1996-03-06 00:00 68.4 '' '' -1996-03-07 00:00 66.8 '' '' -1996-03-08 00:00 68.8 '' '' -1996-03-09 00:00 66.6 '' '' -1996-03-10 00:00 68.2 '' '' -1996-03-11 00:00 70.9 '' '' -1996-03-12 00:00 72.4 '' '' -1996-03-13 00:00 70.5 '' '' -1996-03-14 00:00 70.0 '' '' -1996-03-15 00:00 69.6 '' '' -1996-03-16 00:00 70.3 '' '' -1996-03-17 00:00 70.0 '' '' -1996-03-18 00:00 70.0 '' '' -1996-03-19 00:00 69.4 '' '' -1996-03-20 00:00 68.8 '' '' -1996-03-21 00:00 69.9 '' '' -1996-03-22 00:00 73.4 '' '' -1996-03-23 00:00 71.6 '' '' -1996-03-24 00:00 70.9 '' '' -1996-03-25 00:00 72.1 '' '' -1996-03-26 00:00 71.6 '' '' -1996-03-27 00:00 71.6 '' '' -1996-03-28 00:00 71.7 '' '' -1996-03-29 00:00 70.3 '' '' -1996-03-30 00:00 70.1 '' '' -1996-03-31 00:00 70.0 '' '' -1996-04-01 00:00 68.1 '' '' -1996-04-02 00:00 70.6 '' '' -1996-04-03 00:00 71.1 '' '' -1996-04-04 00:00 70.2 '' '' -1996-04-05 00:00 70.0 '' '' -1996-04-06 00:00 68.8 '' '' -1996-04-07 00:00 68.6 '' '' -1996-04-08 00:00 68.6 '' '' -1996-04-09 00:00 69.3 '' '' -1996-04-10 00:00 69.1 '' '' -1996-04-11 00:00 68.8 '' '' -1996-04-12 00:00 68.7 '' '' -1996-04-13 00:00 69.3 '' '' -1996-04-14 00:00 69.1 '' '' -1996-04-15 00:00 68.5 '' '' -1996-04-16 00:00 68.8 '' '' -1996-04-17 00:00 69.9 '' '' -1996-04-18 00:00 70.8 '' '' -1996-04-19 00:00 71.2 '' '' -1996-04-20 00:00 72.3 '' '' -1996-04-21 00:00 74.8 '' '' -1996-04-22 00:00 73.2 '' '' -1996-04-23 00:00 71.9 '' '' -1996-04-24 00:00 69.5 '' '' -1996-04-25 00:00 68.7 '' '' -1996-04-26 00:00 69.1 '' '' -1996-04-27 00:00 69.2 '' '' -1996-04-28 00:00 68.6 '' '' -1996-04-29 00:00 69.5 '' '' -1996-04-30 00:00 69.6 '' '' -1996-05-01 00:00 68.9 '' '' -1996-05-02 00:00 69.0 '' '' -1996-05-03 00:00 69.5 '' '' -1996-05-04 00:00 70.6 '' '' -1996-05-05 00:00 72.0 '' '' -1996-05-06 00:00 76.0 '' '' -1996-05-07 00:00 76.3 '' '' -1996-05-08 00:00 77.5 '' '' -1996-05-09 00:00 77.7 '' '' -1996-05-10 00:00 79.1 '' '' -1996-05-11 00:00 78.0 '' '' -1996-05-12 00:00 75.1 '' '' -1996-05-13 00:00 74.3 '' '' -1996-05-14 00:00 73.4 '' '' -1996-05-15 00:00 72.5 '' '' -1996-05-16 00:00 72.6 '' '' -1996-05-17 00:00 72.9 '' '' -1996-05-18 00:00 72.0 '' '' -1996-05-19 00:00 70.4 '' '' -1996-05-20 00:00 69.6 '' '' -1996-05-21 00:00 68.5 '' '' -1996-05-22 00:00 68.1 '' '' -1996-05-23 00:00 68.9 '' '' -1996-05-24 00:00 69.0 '' '' -1996-05-25 00:00 68.7 '' '' -1996-05-26 00:00 68.7 '' '' -1996-05-27 00:00 68.4 '' '' -1996-05-28 00:00 67.8 '' '' -1996-05-29 00:00 68.3 '' '' -1996-05-30 00:00 68.4 '' '' -1996-05-31 00:00 69.9 '' '' -1996-06-01 00:00 70.4 '' '' -1996-06-02 00:00 70.2 '' '' -1996-06-03 00:00 71.2 '' '' -1996-06-04 00:00 71.2 '' '' -1996-06-05 00:00 72.8 '' '' -1996-06-06 00:00 73.8 '' '' -1996-06-07 00:00 75.4 '' '' -1996-06-08 00:00 72.4 '' '' -1996-06-09 00:00 72.0 '' '' -1996-06-10 00:00 71.1 '' '' -1996-06-11 00:00 70.2 '' '' -1996-06-12 00:00 69.5 '' '' -1996-06-13 00:00 70.3 '' '' -1996-06-14 00:00 69.8 '' '' -1996-06-15 00:00 69.5 '' '' -1996-06-16 00:00 69.0 '' '' -1996-06-17 00:00 69.6 '' '' -1996-06-18 00:00 69.9 '' '' -1996-06-19 00:00 70.7 '' '' -1996-06-20 00:00 71.9 '' '' -1996-06-21 00:00 72.6 '' '' -1996-06-22 00:00 72.0 '' '' -1996-06-23 00:00 70.9 '' '' -1996-06-24 00:00 74.7 '' '' -1996-06-25 00:00 74.3 '' '' -1996-06-26 00:00 74.2 '' '' -1996-06-27 00:00 73.8 '' '' -1996-06-28 00:00 73.8 '' '' -1996-06-29 00:00 73.3 '' '' -1996-06-30 00:00 73.1 '' '' -1996-07-01 00:00 72.4 '' '' -1996-07-02 00:00 72.8 '' '' -1996-07-03 00:00 71.3 '' '' -1996-07-04 00:00 71.5 '' '' -1996-07-05 00:00 71.0 '' '' -1996-07-06 00:00 70.5 '' '' -1996-07-07 00:00 74.3 '' '' -1996-07-08 00:00 84.3 '' '' -1996-07-09 00:00 86.5 '' '' -1996-07-10 00:00 82.5 '' '' -1996-07-11 00:00 79.6 '' '' -1996-07-12 00:00 76.2 '' '' -1996-07-13 00:00 72.5 '' '' -1996-07-14 00:00 70.0 '' '' -1996-07-15 00:00 69.3 '' '' -1996-07-16 00:00 69.1 '' '' -1996-07-17 00:00 69.0 '' '' -1996-07-18 00:00 67.0 '' '' -1996-07-19 00:00 68.3 '' '' -1996-07-20 00:00 67.5 '' '' -1996-07-21 00:00 67.2 '' '' -1996-07-22 00:00 68.2 '' '' -1996-07-23 00:00 68.9 '' '' -1996-07-24 00:00 68.3 '' '' -1996-07-25 00:00 70.4 '' '' -1996-07-26 00:00 72.4 '' '' -1996-07-27 00:00 75.6 '' '' -1996-07-28 00:00 77.8 '' '' -1996-07-29 00:00 80.3 '' '' -1996-07-30 00:00 82.3 '' '' -1996-07-31 00:00 82.7 '' '' -1996-08-01 00:00 82.8 '' '' -1996-08-02 00:00 81.9 '' '' -1996-08-03 00:00 81.6 '' '' -1996-08-04 00:00 79.9 '' '' -1996-08-05 00:00 76.2 '' '' -1996-08-06 00:00 75.1 '' '' -1996-08-07 00:00 73.7 '' '' -1996-08-08 00:00 71.7 '' '' -1996-08-09 00:00 72.1 '' '' -1996-08-10 00:00 73.6 '' '' -1996-08-11 00:00 74.8 '' '' -1996-08-12 00:00 72.0 '' '' -1996-08-13 00:00 71.4 '' '' -1996-08-14 00:00 70.5 '' '' -1996-08-15 00:00 69.3 '' '' -1996-08-16 00:00 69.3 '' '' -1996-08-17 00:00 69.5 '' '' -1996-08-18 00:00 68.4 '' '' -1996-08-19 00:00 69.3 '' '' -1996-08-20 00:00 70.1 '' '' -1996-08-21 00:00 71.3 '' '' -1996-08-22 00:00 74.5 '' '' -1996-08-23 00:00 75.8 '' '' -1996-08-24 00:00 76.2 '' '' -1996-08-25 00:00 76.3 '' '' -1996-08-26 00:00 75.8 '' '' -1996-08-27 00:00 75.9 '' '' -1996-08-28 00:00 74.7 '' '' -1996-08-29 00:00 75.0 '' '' -1996-08-30 00:00 74.7 '' '' -1996-08-31 00:00 77.6 '' '' -1996-09-01 00:00 74.8 '' '' -1996-09-02 00:00 73.6 '' '' -1996-09-03 00:00 72.4 '' '' -1996-09-04 00:00 72.0 '' '' -1996-09-05 00:00 71.4 '' '' -1996-09-06 00:00 70.8 '' '' -1996-09-07 00:00 70.5 '' '' -1996-09-08 00:00 69.2 '' '' -1996-09-09 00:00 68.8 '' '' -1996-09-10 00:00 68.9 '' '' -1996-09-11 00:00 68.5 '' '' -1996-09-12 00:00 68.6 '' '' -1996-09-13 00:00 68.1 '' '' -1996-09-14 00:00 67.9 '' '' -1996-09-15 00:00 67.1 '' '' -1996-09-16 00:00 68.7 '' '' -1996-09-17 00:00 69.6 '' '' -1996-09-18 00:00 69.6 '' '' -1996-09-19 00:00 69.8 '' '' -1996-09-20 00:00 69.7 '' '' -1996-09-21 00:00 70.3 '' '' -1996-09-22 00:00 69.1 '' '' -1996-09-23 00:00 70.4 '' '' -1996-09-24 00:00 70.4 '' '' -1996-09-25 00:00 71.2 '' '' -1996-09-26 00:00 70.4 '' '' -1996-09-27 00:00 70.1 '' '' -1996-09-28 00:00 71.2 '' '' -1996-09-29 00:00 70.3 '' '' -1996-09-30 00:00 69.7 '' '' -1996-10-01 00:00 69.6 '' '' -1996-10-02 00:00 69.8 '' '' -1996-10-03 00:00 69.6 '' '' -1996-10-04 00:00 69.4 '' '' -1996-10-05 00:00 68.5 '' '' -1996-10-06 00:00 68.8 '' '' -1996-10-07 00:00 68.2 '' '' -1996-10-08 00:00 67.7 '' '' -1996-10-09 00:00 67.7 '' '' -1996-10-10 00:00 67.4 '' '' -1996-10-11 00:00 66.4 '' '' -1996-10-12 00:00 66.9 '' '' -1996-10-13 00:00 67.3 '' '' -1996-10-14 00:00 68.2 '' '' -1996-10-15 00:00 68.6 '' '' -1996-10-16 00:00 68.1 '' '' -1996-10-17 00:00 68.0 '' '' -1996-10-18 00:00 69.0 '' '' -1996-10-19 00:00 70.4 '' '' -1996-10-20 00:00 70.6 '' '' -1996-10-21 00:00 69.0 '' '' -1996-10-22 00:00 69.1 '' '' -1996-10-23 00:00 67.1 '' '' -1996-10-24 00:00 69.1 '' '' -1996-10-25 00:00 69.1 '' '' -1996-10-26 00:00 70.3 '' '' -1996-10-27 00:00 71.2 '' '' -1996-10-28 00:00 67.5 '' '' -1996-10-29 00:00 69.4 '' '' -1996-10-30 00:00 69.7 '' '' -1996-10-31 00:00 68.6 '' '' -1996-11-01 00:00 68.5 '' '' -1996-11-02 00:00 67.9 '' '' -1996-11-03 00:00 68.3 '' '' -1996-11-04 00:00 67.8 '' '' -1996-11-05 00:00 67.1 '' '' -1996-11-06 00:00 68.0 '' '' -1996-11-07 00:00 67.3 '' '' -1996-11-08 00:00 67.8 '' '' -1996-11-09 00:00 68.9 '' '' -1996-11-10 00:00 69.6 '' '' -1996-11-11 00:00 70.0 '' '' -1996-11-12 00:00 70.7 '' '' -1996-11-13 00:00 71.5 '' '' -1996-11-14 00:00 72.1 '' '' -1996-11-15 00:00 71.9 '' '' -1996-11-16 00:00 72.2 '' '' -1996-11-17 00:00 70.4 '' '' -1996-11-18 00:00 72.4 '' '' -1996-11-19 00:00 72.6 '' '' -1996-11-20 00:00 72.7 '' '' -1996-11-21 00:00 72.6 '' '' -1996-11-22 00:00 80.6 '' '' -1996-11-23 00:00 88.7 '' '' -1996-11-24 00:00 97.3 '' '' -1996-11-25 00:00 101.7 '' '' -1996-11-26 00:00 100.8 '' '' -1996-11-27 00:00 100.0 '' '' -1996-11-28 00:00 95.4 '' '' -1996-11-29 00:00 88.5 '' '' -1996-11-30 00:00 85.1 '' '' -1996-12-01 00:00 80.8 '' '' -1996-12-02 00:00 75.7 '' '' -1996-12-03 00:00 70.7 '' '' -1996-12-04 00:00 68.6 '' '' -1996-12-05 00:00 67.6 '' '' -1996-12-06 00:00 67.6 '' '' -1996-12-07 00:00 67.1 '' '' -1996-12-08 00:00 66.6 '' '' -1996-12-09 00:00 71.5 '' '' -1996-12-10 00:00 70.2 '' '' -1996-12-11 00:00 75.2 '' '' -1996-12-12 00:00 78.6 '' '' -1996-12-13 00:00 79.2 '' '' -1996-12-14 00:00 80.0 '' '' -1996-12-15 00:00 82.3 '' '' -1996-12-16 00:00 83.5 '' '' -1996-12-17 00:00 83.6 '' '' -1996-12-18 00:00 85.6 '' '' -1996-12-19 00:00 84.6 '' '' -1996-12-20 00:00 80.3 '' '' -1996-12-21 00:00 80.9 '' '' -1996-12-22 00:00 78.9 '' '' -1996-12-23 00:00 76.9 '' '' -1996-12-24 00:00 76.4 '' '' -1996-12-25 00:00 74.7 '' '' -1996-12-26 00:00 73.0 '' '' -1996-12-27 00:00 72.2 '' '' -1996-12-28 00:00 71.8 '' '' -1996-12-29 00:00 71.4 '' '' -1996-12-30 00:00 70.1 '' '' -1996-12-31 00:00 69.8 '' '' -1997-01-01 00:00 70.0 '' '' -1997-01-02 00:00 69.7 '' '' -1997-01-03 00:00 70.8 '' '' -1997-01-04 00:00 71.4 '' '' -1997-01-05 00:00 71.9 '' '' -1997-01-06 00:00 70.6 '' '' -1997-01-07 00:00 70.9 '' '' -1997-01-08 00:00 71.3 '' '' -1997-01-09 00:00 71.3 '' '' -1997-01-10 00:00 72.9 '' '' -1997-01-11 00:00 71.6 '' '' -1997-01-12 00:00 72.1 '' '' -1997-01-13 00:00 72.1 '' '' -1997-01-14 00:00 72.4 '' '' -1997-01-15 00:00 73.3 '' '' -1997-01-16 00:00 72.4 '' '' -1997-01-17 00:00 71.7 '' '' -1997-01-18 00:00 72.2 '' '' -1997-01-19 00:00 72.9 '' '' -1997-01-20 00:00 74.3 '' '' -1997-01-21 00:00 71.8 '' '' -1997-01-22 00:00 70.7 '' '' -1997-01-23 00:00 71.1 '' '' -1997-01-24 00:00 71.9 '' '' -1997-01-25 00:00 70.9 '' '' -1997-01-26 00:00 71.9 '' '' -1997-01-27 00:00 71.3 '' '' -1997-01-28 00:00 70.8 '' '' -1997-01-29 00:00 72.4 '' '' -1997-01-30 00:00 71.5 '' '' -1997-01-31 00:00 70.3 '' '' -1997-02-01 00:00 69.2 '' '' -1997-02-02 00:00 76.2 '' '' -1997-02-03 00:00 77.4 '' '' -1997-02-04 00:00 78.4 '' '' -1997-02-05 00:00 73.3 '' '' -1997-02-06 00:00 72.2 '' '' -1997-02-07 00:00 73.7 '' '' -1997-02-08 00:00 73.2 '' '' -1997-02-09 00:00 71.2 '' '' -1997-02-10 00:00 70.4 '' '' -1997-02-11 00:00 69.3 '' '' -1997-02-12 00:00 69.1 '' '' -1997-02-13 00:00 69.3 '' '' -1997-02-14 00:00 69.6 '' '' -1997-02-15 00:00 70.1 '' '' -1997-02-16 00:00 70.3 '' '' -1997-02-17 00:00 71.4 '' '' -1997-02-18 00:00 71.2 '' '' -1997-02-19 00:00 70.4 '' '' -1997-02-20 00:00 71.0 '' '' -1997-02-21 00:00 71.6 '' '' -1997-02-22 00:00 71.9 '' '' -1997-02-23 00:00 73.0 '' '' -1997-02-24 00:00 73.1 '' '' -1997-02-25 00:00 72.6 '' '' -1997-02-26 00:00 72.4 '' '' -1997-02-27 00:00 72.4 '' '' -1997-02-28 00:00 71.5 '' '' -1997-03-01 00:00 70.5 '' '' -1997-03-02 00:00 71.1 '' '' -1997-03-03 00:00 72.8 '' '' -1997-03-04 00:00 72.8 '' '' -1997-03-05 00:00 73.4 '' '' -1997-03-06 00:00 74.2 '' '' -1997-03-07 00:00 73.1 '' '' -1997-03-08 00:00 73.6 '' '' -1997-03-09 00:00 74.1 '' '' -1997-03-10 00:00 73.8 '' '' -1997-03-11 00:00 73.4 '' '' -1997-03-12 00:00 73.4 '' '' -1997-03-13 00:00 73.3 '' '' -1997-03-14 00:00 74.7 '' '' -1997-03-15 00:00 75.0 '' '' -1997-03-16 00:00 75.0 '' '' -1997-03-17 00:00 74.4 '' '' -1997-03-18 00:00 73.7 '' '' -1997-03-19 00:00 73.1 '' '' -1997-03-20 00:00 71.0 '' '' -1997-03-21 00:00 70.0 '' '' -1997-03-22 00:00 70.1 '' '' -1997-03-23 00:00 70.3 '' '' -1997-03-24 00:00 70.6 '' '' -1997-03-25 00:00 70.2 '' '' -1997-03-26 00:00 69.5 '' '' -1997-03-27 00:00 71.9 '' '' -1997-03-28 00:00 72.9 '' '' -1997-03-29 00:00 75.1 '' '' -1997-03-30 00:00 73.8 '' '' -1997-03-31 00:00 74.6 '' '' -1997-04-01 00:00 76.2 '' '' -1997-04-02 00:00 80.4 '' '' -1997-04-03 00:00 78.8 '' '' -1997-04-04 00:00 78.6 '' '' -1997-04-05 00:00 80.3 '' '' -1997-04-06 00:00 78.3 '' '' -1997-04-07 00:00 77.0 '' '' -1997-04-08 00:00 76.3 '' '' -1997-04-09 00:00 78.3 '' '' -1997-04-10 00:00 78.0 '' '' -1997-04-11 00:00 77.4 '' '' -1997-04-12 00:00 76.9 '' '' -1997-04-13 00:00 79.3 '' '' -1997-04-14 00:00 77.9 '' '' -1997-04-15 00:00 79.2 '' '' -1997-04-16 00:00 75.6 '' '' -1997-04-17 00:00 72.3 '' '' -1997-04-18 00:00 70.7 '' '' -1997-04-19 00:00 70.6 '' '' -1997-04-20 00:00 70.4 '' '' -1997-04-21 00:00 70.9 '' '' -1997-04-22 00:00 71.5 '' '' -1997-04-23 00:00 69.7 '' '' -1997-04-24 00:00 70.7 '' '' -1997-04-25 00:00 69.6 '' '' -1997-04-26 00:00 71.8 '' '' -1997-04-27 00:00 74.1 '' '' -1997-04-28 00:00 73.4 '' '' -1997-04-29 00:00 72.9 '' '' -1997-04-30 00:00 73.7 '' '' -1997-05-01 00:00 73.4 '' '' -1997-05-02 00:00 73.3 '' '' -1997-05-03 00:00 72.3 '' '' -1997-05-04 00:00 72.1 '' '' -1997-05-05 00:00 73.6 '' '' -1997-05-06 00:00 73.4 '' '' -1997-05-07 00:00 73.3 '' '' -1997-05-08 00:00 73.3 '' '' -1997-05-09 00:00 73.0 '' '' -1997-05-10 00:00 74.6 '' '' -1997-05-11 00:00 73.8 '' '' -1997-05-12 00:00 73.7 '' '' -1997-05-13 00:00 75.4 '' '' -1997-05-14 00:00 75.1 '' '' -1997-05-15 00:00 74.7 '' '' -1997-05-16 00:00 73.9 '' '' -1997-05-17 00:00 74.4 '' '' -1997-05-18 00:00 75.8 '' '' -1997-05-19 00:00 76.0 '' '' -1997-05-20 00:00 81.1 '' '' -1997-05-21 00:00 86.9 '' '' -1997-05-22 00:00 83.0 '' '' -1997-05-23 00:00 78.1 '' '' -1997-05-24 00:00 78.9 '' '' -1997-05-25 00:00 80.1 '' '' -1997-05-26 00:00 82.0 '' '' -1997-05-27 00:00 80.4 '' '' -1997-05-28 00:00 79.5 '' '' -1997-05-29 00:00 77.6 '' '' -1997-05-30 00:00 77.2 '' '' -1997-05-31 00:00 74.5 '' '' -1997-06-01 00:00 79.6 '' '' -1997-06-02 00:00 79.1 '' '' -1997-06-03 00:00 77.4 '' '' -1997-06-04 00:00 76.1 '' '' -1997-06-05 00:00 76.1 '' '' -1997-06-06 00:00 76.4 '' '' -1997-06-07 00:00 76.9 '' '' -1997-06-08 00:00 75.4 '' '' -1997-06-09 00:00 75.3 '' '' -1997-06-10 00:00 74.2 '' '' -1997-06-11 00:00 73.0 '' '' -1997-06-12 00:00 71.8 '' '' -1997-06-13 00:00 72.3 '' '' -1997-06-14 00:00 72.9 '' '' -1997-06-15 00:00 73.0 '' '' -1997-06-16 00:00 74.4 '' '' -1997-06-17 00:00 71.8 '' '' -1997-06-18 00:00 73.5 '' '' -1997-06-19 00:00 72.4 '' '' -1997-06-20 00:00 72.5 '' '' -1997-06-21 00:00 69.8 '' '' -1997-06-22 00:00 71.8 '' '' -1997-06-23 00:00 71.3 '' '' -1997-06-24 00:00 72.2 '' '' -1997-06-25 00:00 74.1 '' '' -1997-06-26 00:00 74.2 '' '' -1997-06-27 00:00 74.1 '' '' -1997-06-28 00:00 73.6 '' '' -1997-06-29 00:00 72.6 '' '' -1997-06-30 00:00 72.1 '' '' -1997-07-01 00:00 72.4 '' '' -1997-07-02 00:00 72.4 '' '' -1997-07-03 00:00 71.4 '' '' -1997-07-04 00:00 72.0 '' '' -1997-07-05 00:00 72.0 '' '' -1997-07-06 00:00 70.6 '' '' -1997-07-07 00:00 72.6 '' '' -1997-07-08 00:00 72.1 '' '' -1997-07-09 00:00 72.3 '' '' -1997-07-10 00:00 70.8 '' '' -1997-07-11 00:00 70.9 '' '' -1997-07-12 00:00 69.6 '' '' -1997-07-13 00:00 69.3 '' '' -1997-07-14 00:00 70.3 '' '' -1997-07-15 00:00 71.5 '' '' -1997-07-16 00:00 71.9 '' '' -1997-07-17 00:00 72.2 '' '' -1997-07-18 00:00 72.3 '' '' -1997-07-19 00:00 72.8 '' '' -1997-07-20 00:00 73.5 '' '' -1997-07-21 00:00 73.6 '' '' -1997-07-22 00:00 74.5 '' '' -1997-07-23 00:00 78.1 '' '' -1997-07-24 00:00 81.2 '' '' -1997-07-25 00:00 83.0 '' '' -1997-07-26 00:00 79.0 '' '' -1997-07-27 00:00 76.8 '' '' -1997-07-28 00:00 76.5 '' '' -1997-07-29 00:00 75.0 '' '' -1997-07-30 00:00 73.2 '' '' -1997-07-31 00:00 72.5 '' '' -1997-08-01 00:00 73.2 '' '' -1997-08-02 00:00 72.9 '' '' -1997-08-03 00:00 74.3 '' '' -1997-08-04 00:00 74.9 '' '' -1997-08-05 00:00 76.9 '' '' -1997-08-06 00:00 79.0 '' '' -1997-08-07 00:00 80.1 '' '' -1997-08-08 00:00 79.9 '' '' -1997-08-09 00:00 80.3 '' '' -1997-08-10 00:00 80.4 '' '' -1997-08-11 00:00 81.6 '' '' -1997-08-12 00:00 83.0 '' '' -1997-08-13 00:00 84.2 '' '' -1997-08-14 00:00 81.6 '' '' -1997-08-15 00:00 79.6 '' '' -1997-08-16 00:00 79.8 '' '' -1997-08-17 00:00 77.4 '' '' -1997-08-18 00:00 77.7 '' '' -1997-08-19 00:00 76.1 '' '' -1997-08-20 00:00 76.3 '' '' -1997-08-21 00:00 76.3 '' '' -1997-08-22 00:00 77.2 '' '' -1997-08-23 00:00 78.2 '' '' -1997-08-24 00:00 79.4 '' '' -1997-08-25 00:00 83.7 '' '' -1997-08-26 00:00 85.5 '' '' -1997-08-27 00:00 83.5 '' '' -1997-08-28 00:00 92.3 '' '' -1997-08-29 00:00 93.3 '' '' -1997-08-30 00:00 93.8 '' '' -1997-08-31 00:00 98.2 '' '' -1997-09-01 00:00 95.1 '' '' -1997-09-02 00:00 93.3 '' '' -1997-09-03 00:00 94.7 '' '' -1997-09-04 00:00 94.6 '' '' -1997-09-05 00:00 97.6 '' '' -1997-09-06 00:00 99.1 '' '' -1997-09-07 00:00 103.6 '' '' -1997-09-08 00:00 121.1 '' '' -1997-09-09 00:00 117.7 '' '' -1997-09-10 00:00 116.4 '' '' -1997-09-11 00:00 110.0 '' '' -1997-09-12 00:00 110.3 '' '' -1997-09-13 00:00 108.9 '' '' -1997-09-14 00:00 103.7 '' '' -1997-09-15 00:00 99.1 '' '' -1997-09-16 00:00 96.4 '' '' -1997-09-17 00:00 94.0 '' '' -1997-09-18 00:00 89.0 '' '' -1997-09-19 00:00 89.1 '' '' -1997-09-20 00:00 88.4 '' '' -1997-09-21 00:00 85.8 '' '' -1997-09-22 00:00 89.6 '' '' -1997-09-23 00:00 92.3 '' '' -1997-09-24 00:00 93.5 '' '' -1997-09-25 00:00 88.9 '' '' -1997-09-26 00:00 89.5 '' '' -1997-09-27 00:00 88.8 '' '' -1997-09-28 00:00 87.5 '' '' -1997-09-29 00:00 90.0 '' '' -1997-09-30 00:00 87.9 '' '' -1997-10-01 00:00 87.3 '' '' -1997-10-02 00:00 86.0 '' '' -1997-10-03 00:00 85.8 '' '' -1997-10-04 00:00 83.4 '' '' -1997-10-05 00:00 84.3 '' '' -1997-10-06 00:00 83.6 '' '' -1997-10-07 00:00 83.4 '' '' -1997-10-08 00:00 82.7 '' '' -1997-10-09 00:00 83.3 '' '' -1997-10-10 00:00 84.0 '' '' -1997-10-11 00:00 85.8 '' '' -1997-10-12 00:00 88.3 '' '' -1997-10-13 00:00 87.8 '' '' -1997-10-14 00:00 84.3 '' '' -1997-10-15 00:00 86.4 '' '' -1997-10-16 00:00 86.9 '' '' -1997-10-17 00:00 87.5 '' '' -1997-10-18 00:00 85.9 '' '' -1997-10-19 00:00 84.0 '' '' -1997-10-20 00:00 82.1 '' '' -1997-10-21 00:00 84.2 '' '' -1997-10-22 00:00 79.9 '' '' -1997-10-23 00:00 78.8 '' '' -1997-10-24 00:00 77.7 '' '' -1997-10-25 00:00 80.5 '' '' -1997-10-26 00:00 81.0 '' '' -1997-10-27 00:00 83.3 '' '' -1997-10-28 00:00 84.4 '' '' -1997-10-29 00:00 86.0 '' '' -1997-10-30 00:00 86.9 '' '' -1997-10-31 00:00 89.2 '' '' -1997-11-01 00:00 93.0 '' '' -1997-11-02 00:00 97.8 '' '' -1997-11-03 00:00 109.8 '' '' -1997-11-04 00:00 117.9 '' '' -1997-11-05 00:00 113.8 '' '' -1997-11-06 00:00 105.3 '' '' -1997-11-07 00:00 94.4 '' '' -1997-11-08 00:00 89.6 '' '' -1997-11-09 00:00 86.4 '' '' -1997-11-10 00:00 89.4 '' '' -1997-11-11 00:00 91.5 '' '' -1997-11-12 00:00 87.2 '' '' -1997-11-13 00:00 90.1 '' '' -1997-11-14 00:00 93.0 '' '' -1997-11-15 00:00 96.2 '' '' -1997-11-16 00:00 96.2 '' '' -1997-11-17 00:00 94.2 '' '' -1997-11-18 00:00 91.5 '' '' -1997-11-19 00:00 99.1 '' '' -1997-11-20 00:00 88.7 '' '' -1997-11-21 00:00 95.9 '' '' -1997-11-22 00:00 100.2 '' '' -1997-11-23 00:00 99.8 '' '' -1997-11-24 00:00 103.3 '' '' -1997-11-25 00:00 102.1 '' '' -1997-11-26 00:00 108.1 '' '' -1997-11-27 00:00 111.1 '' '' -1997-11-28 00:00 116.3 '' '' -1997-11-29 00:00 112.1 '' '' -1997-11-30 00:00 112.4 '' '' -1997-12-01 00:00 113.7 '' '' -1997-12-02 00:00 109.0 '' '' -1997-12-03 00:00 109.0 '' '' -1997-12-04 00:00 104.2 '' '' -1997-12-05 00:00 100.7 '' '' -1997-12-06 00:00 105.6 '' '' -1997-12-07 00:00 96.0 '' '' -1997-12-08 00:00 95.1 '' '' -1997-12-09 00:00 93.8 '' '' -1997-12-10 00:00 92.2 '' '' -1997-12-11 00:00 93.4 '' '' -1997-12-12 00:00 89.6 '' '' -1997-12-13 00:00 86.5 '' '' -1997-12-14 00:00 87.1 '' '' -1997-12-15 00:00 86.3 '' '' -1997-12-16 00:00 82.0 '' '' -1997-12-17 00:00 82.9 '' '' -1997-12-18 00:00 83.5 '' '' -1997-12-19 00:00 86.8 '' '' -1997-12-20 00:00 86.7 '' '' -1997-12-21 00:00 89.0 '' '' -1997-12-22 00:00 93.8 '' '' -1997-12-23 00:00 100.7 '' '' -1997-12-24 00:00 104.3 '' '' -1997-12-25 00:00 101.3 '' '' -1997-12-26 00:00 101.3 '' '' -1997-12-27 00:00 92.7 '' '' -1997-12-28 00:00 98.7 '' '' -1997-12-29 00:00 101.0 '' '' -1997-12-30 00:00 98.0 '' '' -1997-12-31 00:00 101.1 '' '' -1998-01-01 00:00 88.4 '' '' -1998-01-02 00:00 87.9 '' '' -1998-01-03 00:00 88.0 '' '' -1998-01-04 00:00 78.9 '' '' -1998-01-05 00:00 77.7 '' '' -1998-01-06 00:00 75.7 '' '' -1998-01-07 00:00 73.9 '' '' -1998-01-08 00:00 71.6 '' '' -1998-01-09 00:00 71.0 '' '' -1998-01-10 00:00 70.2 '' '' -1998-01-11 00:00 73.8 '' '' -1998-01-12 00:00 83.4 '' '' -1998-01-13 00:00 78.7 '' '' -1998-01-14 00:00 81.8 '' '' -1998-01-15 00:00 85.2 '' '' -1998-01-16 00:00 84.9 '' '' -1998-01-17 00:00 83.5 '' '' -1998-01-18 00:00 82.8 '' '' -1998-01-19 00:00 81.4 '' '' -1998-01-20 00:00 79.6 '' '' -1998-01-21 00:00 79.2 '' '' -1998-01-22 00:00 81.1 '' '' -1998-01-23 00:00 84.5 '' '' -1998-01-24 00:00 85.1 '' '' -1998-01-25 00:00 94.5 '' '' -1998-01-26 00:00 87.3 '' '' -1998-01-27 00:00 88.0 '' '' -1998-01-28 00:00 84.4 '' '' -1998-01-29 00:00 81.8 '' '' -1998-01-30 00:00 79.5 '' '' -1998-01-31 00:00 78.1 '' '' -1998-02-01 00:00 88.1 '' '' -1998-02-02 00:00 86.5 '' '' -1998-02-03 00:00 86.3 '' '' -1998-02-04 00:00 86.6 '' '' -1998-02-05 00:00 83.1 '' '' -1998-02-06 00:00 81.8 '' '' -1998-02-07 00:00 80.8 '' '' -1998-02-08 00:00 81.3 '' '' -1998-02-09 00:00 81.5 '' '' -1998-02-10 00:00 81.5 '' '' -1998-02-11 00:00 84.0 '' '' -1998-02-12 00:00 88.3 '' '' -1998-02-13 00:00 92.3 '' '' -1998-02-14 00:00 102.3 '' '' -1998-02-15 00:00 104.7 '' '' -1998-02-16 00:00 104.2 '' '' -1998-02-17 00:00 102.4 '' '' -1998-02-18 00:00 100.9 '' '' -1998-02-19 00:00 96.3 '' '' -1998-02-20 00:00 93.6 '' '' -1998-02-21 00:00 92.8 '' '' -1998-02-22 00:00 93.5 '' '' -1998-02-23 00:00 97.3 '' '' -1998-02-24 00:00 96.6 '' '' -1998-02-25 00:00 92.9 '' '' -1998-02-26 00:00 90.9 '' '' -1998-02-27 00:00 88.6 '' '' -1998-02-28 00:00 92.3 '' '' -1998-03-01 00:00 96.5 '' '' -1998-03-02 00:00 89.9 '' '' -1998-03-03 00:00 95.0 '' '' -1998-03-04 00:00 100.0 '' '' -1998-03-05 00:00 95.1 '' '' -1998-03-06 00:00 90.3 '' '' -1998-03-07 00:00 90.5 '' '' -1998-03-08 00:00 89.9 '' '' -1998-03-09 00:00 88.7 '' '' -1998-03-10 00:00 95.0 '' '' -1998-03-11 00:00 99.4 '' '' -1998-03-12 00:00 100.3 '' '' -1998-03-13 00:00 103.7 '' '' -1998-03-14 00:00 118.2 '' '' -1998-03-15 00:00 131.6 '' '' -1998-03-16 00:00 122.6 '' '' -1998-03-17 00:00 124.3 '' '' -1998-03-18 00:00 125.9 '' '' -1998-03-19 00:00 123.5 '' '' -1998-03-20 00:00 125.5 '' '' -1998-03-21 00:00 124.9 '' '' -1998-03-22 00:00 126.8 '' '' -1998-03-23 00:00 121.3 '' '' -1998-03-24 00:00 119.9 '' '' -1998-03-25 00:00 114.4 '' '' -1998-03-26 00:00 109.5 '' '' -1998-03-27 00:00 107.7 '' '' -1998-03-28 00:00 103.6 '' '' -1998-03-29 00:00 100.0 '' '' -1998-03-30 00:00 107.2 '' '' -1998-03-31 00:00 107.9 '' '' -1998-04-01 00:00 105.6 '' '' -1998-04-02 00:00 103.4 '' '' -1998-04-03 00:00 103.6 '' '' -1998-04-04 00:00 110.2 '' '' -1998-04-05 00:00 126.4 '' '' -1998-04-06 00:00 133.7 '' '' -1998-04-07 00:00 135.5 '' '' -1998-04-08 00:00 141.0 '' '' -1998-04-09 00:00 140.2 '' '' -1998-04-10 00:00 130.2 '' '' -1998-04-11 00:00 128.8 '' '' -1998-04-12 00:00 117.6 '' '' -1998-04-13 00:00 115.5 '' '' -1998-04-14 00:00 112.6 '' '' -1998-04-15 00:00 113.5 '' '' -1998-04-16 00:00 107.2 '' '' -1998-04-17 00:00 102.1 '' '' -1998-04-18 00:00 99.4 '' '' -1998-04-19 00:00 96.7 '' '' -1998-04-20 00:00 98.7 '' '' -1998-04-21 00:00 92.9 '' '' -1998-04-22 00:00 88.5 '' '' -1998-04-23 00:00 91.3 '' '' -1998-04-24 00:00 91.7 '' '' -1998-04-25 00:00 93.0 '' '' -1998-04-26 00:00 91.8 '' '' -1998-04-27 00:00 92.6 '' '' -1998-04-28 00:00 99.8 '' '' -1998-04-29 00:00 102.0 '' '' -1998-04-30 00:00 104.1 '' '' -1998-05-01 00:00 115.1 '' '' -1998-05-02 00:00 118.8 '' '' -1998-05-03 00:00 119.3 '' '' -1998-05-04 00:00 123.2 '' '' -1998-05-05 00:00 135.7 '' '' -1998-05-06 00:00 132.4 '' '' -1998-05-07 00:00 125.6 '' '' -1998-05-08 00:00 120.2 '' '' -1998-05-09 00:00 112.8 '' '' -1998-05-10 00:00 109.3 '' '' -1998-05-11 00:00 110.2 '' '' -1998-05-12 00:00 114.4 '' '' -1998-05-13 00:00 119.1 '' '' -1998-05-14 00:00 119.8 '' '' -1998-05-15 00:00 118.6 '' '' -1998-05-16 00:00 120.4 '' '' -1998-05-17 00:00 113.0 '' '' -1998-05-18 00:00 104.6 '' '' -1998-05-19 00:00 101.5 '' '' -1998-05-20 00:00 94.1 '' '' -1998-05-21 00:00 91.2 '' '' -1998-05-22 00:00 89.6 '' '' -1998-05-23 00:00 92.6 '' '' -1998-05-24 00:00 98.0 '' '' -1998-05-25 00:00 94.7 '' '' -1998-05-26 00:00 94.9 '' '' -1998-05-27 00:00 96.6 '' '' -1998-05-28 00:00 101.1 '' '' -1998-05-29 00:00 97.6 '' '' -1998-05-30 00:00 98.8 '' '' -1998-05-31 00:00 96.8 '' '' -1998-06-01 00:00 103.0 '' '' -1998-06-02 00:00 107.7 '' '' -1998-06-03 00:00 116.4 '' '' -1998-06-04 00:00 115.0 '' '' -1998-06-05 00:00 118.4 '' '' -1998-06-06 00:00 118.5 '' '' -1998-06-07 00:00 116.4 '' '' -1998-06-08 00:00 120.5 '' '' -1998-06-09 00:00 115.7 '' '' -1998-06-10 00:00 115.3 '' '' -1998-06-11 00:00 115.8 '' '' -1998-06-12 00:00 115.7 '' '' -1998-06-13 00:00 113.9 '' '' -1998-06-14 00:00 105.1 '' '' -1998-06-15 00:00 103.6 '' '' -1998-06-16 00:00 107.3 '' '' -1998-06-17 00:00 103.9 '' '' -1998-06-18 00:00 103.3 '' '' -1998-06-19 00:00 101.8 '' '' -1998-06-20 00:00 104.4 '' '' -1998-06-21 00:00 105.4 '' '' -1998-06-22 00:00 103.8 '' '' -1998-06-23 00:00 98.9 '' '' -1998-06-24 00:00 108.8 '' '' -1998-06-25 00:00 109.7 '' '' -1998-06-26 00:00 112.8 '' '' -1998-06-27 00:00 119.1 '' '' -1998-06-28 00:00 126.1 '' '' -1998-06-29 00:00 123.3 '' '' -1998-06-30 00:00 125.0 '' '' -1998-07-01 00:00 131.1 '' '' -1998-07-02 00:00 124.4 '' '' -1998-07-03 00:00 131.9 '' '' -1998-07-04 00:00 133.5 '' '' -1998-07-05 00:00 127.6 '' '' -1998-07-06 00:00 125.2 '' '' -1998-07-07 00:00 118.5 '' '' -1998-07-08 00:00 116.2 '' '' -1998-07-09 00:00 118.2 '' '' -1998-07-10 00:00 112.9 '' '' -1998-07-11 00:00 111.3 '' '' -1998-07-12 00:00 102.6 '' '' -1998-07-13 00:00 109.7 '' '' -1998-07-14 00:00 106.3 '' '' -1998-07-15 00:00 108.2 '' '' -1998-07-16 00:00 109.7 '' '' -1998-07-17 00:00 103.6 '' '' -1998-07-18 00:00 102.4 '' '' -1998-07-19 00:00 105.2 '' '' -1998-07-20 00:00 115.4 '' '' -1998-07-21 00:00 113.9 '' '' -1998-07-22 00:00 117.8 '' '' -1998-07-23 00:00 119.1 '' '' -1998-07-24 00:00 129.2 '' '' -1998-07-25 00:00 125.5 '' '' -1998-07-26 00:00 122.8 '' '' -1998-07-27 00:00 123.2 '' '' -1998-07-28 00:00 125.1 '' '' -1998-07-29 00:00 123.1 '' '' -1998-07-30 00:00 118.3 '' '' -1998-07-31 00:00 117.2 '' '' -1998-08-01 00:00 115.4 '' '' -1998-08-02 00:00 112.9 '' '' -1998-08-03 00:00 111.7 '' '' -1998-08-04 00:00 119.2 '' '' -1998-08-05 00:00 130.5 '' '' -1998-08-06 00:00 142.2 '' '' -1998-08-07 00:00 149.1 '' '' -1998-08-08 00:00 150.9 '' '' -1998-08-09 00:00 158.3 '' '' -1998-08-10 00:00 153.3 '' '' -1998-08-11 00:00 154.1 '' '' -1998-08-12 00:00 150.9 '' '' -1998-08-13 00:00 140.4 '' '' -1998-08-14 00:00 140.6 '' '' -1998-08-15 00:00 136.8 '' '' -1998-08-16 00:00 143.3 '' '' -1998-08-17 00:00 139.7 '' '' -1998-08-18 00:00 135.8 '' '' -1998-08-19 00:00 137.9 '' '' -1998-08-20 00:00 141.9 '' '' -1998-08-21 00:00 135.2 '' '' -1998-08-22 00:00 135.9 '' '' -1998-08-23 00:00 129.3 '' '' -1998-08-24 00:00 123.9 '' '' -1998-08-25 00:00 124.8 '' '' -1998-08-26 00:00 129.6 '' '' -1998-08-27 00:00 137.8 '' '' -1998-08-28 00:00 142.0 '' '' -1998-08-29 00:00 149.4 '' '' -1998-08-30 00:00 166.4 '' '' -1998-08-31 00:00 181.8 '' '' -1998-09-01 00:00 180.2 '' '' -1998-09-02 00:00 166.3 '' '' -1998-09-03 00:00 165.5 '' '' -1998-09-04 00:00 157.3 '' '' -1998-09-05 00:00 156.8 '' '' -1998-09-06 00:00 167.1 '' '' -1998-09-07 00:00 153.5 '' '' -1998-09-08 00:00 155.8 '' '' -1998-09-09 00:00 147.4 '' '' -1998-09-10 00:00 143.6 '' '' -1998-09-11 00:00 140.4 '' '' -1998-09-12 00:00 136.6 '' '' -1998-09-13 00:00 132.3 '' '' -1998-09-14 00:00 123.3 '' '' -1998-09-15 00:00 118.6 '' '' -1998-09-16 00:00 119.9 '' '' -1998-09-17 00:00 118.6 '' '' -1998-09-18 00:00 123.7 '' '' -1998-09-19 00:00 128.0 '' '' -1998-09-20 00:00 133.3 '' '' -1998-09-21 00:00 139.4 '' '' -1998-09-22 00:00 142.1 '' '' -1998-09-23 00:00 144.1 '' '' -1998-09-24 00:00 136.2 '' '' -1998-09-25 00:00 139.2 '' '' -1998-09-26 00:00 136.2 '' '' -1998-09-27 00:00 128.0 '' '' -1998-09-28 00:00 123.0 '' '' -1998-09-29 00:00 116.3 '' '' -1998-09-30 00:00 121.8 '' '' -1998-10-01 00:00 119.1 '' '' -1998-10-02 00:00 112.9 '' '' -1998-10-03 00:00 112.0 '' '' -1998-10-04 00:00 114.9 '' '' -1998-10-05 00:00 117.1 '' '' -1998-10-06 00:00 116.9 '' '' -1998-10-07 00:00 124.1 '' '' -1998-10-08 00:00 123.8 '' '' -1998-10-09 00:00 123.2 '' '' -1998-10-10 00:00 120.3 '' '' -1998-10-11 00:00 118.5 '' '' -1998-10-12 00:00 113.4 '' '' -1998-10-13 00:00 117.5 '' '' -1998-10-14 00:00 118.4 '' '' -1998-10-15 00:00 130.4 '' '' -1998-10-16 00:00 130.1 '' '' -1998-10-17 00:00 134.4 '' '' -1998-10-18 00:00 125.0 '' '' -1998-10-19 00:00 116.8 '' '' -1998-10-20 00:00 120.2 '' '' -1998-10-21 00:00 117.2 '' '' -1998-10-22 00:00 113.8 '' '' -1998-10-23 00:00 111.4 '' '' -1998-10-24 00:00 109.6 '' '' -1998-10-25 00:00 106.3 '' '' -1998-10-26 00:00 102.8 '' '' -1998-10-27 00:00 101.8 '' '' -1998-10-28 00:00 106.4 '' '' -1998-10-29 00:00 108.0 '' '' -1998-10-30 00:00 109.9 '' '' -1998-10-31 00:00 117.0 '' '' -1998-11-01 00:00 119.5 '' '' -1998-11-02 00:00 124.1 '' '' -1998-11-03 00:00 149.3 '' '' -1998-11-04 00:00 139.0 '' '' -1998-11-05 00:00 150.1 '' '' -1998-11-06 00:00 138.4 '' '' -1998-11-07 00:00 145.8 '' '' -1998-11-08 00:00 149.9 '' '' -1998-11-09 00:00 159.3 '' '' -1998-11-10 00:00 150.8 '' '' -1998-11-11 00:00 144.1 '' '' -1998-11-12 00:00 138.7 '' '' -1998-11-13 00:00 132.6 '' '' -1998-11-14 00:00 123.8 '' '' -1998-11-15 00:00 123.7 '' '' -1998-11-16 00:00 121.8 '' '' -1998-11-17 00:00 118.0 '' '' -1998-11-18 00:00 112.2 '' '' -1998-11-19 00:00 113.7 '' '' -1998-11-20 00:00 118.6 '' '' -1998-11-21 00:00 118.3 '' '' -1998-11-22 00:00 123.0 '' '' -1998-11-23 00:00 126.7 '' '' -1998-11-24 00:00 136.7 '' '' -1998-11-25 00:00 145.6 '' '' -1998-11-26 00:00 152.3 '' '' -1998-11-27 00:00 154.7 '' '' -1998-11-28 00:00 160.4 '' '' -1998-11-29 00:00 163.2 '' '' -1998-11-30 00:00 158.9 '' '' -1998-12-01 00:00 158.2 '' '' -1998-12-02 00:00 147.4 '' '' -1998-12-03 00:00 148.7 '' '' -1998-12-04 00:00 144.0 '' '' -1998-12-05 00:00 138.3 '' '' -1998-12-06 00:00 138.1 '' '' -1998-12-07 00:00 148.7 '' '' -1998-12-08 00:00 157.1 '' '' -1998-12-09 00:00 149.3 '' '' -1998-12-10 00:00 129.8 '' '' -1998-12-11 00:00 138.8 '' '' -1998-12-12 00:00 138.9 '' '' -1998-12-13 00:00 139.7 '' '' -1998-12-14 00:00 139.9 '' '' -1998-12-15 00:00 137.2 '' '' -1998-12-16 00:00 136.1 '' '' -1998-12-17 00:00 141.5 '' '' -1998-12-18 00:00 149.8 '' '' -1998-12-19 00:00 133.6 '' '' -1998-12-20 00:00 130.4 '' '' -1998-12-21 00:00 130.9 '' '' -1998-12-22 00:00 124.6 '' '' -1998-12-23 00:00 135.2 '' '' -1998-12-24 00:00 134.9 '' '' -1998-12-25 00:00 139.6 '' '' -1998-12-26 00:00 140.2 '' '' -1998-12-27 00:00 161.4 '' '' -1998-12-28 00:00 178.3 '' '' -1998-12-29 00:00 176.8 '' '' -1998-12-30 00:00 173.1 '' '' -1998-12-31 00:00 168.8 '' '' -1999-01-01 00:00 161.6 '' '' -1999-01-02 00:00 154.8 '' '' -1999-01-03 00:00 149.4 '' '' -1999-01-04 00:00 142.0 '' '' -1999-01-05 00:00 132.0 '' '' -1999-01-06 00:00 121.6 '' '' -1999-01-07 00:00 111.3 '' '' -1999-01-08 00:00 111.7 '' '' -1999-01-09 00:00 111.0 '' '' -1999-01-10 00:00 106.7 '' '' -1999-01-11 00:00 108.2 '' '' -1999-01-12 00:00 109.1 '' '' -1999-01-13 00:00 114.7 '' '' -1999-01-14 00:00 132.4 '' '' -1999-01-15 00:00 138.0 '' '' -1999-01-16 00:00 153.4 '' '' -1999-01-17 00:00 156.2 '' '' -1999-01-18 00:00 165.4 '' '' -1999-01-19 00:00 170.3 '' '' -1999-01-20 00:00 231.3 '' '' -1999-01-21 00:00 169.7 '' '' -1999-01-22 00:00 172.3 '' '' -1999-01-23 00:00 160.8 '' '' -1999-01-24 00:00 156.8 '' '' -1999-01-25 00:00 133.9 '' '' -1999-01-26 00:00 129.1 '' '' -1999-01-27 00:00 121.6 '' '' -1999-01-28 00:00 115.2 '' '' -1999-01-29 00:00 114.2 '' '' -1999-01-30 00:00 114.5 '' '' -1999-01-31 00:00 111.5 '' '' -1999-02-01 00:00 114.5 '' '' -1999-02-02 00:00 107.7 '' '' -1999-02-03 00:00 105.8 '' '' -1999-02-04 00:00 104.3 '' '' -1999-02-05 00:00 100.9 '' '' -1999-02-06 00:00 96.6 '' '' -1999-02-07 00:00 106.5 '' '' -1999-02-08 00:00 121.1 '' '' -1999-02-09 00:00 125.9 '' '' -1999-02-10 00:00 148.4 '' '' -1999-02-11 00:00 159.3 '' '' -1999-02-12 00:00 183.6 '' '' -1999-02-13 00:00 193.4 '' '' -1999-02-14 00:00 199.6 '' '' -1999-02-15 00:00 185.5 '' '' -1999-02-16 00:00 187.3 '' '' -1999-02-17 00:00 185.3 '' '' -1999-02-18 00:00 164.2 '' '' -1999-02-19 00:00 160.5 '' '' -1999-02-20 00:00 153.6 '' '' -1999-02-21 00:00 144.0 '' '' -1999-02-22 00:00 127.0 '' '' -1999-02-23 00:00 124.3 '' '' -1999-02-24 00:00 117.3 '' '' -1999-02-25 00:00 117.1 '' '' -1999-02-26 00:00 113.4 '' '' -1999-02-27 00:00 112.9 '' '' -1999-02-28 00:00 120.7 '' '' -1999-03-01 00:00 118.0 '' '' -1999-03-02 00:00 127.6 '' '' -1999-03-03 00:00 134.6 '' '' -1999-03-04 00:00 141.6 '' '' -1999-03-05 00:00 125.4 '' '' -1999-03-06 00:00 112.6 '' '' -1999-03-07 00:00 108.3 '' '' -1999-03-08 00:00 125.0 '' '' -1999-03-09 00:00 125.3 '' '' -1999-03-10 00:00 133.6 '' '' -1999-03-11 00:00 135.3 '' '' -1999-03-12 00:00 138.5 '' '' -1999-03-13 00:00 142.7 '' '' -1999-03-14 00:00 148.7 '' '' -1999-03-15 00:00 148.4 '' '' -1999-03-16 00:00 154.1 '' '' -1999-03-17 00:00 152.9 '' '' -1999-03-18 00:00 146.7 '' '' -1999-03-19 00:00 138.1 '' '' -1999-03-20 00:00 131.6 '' '' -1999-03-21 00:00 123.1 '' '' -1999-03-22 00:00 115.0 '' '' -1999-03-23 00:00 112.2 '' '' -1999-03-24 00:00 107.6 '' '' -1999-03-25 00:00 106.4 '' '' -1999-03-26 00:00 103.1 '' '' -1999-03-27 00:00 104.1 '' '' -1999-03-28 00:00 102.7 '' '' -1999-03-29 00:00 103.8 '' '' -1999-03-30 00:00 104.4 '' '' -1999-03-31 00:00 101.7 '' '' -1999-04-01 00:00 102.9 '' '' -1999-04-02 00:00 99.4 '' '' -1999-04-03 00:00 102.7 '' '' -1999-04-04 00:00 116.0 '' '' -1999-04-05 00:00 132.7 '' '' -1999-04-06 00:00 137.6 '' '' -1999-04-07 00:00 141.7 '' '' -1999-04-08 00:00 139.5 '' '' -1999-04-09 00:00 136.7 '' '' -1999-04-10 00:00 136.9 '' '' -1999-04-11 00:00 131.3 '' '' -1999-04-12 00:00 130.7 '' '' -1999-04-13 00:00 130.3 '' '' -1999-04-14 00:00 121.0 '' '' -1999-04-15 00:00 122.7 '' '' -1999-04-16 00:00 123.8 '' '' -1999-04-17 00:00 116.6 '' '' -1999-04-18 00:00 113.8 '' '' -1999-04-19 00:00 110.9 '' '' -1999-04-20 00:00 105.8 '' '' -1999-04-21 00:00 104.4 '' '' -1999-04-22 00:00 101.4 '' '' -1999-04-23 00:00 99.3 '' '' -1999-04-24 00:00 102.0 '' '' -1999-04-25 00:00 103.8 '' '' -1999-04-26 00:00 105.8 '' '' -1999-04-27 00:00 110.0 '' '' -1999-04-28 00:00 111.3 '' '' -1999-04-29 00:00 123.9 '' '' -1999-04-30 00:00 125.3 '' '' -1999-05-01 00:00 134.9 '' '' -1999-05-02 00:00 137.9 '' '' -1999-05-03 00:00 129.2 '' '' -1999-05-04 00:00 141.1 '' '' -1999-05-05 00:00 143.3 '' '' -1999-05-06 00:00 149.5 '' '' -1999-05-07 00:00 166.4 '' '' -1999-05-08 00:00 175.1 '' '' -1999-05-09 00:00 181.7 '' '' -1999-05-10 00:00 172.8 '' '' -1999-05-11 00:00 162.6 '' '' -1999-05-12 00:00 156.3 '' '' -1999-05-13 00:00 150.5 '' '' -1999-05-14 00:00 147.3 '' '' -1999-05-15 00:00 146.8 '' '' -1999-05-16 00:00 155.6 '' '' -1999-05-17 00:00 148.6 '' '' -1999-05-18 00:00 143.8 '' '' -1999-05-19 00:00 145.8 '' '' -1999-05-20 00:00 145.9 '' '' -1999-05-21 00:00 143.7 '' '' -1999-05-22 00:00 143.7 '' '' -1999-05-23 00:00 144.2 '' '' -1999-05-24 00:00 140.4 '' '' -1999-05-25 00:00 146.8 '' '' -1999-05-26 00:00 156.6 '' '' -1999-05-27 00:00 159.3 '' '' -1999-05-28 00:00 156.2 '' '' -1999-05-29 00:00 152.7 '' '' -1999-05-30 00:00 161.1 '' '' -1999-05-31 00:00 170.1 '' '' -1999-06-01 00:00 176.2 '' '' -1999-06-02 00:00 173.1 '' '' -1999-06-03 00:00 173.5 '' '' -1999-06-04 00:00 170.9 '' '' -1999-06-05 00:00 164.0 '' '' -1999-06-06 00:00 167.9 '' '' -1999-06-07 00:00 157.7 '' '' -1999-06-08 00:00 156.5 '' '' -1999-06-09 00:00 165.2 '' '' -1999-06-10 00:00 161.1 '' '' -1999-06-11 00:00 164.7 '' '' -1999-06-12 00:00 168.0 '' '' -1999-06-13 00:00 167.7 '' '' -1999-06-14 00:00 168.2 '' '' -1999-06-15 00:00 158.5 '' '' -1999-06-16 00:00 152.7 '' '' -1999-06-17 00:00 146.5 '' '' -1999-06-18 00:00 146.5 '' '' -1999-06-19 00:00 138.8 '' '' -1999-06-20 00:00 151.5 '' '' -1999-06-21 00:00 145.5 '' '' -1999-06-22 00:00 161.6 '' '' -1999-06-23 00:00 167.5 '' '' -1999-06-24 00:00 185.0 '' '' -1999-06-25 00:00 200.8 '' '' -1999-06-26 00:00 199.5 '' '' -1999-06-27 00:00 207.4 '' '' -1999-06-28 00:00 196.6 '' '' -1999-06-29 00:00 191.3 '' '' -1999-06-30 00:00 209.5 '' '' -1999-07-01 00:00 202.0 '' '' -1999-07-02 00:00 193.4 '' '' -1999-07-03 00:00 203.5 '' '' -1999-07-04 00:00 191.9 '' '' -1999-07-05 00:00 180.0 '' '' -1999-07-06 00:00 173.5 '' '' -1999-07-07 00:00 163.7 '' '' -1999-07-08 00:00 154.1 '' '' -1999-07-09 00:00 155.9 '' '' -1999-07-10 00:00 161.5 '' '' -1999-07-11 00:00 157.8 '' '' -1999-07-12 00:00 159.2 '' '' -1999-07-13 00:00 148.3 '' '' -1999-07-14 00:00 133.9 '' '' -1999-07-15 00:00 133.8 '' '' -1999-07-16 00:00 136.4 '' '' -1999-07-17 00:00 141.3 '' '' -1999-07-18 00:00 142.8 '' '' -1999-07-19 00:00 145.8 '' '' -1999-07-20 00:00 144.1 '' '' -1999-07-21 00:00 152.1 '' '' -1999-07-22 00:00 157.8 '' '' -1999-07-23 00:00 199.9 '' '' -1999-07-24 00:00 190.1 '' '' -1999-07-25 00:00 188.0 '' '' -1999-07-26 00:00 177.8 '' '' -1999-07-27 00:00 179.9 '' '' -1999-07-28 00:00 203.9 '' '' -1999-07-29 00:00 208.6 '' '' -1999-07-30 00:00 212.2 '' '' -1999-07-31 00:00 206.7 '' '' -1999-08-01 00:00 222.9 '' '' -1999-08-02 00:00 218.8 '' '' -1999-08-03 00:00 216.9 '' '' -1999-08-04 00:00 206.0 '' '' -1999-08-05 00:00 182.1 '' '' -1999-08-06 00:00 175.3 '' '' -1999-08-07 00:00 157.6 '' '' -1999-08-08 00:00 141.7 '' '' -1999-08-09 00:00 141.9 '' '' -1999-08-10 00:00 130.8 '' '' -1999-08-11 00:00 131.4 '' '' -1999-08-12 00:00 126.4 '' '' -1999-08-13 00:00 129.8 '' '' -1999-08-14 00:00 131.5 '' '' -1999-08-15 00:00 134.5 '' '' -1999-08-16 00:00 134.4 '' '' -1999-08-17 00:00 144.5 '' '' -1999-08-18 00:00 133.9 '' '' -1999-08-19 00:00 138.0 '' '' -1999-08-20 00:00 155.2 '' '' -1999-08-21 00:00 165.0 '' '' -1999-08-22 00:00 176.7 '' '' -1999-08-23 00:00 191.7 '' '' -1999-08-24 00:00 206.4 '' '' -1999-08-25 00:00 212.9 '' '' -1999-08-26 00:00 226.9 '' '' -1999-08-27 00:00 227.7 '' '' -1999-08-28 00:00 253.4 '' '' -1999-08-29 00:00 222.5 '' '' -1999-08-30 00:00 201.9 '' '' -1999-08-31 00:00 186.1 '' '' -1999-09-01 00:00 165.8 '' '' -1999-09-02 00:00 159.3 '' '' -1999-09-03 00:00 141.7 '' '' -1999-09-04 00:00 133.5 '' '' -1999-09-05 00:00 123.8 '' '' -1999-09-06 00:00 120.4 '' '' -1999-09-07 00:00 114.1 '' '' -1999-09-08 00:00 108.4 '' '' -1999-09-09 00:00 108.0 '' '' -1999-09-10 00:00 123.7 '' '' -1999-09-11 00:00 124.1 '' '' -1999-09-12 00:00 142.6 '' '' -1999-09-13 00:00 156.5 '' '' -1999-09-14 00:00 158.2 '' '' -1999-09-15 00:00 156.6 '' '' -1999-09-16 00:00 159.9 '' '' -1999-09-17 00:00 159.1 '' '' -1999-09-18 00:00 153.0 '' '' -1999-09-19 00:00 150.6 '' '' -1999-09-20 00:00 146.2 '' '' -1999-09-21 00:00 147.9 '' '' -1999-09-22 00:00 141.5 '' '' -1999-09-23 00:00 137.8 '' '' -1999-09-24 00:00 132.4 '' '' -1999-09-25 00:00 126.1 '' '' -1999-09-26 00:00 123.3 '' '' -1999-09-27 00:00 124.4 '' '' -1999-09-28 00:00 126.5 '' '' -1999-09-29 00:00 125.3 '' '' -1999-09-30 00:00 125.1 '' '' -1999-10-01 00:00 121.9 '' '' -1999-10-02 00:00 126.6 '' '' -1999-10-03 00:00 134.7 '' '' -1999-10-04 00:00 144.4 '' '' -1999-10-05 00:00 146.2 '' '' -1999-10-06 00:00 133.5 '' '' -1999-10-07 00:00 129.2 '' '' -1999-10-08 00:00 150.9 '' '' -1999-10-09 00:00 152.8 '' '' -1999-10-10 00:00 160.0 '' '' -1999-10-11 00:00 166.0 '' '' -1999-10-12 00:00 182.9 '' '' -1999-10-13 00:00 190.1 '' '' -1999-10-14 00:00 198.7 '' '' -1999-10-15 00:00 197.1 '' '' -1999-10-16 00:00 187.8 '' '' -1999-10-17 00:00 176.8 '' '' -1999-10-18 00:00 171.4 '' '' -1999-10-19 00:00 168.2 '' '' -1999-10-20 00:00 157.4 '' '' -1999-10-21 00:00 157.0 '' '' -1999-10-22 00:00 158.8 '' '' -1999-10-23 00:00 162.8 '' '' -1999-10-24 00:00 157.1 '' '' -1999-10-25 00:00 177.2 '' '' -1999-10-26 00:00 187.1 '' '' -1999-10-27 00:00 194.8 '' '' -1999-10-28 00:00 181.5 '' '' -1999-10-29 00:00 177.2 '' '' -1999-10-30 00:00 167.0 '' '' -1999-10-31 00:00 158.1 '' '' -1999-11-01 00:00 148.4 '' '' -1999-11-02 00:00 140.6 '' '' -1999-11-03 00:00 140.8 '' '' -1999-11-04 00:00 145.1 '' '' -1999-11-05 00:00 157.8 '' '' -1999-11-06 00:00 147.4 '' '' -1999-11-07 00:00 170.8 '' '' -1999-11-08 00:00 188.4 '' '' -1999-11-09 00:00 225.5 '' '' -1999-11-10 00:00 243.6 '' '' -1999-11-11 00:00 235.0 '' '' -1999-11-12 00:00 227.1 '' '' -1999-11-13 00:00 219.1 '' '' -1999-11-14 00:00 214.2 '' '' -1999-11-15 00:00 201.1 '' '' -1999-11-16 00:00 228.2 '' '' -1999-11-17 00:00 216.3 '' '' -1999-11-18 00:00 212.9 '' '' -1999-11-19 00:00 205.1 '' '' -1999-11-20 00:00 199.5 '' '' -1999-11-21 00:00 205.0 '' '' -1999-11-22 00:00 187.2 '' '' -1999-11-23 00:00 180.9 '' '' -1999-11-24 00:00 181.9 '' '' -1999-11-25 00:00 179.0 '' '' -1999-11-26 00:00 167.7 '' '' -1999-11-27 00:00 164.5 '' '' -1999-11-28 00:00 170.1 '' '' -1999-11-29 00:00 159.5 '' '' -1999-11-30 00:00 158.3 '' '' -1999-12-01 00:00 160.4 '' '' -1999-12-02 00:00 160.9 '' '' -1999-12-03 00:00 147.5 '' '' -1999-12-04 00:00 143.3 '' '' -1999-12-05 00:00 138.6 '' '' -1999-12-06 00:00 138.6 '' '' -1999-12-07 00:00 148.8 '' '' -1999-12-08 00:00 145.6 '' '' -1999-12-09 00:00 151.5 '' '' -1999-12-10 00:00 159.5 '' '' -1999-12-11 00:00 154.3 '' '' -1999-12-12 00:00 154.4 '' '' -1999-12-13 00:00 161.0 '' '' -1999-12-14 00:00 163.1 '' '' -1999-12-15 00:00 173.1 '' '' -1999-12-16 00:00 187.9 '' '' -1999-12-17 00:00 194.4 '' '' -1999-12-18 00:00 198.9 '' '' -1999-12-19 00:00 200.3 '' '' -1999-12-20 00:00 202.4 '' '' -1999-12-21 00:00 210.1 '' '' -1999-12-22 00:00 195.1 '' '' -1999-12-23 00:00 191.9 '' '' -1999-12-24 00:00 176.5 '' '' -1999-12-25 00:00 172.5 '' '' -1999-12-26 00:00 171.2 '' '' -1999-12-27 00:00 156.4 '' '' -1999-12-28 00:00 145.4 '' '' -1999-12-29 00:00 139.0 '' '' -1999-12-30 00:00 131.2 '' '' -1999-12-31 00:00 125.8 '' '' -2000-01-01 00:00 125.6 '' '' -2000-01-02 00:00 128.5 '' '' -2000-01-03 00:00 128.7 '' '' -2000-01-04 00:00 130.3 '' '' -2000-01-05 00:00 132.0 '' '' -2000-01-06 00:00 140.0 '' '' -2000-01-07 00:00 144.8 '' '' -2000-01-08 00:00 149.6 '' '' -2000-01-09 00:00 155.3 '' '' -2000-01-10 00:00 157.8 '' '' -2000-01-11 00:00 171.8 '' '' -2000-01-12 00:00 189.3 '' '' -2000-01-13 00:00 195.4 '' '' -2000-01-14 00:00 194.7 '' '' -2000-01-15 00:00 203.9 '' '' -2000-01-16 00:00 201.0 '' '' -2000-01-17 00:00 190.1 '' '' -2000-01-18 00:00 188.4 '' '' -2000-01-19 00:00 172.9 '' '' -2000-01-20 00:00 165.3 '' '' -2000-01-21 00:00 154.3 '' '' -2000-01-22 00:00 145.8 '' '' -2000-01-23 00:00 136.1 '' '' -2000-01-24 00:00 136.3 '' '' -2000-01-25 00:00 133.1 '' '' -2000-01-26 00:00 136.4 '' '' -2000-01-27 00:00 128.4 '' '' -2000-01-28 00:00 122.2 '' '' -2000-01-29 00:00 123.9 '' '' -2000-01-30 00:00 128.7 '' '' -2000-01-31 00:00 134.5 '' '' -2000-02-01 00:00 120.7 '' '' -2000-02-02 00:00 126.2 '' '' -2000-02-03 00:00 134.8 '' '' -2000-02-04 00:00 146.5 '' '' -2000-02-05 00:00 146.8 '' '' -2000-02-06 00:00 155.5 '' '' -2000-02-07 00:00 159.3 '' '' -2000-02-08 00:00 152.1 '' '' -2000-02-09 00:00 153.7 '' '' -2000-02-10 00:00 154.0 '' '' -2000-02-11 00:00 149.3 '' '' -2000-02-12 00:00 143.2 '' '' -2000-02-13 00:00 140.3 '' '' -2000-02-14 00:00 139.3 '' '' -2000-02-15 00:00 136.9 '' '' -2000-02-16 00:00 140.7 '' '' -2000-02-17 00:00 148.0 '' '' -2000-02-18 00:00 124.0 '' '' -2000-02-19 00:00 127.4 '' '' -2000-02-20 00:00 134.9 '' '' -2000-02-21 00:00 133.9 '' '' -2000-02-22 00:00 151.7 '' '' -2000-02-23 00:00 163.1 '' '' -2000-02-24 00:00 169.4 '' '' -2000-02-25 00:00 185.6 '' '' -2000-02-26 00:00 189.5 '' '' -2000-02-27 00:00 200.6 '' '' -2000-02-28 00:00 193.2 '' '' -2000-02-29 00:00 193.6 '' '' -2000-03-01 00:00 228.7 '' '' -2000-03-02 00:00 209.6 '' '' -2000-03-03 00:00 200.4 '' '' -2000-03-04 00:00 197.0 '' '' -2000-03-05 00:00 216.8 '' '' -2000-03-06 00:00 219.1 '' '' -2000-03-07 00:00 218.5 '' '' -2000-03-08 00:00 211.8 '' '' -2000-03-09 00:00 203.0 '' '' -2000-03-10 00:00 200.7 '' '' -2000-03-11 00:00 200.6 '' '' -2000-03-12 00:00 200.8 '' '' -2000-03-13 00:00 186.0 '' '' -2000-03-14 00:00 180.6 '' '' -2000-03-15 00:00 175.9 '' '' -2000-03-16 00:00 182.5 '' '' -2000-03-17 00:00 190.6 '' '' -2000-03-18 00:00 193.0 '' '' -2000-03-19 00:00 206.5 '' '' -2000-03-20 00:00 208.7 '' '' -2000-03-21 00:00 228.9 '' '' -2000-03-22 00:00 232.2 '' '' -2000-03-23 00:00 222.7 '' '' -2000-03-24 00:00 217.7 '' '' -2000-03-25 00:00 204.1 '' '' -2000-03-26 00:00 210.4 '' '' -2000-03-27 00:00 204.1 '' '' -2000-03-28 00:00 200.3 '' '' -2000-03-29 00:00 208.3 '' '' -2000-03-30 00:00 205.1 '' '' -2000-03-31 00:00 225.1 '' '' -2000-04-01 00:00 222.7 '' '' -2000-04-02 00:00 219.3 '' '' -2000-04-03 00:00 215.5 '' '' -2000-04-04 00:00 206.9 '' '' -2000-04-05 00:00 194.7 '' '' -2000-04-06 00:00 178.1 '' '' -2000-04-07 00:00 175.4 '' '' -2000-04-08 00:00 182.5 '' '' -2000-04-09 00:00 176.9 '' '' -2000-04-10 00:00 178.6 '' '' -2000-04-11 00:00 182.4 '' '' -2000-04-12 00:00 173.9 '' '' -2000-04-13 00:00 165.0 '' '' -2000-04-14 00:00 166.3 '' '' -2000-04-15 00:00 164.9 '' '' -2000-04-16 00:00 160.2 '' '' -2000-04-17 00:00 159.2 '' '' -2000-04-18 00:00 161.8 '' '' -2000-04-19 00:00 169.2 '' '' -2000-04-20 00:00 182.4 '' '' -2000-04-21 00:00 189.2 '' '' -2000-04-22 00:00 204.1 '' '' -2000-04-23 00:00 208.4 '' '' -2000-04-24 00:00 208.1 '' '' -2000-04-25 00:00 205.1 '' '' -2000-04-26 00:00 192.4 '' '' -2000-04-27 00:00 186.0 '' '' -2000-04-28 00:00 186.0 '' '' -2000-04-29 00:00 177.5 '' '' -2000-04-30 00:00 172.0 '' '' -2000-05-01 00:00 160.1 '' '' -2000-05-02 00:00 155.3 '' '' -2000-05-03 00:00 139.6 '' '' -2000-05-04 00:00 136.8 '' '' -2000-05-05 00:00 132.1 '' '' -2000-05-06 00:00 129.1 '' '' -2000-05-07 00:00 133.4 '' '' -2000-05-08 00:00 139.6 '' '' -2000-05-09 00:00 152.5 '' '' -2000-05-10 00:00 182.8 '' '' -2000-05-11 00:00 181.3 '' '' -2000-05-12 00:00 194.4 '' '' -2000-05-13 00:00 222.0 '' '' -2000-05-14 00:00 237.6 '' '' -2000-05-15 00:00 249.9 '' '' -2000-05-16 00:00 264.5 '' '' -2000-05-17 00:00 268.1 '' '' -2000-05-18 00:00 258.8 '' '' -2000-05-19 00:00 260.4 '' '' -2000-05-20 00:00 251.6 '' '' -2000-05-21 00:00 238.0 '' '' -2000-05-22 00:00 220.3 '' '' -2000-05-23 00:00 209.5 '' '' -2000-05-24 00:00 194.3 '' '' -2000-05-25 00:00 177.4 '' '' -2000-05-26 00:00 172.4 '' '' -2000-05-27 00:00 166.2 '' '' -2000-05-28 00:00 160.2 '' '' -2000-05-29 00:00 153.1 '' '' -2000-05-30 00:00 150.5 '' '' -2000-05-31 00:00 158.7 '' '' -2000-06-01 00:00 152.3 '' '' -2000-06-02 00:00 192.7 '' '' -2000-06-03 00:00 170.7 '' '' -2000-06-04 00:00 174.7 '' '' -2000-06-05 00:00 176.1 '' '' -2000-06-06 00:00 192.0 '' '' -2000-06-07 00:00 185.8 '' '' -2000-06-08 00:00 179.9 '' '' -2000-06-09 00:00 174.1 '' '' -2000-06-10 00:00 185.1 '' '' -2000-06-11 00:00 192.6 '' '' -2000-06-12 00:00 198.7 '' '' -2000-06-13 00:00 205.5 '' '' -2000-06-14 00:00 206.9 '' '' -2000-06-15 00:00 208.9 '' '' -2000-06-16 00:00 203.8 '' '' -2000-06-17 00:00 199.4 '' '' -2000-06-18 00:00 193.7 '' '' -2000-06-19 00:00 184.2 '' '' -2000-06-20 00:00 189.7 '' '' -2000-06-21 00:00 194.2 '' '' -2000-06-22 00:00 185.6 '' '' -2000-06-23 00:00 181.0 '' '' -2000-06-24 00:00 173.9 '' '' -2000-06-25 00:00 180.9 '' '' -2000-06-26 00:00 183.4 '' '' -2000-06-27 00:00 184.6 '' '' -2000-06-28 00:00 181.2 '' '' -2000-06-29 00:00 168.8 '' '' -2000-06-30 00:00 165.0 '' '' -2000-07-01 00:00 169.2 '' '' -2000-07-02 00:00 167.9 '' '' -2000-07-03 00:00 161.5 '' '' -2000-07-04 00:00 163.7 '' '' -2000-07-05 00:00 174.4 '' '' -2000-07-06 00:00 180.1 '' '' -2000-07-07 00:00 193.5 '' '' -2000-07-08 00:00 217.1 '' '' -2000-07-09 00:00 218.4 '' '' -2000-07-10 00:00 252.7 '' '' -2000-07-11 00:00 249.7 '' '' -2000-07-12 00:00 325.1 '' '' -2000-07-13 00:00 239.6 '' '' -2000-07-14 00:00 210.6 '' '' -2000-07-15 00:00 220.1 '' '' -2000-07-16 00:00 226.1 '' '' -2000-07-17 00:00 235.8 '' '' -2000-07-18 00:00 270.5 '' '' -2000-07-19 00:00 258.0 '' '' -2000-07-20 00:00 261.1 '' '' -2000-07-21 00:00 259.0 '' '' -2000-07-22 00:00 259.0 '' '' -2000-07-23 00:00 224.3 '' '' -2000-07-24 00:00 232.0 '' '' -2000-07-25 00:00 208.2 '' '' -2000-07-26 00:00 180.1 '' '' -2000-07-27 00:00 167.4 '' '' -2000-07-28 00:00 162.7 '' '' -2000-07-29 00:00 157.9 '' '' -2000-07-30 00:00 154.5 '' '' -2000-07-31 00:00 152.4 '' '' -2000-08-01 00:00 153.9 '' '' -2000-08-02 00:00 155.1 '' '' -2000-08-03 00:00 158.8 '' '' -2000-08-04 00:00 158.7 '' '' -2000-08-05 00:00 163.2 '' '' -2000-08-06 00:00 170.8 '' '' -2000-08-07 00:00 171.6 '' '' -2000-08-08 00:00 175.6 '' '' -2000-08-09 00:00 187.2 '' '' -2000-08-10 00:00 185.9 '' '' -2000-08-11 00:00 192.3 '' '' -2000-08-12 00:00 194.3 '' '' -2000-08-13 00:00 190.9 '' '' -2000-08-14 00:00 194.3 '' '' -2000-08-15 00:00 198.9 '' '' -2000-08-16 00:00 190.3 '' '' -2000-08-17 00:00 181.5 '' '' -2000-08-18 00:00 173.6 '' '' -2000-08-19 00:00 160.8 '' '' -2000-08-20 00:00 156.0 '' '' -2000-08-21 00:00 154.9 '' '' -2000-08-22 00:00 147.5 '' '' -2000-08-23 00:00 139.9 '' '' -2000-08-24 00:00 133.5 '' '' -2000-08-25 00:00 136.0 '' '' -2000-08-26 00:00 139.9 '' '' -2000-08-27 00:00 153.2 '' '' -2000-08-28 00:00 163.2 '' '' -2000-08-29 00:00 166.5 '' '' -2000-08-30 00:00 167.9 '' '' -2000-08-31 00:00 165.9 '' '' -2000-09-01 00:00 160.5 '' '' -2000-09-02 00:00 156.7 '' '' -2000-09-03 00:00 156.7 '' '' -2000-09-04 00:00 173.6 '' '' -2000-09-05 00:00 183.1 '' '' -2000-09-06 00:00 181.5 '' '' -2000-09-07 00:00 175.8 '' '' -2000-09-08 00:00 165.7 '' '' -2000-09-09 00:00 153.0 '' '' -2000-09-10 00:00 142.5 '' '' -2000-09-11 00:00 136.7 '' '' -2000-09-12 00:00 134.2 '' '' -2000-09-13 00:00 134.8 '' '' -2000-09-14 00:00 152.5 '' '' -2000-09-15 00:00 161.1 '' '' -2000-09-16 00:00 176.4 '' '' -2000-09-17 00:00 183.2 '' '' -2000-09-18 00:00 205.7 '' '' -2000-09-19 00:00 208.8 '' '' -2000-09-20 00:00 213.1 '' '' -2000-09-21 00:00 226.7 '' '' -2000-09-22 00:00 233.8 '' '' -2000-09-23 00:00 226.7 '' '' -2000-09-24 00:00 225.8 '' '' -2000-09-25 00:00 226.8 '' '' -2000-09-26 00:00 224.7 '' '' -2000-09-27 00:00 205.5 '' '' -2000-09-28 00:00 203.0 '' '' -2000-09-29 00:00 192.6 '' '' -2000-09-30 00:00 194.0 '' '' -2000-10-01 00:00 201.9 '' '' -2000-10-02 00:00 202.9 '' '' -2000-10-03 00:00 192.1 '' '' -2000-10-04 00:00 184.1 '' '' -2000-10-05 00:00 173.7 '' '' -2000-10-06 00:00 157.9 '' '' -2000-10-07 00:00 155.3 '' '' -2000-10-08 00:00 148.6 '' '' -2000-10-09 00:00 140.4 '' '' -2000-10-10 00:00 139.1 '' '' -2000-10-11 00:00 150.8 '' '' -2000-10-12 00:00 161.9 '' '' -2000-10-13 00:00 167.2 '' '' -2000-10-14 00:00 162.3 '' '' -2000-10-15 00:00 160.1 '' '' -2000-10-16 00:00 159.8 '' '' -2000-10-17 00:00 153.0 '' '' -2000-10-18 00:00 149.9 '' '' -2000-10-19 00:00 156.5 '' '' -2000-10-20 00:00 159.3 '' '' -2000-10-21 00:00 156.5 '' '' -2000-10-22 00:00 158.6 '' '' -2000-10-23 00:00 164.8 '' '' -2000-10-24 00:00 157.5 '' '' -2000-10-25 00:00 162.0 '' '' -2000-10-26 00:00 168.9 '' '' -2000-10-27 00:00 173.7 '' '' -2000-10-28 00:00 179.7 '' '' -2000-10-29 00:00 184.5 '' '' -2000-10-30 00:00 191.0 '' '' -2000-10-31 00:00 190.5 '' '' -2000-11-01 00:00 201.2 '' '' -2000-11-02 00:00 193.2 '' '' -2000-11-03 00:00 195.5 '' '' -2000-11-04 00:00 191.4 '' '' -2000-11-05 00:00 183.1 '' '' -2000-11-06 00:00 174.9 '' '' -2000-11-07 00:00 176.6 '' '' -2000-11-08 00:00 169.5 '' '' -2000-11-09 00:00 163.0 '' '' -2000-11-10 00:00 150.4 '' '' -2000-11-11 00:00 146.6 '' '' -2000-11-12 00:00 143.6 '' '' -2000-11-13 00:00 140.6 '' '' -2000-11-14 00:00 145.4 '' '' -2000-11-15 00:00 143.2 '' '' -2000-11-16 00:00 150.7 '' '' -2000-11-17 00:00 159.6 '' '' -2000-11-18 00:00 172.9 '' '' -2000-11-19 00:00 170.7 '' '' -2000-11-20 00:00 169.6 '' '' -2000-11-21 00:00 180.9 '' '' -2000-11-22 00:00 190.1 '' '' -2000-11-23 00:00 200.1 '' '' -2000-11-24 00:00 192.1 '' '' -2000-11-25 00:00 197.0 '' '' -2000-11-26 00:00 197.0 '' '' -2000-11-27 00:00 186.6 '' '' -2000-11-28 00:00 190.3 '' '' -2000-11-29 00:00 183.2 '' '' -2000-11-30 00:00 187.0 '' '' -2000-12-01 00:00 179.3 '' '' -2000-12-02 00:00 162.3 '' '' -2000-12-03 00:00 158.9 '' '' -2000-12-04 00:00 147.6 '' '' -2000-12-05 00:00 142.7 '' '' -2000-12-06 00:00 136.9 '' '' -2000-12-07 00:00 139.9 '' '' -2000-12-08 00:00 134.1 '' '' -2000-12-09 00:00 130.7 '' '' -2000-12-10 00:00 142.1 '' '' -2000-12-11 00:00 139.2 '' '' -2000-12-12 00:00 145.2 '' '' -2000-12-13 00:00 159.5 '' '' -2000-12-14 00:00 176.5 '' '' -2000-12-15 00:00 181.9 '' '' -2000-12-16 00:00 184.4 '' '' -2000-12-17 00:00 190.4 '' '' -2000-12-18 00:00 191.6 '' '' -2000-12-19 00:00 192.2 '' '' -2000-12-20 00:00 194.8 '' '' -2000-12-21 00:00 188.2 '' '' -2000-12-22 00:00 183.8 '' '' -2000-12-23 00:00 184.7 '' '' -2000-12-24 00:00 186.7 '' '' -2000-12-25 00:00 180.9 '' '' -2000-12-26 00:00 182.6 '' '' -2000-12-27 00:00 181.4 '' '' -2000-12-28 00:00 179.3 '' '' -2000-12-29 00:00 175.5 '' '' -2000-12-30 00:00 176.1 '' '' -2000-12-31 00:00 163.9 '' '' -2001-01-01 00:00 165.3 '' '' -2001-01-02 00:00 170.2 '' '' -2001-01-03 00:00 164.2 '' '' -2001-01-04 00:00 168.8 '' '' -2001-01-05 00:00 170.5 '' '' -2001-01-06 00:00 173.4 '' '' -2001-01-07 00:00 170.9 '' '' -2001-01-08 00:00 161.5 '' '' -2001-01-09 00:00 160.8 '' '' -2001-01-10 00:00 157.4 '' '' -2001-01-11 00:00 160.5 '' '' -2001-01-12 00:00 172.5 '' '' -2001-01-13 00:00 178.3 '' '' -2001-01-14 00:00 170.6 '' '' -2001-01-15 00:00 163.8 '' '' -2001-01-16 00:00 156.6 '' '' -2001-01-17 00:00 147.0 '' '' -2001-01-18 00:00 146.6 '' '' -2001-01-19 00:00 147.7 '' '' -2001-01-20 00:00 148.3 '' '' -2001-01-21 00:00 146.7 '' '' -2001-01-22 00:00 157.1 '' '' -2001-01-23 00:00 162.0 '' '' -2001-01-24 00:00 167.2 '' '' -2001-01-25 00:00 163.4 '' '' -2001-01-26 00:00 160.5 '' '' -2001-01-27 00:00 161.8 '' '' -2001-01-28 00:00 162.6 '' '' -2001-01-29 00:00 160.5 '' '' -2001-01-30 00:00 154.9 '' '' -2001-01-31 00:00 148.8 '' '' -2001-02-01 00:00 156.2 '' '' -2001-02-02 00:00 161.6 '' '' -2001-02-03 00:00 159.0 '' '' -2001-02-04 00:00 144.0 '' '' -2001-02-05 00:00 160.7 '' '' -2001-02-06 00:00 165.3 '' '' -2001-02-07 00:00 159.6 '' '' -2001-02-08 00:00 152.3 '' '' -2001-02-09 00:00 158.1 '' '' -2001-02-10 00:00 156.5 '' '' -2001-02-11 00:00 147.4 '' '' -2001-02-12 00:00 140.9 '' '' -2001-02-13 00:00 137.8 '' '' -2001-02-14 00:00 134.6 '' '' -2001-02-15 00:00 131.8 '' '' -2001-02-16 00:00 126.5 '' '' -2001-02-17 00:00 126.8 '' '' -2001-02-18 00:00 129.0 '' '' -2001-02-19 00:00 134.0 '' '' -2001-02-20 00:00 142.3 '' '' -2001-02-21 00:00 140.5 '' '' -2001-02-22 00:00 142.7 '' '' -2001-02-23 00:00 142.2 '' '' -2001-02-24 00:00 134.6 '' '' -2001-02-25 00:00 132.2 '' '' -2001-02-26 00:00 132.8 '' '' -2001-02-27 00:00 128.1 '' '' -2001-02-28 00:00 129.4 '' '' -2001-03-01 00:00 129.0 '' '' -2001-03-02 00:00 127.4 '' '' -2001-03-03 00:00 137.3 '' '' -2001-03-04 00:00 138.7 '' '' -2001-03-05 00:00 153.4 '' '' -2001-03-06 00:00 155.4 '' '' -2001-03-07 00:00 174.0 '' '' -2001-03-08 00:00 164.8 '' '' -2001-03-09 00:00 159.2 '' '' -2001-03-10 00:00 158.0 '' '' -2001-03-11 00:00 155.8 '' '' -2001-03-12 00:00 155.7 '' '' -2001-03-13 00:00 145.6 '' '' -2001-03-14 00:00 140.7 '' '' -2001-03-15 00:00 134.7 '' '' -2001-03-16 00:00 138.5 '' '' -2001-03-17 00:00 132.9 '' '' -2001-03-18 00:00 138.5 '' '' -2001-03-19 00:00 145.7 '' '' -2001-03-20 00:00 152.1 '' '' -2001-03-21 00:00 158.2 '' '' -2001-03-22 00:00 181.8 '' '' -2001-03-23 00:00 178.9 '' '' -2001-03-24 00:00 217.5 '' '' -2001-03-25 00:00 215.7 '' '' -2001-03-26 00:00 262.6 '' '' -2001-03-27 00:00 272.4 '' '' -2001-03-28 00:00 272.6 '' '' -2001-03-29 00:00 261.0 '' '' -2001-03-30 00:00 256.3 '' '' -2001-03-31 00:00 245.3 '' '' -2001-04-01 00:00 257.2 '' '' -2001-04-02 00:00 227.9 '' '' -2001-04-03 00:00 223.1 '' '' -2001-04-04 00:00 205.0 '' '' -2001-04-05 00:00 207.8 '' '' -2001-04-06 00:00 192.0 '' '' -2001-04-07 00:00 180.0 '' '' -2001-04-08 00:00 169.7 '' '' -2001-04-09 00:00 165.4 '' '' -2001-04-10 00:00 170.4 '' '' -2001-04-11 00:00 160.3 '' '' -2001-04-12 00:00 149.8 '' '' -2001-04-13 00:00 137.8 '' '' -2001-04-14 00:00 139.6 '' '' -2001-04-15 00:00 135.1 '' '' -2001-04-16 00:00 124.3 '' '' -2001-04-17 00:00 127.1 '' '' -2001-04-18 00:00 133.0 '' '' -2001-04-19 00:00 145.8 '' '' -2001-04-20 00:00 182.2 '' '' -2001-04-21 00:00 193.0 '' '' -2001-04-22 00:00 194.6 '' '' -2001-04-23 00:00 198.6 '' '' -2001-04-24 00:00 195.8 '' '' -2001-04-25 00:00 196.3 '' '' -2001-04-26 00:00 198.7 '' '' -2001-04-27 00:00 193.3 '' '' -2001-04-28 00:00 190.4 '' '' -2001-04-29 00:00 194.5 '' '' -2001-04-30 00:00 190.7 '' '' -2001-05-01 00:00 187.4 '' '' -2001-05-02 00:00 179.0 '' '' -2001-05-03 00:00 175.1 '' '' -2001-05-04 00:00 178.6 '' '' -2001-05-05 00:00 163.5 '' '' -2001-05-06 00:00 157.8 '' '' -2001-05-07 00:00 140.9 '' '' -2001-05-08 00:00 131.1 '' '' -2001-05-09 00:00 131.9 '' '' -2001-05-10 00:00 133.0 '' '' -2001-05-11 00:00 139.4 '' '' -2001-05-12 00:00 141.0 '' '' -2001-05-13 00:00 141.9 '' '' -2001-05-14 00:00 141.2 '' '' -2001-05-15 00:00 145.2 '' '' -2001-05-16 00:00 140.9 '' '' -2001-05-17 00:00 150.8 '' '' -2001-05-18 00:00 141.5 '' '' -2001-05-19 00:00 144.6 '' '' -2001-05-20 00:00 144.9 '' '' -2001-05-21 00:00 153.8 '' '' -2001-05-22 00:00 155.8 '' '' -2001-05-23 00:00 162.8 '' '' -2001-05-24 00:00 174.7 '' '' -2001-05-25 00:00 166.1 '' '' -2001-05-26 00:00 151.3 '' '' -2001-05-27 00:00 150.8 '' '' -2001-05-28 00:00 146.9 '' '' -2001-05-29 00:00 142.3 '' '' -2001-05-30 00:00 136.0 '' '' -2001-05-31 00:00 136.6 '' '' -2001-06-01 00:00 136.8 '' '' -2001-06-02 00:00 137.8 '' '' -2001-06-03 00:00 149.5 '' '' -2001-06-04 00:00 158.3 '' '' -2001-06-05 00:00 158.0 '' '' -2001-06-06 00:00 162.4 '' '' -2001-06-07 00:00 169.8 '' '' -2001-06-08 00:00 185.7 '' '' -2001-06-09 00:00 182.4 '' '' -2001-06-10 00:00 168.0 '' '' -2001-06-11 00:00 167.4 '' '' -2001-06-12 00:00 171.6 '' '' -2001-06-13 00:00 187.1 '' '' -2001-06-14 00:00 200.9 '' '' -2001-06-15 00:00 203.2 '' '' -2001-06-16 00:00 214.3 '' '' -2001-06-17 00:00 211.2 '' '' -2001-06-18 00:00 228.5 '' '' -2001-06-19 00:00 201.7 '' '' -2001-06-20 00:00 205.0 '' '' -2001-06-21 00:00 206.9 '' '' -2001-06-22 00:00 210.3 '' '' -2001-06-23 00:00 213.0 '' '' -2001-06-24 00:00 201.3 '' '' -2001-06-25 00:00 188.4 '' '' -2001-06-26 00:00 173.5 '' '' -2001-06-27 00:00 152.8 '' '' -2001-06-28 00:00 144.9 '' '' -2001-06-29 00:00 144.6 '' '' -2001-06-30 00:00 141.2 '' '' -2001-07-01 00:00 140.0 '' '' -2001-07-02 00:00 138.8 '' '' -2001-07-03 00:00 136.3 '' '' -2001-07-04 00:00 131.3 '' '' -2001-07-05 00:00 123.6 '' '' -2001-07-06 00:00 120.3 '' '' -2001-07-07 00:00 121.8 '' '' -2001-07-08 00:00 130.5 '' '' -2001-07-09 00:00 134.4 '' '' -2001-07-10 00:00 134.3 '' '' -2001-07-11 00:00 136.3 '' '' -2001-07-12 00:00 138.3 '' '' -2001-07-13 00:00 137.7 '' '' -2001-07-14 00:00 145.4 '' '' -2001-07-15 00:00 146.8 '' '' -2001-07-16 00:00 154.7 '' '' -2001-07-17 00:00 150.4 '' '' -2001-07-18 00:00 147.7 '' '' -2001-07-19 00:00 146.9 '' '' -2001-07-20 00:00 147.2 '' '' -2001-07-21 00:00 143.5 '' '' -2001-07-22 00:00 144.9 '' '' -2001-07-23 00:00 147.8 '' '' -2001-07-24 00:00 136.7 '' '' -2001-07-25 00:00 137.5 '' '' -2001-07-26 00:00 127.2 '' '' -2001-07-27 00:00 125.1 '' '' -2001-07-28 00:00 119.0 '' '' -2001-07-29 00:00 120.5 '' '' -2001-07-30 00:00 118.0 '' '' -2001-07-31 00:00 120.3 '' '' -2001-08-01 00:00 123.8 '' '' -2001-08-02 00:00 124.3 '' '' -2001-08-03 00:00 135.5 '' '' -2001-08-04 00:00 152.7 '' '' -2001-08-05 00:00 160.5 '' '' -2001-08-06 00:00 168.3 '' '' -2001-08-07 00:00 171.0 '' '' -2001-08-08 00:00 171.5 '' '' -2001-08-09 00:00 167.8 '' '' -2001-08-10 00:00 164.7 '' '' -2001-08-11 00:00 169.5 '' '' -2001-08-12 00:00 164.0 '' '' -2001-08-13 00:00 155.5 '' '' -2001-08-14 00:00 151.1 '' '' -2001-08-15 00:00 150.5 '' '' -2001-08-16 00:00 146.2 '' '' -2001-08-17 00:00 148.4 '' '' -2001-08-18 00:00 159.9 '' '' -2001-08-19 00:00 161.3 '' '' -2001-08-20 00:00 159.8 '' '' -2001-08-21 00:00 163.9 '' '' -2001-08-22 00:00 165.2 '' '' -2001-08-23 00:00 173.4 '' '' -2001-08-24 00:00 178.7 '' '' -2001-08-25 00:00 203.2 '' '' -2001-08-26 00:00 193.8 '' '' -2001-08-27 00:00 195.9 '' '' -2001-08-28 00:00 203.1 '' '' -2001-08-29 00:00 200.9 '' '' -2001-08-30 00:00 203.0 '' '' -2001-08-31 00:00 192.2 '' '' -2001-09-01 00:00 187.4 '' '' -2001-09-02 00:00 185.7 '' '' -2001-09-03 00:00 202.1 '' '' -2001-09-04 00:00 222.1 '' '' -2001-09-05 00:00 221.8 '' '' -2001-09-06 00:00 225.6 '' '' -2001-09-07 00:00 229.5 '' '' -2001-09-08 00:00 253.1 '' '' -2001-09-09 00:00 239.5 '' '' -2001-09-10 00:00 247.8 '' '' -2001-09-11 00:00 252.9 '' '' -2001-09-12 00:00 238.1 '' '' -2001-09-13 00:00 242.6 '' '' -2001-09-14 00:00 239.3 '' '' -2001-09-15 00:00 221.7 '' '' -2001-09-16 00:00 209.3 '' '' -2001-09-17 00:00 201.1 '' '' -2001-09-18 00:00 205.7 '' '' -2001-09-19 00:00 200.6 '' '' -2001-09-20 00:00 228.7 '' '' -2001-09-21 00:00 240.5 '' '' -2001-09-22 00:00 257.0 '' '' -2001-09-23 00:00 260.2 '' '' -2001-09-24 00:00 281.0 '' '' -2001-09-25 00:00 276.6 '' '' -2001-09-26 00:00 284.0 '' '' -2001-09-27 00:00 270.6 '' '' -2001-09-28 00:00 285.5 '' '' -2001-09-29 00:00 240.2 '' '' -2001-09-30 00:00 236.3 '' '' -2001-10-01 00:00 216.9 '' '' -2001-10-02 00:00 201.1 '' '' -2001-10-03 00:00 191.8 '' '' -2001-10-04 00:00 186.5 '' '' -2001-10-05 00:00 176.8 '' '' -2001-10-06 00:00 180.2 '' '' -2001-10-07 00:00 172.4 '' '' -2001-10-08 00:00 170.8 '' '' -2001-10-09 00:00 175.9 '' '' -2001-10-10 00:00 178.1 '' '' -2001-10-11 00:00 174.1 '' '' -2001-10-12 00:00 178.5 '' '' -2001-10-13 00:00 178.6 '' '' -2001-10-14 00:00 190.8 '' '' -2001-10-15 00:00 191.7 '' '' -2001-10-16 00:00 205.8 '' '' -2001-10-17 00:00 215.8 '' '' -2001-10-18 00:00 226.9 '' '' -2001-10-19 00:00 245.6 '' '' -2001-10-20 00:00 242.5 '' '' -2001-10-21 00:00 222.0 '' '' -2001-10-22 00:00 230.4 '' '' -2001-10-23 00:00 224.1 '' '' -2001-10-24 00:00 236.0 '' '' -2001-10-25 00:00 236.1 '' '' -2001-10-26 00:00 233.6 '' '' -2001-10-27 00:00 243.4 '' '' -2001-10-28 00:00 224.2 '' '' -2001-10-29 00:00 212.8 '' '' -2001-10-30 00:00 222.7 '' '' -2001-10-31 00:00 217.8 '' '' -2001-11-01 00:00 232.0 '' '' -2001-11-02 00:00 210.1 '' '' -2001-11-03 00:00 212.5 '' '' -2001-11-04 00:00 223.5 '' '' -2001-11-05 00:00 230.6 '' '' -2001-11-06 00:00 233.2 '' '' -2001-11-07 00:00 263.9 '' '' -2001-11-08 00:00 243.1 '' '' -2001-11-09 00:00 265.6 '' '' -2001-11-10 00:00 241.0 '' '' -2001-11-11 00:00 229.3 '' '' -2001-11-12 00:00 222.6 '' '' -2001-11-13 00:00 226.8 '' '' -2001-11-14 00:00 212.6 '' '' -2001-11-15 00:00 202.4 '' '' -2001-11-16 00:00 197.6 '' '' -2001-11-17 00:00 194.0 '' '' -2001-11-18 00:00 183.8 '' '' -2001-11-19 00:00 186.8 '' '' -2001-11-20 00:00 180.6 '' '' -2001-11-21 00:00 179.7 '' '' -2001-11-22 00:00 185.3 '' '' -2001-11-23 00:00 172.9 '' '' -2001-11-24 00:00 168.6 '' '' -2001-11-25 00:00 165.6 '' '' -2001-11-26 00:00 170.3 '' '' -2001-11-27 00:00 185.3 '' '' -2001-11-28 00:00 193.1 '' '' -2001-11-29 00:00 210.5 '' '' -2001-11-30 00:00 219.6 '' '' -2001-12-01 00:00 215.1 '' '' -2001-12-02 00:00 238.1 '' '' -2001-12-03 00:00 228.3 '' '' -2001-12-04 00:00 226.6 '' '' -2001-12-05 00:00 230.1 '' '' -2001-12-06 00:00 239.5 '' '' -2001-12-07 00:00 219.3 '' '' -2001-12-08 00:00 213.9 '' '' -2001-12-09 00:00 217.5 '' '' -2001-12-10 00:00 212.3 '' '' -2001-12-11 00:00 213.9 '' '' -2001-12-12 00:00 229.4 '' '' -2001-12-13 00:00 213.4 '' '' -2001-12-14 00:00 209.9 '' '' -2001-12-15 00:00 211.0 '' '' -2001-12-16 00:00 202.5 '' '' -2001-12-17 00:00 199.0 '' '' -2001-12-18 00:00 205.0 '' '' -2001-12-19 00:00 201.6 '' '' -2001-12-20 00:00 214.0 '' '' -2001-12-21 00:00 226.7 '' '' -2001-12-22 00:00 234.9 '' '' -2001-12-23 00:00 246.3 '' '' -2001-12-24 00:00 265.5 '' '' -2001-12-25 00:00 250.3 '' '' -2001-12-26 00:00 259.0 '' '' -2001-12-27 00:00 265.6 '' '' -2001-12-28 00:00 254.6 '' '' -2001-12-29 00:00 255.7 '' '' -2001-12-30 00:00 238.5 '' '' -2001-12-31 00:00 237.5 '' '' -2002-01-01 00:00 224.5 '' '' -2002-01-02 00:00 223.5 '' '' -2002-01-03 00:00 213.0 '' '' -2002-01-04 00:00 211.0 '' '' -2002-01-05 00:00 205.2 '' '' -2002-01-06 00:00 190.1 '' '' -2002-01-07 00:00 182.4 '' '' -2002-01-08 00:00 192.6 '' '' -2002-01-09 00:00 220.9 '' '' -2002-01-10 00:00 217.3 '' '' -2002-01-11 00:00 221.4 '' '' -2002-01-12 00:00 225.7 '' '' -2002-01-13 00:00 232.9 '' '' -2002-01-14 00:00 221.6 '' '' -2002-01-15 00:00 211.2 '' '' -2002-01-16 00:00 209.1 '' '' -2002-01-17 00:00 205.0 '' '' -2002-01-18 00:00 203.8 '' '' -2002-01-19 00:00 206.9 '' '' -2002-01-20 00:00 215.2 '' '' -2002-01-21 00:00 217.5 '' '' -2002-01-22 00:00 221.5 '' '' -2002-01-23 00:00 219.4 '' '' -2002-01-24 00:00 223.6 '' '' -2002-01-25 00:00 227.6 '' '' -2002-01-26 00:00 248.7 '' '' -2002-01-27 00:00 240.5 '' '' -2002-01-28 00:00 252.0 '' '' -2002-01-29 00:00 253.2 '' '' -2002-01-30 00:00 248.8 '' '' -2002-01-31 00:00 235.5 '' '' -2002-02-01 00:00 238.5 '' '' -2002-02-02 00:00 233.7 '' '' -2002-02-03 00:00 226.3 '' '' -2002-02-04 00:00 228.1 '' '' -2002-02-05 00:00 214.5 '' '' -2002-02-06 00:00 196.9 '' '' -2002-02-07 00:00 186.6 '' '' -2002-02-08 00:00 186.4 '' '' -2002-02-09 00:00 194.1 '' '' -2002-02-10 00:00 210.9 '' '' -2002-02-11 00:00 196.6 '' '' -2002-02-12 00:00 203.1 '' '' -2002-02-13 00:00 198.5 '' '' -2002-02-14 00:00 191.3 '' '' -2002-02-15 00:00 190.3 '' '' -2002-02-16 00:00 188.9 '' '' -2002-02-17 00:00 192.0 '' '' -2002-02-18 00:00 188.4 '' '' -2002-02-19 00:00 185.1 '' '' -2002-02-20 00:00 189.1 '' '' -2002-02-21 00:00 196.7 '' '' -2002-02-22 00:00 187.9 '' '' -2002-02-23 00:00 184.2 '' '' -2002-02-24 00:00 188.9 '' '' -2002-02-25 00:00 206.4 '' '' -2002-02-26 00:00 203.5 '' '' -2002-02-27 00:00 194.9 '' '' -2002-02-28 00:00 200.4 '' '' -2002-03-01 00:00 184.3 '' '' -2002-03-02 00:00 187.6 '' '' -2002-03-03 00:00 179.6 '' '' -2002-03-04 00:00 172.0 '' '' -2002-03-05 00:00 169.4 '' '' -2002-03-06 00:00 175.0 '' '' -2002-03-07 00:00 177.0 '' '' -2002-03-08 00:00 174.2 '' '' -2002-03-09 00:00 204.8 '' '' -2002-03-10 00:00 176.9 '' '' -2002-03-11 00:00 180.0 '' '' -2002-03-12 00:00 176.2 '' '' -2002-03-13 00:00 182.1 '' '' -2002-03-14 00:00 178.6 '' '' -2002-03-15 00:00 174.0 '' '' -2002-03-16 00:00 182.7 '' '' -2002-03-17 00:00 182.7 '' '' -2002-03-18 00:00 176.5 '' '' -2002-03-19 00:00 173.3 '' '' -2002-03-20 00:00 186.3 '' '' -2002-03-21 00:00 172.8 '' '' -2002-03-22 00:00 170.4 '' '' -2002-03-23 00:00 169.4 '' '' -2002-03-24 00:00 174.3 '' '' -2002-03-25 00:00 169.1 '' '' -2002-03-26 00:00 164.9 '' '' -2002-03-27 00:00 168.4 '' '' -2002-03-28 00:00 175.6 '' '' -2002-03-29 00:00 180.8 '' '' -2002-03-30 00:00 188.2 '' '' -2002-03-31 00:00 204.0 '' '' -2002-04-01 00:00 206.7 '' '' -2002-04-02 00:00 205.9 '' '' -2002-04-03 00:00 209.4 '' '' -2002-04-04 00:00 216.3 '' '' -2002-04-05 00:00 217.6 '' '' -2002-04-06 00:00 206.7 '' '' -2002-04-07 00:00 208.4 '' '' -2002-04-08 00:00 206.8 '' '' -2002-04-09 00:00 205.8 '' '' -2002-04-10 00:00 195.1 '' '' -2002-04-11 00:00 198.3 '' '' -2002-04-12 00:00 213.0 '' '' -2002-04-13 00:00 227.3 '' '' -2002-04-14 00:00 211.6 '' '' -2002-04-15 00:00 204.7 '' '' -2002-04-16 00:00 197.2 '' '' -2002-04-17 00:00 195.0 '' '' -2002-04-18 00:00 189.8 '' '' -2002-04-19 00:00 181.4 '' '' -2002-04-20 00:00 179.0 '' '' -2002-04-21 00:00 175.1 '' '' -2002-04-22 00:00 171.7 '' '' -2002-04-23 00:00 177.2 '' '' -2002-04-24 00:00 178.9 '' '' -2002-04-25 00:00 169.3 '' '' -2002-04-26 00:00 164.7 '' '' -2002-04-27 00:00 159.0 '' '' -2002-04-28 00:00 149.2 '' '' -2002-04-29 00:00 155.2 '' '' -2002-04-30 00:00 155.6 '' '' -2002-05-01 00:00 164.9 '' '' -2002-05-02 00:00 171.7 '' '' -2002-05-03 00:00 182.0 '' '' -2002-05-04 00:00 192.7 '' '' -2002-05-05 00:00 183.2 '' '' -2002-05-06 00:00 194.3 '' '' -2002-05-07 00:00 190.3 '' '' -2002-05-08 00:00 190.2 '' '' -2002-05-09 00:00 193.7 '' '' -2002-05-10 00:00 194.8 '' '' -2002-05-11 00:00 191.8 '' '' -2002-05-12 00:00 187.1 '' '' -2002-05-13 00:00 175.6 '' '' -2002-05-14 00:00 164.2 '' '' -2002-05-15 00:00 162.7 '' '' -2002-05-16 00:00 162.0 '' '' -2002-05-17 00:00 160.7 '' '' -2002-05-18 00:00 166.8 '' '' -2002-05-19 00:00 175.0 '' '' -2002-05-20 00:00 175.4 '' '' -2002-05-21 00:00 190.4 '' '' -2002-05-22 00:00 185.6 '' '' -2002-05-23 00:00 184.8 '' '' -2002-05-24 00:00 193.9 '' '' -2002-05-25 00:00 187.4 '' '' -2002-05-26 00:00 188.0 '' '' -2002-05-27 00:00 191.6 '' '' -2002-05-28 00:00 191.4 '' '' -2002-05-29 00:00 189.8 '' '' -2002-05-30 00:00 185.1 '' '' -2002-05-31 00:00 187.0 '' '' -2002-06-01 00:00 183.9 '' '' -2002-06-02 00:00 180.0 '' '' -2002-06-03 00:00 175.4 '' '' -2002-06-04 00:00 174.7 '' '' -2002-06-05 00:00 163.7 '' '' -2002-06-06 00:00 159.1 '' '' -2002-06-07 00:00 163.1 '' '' -2002-06-08 00:00 159.9 '' '' -2002-06-09 00:00 161.9 '' '' -2002-06-10 00:00 156.2 '' '' -2002-06-11 00:00 152.4 '' '' -2002-06-12 00:00 146.2 '' '' -2002-06-13 00:00 137.6 '' '' -2002-06-14 00:00 135.6 '' '' -2002-06-15 00:00 139.7 '' '' -2002-06-16 00:00 141.0 '' '' -2002-06-17 00:00 147.5 '' '' -2002-06-18 00:00 147.5 '' '' -2002-06-19 00:00 150.5 '' '' -2002-06-20 00:00 149.8 '' '' -2002-06-21 00:00 144.2 '' '' -2002-06-22 00:00 146.6 '' '' -2002-06-23 00:00 147.5 '' '' -2002-06-24 00:00 155.3 '' '' -2002-06-25 00:00 149.5 '' '' -2002-06-26 00:00 148.6 '' '' -2002-06-27 00:00 143.2 '' '' -2002-06-28 00:00 141.9 '' '' -2002-06-29 00:00 147.5 '' '' -2002-06-30 00:00 151.4 '' '' -2002-07-01 00:00 152.3 '' '' -2002-07-02 00:00 153.5 '' '' -2002-07-03 00:00 152.4 '' '' -2002-07-04 00:00 151.3 '' '' -2002-07-05 00:00 143.5 '' '' -2002-07-06 00:00 138.0 '' '' -2002-07-07 00:00 141.5 '' '' -2002-07-08 00:00 135.3 '' '' -2002-07-09 00:00 140.9 '' '' -2002-07-10 00:00 133.1 '' '' -2002-07-11 00:00 141.0 '' '' -2002-07-12 00:00 137.7 '' '' -2002-07-13 00:00 139.4 '' '' -2002-07-14 00:00 148.6 '' '' -2002-07-15 00:00 164.8 '' '' -2002-07-16 00:00 177.2 '' '' -2002-07-17 00:00 185.9 '' '' -2002-07-18 00:00 186.6 '' '' -2002-07-19 00:00 188.3 '' '' -2002-07-20 00:00 190.7 '' '' -2002-07-21 00:00 188.7 '' '' -2002-07-22 00:00 195.8 '' '' -2002-07-23 00:00 204.6 '' '' -2002-07-24 00:00 215.0 '' '' -2002-07-25 00:00 224.5 '' '' -2002-07-26 00:00 249.1 '' '' -2002-07-27 00:00 238.0 '' '' -2002-07-28 00:00 246.2 '' '' -2002-07-29 00:00 241.1 '' '' -2002-07-30 00:00 234.1 '' '' -2002-07-31 00:00 214.8 '' '' -2002-08-01 00:00 198.3 '' '' -2002-08-02 00:00 185.7 '' '' -2002-08-03 00:00 172.7 '' '' -2002-08-04 00:00 155.3 '' '' -2002-08-05 00:00 146.0 '' '' -2002-08-06 00:00 148.8 '' '' -2002-08-07 00:00 140.1 '' '' -2002-08-08 00:00 138.3 '' '' -2002-08-09 00:00 144.0 '' '' -2002-08-10 00:00 152.4 '' '' -2002-08-11 00:00 176.9 '' '' -2002-08-12 00:00 188.8 '' '' -2002-08-13 00:00 196.8 '' '' -2002-08-14 00:00 213.5 '' '' -2002-08-15 00:00 215.7 '' '' -2002-08-16 00:00 219.1 '' '' -2002-08-17 00:00 232.3 '' '' -2002-08-18 00:00 246.9 '' '' -2002-08-19 00:00 242.6 '' '' -2002-08-20 00:00 232.8 '' '' -2002-08-21 00:00 225.0 '' '' -2002-08-22 00:00 225.1 '' '' -2002-08-23 00:00 229.5 '' '' -2002-08-24 00:00 199.8 '' '' -2002-08-25 00:00 182.4 '' '' -2002-08-26 00:00 172.2 '' '' -2002-08-27 00:00 164.7 '' '' -2002-08-28 00:00 166.4 '' '' -2002-08-29 00:00 172.6 '' '' -2002-08-30 00:00 173.5 '' '' -2002-08-31 00:00 183.7 '' '' -2002-09-01 00:00 183.8 '' '' -2002-09-02 00:00 176.9 '' '' -2002-09-03 00:00 174.4 '' '' -2002-09-04 00:00 174.2 '' '' -2002-09-05 00:00 178.1 '' '' -2002-09-06 00:00 180.9 '' '' -2002-09-07 00:00 185.6 '' '' -2002-09-08 00:00 194.4 '' '' -2002-09-09 00:00 209.0 '' '' -2002-09-10 00:00 223.5 '' '' -2002-09-11 00:00 219.0 '' '' -2002-09-12 00:00 215.1 '' '' -2002-09-13 00:00 208.6 '' '' -2002-09-14 00:00 209.2 '' '' -2002-09-15 00:00 189.9 '' '' -2002-09-16 00:00 184.5 '' '' -2002-09-17 00:00 195.9 '' '' -2002-09-18 00:00 178.4 '' '' -2002-09-19 00:00 166.7 '' '' -2002-09-20 00:00 165.8 '' '' -2002-09-21 00:00 159.8 '' '' -2002-09-22 00:00 161.1 '' '' -2002-09-23 00:00 154.8 '' '' -2002-09-24 00:00 158.9 '' '' -2002-09-25 00:00 154.2 '' '' -2002-09-26 00:00 150.6 '' '' -2002-09-27 00:00 152.2 '' '' -2002-09-28 00:00 149.1 '' '' -2002-09-29 00:00 138.6 '' '' -2002-09-30 00:00 140.1 '' '' -2002-10-01 00:00 140.1 '' '' -2002-10-02 00:00 136.0 '' '' -2002-10-03 00:00 146.1 '' '' -2002-10-04 00:00 157.6 '' '' -2002-10-05 00:00 155.1 '' '' -2002-10-06 00:00 161.6 '' '' -2002-10-07 00:00 163.5 '' '' -2002-10-08 00:00 165.1 '' '' -2002-10-09 00:00 166.8 '' '' -2002-10-10 00:00 171.4 '' '' -2002-10-11 00:00 178.7 '' '' -2002-10-12 00:00 179.7 '' '' -2002-10-13 00:00 178.3 '' '' -2002-10-14 00:00 180.2 '' '' -2002-10-15 00:00 175.7 '' '' -2002-10-16 00:00 181.4 '' '' -2002-10-17 00:00 177.7 '' '' -2002-10-18 00:00 171.3 '' '' -2002-10-19 00:00 178.1 '' '' -2002-10-20 00:00 178.7 '' '' -2002-10-21 00:00 180.8 '' '' -2002-10-22 00:00 167.7 '' '' -2002-10-23 00:00 161.9 '' '' -2002-10-24 00:00 158.5 '' '' -2002-10-25 00:00 170.9 '' '' -2002-10-26 00:00 156.1 '' '' -2002-10-27 00:00 155.2 '' '' -2002-10-28 00:00 156.3 '' '' -2002-10-29 00:00 159.4 '' '' -2002-10-30 00:00 165.3 '' '' -2002-10-31 00:00 167.7 '' '' -2002-11-01 00:00 159.7 '' '' -2002-11-02 00:00 162.1 '' '' -2002-11-03 00:00 166.5 '' '' -2002-11-04 00:00 174.4 '' '' -2002-11-05 00:00 180.0 '' '' -2002-11-06 00:00 181.2 '' '' -2002-11-07 00:00 186.4 '' '' -2002-11-08 00:00 185.5 '' '' -2002-11-09 00:00 187.0 '' '' -2002-11-10 00:00 187.7 '' '' -2002-11-11 00:00 181.0 '' '' -2002-11-12 00:00 174.6 '' '' -2002-11-13 00:00 178.6 '' '' -2002-11-14 00:00 180.2 '' '' -2002-11-15 00:00 193.2 '' '' -2002-11-16 00:00 194.8 '' '' -2002-11-17 00:00 180.5 '' '' -2002-11-18 00:00 174.8 '' '' -2002-11-19 00:00 164.3 '' '' -2002-11-20 00:00 155.3 '' '' -2002-11-21 00:00 147.2 '' '' -2002-11-22 00:00 145.5 '' '' -2002-11-23 00:00 143.8 '' '' -2002-11-24 00:00 142.5 '' '' -2002-11-25 00:00 133.2 '' '' -2002-11-26 00:00 138.5 '' '' -2002-11-27 00:00 138.8 '' '' -2002-11-28 00:00 136.0 '' '' -2002-11-29 00:00 137.5 '' '' -2002-11-30 00:00 142.1 '' '' -2002-12-01 00:00 145.5 '' '' -2002-12-02 00:00 142.0 '' '' -2002-12-03 00:00 141.8 '' '' -2002-12-04 00:00 144.5 '' '' -2002-12-05 00:00 144.4 '' '' -2002-12-06 00:00 143.9 '' '' -2002-12-07 00:00 146.6 '' '' -2002-12-08 00:00 149.8 '' '' -2002-12-09 00:00 151.6 '' '' -2002-12-10 00:00 156.5 '' '' -2002-12-11 00:00 147.7 '' '' -2002-12-12 00:00 148.4 '' '' -2002-12-13 00:00 161.8 '' '' -2002-12-14 00:00 180.1 '' '' -2002-12-15 00:00 196.6 '' '' -2002-12-16 00:00 196.5 '' '' -2002-12-17 00:00 205.8 '' '' -2002-12-18 00:00 190.6 '' '' -2002-12-19 00:00 186.7 '' '' -2002-12-20 00:00 190.3 '' '' -2002-12-21 00:00 177.9 '' '' -2002-12-22 00:00 166.4 '' '' -2002-12-23 00:00 153.7 '' '' -2002-12-24 00:00 142.5 '' '' -2002-12-25 00:00 127.6 '' '' -2002-12-26 00:00 123.2 '' '' -2002-12-27 00:00 112.7 '' '' -2002-12-28 00:00 113.1 '' '' -2002-12-29 00:00 111.0 '' '' -2002-12-30 00:00 110.1 '' '' -2002-12-31 00:00 111.3 '' '' -2003-01-01 00:00 111.2 '' '' -2003-01-02 00:00 114.4 '' '' -2003-01-03 00:00 133.1 '' '' -2003-01-04 00:00 138.2 '' '' -2003-01-05 00:00 143.2 '' '' -2003-01-06 00:00 156.8 '' '' -2003-01-07 00:00 157.8 '' '' -2003-01-08 00:00 168.0 '' '' -2003-01-09 00:00 176.9 '' '' -2003-01-10 00:00 178.7 '' '' -2003-01-11 00:00 182.6 '' '' -2003-01-12 00:00 167.7 '' '' -2003-01-13 00:00 166.2 '' '' -2003-01-14 00:00 158.6 '' '' -2003-01-15 00:00 145.0 '' '' -2003-01-16 00:00 139.9 '' '' -2003-01-17 00:00 137.1 '' '' -2003-01-18 00:00 133.0 '' '' -2003-01-19 00:00 126.1 '' '' -2003-01-20 00:00 133.7 '' '' -2003-01-21 00:00 129.4 '' '' -2003-01-22 00:00 125.4 '' '' -2003-01-23 00:00 131.6 '' '' -2003-01-24 00:00 125.8 '' '' -2003-01-25 00:00 124.9 '' '' -2003-01-26 00:00 121.2 '' '' -2003-01-27 00:00 117.7 '' '' -2003-01-28 00:00 121.8 '' '' -2003-01-29 00:00 120.7 '' '' -2003-01-30 00:00 117.6 '' '' -2003-01-31 00:00 116.9 '' '' -2003-02-01 00:00 122.1 '' '' -2003-02-02 00:00 123.0 '' '' -2003-02-03 00:00 128.7 '' '' -2003-02-04 00:00 131.0 '' '' -2003-02-05 00:00 136.2 '' '' -2003-02-06 00:00 145.4 '' '' -2003-02-07 00:00 143.3 '' '' -2003-02-08 00:00 135.4 '' '' -2003-02-09 00:00 137.6 '' '' -2003-02-10 00:00 132.6 '' '' -2003-02-11 00:00 131.4 '' '' -2003-02-12 00:00 128.2 '' '' -2003-02-13 00:00 127.3 '' '' -2003-02-14 00:00 128.1 '' '' -2003-02-15 00:00 120.6 '' '' -2003-02-16 00:00 115.7 '' '' -2003-02-17 00:00 109.4 '' '' -2003-02-18 00:00 107.4 '' '' -2003-02-19 00:00 113.6 '' '' -2003-02-20 00:00 115.7 '' '' -2003-02-21 00:00 117.0 '' '' -2003-02-22 00:00 104.3 '' '' -2003-02-23 00:00 101.8 '' '' -2003-02-24 00:00 99.9 '' '' -2003-02-25 00:00 99.5 '' '' -2003-02-26 00:00 107.2 '' '' -2003-02-27 00:00 115.4 '' '' -2003-02-28 00:00 122.6 '' '' -2003-03-01 00:00 135.6 '' '' -2003-03-02 00:00 144.7 '' '' -2003-03-03 00:00 146.5 '' '' -2003-03-04 00:00 143.6 '' '' -2003-03-05 00:00 146.2 '' '' -2003-03-06 00:00 147.9 '' '' -2003-03-07 00:00 147.6 '' '' -2003-03-08 00:00 146.2 '' '' -2003-03-09 00:00 150.6 '' '' -2003-03-10 00:00 141.7 '' '' -2003-03-11 00:00 139.7 '' '' -2003-03-12 00:00 136.2 '' '' -2003-03-13 00:00 132.5 '' '' -2003-03-14 00:00 137.3 '' '' -2003-03-15 00:00 129.3 '' '' -2003-03-16 00:00 127.2 '' '' -2003-03-17 00:00 123.1 '' '' -2003-03-18 00:00 117.3 '' '' -2003-03-19 00:00 107.2 '' '' -2003-03-20 00:00 96.6 '' '' -2003-03-21 00:00 90.3 '' '' -2003-03-22 00:00 88.3 '' '' -2003-03-23 00:00 92.4 '' '' -2003-03-24 00:00 97.3 '' '' -2003-03-25 00:00 108.2 '' '' -2003-03-26 00:00 126.6 '' '' -2003-03-27 00:00 140.5 '' '' -2003-03-28 00:00 146.4 '' '' -2003-03-29 00:00 154.6 '' '' -2003-03-30 00:00 154.2 '' '' -2003-03-31 00:00 159.8 '' '' -2003-04-01 00:00 152.8 '' '' -2003-04-02 00:00 157.3 '' '' -2003-04-03 00:00 155.7 '' '' -2003-04-04 00:00 148.8 '' '' -2003-04-05 00:00 137.5 '' '' -2003-04-06 00:00 126.1 '' '' -2003-04-07 00:00 115.9 '' '' -2003-04-08 00:00 112.6 '' '' -2003-04-09 00:00 109.7 '' '' -2003-04-10 00:00 104.1 '' '' -2003-04-11 00:00 103.0 '' '' -2003-04-12 00:00 102.6 '' '' -2003-04-13 00:00 103.0 '' '' -2003-04-14 00:00 102.6 '' '' -2003-04-15 00:00 101.1 '' '' -2003-04-16 00:00 99.2 '' '' -2003-04-17 00:00 101.8 '' '' -2003-04-18 00:00 108.7 '' '' -2003-04-19 00:00 113.1 '' '' -2003-04-20 00:00 119.7 '' '' -2003-04-21 00:00 127.0 '' '' -2003-04-22 00:00 133.8 '' '' -2003-04-23 00:00 134.3 '' '' -2003-04-24 00:00 129.8 '' '' -2003-04-25 00:00 145.3 '' '' -2003-04-26 00:00 145.5 '' '' -2003-04-27 00:00 156.1 '' '' -2003-04-28 00:00 154.3 '' '' -2003-04-29 00:00 157.4 '' '' -2003-04-30 00:00 155.8 '' '' -2003-05-01 00:00 151.0 '' '' -2003-05-02 00:00 145.3 '' '' -2003-05-03 00:00 150.1 '' '' -2003-05-04 00:00 144.4 '' '' -2003-05-05 00:00 131.1 '' '' -2003-05-06 00:00 124.1 '' '' -2003-05-07 00:00 112.2 '' '' -2003-05-08 00:00 102.8 '' '' -2003-05-09 00:00 98.9 '' '' -2003-05-10 00:00 94.5 '' '' -2003-05-11 00:00 93.4 '' '' -2003-05-12 00:00 95.8 '' '' -2003-05-13 00:00 98.1 '' '' -2003-05-14 00:00 98.3 '' '' -2003-05-15 00:00 101.4 '' '' -2003-05-16 00:00 104.9 '' '' -2003-05-17 00:00 104.7 '' '' -2003-05-18 00:00 111.5 '' '' -2003-05-19 00:00 117.4 '' '' -2003-05-20 00:00 120.0 '' '' -2003-05-21 00:00 122.2 '' '' -2003-05-22 00:00 121.3 '' '' -2003-05-23 00:00 120.9 '' '' -2003-05-24 00:00 119.8 '' '' -2003-05-25 00:00 124.3 '' '' -2003-05-26 00:00 128.4 '' '' -2003-05-27 00:00 132.3 '' '' -2003-05-28 00:00 133.7 '' '' -2003-05-29 00:00 141.6 '' '' -2003-05-30 00:00 120.4 '' '' -2003-05-31 00:00 116.3 '' '' -2003-06-01 00:00 115.5 '' '' -2003-06-02 00:00 124.8 '' '' -2003-06-03 00:00 117.8 '' '' -2003-06-04 00:00 108.7 '' '' -2003-06-05 00:00 117.0 '' '' -2003-06-06 00:00 129.4 '' '' -2003-06-07 00:00 137.2 '' '' -2003-06-08 00:00 158.0 '' '' -2003-06-09 00:00 163.1 '' '' -2003-06-10 00:00 182.0 '' '' -2003-06-11 00:00 198.9 '' '' -2003-06-12 00:00 168.6 '' '' -2003-06-13 00:00 155.8 '' '' -2003-06-14 00:00 137.7 '' '' -2003-06-15 00:00 132.8 '' '' -2003-06-16 00:00 126.5 '' '' -2003-06-17 00:00 125.8 '' '' -2003-06-18 00:00 124.3 '' '' -2003-06-19 00:00 126.8 '' '' -2003-06-20 00:00 120.8 '' '' -2003-06-21 00:00 118.8 '' '' -2003-06-22 00:00 113.9 '' '' -2003-06-23 00:00 117.2 '' '' -2003-06-24 00:00 118.3 '' '' -2003-06-25 00:00 120.2 '' '' -2003-06-26 00:00 122.9 '' '' -2003-06-27 00:00 128.1 '' '' -2003-06-28 00:00 128.1 '' '' -2003-06-29 00:00 131.6 '' '' -2003-06-30 00:00 132.5 '' '' -2003-07-01 00:00 135.6 '' '' -2003-07-02 00:00 139.3 '' '' -2003-07-03 00:00 136.7 '' '' -2003-07-04 00:00 144.8 '' '' -2003-07-05 00:00 146.7 '' '' -2003-07-06 00:00 134.0 '' '' -2003-07-07 00:00 137.8 '' '' -2003-07-08 00:00 135.7 '' '' -2003-07-09 00:00 130.2 '' '' -2003-07-10 00:00 126.9 '' '' -2003-07-11 00:00 126.1 '' '' -2003-07-12 00:00 125.5 '' '' -2003-07-13 00:00 130.7 '' '' -2003-07-14 00:00 131.4 '' '' -2003-07-15 00:00 129.9 '' '' -2003-07-16 00:00 137.5 '' '' -2003-07-17 00:00 143.2 '' '' -2003-07-18 00:00 144.3 '' '' -2003-07-19 00:00 150.8 '' '' -2003-07-20 00:00 162.4 '' '' -2003-07-21 00:00 160.7 '' '' -2003-07-22 00:00 157.4 '' '' -2003-07-23 00:00 148.7 '' '' -2003-07-24 00:00 129.2 '' '' -2003-07-25 00:00 115.1 '' '' -2003-07-26 00:00 105.9 '' '' -2003-07-27 00:00 104.9 '' '' -2003-07-28 00:00 106.6 '' '' -2003-07-29 00:00 103.0 '' '' -2003-07-30 00:00 101.7 '' '' -2003-07-31 00:00 105.2 '' '' -2003-08-01 00:00 110.6 '' '' -2003-08-02 00:00 114.7 '' '' -2003-08-03 00:00 123.6 '' '' -2003-08-04 00:00 126.0 '' '' -2003-08-05 00:00 134.4 '' '' -2003-08-06 00:00 132.4 '' '' -2003-08-07 00:00 140.9 '' '' -2003-08-08 00:00 136.6 '' '' -2003-08-09 00:00 133.6 '' '' -2003-08-10 00:00 134.7 '' '' -2003-08-11 00:00 132.7 '' '' -2003-08-12 00:00 126.6 '' '' -2003-08-13 00:00 134.3 '' '' -2003-08-14 00:00 133.1 '' '' -2003-08-15 00:00 134.7 '' '' -2003-08-16 00:00 130.1 '' '' -2003-08-17 00:00 122.3 '' '' -2003-08-18 00:00 118.7 '' '' -2003-08-19 00:00 119.5 '' '' -2003-08-20 00:00 114.5 '' '' -2003-08-21 00:00 122.0 '' '' -2003-08-22 00:00 123.7 '' '' -2003-08-23 00:00 122.9 '' '' -2003-08-24 00:00 119.0 '' '' -2003-08-25 00:00 119.0 '' '' -2003-08-26 00:00 123.4 '' '' -2003-08-27 00:00 128.3 '' '' -2003-08-28 00:00 121.1 '' '' -2003-08-29 00:00 118.7 '' '' -2003-08-30 00:00 116.2 '' '' -2003-08-31 00:00 111.8 '' '' -2003-09-01 00:00 110.1 '' '' -2003-09-02 00:00 107.6 '' '' -2003-09-03 00:00 112.4 '' '' -2003-09-04 00:00 114.1 '' '' -2003-09-05 00:00 109.8 '' '' -2003-09-06 00:00 106.6 '' '' -2003-09-07 00:00 109.4 '' '' -2003-09-08 00:00 100.3 '' '' -2003-09-09 00:00 97.3 '' '' -2003-09-10 00:00 100.6 '' '' -2003-09-11 00:00 98.0 '' '' -2003-09-12 00:00 95.6 '' '' -2003-09-13 00:00 97.3 '' '' -2003-09-14 00:00 95.8 '' '' -2003-09-15 00:00 98.4 '' '' -2003-09-16 00:00 100.4 '' '' -2003-09-17 00:00 107.0 '' '' -2003-09-18 00:00 110.2 '' '' -2003-09-19 00:00 112.1 '' '' -2003-09-20 00:00 112.9 '' '' -2003-09-21 00:00 120.9 '' '' -2003-09-22 00:00 123.5 '' '' -2003-09-23 00:00 125.7 '' '' -2003-09-24 00:00 134.3 '' '' -2003-09-25 00:00 133.4 '' '' -2003-09-26 00:00 131.8 '' '' -2003-09-27 00:00 130.3 '' '' -2003-09-28 00:00 137.6 '' '' -2003-09-29 00:00 135.6 '' '' -2003-09-30 00:00 133.3 '' '' -2003-10-01 00:00 137.1 '' '' -2003-10-02 00:00 125.0 '' '' -2003-10-03 00:00 120.3 '' '' -2003-10-04 00:00 119.0 '' '' -2003-10-05 00:00 109.6 '' '' -2003-10-06 00:00 112.0 '' '' -2003-10-07 00:00 111.8 '' '' -2003-10-08 00:00 113.1 '' '' -2003-10-09 00:00 110.5 '' '' -2003-10-10 00:00 111.4 '' '' -2003-10-11 00:00 105.4 '' '' -2003-10-12 00:00 97.4 '' '' -2003-10-13 00:00 94.0 '' '' -2003-10-14 00:00 91.9 '' '' -2003-10-15 00:00 95.3 '' '' -2003-10-16 00:00 94.6 '' '' -2003-10-17 00:00 98.1 '' '' -2003-10-18 00:00 107.8 '' '' -2003-10-19 00:00 119.4 '' '' -2003-10-20 00:00 133.9 '' '' -2003-10-21 00:00 150.2 '' '' -2003-10-22 00:00 152.0 '' '' -2003-10-23 00:00 181.3 '' '' -2003-10-24 00:00 188.5 '' '' -2003-10-25 00:00 219.0 '' '' -2003-10-26 00:00 240.6 '' '' -2003-10-27 00:00 254.0 '' '' -2003-10-28 00:00 270.9 '' '' -2003-10-29 00:00 275.4 '' '' -2003-10-30 00:00 267.6 '' '' -2003-10-31 00:00 245.2 '' '' -2003-11-01 00:00 207.2 '' '' -2003-11-02 00:00 187.4 '' '' -2003-11-03 00:00 164.2 '' '' -2003-11-04 00:00 165.6 '' '' -2003-11-05 00:00 112.1 '' '' -2003-11-06 00:00 96.1 '' '' -2003-11-07 00:00 89.4 '' '' -2003-11-08 00:00 91.0 '' '' -2003-11-09 00:00 91.2 '' '' -2003-11-10 00:00 92.8 '' '' -2003-11-11 00:00 93.7 '' '' -2003-11-12 00:00 96.7 '' '' -2003-11-13 00:00 100.0 '' '' -2003-11-14 00:00 96.8 '' '' -2003-11-15 00:00 95.6 '' '' -2003-11-16 00:00 102.0 '' '' -2003-11-17 00:00 118.2 '' '' -2003-11-18 00:00 141.0 '' '' -2003-11-19 00:00 151.5 '' '' -2003-11-20 00:00 171.0 '' '' -2003-11-21 00:00 172.8 '' '' -2003-11-22 00:00 171.9 '' '' -2003-11-23 00:00 173.8 '' '' -2003-11-24 00:00 172.8 '' '' -2003-11-25 00:00 166.3 '' '' -2003-11-26 00:00 166.5 '' '' -2003-11-27 00:00 170.1 '' '' -2003-11-28 00:00 163.2 '' '' -2003-11-29 00:00 161.4 '' '' -2003-11-30 00:00 148.6 '' '' -2003-12-01 00:00 139.3 '' '' -2003-12-02 00:00 135.4 '' '' -2003-12-03 00:00 120.3 '' '' -2003-12-04 00:00 112.5 '' '' -2003-12-05 00:00 108.5 '' '' -2003-12-06 00:00 105.7 '' '' -2003-12-07 00:00 89.3 '' '' -2003-12-08 00:00 90.9 '' '' -2003-12-09 00:00 89.4 '' '' -2003-12-10 00:00 86.5 '' '' -2003-12-11 00:00 83.4 '' '' -2003-12-12 00:00 84.5 '' '' -2003-12-13 00:00 85.0 '' '' -2003-12-14 00:00 89.5 '' '' -2003-12-15 00:00 97.7 '' '' -2003-12-16 00:00 103.0 '' '' -2003-12-17 00:00 113.8 '' '' -2003-12-18 00:00 119.1 '' '' -2003-12-19 00:00 118.6 '' '' -2003-12-20 00:00 125.9 '' '' -2003-12-21 00:00 129.1 '' '' -2003-12-22 00:00 133.2 '' '' -2003-12-23 00:00 137.4 '' '' -2003-12-24 00:00 134.4 '' '' -2003-12-25 00:00 134.6 '' '' -2003-12-26 00:00 132.7 '' '' -2003-12-27 00:00 122.4 '' '' -2003-12-28 00:00 115.1 '' '' -2003-12-29 00:00 110.7 '' '' -2003-12-30 00:00 104.2 '' '' -2003-12-31 00:00 102.1 '' '' -2004-01-01 00:00 112.2 '' '' -2004-01-02 00:00 112.6 '' '' -2004-01-03 00:00 112.3 '' '' -2004-01-04 00:00 115.5 '' '' -2004-01-05 00:00 119.0 '' '' -2004-01-06 00:00 113.4 '' '' -2004-01-07 00:00 114.9 '' '' -2004-01-08 00:00 116.1 '' '' -2004-01-09 00:00 114.4 '' '' -2004-01-10 00:00 115.3 '' '' -2004-01-11 00:00 114.6 '' '' -2004-01-12 00:00 114.4 '' '' -2004-01-13 00:00 114.1 '' '' -2004-01-14 00:00 117.1 '' '' -2004-01-15 00:00 115.2 '' '' -2004-01-16 00:00 116.4 '' '' -2004-01-17 00:00 118.6 '' '' -2004-01-18 00:00 115.6 '' '' -2004-01-19 00:00 130.3 '' '' -2004-01-20 00:00 124.8 '' '' -2004-01-21 00:00 126.0 '' '' -2004-01-22 00:00 117.9 '' '' -2004-01-23 00:00 111.6 '' '' -2004-01-24 00:00 104.1 '' '' -2004-01-25 00:00 99.1 '' '' -2004-01-26 00:00 95.0 '' '' -2004-01-27 00:00 90.8 '' '' -2004-01-28 00:00 85.9 '' '' -2004-01-29 00:00 84.8 '' '' -2004-01-30 00:00 89.9 '' '' -2004-01-31 00:00 91.6 '' '' -2004-02-01 00:00 94.5 '' '' -2004-02-02 00:00 98.5 '' '' -2004-02-03 00:00 96.6 '' '' -2004-02-04 00:00 98.6 '' '' -2004-02-05 00:00 102.5 '' '' -2004-02-06 00:00 103.7 '' '' -2004-02-07 00:00 108.1 '' '' -2004-02-08 00:00 113.1 '' '' -2004-02-09 00:00 114.7 '' '' -2004-02-10 00:00 113.5 '' '' -2004-02-11 00:00 111.2 '' '' -2004-02-12 00:00 109.3 '' '' -2004-02-13 00:00 105.1 '' '' -2004-02-14 00:00 101.1 '' '' -2004-02-15 00:00 99.6 '' '' -2004-02-16 00:00 96.3 '' '' -2004-02-17 00:00 99.5 '' '' -2004-02-18 00:00 95.4 '' '' -2004-02-19 00:00 94.2 '' '' -2004-02-20 00:00 93.2 '' '' -2004-02-21 00:00 96.0 '' '' -2004-02-22 00:00 101.7 '' '' -2004-02-23 00:00 102.1 '' '' -2004-02-24 00:00 103.4 '' '' -2004-02-25 00:00 116.1 '' '' -2004-02-26 00:00 118.4 '' '' -2004-02-27 00:00 119.8 '' '' -2004-02-28 00:00 113.6 '' '' -2004-02-29 00:00 108.0 '' '' -2004-03-01 00:00 100.0 '' '' -2004-03-02 00:00 97.1 '' '' -2004-03-03 00:00 88.9 '' '' -2004-03-04 00:00 95.9 '' '' -2004-03-05 00:00 105.0 '' '' -2004-03-06 00:00 102.9 '' '' -2004-03-07 00:00 104.6 '' '' -2004-03-08 00:00 106.3 '' '' -2004-03-09 00:00 107.2 '' '' -2004-03-10 00:00 111.1 '' '' -2004-03-11 00:00 111.7 '' '' -2004-03-12 00:00 106.2 '' '' -2004-03-13 00:00 102.6 '' '' -2004-03-14 00:00 101.3 '' '' -2004-03-15 00:00 100.3 '' '' -2004-03-16 00:00 108.5 '' '' -2004-03-17 00:00 108.8 '' '' -2004-03-18 00:00 114.4 '' '' -2004-03-19 00:00 111.3 '' '' -2004-03-20 00:00 112.7 '' '' -2004-03-21 00:00 110.4 '' '' -2004-03-22 00:00 115.6 '' '' -2004-03-23 00:00 117.6 '' '' -2004-03-24 00:00 119.0 '' '' -2004-03-25 00:00 126.4 '' '' -2004-03-26 00:00 123.2 '' '' -2004-03-27 00:00 127.2 '' '' -2004-03-28 00:00 128.6 '' '' -2004-03-29 00:00 128.3 '' '' -2004-03-30 00:00 126.4 '' '' -2004-03-31 00:00 121.0 '' '' -2004-04-01 00:00 112.6 '' '' -2004-04-02 00:00 108.1 '' '' -2004-04-03 00:00 107.4 '' '' -2004-04-04 00:00 109.0 '' '' -2004-04-05 00:00 108.9 '' '' -2004-04-06 00:00 101.6 '' '' -2004-04-07 00:00 98.4 '' '' -2004-04-08 00:00 93.8 '' '' -2004-04-09 00:00 90.3 '' '' -2004-04-10 00:00 88.1 '' '' -2004-04-11 00:00 90.0 '' '' -2004-04-12 00:00 91.8 '' '' -2004-04-13 00:00 93.6 '' '' -2004-04-14 00:00 95.8 '' '' -2004-04-15 00:00 97.4 '' '' -2004-04-16 00:00 97.6 '' '' -2004-04-17 00:00 99.0 '' '' -2004-04-18 00:00 110.0 '' '' -2004-04-19 00:00 114.5 '' '' -2004-04-20 00:00 111.8 '' '' -2004-04-21 00:00 113.9 '' '' -2004-04-22 00:00 118.4 '' '' -2004-04-23 00:00 116.6 '' '' -2004-04-24 00:00 112.9 '' '' -2004-04-25 00:00 108.4 '' '' -2004-04-26 00:00 100.9 '' '' -2004-04-27 00:00 96.4 '' '' -2004-04-28 00:00 90.7 '' '' -2004-04-29 00:00 89.8 '' '' -2004-04-30 00:00 90.8 '' '' -2004-05-01 00:00 95.7 '' '' -2004-05-02 00:00 99.1 '' '' -2004-05-03 00:00 92.8 '' '' -2004-05-04 00:00 88.9 '' '' -2004-05-05 00:00 90.1 '' '' -2004-05-06 00:00 88.0 '' '' -2004-05-07 00:00 86.8 '' '' -2004-05-08 00:00 88.9 '' '' -2004-05-09 00:00 95.0 '' '' -2004-05-10 00:00 94.8 '' '' -2004-05-11 00:00 92.0 '' '' -2004-05-12 00:00 100.9 '' '' -2004-05-13 00:00 103.0 '' '' -2004-05-14 00:00 112.1 '' '' -2004-05-15 00:00 117.9 '' '' -2004-05-16 00:00 121.0 '' '' -2004-05-17 00:00 113.7 '' '' -2004-05-18 00:00 110.4 '' '' -2004-05-19 00:00 111.4 '' '' -2004-05-20 00:00 107.2 '' '' -2004-05-21 00:00 109.6 '' '' -2004-05-22 00:00 105.0 '' '' -2004-05-23 00:00 106.6 '' '' -2004-05-24 00:00 107.9 '' '' -2004-05-25 00:00 105.1 '' '' -2004-05-26 00:00 106.1 '' '' -2004-05-27 00:00 104.6 '' '' -2004-05-28 00:00 105.2 '' '' -2004-05-29 00:00 104.0 '' '' -2004-05-30 00:00 102.4 '' '' -2004-05-31 00:00 98.1 '' '' -2004-06-01 00:00 92.5 '' '' -2004-06-02 00:00 93.0 '' '' -2004-06-03 00:00 92.6 '' '' -2004-06-04 00:00 92.0 '' '' -2004-06-05 00:00 87.0 '' '' -2004-06-06 00:00 91.0 '' '' -2004-06-07 00:00 91.2 '' '' -2004-06-08 00:00 88.6 '' '' -2004-06-09 00:00 87.9 '' '' -2004-06-10 00:00 85.0 '' '' -2004-06-11 00:00 86.5 '' '' -2004-06-12 00:00 90.7 '' '' -2004-06-13 00:00 98.2 '' '' -2004-06-14 00:00 103.1 '' '' -2004-06-15 00:00 112.9 '' '' -2004-06-16 00:00 115.1 '' '' -2004-06-17 00:00 114.9 '' '' -2004-06-18 00:00 111.3 '' '' -2004-06-19 00:00 116.4 '' '' -2004-06-20 00:00 123.0 '' '' -2004-06-21 00:00 119.6 '' '' -2004-06-22 00:00 120.5 '' '' -2004-06-23 00:00 116.2 '' '' -2004-06-24 00:00 111.9 '' '' -2004-06-25 00:00 106.3 '' '' -2004-06-26 00:00 102.2 '' '' -2004-06-27 00:00 100.4 '' '' -2004-06-28 00:00 92.4 '' '' -2004-06-29 00:00 87.9 '' '' -2004-06-30 00:00 84.5 '' '' -2004-07-01 00:00 84.0 '' '' -2004-07-02 00:00 83.4 '' '' -2004-07-03 00:00 82.2 '' '' -2004-07-04 00:00 82.1 '' '' -2004-07-05 00:00 80.9 '' '' -2004-07-06 00:00 81.6 '' '' -2004-07-07 00:00 81.9 '' '' -2004-07-08 00:00 84.6 '' '' -2004-07-09 00:00 89.6 '' '' -2004-07-10 00:00 96.4 '' '' -2004-07-11 00:00 107.9 '' '' -2004-07-12 00:00 129.2 '' '' -2004-07-13 00:00 131.6 '' '' -2004-07-14 00:00 142.6 '' '' -2004-07-15 00:00 150.5 '' '' -2004-07-16 00:00 151.3 '' '' -2004-07-17 00:00 154.1 '' '' -2004-07-18 00:00 160.2 '' '' -2004-07-19 00:00 175.8 '' '' -2004-07-20 00:00 180.8 '' '' -2004-07-21 00:00 177.7 '' '' -2004-07-22 00:00 178.4 '' '' -2004-07-23 00:00 170.4 '' '' -2004-07-24 00:00 151.8 '' '' -2004-07-25 00:00 143.9 '' '' -2004-07-26 00:00 132.0 '' '' -2004-07-27 00:00 121.8 '' '' -2004-07-28 00:00 103.8 '' '' -2004-07-29 00:00 102.8 '' '' -2004-07-30 00:00 91.4 '' '' -2004-07-31 00:00 89.0 '' '' -2004-08-01 00:00 85.8 '' '' -2004-08-02 00:00 87.0 '' '' -2004-08-03 00:00 90.1 '' '' -2004-08-04 00:00 87.9 '' '' -2004-08-05 00:00 91.5 '' '' -2004-08-06 00:00 93.6 '' '' -2004-08-07 00:00 97.3 '' '' -2004-08-08 00:00 107.7 '' '' -2004-08-09 00:00 117.0 '' '' -2004-08-10 00:00 124.7 '' '' -2004-08-11 00:00 134.3 '' '' -2004-08-12 00:00 151.1 '' '' -2004-08-13 00:00 152.5 '' '' -2004-08-14 00:00 153.1 '' '' -2004-08-15 00:00 142.4 '' '' -2004-08-16 00:00 137.0 '' '' -2004-08-17 00:00 138.3 '' '' -2004-08-18 00:00 143.3 '' '' -2004-08-19 00:00 123.5 '' '' -2004-08-20 00:00 124.2 '' '' -2004-08-21 00:00 122.8 '' '' -2004-08-22 00:00 117.8 '' '' -2004-08-23 00:00 111.9 '' '' -2004-08-24 00:00 107.2 '' '' -2004-08-25 00:00 102.5 '' '' -2004-08-26 00:00 99.5 '' '' -2004-08-27 00:00 92.3 '' '' -2004-08-28 00:00 88.9 '' '' -2004-08-29 00:00 87.7 '' '' -2004-08-30 00:00 91.6 '' '' -2004-08-31 00:00 89.7 '' '' -2004-09-01 00:00 91.5 '' '' -2004-09-02 00:00 95.6 '' '' -2004-09-03 00:00 98.3 '' '' -2004-09-04 00:00 100.9 '' '' -2004-09-05 00:00 104.8 '' '' -2004-09-06 00:00 108.2 '' '' -2004-09-07 00:00 120.7 '' '' -2004-09-08 00:00 126.3 '' '' -2004-09-09 00:00 132.8 '' '' -2004-09-10 00:00 131.8 '' '' -2004-09-11 00:00 117.9 '' '' -2004-09-12 00:00 116.0 '' '' -2004-09-13 00:00 119.1 '' '' -2004-09-14 00:00 116.0 '' '' -2004-09-15 00:00 110.8 '' '' -2004-09-16 00:00 109.4 '' '' -2004-09-17 00:00 105.5 '' '' -2004-09-18 00:00 103.6 '' '' -2004-09-19 00:00 106.1 '' '' -2004-09-20 00:00 101.3 '' '' -2004-09-21 00:00 95.6 '' '' -2004-09-22 00:00 92.0 '' '' -2004-09-23 00:00 90.8 '' '' -2004-09-24 00:00 89.9 '' '' -2004-09-25 00:00 89.9 '' '' -2004-09-26 00:00 89.9 '' '' -2004-09-27 00:00 90.2 '' '' -2004-09-28 00:00 90.2 '' '' -2004-09-29 00:00 90.0 '' '' -2004-09-30 00:00 88.4 '' '' -2004-10-01 00:00 88.1 '' '' -2004-10-02 00:00 88.1 '' '' -2004-10-03 00:00 89.1 '' '' -2004-10-04 00:00 90.7 '' '' -2004-10-05 00:00 90.8 '' '' -2004-10-06 00:00 92.0 '' '' -2004-10-07 00:00 93.7 '' '' -2004-10-08 00:00 90.4 '' '' -2004-10-09 00:00 87.7 '' '' -2004-10-10 00:00 88.7 '' '' -2004-10-11 00:00 86.6 '' '' -2004-10-12 00:00 87.2 '' '' -2004-10-13 00:00 86.7 '' '' -2004-10-14 00:00 90.2 '' '' -2004-10-15 00:00 88.6 '' '' -2004-10-16 00:00 91.1 '' '' -2004-10-17 00:00 91.2 '' '' -2004-10-18 00:00 95.5 '' '' -2004-10-19 00:00 98.2 '' '' -2004-10-20 00:00 110.3 '' '' -2004-10-21 00:00 111.0 '' '' -2004-10-22 00:00 121.2 '' '' -2004-10-23 00:00 130.2 '' '' -2004-10-24 00:00 138.7 '' '' -2004-10-25 00:00 137.9 '' '' -2004-10-26 00:00 135.0 '' '' -2004-10-27 00:00 127.8 '' '' -2004-10-28 00:00 134.0 '' '' -2004-10-29 00:00 128.8 '' '' -2004-10-30 00:00 134.4 '' '' -2004-10-31 00:00 137.1 '' '' -2004-11-01 00:00 133.4 '' '' -2004-11-02 00:00 131.0 '' '' -2004-11-03 00:00 133.7 '' '' -2004-11-04 00:00 133.7 '' '' -2004-11-05 00:00 138.8 '' '' -2004-11-06 00:00 126.5 '' '' -2004-11-07 00:00 127.2 '' '' -2004-11-08 00:00 121.7 '' '' -2004-11-09 00:00 138.1 '' '' -2004-11-10 00:00 102.6 '' '' -2004-11-11 00:00 93.0 '' '' -2004-11-12 00:00 94.0 '' '' -2004-11-13 00:00 94.4 '' '' -2004-11-14 00:00 98.1 '' '' -2004-11-15 00:00 103.3 '' '' -2004-11-16 00:00 104.2 '' '' -2004-11-17 00:00 102.5 '' '' -2004-11-18 00:00 101.6 '' '' -2004-11-19 00:00 100.9 '' '' -2004-11-20 00:00 96.9 '' '' -2004-11-21 00:00 98.5 '' '' -2004-11-22 00:00 103.7 '' '' -2004-11-23 00:00 104.2 '' '' -2004-11-24 00:00 104.5 '' '' -2004-11-25 00:00 106.6 '' '' -2004-11-26 00:00 108.2 '' '' -2004-11-27 00:00 107.4 '' '' -2004-11-28 00:00 109.8 '' '' -2004-11-29 00:00 108.4 '' '' -2004-11-30 00:00 107.5 '' '' -2004-12-01 00:00 107.8 '' '' -2004-12-02 00:00 102.6 '' '' -2004-12-03 00:00 97.9 '' '' -2004-12-04 00:00 94.6 '' '' -2004-12-05 00:00 93.1 '' '' -2004-12-06 00:00 90.4 '' '' -2004-12-07 00:00 87.1 '' '' -2004-12-08 00:00 93.6 '' '' -2004-12-09 00:00 84.7 '' '' -2004-12-10 00:00 82.3 '' '' -2004-12-11 00:00 87.1 '' '' -2004-12-12 00:00 87.7 '' '' -2004-12-13 00:00 87.0 '' '' -2004-12-14 00:00 86.5 '' '' -2004-12-15 00:00 86.5 '' '' -2004-12-16 00:00 88.4 '' '' -2004-12-17 00:00 90.2 '' '' -2004-12-18 00:00 92.1 '' '' -2004-12-19 00:00 94.0 '' '' -2004-12-20 00:00 95.8 '' '' -2004-12-21 00:00 97.7 '' '' -2004-12-22 00:00 95.6 '' '' -2004-12-23 00:00 93.2 '' '' -2004-12-24 00:00 94.0 '' '' -2004-12-25 00:00 90.0 '' '' -2004-12-26 00:00 88.7 '' '' -2004-12-27 00:00 93.7 '' '' -2004-12-28 00:00 101.7 '' '' -2004-12-29 00:00 95.3 '' '' -2004-12-30 00:00 96.7 '' '' -2004-12-31 00:00 95.2 '' '' -2005-01-01 00:00 95.6 '' '' -2005-01-02 00:00 96.7 '' '' -2005-01-03 00:00 91.0 '' '' -2005-01-04 00:00 85.1 '' '' -2005-01-05 00:00 84.1 '' '' -2005-01-06 00:00 80.4 '' '' -2005-01-07 00:00 80.7 '' '' -2005-01-08 00:00 84.5 '' '' -2005-01-09 00:00 84.6 '' '' -2005-01-10 00:00 87.1 '' '' -2005-01-11 00:00 91.1 '' '' -2005-01-12 00:00 98.8 '' '' -2005-01-13 00:00 111.9 '' '' -2005-01-14 00:00 125.6 '' '' -2005-01-15 00:00 140.2 '' '' -2005-01-16 00:00 139.8 '' '' -2005-01-17 00:00 133.1 '' '' -2005-01-18 00:00 120.3 '' '' -2005-01-19 00:00 128.3 '' '' -2005-01-20 00:00 118.8 '' '' -2005-01-21 00:00 109.9 '' '' -2005-01-22 00:00 99.1 '' '' -2005-01-23 00:00 92.8 '' '' -2005-01-24 00:00 91.7 '' '' -2005-01-25 00:00 91.2 '' '' -2005-01-26 00:00 86.6 '' '' -2005-01-27 00:00 84.3 '' '' -2005-01-28 00:00 82.4 '' '' -2005-01-29 00:00 83.9 '' '' -2005-01-30 00:00 82.9 '' '' -2005-01-31 00:00 83.6 '' '' -2005-02-01 00:00 81.3 '' '' -2005-02-02 00:00 79.4 '' '' -2005-02-03 00:00 80.7 '' '' -2005-02-04 00:00 79.8 '' '' -2005-02-05 00:00 92.0 '' '' -2005-02-06 00:00 94.3 '' '' -2005-02-07 00:00 100.3 '' '' -2005-02-08 00:00 105.4 '' '' -2005-02-09 00:00 105.8 '' '' -2005-02-10 00:00 111.1 '' '' -2005-02-11 00:00 111.2 '' '' -2005-02-12 00:00 113.5 '' '' -2005-02-13 00:00 112.7 '' '' -2005-02-14 00:00 115.2 '' '' -2005-02-15 00:00 118.7 '' '' -2005-02-16 00:00 110.2 '' '' -2005-02-17 00:00 108.8 '' '' -2005-02-18 00:00 101.8 '' '' -2005-02-19 00:00 96.3 '' '' -2005-02-20 00:00 93.6 '' '' -2005-02-21 00:00 92.5 '' '' -2005-02-22 00:00 90.4 '' '' -2005-02-23 00:00 82.8 '' '' -2005-02-24 00:00 78.6 '' '' -2005-02-25 00:00 76.7 '' '' -2005-02-26 00:00 75.1 '' '' -2005-02-27 00:00 74.4 '' '' -2005-02-28 00:00 73.6 '' '' -2005-03-01 00:00 72.4 '' '' -2005-03-02 00:00 73.4 '' '' -2005-03-03 00:00 75.7 '' '' -2005-03-04 00:00 77.7 '' '' -2005-03-05 00:00 79.9 '' '' -2005-03-06 00:00 82.3 '' '' -2005-03-07 00:00 85.7 '' '' -2005-03-08 00:00 92.2 '' '' -2005-03-09 00:00 98.5 '' '' -2005-03-10 00:00 100.3 '' '' -2005-03-11 00:00 103.6 '' '' -2005-03-12 00:00 108.8 '' '' -2005-03-13 00:00 112.5 '' '' -2005-03-14 00:00 110.3 '' '' -2005-03-15 00:00 107.0 '' '' -2005-03-16 00:00 103.6 '' '' -2005-03-17 00:00 100.7 '' '' -2005-03-18 00:00 95.7 '' '' -2005-03-19 00:00 92.2 '' '' -2005-03-20 00:00 88.3 '' '' -2005-03-21 00:00 89.2 '' '' -2005-03-22 00:00 86.7 '' '' -2005-03-23 00:00 87.1 '' '' -2005-03-24 00:00 86.6 '' '' -2005-03-25 00:00 81.7 '' '' -2005-03-26 00:00 77.4 '' '' -2005-03-27 00:00 78.1 '' '' -2005-03-28 00:00 79.4 '' '' -2005-03-29 00:00 78.6 '' '' -2005-03-30 00:00 77.5 '' '' -2005-03-31 00:00 76.5 '' '' -2005-04-01 00:00 78.2 '' '' -2005-04-02 00:00 80.2 '' '' -2005-04-03 00:00 81.1 '' '' -2005-04-04 00:00 84.9 '' '' -2005-04-05 00:00 88.5 '' '' -2005-04-06 00:00 88.2 '' '' -2005-04-07 00:00 88.0 '' '' -2005-04-08 00:00 87.9 '' '' -2005-04-09 00:00 88.8 '' '' -2005-04-10 00:00 88.6 '' '' -2005-04-11 00:00 87.9 '' '' -2005-04-12 00:00 85.3 '' '' -2005-04-13 00:00 84.0 '' '' -2005-04-14 00:00 86.0 '' '' -2005-04-15 00:00 85.5 '' '' -2005-04-16 00:00 83.6 '' '' -2005-04-17 00:00 84.2 '' '' -2005-04-18 00:00 82.0 '' '' -2005-04-19 00:00 78.9 '' '' -2005-04-20 00:00 77.8 '' '' -2005-04-21 00:00 77.9 '' '' -2005-04-22 00:00 78.1 '' '' -2005-04-23 00:00 80.2 '' '' -2005-04-24 00:00 83.2 '' '' -2005-04-25 00:00 87.1 '' '' -2005-04-26 00:00 92.1 '' '' -2005-04-27 00:00 96.6 '' '' -2005-04-28 00:00 99.4 '' '' -2005-04-29 00:00 106.5 '' '' -2005-04-30 00:00 108.0 '' '' -2005-05-01 00:00 113.4 '' '' -2005-05-02 00:00 114.0 '' '' -2005-05-03 00:00 114.2 '' '' -2005-05-04 00:00 110.6 '' '' -2005-05-05 00:00 111.0 '' '' -2005-05-06 00:00 112.4 '' '' -2005-05-07 00:00 101.8 '' '' -2005-05-08 00:00 103.2 '' '' -2005-05-09 00:00 112.2 '' '' -2005-05-10 00:00 121.6 '' '' -2005-05-11 00:00 127.9 '' '' -2005-05-12 00:00 119.9 '' '' -2005-05-13 00:00 128.6 '' '' -2005-05-14 00:00 101.7 '' '' -2005-05-15 00:00 105.2 '' '' -2005-05-16 00:00 101.4 '' '' -2005-05-17 00:00 92.0 '' '' -2005-05-18 00:00 85.8 '' '' -2005-05-19 00:00 86.7 '' '' -2005-05-20 00:00 85.6 '' '' -2005-05-21 00:00 83.9 '' '' -2005-05-22 00:00 84.2 '' '' -2005-05-23 00:00 85.5 '' '' -2005-05-24 00:00 87.4 '' '' -2005-05-25 00:00 86.0 '' '' -2005-05-26 00:00 92.8 '' '' -2005-05-27 00:00 98.1 '' '' -2005-05-28 00:00 95.1 '' '' -2005-05-29 00:00 95.3 '' '' -2005-05-30 00:00 97.5 '' '' -2005-05-31 00:00 99.0 '' '' -2005-06-01 00:00 96.9 '' '' -2005-06-02 00:00 96.0 '' '' -2005-06-03 00:00 98.0 '' '' -2005-06-04 00:00 99.8 '' '' -2005-06-05 00:00 108.6 '' '' -2005-06-06 00:00 109.2 '' '' -2005-06-07 00:00 112.4 '' '' -2005-06-08 00:00 119.3 '' '' -2005-06-09 00:00 119.7 '' '' -2005-06-10 00:00 117.9 '' '' -2005-06-11 00:00 111.4 '' '' -2005-06-12 00:00 106.3 '' '' -2005-06-13 00:00 94.7 '' '' -2005-06-14 00:00 96.8 '' '' -2005-06-15 00:00 97.5 '' '' -2005-06-16 00:00 101.3 '' '' -2005-06-17 00:00 93.7 '' '' -2005-06-18 00:00 92.9 '' '' -2005-06-19 00:00 89.8 '' '' -2005-06-20 00:00 88.9 '' '' -2005-06-21 00:00 85.5 '' '' -2005-06-22 00:00 82.1 '' '' -2005-06-23 00:00 80.1 '' '' -2005-06-24 00:00 79.2 '' '' -2005-06-25 00:00 79.3 '' '' -2005-06-26 00:00 81.3 '' '' -2005-06-27 00:00 80.0 '' '' -2005-06-28 00:00 82.6 '' '' -2005-06-29 00:00 91.2 '' '' -2005-06-30 00:00 104.8 '' '' -2005-07-01 00:00 118.5 '' '' -2005-07-02 00:00 128.0 '' '' -2005-07-03 00:00 134.1 '' '' -2005-07-04 00:00 127.8 '' '' -2005-07-05 00:00 131.0 '' '' -2005-07-06 00:00 127.2 '' '' -2005-07-07 00:00 129.1 '' '' -2005-07-08 00:00 114.2 '' '' -2005-07-09 00:00 110.2 '' '' -2005-07-10 00:00 105.2 '' '' -2005-07-11 00:00 96.4 '' '' -2005-07-12 00:00 99.4 '' '' -2005-07-13 00:00 96.2 '' '' -2005-07-14 00:00 92.9 '' '' -2005-07-15 00:00 90.1 '' '' -2005-07-16 00:00 78.8 '' '' -2005-07-17 00:00 76.5 '' '' -2005-07-18 00:00 74.4 '' '' -2005-07-19 00:00 73.5 '' '' -2005-07-20 00:00 74.4 '' '' -2005-07-21 00:00 75.2 '' '' -2005-07-22 00:00 75.9 '' '' -2005-07-23 00:00 82.7 '' '' -2005-07-24 00:00 82.8 '' '' -2005-07-25 00:00 86.5 '' '' -2005-07-26 00:00 89.2 '' '' -2005-07-27 00:00 93.4 '' '' -2005-07-28 00:00 98.7 '' '' -2005-07-29 00:00 106.9 '' '' -2005-07-30 00:00 108.2 '' '' -2005-07-31 00:00 113.1 '' '' -2005-08-01 00:00 114.6 '' '' -2005-08-02 00:00 113.5 '' '' -2005-08-03 00:00 112.2 '' '' -2005-08-04 00:00 109.2 '' '' -2005-08-05 00:00 101.7 '' '' -2005-08-06 00:00 96.1 '' '' -2005-08-07 00:00 94.9 '' '' -2005-08-08 00:00 88.9 '' '' -2005-08-09 00:00 84.7 '' '' -2005-08-10 00:00 78.3 '' '' -2005-08-11 00:00 77.9 '' '' -2005-08-12 00:00 78.3 '' '' -2005-08-13 00:00 77.4 '' '' -2005-08-14 00:00 76.7 '' '' -2005-08-15 00:00 77.7 '' '' -2005-08-16 00:00 77.7 '' '' -2005-08-17 00:00 78.9 '' '' -2005-08-18 00:00 84.7 '' '' -2005-08-19 00:00 95.3 '' '' -2005-08-20 00:00 100.4 '' '' -2005-08-21 00:00 100.8 '' '' -2005-08-22 00:00 160.9 '' '' -2005-08-23 00:00 114.8 '' '' -2005-08-24 00:00 100.7 '' '' -2005-08-25 00:00 94.4 '' '' -2005-08-26 00:00 95.2 '' '' -2005-08-27 00:00 94.0 '' '' -2005-08-28 00:00 91.6 '' '' -2005-08-29 00:00 90.9 '' '' -2005-08-30 00:00 87.6 '' '' -2005-08-31 00:00 85.6 '' '' -2005-09-01 00:00 80.6 '' '' -2005-09-02 00:00 78.5 '' '' -2005-09-03 00:00 75.4 '' '' -2005-09-04 00:00 75.8 '' '' -2005-09-05 00:00 76.2 '' '' -2005-09-06 00:00 84.7 '' '' -2005-09-07 00:00 118.8 '' '' -2005-09-08 00:00 95.5 '' '' -2005-09-09 00:00 106.5 '' '' -2005-09-10 00:00 117.6 '' '' -2005-09-11 00:00 111.1 '' '' -2005-09-12 00:00 119.5 '' '' -2005-09-13 00:00 305.6 '' '' -2005-09-14 00:00 117.9 '' '' -2005-09-15 00:00 120.6 '' '' -2005-09-16 00:00 135.5 '' '' -2005-09-17 00:00 104.9 '' '' -2005-09-18 00:00 103.2 '' '' -2005-09-19 00:00 91.9 '' '' -2005-09-20 00:00 88.5 '' '' -2005-09-21 00:00 86.7 '' '' -2005-09-22 00:00 84.3 '' '' -2005-09-23 00:00 83.3 '' '' -2005-09-24 00:00 81.9 '' '' -2005-09-25 00:00 81.4 '' '' -2005-09-26 00:00 81.7 '' '' -2005-09-27 00:00 77.2 '' '' -2005-09-28 00:00 74.9 '' '' -2005-09-29 00:00 74.0 '' '' -2005-09-30 00:00 72.4 '' '' -2005-10-01 00:00 72.3 '' '' -2005-10-02 00:00 75.0 '' '' -2005-10-03 00:00 74.4 '' '' -2005-10-04 00:00 82.7 '' '' -2005-10-05 00:00 81.3 '' '' -2005-10-06 00:00 79.4 '' '' -2005-10-07 00:00 78.7 '' '' -2005-10-08 00:00 78.0 '' '' -2005-10-09 00:00 78.7 '' '' -2005-10-10 00:00 78.8 '' '' -2005-10-11 00:00 77.3 '' '' -2005-10-12 00:00 76.5 '' '' -2005-10-13 00:00 77.6 '' '' -2005-10-14 00:00 78.0 '' '' -2005-10-15 00:00 79.1 '' '' -2005-10-16 00:00 78.7 '' '' -2005-10-17 00:00 77.5 '' '' -2005-10-18 00:00 77.7 '' '' -2005-10-19 00:00 77.2 '' '' -2005-10-20 00:00 76.0 '' '' -2005-10-21 00:00 74.6 '' '' -2005-10-22 00:00 74.0 '' '' -2005-10-23 00:00 73.4 '' '' -2005-10-24 00:00 72.5 '' '' -2005-10-25 00:00 72.1 '' '' -2005-10-26 00:00 71.2 '' '' -2005-10-27 00:00 70.7 '' '' -2005-10-28 00:00 72.1 '' '' -2005-10-29 00:00 73.1 '' '' -2005-10-30 00:00 74.5 '' '' -2005-10-31 00:00 76.7 '' '' -2005-11-01 00:00 76.1 '' '' -2005-11-02 00:00 76.8 '' '' -2005-11-03 00:00 75.5 '' '' -2005-11-04 00:00 76.1 '' '' -2005-11-05 00:00 77.9 '' '' -2005-11-06 00:00 80.3 '' '' -2005-11-07 00:00 78.0 '' '' -2005-11-08 00:00 77.9 '' '' -2005-11-09 00:00 76.6 '' '' -2005-11-10 00:00 76.4 '' '' -2005-11-11 00:00 77.0 '' '' -2005-11-12 00:00 81.4 '' '' -2005-11-13 00:00 86.0 '' '' -2005-11-14 00:00 90.4 '' '' -2005-11-15 00:00 97.8 '' '' -2005-11-16 00:00 91.8 '' '' -2005-11-17 00:00 98.2 '' '' -2005-11-18 00:00 98.8 '' '' -2005-11-19 00:00 99.6 '' '' -2005-11-20 00:00 94.1 '' '' -2005-11-21 00:00 92.4 '' '' -2005-11-22 00:00 90.3 '' '' -2005-11-23 00:00 87.5 '' '' -2005-11-24 00:00 84.4 '' '' -2005-11-25 00:00 77.9 '' '' -2005-11-26 00:00 78.7 '' '' -2005-11-27 00:00 78.6 '' '' -2005-11-28 00:00 79.7 '' '' -2005-11-29 00:00 82.4 '' '' -2005-11-30 00:00 92.0 '' '' -2005-12-01 00:00 95.5 '' '' -2005-12-02 00:00 103.3 '' '' -2005-12-03 00:00 98.4 '' '' -2005-12-04 00:00 92.5 '' '' -2005-12-05 00:00 89.0 '' '' -2005-12-06 00:00 86.5 '' '' -2005-12-07 00:00 86.3 '' '' -2005-12-08 00:00 86.9 '' '' -2005-12-09 00:00 86.4 '' '' -2005-12-10 00:00 88.7 '' '' -2005-12-11 00:00 90.2 '' '' -2005-12-12 00:00 85.6 '' '' -2005-12-13 00:00 85.2 '' '' -2005-12-14 00:00 86.8 '' '' -2005-12-15 00:00 84.2 '' '' -2005-12-16 00:00 83.1 '' '' -2005-12-17 00:00 82.5 '' '' -2005-12-18 00:00 82.8 '' '' -2005-12-19 00:00 86.6 '' '' -2005-12-20 00:00 84.9 '' '' -2005-12-21 00:00 83.7 '' '' -2005-12-22 00:00 84.8 '' '' -2005-12-23 00:00 90.1 '' '' -2005-12-24 00:00 88.9 '' '' -2005-12-25 00:00 88.8 '' '' -2005-12-26 00:00 89.5 '' '' -2005-12-27 00:00 89.2 '' '' -2005-12-28 00:00 86.1 '' '' -2005-12-29 00:00 87.4 '' '' -2005-12-30 00:00 86.9 '' '' -2005-12-31 00:00 84.5 '' '' -2006-01-01 00:00 84.5 '' '' -2006-01-02 00:00 81.7 '' '' -2006-01-03 00:00 82.1 '' '' -2006-01-04 00:00 81.2 '' '' -2006-01-05 00:00 80.6 '' '' -2006-01-06 00:00 79.3 '' '' -2006-01-07 00:00 76.6 '' '' -2006-01-08 00:00 75.6 '' '' -2006-01-09 00:00 75.0 '' '' -2006-01-10 00:00 75.2 '' '' -2006-01-11 00:00 74.7 '' '' -2006-01-12 00:00 74.0 '' '' -2006-01-13 00:00 74.0 '' '' -2006-01-14 00:00 74.9 '' '' -2006-01-15 00:00 78.3 '' '' -2006-01-16 00:00 81.1 '' '' -2006-01-17 00:00 79.8 '' '' -2006-01-18 00:00 82.9 '' '' -2006-01-19 00:00 85.8 '' '' -2006-01-20 00:00 87.9 '' '' -2006-01-21 00:00 90.9 '' '' -2006-01-22 00:00 89.9 '' '' -2006-01-23 00:00 89.6 '' '' -2006-01-24 00:00 89.8 '' '' -2006-01-25 00:00 86.3 '' '' -2006-01-26 00:00 84.2 '' '' -2006-01-27 00:00 81.0 '' '' -2006-01-28 00:00 77.6 '' '' -2006-01-29 00:00 77.2 '' '' -2006-01-30 00:00 76.5 '' '' -2006-01-31 00:00 75.3 '' '' -2006-02-01 00:00 75.3 '' '' -2006-02-02 00:00 75.1 '' '' -2006-02-03 00:00 76.4 '' '' -2006-02-04 00:00 74.9 '' '' -2006-02-05 00:00 74.2 '' '' -2006-02-06 00:00 72.9 '' '' -2006-02-07 00:00 72.0 '' '' -2006-02-08 00:00 72.0 '' '' -2006-02-09 00:00 72.8 '' '' -2006-02-10 00:00 73.2 '' '' -2006-02-11 00:00 74.1 '' '' -2006-02-12 00:00 74.1 '' '' -2006-02-13 00:00 74.4 '' '' -2006-02-14 00:00 75.4 '' '' -2006-02-15 00:00 76.6 '' '' -2006-02-16 00:00 77.3 '' '' -2006-02-17 00:00 77.3 '' '' -2006-02-18 00:00 76.7 '' '' -2006-02-19 00:00 74.8 '' '' -2006-02-20 00:00 74.5 '' '' -2006-02-21 00:00 74.2 '' '' -2006-02-22 00:00 74.4 '' '' -2006-02-23 00:00 73.6 '' '' -2006-02-24 00:00 74.4 '' '' -2006-02-25 00:00 74.5 '' '' -2006-02-26 00:00 75.0 '' '' -2006-02-27 00:00 75.5 '' '' -2006-02-28 00:00 75.7 '' '' -2006-03-01 00:00 75.6 '' '' -2006-03-02 00:00 74.7 '' '' -2006-03-03 00:00 74.2 '' '' -2006-03-04 00:00 73.8 '' '' -2006-03-05 00:00 73.0 '' '' -2006-03-06 00:00 72.5 '' '' -2006-03-07 00:00 73.3 '' '' -2006-03-08 00:00 71.3 '' '' -2006-03-09 00:00 71.8 '' '' -2006-03-10 00:00 71.2 '' '' -2006-03-11 00:00 73.1 '' '' -2006-03-12 00:00 72.3 '' '' -2006-03-13 00:00 71.7 '' '' -2006-03-14 00:00 72.8 '' '' -2006-03-15 00:00 73.4 '' '' -2006-03-16 00:00 71.7 '' '' -2006-03-17 00:00 71.3 '' '' -2006-03-18 00:00 71.7 '' '' -2006-03-19 00:00 74.6 '' '' -2006-03-20 00:00 76.2 '' '' -2006-03-21 00:00 76.1 '' '' -2006-03-22 00:00 75.4 '' '' -2006-03-23 00:00 76.1 '' '' -2006-03-24 00:00 75.4 '' '' -2006-03-25 00:00 75.2 '' '' -2006-03-26 00:00 73.3 '' '' -2006-03-27 00:00 74.0 '' '' -2006-03-28 00:00 79.0 '' '' -2006-03-29 00:00 81.5 '' '' -2006-03-30 00:00 83.7 '' '' -2006-03-31 00:00 86.1 '' '' -2006-04-01 00:00 86.9 '' '' -2006-04-02 00:00 91.1 '' '' -2006-04-03 00:00 100.4 '' '' -2006-04-04 00:00 99.6 '' '' -2006-04-05 00:00 99.1 '' '' -2006-04-06 00:00 99.1 '' '' -2006-04-07 00:00 94.7 '' '' -2006-04-08 00:00 91.3 '' '' -2006-04-09 00:00 89.5 '' '' -2006-04-10 00:00 89.1 '' '' -2006-04-11 00:00 90.1 '' '' -2006-04-12 00:00 81.6 '' '' -2006-04-13 00:00 80.5 '' '' -2006-04-14 00:00 79.4 '' '' -2006-04-15 00:00 78.9 '' '' -2006-04-16 00:00 77.0 '' '' -2006-04-17 00:00 78.5 '' '' -2006-04-18 00:00 77.5 '' '' -2006-04-19 00:00 76.5 '' '' -2006-04-20 00:00 79.3 '' '' -2006-04-21 00:00 80.0 '' '' -2006-04-22 00:00 83.2 '' '' -2006-04-23 00:00 87.7 '' '' -2006-04-24 00:00 93.9 '' '' -2006-04-25 00:00 96.3 '' '' -2006-04-26 00:00 101.3 '' '' -2006-04-27 00:00 102.0 '' '' -2006-04-28 00:00 101.5 '' '' -2006-04-29 00:00 102.7 '' '' -2006-04-30 00:00 101.4 '' '' -2006-05-01 00:00 94.8 '' '' -2006-05-02 00:00 90.9 '' '' -2006-05-03 00:00 90.4 '' '' -2006-05-04 00:00 93.4 '' '' -2006-05-05 00:00 88.2 '' '' -2006-05-06 00:00 88.6 '' '' -2006-05-07 00:00 87.8 '' '' -2006-05-08 00:00 86.3 '' '' -2006-05-09 00:00 84.2 '' '' -2006-05-10 00:00 79.8 '' '' -2006-05-11 00:00 77.9 '' '' -2006-05-12 00:00 77.3 '' '' -2006-05-13 00:00 75.0 '' '' -2006-05-14 00:00 73.6 '' '' -2006-05-15 00:00 73.2 '' '' -2006-05-16 00:00 73.1 '' '' -2006-05-17 00:00 73.6 '' '' -2006-05-18 00:00 75.0 '' '' -2006-05-19 00:00 77.1 '' '' -2006-05-20 00:00 78.0 '' '' -2006-05-21 00:00 79.4 '' '' -2006-05-22 00:00 85.1 '' '' -2006-05-23 00:00 86.3 '' '' -2006-05-24 00:00 85.9 '' '' -2006-05-25 00:00 85.9 '' '' -2006-05-26 00:00 83.8 '' '' -2006-05-27 00:00 85.2 '' '' -2006-05-28 00:00 87.0 '' '' -2006-05-29 00:00 83.3 '' '' -2006-05-30 00:00 82.3 '' '' -2006-05-31 00:00 80.6 '' '' -2006-06-01 00:00 79.4 '' '' -2006-06-02 00:00 77.5 '' '' -2006-06-03 00:00 78.1 '' '' -2006-06-04 00:00 77.8 '' '' -2006-06-05 00:00 80.2 '' '' -2006-06-06 00:00 80.3 '' '' -2006-06-07 00:00 85.2 '' '' -2006-06-08 00:00 82.5 '' '' -2006-06-09 00:00 80.0 '' '' -2006-06-10 00:00 78.5 '' '' -2006-06-11 00:00 76.7 '' '' -2006-06-12 00:00 76.5 '' '' -2006-06-13 00:00 79.5 '' '' -2006-06-14 00:00 77.7 '' '' -2006-06-15 00:00 78.8 '' '' -2006-06-16 00:00 77.7 '' '' -2006-06-17 00:00 75.6 '' '' -2006-06-18 00:00 75.7 '' '' -2006-06-19 00:00 75.7 '' '' -2006-06-20 00:00 75.3 '' '' -2006-06-21 00:00 75.1 '' '' -2006-06-22 00:00 74.4 '' '' -2006-06-23 00:00 74.1 '' '' -2006-06-24 00:00 76.1 '' '' -2006-06-25 00:00 76.5 '' '' -2006-06-26 00:00 79.0 '' '' -2006-06-27 00:00 81.2 '' '' -2006-06-28 00:00 86.3 '' '' -2006-06-29 00:00 88.4 '' '' -2006-06-30 00:00 89.0 '' '' -2006-07-01 00:00 88.4 '' '' -2006-07-02 00:00 90.0 '' '' -2006-07-03 00:00 88.8 '' '' -2006-07-04 00:00 95.1 '' '' -2006-07-05 00:00 87.5 '' '' -2006-07-06 00:00 87.9 '' '' -2006-07-07 00:00 82.6 '' '' -2006-07-08 00:00 80.0 '' '' -2006-07-09 00:00 77.1 '' '' -2006-07-10 00:00 75.2 '' '' -2006-07-11 00:00 73.6 '' '' -2006-07-12 00:00 72.9 '' '' -2006-07-13 00:00 72.2 '' '' -2006-07-14 00:00 73.3 '' '' -2006-07-15 00:00 72.6 '' '' -2006-07-16 00:00 73.2 '' '' -2006-07-17 00:00 73.3 '' '' -2006-07-18 00:00 73.6 '' '' -2006-07-19 00:00 73.4 '' '' -2006-07-20 00:00 74.5 '' '' -2006-07-21 00:00 75.0 '' '' -2006-07-22 00:00 75.9 '' '' -2006-07-23 00:00 78.9 '' '' -2006-07-24 00:00 79.5 '' '' -2006-07-25 00:00 77.9 '' '' -2006-07-26 00:00 77.0 '' '' -2006-07-27 00:00 76.7 '' '' -2006-07-28 00:00 74.9 '' '' -2006-07-29 00:00 75.2 '' '' -2006-07-30 00:00 76.2 '' '' -2006-07-31 00:00 74.6 '' '' -2006-08-01 00:00 74.9 '' '' -2006-08-02 00:00 74.3 '' '' -2006-08-03 00:00 73.4 '' '' -2006-08-04 00:00 71.6 '' '' -2006-08-05 00:00 71.5 '' '' -2006-08-06 00:00 71.5 '' '' -2006-08-07 00:00 71.8 '' '' -2006-08-08 00:00 73.4 '' '' -2006-08-09 00:00 76.1 '' '' -2006-08-10 00:00 82.5 '' '' -2006-08-11 00:00 86.2 '' '' -2006-08-12 00:00 87.0 '' '' -2006-08-13 00:00 88.1 '' '' -2006-08-14 00:00 88.6 '' '' -2006-08-15 00:00 87.8 '' '' -2006-08-16 00:00 103.2 '' '' -2006-08-17 00:00 88.0 '' '' -2006-08-18 00:00 90.6 '' '' -2006-08-19 00:00 90.9 '' '' -2006-08-20 00:00 90.2 '' '' -2006-08-21 00:00 89.8 '' '' -2006-08-22 00:00 82.7 '' '' -2006-08-23 00:00 80.1 '' '' -2006-08-24 00:00 79.9 '' '' -2006-08-25 00:00 78.9 '' '' -2006-08-26 00:00 77.3 '' '' -2006-08-27 00:00 80.2 '' '' -2006-08-28 00:00 78.0 '' '' -2006-08-29 00:00 74.4 '' '' -2006-08-30 00:00 75.7 '' '' -2006-08-31 00:00 84.7 '' '' -2006-09-01 00:00 78.3 '' '' -2006-09-02 00:00 76.9 '' '' -2006-09-03 00:00 77.8 '' '' -2006-09-04 00:00 80.3 '' '' -2006-09-05 00:00 81.7 '' '' -2006-09-06 00:00 85.3 '' '' -2006-09-07 00:00 88.1 '' '' -2006-09-08 00:00 88.5 '' '' -2006-09-09 00:00 86.7 '' '' -2006-09-10 00:00 88.5 '' '' -2006-09-11 00:00 85.7 '' '' -2006-09-12 00:00 85.1 '' '' -2006-09-13 00:00 83.9 '' '' -2006-09-14 00:00 83.8 '' '' -2006-09-15 00:00 81.0 '' '' -2006-09-16 00:00 80.1 '' '' -2006-09-17 00:00 78.8 '' '' -2006-09-18 00:00 75.1 '' '' -2006-09-19 00:00 74.0 '' '' -2006-09-20 00:00 71.5 '' '' -2006-09-21 00:00 72.0 '' '' -2006-09-22 00:00 72.9 '' '' -2006-09-23 00:00 70.9 '' '' -2006-09-24 00:00 70.3 '' '' -2006-09-25 00:00 70.6 '' '' -2006-09-26 00:00 71.0 '' '' -2006-09-27 00:00 72.4 '' '' -2006-09-28 00:00 73.3 '' '' -2006-09-29 00:00 76.8 '' '' -2006-09-30 00:00 77.9 '' '' -2006-10-01 00:00 78.6 '' '' -2006-10-02 00:00 78.0 '' '' -2006-10-03 00:00 76.7 '' '' -2006-10-04 00:00 76.7 '' '' -2006-10-05 00:00 77.3 '' '' -2006-10-06 00:00 76.3 '' '' -2006-10-07 00:00 76.4 '' '' -2006-10-08 00:00 75.1 '' '' -2006-10-09 00:00 74.8 '' '' -2006-10-10 00:00 75.0 '' '' -2006-10-11 00:00 73.3 '' '' -2006-10-12 00:00 73.3 '' '' -2006-10-13 00:00 72.9 '' '' -2006-10-14 00:00 72.0 '' '' -2006-10-15 00:00 70.7 '' '' -2006-10-16 00:00 69.1 '' '' -2006-10-17 00:00 69.1 '' '' -2006-10-18 00:00 69.0 '' '' -2006-10-19 00:00 69.0 '' '' -2006-10-20 00:00 70.4 '' '' -2006-10-21 00:00 74.0 '' '' -2006-10-22 00:00 75.1 '' '' -2006-10-23 00:00 75.7 '' '' -2006-10-24 00:00 74.0 '' '' -2006-10-25 00:00 73.9 '' '' -2006-10-26 00:00 71.0 '' '' -2006-10-27 00:00 71.1 '' '' -2006-10-28 00:00 73.7 '' '' -2006-10-29 00:00 72.3 '' '' -2006-10-30 00:00 74.6 '' '' -2006-10-31 00:00 78.9 '' '' -2006-11-01 00:00 85.3 '' '' -2006-11-02 00:00 86.8 '' '' -2006-11-03 00:00 86.0 '' '' -2006-11-04 00:00 84.0 '' '' -2006-11-05 00:00 83.2 '' '' -2006-11-06 00:00 82.1 '' '' -2006-11-07 00:00 85.6 '' '' -2006-11-08 00:00 84.8 '' '' -2006-11-09 00:00 87.7 '' '' -2006-11-10 00:00 89.3 '' '' -2006-11-11 00:00 95.0 '' '' -2006-11-12 00:00 94.7 '' '' -2006-11-13 00:00 93.2 '' '' -2006-11-14 00:00 92.5 '' '' -2006-11-15 00:00 94.0 '' '' -2006-11-16 00:00 92.0 '' '' -2006-11-17 00:00 87.4 '' '' -2006-11-18 00:00 86.8 '' '' -2006-11-19 00:00 82.9 '' '' -2006-11-20 00:00 78.6 '' '' -2006-11-21 00:00 75.6 '' '' -2006-11-22 00:00 74.6 '' '' -2006-11-23 00:00 74.9 '' '' -2006-11-24 00:00 75.5 '' '' -2006-11-25 00:00 76.5 '' '' -2006-11-26 00:00 76.2 '' '' -2006-11-27 00:00 80.2 '' '' -2006-11-28 00:00 83.2 '' '' -2006-11-29 00:00 82.7 '' '' -2006-11-30 00:00 81.8 '' '' -2006-12-01 00:00 81.8 '' '' -2006-12-02 00:00 84.8 '' '' -2006-12-03 00:00 89.7 '' '' -2006-12-04 00:00 94.5 '' '' -2006-12-05 00:00 99.4 '' '' -2006-12-06 00:00 110.2 '' '' -2006-12-07 00:00 121.0 '' '' -2006-12-08 00:00 93.1 '' '' -2006-12-09 00:00 89.6 '' '' -2006-12-10 00:00 87.3 '' '' -2006-12-11 00:00 89.4 '' '' -2006-12-12 00:00 101.0 '' '' -2006-12-13 00:00 91.7 '' '' -2006-12-14 00:00 91.4 '' '' -2006-12-15 00:00 85.4 '' '' -2006-12-16 00:00 80.0 '' '' -2006-12-17 00:00 79.5 '' '' -2006-12-18 00:00 73.0 '' '' -2006-12-19 00:00 72.0 '' '' -2006-12-20 00:00 70.3 '' '' -2006-12-21 00:00 71.6 '' '' -2006-12-22 00:00 72.2 '' '' -2006-12-23 00:00 71.2 '' '' -2006-12-24 00:00 71.9 '' '' -2006-12-25 00:00 73.9 '' '' -2006-12-26 00:00 72.5 '' '' -2006-12-27 00:00 70.9 '' '' -2006-12-28 00:00 73.8 '' '' -2006-12-29 00:00 75.8 '' '' -2006-12-30 00:00 78.2 '' '' -2006-12-31 00:00 82.3 '' '' -2007-01-01 00:00 85.5 '' '' -2007-01-02 00:00 88.6 '' '' -2007-01-03 00:00 84.8 '' '' -2007-01-04 00:00 88.0 '' '' -2007-01-05 00:00 86.5 '' '' -2007-01-06 00:00 85.6 '' '' -2007-01-07 00:00 85.3 '' '' -2007-01-08 00:00 85.7 '' '' -2007-01-09 00:00 89.1 '' '' -2007-01-10 00:00 83.3 '' '' -2007-01-11 00:00 81.2 '' '' -2007-01-12 00:00 81.0 '' '' -2007-01-13 00:00 78.7 '' '' -2007-01-14 00:00 79.4 '' '' -2007-01-15 00:00 79.3 '' '' -2007-01-16 00:00 76.1 '' '' -2007-01-17 00:00 75.6 '' '' -2007-01-18 00:00 74.4 '' '' -2007-01-19 00:00 73.9 '' '' -2007-01-20 00:00 76.3 '' '' -2007-01-21 00:00 76.1 '' '' -2007-01-22 00:00 76.0 '' '' -2007-01-23 00:00 76.8 '' '' -2007-01-24 00:00 77.9 '' '' -2007-01-25 00:00 77.5 '' '' -2007-01-26 00:00 77.3 '' '' -2007-01-27 00:00 78.0 '' '' -2007-01-28 00:00 79.3 '' '' -2007-01-29 00:00 84.1 '' '' -2007-01-30 00:00 84.9 '' '' -2007-01-31 00:00 86.6 '' '' -2007-02-01 00:00 87.3 '' '' -2007-02-02 00:00 87.7 '' '' -2007-02-03 00:00 84.8 '' '' -2007-02-04 00:00 81.3 '' '' -2007-02-05 00:00 80.7 '' '' -2007-02-06 00:00 79.6 '' '' -2007-02-07 00:00 79.8 '' '' -2007-02-08 00:00 76.3 '' '' -2007-02-09 00:00 74.6 '' '' -2007-02-10 00:00 73.9 '' '' -2007-02-11 00:00 72.8 '' '' -2007-02-12 00:00 71.8 '' '' -2007-02-13 00:00 70.9 '' '' -2007-02-14 00:00 70.9 '' '' -2007-02-15 00:00 71.8 '' '' -2007-02-16 00:00 72.9 '' '' -2007-02-17 00:00 73.5 '' '' -2007-02-18 00:00 74.1 '' '' -2007-02-19 00:00 73.2 '' '' -2007-02-20 00:00 73.1 '' '' -2007-02-21 00:00 73.2 '' '' -2007-02-22 00:00 73.9 '' '' -2007-02-23 00:00 73.6 '' '' -2007-02-24 00:00 73.9 '' '' -2007-02-25 00:00 75.1 '' '' -2007-02-26 00:00 73.9 '' '' -2007-02-27 00:00 73.4 '' '' -2007-02-28 00:00 74.4 '' '' -2007-03-01 00:00 73.4 '' '' -2007-03-02 00:00 74.2 '' '' -2007-03-03 00:00 72.0 '' '' -2007-03-04 00:00 71.3 '' '' -2007-03-05 00:00 70.8 '' '' -2007-03-06 00:00 70.8 '' '' -2007-03-07 00:00 71.8 '' '' -2007-03-08 00:00 71.4 '' '' -2007-03-09 00:00 70.6 '' '' -2007-03-10 00:00 70.2 '' '' -2007-03-11 00:00 70.1 '' '' -2007-03-12 00:00 70.3 '' '' -2007-03-13 00:00 70.6 '' '' -2007-03-14 00:00 69.2 '' '' -2007-03-15 00:00 68.5 '' '' -2007-03-16 00:00 68.0 '' '' -2007-03-17 00:00 68.6 '' '' -2007-03-18 00:00 69.8 '' '' -2007-03-19 00:00 69.5 '' '' -2007-03-20 00:00 72.0 '' '' -2007-03-21 00:00 72.3 '' '' -2007-03-22 00:00 72.0 '' '' -2007-03-23 00:00 72.0 '' '' -2007-03-24 00:00 72.4 '' '' -2007-03-25 00:00 73.3 '' '' -2007-03-26 00:00 73.5 '' '' -2007-03-27 00:00 73.0 '' '' -2007-03-28 00:00 74.3 '' '' -2007-03-29 00:00 73.6 '' '' -2007-03-30 00:00 73.9 '' '' -2007-03-31 00:00 73.1 '' '' -2007-04-01 00:00 71.6 '' '' -2007-04-02 00:00 71.1 '' '' -2007-04-03 00:00 70.8 '' '' -2007-04-04 00:00 70.8 '' '' -2007-04-05 00:00 71.0 '' '' -2007-04-06 00:00 71.1 '' '' -2007-04-07 00:00 71.4 '' '' -2007-04-08 00:00 71.3 '' '' -2007-04-09 00:00 70.2 '' '' -2007-04-10 00:00 69.7 '' '' -2007-04-11 00:00 69.5 '' '' -2007-04-12 00:00 68.6 '' '' -2007-04-13 00:00 68.6 '' '' -2007-04-14 00:00 68.6 '' '' -2007-04-15 00:00 69.8 '' '' -2007-04-16 00:00 69.8 '' '' -2007-04-17 00:00 69.8 '' '' -2007-04-18 00:00 69.3 '' '' -2007-04-19 00:00 68.9 '' '' -2007-04-20 00:00 69.1 '' '' -2007-04-21 00:00 69.4 '' '' -2007-04-22 00:00 69.7 '' '' -2007-04-23 00:00 69.8 '' '' -2007-04-24 00:00 74.0 '' '' -2007-04-25 00:00 77.4 '' '' -2007-04-26 00:00 81.5 '' '' -2007-04-27 00:00 83.8 '' '' -2007-04-28 00:00 86.1 '' '' -2007-04-29 00:00 86.0 '' '' -2007-04-30 00:00 88.2 '' '' -2007-05-01 00:00 87.6 '' '' -2007-05-02 00:00 88.8 '' '' -2007-05-03 00:00 84.4 '' '' -2007-05-04 00:00 83.9 '' '' -2007-05-05 00:00 82.4 '' '' -2007-05-06 00:00 79.4 '' '' -2007-05-07 00:00 77.1 '' '' -2007-05-08 00:00 74.7 '' '' -2007-05-09 00:00 73.5 '' '' -2007-05-10 00:00 72.6 '' '' -2007-05-11 00:00 72.9 '' '' -2007-05-12 00:00 72.9 '' '' -2007-05-13 00:00 75.0 '' '' -2007-05-14 00:00 74.4 '' '' -2007-05-15 00:00 78.5 '' '' -2007-05-16 00:00 78.9 '' '' -2007-05-17 00:00 78.3 '' '' -2007-05-18 00:00 77.6 '' '' -2007-05-19 00:00 76.6 '' '' -2007-05-20 00:00 75.9 '' '' -2007-05-21 00:00 75.0 '' '' -2007-05-22 00:00 73.7 '' '' -2007-05-23 00:00 71.9 '' '' -2007-05-24 00:00 71.7 '' '' -2007-05-25 00:00 69.9 '' '' -2007-05-26 00:00 69.5 '' '' -2007-05-27 00:00 68.8 '' '' -2007-05-28 00:00 70.5 '' '' -2007-05-29 00:00 71.5 '' '' -2007-05-30 00:00 72.6 '' '' -2007-05-31 00:00 76.7 '' '' -2007-06-01 00:00 81.6 '' '' -2007-06-02 00:00 85.6 '' '' -2007-06-03 00:00 89.5 '' '' -2007-06-04 00:00 88.2 '' '' -2007-06-05 00:00 83.6 '' '' -2007-06-06 00:00 84.7 '' '' -2007-06-07 00:00 85.7 '' '' -2007-06-08 00:00 86.8 '' '' -2007-06-09 00:00 81.0 '' '' -2007-06-10 00:00 78.2 '' '' -2007-06-11 00:00 75.6 '' '' -2007-06-12 00:00 72.6 '' '' -2007-06-13 00:00 73.1 '' '' -2007-06-14 00:00 70.6 '' '' -2007-06-15 00:00 71.3 '' '' -2007-06-16 00:00 70.2 '' '' -2007-06-17 00:00 68.9 '' '' -2007-06-18 00:00 68.8 '' '' -2007-06-19 00:00 68.5 '' '' -2007-06-20 00:00 67.8 '' '' -2007-06-21 00:00 67.6 '' '' -2007-06-22 00:00 67.5 '' '' -2007-06-23 00:00 68.1 '' '' -2007-06-24 00:00 69.1 '' '' -2007-06-25 00:00 69.8 '' '' -2007-06-26 00:00 72.8 '' '' -2007-06-27 00:00 75.7 '' '' -2007-06-28 00:00 77.4 '' '' -2007-06-29 00:00 77.8 '' '' -2007-06-30 00:00 76.4 '' '' -2007-07-01 00:00 76.8 '' '' -2007-07-02 00:00 75.1 '' '' -2007-07-03 00:00 74.2 '' '' -2007-07-04 00:00 74.9 '' '' -2007-07-05 00:00 73.9 '' '' -2007-07-06 00:00 73.5 '' '' -2007-07-07 00:00 75.5 '' '' -2007-07-08 00:00 77.6 '' '' -2007-07-09 00:00 79.7 '' '' -2007-07-10 00:00 80.8 '' '' -2007-07-11 00:00 81.1 '' '' -2007-07-12 00:00 79.5 '' '' -2007-07-13 00:00 80.6 '' '' -2007-07-14 00:00 78.2 '' '' -2007-07-15 00:00 77.1 '' '' -2007-07-16 00:00 75.3 '' '' -2007-07-17 00:00 74.7 '' '' -2007-07-18 00:00 71.8 '' '' -2007-07-19 00:00 70.5 '' '' -2007-07-20 00:00 69.5 '' '' -2007-07-21 00:00 68.6 '' '' -2007-07-22 00:00 68.3 '' '' -2007-07-23 00:00 69.3 '' '' -2007-07-24 00:00 70.2 '' '' -2007-07-25 00:00 70.8 '' '' -2007-07-26 00:00 70.6 '' '' -2007-07-27 00:00 70.9 '' '' -2007-07-28 00:00 72.1 '' '' -2007-07-29 00:00 71.1 '' '' -2007-07-30 00:00 71.0 '' '' -2007-07-31 00:00 70.1 '' '' -2007-08-01 00:00 70.4 '' '' -2007-08-02 00:00 71.5 '' '' -2007-08-03 00:00 72.4 '' '' -2007-08-04 00:00 71.4 '' '' -2007-08-05 00:00 70.9 '' '' -2007-08-06 00:00 72.0 '' '' -2007-08-07 00:00 71.0 '' '' -2007-08-08 00:00 71.0 '' '' -2007-08-09 00:00 69.3 '' '' -2007-08-10 00:00 69.3 '' '' -2007-08-11 00:00 69.5 '' '' -2007-08-12 00:00 70.0 '' '' -2007-08-13 00:00 69.5 '' '' -2007-08-14 00:00 70.3 '' '' -2007-08-15 00:00 69.3 '' '' -2007-08-16 00:00 69.0 '' '' -2007-08-17 00:00 69.3 '' '' -2007-08-18 00:00 69.6 '' '' -2007-08-19 00:00 69.4 '' '' -2007-08-20 00:00 70.7 '' '' -2007-08-21 00:00 70.9 '' '' -2007-08-22 00:00 71.6 '' '' -2007-08-23 00:00 72.4 '' '' -2007-08-24 00:00 73.2 '' '' -2007-08-25 00:00 73.1 '' '' -2007-08-26 00:00 71.6 '' '' -2007-08-27 00:00 70.7 '' '' -2007-08-28 00:00 71.6 '' '' -2007-08-29 00:00 71.0 '' '' -2007-08-30 00:00 73.0 '' '' -2007-08-31 00:00 72.2 '' '' -2007-09-01 00:00 72.1 '' '' -2007-09-02 00:00 70.6 '' '' -2007-09-03 00:00 69.1 '' '' -2007-09-04 00:00 69.4 '' '' -2007-09-05 00:00 68.8 '' '' -2007-09-06 00:00 67.8 '' '' -2007-09-07 00:00 68.2 '' '' -2007-09-08 00:00 67.6 '' '' -2007-09-09 00:00 67.7 '' '' -2007-09-10 00:00 67.9 '' '' -2007-09-11 00:00 67.0 '' '' -2007-09-12 00:00 66.7 '' '' -2007-09-13 00:00 67.2 '' '' -2007-09-14 00:00 67.6 '' '' -2007-09-15 00:00 68.5 '' '' -2007-09-16 00:00 67.8 '' '' -2007-09-17 00:00 67.6 '' '' -2007-09-18 00:00 67.1 '' '' -2007-09-19 00:00 67.4 '' '' -2007-09-20 00:00 67.4 '' '' -2007-09-21 00:00 67.4 '' '' -2007-09-22 00:00 67.2 '' '' -2007-09-23 00:00 66.8 '' '' -2007-09-24 00:00 66.5 '' '' -2007-09-25 00:00 66.6 '' '' -2007-09-26 00:00 66.8 '' '' -2007-09-27 00:00 67.4 '' '' -2007-09-28 00:00 67.4 '' '' -2007-09-29 00:00 67.8 '' '' -2007-09-30 00:00 65.1 '' '' -2007-10-01 00:00 67.8 '' '' -2007-10-02 00:00 66.5 '' '' -2007-10-03 00:00 67.3 '' '' -2007-10-04 00:00 67.4 '' '' -2007-10-05 00:00 67.8 '' '' -2007-10-06 00:00 68.9 '' '' -2007-10-07 00:00 68.1 '' '' -2007-10-08 00:00 67.9 '' '' -2007-10-09 00:00 68.6 '' '' -2007-10-10 00:00 67.9 '' '' -2007-10-11 00:00 68.6 '' '' -2007-10-12 00:00 68.3 '' '' -2007-10-13 00:00 67.3 '' '' -2007-10-14 00:00 66.7 '' '' -2007-10-15 00:00 66.8 '' '' -2007-10-16 00:00 66.7 '' '' -2007-10-17 00:00 67.0 '' '' -2007-10-18 00:00 67.7 '' '' -2007-10-19 00:00 66.8 '' '' -2007-10-20 00:00 66.3 '' '' -2007-10-21 00:00 66.6 '' '' -2007-10-22 00:00 66.0 '' '' -2007-10-23 00:00 66.4 '' '' -2007-10-24 00:00 66.8 '' '' -2007-10-25 00:00 66.3 '' '' -2007-10-26 00:00 66.7 '' '' -2007-10-27 00:00 66.2 '' '' -2007-10-28 00:00 66.6 '' '' -2007-10-29 00:00 66.2 '' '' -2007-10-30 00:00 66.3 '' '' -2007-10-31 00:00 66.1 '' '' -2007-11-01 00:00 66.3 '' '' -2007-11-02 00:00 66.8 '' '' -2007-11-03 00:00 66.5 '' '' -2007-11-04 00:00 66.5 '' '' -2007-11-05 00:00 66.2 '' '' -2007-11-06 00:00 67.3 '' '' -2007-11-07 00:00 66.9 '' '' -2007-11-08 00:00 68.4 '' '' -2007-11-09 00:00 68.2 '' '' -2007-11-10 00:00 68.4 '' '' -2007-11-11 00:00 67.7 '' '' -2007-11-12 00:00 68.3 '' '' -2007-11-13 00:00 68.4 '' '' -2007-11-14 00:00 68.9 '' '' -2007-11-15 00:00 67.7 '' '' -2007-11-16 00:00 69.1 '' '' -2007-11-17 00:00 68.2 '' '' -2007-11-18 00:00 67.2 '' '' -2007-11-19 00:00 67.9 '' '' -2007-11-20 00:00 68.0 '' '' -2007-11-21 00:00 67.4 '' '' -2007-11-22 00:00 68.0 '' '' -2007-11-23 00:00 68.3 '' '' -2007-11-24 00:00 69.5 '' '' -2007-11-25 00:00 68.8 '' '' -2007-11-26 00:00 69.6 '' '' -2007-11-27 00:00 69.6 '' '' -2007-11-28 00:00 69.3 '' '' -2007-11-29 00:00 69.3 '' '' -2007-11-30 00:00 69.2 '' '' -2007-12-01 00:00 69.9 '' '' -2007-12-02 00:00 71.0 '' '' -2007-12-03 00:00 70.5 '' '' -2007-12-04 00:00 71.5 '' '' -2007-12-05 00:00 73.1 '' '' -2007-12-06 00:00 75.9 '' '' -2007-12-07 00:00 79.8 '' '' -2007-12-08 00:00 84.4 '' '' -2007-12-09 00:00 86.2 '' '' -2007-12-10 00:00 84.3 '' '' -2007-12-11 00:00 90.5 '' '' -2007-12-12 00:00 91.1 '' '' -2007-12-13 00:00 90.9 '' '' -2007-12-14 00:00 89.0 '' '' -2007-12-15 00:00 86.1 '' '' -2007-12-16 00:00 79.1 '' '' -2007-12-17 00:00 76.9 '' '' -2007-12-18 00:00 74.4 '' '' -2007-12-19 00:00 72.1 '' '' -2007-12-20 00:00 70.2 '' '' -2007-12-21 00:00 68.7 '' '' -2007-12-22 00:00 69.1 '' '' -2007-12-23 00:00 69.1 '' '' -2007-12-24 00:00 69.1 '' '' -2007-12-25 00:00 69.7 '' '' -2007-12-26 00:00 70.2 '' '' -2007-12-27 00:00 69.7 '' '' -2007-12-28 00:00 69.5 '' '' -2007-12-29 00:00 70.3 '' '' -2007-12-30 00:00 72.5 '' '' -2007-12-31 00:00 74.2 '' '' -2008-01-01 00:00 76.7 '' '' -2008-01-02 00:00 77.0 '' '' -2008-01-03 00:00 76.7 '' '' -2008-01-04 00:00 76.4 '' '' -2008-01-05 00:00 77.1 '' '' -2008-01-06 00:00 76.6 '' '' -2008-01-07 00:00 75.2 '' '' -2008-01-08 00:00 73.0 '' '' -2008-01-09 00:00 74.0 '' '' -2008-01-10 00:00 73.2 '' '' -2008-01-11 00:00 73.5 '' '' -2008-01-12 00:00 73.2 '' '' -2008-01-13 00:00 72.9 '' '' -2008-01-14 00:00 73.1 '' '' -2008-01-15 00:00 71.3 '' '' -2008-01-16 00:00 70.6 '' '' -2008-01-17 00:00 71.3 '' '' -2008-01-18 00:00 68.8 '' '' -2008-01-19 00:00 68.6 '' '' -2008-01-20 00:00 68.0 '' '' -2008-01-21 00:00 69.3 '' '' -2008-01-22 00:00 68.1 '' '' -2008-01-23 00:00 68.4 '' '' -2008-01-24 00:00 69.1 '' '' -2008-01-25 00:00 68.9 '' '' -2008-01-26 00:00 70.3 '' '' -2008-01-27 00:00 69.8 '' '' -2008-01-28 00:00 69.2 '' '' -2008-01-29 00:00 69.5 '' '' -2008-01-30 00:00 70.6 '' '' -2008-01-31 00:00 69.9 '' '' -2008-02-01 00:00 69.0 '' '' -2008-02-02 00:00 69.8 '' '' -2008-02-03 00:00 69.5 '' '' -2008-02-04 00:00 69.3 '' '' -2008-02-05 00:00 68.5 '' '' -2008-02-06 00:00 69.6 '' '' -2008-02-07 00:00 68.9 '' '' -2008-02-08 00:00 69.0 '' '' -2008-02-09 00:00 70.3 '' '' -2008-02-10 00:00 70.7 '' '' -2008-02-11 00:00 70.2 '' '' -2008-02-12 00:00 70.3 '' '' -2008-02-13 00:00 68.7 '' '' -2008-02-14 00:00 68.8 '' '' -2008-02-15 00:00 68.0 '' '' -2008-02-16 00:00 68.6 '' '' -2008-02-17 00:00 69.4 '' '' -2008-02-18 00:00 69.5 '' '' -2008-02-19 00:00 70.0 '' '' -2008-02-20 00:00 69.3 '' '' -2008-02-21 00:00 70.3 '' '' -2008-02-22 00:00 70.8 '' '' -2008-02-23 00:00 70.1 '' '' -2008-02-24 00:00 69.3 '' '' -2008-02-25 00:00 69.9 '' '' -2008-02-26 00:00 69.3 '' '' -2008-02-27 00:00 69.4 '' '' -2008-02-28 00:00 68.7 '' '' -2008-02-29 00:00 68.5 '' '' -2008-03-01 00:00 67.4 '' '' -2008-03-02 00:00 68.0 '' '' -2008-03-03 00:00 67.3 '' '' -2008-03-04 00:00 67.2 '' '' -2008-03-05 00:00 68.2 '' '' -2008-03-06 00:00 69.3 '' '' -2008-03-07 00:00 69.5 '' '' -2008-03-08 00:00 68.8 '' '' -2008-03-09 00:00 68.5 '' '' -2008-03-10 00:00 69.4 '' '' -2008-03-11 00:00 69.3 '' '' -2008-03-12 00:00 68.5 '' '' -2008-03-13 00:00 68.7 '' '' -2008-03-14 00:00 69.1 '' '' -2008-03-15 00:00 68.8 '' '' -2008-03-16 00:00 69.6 '' '' -2008-03-17 00:00 69.1 '' '' -2008-03-18 00:00 69.0 '' '' -2008-03-19 00:00 68.4 '' '' -2008-03-20 00:00 67.9 '' '' -2008-03-21 00:00 67.7 '' '' -2008-03-22 00:00 69.1 '' '' -2008-03-23 00:00 71.5 '' '' -2008-03-24 00:00 79.0 '' '' -2008-03-25 00:00 88.2 '' '' -2008-03-26 00:00 81.2 '' '' -2008-03-27 00:00 84.5 '' '' -2008-03-28 00:00 82.6 '' '' -2008-03-29 00:00 82.4 '' '' -2008-03-30 00:00 80.4 '' '' -2008-03-31 00:00 79.1 '' '' -2008-04-01 00:00 77.7 '' '' -2008-04-02 00:00 75.9 '' '' -2008-04-03 00:00 76.4 '' '' -2008-04-04 00:00 73.1 '' '' -2008-04-05 00:00 71.1 '' '' -2008-04-06 00:00 69.5 '' '' -2008-04-07 00:00 69.3 '' '' -2008-04-08 00:00 70.0 '' '' -2008-04-09 00:00 68.2 '' '' -2008-04-10 00:00 68.1 '' '' -2008-04-11 00:00 67.4 '' '' -2008-04-12 00:00 68.5 '' '' -2008-04-13 00:00 69.7 '' '' -2008-04-14 00:00 69.0 '' '' -2008-04-15 00:00 69.7 '' '' -2008-04-16 00:00 70.0 '' '' -2008-04-17 00:00 69.8 '' '' -2008-04-18 00:00 70.8 '' '' -2008-04-19 00:00 71.7 '' '' -2008-04-20 00:00 71.5 '' '' -2008-04-21 00:00 71.6 '' '' -2008-04-22 00:00 72.1 '' '' -2008-04-23 00:00 71.5 '' '' -2008-04-24 00:00 71.2 '' '' -2008-04-25 00:00 70.7 '' '' -2008-04-26 00:00 69.9 '' '' -2008-04-27 00:00 69.0 '' '' -2008-04-28 00:00 69.4 '' '' -2008-04-29 00:00 69.6 '' '' -2008-04-30 00:00 68.0 '' '' -2008-05-01 00:00 69.6 '' '' -2008-05-02 00:00 69.2 '' '' -2008-05-03 00:00 68.5 '' '' -2008-05-04 00:00 69.5 '' '' -2008-05-05 00:00 68.8 '' '' -2008-05-06 00:00 68.4 '' '' -2008-05-07 00:00 67.8 '' '' -2008-05-08 00:00 67.7 '' '' -2008-05-09 00:00 68.6 '' '' -2008-05-10 00:00 68.7 '' '' -2008-05-11 00:00 69.4 '' '' -2008-05-12 00:00 69.5 '' '' -2008-05-13 00:00 69.7 '' '' -2008-05-14 00:00 70.5 '' '' -2008-05-15 00:00 72.7 '' '' -2008-05-16 00:00 73.2 '' '' -2008-05-17 00:00 72.8 '' '' -2008-05-18 00:00 73.3 '' '' -2008-05-19 00:00 70.5 '' '' -2008-05-20 00:00 70.2 '' '' -2008-05-21 00:00 70.8 '' '' -2008-05-22 00:00 71.0 '' '' -2008-05-23 00:00 69.6 '' '' -2008-05-24 00:00 70.3 '' '' -2008-05-25 00:00 70.1 '' '' -2008-05-26 00:00 69.8 '' '' -2008-05-27 00:00 69.7 '' '' -2008-05-28 00:00 69.6 '' '' -2008-05-29 00:00 69.9 '' '' -2008-05-30 00:00 69.0 '' '' -2008-05-31 00:00 68.8 '' '' -2008-06-01 00:00 68.5 '' '' -2008-06-02 00:00 69.0 '' '' -2008-06-03 00:00 68.2 '' '' -2008-06-04 00:00 67.1 '' '' -2008-06-05 00:00 68.4 '' '' -2008-06-06 00:00 67.9 '' '' -2008-06-07 00:00 67.6 '' '' -2008-06-08 00:00 66.9 '' '' -2008-06-09 00:00 68.0 '' '' -2008-06-10 00:00 68.2 '' '' -2008-06-11 00:00 67.8 '' '' -2008-06-12 00:00 69.2 '' '' -2008-06-13 00:00 68.6 '' '' -2008-06-14 00:00 69.2 '' '' -2008-06-15 00:00 68.6 '' '' -2008-06-16 00:00 67.4 '' '' -2008-06-17 00:00 68.1 '' '' -2008-06-18 00:00 67.5 '' '' -2008-06-19 00:00 67.0 '' '' -2008-06-20 00:00 67.3 '' '' -2008-06-21 00:00 67.0 '' '' -2008-06-22 00:00 67.5 '' '' -2008-06-23 00:00 67.5 '' '' -2008-06-24 00:00 68.0 '' '' -2008-06-25 00:00 68.1 '' '' -2008-06-26 00:00 67.5 '' '' -2008-06-27 00:00 68.3 '' '' -2008-06-28 00:00 68.1 '' '' -2008-06-29 00:00 68.8 '' '' -2008-06-30 00:00 68.9 '' '' -2008-07-01 00:00 67.8 '' '' -2008-07-02 00:00 68.2 '' '' -2008-07-03 00:00 67.7 '' '' -2008-07-04 00:00 67.6 '' '' -2008-07-05 00:00 67.3 '' '' -2008-07-06 00:00 68.3 '' '' -2008-07-07 00:00 67.7 '' '' -2008-07-08 00:00 67.8 '' '' -2008-07-09 00:00 68.3 '' '' -2008-07-10 00:00 67.6 '' '' -2008-07-11 00:00 67.9 '' '' -2008-07-12 00:00 67.1 '' '' -2008-07-13 00:00 67.4 '' '' -2008-07-14 00:00 67.8 '' '' -2008-07-15 00:00 67.9 '' '' -2008-07-16 00:00 66.7 '' '' -2008-07-17 00:00 67.1 '' '' -2008-07-18 00:00 67.4 '' '' -2008-07-19 00:00 68.5 '' '' -2008-07-20 00:00 68.0 '' '' -2008-07-21 00:00 68.4 '' '' -2008-07-22 00:00 68.0 '' '' -2008-07-23 00:00 67.6 '' '' -2008-07-24 00:00 67.5 '' '' -2008-07-25 00:00 67.9 '' '' -2008-07-26 00:00 68.1 '' '' -2008-07-27 00:00 68.4 '' '' -2008-07-28 00:00 68.3 '' '' -2008-07-29 00:00 68.1 '' '' -2008-07-30 00:00 68.5 '' '' -2008-07-31 00:00 67.5 '' '' -2008-08-01 00:00 68.1 '' '' -2008-08-02 00:00 68.2 '' '' -2008-08-03 00:00 67.4 '' '' -2008-08-04 00:00 68.2 '' '' -2008-08-05 00:00 68.4 '' '' -2008-08-06 00:00 68.9 '' '' -2008-08-07 00:00 68.0 '' '' -2008-08-08 00:00 67.3 '' '' -2008-08-09 00:00 67.3 '' '' -2008-08-10 00:00 67.4 '' '' -2008-08-11 00:00 67.5 '' '' -2008-08-12 00:00 66.9 '' '' -2008-08-13 00:00 67.0 '' '' -2008-08-14 00:00 67.6 '' '' -2008-08-15 00:00 67.0 '' '' -2008-08-16 00:00 67.8 '' '' -2008-08-17 00:00 68.2 '' '' -2008-08-18 00:00 67.8 '' '' -2008-08-19 00:00 68.9 '' '' -2008-08-20 00:00 67.4 '' '' -2008-08-21 00:00 68.7 '' '' -2008-08-22 00:00 69.1 '' '' -2008-08-23 00:00 69.4 '' '' -2008-08-24 00:00 68.6 '' '' -2008-08-25 00:00 68.0 '' '' -2008-08-26 00:00 68.3 '' '' -2008-08-27 00:00 68.0 '' '' -2008-08-28 00:00 67.4 '' '' -2008-08-29 00:00 68.1 '' '' -2008-08-30 00:00 68.4 '' '' -2008-08-31 00:00 67.9 '' '' -2008-09-01 00:00 67.0 '' '' -2008-09-02 00:00 67.2 '' '' -2008-09-03 00:00 67.3 '' '' -2008-09-04 00:00 67.0 '' '' -2008-09-05 00:00 66.3 '' '' -2008-09-06 00:00 66.8 '' '' -2008-09-07 00:00 67.6 '' '' -2008-09-08 00:00 68.0 '' '' -2008-09-09 00:00 68.0 '' '' -2008-09-10 00:00 68.1 '' '' -2008-09-11 00:00 67.8 '' '' -2008-09-12 00:00 67.1 '' '' -2008-09-13 00:00 67.2 '' '' -2008-09-14 00:00 67.6 '' '' -2008-09-15 00:00 68.2 '' '' -2008-09-16 00:00 70.1 '' '' -2008-09-17 00:00 67.7 '' '' -2008-09-18 00:00 67.8 '' '' -2008-09-19 00:00 68.4 '' '' -2008-09-20 00:00 68.4 '' '' -2008-09-21 00:00 68.4 '' '' -2008-09-22 00:00 69.6 '' '' -2008-09-23 00:00 69.8 '' '' -2008-09-24 00:00 68.8 '' '' -2008-09-25 00:00 68.6 '' '' -2008-09-26 00:00 68.0 '' '' -2008-09-27 00:00 67.6 '' '' -2008-09-28 00:00 67.3 '' '' -2008-09-29 00:00 67.0 '' '' -2008-09-30 00:00 66.4 '' '' -2008-10-01 00:00 65.9 '' '' -2008-10-02 00:00 66.4 '' '' -2008-10-03 00:00 67.2 '' '' -2008-10-04 00:00 66.6 '' '' -2008-10-05 00:00 67.4 '' '' -2008-10-06 00:00 67.2 '' '' -2008-10-07 00:00 66.6 '' '' -2008-10-08 00:00 67.5 '' '' -2008-10-09 00:00 68.5 '' '' -2008-10-10 00:00 68.7 '' '' -2008-10-11 00:00 70.5 '' '' -2008-10-12 00:00 69.7 '' '' -2008-10-13 00:00 70.5 '' '' -2008-10-14 00:00 70.0 '' '' -2008-10-15 00:00 70.5 '' '' -2008-10-16 00:00 71.4 '' '' -2008-10-17 00:00 69.5 '' '' -2008-10-18 00:00 68.6 '' '' -2008-10-19 00:00 69.0 '' '' -2008-10-20 00:00 68.6 '' '' -2008-10-21 00:00 68.2 '' '' -2008-10-22 00:00 67.0 '' '' -2008-10-23 00:00 66.5 '' '' -2008-10-24 00:00 66.7 '' '' -2008-10-25 00:00 66.7 '' '' -2008-10-26 00:00 66.0 '' '' -2008-10-27 00:00 66.1 '' '' -2008-10-28 00:00 66.2 '' '' -2008-10-29 00:00 65.8 '' '' -2008-10-30 00:00 65.9 '' '' -2008-10-31 00:00 67.1 '' '' -2008-11-01 00:00 65.6 '' '' -2008-11-02 00:00 68.0 '' '' -2008-11-03 00:00 68.3 '' '' -2008-11-04 00:00 66.8 '' '' -2008-11-05 00:00 66.5 '' '' -2008-11-06 00:00 67.3 '' '' -2008-11-07 00:00 66.5 '' '' -2008-11-08 00:00 67.0 '' '' -2008-11-09 00:00 67.1 '' '' -2008-11-10 00:00 67.9 '' '' -2008-11-11 00:00 70.0 '' '' -2008-11-12 00:00 69.5 '' '' -2008-11-13 00:00 67.6 '' '' -2008-11-14 00:00 66.8 '' '' -2008-11-15 00:00 66.7 '' '' -2008-11-16 00:00 66.2 '' '' -2008-11-17 00:00 66.2 '' '' -2008-11-18 00:00 68.2 '' '' -2008-11-19 00:00 67.7 '' '' -2008-11-20 00:00 67.9 '' '' -2008-11-21 00:00 66.8 '' '' -2008-11-22 00:00 67.3 '' '' -2008-11-23 00:00 67.2 '' '' -2008-11-24 00:00 66.1 '' '' -2008-11-25 00:00 66.0 '' '' -2008-11-26 00:00 66.5 '' '' -2008-11-27 00:00 66.4 '' '' -2008-11-28 00:00 65.2 '' '' -2008-11-29 00:00 66.4 '' '' -2008-11-30 00:00 66.5 '' '' -2008-12-01 00:00 66.2 '' '' -2008-12-02 00:00 67.0 '' '' -2008-12-03 00:00 67.2 '' '' -2008-12-04 00:00 67.6 '' '' -2008-12-05 00:00 66.8 '' '' -2008-12-06 00:00 67.1 '' '' -2008-12-07 00:00 67.0 '' '' -2008-12-08 00:00 66.4 '' '' -2008-12-09 00:00 66.7 '' '' -2008-12-10 00:00 68.7 '' '' -2008-12-11 00:00 68.0 '' '' -2008-12-12 00:00 68.8 '' '' -2008-12-13 00:00 67.5 '' '' -2008-12-14 00:00 66.6 '' '' -2008-12-15 00:00 66.7 '' '' -2008-12-16 00:00 67.2 '' '' -2008-12-17 00:00 66.6 '' '' -2008-12-18 00:00 66.2 '' '' -2008-12-19 00:00 67.0 '' '' -2008-12-20 00:00 66.9 '' '' -2008-12-21 00:00 66.2 '' '' -2008-12-22 00:00 65.5 '' '' -2008-12-23 00:00 66.3 '' '' -2008-12-24 00:00 67.1 '' '' -2008-12-25 00:00 67.0 '' '' -2008-12-26 00:00 67.0 '' '' -2008-12-27 00:00 67.1 '' '' -2008-12-28 00:00 67.5 '' '' -2008-12-29 00:00 67.5 '' '' -2008-12-30 00:00 66.3 '' '' -2008-12-31 00:00 67.0 '' '' -2009-01-01 00:00 66.6 '' '' -2009-01-02 00:00 67.6 '' '' -2009-01-03 00:00 67.2 '' '' -2009-01-04 00:00 66.6 '' '' -2009-01-05 00:00 66.9 '' '' -2009-01-06 00:00 66.5 '' '' -2009-01-07 00:00 66.7 '' '' -2009-01-08 00:00 66.5 '' '' -2009-01-09 00:00 67.4 '' '' -2009-01-10 00:00 68.5 '' '' -2009-01-11 00:00 67.7 '' '' -2009-01-12 00:00 67.0 '' '' -2009-01-13 00:00 68.2 '' '' -2009-01-14 00:00 68.9 '' '' -2009-01-15 00:00 68.8 '' '' -2009-01-16 00:00 68.5 '' '' -2009-01-17 00:00 69.6 '' '' -2009-01-18 00:00 68.8 '' '' -2009-01-19 00:00 68.6 '' '' -2009-01-20 00:00 68.1 '' '' -2009-01-21 00:00 67.2 '' '' -2009-01-22 00:00 66.9 '' '' -2009-01-23 00:00 67.8 '' '' -2009-01-24 00:00 66.6 '' '' -2009-01-25 00:00 67.7 '' '' -2009-01-26 00:00 67.8 '' '' -2009-01-27 00:00 67.6 '' '' -2009-01-28 00:00 67.4 '' '' -2009-01-29 00:00 67.3 '' '' -2009-01-30 00:00 67.1 '' '' -2009-01-31 00:00 67.4 '' '' -2009-02-01 00:00 67.5 '' '' -2009-02-02 00:00 67.1 '' '' -2009-02-03 00:00 67.3 '' '' -2009-02-04 00:00 67.5 '' '' -2009-02-05 00:00 68.1 '' '' -2009-02-06 00:00 68.2 '' '' -2009-02-07 00:00 69.2 '' '' -2009-02-08 00:00 69.3 '' '' -2009-02-09 00:00 68.8 '' '' -2009-02-10 00:00 65.8 '' '' -2009-02-11 00:00 68.5 '' '' -2009-02-12 00:00 68.0 '' '' -2009-02-13 00:00 68.3 '' '' -2009-02-14 00:00 68.4 '' '' -2009-02-15 00:00 67.9 '' '' -2009-02-16 00:00 67.9 '' '' -2009-02-17 00:00 69.0 '' '' -2009-02-18 00:00 68.2 '' '' -2009-02-19 00:00 67.4 '' '' -2009-02-20 00:00 67.6 '' '' -2009-02-21 00:00 69.1 '' '' -2009-02-22 00:00 68.8 '' '' -2009-02-23 00:00 69.3 '' '' -2009-02-24 00:00 69.5 '' '' -2009-02-25 00:00 69.3 '' '' -2009-02-26 00:00 68.6 '' '' -2009-02-27 00:00 67.6 '' '' -2009-02-28 00:00 69.3 '' '' -2009-03-01 00:00 68.1 '' '' -2009-03-02 00:00 68.0 '' '' -2009-03-03 00:00 68.0 '' '' -2009-03-04 00:00 68.6 '' '' -2009-03-05 00:00 68.1 '' '' -2009-03-06 00:00 68.0 '' '' -2009-03-07 00:00 68.0 '' '' -2009-03-08 00:00 67.9 '' '' -2009-03-09 00:00 67.2 '' '' -2009-03-10 00:00 67.8 '' '' -2009-03-11 00:00 68.0 '' '' -2009-03-12 00:00 67.8 '' '' -2009-03-13 00:00 67.4 '' '' -2009-03-14 00:00 67.7 '' '' -2009-03-15 00:00 67.7 '' '' -2009-03-16 00:00 68.7 '' '' -2009-03-17 00:00 68.2 '' '' -2009-03-18 00:00 67.8 '' '' -2009-03-19 00:00 68.5 '' '' -2009-03-20 00:00 68.2 '' '' -2009-03-21 00:00 69.6 '' '' -2009-03-22 00:00 68.2 '' '' -2009-03-23 00:00 67.6 '' '' -2009-03-24 00:00 68.7 '' '' -2009-03-25 00:00 68.2 '' '' -2009-03-26 00:00 68.8 '' '' -2009-03-27 00:00 71.4 '' '' -2009-03-28 00:00 70.4 '' '' -2009-03-29 00:00 70.7 '' '' -2009-03-30 00:00 70.8 '' '' -2009-03-31 00:00 71.1 '' '' -2009-04-01 00:00 70.7 '' '' -2009-04-02 00:00 70.6 '' '' -2009-04-03 00:00 70.4 '' '' -2009-04-04 00:00 70.1 '' '' -2009-04-05 00:00 70.5 '' '' -2009-04-06 00:00 68.9 '' '' -2009-04-07 00:00 70.4 '' '' -2009-04-08 00:00 70.2 '' '' -2009-04-09 00:00 70.3 '' '' -2009-04-10 00:00 69.7 '' '' -2009-04-11 00:00 69.7 '' '' -2009-04-12 00:00 69.7 '' '' -2009-04-13 00:00 68.8 '' '' -2009-04-14 00:00 69.9 '' '' -2009-04-15 00:00 69.9 '' '' -2009-04-16 00:00 70.5 '' '' -2009-04-17 00:00 70.4 '' '' -2009-04-18 00:00 70.5 '' '' -2009-04-19 00:00 70.8 '' '' -2009-04-20 00:00 70.4 '' '' -2009-04-21 00:00 71.8 '' '' -2009-04-22 00:00 71.9 '' '' -2009-04-23 00:00 71.4 '' '' -2009-04-24 00:00 70.5 '' '' -2009-04-25 00:00 70.3 '' '' -2009-04-26 00:00 70.1 '' '' -2009-04-27 00:00 68.6 '' '' -2009-04-28 00:00 69.8 '' '' -2009-04-29 00:00 70.5 '' '' -2009-04-30 00:00 70.5 '' '' -2009-05-01 00:00 69.6 '' '' -2009-05-02 00:00 69.4 '' '' -2009-05-03 00:00 69.7 '' '' -2009-05-04 00:00 69.2 '' '' -2009-05-05 00:00 69.2 '' '' -2009-05-06 00:00 70.0 '' '' -2009-05-07 00:00 70.8 '' '' -2009-05-08 00:00 72.2 '' '' -2009-05-09 00:00 73.7 '' '' -2009-05-10 00:00 73.2 '' '' -2009-05-11 00:00 73.3 '' '' -2009-05-12 00:00 75.5 '' '' -2009-05-13 00:00 75.3 '' '' -2009-05-14 00:00 75.5 '' '' -2009-05-15 00:00 75.4 '' '' -2009-05-16 00:00 75.8 '' '' -2009-05-17 00:00 75.7 '' '' -2009-05-18 00:00 74.6 '' '' -2009-05-19 00:00 74.0 '' '' -2009-05-20 00:00 73.2 '' '' -2009-05-21 00:00 73.5 '' '' -2009-05-22 00:00 73.9 '' '' -2009-05-23 00:00 72.2 '' '' -2009-05-24 00:00 71.0 '' '' -2009-05-25 00:00 70.7 '' '' -2009-05-26 00:00 69.9 '' '' -2009-05-27 00:00 68.5 '' '' -2009-05-28 00:00 69.6 '' '' -2009-05-29 00:00 70.1 '' '' -2009-05-30 00:00 70.4 '' '' -2009-05-31 00:00 70.4 '' '' -2009-06-01 00:00 74.6 '' '' -2009-06-02 00:00 74.0 '' '' -2009-06-03 00:00 74.6 '' '' -2009-06-04 00:00 73.1 '' '' -2009-06-05 00:00 72.2 '' '' -2009-06-06 00:00 71.1 '' '' -2009-06-07 00:00 71.0 '' '' -2009-06-08 00:00 71.1 '' '' -2009-06-09 00:00 71.2 '' '' -2009-06-10 00:00 71.3 '' '' -2009-06-11 00:00 71.4 '' '' -2009-06-12 00:00 71.2 '' '' -2009-06-13 00:00 70.4 '' '' -2009-06-14 00:00 70.3 '' '' -2009-06-15 00:00 69.5 '' '' -2009-06-16 00:00 70.5 '' '' -2009-06-17 00:00 70.0 '' '' -2009-06-18 00:00 69.9 '' '' -2009-06-19 00:00 69.2 '' '' -2009-06-20 00:00 68.8 '' '' -2009-06-21 00:00 69.2 '' '' -2009-06-22 00:00 70.2 '' '' -2009-06-23 00:00 70.2 '' '' -2009-06-24 00:00 69.1 '' '' -2009-06-25 00:00 70.3 '' '' -2009-06-26 00:00 69.0 '' '' -2009-06-27 00:00 69.3 '' '' -2009-06-28 00:00 69.2 '' '' -2009-06-29 00:00 70.8 '' '' -2009-06-30 00:00 70.5 '' '' -2009-07-01 00:00 69.8 '' '' -2009-07-02 00:00 68.7 '' '' -2009-07-03 00:00 69.5 '' '' -2009-07-04 00:00 73.4 '' '' -2009-07-05 00:00 74.0 '' '' -2009-07-06 00:00 71.2 '' '' -2009-07-07 00:00 73.7 '' '' -2009-07-08 00:00 73.1 '' '' -2009-07-09 00:00 71.4 '' '' -2009-07-10 00:00 70.1 '' '' -2009-07-11 00:00 70.5 '' '' -2009-07-12 00:00 70.3 '' '' -2009-07-13 00:00 69.5 '' '' -2009-07-14 00:00 68.8 '' '' -2009-07-15 00:00 68.7 '' '' -2009-07-16 00:00 68.9 '' '' -2009-07-17 00:00 68.4 '' '' -2009-07-18 00:00 69.2 '' '' -2009-07-19 00:00 69.9 '' '' -2009-07-20 00:00 70.4 '' '' -2009-07-21 00:00 69.9 '' '' -2009-07-22 00:00 70.0 '' '' -2009-07-23 00:00 69.9 '' '' -2009-07-24 00:00 70.5 '' '' -2009-07-25 00:00 71.2 '' '' -2009-07-26 00:00 69.8 '' '' -2009-07-27 00:00 70.5 '' '' -2009-07-28 00:00 70.9 '' '' -2009-07-29 00:00 70.4 '' '' -2009-07-30 00:00 70.1 '' '' -2009-07-31 00:00 70.8 '' '' -2009-08-01 00:00 70.2 '' '' -2009-08-02 00:00 70.1 '' '' -2009-08-03 00:00 69.3 '' '' -2009-08-04 00:00 67.8 '' '' -2009-08-05 00:00 68.1 '' '' -2009-08-06 00:00 68.7 '' '' -2009-08-07 00:00 69.7 '' '' -2009-08-08 00:00 68.8 '' '' -2009-08-09 00:00 69.1 '' '' -2009-08-10 00:00 69.0 '' '' -2009-08-11 00:00 68.4 '' '' -2009-08-12 00:00 68.2 '' '' -2009-08-13 00:00 68.9 '' '' -2009-08-14 00:00 69.4 '' '' -2009-08-15 00:00 69.8 '' '' -2009-08-16 00:00 70.6 '' '' -2009-08-17 00:00 69.8 '' '' -2009-08-18 00:00 69.1 '' '' -2009-08-19 00:00 68.7 '' '' -2009-08-20 00:00 69.2 '' '' -2009-08-21 00:00 67.9 '' '' -2009-08-22 00:00 68.1 '' '' -2009-08-23 00:00 68.8 '' '' -2009-08-24 00:00 69.1 '' '' -2009-08-25 00:00 68.5 '' '' -2009-08-26 00:00 68.7 '' '' -2009-08-27 00:00 69.1 '' '' -2009-08-28 00:00 69.3 '' '' -2009-08-29 00:00 69.3 '' '' -2009-08-30 00:00 68.5 '' '' -2009-08-31 00:00 69.6 '' '' -2009-09-01 00:00 70.4 '' '' -2009-09-02 00:00 69.4 '' '' -2009-09-03 00:00 69.8 '' '' -2009-09-04 00:00 69.5 '' '' -2009-09-05 00:00 69.6 '' '' -2009-09-06 00:00 70.3 '' '' -2009-09-07 00:00 69.8 '' '' -2009-09-08 00:00 70.0 '' '' -2009-09-09 00:00 70.2 '' '' -2009-09-10 00:00 70.2 '' '' -2009-09-11 00:00 70.2 '' '' -2009-09-12 00:00 69.8 '' '' -2009-09-13 00:00 69.9 '' '' -2009-09-14 00:00 69.8 '' '' -2009-09-15 00:00 69.9 '' '' -2009-09-16 00:00 69.5 '' '' -2009-09-17 00:00 69.8 '' '' -2009-09-18 00:00 69.6 '' '' -2009-09-19 00:00 71.1 '' '' -2009-09-20 00:00 71.9 '' '' -2009-09-21 00:00 72.5 '' '' -2009-09-22 00:00 75.3 '' '' -2009-09-23 00:00 76.6 '' '' -2009-09-24 00:00 75.0 '' '' -2009-09-25 00:00 72.8 '' '' -2009-09-26 00:00 72.2 '' '' -2009-09-27 00:00 72.6 '' '' -2009-09-28 00:00 73.5 '' '' -2009-09-29 00:00 72.5 '' '' -2009-09-30 00:00 72.1 '' '' -2009-10-01 00:00 72.2 '' '' -2009-10-02 00:00 71.7 '' '' -2009-10-03 00:00 71.7 '' '' -2009-10-04 00:00 71.1 '' '' -2009-10-05 00:00 69.9 '' '' -2009-10-06 00:00 68.8 '' '' -2009-10-07 00:00 68.4 '' '' -2009-10-08 00:00 68.6 '' '' -2009-10-09 00:00 69.0 '' '' -2009-10-10 00:00 69.8 '' '' -2009-10-11 00:00 70.1 '' '' -2009-10-12 00:00 69.8 '' '' -2009-10-13 00:00 69.4 '' '' -2009-10-14 00:00 70.5 '' '' -2009-10-15 00:00 70.0 '' '' -2009-10-16 00:00 69.2 '' '' -2009-10-17 00:00 70.2 '' '' -2009-10-18 00:00 69.5 '' '' -2009-10-19 00:00 70.3 '' '' -2009-10-20 00:00 70.3 '' '' -2009-10-21 00:00 70.6 '' '' -2009-10-22 00:00 70.9 '' '' -2009-10-23 00:00 72.1 '' '' -2009-10-24 00:00 74.7 '' '' -2009-10-25 00:00 74.7 '' '' -2009-10-26 00:00 80.3 '' '' -2009-10-27 00:00 80.4 '' '' -2009-10-28 00:00 78.9 '' '' -2009-10-29 00:00 75.6 '' '' -2009-10-30 00:00 74.2 '' '' -2009-10-31 00:00 74.0 '' '' -2009-11-01 00:00 71.2 '' '' -2009-11-02 00:00 70.3 '' '' -2009-11-03 00:00 70.3 '' '' -2009-11-04 00:00 70.2 '' '' -2009-11-05 00:00 69.3 '' '' -2009-11-06 00:00 69.6 '' '' -2009-11-07 00:00 69.3 '' '' -2009-11-08 00:00 69.6 '' '' -2009-11-09 00:00 70.7 '' '' -2009-11-10 00:00 71.3 '' '' -2009-11-11 00:00 71.0 '' '' -2009-11-12 00:00 71.7 '' '' -2009-11-13 00:00 72.6 '' '' -2009-11-14 00:00 73.2 '' '' -2009-11-15 00:00 73.5 '' '' -2009-11-16 00:00 74.5 '' '' -2009-11-17 00:00 75.4 '' '' -2009-11-18 00:00 74.4 '' '' -2009-11-19 00:00 74.9 '' '' -2009-11-20 00:00 74.4 '' '' -2009-11-21 00:00 74.0 '' '' -2009-11-22 00:00 74.4 '' '' -2009-11-23 00:00 73.8 '' '' -2009-11-24 00:00 72.8 '' '' -2009-11-25 00:00 72.3 '' '' -2009-11-26 00:00 72.7 '' '' -2009-11-27 00:00 71.7 '' '' -2009-11-28 00:00 70.9 '' '' -2009-11-29 00:00 70.1 '' '' -2009-11-30 00:00 70.4 '' '' -2009-12-01 00:00 70.2 '' '' -2009-12-02 00:00 69.4 '' '' -2009-12-03 00:00 69.6 '' '' -2009-12-04 00:00 69.4 '' '' -2009-12-05 00:00 69.6 '' '' -2009-12-06 00:00 69.8 '' '' -2009-12-07 00:00 69.0 '' '' -2009-12-08 00:00 70.0 '' '' -2009-12-09 00:00 70.8 '' '' -2009-12-10 00:00 71.6 '' '' -2009-12-11 00:00 69.9 '' '' -2009-12-12 00:00 72.2 '' '' -2009-12-13 00:00 73.1 '' '' -2009-12-14 00:00 76.2 '' '' -2009-12-15 00:00 79.0 '' '' -2009-12-16 00:00 80.6 '' '' -2009-12-17 00:00 84.2 '' '' -2009-12-18 00:00 81.6 '' '' -2009-12-19 00:00 79.1 '' '' -2009-12-20 00:00 81.0 '' '' -2009-12-21 00:00 80.0 '' '' -2009-12-22 00:00 79.5 '' '' -2009-12-23 00:00 75.9 '' '' -2009-12-24 00:00 74.6 '' '' -2009-12-25 00:00 73.5 '' '' -2009-12-26 00:00 73.4 '' '' -2009-12-27 00:00 74.3 '' '' -2009-12-28 00:00 73.3 '' '' -2009-12-29 00:00 72.7 '' '' -2009-12-30 00:00 74.3 '' '' -2009-12-31 00:00 77.2 '' '' -2010-01-01 00:00 72.7 '' '' -2010-01-02 00:00 75.4 '' '' -2010-01-03 00:00 73.8 '' '' -2010-01-04 00:00 70.6 '' '' -2010-01-05 00:00 74.3 '' '' -2010-01-06 00:00 74.7 '' '' -2010-01-07 00:00 75.5 '' '' -2010-01-08 00:00 74.9 '' '' -2010-01-09 00:00 79.0 '' '' -2010-01-10 00:00 81.6 '' '' -2010-01-11 00:00 86.3 '' '' -2010-01-12 00:00 90.2 '' '' -2010-01-13 00:00 87.5 '' '' -2010-01-14 00:00 87.0 '' '' -2010-01-15 00:00 82.6 '' '' -2010-01-16 00:00 81.4 '' '' -2010-01-17 00:00 79.9 '' '' -2010-01-18 00:00 78.9 '' '' -2010-01-19 00:00 81.6 '' '' -2010-01-20 00:00 79.1 '' '' -2010-01-21 00:00 80.0 '' '' -2010-01-22 00:00 79.8 '' '' -2010-01-23 00:00 82.0 '' '' -2010-01-24 00:00 81.9 '' '' -2010-01-25 00:00 78.7 '' '' -2010-01-26 00:00 77.3 '' '' -2010-01-27 00:00 75.4 '' '' -2010-01-28 00:00 74.0 '' '' -2010-01-29 00:00 71.1 '' '' -2010-01-30 00:00 72.8 '' '' -2010-01-31 00:00 73.0 '' '' -2010-02-01 00:00 73.1 '' '' -2010-02-02 00:00 73.0 '' '' -2010-02-03 00:00 72.3 '' '' -2010-02-04 00:00 71.8 '' '' -2010-02-05 00:00 75.6 '' '' -2010-02-06 00:00 85.1 '' '' -2010-02-07 00:00 87.8 '' '' -2010-02-08 00:00 91.2 '' '' -2010-02-09 00:00 89.0 '' '' -2010-02-10 00:00 88.9 '' '' -2010-02-11 00:00 91.8 '' '' -2010-02-12 00:00 93.1 '' '' -2010-02-13 00:00 91.8 '' '' -2010-02-14 00:00 87.2 '' '' -2010-02-15 00:00 85.5 '' '' -2010-02-16 00:00 84.7 '' '' -2010-02-17 00:00 84.8 '' '' -2010-02-18 00:00 83.1 '' '' -2010-02-19 00:00 81.8 '' '' -2010-02-20 00:00 82.0 '' '' -2010-02-21 00:00 81.7 '' '' -2010-02-22 00:00 81.9 '' '' -2010-02-23 00:00 82.4 '' '' -2010-02-24 00:00 80.9 '' '' -2010-02-25 00:00 81.1 '' '' -2010-02-26 00:00 78.9 '' '' -2010-02-27 00:00 77.1 '' '' -2010-02-28 00:00 76.6 '' '' -2010-03-01 00:00 76.5 '' '' -2010-03-02 00:00 78.0 '' '' -2010-03-03 00:00 79.0 '' '' -2010-03-04 00:00 80.0 '' '' -2010-03-05 00:00 78.2 '' '' -2010-03-06 00:00 77.1 '' '' -2010-03-07 00:00 75.4 '' '' -2010-03-08 00:00 75.1 '' '' -2010-03-09 00:00 76.8 '' '' -2010-03-10 00:00 79.3 '' '' -2010-03-11 00:00 83.1 '' '' -2010-03-12 00:00 88.5 '' '' -2010-03-13 00:00 90.7 '' '' -2010-03-14 00:00 88.3 '' '' -2010-03-15 00:00 85.5 '' '' -2010-03-16 00:00 84.3 '' '' -2010-03-17 00:00 85.9 '' '' -2010-03-18 00:00 85.0 '' '' -2010-03-19 00:00 83.7 '' '' -2010-03-20 00:00 82.8 '' '' -2010-03-21 00:00 84.1 '' '' -2010-03-22 00:00 81.9 '' '' -2010-03-23 00:00 83.3 '' '' -2010-03-24 00:00 83.9 '' '' -2010-03-25 00:00 87.1 '' '' -2010-03-26 00:00 85.5 '' '' -2010-03-27 00:00 87.8 '' '' -2010-03-28 00:00 85.7 '' '' -2010-03-29 00:00 82.9 '' '' -2010-03-30 00:00 82.6 '' '' -2010-03-31 00:00 80.9 '' '' -2010-04-01 00:00 79.1 '' '' -2010-04-02 00:00 76.1 '' '' -2010-04-03 00:00 77.4 '' '' -2010-04-04 00:00 78.7 '' '' -2010-04-05 00:00 79.3 '' '' -2010-04-06 00:00 77.7 '' '' -2010-04-07 00:00 76.5 '' '' -2010-04-08 00:00 75.9 '' '' -2010-04-09 00:00 76.3 '' '' -2010-04-10 00:00 75.3 '' '' -2010-04-11 00:00 74.9 '' '' -2010-04-12 00:00 74.9 '' '' -2010-04-13 00:00 75.3 '' '' -2010-04-14 00:00 75.6 '' '' -2010-04-15 00:00 75.0 '' '' -2010-04-16 00:00 75.4 '' '' -2010-04-17 00:00 74.5 '' '' -2010-04-18 00:00 75.3 '' '' -2010-04-19 00:00 76.1 '' '' -2010-04-20 00:00 76.4 '' '' -2010-04-21 00:00 76.9 '' '' -2010-04-22 00:00 76.9 '' '' -2010-04-23 00:00 75.8 '' '' -2010-04-24 00:00 75.0 '' '' -2010-04-25 00:00 76.4 '' '' -2010-04-26 00:00 77.0 '' '' -2010-04-27 00:00 75.7 '' '' -2010-04-28 00:00 77.2 '' '' -2010-04-29 00:00 77.3 '' '' -2010-04-30 00:00 79.8 '' '' -2010-05-01 00:00 79.0 '' '' -2010-05-02 00:00 80.8 '' '' -2010-05-03 00:00 81.6 '' '' -2010-05-04 00:00 83.1 '' '' -2010-05-05 00:00 84.7 '' '' -2010-05-06 00:00 80.5 '' '' -2010-05-07 00:00 80.5 '' '' -2010-05-08 00:00 80.3 '' '' -2010-05-09 00:00 76.9 '' '' -2010-05-10 00:00 75.1 '' '' -2010-05-11 00:00 75.0 '' '' -2010-05-12 00:00 72.7 '' '' -2010-05-13 00:00 70.9 '' '' -2010-05-14 00:00 71.2 '' '' -2010-05-15 00:00 71.8 '' '' -2010-05-16 00:00 70.0 '' '' -2010-05-17 00:00 70.8 '' '' -2010-05-18 00:00 70.3 '' '' -2010-05-19 00:00 70.2 '' '' -2010-05-20 00:00 70.4 '' '' -2010-05-21 00:00 72.6 '' '' -2010-05-22 00:00 74.3 '' '' -2010-05-23 00:00 76.4 '' '' -2010-05-24 00:00 74.4 '' '' -2010-05-25 00:00 75.1 '' '' -2010-05-26 00:00 74.3 '' '' -2010-05-27 00:00 74.6 '' '' -2010-05-28 00:00 75.2 '' '' -2010-05-29 00:00 75.7 '' '' -2010-05-30 00:00 75.0 '' '' -2010-05-31 00:00 74.1 '' '' -2010-06-01 00:00 74.8 '' '' -2010-06-02 00:00 76.1 '' '' -2010-06-03 00:00 76.8 '' '' -2010-06-04 00:00 74.0 '' '' -2010-06-05 00:00 72.4 '' '' -2010-06-06 00:00 70.0 '' '' -2010-06-07 00:00 70.6 '' '' -2010-06-08 00:00 74.0 '' '' -2010-06-09 00:00 73.7 '' '' -2010-06-10 00:00 75.2 '' '' -2010-06-11 00:00 76.9 '' '' -2010-06-12 00:00 78.6 '' '' -2010-06-13 00:00 78.7 '' '' -2010-06-14 00:00 75.1 '' '' -2010-06-15 00:00 72.3 '' '' -2010-06-16 00:00 73.9 '' '' -2010-06-17 00:00 72.7 '' '' -2010-06-18 00:00 72.8 '' '' -2010-06-19 00:00 71.2 '' '' -2010-06-20 00:00 72.3 '' '' -2010-06-21 00:00 74.3 '' '' -2010-06-22 00:00 75.7 '' '' -2010-06-23 00:00 76.5 '' '' -2010-06-24 00:00 76.9 '' '' -2010-06-25 00:00 76.9 '' '' -2010-06-26 00:00 76.9 '' '' -2010-06-27 00:00 75.3 '' '' -2010-06-28 00:00 76.4 '' '' -2010-06-29 00:00 76.0 '' '' -2010-06-30 00:00 76.3 '' '' -2010-07-01 00:00 75.5 '' '' -2010-07-02 00:00 75.9 '' '' -2010-07-03 00:00 74.8 '' '' -2010-07-04 00:00 74.0 '' '' -2010-07-05 00:00 75.2 '' '' -2010-07-06 00:00 75.2 '' '' -2010-07-07 00:00 76.6 '' '' -2010-07-08 00:00 78.2 '' '' -2010-07-09 00:00 82.7 '' '' -2010-07-10 00:00 82.6 '' '' -2010-07-11 00:00 85.4 '' '' -2010-07-12 00:00 82.6 '' '' -2010-07-13 00:00 81.1 '' '' -2010-07-14 00:00 80.3 '' '' -2010-07-15 00:00 78.4 '' '' -2010-07-16 00:00 79.1 '' '' -2010-07-17 00:00 81.3 '' '' -2010-07-18 00:00 79.4 '' '' -2010-07-19 00:00 82.5 '' '' -2010-07-20 00:00 89.9 '' '' -2010-07-21 00:00 92.0 '' '' -2010-07-22 00:00 90.5 '' '' -2010-07-23 00:00 89.2 '' '' -2010-07-24 00:00 87.9 '' '' -2010-07-25 00:00 87.9 '' '' -2010-07-26 00:00 87.1 '' '' -2010-07-27 00:00 85.2 '' '' -2010-07-28 00:00 88.0 '' '' -2010-07-29 00:00 87.2 '' '' -2010-07-30 00:00 85.7 '' '' -2010-07-31 00:00 83.9 '' '' -2010-08-01 00:00 82.1 '' '' -2010-08-02 00:00 81.5 '' '' -2010-08-03 00:00 83.0 '' '' -2010-08-04 00:00 83.2 '' '' -2010-08-05 00:00 85.1 '' '' -2010-08-06 00:00 84.4 '' '' -2010-08-07 00:00 93.1 '' '' -2010-08-08 00:00 84.9 '' '' -2010-08-09 00:00 86.5 '' '' -2010-08-10 00:00 85.8 '' '' -2010-08-11 00:00 88.1 '' '' -2010-08-12 00:00 86.0 '' '' -2010-08-13 00:00 86.0 '' '' -2010-08-14 00:00 87.4 '' '' -2010-08-15 00:00 87.8 '' '' -2010-08-16 00:00 86.9 '' '' -2010-08-17 00:00 83.1 '' '' -2010-08-18 00:00 81.8 '' '' -2010-08-19 00:00 79.8 '' '' -2010-08-20 00:00 78.9 '' '' -2010-08-21 00:00 77.3 '' '' -2010-08-22 00:00 76.3 '' '' -2010-08-23 00:00 76.5 '' '' -2010-08-24 00:00 75.2 '' '' -2010-08-25 00:00 75.1 '' '' -2010-08-26 00:00 75.0 '' '' -2010-08-27 00:00 74.8 '' '' -2010-08-28 00:00 73.3 '' '' -2010-08-29 00:00 75.4 '' '' -2010-08-30 00:00 76.4 '' '' -2010-08-31 00:00 76.0 '' '' -2010-09-01 00:00 77.7 '' '' -2010-09-02 00:00 78.4 '' '' -2010-09-03 00:00 78.5 '' '' -2010-09-04 00:00 83.6 '' '' -2010-09-05 00:00 83.5 '' '' -2010-09-06 00:00 81.0 '' '' -2010-09-07 00:00 77.3 '' '' -2010-09-08 00:00 75.6 '' '' -2010-09-09 00:00 74.7 '' '' -2010-09-10 00:00 76.4 '' '' -2010-09-11 00:00 79.1 '' '' -2010-09-12 00:00 79.3 '' '' -2010-09-13 00:00 80.4 '' '' -2010-09-14 00:00 81.6 '' '' -2010-09-15 00:00 82.1 '' '' -2010-09-16 00:00 83.3 '' '' -2010-09-17 00:00 83.0 '' '' -2010-09-18 00:00 82.9 '' '' -2010-09-19 00:00 81.9 '' '' -2010-09-20 00:00 83.3 '' '' -2010-09-21 00:00 85.2 '' '' -2010-09-22 00:00 85.4 '' '' -2010-09-23 00:00 84.9 '' '' -2010-09-24 00:00 83.1 '' '' -2010-09-25 00:00 83.4 '' '' -2010-09-26 00:00 84.3 '' '' -2010-09-27 00:00 83.4 '' '' -2010-09-28 00:00 83.5 '' '' -2010-09-29 00:00 91.0 '' '' -2010-09-30 00:00 90.2 '' '' -2010-10-01 00:00 86.9 '' '' -2010-10-02 00:00 85.1 '' '' -2010-10-03 00:00 80.1 '' '' -2010-10-04 00:00 76.1 '' '' -2010-10-05 00:00 75.4 '' '' -2010-10-06 00:00 74.2 '' '' -2010-10-07 00:00 75.0 '' '' -2010-10-08 00:00 74.7 '' '' -2010-10-09 00:00 76.2 '' '' -2010-10-10 00:00 75.7 '' '' -2010-10-11 00:00 75.0 '' '' -2010-10-12 00:00 74.9 '' '' -2010-10-13 00:00 77.7 '' '' -2010-10-14 00:00 79.9 '' '' -2010-10-15 00:00 81.7 '' '' -2010-10-16 00:00 86.3 '' '' -2010-10-17 00:00 83.0 '' '' -2010-10-18 00:00 89.9 '' '' -2010-10-19 00:00 85.9 '' '' -2010-10-20 00:00 83.2 '' '' -2010-10-21 00:00 82.7 '' '' -2010-10-22 00:00 81.4 '' '' -2010-10-23 00:00 83.4 '' '' -2010-10-24 00:00 81.2 '' '' -2010-10-25 00:00 85.2 '' '' -2010-10-26 00:00 85.1 '' '' -2010-10-27 00:00 86.5 '' '' -2010-10-28 00:00 85.3 '' '' -2010-10-29 00:00 84.5 '' '' -2010-10-30 00:00 83.6 '' '' -2010-10-31 00:00 80.0 '' '' -2010-11-01 00:00 77.9 '' '' -2010-11-02 00:00 77.7 '' '' -2010-11-03 00:00 77.2 '' '' -2010-11-04 00:00 77.8 '' '' -2010-11-05 00:00 81.6 '' '' -2010-11-06 00:00 87.1 '' '' -2010-11-07 00:00 83.5 '' '' -2010-11-08 00:00 82.2 '' '' -2010-11-09 00:00 82.5 '' '' -2010-11-10 00:00 83.9 '' '' -2010-11-11 00:00 82.8 '' '' -2010-11-12 00:00 83.7 '' '' -2010-11-13 00:00 83.6 '' '' -2010-11-14 00:00 84.6 '' '' -2010-11-15 00:00 88.8 '' '' -2010-11-16 00:00 89.8 '' '' -2010-11-17 00:00 89.1 '' '' -2010-11-18 00:00 84.5 '' '' -2010-11-19 00:00 82.0 '' '' -2010-11-20 00:00 77.9 '' '' -2010-11-21 00:00 75.8 '' '' -2010-11-22 00:00 72.9 '' '' -2010-11-23 00:00 73.4 '' '' -2010-11-24 00:00 73.9 '' '' -2010-11-25 00:00 75.9 '' '' -2010-11-26 00:00 74.2 '' '' -2010-11-27 00:00 74.5 '' '' -2010-11-28 00:00 77.9 '' '' -2010-11-29 00:00 80.2 '' '' -2010-11-30 00:00 84.0 '' '' -2010-12-01 00:00 84.1 '' '' -2010-12-02 00:00 84.1 '' '' -2010-12-03 00:00 84.4 '' '' -2010-12-04 00:00 84.9 '' '' -2010-12-05 00:00 85.4 '' '' -2010-12-06 00:00 85.9 '' '' -2010-12-07 00:00 84.5 '' '' -2010-12-08 00:00 84.6 '' '' -2010-12-09 00:00 84.2 '' '' -2010-12-10 00:00 85.8 '' '' -2010-12-11 00:00 84.3 '' '' -2010-12-12 00:00 86.7 '' '' -2010-12-13 00:00 85.0 '' '' -2010-12-14 00:00 87.5 '' '' -2010-12-15 00:00 84.2 '' '' -2010-12-16 00:00 81.4 '' '' -2010-12-17 00:00 79.1 '' '' -2010-12-18 00:00 78.0 '' '' -2010-12-19 00:00 78.3 '' '' -2010-12-20 00:00 75.4 '' '' -2010-12-21 00:00 75.3 '' '' -2010-12-22 00:00 75.2 '' '' -2010-12-23 00:00 77.5 '' '' -2010-12-24 00:00 76.1 '' '' -2010-12-25 00:00 76.8 '' '' -2010-12-26 00:00 77.9 '' '' -2010-12-27 00:00 77.4 '' '' -2010-12-28 00:00 78.0 '' '' -2010-12-29 00:00 79.9 '' '' -2010-12-30 00:00 80.2 '' '' -2010-12-31 00:00 87.9 '' '' -2011-01-01 00:00 88.0 '' '' -2011-01-02 00:00 88.1 '' '' -2011-01-03 00:00 89.1 '' '' -2011-01-04 00:00 87.6 '' '' -2011-01-05 00:00 84.8 '' '' -2011-01-06 00:00 83.9 '' '' -2011-01-07 00:00 83.5 '' '' -2011-01-08 00:00 82.0 '' '' -2011-01-09 00:00 80.0 '' '' -2011-01-10 00:00 80.6 '' '' -2011-01-11 00:00 79.9 '' '' -2011-01-12 00:00 77.4 '' '' -2011-01-13 00:00 76.9 '' '' -2011-01-14 00:00 76.7 '' '' -2011-01-15 00:00 77.6 '' '' -2011-01-16 00:00 77.8 '' '' -2011-01-17 00:00 79.1 '' '' -2011-01-18 00:00 78.4 '' '' -2011-01-19 00:00 78.2 '' '' -2011-01-20 00:00 79.7 '' '' -2011-01-21 00:00 84.8 '' '' -2011-01-22 00:00 84.9 '' '' -2011-01-23 00:00 81.7 '' '' -2011-01-24 00:00 79.9 '' '' -2011-01-25 00:00 78.0 '' '' -2011-01-26 00:00 77.6 '' '' -2011-01-27 00:00 78.1 '' '' -2011-01-28 00:00 78.1 '' '' -2011-01-29 00:00 79.0 '' '' -2011-01-30 00:00 80.2 '' '' -2011-01-31 00:00 78.9 '' '' -2011-02-01 00:00 77.6 '' '' -2011-02-02 00:00 77.0 '' '' -2011-02-03 00:00 78.1 '' '' -2011-02-04 00:00 79.8 '' '' -2011-02-05 00:00 78.7 '' '' -2011-02-06 00:00 78.0 '' '' -2011-02-07 00:00 80.1 '' '' -2011-02-08 00:00 87.3 '' '' -2011-02-09 00:00 86.4 '' '' -2011-02-10 00:00 89.0 '' '' -2011-02-11 00:00 88.9 '' '' -2011-02-12 00:00 93.1 '' '' -2011-02-13 00:00 104.1 '' '' -2011-02-14 00:00 109.8 '' '' -2011-02-15 00:00 110.0 '' '' -2011-02-16 00:00 111.4 '' '' -2011-02-17 00:00 108.3 '' '' -2011-02-18 00:00 121.9 '' '' -2011-02-19 00:00 106.9 '' '' -2011-02-20 00:00 102.2 '' '' -2011-02-21 00:00 94.6 '' '' -2011-02-22 00:00 89.0 '' '' -2011-02-23 00:00 87.4 '' '' -2011-02-24 00:00 87.0 '' '' -2011-02-25 00:00 86.4 '' '' -2011-02-26 00:00 88.4 '' '' -2011-02-27 00:00 88.7 '' '' -2011-02-28 00:00 94.0 '' '' -2011-03-01 00:00 108.5 '' '' -2011-03-02 00:00 111.4 '' '' -2011-03-03 00:00 118.8 '' '' -2011-03-04 00:00 124.7 '' '' -2011-03-05 00:00 132.5 '' '' -2011-03-06 00:00 140.3 '' '' -2011-03-07 00:00 152.3 '' '' -2011-03-08 00:00 164.3 '' '' -2011-03-09 00:00 141.1 '' '' -2011-03-10 00:00 129.5 '' '' -2011-03-11 00:00 121.5 '' '' -2011-03-12 00:00 119.2 '' '' -2011-03-13 00:00 111.5 '' '' -2011-03-14 00:00 106.1 '' '' -2011-03-15 00:00 100.3 '' '' -2011-03-16 00:00 103.8 '' '' -2011-03-17 00:00 89.2 '' '' -2011-03-18 00:00 86.8 '' '' -2011-03-19 00:00 88.0 '' '' -2011-03-20 00:00 91.2 '' '' -2011-03-21 00:00 100.2 '' '' -2011-03-22 00:00 99.1 '' '' -2011-03-23 00:00 104.0 '' '' -2011-03-24 00:00 106.9 '' '' -2011-03-25 00:00 112.0 '' '' -2011-03-26 00:00 113.9 '' '' -2011-03-27 00:00 115.1 '' '' -2011-03-28 00:00 118.1 '' '' -2011-03-29 00:00 115.9 '' '' -2011-03-30 00:00 117.3 '' '' -2011-03-31 00:00 113.1 '' '' -2011-04-01 00:00 108.7 '' '' -2011-04-02 00:00 107.4 '' '' -2011-04-03 00:00 114.0 '' '' -2011-04-04 00:00 112.7 '' '' -2011-04-05 00:00 109.3 '' '' -2011-04-06 00:00 117.2 '' '' -2011-04-07 00:00 112.5 '' '' -2011-04-08 00:00 109.0 '' '' -2011-04-09 00:00 105.3 '' '' -2011-04-10 00:00 105.2 '' '' -2011-04-11 00:00 106.3 '' '' -2011-04-12 00:00 110.8 '' '' -2011-04-13 00:00 118.4 '' '' -2011-04-14 00:00 119.4 '' '' -2011-04-15 00:00 130.2 '' '' -2011-04-16 00:00 120.0 '' '' -2011-04-17 00:00 115.3 '' '' -2011-04-18 00:00 111.9 '' '' -2011-04-19 00:00 111.9 '' '' -2011-04-20 00:00 118.1 '' '' -2011-04-21 00:00 114.1 '' '' -2011-04-22 00:00 116.0 '' '' -2011-04-23 00:00 120.4 '' '' -2011-04-24 00:00 118.5 '' '' -2011-04-25 00:00 113.5 '' '' -2011-04-26 00:00 110.8 '' '' -2011-04-27 00:00 109.3 '' '' -2011-04-28 00:00 111.9 '' '' -2011-04-29 00:00 111.2 '' '' -2011-04-30 00:00 111.1 '' '' -2011-05-01 00:00 107.7 '' '' -2011-05-02 00:00 111.5 '' '' -2011-05-03 00:00 108.8 '' '' -2011-05-04 00:00 108.7 '' '' -2011-05-05 00:00 106.7 '' '' -2011-05-06 00:00 103.7 '' '' -2011-05-07 00:00 104.1 '' '' -2011-05-08 00:00 104.1 '' '' -2011-05-09 00:00 105.7 '' '' -2011-05-10 00:00 99.4 '' '' -2011-05-11 00:00 96.0 '' '' -2011-05-12 00:00 94.7 '' '' -2011-05-13 00:00 93.5 '' '' -2011-05-14 00:00 93.4 '' '' -2011-05-15 00:00 96.6 '' '' -2011-05-16 00:00 94.3 '' '' -2011-05-17 00:00 93.6 '' '' -2011-05-18 00:00 92.7 '' '' -2011-05-19 00:00 86.4 '' '' -2011-05-20 00:00 85.7 '' '' -2011-05-21 00:00 85.7 '' '' -2011-05-22 00:00 86.6 '' '' -2011-05-23 00:00 86.3 '' '' -2011-05-24 00:00 83.8 '' '' -2011-05-25 00:00 82.4 '' '' -2011-05-26 00:00 84.9 '' '' -2011-05-27 00:00 92.3 '' '' -2011-05-28 00:00 103.2 '' '' -2011-05-29 00:00 113.8 '' '' -2011-05-30 00:00 115.0 '' '' -2011-05-31 00:00 115.2 '' '' -2011-06-01 00:00 116.8 '' '' -2011-06-02 00:00 114.8 '' '' -2011-06-03 00:00 110.2 '' '' -2011-06-04 00:00 105.8 '' '' -2011-06-05 00:00 105.9 '' '' -2011-06-06 00:00 103.2 '' '' -2011-06-07 00:00 99.3 '' '' -2011-06-08 00:00 92.9 '' '' -2011-06-09 00:00 90.2 '' '' -2011-06-10 00:00 89.4 '' '' -2011-06-11 00:00 87.2 '' '' -2011-06-12 00:00 87.3 '' '' -2011-06-13 00:00 89.4 '' '' -2011-06-14 00:00 102.5 '' '' -2011-06-15 00:00 104.8 '' '' -2011-06-16 00:00 106.6 '' '' -2011-06-17 00:00 107.6 '' '' -2011-06-18 00:00 102.4 '' '' -2011-06-19 00:00 102.4 '' '' -2011-06-20 00:00 99.6 '' '' -2011-06-21 00:00 98.2 '' '' -2011-06-22 00:00 96.0 '' '' -2011-06-23 00:00 99.5 '' '' -2011-06-24 00:00 99.4 '' '' -2011-06-25 00:00 96.7 '' '' -2011-06-26 00:00 93.1 '' '' -2011-06-27 00:00 92.2 '' '' -2011-06-28 00:00 89.8 '' '' -2011-06-29 00:00 90.3 '' '' -2011-06-30 00:00 92.2 '' '' -2011-07-01 00:00 90.5 '' '' -2011-07-02 00:00 88.5 '' '' -2011-07-03 00:00 89.2 '' '' -2011-07-04 00:00 87.9 '' '' -2011-07-05 00:00 87.7 '' '' -2011-07-06 00:00 87.5 '' '' -2011-07-07 00:00 88.4 '' '' -2011-07-08 00:00 88.7 '' '' -2011-07-09 00:00 88.5 '' '' -2011-07-10 00:00 93.7 '' '' -2011-07-11 00:00 93.1 '' '' -2011-07-12 00:00 94.7 '' '' -2011-07-13 00:00 97.7 '' '' -2011-07-14 00:00 97.2 '' '' -2011-07-15 00:00 96.9 '' '' -2011-07-16 00:00 96.9 '' '' -2011-07-17 00:00 107.0 '' '' -2011-07-18 00:00 105.3 '' '' -2011-07-19 00:00 103.6 '' '' -2011-07-20 00:00 103.4 '' '' -2011-07-21 00:00 99.1 '' '' -2011-07-22 00:00 95.4 '' '' -2011-07-23 00:00 91.1 '' '' -2011-07-24 00:00 88.9 '' '' -2011-07-25 00:00 89.8 '' '' -2011-07-26 00:00 96.4 '' '' -2011-07-27 00:00 102.5 '' '' -2011-07-28 00:00 110.7 '' '' -2011-07-29 00:00 115.2 '' '' -2011-07-30 00:00 116.2 '' '' -2011-07-31 00:00 122.2 '' '' -2011-08-01 00:00 128.7 '' '' -2011-08-02 00:00 125.2 '' '' -2011-08-03 00:00 123.5 '' '' -2011-08-04 00:00 119.7 '' '' -2011-08-05 00:00 112.5 '' '' -2011-08-06 00:00 113.2 '' '' -2011-08-07 00:00 108.4 '' '' -2011-08-08 00:00 104.3 '' '' -2011-08-09 00:00 100.2 '' '' -2011-08-10 00:00 92.7 '' '' -2011-08-11 00:00 86.5 '' '' -2011-08-12 00:00 85.7 '' '' -2011-08-13 00:00 85.3 '' '' -2011-08-14 00:00 90.4 '' '' -2011-08-15 00:00 92.7 '' '' -2011-08-16 00:00 95.4 '' '' -2011-08-17 00:00 100.0 '' '' -2011-08-18 00:00 100.2 '' '' -2011-08-19 00:00 100.6 '' '' -2011-08-20 00:00 102.9 '' '' -2011-08-21 00:00 103.3 '' '' -2011-08-22 00:00 110.7 '' '' -2011-08-23 00:00 106.1 '' '' -2011-08-24 00:00 106.4 '' '' -2011-08-25 00:00 106.4 '' '' -2011-08-26 00:00 106.8 '' '' -2011-08-27 00:00 106.0 '' '' -2011-08-28 00:00 103.1 '' '' -2011-08-29 00:00 103.2 '' '' -2011-08-30 00:00 103.2 '' '' -2011-08-31 00:00 111.0 '' '' -2011-09-01 00:00 113.8 '' '' -2011-09-02 00:00 117.5 '' '' -2011-09-03 00:00 120.8 '' '' -2011-09-04 00:00 121.5 '' '' -2011-09-05 00:00 120.7 '' '' -2011-09-06 00:00 113.2 '' '' -2011-09-07 00:00 114.5 '' '' -2011-09-08 00:00 111.7 '' '' -2011-09-09 00:00 113.4 '' '' -2011-09-10 00:00 117.8 '' '' -2011-09-11 00:00 122.9 '' '' -2011-09-12 00:00 125.5 '' '' -2011-09-13 00:00 131.0 '' '' -2011-09-14 00:00 144.3 '' '' -2011-09-15 00:00 142.3 '' '' -2011-09-16 00:00 144.6 '' '' -2011-09-17 00:00 146.2 '' '' -2011-09-18 00:00 151.6 '' '' -2011-09-19 00:00 142.2 '' '' -2011-09-20 00:00 145.5 '' '' -2011-09-21 00:00 145.3 '' '' -2011-09-22 00:00 151.9 '' '' -2011-09-23 00:00 159.3 '' '' -2011-09-24 00:00 191.6 '' '' -2011-09-25 00:00 169.8 '' '' -2011-09-26 00:00 149.0 '' '' -2011-09-27 00:00 139.6 '' '' -2011-09-28 00:00 134.0 '' '' -2011-09-29 00:00 137.0 '' '' -2011-09-30 00:00 138.5 '' '' -2011-10-01 00:00 137.2 '' '' -2011-10-02 00:00 131.1 '' '' -2011-10-03 00:00 129.1 '' '' -2011-10-04 00:00 130.4 '' '' -2011-10-05 00:00 126.7 '' '' -2011-10-06 00:00 123.9 '' '' -2011-10-07 00:00 121.9 '' '' -2011-10-08 00:00 118.2 '' '' -2011-10-09 00:00 120.7 '' '' -2011-10-10 00:00 126.0 '' '' -2011-10-11 00:00 129.7 '' '' -2011-10-12 00:00 133.5 '' '' -2011-10-13 00:00 137.0 '' '' -2011-10-14 00:00 135.4 '' '' -2011-10-15 00:00 136.9 '' '' -2011-10-16 00:00 150.0 '' '' -2011-10-17 00:00 151.6 '' '' -2011-10-18 00:00 145.7 '' '' -2011-10-19 00:00 146.1 '' '' -2011-10-20 00:00 157.8 '' '' -2011-10-21 00:00 166.3 '' '' -2011-10-22 00:00 162.5 '' '' -2011-10-23 00:00 153.9 '' '' -2011-10-24 00:00 143.8 '' '' -2011-10-25 00:00 137.3 '' '' -2011-10-26 00:00 130.6 '' '' -2011-10-27 00:00 129.9 '' '' -2011-10-28 00:00 132.2 '' '' -2011-10-29 00:00 121.4 '' '' -2011-10-30 00:00 124.9 '' '' -2011-10-31 00:00 136.1 '' '' -2011-11-01 00:00 136.5 '' '' -2011-11-02 00:00 151.2 '' '' -2011-11-03 00:00 157.8 '' '' -2011-11-04 00:00 161.1 '' '' -2011-11-05 00:00 169.0 '' '' -2011-11-06 00:00 173.6 '' '' -2011-11-07 00:00 178.9 '' '' -2011-11-08 00:00 177.7 '' '' -2011-11-09 00:00 176.7 '' '' -2011-11-10 00:00 175.2 '' '' -2011-11-11 00:00 170.4 '' '' -2011-11-12 00:00 165.3 '' '' -2011-11-13 00:00 152.1 '' '' -2011-11-14 00:00 157.7 '' '' -2011-11-15 00:00 145.1 '' '' -2011-11-16 00:00 139.2 '' '' -2011-11-17 00:00 144.4 '' '' -2011-11-18 00:00 141.1 '' '' -2011-11-19 00:00 136.3 '' '' -2011-11-20 00:00 136.6 '' '' -2011-11-21 00:00 137.7 '' '' -2011-11-22 00:00 138.9 '' '' -2011-11-23 00:00 136.5 '' '' -2011-11-24 00:00 133.8 '' '' -2011-11-25 00:00 131.7 '' '' -2011-11-26 00:00 129.3 '' '' -2011-11-27 00:00 131.7 '' '' -2011-11-28 00:00 134.0 '' '' -2011-11-29 00:00 136.8 '' '' -2011-11-30 00:00 140.1 '' '' -2011-12-01 00:00 148.0 '' '' -2011-12-02 00:00 152.9 '' '' -2011-12-03 00:00 159.4 '' '' -2011-12-04 00:00 159.0 '' '' -2011-12-05 00:00 153.6 '' '' -2011-12-06 00:00 146.6 '' '' -2011-12-07 00:00 144.5 '' '' -2011-12-08 00:00 140.4 '' '' -2011-12-09 00:00 139.2 '' '' -2011-12-10 00:00 135.8 '' '' -2011-12-11 00:00 130.2 '' '' -2011-12-12 00:00 127.5 '' '' -2011-12-13 00:00 129.0 '' '' -2011-12-14 00:00 127.9 '' '' -2011-12-15 00:00 120.3 '' '' -2011-12-16 00:00 117.2 '' '' -2011-12-17 00:00 115.8 '' '' -2011-12-18 00:00 123.3 '' '' -2011-12-19 00:00 124.1 '' '' -2011-12-20 00:00 133.0 '' '' -2011-12-21 00:00 139.9 '' '' -2011-12-22 00:00 141.1 '' '' -2011-12-23 00:00 133.7 '' '' -2011-12-24 00:00 138.1 '' '' -2011-12-25 00:00 139.6 '' '' -2011-12-26 00:00 140.8 '' '' -2011-12-27 00:00 135.7 '' '' -2011-12-28 00:00 140.0 '' '' -2011-12-29 00:00 142.3 '' '' -2011-12-30 00:00 136.4 '' '' -2011-12-31 00:00 128.5 '' '' -2012-01-01 00:00 129.4 '' '' -2012-01-02 00:00 130.3 '' '' -2012-01-03 00:00 130.2 '' '' -2012-01-04 00:00 131.6 '' '' -2012-01-05 00:00 136.6 '' '' -2012-01-06 00:00 131.0 '' '' -2012-01-07 00:00 135.9 '' '' -2012-01-08 00:00 131.4 '' '' -2012-01-09 00:00 137.6 '' '' -2012-01-10 00:00 124.6 '' '' -2012-01-11 00:00 116.1 '' '' -2012-01-12 00:00 113.0 '' '' -2012-01-13 00:00 120.0 '' '' -2012-01-14 00:00 128.0 '' '' -2012-01-15 00:00 129.2 '' '' -2012-01-16 00:00 135.1 '' '' -2012-01-17 00:00 134.5 '' '' -2012-01-18 00:00 143.4 '' '' -2012-01-19 00:00 152.0 '' '' -2012-01-20 00:00 136.7 '' '' -2012-01-21 00:00 137.2 '' '' -2012-01-22 00:00 136.6 '' '' -2012-01-23 00:00 139.8 '' '' -2012-01-24 00:00 131.5 '' '' -2012-01-25 00:00 122.5 '' '' -2012-01-26 00:00 124.3 '' '' -2012-01-27 00:00 137.4 '' '' -2012-01-28 00:00 111.0 '' '' -2012-01-29 00:00 106.6 '' '' -2012-01-30 00:00 111.0 '' '' -2012-01-31 00:00 113.1 '' '' -2012-02-01 00:00 114.1 '' '' -2012-02-02 00:00 114.6 '' '' -2012-02-03 00:00 107.9 '' '' -2012-02-04 00:00 104.0 '' '' -2012-02-05 00:00 99.8 '' '' -2012-02-06 00:00 108.9 '' '' -2012-02-07 00:00 104.3 '' '' -2012-02-08 00:00 94.6 '' '' -2012-02-09 00:00 96.6 '' '' -2012-02-10 00:00 107.9 '' '' -2012-02-11 00:00 109.4 '' '' -2012-02-12 00:00 107.6 '' '' -2012-02-13 00:00 105.7 '' '' -2012-02-14 00:00 104.8 '' '' -2012-02-15 00:00 102.0 '' '' -2012-02-16 00:00 100.8 '' '' -2012-02-17 00:00 101.3 '' '' -2012-02-18 00:00 101.7 '' '' -2012-02-19 00:00 102.9 '' '' -2012-02-20 00:00 108.7 '' '' -2012-02-21 00:00 101.0 '' '' -2012-02-22 00:00 102.0 '' '' -2012-02-23 00:00 101.2 '' '' -2012-02-24 00:00 106.7 '' '' -2012-02-25 00:00 105.9 '' '' -2012-02-26 00:00 104.9 '' '' -2012-02-27 00:00 103.5 '' '' -2012-02-28 00:00 101.3 '' '' -2012-02-29 00:00 100.2 '' '' -2012-03-01 00:00 101.6 '' '' -2012-03-02 00:00 106.3 '' '' -2012-03-03 00:00 114.5 '' '' -2012-03-04 00:00 118.2 '' '' -2012-03-05 00:00 129.5 '' '' -2012-03-06 00:00 136.0 '' '' -2012-03-07 00:00 133.7 '' '' -2012-03-08 00:00 137.5 '' '' -2012-03-09 00:00 143.5 '' '' -2012-03-10 00:00 146.9 '' '' -2012-03-11 00:00 129.5 '' '' -2012-03-12 00:00 113.5 '' '' -2012-03-13 00:00 139.0 '' '' -2012-03-14 00:00 117.5 '' '' -2012-03-15 00:00 109.4 '' '' -2012-03-16 00:00 97.6 '' '' -2012-03-17 00:00 101.4 '' '' -2012-03-18 00:00 101.1 '' '' -2012-03-19 00:00 100.9 '' '' -2012-03-20 00:00 98.8 '' '' -2012-03-21 00:00 99.2 '' '' -2012-03-22 00:00 101.7 '' '' -2012-03-23 00:00 104.2 '' '' -2012-03-24 00:00 102.1 '' '' -2012-03-25 00:00 100.8 '' '' -2012-03-26 00:00 101.9 '' '' -2012-03-27 00:00 105.2 '' '' -2012-03-28 00:00 106.6 '' '' -2012-03-29 00:00 111.2 '' '' -2012-03-30 00:00 110.4 '' '' -2012-03-31 00:00 109.9 '' '' -2012-04-01 00:00 107.2 '' '' -2012-04-02 00:00 105.9 '' '' -2012-04-03 00:00 103.6 '' '' -2012-04-04 00:00 102.1 '' '' -2012-04-05 00:00 101.0 '' '' -2012-04-06 00:00 97.6 '' '' -2012-04-07 00:00 98.7 '' '' -2012-04-08 00:00 93.5 '' '' -2012-04-09 00:00 94.9 '' '' -2012-04-10 00:00 93.7 '' '' -2012-04-11 00:00 93.8 '' '' -2012-04-12 00:00 95.8 '' '' -2012-04-13 00:00 98.3 '' '' -2012-04-14 00:00 98.8 '' '' -2012-04-15 00:00 102.4 '' '' -2012-04-16 00:00 108.8 '' '' -2012-04-17 00:00 114.7 '' '' -2012-04-18 00:00 122.6 '' '' -2012-04-19 00:00 139.1 '' '' -2012-04-20 00:00 143.1 '' '' -2012-04-21 00:00 150.6 '' '' -2012-04-22 00:00 149.5 '' '' -2012-04-23 00:00 143.4 '' '' -2012-04-24 00:00 135.2 '' '' -2012-04-25 00:00 128.8 '' '' -2012-04-26 00:00 120.7 '' '' -2012-04-27 00:00 119.5 '' '' -2012-04-28 00:00 122.8 '' '' -2012-04-29 00:00 117.7 '' '' -2012-04-30 00:00 115.9 '' '' -2012-05-01 00:00 111.6 '' '' -2012-05-02 00:00 117.4 '' '' -2012-05-03 00:00 115.9 '' '' -2012-05-04 00:00 115.9 '' '' -2012-05-05 00:00 118.1 '' '' -2012-05-06 00:00 119.4 '' '' -2012-05-07 00:00 123.9 '' '' -2012-05-08 00:00 125.1 '' '' -2012-05-09 00:00 129.8 '' '' -2012-05-10 00:00 133.3 '' '' -2012-05-11 00:00 139.2 '' '' -2012-05-12 00:00 132.2 '' '' -2012-05-13 00:00 133.3 '' '' -2012-05-14 00:00 132.9 '' '' -2012-05-15 00:00 131.9 '' '' -2012-05-16 00:00 133.9 '' '' -2012-05-17 00:00 139.5 '' '' -2012-05-18 00:00 135.3 '' '' -2012-05-19 00:00 134.1 '' '' -2012-05-20 00:00 134.0 '' '' -2012-05-21 00:00 128.2 '' '' -2012-05-22 00:00 124.3 '' '' -2012-05-23 00:00 120.2 '' '' -2012-05-24 00:00 118.5 '' '' -2012-05-25 00:00 120.3 '' '' -2012-05-26 00:00 112.9 '' '' -2012-05-27 00:00 113.7 '' '' -2012-05-28 00:00 113.3 '' '' -2012-05-29 00:00 109.3 '' '' -2012-05-30 00:00 114.1 '' '' -2012-05-31 00:00 120.6 '' '' -2012-06-01 00:00 132.2 '' '' -2012-06-02 00:00 132.9 '' '' -2012-06-03 00:00 133.2 '' '' -2012-06-04 00:00 131.9 '' '' -2012-06-05 00:00 142.8 '' '' -2012-06-06 00:00 156.4 '' '' -2012-06-07 00:00 132.1 '' '' -2012-06-08 00:00 127.9 '' '' -2012-06-09 00:00 132.3 '' '' -2012-06-10 00:00 132.3 '' '' -2012-06-11 00:00 138.1 '' '' -2012-06-12 00:00 145.8 '' '' -2012-06-13 00:00 147.3 '' '' -2012-06-14 00:00 153.3 '' '' -2012-06-15 00:00 149.6 '' '' -2012-06-16 00:00 138.8 '' '' -2012-06-17 00:00 128.0 '' '' -2012-06-18 00:00 121.9 '' '' -2012-06-19 00:00 113.5 '' '' -2012-06-20 00:00 107.1 '' '' -2012-06-21 00:00 100.9 '' '' -2012-06-22 00:00 91.4 '' '' -2012-06-23 00:00 86.8 '' '' -2012-06-24 00:00 88.1 '' '' -2012-06-25 00:00 91.5 '' '' -2012-06-26 00:00 102.5 '' '' -2012-06-27 00:00 109.9 '' '' -2012-06-28 00:00 123.7 '' '' -2012-06-29 00:00 121.3 '' '' -2012-06-30 00:00 128.2 '' '' -2012-07-01 00:00 137.9 '' '' -2012-07-02 00:00 171.4 '' '' -2012-07-03 00:00 150.7 '' '' -2012-07-04 00:00 168.6 '' '' -2012-07-05 00:00 170.1 '' '' -2012-07-06 00:00 163.0 '' '' -2012-07-07 00:00 163.7 '' '' -2012-07-08 00:00 183.7 '' '' -2012-07-09 00:00 179.6 '' '' -2012-07-10 00:00 179.2 '' '' -2012-07-11 00:00 167.1 '' '' -2012-07-12 00:00 170.9 '' '' -2012-07-13 00:00 152.1 '' '' -2012-07-14 00:00 152.8 '' '' -2012-07-15 00:00 145.1 '' '' -2012-07-16 00:00 159.5 '' '' -2012-07-17 00:00 131.7 '' '' -2012-07-18 00:00 113.1 '' '' -2012-07-19 00:00 103.2 '' '' -2012-07-20 00:00 95.3 '' '' -2012-07-21 00:00 92.8 '' '' -2012-07-22 00:00 96.7 '' '' -2012-07-23 00:00 99.8 '' '' -2012-07-24 00:00 105.7 '' '' -2012-07-25 00:00 108.7 '' '' -2012-07-26 00:00 118.3 '' '' -2012-07-27 00:00 127.1 '' '' -2012-07-28 00:00 130.5 '' '' -2012-07-29 00:00 135.4 '' '' -2012-07-30 00:00 140.1 '' '' -2012-07-31 00:00 144.0 '' '' -2012-08-01 00:00 154.6 '' '' -2012-08-02 00:00 138.6 '' '' -2012-08-03 00:00 143.8 '' '' -2012-08-04 00:00 142.7 '' '' -2012-08-05 00:00 137.9 '' '' -2012-08-06 00:00 137.9 '' '' -2012-08-07 00:00 132.1 '' '' -2012-08-08 00:00 137.0 '' '' -2012-08-09 00:00 134.8 '' '' -2012-08-10 00:00 128.8 '' '' -2012-08-11 00:00 123.0 '' '' -2012-08-12 00:00 115.3 '' '' -2012-08-13 00:00 110.9 '' '' -2012-08-14 00:00 108.5 '' '' -2012-08-15 00:00 103.2 '' '' -2012-08-16 00:00 100.8 '' '' -2012-08-17 00:00 97.5 '' '' -2012-08-18 00:00 99.4 '' '' -2012-08-19 00:00 98.5 '' '' -2012-08-20 00:00 98.5 '' '' -2012-08-21 00:00 96.4 '' '' -2012-08-22 00:00 96.9 '' '' -2012-08-23 00:00 98.8 '' '' -2012-08-24 00:00 106.4 '' '' -2012-08-25 00:00 108.1 '' '' -2012-08-26 00:00 115.6 '' '' -2012-08-27 00:00 113.7 '' '' -2012-08-28 00:00 113.4 '' '' -2012-08-29 00:00 120.6 '' '' -2012-08-30 00:00 130.2 '' '' -2012-08-31 00:00 132.9 '' '' -2012-09-01 00:00 148.2 '' '' -2012-09-02 00:00 144.7 '' '' -2012-09-03 00:00 144.0 '' '' -2012-09-04 00:00 139.9 '' '' -2012-09-05 00:00 134.9 '' '' -2012-09-06 00:00 130.0 '' '' -2012-09-07 00:00 135.4 '' '' -2012-09-08 00:00 130.5 '' '' -2012-09-09 00:00 124.8 '' '' -2012-09-10 00:00 112.8 '' '' -2012-09-11 00:00 106.4 '' '' -2012-09-12 00:00 103.8 '' '' -2012-09-13 00:00 100.3 '' '' -2012-09-14 00:00 101.7 '' '' -2012-09-15 00:00 98.6 '' '' -2012-09-16 00:00 98.3 '' '' -2012-09-17 00:00 102.5 '' '' -2012-09-18 00:00 105.3 '' '' -2012-09-19 00:00 110.8 '' '' -2012-09-20 00:00 118.4 '' '' -2012-09-21 00:00 117.8 '' '' -2012-09-22 00:00 125.3 '' '' -2012-09-23 00:00 134.4 '' '' -2012-09-24 00:00 137.4 '' '' -2012-09-25 00:00 140.6 '' '' -2012-09-26 00:00 139.9 '' '' -2012-09-27 00:00 133.8 '' '' -2012-09-28 00:00 138.3 '' '' -2012-09-29 00:00 136.4 '' '' -2012-09-30 00:00 135.9 '' '' -2012-10-01 00:00 128.3 '' '' -2012-10-02 00:00 118.3 '' '' -2012-10-03 00:00 111.8 '' '' -2012-10-04 00:00 109.5 '' '' -2012-10-05 00:00 106.1 '' '' -2012-10-06 00:00 98.7 '' '' -2012-10-07 00:00 97.9 '' '' -2012-10-08 00:00 103.2 '' '' -2012-10-09 00:00 105.9 '' '' -2012-10-10 00:00 111.6 '' '' -2012-10-11 00:00 116.2 '' '' -2012-10-12 00:00 121.3 '' '' -2012-10-13 00:00 124.3 '' '' -2012-10-14 00:00 131.3 '' '' -2012-10-15 00:00 135.9 '' '' -2012-10-16 00:00 136.1 '' '' -2012-10-17 00:00 134.1 '' '' -2012-10-18 00:00 136.5 '' '' -2012-10-19 00:00 140.3 '' '' -2012-10-20 00:00 150.1 '' '' -2012-10-21 00:00 142.8 '' '' -2012-10-22 00:00 153.9 '' '' -2012-10-23 00:00 140.1 '' '' -2012-10-24 00:00 134.1 '' '' -2012-10-25 00:00 128.5 '' '' -2012-10-26 00:00 129.1 '' '' -2012-10-27 00:00 120.2 '' '' -2012-10-28 00:00 115.4 '' '' -2012-10-29 00:00 106.9 '' '' -2012-10-30 00:00 104.8 '' '' -2012-10-31 00:00 102.7 '' '' -2012-11-01 00:00 96.8 '' '' -2012-11-02 00:00 94.9 '' '' -2012-11-03 00:00 91.8 '' '' -2012-11-04 00:00 93.4 '' '' -2012-11-05 00:00 94.9 '' '' -2012-11-06 00:00 96.9 '' '' -2012-11-07 00:00 99.8 '' '' -2012-11-08 00:00 102.2 '' '' -2012-11-09 00:00 112.9 '' '' -2012-11-10 00:00 119.8 '' '' -2012-11-11 00:00 130.6 '' '' -2012-11-12 00:00 140.8 '' '' -2012-11-13 00:00 143.1 '' '' -2012-11-14 00:00 139.1 '' '' -2012-11-15 00:00 138.6 '' '' -2012-11-16 00:00 135.2 '' '' -2012-11-17 00:00 132.4 '' '' -2012-11-18 00:00 137.7 '' '' -2012-11-19 00:00 130.7 '' '' -2012-11-20 00:00 137.8 '' '' -2012-11-21 00:00 137.0 '' '' -2012-11-22 00:00 124.5 '' '' -2012-11-23 00:00 123.5 '' '' -2012-11-24 00:00 115.0 '' '' -2012-11-25 00:00 118.4 '' '' -2012-11-26 00:00 118.6 '' '' -2012-11-27 00:00 114.0 '' '' -2012-11-28 00:00 111.2 '' '' -2012-11-29 00:00 110.0 '' '' -2012-11-30 00:00 107.5 '' '' -2012-12-01 00:00 98.8 '' '' -2012-12-02 00:00 94.9 '' '' -2012-12-03 00:00 93.9 '' '' -2012-12-04 00:00 93.4 '' '' -2012-12-05 00:00 92.7 '' '' -2012-12-06 00:00 94.6 '' '' -2012-12-07 00:00 94.2 '' '' -2012-12-08 00:00 98.1 '' '' -2012-12-09 00:00 100.6 '' '' -2012-12-10 00:00 100.9 '' '' -2012-12-11 00:00 100.5 '' '' -2012-12-12 00:00 108.4 '' '' -2012-12-13 00:00 113.0 '' '' -2012-12-14 00:00 115.5 '' '' -2012-12-15 00:00 118.5 '' '' -2012-12-16 00:00 115.8 '' '' -2012-12-17 00:00 111.3 '' '' -2012-12-18 00:00 112.5 '' '' -2012-12-19 00:00 109.8 '' '' -2012-12-20 00:00 110.4 '' '' -2012-12-21 00:00 110.9 '' '' -2012-12-22 00:00 111.6 '' '' -2012-12-23 00:00 110.4 '' '' -2012-12-24 00:00 109.4 '' '' -2012-12-25 00:00 109.3 '' '' -2012-12-26 00:00 106.2 '' '' -2012-12-27 00:00 103.2 '' '' -2012-12-28 00:00 102.3 '' '' -2012-12-29 00:00 100.9 '' '' -2012-12-30 00:00 103.2 '' '' -2012-12-31 00:00 109.8 '' '' -2013-01-01 00:00 113.9 '' '' -2013-01-02 00:00 115.0 '' '' -2013-01-03 00:00 124.6 '' '' -2013-01-04 00:00 138.4 '' '' -2013-01-05 00:00 140.3 '' '' -2013-01-06 00:00 137.5 '' '' -2013-01-07 00:00 144.8 '' '' -2013-01-08 00:00 150.5 '' '' -2013-01-09 00:00 163.8 '' '' -2013-01-10 00:00 168.2 '' '' -2013-01-11 00:00 166.7 '' '' -2013-01-12 00:00 163.0 '' '' -2013-01-13 00:00 151.4 '' '' -2013-01-14 00:00 149.1 '' '' -2013-01-15 00:00 135.2 '' '' -2013-01-16 00:00 132.6 '' '' -2013-01-17 00:00 118.8 '' '' -2013-01-18 00:00 111.5 '' '' -2013-01-19 00:00 103.3 '' '' -2013-01-20 00:00 103.2 '' '' -2013-01-21 00:00 104.9 '' '' -2013-01-22 00:00 106.9 '' '' -2013-01-23 00:00 101.6 '' '' -2013-01-24 00:00 100.2 '' '' -2013-01-25 00:00 97.5 '' '' -2013-01-26 00:00 96.3 '' '' -2013-01-27 00:00 94.7 '' '' -2013-01-28 00:00 94.7 '' '' -2013-01-29 00:00 92.6 '' '' -2013-01-30 00:00 93.8 '' '' -2013-01-31 00:00 99.7 '' '' -2013-02-01 00:00 100.7 '' '' -2013-02-02 00:00 108.6 '' '' -2013-02-03 00:00 107.9 '' '' -2013-02-04 00:00 103.7 '' '' -2013-02-05 00:00 102.2 '' '' -2013-02-06 00:00 100.7 '' '' -2013-02-07 00:00 100.0 '' '' -2013-02-08 00:00 101.4 '' '' -2013-02-09 00:00 104.8 '' '' -2013-02-10 00:00 103.2 '' '' -2013-02-11 00:00 102.5 '' '' -2013-02-12 00:00 99.2 '' '' -2013-02-13 00:00 97.8 '' '' -2013-02-14 00:00 97.0 '' '' -2013-02-15 00:00 97.7 '' '' -2013-02-16 00:00 100.8 '' '' -2013-02-17 00:00 103.1 '' '' -2013-02-18 00:00 102.3 '' '' -2013-02-19 00:00 109.9 '' '' -2013-02-20 00:00 111.0 '' '' -2013-02-21 00:00 106.2 '' '' -2013-02-22 00:00 104.7 '' '' -2013-02-23 00:00 97.5 '' '' -2013-02-24 00:00 93.0 '' '' -2013-02-25 00:00 93.5 '' '' -2013-02-26 00:00 96.8 '' '' -2013-02-27 00:00 100.0 '' '' -2013-02-28 00:00 103.6 '' '' -2013-03-01 00:00 110.6 '' '' -2013-03-02 00:00 109.1 '' '' -2013-03-03 00:00 110.1 '' '' -2013-03-04 00:00 112.4 '' '' -2013-03-05 00:00 116.6 '' '' -2013-03-06 00:00 112.6 '' '' -2013-03-07 00:00 112.1 '' '' -2013-03-08 00:00 113.3 '' '' -2013-03-09 00:00 114.6 '' '' -2013-03-10 00:00 117.7 '' '' -2013-03-11 00:00 118.2 '' '' -2013-03-12 00:00 121.5 '' '' -2013-03-13 00:00 121.5 '' '' -2013-03-14 00:00 121.5 '' '' -2013-03-15 00:00 121.8 '' '' -2013-03-16 00:00 124.8 '' '' -2013-03-17 00:00 124.5 '' '' -2013-03-18 00:00 116.6 '' '' -2013-03-19 00:00 109.5 '' '' -2013-03-20 00:00 106.7 '' '' -2013-03-21 00:00 105.3 '' '' -2013-03-22 00:00 100.2 '' '' -2013-03-23 00:00 97.6 '' '' -2013-03-24 00:00 95.4 '' '' -2013-03-25 00:00 92.2 '' '' -2013-03-26 00:00 92.0 '' '' -2013-03-27 00:00 92.6 '' '' -2013-03-28 00:00 98.3 '' '' -2013-03-29 00:00 104.8 '' '' -2013-03-30 00:00 108.2 '' '' -2013-03-31 00:00 113.1 '' '' -2013-04-01 00:00 119.0 '' '' -2013-04-02 00:00 122.1 '' '' -2013-04-03 00:00 127.0 '' '' -2013-04-04 00:00 128.6 '' '' -2013-04-05 00:00 134.5 '' '' -2013-04-06 00:00 137.3 '' '' -2013-04-07 00:00 138.2 '' '' -2013-04-08 00:00 139.6 '' '' -2013-04-09 00:00 147.0 '' '' -2013-04-10 00:00 148.6 '' '' -2013-04-11 00:00 137.8 '' '' -2013-04-12 00:00 138.6 '' '' -2013-04-13 00:00 125.8 '' '' -2013-04-14 00:00 117.5 '' '' -2013-04-15 00:00 114.1 '' '' -2013-04-16 00:00 114.1 '' '' -2013-04-17 00:00 109.0 '' '' -2013-04-18 00:00 105.9 '' '' -2013-04-19 00:00 100.3 '' '' -2013-04-20 00:00 105.9 '' '' -2013-04-21 00:00 110.5 '' '' -2013-04-22 00:00 114.1 '' '' -2013-04-23 00:00 118.8 '' '' -2013-04-24 00:00 116.1 '' '' -2013-04-25 00:00 120.7 '' '' -2013-04-26 00:00 123.5 '' '' -2013-04-27 00:00 128.8 '' '' -2013-04-28 00:00 133.5 '' '' -2013-04-29 00:00 144.5 '' '' -2013-04-30 00:00 156.7 '' '' -2013-05-01 00:00 161.7 '' '' -2013-05-02 00:00 151.8 '' '' -2013-05-03 00:00 150.4 '' '' -2013-05-04 00:00 144.1 '' '' -2013-05-05 00:00 139.5 '' '' -2013-05-06 00:00 133.0 '' '' -2013-05-07 00:00 131.1 '' '' -2013-05-08 00:00 129.3 '' '' -2013-05-09 00:00 130.9 '' '' -2013-05-10 00:00 127.3 '' '' -2013-05-11 00:00 139.4 '' '' -2013-05-12 00:00 150.4 '' '' -2013-05-13 00:00 153.5 '' '' -2013-05-14 00:00 151.1 '' '' -2013-05-15 00:00 148.8 '' '' -2013-05-16 00:00 148.0 '' '' -2013-05-17 00:00 139.6 '' '' -2013-05-18 00:00 135.2 '' '' -2013-05-19 00:00 138.5 '' '' -2013-05-20 00:00 135.2 '' '' -2013-05-21 00:00 128.4 '' '' -2013-05-22 00:00 136.7 '' '' -2013-05-23 00:00 137.9 '' '' -2013-05-24 00:00 130.6 '' '' -2013-05-25 00:00 124.5 '' '' -2013-05-26 00:00 123.2 '' '' -2013-05-27 00:00 113.1 '' '' -2013-05-28 00:00 107.6 '' '' -2013-05-29 00:00 109.8 '' '' -2013-05-30 00:00 106.9 '' '' -2013-05-31 00:00 104.7 '' '' -2013-06-01 00:00 108.8 '' '' -2013-06-02 00:00 114.1 '' '' -2013-06-03 00:00 115.0 '' '' -2013-06-04 00:00 113.1 '' '' -2013-06-05 00:00 112.1 '' '' -2013-06-06 00:00 112.3 '' '' -2013-06-07 00:00 113.1 '' '' -2013-06-08 00:00 106.3 '' '' -2013-06-09 00:00 99.0 '' '' -2013-06-10 00:00 96.2 '' '' -2013-06-11 00:00 92.3 '' '' -2013-06-12 00:00 96.2 '' '' -2013-06-13 00:00 102.0 '' '' -2013-06-14 00:00 112.6 '' '' -2013-06-15 00:00 114.5 '' '' -2013-06-16 00:00 119.7 '' '' -2013-06-17 00:00 127.8 '' '' -2013-06-18 00:00 128.8 '' '' -2013-06-19 00:00 127.4 '' '' -2013-06-20 00:00 130.5 '' '' -2013-06-21 00:00 137.6 '' '' -2013-06-22 00:00 134.2 '' '' -2013-06-23 00:00 132.4 '' '' -2013-06-24 00:00 124.6 '' '' -2013-06-25 00:00 112.9 '' '' -2013-06-26 00:00 110.1 '' '' -2013-06-27 00:00 102.9 '' '' -2013-06-28 00:00 104.3 '' '' -2013-06-29 00:00 103.6 '' '' -2013-06-30 00:00 106.3 '' '' -2013-07-01 00:00 111.4 '' '' -2013-07-02 00:00 118.1 '' '' -2013-07-03 00:00 128.7 '' '' -2013-07-04 00:00 142.3 '' '' -2013-07-05 00:00 145.6 '' '' -2013-07-06 00:00 138.7 '' '' -2013-07-07 00:00 129.8 '' '' -2013-07-08 00:00 123.3 '' '' -2013-07-09 00:00 124.0 '' '' -2013-07-10 00:00 121.9 '' '' -2013-07-11 00:00 117.1 '' '' -2013-07-12 00:00 121.6 '' '' -2013-07-13 00:00 117.8 '' '' -2013-07-14 00:00 116.7 '' '' -2013-07-15 00:00 117.9 '' '' -2013-07-16 00:00 117.6 '' '' -2013-07-17 00:00 114.9 '' '' -2013-07-18 00:00 118.6 '' '' -2013-07-19 00:00 117.3 '' '' -2013-07-20 00:00 116.1 '' '' -2013-07-21 00:00 112.9 '' '' -2013-07-22 00:00 113.4 '' '' -2013-07-23 00:00 110.1 '' '' -2013-07-24 00:00 111.0 '' '' -2013-07-25 00:00 110.3 '' '' -2013-07-26 00:00 112.9 '' '' -2013-07-27 00:00 111.3 '' '' -2013-07-28 00:00 112.7 '' '' -2013-07-29 00:00 115.6 '' '' -2013-07-30 00:00 116.5 '' '' -2013-07-31 00:00 112.0 '' '' -2013-08-01 00:00 115.4 '' '' -2013-08-02 00:00 116.2 '' '' -2013-08-03 00:00 110.5 '' '' -2013-08-04 00:00 107.9 '' '' -2013-08-05 00:00 107.3 '' '' -2013-08-06 00:00 106.8 '' '' -2013-08-07 00:00 108.5 '' '' -2013-08-08 00:00 107.3 '' '' -2013-08-09 00:00 106.5 '' '' -2013-08-10 00:00 105.3 '' '' -2013-08-11 00:00 113.4 '' '' -2013-08-12 00:00 117.2 '' '' -2013-08-13 00:00 125.1 '' '' -2013-08-14 00:00 128.5 '' '' -2013-08-15 00:00 125.8 '' '' -2013-08-16 00:00 122.9 '' '' -2013-08-17 00:00 153.4 '' '' -2013-08-18 00:00 129.2 '' '' -2013-08-19 00:00 131.4 '' '' -2013-08-20 00:00 134.6 '' '' -2013-08-21 00:00 133.4 '' '' -2013-08-22 00:00 134.5 '' '' -2013-08-23 00:00 126.8 '' '' -2013-08-24 00:00 119.9 '' '' -2013-08-25 00:00 115.0 '' '' -2013-08-26 00:00 113.5 '' '' -2013-08-27 00:00 111.9 '' '' -2013-08-28 00:00 110.3 '' '' -2013-08-29 00:00 111.0 '' '' -2013-08-30 00:00 109.5 '' '' -2013-08-31 00:00 109.5 '' '' -2013-09-01 00:00 105.6 '' '' -2013-09-02 00:00 107.5 '' '' -2013-09-03 00:00 107.9 '' '' -2013-09-04 00:00 111.1 '' '' -2013-09-05 00:00 111.9 '' '' -2013-09-06 00:00 102.9 '' '' -2013-09-07 00:00 100.0 '' '' -2013-09-08 00:00 97.1 '' '' -2013-09-09 00:00 95.6 '' '' -2013-09-10 00:00 96.2 '' '' -2013-09-11 00:00 94.1 '' '' -2013-09-12 00:00 94.1 '' '' -2013-09-13 00:00 92.7 '' '' -2013-09-14 00:00 93.6 '' '' -2013-09-15 00:00 93.8 '' '' -2013-09-16 00:00 95.5 '' '' -2013-09-17 00:00 99.7 '' '' -2013-09-18 00:00 105.1 '' '' -2013-09-19 00:00 108.9 '' '' -2013-09-20 00:00 110.0 '' '' -2013-09-21 00:00 111.2 '' '' -2013-09-22 00:00 111.9 '' '' -2013-09-23 00:00 108.5 '' '' -2013-09-24 00:00 110.9 '' '' -2013-09-25 00:00 111.7 '' '' -2013-09-26 00:00 110.5 '' '' -2013-09-27 00:00 108.3 '' '' -2013-09-28 00:00 106.0 '' '' -2013-09-29 00:00 103.4 '' '' -2013-09-30 00:00 105.2 '' '' -2013-10-01 00:00 107.0 '' '' -2013-10-02 00:00 108.3 '' '' -2013-10-03 00:00 113.9 '' '' -2013-10-04 00:00 109.2 '' '' -2013-10-05 00:00 105.9 '' '' -2013-10-06 00:00 106.5 '' '' -2013-10-07 00:00 111.8 '' '' -2013-10-08 00:00 111.7 '' '' -2013-10-09 00:00 113.1 '' '' -2013-10-10 00:00 120.3 '' '' -2013-10-11 00:00 128.5 '' '' -2013-10-12 00:00 127.3 '' '' -2013-10-13 00:00 128.6 '' '' -2013-10-14 00:00 124.3 '' '' -2013-10-15 00:00 124.5 '' '' -2013-10-16 00:00 127.2 '' '' -2013-10-17 00:00 135.1 '' '' -2013-10-18 00:00 138.8 '' '' -2013-10-19 00:00 131.6 '' '' -2013-10-20 00:00 132.2 '' '' -2013-10-21 00:00 134.5 '' '' -2013-10-22 00:00 144.8 '' '' -2013-10-23 00:00 151.1 '' '' -2013-10-24 00:00 158.8 '' '' -2013-10-25 00:00 159.6 '' '' -2013-10-26 00:00 169.7 '' '' -2013-10-27 00:00 164.8 '' '' -2013-10-28 00:00 157.8 '' '' -2013-10-29 00:00 150.6 '' '' -2013-10-30 00:00 139.9 '' '' -2013-10-31 00:00 140.5 '' '' -2013-11-01 00:00 144.2 '' '' -2013-11-02 00:00 139.4 '' '' -2013-11-03 00:00 141.1 '' '' -2013-11-04 00:00 144.9 '' '' -2013-11-05 00:00 145.9 '' '' -2013-11-06 00:00 150.8 '' '' -2013-11-07 00:00 145.3 '' '' -2013-11-08 00:00 143.3 '' '' -2013-11-09 00:00 145.2 '' '' -2013-11-10 00:00 151.1 '' '' -2013-11-11 00:00 160.4 '' '' -2013-11-12 00:00 164.0 '' '' -2013-11-13 00:00 167.4 '' '' -2013-11-14 00:00 172.0 '' '' -2013-11-15 00:00 174.0 '' '' -2013-11-16 00:00 170.6 '' '' -2013-11-17 00:00 172.9 '' '' -2013-11-18 00:00 159.5 '' '' -2013-11-19 00:00 149.3 '' '' -2013-11-20 00:00 143.5 '' '' -2013-11-21 00:00 137.8 '' '' -2013-11-22 00:00 139.2 '' '' -2013-11-23 00:00 132.2 '' '' -2013-11-24 00:00 123.9 '' '' -2013-11-25 00:00 116.0 '' '' -2013-11-26 00:00 112.4 '' '' -2013-11-27 00:00 125.6 '' '' -2013-11-28 00:00 129.3 '' '' -2013-11-29 00:00 125.0 '' '' -2013-11-30 00:00 127.6 '' '' -2013-12-01 00:00 126.9 '' '' -2013-12-02 00:00 130.0 '' '' -2013-12-03 00:00 131.9 '' '' -2013-12-04 00:00 134.0 '' '' -2013-12-05 00:00 145.3 '' '' -2013-12-06 00:00 146.1 '' '' -2013-12-07 00:00 152.3 '' '' -2013-12-08 00:00 160.6 '' '' -2013-12-09 00:00 163.1 '' '' -2013-12-10 00:00 169.9 '' '' -2013-12-11 00:00 165.6 '' '' -2013-12-12 00:00 159.8 '' '' -2013-12-13 00:00 158.1 '' '' -2013-12-14 00:00 159.0 '' '' -2013-12-15 00:00 151.3 '' '' -2013-12-16 00:00 149.4 '' '' -2013-12-17 00:00 153.9 '' '' -2013-12-18 00:00 151.1 '' '' -2013-12-19 00:00 148.5 '' '' -2013-12-20 00:00 144.4 '' '' -2013-12-21 00:00 139.5 '' '' -2013-12-22 00:00 133.4 '' '' -2013-12-23 00:00 131.6 '' '' -2013-12-24 00:00 124.1 '' '' -2013-12-25 00:00 118.7 '' '' -2013-12-26 00:00 120.6 '' '' -2013-12-27 00:00 126.3 '' '' -2013-12-28 00:00 130.1 '' '' -2013-12-29 00:00 132.5 '' '' -2013-12-30 00:00 138.2 '' '' -2013-12-31 00:00 140.5 '' '' -2014-01-01 00:00 154.3 '' '' -2014-01-02 00:00 155.2 '' '' -2014-01-03 00:00 176.3 '' '' -2014-01-04 00:00 253.3 '' '' -2014-01-05 00:00 210.3 '' '' -2014-01-06 00:00 197.2 '' '' -2014-01-07 00:00 229.3 '' '' -2014-01-08 00:00 188.2 '' '' -2014-01-09 00:00 178.1 '' '' -2014-01-10 00:00 169.4 '' '' -2014-01-11 00:00 160.7 '' '' -2014-01-12 00:00 150.2 '' '' -2014-01-13 00:00 138.7 '' '' -2014-01-14 00:00 132.6 '' '' -2014-01-15 00:00 122.1 '' '' -2014-01-16 00:00 117.1 '' '' -2014-01-17 00:00 124.7 '' '' -2014-01-18 00:00 125.5 '' '' -2014-01-19 00:00 123.4 '' '' -2014-01-20 00:00 133.0 '' '' -2014-01-21 00:00 141.4 '' '' -2014-01-22 00:00 138.9 '' '' -2014-01-23 00:00 132.1 '' '' -2014-01-24 00:00 131.3 '' '' -2014-01-25 00:00 129.1 '' '' -2014-01-26 00:00 133.7 '' '' -2014-01-27 00:00 139.6 '' '' -2014-01-28 00:00 152.5 '' '' -2014-01-29 00:00 151.8 '' '' -2014-01-30 00:00 155.8 '' '' -2014-01-31 00:00 160.9 '' '' -2014-02-01 00:00 171.6 '' '' -2014-02-02 00:00 184.4 '' '' -2014-02-03 00:00 183.0 '' '' -2014-02-04 00:00 182.9 '' '' -2014-02-05 00:00 188.1 '' '' -2014-02-06 00:00 186.1 '' '' -2014-02-07 00:00 173.2 '' '' -2014-02-08 00:00 167.2 '' '' -2014-02-09 00:00 164.6 '' '' -2014-02-10 00:00 156.8 '' '' -2014-02-11 00:00 167.8 '' '' -2014-02-12 00:00 156.1 '' '' -2014-02-13 00:00 162.5 '' '' -2014-02-14 00:00 162.5 '' '' -2014-02-15 00:00 158.1 '' '' -2014-02-16 00:00 150.2 '' '' -2014-02-17 00:00 148.9 '' '' -2014-02-18 00:00 147.9 '' '' -2014-02-19 00:00 154.2 '' '' -2014-02-20 00:00 153.0 '' '' -2014-02-21 00:00 153.4 '' '' -2014-02-22 00:00 159.7 '' '' -2014-02-23 00:00 168.2 '' '' -2014-02-24 00:00 167.2 '' '' -2014-02-25 00:00 170.4 '' '' -2014-02-26 00:00 174.7 '' '' -2014-02-27 00:00 172.4 '' '' -2014-02-28 00:00 167.5 '' '' -2014-03-01 00:00 161.6 '' '' -2014-03-02 00:00 158.5 '' '' -2014-03-03 00:00 158.3 '' '' -2014-03-04 00:00 155.4 '' '' -2014-03-05 00:00 146.7 '' '' -2014-03-06 00:00 146.5 '' '' -2014-03-07 00:00 146.0 '' '' -2014-03-08 00:00 139.5 '' '' -2014-03-09 00:00 143.8 '' '' -2014-03-10 00:00 149.5 '' '' -2014-03-11 00:00 162.5 '' '' -2014-03-12 00:00 145.8 '' '' -2014-03-13 00:00 145.9 '' '' -2014-03-14 00:00 142.1 '' '' -2014-03-15 00:00 137.5 '' '' -2014-03-16 00:00 134.2 '' '' -2014-03-17 00:00 135.1 '' '' -2014-03-18 00:00 137.0 '' '' -2014-03-19 00:00 147.9 '' '' -2014-03-20 00:00 150.1 '' '' -2014-03-21 00:00 151.4 '' '' -2014-03-22 00:00 153.8 '' '' -2014-03-23 00:00 156.0 '' '' -2014-03-24 00:00 157.7 '' '' -2014-03-25 00:00 152.0 '' '' -2014-03-26 00:00 152.5 '' '' -2014-03-27 00:00 144.2 '' '' -2014-03-28 00:00 145.9 '' '' -2014-03-29 00:00 142.3 '' '' -2014-03-30 00:00 148.1 '' '' -2014-03-31 00:00 152.1 '' '' -2014-04-01 00:00 153.1 '' '' -2014-04-02 00:00 154.6 '' '' -2014-04-03 00:00 153.0 '' '' -2014-04-04 00:00 157.0 '' '' -2014-04-05 00:00 142.3 '' '' -2014-04-06 00:00 141.2 '' '' -2014-04-07 00:00 140.2 '' '' -2014-04-08 00:00 132.4 '' '' -2014-04-09 00:00 131.0 '' '' -2014-04-10 00:00 137.3 '' '' -2014-04-11 00:00 138.2 '' '' -2014-04-12 00:00 136.5 '' '' -2014-04-13 00:00 137.9 '' '' -2014-04-14 00:00 151.2 '' '' -2014-04-15 00:00 163.0 '' '' -2014-04-16 00:00 185.2 '' '' -2014-04-17 00:00 180.3 '' '' -2014-04-18 00:00 173.7 '' '' -2014-04-19 00:00 170.8 '' '' -2014-04-20 00:00 164.1 '' '' -2014-04-21 00:00 160.4 '' '' -2014-04-22 00:00 146.3 '' '' -2014-04-23 00:00 137.6 '' '' -2014-04-24 00:00 131.6 '' '' -2014-04-25 00:00 126.2 '' '' -2014-04-26 00:00 122.3 '' '' -2014-04-27 00:00 119.6 '' '' -2014-04-28 00:00 122.5 '' '' -2014-04-29 00:00 121.8 '' '' -2014-04-30 00:00 125.5 '' '' -2014-05-01 00:00 127.7 '' '' -2014-05-02 00:00 137.6 '' '' -2014-05-03 00:00 134.8 '' '' -2014-05-04 00:00 133.7 '' '' -2014-05-05 00:00 141.5 '' '' -2014-05-06 00:00 141.3 '' '' -2014-05-07 00:00 148.6 '' '' -2014-05-08 00:00 150.8 '' '' -2014-05-09 00:00 155.2 '' '' -2014-05-10 00:00 155.1 '' '' -2014-05-11 00:00 167.7 '' '' -2014-05-12 00:00 166.3 '' '' -2014-05-13 00:00 162.7 '' '' -2014-05-14 00:00 166.7 '' '' -2014-05-15 00:00 155.5 '' '' -2014-05-16 00:00 141.8 '' '' -2014-05-17 00:00 136.6 '' '' -2014-05-18 00:00 130.4 '' '' -2014-05-19 00:00 119.7 '' '' -2014-05-20 00:00 120.1 '' '' -2014-05-21 00:00 116.7 '' '' -2014-05-22 00:00 114.1 '' '' -2014-05-23 00:00 119.2 '' '' -2014-05-24 00:00 127.7 '' '' -2014-05-25 00:00 116.0 '' '' -2014-05-26 00:00 111.1 '' '' -2014-05-27 00:00 108.7 '' '' -2014-05-28 00:00 102.1 '' '' -2014-05-29 00:00 105.5 '' '' -2014-05-30 00:00 104.4 '' '' -2014-05-31 00:00 106.6 '' '' -2014-06-01 00:00 106.2 '' '' -2014-06-02 00:00 108.3 '' '' -2014-06-03 00:00 110.1 '' '' -2014-06-04 00:00 108.5 '' '' -2014-06-05 00:00 113.8 '' '' -2014-06-06 00:00 136.9 '' '' -2014-06-07 00:00 140.8 '' '' -2014-06-08 00:00 153.1 '' '' -2014-06-09 00:00 166.1 '' '' -2014-06-10 00:00 171.3 '' '' -2014-06-11 00:00 173.6 '' '' -2014-06-12 00:00 179.9 '' '' -2014-06-13 00:00 157.5 '' '' -2014-06-14 00:00 148.0 '' '' -2014-06-15 00:00 134.3 '' '' -2014-06-16 00:00 120.5 '' '' -2014-06-17 00:00 118.0 '' '' -2014-06-18 00:00 114.4 '' '' -2014-06-19 00:00 114.7 '' '' -2014-06-20 00:00 105.5 '' '' -2014-06-21 00:00 104.5 '' '' -2014-06-22 00:00 97.3 '' '' -2014-06-23 00:00 95.6 '' '' -2014-06-24 00:00 96.6 '' '' -2014-06-25 00:00 100.2 '' '' -2014-06-26 00:00 103.3 '' '' -2014-06-27 00:00 107.6 '' '' -2014-06-28 00:00 118.4 '' '' -2014-06-29 00:00 129.9 '' '' -2014-06-30 00:00 145.2 '' '' -2014-07-01 00:00 156.9 '' '' -2014-07-02 00:00 175.1 '' '' -2014-07-03 00:00 184.1 '' '' -2014-07-04 00:00 193.9 '' '' -2014-07-05 00:00 199.4 '' '' -2014-07-06 00:00 207.7 '' '' -2014-07-07 00:00 204.5 '' '' -2014-07-08 00:00 208.1 '' '' -2014-07-09 00:00 205.0 '' '' -2014-07-10 00:00 183.3 '' '' -2014-07-11 00:00 171.8 '' '' -2014-07-12 00:00 149.9 '' '' -2014-07-13 00:00 131.0 '' '' -2014-07-14 00:00 113.0 '' '' -2014-07-15 00:00 103.9 '' '' -2014-07-16 00:00 95.1 '' '' -2014-07-17 00:00 91.5 '' '' -2014-07-18 00:00 91.4 '' '' -2014-07-19 00:00 88.9 '' '' -2014-07-20 00:00 89.9 '' '' -2014-07-21 00:00 93.0 '' '' -2014-07-22 00:00 95.5 '' '' -2014-07-23 00:00 102.2 '' '' -2014-07-24 00:00 107.4 '' '' -2014-07-25 00:00 109.9 '' '' -2014-07-26 00:00 120.1 '' '' -2014-07-27 00:00 125.2 '' '' -2014-07-28 00:00 136.3 '' '' -2014-07-29 00:00 146.0 '' '' -2014-07-30 00:00 156.6 '' '' -2014-07-31 00:00 161.1 '' '' -2014-08-01 00:00 173.5 '' '' -2014-08-02 00:00 160.2 '' '' -2014-08-03 00:00 156.2 '' '' -2014-08-04 00:00 143.3 '' '' -2014-08-05 00:00 143.3 '' '' -2014-08-06 00:00 140.5 '' '' -2014-08-07 00:00 140.0 '' '' -2014-08-08 00:00 126.4 '' '' -2014-08-09 00:00 116.3 '' '' -2014-08-10 00:00 111.3 '' '' -2014-08-11 00:00 107.3 '' '' -2014-08-12 00:00 106.8 '' '' -2014-08-13 00:00 105.6 '' '' -2014-08-14 00:00 105.4 '' '' -2014-08-15 00:00 116.0 '' '' -2014-08-16 00:00 114.8 '' '' -2014-08-17 00:00 117.9 '' '' -2014-08-18 00:00 113.3 '' '' -2014-08-19 00:00 113.3 '' '' -2014-08-20 00:00 121.1 '' '' -2014-08-21 00:00 131.3 '' '' -2014-08-22 00:00 129.3 '' '' -2014-08-23 00:00 134.9 '' '' -2014-08-24 00:00 144.0 '' '' -2014-08-25 00:00 154.8 '' '' -2014-08-26 00:00 130.8 '' '' -2014-08-27 00:00 125.3 '' '' -2014-08-28 00:00 121.0 '' '' -2014-08-29 00:00 122.5 '' '' -2014-08-30 00:00 125.5 '' '' -2014-08-31 00:00 127.1 '' '' -2014-09-01 00:00 128.9 '' '' -2014-09-02 00:00 138.7 '' '' -2014-09-03 00:00 140.1 '' '' -2014-09-04 00:00 148.4 '' '' -2014-09-05 00:00 146.3 '' '' -2014-09-06 00:00 159.8 '' '' -2014-09-07 00:00 162.6 '' '' -2014-09-08 00:00 166.3 '' '' -2014-09-09 00:00 161.6 '' '' -2014-09-10 00:00 177.0 '' '' -2014-09-11 00:00 153.4 '' '' -2014-09-12 00:00 154.0 '' '' -2014-09-13 00:00 146.9 '' '' -2014-09-14 00:00 141.0 '' '' -2014-09-15 00:00 134.4 '' '' -2014-09-16 00:00 134.1 '' '' -2014-09-17 00:00 134.2 '' '' -2014-09-18 00:00 121.3 '' '' -2014-09-19 00:00 122.8 '' '' -2014-09-20 00:00 120.1 '' '' -2014-09-21 00:00 124.9 '' '' -2014-09-22 00:00 136.8 '' '' -2014-09-23 00:00 139.1 '' '' -2014-09-24 00:00 145.6 '' '' -2014-09-25 00:00 167.8 '' '' -2014-09-26 00:00 171.0 '' '' -2014-09-27 00:00 182.2 '' '' -2014-09-28 00:00 181.8 '' '' -2014-09-29 00:00 175.6 '' '' -2014-09-30 00:00 162.6 '' '' -2014-10-01 00:00 155.4 '' '' -2014-10-02 00:00 149.3 '' '' -2014-10-03 00:00 136.9 '' '' -2014-10-04 00:00 127.6 '' '' -2014-10-05 00:00 128.4 '' '' -2014-10-06 00:00 129.9 '' '' -2014-10-07 00:00 125.2 '' '' -2014-10-08 00:00 126.2 '' '' -2014-10-09 00:00 118.6 '' '' -2014-10-10 00:00 120.4 '' '' -2014-10-11 00:00 111.6 '' '' -2014-10-12 00:00 110.0 '' '' -2014-10-13 00:00 112.6 '' '' -2014-10-14 00:00 131.9 '' '' -2014-10-15 00:00 125.0 '' '' -2014-10-16 00:00 138.0 '' '' -2014-10-17 00:00 144.8 '' '' -2014-10-18 00:00 171.1 '' '' -2014-10-19 00:00 171.7 '' '' -2014-10-20 00:00 202.2 '' '' -2014-10-21 00:00 197.1 '' '' -2014-10-22 00:00 214.2 '' '' -2014-10-23 00:00 224.8 '' '' -2014-10-24 00:00 215.4 '' '' -2014-10-25 00:00 216.8 '' '' -2014-10-26 00:00 214.0 '' '' -2014-10-27 00:00 185.4 '' '' -2014-10-28 00:00 165.1 '' '' -2014-10-29 00:00 148.4 '' '' -2014-10-30 00:00 138.4 '' '' -2014-10-31 00:00 119.5 '' '' -2014-11-01 00:00 118.1 '' '' -2014-11-02 00:00 122.4 '' '' -2014-11-03 00:00 123.2 '' '' -2014-11-04 00:00 127.3 '' '' -2014-11-05 00:00 142.7 '' '' -2014-11-06 00:00 133.1 '' '' -2014-11-07 00:00 142.9 '' '' -2014-11-08 00:00 129.6 '' '' -2014-11-09 00:00 129.2 '' '' -2014-11-10 00:00 133.4 '' '' -2014-11-11 00:00 139.5 '' '' -2014-11-12 00:00 149.8 '' '' -2014-11-13 00:00 150.3 '' '' -2014-11-14 00:00 157.6 '' '' -2014-11-15 00:00 157.1 '' '' -2014-11-16 00:00 167.7 '' '' -2014-11-17 00:00 163.8 '' '' -2014-11-18 00:00 163.6 '' '' -2014-11-19 00:00 165.7 '' '' -2014-11-20 00:00 164.1 '' '' -2014-11-21 00:00 158.6 '' '' -2014-11-22 00:00 162.6 '' '' -2014-11-23 00:00 168.8 '' '' -2014-11-24 00:00 140.7 '' '' -2014-11-25 00:00 165.0 '' '' -2014-11-26 00:00 166.5 '' '' -2014-11-27 00:00 174.1 '' '' -2014-11-28 00:00 176.6 '' '' -2014-11-29 00:00 172.5 '' '' -2014-11-30 00:00 172.4 '' '' -2014-12-01 00:00 163.4 '' '' -2014-12-02 00:00 163.0 '' '' -2014-12-03 00:00 149.8 '' '' -2014-12-04 00:00 153.0 '' '' -2014-12-05 00:00 132.8 '' '' -2014-12-06 00:00 125.0 '' '' -2014-12-07 00:00 127.9 '' '' -2014-12-08 00:00 128.7 '' '' -2014-12-09 00:00 135.5 '' '' -2014-12-10 00:00 145.3 '' '' -2014-12-11 00:00 143.0 '' '' -2014-12-12 00:00 149.4 '' '' -2014-12-13 00:00 154.9 '' '' -2014-12-14 00:00 161.2 '' '' -2014-12-15 00:00 164.0 '' '' -2014-12-16 00:00 178.8 '' '' -2014-12-17 00:00 192.3 '' '' -2014-12-18 00:00 206.4 '' '' -2014-12-19 00:00 208.9 '' '' -2014-12-20 00:00 196.7 '' '' -2014-12-21 00:00 199.2 '' '' -2014-12-22 00:00 173.4 '' '' -2014-12-23 00:00 160.5 '' '' -2014-12-24 00:00 146.5 '' '' -2014-12-25 00:00 140.6 '' '' -2014-12-26 00:00 132.5 '' '' -2014-12-27 00:00 129.7 '' '' -2014-12-28 00:00 128.2 '' '' -2014-12-29 00:00 127.1 '' '' -2014-12-30 00:00 126.0 '' '' -2014-12-31 00:00 129.2 '' '' -2015-01-01 00:00 132.9 '' '' -2015-01-02 00:00 141.0 '' '' -2015-01-03 00:00 143.8 '' '' -2015-01-04 00:00 144.8 '' '' -2015-01-05 00:00 137.2 '' '' -2015-01-06 00:00 137.2 '' '' -2015-01-07 00:00 142.4 '' '' -2015-01-08 00:00 152.0 '' '' -2015-01-09 00:00 146.2 '' '' -2015-01-10 00:00 146.9 '' '' -2015-01-11 00:00 148.6 '' '' -2015-01-12 00:00 153.4 '' '' -2015-01-13 00:00 145.3 '' '' -2015-01-14 00:00 137.2 '' '' -2015-01-15 00:00 127.1 '' '' -2015-01-16 00:00 120.7 '' '' -2015-01-17 00:00 118.0 '' '' -2015-01-18 00:00 121.7 '' '' -2015-01-19 00:00 125.9 '' '' -2015-01-20 00:00 121.6 '' '' -2015-01-21 00:00 120.0 '' '' -2015-01-22 00:00 116.6 '' '' -2015-01-23 00:00 117.3 '' '' -2015-01-24 00:00 121.4 '' '' -2015-01-25 00:00 122.7 '' '' -2015-01-26 00:00 142.5 '' '' -2015-01-27 00:00 153.3 '' '' -2015-01-28 00:00 154.5 '' '' -2015-01-29 00:00 166.7 '' '' -2015-01-30 00:00 154.6 '' '' -2015-01-31 00:00 149.0 '' '' -2015-02-01 00:00 137.6 '' '' -2015-02-02 00:00 139.8 '' '' -2015-02-03 00:00 145.1 '' '' -2015-02-04 00:00 150.1 '' '' -2015-02-05 00:00 138.0 '' '' -2015-02-06 00:00 139.3 '' '' -2015-02-07 00:00 148.9 '' '' -2015-02-08 00:00 148.7 '' '' -2015-02-09 00:00 141.9 '' '' -2015-02-10 00:00 137.3 '' '' -2015-02-11 00:00 127.7 '' '' -2015-02-12 00:00 124.4 '' '' -2015-02-13 00:00 121.8 '' '' -2015-02-14 00:00 117.4 '' '' -2015-02-15 00:00 116.7 '' '' -2015-02-16 00:00 115.3 '' '' -2015-02-17 00:00 115.7 '' '' -2015-02-18 00:00 118.2 '' '' -2015-02-19 00:00 116.0 '' '' -2015-02-20 00:00 117.0 '' '' -2015-02-21 00:00 113.6 '' '' -2015-02-22 00:00 115.0 '' '' -2015-02-23 00:00 114.3 '' '' -2015-02-24 00:00 112.1 '' '' -2015-02-25 00:00 108.8 '' '' -2015-02-26 00:00 109.1 '' '' -2015-02-27 00:00 115.7 '' '' -2015-02-28 00:00 121.1 '' '' -2015-03-01 00:00 125.3 '' '' -2015-03-02 00:00 128.1 '' '' -2015-03-03 00:00 122.9 '' '' -2015-03-04 00:00 122.1 '' '' -2015-03-05 00:00 137.9 '' '' -2015-03-06 00:00 125.4 '' '' -2015-03-07 00:00 135.7 '' '' -2015-03-08 00:00 122.3 '' '' -2015-03-09 00:00 121.2 '' '' -2015-03-10 00:00 119.2 '' '' -2015-03-11 00:00 129.9 '' '' -2015-03-12 00:00 125.1 '' '' -2015-03-13 00:00 117.9 '' '' -2015-03-14 00:00 114.3 '' '' -2015-03-15 00:00 113.1 '' '' -2015-03-16 00:00 116.0 '' '' -2015-03-17 00:00 113.2 '' '' -2015-03-18 00:00 113.7 '' '' -2015-03-19 00:00 108.3 '' '' -2015-03-20 00:00 111.8 '' '' -2015-03-21 00:00 112.7 '' '' -2015-03-22 00:00 121.5 '' '' -2015-03-23 00:00 127.2 '' '' -2015-03-24 00:00 132.2 '' '' -2015-03-25 00:00 137.0 '' '' -2015-03-26 00:00 135.5 '' '' -2015-03-27 00:00 137.2 '' '' -2015-03-28 00:00 145.1 '' '' -2015-03-29 00:00 144.0 '' '' -2015-03-30 00:00 133.3 '' '' -2015-03-31 00:00 127.8 '' '' -2015-04-01 00:00 123.9 '' '' -2015-04-02 00:00 121.2 '' '' -2015-04-03 00:00 119.8 '' '' -2015-04-04 00:00 122.4 '' '' -2015-04-05 00:00 122.3 '' '' -2015-04-06 00:00 125.8 '' '' -2015-04-07 00:00 111.4 '' '' -2015-04-08 00:00 106.3 '' '' -2015-04-09 00:00 111.6 '' '' -2015-04-10 00:00 115.5 '' '' -2015-04-11 00:00 123.5 '' '' -2015-04-12 00:00 134.6 '' '' -2015-04-13 00:00 142.1 '' '' -2015-04-14 00:00 147.7 '' '' -2015-04-15 00:00 155.7 '' '' -2015-04-16 00:00 151.3 '' '' -2015-04-17 00:00 150.8 '' '' -2015-04-18 00:00 148.9 '' '' -2015-04-19 00:00 153.0 '' '' -2015-04-20 00:00 151.0 '' '' -2015-04-21 00:00 155.3 '' '' -2015-04-22 00:00 151.8 '' '' -2015-04-23 00:00 142.0 '' '' -2015-04-24 00:00 136.0 '' '' -2015-04-25 00:00 127.4 '' '' -2015-04-26 00:00 120.0 '' '' -2015-04-27 00:00 108.9 '' '' -2015-04-28 00:00 109.2 '' '' -2015-04-29 00:00 105.5 '' '' -2015-04-30 00:00 103.3 '' '' -2015-05-01 00:00 101.4 '' '' -2015-05-02 00:00 107.3 '' '' -2015-05-03 00:00 112.9 '' '' -2015-05-04 00:00 125.4 '' '' -2015-05-05 00:00 130.0 '' '' -2015-05-06 00:00 138.6 '' '' -2015-05-07 00:00 149.2 '' '' -2015-05-08 00:00 152.6 '' '' -2015-05-09 00:00 157.5 '' '' -2015-05-10 00:00 163.1 '' '' -2015-05-11 00:00 166.2 '' '' -2015-05-12 00:00 166.5 '' '' -2015-05-13 00:00 160.3 '' '' -2015-05-14 00:00 148.2 '' '' -2015-05-15 00:00 139.5 '' '' -2015-05-16 00:00 134.0 '' '' -2015-05-17 00:00 122.3 '' '' -2015-05-18 00:00 117.6 '' '' -2015-05-19 00:00 112.9 '' '' -2015-05-20 00:00 108.2 '' '' -2015-05-21 00:00 104.3 '' '' -2015-05-22 00:00 101.6 '' '' -2015-05-23 00:00 100.2 '' '' -2015-05-24 00:00 101.2 '' '' -2015-05-25 00:00 99.0 '' '' -2015-05-26 00:00 97.0 '' '' -2015-05-27 00:00 97.8 '' '' -2015-05-28 00:00 95.5 '' '' -2015-05-29 00:00 94.8 '' '' -2015-05-30 00:00 97.7 '' '' -2015-05-31 00:00 97.0 '' '' -2015-06-01 00:00 103.2 '' '' -2015-06-02 00:00 103.9 '' '' -2015-06-03 00:00 111.6 '' '' -2015-06-04 00:00 121.4 '' '' -2015-06-05 00:00 129.7 '' '' -2015-06-06 00:00 136.6 '' '' -2015-06-07 00:00 141.4 '' '' -2015-06-08 00:00 138.2 '' '' -2015-06-09 00:00 140.6 '' '' -2015-06-10 00:00 139.5 '' '' -2015-06-11 00:00 144.2 '' '' -2015-06-12 00:00 141.0 '' '' -2015-06-13 00:00 140.3 '' '' -2015-06-14 00:00 135.8 '' '' -2015-06-15 00:00 139.1 '' '' -2015-06-16 00:00 140.5 '' '' -2015-06-17 00:00 140.2 '' '' -2015-06-18 00:00 155.7 '' '' -2015-06-19 00:00 141.8 '' '' -2015-06-20 00:00 139.8 '' '' -2015-06-21 00:00 136.0 '' '' -2015-06-22 00:00 255.0 '' '' -2015-06-23 00:00 119.9 '' '' -2015-06-24 00:00 113.1 '' '' -2015-06-25 00:00 105.2 '' '' -2015-06-26 00:00 104.6 '' '' -2015-06-27 00:00 100.5 '' '' -2015-06-28 00:00 100.5 '' '' -2015-06-29 00:00 100.4 '' '' -2015-06-30 00:00 104.2 '' '' -2015-07-01 00:00 113.3 '' '' -2015-07-02 00:00 117.6 '' '' -2015-07-03 00:00 116.1 '' '' -2015-07-04 00:00 120.7 '' '' -2015-07-05 00:00 129.0 '' '' -2015-07-06 00:00 137.9 '' '' -2015-07-07 00:00 137.1 '' '' -2015-07-08 00:00 133.2 '' '' -2015-07-09 00:00 126.0 '' '' -2015-07-10 00:00 133.3 '' '' -2015-07-11 00:00 124.3 '' '' -2015-07-12 00:00 119.9 '' '' -2015-07-13 00:00 113.8 '' '' -2015-07-14 00:00 108.7 '' '' -2015-07-15 00:00 104.4 '' '' -2015-07-16 00:00 102.9 '' '' -2015-07-17 00:00 100.6 '' '' -2015-07-18 00:00 99.1 '' '' -2015-07-19 00:00 102.6 '' '' -2015-07-20 00:00 96.3 '' '' -2015-07-21 00:00 94.0 '' '' -2015-07-22 00:00 91.9 '' '' -2015-07-23 00:00 92.2 '' '' -2015-07-24 00:00 95.2 '' '' -2015-07-25 00:00 96.9 '' '' -2015-07-26 00:00 100.1 '' '' -2015-07-27 00:00 103.2 '' '' -2015-07-28 00:00 104.2 '' '' -2015-07-29 00:00 103.8 '' '' -2015-07-30 00:00 105.1 '' '' -2015-07-31 00:00 103.8 '' '' -2015-08-01 00:00 106.0 '' '' -2015-08-02 00:00 104.5 '' '' -2015-08-03 00:00 108.7 '' '' -2015-08-04 00:00 109.9 '' '' -2015-08-05 00:00 115.5 '' '' -2015-08-06 00:00 125.1 '' '' -2015-08-07 00:00 125.5 '' '' -2015-08-08 00:00 124.4 '' '' -2015-08-09 00:00 117.6 '' '' -2015-08-10 00:00 109.1 '' '' -2015-08-11 00:00 105.6 '' '' -2015-08-12 00:00 101.9 '' '' -2015-08-13 00:00 97.3 '' '' -2015-08-14 00:00 95.7 '' '' -2015-08-15 00:00 91.7 '' '' -2015-08-16 00:00 87.8 '' '' -2015-08-17 00:00 89.2 '' '' -2015-08-18 00:00 90.9 '' '' -2015-08-19 00:00 100.6 '' '' -2015-08-20 00:00 105.3 '' '' -2015-08-21 00:00 121.4 '' '' -2015-08-22 00:00 119.6 '' '' -2015-08-23 00:00 136.1 '' '' -2015-08-24 00:00 130.6 '' '' -2015-08-25 00:00 123.9 '' '' -2015-08-26 00:00 128.9 '' '' -2015-08-27 00:00 112.5 '' '' -2015-08-28 00:00 111.3 '' '' -2015-08-29 00:00 102.1 '' '' -2015-08-30 00:00 93.4 '' '' -2015-08-31 00:00 92.7 '' '' -2015-09-01 00:00 90.7 '' '' -2015-09-02 00:00 89.8 '' '' -2015-09-03 00:00 88.0 '' '' -2015-09-04 00:00 91.5 '' '' -2015-09-05 00:00 86.8 '' '' -2015-09-06 00:00 86.9 '' '' -2015-09-07 00:00 85.0 '' '' -2015-09-08 00:00 84.7 '' '' -2015-09-09 00:00 83.5 '' '' -2015-09-10 00:00 84.6 '' '' -2015-09-11 00:00 94.1 '' '' -2015-09-12 00:00 100.4 '' '' -2015-09-13 00:00 100.0 '' '' -2015-09-14 00:00 97.7 '' '' -2015-09-15 00:00 102.2 '' '' -2015-09-16 00:00 110.6 '' '' -2015-09-17 00:00 107.9 '' '' -2015-09-18 00:00 103.8 '' '' -2015-09-19 00:00 106.7 '' '' -2015-09-20 00:00 111.3 '' '' -2015-09-21 00:00 104.2 '' '' -2015-09-22 00:00 107.8 '' '' -2015-09-23 00:00 111.4 '' '' -2015-09-24 00:00 107.4 '' '' -2015-09-25 00:00 120.5 '' '' -2015-09-26 00:00 120.8 '' '' -2015-09-27 00:00 128.1 '' '' -2015-09-28 00:00 124.5 '' '' -2015-09-29 00:00 129.6 '' '' -2015-09-30 00:00 131.5 '' '' -2015-10-01 00:00 120.0 '' '' -2015-10-02 00:00 107.6 '' '' -2015-10-03 00:00 97.0 '' '' -2015-10-04 00:00 88.3 '' '' -2015-10-05 00:00 82.6 '' '' -2015-10-06 00:00 81.3 '' '' -2015-10-07 00:00 80.4 '' '' -2015-10-08 00:00 79.5 '' '' -2015-10-09 00:00 81.0 '' '' -2015-10-10 00:00 81.2 '' '' -2015-10-11 00:00 84.3 '' '' -2015-10-12 00:00 88.7 '' '' -2015-10-13 00:00 95.2 '' '' -2015-10-14 00:00 100.2 '' '' -2015-10-15 00:00 106.1 '' '' -2015-10-16 00:00 108.4 '' '' -2015-10-17 00:00 115.8 '' '' -2015-10-18 00:00 118.6 '' '' -2015-10-19 00:00 122.7 '' '' -2015-10-20 00:00 121.7 '' '' -2015-10-21 00:00 127.8 '' '' -2015-10-22 00:00 119.3 '' '' -2015-10-23 00:00 113.7 '' '' -2015-10-24 00:00 105.2 '' '' -2015-10-25 00:00 105.2 '' '' -2015-10-26 00:00 104.9 '' '' -2015-10-27 00:00 108.7 '' '' -2015-10-28 00:00 110.7 '' '' -2015-10-29 00:00 111.4 '' '' -2015-10-30 00:00 119.5 '' '' -2015-10-31 00:00 116.7 '' '' -2015-11-01 00:00 122.4 '' '' -2015-11-02 00:00 120.1 '' '' -2015-11-03 00:00 122.2 '' '' -2015-11-04 00:00 112.0 '' '' -2015-11-05 00:00 108.1 '' '' -2015-11-06 00:00 113.2 '' '' -2015-11-07 00:00 112.9 '' '' -2015-11-08 00:00 105.7 '' '' -2015-11-09 00:00 105.6 '' '' -2015-11-10 00:00 103.3 '' '' -2015-11-11 00:00 102.9 '' '' -2015-11-12 00:00 101.4 '' '' -2015-11-13 00:00 100.8 '' '' -2015-11-14 00:00 104.1 '' '' -2015-11-15 00:00 103.5 '' '' -2015-11-16 00:00 103.2 '' '' -2015-11-17 00:00 104.6 '' '' -2015-11-18 00:00 105.1 '' '' -2015-11-19 00:00 105.6 '' '' -2015-11-20 00:00 108.4 '' '' -2015-11-21 00:00 119.2 '' '' -2015-11-22 00:00 119.9 '' '' -2015-11-23 00:00 116.7 '' '' -2015-11-24 00:00 110.3 '' '' -2015-11-25 00:00 106.2 '' '' -2015-11-26 00:00 101.2 '' '' -2015-11-27 00:00 96.3 '' '' -2015-11-28 00:00 94.0 '' '' -2015-11-29 00:00 92.9 '' '' -2015-11-30 00:00 93.1 '' '' -2015-12-01 00:00 91.9 '' '' -2015-12-02 00:00 92.6 '' '' -2015-12-03 00:00 91.8 '' '' -2015-12-04 00:00 94.8 '' '' -2015-12-05 00:00 97.6 '' '' -2015-12-06 00:00 99.3 '' '' -2015-12-07 00:00 97.8 '' '' -2015-12-08 00:00 107.9 '' '' -2015-12-09 00:00 105.5 '' '' -2015-12-10 00:00 105.2 '' '' -2015-12-11 00:00 110.3 '' '' -2015-12-12 00:00 113.1 '' '' -2015-12-13 00:00 118.7 '' '' -2015-12-14 00:00 120.2 '' '' -2015-12-15 00:00 115.2 '' '' -2015-12-16 00:00 122.2 '' '' -2015-12-17 00:00 114.0 '' '' -2015-12-18 00:00 113.3 '' '' -2015-12-19 00:00 115.2 '' '' -2015-12-20 00:00 112.8 '' '' -2015-12-21 00:00 117.8 '' '' -2015-12-22 00:00 125.8 '' '' -2015-12-23 00:00 129.5 '' '' -2015-12-24 00:00 128.4 '' '' -2015-12-25 00:00 122.3 '' '' -2015-12-26 00:00 113.5 '' '' -2015-12-27 00:00 106.7 '' '' -2015-12-28 00:00 108.4 '' '' -2015-12-29 00:00 101.9 '' '' -2015-12-30 00:00 98.1 '' '' -2015-12-31 00:00 93.0 '' '' -2016-01-01 00:00 95.1 '' '' -2016-01-02 00:00 96.6 '' '' -2016-01-03 00:00 98.5 '' '' -2016-01-04 00:00 92.2 '' '' -2016-01-05 00:00 92.1 '' '' -2016-01-06 00:00 96.9 '' '' -2016-01-07 00:00 99.9 '' '' -2016-01-08 00:00 104.9 '' '' -2016-01-09 00:00 103.5 '' '' -2016-01-10 00:00 105.4 '' '' -2016-01-11 00:00 104.5 '' '' -2016-01-12 00:00 102.0 '' '' -2016-01-13 00:00 100.7 '' '' -2016-01-14 00:00 99.9 '' '' -2016-01-15 00:00 100.1 '' '' -2016-01-16 00:00 96.7 '' '' -2016-01-17 00:00 97.4 '' '' -2016-01-18 00:00 96.7 '' '' -2016-01-19 00:00 94.4 '' '' -2016-01-20 00:00 97.2 '' '' -2016-01-21 00:00 100.7 '' '' -2016-01-22 00:00 97.3 '' '' -2016-01-23 00:00 95.8 '' '' -2016-01-24 00:00 100.6 '' '' -2016-01-25 00:00 104.3 '' '' -2016-01-26 00:00 111.3 '' '' -2016-01-27 00:00 109.3 '' '' -2016-01-28 00:00 106.6 '' '' -2016-01-29 00:00 103.7 '' '' -2016-01-30 00:00 102.0 '' '' -2016-01-31 00:00 98.3 '' '' -2016-02-01 00:00 97.3 '' '' -2016-02-02 00:00 99.1 '' '' -2016-02-03 00:00 108.9 '' '' -2016-02-04 00:00 119.8 '' '' -2016-02-05 00:00 116.3 '' '' -2016-02-06 00:00 113.9 '' '' -2016-02-07 00:00 113.9 '' '' -2016-02-08 00:00 112.1 '' '' -2016-02-09 00:00 114.1 '' '' -2016-02-10 00:00 109.2 '' '' -2016-02-11 00:00 109.8 '' '' -2016-02-12 00:00 109.3 '' '' -2016-02-13 00:00 107.5 '' '' -2016-02-14 00:00 105.4 '' '' -2016-02-15 00:00 104.7 '' '' -2016-02-16 00:00 101.5 '' '' -2016-02-17 00:00 97.5 '' '' -2016-02-18 00:00 92.7 '' '' -2016-02-19 00:00 91.9 '' '' -2016-02-20 00:00 97.8 '' '' -2016-02-21 00:00 93.5 '' '' -2016-02-22 00:00 91.7 '' '' -2016-02-23 00:00 89.1 '' '' -2016-02-24 00:00 86.1 '' '' -2016-02-25 00:00 89.9 '' '' -2016-02-26 00:00 87.2 '' '' -2016-02-27 00:00 88.6 '' '' -2016-02-28 00:00 91.5 '' '' -2016-02-29 00:00 89.3 '' '' -2016-03-01 00:00 95.1 '' '' -2016-03-02 00:00 96.5 '' '' -2016-03-03 00:00 97.1 '' '' -2016-03-04 00:00 98.9 '' '' -2016-03-05 00:00 94.7 '' '' -2016-03-06 00:00 94.1 '' '' -2016-03-07 00:00 92.8 '' '' -2016-03-08 00:00 94.2 '' '' -2016-03-09 00:00 96.0 '' '' -2016-03-10 00:00 93.7 '' '' -2016-03-11 00:00 93.0 '' '' -2016-03-12 00:00 93.9 '' '' -2016-03-13 00:00 91.5 '' '' -2016-03-14 00:00 92.4 '' '' -2016-03-15 00:00 93.1 '' '' -2016-03-16 00:00 90.1 '' '' -2016-03-17 00:00 90.7 '' '' -2016-03-18 00:00 89.5 '' '' -2016-03-19 00:00 88.6 '' '' -2016-03-20 00:00 86.9 '' '' -2016-03-21 00:00 88.2 '' '' -2016-03-22 00:00 86.7 '' '' -2016-03-23 00:00 86.2 '' '' -2016-03-24 00:00 86.0 '' '' -2016-03-25 00:00 85.1 '' '' -2016-03-26 00:00 85.1 '' '' -2016-03-27 00:00 87.9 '' '' -2016-03-28 00:00 87.4 '' '' -2016-03-29 00:00 87.5 '' '' -2016-03-30 00:00 83.6 '' '' -2016-03-31 00:00 81.6 '' '' -2016-04-01 00:00 82.0 '' '' -2016-04-02 00:00 81.5 '' '' -2016-04-03 00:00 82.3 '' '' -2016-04-04 00:00 83.5 '' '' -2016-04-05 00:00 83.5 '' '' -2016-04-06 00:00 87.2 '' '' -2016-04-07 00:00 92.5 '' '' -2016-04-08 00:00 98.6 '' '' -2016-04-09 00:00 105.9 '' '' -2016-04-10 00:00 111.1 '' '' -2016-04-11 00:00 117.2 '' '' -2016-04-12 00:00 111.9 '' '' -2016-04-13 00:00 108.8 '' '' -2016-04-14 00:00 111.8 '' '' -2016-04-15 00:00 113.2 '' '' -2016-04-16 00:00 114.0 '' '' -2016-04-17 00:00 102.9 '' '' -2016-04-18 00:00 95.4 '' '' -2016-04-19 00:00 89.9 '' '' -2016-04-20 00:00 84.0 '' '' -2016-04-21 00:00 77.5 '' '' -2016-04-22 00:00 77.5 '' '' -2016-04-23 00:00 79.6 '' '' -2016-04-24 00:00 82.8 '' '' -2016-04-25 00:00 82.9 '' '' -2016-04-26 00:00 86.3 '' '' -2016-04-27 00:00 93.8 '' '' -2016-04-28 00:00 96.3 '' '' -2016-04-29 00:00 93.8 '' '' -2016-04-30 00:00 95.4 '' '' -2016-05-01 00:00 93.6 '' '' -2016-05-02 00:00 91.3 '' '' -2016-05-03 00:00 91.5 '' '' -2016-05-04 00:00 91.6 '' '' -2016-05-05 00:00 88.7 '' '' -2016-05-06 00:00 91.2 '' '' -2016-05-07 00:00 89.7 '' '' -2016-05-08 00:00 85.6 '' '' -2016-05-09 00:00 90.2 '' '' -2016-05-10 00:00 90.5 '' '' -2016-05-11 00:00 95.8 '' '' -2016-05-12 00:00 93.9 '' '' -2016-05-13 00:00 95.4 '' '' -2016-05-14 00:00 103.4 '' '' -2016-05-15 00:00 110.8 '' '' -2016-05-16 00:00 104.3 '' '' -2016-05-17 00:00 105.6 '' '' -2016-05-18 00:00 104.7 '' '' -2016-05-19 00:00 101.2 '' '' -2016-05-20 00:00 102.0 '' '' -2016-05-21 00:00 100.2 '' '' -2016-05-22 00:00 99.8 '' '' -2016-05-23 00:00 99.8 '' '' -2016-05-24 00:00 96.7 '' '' -2016-05-25 00:00 96.1 '' '' -2016-05-26 00:00 94.2 '' '' -2016-05-27 00:00 92.8 '' '' -2016-05-28 00:00 90.1 '' '' -2016-05-29 00:00 85.3 '' '' -2016-05-30 00:00 88.7 '' '' -2016-05-31 00:00 89.0 '' '' -2016-06-01 00:00 88.4 '' '' -2016-06-02 00:00 87.7 '' '' -2016-06-03 00:00 85.7 '' '' -2016-06-04 00:00 82.4 '' '' -2016-06-05 00:00 81.5 '' '' -2016-06-06 00:00 80.8 '' '' -2016-06-07 00:00 80.8 '' '' -2016-06-08 00:00 82.6 '' '' -2016-06-09 00:00 87.8 '' '' -2016-06-10 00:00 87.5 '' '' -2016-06-11 00:00 90.9 '' '' -2016-06-12 00:00 97.1 '' '' -2016-06-13 00:00 93.9 '' '' -2016-06-14 00:00 90.4 '' '' -2016-06-15 00:00 90.1 '' '' -2016-06-16 00:00 91.0 '' '' -2016-06-17 00:00 89.4 '' '' -2016-06-18 00:00 86.3 '' '' -2016-06-19 00:00 87.9 '' '' -2016-06-20 00:00 87.1 '' '' -2016-06-21 00:00 82.9 '' '' -2016-06-22 00:00 80.9 '' '' -2016-06-23 00:00 80.0 '' '' -2016-06-24 00:00 78.2 '' '' -2016-06-25 00:00 79.6 '' '' -2016-06-26 00:00 79.2 '' '' -2016-06-27 00:00 78.0 '' '' -2016-06-28 00:00 75.5 '' '' -2016-06-29 00:00 76.0 '' '' -2016-06-30 00:00 75.4 '' '' -2016-07-01 00:00 74.4 '' '' -2016-07-02 00:00 73.3 '' '' -2016-07-03 00:00 74.8 '' '' -2016-07-04 00:00 76.3 '' '' -2016-07-05 00:00 74.9 '' '' -2016-07-06 00:00 79.7 '' '' -2016-07-07 00:00 86.1 '' '' -2016-07-08 00:00 90.0 '' '' -2016-07-09 00:00 95.3 '' '' -2016-07-10 00:00 97.6 '' '' -2016-07-11 00:00 97.8 '' '' -2016-07-12 00:00 95.5 '' '' -2016-07-13 00:00 100.0 '' '' -2016-07-14 00:00 98.2 '' '' -2016-07-15 00:00 105.4 '' '' -2016-07-16 00:00 110.1 '' '' -2016-07-17 00:00 108.6 '' '' -2016-07-18 00:00 110.6 '' '' -2016-07-19 00:00 104.1 '' '' -2016-07-20 00:00 111.5 '' '' -2016-07-21 00:00 103.3 '' '' -2016-07-22 00:00 93.3 '' '' -2016-07-23 00:00 88.9 '' '' -2016-07-24 00:00 84.8 '' '' -2016-07-25 00:00 75.9 '' '' -2016-07-26 00:00 75.9 '' '' -2016-07-27 00:00 73.8 '' '' -2016-07-28 00:00 72.5 '' '' -2016-07-29 00:00 72.6 '' '' -2016-07-30 00:00 73.1 '' '' -2016-07-31 00:00 73.7 '' '' -2016-08-01 00:00 74.1 '' '' -2016-08-02 00:00 77.1 '' '' -2016-08-03 00:00 77.0 '' '' -2016-08-04 00:00 78.5 '' '' -2016-08-05 00:00 82.1 '' '' -2016-08-06 00:00 85.5 '' '' -2016-08-07 00:00 95.3 '' '' -2016-08-08 00:00 99.0 '' '' -2016-08-09 00:00 94.9 '' '' -2016-08-10 00:00 97.6 '' '' -2016-08-11 00:00 97.2 '' '' -2016-08-12 00:00 97.3 '' '' -2016-08-13 00:00 92.9 '' '' -2016-08-14 00:00 89.4 '' '' -2016-08-15 00:00 89.8 '' '' -2016-08-16 00:00 88.7 '' '' -2016-08-17 00:00 84.9 '' '' -2016-08-18 00:00 84.4 '' '' -2016-08-19 00:00 82.7 '' '' -2016-08-20 00:00 80.0 '' '' -2016-08-21 00:00 78.4 '' '' -2016-08-22 00:00 81.8 '' '' -2016-08-23 00:00 83.1 '' '' -2016-08-24 00:00 79.7 '' '' -2016-08-25 00:00 80.3 '' '' -2016-08-26 00:00 83.6 '' '' -2016-08-27 00:00 85.6 '' '' -2016-08-28 00:00 87.1 '' '' -2016-08-29 00:00 89.5 '' '' -2016-08-30 00:00 102.3 '' '' -2016-08-31 00:00 99.3 '' '' -2016-09-01 00:00 96.9 '' '' -2016-09-02 00:00 96.3 '' '' -2016-09-03 00:00 100.7 '' '' -2016-09-04 00:00 99.0 '' '' -2016-09-05 00:00 95.3 '' '' -2016-09-06 00:00 93.9 '' '' -2016-09-07 00:00 94.4 '' '' -2016-09-08 00:00 95.9 '' '' -2016-09-09 00:00 92.3 '' '' -2016-09-10 00:00 94.3 '' '' -2016-09-11 00:00 87.5 '' '' -2016-09-12 00:00 87.5 '' '' -2016-09-13 00:00 87.0 '' '' -2016-09-14 00:00 86.2 '' '' -2016-09-15 00:00 85.3 '' '' -2016-09-16 00:00 84.5 '' '' -2016-09-17 00:00 81.0 '' '' -2016-09-18 00:00 83.8 '' '' -2016-09-19 00:00 83.3 '' '' -2016-09-20 00:00 85.2 '' '' -2016-09-21 00:00 86.1 '' '' -2016-09-22 00:00 85.7 '' '' -2016-09-23 00:00 86.1 '' '' -2016-09-24 00:00 85.4 '' '' -2016-09-25 00:00 85.1 '' '' -2016-09-26 00:00 87.2 '' '' -2016-09-27 00:00 85.9 '' '' -2016-09-28 00:00 84.8 '' '' -2016-09-29 00:00 83.0 '' '' -2016-09-30 00:00 80.8 '' '' -2016-10-01 00:00 81.2 '' '' -2016-10-02 00:00 82.4 '' '' -2016-10-03 00:00 87.9 '' '' -2016-10-04 00:00 93.1 '' '' -2016-10-05 00:00 99.3 '' '' -2016-10-06 00:00 101.4 '' '' -2016-10-07 00:00 104.0 '' '' -2016-10-08 00:00 104.1 '' '' -2016-10-09 00:00 104.2 '' '' -2016-10-10 00:00 101.6 '' '' -2016-10-11 00:00 98.8 '' '' -2016-10-12 00:00 97.2 '' '' -2016-10-13 00:00 94.8 '' '' -2016-10-14 00:00 92.3 '' '' -2016-10-15 00:00 84.4 '' '' -2016-10-16 00:00 80.4 '' '' -2016-10-17 00:00 75.6 '' '' -2016-10-18 00:00 76.8 '' '' -2016-10-19 00:00 75.8 '' '' -2016-10-20 00:00 74.0 '' '' -2016-10-21 00:00 77.1 '' '' -2016-10-22 00:00 76.7 '' '' -2016-10-23 00:00 76.0 '' '' -2016-10-24 00:00 74.5 '' '' -2016-10-25 00:00 76.9 '' '' -2016-10-26 00:00 77.1 '' '' -2016-10-27 00:00 77.8 '' '' -2016-10-28 00:00 78.2 '' '' -2016-10-29 00:00 78.0 '' '' -2016-10-30 00:00 75.1 '' '' -2016-10-31 00:00 75.5 '' '' -2016-11-01 00:00 75.4 '' '' -2016-11-02 00:00 74.8 '' '' -2016-11-03 00:00 74.4 '' '' -2016-11-04 00:00 75.4 '' '' -2016-11-05 00:00 75.3 '' '' -2016-11-06 00:00 74.9 '' '' -2016-11-07 00:00 75.1 '' '' -2016-11-08 00:00 75.4 '' '' -2016-11-09 00:00 78.3 '' '' -2016-11-10 00:00 78.6 '' '' -2016-11-11 00:00 76.8 '' '' -2016-11-12 00:00 76.8 '' '' -2016-11-13 00:00 76.2 '' '' -2016-11-14 00:00 75.6 '' '' -2016-11-15 00:00 74.9 '' '' -2016-11-16 00:00 79.1 '' '' -2016-11-17 00:00 76.8 '' '' -2016-11-18 00:00 75.8 '' '' -2016-11-19 00:00 74.9 '' '' -2016-11-20 00:00 74.6 '' '' -2016-11-21 00:00 73.1 '' '' -2016-11-22 00:00 75.4 '' '' -2016-11-23 00:00 75.7 '' '' -2016-11-24 00:00 77.0 '' '' -2016-11-25 00:00 78.8 '' '' -2016-11-26 00:00 79.1 '' '' -2016-11-27 00:00 80.4 '' '' -2016-11-28 00:00 82.9 '' '' -2016-11-29 00:00 83.1 '' '' -2016-11-30 00:00 81.3 '' '' -2016-12-01 00:00 82.1 '' '' -2016-12-02 00:00 82.0 '' '' -2016-12-03 00:00 82.2 '' '' -2016-12-04 00:00 80.0 '' '' -2016-12-05 00:00 80.3 '' '' -2016-12-06 00:00 77.4 '' '' -2016-12-07 00:00 74.9 '' '' -2016-12-08 00:00 72.6 '' '' -2016-12-09 00:00 70.7 '' '' -2016-12-10 00:00 70.0 '' '' -2016-12-11 00:00 69.2 '' '' -2016-12-12 00:00 68.6 '' '' -2016-12-13 00:00 69.0 '' '' -2016-12-14 00:00 70.1 '' '' -2016-12-15 00:00 70.2 '' '' -2016-12-16 00:00 70.3 '' '' -2016-12-17 00:00 69.8 '' '' -2016-12-18 00:00 70.0 '' '' -2016-12-19 00:00 70.5 '' '' -2016-12-20 00:00 72.5 '' '' -2016-12-21 00:00 72.6 '' '' -2016-12-22 00:00 72.4 '' '' -2016-12-23 00:00 71.3 '' '' -2016-12-24 00:00 70.7 '' '' -2016-12-25 00:00 70.1 '' '' -2016-12-26 00:00 71.4 '' '' -2016-12-27 00:00 71.3 '' '' -2016-12-28 00:00 70.9 '' '' -2016-12-29 00:00 70.9 '' '' -2016-12-30 00:00 71.2 '' '' -2016-12-31 00:00 71.1 '' '' -2017-01-01 00:00 70.1 '' '' -2017-01-02 00:00 70.6 '' '' -2017-01-03 00:00 71.0 '' '' -2017-01-04 00:00 70.0 '' '' -2017-01-05 00:00 70.9 '' '' -2017-01-06 00:00 69.6 '' '' -2017-01-07 00:00 69.7 '' '' -2017-01-08 00:00 69.2 '' '' -2017-01-09 00:00 68.9 '' '' -2017-01-10 00:00 70.3 '' '' -2017-01-11 00:00 72.0 '' '' -2017-01-12 00:00 73.0 '' '' -2017-01-13 00:00 72.4 '' '' -2017-01-14 00:00 74.1 '' '' -2017-01-15 00:00 75.0 '' '' -2017-01-16 00:00 75.8 '' '' -2017-01-17 00:00 76.1 '' '' -2017-01-18 00:00 76.1 '' '' -2017-01-19 00:00 77.0 '' '' -2017-01-20 00:00 80.6 '' '' -2017-01-21 00:00 83.4 '' '' -2017-01-22 00:00 84.0 '' '' -2017-01-23 00:00 81.5 '' '' -2017-01-24 00:00 79.7 '' '' -2017-01-25 00:00 82.5 '' '' -2017-01-26 00:00 80.6 '' '' -2017-01-27 00:00 77.9 '' '' -2017-01-28 00:00 76.1 '' '' -2017-01-29 00:00 74.4 '' '' -2017-01-30 00:00 74.7 '' '' -2017-01-31 00:00 73.8 '' '' -2017-02-01 00:00 73.9 '' '' -2017-02-02 00:00 73.1 '' '' -2017-02-03 00:00 73.0 '' '' -2017-02-04 00:00 71.9 '' '' -2017-02-05 00:00 70.6 '' '' -2017-02-06 00:00 70.5 '' '' -2017-02-07 00:00 70.1 '' '' -2017-02-08 00:00 71.1 '' '' -2017-02-09 00:00 71.5 '' '' -2017-02-10 00:00 72.1 '' '' -2017-02-11 00:00 73.8 '' '' -2017-02-12 00:00 74.3 '' '' -2017-02-13 00:00 73.0 '' '' -2017-02-14 00:00 72.7 '' '' -2017-02-15 00:00 73.0 '' '' -2017-02-16 00:00 72.2 '' '' -2017-02-17 00:00 72.8 '' '' -2017-02-18 00:00 74.9 '' '' -2017-02-19 00:00 76.4 '' '' -2017-02-20 00:00 78.9 '' '' -2017-02-21 00:00 80.7 '' '' -2017-02-22 00:00 81.4 '' '' -2017-02-23 00:00 81.6 '' '' -2017-02-24 00:00 80.5 '' '' -2017-02-25 00:00 78.5 '' '' -2017-02-26 00:00 77.5 '' '' -2017-02-27 00:00 80.6 '' '' -2017-02-28 00:00 80.1 '' '' -2017-03-01 00:00 79.3 '' '' -2017-03-02 00:00 77.8 '' '' -2017-03-03 00:00 76.7 '' '' -2017-03-04 00:00 73.9 '' '' -2017-03-05 00:00 71.6 '' '' -2017-03-06 00:00 71.3 '' '' -2017-03-07 00:00 70.6 '' '' -2017-03-08 00:00 69.6 '' '' -2017-03-09 00:00 70.3 '' '' -2017-03-10 00:00 70.0 '' '' -2017-03-11 00:00 69.1 '' '' -2017-03-12 00:00 69.2 '' '' -2017-03-13 00:00 69.5 '' '' -2017-03-14 00:00 68.8 '' '' -2017-03-15 00:00 69.1 '' '' -2017-03-16 00:00 69.7 '' '' -2017-03-17 00:00 69.9 '' '' -2017-03-18 00:00 69.6 '' '' -2017-03-19 00:00 70.5 '' '' -2017-03-20 00:00 72.1 '' '' -2017-03-21 00:00 70.5 '' '' -2017-03-22 00:00 72.0 '' '' -2017-03-23 00:00 71.5 '' '' -2017-03-24 00:00 71.9 '' '' -2017-03-25 00:00 73.7 '' '' -2017-03-26 00:00 76.8 '' '' -2017-03-27 00:00 82.5 '' '' -2017-03-28 00:00 83.4 '' '' -2017-03-29 00:00 83.1 '' '' -2017-03-30 00:00 85.7 '' '' -2017-03-31 00:00 90.4 '' '' -2017-04-01 00:00 100.9 '' '' -2017-04-02 00:00 111.9 '' '' -2017-04-03 00:00 107.9 '' '' -2017-04-04 00:00 93.9 '' '' -2017-04-05 00:00 84.7 '' '' -2017-04-06 00:00 75.8 '' '' -2017-04-07 00:00 74.1 '' '' -2017-04-08 00:00 73.3 '' '' -2017-04-09 00:00 74.7 '' '' -2017-04-10 00:00 73.9 '' '' -2017-04-11 00:00 74.9 '' '' -2017-04-12 00:00 71.8 '' '' -2017-04-13 00:00 73.9 '' '' -2017-04-14 00:00 73.3 '' '' -2017-04-15 00:00 73.5 '' '' -2017-04-16 00:00 75.0 '' '' -2017-04-17 00:00 75.8 '' '' -2017-04-18 00:00 86.4 '' '' -2017-04-19 00:00 81.6 '' '' -2017-04-20 00:00 81.4 '' '' -2017-04-21 00:00 83.1 '' '' -2017-04-22 00:00 84.5 '' '' -2017-04-23 00:00 83.4 '' '' -2017-04-24 00:00 81.1 '' '' -2017-04-25 00:00 82.3 '' '' -2017-04-26 00:00 80.6 '' '' -2017-04-27 00:00 79.3 '' '' -2017-04-28 00:00 79.1 '' '' -2017-04-29 00:00 78.2 '' '' -2017-04-30 00:00 78.6 '' '' -2017-05-01 00:00 76.4 '' '' -2017-05-02 00:00 78.4 '' '' -2017-05-03 00:00 76.2 '' '' -2017-05-04 00:00 75.4 '' '' -2017-05-05 00:00 74.8 '' '' -2017-05-06 00:00 74.1 '' '' -2017-05-07 00:00 73.0 '' '' -2017-05-08 00:00 71.8 '' '' -2017-05-09 00:00 70.2 '' '' -2017-05-10 00:00 69.9 '' '' -2017-05-11 00:00 70.5 '' '' -2017-05-12 00:00 70.4 '' '' -2017-05-13 00:00 71.9 '' '' -2017-05-14 00:00 72.7 '' '' -2017-05-15 00:00 72.2 '' '' -2017-05-16 00:00 73.5 '' '' -2017-05-17 00:00 73.1 '' '' -2017-05-18 00:00 73.9 '' '' -2017-05-19 00:00 74.0 '' '' -2017-05-20 00:00 74.2 '' '' -2017-05-21 00:00 75.3 '' '' -2017-05-22 00:00 76.3 '' '' -2017-05-23 00:00 77.9 '' '' -2017-05-24 00:00 79.9 '' '' -2017-05-25 00:00 78.1 '' '' -2017-05-26 00:00 82.4 '' '' -2017-05-27 00:00 84.1 '' '' -2017-05-28 00:00 81.0 '' '' -2017-05-29 00:00 77.9 '' '' -2017-05-30 00:00 75.7 '' '' -2017-05-31 00:00 76.2 '' '' -2017-06-01 00:00 77.9 '' '' -2017-06-02 00:00 80.4 '' '' -2017-06-03 00:00 80.2 '' '' -2017-06-04 00:00 79.9 '' '' -2017-06-05 00:00 81.8 '' '' -2017-06-06 00:00 77.6 '' '' -2017-06-07 00:00 77.8 '' '' -2017-06-08 00:00 76.2 '' '' -2017-06-09 00:00 76.0 '' '' -2017-06-10 00:00 77.0 '' '' -2017-06-11 00:00 76.6 '' '' -2017-06-12 00:00 77.5 '' '' -2017-06-13 00:00 77.2 '' '' -2017-06-14 00:00 76.4 '' '' -2017-06-15 00:00 79.9 '' '' -2017-06-16 00:00 75.8 '' '' -2017-06-17 00:00 77.2 '' '' -2017-06-18 00:00 77.3 '' '' -2017-06-19 00:00 76.0 '' '' -2017-06-20 00:00 76.9 '' '' -2017-06-21 00:00 76.2 '' '' -2017-06-22 00:00 76.1 '' '' -2017-06-23 00:00 76.1 '' '' -2017-06-24 00:00 76.6 '' '' -2017-06-25 00:00 76.2 '' '' -2017-06-26 00:00 76.2 '' '' -2017-06-27 00:00 76.6 '' '' -2017-06-28 00:00 74.5 '' '' -2017-06-29 00:00 74.2 '' '' -2017-06-30 00:00 73.9 '' '' -2017-07-01 00:00 73.1 '' '' -2017-07-02 00:00 73.6 '' '' -2017-07-03 00:00 74.1 '' '' -2017-07-04 00:00 74.2 '' '' -2017-07-05 00:00 75.5 '' '' -2017-07-06 00:00 78.5 '' '' -2017-07-07 00:00 82.2 '' '' -2017-07-08 00:00 89.5 '' '' -2017-07-09 00:00 94.0 '' '' -2017-07-10 00:00 98.2 '' '' -2017-07-11 00:00 94.1 '' '' -2017-07-12 00:00 93.2 '' '' -2017-07-13 00:00 95.3 '' '' -2017-07-14 00:00 97.0 '' '' -2017-07-15 00:00 94.6 '' '' -2017-07-16 00:00 89.3 '' '' -2017-07-17 00:00 88.4 '' '' -2017-07-18 00:00 80.8 '' '' -2017-07-19 00:00 75.5 '' '' -2017-07-20 00:00 72.5 '' '' -2017-07-21 00:00 71.6 '' '' -2017-07-22 00:00 71.8 '' '' -2017-07-23 00:00 72.8 '' '' -2017-07-24 00:00 72.3 '' '' -2017-07-25 00:00 72.0 '' '' -2017-07-26 00:00 70.7 '' '' -2017-07-27 00:00 70.5 '' '' -2017-07-28 00:00 71.6 '' '' -2017-07-29 00:00 72.1 '' '' -2017-07-30 00:00 71.7 '' '' -2017-07-31 00:00 74.4 '' '' -2017-08-01 00:00 75.7 '' '' -2017-08-02 00:00 76.6 '' '' -2017-08-03 00:00 77.3 '' '' -2017-08-04 00:00 76.3 '' '' -2017-08-05 00:00 76.3 '' '' -2017-08-06 00:00 75.6 '' '' -2017-08-07 00:00 74.8 '' '' -2017-08-08 00:00 73.0 '' '' -2017-08-09 00:00 73.4 '' '' -2017-08-10 00:00 73.0 '' '' -2017-08-11 00:00 71.7 '' '' -2017-08-12 00:00 72.2 '' '' -2017-08-13 00:00 70.0 '' '' -2017-08-14 00:00 74.9 '' '' -2017-08-15 00:00 76.1 '' '' -2017-08-16 00:00 79.2 '' '' -2017-08-17 00:00 78.5 '' '' -2017-08-18 00:00 82.0 '' '' -2017-08-19 00:00 88.9 '' '' -2017-08-20 00:00 88.0 '' '' -2017-08-21 00:00 89.1 '' '' -2017-08-22 00:00 92.3 '' '' -2017-08-23 00:00 87.0 '' '' -2017-08-24 00:00 80.5 '' '' -2017-08-25 00:00 82.5 '' '' -2017-08-26 00:00 79.2 '' '' -2017-08-27 00:00 79.8 '' '' -2017-08-28 00:00 83.2 '' '' -2017-08-29 00:00 85.9 '' '' -2017-08-30 00:00 88.6 '' '' -2017-08-31 00:00 93.6 '' '' -2017-09-01 00:00 95.1 '' '' -2017-09-02 00:00 101.7 '' '' -2017-09-03 00:00 122.2 '' '' -2017-09-04 00:00 185.5 '' '' -2017-09-05 00:00 122.5 '' '' -2017-09-06 00:00 134.9 '' '' -2017-09-07 00:00 130.4 '' '' -2017-09-08 00:00 118.5 '' '' -2017-09-09 00:00 108.7 '' '' -2017-09-10 00:00 101.6 '' '' -2017-09-11 00:00 80.9 '' '' -2017-09-12 00:00 76.4 '' '' -2017-09-13 00:00 76.0 '' '' -2017-09-14 00:00 75.1 '' '' -2017-09-15 00:00 73.6 '' '' -2017-09-16 00:00 72.9 '' '' -2017-09-17 00:00 72.9 '' '' -2017-09-18 00:00 72.9 '' '' -2017-09-19 00:00 71.3 '' '' -2017-09-20 00:00 74.5 '' '' -2017-09-21 00:00 73.6 '' '' -2017-09-22 00:00 78.1 '' '' -2017-09-23 00:00 81.7 '' '' -2017-09-24 00:00 87.4 '' '' -2017-09-25 00:00 90.4 '' '' -2017-09-26 00:00 91.1 '' '' -2017-09-27 00:00 91.3 '' '' -2017-09-28 00:00 91.2 '' '' -2017-09-29 00:00 90.0 '' '' -2017-09-30 00:00 89.6 '' '' -2017-10-01 00:00 85.9 '' '' -2017-10-02 00:00 86.1 '' '' -2017-10-03 00:00 86.5 '' '' -2017-10-04 00:00 86.8 '' '' -2017-10-05 00:00 84.7 '' '' -2017-10-06 00:00 84.0 '' '' -2017-10-07 00:00 79.5 '' '' -2017-10-08 00:00 76.5 '' '' -2017-10-09 00:00 72.1 '' '' -2017-10-10 00:00 70.7 '' '' -2017-10-11 00:00 69.3 '' '' -2017-10-12 00:00 69.9 '' '' -2017-10-13 00:00 69.4 '' '' -2017-10-14 00:00 68.6 '' '' -2017-10-15 00:00 69.9 '' '' -2017-10-16 00:00 70.4 '' '' -2017-10-17 00:00 69.8 '' '' -2017-10-18 00:00 72.7 '' '' -2017-10-19 00:00 72.8 '' '' -2017-10-20 00:00 75.1 '' '' -2017-10-21 00:00 75.7 '' '' -2017-10-22 00:00 76.5 '' '' -2017-10-23 00:00 77.2 '' '' -2017-10-24 00:00 76.7 '' '' -2017-10-25 00:00 77.9 '' '' -2017-10-26 00:00 76.4 '' '' -2017-10-27 00:00 75.0 '' '' -2017-10-28 00:00 74.4 '' '' -2017-10-29 00:00 74.3 '' '' -2017-10-30 00:00 74.5 '' '' -2017-10-31 00:00 74.2 '' '' -2017-11-01 00:00 71.5 '' '' -2017-11-02 00:00 72.4 '' '' -2017-11-03 00:00 72.0 '' '' -2017-11-04 00:00 70.9 '' '' -2017-11-05 00:00 69.9 '' '' -2017-11-06 00:00 68.1 '' '' -2017-11-07 00:00 67.0 '' '' -2017-11-08 00:00 66.4 '' '' -2017-11-09 00:00 64.6 '' '' -2017-11-10 00:00 67.2 '' '' -2017-11-11 00:00 65.9 '' '' -2017-11-12 00:00 68.0 '' '' -2017-11-13 00:00 70.6 '' '' -2017-11-14 00:00 72.8 '' '' -2017-11-15 00:00 72.6 '' '' -2017-11-16 00:00 71.6 '' '' -2017-11-17 00:00 74.7 '' '' -2017-11-18 00:00 74.3 '' '' -2017-11-19 00:00 72.7 '' '' -2017-11-20 00:00 71.8 '' '' -2017-11-21 00:00 71.4 '' '' -2017-11-22 00:00 71.6 '' '' -2017-11-23 00:00 70.6 '' '' -2017-11-24 00:00 72.2 '' '' -2017-11-25 00:00 72.4 '' '' -2017-11-26 00:00 73.5 '' '' -2017-11-27 00:00 71.7 '' '' -2017-11-28 00:00 70.0 '' '' -2017-11-29 00:00 70.6 '' '' -2017-11-30 00:00 69.8 '' '' -2017-12-01 00:00 68.3 '' '' -2017-12-02 00:00 69.5 '' '' -2017-12-03 00:00 67.0 '' '' -2017-12-04 00:00 66.4 '' '' -2017-12-05 00:00 66.0 '' '' -2017-12-06 00:00 66.3 '' '' -2017-12-07 00:00 65.9 '' '' -2017-12-08 00:00 67.8 '' '' -2017-12-09 00:00 69.0 '' '' -2017-12-10 00:00 69.8 '' '' -2017-12-11 00:00 70.1 '' '' -2017-12-12 00:00 69.2 '' '' -2017-12-13 00:00 69.9 '' '' -2017-12-14 00:00 69.8 '' '' -2017-12-15 00:00 69.5 '' '' -2017-12-16 00:00 69.0 '' '' -2017-12-17 00:00 68.8 '' '' -2017-12-18 00:00 69.4 '' '' -2017-12-19 00:00 66.6 '' '' -2017-12-20 00:00 71.8 '' '' -2017-12-21 00:00 73.6 '' '' -2017-12-22 00:00 72.9 '' '' -2017-12-23 00:00 73.7 '' '' -2017-12-24 00:00 73.6 '' '' -2017-12-25 00:00 73.2 '' '' -2017-12-26 00:00 69.5 '' '' -2017-12-27 00:00 68.6 '' '' -2017-12-28 00:00 68.8 '' '' -2017-12-29 00:00 69.1 '' '' -2017-12-30 00:00 68.1 '' '' -2017-12-31 00:00 68.3 '' '' -2018-01-01 00:00 66.8 '' '' -2018-01-02 00:00 67.2 '' '' -2018-01-03 00:00 68.3 '' '' -2018-01-04 00:00 67.2 '' '' -2018-01-05 00:00 67.0 '' '' -2018-01-06 00:00 67.1 '' '' -2018-01-07 00:00 67.6 '' '' -2018-01-08 00:00 68.0 '' '' -2018-01-09 00:00 68.5 '' '' -2018-01-10 00:00 68.1 '' '' -2018-01-11 00:00 68.5 '' '' -2018-01-12 00:00 68.6 '' '' -2018-01-13 00:00 68.5 '' '' -2018-01-14 00:00 68.2 '' '' -2018-01-15 00:00 67.9 '' '' -2018-01-16 00:00 68.8 '' '' -2018-01-17 00:00 68.6 '' '' -2018-01-18 00:00 68.8 '' '' -2018-01-19 00:00 68.5 '' '' -2018-01-20 00:00 67.4 '' '' -2018-01-21 00:00 66.1 '' '' -2018-01-22 00:00 67.9 '' '' -2018-01-23 00:00 68.3 '' '' -2018-01-24 00:00 67.7 '' '' -2018-01-25 00:00 68.2 '' '' -2018-01-26 00:00 67.7 '' '' -2018-01-27 00:00 66.7 '' '' -2018-01-28 00:00 66.4 '' '' -2018-01-29 00:00 66.2 '' '' -2018-01-30 00:00 66.9 '' '' -2018-01-31 00:00 67.2 '' '' -2018-02-01 00:00 67.0 '' '' -2018-02-02 00:00 66.8 '' '' -2018-02-03 00:00 67.3 '' '' -2018-02-04 00:00 71.0 '' '' -2018-02-05 00:00 72.0 '' '' -2018-02-06 00:00 74.8 '' '' -2018-02-07 00:00 74.6 '' '' -2018-02-08 00:00 75.5 '' '' -2018-02-09 00:00 76.1 '' '' -2018-02-10 00:00 76.2 '' '' -2018-02-11 00:00 76.2 '' '' -2018-02-12 00:00 76.6 '' '' -2018-02-13 00:00 74.1 '' '' -2018-02-14 00:00 73.4 '' '' -2018-02-15 00:00 70.8 '' '' -2018-02-16 00:00 69.8 '' '' -2018-02-17 00:00 67.4 '' '' -2018-02-18 00:00 68.7 '' '' -2018-02-19 00:00 67.5 '' '' -2018-02-20 00:00 66.3 '' '' -2018-02-21 00:00 66.1 '' '' -2018-02-22 00:00 67.0 '' '' -2018-02-23 00:00 66.2 '' '' -2018-02-24 00:00 66.8 '' '' -2018-02-25 00:00 65.9 '' '' -2018-02-26 00:00 68.4 '' '' -2018-02-27 00:00 66.6 '' '' -2018-02-28 00:00 67.5 '' '' -2018-03-01 00:00 66.0 '' '' -2018-03-02 00:00 66.6 '' '' -2018-03-03 00:00 66.7 '' '' -2018-03-04 00:00 66.4 '' '' -2018-03-05 00:00 66.5 '' '' -2018-03-06 00:00 66.5 '' '' -2018-03-07 00:00 66.8 '' '' -2018-03-08 00:00 65.6 '' '' -2018-03-09 00:00 66.6 '' '' -2018-03-10 00:00 66.8 '' '' -2018-03-11 00:00 66.9 '' '' -2018-03-12 00:00 67.3 '' '' -2018-03-13 00:00 67.7 '' '' -2018-03-14 00:00 66.9 '' '' -2018-03-15 00:00 68.3 '' '' -2018-03-16 00:00 67.9 '' '' -2018-03-17 00:00 69.0 '' '' -2018-03-18 00:00 68.5 '' '' -2018-03-19 00:00 69.7 '' '' -2018-03-20 00:00 68.2 '' '' -2018-03-21 00:00 68.8 '' '' -2018-03-22 00:00 68.0 '' '' -2018-03-23 00:00 67.7 '' '' -2018-03-24 00:00 67.2 '' '' -2018-03-25 00:00 68.0 '' '' -2018-03-26 00:00 67.5 '' '' -2018-03-27 00:00 68.0 '' '' -2018-03-28 00:00 68.3 '' '' -2018-03-29 00:00 68.8 '' '' -2018-03-30 00:00 68.6 '' '' -2018-03-31 00:00 68.9 '' '' -2018-04-01 00:00 68.9 '' '' -2018-04-02 00:00 68.4 '' '' -2018-04-03 00:00 67.8 '' '' -2018-04-04 00:00 68.6 '' '' -2018-04-05 00:00 66.4 '' '' -2018-04-06 00:00 67.4 '' '' -2018-04-07 00:00 67.0 '' '' -2018-04-08 00:00 68.1 '' '' -2018-04-09 00:00 68.9 '' '' -2018-04-10 00:00 68.8 '' '' -2018-04-11 00:00 68.6 '' '' -2018-04-12 00:00 70.4 '' '' -2018-04-13 00:00 70.1 '' '' -2018-04-14 00:00 69.9 '' '' -2018-04-15 00:00 71.0 '' '' -2018-04-16 00:00 69.7 '' '' -2018-04-17 00:00 69.8 '' '' -2018-04-18 00:00 71.4 '' '' -2018-04-19 00:00 71.4 '' '' -2018-04-20 00:00 73.7 '' '' -2018-04-21 00:00 77.5 '' '' -2018-04-22 00:00 76.5 '' '' -2018-04-23 00:00 74.7 '' '' -2018-04-24 00:00 73.7 '' '' -2018-04-25 00:00 71.6 '' '' -2018-04-26 00:00 70.3 '' '' -2018-04-27 00:00 69.6 '' '' -2018-04-28 00:00 71.1 '' '' -2018-04-29 00:00 72.2 '' '' -2018-04-30 00:00 71.3 '' '' -2018-05-01 00:00 69.5 '' '' -2018-05-02 00:00 68.1 '' '' -2018-05-03 00:00 67.6 '' '' -2018-05-04 00:00 68.9 '' '' -2018-05-05 00:00 68.7 '' '' -2018-05-06 00:00 68.4 '' '' -2018-05-07 00:00 70.9 '' '' -2018-05-08 00:00 70.9 '' '' -2018-05-09 00:00 70.9 '' '' -2018-05-10 00:00 71.0 '' '' -2018-05-11 00:00 71.7 '' '' -2018-05-12 00:00 71.2 '' '' -2018-05-13 00:00 72.4 '' '' -2018-05-14 00:00 71.8 '' '' -2018-05-15 00:00 71.9 '' '' -2018-05-16 00:00 71.5 '' '' -2018-05-17 00:00 70.5 '' '' -2018-05-18 00:00 71.1 '' '' -2018-05-19 00:00 71.9 '' '' -2018-05-20 00:00 70.4 '' '' -2018-05-21 00:00 71.3 '' '' -2018-05-22 00:00 72.6 '' '' -2018-05-23 00:00 75.0 '' '' -2018-05-24 00:00 75.6 '' '' -2018-05-25 00:00 77.7 '' '' -2018-05-26 00:00 74.9 '' '' -2018-05-27 00:00 76.6 '' '' -2018-05-28 00:00 78.9 '' '' -2018-05-29 00:00 77.0 '' '' -2018-05-30 00:00 77.3 '' '' -2018-05-31 00:00 78.9 '' '' -2018-06-01 00:00 76.9 '' '' -2018-06-02 00:00 76.5 '' '' -2018-06-03 00:00 75.7 '' '' -2018-06-04 00:00 72.6 '' '' -2018-06-05 00:00 73.4 '' '' -2018-06-06 00:00 73.2 '' '' -2018-06-07 00:00 71.3 '' '' -2018-06-08 00:00 70.2 '' '' -2018-06-09 00:00 68.8 '' '' -2018-06-10 00:00 72.4 '' '' -2018-06-11 00:00 72.0 '' '' -2018-06-12 00:00 72.5 '' '' -2018-06-13 00:00 73.0 '' '' -2018-06-14 00:00 74.7 '' '' -2018-06-15 00:00 72.8 '' '' -2018-06-16 00:00 72.7 '' '' -2018-06-17 00:00 74.6 '' '' -2018-06-18 00:00 76.1 '' '' -2018-06-19 00:00 79.0 '' '' -2018-06-20 00:00 84.7 '' '' -2018-06-21 00:00 84.2 '' '' -2018-06-22 00:00 83.0 '' '' -2018-06-23 00:00 79.7 '' '' -2018-06-24 00:00 77.0 '' '' -2018-06-25 00:00 75.2 '' '' -2018-06-26 00:00 73.4 '' '' -2018-06-27 00:00 72.4 '' '' -2018-06-28 00:00 71.9 '' '' -2018-06-29 00:00 70.9 '' '' -2018-06-30 00:00 71.1 '' '' -2018-07-01 00:00 70.4 '' '' -2018-07-02 00:00 68.8 '' '' -2018-07-03 00:00 70.5 '' '' -2018-07-04 00:00 70.2 '' '' -2018-07-05 00:00 70.4 '' '' -2018-07-06 00:00 72.9 '' '' -2018-07-07 00:00 74.4 '' '' -2018-07-08 00:00 74.0 '' '' -2018-07-09 00:00 75.4 '' '' -2018-07-10 00:00 74.5 '' '' -2018-07-11 00:00 75.8 '' '' -2018-07-12 00:00 74.6 '' '' -2018-07-13 00:00 74.9 '' '' -2018-07-14 00:00 74.7 '' '' -2018-07-15 00:00 74.1 '' '' -2018-07-16 00:00 74.3 '' '' -2018-07-17 00:00 73.5 '' '' -2018-07-18 00:00 73.6 '' '' -2018-07-19 00:00 72.8 '' '' -2018-07-20 00:00 72.7 '' '' -2018-07-21 00:00 72.2 '' '' -2018-07-22 00:00 70.4 '' '' -2018-07-23 00:00 69.1 '' '' -2018-07-24 00:00 69.0 '' '' -2018-07-25 00:00 67.9 '' '' -2018-07-26 00:00 68.3 '' '' -2018-07-27 00:00 68.6 '' '' -2018-07-28 00:00 70.0 '' '' -2018-07-29 00:00 70.0 '' '' -2018-07-30 00:00 70.4 '' '' -2018-07-31 00:00 71.0 '' '' -2018-08-01 00:00 72.3 '' '' -2018-08-02 00:00 72.0 '' '' -2018-08-03 00:00 72.3 '' '' -2018-08-04 00:00 72.5 '' '' -2018-08-05 00:00 71.2 '' '' -2018-08-06 00:00 71.1 '' '' -2018-08-07 00:00 71.5 '' '' -2018-08-08 00:00 71.6 '' '' -2018-08-09 00:00 72.2 '' '' -2018-08-10 00:00 71.4 '' '' -2018-08-11 00:00 69.3 '' '' -2018-08-12 00:00 69.9 '' '' -2018-08-13 00:00 69.6 '' '' -2018-08-14 00:00 70.5 '' '' -2018-08-15 00:00 70.6 '' '' -2018-08-16 00:00 70.0 '' '' -2018-08-17 00:00 69.0 '' '' -2018-08-18 00:00 68.9 '' '' -2018-08-19 00:00 68.4 '' '' -2018-08-20 00:00 69.6 '' '' -2018-08-21 00:00 69.4 '' '' -2018-08-22 00:00 68.4 '' '' -2018-08-23 00:00 71.1 '' '' -2018-08-24 00:00 74.0 '' '' -2018-08-25 00:00 73.1 '' '' -2018-08-26 00:00 72.6 '' '' -2018-08-27 00:00 71.0 '' '' -2018-08-28 00:00 71.2 '' '' -2018-08-29 00:00 71.8 '' '' -2018-08-30 00:00 69.6 '' '' -2018-08-31 00:00 68.8 '' '' -2018-09-01 00:00 69.5 '' '' -2018-09-02 00:00 68.9 '' '' -2018-09-03 00:00 69.3 '' '' -2018-09-04 00:00 68.6 '' '' -2018-09-05 00:00 68.6 '' '' -2018-09-06 00:00 68.4 '' '' -2018-09-07 00:00 68.6 '' '' -2018-09-08 00:00 69.7 '' '' -2018-09-09 00:00 69.4 '' '' -2018-09-10 00:00 69.9 '' '' -2018-09-11 00:00 70.3 '' '' -2018-09-12 00:00 70.6 '' '' -2018-09-13 00:00 70.5 '' '' -2018-09-14 00:00 69.8 '' '' -2018-09-15 00:00 69.2 '' '' -2018-09-16 00:00 69.8 '' '' -2018-09-17 00:00 68.5 '' '' -2018-09-18 00:00 68.8 '' '' -2018-09-19 00:00 68.5 '' '' -2018-09-20 00:00 67.2 '' '' -2018-09-21 00:00 67.4 '' '' -2018-09-22 00:00 68.4 '' '' -2018-09-23 00:00 68.9 '' '' -2018-09-24 00:00 69.0 '' '' -2018-09-25 00:00 68.0 '' '' -2018-09-26 00:00 69.3 '' '' -2018-09-27 00:00 67.4 '' '' -2018-09-28 00:00 69.4 '' '' -2018-09-29 00:00 68.9 '' '' -2018-09-30 00:00 68.5 '' '' -2018-10-01 00:00 70.3 '' '' -2018-10-02 00:00 67.1 '' '' -2018-10-03 00:00 68.4 '' '' -2018-10-04 00:00 67.2 '' '' -2018-10-05 00:00 68.7 '' '' -2018-10-06 00:00 68.6 '' '' -2018-10-07 00:00 69.4 '' '' -2018-10-08 00:00 68.7 '' '' -2018-10-09 00:00 69.3 '' '' -2018-10-10 00:00 69.6 '' '' -2018-10-11 00:00 70.6 '' '' -2018-10-12 00:00 71.3 '' '' -2018-10-13 00:00 72.1 '' '' -2018-10-14 00:00 71.1 '' '' -2018-10-15 00:00 69.6 '' '' -2018-10-16 00:00 69.3 '' '' -2018-10-17 00:00 69.6 '' '' -2018-10-18 00:00 69.0 '' '' -2018-10-19 00:00 69.0 '' '' -2018-10-20 00:00 69.8 '' '' -2018-10-21 00:00 70.4 '' '' -2018-10-22 00:00 70.2 '' '' -2018-10-23 00:00 70.9 '' '' -2018-10-24 00:00 68.9 '' '' -2018-10-25 00:00 68.6 '' '' -2018-10-26 00:00 68.3 '' '' -2018-10-27 00:00 68.5 '' '' -2018-10-28 00:00 67.4 '' '' -2018-10-29 00:00 67.9 '' '' -2018-10-30 00:00 66.1 '' '' -2018-10-31 00:00 67.1 '' '' -2018-11-01 00:00 65.8 '' '' -2018-11-02 00:00 66.5 '' '' -2018-11-03 00:00 66.3 '' '' -2018-11-04 00:00 65.5 '' '' -2018-11-05 00:00 67.2 '' '' -2018-11-06 00:00 67.6 '' '' -2018-11-07 00:00 67.5 '' '' -2018-11-08 00:00 68.2 '' '' -2018-11-09 00:00 67.6 '' '' -2018-11-10 00:00 67.6 '' '' -2018-11-11 00:00 68.0 '' '' -2018-11-12 00:00 66.8 '' '' -2018-11-13 00:00 65.6 '' '' -2018-11-14 00:00 66.5 '' '' -2018-11-15 00:00 66.9 '' '' -2018-11-16 00:00 69.5 '' '' -2018-11-17 00:00 71.7 '' '' -2018-11-18 00:00 70.6 '' '' -2018-11-19 00:00 69.5 '' '' -2018-11-20 00:00 68.8 '' '' -2018-11-21 00:00 67.1 '' '' -2018-11-22 00:00 67.5 '' '' -2018-11-23 00:00 67.5 '' '' -2018-11-24 00:00 68.2 '' '' -2018-11-25 00:00 67.8 '' '' -2018-11-26 00:00 66.8 '' '' -2018-11-27 00:00 66.6 '' '' -2018-11-28 00:00 65.7 '' '' -2018-11-29 00:00 66.0 '' '' -2018-11-30 00:00 66.1 '' '' -2018-12-01 00:00 67.4 '' '' -2018-12-02 00:00 67.0 '' '' -2018-12-03 00:00 66.4 '' '' -2018-12-04 00:00 66.8 '' '' -2018-12-05 00:00 68.8 '' '' -2018-12-06 00:00 67.7 '' '' -2018-12-07 00:00 68.1 '' '' -2018-12-08 00:00 68.4 '' '' -2018-12-09 00:00 69.5 '' '' -2018-12-10 00:00 68.8 '' '' -2018-12-11 00:00 68.9 '' '' -2018-12-12 00:00 68.6 '' '' -2018-12-13 00:00 68.0 '' '' -2018-12-14 00:00 68.6 '' '' -2018-12-15 00:00 68.9 '' '' -2018-12-16 00:00 67.6 '' '' -2018-12-17 00:00 67.9 '' '' -2018-12-18 00:00 68.1 '' '' -2018-12-19 00:00 68.0 '' '' -2018-12-20 00:00 67.6 '' '' -2018-12-21 00:00 68.8 '' '' -2018-12-22 00:00 68.7 '' '' -2018-12-23 00:00 68.0 '' '' -2018-12-24 00:00 67.2 '' '' -2018-12-25 00:00 67.3 '' '' -2018-12-26 00:00 66.5 '' '' -2018-12-27 00:00 66.2 '' '' -2018-12-28 00:00 67.0 '' '' -2018-12-29 00:00 66.7 '' '' -2018-12-30 00:00 67.1 '' '' -2018-12-31 00:00 67.0 '' '' -2019-01-01 00:00 69.5 '' '' -2019-01-02 00:00 72.7 '' '' -2019-01-03 00:00 70.2 '' '' -2019-01-04 00:00 69.1 '' '' -2019-01-05 00:00 68.8 '' '' -2019-01-06 00:00 69.6 '' '' -2019-01-07 00:00 69.1 '' '' -2019-01-08 00:00 69.0 '' '' -2019-01-09 00:00 69.2 '' '' -2019-01-10 00:00 67.8 '' '' -2019-01-11 00:00 65.9 '' '' -2019-01-12 00:00 67.3 '' '' -2019-01-13 00:00 66.6 '' '' -2019-01-14 00:00 67.8 '' '' -2019-01-15 00:00 67.3 '' '' -2019-01-16 00:00 67.5 '' '' -2019-01-17 00:00 66.4 '' '' -2019-01-18 00:00 66.6 '' '' -2019-01-19 00:00 67.4 '' '' -2019-01-20 00:00 67.0 '' '' -2019-01-21 00:00 67.7 '' '' -2019-01-22 00:00 68.5 '' '' -2019-01-23 00:00 69.3 '' '' -2019-01-24 00:00 70.2 '' '' -2019-01-25 00:00 72.7 '' '' -2019-01-26 00:00 74.3 '' '' -2019-01-27 00:00 72.8 '' '' -2019-01-28 00:00 73.5 '' '' -2019-01-29 00:00 70.9 '' '' -2019-01-30 00:00 71.4 '' '' -2019-01-31 00:00 70.0 '' '' -2019-02-01 00:00 70.0 '' '' -2019-02-02 00:00 68.8 '' '' -2019-02-03 00:00 69.1 '' '' -2019-02-04 00:00 68.7 '' '' -2019-02-05 00:00 68.7 '' '' -2019-02-06 00:00 67.9 '' '' -2019-02-07 00:00 68.3 '' '' -2019-02-08 00:00 68.1 '' '' -2019-02-09 00:00 68.4 '' '' -2019-02-10 00:00 68.1 '' '' -2019-02-11 00:00 68.0 '' '' -2019-02-12 00:00 68.4 '' '' -2019-02-13 00:00 68.6 '' '' -2019-02-14 00:00 69.7 '' '' -2019-02-15 00:00 69.2 '' '' -2019-02-16 00:00 69.0 '' '' -2019-02-17 00:00 68.4 '' '' -2019-02-18 00:00 68.3 '' '' -2019-02-19 00:00 68.6 '' '' -2019-02-20 00:00 69.4 '' '' -2019-02-21 00:00 69.2 '' '' -2019-02-22 00:00 69.7 '' '' -2019-02-23 00:00 69.2 '' '' -2019-02-24 00:00 69.0 '' '' -2019-02-25 00:00 68.9 '' '' -2019-02-26 00:00 69.2 '' '' -2019-02-27 00:00 69.4 '' '' -2019-02-28 00:00 68.8 '' '' -2019-03-01 00:00 68.7 '' '' -2019-03-02 00:00 68.2 '' '' -2019-03-03 00:00 68.3 '' '' -2019-03-04 00:00 69.7 '' '' -2019-03-05 00:00 70.8 '' '' -2019-03-06 00:00 71.3 '' '' -2019-03-07 00:00 69.9 '' '' -2019-03-08 00:00 70.7 '' '' -2019-03-09 00:00 69.7 '' '' -2019-03-10 00:00 70.1 '' '' -2019-03-11 00:00 69.5 '' '' -2019-03-12 00:00 69.8 '' '' -2019-03-13 00:00 70.0 '' '' -2019-03-14 00:00 69.3 '' '' -2019-03-15 00:00 68.9 '' '' -2019-03-16 00:00 68.8 '' '' -2019-03-17 00:00 68.6 '' '' -2019-03-18 00:00 69.3 '' '' -2019-03-19 00:00 69.1 '' '' -2019-03-20 00:00 76.2 '' '' -2019-03-21 00:00 79.4 '' '' -2019-03-22 00:00 81.8 '' '' -2019-03-23 00:00 78.9 '' '' -2019-03-24 00:00 75.0 '' '' -2019-03-25 00:00 70.8 '' '' -2019-03-26 00:00 68.7 '' '' -2019-03-27 00:00 68.6 '' '' -2019-03-28 00:00 68.1 '' '' -2019-03-29 00:00 68.6 '' '' -2019-03-30 00:00 69.2 '' '' -2019-03-31 00:00 69.4 '' '' -2019-04-01 00:00 69.2 '' '' -2019-04-02 00:00 70.8 '' '' -2019-04-03 00:00 70.6 '' '' -2019-04-04 00:00 70.3 '' '' -2019-04-05 00:00 71.8 '' '' -2019-04-06 00:00 73.7 '' '' -2019-04-07 00:00 76.6 '' '' -2019-04-08 00:00 78.8 '' '' -2019-04-09 00:00 79.3 '' '' -2019-04-10 00:00 78.4 '' '' -2019-04-11 00:00 78.9 '' '' -2019-04-12 00:00 77.7 '' '' -2019-04-13 00:00 78.3 '' '' -2019-04-14 00:00 75.9 '' '' -2019-04-15 00:00 75.9 '' '' -2019-04-16 00:00 74.7 '' '' -2019-04-17 00:00 76.7 '' '' -2019-04-18 00:00 75.2 '' '' -2019-04-19 00:00 73.3 '' '' -2019-04-20 00:00 70.6 '' '' -2019-04-21 00:00 69.9 '' '' -2019-04-22 00:00 70.2 '' '' -2019-04-23 00:00 69.6 '' '' -2019-04-24 00:00 70.1 '' '' -2019-04-25 00:00 68.4 '' '' -2019-04-26 00:00 68.0 '' '' -2019-04-27 00:00 67.8 '' '' -2019-04-28 00:00 68.8 '' '' -2019-04-29 00:00 67.9 '' '' -2019-04-30 00:00 69.5 '' '' -2019-05-01 00:00 68.7 '' '' -2019-05-02 00:00 70.3 '' '' -2019-05-03 00:00 70.9 '' '' -2019-05-04 00:00 73.5 '' '' -2019-05-05 00:00 74.7 '' '' -2019-05-06 00:00 77.3 '' '' -2019-05-07 00:00 80.1 '' '' -2019-05-08 00:00 76.8 '' '' -2019-05-09 00:00 77.7 '' '' -2019-05-10 00:00 77.8 '' '' -2019-05-11 00:00 79.5 '' '' -2019-05-12 00:00 77.6 '' '' -2019-05-13 00:00 76.2 '' '' -2019-05-14 00:00 76.0 '' '' -2019-05-15 00:00 75.6 '' '' -2019-05-16 00:00 75.3 '' '' -2019-05-17 00:00 73.8 '' '' -2019-05-18 00:00 72.2 '' '' -2019-05-19 00:00 69.6 '' '' -2019-05-20 00:00 70.4 '' '' -2019-05-21 00:00 69.7 '' '' -2019-05-22 00:00 69.0 '' '' -2019-05-23 00:00 68.2 '' '' -2019-05-24 00:00 68.1 '' '' -2019-05-25 00:00 68.7 '' '' -2019-05-26 00:00 69.8 '' '' -2019-05-27 00:00 69.3 '' '' -2019-05-28 00:00 70.0 '' '' -2019-05-29 00:00 70.1 '' '' -2019-05-30 00:00 70.6 '' '' -2019-05-31 00:00 70.6 '' '' -2019-06-01 00:00 71.7 '' '' -2019-06-02 00:00 71.9 '' '' -2019-06-03 00:00 71.8 '' '' -2019-06-04 00:00 72.1 '' '' -2019-06-05 00:00 71.8 '' '' -2019-06-06 00:00 70.9 '' '' -2019-06-07 00:00 71.0 '' '' -2019-06-08 00:00 70.5 '' '' -2019-06-09 00:00 70.5 '' '' -2019-06-10 00:00 71.0 '' '' -2019-06-11 00:00 71.9 '' '' -2019-06-12 00:00 71.6 '' '' -2019-06-13 00:00 69.6 '' '' -2019-06-14 00:00 70.1 '' '' -2019-06-15 00:00 68.8 '' '' -2019-06-16 00:00 68.0 '' '' -2019-06-17 00:00 68.5 '' '' -2019-06-18 00:00 69.2 '' '' -2019-06-19 00:00 70.2 '' '' -2019-06-20 00:00 69.9 '' '' -2019-06-21 00:00 68.6 '' '' -2019-06-22 00:00 68.6 '' '' -2019-06-23 00:00 69.5 '' '' -2019-06-24 00:00 70.2 '' '' -2019-06-25 00:00 70.2 '' '' -2019-06-26 00:00 70.3 '' '' -2019-06-27 00:00 69.3 '' '' -2019-06-28 00:00 70.4 '' '' -2019-06-29 00:00 69.9 '' '' -2019-06-30 00:00 69.7 '' '' -2019-07-01 00:00 70.5 '' '' -2019-07-02 00:00 69.5 '' '' -2019-07-03 00:00 69.1 '' '' -2019-07-04 00:00 69.9 '' '' -2019-07-05 00:00 69.0 '' '' -2019-07-06 00:00 68.8 '' '' -2019-07-07 00:00 69.6 '' '' -2019-07-08 00:00 68.7 '' '' -2019-07-09 00:00 69.7 '' '' -2019-07-10 00:00 70.1 '' '' -2019-07-11 00:00 69.4 '' '' -2019-07-12 00:00 69.0 '' '' -2019-07-13 00:00 68.2 '' '' -2019-07-14 00:00 69.4 '' '' -2019-07-15 00:00 69.3 '' '' -2019-07-16 00:00 69.5 '' '' -2019-07-17 00:00 70.0 '' '' -2019-07-18 00:00 69.2 '' '' -2019-07-19 00:00 68.9 '' '' -2019-07-20 00:00 69.1 '' '' -2019-07-21 00:00 69.8 '' '' -2019-07-22 00:00 69.5 '' '' -2019-07-23 00:00 69.6 '' '' -2019-07-24 00:00 70.0 '' '' -2019-07-25 00:00 70.3 '' '' -2019-07-26 00:00 69.8 '' '' -2019-07-27 00:00 68.7 '' '' -2019-07-28 00:00 69.2 '' '' -2019-07-29 00:00 68.2 '' '' -2019-07-30 00:00 68.3 '' '' -2019-07-31 00:00 68.9 '' '' -2019-08-01 00:00 68.8 '' '' -2019-08-02 00:00 68.9 '' '' -2019-08-03 00:00 67.7 '' '' -2019-08-04 00:00 68.8 '' '' -2019-08-05 00:00 70.1 '' '' -2019-08-06 00:00 70.1 '' '' -2019-08-07 00:00 69.9 '' '' -2019-08-08 00:00 70.6 '' '' -2019-08-09 00:00 69.1 '' '' -2019-08-10 00:00 69.1 '' '' -2019-08-11 00:00 69.5 '' '' -2019-08-12 00:00 69.0 '' '' -2019-08-13 00:00 68.6 '' '' -2019-08-14 00:00 69.1 '' '' -2019-08-15 00:00 69.4 '' '' -2019-08-16 00:00 69.2 '' '' -2019-08-17 00:00 69.7 '' '' -2019-08-18 00:00 69.2 '' '' -2019-08-19 00:00 69.3 '' '' -2019-08-20 00:00 68.9 '' '' -2019-08-21 00:00 68.4 '' '' -2019-08-22 00:00 67.3 '' '' -2019-08-23 00:00 68.0 '' '' -2019-08-24 00:00 67.8 '' '' -2019-08-25 00:00 67.4 '' '' -2019-08-26 00:00 67.2 '' '' -2019-08-27 00:00 67.5 '' '' -2019-08-28 00:00 67.2 '' '' -2019-08-29 00:00 67.2 '' '' -2019-08-30 00:00 67.8 '' '' -2019-08-31 00:00 67.7 '' '' -2019-09-01 00:00 68.3 '' '' -2019-09-02 00:00 70.0 '' '' -2019-09-03 00:00 69.8 '' '' -2019-09-04 00:00 69.8 '' '' -2019-09-05 00:00 69.4 '' '' -2019-09-06 00:00 70.0 '' '' -2019-09-07 00:00 75.0 '' '' -2019-09-08 00:00 68.5 '' '' -2019-09-09 00:00 69.8 '' '' -2019-09-10 00:00 70.9 '' '' -2019-09-11 00:00 69.0 '' '' -2019-09-12 00:00 70.3 '' '' -2019-09-13 00:00 69.1 '' '' -2019-09-14 00:00 69.4 '' '' -2019-09-15 00:00 68.4 '' '' -2019-09-16 00:00 69.4 '' '' -2019-09-17 00:00 68.2 '' '' -2019-09-18 00:00 66.9 '' '' -2019-09-19 00:00 67.7 '' '' -2019-09-20 00:00 67.7 '' '' -2019-09-21 00:00 68.2 '' '' -2019-09-22 00:00 68.8 '' '' -2019-09-23 00:00 66.6 '' '' -2019-09-24 00:00 67.5 '' '' -2019-09-25 00:00 67.9 '' '' -2019-09-26 00:00 67.4 '' '' -2019-09-27 00:00 66.8 '' '' -2019-09-28 00:00 67.5 '' '' -2019-09-29 00:00 67.7 '' '' -2019-09-30 00:00 68.1 '' '' -2019-10-01 00:00 68.8 '' '' -2019-10-02 00:00 68.4 '' '' -2019-10-03 00:00 68.3 '' '' -2019-10-04 00:00 68.1 '' '' -2019-10-05 00:00 67.8 '' '' -2019-10-06 00:00 67.3 '' '' -2019-10-07 00:00 67.6 '' '' -2019-10-08 00:00 67.0 '' '' -2019-10-09 00:00 67.9 '' '' -2019-10-10 00:00 67.3 '' '' -2019-10-11 00:00 68.3 '' '' -2019-10-12 00:00 68.0 '' '' -2019-10-13 00:00 66.9 '' '' -2019-10-14 00:00 65.8 '' '' -2019-10-15 00:00 66.9 '' '' -2019-10-16 00:00 65.9 '' '' -2019-10-17 00:00 65.6 '' '' -2019-10-18 00:00 65.6 '' '' -2019-10-19 00:00 65.5 '' '' -2019-10-20 00:00 64.4 '' '' -2019-10-21 00:00 63.4 '' '' -2019-10-22 00:00 64.9 '' '' -2019-10-23 00:00 63.9 '' '' -2019-10-24 00:00 64.3 '' '' -2019-10-25 00:00 67.9 '' '' -2019-10-26 00:00 67.8 '' '' -2019-10-27 00:00 68.0 '' '' -2019-10-28 00:00 68.5 '' '' -2019-10-29 00:00 68.2 '' '' -2019-10-30 00:00 68.8 '' '' -2019-10-31 00:00 70.2 '' '' -2019-11-01 00:00 69.6 '' '' -2019-11-02 00:00 69.6 '' '' -2019-11-03 00:00 68.3 '' '' -2019-11-04 00:00 69.6 '' '' -2019-11-05 00:00 69.2 '' '' -2019-11-06 00:00 68.1 '' '' -2019-11-07 00:00 68.5 '' '' -2019-11-08 00:00 68.9 '' '' -2019-11-09 00:00 68.3 '' '' -2019-11-10 00:00 69.4 '' '' -2019-11-11 00:00 68.1 '' '' -2019-11-12 00:00 69.3 '' '' -2019-11-13 00:00 69.6 '' '' -2019-11-14 00:00 68.4 '' '' -2019-11-15 00:00 68.5 '' '' -2019-11-16 00:00 68.2 '' '' -2019-11-17 00:00 68.5 '' '' -2019-11-18 00:00 68.8 '' '' -2019-11-19 00:00 67.6 '' '' -2019-11-20 00:00 68.5 '' '' -2019-11-21 00:00 69.1 '' '' -2019-11-22 00:00 67.9 '' '' -2019-11-23 00:00 68.5 '' '' -2019-11-24 00:00 68.8 '' '' -2019-11-25 00:00 67.7 '' '' -2019-11-26 00:00 68.6 '' '' -2019-11-27 00:00 69.6 '' '' -2019-11-28 00:00 68.3 '' '' -2019-11-29 00:00 67.9 '' '' -2019-11-30 00:00 68.5 '' '' -2019-12-01 00:00 69.2 '' '' -2019-12-02 00:00 68.4 '' '' -2019-12-03 00:00 67.9 '' '' -2019-12-04 00:00 67.6 '' '' -2019-12-05 00:00 68.6 '' '' -2019-12-06 00:00 68.3 '' '' -2019-12-07 00:00 68.2 '' '' -2019-12-08 00:00 69.4 '' '' -2019-12-09 00:00 68.6 '' '' -2019-12-10 00:00 68.4 '' '' -2019-12-11 00:00 68.6 '' '' -2019-12-12 00:00 68.3 '' '' -2019-12-13 00:00 66.8 '' '' -2019-12-14 00:00 68.1 '' '' -2019-12-15 00:00 68.8 '' '' -2019-12-16 00:00 67.7 '' '' -2019-12-17 00:00 68.2 '' '' -2019-12-18 00:00 68.0 '' '' -2019-12-19 00:00 67.7 '' '' -2019-12-20 00:00 67.7 '' '' -2019-12-21 00:00 68.4 '' '' -2019-12-22 00:00 68.7 '' '' -2019-12-23 00:00 70.2 '' '' -2019-12-24 00:00 70.3 '' '' -2019-12-25 00:00 69.8 '' '' -2019-12-26 00:00 69.7 '' '' -2019-12-27 00:00 70.1 '' '' -2019-12-28 00:00 69.8 '' '' -2019-12-29 00:00 69.6 '' '' -2019-12-30 00:00 68.6 '' '' -2019-12-31 00:00 68.2 '' '' -2020-01-01 00:00 69.4 '' '' -2020-01-02 00:00 69.5 '' '' -2020-01-03 00:00 68.9 '' '' -2020-01-04 00:00 69.8 '' '' -2020-01-05 00:00 69.4 '' '' -2020-01-06 00:00 68.1 '' '' -2020-01-07 00:00 69.3 '' '' -2020-01-08 00:00 71.2 '' '' -2020-01-09 00:00 71.9 '' '' -2020-01-10 00:00 70.4 '' '' -2020-01-11 00:00 71.0 '' '' -2020-01-12 00:00 69.5 '' '' -2020-01-13 00:00 69.1 '' '' -2020-01-14 00:00 69.5 '' '' -2020-01-15 00:00 68.9 '' '' -2020-01-16 00:00 69.4 '' '' -2020-01-17 00:00 67.9 '' '' -2020-01-18 00:00 69.0 '' '' -2020-01-19 00:00 69.5 '' '' -2020-01-20 00:00 69.0 '' '' -2020-01-21 00:00 68.3 '' '' -2020-01-22 00:00 69.6 '' '' -2020-01-23 00:00 68.6 '' '' -2020-01-24 00:00 68.8 '' '' -2020-01-25 00:00 70.4 '' '' -2020-01-26 00:00 72.4 '' '' -2020-01-27 00:00 70.7 '' '' -2020-01-28 00:00 72.0 '' '' -2020-01-29 00:00 72.0 '' '' -2020-01-30 00:00 71.9 '' '' -2020-01-31 00:00 71.7 '' '' -2020-02-01 00:00 70.4 '' '' -2020-02-02 00:00 70.2 '' '' -2020-02-03 00:00 70.0 '' '' -2020-02-04 00:00 68.3 '' '' -2020-02-05 00:00 68.6 '' '' -2020-02-06 00:00 69.3 '' '' -2020-02-07 00:00 68.9 '' '' -2020-02-08 00:00 70.0 '' '' -2020-02-09 00:00 68.8 '' '' -2020-02-10 00:00 68.3 '' '' -2020-02-11 00:00 69.3 '' '' -2020-02-12 00:00 69.8 '' '' -2020-02-13 00:00 69.4 '' '' -2020-02-14 00:00 69.5 '' '' -2020-02-15 00:00 68.8 '' '' -2020-02-16 00:00 68.8 '' '' -2020-02-17 00:00 69.0 '' '' -2020-02-18 00:00 69.4 '' '' -2020-02-19 00:00 69.4 '' '' -2020-02-20 00:00 69.2 '' '' -2020-02-21 00:00 69.6 '' '' -2020-02-22 00:00 70.7 '' '' -2020-02-23 00:00 68.8 '' '' -2020-02-24 00:00 68.7 '' '' -2020-02-25 00:00 69.1 '' '' -2020-02-26 00:00 68.7 '' '' -2020-02-27 00:00 69.6 '' '' -2020-02-28 00:00 69.3 '' '' -2020-02-29 00:00 68.8 '' '' -2020-03-01 00:00 68.1 '' '' -2020-03-02 00:00 68.1 '' '' -2020-03-03 00:00 68.8 '' '' -2020-03-04 00:00 68.7 '' '' -2020-03-05 00:00 68.3 '' '' -2020-03-06 00:00 68.9 '' '' -2020-03-07 00:00 68.8 '' '' -2020-03-08 00:00 69.2 '' '' -2020-03-09 00:00 69.8 '' '' -2020-03-10 00:00 69.8 '' '' -2020-03-11 00:00 69.6 '' '' -2020-03-12 00:00 69.1 '' '' -2020-03-13 00:00 67.9 '' '' -2020-03-14 00:00 67.4 '' '' -2020-03-15 00:00 69.5 '' '' -2020-03-16 00:00 69.1 '' '' -2020-03-17 00:00 70.9 '' '' -2020-03-18 00:00 71.4 '' '' -2020-03-19 00:00 71.5 '' '' -2020-03-20 00:00 71.1 '' '' -2020-03-21 00:00 70.3 '' '' -2020-03-22 00:00 69.8 '' '' -2020-03-23 00:00 69.9 '' '' -2020-03-24 00:00 70.8 '' '' -2020-03-25 00:00 70.9 '' '' -2020-03-26 00:00 69.9 '' '' -2020-03-27 00:00 69.2 '' '' -2020-03-28 00:00 69.0 '' '' -2020-03-29 00:00 68.6 '' '' -2020-03-30 00:00 69.1 '' '' -2020-03-31 00:00 69.8 '' '' -2020-04-01 00:00 69.2 '' '' -2020-04-02 00:00 69.7 '' '' -2020-04-03 00:00 70.0 '' '' -2020-04-04 00:00 70.2 '' '' -2020-04-05 00:00 71.3 '' '' -2020-04-06 00:00 70.1 '' '' -2020-04-07 00:00 70.1 '' '' -2020-04-08 00:00 70.7 '' '' -2020-04-09 00:00 70.6 '' '' -2020-04-10 00:00 69.5 '' '' -2020-04-11 00:00 70.9 '' '' -2020-04-12 00:00 71.1 '' '' -2020-04-13 00:00 70.7 '' '' -2020-04-14 00:00 69.4 '' '' -2020-04-15 00:00 68.9 '' '' -2020-04-16 00:00 69.0 '' '' -2020-04-17 00:00 68.4 '' '' -2020-04-18 00:00 70.4 '' '' -2020-04-19 00:00 69.2 '' '' -2020-04-20 00:00 68.9 '' '' -2020-04-21 00:00 69.8 '' '' -2020-04-22 00:00 71.4 '' '' -2020-04-23 00:00 69.5 '' '' -2020-04-24 00:00 70.5 '' '' -2020-04-25 00:00 69.8 '' '' -2020-04-26 00:00 70.1 '' '' -2020-04-27 00:00 69.9 '' '' -2020-04-28 00:00 69.9 '' '' -2020-04-29 00:00 71.0 '' '' -2020-04-30 00:00 70.9 '' '' -2020-05-01 00:00 71.3 '' '' -2020-05-02 00:00 70.3 '' '' -2020-05-03 00:00 69.8 '' '' -2020-05-04 00:00 70.5 '' '' -2020-05-05 00:00 70.5 '' '' -2020-05-06 00:00 71.1 '' '' -2020-05-07 00:00 70.0 '' '' -2020-05-08 00:00 69.2 '' '' -2020-05-09 00:00 72.4 '' '' -2020-05-10 00:00 69.3 '' '' -2020-05-11 00:00 67.5 '' '' -2020-05-12 00:00 70.3 '' '' -2020-05-13 00:00 70.2 '' '' -2020-05-14 00:00 69.0 '' '' -2020-05-15 00:00 69.4 '' '' -2020-05-16 00:00 71.0 '' '' -2020-05-17 00:00 71.2 '' '' -2020-05-18 00:00 71.8 '' '' -2020-05-19 00:00 70.3 '' '' -2020-05-20 00:00 71.3 '' '' -2020-05-21 00:00 71.9 '' '' -2020-05-22 00:00 72.6 '' '' -2020-05-23 00:00 70.9 '' '' -2020-05-24 00:00 70.6 '' '' -2020-05-25 00:00 72.1 '' '' -2020-05-26 00:00 71.6 '' '' -2020-05-27 00:00 69.9 '' '' -2020-05-28 00:00 69.3 '' '' -2020-05-29 00:00 71.5 '' '' -2020-05-30 00:00 71.9 '' '' -2020-05-31 00:00 72.8 '' '' -2020-06-01 00:00 71.2 '' '' -2020-06-02 00:00 72.4 '' '' -2020-06-03 00:00 72.0 '' '' -2020-06-04 00:00 72.1 '' '' -2020-06-05 00:00 73.2 '' '' -2020-06-06 00:00 73.8 '' '' -2020-06-07 00:00 73.8 '' '' -2020-06-08 00:00 73.2 '' '' -2020-06-09 00:00 74.6 '' '' -2020-06-10 00:00 73.2 '' '' -2020-06-11 00:00 73.7 '' '' -2020-06-12 00:00 72.7 '' '' -2020-06-13 00:00 71.6 '' '' -2020-06-14 00:00 72.4 '' '' -2020-06-15 00:00 72.7 '' '' -2020-06-16 00:00 71.5 '' '' -2020-06-17 00:00 71.0 '' '' -2020-06-18 00:00 70.2 '' '' -2020-06-19 00:00 71.1 '' '' -2020-06-20 00:00 70.0 '' '' -2020-06-21 00:00 69.9 '' '' -2020-06-22 00:00 69.9 '' '' -2020-06-23 00:00 69.3 '' '' -2020-06-24 00:00 69.1 '' '' -2020-06-25 00:00 71.2 '' '' -2020-06-26 00:00 70.0 '' '' -2020-06-27 00:00 71.2 '' '' -2020-06-28 00:00 71.5 '' '' -2020-06-29 00:00 71.0 '' '' -2020-06-30 00:00 70.4 '' '' -2020-07-01 00:00 71.2 '' '' -2020-07-02 00:00 70.3 '' '' -2020-07-03 00:00 71.6 '' '' -2020-07-04 00:00 71.8 '' '' -2020-07-05 00:00 71.8 '' '' -2020-07-06 00:00 70.8 '' '' -2020-07-07 00:00 70.0 '' '' -2020-07-08 00:00 69.4 '' '' -2020-07-09 00:00 71.0 '' '' -2020-07-10 00:00 71.1 '' '' -2020-07-11 00:00 71.0 '' '' -2020-07-12 00:00 69.8 '' '' -2020-07-13 00:00 70.5 '' '' -2020-07-14 00:00 71.2 '' '' -2020-07-15 00:00 70.6 '' '' -2020-07-16 00:00 70.9 '' '' -2020-07-17 00:00 71.3 '' '' -2020-07-18 00:00 70.0 '' '' -2020-07-19 00:00 71.1 '' '' -2020-07-20 00:00 71.6 '' '' -2020-07-21 00:00 72.1 '' '' -2020-07-22 00:00 72.2 '' '' -2020-07-23 00:00 72.5 '' '' -2020-07-24 00:00 71.7 '' '' -2020-07-25 00:00 72.6 '' '' -2020-07-26 00:00 73.6 '' '' -2020-07-27 00:00 73.7 '' '' -2020-07-28 00:00 74.1 '' '' -2020-07-29 00:00 74.9 '' '' -2020-07-30 00:00 75.6 '' '' -2020-07-31 00:00 74.4 '' '' -2020-08-01 00:00 74.1 '' '' -2020-08-02 00:00 74.9 '' '' -2020-08-03 00:00 74.8 '' '' -2020-08-04 00:00 75.1 '' '' -2020-08-05 00:00 75.6 '' '' -2020-08-06 00:00 75.1 '' '' -2020-08-07 00:00 76.0 '' '' -2020-08-08 00:00 76.8 '' '' -2020-08-09 00:00 76.0 '' '' -2020-08-10 00:00 76.2 '' '' -2020-08-11 00:00 75.4 '' '' -2020-08-12 00:00 75.1 '' '' -2020-08-13 00:00 74.2 '' '' -2020-08-14 00:00 72.6 '' '' -2020-08-15 00:00 72.4 '' '' -2020-08-16 00:00 72.6 '' '' -2020-08-17 00:00 72.5 '' '' -2020-08-18 00:00 73.1 '' '' -2020-08-19 00:00 72.2 '' '' -2020-08-20 00:00 71.6 '' '' -2020-08-21 00:00 72.6 '' '' -2020-08-22 00:00 71.6 '' '' -2020-08-23 00:00 72.1 '' '' -2020-08-24 00:00 71.8 '' '' -2020-08-25 00:00 72.1 '' '' -2020-08-26 00:00 71.9 '' '' -2020-08-27 00:00 71.4 '' '' -2020-08-28 00:00 71.5 '' '' -2020-08-29 00:00 71.6 '' '' -2020-08-30 00:00 71.4 '' '' -2020-08-31 00:00 70.5 '' '' -2020-09-01 00:00 70.8 '' '' -2020-09-02 00:00 69.5 '' '' -2020-09-03 00:00 71.2 '' '' -2020-09-04 00:00 70.8 '' '' -2020-09-05 00:00 70.3 '' '' -2020-09-06 00:00 70.5 '' '' -2020-09-07 00:00 71.3 '' '' -2020-09-08 00:00 70.9 '' '' -2020-09-09 00:00 70.7 '' '' -2020-09-10 00:00 70.2 '' '' -2020-09-11 00:00 69.6 '' '' -2020-09-12 00:00 70.2 '' '' -2020-09-13 00:00 70.6 '' '' -2020-09-14 00:00 69.7 '' '' -2020-09-15 00:00 69.6 '' '' -2020-09-16 00:00 70.2 '' '' -2020-09-17 00:00 70.4 '' '' -2020-09-18 00:00 70.6 '' '' -2020-09-19 00:00 71.2 '' '' -2020-09-20 00:00 70.7 '' '' -2020-09-21 00:00 71.9 '' '' -2020-09-22 00:00 72.9 '' '' -2020-09-23 00:00 73.7 '' '' -2020-09-24 00:00 74.1 '' '' -2020-09-25 00:00 73.8 '' '' -2020-09-26 00:00 72.9 '' '' -2020-09-27 00:00 74.4 '' '' -2020-09-28 00:00 74.1 '' '' -2020-09-29 00:00 73.0 '' '' -2020-09-30 00:00 73.5 '' '' -2020-10-01 00:00 73.0 '' '' -2020-10-02 00:00 72.3 '' '' -2020-10-03 00:00 71.9 '' '' -2020-10-04 00:00 71.2 '' '' -2020-10-05 00:00 72.2 '' '' -2020-10-06 00:00 71.6 '' '' -2020-10-07 00:00 70.6 '' '' -2020-10-08 00:00 71.5 '' '' -2020-10-09 00:00 72.9 '' '' -2020-10-10 00:00 73.3 '' '' -2020-10-11 00:00 72.6 '' '' -2020-10-12 00:00 73.4 '' '' -2020-10-13 00:00 72.0 '' '' -2020-10-14 00:00 74.1 '' '' -2020-10-15 00:00 73.4 '' '' -2020-10-16 00:00 74.8 '' '' -2020-10-17 00:00 72.5 '' '' -2020-10-18 00:00 75.3 '' '' -2020-10-19 00:00 74.2 '' '' -2020-10-20 00:00 74.0 '' '' -2020-10-21 00:00 73.0 '' '' -2020-10-22 00:00 74.2 '' '' -2020-10-23 00:00 72.8 '' '' -2020-10-24 00:00 71.3 '' '' -2020-10-25 00:00 73.3 '' '' -2020-10-26 00:00 74.1 '' '' -2020-10-27 00:00 81.4 '' '' -2020-10-28 00:00 86.4 '' '' -2020-10-29 00:00 83.5 '' '' -2020-10-30 00:00 78.4 '' '' -2020-10-31 00:00 75.6 '' '' -2020-11-01 00:00 76.1 '' '' -2020-11-02 00:00 80.3 '' '' -2020-11-03 00:00 81.6 '' '' -2020-11-04 00:00 86.6 '' '' -2020-11-05 00:00 89.1 '' '' -2020-11-06 00:00 92.1 '' '' -2020-11-07 00:00 88.9 '' '' -2020-11-08 00:00 88.3 '' '' -2020-11-09 00:00 88.3 '' '' -2020-11-10 00:00 85.1 '' '' -2020-11-11 00:00 86.3 '' '' -2020-11-12 00:00 83.3 '' '' -2020-11-13 00:00 80.2 '' '' -2020-11-14 00:00 78.5 '' '' -2020-11-15 00:00 76.9 '' '' -2020-11-16 00:00 74.9 '' '' -2020-11-17 00:00 77.3 '' '' -2020-11-18 00:00 75.5 '' '' -2020-11-19 00:00 74.9 '' '' -2020-11-20 00:00 79.7 '' '' -2020-11-21 00:00 82.9 '' '' -2020-11-22 00:00 85.5 '' '' -2020-11-23 00:00 93.1 '' '' -2020-11-24 00:00 97.9 '' '' -2020-11-25 00:00 101.0 '' '' -2020-11-26 00:00 103.0 '' '' -2020-11-27 00:00 103.5 '' '' -2020-11-28 00:00 106.6 '' '' -2020-11-29 00:00 113.1 '' '' -2020-11-30 00:00 106.4 '' '' -2020-12-01 00:00 101.2 '' '' -2020-12-02 00:00 101.9 '' '' -2020-12-03 00:00 99.9 '' '' -2020-12-04 00:00 93.0 '' '' -2020-12-05 00:00 97.0 '' '' -2020-12-06 00:00 88.2 '' '' -2020-12-07 00:00 86.8 '' '' -2020-12-08 00:00 80.0 '' '' -2020-12-09 00:00 79.6 '' '' -2020-12-10 00:00 79.1 '' '' -2020-12-11 00:00 80.8 '' '' -2020-12-12 00:00 79.3 '' '' -2020-12-13 00:00 78.1 '' '' -2020-12-14 00:00 80.4 '' '' -2020-12-15 00:00 80.3 '' '' -2020-12-16 00:00 79.3 '' '' -2020-12-17 00:00 79.2 '' '' -2020-12-18 00:00 79.2 '' '' -2020-12-19 00:00 79.1 '' '' -2020-12-20 00:00 81.1 '' '' -2020-12-21 00:00 77.0 '' '' -2020-12-22 00:00 83.0 '' '' -2020-12-23 00:00 83.6 '' '' -2020-12-24 00:00 84.5 '' '' -2020-12-25 00:00 84.9 '' '' -2020-12-26 00:00 85.0 '' '' -2020-12-27 00:00 84.9 '' '' -2020-12-28 00:00 84.3 '' '' -2020-12-29 00:00 81.4 '' '' -2020-12-30 00:00 80.1 '' '' -2020-12-31 00:00 78.5 '' '' -2021-01-01 00:00 77.7 '' '' -2021-01-02 00:00 78.8 '' '' -2021-01-03 00:00 77.8 '' '' -2021-01-04 00:00 75.0 '' '' -2021-01-05 00:00 72.6 '' '' -2021-01-06 00:00 71.7 '' '' -2021-01-07 00:00 72.2 '' '' -2021-01-08 00:00 72.8 '' '' -2021-01-09 00:00 71.8 '' '' -2021-01-10 00:00 70.7 '' '' -2021-01-11 00:00 70.8 '' '' -2021-01-12 00:00 70.4 '' '' -2021-01-13 00:00 70.8 '' '' -2021-01-14 00:00 71.2 '' '' -2021-01-15 00:00 71.0 '' '' -2021-01-16 00:00 75.2 '' '' -2021-01-17 00:00 74.8 '' '' -2021-01-18 00:00 72.9 '' '' -2021-01-19 00:00 75.6 '' '' -2021-01-20 00:00 74.7 '' '' -2021-01-21 00:00 75.2 '' '' -2021-01-22 00:00 75.8 '' '' -2021-01-23 00:00 75.5 '' '' -2021-01-24 00:00 75.2 '' '' -2021-01-25 00:00 74.8 '' '' -2021-01-26 00:00 73.4 '' '' -2021-01-27 00:00 74.0 '' '' -2021-01-28 00:00 73.4 '' '' -2021-01-29 00:00 73.2 '' '' -2021-01-30 00:00 71.6 '' '' -2021-01-31 00:00 71.2 '' '' -2021-02-01 00:00 70.8 '' '' -2021-02-02 00:00 70.2 '' '' -2021-02-03 00:00 71.3 '' '' -2021-02-04 00:00 71.2 '' '' -2021-02-05 00:00 71.1 '' '' -2021-02-06 00:00 71.0 '' '' -2021-02-07 00:00 70.8 '' '' -2021-02-08 00:00 71.3 '' '' -2021-02-09 00:00 71.0 '' '' -2021-02-10 00:00 71.0 '' '' -2021-02-11 00:00 70.5 '' '' -2021-02-12 00:00 71.7 '' '' -2021-02-13 00:00 69.6 '' '' -2021-02-14 00:00 69.7 '' '' -2021-02-15 00:00 68.0 '' '' -2021-02-16 00:00 69.1 '' '' -2021-02-17 00:00 70.0 '' '' -2021-02-18 00:00 70.6 '' '' -2021-02-19 00:00 69.9 '' '' -2021-02-20 00:00 71.7 '' '' -2021-02-21 00:00 70.9 '' '' -2021-02-22 00:00 73.2 '' '' -2021-02-23 00:00 74.2 '' '' -2021-02-24 00:00 77.6 '' '' -2021-02-25 00:00 77.1 '' '' -2021-02-26 00:00 78.1 '' '' -2021-02-27 00:00 76.4 '' '' -2021-02-28 00:00 75.7 '' '' -2021-03-01 00:00 72.7 '' '' -2021-03-02 00:00 73.3 '' '' -2021-03-03 00:00 74.4 '' '' -2021-03-04 00:00 74.1 '' '' -2021-03-05 00:00 73.9 '' '' -2021-03-06 00:00 74.4 '' '' -2021-03-07 00:00 76.4 '' '' -2021-03-08 00:00 78.7 '' '' -2021-03-09 00:00 75.4 '' '' -2021-03-10 00:00 75.3 '' '' -2021-03-11 00:00 74.6 '' '' -2021-03-12 00:00 74.7 '' '' -2021-03-13 00:00 75.0 '' '' -2021-03-14 00:00 74.2 '' '' -2021-03-15 00:00 73.1 '' '' -2021-03-16 00:00 72.9 '' '' -2021-03-17 00:00 72.1 '' '' -2021-03-18 00:00 72.5 '' '' -2021-03-19 00:00 72.5 '' '' -2021-03-20 00:00 74.1 '' '' -2021-03-21 00:00 74.6 '' '' -2021-03-22 00:00 76.0 '' '' -2021-03-23 00:00 76.4 '' '' -2021-03-24 00:00 75.3 '' '' -2021-03-25 00:00 74.8 '' '' -2021-03-26 00:00 74.7 '' '' -2021-03-27 00:00 74.7 '' '' -2021-03-28 00:00 73.6 '' '' -2021-03-29 00:00 73.2 '' '' -2021-03-30 00:00 74.5 '' '' -2021-03-31 00:00 72.4 '' '' -2021-04-01 00:00 77.8 '' '' -2021-04-02 00:00 71.4 '' '' -2021-04-03 00:00 72.2 '' '' -2021-04-04 00:00 72.0 '' '' -2021-04-05 00:00 71.8 '' '' -2021-04-06 00:00 71.3 '' '' -2021-04-07 00:00 70.7 '' '' -2021-04-08 00:00 70.5 '' '' -2021-04-09 00:00 70.8 '' '' -2021-04-10 00:00 70.8 '' '' -2021-04-11 00:00 72.2 '' '' -2021-04-12 00:00 74.5 '' '' -2021-04-13 00:00 73.6 '' '' -2021-04-14 00:00 74.3 '' '' -2021-04-15 00:00 76.0 '' '' -2021-04-16 00:00 75.2 '' '' -2021-04-17 00:00 75.9 '' '' -2021-04-18 00:00 76.4 '' '' -2021-04-19 00:00 81.1 '' '' -2021-04-20 00:00 83.7 '' '' -2021-04-21 00:00 77.7 '' '' -2021-04-22 00:00 78.6 '' '' -2021-04-23 00:00 76.1 '' '' -2021-04-24 00:00 77.7 '' '' -2021-04-25 00:00 78.7 '' '' -2021-04-26 00:00 79.2 '' '' -2021-04-27 00:00 79.4 '' '' -2021-04-28 00:00 77.9 '' '' -2021-04-29 00:00 78.0 '' '' -2021-04-30 00:00 74.0 '' '' -2021-05-01 00:00 72.7 '' '' -2021-05-02 00:00 73.1 '' '' -2021-05-03 00:00 72.8 '' '' -2021-05-04 00:00 71.8 '' '' -2021-05-05 00:00 70.7 '' '' -2021-05-06 00:00 72.1 '' '' -2021-05-07 00:00 75.9 '' '' -2021-05-08 00:00 77.4 '' '' -2021-05-09 00:00 77.7 '' '' -2021-05-10 00:00 78.0 '' '' -2021-05-11 00:00 77.6 '' '' -2021-05-12 00:00 76.3 '' '' -2021-05-13 00:00 76.3 '' '' -2021-05-14 00:00 72.4 '' '' -2021-05-15 00:00 74.9 '' '' -2021-05-16 00:00 74.9 '' '' -2021-05-17 00:00 76.5 '' '' -2021-05-18 00:00 78.2 '' '' -2021-05-19 00:00 77.7 '' '' -2021-05-20 00:00 74.0 '' '' -2021-05-21 00:00 75.5 '' '' -2021-05-22 00:00 77.5 '' '' -2021-05-23 00:00 81.0 '' '' -2021-05-24 00:00 74.5 '' '' -2021-05-25 00:00 85.7 '' '' -2021-05-26 00:00 90.3 '' '' -2021-05-27 00:00 85.5 '' '' -2021-05-28 00:00 79.5 '' '' -2021-05-29 00:00 78.1 '' '' -2021-05-30 00:00 76.5 '' '' -2021-05-31 00:00 84.0 '' '' -2021-06-01 00:00 77.3 '' '' -2021-06-02 00:00 78.5 '' '' -2021-06-03 00:00 77.7 '' '' -2021-06-04 00:00 79.4 '' '' -2021-06-05 00:00 76.6 '' '' -2021-06-06 00:00 79.7 '' '' -2021-06-07 00:00 83.2 '' '' -2021-06-08 00:00 82.3 '' '' -2021-06-09 00:00 81.0 '' '' -2021-06-10 00:00 75.6 '' '' -2021-06-11 00:00 79.7 '' '' -2021-06-12 00:00 80.0 '' '' -2021-06-13 00:00 71.1 '' '' -2021-06-14 00:00 79.3 '' '' -2021-06-15 00:00 77.9 '' '' -2021-06-16 00:00 82.8 '' '' -2021-06-17 00:00 87.7 '' '' -2021-06-18 00:00 79.5 '' '' -2021-06-19 00:00 79.6 '' '' -2021-06-20 00:00 78.9 '' '' -2021-06-21 00:00 81.7 '' '' -2021-06-22 00:00 83.5 '' '' -2021-06-23 00:00 82.3 '' '' -2021-06-24 00:00 83.3 '' '' -2021-06-25 00:00 86.1 '' '' -2021-06-26 00:00 85.1 '' '' -2021-06-27 00:00 89.9 '' '' -2021-06-28 00:00 91.6 '' '' -2021-06-29 00:00 95.6 '' '' -2021-06-30 00:00 97.3 '' '' -2021-07-01 00:00 97.2 '' '' -2021-07-02 00:00 98.1 '' '' -2021-07-03 00:00 96.8 '' '' -2021-07-04 00:00 94.1 '' '' -2021-07-05 00:00 92.4 '' '' -2021-07-06 00:00 86.0 '' '' -2021-07-07 00:00 78.6 '' '' -2021-07-08 00:00 75.9 '' '' -2021-07-09 00:00 76.2 '' '' -2021-07-10 00:00 76.5 '' '' -2021-07-11 00:00 76.0 '' '' -2021-07-12 00:00 74.0 '' '' -2021-07-13 00:00 74.3 '' '' -2021-07-14 00:00 74.5 '' '' -2021-07-15 00:00 75.9 '' '' -2021-07-16 00:00 77.5 '' '' -2021-07-17 00:00 80.0 '' '' -2021-07-18 00:00 83.0 '' '' -2021-07-19 00:00 85.3 '' '' -2021-07-20 00:00 89.8 '' '' -2021-07-21 00:00 96.5 '' '' -2021-07-22 00:00 91.8 '' '' -2021-07-23 00:00 90.2 '' '' -2021-07-24 00:00 86.5 '' '' -2021-07-25 00:00 84.2 '' '' -2021-07-26 00:00 83.4 '' '' -2021-07-27 00:00 82.1 '' '' -2021-07-28 00:00 81.2 '' '' -2021-07-29 00:00 78.1 '' '' -2021-07-30 00:00 77.8 '' '' -2021-07-31 00:00 78.2 '' '' -2021-08-01 00:00 77.2 '' '' -2021-08-02 00:00 76.8 '' '' -2021-08-03 00:00 78.1 '' '' -2021-08-04 00:00 72.8 '' '' -2021-08-05 00:00 76.5 '' '' -2021-08-06 00:00 76.5 '' '' -2021-08-07 00:00 75.8 '' '' -2021-08-08 00:00 75.5 '' '' -2021-08-09 00:00 75.0 '' '' -2021-08-10 00:00 75.3 '' '' -2021-08-11 00:00 75.8 '' '' -2021-08-12 00:00 75.6 '' '' -2021-08-13 00:00 74.8 '' '' -2021-08-14 00:00 74.5 '' '' -2021-08-15 00:00 76.5 '' '' -2021-08-16 00:00 76.3 '' '' -2021-08-17 00:00 75.0 '' '' -2021-08-18 00:00 77.1 '' '' -2021-08-19 00:00 76.7 '' '' -2021-08-20 00:00 79.5 '' '' -2021-08-21 00:00 78.9 '' '' -2021-08-22 00:00 78.8 '' '' -2021-08-23 00:00 79.8 '' '' -2021-08-24 00:00 82.6 '' '' -2021-08-25 00:00 85.4 '' '' -2021-08-26 00:00 90.5 '' '' -2021-08-27 00:00 91.3 '' '' -2021-08-28 00:00 91.7 '' '' -2021-08-29 00:00 90.5 '' '' -2021-08-30 00:00 92.4 '' '' -2021-08-31 00:00 86.0 '' '' -2021-09-01 00:00 85.7 '' '' -2021-09-02 00:00 87.3 '' '' -2021-09-03 00:00 85.3 '' '' -2021-09-04 00:00 88.0 '' '' -2021-09-05 00:00 94.9 '' '' -2021-09-06 00:00 101.1 '' '' -2021-09-07 00:00 102.8 '' '' -2021-09-08 00:00 101.9 '' '' -2021-09-09 00:00 101.1 '' '' -2021-09-10 00:00 97.6 '' '' -2021-09-11 00:00 93.0 '' '' -2021-09-12 00:00 88.8 '' '' -2021-09-13 00:00 84.3 '' '' -2021-09-14 00:00 79.0 '' '' -2021-09-15 00:00 76.1 '' '' -2021-09-16 00:00 74.0 '' '' -2021-09-17 00:00 74.1 '' '' -2021-09-18 00:00 74.4 '' '' -2021-09-19 00:00 75.7 '' '' -2021-09-20 00:00 80.7 '' '' -2021-09-21 00:00 85.5 '' '' -2021-09-22 00:00 89.2 '' '' -2021-09-23 00:00 90.2 '' '' -2021-09-24 00:00 88.9 '' '' -2021-09-25 00:00 88.9 '' '' -2021-09-26 00:00 86.7 '' '' -2021-09-27 00:00 85.6 '' '' -2021-09-28 00:00 89.3 '' '' -2021-09-29 00:00 102.0 '' '' -2021-09-30 00:00 94.8 '' '' -2021-10-01 00:00 90.7 '' '' -2021-10-02 00:00 87.1 '' '' -2021-10-03 00:00 86.1 '' '' -2021-10-04 00:00 83.5 '' '' -2021-10-05 00:00 81.7 '' '' -2021-10-06 00:00 84.7 '' '' -2021-10-07 00:00 85.6 '' '' -2021-10-08 00:00 92.2 '' '' -2021-10-09 00:00 80.8 '' '' -2021-10-10 00:00 84.2 '' '' -2021-10-11 00:00 88.2 '' '' -2021-10-12 00:00 83.1 '' '' -2021-10-13 00:00 83.1 '' '' -2021-10-14 00:00 83.6 '' '' -2021-10-15 00:00 81.2 '' '' -2021-10-16 00:00 79.8 '' '' -2021-10-17 00:00 77.1 '' '' -2021-10-18 00:00 76.2 '' '' -2021-10-19 00:00 78.2 '' '' -2021-10-20 00:00 77.2 '' '' -2021-10-21 00:00 81.6 '' '' -2021-10-22 00:00 84.8 '' '' -2021-10-23 00:00 89.1 '' '' -2021-10-24 00:00 92.8 '' '' -2021-10-25 00:00 100.6 '' '' -2021-10-26 00:00 109.4 '' '' -2021-10-27 00:00 110.8 '' '' -2021-10-28 00:00 111.3 '' '' -2021-10-29 00:00 106.5 '' '' -2021-10-30 00:00 108.9 '' '' -2021-10-31 00:00 100.2 '' '' -2021-11-01 00:00 96.1 '' '' -2021-11-02 00:00 94.5 '' '' -2021-11-03 00:00 90.9 '' '' -2021-11-04 00:00 90.8 '' '' -2021-11-05 00:00 89.6 '' '' -2021-11-06 00:00 85.4 '' '' -2021-11-07 00:00 88.2 '' '' -2021-11-08 00:00 89.1 '' '' -2021-11-09 00:00 89.6 '' '' -2021-11-10 00:00 95.0 '' '' -2021-11-11 00:00 82.5 '' '' -2021-11-12 00:00 82.3 '' '' -2021-11-13 00:00 81.9 '' '' -2021-11-14 00:00 77.4 '' '' -2021-11-15 00:00 79.1 '' '' -2021-11-16 00:00 79.0 '' '' -2021-11-17 00:00 78.5 '' '' -2021-11-18 00:00 77.1 '' '' -2021-11-19 00:00 77.0 '' '' -2021-11-20 00:00 79.7 '' '' -2021-11-21 00:00 77.9 '' '' -2021-11-22 00:00 77.5 '' '' -2021-11-23 00:00 78.9 '' '' -2021-11-24 00:00 84.4 '' '' -2021-11-25 00:00 82.7 '' '' -2021-11-26 00:00 91.1 '' '' -2021-11-27 00:00 90.0 '' '' -2021-11-28 00:00 91.0 '' '' -2021-11-29 00:00 89.8 '' '' -2021-11-30 00:00 87.5 '' '' -2021-12-01 00:00 84.0 '' '' -2021-12-02 00:00 84.2 '' '' -2021-12-03 00:00 82.9 '' '' -2021-12-04 00:00 85.6 '' '' -2021-12-05 00:00 80.3 '' '' -2021-12-06 00:00 77.6 '' '' -2021-12-07 00:00 76.6 '' '' -2021-12-08 00:00 74.6 '' '' -2021-12-09 00:00 74.4 '' '' -2021-12-10 00:00 73.4 '' '' -2021-12-11 00:00 73.9 '' '' -2021-12-12 00:00 77.4 '' '' -2021-12-13 00:00 78.2 '' '' -2021-12-14 00:00 86.2 '' '' -2021-12-15 00:00 99.3 '' '' -2021-12-16 00:00 114.2 '' '' -2021-12-17 00:00 117.0 '' '' -2021-12-18 00:00 117.4 '' '' -2021-12-19 00:00 111.6 '' '' -2021-12-20 00:00 118.8 '' '' -2021-12-21 00:00 132.2 '' '' -2021-12-22 00:00 135.8 '' '' -2021-12-23 00:00 125.6 '' '' -2021-12-24 00:00 122.1 '' '' -2021-12-25 00:00 126.5 '' '' -2021-12-26 00:00 121.2 '' '' -2021-12-27 00:00 119.9 '' '' -2021-12-28 00:00 116.5 '' '' -2021-12-29 00:00 107.8 '' '' -2021-12-30 00:00 99.0 '' '' -2021-12-31 00:00 98.2 '' '' -2022-01-01 00:00 90.8 '' '' -2022-01-02 00:00 86.0 '' '' -2022-01-03 00:00 81.3 '' '' -2022-01-04 00:00 82.7 '' '' -2022-01-05 00:00 81.0 '' '' -2022-01-06 00:00 90.6 '' '' -2022-01-07 00:00 103.8 '' '' -2022-01-08 00:00 99.1 '' '' -2022-01-09 00:00 98.7 '' '' -2022-01-10 00:00 98.8 '' '' -2022-01-11 00:00 96.7 '' '' -2022-01-12 00:00 99.8 '' '' -2022-01-13 00:00 102.1 '' '' -2022-01-14 00:00 106.6 '' '' -2022-01-15 00:00 111.8 '' '' -2022-01-16 00:00 115.6 '' '' -2022-01-17 00:00 109.9 '' '' -2022-01-18 00:00 110.8 '' '' -2022-01-19 00:00 101.9 '' '' -2022-01-20 00:00 96.1 '' '' -2022-01-21 00:00 94.3 '' '' -2022-01-22 00:00 92.2 '' '' -2022-01-23 00:00 90.6 '' '' -2022-01-24 00:00 92.2 '' '' -2022-01-25 00:00 97.8 '' '' -2022-01-26 00:00 98.7 '' '' -2022-01-27 00:00 103.9 '' '' -2022-01-28 00:00 110.0 '' '' -2022-01-29 00:00 121.6 '' '' -2022-01-30 00:00 125.8 '' '' -2022-01-31 00:00 125.7 '' '' -2022-02-01 00:00 124.9 '' '' -2022-02-02 00:00 124.5 '' '' -2022-02-03 00:00 122.9 '' '' -2022-02-04 00:00 126.0 '' '' -2022-02-05 00:00 122.4 '' '' -2022-02-06 00:00 120.2 '' '' -2022-02-07 00:00 123.7 '' '' -2022-02-08 00:00 119.8 '' '' -2022-02-09 00:00 122.5 '' '' -2022-02-10 00:00 114.9 '' '' -2022-02-11 00:00 110.2 '' '' -2022-02-12 00:00 107.7 '' '' -2022-02-13 00:00 102.8 '' '' -2022-02-14 00:00 103.9 '' '' -2022-02-15 00:00 111.5 '' '' -2022-02-16 00:00 100.4 '' '' -2022-02-17 00:00 94.4 '' '' -2022-02-18 00:00 91.1 '' '' -2022-02-19 00:00 93.5 '' '' -2022-02-20 00:00 91.2 '' '' -2022-02-21 00:00 95.6 '' '' -2022-02-22 00:00 93.3 '' '' -2022-02-23 00:00 93.5 '' '' -2022-02-24 00:00 90.5 '' '' -2022-02-25 00:00 94.2 '' '' -2022-02-26 00:00 94.7 '' '' -2022-02-27 00:00 95.1 '' '' -2022-02-28 00:00 97.1 '' '' -2022-03-01 00:00 97.5 '' '' -2022-03-02 00:00 107.6 '' '' -2022-03-03 00:00 109.0 '' '' -2022-03-04 00:00 111.2 '' '' -2022-03-05 00:00 118.2 '' '' -2022-03-06 00:00 113.9 '' '' -2022-03-07 00:00 116.5 '' '' -2022-03-08 00:00 113.6 '' '' -2022-03-09 00:00 113.1 '' '' -2022-03-10 00:00 125.4 '' '' -2022-03-11 00:00 124.9 '' '' -2022-03-12 00:00 123.1 '' '' -2022-03-13 00:00 121.4 '' '' -2022-03-14 00:00 113.6 '' '' -2022-03-15 00:00 109.2 '' '' -2022-03-16 00:00 105.5 '' '' -2022-03-17 00:00 101.8 '' '' -2022-03-18 00:00 96.8 '' '' -2022-03-19 00:00 93.5 '' '' -2022-03-20 00:00 94.1 '' '' -2022-03-21 00:00 97.0 '' '' -2022-03-22 00:00 105.2 '' '' -2022-03-23 00:00 104.9 '' '' -2022-03-24 00:00 110.9 '' '' -2022-03-25 00:00 111.8 '' '' -2022-03-26 00:00 118.1 '' '' -2022-03-27 00:00 129.7 '' '' -2022-03-28 00:00 155.4 '' '' -2022-03-29 00:00 148.7 '' '' -2022-03-30 00:00 151.0 '' '' -2022-03-31 00:00 239.0 '' '' -2022-04-01 00:00 146.4 '' '' -2022-04-02 00:00 143.2 '' '' -2022-04-03 00:00 140.2 '' '' -2022-04-04 00:00 128.0 '' '' -2022-04-05 00:00 122.5 '' '' -2022-04-06 00:00 117.1 '' '' -2022-04-07 00:00 111.3 '' '' -2022-04-08 00:00 109.2 '' '' -2022-04-09 00:00 107.5 '' '' -2022-04-10 00:00 101.4 '' '' -2022-04-11 00:00 99.2 '' '' -2022-04-12 00:00 96.7 '' '' -2022-04-13 00:00 99.2 '' '' -2022-04-14 00:00 104.0 '' '' -2022-04-15 00:00 111.0 '' '' -2022-04-16 00:00 123.3 '' '' -2022-04-17 00:00 135.9 '' '' -2022-04-18 00:00 141.6 '' '' -2022-04-19 00:00 161.5 '' '' -2022-04-20 00:00 167.0 '' '' -2022-04-21 00:00 166.0 '' '' -2022-04-22 00:00 164.2 '' '' -2022-04-23 00:00 161.6 '' '' -2022-04-24 00:00 160.3 '' '' -2022-04-25 00:00 158.5 '' '' -2022-04-26 00:00 150.8 '' '' -2022-04-27 00:00 143.4 '' '' -2022-04-28 00:00 134.1 '' '' -2022-04-29 00:00 125.3 '' '' -2022-04-30 00:00 121.5 '' '' -2022-05-01 00:00 110.6 '' '' -2022-05-02 00:00 113.7 '' '' -2022-05-03 00:00 115.6 '' '' -2022-05-04 00:00 132.3 '' '' -2022-05-05 00:00 122.0 '' '' -2022-05-06 00:00 121.3 '' '' -2022-05-07 00:00 120.2 '' '' -2022-05-08 00:00 121.4 '' '' -2022-05-09 00:00 119.3 '' '' -2022-05-10 00:00 118.1 '' '' -2022-05-11 00:00 135.6 '' '' -2022-05-12 00:00 135.7 '' '' -2022-05-13 00:00 152.6 '' '' -2022-05-14 00:00 155.9 '' '' -2022-05-15 00:00 156.9 '' '' -2022-05-16 00:00 165.3 '' '' -2022-05-17 00:00 174.7 '' '' -2022-05-18 00:00 184.0 '' '' -2022-05-19 00:00 177.3 '' '' -2022-05-20 00:00 169.5 '' '' -2022-05-21 00:00 170.8 '' '' -2022-05-22 00:00 168.8 '' '' -2022-05-23 00:00 162.2 '' '' -2022-05-24 00:00 150.6 '' '' -2022-05-25 00:00 140.1 '' '' -2022-05-26 00:00 126.0 '' '' -2022-05-27 00:00 116.7 '' '' -2022-05-28 00:00 104.5 '' '' -2022-05-29 00:00 101.1 '' '' -2022-05-30 00:00 103.4 '' '' -2022-05-31 00:00 100.7 '' '' -2022-06-01 00:00 107.1 '' '' -2022-06-02 00:00 103.8 '' '' -2022-06-03 00:00 103.6 '' '' -2022-06-04 00:00 103.9 '' '' -2022-06-05 00:00 101.6 '' '' -2022-06-06 00:00 99.3 '' '' -2022-06-07 00:00 101.3 '' '' -2022-06-08 00:00 102.9 '' '' -2022-06-09 00:00 109.6 '' '' -2022-06-10 00:00 113.9 '' '' -2022-06-11 00:00 115.6 '' '' -2022-06-12 00:00 125.1 '' '' -2022-06-13 00:00 135.6 '' '' -2022-06-14 00:00 150.1 '' '' -2022-06-15 00:00 144.5 '' '' -2022-06-16 00:00 151.4 '' '' -2022-06-17 00:00 153.7 '' '' -2022-06-18 00:00 144.7 '' '' -2022-06-19 00:00 148.2 '' '' -2022-06-20 00:00 141.0 '' '' -2022-06-21 00:00 143.2 '' '' -2022-06-22 00:00 132.9 '' '' -2022-06-23 00:00 125.5 '' '' -2022-06-24 00:00 119.2 '' '' -2022-06-25 00:00 111.7 '' '' -2022-06-26 00:00 105.4 '' '' -2022-06-27 00:00 101.4 '' '' -2022-06-28 00:00 99.3 '' '' -2022-06-29 00:00 99.4 '' '' -2022-06-30 00:00 98.9 '' '' -2022-07-01 00:00 101.3 '' '' -2022-07-02 00:00 103.6 '' '' -2022-07-03 00:00 105.7 '' '' -2022-07-04 00:00 107.9 '' '' -2022-07-05 00:00 113.1 '' '' -2022-07-06 00:00 118.4 '' '' -2022-07-07 00:00 125.3 '' '' -2022-07-08 00:00 133.9 '' '' -2022-07-09 00:00 141.5 '' '' -2022-07-10 00:00 158.2 '' '' -2022-07-11 00:00 166.4 '' '' -2022-07-12 00:00 170.4 '' '' -2022-07-13 00:00 170.3 '' '' -2022-07-14 00:00 174.6 '' '' -2022-07-15 00:00 177.0 '' '' -2022-07-16 00:00 182.0 '' '' -2022-07-17 00:00 166.5 '' '' -2022-07-18 00:00 154.3 '' '' -2022-07-19 00:00 148.8 '' '' -2022-07-20 00:00 136.5 '' '' -2022-07-21 00:00 125.6 '' '' -2022-07-22 00:00 118.4 '' '' -2022-07-23 00:00 114.1 '' '' -2022-07-24 00:00 110.5 '' '' -2022-07-25 00:00 105.5 '' '' -2022-07-26 00:00 101.9 '' '' -2022-07-27 00:00 101.1 '' '' -2022-07-28 00:00 96.3 '' '' -2022-07-29 00:00 95.9 '' '' -2022-07-30 00:00 93.6 '' '' -2022-07-31 00:00 97.1 '' '' -2022-08-01 00:00 98.2 '' '' -2022-08-02 00:00 100.7 '' '' -2022-08-03 00:00 102.8 '' '' -2022-08-04 00:00 111.9 '' '' -2022-08-05 00:00 115.4 '' '' -2022-08-06 00:00 119.7 '' '' -2022-08-07 00:00 119.4 '' '' -2022-08-08 00:00 116.2 '' '' -2022-08-09 00:00 112.4 '' '' -2022-08-10 00:00 110.5 '' '' -2022-08-11 00:00 117.9 '' '' -2022-08-12 00:00 122.7 '' '' -2022-08-13 00:00 127.5 '' '' -2022-08-14 00:00 128.8 '' '' -2022-08-15 00:00 134.0 '' '' -2022-08-16 00:00 131.7 '' '' -2022-08-17 00:00 125.7 '' '' -2022-08-18 00:00 119.4 '' '' -2022-08-19 00:00 107.9 '' '' -2022-08-20 00:00 103.9 '' '' -2022-08-21 00:00 99.2 '' '' -2022-08-22 00:00 104.9 '' '' -2022-08-23 00:00 103.2 '' '' -2022-08-24 00:00 110.2 '' '' -2022-08-25 00:00 120.3 '' '' -2022-08-26 00:00 121.2 '' '' -2022-08-27 00:00 130.2 '' '' -2022-08-28 00:00 257.0 '' '' -2022-08-29 00:00 133.1 '' '' -2022-08-30 00:00 128.1 '' '' -2022-08-31 00:00 115.5 '' '' -2022-09-01 00:00 118.4 '' '' -2022-09-02 00:00 132.1 '' '' -2022-09-03 00:00 125.6 '' '' -2022-09-04 00:00 130.4 '' '' -2022-09-05 00:00 132.4 '' '' -2022-09-06 00:00 128.2 '' '' -2022-09-07 00:00 128.1 '' '' -2022-09-08 00:00 128.5 '' '' -2022-09-09 00:00 128.0 '' '' -2022-09-10 00:00 137.7 '' '' -2022-09-11 00:00 153.5 '' '' -2022-09-12 00:00 152.3 '' '' -2022-09-13 00:00 155.9 '' '' -2022-09-14 00:00 146.0 '' '' -2022-09-15 00:00 141.3 '' '' -2022-09-16 00:00 132.5 '' '' -2022-09-17 00:00 132.8 '' '' -2022-09-18 00:00 137.4 '' '' -2022-09-19 00:00 129.1 '' '' -2022-09-20 00:00 138.4 '' '' -2022-09-21 00:00 138.0 '' '' -2022-09-22 00:00 137.7 '' '' -2022-09-23 00:00 147.3 '' '' -2022-09-24 00:00 147.4 '' '' -2022-09-25 00:00 135.5 '' '' -2022-09-26 00:00 135.8 '' '' -2022-09-27 00:00 135.1 '' '' -2022-09-28 00:00 135.3 '' '' -2022-09-29 00:00 137.7 '' '' -2022-09-30 00:00 137.5 '' '' -2022-10-01 00:00 148.3 '' '' -2022-10-02 00:00 154.1 '' '' -2022-10-03 00:00 155.3 '' '' -2022-10-04 00:00 152.5 '' '' -2022-10-05 00:00 161.0 '' '' -2022-10-06 00:00 155.6 '' '' -2022-10-07 00:00 159.5 '' '' -2022-10-08 00:00 156.9 '' '' -2022-10-09 00:00 160.1 '' '' -2022-10-10 00:00 162.7 '' '' -2022-10-11 00:00 149.8 '' '' -2022-10-12 00:00 140.0 '' '' -2022-10-13 00:00 129.4 '' '' -2022-10-14 00:00 119.9 '' '' -2022-10-15 00:00 114.4 '' '' -2022-10-16 00:00 118.4 '' '' -2022-10-17 00:00 124.8 '' '' -2022-10-18 00:00 113.1 '' '' -2022-10-19 00:00 112.3 '' '' -2022-10-20 00:00 114.8 '' '' -2022-10-21 00:00 108.4 '' '' -2022-10-22 00:00 103.9 '' '' -2022-10-23 00:00 107.3 '' '' -2022-10-24 00:00 113.6 '' '' -2022-10-25 00:00 115.0 '' '' -2022-10-26 00:00 120.9 '' '' -2022-10-27 00:00 128.1 '' '' -2022-10-28 00:00 127.7 '' '' -2022-10-29 00:00 132.1 '' '' -2022-10-30 00:00 128.7 '' '' -2022-10-31 00:00 126.0 '' '' -2022-11-01 00:00 126.1 '' '' -2022-11-02 00:00 127.7 '' '' -2022-11-03 00:00 123.3 '' '' -2022-11-04 00:00 115.7 '' '' -2022-11-05 00:00 128.8 '' '' -2022-11-06 00:00 128.5 '' '' -2022-11-07 00:00 132.1 '' '' -2022-11-08 00:00 129.8 '' '' -2022-11-09 00:00 135.0 '' '' -2022-11-10 00:00 136.0 '' '' -2022-11-11 00:00 134.9 '' '' -2022-11-12 00:00 135.4 '' '' -2022-11-13 00:00 134.1 '' '' -2022-11-14 00:00 138.5 '' '' -2022-11-15 00:00 131.3 '' '' -2022-11-16 00:00 130.0 '' '' -2022-11-17 00:00 116.5 '' '' -2022-11-18 00:00 113.4 '' '' -2022-11-19 00:00 112.4 '' '' -2022-11-20 00:00 116.3 '' '' -2022-11-21 00:00 114.2 '' '' -2022-11-22 00:00 112.9 '' '' -2022-11-23 00:00 110.5 '' '' -2022-11-24 00:00 106.9 '' '' -2022-11-25 00:00 105.7 '' '' -2022-11-26 00:00 104.3 '' '' -2022-11-27 00:00 104.4 '' '' -2022-11-28 00:00 104.1 '' '' -2022-11-29 00:00 105.0 '' '' -2022-11-30 00:00 108.0 '' '' -2022-12-01 00:00 115.4 '' '' -2022-12-02 00:00 120.6 '' '' -2022-12-03 00:00 130.0 '' '' -2022-12-04 00:00 139.6 '' '' -2022-12-05 00:00 145.4 '' '' -2022-12-06 00:00 140.0 '' '' -2022-12-07 00:00 143.6 '' '' -2022-12-08 00:00 138.8 '' '' -2022-12-09 00:00 144.6 '' '' -2022-12-10 00:00 137.4 '' '' -2022-12-11 00:00 143.2 '' '' -2022-12-12 00:00 146.2 '' '' -2022-12-13 00:00 148.3 '' '' -2022-12-14 00:00 159.6 '' '' -2022-12-15 00:00 160.7 '' '' -2022-12-16 00:00 158.0 '' '' -2022-12-17 00:00 149.7 '' '' -2022-12-18 00:00 150.7 '' '' -2022-12-19 00:00 147.5 '' '' -2022-12-20 00:00 141.7 '' '' -2022-12-21 00:00 134.2 '' '' -2022-12-22 00:00 127.0 '' '' -2022-12-23 00:00 123.6 '' '' -2022-12-24 00:00 129.0 '' '' -2022-12-25 00:00 139.3 '' '' -2022-12-26 00:00 145.5 '' '' -2022-12-27 00:00 153.8 '' '' -2022-12-28 00:00 155.1 '' '' -2022-12-29 00:00 157.4 '' '' -2022-12-30 00:00 172.4 '' '' -2022-12-31 00:00 159.5 '' '' -2023-01-01 00:00 147.5 '' '' -2023-01-02 00:00 141.5 '' '' -2023-01-03 00:00 143.6 '' '' -2023-01-04 00:00 146.0 '' '' -2023-01-05 00:00 149.2 '' '' -2023-01-06 00:00 166.7 '' '' -2023-01-07 00:00 173.0 '' '' -2023-01-08 00:00 177.8 '' '' -2023-01-09 00:00 184.7 '' '' -2023-01-10 00:00 186.6 '' '' -2023-01-11 00:00 188.7 '' '' -2023-01-12 00:00 204.7 '' '' -2023-01-13 00:00 201.7 '' '' -2023-01-14 00:00 220.4 '' '' -2023-01-15 00:00 226.7 '' '' -2023-01-16 00:00 220.7 '' '' -2023-01-17 00:00 214.6 '' '' -2023-01-18 00:00 213.2 '' '' -2023-01-19 00:00 218.9 '' '' -2023-01-20 00:00 210.6 '' '' -2023-01-21 00:00 202.1 '' '' -2023-01-22 00:00 192.3 '' '' -2023-01-23 00:00 183.2 '' '' -2023-01-24 00:00 174.6 '' '' -2023-01-25 00:00 166.5 '' '' -2023-01-26 00:00 146.0 '' '' -2023-01-27 00:00 140.5 '' '' -2023-01-28 00:00 133.4 '' '' -2023-01-29 00:00 132.9 '' '' -2023-01-30 00:00 131.9 '' '' -2023-01-31 00:00 132.9 '' '' -2023-02-01 00:00 129.6 '' '' -2023-02-02 00:00 131.0 '' '' -2023-02-03 00:00 130.7 '' '' -2023-02-04 00:00 135.1 '' '' -2023-02-05 00:00 140.0 '' '' -2023-02-06 00:00 152.4 '' '' -2023-02-07 00:00 179.7 '' '' -2023-02-08 00:00 192.3 '' '' -2023-02-09 00:00 209.1 '' '' -2023-02-10 00:00 202.3 '' '' -2023-02-11 00:00 204.1 '' '' -2023-02-12 00:00 194.6 '' '' -2023-02-13 00:00 184.4 '' '' -2023-02-14 00:00 175.3 '' '' -2023-02-15 00:00 169.5 '' '' -2023-02-16 00:00 159.2 '' '' -2023-02-17 00:00 335.0 '' '' -2023-02-18 00:00 163.6 '' '' -2023-02-19 00:00 165.2 '' '' -2023-02-20 00:00 156.3 '' '' -2023-02-21 00:00 157.4 '' '' -2023-02-22 00:00 148.6 '' '' -2023-02-23 00:00 145.1 '' '' -2023-02-24 00:00 160.7 '' '' -2023-02-25 00:00 273.7 '' '' -2023-02-26 00:00 155.9 '' '' -2023-02-27 00:00 158.1 '' '' -2023-02-28 00:00 157.9 '' '' -2023-03-01 00:00 159.0 '' '' -2023-03-02 00:00 165.8 '' '' -2023-03-03 00:00 187.5 '' '' -2023-03-04 00:00 178.6 '' '' -2023-03-05 00:00 176.8 '' '' -2023-03-06 00:00 185.0 '' '' -2023-03-07 00:00 177.5 '' '' -2023-03-08 00:00 179.2 '' '' -2023-03-09 00:00 176.2 '' '' -2023-03-10 00:00 168.8 '' '' -2023-03-11 00:00 155.3 '' '' -2023-03-12 00:00 148.1 '' '' -2023-03-13 00:00 141.5 '' '' -2023-03-14 00:00 136.9 '' '' -2023-03-15 00:00 134.2 '' '' -2023-03-16 00:00 133.9 '' '' -2023-03-17 00:00 132.9 '' '' -2023-03-18 00:00 139.0 '' '' -2023-03-19 00:00 141.4 '' '' -2023-03-20 00:00 154.8 '' '' -2023-03-21 00:00 150.4 '' '' -2023-03-22 00:00 157.7 '' '' -2023-03-23 00:00 150.0 '' '' -2023-03-24 00:00 156.6 '' '' -2023-03-25 00:00 159.4 '' '' -2023-03-26 00:00 158.6 '' '' -2023-03-27 00:00 157.5 '' '' -2023-03-28 00:00 158.1 '' '' -2023-03-29 00:00 147.3 '' '' -2023-03-30 00:00 140.0 '' '' -2023-03-31 00:00 129.0 '' '' -2023-04-01 00:00 125.1 '' '' -2023-04-02 00:00 126.7 '' '' -2023-04-03 00:00 133.5 '' '' -2023-04-04 00:00 135.7 '' '' -2023-04-05 00:00 136.7 '' '' -2023-04-06 00:00 137.2 '' '' -2023-04-07 00:00 136.6 '' '' -2023-04-08 00:00 136.2 '' '' -2023-04-09 00:00 140.7 '' '' -2023-04-10 00:00 140.3 '' '' -2023-04-11 00:00 144.0 '' '' -2023-04-12 00:00 154.7 '' '' -2023-04-13 00:00 160.4 '' '' -2023-04-14 00:00 172.3 '' '' -2023-04-15 00:00 176.9 '' '' -2023-04-16 00:00 179.1 '' '' -2023-04-17 00:00 167.8 '' '' -2023-04-18 00:00 154.4 '' '' -2023-04-19 00:00 148.3 '' '' -2023-04-20 00:00 148.4 '' '' -2023-04-21 00:00 152.7 '' '' -2023-04-22 00:00 142.7 '' '' -2023-04-23 00:00 136.7 '' '' -2023-04-24 00:00 135.5 '' '' -2023-04-25 00:00 132.3 '' '' -2023-04-26 00:00 138.2 '' '' -2023-04-27 00:00 142.6 '' '' -2023-04-28 00:00 151.8 '' '' -2023-04-29 00:00 158.0 '' '' -2023-04-30 00:00 155.8 '' '' -2023-05-01 00:00 150.1 '' '' -2023-05-02 00:00 159.2 '' '' -2023-05-03 00:00 158.7 '' '' -2023-05-04 00:00 164.7 '' '' -2023-05-05 00:00 164.7 '' '' -2023-05-06 00:00 154.5 '' '' -2023-05-07 00:00 160.0 '' '' -2023-05-08 00:00 175.1 '' '' -2023-05-09 00:00 198.4 '' '' -2023-05-10 00:00 173.4 '' '' -2023-05-11 00:00 166.7 '' '' -2023-05-12 00:00 152.2 '' '' -2023-05-13 00:00 146.8 '' '' -2023-05-14 00:00 142.7 '' '' -2023-05-15 00:00 137.4 '' '' -2023-05-16 00:00 137.3 '' '' -2023-05-17 00:00 141.0 '' '' -2023-05-18 00:00 154.1 '' '' -2023-05-19 00:00 168.5 '' '' -2023-05-20 00:00 173.7 '' '' -2023-05-21 00:00 167.3 '' '' -2023-05-22 00:00 165.5 '' '' -2023-05-23 00:00 158.8 '' '' -2023-05-24 00:00 168.2 '' '' -2023-05-25 00:00 156.0 '' '' -2023-05-26 00:00 152.9 '' '' -2023-05-27 00:00 161.1 '' '' -2023-05-28 00:00 155.4 '' '' -2023-05-29 00:00 158.6 '' '' -2023-05-30 00:00 166.5 '' '' -2023-05-31 00:00 165.9 '' '' -2023-06-01 00:00 168.5 '' '' -2023-06-02 00:00 166.9 '' '' -2023-06-03 00:00 169.3 '' '' -2023-06-04 00:00 173.2 '' '' -2023-06-05 00:00 174.1 '' '' -2023-06-06 00:00 176.9 '' '' -2023-06-07 00:00 172.1 '' '' -2023-06-08 00:00 173.6 '' '' -2023-06-09 00:00 169.3 '' '' -2023-06-10 00:00 166.1 '' '' -2023-06-11 00:00 158.6 '' '' -2023-06-12 00:00 150.7 '' '' -2023-06-13 00:00 150.9 '' '' -2023-06-14 00:00 148.0 '' '' -2023-06-15 00:00 157.9 '' '' -2023-06-16 00:00 162.2 '' '' -2023-06-17 00:00 163.2 '' '' -2023-06-18 00:00 169.4 '' '' -2023-06-19 00:00 174.3 '' '' -2023-06-20 00:00 186.0 '' '' -2023-06-21 00:00 182.2 '' '' -2023-06-22 00:00 178.8 '' '' -2023-06-23 00:00 175.2 '' '' -2023-06-24 00:00 166.1 '' '' -2023-06-25 00:00 159.9 '' '' -2023-06-26 00:00 162.9 '' '' -2023-06-27 00:00 156.2 '' '' -2023-06-28 00:00 160.1 '' '' -2023-06-29 00:00 167.6 '' '' -2023-06-30 00:00 163.9 '' '' -2023-07-01 00:00 171.0 '' '' -2023-07-02 00:00 175.9 '' '' -2023-07-03 00:00 179.0 '' '' -2023-07-04 00:00 172.8 '' '' -2023-07-05 00:00 159.8 '' '' -2023-07-06 00:00 162.9 '' '' -2023-07-07 00:00 166.8 '' '' -2023-07-08 00:00 165.9 '' '' -2023-07-09 00:00 185.2 '' '' -2023-07-10 00:00 196.9 '' '' -2023-07-11 00:00 220.6 '' '' -2023-07-12 00:00 199.7 '' '' -2023-07-13 00:00 209.7 '' '' -2023-07-14 00:00 186.6 '' '' -2023-07-15 00:00 184.5 '' '' -2023-07-16 00:00 190.4 '' '' -2023-07-17 00:00 185.9 '' '' -2023-07-18 00:00 225.7 '' '' -2023-07-19 00:00 195.1 '' '' -2023-07-20 00:00 190.3 '' '' -2023-07-21 00:00 178.5 '' '' -2023-07-22 00:00 180.0 '' '' -2023-07-23 00:00 178.0 '' '' -2023-07-24 00:00 170.3 '' '' -2023-07-25 00:00 174.4 '' '' -2023-07-26 00:00 172.6 '' '' -2023-07-27 00:00 170.5 '' '' -2023-07-28 00:00 173.4 '' '' -2023-07-29 00:00 184.1 '' '' -2023-07-30 00:00 179.7 '' '' -2023-07-31 00:00 182.4 '' '' -2023-08-01 00:00 179.9 '' '' -2023-08-02 00:00 178.1 '' '' -2023-08-03 00:00 167.7 '' '' -2023-08-04 00:00 175.8 '' '' -2023-08-05 00:00 180.8 '' '' -2023-08-06 00:00 178.5 '' '' -2023-08-07 00:00 174.5 '' '' -2023-08-08 00:00 163.4 '' '' -2023-08-09 00:00 157.7 '' '' -2023-08-10 00:00 160.0 '' '' -2023-08-11 00:00 157.0 '' '' -2023-08-12 00:00 152.2 '' '' -2023-08-13 00:00 154.4 '' '' -2023-08-14 00:00 158.1 '' '' -2023-08-15 00:00 162.1 '' '' -2023-08-16 00:00 164.2 '' '' -2023-08-17 00:00 155.7 '' '' -2023-08-18 00:00 154.4 '' '' -2023-08-19 00:00 154.3 '' '' -2023-08-20 00:00 149.8 '' '' -2023-08-21 00:00 152.2 '' '' -2023-08-22 00:00 154.4 '' '' -2023-08-23 00:00 150.3 '' '' -2023-08-24 00:00 147.3 '' '' -2023-08-25 00:00 141.9 '' '' -2023-08-26 00:00 142.2 '' '' -2023-08-27 00:00 144.5 '' '' -2023-08-28 00:00 144.5 '' '' -2023-08-29 00:00 145.0 '' '' -2023-08-30 00:00 141.2 '' '' -2023-08-31 00:00 142.5 '' '' -2023-09-01 00:00 138.3 '' '' -2023-09-02 00:00 133.6 '' '' -2023-09-03 00:00 132.8 '' '' -2023-09-04 00:00 138.4 '' '' -2023-09-05 00:00 145.2 '' '' -2023-09-06 00:00 149.4 '' '' -2023-09-07 00:00 163.3 '' '' -2023-09-08 00:00 163.4 '' '' -2023-09-09 00:00 163.7 '' '' -2023-09-10 00:00 166.2 '' '' -2023-09-11 00:00 178.8 '' '' -2023-09-12 00:00 155.5 '' '' -2023-09-13 00:00 144.4 '' '' -2023-09-14 00:00 146.9 '' '' -2023-09-15 00:00 140.6 '' '' -2023-09-16 00:00 141.9 '' '' -2023-09-17 00:00 146.1 '' '' -2023-09-18 00:00 156.0 '' '' -2023-09-19 00:00 167.6 '' '' -2023-09-20 00:00 156.8 '' '' -2023-09-21 00:00 169.4 '' '' -2023-09-22 00:00 177.0 '' '' -2023-09-23 00:00 174.1 '' '' -2023-09-24 00:00 174.8 '' '' -2023-09-25 00:00 171.1 '' '' -2023-09-26 00:00 165.7 '' '' -2023-09-27 00:00 156.7 '' '' -2023-09-28 00:00 148.4 '' '' -2023-09-29 00:00 155.5 '' '' -2023-09-30 00:00 159.5 '' '' -2023-10-01 00:00 161.5 '' '' -2023-10-02 00:00 157.7 '' '' -2023-10-03 00:00 153.8 '' '' -2023-10-04 00:00 155.1 '' '' -2023-10-05 00:00 156.1 '' '' -2023-10-06 00:00 155.3 '' '' -2023-10-07 00:00 157.0 '' '' -2023-10-08 00:00 156.8 '' '' -2023-10-09 00:00 165.2 '' '' -2023-10-10 00:00 163.9 '' '' -2023-10-11 00:00 157.5 '' '' -2023-10-12 00:00 156.4 '' '' -2023-10-13 00:00 148.4 '' '' -2023-10-14 00:00 147.4 '' '' -2023-10-15 00:00 143.8 '' '' -2023-10-16 00:00 143.1 '' '' -2023-10-17 00:00 136.4 '' '' -2023-10-18 00:00 134.3 '' '' -2023-10-19 00:00 127.7 '' '' -2023-10-20 00:00 124.6 '' '' -2023-10-21 00:00 121.4 '' '' -2023-10-22 00:00 117.6 '' '' -2023-10-23 00:00 120.8 '' '' -2023-10-24 00:00 119.8 '' '' -2023-10-25 00:00 124.4 '' '' -2023-10-26 00:00 124.9 '' '' -2023-10-27 00:00 125.9 '' '' -2023-10-28 00:00 126.3 '' '' -2023-10-29 00:00 133.3 '' '' -2023-10-30 00:00 137.7 '' '' -2023-10-31 00:00 145.1 '' '' -2023-11-01 00:00 156.2 '' '' -2023-11-02 00:00 155.9 '' '' -2023-11-03 00:00 153.6 '' '' -2023-11-04 00:00 152.7 '' '' -2023-11-05 00:00 152.2 '' '' -2023-11-06 00:00 143.6 '' '' -2023-11-07 00:00 142.5 '' '' -2023-11-08 00:00 143.1 '' '' -2023-11-09 00:00 136.1 '' '' -2023-11-10 00:00 141.1 '' '' -2023-11-11 00:00 138.7 '' '' -2023-11-12 00:00 134.4 '' '' -2023-11-13 00:00 130.0 '' '' -2023-11-14 00:00 121.2 '' '' -2023-11-15 00:00 116.4 '' '' -2023-11-16 00:00 115.3 '' '' -2023-11-17 00:00 116.9 '' '' -2023-11-18 00:00 124.2 '' '' -2023-11-19 00:00 136.8 '' '' -2023-11-20 00:00 152.8 '' '' -2023-11-21 00:00 167.3 '' '' -2023-11-22 00:00 184.8 '' '' -2023-11-23 00:00 189.3 '' '' -2023-11-24 00:00 173.5 '' '' -2023-11-25 00:00 171.9 '' '' -2023-11-26 00:00 175.5 '' '' -2023-11-27 00:00 182.3 '' '' -2023-11-28 00:00 247.8 '' '' -2023-11-29 00:00 166.0 '' '' -2023-11-30 00:00 162.0 '' '' -2023-12-01 00:00 157.6 '' '' -2023-12-02 00:00 144.0 '' '' -2023-12-03 00:00 135.2 '' '' -2023-12-04 00:00 133.9 '' '' -2023-12-05 00:00 137.5 '' '' -2023-12-06 00:00 126.1 '' '' -2023-12-07 00:00 130.6 '' '' -2023-12-08 00:00 128.6 '' '' -2023-12-09 00:00 124.1 '' '' -2023-12-10 00:00 122.8 '' '' -2023-12-11 00:00 122.1 '' '' -2023-12-12 00:00 122.3 '' '' -2023-12-13 00:00 130.7 '' '' -2023-12-14 00:00 150.3 '' '' -2023-12-15 00:00 139.8 '' '' -2023-12-16 00:00 144.3 '' '' -2023-12-17 00:00 149.7 '' '' -2023-12-18 00:00 156.3 '' '' -2023-12-19 00:00 173.5 '' '' -2023-12-20 00:00 189.1 '' '' -2023-12-21 00:00 187.4 '' '' -2023-12-22 00:00 180.7 '' '' -2023-12-23 00:00 168.6 '' '' -2023-12-24 00:00 177.4 '' '' -2023-12-25 00:00 161.3 '' '' -2023-12-26 00:00 149.1 '' '' -2023-12-27 00:00 144.5 '' '' -2023-12-28 00:00 141.8 '' '' -2023-12-29 00:00 138.2 '' '' -2023-12-30 00:00 135.1 '' '' -2023-12-31 00:00 141.4 '' '' -2024-01-01 00:00 131.2 '' '' -2024-01-02 00:00 137.4 '' '' -2024-01-03 00:00 135.5 '' '' -2024-01-04 00:00 121.6 '' '' -2024-01-05 00:00 147.6 '' '' -2024-01-06 00:00 154.1 '' '' -2024-01-07 00:00 161.6 '' '' -2024-01-08 00:00 170.4 '' '' -2024-01-09 00:00 170.1 '' '' -2024-01-10 00:00 179.9 '' '' -2024-01-11 00:00 186.2 '' '' -2024-01-12 00:00 180.3 '' '' -2024-01-13 00:00 179.4 '' '' -2024-01-14 00:00 181.7 '' '' -2024-01-15 00:00 176.6 '' '' -2024-01-16 00:00 173.8 '' '' -2024-01-17 00:00 168.5 '' '' -2024-01-18 00:00 157.1 '' '' -2024-01-19 00:00 152.4 '' '' -2024-01-20 00:00 161.0 '' '' -2024-01-21 00:00 172.9 '' '' -2024-01-22 00:00 189.9 '' '' -2024-01-23 00:00 174.7 '' '' -2024-01-24 00:00 166.6 '' '' -2024-01-25 00:00 155.6 '' '' -2024-01-26 00:00 151.9 '' '' -2024-01-27 00:00 143.6 '' '' -2024-01-28 00:00 136.8 '' '' -2024-01-29 00:00 136.1 '' '' -2024-01-30 00:00 131.0 '' '' -2024-01-31 00:00 132.2 '' '' -2024-02-01 00:00 132.9 '' '' -2024-02-02 00:00 138.5 '' '' -2024-02-03 00:00 152.0 '' '' -2024-02-04 00:00 165.6 '' '' -2024-02-05 00:00 168.6 '' '' -2024-02-06 00:00 185.1 '' '' -2024-02-07 00:00 183.3 '' '' -2024-02-08 00:00 180.0 '' '' -2024-02-09 00:00 178.6 '' '' -2024-02-10 00:00 188.7 '' '' -2024-02-11 00:00 175.7 '' '' -2024-02-12 00:00 203.0 '' '' -2024-02-13 00:00 189.9 '' '' -2024-02-14 00:00 179.5 '' '' -2024-02-15 00:00 173.9 '' '' -2024-02-16 00:00 164.8 '' '' -2024-02-17 00:00 165.9 '' '' -2024-02-18 00:00 152.9 '' '' -2024-02-19 00:00 148.6 '' '' -2024-02-20 00:00 149.2 '' '' -2024-02-21 00:00 166.2 '' '' -2024-02-22 00:00 169.6 '' '' -2024-02-23 00:00 169.2 '' '' -2024-02-24 00:00 175.5 '' '' -2024-02-25 00:00 177.1 '' '' -2024-02-26 00:00 168.3 '' '' -2024-02-27 00:00 165.1 '' '' -2024-02-28 00:00 175.7 '' '' -2024-02-29 00:00 161.1 '' '' -2024-03-01 00:00 150.1 '' '' -2024-03-02 00:00 149.7 '' '' -2024-03-03 00:00 143.1 '' '' -2024-03-04 00:00 137.6 '' '' -2024-03-05 00:00 139.2 '' '' -2024-03-06 00:00 133.9 '' '' -2024-03-07 00:00 134.5 '' '' -2024-03-08 00:00 127.2 '' '' -2024-03-09 00:00 132.6 '' '' -2024-03-10 00:00 125.3 '' '' -2024-03-11 00:00 125.1 '' '' -2024-03-12 00:00 128.9 '' '' -2024-03-13 00:00 126.8 '' '' -2024-03-14 00:00 125.7 '' '' -2024-03-15 00:00 127.7 '' '' -2024-03-16 00:00 142.6 '' '' -2024-03-17 00:00 149.8 '' '' -2024-03-18 00:00 175.8 '' '' -2024-03-19 00:00 167.5 '' '' -2024-03-20 00:00 174.1 '' '' -2024-03-21 00:00 195.5 '' '' -2024-03-22 00:00 196.2 '' '' -2024-03-23 00:00 209.3 '' '' -2024-03-24 00:00 194.0 '' '' -2024-03-25 00:00 189.1 '' '' -2024-03-26 00:00 177.4 '' '' -2024-03-27 00:00 173.9 '' '' -2024-03-28 00:00 172.1 '' '' -2024-03-29 00:00 166.8 '' '' -2024-03-30 00:00 139.3 '' '' -2024-03-31 00:00 133.4 '' '' -2024-04-01 00:00 120.3 '' '' -2024-04-02 00:00 112.7 '' '' -2024-04-03 00:00 111.7 '' '' -2024-04-04 00:00 113.8 '' '' -2024-04-05 00:00 120.6 '' '' -2024-04-06 00:00 123.1 '' '' -2024-04-07 00:00 124.9 '' '' -2024-04-08 00:00 125.2 '' '' -2024-04-09 00:00 124.8 '' '' -2024-04-10 00:00 131.8 '' '' -2024-04-11 00:00 144.4 '' '' -2024-04-12 00:00 152.3 '' '' -2024-04-13 00:00 161.9 '' '' -2024-04-14 00:00 179.5 '' '' -2024-04-15 00:00 193.2 '' '' -2024-04-16 00:00 200.2 '' '' -2024-04-17 00:00 218.2 '' '' -2024-04-18 00:00 228.8 '' '' -2024-04-19 00:00 215.4 '' '' -2024-04-20 00:00 211.6 '' '' -2024-04-21 00:00 219.4 '' '' -2024-04-22 00:00 229.2 '' '' -2024-04-23 00:00 221.6 '' '' -2024-04-24 00:00 201.4 '' '' -2024-04-25 00:00 168.8 '' '' -2024-04-26 00:00 154.6 '' '' -2024-04-27 00:00 154.6 '' '' -2024-04-28 00:00 142.0 '' '' -2024-04-29 00:00 139.5 '' '' -2024-04-30 00:00 132.1 '' '' -2024-05-01 00:00 136.9 '' '' -2024-05-02 00:00 144.1 '' '' -2024-05-03 00:00 158.6 '' '' -2024-05-04 00:00 169.5 '' '' -2024-05-05 00:00 180.0 '' '' -2024-05-06 00:00 174.3 '' '' -2024-05-07 00:00 207.4 '' '' -2024-05-08 00:00 231.4 '' '' -2024-05-09 00:00 237.7 '' '' -2024-05-10 00:00 227.9 '' '' -2024-05-11 00:00 218.0 '' '' -2024-05-12 00:00 226.4 '' '' -2024-05-13 00:00 220.0 '' '' -2024-05-14 00:00 224.6 '' '' -2024-05-15 00:00 220.8 '' '' -2024-05-16 00:00 211.9 '' '' -2024-05-17 00:00 208.7 '' '' -2024-05-18 00:00 198.8 '' '' -2024-05-19 00:00 205.5 '' '' -2024-05-20 00:00 204.5 '' '' -2024-05-21 00:00 195.4 '' '' -2024-05-22 00:00 200.6 '' '' -2024-05-23 00:00 180.7 '' '' -2024-05-24 00:00 167.0 '' '' -2024-05-25 00:00 156.4 '' '' -2024-05-26 00:00 159.7 '' '' -2024-05-27 00:00 174.6 '' '' -2024-05-28 00:00 170.9 '' '' -2024-05-29 00:00 175.2 '' '' -2024-05-30 00:00 177.7 '' '' -2024-05-31 00:00 184.5 '' '' -2024-06-01 00:00 233.3 '' '' -2024-06-02 00:00 185.0 '' '' -2024-06-03 00:00 191.4 '' '' -2024-06-04 00:00 198.0 '' '' -2024-06-05 00:00 201.1 '' '' -2024-06-06 00:00 196.7 '' '' -2024-06-07 00:00 190.0 '' '' -2024-06-08 00:00 196.2 '' '' -2024-06-09 00:00 186.4 '' '' -2024-06-10 00:00 183.3 '' '' -2024-06-11 00:00 170.1 '' '' -2024-06-12 00:00 170.0 '' '' -2024-06-13 00:00 175.5 '' '' -2024-06-14 00:00 174.3 '' '' -2024-06-15 00:00 176.1 '' '' -2024-06-16 00:00 172.6 '' '' -2024-06-17 00:00 185.7 '' '' -2024-06-18 00:00 199.0 '' '' -2024-06-19 00:00 202.3 '' '' -2024-06-20 00:00 210.0 '' '' -2024-06-21 00:00 203.3 '' '' -2024-06-22 00:00 202.1 '' '' -2024-06-23 00:00 202.2 '' '' -2024-06-24 00:00 205.3 '' '' diff --git a/srcData/hwm071308e.dat b/srcData/hwm071308e.dat deleted file mode 100644 index 9b67673a..00000000 Binary files a/srcData/hwm071308e.dat and /dev/null differ diff --git a/srcData/idl_input.1d b/srcData/idl_input.1d deleted file mode 100644 index f9e48a15..00000000 --- a/srcData/idl_input.1d +++ /dev/null @@ -1,32 +0,0 @@ -.r thermo_plotsat -1DALL -15 -n -120.0 -350.0 -y -y - - - - - - -$mv test.ps v15.1d.ps - -.r thermo_plotsat -1DALL -25 -n -120.0 -350.0 -y -y - - - - - - - -$mv test.ps v25.1d.ps diff --git a/srcData/idl_input.3d b/srcData/idl_input.3d deleted file mode 100644 index d2843267..00000000 --- a/srcData/idl_input.3d +++ /dev/null @@ -1,15 +0,0 @@ -.r thermo_plotter -3DALL*bin -0 -3d.ps -15 -34 --1 -1 -37 --1 -1 -1 -80.0 -1 -0 diff --git a/srcData/idl_input_for_test b/srcData/idl_input_for_test deleted file mode 100644 index fad49588..00000000 --- a/srcData/idl_input_for_test +++ /dev/null @@ -1,37 +0,0 @@ -.r thermo_mksave - -.r thermo_batch -t021221_000500.3DALL.save -4 -n -temp_high.ps -1 -51 -0.0 -0.0 -y --1 - -.r thermo_batch -t021221_000500.3DALL.save -4 -n -temp_low.ps -1 -10 -0.0 -0.0 -y --1 - -.r thermo_batch -t021221_000500.3DALL.save -19 -y -e.ps -2 -11 -0.0 -0.0 -n - diff --git a/srcData/log00000002.3d.dat b/srcData/log00000002.3d.dat deleted file mode 100644 index dfa9b8d0..00000000 --- a/srcData/log00000002.3d.dat +++ /dev/null @@ -1,89 +0,0 @@ -GITM2 log file -## Inputs from UAM.in -# Resart= F -# Eddy coef: 300.000 Eddy P0: 0.005 Eddy P1: 0.001 -# Statistical Models Only: F Apex: T -# EUV Data: F -# AMIE: none -none -# Solar Heating: T Joule Heating: T Auroral Heating: T -# NO Cooling: T O Cooling: T -# Conduction: T Turbulent Conduction: T -# Pressure Grad: T Ion Drag: T Neutral Drag: T -# Viscosity: T Coriolis: T Gravity: T -# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T - -#START - iStep yyyy mm dd hh mm ss ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs SubsolarLon SubsolarLat SubsolarVTEC - 2 2002 12 21 0 0 4 239 4.2391 157.61759 1265.15125 962.69825 -0.54583 0.47077 -0.08025 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.14128 -0.40992 46.26901 - 3 2002 12 21 0 0 8 433 4.1946 157.64879 1264.86128 962.73170 -1.05749 0.95777 -0.15670 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.14098 -0.40992 46.10213 - 4 2002 12 21 0 0 12 633 4.2001 157.65464 1264.56352 962.77870 -1.51635 1.37759 -0.23110 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.14067 -0.40992 46.00428 - 5 2002 12 21 0 0 16 839 4.2057 157.64720 1264.26434 962.83420 -1.88595 1.75569 -0.30417 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.14037 -0.40992 45.92066 - 6 2002 12 21 0 0 21 49 4.2104 157.62967 1263.96883 962.89548 -2.14888 2.10135 -0.37577 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.14006 -0.40992 45.84060 - 7 2002 12 21 0 0 25 264 4.2143 157.62811 1263.68051 962.96108 -2.41976 2.46118 -0.44556 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13976 -0.40992 45.76407 - 8 2002 12 21 0 0 29 481 4.2172 157.64135 1263.40128 963.02996 -2.73299 2.75497 -0.51330 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13945 -0.40992 45.68768 - 9 2002 12 21 0 0 33 699 4.2185 157.66332 1263.13175 963.10141 -3.14815 2.95580 -0.57880 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13914 -0.40992 45.61406 - 10 2002 12 21 0 0 37 917 4.2179 157.66799 1262.87211 963.17492 -3.55712 3.05287 -0.64202 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13884 -0.40992 45.54047 - 11 2002 12 21 0 0 42 136 4.2184 157.66638 1262.62191 963.25019 -3.94947 3.10675 -0.70295 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13853 -0.40992 45.46957 - 12 2002 12 21 0 0 46 352 4.2166 157.67057 1262.38111 963.32689 -4.37341 3.24172 -0.76146 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13822 -0.40992 45.39874 - 13 2002 12 21 0 0 50 565 4.2125 157.68733 1262.14954 963.40477 -4.80849 3.26339 -0.81750 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13792 -0.40992 45.33043 - 14 2002 12 21 0 0 54 773 4.2078 157.70514 1261.92691 963.48359 -5.23208 3.30594 -0.87118 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13761 -0.40992 45.26214 - 15 2002 12 21 0 0 58 976 4.2032 157.70862 1261.71306 963.56323 -5.63308 3.34682 -0.92250 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13730 -0.40992 45.19634 - 16 2002 12 21 0 1 3 175 4.1988 157.70480 1261.50797 963.64356 -6.00325 3.41648 -0.97149 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13700 -0.40992 45.13048 - 17 2002 12 21 0 1 7 369 4.1942 157.70110 1261.31167 963.72456 -6.33900 3.52752 -1.01805 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13669 -0.40992 45.06717 - 18 2002 12 21 0 1 11 558 4.1895 157.70218 1261.12427 963.80604 -6.83277 3.56271 -1.06228 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13639 -0.40992 45.00377 - 19 2002 12 21 0 1 15 743 4.1844 157.70793 1260.94588 963.88789 -7.34149 3.74035 -1.10406 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13608 -0.40992 44.94244 - 20 2002 12 21 0 1 19 923 4.1798 157.70750 1260.77648 963.97001 -7.83083 3.78617 -1.14347 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13578 -0.40992 44.88076 - 21 2002 12 21 0 1 24 99 4.1760 157.69851 1260.61616 964.05235 -8.30544 3.81220 -1.18049 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13548 -0.40992 44.82104 - 22 2002 12 21 0 1 28 271 4.1728 157.68715 1260.60786 964.13482 -8.87334 4.13868 -1.21514 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13517 -0.40992 44.76108 - 23 2002 12 21 0 1 32 442 4.1701 157.68100 1260.71702 964.21738 -9.43610 4.54572 -1.24737 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13487 -0.40992 44.70299 - 24 2002 12 21 0 1 36 609 4.1680 157.68047 1260.82829 964.29992 -9.98019 4.95670 -1.27721 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13457 -0.40992 44.64459 - 25 2002 12 21 0 1 40 776 4.1663 157.67967 1260.93749 964.38240 -10.49868 5.39330 -1.30468 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13426 -0.40992 44.58797 - 26 2002 12 21 0 1 44 941 4.1653 157.67161 1261.04845 964.46472 -10.98852 5.85844 -1.32974 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13396 -0.40992 44.53100 - 27 2002 12 21 0 1 49 106 4.1652 157.65711 1261.15801 964.54685 -11.50895 6.33097 -1.35247 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13366 -0.40992 44.47572 - 28 2002 12 21 0 1 53 272 4.1655 157.64624 1261.26735 964.62871 -12.05774 6.80794 -1.37284 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13336 -0.40992 44.42003 - 29 2002 12 21 0 1 57 438 4.1659 157.64340 1261.37871 964.71023 -12.57104 7.28584 -1.39076 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13305 -0.40992 44.36599 - 30 2002 12 21 0 2 1 604 4.1664 157.64155 1261.53198 964.79134 -13.09038 7.76272 -1.40635 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13275 -0.40992 44.31150 - 31 2002 12 21 0 2 5 772 4.1673 157.63453 1261.68411 964.87201 -13.66319 8.28860 -1.41957 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13245 -0.40992 44.25881 - 32 2002 12 21 0 2 9 940 4.1687 157.62505 1261.84255 964.95216 -14.25460 8.82793 -1.43062 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13214 -0.40992 44.20637 - 33 2002 12 21 0 2 14 110 4.1702 157.61936 1262.00044 965.03173 -14.81618 9.36910 -1.43935 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13184 -0.40992 44.15528 - 34 2002 12 21 0 2 18 282 4.1718 157.61851 1262.16165 965.11065 -15.34232 9.91005 -1.44581 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13154 -0.40992 44.10358 - 35 2002 12 21 0 2 22 456 4.1734 157.61826 1262.32803 965.18886 -15.83281 10.45203 -1.44998 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13123 -0.40992 44.05322 - 36 2002 12 21 0 2 26 631 4.1750 157.61635 1262.48764 965.26629 -16.36950 11.05199 -1.45201 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13093 -0.40992 44.00225 - 37 2002 12 21 0 2 30 807 4.1766 157.61247 1262.64562 965.34292 -17.05739 11.65785 -1.45180 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13063 -0.40992 43.95265 - 38 2002 12 21 0 2 34 985 4.1781 157.61047 1262.80712 965.41865 -17.72173 12.26669 -1.44949 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13032 -0.40992 43.90244 - 39 2002 12 21 0 2 39 165 4.1794 157.61158 1262.96919 965.49346 -18.34697 12.87207 -1.44522 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.13002 -0.40992 43.85364 - 40 2002 12 21 0 2 43 345 4.1806 157.61526 1263.13347 965.56731 -18.92463 13.50678 -1.43883 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12971 -0.40992 43.80423 - 41 2002 12 21 0 2 47 527 4.1816 157.61773 1263.29546 965.64014 -19.52470 14.17637 -1.43046 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12941 -0.40992 43.75623 - 42 2002 12 21 0 2 51 710 4.1826 157.61738 1263.46116 965.71189 -20.24571 14.84675 -1.42033 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12911 -0.40992 43.70762 - 43 2002 12 21 0 2 55 893 4.1837 157.61800 1263.61868 965.78255 -20.93483 15.51434 -1.40839 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12880 -0.40992 43.66041 - 44 2002 12 21 0 3 0 78 4.1848 157.62065 1263.77883 965.85207 -21.57501 16.24132 -1.39469 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12850 -0.40992 43.61259 - 45 2002 12 21 0 3 4 264 4.1859 157.62353 1263.94436 965.92044 -22.16414 16.97212 -1.37939 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12819 -0.40992 43.56617 - 46 2002 12 21 0 3 8 451 4.1869 157.62465 1264.10364 965.98761 -22.93001 17.70076 -1.36250 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12789 -0.40992 43.51914 - 47 2002 12 21 0 3 12 639 4.1875 157.62437 1264.25537 966.05356 -23.67610 18.42264 -1.34398 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12758 -0.40992 43.47351 - 48 2002 12 21 0 3 16 826 4.1879 157.62623 1264.40092 966.11823 -24.37806 19.13435 -1.32408 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12728 -0.40992 43.42742 - 49 2002 12 21 0 3 21 15 4.1882 157.63124 1264.54719 966.18162 -25.02721 19.83260 -1.30282 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12697 -0.40992 43.38264 - 50 2002 12 21 0 3 25 203 4.1883 157.63566 1264.69015 966.24371 -25.62163 20.51414 -1.28034 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12667 -0.40992 43.33730 - 51 2002 12 21 0 3 29 391 4.1883 157.63688 1264.82708 966.30450 -26.40924 21.25203 -1.25665 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12637 -0.40992 43.29325 - 52 2002 12 21 0 3 33 580 4.1884 157.63578 1264.95780 966.36400 -27.18944 22.00066 -1.23177 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12606 -0.40992 43.24863 - 53 2002 12 21 0 3 37 768 4.1885 157.63552 1265.08203 966.42225 -27.91962 22.75160 -1.20587 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12576 -0.40992 43.20530 - 54 2002 12 21 0 3 41 957 4.1887 157.63675 1265.19705 966.47929 -28.59070 23.54015 -1.17883 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12545 -0.40992 43.16136 - 55 2002 12 21 0 3 46 146 4.1890 157.63758 1265.30384 966.53523 -29.31800 24.32287 -1.15087 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12515 -0.40992 43.11872 - 56 2002 12 21 0 3 50 335 4.1891 157.63637 1265.40184 966.59014 -30.17013 25.09568 -1.12198 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12484 -0.40992 43.07546 - 57 2002 12 21 0 3 54 524 4.1890 157.63398 1265.49187 966.64418 -30.97880 25.85401 -1.09228 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12454 -0.40992 43.03349 - 58 2002 12 21 0 3 58 713 4.1887 157.63126 1265.56878 966.69752 -31.72896 26.59387 -1.06160 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12423 -0.40992 42.99089 - 59 2002 12 21 0 4 2 901 4.1881 157.62941 1265.63207 966.75040 -32.41500 27.31377 -1.03007 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12393 -0.40992 42.94956 - 60 2002 12 21 0 4 7 88 4.1875 157.62797 1265.68416 966.80308 -33.20915 28.01095 -0.99756 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12362 -0.40992 42.90731 - 61 2002 12 21 0 4 11 276 4.1872 157.62672 1265.72231 966.85593 -34.10935 28.85226 -0.96415 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12332 -0.40992 42.86559 - 62 2002 12 21 0 4 15 462 4.1868 157.62511 1265.74689 966.90934 -34.95822 29.70152 -0.92973 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12301 -0.40992 42.82343 - 63 2002 12 21 0 4 19 649 4.1865 157.62230 1266.19420 966.96379 -35.73901 30.54215 -0.89436 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12271 -0.40992 42.78249 - 64 2002 12 21 0 4 23 835 4.1863 157.61814 1267.43161 967.01982 -36.45532 31.37311 -0.85809 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12241 -0.40992 42.74111 - 65 2002 12 21 0 4 28 21 4.1860 157.61421 1269.35412 967.07802 -37.44655 32.19180 -0.82053 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12210 -0.40992 42.70097 - 66 2002 12 21 0 4 32 207 4.1856 157.61076 1271.08273 967.13906 -38.39180 32.99377 -0.78174 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12180 -0.40992 42.66030 - 67 2002 12 21 0 4 36 392 4.1851 157.60723 1272.45886 967.20368 -39.27390 33.77439 -0.74146 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12149 -0.40992 42.62084 - 68 2002 12 21 0 4 40 577 4.1845 157.60333 1273.43259 967.27264 -40.08147 34.61456 -0.69960 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12119 -0.40992 42.58077 - 69 2002 12 21 0 4 44 760 4.1839 157.60039 1274.77154 967.34676 -40.87190 35.49370 -0.65607 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12088 -0.40992 42.54185 - 70 2002 12 21 0 4 48 944 4.1832 157.59872 1276.34059 967.42687 -41.92433 36.35589 -0.61069 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12058 -0.40992 42.50238 - 71 2002 12 21 0 4 53 126 4.1828 157.59707 1277.50279 967.51380 -42.92408 37.20459 -0.56327 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.12028 -0.40992 42.46407 - 72 2002 12 21 0 4 57 309 4.1825 157.59490 1278.20638 967.60837 -43.85183 38.03709 -0.51369 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.11997 -0.40992 42.42497 - 73 2002 12 21 0 5 0 0 2.6907 157.59455 1278.75614 967.67010 -44.36093 38.56320 -0.47958 150.0 150.0 0.0 -2.0 400.0 1.0 1.2 0.8 3.11978 -0.40992 42.40060 diff --git a/srcData/log00000002.dat b/srcData/log00000002.dat deleted file mode 100644 index 4e6b8d73..00000000 --- a/srcData/log00000002.dat +++ /dev/null @@ -1,113 +0,0 @@ -GITM2 log file -iStep time dt Tmin Tmax Tave Wmin Wmax Wave - 2 3.77421 3.77421 160.72829 1313.35282 806.03917 -175.25699 9.71264 -12.28882 - 3 6.64364 2.86943 160.79924 1313.32010 806.10414 -200.88978 11.70425 -12.39465 - 4 9.68309 3.03945 160.73395 1313.40548 806.15971 -222.14115 15.53695 -13.72416 - 5 12.70415 3.02105 160.62717 1313.46982 806.20544 -236.04206 18.86065 -14.42188 - 6 15.74266 3.03851 160.56928 1313.52511 806.24406 -242.69564 21.92860 -14.99801 - 7 18.73798 2.99532 160.54745 1313.56606 806.27801 -244.53877 24.56544 -15.30955 - 8 21.69871 2.96073 160.49230 1313.60256 806.30808 -246.10836 27.05542 -15.54234 - 9 24.62819 2.92947 160.42960 1313.63778 806.33472 -245.56400 29.41310 -15.72415 - 10 27.52935 2.90116 160.38103 1313.68220 806.35883 -243.82249 31.52073 -15.87283 - 11 30.40712 2.87777 160.35112 1313.71170 806.38143 -241.17769 33.40010 -16.00575 - 12 33.26479 2.85767 160.30401 1313.73797 806.40254 -238.16098 35.37628 -16.12738 - 13 36.10482 2.84003 160.24746 1313.79613 806.42236 -235.08738 37.93568 -16.24042 - 14 38.92973 2.82492 160.20535 1313.87553 806.44166 -232.06146 40.35355 -16.34880 - 15 41.74137 2.81164 160.18776 1313.96036 806.46126 -229.60507 42.60612 -16.45432 - 16 44.54185 2.80048 160.16200 1314.04744 806.48116 -227.33407 44.67842 -16.55954 - 17 47.33150 2.78965 160.15669 1314.13644 806.50154 -225.10794 46.55459 -16.66123 - 18 50.11158 2.78008 160.15405 1314.22772 806.52271 -222.93375 48.22009 -16.76191 - 19 52.88258 2.77100 160.14685 1314.32179 806.54472 -220.76967 50.36365 -16.86016 - 20 55.64500 2.76242 160.13060 1314.41912 806.56758 -218.56630 52.43899 -16.95577 - 21 58.39910 2.75410 160.11433 1314.52015 806.59153 -217.00294 54.41546 -17.04836 - 22 61.14509 2.74599 160.10396 1314.62587 806.61660 -215.36764 56.26575 -17.13798 - 23 63.88336 2.73827 160.09380 1314.73652 806.64276 -213.63891 57.96256 -17.22528 - 24 66.61465 2.73129 160.06444 1314.85236 806.66997 -211.80860 59.46623 -17.31162 - 25 69.33988 2.72523 160.03310 1314.97248 806.69823 -209.87723 60.75115 -17.39828 - 26 72.05949 2.71961 159.99673 1315.09621 806.72745 -207.85721 61.79250 -17.48467 - 27 74.77404 2.71455 159.96171 1315.22339 806.75748 -205.76676 62.89264 -17.57114 - 28 77.48418 2.71014 159.93481 1315.35395 806.78829 -204.65160 64.49791 -17.65826 - 29 80.19006 2.70588 159.91076 1315.48955 806.81983 -204.07358 66.01897 -17.74502 - 30 82.89176 2.70171 159.88307 1315.63251 806.85203 -203.73777 67.41691 -17.83095 - 31 85.58971 2.69794 159.85257 1315.77607 806.88489 -203.75305 68.65289 -17.91682 - 32 88.28439 2.69468 159.82461 1315.92022 806.91838 -204.26567 69.67344 -18.00292 - 33 90.97582 2.69143 159.79268 1316.06490 806.95261 -205.03405 70.44492 -18.08808 - 34 93.66392 2.68810 159.75572 1316.20993 806.98754 -205.54190 71.08962 -18.17192 - 35 96.34873 2.68481 159.71898 1316.35507 807.02306 -205.62520 72.58743 -18.25450 - 36 99.03066 2.68193 159.68597 1316.50010 807.05912 -205.24540 74.02473 -18.33669 - 37 101.71034 2.67968 159.64810 1316.64481 807.09575 -204.55963 75.34582 -18.41933 - 38 104.38797 2.67763 159.60311 1316.78908 807.13291 -204.19444 76.48860 -18.50170 - 39 107.06350 2.67553 159.56172 1316.93281 807.17051 -203.61223 77.41031 -18.58288 - 40 109.73678 2.67328 159.52396 1317.07667 807.20841 -202.67709 78.18960 -18.66240 - 41 112.40800 2.67122 159.48227 1317.22027 807.24653 -201.44038 79.29746 -18.74100 - 42 115.07768 2.66968 159.43225 1317.36332 807.28480 -199.91880 80.78297 -18.81961 - 43 117.74597 2.66829 159.38258 1317.50630 807.32323 -198.08033 82.16550 -18.89752 - 44 120.41281 2.66683 159.34057 1317.64972 807.36184 -196.23996 83.37943 -18.97411 - 45 123.07790 2.66509 159.30519 1317.79420 807.40053 -195.06689 84.62725 -19.04867 - 46 125.74128 2.66338 159.26773 1317.94077 807.43923 -193.88402 85.73380 -19.12185 - 47 128.40325 2.66197 159.22772 1318.08979 807.47789 -193.52283 86.59160 -19.19447 - 48 131.06413 2.66089 159.18830 1318.24382 807.51654 -193.32349 87.15960 -19.26680 - 49 133.72401 2.65988 159.15502 1318.40212 807.55514 -193.12653 88.07985 -19.33820 - 50 136.38281 2.65880 159.13120 1318.56229 807.59371 -192.94670 89.55117 -19.40824 - 51 139.04043 2.65761 159.11172 1318.72767 807.63217 -192.73608 90.92779 -19.47672 - 52 141.69699 2.65656 159.08787 1318.90209 807.67050 -192.46002 92.14681 -19.54419 - 53 144.35271 2.65571 159.05985 1319.08442 807.70871 -192.12381 93.14583 -19.61088 - 54 147.00783 2.65512 159.03198 1319.27552 807.74682 -191.75097 93.88078 -19.67704 - 55 149.66239 2.65456 159.00742 1319.51126 807.78482 -191.37632 94.30939 -19.74216 - 56 152.31617 2.65378 158.98689 1319.76338 807.82275 -191.10329 95.17559 -19.80553 - 57 154.96905 2.65288 158.96839 1320.04247 807.86057 -190.80604 96.68548 -19.86728 - 58 157.62100 2.65195 158.95069 1320.35753 807.89828 -190.84538 98.09856 -19.92767 - 59 160.27220 2.65119 158.93245 1320.68818 807.93593 -191.02650 99.33171 -19.98723 - 60 162.92284 2.65065 158.91426 1321.03168 807.97353 -191.19518 100.33139 -20.04617 - 61 165.57313 2.65028 158.89719 1321.38833 808.01111 -191.35114 101.05096 -20.10441 - 62 168.22311 2.64998 158.88056 1321.75788 808.04871 -191.49005 101.44585 -20.16162 - 63 170.87264 2.64953 158.86574 1322.14066 808.08637 -191.60256 102.90883 -20.21723 - 64 173.52165 2.64901 158.85177 1322.53669 808.12414 -191.69325 104.55564 -20.27124 - 65 176.17008 2.64843 158.83901 1322.94287 808.16200 -191.77215 106.06697 -20.32366 - 66 178.81799 2.64792 158.82643 1323.36234 808.20003 -191.85267 107.36563 -20.37481 - 67 181.46550 2.64751 158.81177 1323.79659 808.23826 -191.94180 108.40351 -20.42483 - 68 184.11267 2.64717 158.79445 1324.24579 808.27678 -192.03842 109.13281 -20.47374 - 69 186.75960 2.64693 158.77724 1324.70912 808.31556 -192.13675 109.65899 -20.52160 - 70 189.40631 2.64671 158.76465 1325.18687 808.35469 -192.22630 111.52130 -20.56827 - 71 192.05273 2.64642 158.75453 1325.68031 808.39421 -192.29318 113.29773 -20.61344 - 72 194.69885 2.64612 158.74343 1326.19020 808.43414 -192.32734 114.89631 -20.65713 - 73 197.34465 2.64580 158.73259 1326.71367 808.47454 -192.33131 116.25407 -20.69937 - 74 199.99017 2.64552 158.72335 1327.24931 808.51543 -192.30927 117.32139 -20.74026 - 75 202.63539 2.64522 158.71568 1327.79425 808.55688 -192.52391 118.04936 -20.77974 - 76 205.28038 2.64500 158.70833 1328.34885 808.59891 -192.90444 118.92305 -20.81801 - 77 207.92512 2.64474 158.70179 1328.91120 808.64159 -193.26939 120.94071 -20.85477 - 78 210.56967 2.64455 158.69619 1329.47709 808.68493 -193.63272 122.85148 -20.89022 - 79 213.21404 2.64437 158.69046 1330.04295 808.72901 -194.08929 124.54440 -20.92424 - 80 215.85825 2.64422 158.68378 1330.60419 808.77381 -194.53524 125.96934 -20.95688 - 81 218.50231 2.64406 158.67652 1331.19317 808.81941 -194.96839 127.07475 -20.98804 - 82 221.14627 2.64396 158.66989 1331.84442 808.86581 -195.39177 127.81036 -21.01788 - 83 223.79011 2.64384 158.66406 1332.50158 808.91305 -195.80116 129.30240 -21.04620 - 84 226.43386 2.64375 158.65843 1333.15931 808.96117 -196.19680 131.52918 -21.07306 - 85 229.07752 2.64366 158.65246 1333.81040 809.01018 -196.57833 133.59923 -21.09843 - 86 231.72110 2.64358 158.64676 1334.44985 809.06010 -196.94814 135.42021 -21.12237 - 87 234.36462 2.64352 158.64244 1335.08141 809.11093 -197.30922 136.93943 -21.14492 - 88 237.00807 2.64344 158.63938 1335.69399 809.16267 -197.66031 138.10309 -21.16602 - 89 239.65143 2.64336 158.63631 1336.27393 809.21530 -198.00070 138.85930 -21.18568 - 90 242.29471 2.64328 158.63228 1336.80921 809.26886 -198.51817 141.26526 -21.20394 - 91 244.93793 2.64322 158.62802 1337.30776 809.32336 -199.26894 143.73633 -21.22081 - 92 247.58112 2.64319 158.62459 1338.02712 809.37875 -200.00101 145.97378 -21.23639 - 93 250.22432 2.64321 158.62173 1338.72272 809.43500 -200.71529 147.92435 -21.25078 - 94 252.86754 2.64322 158.61900 1339.39409 809.49204 -201.40855 149.53271 -21.26384 - 95 255.51079 2.64325 158.61642 1340.02267 809.54985 -202.08666 150.74302 -21.27564 - 96 258.15402 2.64323 158.61423 1340.58870 809.60836 -202.75052 152.26590 -21.28598 - 97 260.79723 2.64321 158.61209 1341.08867 809.66752 -203.40346 155.09710 -21.29498 - 98 263.44039 2.64316 158.60953 1341.52924 809.72725 -204.04437 157.74941 -21.30258 - 99 266.08354 2.64315 158.60666 1342.21391 809.78750 -204.67652 160.12169 -21.30897 - 100 268.72665 2.64312 158.60362 1342.96813 809.84811 -205.29432 162.15817 -21.31411 - 101 271.36977 2.64312 158.60058 1343.66596 809.90899 -205.89869 163.80073 -21.31817 - 102 274.01292 2.64314 158.59771 1344.29075 809.97000 -206.48939 164.99150 -21.32111 - 103 276.65607 2.64315 158.59519 1344.82503 810.03108 -207.06513 167.50709 -21.32288 - 104 279.29928 2.64320 158.59317 1345.31198 810.09209 -207.63081 170.57042 -21.32365 - 105 281.94253 2.64325 158.59154 1345.85008 810.15290 -208.18425 173.36422 -21.32335 - 106 284.58584 2.64331 158.59005 1346.69437 810.21332 -208.72608 175.82804 -21.32202 - 107 287.22920 2.64337 158.58852 1347.46859 810.27323 -209.25486 177.90215 -21.31970 - 108 289.87264 2.64343 158.58686 1348.15654 810.33251 -209.77272 179.52143 -21.31648 - 109 292.51615 2.64351 158.58498 1348.74989 810.39104 -210.27941 181.19027 -21.31240 - 110 295.15974 2.64359 158.58297 1349.27790 810.44870 -210.77384 184.68293 -21.30750 - 111 297.80342 2.64369 158.58110 1349.74257 810.50537 -211.25554 187.95330 -21.30185 - 112 300.00000 2.19658 158.58195 1349.37015 810.57099 -201.95920 190.39897 -20.12729 diff --git a/srcData/log00000002.dat.noAPEX b/srcData/log00000002.dat.noAPEX deleted file mode 100644 index c2ba97a5..00000000 --- a/srcData/log00000002.dat.noAPEX +++ /dev/null @@ -1,100 +0,0 @@ -GITM2 log file -## Inputs from UAM.in -# Resart= F -# Eddy coef: 1750.000 Eddy P0: 0.000 Eddy P1: 0.000 Eddy Scaling: 1.000 -# Statistical Models Only: F Apex: F -# EUV Data: F -# AMIE: none -none -# Solar Heating: T Joule Heating: T Auroral Heating: T -# NO Cooling: T O Cooling: T -# Conduction: T Turbulent Conduction: T Updated Turbulent Conduction: T -# Pressure Grad: T Ion Drag: T Neutral Drag: T -# Viscosity: T Coriolis: T Gravity: T -# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T - -#START - iStep yyyy mm dd hh mm ss ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs SubsolarLon SubsolarLat SubsolarVTEC - 2 2002 12 21 0 0 3 926 3.9266 160.95326 1258.84526 965.90575 -32.84435 639.60991 1.17685 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.14131 -0.40992 46.05648 - 3 2002 12 21 0 0 7 595 3.6691 160.99383 1258.70437 965.93653 -62.39253 663.96199 2.24539 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.14104 -0.40992 45.87937 - 4 2002 12 21 0 0 11 279 3.6835 161.03054 1258.55466 965.97200 -92.32880 663.17847 3.17819 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.14077 -0.40992 45.87004 - 5 2002 12 21 0 0 14 972 3.6934 161.04684 1258.41431 966.01203 -122.26930 648.63780 4.04348 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.14050 -0.40992 45.89741 - 6 2002 12 21 0 0 18 674 3.7024 161.06759 1258.27661 966.05497 -152.25266 709.95219 4.87526 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.14023 -0.40992 45.93818 - 7 2002 12 21 0 0 22 383 3.7088 161.08701 1258.14114 966.09950 -182.19855 727.08779 5.69637 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13996 -0.40992 45.97972 - 8 2002 12 21 0 0 26 97 3.7136 161.09626 1258.00725 966.14481 -212.08646 726.78389 6.52248 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13969 -0.40992 46.01916 - 9 2002 12 21 0 0 29 814 3.7168 161.10621 1257.87486 966.19080 -241.89594 706.01365 7.35211 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13942 -0.40992 46.05477 - 10 2002 12 21 0 0 33 530 3.7167 161.12705 1257.74656 966.23746 -271.57330 665.21531 8.17956 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13915 -0.40992 46.08635 - 11 2002 12 21 0 0 37 242 3.7114 161.13422 1257.61932 966.28473 -301.09150 681.19904 8.99699 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13888 -0.40992 46.11395 - 12 2002 12 21 0 0 40 952 3.7102 161.15038 1257.49229 966.33268 -330.51014 731.98730 9.79777 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13861 -0.40992 46.13781 - 13 2002 12 21 0 0 44 667 3.7153 161.17115 1257.36483 966.38136 -359.86145 752.06341 10.59260 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13834 -0.40992 46.15823 - 14 2002 12 21 0 0 48 395 3.7279 161.16952 1257.23650 966.43086 -389.21577 740.04630 11.39340 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13807 -0.40992 46.17555 - 15 2002 12 21 0 0 52 116 3.7213 161.18040 1257.10914 966.48082 -418.42345 710.60739 12.19622 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13780 -0.40992 46.18999 - 16 2002 12 21 0 0 55 813 3.6966 161.22471 1256.98276 966.53099 -447.33479 707.95164 12.99439 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13753 -0.40992 46.20177 - 17 2002 12 21 0 0 59 474 3.6613 161.26289 1256.85736 966.58123 -475.78324 759.14019 13.77907 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13727 -0.40992 46.21114 - 18 2002 12 21 0 1 3 118 3.6439 161.29730 1256.73194 966.63182 -504.01118 785.94047 14.55526 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13700 -0.40992 46.21811 - 19 2002 12 21 0 1 6 748 3.6296 161.31079 1256.60717 966.68274 -531.97754 786.29305 15.33249 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13674 -0.40992 46.22307 - 20 2002 12 21 0 1 10 358 3.6106 161.30743 1256.48212 966.73385 -559.57933 765.03776 16.11080 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13648 -0.40992 46.22638 - 21 2002 12 21 0 1 13 991 3.6325 161.30444 1256.35293 966.78595 -586.96633 779.30493 16.89801 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13621 -0.40992 46.22735 - 22 2002 12 21 0 1 17 670 3.6794 161.32439 1256.21948 966.83944 -614.18398 834.25582 17.69475 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13594 -0.40992 46.22660 - 23 2002 12 21 0 1 21 347 3.6772 161.33686 1256.08717 966.89338 -640.93720 864.91956 18.48868 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13568 -0.40992 46.22456 - 24 2002 12 21 0 1 25 4 3.6564 161.33368 1255.95508 966.94762 -667.22181 864.55354 19.28270 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13541 -0.40992 46.22152 - 25 2002 12 21 0 1 28 646 3.6420 161.33979 1255.82167 967.00234 -693.60929 854.81018 20.08352 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13515 -0.40992 46.21770 - 26 2002 12 21 0 1 32 281 3.6353 161.34434 1255.68635 967.05771 -720.22949 887.45156 20.88834 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13488 -0.40992 46.21324 - 27 2002 12 21 0 1 35 904 3.6227 161.34255 1255.54985 967.11358 -746.31334 900.27846 21.69105 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13462 -0.40992 46.20827 - 28 2002 12 21 0 1 39 526 3.6222 161.34573 1255.41104 967.17027 -770.83991 904.99746 22.49603 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13435 -0.40992 46.20290 - 29 2002 12 21 0 1 43 162 3.6363 161.35117 1255.26940 967.22811 -795.02563 904.68094 23.30504 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13409 -0.40992 46.19720 - 30 2002 12 21 0 1 46 782 3.6197 161.35020 1255.12865 967.28648 -818.55817 924.19401 24.12216 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13383 -0.40992 46.19128 - 31 2002 12 21 0 1 50 393 3.6112 161.34572 1254.98617 967.34571 -841.07571 926.31241 24.94519 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13356 -0.40992 46.18521 - 32 2002 12 21 0 1 53 987 3.5942 161.35033 1254.84331 967.40567 -858.48256 931.81971 25.75655 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13330 -0.40992 46.17905 - 33 2002 12 21 0 1 57 572 3.5846 161.35311 1254.89535 967.46658 -878.88929 932.02187 26.55591 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13304 -0.40992 46.17284 - 34 2002 12 21 0 2 1 157 3.5848 161.34655 1255.21842 967.52868 -898.12991 943.08102 27.36484 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13278 -0.40992 46.16662 - 35 2002 12 21 0 2 4 749 3.5919 161.33093 1255.56154 967.59214 -916.40297 950.27987 28.19388 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13252 -0.40992 46.16066 - 36 2002 12 21 0 2 8 356 3.6074 161.31921 1255.92050 967.65717 -933.93400 951.04805 29.02162 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13226 -0.40992 46.15566 - 37 2002 12 21 0 2 11 969 3.6124 161.31270 1256.29245 967.72358 -946.40078 951.00990 29.83984 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13200 -0.40992 46.15050 - 38 2002 12 21 0 2 15 571 3.6023 161.31896 1256.67469 967.79112 -954.40502 956.80213 30.65252 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13173 -0.40992 46.14528 - 39 2002 12 21 0 2 19 166 3.5954 161.33487 1257.06443 967.85991 -958.99237 965.23580 31.46437 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13147 -0.40992 46.14001 - 40 2002 12 21 0 2 22 758 3.5917 161.34035 1257.45987 967.93004 -961.15870 965.36849 32.27532 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13121 -0.40992 46.13478 - 41 2002 12 21 0 2 26 342 3.5839 161.33233 1257.85955 968.00142 -961.73146 965.46273 33.09131 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13095 -0.40992 46.12962 - 42 2002 12 21 0 2 29 924 3.5824 161.30216 1258.26243 968.07419 -961.36232 967.59990 33.89795 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13069 -0.40992 46.12456 - 43 2002 12 21 0 2 33 506 3.5821 161.27517 1258.66849 968.14828 -960.52771 975.48353 34.68664 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13043 -0.40992 46.11963 - 44 2002 12 21 0 2 37 92 3.5860 161.26997 1259.07778 968.22374 -959.54732 975.56128 35.45693 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.13017 -0.40992 46.11486 - 45 2002 12 21 0 2 40 685 3.5924 161.30836 1259.49074 968.30056 -958.62110 975.53644 36.23501 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12991 -0.40992 46.11025 - 46 2002 12 21 0 2 44 281 3.5962 161.34998 1259.90753 968.37862 -958.04638 975.52862 37.02155 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12965 -0.40992 46.10583 - 47 2002 12 21 0 2 47 878 3.5968 161.35857 1260.32783 968.45775 -957.78142 982.63900 37.79058 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12938 -0.40992 46.10160 - 48 2002 12 21 0 2 51 470 3.5922 161.33108 1260.75103 968.53767 -957.74049 982.75837 38.53774 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12912 -0.40992 46.09759 - 49 2002 12 21 0 2 55 55 3.5851 161.30101 1261.17502 968.61819 -957.97076 982.80605 39.26741 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12886 -0.40992 46.09380 - 50 2002 12 21 0 2 58 643 3.5878 161.27722 1261.59855 968.69945 -958.67512 982.80784 39.98979 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12860 -0.40992 46.09022 - 51 2002 12 21 0 3 2 233 3.5898 161.26815 1262.02114 968.78124 -959.68983 987.87964 40.70347 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12834 -0.40992 46.08685 - 52 2002 12 21 0 3 5 823 3.5901 161.30884 1262.44223 968.86333 -960.40180 987.88939 41.40461 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12808 -0.40992 46.08284 - 53 2002 12 21 0 3 9 411 3.5885 161.35539 1262.86046 968.94548 -960.34495 987.90574 42.08834 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12782 -0.40992 46.07794 - 54 2002 12 21 0 3 13 5 3.5934 161.37292 1263.27624 969.02765 -959.29991 991.41052 42.74052 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12756 -0.40992 46.07318 - 55 2002 12 21 0 3 16 606 3.6009 161.35920 1263.71854 969.10965 -956.91391 991.46378 43.36885 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12730 -0.40992 46.06909 - 56 2002 12 21 0 3 20 208 3.6022 161.33638 1264.18262 969.19113 -954.04715 991.46928 43.99328 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12703 -0.40992 46.06566 - 57 2002 12 21 0 3 23 810 3.6023 161.31622 1264.64814 969.27192 -949.98028 991.47762 44.59538 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12677 -0.40992 46.06277 - 58 2002 12 21 0 3 27 407 3.5964 161.30994 1265.11308 969.35164 -945.08846 993.61256 45.15390 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12651 -0.40992 46.06034 - 59 2002 12 21 0 3 31 3 3.5964 161.32707 1265.57711 969.43022 -940.78392 993.72956 45.68074 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12625 -0.40992 46.05828 - 60 2002 12 21 0 3 34 603 3.5998 161.36318 1266.04144 969.50747 -939.75767 994.01916 46.18570 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12599 -0.40992 46.05658 - 61 2002 12 21 0 3 38 206 3.6032 161.39507 1266.50715 969.58316 -928.99960 998.76860 46.66403 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12572 -0.40992 46.05521 - 62 2002 12 21 0 3 41 809 3.6031 161.39393 1266.97511 969.65702 -917.23179 998.76945 47.10030 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12546 -0.40992 46.05414 - 63 2002 12 21 0 3 45 415 3.6061 161.35891 1267.46844 969.72898 -894.99561 998.85681 47.48577 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12520 -0.40992 46.05333 - 64 2002 12 21 0 3 49 28 3.6127 161.31509 1268.03085 969.79892 -854.95012 998.87905 47.82154 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12494 -0.40992 46.05275 - 65 2002 12 21 0 3 52 639 3.6113 161.30556 1268.59510 969.86649 -836.87175 998.88101 48.10916 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12467 -0.40992 46.05240 - 66 2002 12 21 0 3 56 252 3.6129 161.36556 1269.15888 969.93159 -823.45667 998.91929 48.34637 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12441 -0.40992 46.05230 - 67 2002 12 21 0 3 59 863 3.6108 161.45692 1269.71714 969.99396 -812.07277 998.92058 48.54709 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12415 -0.40992 46.05243 - 68 2002 12 21 0 4 3 474 3.6111 161.49047 1270.26504 970.05354 -802.23166 999.11241 48.69371 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12389 -0.40992 46.05279 - 69 2002 12 21 0 4 7 88 3.6144 161.47318 1270.79570 970.11030 -790.26928 999.14780 48.78733 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12362 -0.40992 46.05261 - 70 2002 12 21 0 4 10 704 3.6162 161.39207 1271.34211 970.16413 -765.48810 999.24757 48.85604 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12336 -0.40992 46.05136 - 71 2002 12 21 0 4 14 322 3.6178 161.31858 1271.91385 970.21492 -723.88042 999.24744 48.89948 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12310 -0.40992 46.05039 - 72 2002 12 21 0 4 17 943 3.6208 161.29619 1272.47169 970.26266 -713.76332 999.24698 48.89255 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12283 -0.40992 46.05001 - 73 2002 12 21 0 4 21 563 3.6197 161.34571 1273.00573 970.30722 -701.69839 999.24738 48.83825 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12257 -0.40992 46.05020 - 74 2002 12 21 0 4 25 183 3.6202 161.40956 1273.49845 970.34860 -690.77548 999.36522 48.76760 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12231 -0.40992 46.05089 - 75 2002 12 21 0 4 28 806 3.6229 161.47977 1273.93402 970.38682 -675.92893 999.36499 48.67028 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12204 -0.40992 46.05201 - 76 2002 12 21 0 4 32 429 3.6229 161.47066 1274.43473 970.42186 -646.90581 999.36521 48.52673 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12178 -0.40992 46.05353 - 77 2002 12 21 0 4 36 53 3.6241 161.41762 1274.94690 970.45370 -600.73807 999.28631 48.36440 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12152 -0.40992 46.05540 - 78 2002 12 21 0 4 39 678 3.6253 161.37842 1275.41181 970.48236 -587.92533 999.34331 48.19694 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12125 -0.40992 46.05757 - 79 2002 12 21 0 4 43 305 3.6270 161.36900 1275.80759 970.50783 -575.77287 999.34304 48.02138 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12099 -0.40992 46.06001 - 80 2002 12 21 0 4 46 932 3.6263 161.37673 1276.23271 970.53014 -566.31594 999.34320 47.82105 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12073 -0.40992 46.06268 - 81 2002 12 21 0 4 50 556 3.6240 161.39682 1276.70642 970.54930 -538.01336 999.11215 47.60921 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12046 -0.40992 46.06556 - 82 2002 12 21 0 4 54 178 3.6228 161.41618 1277.12032 970.56523 -463.85576 999.11309 47.40314 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.12020 -0.40992 46.06862 - 83 2002 12 21 0 4 57 802 3.6234 161.41462 1277.45359 970.57790 -452.02639 999.11457 47.18544 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.11994 -0.40992 46.07187 - 84 2002 12 21 0 5 0 0 2.1977 161.41968 1277.87986 970.57915 -443.65426 999.54070 47.05888 150.0 150.0 0.0 -5.0 400.0 1.0 1.0 1.0 3.11978 -0.40992 46.07386 diff --git a/srcData/log00000002.eclipse.dat b/srcData/log00000002.eclipse.dat deleted file mode 100644 index b497bff9..00000000 --- a/srcData/log00000002.eclipse.dat +++ /dev/null @@ -1,17837 +0,0 @@ -GITM2 log file -## Inputs from UAM.in -# Resart= F -# Eddy coef: 300.000 Eddy P0: 0.005 Eddy P1: 0.001 -# Statistical Models Only: F Apex: T -# EUV Data: F -# AMIE: none -none -# Solar Heating: T Joule Heating: T Auroral Heating: T -# NO Cooling: T O Cooling: T -# Conduction: T Turbulent Conduction: T -# Pressure Grad: T Ion Drag: T Neutral Drag: T -# Viscosity: T Coriolis: T Gravity: T -# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T - -#START - iStep yyyy mm dd hh mm ss ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs SubsolarLon SubsolarLat SubsolarVTEC - 2 2017 8 21 0 0 4 896 4.8960 177.13353 905.41275 814.25179 -0.43897 0.59902 -0.08970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14124 0.20274 -1.00000 - 3 2017 8 21 0 0 9 763 4.8679 177.15046 905.00224 814.07975 -0.81918 1.12356 -0.17612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14088 0.20274 -1.00000 - 4 2017 8 21 0 0 14 633 4.8698 177.17161 904.63181 813.92025 -1.13116 1.59687 -0.26552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14053 0.20274 -1.00000 - 5 2017 8 21 0 0 19 506 4.8725 177.20004 904.28401 813.76843 -1.38169 2.04332 -0.35973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14017 0.20274 -1.00000 - 6 2017 8 21 0 0 24 382 4.8764 177.24322 903.95051 813.62243 -1.57635 2.41107 -0.45917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13982 0.20274 -1.00000 - 7 2017 8 21 0 0 29 260 4.8781 177.30174 903.62722 813.48156 -1.73641 2.70276 -0.56303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13946 0.20274 -1.00000 - 8 2017 8 21 0 0 34 134 4.8739 177.36509 903.31231 813.34556 -1.92447 2.95028 -0.67068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13911 0.20273 -1.00000 - 9 2017 8 21 0 0 39 4 4.8701 177.41674 903.00468 813.21416 -2.14793 3.21790 -0.78258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13876 0.20273 -1.00000 - 10 2017 8 21 0 0 43 871 4.8672 177.46207 902.70388 813.08727 -2.34482 3.42156 -0.89838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13840 0.20273 -1.00000 - 11 2017 8 21 0 0 48 737 4.8652 177.51528 902.40974 812.96498 -2.55024 3.54942 -1.01764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13805 0.20273 -1.00000 - 12 2017 8 21 0 0 53 602 4.8649 177.56168 902.12228 812.84725 -2.75508 3.64739 -1.14000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13769 0.20273 -1.00000 - 13 2017 8 21 0 0 58 468 4.8663 177.59079 901.84153 812.73404 -2.93426 3.79136 -1.26530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13734 0.20273 -1.00000 - 14 2017 8 21 0 1 3 337 4.8690 177.60622 901.56743 812.62532 -3.08366 3.89449 -1.39359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13699 0.20273 -1.00000 - 15 2017 8 21 0 1 8 209 4.8721 177.62382 901.29991 812.52114 -3.26847 4.03961 -1.52461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13663 0.20273 -1.00000 - 16 2017 8 21 0 1 13 82 4.8733 177.63207 901.03912 812.42158 -3.43062 4.09684 -1.65722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13628 0.20273 -1.00000 - 17 2017 8 21 0 1 17 949 4.8672 177.62405 900.78568 812.32670 -3.57510 4.29973 -1.79034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13592 0.20273 -1.00000 - 18 2017 8 21 0 1 22 811 4.8611 177.60471 900.53969 812.23635 -3.75353 4.46892 -1.92414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13557 0.20273 -1.00000 - 19 2017 8 21 0 1 27 666 4.8557 177.58792 900.30098 812.15041 -3.90525 4.74192 -2.05814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13522 0.20273 -1.00000 - 20 2017 8 21 0 1 32 517 4.8512 177.57627 900.06913 812.06877 -4.27592 4.91361 -2.19245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13486 0.20273 -1.00000 - 21 2017 8 21 0 1 37 365 4.8479 177.55172 899.84374 811.99131 -4.59623 5.19412 -2.32614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13451 0.20273 -1.00000 - 22 2017 8 21 0 1 42 211 4.8453 177.51253 899.62456 811.91799 -5.08847 5.49969 -2.45893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13416 0.20273 -1.00000 - 23 2017 8 21 0 1 47 54 4.8431 177.47562 899.41145 811.84884 -5.51931 5.86656 -2.59159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13381 0.20273 -1.00000 - 24 2017 8 21 0 1 51 896 4.8418 177.44995 899.20411 811.78380 -6.23236 6.26068 -2.72113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13346 0.20273 -1.00000 - 25 2017 8 21 0 1 56 737 4.8415 177.42351 899.00243 811.72287 -6.53466 6.49076 -2.84927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13310 0.20273 -1.00000 - 26 2017 8 21 0 2 1 579 4.8419 177.38672 898.80588 811.66588 -7.09870 7.05268 -2.97546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13275 0.20273 -1.00000 - 27 2017 8 21 0 2 6 422 4.8427 177.34938 898.61387 811.61282 -7.56366 7.46548 -3.09831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13240 0.20273 -1.00000 - 28 2017 8 21 0 2 11 266 4.8440 177.32499 898.42584 811.56378 -8.35270 8.01150 -3.21998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13205 0.20273 -1.00000 - 29 2017 8 21 0 2 16 112 4.8462 177.31094 898.24126 811.51889 -8.89379 8.57023 -3.33916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13169 0.20273 -1.00000 - 30 2017 8 21 0 2 20 961 4.8489 177.28935 898.05983 811.47812 -9.17078 8.88792 -3.45268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13134 0.20273 -1.00000 - 31 2017 8 21 0 2 25 813 4.8519 177.26332 897.88119 811.44146 -9.98386 9.67228 -3.56430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13099 0.20273 -1.00000 - 32 2017 8 21 0 2 30 668 4.8549 177.24538 897.70454 811.40919 -10.38348 10.25137 -3.67299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13064 0.20273 -1.00000 - 33 2017 8 21 0 2 35 525 4.8576 177.24049 897.52952 811.38132 -11.47102 10.85075 -3.77605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13028 0.20273 -1.00000 - 34 2017 8 21 0 2 40 385 4.8600 177.23842 897.35546 811.35821 -11.93442 11.65324 -3.87606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12993 0.20273 -1.00000 - 35 2017 8 21 0 2 45 248 4.8626 177.23469 897.18178 811.34006 -12.31287 12.13009 -3.97012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12958 0.20273 -1.00000 - 36 2017 8 21 0 2 50 113 4.8654 177.23054 897.00811 811.32708 -13.11159 12.97661 -4.05889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12922 0.20272 -1.00000 - 37 2017 8 21 0 2 54 981 4.8681 177.23026 896.83414 811.31973 -13.66741 13.81425 -4.14549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12887 0.20272 -1.00000 - 38 2017 8 21 0 2 59 851 4.8701 177.23745 896.65935 811.31864 -15.01858 14.28633 -4.22240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12851 0.20272 -1.00000 - 39 2017 8 21 0 3 4 723 4.8715 177.24832 896.48411 811.32447 -15.54609 15.40508 -4.29283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12816 0.20272 -1.00000 - 40 2017 8 21 0 3 9 595 4.8725 177.25992 896.30867 811.33782 -15.68050 16.16332 -4.35639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12780 0.20272 -1.00000 - 41 2017 8 21 0 3 14 469 4.8736 177.27244 896.13351 811.35948 -16.59684 16.82788 -4.41059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12745 0.20272 -1.00000 - 42 2017 8 21 0 3 19 344 4.8746 177.28545 895.95971 811.39047 -17.31938 18.01430 -4.45876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12710 0.20272 -1.00000 - 43 2017 8 21 0 3 24 219 4.8752 177.29710 895.78917 811.43213 -19.08819 18.67829 -4.49730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12674 0.20272 -1.00000 - 44 2017 8 21 0 3 29 94 4.8752 177.30782 895.62465 811.48559 -19.86065 19.61427 -4.52222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12639 0.20272 -1.00000 - 45 2017 8 21 0 3 33 969 4.8746 177.32054 895.46909 811.55247 -19.36762 20.76482 -4.53854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12603 0.20272 -1.00000 - 46 2017 8 21 0 3 38 843 4.8739 177.33560 895.32719 811.63436 -20.66484 21.21170 -4.54349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12568 0.20272 -1.00000 - 47 2017 8 21 0 3 43 716 4.8733 177.34904 895.20474 811.73302 -21.19872 22.58758 -4.53484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12532 0.20272 -1.00000 - 48 2017 8 21 0 3 48 589 4.8728 177.35792 896.24692 811.85033 -23.57914 23.68617 -4.51586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12497 0.20272 -1.00000 - 49 2017 8 21 0 3 53 461 4.8720 177.36470 897.94468 811.98837 -24.89100 24.06467 -4.47858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12461 0.20272 -1.00000 - 50 2017 8 21 0 3 58 331 4.8708 177.37392 899.52816 812.14919 -24.76852 25.66669 -4.42692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12426 0.20272 -1.00000 - 51 2017 8 21 0 4 3 201 4.8691 177.38588 901.08493 812.33442 -25.35544 26.58450 -4.36077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12391 0.20272 -1.00000 - 52 2017 8 21 0 4 8 68 4.8672 177.39612 902.78907 812.54556 -26.23606 27.28428 -4.27571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12355 0.20272 -1.00000 - 53 2017 8 21 0 4 12 933 4.8656 177.40071 904.29742 812.78390 -28.22930 28.89184 -4.17496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12320 0.20272 -1.00000 - 54 2017 8 21 0 4 17 798 4.8644 177.39944 905.51535 813.05047 -30.50065 29.60303 -4.05279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12285 0.20272 -1.00000 - 55 2017 8 21 0 4 22 661 4.8634 177.39614 906.98467 813.34492 -31.23278 30.50633 -3.90847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12249 0.20272 -1.00000 - 56 2017 8 21 0 4 27 524 4.8624 177.39230 908.29725 813.66647 -30.26165 31.98250 -3.74499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12214 0.20272 -1.00000 - 57 2017 8 21 0 4 32 385 4.8613 177.38806 909.23389 814.01343 -32.24167 32.36886 -3.56211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12178 0.20272 -1.00000 - 58 2017 8 21 0 4 37 245 4.8601 177.38670 910.47594 814.38294 -32.52829 33.81163 -3.35541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12143 0.20272 -1.00000 - 59 2017 8 21 0 4 42 104 4.8591 177.38736 911.45187 814.77029 -36.00499 35.14982 -3.13144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12108 0.20272 -1.00000 - 60 2017 8 21 0 4 46 962 4.8580 177.38317 912.19576 815.16998 -38.09658 35.21362 -2.88097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12072 0.20272 -1.00000 - 61 2017 8 21 0 4 51 819 4.8569 177.37367 913.15193 815.57431 -38.20462 36.88479 -2.60676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12037 0.20272 -1.00000 - 62 2017 8 21 0 4 56 675 4.8559 177.36313 913.63745 815.97457 -37.94959 37.97329 -2.31533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12002 0.20272 -1.00000 - 63 2017 8 21 0 5 1 530 4.8553 177.35145 914.46154 816.36103 -39.83447 37.98394 -2.00482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11966 0.20272 -1.00000 - 64 2017 8 21 0 5 6 385 4.8551 177.33399 914.86601 816.72310 -40.27056 39.94097 -1.67973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11931 0.20272 -1.00000 - 65 2017 8 21 0 5 11 241 4.8555 177.31820 915.47622 817.04876 -43.98412 40.81894 -1.34242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11896 0.20271 -1.00000 - 66 2017 8 21 0 5 16 97 4.8563 177.31207 915.78452 817.32602 -45.93139 40.65554 -0.98607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11861 0.20271 -1.00000 - 67 2017 8 21 0 5 20 955 4.8575 177.31011 916.26908 817.54239 -45.47139 42.43806 -0.61500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11825 0.20271 -1.00000 - 68 2017 8 21 0 5 25 813 4.8582 177.30379 916.61214 817.68664 -45.62754 43.09126 -0.24122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11790 0.20271 -1.00000 - 69 2017 8 21 0 5 30 671 4.8583 177.29293 916.93109 817.74913 -47.45545 43.16308 0.13644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11755 0.20271 -1.00000 - 70 2017 8 21 0 5 35 529 4.8580 177.28185 917.25804 817.72186 -47.24919 44.81592 0.50973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11719 0.20271 -1.00000 - 71 2017 8 21 0 5 40 387 4.8579 177.27791 917.61037 817.59931 -51.12436 45.30972 0.87797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11684 0.20271 -1.00000 - 72 2017 8 21 0 5 45 245 4.8578 177.26837 917.95277 817.37880 -53.01203 45.12634 1.24605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11649 0.20271 -1.00000 - 73 2017 8 21 0 5 50 103 4.8581 177.25093 918.28255 817.06014 -52.20620 46.58627 1.61357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11613 0.20271 -1.00000 - 74 2017 8 21 0 5 54 962 4.8592 177.24323 918.30462 816.64751 -51.96721 46.92718 1.96630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11578 0.20271 -1.00000 - 75 2017 8 21 0 5 59 823 4.8610 177.24839 917.90679 816.14862 -53.81785 46.93669 2.30219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11543 0.20271 -1.00000 - 76 2017 8 21 0 6 4 687 4.8633 177.25426 917.07719 815.57426 -52.92670 48.48120 2.61584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11507 0.20271 -1.00000 - 77 2017 8 21 0 6 9 552 4.8652 177.25210 915.81927 814.93867 -55.99450 48.79924 2.91167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11472 0.20271 -1.00000 - 78 2017 8 21 0 6 14 418 4.8663 177.25038 914.15385 814.25878 -58.04923 48.09639 3.19644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11436 0.20271 -1.00000 - 79 2017 8 21 0 6 19 284 4.8661 177.25481 912.11656 813.55276 -57.35562 49.85852 3.47339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11401 0.20271 -1.00000 - 80 2017 8 21 0 6 24 149 4.8651 177.25915 910.77628 812.84161 -55.31241 50.46052 3.73427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11366 0.20271 -1.00000 - 81 2017 8 21 0 6 29 13 4.8639 177.25694 913.86552 812.14668 -57.38826 50.33884 3.97661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11330 0.20271 -1.00000 - 82 2017 8 21 0 6 33 876 4.8632 177.24686 915.35236 811.48846 -56.97916 51.35402 4.20072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11295 0.20271 -1.00000 - 83 2017 8 21 0 6 38 740 4.8632 177.23718 915.35114 810.88698 -57.04007 52.43208 4.41190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11260 0.20271 -1.00000 - 84 2017 8 21 0 6 43 604 4.8638 177.23674 917.15831 810.36083 -59.54204 51.96553 4.62045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11224 0.20271 -1.00000 - 85 2017 8 21 0 6 48 468 4.8648 177.24617 917.94956 809.92445 -59.65796 52.51990 4.83629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11189 0.20271 -1.00000 - 86 2017 8 21 0 6 53 334 4.8661 177.25908 918.38271 809.58966 -56.81639 54.94816 5.05980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11153 0.20271 -1.00000 - 87 2017 8 21 0 6 58 202 4.8674 177.26854 920.52658 809.36487 -56.81942 58.58258 5.28248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11118 0.20271 -1.00000 - 88 2017 8 21 0 7 3 70 4.8684 177.27441 921.17278 809.25314 -57.58989 59.07758 5.50931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11083 0.20271 -1.00000 - 89 2017 8 21 0 7 7 939 4.8685 177.27797 920.38838 809.25235 -55.60604 56.80865 5.73777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11047 0.20271 -1.00000 - 90 2017 8 21 0 7 12 806 4.8676 177.27888 921.36270 809.35668 -56.65986 56.84316 5.98092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11012 0.20271 -1.00000 - 91 2017 8 21 0 7 17 672 4.8657 177.27969 921.24028 809.55604 -58.33283 56.86224 6.24738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10976 0.20271 -1.00000 - 92 2017 8 21 0 7 22 536 4.8638 177.28129 920.24664 809.83456 -57.56787 59.27151 6.53769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10941 0.20271 -1.00000 - 93 2017 8 21 0 7 27 398 4.8625 177.28273 920.91353 810.17447 -53.80321 64.83286 6.84999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10906 0.20270 -1.00000 - 94 2017 8 21 0 7 32 260 4.8620 177.28318 920.41025 810.55549 -55.12072 66.86496 7.17795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10870 0.20270 -1.00000 - 95 2017 8 21 0 7 37 122 4.8622 177.28490 918.98601 810.95423 -55.72862 65.57520 7.50501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10835 0.20270 -1.00000 - 96 2017 8 21 0 7 41 985 4.8627 177.28897 918.85823 811.34811 -53.63364 62.66237 7.84202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10800 0.20270 -1.00000 - 97 2017 8 21 0 7 46 848 4.8633 177.29264 917.73243 811.71545 -54.67374 64.45323 8.19136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10764 0.20270 -1.00000 - 98 2017 8 21 0 7 51 712 4.8637 177.29238 916.47107 812.03541 -56.93043 64.99885 8.54095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10729 0.20270 -1.00000 - 99 2017 8 21 0 7 56 576 4.8637 177.29070 915.69081 812.28672 -56.68794 67.64513 8.88424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10694 0.20270 -1.00000 - 100 2017 8 21 0 8 1 439 4.8632 177.28914 914.22292 812.45273 -53.46186 71.02247 9.20330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10658 0.20270 -1.00000 - 101 2017 8 21 0 8 6 301 4.8622 177.28683 913.25973 812.52114 -55.00396 72.00443 9.47612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10623 0.20270 -1.00000 - 102 2017 8 21 0 8 11 162 4.8610 177.28355 912.00164 812.48309 -56.63989 72.18882 9.68476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10587 0.20270 -1.00000 - 103 2017 8 21 0 8 16 22 4.8596 177.28162 910.43879 812.33478 -55.61328 77.76404 9.82568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10552 0.20270 -1.00000 - 104 2017 8 21 0 8 20 880 4.8587 177.28192 909.16285 812.07346 -55.59215 86.08493 9.88250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10517 0.20270 -1.00000 - 105 2017 8 21 0 8 25 739 4.8584 177.28269 907.47297 811.70494 -58.81388 93.41123 9.84666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10481 0.20270 -1.00000 - 106 2017 8 21 0 8 30 598 4.8588 177.28131 905.94264 811.23527 -59.86430 99.32586 9.70395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10446 0.20270 -1.00000 - 107 2017 8 21 0 8 35 457 4.8597 177.27500 903.97709 810.67661 -57.82094 103.30022 9.45119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10411 0.20270 -1.00000 - 108 2017 8 21 0 8 40 318 4.8605 177.27040 902.18036 810.04568 -58.02177 110.56842 9.07098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10375 0.20270 -1.00000 - 109 2017 8 21 0 8 45 179 4.8611 177.26848 899.93955 809.36008 -61.10216 118.05932 8.57145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10340 0.20270 -1.00000 - 110 2017 8 21 0 8 50 40 4.8613 177.26768 897.54394 808.63604 -61.74847 123.19907 7.95594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10305 0.20270 -1.00000 - 111 2017 8 21 0 8 54 901 4.8612 177.26779 895.17045 807.89749 -58.94589 125.60157 7.23311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10269 0.20270 -1.00000 - 112 2017 8 21 0 8 59 762 4.8609 177.26597 892.55218 807.16948 -61.92676 125.10447 6.40706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10234 0.20270 -1.00000 - 113 2017 8 21 0 9 4 623 4.8604 177.26193 893.19505 806.46942 -64.42467 121.75091 5.50194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10199 0.20270 -1.00000 - 114 2017 8 21 0 9 9 482 4.8598 177.25715 894.62324 805.81765 -63.93368 115.46207 4.53225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10163 0.20270 -1.00000 - 115 2017 8 21 0 9 14 342 4.8593 177.25421 895.68483 805.23656 -59.67182 106.59820 3.51370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10128 0.20270 -1.00000 - 116 2017 8 21 0 9 19 201 4.8592 177.25310 896.44844 804.74255 -62.59201 95.26319 2.46281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10093 0.20270 -1.00000 - 117 2017 8 21 0 9 24 61 4.8597 177.25011 897.36339 804.34407 -63.36819 81.93761 1.41004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10057 0.20270 -1.00000 - 118 2017 8 21 0 9 28 921 4.8606 177.24741 898.49204 804.04791 -60.79826 69.25368 0.36764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10022 0.20270 -1.00000 - 119 2017 8 21 0 9 33 783 4.8616 177.24744 899.32728 803.86198 -55.70267 70.13156 -0.65965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09987 0.20270 -1.00000 - 120 2017 8 21 0 9 38 645 4.8624 177.24962 900.33431 803.78716 -59.65887 67.25465 -1.65929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09951 0.20270 -1.00000 - 121 2017 8 21 0 9 43 508 4.8627 177.25062 901.40741 803.81906 -61.29128 72.37725 -2.61701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09916 0.20269 -1.00000 - 122 2017 8 21 0 9 48 371 4.8628 177.24970 902.10204 803.95446 -59.32418 76.34612 -3.51944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09881 0.20269 -1.00000 - 123 2017 8 21 0 9 53 233 4.8626 177.24847 902.45447 804.19584 -66.84117 76.66729 -4.34848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09845 0.20269 -1.00000 - 124 2017 8 21 0 9 58 96 4.8623 177.24725 902.50946 804.53991 -82.62928 73.18002 -5.09496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09810 0.20269 -1.00000 - 125 2017 8 21 0 10 2 958 4.8621 177.24679 903.12873 804.97854 -97.24773 78.29012 -5.76166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09774 0.20269 -1.00000 - 126 2017 8 21 0 10 7 820 4.8619 177.24612 903.41919 805.50989 -110.09068 81.95170 -6.34282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09739 0.20269 -1.00000 - 127 2017 8 21 0 10 12 681 4.8618 177.24532 903.52168 806.13202 -120.46088 81.35158 -6.82536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09704 0.20269 -1.00000 - 128 2017 8 21 0 10 17 543 4.8618 177.24668 904.11326 806.83858 -127.65423 86.96588 -7.21290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09668 0.20269 -1.00000 - 129 2017 8 21 0 10 22 405 4.8621 177.25127 904.32723 807.62167 -131.00149 91.90439 -7.50477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09633 0.20269 -1.00000 - 130 2017 8 21 0 10 27 268 4.8625 177.25412 904.17745 808.47255 -139.37815 91.76108 -7.71559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09598 0.20269 -1.00000 - 131 2017 8 21 0 10 32 130 4.8627 177.25327 904.34658 809.36256 -149.80030 86.92594 -7.83665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09562 0.20269 -1.00000 - 132 2017 8 21 0 10 36 993 4.8628 177.25093 904.52774 810.26629 -156.83676 77.98005 -7.85485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09527 0.20269 -1.00000 - 133 2017 8 21 0 10 41 856 4.8627 177.25137 904.55898 811.16979 -158.84707 65.75827 -7.75793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09492 0.20269 -1.00000 - 134 2017 8 21 0 10 46 718 4.8625 177.25455 905.21277 812.04382 -155.07946 52.04656 -7.53443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09456 0.20269 -1.00000 - 135 2017 8 21 0 10 51 581 4.8624 177.25644 905.52065 812.85382 -144.90029 46.17480 -7.18533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09421 0.20269 -1.00000 - 136 2017 8 21 0 10 56 443 4.8624 177.25540 906.19312 813.56369 -128.02216 37.71697 -6.73175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09385 0.20269 -1.00000 - 137 2017 8 21 0 11 1 305 4.8623 177.25337 906.77006 814.13970 -104.68030 37.85870 -6.19636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09350 0.20269 -1.00000 - 138 2017 8 21 0 11 6 167 4.8620 177.25265 907.51719 814.55777 -75.97490 35.41565 -5.62102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09315 0.20269 -1.00000 - 139 2017 8 21 0 11 11 29 4.8616 177.25517 908.37546 814.81251 -59.25400 32.90595 -5.03553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09279 0.20269 -1.00000 - 140 2017 8 21 0 11 15 890 4.8612 177.25807 909.08389 814.88489 -69.84141 51.36112 -4.49999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09244 0.20269 -1.00000 - 141 2017 8 21 0 11 20 751 4.8610 177.25782 909.38502 814.78188 -78.99054 65.29248 -4.06138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09209 0.20269 -1.00000 - 142 2017 8 21 0 11 25 612 4.8609 177.25548 909.37573 814.52997 -86.67355 74.28983 -3.75362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09173 0.20269 -1.00000 - 143 2017 8 21 0 11 30 473 4.8609 177.25422 908.93731 814.15960 -93.06539 84.53418 -3.59670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09138 0.20269 -1.00000 - 144 2017 8 21 0 11 35 334 4.8609 177.25445 908.10565 813.71270 -98.01774 108.28476 -3.58355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09103 0.20269 -1.00000 - 145 2017 8 21 0 11 40 195 4.8608 177.25552 906.99386 813.21753 -101.30120 125.37764 -3.74187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09067 0.20269 -1.00000 - 146 2017 8 21 0 11 45 55 4.8608 177.25488 905.68541 812.70956 -106.82279 134.12735 -4.06854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09032 0.20269 -1.00000 - 147 2017 8 21 0 11 49 916 4.8609 177.25359 904.26497 812.22238 -112.26608 134.93179 -4.52639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08997 0.20269 -1.00000 - 148 2017 8 21 0 11 54 777 4.8610 177.25214 902.80918 811.78507 -115.25984 129.00154 -5.06334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08961 0.20269 -1.00000 - 149 2017 8 21 0 11 59 638 4.8610 177.25080 901.45323 811.41076 -115.35156 117.44097 -5.64355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08926 0.20268 -1.00000 - 150 2017 8 21 0 12 4 499 4.8608 177.24957 900.14400 811.10475 -112.24316 101.68329 -6.23066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08891 0.20268 -1.00000 - 151 2017 8 21 0 12 9 360 4.8604 177.24889 898.90261 810.86603 -105.76936 82.78925 -6.79691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08855 0.20268 -1.00000 - 152 2017 8 21 0 12 14 220 4.8600 177.24907 897.73324 810.68931 -95.96723 61.72142 -7.32353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08820 0.20268 -1.00000 - 153 2017 8 21 0 12 19 79 4.8598 177.24853 896.65300 810.56518 -82.85344 39.01906 -7.80369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08785 0.20268 -1.00000 - 154 2017 8 21 0 12 23 939 4.8598 177.24529 895.98239 810.48200 -73.86421 21.43603 -8.24540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08749 0.20268 -1.00000 - 155 2017 8 21 0 12 28 799 4.8599 177.24114 895.48705 810.43236 -69.85806 16.00410 -8.62811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08714 0.20268 -1.00000 - 156 2017 8 21 0 12 33 659 4.8601 177.23969 895.24382 810.41157 -69.29000 20.57613 -8.93400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08678 0.20268 -1.00000 - 157 2017 8 21 0 12 38 520 4.8603 177.23993 895.23864 810.41562 -82.56019 25.04065 -9.15382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08643 0.20268 -1.00000 - 158 2017 8 21 0 12 43 380 4.8607 177.24076 895.20874 810.44720 -94.58851 28.37994 -9.29095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08608 0.20268 -1.00000 - 159 2017 8 21 0 12 48 241 4.8610 177.24030 895.19197 810.51098 -105.66807 30.60413 -9.36538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08572 0.20268 -1.00000 - 160 2017 8 21 0 12 53 103 4.8613 177.24084 895.22286 810.61415 -115.27527 45.63043 -9.38053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08537 0.20268 -1.00000 - 161 2017 8 21 0 12 57 964 4.8613 177.24153 895.35096 810.76720 -122.70194 59.17088 -9.32354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08502 0.20268 -1.00000 - 162 2017 8 21 0 13 2 825 4.8611 177.24093 895.62176 810.98087 -127.46917 69.12564 -9.19618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08466 0.20268 -1.00000 - 163 2017 8 21 0 13 7 686 4.8606 177.23874 896.11288 811.25909 -136.89618 75.26864 -8.99934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08431 0.20268 -1.00000 - 164 2017 8 21 0 13 12 546 4.8603 177.23578 897.10026 811.59374 -145.57665 77.89390 -8.72347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08396 0.20268 -1.00000 - 165 2017 8 21 0 13 17 406 4.8601 177.23341 898.34030 811.98175 -151.52301 77.32987 -8.35851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08360 0.20268 -1.00000 - 166 2017 8 21 0 13 22 266 4.8602 177.23264 899.47482 812.41367 -153.85377 74.20694 -7.88779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08325 0.20268 -1.00000 - 167 2017 8 21 0 13 27 127 4.8604 177.23253 900.48988 812.88125 -151.77304 68.67480 -7.30013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08290 0.20268 -1.00000 - 168 2017 8 21 0 13 31 987 4.8608 177.23368 901.37431 813.36487 -144.98362 61.42170 -6.59061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08254 0.20268 -1.00000 - 169 2017 8 21 0 13 36 848 4.8611 177.23511 902.24247 813.84105 -133.27446 52.91092 -5.75567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08219 0.20268 -1.00000 - 170 2017 8 21 0 13 41 710 4.8614 177.23644 903.09119 814.28575 -116.51846 43.43703 -4.81178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08184 0.20268 -1.00000 - 171 2017 8 21 0 13 46 571 4.8616 177.23728 903.76923 814.67769 -94.76918 33.54757 -3.76953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08148 0.20268 -1.00000 - 172 2017 8 21 0 13 51 433 4.8615 177.23669 904.26890 814.99438 -68.61170 23.35264 -2.65458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08113 0.20268 -1.00000 - 173 2017 8 21 0 13 56 294 4.8612 177.23558 904.57813 815.21820 -39.16847 24.03878 -1.50248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08078 0.20268 -1.00000 - 174 2017 8 21 0 14 1 155 4.8608 177.23502 904.68615 815.33859 -24.37565 26.90402 -0.34139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08042 0.20268 -1.00000 - 175 2017 8 21 0 14 6 16 4.8605 177.23471 904.86046 815.35463 -19.02728 44.35405 0.78527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08007 0.20268 -1.00000 - 176 2017 8 21 0 14 10 876 4.8604 177.23421 904.84642 815.27477 -24.78777 59.25163 1.83572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07972 0.20268 -1.00000 - 177 2017 8 21 0 14 15 736 4.8604 177.23317 904.69882 815.11459 -32.21453 81.43903 2.78132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07936 0.20267 -1.00000 - 178 2017 8 21 0 14 20 597 4.8606 177.23310 904.56468 814.89390 -38.65513 105.79559 3.60172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07901 0.20267 -1.00000 - 179 2017 8 21 0 14 25 458 4.8608 177.23416 904.39256 814.62378 -43.94579 124.88519 4.25167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07865 0.20267 -1.00000 - 180 2017 8 21 0 14 30 319 4.8609 177.23520 904.17674 814.32601 -48.16985 138.23437 4.73875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07830 0.20267 -1.00000 - 181 2017 8 21 0 14 35 180 4.8610 177.23503 903.80522 814.02158 -50.97705 146.07585 5.08796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07795 0.20267 -1.00000 - 182 2017 8 21 0 14 40 41 4.8610 177.23455 903.31484 813.72532 -52.78909 148.82749 5.31173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07759 0.20267 -1.00000 - 183 2017 8 21 0 14 44 901 4.8608 177.23384 902.80988 813.44722 -53.59903 147.27876 5.44646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07724 0.20267 -1.00000 - 184 2017 8 21 0 14 49 762 4.8606 177.23312 902.31114 813.19290 -53.41010 142.29617 5.51436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07689 0.20267 -1.00000 - 185 2017 8 21 0 14 54 622 4.8602 177.23283 901.75028 812.96453 -52.18196 134.47004 5.53320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07653 0.20267 -1.00000 - 186 2017 8 21 0 14 59 482 4.8600 177.23311 901.15743 812.76185 -49.83559 124.54335 5.52798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07618 0.20267 -1.00000 - 187 2017 8 21 0 15 4 342 4.8599 177.23326 900.52925 812.58186 -46.28210 113.04299 5.50927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07583 0.20267 -1.00000 - 188 2017 8 21 0 15 9 202 4.8600 177.23313 899.86669 812.41964 -41.45113 100.69410 5.48866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07547 0.20267 -1.00000 - 189 2017 8 21 0 15 14 62 4.8602 177.23253 899.17119 812.26996 -35.27990 87.80797 5.46611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07512 0.20267 -1.00000 - 190 2017 8 21 0 15 18 922 4.8603 177.23190 898.42993 812.12638 -27.88201 74.51712 5.44401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07477 0.20267 -1.00000 - 191 2017 8 21 0 15 23 783 4.8602 177.23174 897.72518 811.98439 -19.46633 61.17194 5.42691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07441 0.20267 -1.00000 - 192 2017 8 21 0 15 28 643 4.8602 177.23223 897.01237 811.84183 -10.22534 48.39598 5.42582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07406 0.20267 -1.00000 - 193 2017 8 21 0 15 33 503 4.8601 177.23201 896.25286 811.69641 -5.02293 36.22707 5.43357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07371 0.20267 -1.00000 - 194 2017 8 21 0 15 38 363 4.8600 177.23060 895.54381 811.54490 -4.05394 24.66664 5.46644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07335 0.20267 -1.00000 - 195 2017 8 21 0 15 43 223 4.8599 177.22869 895.17722 811.38969 -3.00731 26.77815 5.51100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07300 0.20267 -1.00000 - 196 2017 8 21 0 15 48 83 4.8598 177.22765 895.22791 811.23330 -6.49525 34.32544 5.57640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07265 0.20267 -1.00000 - 197 2017 8 21 0 15 52 942 4.8596 177.22685 895.23085 811.07916 -13.26908 41.28292 5.65037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07229 0.20267 -1.00000 - 198 2017 8 21 0 15 57 802 4.8595 177.22633 895.19873 810.93037 -19.38792 47.65409 5.72903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07194 0.20267 -1.00000 - 199 2017 8 21 0 16 2 661 4.8595 177.22582 895.13883 810.79132 -24.44058 53.16340 5.82268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07159 0.20267 -1.00000 - 200 2017 8 21 0 16 7 521 4.8597 177.22509 895.06982 810.66572 -31.60239 57.68672 5.93420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07123 0.20267 -1.00000 - 201 2017 8 21 0 16 12 381 4.8599 177.22413 894.99885 810.55515 -38.70551 62.00302 6.06000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07088 0.20267 -1.00000 - 202 2017 8 21 0 16 17 241 4.8600 177.22306 894.92761 810.46143 -44.55805 65.18323 6.20449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07053 0.20267 -1.00000 - 203 2017 8 21 0 16 22 101 4.8600 177.22249 894.85320 810.38508 -48.72321 66.81571 6.38030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07017 0.20267 -1.00000 - 204 2017 8 21 0 16 26 961 4.8599 177.22250 894.77089 810.32560 -50.87237 67.13196 6.58736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06982 0.20267 -1.00000 - 205 2017 8 21 0 16 31 821 4.8598 177.22237 894.66677 810.27878 -50.89911 66.15102 6.82633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06947 0.20266 -1.00000 - 206 2017 8 21 0 16 36 680 4.8598 177.22176 894.52410 810.23972 -48.76429 64.87397 7.09635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06911 0.20266 -1.00000 - 207 2017 8 21 0 16 41 540 4.8598 177.22110 894.32533 810.20253 -44.49379 62.80307 7.39377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06876 0.20266 -1.00000 - 208 2017 8 21 0 16 46 400 4.8598 177.22037 894.05312 810.16204 -38.17840 59.97826 7.71640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06841 0.20266 -1.00000 - 209 2017 8 21 0 16 51 260 4.8599 177.21957 893.69464 810.11275 -29.97708 56.25792 8.05444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06805 0.20266 -1.00000 - 210 2017 8 21 0 16 56 120 4.8599 177.21904 893.23921 810.04962 -20.12414 51.80212 8.40270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06770 0.20266 -1.00000 - 211 2017 8 21 0 17 0 980 4.8599 177.21912 892.67961 809.96787 -8.90457 46.61466 8.75399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06734 0.20266 -1.00000 - 212 2017 8 21 0 17 5 840 4.8600 177.21947 892.42922 809.86497 -4.32920 41.17577 9.09728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06699 0.20266 -1.00000 - 213 2017 8 21 0 17 10 700 4.8600 177.21957 892.32273 809.74211 -2.15900 35.51038 9.41812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06664 0.20266 -1.00000 - 214 2017 8 21 0 17 15 560 4.8599 177.21921 892.11553 809.59920 -1.22481 38.52802 9.70303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06628 0.20266 -1.00000 - 215 2017 8 21 0 17 20 419 4.8599 177.21850 891.81951 809.43574 -0.34798 45.44054 9.93944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06593 0.20266 -1.00000 - 216 2017 8 21 0 17 25 279 4.8598 177.21778 891.46450 809.25523 -0.28100 53.12605 10.12101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06558 0.20266 -1.00000 - 217 2017 8 21 0 17 30 139 4.8597 177.21704 891.05223 809.06353 -0.25137 63.74276 10.24668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06522 0.20266 -1.00000 - 218 2017 8 21 0 17 34 999 4.8597 177.21654 890.58995 808.86352 -0.20288 72.88918 10.30784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06487 0.20266 -1.00000 - 219 2017 8 21 0 17 39 858 4.8597 177.21665 890.07950 808.65988 -0.18412 80.21202 10.30320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06452 0.20266 -1.00000 - 220 2017 8 21 0 17 44 718 4.8597 177.21687 889.51386 808.45852 -0.20178 85.52273 10.22948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06416 0.20266 -1.00000 - 221 2017 8 21 0 17 49 578 4.8598 177.21676 888.92747 808.26453 -3.44031 88.95534 10.08851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06381 0.20266 -1.00000 - 222 2017 8 21 0 17 54 438 4.8598 177.21646 888.82028 808.08228 -6.54025 90.66372 9.89569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06346 0.20266 -1.00000 - 223 2017 8 21 0 17 59 297 4.8598 177.21628 888.75960 807.91530 -9.02667 90.64948 9.64664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06310 0.20266 -1.00000 - 224 2017 8 21 0 18 4 157 4.8596 177.21576 888.68256 807.76573 -11.04184 89.16092 9.35006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06275 0.20266 -1.00000 - 225 2017 8 21 0 18 9 17 4.8595 177.21493 888.58264 807.63524 -12.24548 86.42099 9.01799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06240 0.20266 -1.00000 - 226 2017 8 21 0 18 13 876 4.8594 177.21403 888.47429 807.52438 -12.62983 82.64780 8.65519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06204 0.20266 -1.00000 - 227 2017 8 21 0 18 18 735 4.8593 177.21324 888.36069 807.43306 -12.49901 77.93788 8.26642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06169 0.20266 -1.00000 - 228 2017 8 21 0 18 23 594 4.8593 177.21248 888.24464 807.36034 -11.84426 72.64091 7.85791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06134 0.20266 -1.00000 - 229 2017 8 21 0 18 28 454 4.8593 177.21170 888.13956 807.30468 -10.93706 66.96977 7.43445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06098 0.20266 -1.00000 - 230 2017 8 21 0 18 33 313 4.8593 177.21096 888.02329 807.26451 -9.73529 60.78368 6.99338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06063 0.20266 -1.00000 - 231 2017 8 21 0 18 38 172 4.8594 177.21025 887.88589 807.23819 -8.10754 54.25770 6.54199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06028 0.20266 -1.00000 - 232 2017 8 21 0 18 43 32 4.8594 177.20960 887.74856 807.22489 -6.07992 47.58699 6.08406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05992 0.20266 -1.00000 - 233 2017 8 21 0 18 47 891 4.8594 177.20895 887.60818 807.22350 -3.66470 40.89985 5.62471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05957 0.20265 -1.00000 - 234 2017 8 21 0 18 52 751 4.8594 177.20811 887.46760 807.23187 -1.51995 34.52685 5.17444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05922 0.20265 -1.00000 - 235 2017 8 21 0 18 57 610 4.8593 177.20718 887.33013 807.24834 -0.45916 28.42057 4.73561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05886 0.20265 -1.00000 - 236 2017 8 21 0 19 2 469 4.8593 177.20644 887.17739 807.27221 -0.25811 22.51203 4.30651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05851 0.20265 -1.00000 - 237 2017 8 21 0 19 7 329 4.8593 177.20583 887.02336 807.30277 -0.24942 16.87684 3.88899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05816 0.20265 -1.00000 - 238 2017 8 21 0 19 12 188 4.8593 177.20527 886.90285 807.33945 -0.28465 16.17215 3.48702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05780 0.20265 -1.00000 - 239 2017 8 21 0 19 17 47 4.8593 177.20480 886.82322 807.38207 -4.14407 16.49957 3.10104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05745 0.20265 -1.00000 - 240 2017 8 21 0 19 21 907 4.8594 177.20455 886.75015 807.43073 -7.67997 16.61798 2.73011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05710 0.20265 -1.00000 - 241 2017 8 21 0 19 26 766 4.8594 177.20447 886.74929 807.48534 -10.72491 16.74675 2.37587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05674 0.20265 -1.00000 - 242 2017 8 21 0 19 31 625 4.8595 177.20447 887.05570 807.54584 -13.31456 16.65409 2.03717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05639 0.20265 -1.00000 - 243 2017 8 21 0 19 36 485 4.8595 177.20439 887.35437 807.61221 -15.47589 16.78541 1.71356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05604 0.20265 -1.00000 - 244 2017 8 21 0 19 41 344 4.8595 177.20425 887.64335 807.68450 -17.17571 17.19256 1.40445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05568 0.20265 -1.00000 - 245 2017 8 21 0 19 46 204 4.8595 177.20420 887.92375 807.76275 -18.38975 17.18992 1.10826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05533 0.20265 -1.00000 - 246 2017 8 21 0 19 51 63 4.8595 177.20423 888.19558 807.84716 -19.11698 16.91415 0.82669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05498 0.20265 -1.00000 - 247 2017 8 21 0 19 55 923 4.8594 177.20429 888.45955 807.93693 -20.46567 16.21464 0.55692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05462 0.20265 -1.00000 - 248 2017 8 21 0 20 0 782 4.8594 177.20436 888.70979 808.03033 -22.08896 15.40362 0.30718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05427 0.20265 -1.00000 - 249 2017 8 21 0 20 5 642 4.8593 177.20447 888.94091 808.12650 -23.25414 14.59437 0.06995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05392 0.20265 -1.00000 - 250 2017 8 21 0 20 10 501 4.8593 177.20461 889.15347 808.22472 -23.66029 13.49613 -0.14748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05356 0.20265 -1.00000 - 251 2017 8 21 0 20 15 360 4.8592 177.20474 889.34990 808.32370 -23.20773 12.22025 -0.34349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05321 0.20265 -1.00000 - 252 2017 8 21 0 20 20 219 4.8592 177.20480 889.52122 808.42155 -22.16962 10.57518 -0.52700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05286 0.20265 -1.00000 - 253 2017 8 21 0 20 25 78 4.8591 177.20472 889.66335 808.51687 -20.60081 8.85040 -0.69322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05250 0.20265 -1.00000 - 254 2017 8 21 0 20 29 938 4.8590 177.20451 889.77627 808.60861 -18.61901 7.00900 -0.84813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05215 0.20265 -1.00000 - 255 2017 8 21 0 20 34 796 4.8589 177.20429 889.86022 808.69614 -16.43863 5.17931 -0.99012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05180 0.20265 -1.00000 - 256 2017 8 21 0 20 39 655 4.8588 177.20400 889.92450 808.77900 -13.90990 3.23212 -1.11408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05144 0.20265 -1.00000 - 257 2017 8 21 0 20 44 514 4.8587 177.20336 889.96842 808.85672 -11.17962 2.21464 -1.23150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05109 0.20265 -1.00000 - 258 2017 8 21 0 20 49 373 4.8586 177.20233 889.99305 808.92930 -8.42414 1.68257 -1.33672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05074 0.20265 -1.00000 - 259 2017 8 21 0 20 54 231 4.8585 177.20118 890.00156 808.99673 -5.86874 1.37991 -1.43522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05038 0.20265 -1.00000 - 260 2017 8 21 0 20 59 90 4.8584 177.20010 889.99879 809.05880 -7.28484 1.47818 -1.52925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05003 0.20265 -1.00000 - 261 2017 8 21 0 21 3 948 4.8583 177.19889 890.01814 809.11661 -8.81038 1.65853 -1.61810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04968 0.20264 -1.00000 - 262 2017 8 21 0 21 8 806 4.8582 177.19748 890.10764 809.17059 -10.26059 1.96738 -1.70610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04932 0.20264 -1.00000 - 263 2017 8 21 0 21 13 664 4.8582 177.19592 890.24947 809.22134 -11.59082 4.11575 -1.79792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04897 0.20264 -1.00000 - 264 2017 8 21 0 21 18 522 4.8582 177.19423 890.40757 809.26926 -12.74907 6.10358 -1.88760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04862 0.20264 -1.00000 - 265 2017 8 21 0 21 23 381 4.8582 177.19235 890.56287 809.31508 -13.72579 7.74142 -1.97779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04826 0.20264 -1.00000 - 266 2017 8 21 0 21 28 239 4.8582 177.19029 890.69875 809.35918 -14.52232 9.05222 -2.07305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04791 0.20264 -1.00000 - 267 2017 8 21 0 21 33 97 4.8582 177.18829 890.82149 809.40196 -15.13721 10.02304 -2.16697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04756 0.20264 -1.00000 - 268 2017 8 21 0 21 37 955 4.8582 177.18648 890.93627 809.44428 -15.72209 10.54321 -2.26692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04720 0.20264 -1.00000 - 269 2017 8 21 0 21 42 814 4.8583 177.18490 891.04559 809.48663 -15.92082 10.77647 -2.37217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04685 0.20264 -1.00000 - 270 2017 8 21 0 21 47 672 4.8584 177.18340 891.14601 809.52934 -15.93967 10.78726 -2.47691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04650 0.20264 -1.00000 - 271 2017 8 21 0 21 52 530 4.8584 177.18197 891.23890 809.57306 -15.78527 10.42212 -2.57998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04614 0.20264 -1.00000 - 272 2017 8 21 0 21 57 389 4.8586 177.18075 891.30574 809.61806 -15.44445 9.64728 -2.68673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04579 0.20264 -1.00000 - 273 2017 8 21 0 22 2 248 4.8587 177.17980 891.34619 809.66475 -14.93885 8.66039 -2.79084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04544 0.20264 -1.00000 - 274 2017 8 21 0 22 7 106 4.8588 177.17914 891.37887 809.71309 -14.45409 7.54150 -2.89086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04508 0.20264 -1.00000 - 275 2017 8 21 0 22 11 965 4.8589 177.17872 891.40398 809.76301 -13.53374 6.14987 -2.98942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04473 0.20264 -1.00000 - 276 2017 8 21 0 22 16 824 4.8590 177.17856 891.42322 809.81436 -12.57837 4.60844 -3.08247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04438 0.20264 -1.00000 - 277 2017 8 21 0 22 21 683 4.8591 177.17876 891.44227 809.86732 -11.52048 2.98785 -3.16626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04402 0.20264 -1.00000 - 278 2017 8 21 0 22 26 543 4.8592 177.17925 891.43726 809.92232 -10.57111 1.26236 -3.24057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04367 0.20264 -1.00000 - 279 2017 8 21 0 22 31 402 4.8593 177.17985 891.42733 809.97878 -9.97323 0.02633 -3.30379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04332 0.20264 -1.00000 - 280 2017 8 21 0 22 36 261 4.8594 177.18053 891.42911 810.03653 -9.32803 0.00000 -3.35262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04296 0.20264 -1.00000 - 281 2017 8 21 0 22 41 121 4.8595 177.18143 891.44932 810.09519 -8.83160 0.00000 -3.39215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04261 0.20264 -1.00000 - 282 2017 8 21 0 22 45 980 4.8595 177.18262 891.46096 810.15491 -9.71959 0.00000 -3.41936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04226 0.20264 -1.00000 - 283 2017 8 21 0 22 50 840 4.8595 177.18391 891.50277 810.21555 -10.47012 0.00000 -3.43326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04190 0.20264 -1.00000 - 284 2017 8 21 0 22 55 699 4.8595 177.18504 891.61008 810.27708 -11.07051 0.00000 -3.43671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04155 0.20264 -1.00000 - 285 2017 8 21 0 23 0 559 4.8594 177.18595 891.72782 810.33972 -11.52156 0.00000 -3.43013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04120 0.20264 -1.00000 - 286 2017 8 21 0 23 5 418 4.8593 177.18675 891.84453 810.40330 -11.82509 0.00000 -3.40709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04084 0.20264 -1.00000 - 287 2017 8 21 0 23 10 277 4.8592 177.18758 891.95658 810.46726 -11.98424 0.00000 -3.37624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04049 0.20264 -1.00000 - 288 2017 8 21 0 23 15 136 4.8590 177.18841 892.06284 810.53168 -12.02188 0.00000 -3.33347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04014 0.20264 -1.00000 - 289 2017 8 21 0 23 19 995 4.8588 177.18907 892.16367 810.59661 -11.93809 0.00000 -3.27805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03978 0.20263 -1.00000 - 290 2017 8 21 0 23 24 854 4.8587 177.18940 892.26155 810.66175 -11.72290 0.00000 -3.21557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03943 0.20263 -1.00000 - 291 2017 8 21 0 23 29 712 4.8585 177.18940 892.35352 810.72741 -11.39202 0.00000 -3.14362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03908 0.20263 -1.00000 - 292 2017 8 21 0 23 34 571 4.8583 177.18915 892.44147 810.79313 -11.43302 0.00000 -3.06092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03872 0.20263 -1.00000 - 293 2017 8 21 0 23 39 429 4.8581 177.18875 892.52760 810.85823 -11.20179 0.00000 -2.97131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03837 0.20263 -1.00000 - 294 2017 8 21 0 23 44 287 4.8579 177.18808 892.60786 810.92296 -10.84588 0.00000 -2.86931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03802 0.20263 -1.00000 - 295 2017 8 21 0 23 49 144 4.8577 177.18707 892.68395 810.98669 -10.29604 0.00000 -2.75608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03766 0.20263 -1.00000 - 296 2017 8 21 0 23 54 2 4.8576 177.18579 892.75524 811.04871 -9.55548 0.00352 -2.63840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03731 0.20263 -1.00000 - 297 2017 8 21 0 23 58 859 4.8574 177.18435 892.82009 811.10890 -8.64311 0.01208 -2.50802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03696 0.20263 -1.00000 - 298 2017 8 21 0 24 3 717 4.8573 177.18262 892.87979 811.16679 -7.59065 0.01868 -2.36977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03660 0.20263 -1.00000 - 299 2017 8 21 0 24 8 574 4.8572 177.18070 892.93456 811.22199 -6.43868 0.02476 -2.22738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03625 0.20263 -1.00000 - 300 2017 8 21 0 24 13 431 4.8571 177.17863 892.98446 811.27439 -5.26144 0.03245 -2.07752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03590 0.20263 -1.00000 - 301 2017 8 21 0 24 18 288 4.8571 177.17633 893.03010 811.32367 -4.38593 0.03769 -1.91959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03554 0.20263 -1.00000 - 302 2017 8 21 0 24 23 145 4.8571 177.17387 893.07281 811.36959 -3.96015 0.04052 -1.76168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03519 0.20263 -1.00000 - 303 2017 8 21 0 24 28 2 4.8571 177.17150 893.11442 811.41217 -4.00269 0.04204 -1.59739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03484 0.20263 -1.00000 - 304 2017 8 21 0 24 32 859 4.8571 177.16935 893.15687 811.45148 -4.10786 0.05469 -1.42981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03448 0.20263 -1.00000 - 305 2017 8 21 0 24 37 716 4.8572 177.16736 893.21046 811.48747 -4.18766 0.72010 -1.26148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03413 0.20263 -1.00000 - 306 2017 8 21 0 24 42 574 4.8572 177.16544 893.27055 811.52014 -4.23611 1.77322 -1.08906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03378 0.20263 -1.00000 - 307 2017 8 21 0 24 47 431 4.8573 177.16353 893.33241 811.54938 -4.26458 2.74825 -0.91570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03342 0.20263 -1.00000 - 308 2017 8 21 0 24 52 288 4.8574 177.16168 893.40199 811.57513 -4.37511 3.63338 -0.74439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03307 0.20263 -1.00000 - 309 2017 8 21 0 24 57 146 4.8575 177.16002 893.46115 811.59759 -4.25332 4.42420 -0.57041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03272 0.20263 -1.00000 - 310 2017 8 21 0 25 2 4 4.8577 177.15869 893.50641 811.61685 -4.13563 5.12257 -0.39779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03236 0.20263 -1.00000 - 311 2017 8 21 0 25 6 861 4.8578 177.15766 893.54548 811.63299 -3.95983 5.72879 -0.22817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03201 0.20263 -1.00000 - 312 2017 8 21 0 25 11 719 4.8580 177.15708 893.58475 811.64634 -3.74482 6.24086 -0.05563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03166 0.20263 -1.00000 - 313 2017 8 21 0 25 16 578 4.8581 177.15686 893.62057 811.65678 -3.66139 6.66089 0.11113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03130 0.20263 -1.00000 - 314 2017 8 21 0 25 21 436 4.8583 177.15663 893.65057 811.66443 -3.38726 6.99524 0.27515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03095 0.20263 -1.00000 - 315 2017 8 21 0 25 26 294 4.8585 177.15657 893.65734 811.66955 -2.87088 7.24753 0.44202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03060 0.20263 -1.00000 - 316 2017 8 21 0 25 31 153 4.8586 177.15688 893.65965 811.67227 -2.38918 7.32021 0.60427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03024 0.20263 -1.00000 - 317 2017 8 21 0 25 36 12 4.8587 177.15742 893.65730 811.67271 -1.83470 7.38031 0.76387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02989 0.20263 -1.00000 - 318 2017 8 21 0 25 40 870 4.8588 177.15799 893.65449 811.67085 -1.21626 7.49145 0.92934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02954 0.20262 -1.00000 - 319 2017 8 21 0 25 45 729 4.8588 177.15862 893.64242 811.66669 -0.55684 7.50712 1.08930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02918 0.20262 -1.00000 - 320 2017 8 21 0 25 50 588 4.8588 177.15943 893.62376 811.66026 -0.12302 7.49041 1.24781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02883 0.20262 -1.00000 - 321 2017 8 21 0 25 55 447 4.8588 177.16042 893.61194 811.65181 -0.12843 7.45074 1.41252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02848 0.20262 -1.00000 - 322 2017 8 21 0 26 0 305 4.8587 177.16143 893.59567 811.64159 -0.13311 7.29392 1.57059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02812 0.20262 -1.00000 - 323 2017 8 21 0 26 5 164 4.8586 177.16235 893.58298 811.62970 -0.13296 7.18592 1.72966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02777 0.20262 -1.00000 - 324 2017 8 21 0 26 10 23 4.8585 177.16321 893.57617 811.61638 -0.13438 7.18508 1.89311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02742 0.20262 -1.00000 - 325 2017 8 21 0 26 14 881 4.8584 177.16404 893.55955 811.60135 -0.13600 7.13742 2.05165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02706 0.20262 -1.00000 - 326 2017 8 21 0 26 19 739 4.8583 177.16477 893.54611 811.58479 -0.13902 7.09825 2.20871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02671 0.20262 -1.00000 - 327 2017 8 21 0 26 24 598 4.8582 177.16531 893.52851 811.56703 -0.14011 7.07264 2.37084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02636 0.20262 -1.00000 - 328 2017 8 21 0 26 29 456 4.8580 177.16565 893.50621 811.54787 -0.13628 7.06901 2.52835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02600 0.20262 -1.00000 - 329 2017 8 21 0 26 34 313 4.8579 177.16579 893.48437 811.52764 -0.12798 6.99855 2.68180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02565 0.20262 -1.00000 - 330 2017 8 21 0 26 39 171 4.8577 177.16572 893.45611 811.50645 -0.12526 7.37813 2.83731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02530 0.20262 -1.00000 - 331 2017 8 21 0 26 44 29 4.8575 177.16540 893.42636 811.48412 -0.12951 7.88930 2.98882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02494 0.20262 -1.00000 - 332 2017 8 21 0 26 48 886 4.8573 177.16484 893.39341 811.46044 -0.13006 8.37046 3.13762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02459 0.20262 -1.00000 - 333 2017 8 21 0 26 53 743 4.8571 177.16394 893.35496 811.43571 -0.14034 8.67495 3.28820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02424 0.20262 -1.00000 - 334 2017 8 21 0 26 58 600 4.8570 177.16264 893.30848 811.40969 -0.16277 9.03447 3.42983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02388 0.20262 -1.00000 - 335 2017 8 21 0 27 3 457 4.8568 177.16112 893.26145 811.38239 -0.17869 9.40734 3.56978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02353 0.20262 -1.00000 - 336 2017 8 21 0 27 8 314 4.8567 177.15938 893.21578 811.35372 -0.18879 9.84720 3.71086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02318 0.20262 -1.00000 - 337 2017 8 21 0 27 13 170 4.8566 177.15749 893.16715 811.32314 -0.21941 10.18684 3.84044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02283 0.20262 -1.00000 - 338 2017 8 21 0 27 18 27 4.8565 177.15557 893.11286 811.29070 -0.24778 10.48822 3.96988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02247 0.20262 -1.00000 - 339 2017 8 21 0 27 22 883 4.8564 177.15373 893.05425 811.25634 -0.26808 10.59665 4.09642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02212 0.20262 -1.00000 - 340 2017 8 21 0 27 27 740 4.8564 177.15190 892.99087 811.21960 -0.28012 10.89954 4.21306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02177 0.20262 -1.00000 - 341 2017 8 21 0 27 32 596 4.8564 177.14993 892.92109 811.18060 -0.28777 11.33598 4.32607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02141 0.20262 -1.00000 - 342 2017 8 21 0 27 37 452 4.8564 177.14778 892.84496 811.13927 -0.28894 11.75174 4.43355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02106 0.20262 -1.00000 - 343 2017 8 21 0 27 42 309 4.8565 177.14556 892.76255 811.09548 -0.28987 12.14408 4.53342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02071 0.20262 -1.00000 - 344 2017 8 21 0 27 47 165 4.8565 177.14342 892.67361 811.04929 -0.31130 12.51404 4.62658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02035 0.20262 -1.00000 - 345 2017 8 21 0 27 52 22 4.8566 177.14143 892.57766 811.00074 -0.31168 13.12294 4.71467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02000 0.20262 -1.00000 - 346 2017 8 21 0 27 56 879 4.8566 177.13962 892.47497 810.94997 -0.28840 13.72762 4.79261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01965 0.20261 -1.00000 - 347 2017 8 21 0 28 1 735 4.8567 177.13799 892.36596 810.89712 -0.26360 14.32045 4.86358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01929 0.20261 -1.00000 - 348 2017 8 21 0 28 6 592 4.8569 177.13656 892.25069 810.84234 -0.24861 14.89452 4.92621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01894 0.20261 -1.00000 - 349 2017 8 21 0 28 11 449 4.8570 177.13524 892.13127 810.78592 -0.22581 15.44923 4.97897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01859 0.20261 -1.00000 - 350 2017 8 21 0 28 16 306 4.8571 177.13406 892.00675 810.72838 -0.19666 15.97105 5.02378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01823 0.20261 -1.00000 - 351 2017 8 21 0 28 21 164 4.8573 177.13312 891.87779 810.66981 -0.16786 16.44504 5.05745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01788 0.20261 -1.00000 - 352 2017 8 21 0 28 26 21 4.8574 177.13257 891.74302 810.61072 -0.13533 16.86056 5.08111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01753 0.20261 -1.00000 - 353 2017 8 21 0 28 30 878 4.8575 177.13223 891.60802 810.55176 -0.12135 17.21115 5.09385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01717 0.20261 -1.00000 - 354 2017 8 21 0 28 35 736 4.8576 177.13193 891.47486 810.49320 -0.10142 17.49130 5.09588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01682 0.20261 -1.00000 - 355 2017 8 21 0 28 40 594 4.8577 177.13187 891.34601 810.43541 -0.07581 17.69301 5.08709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01647 0.20261 -1.00000 - 356 2017 8 21 0 28 45 451 4.8578 177.13212 891.22232 810.37886 -0.07254 17.80702 5.06879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01611 0.20261 -1.00000 - 357 2017 8 21 0 28 50 309 4.8578 177.13231 891.09854 810.32382 -0.08118 17.84099 5.04150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01576 0.20261 -1.00000 - 358 2017 8 21 0 28 55 167 4.8579 177.13235 890.98238 810.27064 -0.09234 17.81055 5.00433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01541 0.20261 -1.00000 - 359 2017 8 21 0 29 0 25 4.8579 177.13252 890.87474 810.21964 -0.10958 17.72084 4.95892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01505 0.20261 -1.00000 - 360 2017 8 21 0 29 4 883 4.8578 177.13301 890.77687 810.17111 -0.12570 17.47988 4.90667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01470 0.20261 -1.00000 - 361 2017 8 21 0 29 9 741 4.8578 177.13361 890.68855 810.12476 -0.14869 17.34500 4.84560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01435 0.20261 -1.00000 - 362 2017 8 21 0 29 14 598 4.8578 177.13407 890.61399 810.08062 -0.19396 17.12443 4.77914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01399 0.20261 -1.00000 - 363 2017 8 21 0 29 19 456 4.8577 177.13443 890.54498 810.03829 -0.23239 16.87957 4.70622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01364 0.20261 -1.00000 - 364 2017 8 21 0 29 24 314 4.8577 177.13483 890.48741 809.99775 -0.25916 16.61593 4.62523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01329 0.20261 -1.00000 - 365 2017 8 21 0 29 29 171 4.8576 177.13523 890.44222 809.95858 -0.27969 16.33549 4.54252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01293 0.20261 -1.00000 - 366 2017 8 21 0 29 34 29 4.8575 177.13546 890.40808 809.92058 -0.36676 16.04050 4.44988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01258 0.20261 -1.00000 - 367 2017 8 21 0 29 38 886 4.8574 177.13549 890.38049 809.88339 -0.44327 15.73338 4.35371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01223 0.20261 -1.00000 - 368 2017 8 21 0 29 43 743 4.8572 177.13541 890.35551 809.84651 -0.50663 15.41639 4.25241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01188 0.20261 -1.00000 - 369 2017 8 21 0 29 48 601 4.8571 177.13525 890.33484 809.80947 -0.55258 15.09190 4.14202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01152 0.20261 -1.00000 - 370 2017 8 21 0 29 53 458 4.8570 177.13488 890.31562 809.77195 -0.57688 14.76237 4.02715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01117 0.20261 -1.00000 - 371 2017 8 21 0 29 58 314 4.8569 177.13426 890.29221 809.73355 -0.62536 14.43026 3.90870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01082 0.20261 -1.00000 - 372 2017 8 21 0 30 3 171 4.8568 177.13355 890.27227 809.69386 -0.74637 14.09792 3.78039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01046 0.20261 -1.00000 - 373 2017 8 21 0 30 8 28 4.8567 177.13291 890.24926 809.65263 -0.85125 13.76722 3.64708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01011 0.20261 -1.00000 - 374 2017 8 21 0 30 12 885 4.8566 177.13228 890.22053 809.60965 -0.93486 13.43961 3.50672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00976 0.20260 -1.00000 - 375 2017 8 21 0 30 17 741 4.8565 177.13138 890.19470 809.56460 -0.99232 13.11421 3.35666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00940 0.20260 -1.00000 - 376 2017 8 21 0 30 22 597 4.8564 177.13017 890.14773 809.51793 -1.01931 12.68668 3.20504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00905 0.20260 -1.00000 - 377 2017 8 21 0 30 27 454 4.8563 177.12886 890.09617 809.46956 -1.18165 12.31715 3.04234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00870 0.20260 -1.00000 - 378 2017 8 21 0 30 32 310 4.8562 177.12754 890.03397 809.41936 -1.36595 12.04729 2.87594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00834 0.20260 -1.00000 - 379 2017 8 21 0 30 37 166 4.8562 177.12605 889.95096 809.36798 -1.52845 11.72882 2.70502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00799 0.20260 -1.00000 - 380 2017 8 21 0 30 42 22 4.8561 177.12448 889.85501 809.31562 -1.65987 11.40773 2.52593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00764 0.20260 -1.00000 - 381 2017 8 21 0 30 46 878 4.8561 177.12315 889.75083 809.26270 -1.75116 11.07795 2.34359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00728 0.20260 -1.00000 - 382 2017 8 21 0 30 51 734 4.8561 177.12201 889.63311 809.20998 -1.84326 10.73786 2.15823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00693 0.20260 -1.00000 - 383 2017 8 21 0 30 56 591 4.8561 177.12079 889.50410 809.15805 -2.11805 10.38521 1.96641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00658 0.20260 -1.00000 - 384 2017 8 21 0 31 1 447 4.8562 177.11941 889.36453 809.10742 -2.37062 10.01592 1.77151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00622 0.20260 -1.00000 - 385 2017 8 21 0 31 6 303 4.8562 177.11792 889.21559 809.05897 -2.59222 9.62667 1.57451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00587 0.20260 -1.00000 - 386 2017 8 21 0 31 11 159 4.8562 177.11648 889.06027 809.01351 -2.77624 9.21507 1.37166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00552 0.20260 -1.00000 - 387 2017 8 21 0 31 16 15 4.8562 177.11515 888.90093 808.97172 -2.90704 8.78024 1.16902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00516 0.20260 -1.00000 - 388 2017 8 21 0 31 20 872 4.8562 177.11389 888.74007 808.93445 -3.02202 8.32323 0.96243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00481 0.20260 -1.00000 - 389 2017 8 21 0 31 25 728 4.8563 177.11268 888.58032 808.90251 -3.33662 7.84691 0.75449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00446 0.20260 -1.00000 - 390 2017 8 21 0 31 30 584 4.8564 177.11158 888.42433 808.87652 -3.64069 7.35293 0.54657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00411 0.20260 -1.00000 - 391 2017 8 21 0 31 35 441 4.8564 177.11070 888.27465 808.85701 -3.92278 6.84265 0.33496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00375 0.20260 -1.00000 - 392 2017 8 21 0 31 40 297 4.8565 177.10996 888.13352 808.84471 -4.14502 6.31717 0.12461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00340 0.20260 -1.00000 - 393 2017 8 21 0 31 45 154 4.8565 177.10930 888.00444 808.84030 -4.31140 5.77842 -0.08334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00305 0.20260 -1.00000 - 394 2017 8 21 0 31 50 10 4.8566 177.10875 887.89097 808.84394 -4.46983 5.22923 -0.29347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00269 0.20260 -1.00000 - 395 2017 8 21 0 31 54 867 4.8566 177.10822 887.79473 808.85618 -4.79382 4.67264 -0.50071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00234 0.20260 -1.00000 - 396 2017 8 21 0 31 59 724 4.8567 177.10766 887.71916 808.87722 -5.11647 4.09909 -0.70829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00199 0.20260 -1.00000 - 397 2017 8 21 0 32 4 580 4.8567 177.10716 887.88145 808.90704 -5.41994 3.54421 -0.91526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00163 0.20260 -1.00000 - 398 2017 8 21 0 32 9 437 4.8567 177.10683 888.08845 808.94601 -5.73275 2.92823 -1.11406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00128 0.20260 -1.00000 - 399 2017 8 21 0 32 14 294 4.8567 177.10662 888.28960 808.99385 -6.03223 2.29914 -1.31666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00093 0.20260 -1.00000 - 400 2017 8 21 0 32 19 150 4.8567 177.10642 888.49310 809.05018 -6.16771 1.69729 -1.51145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00057 0.20260 -1.00000 - 401 2017 8 21 0 32 24 7 4.8567 177.10620 888.70578 809.11468 -6.75523 1.21261 -1.69842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00022 0.20260 -1.00000 - 402 2017 8 21 0 32 28 864 4.8567 177.10600 888.90828 809.18656 -7.12244 0.69427 -1.88597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99987 0.20259 -1.00000 - 403 2017 8 21 0 32 33 721 4.8567 177.10584 889.09950 809.26512 -7.44978 0.19219 -2.06331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99951 0.20259 -1.00000 - 404 2017 8 21 0 32 38 577 4.8567 177.10566 889.27678 809.35000 -7.77925 0.10389 -2.23569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99916 0.20259 -1.00000 - 405 2017 8 21 0 32 43 434 4.8566 177.10542 889.45614 809.44016 -8.08554 0.12404 -2.40506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99881 0.20259 -1.00000 - 406 2017 8 21 0 32 48 290 4.8566 177.10517 889.65195 809.53488 -8.52983 0.13606 -2.56584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99845 0.20259 -1.00000 - 407 2017 8 21 0 32 53 147 4.8565 177.10495 889.83888 809.63336 -8.82172 0.14058 -2.72062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99810 0.20259 -1.00000 - 408 2017 8 21 0 32 58 3 4.8565 177.10472 890.01451 809.73444 -9.45886 0.16257 -2.87343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99775 0.20259 -1.00000 - 409 2017 8 21 0 33 2 860 4.8564 177.10439 890.18906 809.83759 -9.94282 0.19384 -3.01580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99739 0.20259 -1.00000 - 410 2017 8 21 0 33 7 716 4.8564 177.10396 890.37249 809.94208 -10.19164 0.21590 -3.15193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99704 0.20259 -1.00000 - 411 2017 8 21 0 33 12 572 4.8563 177.10348 890.54051 810.04691 -10.52704 0.23131 -3.28690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99669 0.20259 -1.00000 - 412 2017 8 21 0 33 17 429 4.8562 177.10298 890.69688 810.15166 -10.82147 0.24232 -3.41051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99634 0.20259 -1.00000 - 413 2017 8 21 0 33 22 285 4.8562 177.10243 890.86755 810.25566 -11.05202 0.24672 -3.52946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99598 0.20259 -1.00000 - 414 2017 8 21 0 33 27 141 4.8561 177.10179 891.03358 810.35828 -11.44706 0.29040 -3.64447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99563 0.20259 -1.00000 - 415 2017 8 21 0 33 31 997 4.8560 177.10102 891.20277 810.45931 -11.87734 0.32429 -3.74942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99528 0.20259 -1.00000 - 416 2017 8 21 0 33 36 853 4.8560 177.10021 891.37181 810.55843 -12.45199 0.35114 -3.84912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99492 0.20259 -1.00000 - 417 2017 8 21 0 33 41 709 4.8559 177.09944 891.52482 810.65546 -12.89840 0.37577 -3.94279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99457 0.20259 -1.00000 - 418 2017 8 21 0 33 46 565 4.8559 177.09864 891.66427 810.75035 -13.13672 0.39508 -4.02566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99422 0.20259 -1.00000 - 419 2017 8 21 0 33 51 421 4.8558 177.09778 891.82365 810.84314 -13.41508 0.40384 -4.10265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99386 0.20259 -1.00000 - 420 2017 8 21 0 33 56 276 4.8558 177.09690 891.97423 810.93410 -13.61333 0.45404 -4.16972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99351 0.20259 -1.00000 - 421 2017 8 21 0 34 1 132 4.8558 177.09599 892.13476 811.02340 -13.70267 0.50307 -4.22328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99316 0.20259 -1.00000 - 422 2017 8 21 0 34 5 988 4.8558 177.09499 892.28617 811.11146 -13.94362 0.54830 -4.27000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99280 0.20259 -1.00000 - 423 2017 8 21 0 34 10 844 4.8557 177.09401 892.43730 811.19862 -14.36439 0.58976 -4.30349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99245 0.20259 -1.00000 - 424 2017 8 21 0 34 15 699 4.8557 177.09313 892.58769 811.28508 -14.81492 0.62019 -4.32342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99210 0.20259 -1.00000 - 425 2017 8 21 0 34 20 555 4.8556 177.09225 892.74701 811.37113 -15.31059 0.63366 -4.33394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99174 0.20259 -1.00000 - 426 2017 8 21 0 34 25 411 4.8556 177.09121 892.90340 811.45727 -15.67486 0.67915 -4.33066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99139 0.20259 -1.00000 - 427 2017 8 21 0 34 30 266 4.8556 177.09000 893.05681 811.54386 -15.92648 0.75108 -4.31129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99104 0.20259 -1.00000 - 428 2017 8 21 0 34 35 122 4.8557 177.08881 893.21869 811.63114 -16.26493 0.82051 -4.28243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99069 0.20259 -1.00000 - 429 2017 8 21 0 34 39 978 4.8557 177.08780 893.37986 811.71964 -16.77997 0.88151 -4.23661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99033 0.20259 -1.00000 - 430 2017 8 21 0 34 44 833 4.8557 177.08690 893.53953 811.80981 -17.25833 0.92519 -4.17689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98998 0.20258 -1.00000 - 431 2017 8 21 0 34 49 689 4.8557 177.08600 893.70311 811.90167 -17.67367 0.94357 -4.10488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98963 0.20258 -1.00000 - 432 2017 8 21 0 34 54 545 4.8557 177.08514 893.87039 811.99566 -18.02119 1.00794 -4.01485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98927 0.20258 -1.00000 - 433 2017 8 21 0 34 59 400 4.8557 177.08436 894.04292 812.09175 -18.28473 1.11338 -3.91300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98892 0.20258 -1.00000 - 434 2017 8 21 0 35 4 256 4.8557 177.08354 894.22161 812.18984 -18.44376 1.21354 -3.79762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98857 0.20258 -1.00000 - 435 2017 8 21 0 35 9 112 4.8557 177.08267 894.40812 812.28991 -18.47340 1.30018 -3.66266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98821 0.20258 -1.00000 - 436 2017 8 21 0 35 13 968 4.8557 177.08184 894.60359 812.39152 -18.34357 1.36202 -3.51526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98786 0.20258 -1.00000 - 437 2017 8 21 0 35 18 823 4.8557 177.08112 894.80789 812.49420 -18.42316 1.40299 -3.35587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98751 0.20258 -1.00000 - 438 2017 8 21 0 35 23 679 4.8558 177.08044 895.01631 812.59686 -18.68962 1.57492 -3.17858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98715 0.20258 -1.00000 - 439 2017 8 21 0 35 28 535 4.8558 177.07976 895.22817 812.69862 -18.67335 1.73868 -2.99118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98680 0.20258 -1.00000 - 440 2017 8 21 0 35 33 391 4.8558 177.07912 895.44522 812.79830 -18.26094 1.88874 -2.78762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98645 0.20258 -1.00000 - 441 2017 8 21 0 35 38 247 4.8558 177.07855 895.66007 812.89467 -17.58788 2.01567 -2.56494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98609 0.20258 -1.00000 - 442 2017 8 21 0 35 43 102 4.8558 177.07810 895.86976 812.98614 -16.61838 2.10721 -2.33218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98574 0.20258 -1.00000 - 443 2017 8 21 0 35 47 958 4.8558 177.07767 896.06898 813.07121 -15.38157 2.23830 -2.08523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98539 0.20258 -1.00000 - 444 2017 8 21 0 35 52 814 4.8558 177.07710 896.25457 813.14921 -13.99186 2.49179 -1.82814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98504 0.20258 -1.00000 - 445 2017 8 21 0 35 57 670 4.8558 177.07647 896.42884 813.21901 -12.34040 2.72188 -1.56249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98468 0.20258 -1.00000 - 446 2017 8 21 0 36 2 526 4.8557 177.07593 896.58511 813.27972 -10.52282 2.91900 -1.28789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98433 0.20258 -1.00000 - 447 2017 8 21 0 36 7 381 4.8557 177.07547 896.72288 813.33061 -8.60798 3.09099 -1.00576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98398 0.20258 -1.00000 - 448 2017 8 21 0 36 12 237 4.8557 177.07496 896.84081 813.37102 -6.62157 3.22214 -0.71845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98362 0.20258 -1.00000 - 449 2017 8 21 0 36 17 93 4.8557 177.07437 896.93649 813.40035 -4.59688 3.44072 -0.42667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98327 0.20258 -1.00000 - 450 2017 8 21 0 36 21 948 4.8557 177.07380 897.00865 813.41848 -3.16289 3.73374 -0.13208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98292 0.20258 -1.00000 - 451 2017 8 21 0 36 26 804 4.8557 177.07331 897.06627 813.42534 -2.86474 4.05774 0.16225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98256 0.20258 -1.00000 - 452 2017 8 21 0 36 31 660 4.8556 177.07282 897.10048 813.42076 -2.64269 4.37335 0.45478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98221 0.20258 -1.00000 - 453 2017 8 21 0 36 36 515 4.8556 177.07225 897.11158 813.40484 -2.34800 4.60134 0.74881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98186 0.20258 -1.00000 - 454 2017 8 21 0 36 41 371 4.8556 177.07161 897.10728 813.37769 -2.09599 5.13292 1.03785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98150 0.20258 -1.00000 - 455 2017 8 21 0 36 46 226 4.8555 177.07099 897.06725 813.33965 -1.81819 6.80497 1.32040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98115 0.20258 -1.00000 - 456 2017 8 21 0 36 51 82 4.8555 177.07035 897.00102 813.29140 -1.49086 8.24851 1.59906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98080 0.20258 -1.00000 - 457 2017 8 21 0 36 55 937 4.8554 177.06964 896.91916 813.23353 -1.05333 9.59447 1.87072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98045 0.20258 -1.00000 - 458 2017 8 21 0 37 0 793 4.8554 177.06890 896.81103 813.16648 -0.49233 10.88659 2.13464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98009 0.20257 -1.00000 - 459 2017 8 21 0 37 5 648 4.8554 177.06817 896.67768 813.09108 -0.15386 11.98055 2.39287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97974 0.20257 -1.00000 - 460 2017 8 21 0 37 10 503 4.8554 177.06742 896.51787 813.00779 -0.16038 12.91242 2.63933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97939 0.20257 -1.00000 - 461 2017 8 21 0 37 15 359 4.8554 177.06667 896.33396 812.91743 -0.16588 13.68079 2.87689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97903 0.20257 -1.00000 - 462 2017 8 21 0 37 20 214 4.8553 177.06593 896.13425 812.82105 -0.17085 14.29482 3.11139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97868 0.20257 -1.00000 - 463 2017 8 21 0 37 25 69 4.8553 177.06519 895.91246 812.71949 -0.17549 14.76410 3.32982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97833 0.20257 -1.00000 - 464 2017 8 21 0 37 29 925 4.8553 177.06442 895.68024 812.61377 -0.17957 15.09950 3.54051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97797 0.20257 -1.00000 - 465 2017 8 21 0 37 34 780 4.8552 177.06357 895.44180 812.50474 -0.18199 15.30821 3.74465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97762 0.20257 -1.00000 - 466 2017 8 21 0 37 39 635 4.8552 177.06273 895.18992 812.39287 -0.18183 15.40159 3.93507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97727 0.20257 -1.00000 - 467 2017 8 21 0 37 44 490 4.8552 177.06193 894.92758 812.27914 -0.17878 15.41169 4.11731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97691 0.20257 -1.00000 - 468 2017 8 21 0 37 49 346 4.8552 177.06111 894.66365 812.16457 -0.17777 15.39684 4.29463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97656 0.20257 -1.00000 - 469 2017 8 21 0 37 54 201 4.8552 177.06022 894.39422 812.04954 -0.18201 15.38366 4.46007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97621 0.20257 -1.00000 - 470 2017 8 21 0 37 59 56 4.8552 177.05934 894.11883 811.93464 -0.18357 15.38802 4.62253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97585 0.20257 -1.00000 - 471 2017 8 21 0 38 3 911 4.8552 177.05854 893.83851 811.82037 -0.18186 15.42443 4.78056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97550 0.20257 -1.00000 - 472 2017 8 21 0 38 8 766 4.8552 177.05777 893.55494 811.70683 -0.17626 16.21086 4.92678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97515 0.20257 -1.00000 - 473 2017 8 21 0 38 13 621 4.8552 177.05690 893.26836 811.59453 -0.16690 17.15695 5.06807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97480 0.20257 -1.00000 - 474 2017 8 21 0 38 18 477 4.8552 177.05603 892.98090 811.48400 -0.15560 17.99690 5.20123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97444 0.20257 -1.00000 - 475 2017 8 21 0 38 23 332 4.8552 177.05527 892.69488 811.37535 -0.15470 18.73471 5.32477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97409 0.20257 -1.00000 - 476 2017 8 21 0 38 28 187 4.8552 177.05456 892.41135 811.26890 -0.15356 19.36470 5.44079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97374 0.20257 -1.00000 - 477 2017 8 21 0 38 33 42 4.8551 177.05383 892.13126 811.16467 -0.14773 19.87154 5.54696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97338 0.20257 -1.00000 - 478 2017 8 21 0 38 37 897 4.8551 177.05307 891.85547 811.06273 -0.13729 20.23611 5.64089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97303 0.20257 -1.00000 - 479 2017 8 21 0 38 42 752 4.8551 177.05232 891.58457 810.96328 -0.12443 20.49896 5.72541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97268 0.20257 -1.00000 - 480 2017 8 21 0 38 47 608 4.8551 177.05158 891.32003 810.86625 -0.11995 20.79896 5.79426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97232 0.20257 -1.00000 - 481 2017 8 21 0 38 52 463 4.8551 177.05086 891.06202 810.77144 -0.11942 21.37077 5.85181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97197 0.20257 -1.00000 - 482 2017 8 21 0 38 57 318 4.8552 177.05016 890.80963 810.67885 -0.11338 21.90115 5.89860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97162 0.20257 -1.00000 - 483 2017 8 21 0 39 2 173 4.8552 177.04947 890.57521 810.58812 -0.10230 22.34609 5.92599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97126 0.20257 -1.00000 - 484 2017 8 21 0 39 7 28 4.8552 177.04886 890.48569 810.49941 -0.08850 22.68743 5.94028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97091 0.20257 -1.00000 - 485 2017 8 21 0 39 11 883 4.8551 177.04832 890.39559 810.41271 -0.08480 23.08675 5.93979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97056 0.20257 -1.00000 - 486 2017 8 21 0 39 16 738 4.8551 177.04773 890.30112 810.32775 -0.08531 23.53635 5.92285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97021 0.20256 -1.00000 - 487 2017 8 21 0 39 21 594 4.8551 177.04705 890.19514 810.24457 -0.08690 24.39668 5.88920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96985 0.20256 -1.00000 - 488 2017 8 21 0 39 26 449 4.8551 177.04638 890.07914 810.16298 -0.09046 25.26707 5.84084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96950 0.20256 -1.00000 - 489 2017 8 21 0 39 31 304 4.8551 177.04577 889.95566 810.08272 -0.09472 26.09810 5.77665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96915 0.20256 -1.00000 - 490 2017 8 21 0 39 36 159 4.8550 177.04514 889.83996 810.00369 -0.09931 26.84639 5.69565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96879 0.20256 -1.00000 - 491 2017 8 21 0 39 41 14 4.8550 177.04441 889.72483 809.92579 -0.10549 27.47445 5.59744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96844 0.20256 -1.00000 - 492 2017 8 21 0 39 45 869 4.8550 177.04367 889.60241 809.84912 -0.11137 27.94845 5.48468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96809 0.20256 -1.00000 - 493 2017 8 21 0 39 50 724 4.8550 177.04301 889.47375 809.77395 -0.11584 28.23956 5.35380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96773 0.20256 -1.00000 - 494 2017 8 21 0 39 55 579 4.8550 177.04242 889.34679 809.70077 -0.11834 28.32500 5.20552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96738 0.20256 -1.00000 - 495 2017 8 21 0 40 0 434 4.8550 177.04183 889.22233 809.62988 -0.11899 28.18906 5.04455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96703 0.20256 -1.00000 - 496 2017 8 21 0 40 5 289 4.8550 177.04118 889.09381 809.56161 -0.11876 27.82312 4.86366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96668 0.20256 -1.00000 - 497 2017 8 21 0 40 10 144 4.8550 177.04052 888.96420 809.49649 -0.12408 27.22510 4.67174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96632 0.20256 -1.00000 - 498 2017 8 21 0 40 14 999 4.8549 177.03985 888.83533 809.43535 -0.12848 26.30648 4.46674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96597 0.20256 -1.00000 - 499 2017 8 21 0 40 19 854 4.8549 177.03916 888.70932 809.37824 -0.13095 25.21980 4.24664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96562 0.20256 -1.00000 - 500 2017 8 21 0 40 24 708 4.8549 177.03845 888.58300 809.32550 -0.13206 24.01979 4.01970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96526 0.20256 -1.00000 - 501 2017 8 21 0 40 29 563 4.8548 177.03771 888.45394 809.27740 -0.13308 22.61801 3.78436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96491 0.20256 -1.00000 - 502 2017 8 21 0 40 34 418 4.8548 177.03692 888.34482 809.23404 -0.16154 21.12365 3.53933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96456 0.20256 -1.00000 - 503 2017 8 21 0 40 39 273 4.8548 177.03614 888.24266 809.19608 -0.19017 19.60083 3.29619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96420 0.20256 -1.00000 - 504 2017 8 21 0 40 44 128 4.8548 177.03539 888.14890 809.16327 -0.20880 18.06965 3.04805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96385 0.20256 -1.00000 - 505 2017 8 21 0 40 48 982 4.8548 177.03464 888.05375 809.13544 -0.21958 16.54243 2.79810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96350 0.20256 -1.00000 - 506 2017 8 21 0 40 53 837 4.8548 177.03389 887.98700 809.11290 -0.22342 15.03088 2.55171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96314 0.20256 -1.00000 - 507 2017 8 21 0 40 58 692 4.8548 177.03310 887.94143 809.09556 -0.22049 13.54470 2.30457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96279 0.20256 -1.00000 - 508 2017 8 21 0 41 3 547 4.8547 177.03228 887.89617 809.08347 -0.26898 12.09114 2.05942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96244 0.20256 -1.00000 - 509 2017 8 21 0 41 8 401 4.8547 177.03154 887.85388 809.07668 -0.32639 10.67680 1.81813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96209 0.20256 -1.00000 - 510 2017 8 21 0 41 13 256 4.8547 177.03084 887.84125 809.07530 -0.37570 9.22127 1.58030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96173 0.20256 -1.00000 - 511 2017 8 21 0 41 18 111 4.8547 177.03011 887.84125 809.07917 -0.41432 7.92275 1.34450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96138 0.20256 -1.00000 - 512 2017 8 21 0 41 22 966 4.8547 177.02930 887.86416 809.08817 -0.55233 6.69689 1.11581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96103 0.20256 -1.00000 - 513 2017 8 21 0 41 27 820 4.8547 177.02848 887.90577 809.10219 -0.72527 5.50146 0.89022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96067 0.20256 -1.00000 - 514 2017 8 21 0 41 32 675 4.8547 177.02770 887.95251 809.12126 -0.88087 4.37012 0.66842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96032 0.20255 -1.00000 - 515 2017 8 21 0 41 37 530 4.8547 177.02695 888.00483 809.14537 -1.18601 3.71356 0.45244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95997 0.20255 -1.00000 - 516 2017 8 21 0 41 42 384 4.8547 177.02621 888.06331 809.17440 -1.42407 3.25754 0.23911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95961 0.20255 -1.00000 - 517 2017 8 21 0 41 47 239 4.8546 177.02547 888.12627 809.20838 -1.80202 2.67280 0.03000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95926 0.20255 -1.00000 - 518 2017 8 21 0 41 52 93 4.8546 177.02473 888.20104 809.24734 -2.29416 2.15982 -0.17374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95891 0.20255 -1.00000 - 519 2017 8 21 0 41 56 948 4.8546 177.02399 888.28129 809.29063 -2.72336 1.66323 -0.37512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95855 0.20255 -1.00000 - 520 2017 8 21 0 42 1 803 4.8546 177.02333 888.36568 809.33836 -3.10793 1.07423 -0.57148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95820 0.20255 -1.00000 - 521 2017 8 21 0 42 6 657 4.8546 177.02271 888.45220 809.39032 -3.55751 0.45115 -0.76313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95785 0.20255 -1.00000 - 522 2017 8 21 0 42 11 512 4.8546 177.02205 888.54607 809.44612 -3.88864 0.11029 -0.94937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95750 0.20255 -1.00000 - 523 2017 8 21 0 42 16 367 4.8546 177.02132 888.65273 809.50566 -4.05965 0.06116 -1.12768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95714 0.20255 -1.00000 - 524 2017 8 21 0 42 21 221 4.8546 177.02058 888.76749 809.56860 -4.26179 0.00614 -1.30117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95679 0.20255 -1.00000 - 525 2017 8 21 0 42 26 76 4.8546 177.01988 888.88711 809.63462 -4.44167 0.00000 -1.46748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95644 0.20255 -1.00000 - 526 2017 8 21 0 42 30 930 4.8546 177.01920 889.01796 809.70336 -4.60718 0.00000 -1.62818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95608 0.20255 -1.00000 - 527 2017 8 21 0 42 35 785 4.8546 177.01849 889.16630 809.77450 -5.14629 0.00000 -1.78361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95573 0.20255 -1.00000 - 528 2017 8 21 0 42 40 639 4.8545 177.01776 889.33159 809.84774 -5.83605 0.00000 -1.93246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95538 0.20255 -1.00000 - 529 2017 8 21 0 42 45 494 4.8545 177.01707 889.50378 809.92286 -6.32073 0.00000 -2.07472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95502 0.20255 -1.00000 - 530 2017 8 21 0 42 50 348 4.8545 177.01643 889.68365 809.99932 -6.86135 0.00000 -2.21352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95467 0.20255 -1.00000 - 531 2017 8 21 0 42 55 203 4.8545 177.01576 889.86832 810.07703 -7.36883 0.00000 -2.34306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95432 0.20255 -1.00000 - 532 2017 8 21 0 43 0 57 4.8545 177.01505 890.04232 810.15585 -7.88082 0.00000 -2.46869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95397 0.20255 -1.00000 - 533 2017 8 21 0 43 4 912 4.8545 177.01433 890.21741 810.23534 -8.45814 0.00000 -2.58761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95361 0.20255 -1.00000 - 534 2017 8 21 0 43 9 766 4.8545 177.01363 890.39977 810.31525 -8.73821 0.00000 -2.69847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95326 0.20255 -1.00000 - 535 2017 8 21 0 43 14 621 4.8544 177.01295 890.58847 810.39546 -9.06737 0.00000 -2.80538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95291 0.20255 -1.00000 - 536 2017 8 21 0 43 19 475 4.8544 177.01224 890.76083 810.47577 -9.35702 0.00000 -2.90165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95255 0.20255 -1.00000 - 537 2017 8 21 0 43 24 330 4.8544 177.01149 890.92743 810.55583 -9.60907 0.00000 -2.99238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95220 0.20255 -1.00000 - 538 2017 8 21 0 43 29 184 4.8544 177.01076 891.09386 810.63561 -9.88532 0.00000 -3.07693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95185 0.20255 -1.00000 - 539 2017 8 21 0 43 34 38 4.8544 177.01008 891.26142 810.71508 -10.07478 0.00000 -3.15116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95149 0.20255 -1.00000 - 540 2017 8 21 0 43 38 893 4.8544 177.00942 891.42526 810.79372 -10.21671 0.00000 -3.21997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95114 0.20255 -1.00000 - 541 2017 8 21 0 43 43 747 4.8544 177.00872 891.58146 810.87152 -10.32810 0.00000 -3.28036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95079 0.20255 -1.00000 - 542 2017 8 21 0 43 48 602 4.8544 177.00800 891.73108 810.94851 -10.51682 0.00000 -3.33070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95044 0.20255 -1.00000 - 543 2017 8 21 0 43 53 456 4.8543 177.00728 891.88621 811.02444 -10.66994 0.00000 -3.37198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95008 0.20254 -1.00000 - 544 2017 8 21 0 43 58 310 4.8543 177.00657 892.03681 811.09924 -10.79545 0.00000 -3.40478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94973 0.20254 -1.00000 - 545 2017 8 21 0 44 3 165 4.8543 177.00585 892.18212 811.17277 -10.90041 0.00000 -3.42645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94938 0.20254 -1.00000 - 546 2017 8 21 0 44 8 19 4.8543 177.00509 892.32158 811.24478 -10.97698 0.00000 -3.43853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94902 0.20254 -1.00000 - 547 2017 8 21 0 44 12 873 4.8543 177.00430 892.46199 811.31511 -11.01978 0.00000 -3.44117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94867 0.20254 -1.00000 - 548 2017 8 21 0 44 17 727 4.8543 177.00356 892.60484 811.38372 -11.02180 0.00000 -3.43379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94832 0.20254 -1.00000 - 549 2017 8 21 0 44 22 582 4.8542 177.00283 892.74526 811.45045 -10.97490 0.00000 -3.41647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94796 0.20254 -1.00000 - 550 2017 8 21 0 44 27 436 4.8542 177.00211 892.88568 811.51527 -10.88902 0.00000 -3.39033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94761 0.20254 -1.00000 - 551 2017 8 21 0 44 32 290 4.8542 177.00140 893.02315 811.57805 -11.01381 0.00000 -3.35406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94726 0.20254 -1.00000 - 552 2017 8 21 0 44 37 144 4.8542 177.00069 893.15821 811.63878 -11.09776 0.00000 -3.31013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94691 0.20254 -1.00000 - 553 2017 8 21 0 44 41 998 4.8542 177.00000 893.28876 811.69754 -11.13791 0.00000 -3.25665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94655 0.20254 -1.00000 - 554 2017 8 21 0 44 46 853 4.8542 176.99932 893.41563 811.75437 -11.13601 0.00000 -3.19415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94620 0.20254 -1.00000 - 555 2017 8 21 0 44 51 707 4.8542 176.99863 893.53653 811.80916 -11.08613 0.00000 -3.12551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94585 0.20254 -1.00000 - 556 2017 8 21 0 44 56 561 4.8542 176.99792 893.65001 811.86197 -10.98362 0.00000 -3.04656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94549 0.20254 -1.00000 - 557 2017 8 21 0 45 1 415 4.8542 176.99719 893.76081 811.91294 -10.82120 0.00000 -2.96171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94514 0.20254 -1.00000 - 558 2017 8 21 0 45 6 269 4.8541 176.99645 893.85983 811.96200 -10.59220 0.00000 -2.87035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94479 0.20254 -1.00000 - 559 2017 8 21 0 45 11 123 4.8541 176.99569 893.95256 812.00914 -10.41293 0.00000 -2.76928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94443 0.20254 -1.00000 - 560 2017 8 21 0 45 15 978 4.8541 176.99495 894.03936 812.05407 -10.20506 0.00000 -2.66265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94408 0.20254 -1.00000 - 561 2017 8 21 0 45 20 832 4.8541 176.99423 894.12377 812.09637 -10.04824 0.00000 -2.54715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94373 0.20254 -1.00000 - 562 2017 8 21 0 45 25 686 4.8541 176.99353 894.19923 812.13597 -9.79686 0.00000 -2.42311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94338 0.20254 -1.00000 - 563 2017 8 21 0 45 30 540 4.8541 176.99284 894.26566 812.17277 -9.43245 0.00000 -2.29293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94302 0.20254 -1.00000 - 564 2017 8 21 0 45 35 394 4.8541 176.99215 894.32366 812.20654 -8.94671 0.00000 -2.15613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94267 0.20254 -1.00000 - 565 2017 8 21 0 45 40 248 4.8541 176.99146 894.37210 812.23689 -8.35155 0.00000 -2.01117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94232 0.20254 -1.00000 - 566 2017 8 21 0 45 45 102 4.8540 176.99076 894.41030 812.26373 -7.66483 0.00000 -1.86252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94196 0.20254 -1.00000 - 567 2017 8 21 0 45 49 956 4.8540 176.99006 894.43864 812.28693 -6.90555 0.00000 -1.70729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94161 0.20254 -1.00000 - 568 2017 8 21 0 45 54 810 4.8540 176.98934 894.45736 812.30639 -6.09105 0.00000 -1.54770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94126 0.20254 -1.00000 - 569 2017 8 21 0 45 59 664 4.8540 176.98860 894.46650 812.32221 -5.23732 0.00000 -1.38341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94090 0.20254 -1.00000 - 570 2017 8 21 0 46 4 518 4.8540 176.98785 894.46668 812.33428 -4.35836 0.00000 -1.21443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94055 0.20254 -1.00000 - 571 2017 8 21 0 46 9 372 4.8540 176.98709 894.45850 812.34259 -3.47770 0.00000 -1.04546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94020 0.20253 -1.00000 - 572 2017 8 21 0 46 14 226 4.8540 176.98636 894.44204 812.34719 -2.66499 0.00000 -0.87224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93985 0.20253 -1.00000 - 573 2017 8 21 0 46 19 80 4.8539 176.98565 894.41802 812.34813 -1.84044 0.00000 -0.69780 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93949 0.20253 -1.00000 - 574 2017 8 21 0 46 23 934 4.8539 176.98493 894.38746 812.34550 -1.34620 0.00000 -0.52466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93914 0.20253 -1.00000 - 575 2017 8 21 0 46 28 788 4.8539 176.98420 894.35040 812.33946 -1.06450 0.18532 -0.34768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93879 0.20253 -1.00000 - 576 2017 8 21 0 46 33 642 4.8539 176.98346 894.30724 812.32993 -0.80511 1.06944 -0.17398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93843 0.20253 -1.00000 - 577 2017 8 21 0 46 38 496 4.8539 176.98274 894.25806 812.31708 -0.55018 1.94400 -0.00079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93808 0.20253 -1.00000 - 578 2017 8 21 0 46 43 349 4.8539 176.98203 894.20468 812.30106 -0.38985 2.79970 0.17292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93773 0.20253 -1.00000 - 579 2017 8 21 0 46 48 203 4.8539 176.98130 894.14558 812.28178 -0.35085 3.62683 0.34046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93737 0.20253 -1.00000 - 580 2017 8 21 0 46 53 57 4.8539 176.98056 894.08066 812.25938 -0.30988 4.41923 0.50654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93702 0.20253 -1.00000 - 581 2017 8 21 0 46 57 911 4.8539 176.97981 894.01061 812.23427 -0.26714 5.16861 0.67053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93667 0.20253 -1.00000 - 582 2017 8 21 0 47 2 765 4.8538 176.97908 893.93790 812.20626 -0.22278 5.86632 0.82747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93632 0.20253 -1.00000 - 583 2017 8 21 0 47 7 619 4.8538 176.97837 893.86095 812.17577 -0.18521 6.51165 0.98470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93596 0.20253 -1.00000 - 584 2017 8 21 0 47 12 473 4.8538 176.97766 893.77787 812.14315 -0.16489 7.10763 1.13817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93561 0.20253 -1.00000 - 585 2017 8 21 0 47 17 326 4.8538 176.97696 893.69384 812.10842 -0.15981 7.56910 1.28348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93526 0.20253 -1.00000 - 586 2017 8 21 0 47 22 180 4.8538 176.97628 893.61000 812.07186 -0.15641 8.11406 1.42901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93490 0.20253 -1.00000 - 587 2017 8 21 0 47 27 34 4.8538 176.97560 893.52423 812.03349 -0.15293 8.57149 1.57031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93455 0.20253 -1.00000 - 588 2017 8 21 0 47 31 888 4.8538 176.97492 893.43576 811.99336 -0.14949 8.98419 1.70267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93420 0.20253 -1.00000 - 589 2017 8 21 0 47 36 742 4.8538 176.97422 893.34720 811.95180 -0.14617 9.35343 1.83483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93384 0.20253 -1.00000 - 590 2017 8 21 0 47 41 595 4.8538 176.97353 893.25648 811.90868 -0.14299 9.67954 1.96229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93349 0.20253 -1.00000 - 591 2017 8 21 0 47 46 449 4.8538 176.97286 893.16384 811.86424 -0.13992 9.96530 2.08144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93314 0.20253 -1.00000 - 592 2017 8 21 0 47 51 303 4.8537 176.97221 893.06908 811.81867 -0.13688 10.21497 2.19846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93279 0.20253 -1.00000 - 593 2017 8 21 0 47 56 157 4.8537 176.97154 892.97387 811.77204 -0.13377 10.43421 2.31008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93243 0.20253 -1.00000 - 594 2017 8 21 0 48 1 10 4.8537 176.97086 892.87907 811.72446 -0.13048 10.63117 2.41512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93208 0.20253 -1.00000 - 595 2017 8 21 0 48 5 864 4.8537 176.97020 892.78369 811.67606 -0.12688 10.81353 2.51711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93173 0.20253 -1.00000 - 596 2017 8 21 0 48 10 718 4.8537 176.96954 892.68758 811.62693 -0.12322 10.98418 2.61397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93137 0.20253 -1.00000 - 597 2017 8 21 0 48 15 571 4.8537 176.96888 892.59144 811.57715 -0.12041 11.14480 2.70353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93102 0.20253 -1.00000 - 598 2017 8 21 0 48 20 425 4.8537 176.96821 892.49471 811.52682 -0.11781 11.29650 2.79120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93067 0.20253 -1.00000 - 599 2017 8 21 0 48 25 279 4.8537 176.96755 892.39731 811.47602 -0.11536 11.43999 2.86948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93031 0.20252 -1.00000 - 600 2017 8 21 0 48 30 132 4.8536 176.96687 892.30035 811.42482 -0.11294 11.57328 2.94125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92996 0.20252 -1.00000 - 601 2017 8 21 0 48 34 986 4.8536 176.96616 892.20303 811.37365 -0.11050 11.60518 3.00943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92961 0.20252 -1.00000 - 602 2017 8 21 0 48 39 840 4.8536 176.96543 892.10649 811.32241 -0.10802 11.67387 3.06745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92926 0.20252 -1.00000 - 603 2017 8 21 0 48 44 693 4.8536 176.96469 892.01214 811.27121 -0.10553 11.81878 3.12242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92890 0.20252 -1.00000 - 604 2017 8 21 0 48 49 547 4.8536 176.96395 891.91327 811.22020 -0.10308 11.91171 3.17087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92855 0.20252 -1.00000 - 605 2017 8 21 0 48 54 400 4.8536 176.96320 891.81580 811.16928 -0.10078 11.99429 3.21131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92820 0.20252 -1.00000 - 606 2017 8 21 0 48 59 254 4.8535 176.96245 891.72197 811.11868 -0.09871 12.06458 3.24657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92784 0.20252 -1.00000 - 607 2017 8 21 0 49 4 107 4.8535 176.96170 891.62859 811.06846 -0.09719 12.12240 3.27735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92749 0.20252 -1.00000 - 608 2017 8 21 0 49 8 961 4.8535 176.96095 891.53644 811.01867 -0.09602 12.16933 3.29960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92714 0.20252 -1.00000 - 609 2017 8 21 0 49 13 814 4.8535 176.96020 891.44573 810.96946 -0.09486 12.20647 3.31778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92679 0.20252 -1.00000 - 610 2017 8 21 0 49 18 668 4.8535 176.95944 891.35681 810.92067 -0.09429 12.23514 3.33055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92643 0.20252 -1.00000 - 611 2017 8 21 0 49 23 521 4.8535 176.95869 891.26954 810.87250 -0.09378 12.25622 3.33492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92608 0.20252 -1.00000 - 612 2017 8 21 0 49 28 375 4.8535 176.95794 891.18425 810.82501 -0.09310 12.27175 3.33611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92573 0.20252 -1.00000 - 613 2017 8 21 0 49 33 228 4.8535 176.95719 891.10179 810.77826 -0.09213 12.27985 3.32906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92537 0.20252 -1.00000 - 614 2017 8 21 0 49 38 82 4.8534 176.95644 891.02174 810.73221 -0.09088 12.27617 3.31668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92502 0.20252 -1.00000 - 615 2017 8 21 0 49 42 935 4.8534 176.95569 890.94368 810.68688 -0.09036 12.25498 3.29784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92467 0.20252 -1.00000 - 616 2017 8 21 0 49 47 789 4.8534 176.95496 890.86743 810.64234 -0.09053 12.21044 3.27065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92431 0.20252 -1.00000 - 617 2017 8 21 0 49 52 642 4.8534 176.95423 890.79312 810.59866 -0.09052 12.13787 3.23765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92396 0.20252 -1.00000 - 618 2017 8 21 0 49 57 495 4.8534 176.95351 890.72103 810.55594 -0.09012 12.03481 3.19879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92361 0.20252 -1.00000 - 619 2017 8 21 0 50 2 349 4.8534 176.95279 890.65146 810.51418 -0.08928 11.90151 3.15126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92326 0.20252 -1.00000 - 620 2017 8 21 0 50 7 202 4.8534 176.95207 890.58304 810.47361 -0.08807 11.74079 3.09821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92290 0.20252 -1.00000 - 621 2017 8 21 0 50 12 56 4.8534 176.95134 890.51730 810.43423 -0.08885 11.55723 3.03693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92255 0.20252 -1.00000 - 622 2017 8 21 0 50 16 909 4.8534 176.95063 890.45818 810.39624 -0.08932 11.35473 2.96936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92220 0.20252 -1.00000 - 623 2017 8 21 0 50 21 762 4.8534 176.94992 890.40013 810.35993 -0.08921 11.04256 2.89551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92184 0.20252 -1.00000 - 624 2017 8 21 0 50 26 616 4.8534 176.94922 890.35061 810.32521 -0.08851 10.76247 2.81361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92149 0.20252 -1.00000 - 625 2017 8 21 0 50 31 469 4.8534 176.94851 890.30480 810.29206 -0.08752 10.55427 2.73044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92114 0.20252 -1.00000 - 626 2017 8 21 0 50 36 323 4.8534 176.94782 890.25263 810.26054 -0.08716 10.29106 2.63892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92079 0.20252 -1.00000 - 627 2017 8 21 0 50 41 176 4.8533 176.94711 890.20884 810.23077 -0.08838 10.01747 2.54176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92043 0.20251 -1.00000 - 628 2017 8 21 0 50 46 29 4.8533 176.94641 890.16126 810.20257 -0.08997 9.72595 2.44184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92008 0.20251 -1.00000 - 629 2017 8 21 0 50 50 883 4.8533 176.94571 890.12317 810.17619 -0.09132 9.41166 2.33894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91973 0.20251 -1.00000 - 630 2017 8 21 0 50 55 736 4.8533 176.94502 890.08778 810.15152 -0.09237 9.07624 2.23211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91937 0.20251 -1.00000 - 631 2017 8 21 0 51 0 589 4.8533 176.94435 890.05563 810.12870 -0.09396 8.72343 2.12061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91902 0.20251 -1.00000 - 632 2017 8 21 0 51 5 442 4.8533 176.94367 890.02686 810.10781 -0.09683 8.35936 2.00864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91867 0.20251 -1.00000 - 633 2017 8 21 0 51 10 296 4.8533 176.94299 890.00147 810.08882 -0.09985 7.98655 1.89199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91831 0.20251 -1.00000 - 634 2017 8 21 0 51 15 149 4.8533 176.94232 889.97980 810.07185 -0.10311 7.60694 1.77508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91796 0.20251 -1.00000 - 635 2017 8 21 0 51 20 2 4.8533 176.94166 889.96168 810.05685 -0.10660 7.22232 1.65752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91761 0.20251 -1.00000 - 636 2017 8 21 0 51 24 856 4.8533 176.94099 889.94712 810.04364 -0.11030 6.83436 1.53513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91726 0.20251 -1.00000 - 637 2017 8 21 0 51 29 709 4.8533 176.94031 889.93575 810.03240 -0.11418 6.44459 1.41368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91690 0.20251 -1.00000 - 638 2017 8 21 0 51 34 562 4.8532 176.93963 889.92775 810.02303 -0.11820 6.05439 1.29165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91655 0.20251 -1.00000 - 639 2017 8 21 0 51 39 415 4.8532 176.93893 889.92287 810.01551 -0.12228 5.66490 1.16609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91620 0.20251 -1.00000 - 640 2017 8 21 0 51 44 269 4.8532 176.93823 889.92029 810.00991 -0.12727 5.27714 1.04119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91584 0.20251 -1.00000 - 641 2017 8 21 0 51 49 122 4.8532 176.93752 889.92082 810.00626 -0.13466 4.89129 0.91572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91549 0.20251 -1.00000 - 642 2017 8 21 0 51 53 975 4.8532 176.93682 889.92748 810.00444 -0.14421 4.50673 0.78709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91514 0.20251 -1.00000 - 643 2017 8 21 0 51 58 828 4.8532 176.93611 889.93487 810.00452 -0.15995 4.12585 0.66167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91479 0.20251 -1.00000 - 644 2017 8 21 0 52 3 681 4.8532 176.93539 889.94484 810.00642 -0.17884 3.74981 0.53299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91443 0.20251 -1.00000 - 645 2017 8 21 0 52 8 534 4.8532 176.93469 889.95827 810.01008 -0.19822 3.37894 0.40339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91408 0.20251 -1.00000 - 646 2017 8 21 0 52 13 388 4.8531 176.93399 889.97430 810.01573 -0.25694 3.01323 0.27746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91373 0.20251 -1.00000 - 647 2017 8 21 0 52 18 241 4.8531 176.93330 889.99160 810.02315 -0.37313 2.64956 0.14675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91337 0.20251 -1.00000 - 648 2017 8 21 0 52 23 94 4.8531 176.93259 890.01875 810.03225 -0.60080 2.28523 0.01607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91302 0.20251 -1.00000 - 649 2017 8 21 0 52 27 947 4.8531 176.93188 890.04442 810.04323 -0.67915 1.92314 -0.10683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91267 0.20251 -1.00000 - 650 2017 8 21 0 52 32 800 4.8531 176.93116 890.06732 810.05604 -0.95539 1.48552 -0.23467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91231 0.20251 -1.00000 - 651 2017 8 21 0 52 37 653 4.8531 176.93045 890.09958 810.07060 -1.21572 1.17061 -0.36048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91196 0.20251 -1.00000 - 652 2017 8 21 0 52 42 506 4.8531 176.92973 890.13437 810.08685 -1.33937 0.84268 -0.47806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91161 0.20251 -1.00000 - 653 2017 8 21 0 52 47 359 4.8531 176.92902 890.17034 810.10453 -1.67352 0.50943 -0.60027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91126 0.20251 -1.00000 - 654 2017 8 21 0 52 52 212 4.8531 176.92832 890.21187 810.12377 -1.90850 0.18019 -0.71851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91090 0.20251 -1.00000 - 655 2017 8 21 0 52 57 65 4.8531 176.92761 890.25318 810.14447 -2.12939 0.00000 -0.83241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91055 0.20250 -1.00000 - 656 2017 8 21 0 53 1 919 4.8530 176.92691 890.29748 810.16656 -2.40089 0.00000 -0.94559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91020 0.20250 -1.00000 - 657 2017 8 21 0 53 6 772 4.8530 176.92621 890.34383 810.19001 -2.59680 0.00000 -1.05471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90984 0.20250 -1.00000 - 658 2017 8 21 0 53 11 625 4.8530 176.92552 890.39374 810.21483 -2.83338 0.00000 -1.16202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90949 0.20250 -1.00000 - 659 2017 8 21 0 53 16 478 4.8530 176.92482 890.44749 810.24103 -3.06250 0.00000 -1.26753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90914 0.20250 -1.00000 - 660 2017 8 21 0 53 21 331 4.8530 176.92415 890.50022 810.26842 -3.27732 0.00000 -1.36946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90879 0.20250 -1.00000 - 661 2017 8 21 0 53 26 184 4.8530 176.92348 890.56076 810.29696 -3.48273 0.00000 -1.46625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90843 0.20250 -1.00000 - 662 2017 8 21 0 53 31 37 4.8530 176.92282 890.61494 810.32648 -3.68629 0.00000 -1.56168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90808 0.20250 -1.00000 - 663 2017 8 21 0 53 35 890 4.8530 176.92216 890.67439 810.35698 -3.92055 0.00000 -1.65401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90773 0.20250 -1.00000 - 664 2017 8 21 0 53 40 743 4.8530 176.92150 890.74109 810.38869 -4.14886 0.00000 -1.74069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90737 0.20250 -1.00000 - 665 2017 8 21 0 53 45 596 4.8530 176.92084 890.80186 810.42124 -4.36512 0.00000 -1.82490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90702 0.20250 -1.00000 - 666 2017 8 21 0 53 50 449 4.8530 176.92017 890.86531 810.45453 -4.57344 0.00000 -1.90590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90667 0.20250 -1.00000 - 667 2017 8 21 0 53 55 302 4.8530 176.91950 890.93112 810.48871 -4.77459 0.00000 -1.97854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90631 0.20250 -1.00000 - 668 2017 8 21 0 54 0 154 4.8529 176.91884 890.99834 810.52342 -4.95986 0.00000 -2.05018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90596 0.20250 -1.00000 - 669 2017 8 21 0 54 5 7 4.8529 176.91819 891.06566 810.55868 -5.13476 0.00000 -2.11854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90561 0.20250 -1.00000 - 670 2017 8 21 0 54 9 860 4.8529 176.91756 891.13305 810.59457 -5.30253 0.00000 -2.17938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90526 0.20250 -1.00000 - 671 2017 8 21 0 54 14 713 4.8529 176.91693 891.20338 810.63097 -5.48679 0.00000 -2.24119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90490 0.20250 -1.00000 - 672 2017 8 21 0 54 19 566 4.8529 176.91629 891.27356 810.66804 -5.63181 0.00000 -2.29583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90455 0.20250 -1.00000 - 673 2017 8 21 0 54 24 419 4.8529 176.91566 891.34650 810.70570 -5.76105 0.00000 -2.34337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90420 0.20250 -1.00000 - 674 2017 8 21 0 54 29 272 4.8529 176.91501 891.42033 810.74349 -5.98151 0.00000 -2.38995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90384 0.20250 -1.00000 - 675 2017 8 21 0 54 34 125 4.8529 176.91436 891.49116 810.78168 -6.05196 0.00000 -2.42838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90349 0.20250 -1.00000 - 676 2017 8 21 0 54 38 978 4.8529 176.91373 891.56197 810.82009 -6.18406 0.00000 -2.46459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90314 0.20250 -1.00000 - 677 2017 8 21 0 54 43 830 4.8528 176.91311 891.62993 810.85861 -6.30974 0.00000 -2.49752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90279 0.20250 -1.00000 - 678 2017 8 21 0 54 48 683 4.8528 176.91247 891.70188 810.89732 -6.36572 0.00000 -2.51788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90243 0.20250 -1.00000 - 679 2017 8 21 0 54 53 536 4.8528 176.91183 891.77480 810.93601 -6.45572 0.00000 -2.53917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90208 0.20250 -1.00000 - 680 2017 8 21 0 54 58 389 4.8528 176.91121 891.84754 810.97458 -6.52707 0.00000 -2.55457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90173 0.20250 -1.00000 - 681 2017 8 21 0 55 3 242 4.8528 176.91061 891.91974 811.01312 -6.57339 0.00000 -2.55983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90137 0.20250 -1.00000 - 682 2017 8 21 0 55 8 95 4.8528 176.90998 891.99183 811.05149 -6.60432 0.00000 -2.56440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90102 0.20250 -1.00000 - 683 2017 8 21 0 55 12 947 4.8528 176.90933 892.06317 811.08953 -6.62102 0.00000 -2.56145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90067 0.20249 -1.00000 - 684 2017 8 21 0 55 17 800 4.8528 176.90871 892.13347 811.12721 -6.62330 0.00000 -2.55210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90032 0.20249 -1.00000 - 685 2017 8 21 0 55 22 653 4.8528 176.90809 892.20282 811.16440 -6.61104 0.00000 -2.53828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89996 0.20249 -1.00000 - 686 2017 8 21 0 55 27 506 4.8527 176.90744 892.27124 811.20120 -6.58427 0.00000 -2.51897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89961 0.20249 -1.00000 - 687 2017 8 21 0 55 32 358 4.8527 176.90680 892.33928 811.23739 -6.54307 0.00000 -2.49287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89926 0.20249 -1.00000 - 688 2017 8 21 0 55 37 211 4.8527 176.90618 892.40620 811.27288 -6.48767 0.00000 -2.46344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89890 0.20249 -1.00000 - 689 2017 8 21 0 55 42 64 4.8527 176.90556 892.47159 811.30769 -6.41907 0.00000 -2.42782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89855 0.20249 -1.00000 - 690 2017 8 21 0 55 46 917 4.8527 176.90492 892.53555 811.34166 -6.33783 0.00000 -2.38537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89820 0.20249 -1.00000 - 691 2017 8 21 0 55 51 769 4.8527 176.90427 892.59802 811.37474 -6.24403 0.00000 -2.34099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89785 0.20249 -1.00000 - 692 2017 8 21 0 55 56 622 4.8527 176.90364 892.65882 811.40698 -6.13808 0.00000 -2.29091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89749 0.20249 -1.00000 - 693 2017 8 21 0 56 1 475 4.8527 176.90300 892.71812 811.43831 -6.02036 0.00000 -2.23595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89714 0.20249 -1.00000 - 694 2017 8 21 0 56 6 327 4.8527 176.90236 892.77559 811.46858 -5.89120 0.00000 -2.17875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89679 0.20249 -1.00000 - 695 2017 8 21 0 56 11 180 4.8527 176.90171 892.83113 811.49791 -5.75225 0.00000 -2.11634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89643 0.20249 -1.00000 - 696 2017 8 21 0 56 16 33 4.8527 176.90108 892.88499 811.52628 -5.60453 0.00000 -2.05058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89608 0.20249 -1.00000 - 697 2017 8 21 0 56 20 885 4.8526 176.90046 892.93367 811.55351 -5.51014 0.00000 -1.98287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89573 0.20249 -1.00000 - 698 2017 8 21 0 56 25 738 4.8526 176.89985 892.98291 811.57978 -5.32052 0.00000 -1.90817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89537 0.20249 -1.00000 - 699 2017 8 21 0 56 30 590 4.8526 176.89924 893.03294 811.60486 -5.14740 0.00000 -1.83263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89502 0.20249 -1.00000 - 700 2017 8 21 0 56 35 443 4.8526 176.89863 893.08053 811.62871 -4.95478 0.00000 -1.75288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89467 0.20249 -1.00000 - 701 2017 8 21 0 56 40 296 4.8526 176.89805 893.12651 811.65150 -4.75630 0.00000 -1.66825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89432 0.20249 -1.00000 - 702 2017 8 21 0 56 45 148 4.8526 176.89746 893.17126 811.67296 -4.55079 0.00000 -1.58087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89396 0.20249 -1.00000 - 703 2017 8 21 0 56 50 1 4.8526 176.89687 893.21399 811.69301 -4.33850 0.00000 -1.49214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89361 0.20249 -1.00000 - 704 2017 8 21 0 56 54 853 4.8526 176.89629 893.25472 811.71182 -4.12218 0.00000 -1.39845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89326 0.20249 -1.00000 - 705 2017 8 21 0 56 59 706 4.8526 176.89572 893.29367 811.72916 -3.89967 0.00000 -1.30203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89290 0.20249 -1.00000 - 706 2017 8 21 0 57 4 559 4.8526 176.89514 893.33095 811.74492 -3.67790 0.00000 -1.20665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89255 0.20249 -1.00000 - 707 2017 8 21 0 57 9 411 4.8526 176.89456 893.36379 811.75915 -3.44693 0.00000 -1.10521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89220 0.20249 -1.00000 - 708 2017 8 21 0 57 14 264 4.8526 176.89399 893.39175 811.77181 -3.28647 0.00000 -1.00531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89185 0.20249 -1.00000 - 709 2017 8 21 0 57 19 116 4.8526 176.89342 893.42288 811.78275 -2.97714 0.00000 -0.90351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89149 0.20249 -1.00000 - 710 2017 8 21 0 57 23 969 4.8525 176.89283 893.45069 811.79212 -2.80385 0.00000 -0.80005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89114 0.20249 -1.00000 - 711 2017 8 21 0 57 28 821 4.8525 176.89224 893.48025 811.79985 -2.58575 0.00270 -0.69622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89079 0.20248 -1.00000 - 712 2017 8 21 0 57 33 674 4.8525 176.89165 893.50340 811.80592 -2.26401 0.07599 -0.58707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89043 0.20248 -1.00000 - 713 2017 8 21 0 57 38 526 4.8525 176.89108 893.52118 811.81018 -1.97836 0.16220 -0.47934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89008 0.20248 -1.00000 - 714 2017 8 21 0 57 43 379 4.8525 176.89055 893.53904 811.81231 -1.68369 0.25849 -0.37191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88973 0.20248 -1.00000 - 715 2017 8 21 0 57 48 232 4.8525 176.89002 893.55307 811.81251 -1.38505 0.34858 -0.25964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88938 0.20248 -1.00000 - 716 2017 8 21 0 57 53 84 4.8525 176.88946 893.56341 811.81067 -1.08508 0.49962 -0.14760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88902 0.20248 -1.00000 - 717 2017 8 21 0 57 57 936 4.8525 176.88890 893.56995 811.80665 -0.79272 0.58852 -0.03823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88867 0.20248 -1.00000 - 718 2017 8 21 0 58 2 789 4.8525 176.88835 893.57533 811.80068 -0.51345 0.72309 0.07532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88832 0.20248 -1.00000 - 719 2017 8 21 0 58 7 641 4.8525 176.88780 893.57734 811.79261 -0.28053 0.83437 0.18670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88796 0.20248 -1.00000 - 720 2017 8 21 0 58 12 494 4.8525 176.88724 893.57175 811.78235 -0.12664 0.94279 0.29686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88761 0.20248 -1.00000 - 721 2017 8 21 0 58 17 346 4.8525 176.88667 893.56473 811.76983 -0.12485 1.16912 0.40821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88726 0.20248 -1.00000 - 722 2017 8 21 0 58 22 199 4.8524 176.88610 893.55306 811.75515 -0.12329 1.31452 0.51980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88691 0.20248 -1.00000 - 723 2017 8 21 0 58 27 51 4.8524 176.88554 893.53719 811.73805 -0.12201 1.50768 0.62770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88655 0.20248 -1.00000 - 724 2017 8 21 0 58 31 904 4.8524 176.88500 893.51646 811.71878 -0.12101 1.76568 0.73571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88620 0.20248 -1.00000 - 725 2017 8 21 0 58 36 756 4.8524 176.88447 893.49064 811.69745 -0.12031 1.92885 0.83934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88585 0.20248 -1.00000 - 726 2017 8 21 0 58 41 608 4.8524 176.88392 893.46473 811.67407 -0.11987 2.14700 0.94058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88549 0.20248 -1.00000 - 727 2017 8 21 0 58 46 461 4.8524 176.88337 893.42774 811.64858 -0.11964 2.42687 1.04234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88514 0.20248 -1.00000 - 728 2017 8 21 0 58 51 313 4.8524 176.88282 893.39051 811.62108 -0.11951 2.72230 1.13897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88479 0.20248 -1.00000 - 729 2017 8 21 0 58 56 166 4.8524 176.88228 893.34859 811.59146 -0.11935 3.04853 1.23422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88444 0.20248 -1.00000 - 730 2017 8 21 0 59 1 18 4.8524 176.88173 893.30179 811.55989 -0.11906 3.36986 1.32676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88408 0.20248 -1.00000 - 731 2017 8 21 0 59 5 870 4.8524 176.88114 893.25025 811.52649 -0.11857 3.60248 1.41474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88373 0.20248 -1.00000 - 732 2017 8 21 0 59 10 723 4.8524 176.88056 893.19879 811.49135 -0.11789 3.87755 1.49822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88338 0.20248 -1.00000 - 733 2017 8 21 0 59 15 575 4.8523 176.87999 893.13730 811.45454 -0.11703 4.23655 1.58167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88302 0.20248 -1.00000 - 734 2017 8 21 0 59 20 427 4.8523 176.87945 893.07538 811.41612 -0.11608 4.54676 1.66067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88267 0.20248 -1.00000 - 735 2017 8 21 0 59 25 280 4.8523 176.87891 893.00974 811.37589 -0.11510 4.84851 1.73387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88232 0.20248 -1.00000 - 736 2017 8 21 0 59 30 132 4.8523 176.87834 892.93940 811.33406 -0.11416 5.14052 1.80519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88197 0.20248 -1.00000 - 737 2017 8 21 0 59 34 984 4.8523 176.87775 892.86502 811.29080 -0.11332 5.42480 1.87333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88161 0.20248 -1.00000 - 738 2017 8 21 0 59 39 837 4.8523 176.87717 892.78623 811.24607 -0.11265 5.61893 1.93197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88126 0.20248 -1.00000 - 739 2017 8 21 0 59 44 689 4.8523 176.87662 892.70566 811.20022 -0.11221 5.93866 1.99278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88091 0.20248 -1.00000 - 740 2017 8 21 0 59 49 541 4.8523 176.87608 892.61676 811.15315 -0.11207 6.20663 2.04532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88055 0.20247 -1.00000 - 741 2017 8 21 0 59 54 394 4.8523 176.87552 892.52554 811.10492 -0.11228 6.46095 2.09338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88020 0.20247 -1.00000 - 742 2017 8 21 0 59 59 246 4.8523 176.87494 892.43580 811.05558 -0.11287 6.70280 2.13981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87985 0.20247 -1.00000 - 743 2017 8 21 1 0 4 98 4.8523 176.87439 892.34297 811.00537 -0.11379 6.93791 2.17784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87950 0.20247 -1.00000 - 744 2017 8 21 1 0 8 950 4.8523 176.87387 892.24763 810.95432 -0.11496 7.16629 2.21278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87914 0.20247 -1.00000 - 745 2017 8 21 1 0 13 803 4.8523 176.87338 892.14954 810.90275 -0.11625 7.38696 2.24502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87879 0.20247 -1.00000 - 746 2017 8 21 1 0 18 655 4.8523 176.87286 892.04970 810.85050 -0.11752 7.59694 2.26998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87844 0.20247 -1.00000 - 747 2017 8 21 1 0 23 507 4.8523 176.87233 891.94786 810.79766 -0.11873 7.79337 2.29017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87808 0.20247 -1.00000 - 748 2017 8 21 1 0 28 359 4.8522 176.87181 891.84420 810.74455 -0.11993 7.97413 2.30543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87773 0.20247 -1.00000 - 749 2017 8 21 1 0 33 212 4.8522 176.87131 891.73955 810.69116 -0.12120 8.13785 2.31369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87738 0.20247 -1.00000 - 750 2017 8 21 1 0 38 64 4.8522 176.87083 891.63399 810.63770 -0.12294 8.28395 2.31784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87703 0.20247 -1.00000 - 751 2017 8 21 1 0 42 916 4.8522 176.87033 891.52776 810.58429 -0.12645 8.41195 2.31655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87667 0.20247 -1.00000 - 752 2017 8 21 1 0 47 768 4.8522 176.86982 891.42138 810.53097 -0.13010 8.52144 2.30691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87632 0.20247 -1.00000 - 753 2017 8 21 1 0 52 621 4.8522 176.86933 891.31468 810.47792 -0.13389 8.61216 2.29378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87597 0.20247 -1.00000 - 754 2017 8 21 1 0 57 473 4.8522 176.86884 891.20827 810.42535 -0.13784 8.68388 2.27281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87561 0.20247 -1.00000 - 755 2017 8 21 1 1 2 325 4.8522 176.86833 891.10295 810.37331 -0.14460 8.73665 2.24522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87526 0.20247 -1.00000 - 756 2017 8 21 1 1 7 177 4.8522 176.86780 890.99841 810.32202 -0.15174 8.77028 2.21575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87491 0.20247 -1.00000 - 757 2017 8 21 1 1 12 29 4.8522 176.86728 890.89324 810.27140 -0.15903 8.78139 2.17522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87456 0.20247 -1.00000 - 758 2017 8 21 1 1 16 882 4.8522 176.86677 890.79145 810.22172 -0.16645 8.76678 2.12996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87420 0.20247 -1.00000 - 759 2017 8 21 1 1 21 734 4.8522 176.86627 890.69186 810.17317 -0.17400 8.73028 2.08204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87385 0.20247 -1.00000 - 760 2017 8 21 1 1 26 586 4.8522 176.86577 890.59462 810.12576 -0.18167 8.67619 2.02435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87350 0.20247 -1.00000 - 761 2017 8 21 1 1 31 438 4.8522 176.86527 890.49951 810.07969 -0.18947 8.60319 1.96153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87314 0.20247 -1.00000 - 762 2017 8 21 1 1 36 290 4.8521 176.86479 890.40666 810.03523 -0.20110 8.50923 1.89502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87279 0.20247 -1.00000 - 763 2017 8 21 1 1 41 142 4.8521 176.86432 890.31419 809.99222 -0.21348 8.39222 1.82109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87244 0.20247 -1.00000 - 764 2017 8 21 1 1 45 994 4.8521 176.86385 890.22677 809.95095 -0.22605 8.25084 1.74356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87209 0.20247 -1.00000 - 765 2017 8 21 1 1 50 847 4.8521 176.86334 890.14408 809.91148 -0.23880 8.08378 1.66122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87173 0.20247 -1.00000 - 766 2017 8 21 1 1 55 699 4.8521 176.86281 890.06520 809.87393 -0.25173 7.89058 1.57290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87138 0.20247 -1.00000 - 767 2017 8 21 1 2 0 551 4.8521 176.86229 889.99094 809.83846 -0.26481 7.67081 1.47937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87103 0.20247 -1.00000 - 768 2017 8 21 1 2 5 403 4.8521 176.86180 889.92132 809.80518 -0.27993 7.42463 1.38384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87067 0.20246 -1.00000 - 769 2017 8 21 1 2 10 255 4.8521 176.86131 889.85283 809.77410 -0.30039 7.15376 1.27979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87032 0.20246 -1.00000 - 770 2017 8 21 1 2 15 107 4.8521 176.86083 889.79265 809.74537 -0.32446 6.86004 1.17339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86997 0.20246 -1.00000 - 771 2017 8 21 1 2 19 959 4.8521 176.86035 889.73880 809.71926 -0.35425 6.45846 1.06568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86962 0.20246 -1.00000 - 772 2017 8 21 1 2 24 811 4.8521 176.85989 889.69605 809.69575 -0.38625 6.07843 0.95003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86926 0.20246 -1.00000 - 773 2017 8 21 1 2 29 663 4.8521 176.85944 889.65449 809.67475 -0.42869 5.76587 0.83521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86891 0.20246 -1.00000 - 774 2017 8 21 1 2 34 515 4.8521 176.85897 889.61493 809.65642 -0.47106 5.39420 0.71744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86856 0.20246 -1.00000 - 775 2017 8 21 1 2 39 367 4.8521 176.85847 889.58325 809.64061 -0.52588 5.00945 0.59392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86820 0.20246 -1.00000 - 776 2017 8 21 1 2 44 220 4.8521 176.85794 889.55962 809.62742 -0.58682 4.61156 0.47120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86785 0.20246 -1.00000 - 777 2017 8 21 1 2 49 72 4.8520 176.85744 889.54383 809.61699 -0.67348 4.11520 0.34415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86750 0.20246 -1.00000 - 778 2017 8 21 1 2 53 924 4.8520 176.85699 889.53666 809.60929 -0.75699 3.65552 0.21531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86715 0.20246 -1.00000 - 779 2017 8 21 1 2 58 776 4.8520 176.85655 889.52925 809.60427 -0.84172 3.27823 0.08895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86679 0.20246 -1.00000 - 780 2017 8 21 1 3 3 628 4.8520 176.85609 889.52438 809.60184 -0.93017 2.85302 -0.04051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86644 0.20246 -1.00000 - 781 2017 8 21 1 3 8 480 4.8520 176.85563 889.52989 809.60175 -1.02067 2.42185 -0.17124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86609 0.20246 -1.00000 - 782 2017 8 21 1 3 13 332 4.8520 176.85517 889.53848 809.60421 -1.13593 1.98427 -0.29838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86573 0.20246 -1.00000 - 783 2017 8 21 1 3 18 184 4.8520 176.85471 889.55730 809.60923 -1.33173 1.45761 -0.42836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86538 0.20246 -1.00000 - 784 2017 8 21 1 3 23 36 4.8520 176.85424 889.58443 809.61667 -1.42501 0.97661 -0.55790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86503 0.20246 -1.00000 - 785 2017 8 21 1 3 27 888 4.8520 176.85375 889.61065 809.62668 -1.57943 0.58431 -0.68366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86468 0.20246 -1.00000 - 786 2017 8 21 1 3 32 740 4.8520 176.85326 889.63854 809.63905 -1.74501 0.14872 -0.80947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86432 0.20246 -1.00000 - 787 2017 8 21 1 3 37 592 4.8520 176.85281 889.67449 809.65345 -2.05871 0.00000 -0.93748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86397 0.20246 -1.00000 - 788 2017 8 21 1 3 42 444 4.8520 176.85239 889.71601 809.67014 -2.32637 0.00000 -1.05699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86362 0.20246 -1.00000 - 789 2017 8 21 1 3 47 296 4.8520 176.85196 889.76388 809.68892 -2.51629 0.00000 -1.17826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86326 0.20246 -1.00000 - 790 2017 8 21 1 3 52 148 4.8520 176.85152 889.81901 809.70948 -2.94361 0.00000 -1.29938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86291 0.20246 -1.00000 - 791 2017 8 21 1 3 57 0 4.8520 176.85106 889.87183 809.73225 -3.24182 0.00000 -1.41332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86256 0.20246 -1.00000 - 792 2017 8 21 1 4 1 852 4.8520 176.85061 889.92717 809.75682 -3.69382 0.00000 -1.52491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86221 0.20246 -1.00000 - 793 2017 8 21 1 4 6 704 4.8519 176.85016 889.98800 809.78320 -4.07554 0.00000 -1.63500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86185 0.20246 -1.00000 - 794 2017 8 21 1 4 11 555 4.8519 176.84970 890.05179 809.81126 -4.31795 0.00000 -1.73845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86150 0.20246 -1.00000 - 795 2017 8 21 1 4 16 407 4.8519 176.84924 890.12225 809.84081 -4.61399 0.00000 -1.83949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86115 0.20246 -1.00000 - 796 2017 8 21 1 4 21 259 4.8519 176.84879 890.19500 809.87189 -4.90145 0.00000 -1.93713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86079 0.20245 -1.00000 - 797 2017 8 21 1 4 26 111 4.8519 176.84836 890.26951 809.90436 -5.19917 0.00000 -2.02642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86044 0.20245 -1.00000 - 798 2017 8 21 1 4 30 963 4.8519 176.84795 890.34365 809.93803 -5.56288 0.00000 -2.11664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86009 0.20245 -1.00000 - 799 2017 8 21 1 4 35 815 4.8519 176.84754 890.42271 809.97283 -5.85497 0.00000 -2.19960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85974 0.20245 -1.00000 - 800 2017 8 21 1 4 40 667 4.8519 176.84711 890.50358 810.00876 -6.07456 0.00000 -2.27506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85938 0.20245 -1.00000 - 801 2017 8 21 1 4 45 519 4.8519 176.84666 890.58662 810.04559 -6.34055 0.00000 -2.34974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85903 0.20245 -1.00000 - 802 2017 8 21 1 4 50 371 4.8519 176.84620 890.67131 810.08323 -6.59087 0.00000 -2.41711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85868 0.20245 -1.00000 - 803 2017 8 21 1 4 55 223 4.8519 176.84576 890.75750 810.12158 -6.82452 0.00000 -2.47895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85832 0.20245 -1.00000 - 804 2017 8 21 1 5 0 75 4.8519 176.84532 890.84485 810.16048 -7.04059 0.00000 -2.53783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85797 0.20245 -1.00000 - 805 2017 8 21 1 5 4 926 4.8519 176.84488 890.93302 810.19994 -7.23942 0.00000 -2.58924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85762 0.20245 -1.00000 - 806 2017 8 21 1 5 9 778 4.8519 176.84445 891.02209 810.23981 -7.42132 0.00000 -2.63386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85727 0.20245 -1.00000 - 807 2017 8 21 1 5 14 630 4.8519 176.84404 891.11193 810.27986 -7.58599 0.00000 -2.67611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85691 0.20245 -1.00000 - 808 2017 8 21 1 5 19 482 4.8519 176.84363 891.20187 810.32003 -7.73465 0.00000 -2.71030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85656 0.20245 -1.00000 - 809 2017 8 21 1 5 24 334 4.8518 176.84320 891.29210 810.36031 -7.86949 0.00000 -2.73881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85621 0.20245 -1.00000 - 810 2017 8 21 1 5 29 186 4.8518 176.84274 891.38243 810.40043 -7.98851 0.00000 -2.76407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85585 0.20245 -1.00000 - 811 2017 8 21 1 5 34 38 4.8518 176.84229 891.47207 810.44044 -8.09005 0.00000 -2.77997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85550 0.20245 -1.00000 - 812 2017 8 21 1 5 38 889 4.8518 176.84185 891.56129 810.48020 -8.17536 0.00000 -2.79158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85515 0.20245 -1.00000 - 813 2017 8 21 1 5 43 741 4.8518 176.84143 891.64999 810.51962 -8.24437 0.00000 -2.79853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85480 0.20245 -1.00000 - 814 2017 8 21 1 5 48 593 4.8518 176.84102 891.73777 810.55866 -8.32352 0.00000 -2.79768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85444 0.20245 -1.00000 - 815 2017 8 21 1 5 53 445 4.8518 176.84060 891.82452 810.59716 -8.42508 0.00000 -2.79311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85409 0.20245 -1.00000 - 816 2017 8 21 1 5 58 297 4.8518 176.84017 891.91062 810.63504 -8.50639 0.00000 -2.78264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85374 0.20245 -1.00000 - 817 2017 8 21 1 6 3 148 4.8518 176.83975 891.99512 810.67219 -8.56102 0.00000 -2.76391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85338 0.20245 -1.00000 - 818 2017 8 21 1 6 8 0 4.8518 176.83932 892.07769 810.70842 -8.58605 0.00000 -2.74290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85303 0.20245 -1.00000 - 819 2017 8 21 1 6 12 852 4.8518 176.83890 892.15772 810.74361 -8.58043 0.00000 -2.71436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85268 0.20245 -1.00000 - 820 2017 8 21 1 6 17 704 4.8518 176.83848 892.23491 810.77782 -8.54379 0.00000 -2.67940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85233 0.20245 -1.00000 - 821 2017 8 21 1 6 22 556 4.8518 176.83806 892.30974 810.81064 -8.47624 0.00000 -2.64178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85197 0.20245 -1.00000 - 822 2017 8 21 1 6 27 407 4.8518 176.83765 892.38102 810.84219 -8.37825 0.00000 -2.59595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85162 0.20245 -1.00000 - 823 2017 8 21 1 6 32 259 4.8518 176.83725 892.44463 810.87231 -8.25211 0.00000 -2.54757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85127 0.20245 -1.00000 - 824 2017 8 21 1 6 37 111 4.8518 176.83684 892.50529 810.90092 -8.10415 0.00000 -2.49552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85091 0.20244 -1.00000 - 825 2017 8 21 1 6 41 963 4.8518 176.83642 892.56690 810.92811 -7.93651 0.00000 -2.43333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85056 0.20244 -1.00000 - 826 2017 8 21 1 6 46 814 4.8518 176.83599 892.62531 810.95363 -7.74675 0.00000 -2.37064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85021 0.20244 -1.00000 - 827 2017 8 21 1 6 51 666 4.8517 176.83559 892.68006 810.97750 -7.53557 0.00000 -2.30315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84986 0.20244 -1.00000 - 828 2017 8 21 1 6 56 518 4.8517 176.83521 892.73067 810.99969 -7.30411 0.00000 -2.22716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84950 0.20244 -1.00000 - 829 2017 8 21 1 7 1 370 4.8517 176.83482 892.77737 811.02002 -7.05449 0.00000 -2.15124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84915 0.20244 -1.00000 - 830 2017 8 21 1 7 6 221 4.8517 176.83442 892.82012 811.03854 -6.78925 0.00000 -2.06769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84880 0.20244 -1.00000 - 831 2017 8 21 1 7 11 73 4.8517 176.83402 892.85908 811.05509 -6.50977 0.00000 -1.97923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84844 0.20244 -1.00000 - 832 2017 8 21 1 7 15 925 4.8517 176.83362 892.89448 811.06952 -6.21631 0.00000 -1.89040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84809 0.20244 -1.00000 - 833 2017 8 21 1 7 20 776 4.8517 176.83323 892.92549 811.08197 -5.90928 0.00000 -1.79510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84774 0.20244 -1.00000 - 834 2017 8 21 1 7 25 628 4.8517 176.83283 892.95286 811.09233 -5.58904 0.00000 -1.69561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84739 0.20244 -1.00000 - 835 2017 8 21 1 7 30 480 4.8517 176.83242 892.97616 811.10036 -5.25622 0.00000 -1.59602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84703 0.20244 -1.00000 - 836 2017 8 21 1 7 35 332 4.8517 176.83202 892.99489 811.10621 -4.91331 0.00000 -1.49234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84668 0.20244 -1.00000 - 837 2017 8 21 1 7 40 183 4.8517 176.83164 893.00852 811.10991 -4.64975 0.00000 -1.38495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84633 0.20244 -1.00000 - 838 2017 8 21 1 7 45 35 4.8517 176.83127 893.01977 811.11133 -4.32614 0.00000 -1.27948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84597 0.20244 -1.00000 - 839 2017 8 21 1 7 49 887 4.8517 176.83089 893.02614 811.11041 -3.90400 0.00000 -1.16861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84562 0.20244 -1.00000 - 840 2017 8 21 1 7 54 738 4.8517 176.83050 893.02722 811.10724 -3.52067 0.00000 -1.05749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84527 0.20244 -1.00000 - 841 2017 8 21 1 7 59 590 4.8517 176.83011 893.02454 811.10153 -3.13112 0.00000 -0.94592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84492 0.20244 -1.00000 - 842 2017 8 21 1 8 4 442 4.8517 176.82973 893.01653 811.09345 -2.73871 0.00000 -0.83058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84456 0.20244 -1.00000 - 843 2017 8 21 1 8 9 293 4.8517 176.82934 893.00266 811.08308 -2.43410 0.00000 -0.71855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84421 0.20244 -1.00000 - 844 2017 8 21 1 8 14 145 4.8517 176.82894 892.98759 811.07039 -2.07651 0.00000 -0.60562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84386 0.20244 -1.00000 - 845 2017 8 21 1 8 18 997 4.8517 176.82854 892.96511 811.05550 -1.62688 0.00000 -0.48955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84351 0.20244 -1.00000 - 846 2017 8 21 1 8 23 848 4.8517 176.82816 892.93671 811.03821 -1.22281 0.00000 -0.37741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84315 0.20244 -1.00000 - 847 2017 8 21 1 8 28 700 4.8516 176.82780 892.90509 811.01859 -0.81806 0.00000 -0.26515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84280 0.20244 -1.00000 - 848 2017 8 21 1 8 33 552 4.8516 176.82744 892.86826 810.99690 -0.41696 0.15329 -0.15107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84245 0.20244 -1.00000 - 849 2017 8 21 1 8 38 403 4.8516 176.82706 892.82761 810.97297 -0.30928 0.26897 -0.04049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84209 0.20244 -1.00000 - 850 2017 8 21 1 8 43 255 4.8516 176.82666 892.78210 810.94690 -0.30274 0.52425 0.06862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84174 0.20244 -1.00000 - 851 2017 8 21 1 8 48 107 4.8516 176.82627 892.73225 810.91904 -0.29632 0.87867 0.17586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84139 0.20244 -1.00000 - 852 2017 8 21 1 8 52 958 4.8516 176.82589 892.68054 810.88928 -0.29007 1.23448 0.28147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84104 0.20243 -1.00000 - 853 2017 8 21 1 8 57 810 4.8516 176.82552 892.62242 810.85762 -0.28407 1.57948 0.38321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84068 0.20243 -1.00000 - 854 2017 8 21 1 9 2 661 4.8516 176.82515 892.56207 810.82432 -0.27836 1.91523 0.48450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84033 0.20243 -1.00000 - 855 2017 8 21 1 9 7 513 4.8516 176.82478 892.49817 810.78916 -0.27294 2.28826 0.58549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83998 0.20243 -1.00000 - 856 2017 8 21 1 9 12 365 4.8516 176.82443 892.42710 810.75216 -0.26783 2.65604 0.67968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83962 0.20243 -1.00000 - 857 2017 8 21 1 9 17 216 4.8516 176.82409 892.35630 810.71356 -0.26304 3.01371 0.77587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83927 0.20243 -1.00000 - 858 2017 8 21 1 9 22 68 4.8516 176.82372 892.28211 810.67340 -0.25855 3.36337 0.86665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83892 0.20243 -1.00000 - 859 2017 8 21 1 9 26 919 4.8516 176.82333 892.20517 810.63172 -0.25437 3.70548 0.95327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83857 0.20243 -1.00000 - 860 2017 8 21 1 9 31 771 4.8516 176.82294 892.12495 810.58866 -0.25053 4.03984 1.04015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83821 0.20243 -1.00000 - 861 2017 8 21 1 9 36 623 4.8516 176.82256 892.03940 810.54416 -0.24704 4.36355 1.12110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83786 0.20243 -1.00000 - 862 2017 8 21 1 9 41 474 4.8516 176.82222 891.95340 810.49850 -0.24392 4.67520 1.19891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83751 0.20243 -1.00000 - 863 2017 8 21 1 9 46 326 4.8516 176.82189 891.86561 810.45169 -0.24121 4.97626 1.27617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83715 0.20243 -1.00000 - 864 2017 8 21 1 9 51 177 4.8516 176.82156 891.77606 810.40376 -0.23891 5.26613 1.34441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83680 0.20243 -1.00000 - 865 2017 8 21 1 9 56 29 4.8516 176.82122 891.68421 810.35487 -0.23688 5.54403 1.41048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83645 0.20243 -1.00000 - 866 2017 8 21 1 10 0 880 4.8516 176.82088 891.59036 810.30519 -0.23498 5.80888 1.47516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83610 0.20243 -1.00000 - 867 2017 8 21 1 10 5 732 4.8516 176.82052 891.49233 810.25461 -0.23308 6.05727 1.52962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83574 0.20243 -1.00000 - 868 2017 8 21 1 10 10 584 4.8516 176.82015 891.39676 810.20333 -0.23115 6.28737 1.58237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83539 0.20243 -1.00000 - 869 2017 8 21 1 10 15 435 4.8516 176.81977 891.29920 810.15157 -0.22927 6.50173 1.63129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83504 0.20243 -1.00000 - 870 2017 8 21 1 10 20 287 4.8516 176.81939 891.20092 810.09927 -0.22862 6.70114 1.67158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83468 0.20243 -1.00000 - 871 2017 8 21 1 10 25 138 4.8515 176.81907 891.10169 810.04666 -0.22815 6.88524 1.70888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83433 0.20243 -1.00000 - 872 2017 8 21 1 10 29 990 4.8515 176.81876 891.00197 809.99399 -0.22774 7.05321 1.74128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83398 0.20243 -1.00000 - 873 2017 8 21 1 10 34 841 4.8515 176.81846 890.90235 809.94107 -0.22732 7.20382 1.76744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83363 0.20243 -1.00000 - 874 2017 8 21 1 10 39 693 4.8515 176.81813 890.80260 809.88818 -0.22685 7.33628 1.79014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83327 0.20243 -1.00000 - 875 2017 8 21 1 10 44 544 4.8515 176.81778 890.70351 809.83545 -0.22632 7.44997 1.80660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83292 0.20243 -1.00000 - 876 2017 8 21 1 10 49 396 4.8515 176.81742 890.60518 809.78284 -0.22646 7.54435 1.81802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83257 0.20243 -1.00000 - 877 2017 8 21 1 10 54 247 4.8515 176.81706 890.50767 809.73049 -0.22760 7.61895 1.82572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83222 0.20243 -1.00000 - 878 2017 8 21 1 10 59 99 4.8515 176.81670 890.41131 809.67852 -0.22870 7.67334 1.82600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83186 0.20243 -1.00000 - 879 2017 8 21 1 11 3 951 4.8515 176.81634 890.31614 809.62703 -0.22972 7.70705 1.82167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83151 0.20243 -1.00000 - 880 2017 8 21 1 11 8 802 4.8515 176.81603 890.22246 809.57609 -0.23069 7.71973 1.81220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83116 0.20242 -1.00000 - 881 2017 8 21 1 11 13 654 4.8515 176.81574 890.13028 809.52579 -0.23183 7.71105 1.79562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83080 0.20242 -1.00000 - 882 2017 8 21 1 11 18 505 4.8515 176.81546 890.03981 809.47634 -0.23341 7.68104 1.77479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83045 0.20242 -1.00000 - 883 2017 8 21 1 11 23 357 4.8515 176.81514 889.95144 809.42781 -0.23561 7.62946 1.74839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83010 0.20242 -1.00000 - 884 2017 8 21 1 11 28 208 4.8515 176.81478 889.86548 809.38026 -0.23853 7.55604 1.71553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82975 0.20242 -1.00000 - 885 2017 8 21 1 11 33 60 4.8515 176.81441 889.78213 809.33380 -0.24211 7.46086 1.67941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82939 0.20242 -1.00000 - 886 2017 8 21 1 11 37 911 4.8515 176.81407 889.70131 809.28846 -0.24624 7.34437 1.63489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82904 0.20242 -1.00000 - 887 2017 8 21 1 11 42 763 4.8515 176.81374 889.62283 809.24439 -0.25080 7.20786 1.58614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82869 0.20242 -1.00000 - 888 2017 8 21 1 11 47 614 4.8515 176.81343 889.54682 809.20184 -0.25572 7.05018 1.53260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82833 0.20242 -1.00000 - 889 2017 8 21 1 11 52 466 4.8515 176.81313 889.46987 809.16060 -0.26101 6.86956 1.47122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82798 0.20242 -1.00000 - 890 2017 8 21 1 11 57 317 4.8515 176.81285 889.40169 809.12096 -0.26669 6.67198 1.40952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82763 0.20242 -1.00000 - 891 2017 8 21 1 12 2 169 4.8515 176.81258 889.33556 809.08309 -0.27283 6.45990 1.34259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82728 0.20242 -1.00000 - 892 2017 8 21 1 12 7 20 4.8515 176.81227 889.27577 809.04689 -0.27943 6.22678 1.26965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82692 0.20242 -1.00000 - 893 2017 8 21 1 12 11 871 4.8515 176.81189 889.21906 809.01252 -0.28643 5.99003 1.19482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82657 0.20242 -1.00000 - 894 2017 8 21 1 12 16 723 4.8515 176.81154 889.16571 808.97991 -0.29380 5.73504 1.11732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82622 0.20242 -1.00000 - 895 2017 8 21 1 12 21 574 4.8515 176.81122 889.11637 808.94905 -0.30146 5.46683 1.03333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82586 0.20242 -1.00000 - 896 2017 8 21 1 12 26 426 4.8515 176.81093 889.07038 808.92011 -0.30941 5.18619 0.94888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82551 0.20242 -1.00000 - 897 2017 8 21 1 12 31 277 4.8515 176.81064 889.02864 808.89303 -0.31988 4.89401 0.86195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82516 0.20242 -1.00000 - 898 2017 8 21 1 12 36 129 4.8515 176.81036 888.99126 808.86786 -0.33252 4.59130 0.77049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82481 0.20242 -1.00000 - 899 2017 8 21 1 12 40 980 4.8515 176.81011 888.95785 808.84461 -0.34559 4.27913 0.67840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82445 0.20242 -1.00000 - 900 2017 8 21 1 12 45 832 4.8515 176.80984 888.92871 808.82326 -0.35901 3.95867 0.58348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82410 0.20242 -1.00000 - 901 2017 8 21 1 12 50 683 4.8515 176.80951 888.90353 808.80378 -0.37551 3.63121 0.48630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82375 0.20242 -1.00000 - 902 2017 8 21 1 12 55 535 4.8515 176.80915 888.88242 808.78625 -0.39634 3.29827 0.38817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82339 0.20242 -1.00000 - 903 2017 8 21 1 13 0 386 4.8514 176.80883 888.86550 808.77057 -0.41776 2.96130 0.28812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82304 0.20242 -1.00000 - 904 2017 8 21 1 13 5 238 4.8514 176.80854 888.85276 808.75683 -0.44671 2.62159 0.18592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82269 0.20242 -1.00000 - 905 2017 8 21 1 13 10 89 4.8514 176.80826 888.84400 808.74486 -0.49431 2.27952 0.08519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82234 0.20242 -1.00000 - 906 2017 8 21 1 13 14 940 4.8514 176.80800 888.83800 808.73472 -0.56291 1.93538 -0.01912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82198 0.20242 -1.00000 - 907 2017 8 21 1 13 19 792 4.8514 176.80776 888.83575 808.72638 -0.64552 1.58828 -0.12298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82163 0.20242 -1.00000 - 908 2017 8 21 1 13 24 643 4.8514 176.80752 888.83994 808.72006 -0.71727 1.16275 -0.22791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82128 0.20241 -1.00000 - 909 2017 8 21 1 13 29 495 4.8514 176.80725 888.85032 808.71555 -0.81361 0.77978 -0.33558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82093 0.20241 -1.00000 - 910 2017 8 21 1 13 34 346 4.8514 176.80690 888.85993 808.71291 -0.91540 0.47318 -0.44132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82057 0.20241 -1.00000 - 911 2017 8 21 1 13 39 198 4.8514 176.80658 888.87094 808.71208 -1.15155 0.12356 -0.54936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82022 0.20241 -1.00000 - 912 2017 8 21 1 13 44 49 4.8514 176.80630 888.88446 808.71298 -1.31081 0.00000 -0.65504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81987 0.20241 -1.00000 - 913 2017 8 21 1 13 48 900 4.8514 176.80603 888.90791 808.71570 -1.64995 0.00000 -0.76064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81951 0.20241 -1.00000 - 914 2017 8 21 1 13 53 752 4.8514 176.80576 888.93369 808.72013 -1.94569 0.00000 -0.86642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81916 0.20241 -1.00000 - 915 2017 8 21 1 13 58 603 4.8514 176.80552 888.96157 808.72629 -2.18203 0.00000 -0.96816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81881 0.20241 -1.00000 - 916 2017 8 21 1 14 3 455 4.8514 176.80532 888.98919 808.73399 -2.45329 0.00000 -1.07090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81846 0.20241 -1.00000 - 917 2017 8 21 1 14 8 306 4.8514 176.80510 889.02142 808.74303 -2.72205 0.00000 -1.17051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81810 0.20241 -1.00000 - 918 2017 8 21 1 14 13 157 4.8514 176.80479 889.05606 808.75353 -3.07894 0.00000 -1.26658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81775 0.20241 -1.00000 - 919 2017 8 21 1 14 18 9 4.8514 176.80447 889.09731 808.76548 -3.38216 0.00000 -1.36367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81740 0.20241 -1.00000 - 920 2017 8 21 1 14 22 860 4.8514 176.80419 889.13967 808.77886 -3.56646 0.00000 -1.45589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81704 0.20241 -1.00000 - 921 2017 8 21 1 14 27 712 4.8514 176.80394 889.18309 808.79344 -3.83762 0.00000 -1.54386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81669 0.20241 -1.00000 - 922 2017 8 21 1 14 32 563 4.8514 176.80367 889.22536 808.80907 -4.11526 0.00000 -1.63292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81634 0.20241 -1.00000 - 923 2017 8 21 1 14 37 414 4.8514 176.80342 889.27220 808.82587 -4.38527 0.00000 -1.71591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81599 0.20241 -1.00000 - 924 2017 8 21 1 14 42 266 4.8514 176.80319 889.32102 808.84358 -4.64379 0.00000 -1.79463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81563 0.20241 -1.00000 - 925 2017 8 21 1 14 47 117 4.8514 176.80299 889.37270 808.86225 -4.88768 0.00000 -1.87399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81528 0.20241 -1.00000 - 926 2017 8 21 1 14 51 969 4.8514 176.80275 889.42924 808.88199 -5.11880 0.00000 -1.94717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81493 0.20241 -1.00000 - 927 2017 8 21 1 14 56 820 4.8514 176.80243 889.48292 808.90255 -5.33794 0.00000 -2.01564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81457 0.20241 -1.00000 - 928 2017 8 21 1 15 1 671 4.8514 176.80215 889.53312 808.92375 -5.54407 0.00000 -2.08356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81422 0.20241 -1.00000 - 929 2017 8 21 1 15 6 523 4.8514 176.80191 889.58773 808.94552 -5.74307 0.00000 -2.14702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81387 0.20241 -1.00000 - 930 2017 8 21 1 15 11 374 4.8514 176.80165 889.64440 808.96786 -5.93555 0.00000 -2.20454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81352 0.20241 -1.00000 - 931 2017 8 21 1 15 16 226 4.8514 176.80139 889.70189 808.99059 -6.11172 0.00000 -2.26073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81316 0.20241 -1.00000 - 932 2017 8 21 1 15 21 77 4.8514 176.80117 889.76225 809.01374 -6.27121 0.00000 -2.31334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81281 0.20241 -1.00000 - 933 2017 8 21 1 15 25 928 4.8514 176.80096 889.82498 809.03750 -6.45797 0.00000 -2.36013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81246 0.20241 -1.00000 - 934 2017 8 21 1 15 30 780 4.8514 176.80072 889.87958 809.06142 -6.58743 0.00000 -2.40450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81211 0.20241 -1.00000 - 935 2017 8 21 1 15 35 631 4.8514 176.80046 889.93721 809.08551 -6.74252 0.00000 -2.44419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81175 0.20241 -1.00000 - 936 2017 8 21 1 15 40 482 4.8514 176.80021 889.99669 809.10982 -6.88566 0.00000 -2.47646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81140 0.20241 -1.00000 - 937 2017 8 21 1 15 45 334 4.8514 176.79998 890.05607 809.13401 -7.01339 0.00000 -2.50667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81105 0.20240 -1.00000 - 938 2017 8 21 1 15 50 185 4.8514 176.79974 890.11504 809.15807 -7.12299 0.00000 -2.53321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81069 0.20240 -1.00000 - 939 2017 8 21 1 15 55 37 4.8514 176.79951 890.17210 809.18198 -7.21312 0.00000 -2.55282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81034 0.20240 -1.00000 - 940 2017 8 21 1 15 59 888 4.8514 176.79931 890.23037 809.20571 -7.29009 0.00000 -2.57111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80999 0.20240 -1.00000 - 941 2017 8 21 1 16 4 739 4.8514 176.79910 890.28940 809.22929 -7.35773 0.00000 -2.58276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80964 0.20240 -1.00000 - 942 2017 8 21 1 16 9 591 4.8514 176.79887 890.34275 809.25244 -7.39408 0.00000 -2.58910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80928 0.20240 -1.00000 - 943 2017 8 21 1 16 14 442 4.8514 176.79865 890.39300 809.27492 -7.40510 0.00000 -2.59341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80893 0.20240 -1.00000 - 944 2017 8 21 1 16 19 293 4.8514 176.79844 890.44594 809.29691 -7.40029 0.00000 -2.59052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80858 0.20240 -1.00000 - 945 2017 8 21 1 16 24 145 4.8514 176.79823 890.49706 809.31822 -7.37645 0.00000 -2.58481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80822 0.20240 -1.00000 - 946 2017 8 21 1 16 28 996 4.8514 176.79803 890.54602 809.33874 -7.33412 0.00000 -2.57716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80787 0.20240 -1.00000 - 947 2017 8 21 1 16 33 847 4.8514 176.79783 890.59269 809.35859 -7.27619 0.00000 -2.55985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80752 0.20240 -1.00000 - 948 2017 8 21 1 16 38 699 4.8514 176.79764 890.63591 809.37762 -7.20730 0.00000 -2.54189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80717 0.20240 -1.00000 - 949 2017 8 21 1 16 43 550 4.8513 176.79743 890.67827 809.39582 -7.21024 0.00000 -2.52125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80681 0.20240 -1.00000 - 950 2017 8 21 1 16 48 401 4.8513 176.79722 890.72418 809.41330 -7.15313 0.00000 -2.49083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80646 0.20240 -1.00000 - 951 2017 8 21 1 16 53 253 4.8513 176.79700 890.76391 809.42972 -6.99914 0.00000 -2.46136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80611 0.20240 -1.00000 - 952 2017 8 21 1 16 58 104 4.8513 176.79679 890.79653 809.44509 -6.87387 0.00000 -2.42697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80575 0.20240 -1.00000 - 953 2017 8 21 1 17 2 955 4.8513 176.79659 890.83031 809.45944 -6.73630 0.00000 -2.38515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80540 0.20240 -1.00000 - 954 2017 8 21 1 17 7 807 4.8513 176.79641 890.86305 809.47254 -6.58983 0.00000 -2.34325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80505 0.20240 -1.00000 - 955 2017 8 21 1 17 12 658 4.8513 176.79623 890.89300 809.48440 -6.43465 0.00000 -2.29665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80470 0.20240 -1.00000 - 956 2017 8 21 1 17 17 510 4.8513 176.79604 890.92028 809.49516 -6.26922 0.00000 -2.24296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80434 0.20240 -1.00000 - 957 2017 8 21 1 17 22 361 4.8513 176.79584 890.94558 809.50444 -6.09297 0.00000 -2.18931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80399 0.20240 -1.00000 - 958 2017 8 21 1 17 27 212 4.8513 176.79563 890.96767 809.51234 -5.90566 0.00000 -2.12932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80364 0.20240 -1.00000 - 959 2017 8 21 1 17 32 64 4.8513 176.79541 890.98699 809.51886 -5.70737 0.00000 -2.06531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80329 0.20240 -1.00000 - 960 2017 8 21 1 17 36 915 4.8513 176.79520 891.00366 809.52381 -5.49847 0.00000 -2.00121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80293 0.20240 -1.00000 - 961 2017 8 21 1 17 41 766 4.8513 176.79500 891.01714 809.52736 -5.27956 0.00000 -1.93177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80258 0.20240 -1.00000 - 962 2017 8 21 1 17 46 617 4.8513 176.79483 891.02778 809.52935 -5.05134 0.00000 -1.85968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80223 0.20240 -1.00000 - 963 2017 8 21 1 17 51 469 4.8513 176.79466 891.03545 809.52974 -4.81453 0.00000 -1.78677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80187 0.20240 -1.00000 - 964 2017 8 21 1 17 56 320 4.8513 176.79449 891.04003 809.52861 -4.56973 0.00000 -1.70958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80152 0.20240 -1.00000 - 965 2017 8 21 1 18 1 171 4.8513 176.79431 891.04151 809.52591 -4.31788 0.00000 -1.63046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80117 0.20239 -1.00000 - 966 2017 8 21 1 18 6 23 4.8513 176.79412 891.04002 809.52154 -4.05998 0.00000 -1.55091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80082 0.20239 -1.00000 - 967 2017 8 21 1 18 10 874 4.8513 176.79392 891.03530 809.51555 -3.79694 0.00000 -1.46791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80046 0.20239 -1.00000 - 968 2017 8 21 1 18 15 725 4.8513 176.79372 891.02747 809.50796 -3.52952 0.00000 -1.38518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80011 0.20239 -1.00000 - 969 2017 8 21 1 18 20 577 4.8513 176.79354 891.01658 809.49876 -3.25822 0.00000 -1.30108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79976 0.20239 -1.00000 - 970 2017 8 21 1 18 25 428 4.8513 176.79337 891.00283 809.48799 -2.98353 0.00000 -1.21364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79940 0.20239 -1.00000 - 971 2017 8 21 1 18 30 279 4.8513 176.79321 890.98635 809.47555 -2.70622 0.00000 -1.12840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79905 0.20239 -1.00000 - 972 2017 8 21 1 18 35 131 4.8513 176.79306 890.96649 809.46147 -2.42697 0.00000 -1.04137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79870 0.20239 -1.00000 - 973 2017 8 21 1 18 39 982 4.8513 176.79290 890.94357 809.44597 -2.14636 0.00000 -0.95289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79835 0.20239 -1.00000 - 974 2017 8 21 1 18 44 833 4.8513 176.79274 890.91801 809.42881 -1.86473 0.00000 -0.86686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79799 0.20239 -1.00000 - 975 2017 8 21 1 18 49 685 4.8513 176.79257 890.88944 809.41020 -1.58223 0.00000 -0.78052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79764 0.20239 -1.00000 - 976 2017 8 21 1 18 54 536 4.8513 176.79240 890.85360 809.39024 -1.35565 0.00000 -0.69375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79729 0.20239 -1.00000 - 977 2017 8 21 1 18 59 387 4.8513 176.79222 890.81607 809.36877 -1.12404 0.00000 -0.60924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79693 0.20239 -1.00000 - 978 2017 8 21 1 19 4 239 4.8513 176.79206 890.78048 809.34592 -0.89811 0.00000 -0.52424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79658 0.20239 -1.00000 - 979 2017 8 21 1 19 9 90 4.8513 176.79191 890.74201 809.32185 -0.68019 0.00000 -0.43925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79623 0.20239 -1.00000 - 980 2017 8 21 1 19 13 941 4.8513 176.79178 890.70133 809.29640 -0.59945 0.00000 -0.35663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79588 0.20239 -1.00000 - 981 2017 8 21 1 19 18 793 4.8513 176.79166 890.65845 809.26972 -0.51467 0.11225 -0.27261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79552 0.20239 -1.00000 - 982 2017 8 21 1 19 23 644 4.8513 176.79152 890.61334 809.24184 -0.49052 0.37584 -0.18958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79517 0.20239 -1.00000 - 983 2017 8 21 1 19 28 495 4.8513 176.79136 890.56621 809.21266 -0.46760 0.63612 -0.11055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79482 0.20239 -1.00000 - 984 2017 8 21 1 19 33 346 4.8513 176.79121 890.51664 809.18236 -0.44521 0.89252 -0.03034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79447 0.20239 -1.00000 - 985 2017 8 21 1 19 38 198 4.8513 176.79105 890.46521 809.15089 -0.42958 1.14444 0.04900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79411 0.20239 -1.00000 - 986 2017 8 21 1 19 43 49 4.8513 176.79090 890.41219 809.11823 -0.41598 1.39145 0.12414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79376 0.20239 -1.00000 - 987 2017 8 21 1 19 47 900 4.8513 176.79076 890.35704 809.08442 -0.40291 1.63319 0.20004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79341 0.20239 -1.00000 - 988 2017 8 21 1 19 52 752 4.8513 176.79063 890.30001 809.04954 -0.39033 1.86925 0.27369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79305 0.20239 -1.00000 - 989 2017 8 21 1 19 57 603 4.8513 176.79050 890.24139 809.01362 -0.37818 2.09925 0.34459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79270 0.20239 -1.00000 - 990 2017 8 21 1 20 2 454 4.8513 176.79038 890.18126 808.97668 -0.36647 2.32279 0.41380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79235 0.20239 -1.00000 - 991 2017 8 21 1 20 7 306 4.8513 176.79025 890.11964 808.93874 -0.35701 2.53945 0.48098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79200 0.20239 -1.00000 - 992 2017 8 21 1 20 12 157 4.8513 176.79012 890.05642 808.89983 -0.34935 2.74875 0.54527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79164 0.20239 -1.00000 - 993 2017 8 21 1 20 17 8 4.8513 176.78998 889.99168 808.86000 -0.34200 2.95013 0.60635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79129 0.20238 -1.00000 - 994 2017 8 21 1 20 21 859 4.8513 176.78984 889.92555 808.81933 -0.33497 3.14305 0.66416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79094 0.20238 -1.00000 - 995 2017 8 21 1 20 26 711 4.8513 176.78970 889.85811 808.77788 -0.32835 3.32702 0.71767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79058 0.20238 -1.00000 - 996 2017 8 21 1 20 31 562 4.8513 176.78958 889.78927 808.73578 -0.32225 3.50171 0.76784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79023 0.20238 -1.00000 - 997 2017 8 21 1 20 36 413 4.8513 176.78946 889.71976 808.69311 -0.31673 3.66683 0.81385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78988 0.20238 -1.00000 - 998 2017 8 21 1 20 41 265 4.8513 176.78934 889.64892 808.64987 -0.31184 3.82152 0.85628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78953 0.20238 -1.00000 - 999 2017 8 21 1 20 46 116 4.8513 176.78922 889.57613 808.60615 -0.30751 3.96430 0.89318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78917 0.20238 -1.00000 - 1000 2017 8 21 1 20 50 967 4.8513 176.78911 889.50703 808.56241 -0.30372 4.02316 0.92559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78882 0.20238 -1.00000 - 1001 2017 8 21 1 20 55 819 4.8513 176.78899 889.43445 808.51851 -0.30041 4.10972 0.95433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78847 0.20238 -1.00000 - 1002 2017 8 21 1 21 0 670 4.8513 176.78888 889.36443 808.47456 -0.29753 4.17938 0.97823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78811 0.20238 -1.00000 - 1003 2017 8 21 1 21 5 521 4.8513 176.78878 889.28998 808.43049 -0.29505 4.31230 0.99926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78776 0.20238 -1.00000 - 1004 2017 8 21 1 21 10 372 4.8513 176.78867 889.21535 808.38639 -0.29300 4.39139 1.01783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78741 0.20238 -1.00000 - 1005 2017 8 21 1 21 15 224 4.8513 176.78857 889.14399 808.34226 -0.29143 4.46029 1.03135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78706 0.20238 -1.00000 - 1006 2017 8 21 1 21 20 75 4.8513 176.78847 889.07370 808.29817 -0.29041 4.51517 1.04131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78670 0.20238 -1.00000 - 1007 2017 8 21 1 21 24 926 4.8513 176.78838 889.00321 808.25416 -0.29004 4.55664 1.04962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78635 0.20238 -1.00000 - 1008 2017 8 21 1 21 29 778 4.8513 176.78829 888.93321 808.21031 -0.29037 4.58474 1.05255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78600 0.20238 -1.00000 - 1009 2017 8 21 1 21 34 629 4.8513 176.78820 888.86386 808.16665 -0.29146 4.59952 1.05262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78565 0.20238 -1.00000 - 1010 2017 8 21 1 21 39 480 4.8513 176.78813 888.79506 808.12317 -0.29330 4.60140 1.04996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78529 0.20238 -1.00000 - 1011 2017 8 21 1 21 44 332 4.8513 176.78806 888.72677 808.08006 -0.29586 4.59141 1.04225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78494 0.20238 -1.00000 - 1012 2017 8 21 1 21 49 183 4.8513 176.78800 888.65921 808.03731 -0.29908 4.57049 1.03280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78459 0.20238 -1.00000 - 1013 2017 8 21 1 21 54 34 4.8513 176.78793 888.59272 807.99497 -0.30289 4.53931 1.01860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78423 0.20238 -1.00000 - 1014 2017 8 21 1 21 58 886 4.8513 176.78785 888.52713 807.95308 -0.30721 4.49830 1.00218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78388 0.20238 -1.00000 - 1015 2017 8 21 1 22 3 737 4.8513 176.78776 888.46253 807.91164 -0.31198 4.44767 0.98257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78353 0.20238 -1.00000 - 1016 2017 8 21 1 22 8 588 4.8513 176.78768 888.39907 807.87068 -0.31717 4.38744 0.95789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78318 0.20238 -1.00000 - 1017 2017 8 21 1 22 13 440 4.8513 176.78762 888.33661 807.83028 -0.32277 4.31751 0.93092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78282 0.20238 -1.00000 - 1018 2017 8 21 1 22 18 291 4.8513 176.78756 888.27527 807.79048 -0.32879 4.23777 0.90105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78247 0.20238 -1.00000 - 1019 2017 8 21 1 22 23 142 4.8513 176.78749 888.21541 807.75135 -0.33521 4.14821 0.86595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78212 0.20238 -1.00000 - 1020 2017 8 21 1 22 27 994 4.8513 176.78743 888.15694 807.71295 -0.34207 4.04889 0.82916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78176 0.20238 -1.00000 - 1021 2017 8 21 1 22 32 845 4.8513 176.78737 888.09990 807.67527 -0.34938 3.93989 0.78608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78141 0.20237 -1.00000 - 1022 2017 8 21 1 22 37 696 4.8513 176.78731 888.04435 807.63850 -0.35899 3.82076 0.73953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78106 0.20237 -1.00000 - 1023 2017 8 21 1 22 42 548 4.8513 176.78723 887.99018 807.60275 -0.36908 3.60994 0.69056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78071 0.20237 -1.00000 - 1024 2017 8 21 1 22 47 399 4.8513 176.78715 887.94028 807.56807 -0.37918 3.42957 0.63572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78035 0.20237 -1.00000 - 1025 2017 8 21 1 22 52 250 4.8513 176.78708 887.89165 807.53451 -0.39214 3.31719 0.58044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78000 0.20237 -1.00000 - 1026 2017 8 21 1 22 57 102 4.8513 176.78702 887.83960 807.50202 -0.40630 3.15667 0.52083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77965 0.20237 -1.00000 - 1027 2017 8 21 1 23 1 953 4.8513 176.78697 887.79368 807.47050 -0.42092 2.99059 0.45691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77929 0.20237 -1.00000 - 1028 2017 8 21 1 23 6 804 4.8513 176.78691 887.75005 807.44021 -0.43592 2.81689 0.39468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77894 0.20237 -1.00000 - 1029 2017 8 21 1 23 11 656 4.8513 176.78686 887.70839 807.41111 -0.45412 2.63298 0.32696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77859 0.20237 -1.00000 - 1030 2017 8 21 1 23 16 507 4.8513 176.78680 887.66906 807.38304 -0.47893 2.43983 0.25773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77824 0.20237 -1.00000 - 1031 2017 8 21 1 23 21 358 4.8513 176.78672 887.63114 807.35613 -0.50449 2.24002 0.18784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77788 0.20237 -1.00000 - 1032 2017 8 21 1 23 26 210 4.8513 176.78664 887.59651 807.33062 -0.53050 1.96407 0.11314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77753 0.20237 -1.00000 - 1033 2017 8 21 1 23 31 61 4.8513 176.78657 887.56721 807.30658 -0.56263 1.73822 0.03863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77718 0.20237 -1.00000 - 1034 2017 8 21 1 23 35 912 4.8513 176.78650 887.53567 807.28384 -0.59963 1.57890 -0.03696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77683 0.20237 -1.00000 - 1035 2017 8 21 1 23 40 764 4.8513 176.78644 887.50761 807.26231 -0.63672 1.36313 -0.11415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77647 0.20237 -1.00000 - 1036 2017 8 21 1 23 45 615 4.8513 176.78640 887.48373 807.24204 -0.67901 1.14463 -0.19326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77612 0.20237 -1.00000 - 1037 2017 8 21 1 23 50 466 4.8513 176.78636 887.46173 807.22292 -0.72995 0.92511 -0.27065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77577 0.20237 -1.00000 - 1038 2017 8 21 1 23 55 318 4.8513 176.78630 887.44173 807.20502 -0.78141 0.70456 -0.35138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77541 0.20237 -1.00000 - 1039 2017 8 21 1 24 0 169 4.8513 176.78624 887.42357 807.18832 -0.90943 0.48273 -0.43047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77506 0.20237 -1.00000 - 1040 2017 8 21 1 24 5 20 4.8513 176.78617 887.40714 807.17289 -1.01966 0.25912 -0.51012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77471 0.20237 -1.00000 - 1041 2017 8 21 1 24 9 872 4.8513 176.78611 887.39352 807.15854 -1.07036 0.03353 -0.59167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77436 0.20237 -1.00000 - 1042 2017 8 21 1 24 14 723 4.8513 176.78604 887.38179 807.14541 -1.27238 0.00000 -0.67086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77400 0.20237 -1.00000 - 1043 2017 8 21 1 24 19 574 4.8514 176.78599 887.37237 807.13344 -1.35637 0.00000 -0.75304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77365 0.20237 -1.00000 - 1044 2017 8 21 1 24 24 426 4.8514 176.78595 887.36466 807.12259 -1.54794 0.00000 -0.83549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77330 0.20237 -1.00000 - 1045 2017 8 21 1 24 29 277 4.8514 176.78595 887.35943 807.11301 -1.68344 0.00000 -0.91358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77294 0.20237 -1.00000 - 1046 2017 8 21 1 24 34 128 4.8514 176.78594 887.35265 807.10454 -1.90625 0.00000 -0.99597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77259 0.20237 -1.00000 - 1047 2017 8 21 1 24 38 980 4.8514 176.78591 887.35439 807.09723 -2.12515 0.00000 -1.07750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77224 0.20237 -1.00000 - 1048 2017 8 21 1 24 43 831 4.8514 176.78590 887.35082 807.09107 -2.21095 0.00000 -1.15363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77189 0.20237 -1.00000 - 1049 2017 8 21 1 24 48 682 4.8514 176.78589 887.35425 807.08601 -2.49676 0.00000 -1.23255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77153 0.20236 -1.00000 - 1050 2017 8 21 1 24 53 534 4.8514 176.78587 887.35909 807.08212 -2.72874 0.00000 -1.30947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77118 0.20236 -1.00000 - 1051 2017 8 21 1 24 58 385 4.8514 176.78586 887.36573 807.07932 -2.84571 0.00000 -1.38246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77083 0.20236 -1.00000 - 1052 2017 8 21 1 25 3 237 4.8514 176.78585 887.37423 807.07750 -3.01870 0.00000 -1.45569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77047 0.20236 -1.00000 - 1053 2017 8 21 1 25 8 88 4.8514 176.78585 887.38445 807.07662 -3.19163 0.00000 -1.52689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77012 0.20236 -1.00000 - 1054 2017 8 21 1 25 12 939 4.8514 176.78587 887.39654 807.07684 -3.36435 0.00000 -1.59613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76977 0.20236 -1.00000 - 1055 2017 8 21 1 25 17 791 4.8514 176.78589 887.41047 807.07796 -3.53702 0.00000 -1.66412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76942 0.20236 -1.00000 - 1056 2017 8 21 1 25 22 642 4.8514 176.78592 887.42609 807.07998 -3.70817 0.00000 -1.72983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76906 0.20236 -1.00000 - 1057 2017 8 21 1 25 27 493 4.8514 176.78595 887.44328 807.08290 -3.89601 0.00000 -1.79246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76871 0.20236 -1.00000 - 1058 2017 8 21 1 25 32 345 4.8514 176.78597 887.46213 807.08661 -4.07963 0.00000 -1.85561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76836 0.20236 -1.00000 - 1059 2017 8 21 1 25 37 196 4.8514 176.78600 887.48237 807.09115 -4.25699 0.00000 -1.91433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76801 0.20236 -1.00000 - 1060 2017 8 21 1 25 42 47 4.8514 176.78603 887.50405 807.09650 -4.43860 0.00000 -1.97238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76765 0.20236 -1.00000 - 1061 2017 8 21 1 25 46 899 4.8514 176.78607 887.52731 807.10250 -4.62025 0.00000 -2.02824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76730 0.20236 -1.00000 - 1062 2017 8 21 1 25 51 750 4.8514 176.78612 887.55169 807.10929 -4.75625 0.00000 -2.07880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76695 0.20236 -1.00000 - 1063 2017 8 21 1 25 56 602 4.8514 176.78616 887.57588 807.11658 -5.00120 0.00000 -2.12973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76659 0.20236 -1.00000 - 1064 2017 8 21 1 26 1 453 4.8514 176.78622 887.60087 807.12454 -5.12331 0.00000 -2.17780 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76624 0.20236 -1.00000 - 1065 2017 8 21 1 26 6 304 4.8514 176.78627 887.62950 807.13316 -5.25616 0.00000 -2.21966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76589 0.20236 -1.00000 - 1066 2017 8 21 1 26 11 156 4.8514 176.78634 887.65984 807.14220 -5.38375 0.00000 -2.26163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76554 0.20236 -1.00000 - 1067 2017 8 21 1 26 16 7 4.8514 176.78641 887.69065 807.15164 -5.50341 0.00000 -2.30066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76518 0.20236 -1.00000 - 1068 2017 8 21 1 26 20 858 4.8514 176.78648 887.72202 807.16169 -5.61585 0.00000 -2.33358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76483 0.20236 -1.00000 - 1069 2017 8 21 1 26 25 710 4.8514 176.78655 887.75497 807.17204 -5.72139 0.00000 -2.36533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76448 0.20236 -1.00000 - 1070 2017 8 21 1 26 30 561 4.8514 176.78662 887.78851 807.18264 -5.81943 0.00000 -2.39443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76412 0.20236 -1.00000 - 1071 2017 8 21 1 26 35 412 4.8514 176.78670 887.82217 807.19355 -5.94084 0.00000 -2.41874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76377 0.20236 -1.00000 - 1072 2017 8 21 1 26 40 264 4.8514 176.78678 887.85644 807.20461 -6.05913 0.00000 -2.43886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76342 0.20236 -1.00000 - 1073 2017 8 21 1 26 45 115 4.8514 176.78687 887.89127 807.21575 -6.16503 0.00000 -2.45714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76307 0.20236 -1.00000 - 1074 2017 8 21 1 26 49 967 4.8514 176.78697 887.92623 807.22698 -6.25671 0.00000 -2.47005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76271 0.20236 -1.00000 - 1075 2017 8 21 1 26 54 818 4.8514 176.78708 887.96165 807.23810 -6.33344 0.00000 -2.47868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76236 0.20236 -1.00000 - 1076 2017 8 21 1 26 59 669 4.8514 176.78719 887.99694 807.24904 -6.39505 0.00000 -2.48539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76201 0.20236 -1.00000 - 1077 2017 8 21 1 27 4 521 4.8514 176.78731 888.03168 807.25974 -6.44169 0.00000 -2.48672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76165 0.20235 -1.00000 - 1078 2017 8 21 1 27 9 372 4.8514 176.78742 888.06586 807.27012 -6.47382 0.00000 -2.48420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76130 0.20235 -1.00000 - 1079 2017 8 21 1 27 14 223 4.8514 176.78753 888.09943 807.28013 -6.49205 0.00000 -2.47941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76095 0.20235 -1.00000 - 1080 2017 8 21 1 27 19 75 4.8514 176.78764 888.13228 807.28967 -6.49708 0.00000 -2.46964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76060 0.20235 -1.00000 - 1081 2017 8 21 1 27 23 926 4.8514 176.78776 888.16409 807.29872 -6.48970 0.00000 -2.45851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76024 0.20235 -1.00000 - 1082 2017 8 21 1 27 28 778 4.8514 176.78788 888.19496 807.30727 -6.47196 0.00000 -2.44464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75989 0.20235 -1.00000 - 1083 2017 8 21 1 27 33 629 4.8514 176.78802 888.22453 807.31531 -6.44607 0.00000 -2.42429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75954 0.20235 -1.00000 - 1084 2017 8 21 1 27 38 480 4.8514 176.78817 888.25258 807.32281 -6.49243 0.00000 -2.40536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75919 0.20235 -1.00000 - 1085 2017 8 21 1 27 43 332 4.8514 176.78832 888.28356 807.32971 -6.48261 0.00000 -2.38279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75883 0.20235 -1.00000 - 1086 2017 8 21 1 27 48 183 4.8514 176.78847 888.30861 807.33612 -6.38006 0.00000 -2.35477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75848 0.20235 -1.00000 - 1087 2017 8 21 1 27 53 34 4.8514 176.78863 888.33312 807.34175 -6.31013 0.00000 -2.32667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75813 0.20235 -1.00000 - 1088 2017 8 21 1 27 57 886 4.8514 176.78878 888.35693 807.34663 -6.23163 0.00000 -2.29524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75777 0.20235 -1.00000 - 1089 2017 8 21 1 28 2 737 4.8514 176.78895 888.37924 807.35085 -6.14596 0.00000 -2.25854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75742 0.20235 -1.00000 - 1090 2017 8 21 1 28 7 589 4.8514 176.78912 888.39596 807.35410 -6.05438 0.00000 -2.22211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75707 0.20235 -1.00000 - 1091 2017 8 21 1 28 12 440 4.8514 176.78930 888.41422 807.35659 -5.95830 0.00000 -2.18016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75672 0.20235 -1.00000 - 1092 2017 8 21 1 28 17 291 4.8514 176.78949 888.43246 807.35821 -5.85342 0.00000 -2.13444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75636 0.20235 -1.00000 - 1093 2017 8 21 1 28 22 143 4.8514 176.78969 888.44904 807.35874 -5.73818 0.00000 -2.08952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75601 0.20235 -1.00000 - 1094 2017 8 21 1 28 26 994 4.8514 176.78988 888.46300 807.35832 -5.61194 0.00000 -2.03778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75566 0.20235 -1.00000 - 1095 2017 8 21 1 28 31 846 4.8514 176.79008 888.47513 807.35691 -5.47501 0.00000 -1.98322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75530 0.20235 -1.00000 - 1096 2017 8 21 1 28 36 697 4.8514 176.79027 888.48574 807.35427 -5.32826 0.00000 -1.92881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75495 0.20235 -1.00000 - 1097 2017 8 21 1 28 41 549 4.8514 176.79047 888.49378 807.35044 -5.17233 0.00000 -1.86919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75460 0.20235 -1.00000 - 1098 2017 8 21 1 28 46 400 4.8514 176.79067 888.49964 807.34545 -5.00766 0.00000 -1.80807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75425 0.20235 -1.00000 - 1099 2017 8 21 1 28 51 251 4.8514 176.79087 888.50321 807.33916 -4.83451 0.00000 -1.74616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75389 0.20235 -1.00000 - 1100 2017 8 21 1 28 56 103 4.8514 176.79107 888.50429 807.33164 -4.65301 0.00000 -1.68042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75354 0.20235 -1.00000 - 1101 2017 8 21 1 29 0 954 4.8514 176.79127 888.50293 807.32288 -4.46345 0.00000 -1.61317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75319 0.20235 -1.00000 - 1102 2017 8 21 1 29 5 806 4.8514 176.79148 888.49931 807.31275 -4.26617 0.00000 -1.54586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75283 0.20235 -1.00000 - 1103 2017 8 21 1 29 10 657 4.8514 176.79168 888.49302 807.30129 -4.06135 0.00000 -1.47450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75248 0.20235 -1.00000 - 1104 2017 8 21 1 29 15 509 4.8514 176.79188 888.48427 807.28840 -3.84916 0.00000 -1.40455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75213 0.20235 -1.00000 - 1105 2017 8 21 1 29 20 360 4.8514 176.79208 888.47288 807.27405 -3.62943 0.00000 -1.33318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75178 0.20234 -1.00000 - 1106 2017 8 21 1 29 25 211 4.8514 176.79228 888.45637 807.25837 -3.40296 0.00000 -1.25833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75142 0.20234 -1.00000 - 1107 2017 8 21 1 29 30 63 4.8514 176.79247 888.43577 807.24119 -3.17238 0.00000 -1.18657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75107 0.20234 -1.00000 - 1108 2017 8 21 1 29 34 914 4.8515 176.79266 888.41697 807.22258 -2.94033 0.00000 -1.11205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75072 0.20234 -1.00000 - 1109 2017 8 21 1 29 39 766 4.8515 176.79285 888.39471 807.20260 -2.70408 0.00000 -1.03767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75037 0.20234 -1.00000 - 1110 2017 8 21 1 29 44 617 4.8515 176.79304 888.36980 807.18121 -2.46433 0.00000 -0.96452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75001 0.20234 -1.00000 - 1111 2017 8 21 1 29 49 469 4.8515 176.79324 888.34229 807.15853 -2.22153 0.00004 -0.88987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74966 0.20234 -1.00000 - 1112 2017 8 21 1 29 54 320 4.8515 176.79344 888.31206 807.13440 -1.97675 0.00011 -0.81473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74931 0.20234 -1.00000 - 1113 2017 8 21 1 29 59 172 4.8515 176.79363 888.27886 807.10894 -1.73141 0.00017 -0.74225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74895 0.20234 -1.00000 - 1114 2017 8 21 1 30 4 23 4.8515 176.79382 888.24306 807.08216 -1.48685 0.00022 -0.66722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74860 0.20234 -1.00000 - 1115 2017 8 21 1 30 8 875 4.8515 176.79401 888.20481 807.05396 -1.24445 0.00027 -0.59302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74825 0.20234 -1.00000 - 1116 2017 8 21 1 30 13 726 4.8515 176.79420 888.16400 807.02440 -1.00435 0.00032 -0.51998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74790 0.20234 -1.00000 - 1117 2017 8 21 1 30 18 578 4.8515 176.79439 888.12056 806.99349 -0.76662 0.00037 -0.44587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74754 0.20234 -1.00000 - 1118 2017 8 21 1 30 23 429 4.8515 176.79457 888.07479 806.96129 -0.53135 0.00042 -0.37441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74719 0.20234 -1.00000 - 1119 2017 8 21 1 30 28 281 4.8515 176.79476 888.02664 806.92780 -0.51008 0.00047 -0.30326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74684 0.20234 -1.00000 - 1120 2017 8 21 1 30 33 132 4.8515 176.79495 887.97630 806.89301 -0.49771 0.05722 -0.23266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74648 0.20234 -1.00000 - 1121 2017 8 21 1 30 37 984 4.8515 176.79515 887.92360 806.85695 -0.49087 0.27203 -0.16490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74613 0.20234 -1.00000 - 1122 2017 8 21 1 30 42 835 4.8515 176.79534 887.86860 806.81974 -0.48455 0.48667 -0.09863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74578 0.20234 -1.00000 - 1123 2017 8 21 1 30 47 687 4.8515 176.79553 887.81127 806.78130 -0.47879 0.69657 -0.03316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74543 0.20234 -1.00000 - 1124 2017 8 21 1 30 52 538 4.8515 176.79573 887.75169 806.74173 -0.47366 0.90166 0.02830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74507 0.20234 -1.00000 - 1125 2017 8 21 1 30 57 390 4.8515 176.79592 887.68980 806.70105 -0.46924 1.10252 0.08859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74472 0.20234 -1.00000 - 1126 2017 8 21 1 31 2 241 4.8515 176.79610 887.62568 806.65943 -0.46560 1.29868 0.14467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74437 0.20234 -1.00000 - 1127 2017 8 21 1 31 7 93 4.8515 176.79629 887.56000 806.61680 -0.46277 1.50483 0.19642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74401 0.20234 -1.00000 - 1128 2017 8 21 1 31 11 944 4.8515 176.79648 887.49141 806.57346 -0.46072 1.70716 0.24851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74366 0.20234 -1.00000 - 1129 2017 8 21 1 31 16 796 4.8515 176.79668 887.41799 806.52924 -0.45944 1.90046 0.29248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74331 0.20234 -1.00000 - 1130 2017 8 21 1 31 21 647 4.8515 176.79687 887.34638 806.48436 -0.45881 2.01227 0.33633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74296 0.20234 -1.00000 - 1131 2017 8 21 1 31 26 499 4.8515 176.79707 887.27866 806.43897 -0.45876 2.15510 0.37692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74260 0.20234 -1.00000 - 1132 2017 8 21 1 31 31 350 4.8515 176.79726 887.20592 806.39297 -0.45924 2.36526 0.41411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74225 0.20234 -1.00000 - 1133 2017 8 21 1 31 36 202 4.8515 176.79745 887.12721 806.34655 -0.46019 2.53402 0.44998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74190 0.20234 -1.00000 - 1134 2017 8 21 1 31 41 53 4.8515 176.79764 887.05254 806.29962 -0.46161 2.69335 0.48148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74154 0.20233 -1.00000 - 1135 2017 8 21 1 31 45 905 4.8515 176.79782 886.97692 806.25217 -0.46350 2.84030 0.50946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74119 0.20233 -1.00000 - 1136 2017 8 21 1 31 50 756 4.8515 176.79801 886.90018 806.20427 -0.46591 2.97407 0.53707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74084 0.20233 -1.00000 - 1137 2017 8 21 1 31 55 608 4.8516 176.79819 886.82263 806.15601 -0.46886 3.09554 0.56033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74049 0.20233 -1.00000 - 1138 2017 8 21 1 32 0 460 4.8516 176.79838 886.74387 806.10740 -0.47239 3.20561 0.57752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74013 0.20233 -1.00000 - 1139 2017 8 21 1 32 5 311 4.8516 176.79857 886.66693 806.05868 -0.47651 3.24044 0.59535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73978 0.20233 -1.00000 - 1140 2017 8 21 1 32 10 163 4.8516 176.79877 886.59093 806.00994 -0.48121 3.31103 0.60636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73943 0.20233 -1.00000 - 1141 2017 8 21 1 32 15 14 4.8516 176.79896 886.51304 805.96099 -0.48650 3.43937 0.61314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73908 0.20233 -1.00000 - 1142 2017 8 21 1 32 19 866 4.8516 176.79915 886.43303 805.91207 -0.49230 3.50873 0.62022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73872 0.20233 -1.00000 - 1143 2017 8 21 1 32 24 717 4.8516 176.79934 886.35279 805.86327 -0.49857 3.49063 0.61869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73837 0.20233 -1.00000 - 1144 2017 8 21 1 32 29 569 4.8516 176.79952 886.27927 805.81455 -0.50524 3.50023 0.61569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73802 0.20233 -1.00000 - 1145 2017 8 21 1 32 34 421 4.8516 176.79971 886.20040 805.76616 -0.51230 3.57453 0.61144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73766 0.20233 -1.00000 - 1146 2017 8 21 1 32 39 272 4.8516 176.79991 886.11934 805.71794 -0.51987 3.60195 0.59954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73731 0.20233 -1.00000 - 1147 2017 8 21 1 32 44 124 4.8516 176.80011 886.04239 805.66999 -0.52986 3.61611 0.58570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73696 0.20233 -1.00000 - 1148 2017 8 21 1 32 48 975 4.8516 176.80032 885.96581 805.62239 -0.54018 3.61473 0.56950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73661 0.20233 -1.00000 - 1149 2017 8 21 1 32 53 827 4.8516 176.80053 885.88981 805.57516 -0.55083 3.59826 0.54778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73625 0.20233 -1.00000 - 1150 2017 8 21 1 32 58 678 4.8516 176.80073 885.81521 805.52852 -0.56181 3.49608 0.52307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73590 0.20233 -1.00000 - 1151 2017 8 21 1 33 3 530 4.8516 176.80094 885.74506 805.48269 -0.57312 3.42406 0.49500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73555 0.20233 -1.00000 - 1152 2017 8 21 1 33 8 382 4.8516 176.80115 885.66936 805.43738 -0.58786 3.41621 0.46260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73519 0.20233 -1.00000 - 1153 2017 8 21 1 33 13 233 4.8516 176.80137 885.59867 805.39273 -0.60321 3.35537 0.42807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73484 0.20233 -1.00000 - 1154 2017 8 21 1 33 18 85 4.8516 176.80159 885.52885 805.34898 -0.61894 3.27984 0.39003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73449 0.20233 -1.00000 - 1155 2017 8 21 1 33 22 937 4.8516 176.80181 885.46076 805.30592 -0.63506 3.19035 0.34910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73414 0.20233 -1.00000 - 1156 2017 8 21 1 33 27 788 4.8516 176.80203 885.39433 805.26390 -0.65430 3.01405 0.30410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73378 0.20233 -1.00000 - 1157 2017 8 21 1 33 32 640 4.8516 176.80226 885.33428 805.22289 -0.67698 2.86606 0.25473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73343 0.20233 -1.00000 - 1158 2017 8 21 1 33 37 491 4.8516 176.80250 885.26711 805.18294 -0.70173 2.78359 0.20373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73308 0.20233 -1.00000 - 1159 2017 8 21 1 33 42 343 4.8516 176.80273 885.20651 805.14410 -0.72980 2.65292 0.15009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73272 0.20233 -1.00000 - 1160 2017 8 21 1 33 47 195 4.8516 176.80297 885.14851 805.10638 -0.75762 2.50952 0.09192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73237 0.20233 -1.00000 - 1161 2017 8 21 1 33 52 46 4.8516 176.80321 885.09260 805.06981 -0.79176 2.35343 0.03411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73202 0.20233 -1.00000 - 1162 2017 8 21 1 33 56 898 4.8516 176.80345 885.03809 805.03437 -0.82839 2.18629 -0.02648 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73167 0.20232 -1.00000 - 1163 2017 8 21 1 34 1 750 4.8517 176.80369 884.98824 805.00019 -0.86558 1.97498 -0.09200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73131 0.20232 -1.00000 - 1164 2017 8 21 1 34 6 601 4.8517 176.80394 884.93914 804.96721 -0.90600 1.81847 -0.15693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73096 0.20232 -1.00000 - 1165 2017 8 21 1 34 11 453 4.8517 176.80419 884.88888 804.93559 -0.94922 1.62715 -0.22522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73061 0.20232 -1.00000 - 1166 2017 8 21 1 34 16 305 4.8517 176.80444 884.84608 804.90546 -0.99924 1.38933 -0.29618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73025 0.20232 -1.00000 - 1167 2017 8 21 1 34 21 156 4.8517 176.80470 884.80578 804.87668 -1.06348 1.21846 -0.36573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72990 0.20232 -1.00000 - 1168 2017 8 21 1 34 26 8 4.8517 176.80496 884.76807 804.84919 -1.11522 1.01525 -0.43863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72955 0.20232 -1.00000 - 1169 2017 8 21 1 34 30 860 4.8517 176.80522 884.73282 804.82309 -1.19888 0.80714 -0.51360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72920 0.20232 -1.00000 - 1170 2017 8 21 1 34 35 711 4.8517 176.80549 884.69963 804.79856 -1.29904 0.51477 -0.58772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72884 0.20232 -1.00000 - 1171 2017 8 21 1 34 40 563 4.8517 176.80576 884.67453 804.77551 -1.42722 0.25227 -0.66660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72849 0.20232 -1.00000 - 1172 2017 8 21 1 34 45 415 4.8517 176.80603 884.64891 804.75389 -1.46379 0.05470 -0.74214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72814 0.20232 -1.00000 - 1173 2017 8 21 1 34 50 266 4.8517 176.80630 884.62140 804.73372 -1.56453 0.00360 -0.82008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72778 0.20232 -1.00000 - 1174 2017 8 21 1 34 55 118 4.8517 176.80658 884.59935 804.71493 -1.71060 0.00366 -0.90036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72743 0.20232 -1.00000 - 1175 2017 8 21 1 34 59 970 4.8517 176.80686 884.58240 804.69755 -1.78963 0.00371 -0.97671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72708 0.20232 -1.00000 - 1176 2017 8 21 1 35 4 821 4.8517 176.80714 884.56669 804.68150 -1.83847 0.00377 -1.05612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72673 0.20232 -1.00000 - 1177 2017 8 21 1 35 9 673 4.8517 176.80743 884.55562 804.66684 -1.99727 0.00382 -1.13558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72637 0.20232 -1.00000 - 1178 2017 8 21 1 35 14 525 4.8517 176.80773 884.54705 804.65359 -2.15398 0.00387 -1.21062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72602 0.20232 -1.00000 - 1179 2017 8 21 1 35 19 377 4.8517 176.80802 884.54158 804.64157 -2.33080 0.00392 -1.28755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72567 0.20232 -1.00000 - 1180 2017 8 21 1 35 24 228 4.8517 176.80832 884.53879 804.63080 -2.52563 0.00397 -1.36455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72531 0.20232 -1.00000 - 1181 2017 8 21 1 35 29 80 4.8517 176.80863 884.53819 804.62126 -2.67813 0.00402 -1.43815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72496 0.20232 -1.00000 - 1182 2017 8 21 1 35 33 932 4.8517 176.80893 884.54009 804.61294 -2.88114 0.00407 -1.51187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72461 0.20232 -1.00000 - 1183 2017 8 21 1 35 38 784 4.8517 176.80924 884.54441 804.60572 -3.08848 0.00413 -1.58467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72426 0.20232 -1.00000 - 1184 2017 8 21 1 35 43 635 4.8517 176.80956 884.55099 804.59965 -3.29444 0.00419 -1.65444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72390 0.20232 -1.00000 - 1185 2017 8 21 1 35 48 487 4.8517 176.80987 884.56012 804.59461 -3.49808 0.00425 -1.72364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72355 0.20232 -1.00000 - 1186 2017 8 21 1 35 53 339 4.8518 176.81019 884.57131 804.59060 -3.70142 0.00431 -1.79195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72320 0.20232 -1.00000 - 1187 2017 8 21 1 35 58 191 4.8518 176.81052 884.58451 804.58757 -3.91293 0.00438 -1.85667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72285 0.20232 -1.00000 - 1188 2017 8 21 1 36 3 42 4.8518 176.81084 884.59976 804.58546 -4.13149 0.00444 -1.91980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72249 0.20232 -1.00000 - 1189 2017 8 21 1 36 7 894 4.8518 176.81117 884.61692 804.58424 -4.34429 0.00451 -1.98276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72214 0.20232 -1.00000 - 1190 2017 8 21 1 36 12 746 4.8518 176.81149 884.63587 804.58384 -4.55090 0.00459 -2.04066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72179 0.20231 -1.00000 - 1191 2017 8 21 1 36 17 598 4.8518 176.81182 884.65649 804.58419 -4.75115 0.00466 -2.10016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72143 0.20231 -1.00000 - 1192 2017 8 21 1 36 22 449 4.8518 176.81214 884.67848 804.58524 -4.94631 0.00473 -2.15668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72108 0.20231 -1.00000 - 1193 2017 8 21 1 36 27 301 4.8518 176.81246 884.70016 804.58707 -5.22221 0.00480 -2.20962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72073 0.20231 -1.00000 - 1194 2017 8 21 1 36 32 153 4.8518 176.81278 884.72147 804.58958 -5.43854 0.00486 -2.26305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72038 0.20231 -1.00000 - 1195 2017 8 21 1 36 37 5 4.8518 176.81310 884.74673 804.59275 -5.56086 0.00493 -2.31110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72002 0.20231 -1.00000 - 1196 2017 8 21 1 36 41 857 4.8518 176.81342 884.77508 804.59654 -5.72107 0.00499 -2.35635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71967 0.20231 -1.00000 - 1197 2017 8 21 1 36 46 708 4.8518 176.81374 884.80437 804.60090 -5.87330 0.00506 -2.40085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71932 0.20231 -1.00000 - 1198 2017 8 21 1 36 51 560 4.8518 176.81406 884.83463 804.60580 -6.01787 0.00512 -2.44048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71896 0.20231 -1.00000 - 1199 2017 8 21 1 36 56 412 4.8518 176.81438 884.86580 804.61115 -6.15427 0.00518 -2.47634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71861 0.20231 -1.00000 - 1200 2017 8 21 1 37 1 264 4.8518 176.81470 884.89746 804.61684 -6.29583 0.00524 -2.51106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71826 0.20231 -1.00000 - 1201 2017 8 21 1 37 6 116 4.8518 176.81503 884.93021 804.62289 -6.45721 0.00530 -2.54005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71791 0.20231 -1.00000 - 1202 2017 8 21 1 37 10 967 4.8518 176.81535 884.96355 804.62908 -6.60759 0.00536 -2.56621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71755 0.20231 -1.00000 - 1203 2017 8 21 1 37 15 819 4.8518 176.81567 884.99710 804.63539 -6.74342 0.00542 -2.58884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71720 0.20231 -1.00000 - 1204 2017 8 21 1 37 20 671 4.8518 176.81600 885.03093 804.64177 -6.86323 0.00547 -2.60663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71685 0.20231 -1.00000 - 1205 2017 8 21 1 37 25 523 4.8518 176.81632 885.06495 804.64808 -6.96612 0.00553 -2.62138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71649 0.20231 -1.00000 - 1206 2017 8 21 1 37 30 375 4.8518 176.81665 885.09844 804.65420 -7.05170 0.00559 -2.63178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71614 0.20231 -1.00000 - 1207 2017 8 21 1 37 35 227 4.8518 176.81698 885.13146 804.66008 -7.12054 0.00565 -2.63818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71579 0.20231 -1.00000 - 1208 2017 8 21 1 37 40 78 4.8519 176.81731 885.16325 804.66562 -7.17334 0.00570 -2.64116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71544 0.20231 -1.00000 - 1209 2017 8 21 1 37 44 930 4.8519 176.81765 885.19555 804.67084 -7.21293 0.00576 -2.64040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71508 0.20231 -1.00000 - 1210 2017 8 21 1 37 49 782 4.8519 176.81798 885.22598 804.67554 -7.23711 0.00582 -2.63481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71473 0.20231 -1.00000 - 1211 2017 8 21 1 37 54 634 4.8519 176.81832 885.25518 804.67968 -7.24370 0.00588 -2.62709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71438 0.20231 -1.00000 - 1212 2017 8 21 1 37 59 486 4.8519 176.81865 885.28292 804.68319 -7.23587 0.00593 -2.61499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71402 0.20231 -1.00000 - 1213 2017 8 21 1 38 4 338 4.8519 176.81899 885.30903 804.68609 -7.21389 0.00599 -2.60026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71367 0.20231 -1.00000 - 1214 2017 8 21 1 38 9 190 4.8519 176.81933 885.33363 804.68821 -7.17758 0.00604 -2.58244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71332 0.20231 -1.00000 - 1215 2017 8 21 1 38 14 42 4.8519 176.81968 885.35354 804.68966 -7.12721 0.00609 -2.56037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71297 0.20231 -1.00000 - 1216 2017 8 21 1 38 18 893 4.8519 176.82003 885.37114 804.69021 -7.06498 0.00615 -2.53707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71261 0.20231 -1.00000 - 1217 2017 8 21 1 38 23 745 4.8519 176.82038 885.39080 804.68989 -6.99148 0.00620 -2.50972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71226 0.20231 -1.00000 - 1218 2017 8 21 1 38 28 597 4.8519 176.82073 885.40813 804.68873 -6.90400 0.00625 -2.47963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71191 0.20230 -1.00000 - 1219 2017 8 21 1 38 33 449 4.8519 176.82108 885.42333 804.68669 -6.80262 0.00630 -2.44677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71155 0.20230 -1.00000 - 1220 2017 8 21 1 38 38 301 4.8519 176.82144 885.43678 804.68368 -6.68737 0.00636 -2.41097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71120 0.20230 -1.00000 - 1221 2017 8 21 1 38 43 153 4.8519 176.82180 885.44756 804.67963 -6.55952 0.00641 -2.37142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71085 0.20230 -1.00000 - 1222 2017 8 21 1 38 48 5 4.8519 176.82216 885.45612 804.67454 -6.42130 0.00647 -2.33128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71050 0.20230 -1.00000 - 1223 2017 8 21 1 38 52 857 4.8519 176.82252 885.46236 804.66840 -6.27464 0.00653 -2.28497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71014 0.20230 -1.00000 - 1224 2017 8 21 1 38 57 709 4.8519 176.82289 885.46548 804.66118 -6.19587 0.00659 -2.23847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70979 0.20230 -1.00000 - 1225 2017 8 21 1 39 2 561 4.8519 176.82326 885.46885 804.65291 -6.06526 0.00665 -2.18981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70944 0.20230 -1.00000 - 1226 2017 8 21 1 39 7 413 4.8520 176.82363 885.46880 804.64348 -5.84941 0.00671 -2.13404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70908 0.20230 -1.00000 - 1227 2017 8 21 1 39 12 265 4.8520 176.82401 885.46562 804.63269 -5.66557 0.00678 -2.08045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70873 0.20230 -1.00000 - 1228 2017 8 21 1 39 17 117 4.8520 176.82438 885.46077 804.62057 -5.47470 0.00685 -2.02373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70838 0.20230 -1.00000 - 1229 2017 8 21 1 39 21 969 4.8520 176.82476 885.45296 804.60721 -5.27980 0.00692 -1.96333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70803 0.20230 -1.00000 - 1230 2017 8 21 1 39 26 821 4.8520 176.82514 885.44183 804.59252 -5.15751 0.00700 -1.90470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70767 0.20230 -1.00000 - 1231 2017 8 21 1 39 31 673 4.8520 176.82552 885.43209 804.57659 -4.98699 0.00707 -1.84373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70732 0.20230 -1.00000 - 1232 2017 8 21 1 39 36 525 4.8520 176.82590 885.41671 804.55938 -4.73394 0.00715 -1.77835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70697 0.20230 -1.00000 - 1233 2017 8 21 1 39 41 377 4.8520 176.82629 885.39717 804.54081 -4.51469 0.00722 -1.71559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70661 0.20230 -1.00000 - 1234 2017 8 21 1 39 46 229 4.8520 176.82668 885.37678 804.52081 -4.29014 0.00730 -1.65041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70626 0.20230 -1.00000 - 1235 2017 8 21 1 39 51 81 4.8520 176.82707 885.35330 804.49948 -4.06254 0.00737 -1.58372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70591 0.20230 -1.00000 - 1236 2017 8 21 1 39 55 933 4.8520 176.82746 885.32743 804.47679 -3.83330 0.00745 -1.51702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70556 0.20230 -1.00000 - 1237 2017 8 21 1 40 0 785 4.8520 176.82785 885.29778 804.45266 -3.60187 0.00752 -1.44772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70520 0.20230 -1.00000 - 1238 2017 8 21 1 40 5 637 4.8520 176.82825 885.26668 804.42732 -3.41249 0.00759 -1.37985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70485 0.20230 -1.00000 - 1239 2017 8 21 1 40 10 489 4.8520 176.82864 885.23268 804.40083 -3.21482 0.00766 -1.31206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70450 0.20230 -1.00000 - 1240 2017 8 21 1 40 15 341 4.8520 176.82905 885.19702 804.37297 -2.94061 0.00773 -1.24537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70414 0.20230 -1.00000 - 1241 2017 8 21 1 40 20 193 4.8520 176.82945 885.15855 804.34381 -2.69498 0.00780 -1.17557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70379 0.20230 -1.00000 - 1242 2017 8 21 1 40 25 45 4.8520 176.82985 885.11711 804.31334 -2.45225 0.00786 -1.10688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70344 0.20230 -1.00000 - 1243 2017 8 21 1 40 29 897 4.8521 176.83026 885.07284 804.28160 -2.28896 0.00792 -1.04093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70309 0.20230 -1.00000 - 1244 2017 8 21 1 40 34 749 4.8521 176.83067 885.02775 804.24878 -2.08289 0.00798 -0.97245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70273 0.20230 -1.00000 - 1245 2017 8 21 1 40 39 601 4.8521 176.83109 884.97866 804.21472 -1.79986 0.00804 -0.90599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70238 0.20230 -1.00000 - 1246 2017 8 21 1 40 44 453 4.8521 176.83150 884.92866 804.17940 -1.56072 0.00810 -0.84229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70203 0.20229 -1.00000 - 1247 2017 8 21 1 40 49 305 4.8521 176.83192 884.87555 804.14304 -1.32633 0.00815 -0.77535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70167 0.20229 -1.00000 - 1248 2017 8 21 1 40 54 157 4.8521 176.83235 884.82033 804.10549 -1.15264 0.00821 -0.71127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70132 0.20229 -1.00000 - 1249 2017 8 21 1 40 59 9 4.8521 176.83277 884.76327 804.06670 -1.01237 0.00826 -0.65068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70097 0.20229 -1.00000 - 1250 2017 8 21 1 41 3 861 4.8521 176.83320 884.70357 804.02693 -0.93661 0.00831 -0.58820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70062 0.20229 -1.00000 - 1251 2017 8 21 1 41 8 713 4.8521 176.83363 884.64096 803.98622 -0.94769 0.00837 -0.53110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70026 0.20229 -1.00000 - 1252 2017 8 21 1 41 13 566 4.8521 176.83407 884.58021 803.94467 -0.83394 0.00842 -0.47528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69991 0.20229 -1.00000 - 1253 2017 8 21 1 41 18 418 4.8521 176.83450 884.51066 803.90223 -0.80822 0.03228 -0.42062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69956 0.20229 -1.00000 - 1254 2017 8 21 1 41 23 270 4.8521 176.83494 884.43990 803.85886 -0.78969 0.20720 -0.36899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69920 0.20229 -1.00000 - 1255 2017 8 21 1 41 28 122 4.8521 176.83539 884.37282 803.81470 -0.77527 0.40845 -0.31704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69885 0.20229 -1.00000 - 1256 2017 8 21 1 41 32 974 4.8521 176.83583 884.30406 803.76966 -0.76345 0.60461 -0.26847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69850 0.20229 -1.00000 - 1257 2017 8 21 1 41 37 826 4.8521 176.83628 884.23329 803.72388 -0.75221 0.79602 -0.22122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69815 0.20229 -1.00000 - 1258 2017 8 21 1 41 42 678 4.8522 176.83674 884.16089 803.67741 -0.74436 0.98271 -0.17493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69779 0.20229 -1.00000 - 1259 2017 8 21 1 41 47 531 4.8522 176.83719 884.08700 803.63028 -0.73714 1.16349 -0.13066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69744 0.20229 -1.00000 - 1260 2017 8 21 1 41 52 383 4.8522 176.83765 884.01230 803.58249 -0.73064 1.33711 -0.09064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69709 0.20229 -1.00000 - 1261 2017 8 21 1 41 57 235 4.8522 176.83811 883.93647 803.53405 -0.72515 1.50246 -0.04979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69673 0.20229 -1.00000 - 1262 2017 8 21 1 42 2 87 4.8522 176.83857 883.85977 803.48508 -0.72091 1.65867 -0.01464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69638 0.20229 -1.00000 - 1263 2017 8 21 1 42 6 939 4.8522 176.83904 883.78207 803.43561 -0.71788 1.80513 0.01837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69603 0.20229 -1.00000 - 1264 2017 8 21 1 42 11 792 4.8522 176.83951 883.70345 803.38574 -0.71579 1.94129 0.05047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69568 0.20229 -1.00000 - 1265 2017 8 21 1 42 16 644 4.8522 176.83998 883.62448 803.33546 -0.71457 2.06673 0.07652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69532 0.20229 -1.00000 - 1266 2017 8 21 1 42 21 496 4.8522 176.84045 883.54475 803.28486 -0.71421 2.18119 0.10098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69497 0.20229 -1.00000 - 1267 2017 8 21 1 42 26 348 4.8522 176.84093 883.46454 803.23410 -0.71487 2.28455 0.12207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69462 0.20229 -1.00000 - 1268 2017 8 21 1 42 31 200 4.8522 176.84141 883.38441 803.18318 -0.71661 2.37717 0.13834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69426 0.20229 -1.00000 - 1269 2017 8 21 1 42 36 53 4.8522 176.84189 883.30411 803.13220 -0.71925 2.45939 0.15407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69391 0.20229 -1.00000 - 1270 2017 8 21 1 42 40 905 4.8522 176.84238 883.22293 803.08121 -0.72250 2.52973 0.16521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69356 0.20229 -1.00000 - 1271 2017 8 21 1 42 45 757 4.8522 176.84287 883.14308 803.03021 -0.72629 2.58821 0.17287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69321 0.20229 -1.00000 - 1272 2017 8 21 1 42 50 609 4.8523 176.84336 883.06351 802.97931 -0.73074 2.63479 0.17968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69285 0.20229 -1.00000 - 1273 2017 8 21 1 42 55 462 4.8523 176.84385 882.98449 802.92857 -0.73602 2.66933 0.17962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69250 0.20229 -1.00000 - 1274 2017 8 21 1 43 0 314 4.8523 176.84435 882.90601 802.87806 -0.74213 2.69222 0.17753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69215 0.20228 -1.00000 - 1275 2017 8 21 1 43 5 166 4.8523 176.84485 882.82818 802.82786 -0.74887 2.70344 0.17401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69179 0.20228 -1.00000 - 1276 2017 8 21 1 43 10 18 4.8523 176.84535 882.74838 802.77788 -0.75607 2.70044 0.16298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69144 0.20228 -1.00000 - 1277 2017 8 21 1 43 14 871 4.8523 176.84586 882.67228 802.72827 -0.76387 2.68156 0.15111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69109 0.20228 -1.00000 - 1278 2017 8 21 1 43 19 723 4.8523 176.84637 882.59720 802.67922 -0.77232 2.65158 0.13676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69074 0.20228 -1.00000 - 1279 2017 8 21 1 43 24 575 4.8523 176.84688 882.52352 802.63059 -0.78150 2.61362 0.11764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69038 0.20228 -1.00000 - 1280 2017 8 21 1 43 29 428 4.8523 176.84740 882.45058 802.58263 -0.79127 2.56731 0.09603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69003 0.20228 -1.00000 - 1281 2017 8 21 1 43 34 280 4.8523 176.84792 882.37915 802.53539 -0.80145 2.51173 0.07139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68968 0.20228 -1.00000 - 1282 2017 8 21 1 43 39 132 4.8523 176.84844 882.30926 802.48880 -0.81238 2.44573 0.04394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68932 0.20228 -1.00000 - 1283 2017 8 21 1 43 43 985 4.8523 176.84897 882.24090 802.44288 -0.82620 2.36856 0.01449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68897 0.20228 -1.00000 - 1284 2017 8 21 1 43 48 837 4.8523 176.84950 882.17395 802.39771 -0.84087 2.27978 -0.01917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68862 0.20228 -1.00000 - 1285 2017 8 21 1 43 53 689 4.8524 176.85003 882.10871 802.35338 -0.85605 2.17951 -0.05455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68827 0.20228 -1.00000 - 1286 2017 8 21 1 43 58 542 4.8524 176.85057 882.04532 802.30987 -0.87333 2.06781 -0.09118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68791 0.20228 -1.00000 - 1287 2017 8 21 1 44 3 394 4.8524 176.85111 881.98406 802.26723 -0.89535 1.94484 -0.13341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68756 0.20228 -1.00000 - 1288 2017 8 21 1 44 8 247 4.8524 176.85165 881.92462 802.22546 -0.91771 1.81119 -0.17576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68721 0.20228 -1.00000 - 1289 2017 8 21 1 44 13 99 4.8524 176.85220 881.86707 802.18465 -0.93906 1.66771 -0.22186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68685 0.20228 -1.00000 - 1290 2017 8 21 1 44 17 951 4.8524 176.85274 881.81189 802.14476 -0.96558 1.51573 -0.27105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68650 0.20228 -1.00000 - 1291 2017 8 21 1 44 22 804 4.8524 176.85329 881.75865 802.10592 -0.99956 1.35624 -0.32057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68615 0.20228 -1.00000 - 1292 2017 8 21 1 44 27 656 4.8524 176.85385 881.70399 802.06807 -1.03714 1.18716 -0.37510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68580 0.20228 -1.00000 - 1293 2017 8 21 1 44 32 509 4.8524 176.85441 881.65489 802.03125 -1.07697 1.00647 -0.43106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68544 0.20228 -1.00000 - 1294 2017 8 21 1 44 37 361 4.8524 176.85496 881.60775 801.99555 -1.12890 0.81905 -0.48628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68509 0.20228 -1.00000 - 1295 2017 8 21 1 44 42 213 4.8524 176.85553 881.56421 801.96095 -1.18049 0.62970 -0.54575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68474 0.20228 -1.00000 - 1296 2017 8 21 1 44 47 66 4.8524 176.85609 881.52272 801.92754 -1.23786 0.43868 -0.60660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68438 0.20228 -1.00000 - 1297 2017 8 21 1 44 51 918 4.8525 176.85666 881.48320 801.89532 -1.30738 0.24536 -0.66653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68403 0.20228 -1.00000 - 1298 2017 8 21 1 44 56 771 4.8525 176.85723 881.44620 801.86415 -1.34625 0.04850 -0.72871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68368 0.20228 -1.00000 - 1299 2017 8 21 1 45 1 623 4.8525 176.85780 881.41105 801.83403 -1.46914 0.01140 -0.79154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68333 0.20228 -1.00000 - 1300 2017 8 21 1 45 6 476 4.8525 176.85838 881.37811 801.80510 -1.47712 0.01145 -0.85510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68297 0.20228 -1.00000 - 1301 2017 8 21 1 45 11 328 4.8525 176.85896 881.34747 801.77723 -1.59827 0.01150 -0.91888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68262 0.20228 -1.00000 - 1302 2017 8 21 1 45 16 181 4.8525 176.85954 881.31908 801.75044 -1.67512 0.01157 -0.98374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68227 0.20227 -1.00000 - 1303 2017 8 21 1 45 21 33 4.8525 176.86012 881.29290 801.72474 -1.80152 0.01164 -1.04788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68191 0.20227 -1.00000 - 1304 2017 8 21 1 45 25 886 4.8525 176.86071 881.26882 801.70001 -1.95113 0.01171 -1.11224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68156 0.20227 -1.00000 - 1305 2017 8 21 1 45 30 738 4.8525 176.86130 881.24685 801.67631 -1.99885 0.01176 -1.17796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68121 0.20227 -1.00000 - 1306 2017 8 21 1 45 35 591 4.8525 176.86190 881.22673 801.65361 -2.09843 0.01180 -1.24131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68086 0.20227 -1.00000 - 1307 2017 8 21 1 45 40 443 4.8525 176.86249 881.20865 801.63186 -2.27778 0.01183 -1.30667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68050 0.20227 -1.00000 - 1308 2017 8 21 1 45 45 296 4.8525 176.86309 881.19246 801.61115 -2.44842 0.01186 -1.37136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68015 0.20227 -1.00000 - 1309 2017 8 21 1 45 50 148 4.8525 176.86369 881.17817 801.59151 -2.63071 0.01192 -1.43554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67980 0.20227 -1.00000 - 1310 2017 8 21 1 45 55 1 4.8526 176.86430 881.16609 801.57286 -2.81489 0.01199 -1.50171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67944 0.20227 -1.00000 - 1311 2017 8 21 1 45 59 853 4.8526 176.86492 881.15538 801.55528 -2.99535 0.01206 -1.56591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67909 0.20227 -1.00000 - 1312 2017 8 21 1 46 4 706 4.8526 176.86553 881.14993 801.53878 -3.17097 0.01209 -1.63037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67874 0.20227 -1.00000 - 1313 2017 8 21 1 46 9 559 4.8526 176.86615 881.14434 801.52322 -3.36154 0.01211 -1.69349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67839 0.20227 -1.00000 - 1314 2017 8 21 1 46 14 411 4.8526 176.86677 881.13763 801.50857 -3.58119 0.01215 -1.75484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67803 0.20227 -1.00000 - 1315 2017 8 21 1 46 19 264 4.8526 176.86739 881.13512 801.49471 -3.79707 0.01220 -1.81698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67768 0.20227 -1.00000 - 1316 2017 8 21 1 46 24 116 4.8526 176.86802 881.13397 801.48167 -3.95023 0.01225 -1.87640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67733 0.20227 -1.00000 - 1317 2017 8 21 1 46 28 969 4.8526 176.86865 881.13333 801.46942 -4.14144 0.01235 -1.93489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67697 0.20227 -1.00000 - 1318 2017 8 21 1 46 33 822 4.8526 176.86929 881.13948 801.45808 -4.32804 0.01242 -1.99299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67662 0.20227 -1.00000 - 1319 2017 8 21 1 46 38 674 4.8526 176.86993 881.14318 801.44754 -4.50954 0.01245 -2.04669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67627 0.20227 -1.00000 - 1320 2017 8 21 1 46 43 527 4.8526 176.87057 881.14514 801.43764 -4.68448 0.01249 -2.10087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67591 0.20227 -1.00000 - 1321 2017 8 21 1 46 48 380 4.8527 176.87121 881.15153 801.42837 -4.85640 0.01256 -2.15473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67556 0.20227 -1.00000 - 1322 2017 8 21 1 46 53 232 4.8527 176.87185 881.15866 801.41974 -5.02597 0.01262 -2.20371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67521 0.20227 -1.00000 - 1323 2017 8 21 1 46 58 85 4.8527 176.87250 881.16528 801.41177 -5.19678 0.01267 -2.25252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67486 0.20227 -1.00000 - 1324 2017 8 21 1 47 2 938 4.8527 176.87316 881.17117 801.40420 -5.43506 0.01278 -2.30046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67450 0.20227 -1.00000 - 1325 2017 8 21 1 47 7 790 4.8527 176.87383 881.18177 801.39721 -5.52894 0.01283 -2.34250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67415 0.20227 -1.00000 - 1326 2017 8 21 1 47 12 643 4.8527 176.87449 881.19318 801.39069 -5.68714 0.01287 -2.38218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67380 0.20227 -1.00000 - 1327 2017 8 21 1 47 17 496 4.8527 176.87515 881.20524 801.38441 -5.83833 0.01295 -2.42266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67344 0.20227 -1.00000 - 1328 2017 8 21 1 47 22 348 4.8527 176.87580 881.21718 801.37856 -5.97721 0.01301 -2.45701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67309 0.20227 -1.00000 - 1329 2017 8 21 1 47 27 201 4.8527 176.87646 881.22975 801.37304 -6.10221 0.01305 -2.48786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67274 0.20227 -1.00000 - 1330 2017 8 21 1 47 32 54 4.8527 176.87715 881.24293 801.36757 -6.21398 0.01312 -2.51908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67239 0.20226 -1.00000 - 1331 2017 8 21 1 47 36 907 4.8527 176.87783 881.25565 801.36218 -6.31331 0.01321 -2.54518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67203 0.20226 -1.00000 - 1332 2017 8 21 1 47 41 759 4.8527 176.87852 881.26816 801.35689 -6.40079 0.01327 -2.56760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67168 0.20226 -1.00000 - 1333 2017 8 21 1 47 46 612 4.8528 176.87919 881.28069 801.35154 -6.47682 0.01335 -2.58940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67133 0.20226 -1.00000 - 1334 2017 8 21 1 47 51 465 4.8528 176.87986 881.29284 801.34621 -6.54154 0.01342 -2.60658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67097 0.20226 -1.00000 - 1335 2017 8 21 1 47 56 318 4.8528 176.88054 881.30464 801.34085 -6.59525 0.01346 -2.62033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67062 0.20226 -1.00000 - 1336 2017 8 21 1 48 1 170 4.8528 176.88124 881.31625 801.33525 -6.63849 0.01351 -2.63312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67027 0.20226 -1.00000 - 1337 2017 8 21 1 48 6 23 4.8528 176.88195 881.32700 801.32945 -6.67162 0.01359 -2.64111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66992 0.20226 -1.00000 - 1338 2017 8 21 1 48 10 876 4.8528 176.88265 881.33710 801.32350 -6.69484 0.01368 -2.64685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66956 0.20226 -1.00000 - 1339 2017 8 21 1 48 15 729 4.8528 176.88334 881.34686 801.31718 -6.70801 0.01377 -2.65074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66921 0.20226 -1.00000 - 1340 2017 8 21 1 48 20 582 4.8528 176.88403 881.35576 801.31056 -6.71096 0.01382 -2.64814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66886 0.20226 -1.00000 - 1341 2017 8 21 1 48 25 434 4.8528 176.88473 881.36012 801.30347 -6.70466 0.01392 -2.64697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66850 0.20226 -1.00000 - 1342 2017 8 21 1 48 30 287 4.8528 176.88544 881.36705 801.29589 -6.69211 0.01392 -2.64173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66815 0.20226 -1.00000 - 1343 2017 8 21 1 48 35 140 4.8528 176.88617 881.37336 801.28798 -6.67167 0.01401 -2.63173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66780 0.20226 -1.00000 - 1344 2017 8 21 1 48 39 993 4.8529 176.88690 881.37889 801.27949 -6.64083 0.01411 -2.62098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66745 0.20226 -1.00000 - 1345 2017 8 21 1 48 44 846 4.8529 176.88761 881.38292 801.27047 -6.59946 0.01420 -2.60795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66709 0.20226 -1.00000 - 1346 2017 8 21 1 48 49 699 4.8529 176.88831 881.38560 801.26094 -6.54791 0.01427 -2.58870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66674 0.20226 -1.00000 - 1347 2017 8 21 1 48 54 552 4.8529 176.88902 881.38666 801.25073 -6.48739 0.01432 -2.57015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66639 0.20226 -1.00000 - 1348 2017 8 21 1 48 59 405 4.8529 176.88975 881.38706 801.23979 -6.41937 0.01436 -2.54827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66603 0.20226 -1.00000 - 1349 2017 8 21 1 49 4 257 4.8529 176.89049 881.38566 801.22822 -6.34450 0.01442 -2.52217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66568 0.20226 -1.00000 - 1350 2017 8 21 1 49 9 110 4.8529 176.89124 881.38316 801.21582 -6.26238 0.01450 -2.49484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66533 0.20226 -1.00000 - 1351 2017 8 21 1 49 13 963 4.8529 176.89197 881.37927 801.20269 -6.17278 0.01459 -2.46348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66497 0.20226 -1.00000 - 1352 2017 8 21 1 49 18 816 4.8529 176.89269 881.37392 801.18866 -6.07549 0.01464 -2.42922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66462 0.20226 -1.00000 - 1353 2017 8 21 1 49 23 669 4.8529 176.89342 881.36681 801.17371 -5.97058 0.01466 -2.39404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66427 0.20226 -1.00000 - 1354 2017 8 21 1 49 28 522 4.8530 176.89416 881.35801 801.15791 -5.85841 0.01467 -2.35652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66392 0.20226 -1.00000 - 1355 2017 8 21 1 49 33 375 4.8530 176.89493 881.34742 801.14112 -5.73926 0.01472 -2.31508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66356 0.20226 -1.00000 - 1356 2017 8 21 1 49 38 228 4.8530 176.89569 881.33511 801.12333 -5.61316 0.01480 -2.27475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66321 0.20226 -1.00000 - 1357 2017 8 21 1 49 43 81 4.8530 176.89644 881.32076 801.10457 -5.48039 0.01488 -2.23065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66286 0.20226 -1.00000 - 1358 2017 8 21 1 49 47 934 4.8530 176.89719 881.30438 801.08490 -5.34129 0.01492 -2.18510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66250 0.20226 -1.00000 - 1359 2017 8 21 1 49 52 787 4.8530 176.89795 881.28639 801.06414 -5.19657 0.01492 -2.14101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66215 0.20225 -1.00000 - 1360 2017 8 21 1 49 57 640 4.8530 176.89872 881.26606 801.04246 -5.04753 0.01495 -2.09232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66180 0.20225 -1.00000 - 1361 2017 8 21 1 50 2 493 4.8530 176.89950 881.24315 801.01989 -4.96933 0.01501 -2.04545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66145 0.20225 -1.00000 - 1362 2017 8 21 1 50 7 346 4.8530 176.90028 881.22098 800.99635 -4.84621 0.01510 -1.99739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66109 0.20225 -1.00000 - 1363 2017 8 21 1 50 12 199 4.8530 176.90105 881.19389 800.97193 -4.64537 0.01517 -1.94556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66074 0.20225 -1.00000 - 1364 2017 8 21 1 50 17 52 4.8531 176.90182 881.16736 800.94647 -4.48044 0.01519 -1.89552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66039 0.20225 -1.00000 - 1365 2017 8 21 1 50 21 905 4.8531 176.90261 881.13829 800.91994 -4.31383 0.01522 -1.84483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66003 0.20225 -1.00000 - 1366 2017 8 21 1 50 26 758 4.8531 176.90340 881.10717 800.89241 -4.14731 0.01528 -1.79126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65968 0.20225 -1.00000 - 1367 2017 8 21 1 50 31 611 4.8531 176.90420 881.07427 800.86380 -3.98187 0.01536 -1.73801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65933 0.20225 -1.00000 - 1368 2017 8 21 1 50 36 465 4.8531 176.90498 881.03839 800.83426 -3.88869 0.01544 -1.68478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65898 0.20225 -1.00000 - 1369 2017 8 21 1 50 41 318 4.8531 176.90578 881.00318 800.80381 -3.75085 0.01548 -1.63143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65862 0.20225 -1.00000 - 1370 2017 8 21 1 50 46 171 4.8531 176.90658 880.96342 800.77243 -3.53499 0.01553 -1.57790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65827 0.20225 -1.00000 - 1371 2017 8 21 1 50 51 24 4.8531 176.90739 880.92393 800.74005 -3.35487 0.01561 -1.52505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65792 0.20225 -1.00000 - 1372 2017 8 21 1 50 55 877 4.8531 176.90819 880.88219 800.70671 -3.17429 0.01570 -1.47236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65756 0.20225 -1.00000 - 1373 2017 8 21 1 51 0 730 4.8531 176.90899 880.83700 800.67246 -2.99504 0.01577 -1.41813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65721 0.20225 -1.00000 - 1374 2017 8 21 1 51 5 583 4.8532 176.90980 880.78780 800.63719 -2.81768 0.01582 -1.36548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65686 0.20225 -1.00000 - 1375 2017 8 21 1 51 10 436 4.8532 176.91063 880.74104 800.60096 -2.64241 0.01589 -1.31216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65650 0.20225 -1.00000 - 1376 2017 8 21 1 51 15 290 4.8532 176.91146 880.69183 800.56376 -2.46553 0.01601 -1.25857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65615 0.20225 -1.00000 - 1377 2017 8 21 1 51 20 143 4.8532 176.91226 880.64062 800.52558 -2.28760 0.01611 -1.20467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65580 0.20225 -1.00000 - 1378 2017 8 21 1 51 24 996 4.8532 176.91306 880.58781 800.48654 -2.10885 0.01618 -1.15256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65545 0.20225 -1.00000 - 1379 2017 8 21 1 51 29 849 4.8532 176.91389 880.53354 800.44663 -1.92978 0.01621 -1.09953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65509 0.20225 -1.00000 - 1380 2017 8 21 1 51 34 702 4.8532 176.91473 880.47753 800.40576 -1.75114 0.01627 -1.04738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65474 0.20225 -1.00000 - 1381 2017 8 21 1 51 39 556 4.8532 176.91558 880.41971 800.36400 -1.57480 0.01640 -0.99761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65439 0.20225 -1.00000 - 1382 2017 8 21 1 51 44 409 4.8532 176.91640 880.36023 800.32140 -1.53280 0.01653 -0.94737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65403 0.20225 -1.00000 - 1383 2017 8 21 1 51 49 262 4.8532 176.91721 880.29929 800.27798 -1.39908 0.01659 -0.89825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65368 0.20225 -1.00000 - 1384 2017 8 21 1 51 54 115 4.8532 176.91804 880.23678 800.23374 -1.34736 0.01660 -0.85138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65333 0.20225 -1.00000 - 1385 2017 8 21 1 51 58 969 4.8533 176.91890 880.17295 800.18876 -1.28657 0.01664 -0.80555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65298 0.20225 -1.00000 - 1386 2017 8 21 1 52 3 822 4.8533 176.91977 880.10774 800.14303 -1.25758 0.01676 -0.76130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65262 0.20225 -1.00000 - 1387 2017 8 21 1 52 8 675 4.8533 176.92060 880.04131 800.09665 -1.20024 0.01689 -0.72014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65227 0.20224 -1.00000 - 1388 2017 8 21 1 52 13 528 4.8533 176.92142 879.97374 800.04964 -1.15488 0.01695 -0.67797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65192 0.20224 -1.00000 - 1389 2017 8 21 1 52 18 382 4.8533 176.92226 879.90468 800.00207 -1.14922 0.01694 -0.64175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65156 0.20224 -1.00000 - 1390 2017 8 21 1 52 23 235 4.8533 176.92314 879.83790 799.95397 -1.09980 0.01696 -0.60644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65121 0.20224 -1.00000 - 1391 2017 8 21 1 52 28 88 4.8533 176.92403 879.76543 799.90548 -1.07828 0.01706 -0.57257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65086 0.20224 -1.00000 - 1392 2017 8 21 1 52 32 942 4.8533 176.92488 879.69540 799.85649 -1.06152 0.12067 -0.54236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65050 0.20224 -1.00000 - 1393 2017 8 21 1 52 37 795 4.8533 176.92572 879.62373 799.80713 -1.04600 0.24564 -0.51448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65015 0.20224 -1.00000 - 1394 2017 8 21 1 52 42 648 4.8534 176.92658 879.55130 799.75746 -1.03460 0.36103 -0.48760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64980 0.20224 -1.00000 - 1395 2017 8 21 1 52 47 502 4.8534 176.92747 879.47458 799.70742 -1.02324 0.46428 -0.46595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64945 0.20224 -1.00000 - 1396 2017 8 21 1 52 52 355 4.8534 176.92837 879.39875 799.65724 -1.01533 0.55544 -0.44474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64909 0.20224 -1.00000 - 1397 2017 8 21 1 52 57 209 4.8534 176.92925 879.32599 799.60681 -1.00825 0.63749 -0.42405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64874 0.20224 -1.00000 - 1398 2017 8 21 1 53 2 62 4.8534 176.93010 879.25273 799.55620 -1.00188 0.71220 -0.40944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64839 0.20224 -1.00000 - 1399 2017 8 21 1 53 6 915 4.8534 176.93098 879.17885 799.50546 -0.99708 0.78018 -0.39424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64803 0.20224 -1.00000 - 1400 2017 8 21 1 53 11 769 4.8534 176.93190 879.10488 799.45469 -0.99427 0.84153 -0.38112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64768 0.20224 -1.00000 - 1401 2017 8 21 1 53 16 622 4.8534 176.93282 879.03116 799.40383 -0.99288 0.89531 -0.37213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64733 0.20224 -1.00000 - 1402 2017 8 21 1 53 21 476 4.8534 176.93371 878.95736 799.35295 -0.99174 0.94087 -0.36412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64698 0.20224 -1.00000 - 1403 2017 8 21 1 53 26 329 4.8535 176.93457 878.88384 799.30202 -0.99157 0.97789 -0.35902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64662 0.20224 -1.00000 - 1404 2017 8 21 1 53 31 183 4.8535 176.93548 878.81041 799.25110 -0.99418 1.00620 -0.35812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64627 0.20224 -1.00000 - 1405 2017 8 21 1 53 36 36 4.8535 176.93643 878.73701 799.20042 -0.99760 1.02605 -0.35776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64592 0.20224 -1.00000 - 1406 2017 8 21 1 53 40 890 4.8535 176.93737 878.66431 799.14992 -1.00433 1.03738 -0.35884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64556 0.20224 -1.00000 - 1407 2017 8 21 1 53 45 743 4.8535 176.93826 878.59240 799.09953 -1.01271 1.03988 -0.36567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64521 0.20224 -1.00000 - 1408 2017 8 21 1 53 50 597 4.8535 176.93914 878.52069 799.04936 -1.02139 1.03354 -0.37266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64486 0.20224 -1.00000 - 1409 2017 8 21 1 53 55 450 4.8535 176.94007 878.44959 798.99949 -1.02930 1.01876 -0.38120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64450 0.20224 -1.00000 - 1410 2017 8 21 1 54 0 304 4.8535 176.94105 878.37950 798.94979 -1.03989 0.99598 -0.39512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64415 0.20224 -1.00000 - 1411 2017 8 21 1 54 5 157 4.8536 176.94201 878.30986 798.90041 -1.05556 0.96599 -0.40968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64380 0.20224 -1.00000 - 1412 2017 8 21 1 54 10 11 4.8536 176.94291 878.23936 798.85150 -1.07314 0.92818 -0.42570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64345 0.20224 -1.00000 - 1413 2017 8 21 1 54 14 864 4.8536 176.94380 878.17030 798.80284 -1.09127 0.88071 -0.44737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64309 0.20224 -1.00000 - 1414 2017 8 21 1 54 19 718 4.8536 176.94474 878.10327 798.75461 -1.12571 0.82518 -0.46887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64274 0.20224 -1.00000 - 1415 2017 8 21 1 54 24 572 4.8536 176.94575 878.03708 798.70693 -1.15335 0.76564 -0.49284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64239 0.20223 -1.00000 - 1416 2017 8 21 1 54 29 425 4.8536 176.94674 877.97219 798.65970 -1.18179 0.70146 -0.52052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64203 0.20223 -1.00000 - 1417 2017 8 21 1 54 34 279 4.8536 176.94765 877.90824 798.61309 -1.20770 0.63202 -0.54719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64168 0.20223 -1.00000 - 1418 2017 8 21 1 54 39 132 4.8536 176.94854 877.84545 798.56699 -1.23769 0.55571 -0.57854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64133 0.20223 -1.00000 - 1419 2017 8 21 1 54 43 986 4.8537 176.94949 877.78354 798.52138 -1.27434 0.47147 -0.61201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64098 0.20223 -1.00000 - 1420 2017 8 21 1 54 48 840 4.8537 176.95053 877.72255 798.47649 -1.31357 0.37895 -0.64571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64062 0.20223 -1.00000 - 1421 2017 8 21 1 54 53 693 4.8537 176.95155 877.66300 798.43219 -1.34910 0.27847 -0.68312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64027 0.20223 -1.00000 - 1422 2017 8 21 1 54 58 547 4.8537 176.95247 877.60476 798.38862 -1.39406 0.17108 -0.72363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63992 0.20223 -1.00000 - 1423 2017 8 21 1 55 3 401 4.8537 176.95335 877.54808 798.34578 -1.41123 0.05756 -0.76176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63956 0.20223 -1.00000 - 1424 2017 8 21 1 55 8 254 4.8537 176.95432 877.49077 798.30360 -1.46943 0.01889 -0.80623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63921 0.20223 -1.00000 - 1425 2017 8 21 1 55 13 108 4.8537 176.95539 877.43696 798.26218 -1.54352 0.01887 -0.85117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63886 0.20223 -1.00000 - 1426 2017 8 21 1 55 17 962 4.8537 176.95643 877.38459 798.22159 -1.59634 0.01913 -0.89478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63850 0.20223 -1.00000 - 1427 2017 8 21 1 55 22 816 4.8538 176.95736 877.33400 798.18169 -1.64399 0.01941 -0.94356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63815 0.20223 -1.00000 - 1428 2017 8 21 1 55 27 669 4.8538 176.95825 877.28501 798.14260 -1.70646 0.01942 -0.99322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63780 0.20223 -1.00000 - 1429 2017 8 21 1 55 32 523 4.8538 176.95923 877.23727 798.10448 -1.72643 0.01922 -1.04015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63745 0.20223 -1.00000 - 1430 2017 8 21 1 55 37 377 4.8538 176.96032 877.18744 798.06705 -1.89948 0.01917 -1.09450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63709 0.20223 -1.00000 - 1431 2017 8 21 1 55 42 231 4.8538 176.96140 877.14012 798.03060 -1.92876 0.01945 -1.14819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63674 0.20223 -1.00000 - 1432 2017 8 21 1 55 47 85 4.8538 176.96234 877.09675 797.99503 -2.02371 0.01976 -1.19788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63639 0.20223 -1.00000 - 1433 2017 8 21 1 55 51 939 4.8538 176.96322 877.05600 797.96022 -2.16076 0.01975 -1.25329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63603 0.20223 -1.00000 - 1434 2017 8 21 1 55 56 792 4.8538 176.96422 877.01670 797.92636 -2.20305 0.01949 -1.30720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63568 0.20223 -1.00000 - 1435 2017 8 21 1 56 1 646 4.8539 176.96535 876.97888 797.89353 -2.28553 0.01940 -1.35891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63533 0.20223 -1.00000 - 1436 2017 8 21 1 56 6 500 4.8539 176.96645 876.94322 797.86140 -2.47219 0.01970 -1.41445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63497 0.20223 -1.00000 - 1437 2017 8 21 1 56 11 354 4.8539 176.96741 876.90851 797.83021 -2.57477 0.02004 -1.46781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63462 0.20223 -1.00000 - 1438 2017 8 21 1 56 16 208 4.8539 176.96829 876.87547 797.79984 -2.64863 0.02001 -1.52024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63427 0.20223 -1.00000 - 1439 2017 8 21 1 56 21 62 4.8539 176.96930 876.84428 797.77021 -2.78235 0.01969 -1.57447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63392 0.20223 -1.00000 - 1440 2017 8 21 1 56 25 916 4.8539 176.97047 876.81441 797.74137 -2.88839 0.01956 -1.62581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63356 0.20223 -1.00000 - 1441 2017 8 21 1 56 30 770 4.8539 176.97161 876.78606 797.71332 -3.02191 0.01988 -1.67697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63321 0.20223 -1.00000 - 1442 2017 8 21 1 56 35 624 4.8540 176.97258 876.75944 797.68600 -3.15521 0.02028 -1.72839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63286 0.20223 -1.00000 - 1443 2017 8 21 1 56 40 478 4.8540 176.97345 876.73435 797.65939 -3.28796 0.02026 -1.77808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63250 0.20222 -1.00000 - 1444 2017 8 21 1 56 45 332 4.8540 176.97447 876.71075 797.63348 -3.42035 0.01988 -1.82687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63215 0.20222 -1.00000 - 1445 2017 8 21 1 56 50 186 4.8540 176.97568 876.68857 797.60820 -3.55645 0.01970 -1.87530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63180 0.20222 -1.00000 - 1446 2017 8 21 1 56 55 40 4.8540 176.97687 876.66768 797.58354 -3.70101 0.02006 -1.92292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63144 0.20222 -1.00000 - 1447 2017 8 21 1 56 59 894 4.8540 176.97786 876.64793 797.55947 -3.84314 0.02054 -1.96995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63109 0.20222 -1.00000 - 1448 2017 8 21 1 57 4 748 4.8541 176.97872 876.62928 797.53602 -3.98272 0.02056 -2.01678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63074 0.20222 -1.00000 - 1449 2017 8 21 1 57 9 602 4.8541 176.97973 876.61165 797.51311 -4.11956 0.02013 -2.06170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63039 0.20222 -1.00000 - 1450 2017 8 21 1 57 14 456 4.8541 176.98097 876.59517 797.49075 -4.25361 0.01988 -2.10739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63003 0.20222 -1.00000 - 1451 2017 8 21 1 57 19 310 4.8541 176.98222 876.57967 797.46895 -4.38518 0.02025 -2.15119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62968 0.20222 -1.00000 - 1452 2017 8 21 1 57 24 164 4.8541 176.98324 876.56524 797.44768 -4.51419 0.02083 -2.19381 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62933 0.20222 -1.00000 - 1453 2017 8 21 1 57 29 18 4.8541 176.98409 876.55183 797.42694 -4.64012 0.02092 -2.23658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62897 0.20222 -1.00000 - 1454 2017 8 21 1 57 33 872 4.8541 176.98508 876.53924 797.40667 -4.76320 0.02046 -2.27605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62862 0.20222 -1.00000 - 1455 2017 8 21 1 57 38 727 4.8542 176.98633 876.52766 797.38689 -4.88368 0.02011 -2.31558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62827 0.20222 -1.00000 - 1456 2017 8 21 1 57 43 581 4.8542 176.98764 876.51693 797.36753 -5.00126 0.02045 -2.35313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62791 0.20222 -1.00000 - 1457 2017 8 21 1 57 48 435 4.8542 176.98871 876.50699 797.34873 -5.11588 0.02112 -2.38862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62756 0.20222 -1.00000 - 1458 2017 8 21 1 57 53 289 4.8542 176.98956 876.49846 797.33026 -5.25159 0.02131 -2.42463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62721 0.20222 -1.00000 - 1459 2017 8 21 1 57 58 143 4.8542 176.99051 876.49034 797.31220 -5.34172 0.02084 -2.45780 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62686 0.20222 -1.00000 - 1460 2017 8 21 1 58 2 998 4.8542 176.99177 876.48213 797.29465 -5.51303 0.02039 -2.48951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62650 0.20222 -1.00000 - 1461 2017 8 21 1 58 7 852 4.8542 176.99312 876.47889 797.27751 -5.66225 0.02067 -2.52042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62615 0.20222 -1.00000 - 1462 2017 8 21 1 58 12 706 4.8543 176.99425 876.47321 797.26070 -5.73353 0.02141 -2.54722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62580 0.20222 -1.00000 - 1463 2017 8 21 1 58 17 560 4.8543 176.99510 876.46578 797.24410 -5.83301 0.02172 -2.57307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62544 0.20222 -1.00000 - 1464 2017 8 21 1 58 22 415 4.8543 176.99603 876.46148 797.22764 -5.92558 0.02126 -2.59938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62509 0.20222 -1.00000 - 1465 2017 8 21 1 58 27 269 4.8543 176.99729 876.45708 797.21137 -6.01264 0.02073 -2.61789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62474 0.20222 -1.00000 - 1466 2017 8 21 1 58 32 123 4.8543 176.99868 876.44919 797.19511 -6.09421 0.02094 -2.63940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62438 0.20222 -1.00000 - 1467 2017 8 21 1 58 36 977 4.8543 176.99986 876.44510 797.17892 -6.17120 0.02175 -2.65726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62403 0.20222 -1.00000 - 1468 2017 8 21 1 58 41 832 4.8543 177.00072 876.44127 797.16283 -6.24066 0.02217 -2.66990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62368 0.20222 -1.00000 - 1469 2017 8 21 1 58 46 686 4.8543 177.00162 876.43754 797.14659 -6.30166 0.02172 -2.68363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62333 0.20222 -1.00000 - 1470 2017 8 21 1 58 51 541 4.8544 177.00288 876.43316 797.13036 -6.35328 0.02108 -2.69315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62297 0.20222 -1.00000 - 1471 2017 8 21 1 58 56 395 4.8544 177.00431 876.42854 797.11411 -6.39594 0.02127 -2.69879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62262 0.20221 -1.00000 - 1472 2017 8 21 1 59 1 249 4.8544 177.00554 876.42350 797.09761 -6.43044 0.02205 -2.70306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62227 0.20221 -1.00000 - 1473 2017 8 21 1 59 6 104 4.8544 177.00641 876.41812 797.08094 -6.45725 0.02256 -2.70426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62191 0.20221 -1.00000 - 1474 2017 8 21 1 59 10 958 4.8544 177.00728 876.41247 797.06404 -6.47639 0.02213 -2.70188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62156 0.20221 -1.00000 - 1475 2017 8 21 1 59 15 813 4.8544 177.00852 876.40647 797.04678 -6.48774 0.02137 -2.69886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62121 0.20221 -1.00000 - 1476 2017 8 21 1 59 20 667 4.8545 177.01000 876.39965 797.02917 -6.49107 0.02153 -2.69233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62085 0.20221 -1.00000 - 1477 2017 8 21 1 59 25 522 4.8545 177.01129 876.39206 797.01116 -6.48609 0.02221 -2.68195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62050 0.20221 -1.00000 - 1478 2017 8 21 1 59 30 376 4.8545 177.01220 876.38383 796.99267 -6.47257 0.02283 -2.67228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62015 0.20221 -1.00000 - 1479 2017 8 21 1 59 35 230 4.8545 177.01305 876.37441 796.97372 -6.45029 0.02248 -2.65869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61980 0.20221 -1.00000 - 1480 2017 8 21 1 59 40 85 4.8545 177.01425 876.36384 796.95436 -6.41909 0.02165 -2.64279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61944 0.20221 -1.00000 - 1481 2017 8 21 1 59 44 940 4.8545 177.01575 876.35258 796.93445 -6.37862 0.02170 -2.62685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61909 0.20221 -1.00000 - 1482 2017 8 21 1 59 49 794 4.8545 177.01712 876.34001 796.91407 -6.32861 0.02229 -2.60600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61874 0.20221 -1.00000 - 1483 2017 8 21 1 59 54 649 4.8546 177.01811 876.32261 796.89309 -6.27016 0.02301 -2.58576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61838 0.20221 -1.00000 - 1484 2017 8 21 1 59 59 503 4.8546 177.01895 876.30733 796.87149 -6.20635 0.02280 -2.56306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61803 0.20221 -1.00000 - 1485 2017 8 21 2 0 4 358 4.8546 177.02011 876.29140 796.84931 -6.13550 0.02198 -2.53618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61768 0.20221 -1.00000 - 1486 2017 8 21 2 0 9 212 4.8546 177.02161 876.27428 796.82647 -6.05608 0.02185 -2.50963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61732 0.20221 -1.00000 - 1487 2017 8 21 2 0 14 67 4.8546 177.02305 876.25559 796.80288 -5.96838 0.02240 -2.48095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61697 0.20221 -1.00000 - 1488 2017 8 21 2 0 18 922 4.8546 177.02411 876.23540 796.77861 -5.87306 0.02321 -2.44860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61662 0.20221 -1.00000 - 1489 2017 8 21 2 0 23 776 4.8546 177.02496 876.21415 796.75350 -5.77156 0.02315 -2.41562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61626 0.20221 -1.00000 - 1490 2017 8 21 2 0 28 631 4.8547 177.02608 876.19122 796.72757 -5.66489 0.02237 -2.38025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61591 0.20221 -1.00000 - 1491 2017 8 21 2 0 33 486 4.8547 177.02756 876.16689 796.70092 -5.55360 0.02205 -2.34351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61556 0.20221 -1.00000 - 1492 2017 8 21 2 0 38 340 4.8547 177.02905 876.14121 796.67341 -5.43801 0.02255 -2.30505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61521 0.20221 -1.00000 - 1493 2017 8 21 2 0 43 195 4.8547 177.03018 876.11397 796.64506 -5.31829 0.02343 -2.26570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61485 0.20221 -1.00000 - 1494 2017 8 21 2 0 48 50 4.8547 177.03106 876.08517 796.61587 -5.19454 0.02353 -2.22394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61450 0.20221 -1.00000 - 1495 2017 8 21 2 0 52 904 4.8547 177.03215 876.05472 796.58572 -5.06692 0.02278 -2.18121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61415 0.20221 -1.00000 - 1496 2017 8 21 2 0 57 759 4.8548 177.03365 876.02264 796.55465 -4.93555 0.02241 -2.13875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61379 0.20221 -1.00000 - 1497 2017 8 21 2 1 2 614 4.8548 177.03517 875.98874 796.52264 -4.80056 0.02283 -2.09342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61344 0.20221 -1.00000 - 1498 2017 8 21 2 1 7 469 4.8548 177.03634 875.95322 796.48973 -4.66208 0.02380 -2.04940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61309 0.20221 -1.00000 - 1499 2017 8 21 2 1 12 324 4.8548 177.03720 875.91628 796.45591 -4.52022 0.02401 -2.00407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61273 0.20220 -1.00000 - 1500 2017 8 21 2 1 17 178 4.8548 177.03827 875.87749 796.42119 -4.37538 0.02326 -1.95885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61238 0.20220 -1.00000 - 1501 2017 8 21 2 1 22 33 4.8548 177.03978 875.83701 796.38556 -4.22870 0.02281 -1.91445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61203 0.20220 -1.00000 - 1502 2017 8 21 2 1 26 888 4.8548 177.04136 875.79423 796.34919 -4.15185 0.02311 -1.86899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61168 0.20220 -1.00000 - 1503 2017 8 21 2 1 31 743 4.8548 177.04260 875.74975 796.31198 -4.03568 0.02414 -1.82393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61132 0.20220 -1.00000 - 1504 2017 8 21 2 1 36 598 4.8549 177.04346 875.70512 796.27394 -3.84924 0.02449 -1.77851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61097 0.20220 -1.00000 - 1505 2017 8 21 2 1 41 453 4.8549 177.04445 875.65909 796.23499 -3.70030 0.02378 -1.73206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61062 0.20220 -1.00000 - 1506 2017 8 21 2 1 46 308 4.8549 177.04592 875.61092 796.19516 -3.55113 0.02304 -1.68713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61026 0.20220 -1.00000 - 1507 2017 8 21 2 1 51 162 4.8549 177.04756 875.56052 796.15446 -3.40314 0.02334 -1.64145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60991 0.20220 -1.00000 - 1508 2017 8 21 2 1 56 17 4.8549 177.04889 875.51035 796.11283 -3.26034 0.02432 -1.59508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60956 0.20220 -1.00000 - 1509 2017 8 21 2 2 0 872 4.8549 177.04984 875.45719 796.07038 -3.11798 0.02477 -1.55030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60920 0.20220 -1.00000 - 1510 2017 8 21 2 2 5 727 4.8550 177.05082 875.40106 796.02719 -3.04097 0.02422 -1.50556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60885 0.20220 -1.00000 - 1511 2017 8 21 2 2 10 582 4.8550 177.05221 875.34875 795.98322 -2.92139 0.02374 -1.46210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60850 0.20220 -1.00000 - 1512 2017 8 21 2 2 15 437 4.8550 177.05383 875.28692 795.93841 -2.73222 0.02361 -1.41961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60814 0.20220 -1.00000 - 1513 2017 8 21 2 2 20 292 4.8550 177.05525 875.22667 795.89277 -2.57842 0.02441 -1.37671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60779 0.20220 -1.00000 - 1514 2017 8 21 2 2 25 147 4.8550 177.05632 875.16628 795.84641 -2.42659 0.02493 -1.33640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60744 0.20220 -1.00000 - 1515 2017 8 21 2 2 30 2 4.8550 177.05735 875.10441 795.79920 -2.27807 0.02460 -1.29515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60709 0.20220 -1.00000 - 1516 2017 8 21 2 2 34 857 4.8550 177.05866 875.04082 795.75119 -2.13274 0.02396 -1.25497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60673 0.20220 -1.00000 - 1517 2017 8 21 2 2 39 712 4.8551 177.06022 874.97542 795.70253 -1.99051 0.02395 -1.21676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60638 0.20220 -1.00000 - 1518 2017 8 21 2 2 44 568 4.8551 177.06168 874.90883 795.65318 -1.91412 0.02451 -1.18001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60603 0.20220 -1.00000 - 1519 2017 8 21 2 2 49 423 4.8551 177.06286 874.84070 795.60315 -1.84370 0.02507 -1.14255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60567 0.20220 -1.00000 - 1520 2017 8 21 2 2 54 278 4.8551 177.06395 874.77145 795.55252 -1.77650 0.02494 -1.10862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60532 0.20220 -1.00000 - 1521 2017 8 21 2 2 59 133 4.8551 177.06525 874.70143 795.50132 -1.73711 0.02440 -1.07569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60497 0.20220 -1.00000 - 1522 2017 8 21 2 3 3 988 4.8551 177.06678 874.62993 795.44959 -1.72524 0.02424 -1.04430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60461 0.20220 -1.00000 - 1523 2017 8 21 2 3 8 843 4.8552 177.06825 874.55770 795.39731 -1.64302 0.02474 -1.01539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60426 0.20220 -1.00000 - 1524 2017 8 21 2 3 13 698 4.8552 177.06945 874.48387 795.34463 -1.59983 0.02530 -0.98783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60391 0.20220 -1.00000 - 1525 2017 8 21 2 3 18 554 4.8552 177.07056 874.40889 795.29166 -1.58093 0.02522 -0.96311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60355 0.20220 -1.00000 - 1526 2017 8 21 2 3 23 409 4.8552 177.07191 874.33497 795.23827 -1.52565 0.02468 -0.93890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60320 0.20220 -1.00000 - 1527 2017 8 21 2 3 28 264 4.8552 177.07350 874.25636 795.18456 -1.50022 0.02454 -0.91640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60285 0.20219 -1.00000 - 1528 2017 8 21 2 3 33 119 4.8552 177.07501 874.18121 795.13044 -1.48150 0.02514 -0.89760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60250 0.20219 -1.00000 - 1529 2017 8 21 2 3 37 974 4.8552 177.07619 874.10516 795.07603 -1.51899 0.02575 -0.87958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60214 0.20219 -1.00000 - 1530 2017 8 21 2 3 42 830 4.8553 177.07724 874.02815 795.02146 -1.47694 0.02565 -0.86236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60179 0.20219 -1.00000 - 1531 2017 8 21 2 3 47 685 4.8553 177.07855 873.95105 794.96661 -1.48022 0.02502 -0.84983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60144 0.20219 -1.00000 - 1532 2017 8 21 2 3 52 540 4.8553 177.08017 873.87338 794.91162 -1.46772 0.02478 -0.83717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60108 0.20219 -1.00000 - 1533 2017 8 21 2 3 57 396 4.8553 177.08177 873.79537 794.85650 -1.45873 0.02530 -0.82609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60073 0.20219 -1.00000 - 1534 2017 8 21 2 4 2 251 4.8553 177.08305 873.71741 794.80119 -1.46894 0.02599 -0.81989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60038 0.20219 -1.00000 - 1535 2017 8 21 2 4 7 106 4.8553 177.08414 873.63868 794.74577 -1.46460 0.02603 -0.81306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60002 0.20219 -1.00000 - 1536 2017 8 21 2 4 11 962 4.8554 177.08538 873.55979 794.69031 -1.46548 0.02548 -0.80776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59967 0.20219 -1.00000 - 1537 2017 8 21 2 4 16 817 4.8554 177.08693 873.48128 794.63478 -1.48084 0.02525 -0.80703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59932 0.20219 -1.00000 - 1538 2017 8 21 2 4 21 672 4.8554 177.08854 873.40261 794.57929 -1.49402 0.02546 -0.80690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59896 0.20219 -1.00000 - 1539 2017 8 21 2 4 26 528 4.8554 177.08993 873.32406 794.52384 -1.49205 0.02606 -0.80840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59861 0.20219 -1.00000 - 1540 2017 8 21 2 4 31 383 4.8554 177.09112 873.24573 794.46844 -1.54694 0.02624 -0.81371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59826 0.20219 -1.00000 - 1541 2017 8 21 2 4 36 239 4.8554 177.09238 873.16773 794.41316 -1.52605 0.02586 -0.81982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59791 0.20219 -1.00000 - 1542 2017 8 21 2 4 41 94 4.8555 177.09387 873.08795 794.35808 -1.53627 0.02549 -0.82781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59755 0.20219 -1.00000 - 1543 2017 8 21 2 4 45 950 4.8555 177.09547 873.00993 794.30315 -1.57955 0.02565 -0.84023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59720 0.20219 -1.00000 - 1544 2017 8 21 2 4 50 805 4.8555 177.09693 872.93346 794.24849 -1.58333 0.02621 -0.85242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59685 0.20219 -1.00000 - 1545 2017 8 21 2 4 55 661 4.8555 177.09818 872.85745 794.19417 -1.60463 0.02652 -0.86921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59649 0.20219 -1.00000 - 1546 2017 8 21 2 5 0 516 4.8555 177.09945 872.78224 794.14016 -1.62954 0.02627 -0.88822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59614 0.20219 -1.00000 - 1547 2017 8 21 2 5 5 372 4.8555 177.10093 872.70760 794.08660 -1.65341 0.02586 -0.90667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59579 0.20219 -1.00000 - 1548 2017 8 21 2 5 10 227 4.8556 177.10254 872.63165 794.03334 -1.68370 0.02591 -0.93136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59543 0.20219 -1.00000 - 1549 2017 8 21 2 5 15 83 4.8556 177.10401 872.55887 793.98049 -1.71546 0.02642 -0.95703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59508 0.20219 -1.00000 - 1550 2017 8 21 2 5 19 939 4.8556 177.10526 872.48670 793.92819 -1.74782 0.02674 -0.98257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59473 0.20219 -1.00000 - 1551 2017 8 21 2 5 24 794 4.8556 177.10655 872.41556 793.87636 -1.78049 0.02646 -1.01279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59437 0.20219 -1.00000 - 1552 2017 8 21 2 5 29 650 4.8556 177.10810 872.34535 793.82515 -1.83768 0.02602 -1.04485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59402 0.20219 -1.00000 - 1553 2017 8 21 2 5 34 505 4.8556 177.10980 872.27601 793.77471 -1.86911 0.02615 -1.07639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59367 0.20219 -1.00000 - 1554 2017 8 21 2 5 39 361 4.8557 177.11130 872.20661 793.72478 -1.98409 0.02680 -1.11220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59331 0.20219 -1.00000 - 1555 2017 8 21 2 5 44 217 4.8557 177.11251 872.14019 793.67562 -2.04250 0.02717 -1.14833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59296 0.20218 -1.00000 - 1556 2017 8 21 2 5 49 72 4.8557 177.11373 872.07528 793.62716 -2.08469 0.02685 -1.18525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59261 0.20218 -1.00000 - 1557 2017 8 21 2 5 53 928 4.8557 177.11525 872.01187 793.57935 -2.09644 0.02630 -1.22491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59226 0.20218 -1.00000 - 1558 2017 8 21 2 5 58 784 4.8557 177.11697 871.95012 793.53230 -2.14916 0.02632 -1.26520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59190 0.20218 -1.00000 - 1559 2017 8 21 2 6 3 640 4.8558 177.11858 871.89011 793.48613 -2.20081 0.02690 -1.30529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59155 0.20218 -1.00000 - 1560 2017 8 21 2 6 8 495 4.8558 177.11990 871.83170 793.44067 -2.37057 0.02739 -1.35010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59120 0.20218 -1.00000 - 1561 2017 8 21 2 6 13 351 4.8558 177.12113 871.77492 793.39605 -2.36533 0.02724 -1.39445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59084 0.20218 -1.00000 - 1562 2017 8 21 2 6 18 207 4.8558 177.12257 871.71941 793.35237 -2.41334 0.02676 -1.43831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59049 0.20218 -1.00000 - 1563 2017 8 21 2 6 23 63 4.8558 177.12424 871.66680 793.30956 -2.53285 0.02665 -1.48662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59014 0.20218 -1.00000 - 1564 2017 8 21 2 6 27 919 4.8559 177.12586 871.61602 793.26753 -2.67767 0.02710 -1.53229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58978 0.20218 -1.00000 - 1565 2017 8 21 2 6 32 775 4.8559 177.12730 871.56680 793.22645 -2.66486 0.02754 -1.57786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58943 0.20218 -1.00000 - 1566 2017 8 21 2 6 37 630 4.8559 177.12863 871.51975 793.18601 -2.78091 0.02755 -1.62697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58908 0.20218 -1.00000 - 1567 2017 8 21 2 6 42 486 4.8559 177.13006 871.47371 793.14635 -2.86839 0.02723 -1.67441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58872 0.20218 -1.00000 - 1568 2017 8 21 2 6 47 342 4.8559 177.13167 871.42861 793.10771 -2.91411 0.02706 -1.72262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58837 0.20218 -1.00000 - 1569 2017 8 21 2 6 52 198 4.8559 177.13330 871.38873 793.06987 -3.05903 0.02733 -1.77256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58802 0.20218 -1.00000 - 1570 2017 8 21 2 6 57 54 4.8560 177.13479 871.34830 793.03291 -3.15227 0.02777 -1.82034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58766 0.20218 -1.00000 - 1571 2017 8 21 2 7 1 910 4.8560 177.13617 871.30744 792.99677 -3.26248 0.02792 -1.86978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58731 0.20218 -1.00000 - 1572 2017 8 21 2 7 6 766 4.8560 177.13761 871.27028 792.96130 -3.42100 0.02768 -1.91973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58696 0.20218 -1.00000 - 1573 2017 8 21 2 7 11 622 4.8560 177.13922 871.23426 792.92660 -3.54319 0.02745 -1.96632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58661 0.20218 -1.00000 - 1574 2017 8 21 2 7 16 478 4.8560 177.14086 871.19923 792.89268 -3.68029 0.02762 -2.01623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58625 0.20218 -1.00000 - 1575 2017 8 21 2 7 21 334 4.8560 177.14235 871.17060 792.85951 -3.82539 0.02802 -2.06613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58590 0.20218 -1.00000 - 1576 2017 8 21 2 7 26 190 4.8561 177.14372 871.13958 792.82718 -3.96423 0.02814 -2.11221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58555 0.20218 -1.00000 - 1577 2017 8 21 2 7 31 46 4.8561 177.14520 871.10645 792.79556 -4.12269 0.02785 -2.16103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58519 0.20218 -1.00000 - 1578 2017 8 21 2 7 35 902 4.8561 177.14688 871.07845 792.76448 -4.34382 0.02762 -2.21073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58484 0.20218 -1.00000 - 1579 2017 8 21 2 7 40 759 4.8561 177.14859 871.05100 792.73414 -4.41834 0.02788 -2.25459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58449 0.20218 -1.00000 - 1580 2017 8 21 2 7 45 615 4.8561 177.15011 871.02130 792.70435 -4.63630 0.02838 -2.30139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58413 0.20218 -1.00000 - 1581 2017 8 21 2 7 50 471 4.8561 177.15144 870.99617 792.67518 -4.73969 0.02852 -2.34684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58378 0.20218 -1.00000 - 1582 2017 8 21 2 7 55 327 4.8562 177.15286 870.97302 792.64662 -4.87596 0.02815 -2.38818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58343 0.20218 -1.00000 - 1583 2017 8 21 2 8 0 183 4.8562 177.15454 870.95081 792.61858 -5.00429 0.02782 -2.43102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58307 0.20218 -1.00000 - 1584 2017 8 21 2 8 5 39 4.8562 177.15630 870.92946 792.59108 -5.15183 0.02802 -2.47101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58272 0.20217 -1.00000 - 1585 2017 8 21 2 8 9 896 4.8562 177.15791 870.90915 792.56407 -5.25624 0.02850 -2.50824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58237 0.20217 -1.00000 - 1586 2017 8 21 2 8 14 752 4.8562 177.15932 870.88895 792.53744 -5.38632 0.02872 -2.54602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58201 0.20217 -1.00000 - 1587 2017 8 21 2 8 19 608 4.8563 177.16074 870.87035 792.51117 -5.51285 0.02847 -2.58070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58166 0.20217 -1.00000 - 1588 2017 8 21 2 8 24 464 4.8563 177.16235 870.85254 792.48522 -5.62873 0.02811 -2.61325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58131 0.20217 -1.00000 - 1589 2017 8 21 2 8 29 321 4.8563 177.16409 870.83546 792.45959 -5.74044 0.02819 -2.64579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58095 0.20217 -1.00000 - 1590 2017 8 21 2 8 34 177 4.8563 177.16574 870.81892 792.43434 -5.84764 0.02862 -2.67525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58060 0.20217 -1.00000 - 1591 2017 8 21 2 8 39 33 4.8563 177.16724 870.80330 792.40938 -5.95014 0.02889 -2.70152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58025 0.20217 -1.00000 - 1592 2017 8 21 2 8 43 890 4.8563 177.16871 870.78850 792.38459 -6.04740 0.02876 -2.72883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57990 0.20217 -1.00000 - 1593 2017 8 21 2 8 48 746 4.8564 177.17032 870.77387 792.35998 -6.13856 0.02847 -2.75253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57954 0.20217 -1.00000 - 1594 2017 8 21 2 8 53 602 4.8564 177.17206 870.75957 792.33564 -6.22305 0.02845 -2.77355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57919 0.20217 -1.00000 - 1595 2017 8 21 2 8 58 459 4.8564 177.17375 870.74589 792.31130 -6.30886 0.02880 -2.79516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57884 0.20217 -1.00000 - 1596 2017 8 21 2 9 3 315 4.8564 177.17530 870.73209 792.28706 -6.40703 0.02919 -2.81279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57848 0.20217 -1.00000 - 1597 2017 8 21 2 9 8 172 4.8565 177.17679 870.71841 792.26294 -6.49662 0.02923 -2.82765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57813 0.20217 -1.00000 - 1598 2017 8 21 2 9 13 28 4.8565 177.17840 870.70245 792.23870 -6.57640 0.02899 -2.84301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57778 0.20217 -1.00000 - 1599 2017 8 21 2 9 17 885 4.8565 177.18013 870.68815 792.21443 -6.65190 0.02891 -2.85501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57742 0.20217 -1.00000 - 1600 2017 8 21 2 9 22 741 4.8565 177.18182 870.67460 792.19014 -6.71086 0.02918 -2.86385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57707 0.20217 -1.00000 - 1601 2017 8 21 2 9 27 598 4.8565 177.18337 870.66048 792.16559 -6.76426 0.02949 -2.87169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57672 0.20217 -1.00000 - 1602 2017 8 21 2 9 32 454 4.8565 177.18489 870.64567 792.14089 -6.80606 0.02946 -2.87585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57636 0.20217 -1.00000 - 1603 2017 8 21 2 9 37 311 4.8566 177.18655 870.63052 792.11597 -6.83616 0.02923 -2.87891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57601 0.20217 -1.00000 - 1604 2017 8 21 2 9 42 167 4.8566 177.18835 870.61455 792.09069 -6.85585 0.02924 -2.87923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57566 0.20217 -1.00000 - 1605 2017 8 21 2 9 47 24 4.8566 177.19007 870.59774 792.06519 -6.86608 0.02963 -2.87637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57530 0.20217 -1.00000 - 1606 2017 8 21 2 9 51 881 4.8566 177.19160 870.58051 792.03927 -6.86736 0.02997 -2.87181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57495 0.20217 -1.00000 - 1607 2017 8 21 2 9 56 737 4.8566 177.19307 870.56239 792.01295 -6.85997 0.02987 -2.86531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57460 0.20217 -1.00000 - 1608 2017 8 21 2 10 1 594 4.8567 177.19472 870.54327 791.98619 -6.84406 0.02950 -2.85526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57424 0.20217 -1.00000 - 1609 2017 8 21 2 10 6 451 4.8567 177.19655 870.52317 791.95888 -6.81971 0.02947 -2.84417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57389 0.20217 -1.00000 - 1610 2017 8 21 2 10 11 307 4.8567 177.19833 870.50212 791.93104 -6.78700 0.02986 -2.83130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57354 0.20217 -1.00000 - 1611 2017 8 21 2 10 16 164 4.8567 177.19992 870.47973 791.90267 -6.74597 0.03022 -2.81575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57319 0.20217 -1.00000 - 1612 2017 8 21 2 10 21 21 4.8567 177.20143 870.45637 791.87369 -6.69647 0.03018 -2.79999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57283 0.20216 -1.00000 - 1613 2017 8 21 2 10 25 877 4.8567 177.20305 870.43178 791.84417 -6.63842 0.02984 -2.78036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57248 0.20216 -1.00000 - 1614 2017 8 21 2 10 30 734 4.8568 177.20486 870.40588 791.81402 -6.57271 0.02969 -2.76055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57213 0.20216 -1.00000 - 1615 2017 8 21 2 10 35 591 4.8568 177.20666 870.37869 791.78323 -6.50105 0.03003 -2.73995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57177 0.20216 -1.00000 - 1616 2017 8 21 2 10 40 448 4.8568 177.20831 870.35011 791.75191 -6.42513 0.03043 -2.71485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57142 0.20216 -1.00000 - 1617 2017 8 21 2 10 45 305 4.8568 177.20987 870.31973 791.71997 -6.41012 0.03046 -2.69093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57107 0.20216 -1.00000 - 1618 2017 8 21 2 10 50 161 4.8568 177.21151 870.29078 791.68744 -6.35245 0.03017 -2.66643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57071 0.20216 -1.00000 - 1619 2017 8 21 2 10 55 18 4.8569 177.21330 870.25868 791.65423 -6.22209 0.02998 -2.63559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57036 0.20216 -1.00000 - 1620 2017 8 21 2 10 59 875 4.8569 177.21513 870.22420 791.62026 -6.11970 0.03018 -2.60728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57001 0.20216 -1.00000 - 1621 2017 8 21 2 11 4 732 4.8569 177.21683 870.18941 791.58554 -6.01272 0.03058 -2.57776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56965 0.20216 -1.00000 - 1622 2017 8 21 2 11 9 589 4.8569 177.21844 870.15279 791.55004 -5.90282 0.03075 -2.54262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56930 0.20216 -1.00000 - 1623 2017 8 21 2 11 14 446 4.8569 177.22010 870.11468 791.51366 -5.79072 0.03057 -2.51015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56895 0.20216 -1.00000 - 1624 2017 8 21 2 11 19 303 4.8570 177.22189 870.07375 791.47649 -5.73671 0.03040 -2.47613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56859 0.20216 -1.00000 - 1625 2017 8 21 2 11 24 160 4.8570 177.22371 870.03444 791.43869 -5.61319 0.03055 -2.43960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56824 0.20216 -1.00000 - 1626 2017 8 21 2 11 29 17 4.8570 177.22541 869.99190 791.40001 -5.47690 0.03087 -2.40459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56789 0.20216 -1.00000 - 1627 2017 8 21 2 11 33 874 4.8570 177.22703 869.94821 791.36050 -5.34634 0.03094 -2.36738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56753 0.20216 -1.00000 - 1628 2017 8 21 2 11 38 731 4.8570 177.22875 869.90251 791.32018 -5.21435 0.03074 -2.32943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56718 0.20216 -1.00000 - 1629 2017 8 21 2 11 43 588 4.8571 177.23060 869.85473 791.27911 -5.14766 0.03066 -2.29259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56683 0.20216 -1.00000 - 1630 2017 8 21 2 11 48 445 4.8571 177.23247 869.80781 791.23725 -5.04121 0.03091 -2.25273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56647 0.20216 -1.00000 - 1631 2017 8 21 2 11 53 302 4.8571 177.23417 869.75543 791.19463 -4.86532 0.03128 -2.21425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56612 0.20216 -1.00000 - 1632 2017 8 21 2 11 58 159 4.8571 177.23575 869.70431 791.15110 -4.72297 0.03132 -2.17497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56577 0.20216 -1.00000 - 1633 2017 8 21 2 12 3 16 4.8571 177.23745 869.65094 791.10673 -4.58153 0.03099 -2.13449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56541 0.20216 -1.00000 - 1634 2017 8 21 2 12 7 874 4.8572 177.23934 869.59603 791.06157 -4.44159 0.03083 -2.09492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56506 0.20216 -1.00000 - 1635 2017 8 21 2 12 12 731 4.8572 177.24124 869.53866 791.01554 -4.30179 0.03113 -2.05255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56471 0.20216 -1.00000 - 1636 2017 8 21 2 12 17 588 4.8572 177.24298 869.48156 790.96872 -4.16735 0.03151 -2.01439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56435 0.20216 -1.00000 - 1637 2017 8 21 2 12 22 445 4.8572 177.24461 869.42446 790.92124 -4.04382 0.03159 -1.97629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56400 0.20216 -1.00000 - 1638 2017 8 21 2 12 27 302 4.8572 177.24630 869.35919 790.87318 -3.97444 0.03129 -1.93795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56365 0.20216 -1.00000 - 1639 2017 8 21 2 12 32 160 4.8573 177.24819 869.29933 790.82438 -3.86254 0.03103 -1.90090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56330 0.20216 -1.00000 - 1640 2017 8 21 2 12 37 17 4.8573 177.25013 869.23645 790.77495 -3.68814 0.03127 -1.86197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56294 0.20215 -1.00000 - 1641 2017 8 21 2 12 41 874 4.8573 177.25192 869.16786 790.72475 -3.54445 0.03175 -1.82447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56259 0.20215 -1.00000 - 1642 2017 8 21 2 12 46 732 4.8573 177.25356 869.10120 790.67389 -3.40000 0.03192 -1.78734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56224 0.20215 -1.00000 - 1643 2017 8 21 2 12 51 589 4.8573 177.25526 869.03374 790.62230 -3.26319 0.03166 -1.75173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56188 0.20215 -1.00000 - 1644 2017 8 21 2 12 56 446 4.8574 177.25714 868.96459 790.57006 -3.11633 0.03136 -1.71384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56153 0.20215 -1.00000 - 1645 2017 8 21 2 13 1 304 4.8574 177.25911 868.89454 790.51711 -2.97932 0.03147 -1.67893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56118 0.20215 -1.00000 - 1646 2017 8 21 2 13 6 161 4.8574 177.26097 868.82291 790.46353 -2.84500 0.03193 -1.64238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56082 0.20215 -1.00000 - 1647 2017 8 21 2 13 11 18 4.8574 177.26267 868.75030 790.40933 -2.71565 0.03223 -1.60774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56047 0.20215 -1.00000 - 1648 2017 8 21 2 13 15 876 4.8574 177.26438 868.67638 790.35440 -2.66864 0.03209 -1.57506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56012 0.20215 -1.00000 - 1649 2017 8 21 2 13 20 733 4.8575 177.26626 868.60094 790.29891 -2.52289 0.03182 -1.54143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55976 0.20215 -1.00000 - 1650 2017 8 21 2 13 25 591 4.8575 177.26823 868.52486 790.24288 -2.49495 0.03192 -1.51143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55941 0.20215 -1.00000 - 1651 2017 8 21 2 13 30 448 4.8575 177.27006 868.44796 790.18632 -2.43942 0.03233 -1.48302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55906 0.20215 -1.00000 - 1652 2017 8 21 2 13 35 306 4.8575 177.27176 868.36994 790.12934 -2.39379 0.03253 -1.45270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55870 0.20215 -1.00000 - 1653 2017 8 21 2 13 40 163 4.8575 177.27352 868.29098 790.07183 -2.33566 0.03229 -1.42771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55835 0.20215 -1.00000 - 1654 2017 8 21 2 13 45 21 4.8576 177.27548 868.21128 790.01396 -2.31005 0.03210 -1.40415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55800 0.20215 -1.00000 - 1655 2017 8 21 2 13 49 879 4.8576 177.27749 868.13064 789.95583 -2.26231 0.03231 -1.37896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55764 0.20215 -1.00000 - 1656 2017 8 21 2 13 54 736 4.8576 177.27933 868.04954 789.89744 -2.19768 0.03277 -1.35978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55729 0.20215 -1.00000 - 1657 2017 8 21 2 13 59 594 4.8576 177.28100 867.96908 789.83874 -2.23133 0.03294 -1.33932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55694 0.20215 -1.00000 - 1658 2017 8 21 2 14 4 451 4.8576 177.28273 867.88633 789.77983 -2.12641 0.03260 -1.32057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55658 0.20215 -1.00000 - 1659 2017 8 21 2 14 9 309 4.8577 177.28471 867.80533 789.72061 -2.13200 0.03229 -1.30567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55623 0.20215 -1.00000 - 1660 2017 8 21 2 14 14 167 4.8577 177.28675 867.72366 789.66119 -2.14937 0.03252 -1.29039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55588 0.20215 -1.00000 - 1661 2017 8 21 2 14 19 24 4.8577 177.28864 867.64060 789.60164 -2.08927 0.03297 -1.27933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55552 0.20215 -1.00000 - 1662 2017 8 21 2 14 23 882 4.8577 177.29036 867.56158 789.54209 -2.12737 0.03314 -1.27031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55517 0.20215 -1.00000 - 1663 2017 8 21 2 14 28 740 4.8577 177.29211 867.47999 789.48251 -2.14867 0.03286 -1.26132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55482 0.20215 -1.00000 - 1664 2017 8 21 2 14 33 598 4.8578 177.29407 867.39690 789.42286 -2.11874 0.03250 -1.25642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55446 0.20215 -1.00000 - 1665 2017 8 21 2 14 38 455 4.8578 177.29613 867.31518 789.36311 -2.15337 0.03264 -1.25502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55411 0.20215 -1.00000 - 1666 2017 8 21 2 14 43 313 4.8578 177.29806 867.23311 789.30351 -2.14831 0.03313 -1.25137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55376 0.20215 -1.00000 - 1667 2017 8 21 2 14 48 171 4.8578 177.29982 867.14789 789.24392 -2.09895 0.03336 -1.25463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55340 0.20215 -1.00000 - 1668 2017 8 21 2 14 53 29 4.8578 177.30160 867.06681 789.18449 -2.14081 0.03314 -1.25718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55305 0.20214 -1.00000 - 1669 2017 8 21 2 14 57 887 4.8579 177.30355 866.98614 789.12522 -2.12157 0.03281 -1.25979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55270 0.20214 -1.00000 - 1670 2017 8 21 2 15 2 745 4.8579 177.30563 866.90603 789.06606 -2.14143 0.03284 -1.26785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55234 0.20214 -1.00000 - 1671 2017 8 21 2 15 7 603 4.8579 177.30762 866.82594 789.00714 -2.21256 0.03326 -1.27560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55199 0.20214 -1.00000 - 1672 2017 8 21 2 15 12 461 4.8579 177.30944 866.74652 788.94850 -2.14833 0.03360 -1.28395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55164 0.20214 -1.00000 - 1673 2017 8 21 2 15 17 319 4.8580 177.31125 866.66546 788.89002 -2.22033 0.03353 -1.29642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55128 0.20214 -1.00000 - 1674 2017 8 21 2 15 22 177 4.8580 177.31320 866.58693 788.83181 -2.26983 0.03326 -1.30988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55093 0.20214 -1.00000 - 1675 2017 8 21 2 15 27 35 4.8580 177.31526 866.50963 788.77393 -2.28817 0.03326 -1.32301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55058 0.20214 -1.00000 - 1676 2017 8 21 2 15 31 893 4.8580 177.31724 866.43323 788.71628 -2.34852 0.03360 -1.34155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55022 0.20214 -1.00000 - 1677 2017 8 21 2 15 36 751 4.8580 177.31908 866.35728 788.65897 -2.31822 0.03384 -1.35992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54987 0.20214 -1.00000 - 1678 2017 8 21 2 15 41 609 4.8581 177.32094 866.28197 788.60207 -2.29810 0.03371 -1.37828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54952 0.20214 -1.00000 - 1679 2017 8 21 2 15 46 467 4.8581 177.32296 866.20778 788.54547 -2.34165 0.03353 -1.40075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54916 0.20214 -1.00000 - 1680 2017 8 21 2 15 51 325 4.8581 177.32505 866.13420 788.48923 -2.44564 0.03367 -1.42301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54881 0.20214 -1.00000 - 1681 2017 8 21 2 15 56 183 4.8581 177.32702 866.06147 788.43345 -2.41324 0.03403 -1.44668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54846 0.20214 -1.00000 - 1682 2017 8 21 2 16 1 41 4.8581 177.32885 865.98968 788.37807 -2.47595 0.03423 -1.47306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54810 0.20214 -1.00000 - 1683 2017 8 21 2 16 5 899 4.8582 177.33072 865.91874 788.32313 -2.53725 0.03399 -1.49976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54775 0.20214 -1.00000 - 1684 2017 8 21 2 16 10 757 4.8582 177.33277 865.84866 788.26872 -2.55741 0.03375 -1.52741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54740 0.20214 -1.00000 - 1685 2017 8 21 2 16 15 616 4.8582 177.33489 865.77973 788.21471 -2.65894 0.03395 -1.55795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54705 0.20214 -1.00000 - 1686 2017 8 21 2 16 20 474 4.8582 177.33687 865.71165 788.16122 -2.70704 0.03436 -1.58810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54669 0.20214 -1.00000 - 1687 2017 8 21 2 16 25 332 4.8582 177.33871 865.64454 788.10822 -2.69277 0.03450 -1.62079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54634 0.20214 -1.00000 - 1688 2017 8 21 2 16 30 190 4.8583 177.34058 865.57849 788.05567 -2.80630 0.03423 -1.65524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54599 0.20214 -1.00000 - 1689 2017 8 21 2 16 35 49 4.8583 177.34266 865.51310 788.00373 -2.80295 0.03391 -1.68764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54563 0.20214 -1.00000 - 1690 2017 8 21 2 16 39 907 4.8583 177.34483 865.44537 787.95230 -2.92966 0.03406 -1.72487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54528 0.20214 -1.00000 - 1691 2017 8 21 2 16 44 765 4.8583 177.34686 865.37905 787.90144 -3.04451 0.03454 -1.76302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54493 0.20214 -1.00000 - 1692 2017 8 21 2 16 49 624 4.8584 177.34872 865.31751 787.85135 -3.05879 0.03477 -1.79810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54457 0.20214 -1.00000 - 1693 2017 8 21 2 16 54 482 4.8584 177.35059 865.25752 787.80177 -3.17133 0.03454 -1.83779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54422 0.20214 -1.00000 - 1694 2017 8 21 2 16 59 341 4.8584 177.35266 865.19867 787.75284 -3.30246 0.03418 -1.87765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54387 0.20214 -1.00000 - 1695 2017 8 21 2 17 4 199 4.8584 177.35485 865.14071 787.70471 -3.35214 0.03421 -1.91436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54351 0.20214 -1.00000 - 1696 2017 8 21 2 17 9 57 4.8585 177.35696 865.08426 787.65712 -3.50086 0.03465 -1.95549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54316 0.20213 -1.00000 - 1697 2017 8 21 2 17 13 916 4.8585 177.35890 865.02863 787.61014 -3.61865 0.03499 -1.99584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54281 0.20213 -1.00000 - 1698 2017 8 21 2 17 18 774 4.8585 177.36082 864.97400 787.56380 -3.64454 0.03489 -2.03394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54245 0.20213 -1.00000 - 1699 2017 8 21 2 17 23 633 4.8585 177.36289 864.92104 787.51803 -3.73533 0.03464 -2.07418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54210 0.20213 -1.00000 - 1700 2017 8 21 2 17 28 491 4.8585 177.36505 864.86915 787.47283 -3.83612 0.03468 -2.11306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54175 0.20213 -1.00000 - 1701 2017 8 21 2 17 33 350 4.8586 177.36711 864.81843 787.42822 -3.93847 0.03500 -2.15165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54139 0.20213 -1.00000 - 1702 2017 8 21 2 17 38 209 4.8586 177.36905 864.76895 787.38415 -4.04165 0.03518 -2.19024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54104 0.20213 -1.00000 - 1703 2017 8 21 2 17 43 67 4.8586 177.37103 864.72067 787.34067 -4.14445 0.03499 -2.22876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54069 0.20213 -1.00000 - 1704 2017 8 21 2 17 47 926 4.8586 177.37317 864.67365 787.29766 -4.24620 0.03481 -2.26578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54033 0.20213 -1.00000 - 1705 2017 8 21 2 17 52 784 4.8587 177.37536 864.62775 787.25518 -4.34705 0.03497 -2.30392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53998 0.20213 -1.00000 - 1706 2017 8 21 2 17 57 643 4.8587 177.37743 864.58290 787.21319 -4.44795 0.03531 -2.34051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53963 0.20213 -1.00000 - 1707 2017 8 21 2 18 2 502 4.8587 177.37938 864.53913 787.17170 -4.54806 0.03544 -2.37642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53927 0.20213 -1.00000 - 1708 2017 8 21 2 18 7 361 4.8587 177.38139 864.49640 787.13060 -4.65997 0.03520 -2.41334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53892 0.20213 -1.00000 - 1709 2017 8 21 2 18 12 219 4.8587 177.38359 864.45432 787.08992 -4.77219 0.03505 -2.44848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53857 0.20213 -1.00000 - 1710 2017 8 21 2 18 17 78 4.8588 177.38580 864.41309 787.04969 -4.88335 0.03533 -2.48425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53821 0.20213 -1.00000 - 1711 2017 8 21 2 18 21 937 4.8588 177.38785 864.37288 787.00983 -4.99322 0.03572 -2.51967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53786 0.20213 -1.00000 - 1712 2017 8 21 2 18 26 796 4.8588 177.38978 864.33342 786.97046 -5.10110 0.03578 -2.55348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53751 0.20213 -1.00000 - 1713 2017 8 21 2 18 31 654 4.8588 177.39179 864.29491 786.93140 -5.24254 0.03546 -2.58915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53715 0.20213 -1.00000 - 1714 2017 8 21 2 18 36 513 4.8588 177.39400 864.25697 786.89284 -5.31626 0.03518 -2.62344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53680 0.20213 -1.00000 - 1715 2017 8 21 2 18 41 372 4.8589 177.39627 864.21942 786.85482 -5.42438 0.03540 -2.65646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53645 0.20213 -1.00000 - 1716 2017 8 21 2 18 46 231 4.8589 177.39838 864.18402 786.81731 -5.60273 0.03586 -2.69123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53609 0.20213 -1.00000 - 1717 2017 8 21 2 18 51 90 4.8589 177.40036 864.15010 786.78021 -5.70940 0.03602 -2.72183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53574 0.20213 -1.00000 - 1718 2017 8 21 2 18 55 949 4.8589 177.40240 864.11270 786.74350 -5.77643 0.03579 -2.75222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53539 0.20213 -1.00000 - 1719 2017 8 21 2 19 0 808 4.8590 177.40461 864.07767 786.70710 -5.86419 0.03557 -2.78300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53503 0.20213 -1.00000 - 1720 2017 8 21 2 19 5 667 4.8590 177.40687 864.04550 786.67096 -5.95270 0.03572 -2.81091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53468 0.20213 -1.00000 - 1721 2017 8 21 2 19 10 526 4.8590 177.40901 864.01372 786.63515 -6.03804 0.03610 -2.83643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53433 0.20213 -1.00000 - 1722 2017 8 21 2 19 15 385 4.8590 177.41105 863.98244 786.59951 -6.13345 0.03628 -2.86066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53397 0.20213 -1.00000 - 1723 2017 8 21 2 19 20 244 4.8590 177.41314 863.95160 786.56401 -6.22878 0.03613 -2.88435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53362 0.20213 -1.00000 - 1724 2017 8 21 2 19 25 103 4.8591 177.41536 863.92085 786.52868 -6.31817 0.03599 -2.90506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53327 0.20212 -1.00000 - 1725 2017 8 21 2 19 29 962 4.8591 177.41761 863.89039 786.49341 -6.40084 0.03614 -2.92401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53291 0.20212 -1.00000 - 1726 2017 8 21 2 19 34 821 4.8591 177.41973 863.86026 786.45820 -6.47625 0.03644 -2.94186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53256 0.20212 -1.00000 - 1727 2017 8 21 2 19 39 680 4.8591 177.42177 863.82994 786.42302 -6.54459 0.03649 -2.95616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53221 0.20212 -1.00000 - 1728 2017 8 21 2 19 44 539 4.8592 177.42391 863.79966 786.38777 -6.60608 0.03627 -2.97006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53185 0.20212 -1.00000 - 1729 2017 8 21 2 19 49 399 4.8592 177.42618 863.76924 786.35245 -6.66094 0.03622 -2.98112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53150 0.20212 -1.00000 - 1730 2017 8 21 2 19 54 258 4.8592 177.42844 863.73857 786.31696 -6.70931 0.03645 -2.99021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53114 0.20212 -1.00000 - 1731 2017 8 21 2 19 59 117 4.8592 177.43057 863.70756 786.28127 -6.75130 0.03670 -2.99832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53079 0.20212 -1.00000 - 1732 2017 8 21 2 20 3 976 4.8592 177.43265 863.67602 786.24537 -6.78696 0.03670 -3.00355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53044 0.20212 -1.00000 - 1733 2017 8 21 2 20 8 836 4.8593 177.43483 863.64382 786.20922 -6.81631 0.03647 -3.00760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53008 0.20212 -1.00000 - 1734 2017 8 21 2 20 13 695 4.8593 177.43714 863.61107 786.17281 -6.83929 0.03645 -3.01063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52973 0.20212 -1.00000 - 1735 2017 8 21 2 20 18 554 4.8593 177.43941 863.57759 786.13616 -6.85580 0.03678 -3.01149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52938 0.20212 -1.00000 - 1736 2017 8 21 2 20 23 413 4.8593 177.44154 863.54357 786.09917 -6.86549 0.03708 -3.01244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52902 0.20212 -1.00000 - 1737 2017 8 21 2 20 28 273 4.8594 177.44361 863.50863 786.06195 -6.86795 0.03703 -3.01023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52867 0.20212 -1.00000 - 1738 2017 8 21 2 20 33 132 4.8594 177.44578 863.46940 786.02434 -6.86393 0.03675 -3.00819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52832 0.20212 -1.00000 - 1739 2017 8 21 2 20 37 992 4.8594 177.44809 863.43121 785.98647 -6.85601 0.03660 -3.00465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52796 0.20212 -1.00000 - 1740 2017 8 21 2 20 42 851 4.8594 177.45042 863.39430 785.94826 -6.84331 0.03683 -2.99870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52761 0.20212 -1.00000 - 1741 2017 8 21 2 20 47 710 4.8594 177.45264 863.35644 785.90976 -6.82438 0.03719 -2.99129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52726 0.20212 -1.00000 - 1742 2017 8 21 2 20 52 570 4.8595 177.45478 863.31776 785.87093 -6.79947 0.03729 -2.98215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52690 0.20212 -1.00000 - 1743 2017 8 21 2 20 57 429 4.8595 177.45700 863.27838 785.83167 -6.76874 0.03715 -2.97176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52655 0.20212 -1.00000 - 1744 2017 8 21 2 21 2 289 4.8595 177.45930 863.23807 785.79209 -6.73246 0.03711 -2.95907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52620 0.20212 -1.00000 - 1745 2017 8 21 2 21 7 148 4.8595 177.46158 863.19674 785.75198 -6.69079 0.03732 -2.94470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52584 0.20212 -1.00000 - 1746 2017 8 21 2 21 12 8 4.8596 177.46378 863.15454 785.71146 -6.64470 0.03750 -2.93010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52549 0.20212 -1.00000 - 1747 2017 8 21 2 21 16 868 4.8596 177.46598 863.11137 785.67050 -6.59517 0.03748 -2.91160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52514 0.20212 -1.00000 - 1748 2017 8 21 2 21 21 727 4.8596 177.46825 863.06655 785.62909 -6.60336 0.03741 -2.89464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52478 0.20212 -1.00000 - 1749 2017 8 21 2 21 26 587 4.8596 177.47057 863.02432 785.58723 -6.57116 0.03745 -2.87586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52443 0.20212 -1.00000 - 1750 2017 8 21 2 21 31 447 4.8597 177.47285 862.97641 785.54501 -6.47024 0.03759 -2.85355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52408 0.20212 -1.00000 - 1751 2017 8 21 2 21 36 306 4.8597 177.47507 862.93074 785.50216 -6.39639 0.03771 -2.83261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52372 0.20212 -1.00000 - 1752 2017 8 21 2 21 41 166 4.8597 177.47731 862.88358 785.45866 -6.31917 0.03764 -2.80888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52337 0.20211 -1.00000 - 1753 2017 8 21 2 21 46 26 4.8597 177.47963 862.83493 785.41469 -6.23966 0.03758 -2.78285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52302 0.20211 -1.00000 - 1754 2017 8 21 2 21 50 885 4.8598 177.48197 862.78489 785.37015 -6.21924 0.03774 -2.75851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52266 0.20211 -1.00000 - 1755 2017 8 21 2 21 55 745 4.8598 177.48422 862.73656 785.32506 -6.15994 0.03793 -2.73278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52231 0.20211 -1.00000 - 1756 2017 8 21 2 22 0 605 4.8598 177.48644 862.68516 785.27947 -6.03310 0.03793 -2.70456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52196 0.20211 -1.00000 - 1757 2017 8 21 2 22 5 465 4.8598 177.48870 862.63116 785.23315 -5.93359 0.03779 -2.67716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52160 0.20211 -1.00000 - 1758 2017 8 21 2 22 10 325 4.8598 177.49106 862.57754 785.18612 -5.83084 0.03768 -2.64799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52125 0.20211 -1.00000 - 1759 2017 8 21 2 22 15 184 4.8599 177.49346 862.52241 785.13844 -5.72650 0.03783 -2.61838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52090 0.20211 -1.00000 - 1760 2017 8 21 2 22 20 44 4.8599 177.49578 862.46540 785.08999 -5.62101 0.03814 -2.58834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52054 0.20211 -1.00000 - 1761 2017 8 21 2 22 24 904 4.8599 177.49801 862.40897 785.04100 -5.51747 0.03828 -2.55694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52019 0.20211 -1.00000 - 1762 2017 8 21 2 22 29 764 4.8599 177.50026 862.35060 784.99131 -5.41222 0.03818 -2.52604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51984 0.20211 -1.00000 - 1763 2017 8 21 2 22 34 624 4.8600 177.50259 862.29053 784.94095 -5.30100 0.03805 -2.49598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51948 0.20211 -1.00000 - 1764 2017 8 21 2 22 39 484 4.8600 177.50497 862.22895 784.88991 -5.18707 0.03809 -2.46252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51913 0.20211 -1.00000 - 1765 2017 8 21 2 22 44 344 4.8600 177.50734 862.16238 784.83814 -5.07191 0.03825 -2.43141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51878 0.20211 -1.00000 - 1766 2017 8 21 2 22 49 204 4.8600 177.50967 862.09628 784.78572 -4.95981 0.03843 -2.40122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51842 0.20211 -1.00000 - 1767 2017 8 21 2 22 54 64 4.8601 177.51199 862.03075 784.73269 -4.84567 0.03853 -2.36704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51807 0.20211 -1.00000 - 1768 2017 8 21 2 22 58 924 4.8601 177.51433 861.96465 784.67896 -4.73199 0.03853 -2.33717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51772 0.20211 -1.00000 - 1769 2017 8 21 2 23 3 784 4.8601 177.51669 861.89695 784.62460 -4.61812 0.03857 -2.30605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51736 0.20211 -1.00000 - 1770 2017 8 21 2 23 8 644 4.8601 177.51904 861.82779 784.56970 -4.50472 0.03868 -2.27416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51701 0.20211 -1.00000 - 1771 2017 8 21 2 23 13 505 4.8601 177.52138 861.75781 784.51413 -4.39244 0.03875 -2.24415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51666 0.20211 -1.00000 - 1772 2017 8 21 2 23 18 365 4.8602 177.52376 861.68663 784.45798 -4.28178 0.03881 -2.21212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51630 0.20211 -1.00000 - 1773 2017 8 21 2 23 23 225 4.8602 177.52614 861.61449 784.40127 -4.21167 0.03892 -2.18208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51595 0.20211 -1.00000 - 1774 2017 8 21 2 23 28 85 4.8602 177.52849 861.54155 784.34395 -4.12089 0.03901 -2.15369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51559 0.20211 -1.00000 - 1775 2017 8 21 2 23 32 945 4.8602 177.53084 861.46736 784.28611 -4.00677 0.03901 -2.12247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51524 0.20211 -1.00000 - 1776 2017 8 21 2 23 37 806 4.8603 177.53320 861.39170 784.22775 -3.92603 0.03900 -2.09456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51489 0.20211 -1.00000 - 1777 2017 8 21 2 23 42 666 4.8603 177.53560 861.31814 784.16892 -3.85562 0.03899 -2.06817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51453 0.20211 -1.00000 - 1778 2017 8 21 2 23 47 526 4.8603 177.53805 861.24109 784.10971 -3.72499 0.03910 -2.03832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51418 0.20211 -1.00000 - 1779 2017 8 21 2 23 52 387 4.8603 177.54044 861.16336 784.04991 -3.69397 0.03931 -2.01297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51383 0.20211 -1.00000 - 1780 2017 8 21 2 23 57 247 4.8604 177.54277 861.08565 783.98955 -3.63657 0.03939 -1.98832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51347 0.20210 -1.00000 - 1781 2017 8 21 2 24 2 107 4.8604 177.54512 861.00664 783.92881 -3.50336 0.03930 -1.96171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51312 0.20210 -1.00000 - 1782 2017 8 21 2 24 6 968 4.8604 177.54754 860.92615 783.86760 -3.42363 0.03921 -1.93940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51277 0.20210 -1.00000 - 1783 2017 8 21 2 24 11 828 4.8604 177.54999 860.84835 783.80603 -3.37412 0.03925 -1.91823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51241 0.20210 -1.00000 - 1784 2017 8 21 2 24 16 689 4.8605 177.55243 860.76740 783.74413 -3.25399 0.03937 -1.89455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51206 0.20210 -1.00000 - 1785 2017 8 21 2 24 21 549 4.8605 177.55485 860.68381 783.68175 -3.24780 0.03952 -1.87665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51171 0.20210 -1.00000 - 1786 2017 8 21 2 24 26 410 4.8605 177.55723 860.60145 783.61901 -3.20901 0.03960 -1.85921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51135 0.20210 -1.00000 - 1787 2017 8 21 2 24 31 270 4.8605 177.55963 860.51816 783.55604 -3.09747 0.03955 -1.84037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51100 0.20210 -1.00000 - 1788 2017 8 21 2 24 36 131 4.8606 177.56208 860.43444 783.49263 -3.07533 0.03950 -1.82548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51065 0.20210 -1.00000 - 1789 2017 8 21 2 24 40 991 4.8606 177.56454 860.35029 783.42898 -3.05598 0.03957 -1.81136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51029 0.20210 -1.00000 - 1790 2017 8 21 2 24 45 852 4.8606 177.56698 860.26559 783.36522 -2.95304 0.03965 -1.79694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50994 0.20210 -1.00000 - 1791 2017 8 21 2 24 50 713 4.8606 177.56944 860.18058 783.30108 -2.98177 0.03974 -1.78716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50959 0.20210 -1.00000 - 1792 2017 8 21 2 24 55 573 4.8607 177.57189 860.09470 783.23688 -2.97759 0.03985 -1.77566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50923 0.20210 -1.00000 - 1793 2017 8 21 2 25 0 434 4.8607 177.57431 860.00558 783.17257 -2.91871 0.03988 -1.76589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50888 0.20210 -1.00000 - 1794 2017 8 21 2 25 5 295 4.8607 177.57675 859.91682 783.10801 -2.91490 0.03985 -1.76038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50853 0.20210 -1.00000 - 1795 2017 8 21 2 25 10 155 4.8607 177.57923 859.83062 783.04334 -2.91534 0.03984 -1.75272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50817 0.20210 -1.00000 - 1796 2017 8 21 2 25 15 16 4.8607 177.58172 859.74391 782.97855 -2.84803 0.03990 -1.74822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50782 0.20210 -1.00000 - 1797 2017 8 21 2 25 19 877 4.8608 177.58423 859.65697 782.91365 -2.89739 0.04004 -1.74587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50747 0.20210 -1.00000 - 1798 2017 8 21 2 25 24 738 4.8608 177.58670 859.56970 782.84876 -2.85853 0.04022 -1.74250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50711 0.20210 -1.00000 - 1799 2017 8 21 2 25 29 598 4.8608 177.58912 859.48247 782.78382 -2.88024 0.04028 -1.74220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50676 0.20210 -1.00000 - 1800 2017 8 21 2 25 34 459 4.8609 177.59157 859.39519 782.71888 -2.89428 0.04019 -1.74319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50640 0.20210 -1.00000 - 1801 2017 8 21 2 25 39 320 4.8609 177.59408 859.30794 782.65395 -2.89345 0.04013 -1.74452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50605 0.20210 -1.00000 - 1802 2017 8 21 2 25 44 181 4.8609 177.59661 859.22081 782.58910 -2.88862 0.04019 -1.74885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50570 0.20210 -1.00000 - 1803 2017 8 21 2 25 49 42 4.8609 177.59914 859.13389 782.52434 -2.96085 0.04034 -1.75398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50534 0.20210 -1.00000 - 1804 2017 8 21 2 25 53 903 4.8610 177.60164 859.04722 782.45968 -2.89065 0.04052 -1.75872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50499 0.20210 -1.00000 - 1805 2017 8 21 2 25 58 764 4.8610 177.60410 858.96097 782.39511 -2.92754 0.04060 -1.76804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50464 0.20210 -1.00000 - 1806 2017 8 21 2 26 3 625 4.8610 177.60657 858.87474 782.33064 -2.95142 0.04054 -1.77701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50428 0.20210 -1.00000 - 1807 2017 8 21 2 26 8 486 4.8610 177.60910 858.78876 782.26644 -2.92113 0.04049 -1.78755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50393 0.20210 -1.00000 - 1808 2017 8 21 2 26 13 347 4.8610 177.61165 858.70358 782.20237 -3.05145 0.04054 -1.80157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50358 0.20209 -1.00000 - 1809 2017 8 21 2 26 18 208 4.8611 177.61420 858.61862 782.13856 -3.03074 0.04066 -1.81464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50322 0.20209 -1.00000 - 1810 2017 8 21 2 26 23 69 4.8611 177.61675 858.53379 782.07500 -3.05164 0.04081 -1.83037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50287 0.20209 -1.00000 - 1811 2017 8 21 2 26 27 930 4.8611 177.61925 858.45003 782.01170 -3.13766 0.04093 -1.84786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50252 0.20209 -1.00000 - 1812 2017 8 21 2 26 32 791 4.8612 177.62174 858.36681 781.94875 -3.11497 0.04092 -1.86525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50216 0.20209 -1.00000 - 1813 2017 8 21 2 26 37 653 4.8612 177.62427 858.28435 781.88608 -3.21721 0.04085 -1.88582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50181 0.20209 -1.00000 - 1814 2017 8 21 2 26 42 514 4.8612 177.62684 858.20258 781.82380 -3.29935 0.04084 -1.90753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50146 0.20209 -1.00000 - 1815 2017 8 21 2 26 47 375 4.8612 177.62943 858.12148 781.76197 -3.26012 0.04093 -1.92776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50110 0.20209 -1.00000 - 1816 2017 8 21 2 26 52 236 4.8612 177.63202 858.03894 781.70050 -3.36519 0.04111 -1.95306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50075 0.20209 -1.00000 - 1817 2017 8 21 2 26 57 98 4.8613 177.63455 857.96031 781.63941 -3.44769 0.04128 -1.97800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50040 0.20209 -1.00000 - 1818 2017 8 21 2 27 1 959 4.8613 177.63705 857.88215 781.57890 -3.43657 0.04129 -2.00287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50004 0.20209 -1.00000 - 1819 2017 8 21 2 27 6 820 4.8613 177.63960 857.80520 781.51874 -3.53135 0.04120 -2.03021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49969 0.20209 -1.00000 - 1820 2017 8 21 2 27 11 682 4.8613 177.64220 857.72890 781.45903 -3.55614 0.04117 -2.05822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49933 0.20209 -1.00000 - 1821 2017 8 21 2 27 16 543 4.8614 177.64481 857.65347 781.39982 -3.60842 0.04126 -2.08538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49898 0.20209 -1.00000 - 1822 2017 8 21 2 27 21 404 4.8614 177.64742 857.57902 781.34098 -3.75631 0.04142 -2.11493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49863 0.20209 -1.00000 - 1823 2017 8 21 2 27 26 266 4.8614 177.65000 857.50545 781.28260 -3.80700 0.04157 -2.14538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49827 0.20209 -1.00000 - 1824 2017 8 21 2 27 31 127 4.8615 177.65253 857.43306 781.22468 -3.84015 0.04163 -2.17533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49792 0.20209 -1.00000 - 1825 2017 8 21 2 27 35 989 4.8615 177.65509 857.36158 781.16727 -3.90724 0.04155 -2.20695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49757 0.20209 -1.00000 - 1826 2017 8 21 2 27 40 850 4.8615 177.65770 857.29135 781.11039 -3.95740 0.04147 -2.23748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49721 0.20209 -1.00000 - 1827 2017 8 21 2 27 45 712 4.8615 177.66034 857.22189 781.05399 -4.02929 0.04152 -2.27007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49686 0.20209 -1.00000 - 1828 2017 8 21 2 27 50 573 4.8615 177.66299 857.15415 780.99810 -4.14125 0.04165 -2.30286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49651 0.20209 -1.00000 - 1829 2017 8 21 2 27 55 435 4.8616 177.66561 857.08750 780.94274 -4.18962 0.04183 -2.33448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49615 0.20209 -1.00000 - 1830 2017 8 21 2 28 0 296 4.8616 177.66818 857.02206 780.88778 -4.27902 0.04192 -2.36850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49580 0.20209 -1.00000 - 1831 2017 8 21 2 28 5 158 4.8616 177.67074 856.95765 780.83332 -4.37884 0.04185 -2.40220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49545 0.20209 -1.00000 - 1832 2017 8 21 2 28 10 20 4.8617 177.67337 856.89419 780.77936 -4.46510 0.04173 -2.43416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49509 0.20209 -1.00000 - 1833 2017 8 21 2 28 14 881 4.8617 177.67604 856.83164 780.72579 -4.55656 0.04173 -2.46989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49474 0.20209 -1.00000 - 1834 2017 8 21 2 28 19 743 4.8617 177.67873 856.76943 780.67273 -4.64916 0.04185 -2.50432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49439 0.20209 -1.00000 - 1835 2017 8 21 2 28 24 605 4.8617 177.68139 856.71000 780.62025 -4.77437 0.04203 -2.53855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49403 0.20209 -1.00000 - 1836 2017 8 21 2 28 29 467 4.8618 177.68399 856.65038 780.56832 -4.89454 0.04216 -2.57594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49368 0.20208 -1.00000 - 1837 2017 8 21 2 28 34 328 4.8618 177.68658 856.59199 780.51695 -4.96850 0.04212 -2.60952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49332 0.20208 -1.00000 - 1838 2017 8 21 2 28 39 190 4.8618 177.68922 856.53144 780.46611 -5.08909 0.04201 -2.64593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49297 0.20208 -1.00000 - 1839 2017 8 21 2 28 44 52 4.8618 177.69191 856.47520 780.41564 -5.19306 0.04198 -2.68152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49262 0.20208 -1.00000 - 1840 2017 8 21 2 28 48 914 4.8619 177.69463 856.42047 780.36565 -5.31929 0.04208 -2.71518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49226 0.20208 -1.00000 - 1841 2017 8 21 2 28 53 776 4.8619 177.69733 856.36650 780.31615 -5.43723 0.04226 -2.74950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49191 0.20208 -1.00000 - 1842 2017 8 21 2 28 58 638 4.8619 177.69998 856.31377 780.26713 -5.47493 0.04243 -2.78224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49156 0.20208 -1.00000 - 1843 2017 8 21 2 29 3 500 4.8620 177.70259 856.26177 780.21850 -5.57845 0.04247 -2.81368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49120 0.20208 -1.00000 - 1844 2017 8 21 2 29 8 362 4.8620 177.70523 856.21032 780.17027 -5.68185 0.04238 -2.84485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49085 0.20208 -1.00000 - 1845 2017 8 21 2 29 13 224 4.8620 177.70793 856.15983 780.12240 -5.78470 0.04231 -2.87488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49050 0.20208 -1.00000 - 1846 2017 8 21 2 29 18 86 4.8620 177.71068 856.11013 780.07477 -5.88555 0.04237 -2.90316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49014 0.20208 -1.00000 - 1847 2017 8 21 2 29 22 948 4.8620 177.71342 856.06106 780.02742 -5.98411 0.04255 -2.93136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48979 0.20208 -1.00000 - 1848 2017 8 21 2 29 27 810 4.8621 177.71612 856.01247 779.98033 -6.08009 0.04276 -2.95720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48944 0.20208 -1.00000 - 1849 2017 8 21 2 29 32 672 4.8621 177.71876 855.96455 779.93350 -6.17304 0.04285 -2.98229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48908 0.20208 -1.00000 - 1850 2017 8 21 2 29 37 534 4.8621 177.72140 855.91727 779.88686 -6.26258 0.04277 -3.00622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48873 0.20208 -1.00000 - 1851 2017 8 21 2 29 42 396 4.8622 177.72412 855.87042 779.84036 -6.34838 0.04267 -3.02850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48837 0.20208 -1.00000 - 1852 2017 8 21 2 29 47 258 4.8622 177.72689 855.82388 779.79396 -6.43020 0.04271 -3.05029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48802 0.20208 -1.00000 - 1853 2017 8 21 2 29 52 121 4.8622 177.72966 855.77751 779.74769 -6.50783 0.04288 -3.07016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48767 0.20208 -1.00000 - 1854 2017 8 21 2 29 56 983 4.8622 177.73240 855.73129 779.70148 -6.58396 0.04309 -3.08857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48731 0.20208 -1.00000 - 1855 2017 8 21 2 30 1 845 4.8623 177.73507 855.68516 779.65535 -6.67568 0.04321 -3.10656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48696 0.20208 -1.00000 - 1856 2017 8 21 2 30 6 707 4.8623 177.73774 855.63911 779.60922 -6.76181 0.04316 -3.12306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48661 0.20208 -1.00000 - 1857 2017 8 21 2 30 11 570 4.8623 177.74047 855.59295 779.56309 -6.84060 0.04304 -3.13880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48625 0.20208 -1.00000 - 1858 2017 8 21 2 30 16 432 4.8623 177.74325 855.54661 779.51696 -6.91064 0.04303 -3.15384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48590 0.20208 -1.00000 - 1859 2017 8 21 2 30 21 294 4.8624 177.74606 855.50011 779.47083 -6.97135 0.04317 -3.16643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48555 0.20208 -1.00000 - 1860 2017 8 21 2 30 26 157 4.8624 177.74883 855.45353 779.42461 -7.02306 0.04338 -3.17973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48519 0.20208 -1.00000 - 1861 2017 8 21 2 30 31 19 4.8624 177.75155 855.40636 779.37833 -7.06689 0.04354 -3.19132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48484 0.20208 -1.00000 - 1862 2017 8 21 2 30 35 882 4.8625 177.75424 855.35888 779.33203 -7.10458 0.04353 -3.20175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48448 0.20208 -1.00000 - 1863 2017 8 21 2 30 40 744 4.8625 177.75697 855.31013 779.28574 -7.19583 0.04340 -3.21338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48413 0.20208 -1.00000 - 1864 2017 8 21 2 30 45 607 4.8625 177.75978 855.25923 779.23941 -7.18674 0.04333 -3.22116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48378 0.20207 -1.00000 - 1865 2017 8 21 2 30 50 469 4.8625 177.76262 855.20852 779.19306 -7.20472 0.04343 -3.22913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48342 0.20207 -1.00000 - 1866 2017 8 21 2 30 55 332 4.8625 177.76543 855.16096 779.14650 -7.21971 0.04365 -3.23512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48307 0.20207 -1.00000 - 1867 2017 8 21 2 31 0 194 4.8626 177.76819 855.11230 779.09988 -7.23143 0.04384 -3.23770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48272 0.20207 -1.00000 - 1868 2017 8 21 2 31 5 57 4.8626 177.77091 855.06345 779.05305 -7.23965 0.04387 -3.24037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48236 0.20207 -1.00000 - 1869 2017 8 21 2 31 9 920 4.8626 177.77365 855.01441 779.00603 -7.24309 0.04375 -3.24132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48201 0.20207 -1.00000 - 1870 2017 8 21 2 31 14 782 4.8627 177.77646 854.96451 778.95881 -7.24183 0.04364 -3.23860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48166 0.20207 -1.00000 - 1871 2017 8 21 2 31 19 645 4.8627 177.77932 854.91431 778.91129 -7.23591 0.04369 -3.23685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48130 0.20207 -1.00000 - 1872 2017 8 21 2 31 24 508 4.8627 177.78218 854.86342 778.86351 -7.22538 0.04388 -3.23193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48095 0.20207 -1.00000 - 1873 2017 8 21 2 31 29 370 4.8627 177.78498 854.81201 778.81537 -7.21021 0.04408 -3.22489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48059 0.20207 -1.00000 - 1874 2017 8 21 2 31 34 233 4.8628 177.78774 854.76005 778.76690 -7.19032 0.04416 -3.21740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48024 0.20207 -1.00000 - 1875 2017 8 21 2 31 39 96 4.8628 177.79050 854.70722 778.71808 -7.16570 0.04407 -3.20681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47989 0.20207 -1.00000 - 1876 2017 8 21 2 31 43 959 4.8628 177.79332 854.65381 778.66886 -7.13632 0.04393 -3.19594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47953 0.20207 -1.00000 - 1877 2017 8 21 2 31 48 822 4.8628 177.79621 854.59967 778.61922 -7.10215 0.04393 -3.18279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47918 0.20207 -1.00000 - 1878 2017 8 21 2 31 53 685 4.8629 177.79910 854.54475 778.56909 -7.06320 0.04410 -3.16801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47883 0.20207 -1.00000 - 1879 2017 8 21 2 31 58 547 4.8629 177.80194 854.48898 778.51847 -7.01951 0.04432 -3.15303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47847 0.20207 -1.00000 - 1880 2017 8 21 2 32 3 410 4.8629 177.80474 854.43222 778.46736 -6.97115 0.04444 -3.13590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47812 0.20207 -1.00000 - 1881 2017 8 21 2 32 8 273 4.8630 177.80751 854.37436 778.41571 -6.91824 0.04439 -3.11772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47777 0.20207 -1.00000 - 1882 2017 8 21 2 32 13 136 4.8630 177.81034 854.31557 778.36351 -6.86093 0.04425 -3.09960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47741 0.20207 -1.00000 - 1883 2017 8 21 2 32 17 999 4.8630 177.81324 854.25562 778.31079 -6.79935 0.04420 -3.07966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47706 0.20207 -1.00000 - 1884 2017 8 21 2 32 22 862 4.8630 177.81617 854.19476 778.25747 -6.73352 0.04433 -3.06057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47670 0.20207 -1.00000 - 1885 2017 8 21 2 32 27 725 4.8631 177.81906 854.13268 778.20369 -6.66328 0.04456 -3.03987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47635 0.20207 -1.00000 - 1886 2017 8 21 2 32 32 589 4.8631 177.82190 854.06616 778.14930 -6.58950 0.04474 -3.01912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47600 0.20207 -1.00000 - 1887 2017 8 21 2 32 37 452 4.8631 177.82470 853.99890 778.09439 -6.51504 0.04475 -2.99947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47564 0.20207 -1.00000 - 1888 2017 8 21 2 32 42 315 4.8632 177.82753 853.93415 778.03900 -6.44036 0.04462 -2.97550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47529 0.20207 -1.00000 - 1889 2017 8 21 2 32 47 178 4.8632 177.83045 853.86845 777.98304 -6.36273 0.04453 -2.95376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47494 0.20207 -1.00000 - 1890 2017 8 21 2 32 52 41 4.8632 177.83340 853.80169 777.92661 -6.28204 0.04462 -2.93178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47458 0.20207 -1.00000 - 1891 2017 8 21 2 32 56 905 4.8632 177.83634 853.73371 777.86965 -6.19857 0.04486 -2.90640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47423 0.20207 -1.00000 - 1892 2017 8 21 2 33 1 768 4.8633 177.83922 853.66453 777.81213 -6.11330 0.04508 -2.88412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47388 0.20206 -1.00000 - 1893 2017 8 21 2 33 6 631 4.8633 177.84205 853.59415 777.75410 -6.02791 0.04515 -2.85835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47352 0.20206 -1.00000 - 1894 2017 8 21 2 33 11 494 4.8633 177.84489 853.52283 777.69549 -5.94340 0.04504 -2.83185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47317 0.20206 -1.00000 - 1895 2017 8 21 2 33 16 358 4.8634 177.84781 853.45066 777.63628 -5.85972 0.04492 -2.80742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47281 0.20206 -1.00000 - 1896 2017 8 21 2 33 21 221 4.8634 177.85078 853.37684 777.57648 -5.77664 0.04495 -2.78145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47246 0.20206 -1.00000 - 1897 2017 8 21 2 33 26 85 4.8634 177.85376 853.30363 777.51625 -5.69677 0.04515 -2.75431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47211 0.20206 -1.00000 - 1898 2017 8 21 2 33 30 948 4.8634 177.85668 853.22925 777.45541 -5.61765 0.04538 -2.72887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47175 0.20206 -1.00000 - 1899 2017 8 21 2 33 35 811 4.8635 177.85956 853.15323 777.39406 -5.53538 0.04548 -2.70306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47140 0.20206 -1.00000 - 1900 2017 8 21 2 33 40 675 4.8635 177.86242 853.07553 777.33225 -5.51061 0.04541 -2.67546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47105 0.20206 -1.00000 - 1901 2017 8 21 2 33 45 538 4.8635 177.86534 852.99928 777.26995 -5.45207 0.04528 -2.65204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47069 0.20206 -1.00000 - 1902 2017 8 21 2 33 50 402 4.8635 177.86834 852.92059 777.20715 -5.33703 0.04525 -2.62538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47034 0.20206 -1.00000 - 1903 2017 8 21 2 33 55 266 4.8636 177.87134 852.83754 777.14390 -5.25071 0.04540 -2.59948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46999 0.20206 -1.00000 - 1904 2017 8 21 2 34 0 129 4.8636 177.87431 852.75764 777.08002 -5.16497 0.04563 -2.57555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46963 0.20206 -1.00000 - 1905 2017 8 21 2 34 4 993 4.8636 177.87723 852.67622 777.01567 -5.08103 0.04577 -2.54956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46928 0.20206 -1.00000 - 1906 2017 8 21 2 34 9 856 4.8637 177.88012 852.59388 776.95081 -4.99895 0.04574 -2.52502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46892 0.20206 -1.00000 - 1907 2017 8 21 2 34 14 720 4.8637 177.88304 852.51063 776.88543 -4.91856 0.04559 -2.50201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46857 0.20206 -1.00000 - 1908 2017 8 21 2 34 19 584 4.8637 177.88605 852.42648 776.81967 -4.83936 0.04550 -2.47796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46822 0.20206 -1.00000 - 1909 2017 8 21 2 34 24 448 4.8637 177.88909 852.34165 776.75341 -4.76080 0.04560 -2.45487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46786 0.20206 -1.00000 - 1910 2017 8 21 2 34 29 311 4.8638 177.89210 852.25578 776.68668 -4.68256 0.04584 -2.43375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46751 0.20206 -1.00000 - 1911 2017 8 21 2 34 34 175 4.8638 177.89506 852.16885 776.61958 -4.60450 0.04603 -2.41166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46716 0.20206 -1.00000 - 1912 2017 8 21 2 34 39 39 4.8638 177.89798 852.08119 776.55203 -4.52679 0.04605 -2.39030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46680 0.20206 -1.00000 - 1913 2017 8 21 2 34 43 903 4.8639 177.90092 851.99270 776.48405 -4.44964 0.04592 -2.37107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46645 0.20206 -1.00000 - 1914 2017 8 21 2 34 48 767 4.8639 177.90393 851.90333 776.41576 -4.37337 0.04580 -2.35133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46609 0.20206 -1.00000 - 1915 2017 8 21 2 34 53 631 4.8639 177.90700 851.81345 776.34710 -4.29831 0.04587 -2.33397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46574 0.20206 -1.00000 - 1916 2017 8 21 2 34 58 495 4.8639 177.91006 851.72292 776.27812 -4.24630 0.04609 -2.31791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46539 0.20206 -1.00000 - 1917 2017 8 21 2 35 3 359 4.8640 177.91305 851.62819 776.20888 -4.22041 0.04632 -2.30149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46503 0.20206 -1.00000 - 1918 2017 8 21 2 35 8 223 4.8640 177.91601 851.53349 776.13932 -4.18613 0.04639 -2.28823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46468 0.20206 -1.00000 - 1919 2017 8 21 2 35 13 87 4.8640 177.91896 851.44202 776.06953 -4.09120 0.04630 -2.27489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46433 0.20206 -1.00000 - 1920 2017 8 21 2 35 17 951 4.8641 177.92198 851.34981 775.99947 -4.05672 0.04616 -2.26176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46397 0.20205 -1.00000 - 1921 2017 8 21 2 35 22 815 4.8641 177.92507 851.25747 775.92921 -4.04313 0.04616 -2.25214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46362 0.20205 -1.00000 - 1922 2017 8 21 2 35 27 679 4.8641 177.92817 851.16464 775.85879 -3.95848 0.04636 -2.24101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46326 0.20205 -1.00000 - 1923 2017 8 21 2 35 32 543 4.8641 177.93121 851.07139 775.78810 -3.91479 0.04660 -2.23204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46291 0.20205 -1.00000 - 1924 2017 8 21 2 35 37 407 4.8642 177.93420 850.97764 775.71730 -3.91156 0.04674 -2.22472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46256 0.20205 -1.00000 - 1925 2017 8 21 2 35 42 271 4.8642 177.93718 850.88365 775.64638 -3.83763 0.04669 -2.21626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46220 0.20205 -1.00000 - 1926 2017 8 21 2 35 47 136 4.8642 177.94020 850.78973 775.57538 -3.81956 0.04654 -2.21072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46185 0.20205 -1.00000 - 1927 2017 8 21 2 35 52 0 4.8643 177.94330 850.69583 775.50420 -3.80514 0.04648 -2.20562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46150 0.20205 -1.00000 - 1928 2017 8 21 2 35 56 864 4.8643 177.94643 850.60155 775.43292 -3.78643 0.04663 -2.20142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46114 0.20205 -1.00000 - 1929 2017 8 21 2 36 1 728 4.8643 177.94952 850.50724 775.36165 -3.76998 0.04687 -2.19840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46079 0.20205 -1.00000 - 1930 2017 8 21 2 36 6 593 4.8643 177.95254 850.41298 775.29025 -3.78625 0.04704 -2.19842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46043 0.20205 -1.00000 - 1931 2017 8 21 2 36 11 457 4.8644 177.95555 850.31852 775.21883 -3.78310 0.04703 -2.19847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46008 0.20205 -1.00000 - 1932 2017 8 21 2 36 16 322 4.8644 177.95859 850.22398 775.14744 -3.76839 0.04689 -2.20018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45973 0.20205 -1.00000 - 1933 2017 8 21 2 36 21 186 4.8644 177.96169 850.12981 775.07598 -3.81929 0.04679 -2.20501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45937 0.20205 -1.00000 - 1934 2017 8 21 2 36 26 51 4.8645 177.96485 850.03555 775.00461 -3.77715 0.04688 -2.20798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45902 0.20205 -1.00000 - 1935 2017 8 21 2 36 30 915 4.8645 177.96798 849.93823 774.93329 -3.84884 0.04711 -2.21571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45867 0.20205 -1.00000 - 1936 2017 8 21 2 36 35 780 4.8645 177.97106 849.84407 774.86202 -3.88964 0.04732 -2.22462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45831 0.20205 -1.00000 - 1937 2017 8 21 2 36 40 644 4.8646 177.97410 849.75065 774.79099 -3.84116 0.04737 -2.23248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45796 0.20205 -1.00000 - 1938 2017 8 21 2 36 45 509 4.8646 177.97714 849.65762 774.72007 -3.90676 0.04726 -2.24370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45760 0.20205 -1.00000 - 1939 2017 8 21 2 36 50 373 4.8646 177.98026 849.56464 774.64933 -3.95544 0.04712 -2.25659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45725 0.20205 -1.00000 - 1940 2017 8 21 2 36 55 238 4.8646 177.98344 849.47186 774.57891 -3.93130 0.04714 -2.26803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45690 0.20205 -1.00000 - 1941 2017 8 21 2 37 0 103 4.8647 177.98661 849.37860 774.50875 -4.00755 0.04735 -2.28388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45654 0.20205 -1.00000 - 1942 2017 8 21 2 37 4 967 4.8647 177.98974 849.28732 774.43879 -4.06570 0.04759 -2.30026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45619 0.20205 -1.00000 - 1943 2017 8 21 2 37 9 832 4.8647 177.99281 849.19614 774.36912 -4.03924 0.04769 -2.31707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45584 0.20205 -1.00000 - 1944 2017 8 21 2 37 14 697 4.8648 177.99588 849.10583 774.29971 -4.14973 0.04761 -2.33630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45548 0.20205 -1.00000 - 1945 2017 8 21 2 37 19 562 4.8648 177.99900 849.01627 774.23068 -4.14631 0.04745 -2.35429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45513 0.20205 -1.00000 - 1946 2017 8 21 2 37 24 426 4.8648 178.00219 848.92758 774.16197 -4.18634 0.04741 -2.37513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45477 0.20205 -1.00000 - 1947 2017 8 21 2 37 29 291 4.8648 178.00541 848.83960 774.09362 -4.22620 0.04757 -2.39724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45442 0.20205 -1.00000 - 1948 2017 8 21 2 37 34 156 4.8649 178.00857 848.75201 774.02579 -4.30545 0.04780 -2.41946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45407 0.20205 -1.00000 - 1949 2017 8 21 2 37 39 21 4.8649 178.01168 848.66573 773.95839 -4.39675 0.04793 -2.44345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45371 0.20204 -1.00000 - 1950 2017 8 21 2 37 43 886 4.8649 178.01478 848.58109 773.89140 -4.47691 0.04788 -2.46852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45336 0.20204 -1.00000 - 1951 2017 8 21 2 37 48 751 4.8650 178.01791 848.49721 773.82484 -4.47261 0.04771 -2.49131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45301 0.20204 -1.00000 - 1952 2017 8 21 2 37 53 616 4.8650 178.02112 848.41407 773.75862 -4.51252 0.04761 -2.51718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45265 0.20204 -1.00000 - 1953 2017 8 21 2 37 58 481 4.8650 178.02436 848.33104 773.69277 -4.57422 0.04771 -2.54443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45230 0.20204 -1.00000 - 1954 2017 8 21 2 38 3 346 4.8650 178.02758 848.25129 773.62744 -4.64410 0.04794 -2.56934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45194 0.20204 -1.00000 - 1955 2017 8 21 2 38 8 211 4.8651 178.03073 848.17035 773.56256 -4.75179 0.04812 -2.59770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45159 0.20204 -1.00000 - 1956 2017 8 21 2 38 13 76 4.8651 178.03385 848.09306 773.49809 -4.83939 0.04813 -2.62657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45124 0.20204 -1.00000 - 1957 2017 8 21 2 38 17 941 4.8652 178.03700 848.01384 773.43408 -4.86668 0.04798 -2.65244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45088 0.20204 -1.00000 - 1958 2017 8 21 2 38 22 807 4.8652 178.04022 847.93528 773.37042 -4.98824 0.04785 -2.68229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45053 0.20204 -1.00000 - 1959 2017 8 21 2 38 27 672 4.8652 178.04350 847.85864 773.30707 -5.09952 0.04791 -2.71193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45018 0.20204 -1.00000 - 1960 2017 8 21 2 38 32 537 4.8652 178.04676 847.78235 773.24415 -5.14160 0.04814 -2.73960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44982 0.20204 -1.00000 - 1961 2017 8 21 2 38 37 402 4.8653 178.04995 847.70645 773.18166 -5.23751 0.04837 -2.77094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44947 0.20204 -1.00000 - 1962 2017 8 21 2 38 42 268 4.8653 178.05310 847.63474 773.11962 -5.33259 0.04844 -2.80186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44911 0.20204 -1.00000 - 1963 2017 8 21 2 38 47 133 4.8653 178.05627 847.56075 773.05808 -5.42693 0.04834 -2.83149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44876 0.20204 -1.00000 - 1964 2017 8 21 2 38 51 998 4.8654 178.05949 847.48627 772.99692 -5.53088 0.04819 -2.86287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44841 0.20204 -1.00000 - 1965 2017 8 21 2 38 56 864 4.8654 178.06279 847.41449 772.93610 -5.64097 0.04820 -2.89477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44805 0.20204 -1.00000 - 1966 2017 8 21 2 39 1 729 4.8654 178.06610 847.34330 772.87579 -5.71333 0.04842 -2.92457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44770 0.20204 -1.00000 - 1967 2017 8 21 2 39 6 594 4.8654 178.06934 847.26964 772.81583 -5.86934 0.04869 -2.95624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44734 0.20204 -1.00000 - 1968 2017 8 21 2 39 11 460 4.8655 178.07253 847.19889 772.75629 -5.93558 0.04883 -2.98645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44699 0.20204 -1.00000 - 1969 2017 8 21 2 39 16 325 4.8655 178.07570 847.13062 772.69706 -6.02323 0.04877 -3.01484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44664 0.20204 -1.00000 - 1970 2017 8 21 2 39 21 191 4.8655 178.07893 847.06286 772.63809 -6.10494 0.04861 -3.04559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44628 0.20204 -1.00000 - 1971 2017 8 21 2 39 26 57 4.8656 178.08224 846.99524 772.57946 -6.18605 0.04855 -3.07359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44593 0.20204 -1.00000 - 1972 2017 8 21 2 39 30 922 4.8656 178.08558 846.92824 772.52117 -6.26887 0.04871 -3.10078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44558 0.20204 -1.00000 - 1973 2017 8 21 2 39 35 788 4.8656 178.08887 846.86217 772.46314 -6.35343 0.04898 -3.12907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44522 0.20204 -1.00000 - 1974 2017 8 21 2 39 40 653 4.8657 178.09209 846.79646 772.40543 -6.43860 0.04916 -3.15517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44487 0.20204 -1.00000 - 1975 2017 8 21 2 39 45 519 4.8657 178.09529 846.73140 772.34798 -6.52356 0.04914 -3.18134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44451 0.20204 -1.00000 - 1976 2017 8 21 2 39 50 385 4.8657 178.09853 846.66673 772.29071 -6.60771 0.04897 -3.20819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44416 0.20204 -1.00000 - 1977 2017 8 21 2 39 55 251 4.8657 178.10186 846.60230 772.23373 -6.69097 0.04885 -3.23328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44381 0.20203 -1.00000 - 1978 2017 8 21 2 40 0 116 4.8658 178.10523 846.53699 772.17706 -6.77896 0.04894 -3.25569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44345 0.20203 -1.00000 - 1979 2017 8 21 2 40 4 982 4.8658 178.10857 846.47275 772.12053 -6.92405 0.04920 -3.28011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44310 0.20203 -1.00000 - 1980 2017 8 21 2 40 9 848 4.8658 178.11183 846.41003 772.06414 -6.96279 0.04942 -3.30149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44274 0.20203 -1.00000 - 1981 2017 8 21 2 40 14 714 4.8659 178.11506 846.34744 772.00797 -7.02925 0.04944 -3.32117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44239 0.20203 -1.00000 - 1982 2017 8 21 2 40 19 580 4.8659 178.11831 846.28535 771.95184 -7.09173 0.04929 -3.34208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44204 0.20203 -1.00000 - 1983 2017 8 21 2 40 24 446 4.8659 178.12165 846.22326 771.89582 -7.15138 0.04912 -3.36076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44168 0.20203 -1.00000 - 1984 2017 8 21 2 40 29 312 4.8659 178.12504 846.16134 771.83998 -7.20895 0.04915 -3.37727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44133 0.20203 -1.00000 - 1985 2017 8 21 2 40 34 178 4.8660 178.12843 846.09958 771.78414 -7.27934 0.04937 -3.39396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44098 0.20203 -1.00000 - 1986 2017 8 21 2 40 39 44 4.8660 178.13175 846.03776 771.72836 -7.34860 0.04963 -3.40983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44062 0.20203 -1.00000 - 1987 2017 8 21 2 40 43 910 4.8661 178.13501 845.97615 771.67267 -7.41295 0.04974 -3.42366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44027 0.20203 -1.00000 - 1988 2017 8 21 2 40 48 776 4.8661 178.13827 845.91470 771.61695 -7.47146 0.04964 -3.43603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43991 0.20203 -1.00000 - 1989 2017 8 21 2 40 53 642 4.8661 178.14160 845.85312 771.56122 -7.52350 0.04944 -3.44655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43956 0.20203 -1.00000 - 1990 2017 8 21 2 40 58 508 4.8661 178.14502 845.79154 771.50546 -7.56875 0.04939 -3.45627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43921 0.20203 -1.00000 - 1991 2017 8 21 2 41 3 374 4.8662 178.14845 845.72978 771.44955 -7.60730 0.04957 -3.46401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43885 0.20203 -1.00000 - 1992 2017 8 21 2 41 8 240 4.8662 178.15182 845.66761 771.39349 -7.63949 0.04985 -3.47095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43850 0.20203 -1.00000 - 1993 2017 8 21 2 41 13 107 4.8662 178.15512 845.60510 771.33725 -7.66576 0.05002 -3.47619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43814 0.20203 -1.00000 - 1994 2017 8 21 2 41 17 973 4.8663 178.15840 845.54217 771.28081 -7.68651 0.04997 -3.48115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43779 0.20203 -1.00000 - 1995 2017 8 21 2 41 22 839 4.8663 178.16174 845.47884 771.22413 -7.70213 0.04977 -3.48382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43744 0.20203 -1.00000 - 1996 2017 8 21 2 41 27 705 4.8663 178.16517 845.41493 771.16732 -7.71288 0.04968 -3.48601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43708 0.20203 -1.00000 - 1997 2017 8 21 2 41 32 572 4.8663 178.16863 845.35086 771.11022 -7.71997 0.04981 -3.48871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43673 0.20203 -1.00000 - 1998 2017 8 21 2 41 37 438 4.8664 178.17204 845.28598 771.05302 -7.72490 0.05008 -3.48819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43638 0.20203 -1.00000 - 1999 2017 8 21 2 41 42 305 4.8664 178.17539 845.22009 770.99570 -7.78209 0.05029 -3.48940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43602 0.20203 -1.00000 - 2000 2017 8 21 2 41 47 171 4.8665 178.17870 845.15581 770.93827 -7.80441 0.05029 -3.48819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43567 0.20203 -1.00000 - 2001 2017 8 21 2 41 52 37 4.8665 178.18205 845.09005 770.88065 -7.76631 0.05012 -3.48531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43531 0.20203 -1.00000 - 2002 2017 8 21 2 41 56 904 4.8665 178.18548 845.02310 770.82282 -7.75164 0.04997 -3.48248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43496 0.20203 -1.00000 - 2003 2017 8 21 2 42 1 771 4.8665 178.18897 844.95649 770.76474 -7.73329 0.05004 -3.47878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43461 0.20203 -1.00000 - 2004 2017 8 21 2 42 6 637 4.8666 178.19244 844.88934 770.70639 -7.71244 0.05028 -3.47314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43425 0.20203 -1.00000 - 2005 2017 8 21 2 42 11 504 4.8666 178.19583 844.81978 770.64777 -7.68909 0.05054 -3.46707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43390 0.20202 -1.00000 - 2006 2017 8 21 2 42 16 370 4.8666 178.19917 844.74845 770.58876 -7.66346 0.05062 -3.45849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43354 0.20202 -1.00000 - 2007 2017 8 21 2 42 21 237 4.8667 178.20253 844.67974 770.52946 -7.63569 0.05048 -3.44899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43319 0.20202 -1.00000 - 2008 2017 8 21 2 42 26 104 4.8667 178.20597 844.61041 770.46982 -7.60373 0.05030 -3.43769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43284 0.20202 -1.00000 - 2009 2017 8 21 2 42 30 970 4.8667 178.20949 844.54028 770.40969 -7.56765 0.05029 -3.42602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43248 0.20202 -1.00000 - 2010 2017 8 21 2 42 35 837 4.8667 178.21300 844.46908 770.34924 -7.52685 0.05050 -3.41329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43213 0.20202 -1.00000 - 2011 2017 8 21 2 42 40 704 4.8668 178.21644 844.39720 770.28849 -7.48156 0.05077 -3.39759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43177 0.20202 -1.00000 - 2012 2017 8 21 2 42 45 571 4.8668 178.21982 844.32438 770.22725 -7.43238 0.05092 -3.38316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43142 0.20202 -1.00000 - 2013 2017 8 21 2 42 50 438 4.8669 178.22319 844.25092 770.16557 -7.37992 0.05085 -3.36726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43107 0.20202 -1.00000 - 2014 2017 8 21 2 42 55 305 4.8669 178.22662 844.17660 770.10351 -7.32438 0.05064 -3.34994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43071 0.20202 -1.00000 - 2015 2017 8 21 2 43 0 171 4.8669 178.23015 844.10145 770.04099 -7.26586 0.05055 -3.33122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43036 0.20202 -1.00000 - 2016 2017 8 21 2 43 5 38 4.8669 178.23370 844.02559 769.97798 -7.20427 0.05070 -3.31271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43000 0.20202 -1.00000 - 2017 2017 8 21 2 43 9 905 4.8670 178.23720 843.94881 769.91451 -7.13966 0.05097 -3.29155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42965 0.20202 -1.00000 - 2018 2017 8 21 2 43 14 772 4.8670 178.24062 843.87112 769.85050 -7.07220 0.05118 -3.26955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42930 0.20202 -1.00000 - 2019 2017 8 21 2 43 19 639 4.8670 178.24402 843.79263 769.78590 -7.00207 0.05116 -3.24832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42894 0.20202 -1.00000 - 2020 2017 8 21 2 43 24 506 4.8671 178.24746 843.71304 769.72074 -6.92948 0.05096 -3.22521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42859 0.20202 -1.00000 - 2021 2017 8 21 2 43 29 374 4.8671 178.25100 843.63243 769.65501 -6.85471 0.05083 -3.20122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42823 0.20202 -1.00000 - 2022 2017 8 21 2 43 34 241 4.8671 178.25458 843.55081 769.58869 -6.77803 0.05093 -3.17779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42788 0.20202 -1.00000 - 2023 2017 8 21 2 43 39 108 4.8672 178.25812 843.46815 769.52183 -6.69975 0.05119 -3.15357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42753 0.20202 -1.00000 - 2024 2017 8 21 2 43 43 975 4.8672 178.26159 843.38440 769.45444 -6.62018 0.05141 -3.12923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42717 0.20202 -1.00000 - 2025 2017 8 21 2 43 48 842 4.8672 178.26502 843.29975 769.38648 -6.53965 0.05145 -3.10564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42682 0.20202 -1.00000 - 2026 2017 8 21 2 43 53 710 4.8673 178.26848 843.21383 769.31803 -6.45846 0.05128 -3.08082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42647 0.20202 -1.00000 - 2027 2017 8 21 2 43 58 577 4.8673 178.27202 843.12724 769.24900 -6.37693 0.05111 -3.05775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42611 0.20202 -1.00000 - 2028 2017 8 21 2 44 3 444 4.8673 178.27563 843.03953 769.17952 -6.29531 0.05114 -3.03433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42576 0.20202 -1.00000 - 2029 2017 8 21 2 44 8 311 4.8673 178.27921 842.95076 769.10961 -6.21406 0.05136 -3.01154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42540 0.20202 -1.00000 - 2030 2017 8 21 2 44 13 179 4.8674 178.28274 842.86151 769.03914 -6.15761 0.05163 -2.99039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42505 0.20202 -1.00000 - 2031 2017 8 21 2 44 18 46 4.8674 178.28620 842.76654 768.96839 -6.10964 0.05177 -2.96860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42470 0.20202 -1.00000 - 2032 2017 8 21 2 44 22 914 4.8675 178.28966 842.67753 768.89724 -6.05641 0.05166 -2.94805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42434 0.20202 -1.00000 - 2033 2017 8 21 2 44 27 781 4.8675 178.29320 842.58643 768.82568 -5.95530 0.05145 -2.92704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42399 0.20201 -1.00000 - 2034 2017 8 21 2 44 32 649 4.8675 178.29683 842.49120 768.75378 -5.88337 0.05139 -2.90573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42363 0.20201 -1.00000 - 2035 2017 8 21 2 44 37 516 4.8675 178.30046 842.39625 768.68151 -5.83399 0.05158 -2.88575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42328 0.20201 -1.00000 - 2036 2017 8 21 2 44 42 384 4.8676 178.30404 842.30336 768.60882 -5.74115 0.05187 -2.86615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42293 0.20201 -1.00000 - 2037 2017 8 21 2 44 47 251 4.8676 178.30754 842.20937 768.53577 -5.67395 0.05208 -2.84548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42257 0.20201 -1.00000 - 2038 2017 8 21 2 44 52 119 4.8676 178.31102 842.11484 768.46233 -5.60818 0.05206 -2.82637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42222 0.20201 -1.00000 - 2039 2017 8 21 2 44 56 987 4.8677 178.31456 842.01972 768.38855 -5.54357 0.05185 -2.80715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42186 0.20201 -1.00000 - 2040 2017 8 21 2 45 1 854 4.8677 178.31819 841.92385 768.31437 -5.48003 0.05173 -2.78746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42151 0.20201 -1.00000 - 2041 2017 8 21 2 45 6 722 4.8677 178.32186 841.82729 768.23980 -5.41742 0.05185 -2.77035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42116 0.20201 -1.00000 - 2042 2017 8 21 2 45 11 590 4.8678 178.32548 841.72983 768.16487 -5.35563 0.05213 -2.75168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42080 0.20201 -1.00000 - 2043 2017 8 21 2 45 16 458 4.8678 178.32904 841.63182 768.08955 -5.29467 0.05238 -2.73413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42045 0.20201 -1.00000 - 2044 2017 8 21 2 45 21 326 4.8678 178.33255 841.53326 768.01387 -5.23463 0.05245 -2.71729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42009 0.20201 -1.00000 - 2045 2017 8 21 2 45 26 193 4.8679 178.33608 841.43403 767.93782 -5.17567 0.05227 -2.70022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41974 0.20201 -1.00000 - 2046 2017 8 21 2 45 31 61 4.8679 178.33972 841.33423 767.86140 -5.11798 0.05207 -2.68540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41939 0.20201 -1.00000 - 2047 2017 8 21 2 45 35 929 4.8679 178.34341 841.23371 767.78462 -5.06182 0.05210 -2.67060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41903 0.20201 -1.00000 - 2048 2017 8 21 2 45 40 797 4.8679 178.34709 841.13247 767.70753 -5.00745 0.05235 -2.65679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41868 0.20201 -1.00000 - 2049 2017 8 21 2 45 45 665 4.8680 178.35069 841.03080 767.63016 -4.95519 0.05263 -2.64513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41832 0.20201 -1.00000 - 2050 2017 8 21 2 45 50 533 4.8680 178.35425 840.92863 767.55261 -4.90534 0.05275 -2.63355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41797 0.20201 -1.00000 - 2051 2017 8 21 2 45 55 401 4.8681 178.35779 840.82582 767.47482 -4.91026 0.05264 -2.62525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41762 0.20201 -1.00000 - 2052 2017 8 21 2 46 0 269 4.8681 178.36142 840.72256 767.39692 -4.89854 0.05240 -2.61910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41726 0.20201 -1.00000 - 2053 2017 8 21 2 46 5 137 4.8681 178.36513 840.61918 767.31894 -4.82613 0.05232 -2.61152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41691 0.20201 -1.00000 - 2054 2017 8 21 2 46 10 6 4.8681 178.36885 840.51229 767.24079 -4.82661 0.05249 -2.60848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41655 0.20201 -1.00000 - 2055 2017 8 21 2 46 14 874 4.8682 178.37252 840.40678 767.16272 -4.82666 0.05277 -2.60609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41620 0.20201 -1.00000 - 2056 2017 8 21 2 46 19 742 4.8682 178.37612 840.30411 767.08461 -4.76686 0.05297 -2.60136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41585 0.20201 -1.00000 - 2057 2017 8 21 2 46 24 610 4.8683 178.37968 840.20100 767.00637 -4.76653 0.05294 -2.60178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41549 0.20201 -1.00000 - 2058 2017 8 21 2 46 29 479 4.8683 178.38330 840.09663 766.92809 -4.78352 0.05269 -2.60118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41514 0.20201 -1.00000 - 2059 2017 8 21 2 46 34 347 4.8683 178.38702 839.99233 766.84988 -4.72723 0.05251 -2.59969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41478 0.20201 -1.00000 - 2060 2017 8 21 2 46 39 215 4.8683 178.39079 839.88821 766.77159 -4.70968 0.05260 -2.60211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41443 0.20201 -1.00000 - 2061 2017 8 21 2 46 44 84 4.8684 178.39451 839.78398 766.69333 -4.70167 0.05288 -2.60486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41408 0.20200 -1.00000 - 2062 2017 8 21 2 46 48 952 4.8684 178.39815 839.67985 766.61521 -4.69794 0.05315 -2.60723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41372 0.20200 -1.00000 - 2063 2017 8 21 2 46 53 820 4.8685 178.40175 839.57596 766.53710 -4.75779 0.05320 -2.61393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41337 0.20200 -1.00000 - 2064 2017 8 21 2 46 58 689 4.8685 178.40537 839.47232 766.45907 -4.78840 0.05300 -2.62000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41301 0.20200 -1.00000 - 2065 2017 8 21 2 47 3 557 4.8685 178.40910 839.36889 766.38126 -4.75007 0.05278 -2.62581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41266 0.20200 -1.00000 - 2066 2017 8 21 2 47 8 426 4.8685 178.41289 839.26424 766.30348 -4.76397 0.05279 -2.63586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41230 0.20200 -1.00000 - 2067 2017 8 21 2 47 13 294 4.8686 178.41666 839.16165 766.22586 -4.76810 0.05305 -2.64450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41195 0.20200 -1.00000 - 2068 2017 8 21 2 47 18 163 4.8686 178.42035 839.05913 766.14844 -4.79006 0.05334 -2.65434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41160 0.20200 -1.00000 - 2069 2017 8 21 2 47 23 32 4.8686 178.42399 838.95700 766.07113 -4.86888 0.05349 -2.66714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41124 0.20200 -1.00000 - 2070 2017 8 21 2 47 27 900 4.8687 178.42763 838.85508 765.99408 -4.92180 0.05339 -2.67958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41089 0.20200 -1.00000 - 2071 2017 8 21 2 47 32 769 4.8687 178.43134 838.75386 765.91731 -4.90486 0.05315 -2.69376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41053 0.20200 -1.00000 - 2072 2017 8 21 2 47 37 638 4.8687 178.43515 838.65305 765.84079 -4.92945 0.05306 -2.70832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41018 0.20200 -1.00000 - 2073 2017 8 21 2 47 42 507 4.8688 178.43897 838.55274 765.76456 -4.95872 0.05325 -2.72318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40983 0.20200 -1.00000 - 2074 2017 8 21 2 47 47 375 4.8688 178.44273 838.45324 765.68858 -4.99355 0.05358 -2.74010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40947 0.20200 -1.00000 - 2075 2017 8 21 2 47 52 244 4.8688 178.44640 838.35431 765.61287 -5.03317 0.05381 -2.75667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40912 0.20200 -1.00000 - 2076 2017 8 21 2 47 57 113 4.8689 178.45006 838.25621 765.53749 -5.07488 0.05379 -2.77368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40876 0.20200 -1.00000 - 2077 2017 8 21 2 48 1 982 4.8689 178.45377 838.15898 765.46233 -5.11875 0.05356 -2.79388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40841 0.20200 -1.00000 - 2078 2017 8 21 2 48 6 851 4.8689 178.45757 838.06211 765.38752 -5.16750 0.05338 -2.81293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40806 0.20200 -1.00000 - 2079 2017 8 21 2 48 11 720 4.8690 178.46143 837.96605 765.31305 -5.28860 0.05345 -2.83381 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40770 0.20200 -1.00000 - 2080 2017 8 21 2 48 16 589 4.8690 178.46525 837.87089 765.23883 -5.37053 0.05374 -2.85633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40735 0.20200 -1.00000 - 2081 2017 8 21 2 48 21 458 4.8690 178.46898 837.77629 765.16498 -5.38197 0.05403 -2.87642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40699 0.20200 -1.00000 - 2082 2017 8 21 2 48 26 327 4.8691 178.47266 837.67937 765.09143 -5.45008 0.05411 -2.90094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40664 0.20200 -1.00000 - 2083 2017 8 21 2 48 31 196 4.8691 178.47638 837.58364 765.01820 -5.53918 0.05393 -2.92484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40629 0.20200 -1.00000 - 2084 2017 8 21 2 48 36 65 4.8691 178.48019 837.49182 764.94537 -5.58782 0.05370 -2.94805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40593 0.20200 -1.00000 - 2085 2017 8 21 2 48 40 934 4.8692 178.48409 837.40073 764.87287 -5.69182 0.05367 -2.97385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40558 0.20200 -1.00000 - 2086 2017 8 21 2 48 45 804 4.8692 178.48795 837.31024 764.80082 -5.72514 0.05392 -2.99858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40522 0.20200 -1.00000 - 2087 2017 8 21 2 48 50 673 4.8692 178.49173 837.22078 764.72912 -5.78554 0.05423 -3.02276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40487 0.20200 -1.00000 - 2088 2017 8 21 2 48 55 542 4.8693 178.49544 837.13179 764.65777 -5.84671 0.05436 -3.04959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40452 0.20200 -1.00000 - 2089 2017 8 21 2 49 0 411 4.8693 178.49918 837.04364 764.58683 -5.92370 0.05424 -3.07555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40416 0.20199 -1.00000 - 2090 2017 8 21 2 49 5 281 4.8693 178.50299 836.95604 764.51619 -5.99802 0.05401 -3.10068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40381 0.20199 -1.00000 - 2091 2017 8 21 2 49 10 150 4.8694 178.50688 836.86937 764.44585 -6.07750 0.05388 -3.12795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40345 0.20199 -1.00000 - 2092 2017 8 21 2 49 15 19 4.8694 178.51079 836.78358 764.37594 -6.15746 0.05401 -3.15353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40310 0.20199 -1.00000 - 2093 2017 8 21 2 49 19 889 4.8694 178.51463 836.69852 764.30635 -6.28288 0.05430 -3.18004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40274 0.20199 -1.00000 - 2094 2017 8 21 2 49 24 758 4.8695 178.51839 836.61422 764.23707 -6.38444 0.05453 -3.20678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40239 0.20199 -1.00000 - 2095 2017 8 21 2 49 29 628 4.8695 178.52214 836.53015 764.16819 -6.42145 0.05451 -3.23324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40204 0.20199 -1.00000 - 2096 2017 8 21 2 49 34 497 4.8695 178.52596 836.44710 764.09970 -6.50079 0.05431 -3.25927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40168 0.20199 -1.00000 - 2097 2017 8 21 2 49 39 367 4.8696 178.52987 836.36551 764.03153 -6.59106 0.05414 -3.28586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40133 0.20199 -1.00000 - 2098 2017 8 21 2 49 44 237 4.8696 178.53381 836.28437 763.96369 -6.67996 0.05421 -3.30965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40097 0.20199 -1.00000 - 2099 2017 8 21 2 49 49 106 4.8696 178.53770 836.20387 763.89606 -6.77751 0.05448 -3.33519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40062 0.20199 -1.00000 - 2100 2017 8 21 2 49 53 976 4.8697 178.54152 836.12386 763.82866 -6.86169 0.05475 -3.36079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40027 0.20199 -1.00000 - 2101 2017 8 21 2 49 58 846 4.8697 178.54530 836.04412 763.76148 -6.94830 0.05483 -3.38321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39991 0.20199 -1.00000 - 2102 2017 8 21 2 50 3 715 4.8697 178.54912 835.96440 763.69466 -7.03566 0.05471 -3.40841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39956 0.20199 -1.00000 - 2103 2017 8 21 2 50 8 585 4.8698 178.55301 835.88703 763.62805 -7.13066 0.05453 -3.43280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39920 0.20199 -1.00000 - 2104 2017 8 21 2 50 13 455 4.8698 178.55697 835.80895 763.56179 -7.20232 0.05449 -3.45404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39885 0.20199 -1.00000 - 2105 2017 8 21 2 50 18 325 4.8698 178.56092 835.73055 763.49569 -7.28164 0.05467 -3.47700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39850 0.20199 -1.00000 - 2106 2017 8 21 2 50 23 194 4.8699 178.56479 835.65364 763.42971 -7.36845 0.05496 -3.49935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39814 0.20199 -1.00000 - 2107 2017 8 21 2 50 28 64 4.8699 178.56861 835.57672 763.36394 -7.45520 0.05513 -3.51885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39779 0.20199 -1.00000 - 2108 2017 8 21 2 50 32 934 4.8699 178.57244 835.49923 763.29837 -7.58961 0.05508 -3.54105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39743 0.20199 -1.00000 - 2109 2017 8 21 2 50 37 804 4.8700 178.57634 835.42523 763.23301 -7.68586 0.05492 -3.56234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39708 0.20199 -1.00000 - 2110 2017 8 21 2 50 42 674 4.8700 178.58031 835.34910 763.16788 -7.73630 0.05482 -3.58095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39672 0.20199 -1.00000 - 2111 2017 8 21 2 50 47 544 4.8700 178.58430 835.27184 763.10285 -7.80044 0.05492 -3.60105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39637 0.20199 -1.00000 - 2112 2017 8 21 2 50 52 414 4.8701 178.58822 835.19603 763.03797 -7.85863 0.05517 -3.61842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39602 0.20199 -1.00000 - 2113 2017 8 21 2 50 57 284 4.8701 178.59209 835.12024 762.97316 -7.91281 0.05536 -3.63538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39566 0.20199 -1.00000 - 2114 2017 8 21 2 51 2 155 4.8701 178.59594 835.04145 762.90832 -7.96464 0.05539 -3.65230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39531 0.20199 -1.00000 - 2115 2017 8 21 2 51 7 25 4.8702 178.59984 834.96550 762.84365 -8.01122 0.05527 -3.66588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39495 0.20199 -1.00000 - 2116 2017 8 21 2 51 11 895 4.8702 178.60382 834.89013 762.77900 -8.05618 0.05514 -3.67852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39460 0.20199 -1.00000 - 2117 2017 8 21 2 51 16 765 4.8702 178.60783 834.81455 762.71421 -8.09821 0.05514 -3.69192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39425 0.20198 -1.00000 - 2118 2017 8 21 2 51 21 635 4.8703 178.61180 834.73840 762.64940 -8.13642 0.05530 -3.70244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39389 0.20198 -1.00000 - 2119 2017 8 21 2 51 26 506 4.8703 178.61572 834.66199 762.58461 -8.17016 0.05551 -3.71116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39354 0.20198 -1.00000 - 2120 2017 8 21 2 51 31 376 4.8703 178.61961 834.58382 762.51972 -8.19971 0.05559 -3.72135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39318 0.20198 -1.00000 - 2121 2017 8 21 2 51 36 246 4.8704 178.62353 834.50745 762.45479 -8.22573 0.05553 -3.72805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39283 0.20198 -1.00000 - 2122 2017 8 21 2 51 41 117 4.8704 178.62751 834.43080 762.38978 -8.24784 0.05541 -3.73367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39247 0.20198 -1.00000 - 2123 2017 8 21 2 51 45 987 4.8704 178.63154 834.35380 762.32464 -8.26573 0.05537 -3.73953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39212 0.20198 -1.00000 - 2124 2017 8 21 2 51 50 858 4.8705 178.63555 834.27650 762.25938 -8.27860 0.05547 -3.74404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39177 0.20198 -1.00000 - 2125 2017 8 21 2 51 55 728 4.8705 178.63952 834.19873 762.19401 -8.28599 0.05565 -3.74455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39141 0.20198 -1.00000 - 2126 2017 8 21 2 52 0 599 4.8705 178.64345 834.11801 762.12845 -8.28860 0.05577 -3.74677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39106 0.20198 -1.00000 - 2127 2017 8 21 2 52 5 469 4.8706 178.64739 834.03965 762.06266 -8.28833 0.05577 -3.74746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39070 0.20198 -1.00000 - 2128 2017 8 21 2 52 10 340 4.8706 178.65138 833.96086 761.99674 -8.28534 0.05568 -3.74515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39035 0.20198 -1.00000 - 2129 2017 8 21 2 52 15 211 4.8706 178.65541 833.88142 761.93052 -8.27900 0.05563 -3.74295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38999 0.20198 -1.00000 - 2130 2017 8 21 2 52 20 81 4.8707 178.65946 833.80125 761.86404 -8.26830 0.05568 -3.73968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38964 0.20198 -1.00000 - 2131 2017 8 21 2 52 24 952 4.8707 178.66347 833.72053 761.79736 -8.25246 0.05582 -3.73388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38929 0.20198 -1.00000 - 2132 2017 8 21 2 52 29 823 4.8707 178.66745 833.63937 761.73040 -8.23188 0.05596 -3.72776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38893 0.20198 -1.00000 - 2133 2017 8 21 2 52 34 693 4.8708 178.67142 833.55776 761.66314 -8.20711 0.05602 -3.72180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38858 0.20198 -1.00000 - 2134 2017 8 21 2 52 39 564 4.8708 178.67542 833.47548 761.59557 -8.17857 0.05598 -3.71373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38822 0.20198 -1.00000 - 2135 2017 8 21 2 52 44 435 4.8708 178.67947 833.39233 761.52773 -8.14655 0.05595 -3.70586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38787 0.20198 -1.00000 - 2136 2017 8 21 2 52 49 306 4.8709 178.68354 833.30902 761.45965 -8.11100 0.05598 -3.69604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38752 0.20198 -1.00000 - 2137 2017 8 21 2 52 54 177 4.8709 178.68759 833.22546 761.39132 -8.07213 0.05609 -3.68573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38716 0.20198 -1.00000 - 2138 2017 8 21 2 52 59 48 4.8709 178.69161 833.14133 761.32264 -8.03127 0.05622 -3.67558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38681 0.20198 -1.00000 - 2139 2017 8 21 2 53 3 919 4.8710 178.69561 833.05651 761.25374 -7.98998 0.05630 -3.66256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38645 0.20198 -1.00000 - 2140 2017 8 21 2 53 8 790 4.8710 178.69963 832.97053 761.18444 -7.94842 0.05631 -3.64854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38610 0.20198 -1.00000 - 2141 2017 8 21 2 53 13 661 4.8710 178.70369 832.88567 761.11477 -7.90932 0.05630 -3.63576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38574 0.20198 -1.00000 - 2142 2017 8 21 2 53 18 532 4.8711 178.70778 832.80023 761.04480 -7.88084 0.05630 -3.61958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38539 0.20198 -1.00000 - 2143 2017 8 21 2 53 23 403 4.8711 178.71186 832.71467 760.97443 -7.83618 0.05637 -3.60258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38504 0.20198 -1.00000 - 2144 2017 8 21 2 53 28 274 4.8711 178.71591 832.62660 760.90359 -7.78838 0.05647 -3.58746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38468 0.20198 -1.00000 - 2145 2017 8 21 2 53 33 145 4.8712 178.71995 832.53716 760.83227 -7.73696 0.05655 -3.57067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38433 0.20197 -1.00000 - 2146 2017 8 21 2 53 38 16 4.8712 178.72400 832.44804 760.76070 -7.73405 0.05659 -3.55326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38397 0.20197 -1.00000 - 2147 2017 8 21 2 53 42 888 4.8712 178.72808 832.35767 760.68871 -7.70250 0.05661 -3.53664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38362 0.20197 -1.00000 - 2148 2017 8 21 2 53 47 759 4.8713 178.73219 832.26973 760.61648 -7.62753 0.05660 -3.51912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38326 0.20197 -1.00000 - 2149 2017 8 21 2 53 52 630 4.8713 178.73629 832.17978 760.54376 -7.56808 0.05663 -3.50135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38291 0.20197 -1.00000 - 2150 2017 8 21 2 53 57 502 4.8713 178.74038 832.08858 760.47061 -7.50356 0.05670 -3.48236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38256 0.20197 -1.00000 - 2151 2017 8 21 2 54 2 373 4.8714 178.74445 831.99621 760.39704 -7.43914 0.05677 -3.46287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38220 0.20197 -1.00000 - 2152 2017 8 21 2 54 7 244 4.8714 178.74853 831.90183 760.32303 -7.42251 0.05684 -3.44435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38185 0.20197 -1.00000 - 2153 2017 8 21 2 54 12 116 4.8714 178.75263 831.80787 760.24859 -7.34868 0.05687 -3.42589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38149 0.20197 -1.00000 - 2154 2017 8 21 2 54 16 987 4.8715 178.75676 831.71085 760.17385 -7.27592 0.05687 -3.40607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38114 0.20197 -1.00000 - 2155 2017 8 21 2 54 21 859 4.8715 178.76088 831.61400 760.09862 -7.20712 0.05688 -3.38715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38078 0.20197 -1.00000 - 2156 2017 8 21 2 54 26 730 4.8716 178.76500 831.51838 760.02283 -7.13729 0.05693 -3.36849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38043 0.20197 -1.00000 - 2157 2017 8 21 2 54 31 602 4.8716 178.76911 831.42125 759.94670 -7.06774 0.05700 -3.34711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38008 0.20197 -1.00000 - 2158 2017 8 21 2 54 36 474 4.8716 178.77322 831.32351 759.87015 -6.99858 0.05706 -3.32679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37972 0.20197 -1.00000 - 2159 2017 8 21 2 54 41 345 4.8717 178.77735 831.22518 759.79309 -6.92942 0.05711 -3.30755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37937 0.20197 -1.00000 - 2160 2017 8 21 2 54 46 217 4.8717 178.78149 831.12569 759.71562 -6.86024 0.05713 -3.28645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37901 0.20197 -1.00000 - 2161 2017 8 21 2 54 51 89 4.8717 178.78564 831.02532 759.63772 -6.79107 0.05714 -3.26589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37866 0.20197 -1.00000 - 2162 2017 8 21 2 54 55 960 4.8718 178.78979 830.92405 759.55942 -6.72197 0.05718 -3.24510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37830 0.20197 -1.00000 - 2163 2017 8 21 2 55 0 832 4.8718 178.79393 830.82211 759.48067 -6.65305 0.05724 -3.22462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37795 0.20197 -1.00000 - 2164 2017 8 21 2 55 5 704 4.8718 178.79807 830.71922 759.40144 -6.58442 0.05730 -3.20315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37760 0.20197 -1.00000 - 2165 2017 8 21 2 55 10 576 4.8719 178.80223 830.61541 759.32184 -6.51625 0.05736 -3.18258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37724 0.20197 -1.00000 - 2166 2017 8 21 2 55 15 448 4.8719 178.80639 830.51095 759.24177 -6.44873 0.05740 -3.16234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37689 0.20197 -1.00000 - 2167 2017 8 21 2 55 20 320 4.8719 178.81057 830.40572 759.16123 -6.38202 0.05742 -3.14175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37653 0.20197 -1.00000 - 2168 2017 8 21 2 55 25 192 4.8720 178.81474 830.29964 759.08027 -6.31631 0.05745 -3.12236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37618 0.20197 -1.00000 - 2169 2017 8 21 2 55 30 64 4.8720 178.81891 830.19271 758.99887 -6.25180 0.05750 -3.10267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37582 0.20197 -1.00000 - 2170 2017 8 21 2 55 34 936 4.8720 178.82308 830.08501 758.91710 -6.18868 0.05756 -3.08479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37547 0.20197 -1.00000 - 2171 2017 8 21 2 55 39 808 4.8721 178.82726 829.97654 758.83497 -6.12711 0.05762 -3.06760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37512 0.20197 -1.00000 - 2172 2017 8 21 2 55 44 680 4.8721 178.83145 829.86736 758.75258 -6.06723 0.05766 -3.05106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37476 0.20197 -1.00000 - 2173 2017 8 21 2 55 49 552 4.8721 178.83565 829.75772 758.66991 -6.00895 0.05769 -3.03690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37441 0.20196 -1.00000 - 2174 2017 8 21 2 55 54 424 4.8722 178.83985 829.64771 758.58704 -5.95203 0.05771 -3.02337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37405 0.20196 -1.00000 - 2175 2017 8 21 2 55 59 297 4.8722 178.84405 829.53405 758.50396 -5.94217 0.05775 -3.01146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37370 0.20196 -1.00000 - 2176 2017 8 21 2 56 4 169 4.8722 178.84825 829.42031 758.42076 -5.91448 0.05781 -3.00123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37334 0.20196 -1.00000 - 2177 2017 8 21 2 56 9 41 4.8723 178.85246 829.30927 758.33743 -5.83840 0.05787 -2.98889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37299 0.20196 -1.00000 - 2178 2017 8 21 2 56 13 913 4.8723 178.85667 829.19791 758.25386 -5.78995 0.05791 -2.97952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37264 0.20196 -1.00000 - 2179 2017 8 21 2 56 18 786 4.8724 178.86089 829.08643 758.17019 -5.74422 0.05793 -2.97169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37228 0.20196 -1.00000 - 2180 2017 8 21 2 56 23 658 4.8724 178.86512 828.97451 758.08645 -5.70263 0.05795 -2.96089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37193 0.20196 -1.00000 - 2181 2017 8 21 2 56 28 531 4.8724 178.86935 828.86258 758.00254 -5.66564 0.05798 -2.95458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37157 0.20196 -1.00000 - 2182 2017 8 21 2 56 33 403 4.8725 178.87358 828.75030 757.91851 -5.63318 0.05804 -2.94812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37122 0.20196 -1.00000 - 2183 2017 8 21 2 56 38 275 4.8725 178.87781 828.63768 757.83441 -5.60501 0.05810 -2.94186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37086 0.20196 -1.00000 - 2184 2017 8 21 2 56 43 148 4.8725 178.88205 828.52511 757.75025 -5.58077 0.05816 -2.93734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37051 0.20196 -1.00000 - 2185 2017 8 21 2 56 48 21 4.8726 178.88630 828.41251 757.66608 -5.56015 0.05818 -2.93253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37016 0.20196 -1.00000 - 2186 2017 8 21 2 56 52 893 4.8726 178.89055 828.30005 757.58184 -5.54308 0.05820 -2.92954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36980 0.20196 -1.00000 - 2187 2017 8 21 2 56 57 766 4.8726 178.89481 828.18744 757.49754 -5.52937 0.05823 -2.92612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36945 0.20196 -1.00000 - 2188 2017 8 21 2 57 2 638 4.8727 178.89907 828.07477 757.41321 -5.51882 0.05828 -2.92555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36909 0.20196 -1.00000 - 2189 2017 8 21 2 57 7 511 4.8727 178.90333 827.96201 757.32881 -5.51126 0.05835 -2.92454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36874 0.20196 -1.00000 - 2190 2017 8 21 2 57 12 384 4.8727 178.90759 827.84926 757.24443 -5.50654 0.05841 -2.92529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36838 0.20196 -1.00000 - 2191 2017 8 21 2 57 17 257 4.8728 178.91186 827.73664 757.16003 -5.50448 0.05845 -2.92774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36803 0.20196 -1.00000 - 2192 2017 8 21 2 57 22 129 4.8728 178.91614 827.62411 757.07572 -5.50485 0.05847 -2.92996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36768 0.20196 -1.00000 - 2193 2017 8 21 2 57 27 2 4.8728 178.92043 827.51181 756.99146 -5.52109 0.05849 -2.93606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36732 0.20196 -1.00000 - 2194 2017 8 21 2 57 31 875 4.8729 178.92472 827.39954 756.90734 -5.55699 0.05853 -2.94272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36697 0.20196 -1.00000 - 2195 2017 8 21 2 57 36 748 4.8729 178.92900 827.28754 756.82346 -5.53449 0.05860 -2.95116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36661 0.20196 -1.00000 - 2196 2017 8 21 2 57 41 621 4.8729 178.93329 827.17560 756.73980 -5.54703 0.05868 -2.96068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36626 0.20196 -1.00000 - 2197 2017 8 21 2 57 46 494 4.8730 178.93759 827.06517 756.65637 -5.56756 0.05873 -2.97048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36590 0.20196 -1.00000 - 2198 2017 8 21 2 57 51 367 4.8730 178.94189 826.95512 756.57317 -5.63466 0.05875 -2.98227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36555 0.20196 -1.00000 - 2199 2017 8 21 2 57 56 240 4.8731 178.94620 826.84528 756.49020 -5.68032 0.05876 -2.99575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36519 0.20196 -1.00000 - 2200 2017 8 21 2 58 1 113 4.8731 178.95052 826.73587 756.40753 -5.72012 0.05878 -3.00877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36484 0.20196 -1.00000 - 2201 2017 8 21 2 58 5 986 4.8731 178.95483 826.62420 756.32502 -5.74456 0.05883 -3.02436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36449 0.20195 -1.00000 - 2202 2017 8 21 2 58 10 860 4.8732 178.95915 826.51309 756.24274 -5.80604 0.05891 -3.04014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36413 0.20195 -1.00000 - 2203 2017 8 21 2 58 15 733 4.8732 178.96347 826.40555 756.16080 -5.81657 0.05897 -3.05531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36378 0.20195 -1.00000 - 2204 2017 8 21 2 58 20 606 4.8732 178.96780 826.29855 756.07910 -5.89563 0.05900 -3.07242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36342 0.20195 -1.00000 - 2205 2017 8 21 2 58 25 479 4.8733 178.97213 826.19206 755.99763 -5.96200 0.05900 -3.09053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36307 0.20195 -1.00000 - 2206 2017 8 21 2 58 30 353 4.8733 178.97648 826.08582 755.91645 -5.96426 0.05901 -3.10723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36271 0.20195 -1.00000 - 2207 2017 8 21 2 58 35 226 4.8733 178.98082 825.97976 755.83560 -6.00691 0.05904 -3.12474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36236 0.20195 -1.00000 - 2208 2017 8 21 2 58 40 99 4.8734 178.98517 825.87500 755.75495 -6.06556 0.05910 -3.14453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36201 0.20195 -1.00000 - 2209 2017 8 21 2 58 44 973 4.8734 178.98951 825.77051 755.67459 -6.12569 0.05917 -3.16262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36165 0.20195 -1.00000 - 2210 2017 8 21 2 58 49 846 4.8734 178.99386 825.66677 755.59452 -6.18776 0.05922 -3.18240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36130 0.20195 -1.00000 - 2211 2017 8 21 2 58 54 720 4.8735 178.99822 825.56362 755.51476 -6.25087 0.05923 -3.20335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36094 0.20195 -1.00000 - 2212 2017 8 21 2 58 59 593 4.8735 179.00259 825.46103 755.43529 -6.31473 0.05923 -3.22482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36059 0.20195 -1.00000 - 2213 2017 8 21 2 59 4 467 4.8736 179.00697 825.35890 755.35621 -6.37915 0.05925 -3.24569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36023 0.20195 -1.00000 - 2214 2017 8 21 2 59 9 340 4.8736 179.01134 825.25768 755.27741 -6.44374 0.05930 -3.26723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35988 0.20195 -1.00000 - 2215 2017 8 21 2 59 14 214 4.8736 179.01571 825.15706 755.19890 -6.50826 0.05938 -3.28911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35952 0.20195 -1.00000 - 2216 2017 8 21 2 59 19 88 4.8737 179.02009 825.05692 755.12072 -6.57280 0.05944 -3.31207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35917 0.20195 -1.00000 - 2217 2017 8 21 2 59 23 961 4.8737 179.02447 824.95771 755.04290 -6.63770 0.05947 -3.33538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35882 0.20195 -1.00000 - 2218 2017 8 21 2 59 28 835 4.8737 179.02887 824.85695 754.96540 -6.75397 0.05948 -3.35900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35846 0.20195 -1.00000 - 2219 2017 8 21 2 59 33 709 4.8738 179.03327 824.75608 754.88822 -6.83985 0.05949 -3.38376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35811 0.20195 -1.00000 - 2220 2017 8 21 2 59 38 583 4.8738 179.03767 824.65931 754.81137 -6.87940 0.05952 -3.40785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35775 0.20195 -1.00000 - 2221 2017 8 21 2 59 43 456 4.8738 179.04207 824.56284 754.73491 -6.94784 0.05959 -3.43019 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35740 0.20195 -1.00000 - 2222 2017 8 21 2 59 48 330 4.8739 179.04648 824.46707 754.65871 -7.01684 0.05966 -3.45454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35704 0.20195 -1.00000 - 2223 2017 8 21 2 59 53 204 4.8739 179.05089 824.37213 754.58282 -7.08640 0.05971 -3.47947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35669 0.20195 -1.00000 - 2224 2017 8 21 2 59 58 78 4.8740 179.05530 824.27738 754.50731 -7.15684 0.05973 -3.50087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35633 0.20195 -1.00000 - 2225 2017 8 21 3 0 2 952 4.8740 179.05973 824.18332 754.43207 -7.22832 0.05974 -3.52406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35598 0.20195 -1.00000 - 2226 2017 8 21 3 0 7 826 4.8740 179.06416 824.08981 754.35707 -7.30051 0.05975 -3.54733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35563 0.20195 -1.00000 - 2227 2017 8 21 3 0 12 700 4.8741 179.06859 823.99673 754.28232 -7.37292 0.05980 -3.56843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35527 0.20195 -1.00000 - 2228 2017 8 21 3 0 17 574 4.8741 179.07302 823.90417 754.20783 -7.44483 0.05987 -3.59059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35492 0.20195 -1.00000 - 2229 2017 8 21 3 0 22 448 4.8741 179.07746 823.81218 754.13365 -7.51556 0.05993 -3.61064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35456 0.20194 -1.00000 - 2230 2017 8 21 3 0 27 323 4.8742 179.08190 823.72087 754.05964 -7.58492 0.05997 -3.63126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35421 0.20194 -1.00000 - 2231 2017 8 21 3 0 32 197 4.8742 179.08635 823.62985 753.98581 -7.65281 0.05998 -3.65036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35385 0.20194 -1.00000 - 2232 2017 8 21 3 0 37 71 4.8742 179.09080 823.53922 753.91219 -7.71915 0.05999 -3.67018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35350 0.20194 -1.00000 - 2233 2017 8 21 3 0 41 945 4.8743 179.09526 823.44892 753.83872 -7.78386 0.06002 -3.68787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35314 0.20194 -1.00000 - 2234 2017 8 21 3 0 46 820 4.8743 179.09972 823.35899 753.76542 -7.84680 0.06007 -3.70673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35279 0.20194 -1.00000 - 2235 2017 8 21 3 0 51 694 4.8743 179.10418 823.26935 753.69225 -7.91638 0.06014 -3.72398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35244 0.20194 -1.00000 - 2236 2017 8 21 3 0 56 568 4.8744 179.10865 823.17988 753.61923 -7.98797 0.06019 -3.74038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35208 0.20194 -1.00000 - 2237 2017 8 21 3 1 1 443 4.8744 179.11312 823.09071 753.54625 -8.05681 0.06022 -3.75821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35173 0.20194 -1.00000 - 2238 2017 8 21 3 1 6 317 4.8745 179.11761 823.00147 753.47338 -8.12295 0.06023 -3.77364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35137 0.20194 -1.00000 - 2239 2017 8 21 3 1 11 192 4.8745 179.12209 822.91184 753.40070 -8.23001 0.06025 -3.79030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35102 0.20194 -1.00000 - 2240 2017 8 21 3 1 16 66 4.8745 179.12658 822.82406 753.32818 -8.30786 0.06029 -3.80614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35066 0.20194 -1.00000 - 2241 2017 8 21 3 1 20 941 4.8746 179.13107 822.73443 753.25578 -8.33476 0.06035 -3.82082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35031 0.20194 -1.00000 - 2242 2017 8 21 3 1 25 815 4.8746 179.13556 822.64653 753.18345 -8.37941 0.06042 -3.83544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34995 0.20194 -1.00000 - 2243 2017 8 21 3 1 30 690 4.8746 179.14006 822.55837 753.11115 -8.42076 0.06046 -3.84979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34960 0.20194 -1.00000 - 2244 2017 8 21 3 1 35 565 4.8747 179.14457 822.46761 753.03895 -8.46001 0.06048 -3.86241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34924 0.20194 -1.00000 - 2245 2017 8 21 3 1 40 439 4.8747 179.14908 822.37696 752.96674 -8.50440 0.06050 -3.87534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34889 0.20194 -1.00000 - 2246 2017 8 21 3 1 45 314 4.8747 179.15359 822.28915 752.89458 -8.53466 0.06053 -3.88476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34854 0.20194 -1.00000 - 2247 2017 8 21 3 1 50 189 4.8748 179.15811 822.20114 752.82245 -8.56918 0.06058 -3.89379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34818 0.20194 -1.00000 - 2248 2017 8 21 3 1 55 64 4.8748 179.16263 822.11319 752.75031 -8.60115 0.06065 -3.90294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34783 0.20194 -1.00000 - 2249 2017 8 21 3 1 59 939 4.8749 179.16715 822.02499 752.67818 -8.62949 0.06070 -3.90927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34747 0.20194 -1.00000 - 2250 2017 8 21 3 2 4 814 4.8749 179.17168 821.93684 752.60595 -8.65358 0.06074 -3.91613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34712 0.20194 -1.00000 - 2251 2017 8 21 3 2 9 689 4.8749 179.17622 821.84821 752.53361 -8.67349 0.06076 -3.92109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34676 0.20194 -1.00000 - 2252 2017 8 21 3 2 14 563 4.8750 179.18076 821.75938 752.46124 -8.68933 0.06078 -3.92463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34641 0.20194 -1.00000 - 2253 2017 8 21 3 2 19 438 4.8750 179.18531 821.67047 752.38873 -8.70122 0.06083 -3.92723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34605 0.20194 -1.00000 - 2254 2017 8 21 3 2 24 314 4.8750 179.18985 821.58128 752.31607 -8.70963 0.06088 -3.92976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34570 0.20194 -1.00000 - 2255 2017 8 21 3 2 29 189 4.8751 179.19440 821.49170 752.24325 -8.71513 0.06094 -3.92950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34535 0.20194 -1.00000 - 2256 2017 8 21 3 2 34 64 4.8751 179.19896 821.40170 752.17027 -8.71781 0.06099 -3.92863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34499 0.20194 -1.00000 - 2257 2017 8 21 3 2 38 939 4.8752 179.20352 821.31158 752.09707 -8.71742 0.06102 -3.92664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34464 0.20193 -1.00000 - 2258 2017 8 21 3 2 43 814 4.8752 179.20809 821.22089 752.02369 -8.71386 0.06104 -3.92263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34428 0.20193 -1.00000 - 2259 2017 8 21 3 2 48 689 4.8752 179.21266 821.12984 751.95004 -8.70702 0.06107 -3.91928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34393 0.20193 -1.00000 - 2260 2017 8 21 3 2 53 565 4.8753 179.21723 821.03812 751.87617 -8.69672 0.06111 -3.91333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34357 0.20193 -1.00000 - 2261 2017 8 21 3 2 58 440 4.8753 179.22181 820.94602 751.80206 -8.68276 0.06116 -3.90840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34322 0.20193 -1.00000 - 2262 2017 8 21 3 3 3 315 4.8753 179.22639 820.85353 751.72768 -8.66493 0.06120 -3.90122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34286 0.20193 -1.00000 - 2263 2017 8 21 3 3 8 191 4.8754 179.23098 820.76031 751.65307 -8.64309 0.06123 -3.89350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34251 0.20193 -1.00000 - 2264 2017 8 21 3 3 13 66 4.8754 179.23557 820.66670 751.57813 -8.61777 0.06125 -3.88612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34215 0.20193 -1.00000 - 2265 2017 8 21 3 3 17 941 4.8754 179.24017 820.57012 751.50305 -8.63222 0.06127 -3.87797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34180 0.20193 -1.00000 - 2266 2017 8 21 3 3 22 817 4.8755 179.24477 820.47637 751.42770 -8.61904 0.06130 -3.86978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34145 0.20193 -1.00000 - 2267 2017 8 21 3 3 27 692 4.8755 179.24937 820.38172 751.35209 -8.56284 0.06134 -3.85881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34109 0.20193 -1.00000 - 2268 2017 8 21 3 3 32 568 4.8756 179.25398 820.28355 751.27615 -8.52332 0.06138 -3.84783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34074 0.20193 -1.00000 - 2269 2017 8 21 3 3 37 444 4.8756 179.25859 820.18593 751.19991 -8.48069 0.06142 -3.83663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34038 0.20193 -1.00000 - 2270 2017 8 21 3 3 42 319 4.8756 179.26321 820.08918 751.12342 -8.43651 0.06144 -3.82461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34003 0.20193 -1.00000 - 2271 2017 8 21 3 3 47 195 4.8757 179.26783 819.99189 751.04660 -8.39143 0.06146 -3.81068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33967 0.20193 -1.00000 - 2272 2017 8 21 3 3 52 71 4.8757 179.27246 819.89392 750.96937 -8.34584 0.06148 -3.79805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33932 0.20193 -1.00000 - 2273 2017 8 21 3 3 56 946 4.8757 179.27709 819.79501 750.89186 -8.29905 0.06152 -3.78283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33896 0.20193 -1.00000 - 2274 2017 8 21 3 4 1 822 4.8758 179.28173 819.69558 750.81405 -8.25087 0.06157 -3.76764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33861 0.20193 -1.00000 - 2275 2017 8 21 3 4 6 698 4.8758 179.28637 819.59555 750.73581 -8.20108 0.06162 -3.75114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33825 0.20193 -1.00000 - 2276 2017 8 21 3 4 11 574 4.8759 179.29101 819.49465 750.65716 -8.14952 0.06166 -3.73498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33790 0.20193 -1.00000 - 2277 2017 8 21 3 4 16 450 4.8759 179.29566 819.39295 750.57821 -8.09580 0.06169 -3.71803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33754 0.20193 -1.00000 - 2278 2017 8 21 3 4 21 326 4.8759 179.30031 819.29053 750.49891 -8.04000 0.06172 -3.69845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33719 0.20193 -1.00000 - 2279 2017 8 21 3 4 26 202 4.8760 179.30497 819.18504 750.41909 -7.98256 0.06176 -3.68210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33684 0.20193 -1.00000 - 2280 2017 8 21 3 4 31 78 4.8760 179.30963 819.08044 750.33890 -7.92483 0.06181 -3.66333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33648 0.20193 -1.00000 - 2281 2017 8 21 3 4 35 954 4.8760 179.31430 818.97596 750.25839 -7.86654 0.06187 -3.64405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33613 0.20193 -1.00000 - 2282 2017 8 21 3 4 40 830 4.8761 179.31896 818.87084 750.17747 -7.80735 0.06192 -3.62615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33577 0.20193 -1.00000 - 2283 2017 8 21 3 4 45 706 4.8761 179.32364 818.76485 750.09618 -7.74666 0.06196 -3.60757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33542 0.20193 -1.00000 - 2284 2017 8 21 3 4 50 582 4.8762 179.32832 818.65789 750.01459 -7.68412 0.06199 -3.58784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33506 0.20193 -1.00000 - 2285 2017 8 21 3 4 55 458 4.8762 179.33300 818.55033 749.93263 -7.62003 0.06202 -3.56817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33471 0.20192 -1.00000 - 2286 2017 8 21 3 5 0 334 4.8762 179.33769 818.44208 749.85032 -7.55471 0.06206 -3.54852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33435 0.20192 -1.00000 - 2287 2017 8 21 3 5 5 211 4.8763 179.34238 818.33320 749.76763 -7.48849 0.06212 -3.52915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33400 0.20192 -1.00000 - 2288 2017 8 21 3 5 10 87 4.8763 179.34707 818.22353 749.68461 -7.42161 0.06217 -3.50967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33364 0.20192 -1.00000 - 2289 2017 8 21 3 5 14 963 4.8763 179.35177 818.11347 749.60121 -7.35434 0.06221 -3.49036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33329 0.20192 -1.00000 - 2290 2017 8 21 3 5 19 840 4.8764 179.35648 818.00273 749.51747 -7.28688 0.06224 -3.47106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33294 0.20192 -1.00000 - 2291 2017 8 21 3 5 24 716 4.8764 179.36119 817.89108 749.43338 -7.21972 0.06227 -3.45230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33258 0.20192 -1.00000 - 2292 2017 8 21 3 5 29 593 4.8765 179.36590 817.77892 749.34901 -7.15387 0.06230 -3.43431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33223 0.20192 -1.00000 - 2293 2017 8 21 3 5 34 469 4.8765 179.37062 817.66626 749.26435 -7.08998 0.06234 -3.41560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33187 0.20192 -1.00000 - 2294 2017 8 21 3 5 39 346 4.8765 179.37534 817.55310 749.17936 -7.02792 0.06239 -3.39849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33152 0.20192 -1.00000 - 2295 2017 8 21 3 5 44 222 4.8766 179.38006 817.43874 749.09422 -7.00757 0.06243 -3.38155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33116 0.20192 -1.00000 - 2296 2017 8 21 3 5 49 99 4.8766 179.38479 817.32555 749.00885 -6.96460 0.06246 -3.36550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33081 0.20192 -1.00000 - 2297 2017 8 21 3 5 53 975 4.8766 179.38953 817.21000 748.92328 -6.88217 0.06248 -3.34927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33045 0.20192 -1.00000 - 2298 2017 8 21 3 5 58 852 4.8767 179.39427 817.09555 748.83747 -6.82074 0.06251 -3.33445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33010 0.20192 -1.00000 - 2299 2017 8 21 3 6 3 729 4.8767 179.39901 816.98060 748.75146 -6.76129 0.06254 -3.32108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32974 0.20192 -1.00000 - 2300 2017 8 21 3 6 8 606 4.8768 179.40376 816.86501 748.66523 -6.70382 0.06258 -3.30557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32939 0.20192 -1.00000 - 2301 2017 8 21 3 6 13 482 4.8768 179.40851 816.74658 748.57877 -6.67714 0.06263 -3.29276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32903 0.20192 -1.00000 - 2302 2017 8 21 3 6 18 359 4.8768 179.41326 816.62815 748.49213 -6.65067 0.06267 -3.28121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32868 0.20192 -1.00000 - 2303 2017 8 21 3 6 23 236 4.8769 179.41802 816.51203 748.40535 -6.57965 0.06270 -3.26867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32832 0.20192 -1.00000 - 2304 2017 8 21 3 6 28 113 4.8769 179.42279 816.39543 748.31836 -6.53218 0.06272 -3.25708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32797 0.20192 -1.00000 - 2305 2017 8 21 3 6 32 990 4.8769 179.42756 816.27860 748.23124 -6.48720 0.06275 -3.24684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32762 0.20192 -1.00000 - 2306 2017 8 21 3 6 37 867 4.8770 179.43233 816.16160 748.14404 -6.44569 0.06279 -3.23677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32726 0.20192 -1.00000 - 2307 2017 8 21 3 6 42 744 4.8770 179.43711 816.04441 748.05677 -6.40735 0.06284 -3.22676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32691 0.20192 -1.00000 - 2308 2017 8 21 3 6 47 621 4.8771 179.44189 815.92707 747.96940 -6.37196 0.06289 -3.21921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32655 0.20192 -1.00000 - 2309 2017 8 21 3 6 52 498 4.8771 179.44667 815.80959 747.88192 -6.33953 0.06292 -3.21165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32620 0.20192 -1.00000 - 2310 2017 8 21 3 6 57 375 4.8771 179.45146 815.69177 747.79434 -6.30993 0.06295 -3.20425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32584 0.20192 -1.00000 - 2311 2017 8 21 3 7 2 252 4.8772 179.45626 815.57382 747.70674 -6.28317 0.06297 -3.19830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32549 0.20192 -1.00000 - 2312 2017 8 21 3 7 7 130 4.8772 179.46106 815.45600 747.61907 -6.25918 0.06300 -3.19269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32513 0.20192 -1.00000 - 2313 2017 8 21 3 7 12 7 4.8772 179.46586 815.33816 747.53137 -6.23828 0.06305 -3.18767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32478 0.20191 -1.00000 - 2314 2017 8 21 3 7 16 884 4.8773 179.47067 815.22035 747.44363 -6.22127 0.06310 -3.18491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32442 0.20191 -1.00000 - 2315 2017 8 21 3 7 21 761 4.8773 179.47547 815.10251 747.35587 -6.20919 0.06315 -3.18117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32407 0.20191 -1.00000 - 2316 2017 8 21 3 7 26 639 4.8774 179.48029 814.98481 747.26807 -6.20068 0.06318 -3.18026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32371 0.20191 -1.00000 - 2317 2017 8 21 3 7 31 516 4.8774 179.48511 814.86718 747.18025 -6.19525 0.06320 -3.17969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32336 0.20191 -1.00000 - 2318 2017 8 21 3 7 36 394 4.8774 179.48993 814.74950 747.09255 -6.19285 0.06322 -3.17918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32300 0.20191 -1.00000 - 2319 2017 8 21 3 7 41 271 4.8775 179.49477 814.63201 747.00485 -6.21878 0.06325 -3.18164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32265 0.20191 -1.00000 - 2320 2017 8 21 3 7 46 149 4.8775 179.49960 814.51467 746.91719 -6.24260 0.06330 -3.18519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32230 0.20191 -1.00000 - 2321 2017 8 21 3 7 51 26 4.8776 179.50443 814.39701 746.82976 -6.21683 0.06335 -3.18908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32194 0.20191 -1.00000 - 2322 2017 8 21 3 7 55 904 4.8776 179.50927 814.27924 746.74255 -6.23914 0.06339 -3.19472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32159 0.20191 -1.00000 - 2323 2017 8 21 3 8 0 781 4.8776 179.51412 814.16336 746.65544 -6.26207 0.06341 -3.20182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32123 0.20191 -1.00000 - 2324 2017 8 21 3 8 5 659 4.8777 179.51897 814.04497 746.56851 -6.28600 0.06343 -3.20925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32088 0.20191 -1.00000 - 2325 2017 8 21 3 8 10 537 4.8777 179.52382 813.92939 746.48175 -6.31953 0.06344 -3.21800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32052 0.20191 -1.00000 - 2326 2017 8 21 3 8 15 414 4.8777 179.52868 813.81409 746.39524 -6.33002 0.06347 -3.22618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32017 0.20191 -1.00000 - 2327 2017 8 21 3 8 20 292 4.8778 179.53355 813.69941 746.30881 -6.35940 0.06352 -3.23616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31981 0.20191 -1.00000 - 2328 2017 8 21 3 8 25 170 4.8778 179.53841 813.58343 746.22252 -6.40307 0.06357 -3.24713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31946 0.20191 -1.00000 - 2329 2017 8 21 3 8 30 48 4.8779 179.54328 813.46938 746.13653 -6.43267 0.06360 -3.25766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31910 0.20191 -1.00000 - 2330 2017 8 21 3 8 34 926 4.8779 179.54815 813.35580 746.05073 -6.46410 0.06361 -3.26910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31875 0.20191 -1.00000 - 2331 2017 8 21 3 8 39 804 4.8779 179.55303 813.24268 745.96506 -6.49713 0.06362 -3.28152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31839 0.20191 -1.00000 - 2332 2017 8 21 3 8 44 682 4.8780 179.55792 813.12964 745.87960 -6.53176 0.06364 -3.29366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31804 0.20191 -1.00000 - 2333 2017 8 21 3 8 49 560 4.8780 179.56281 813.01696 745.79440 -6.56804 0.06368 -3.30640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31768 0.20191 -1.00000 - 2334 2017 8 21 3 8 54 438 4.8781 179.56770 812.90486 745.70939 -6.60596 0.06373 -3.31985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31733 0.20191 -1.00000 - 2335 2017 8 21 3 8 59 316 4.8781 179.57259 812.79309 745.62456 -6.64556 0.06377 -3.33295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31697 0.20191 -1.00000 - 2336 2017 8 21 3 9 4 194 4.8781 179.57749 812.68170 745.53996 -6.68685 0.06380 -3.34792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31662 0.20191 -1.00000 - 2337 2017 8 21 3 9 9 72 4.8782 179.58240 812.57065 745.45554 -6.72982 0.06381 -3.36233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31626 0.20191 -1.00000 - 2338 2017 8 21 3 9 13 950 4.8782 179.58731 812.46016 745.37134 -6.77437 0.06382 -3.37891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31591 0.20191 -1.00000 - 2339 2017 8 21 3 9 18 829 4.8782 179.59223 812.35020 745.28735 -6.82013 0.06385 -3.39537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31556 0.20191 -1.00000 - 2340 2017 8 21 3 9 23 707 4.8783 179.59715 812.24040 745.20367 -6.86727 0.06390 -3.41237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31520 0.20191 -1.00000 - 2341 2017 8 21 3 9 28 585 4.8783 179.60207 812.13091 745.12023 -6.92330 0.06396 -3.43108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31485 0.20190 -1.00000 - 2342 2017 8 21 3 9 33 464 4.8784 179.60699 812.02304 745.03721 -6.97427 0.06401 -3.44917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31449 0.20190 -1.00000 - 2343 2017 8 21 3 9 38 342 4.8784 179.61192 811.91241 744.95447 -7.07553 0.06403 -3.46926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31414 0.20190 -1.00000 - 2344 2017 8 21 3 9 43 220 4.8784 179.61686 811.80503 744.87203 -7.15118 0.06404 -3.48876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31378 0.20190 -1.00000 - 2345 2017 8 21 3 9 48 99 4.8785 179.62180 811.69821 744.78995 -7.17910 0.06406 -3.50926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31343 0.20190 -1.00000 - 2346 2017 8 21 3 9 52 977 4.8785 179.62674 811.59086 744.70819 -7.23146 0.06410 -3.52925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31307 0.20190 -1.00000 - 2347 2017 8 21 3 9 57 856 4.8786 179.63169 811.48545 744.62679 -7.28805 0.06416 -3.54956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31272 0.20190 -1.00000 - 2348 2017 8 21 3 10 2 735 4.8786 179.63664 811.38079 744.54574 -7.34884 0.06422 -3.56865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31236 0.20190 -1.00000 - 2349 2017 8 21 3 10 7 613 4.8786 179.64159 811.27656 744.46485 -7.41160 0.06426 -3.59005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31201 0.20190 -1.00000 - 2350 2017 8 21 3 10 12 492 4.8787 179.64655 811.17282 744.38427 -7.47365 0.06427 -3.60877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31165 0.20190 -1.00000 - 2351 2017 8 21 3 10 17 371 4.8787 179.65152 811.06961 744.30400 -7.53417 0.06428 -3.62836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31130 0.20190 -1.00000 - 2352 2017 8 21 3 10 22 249 4.8787 179.65649 810.96704 744.22399 -7.59407 0.06431 -3.64801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31094 0.20190 -1.00000 - 2353 2017 8 21 3 10 27 128 4.8788 179.66146 810.86486 744.14422 -7.65324 0.06437 -3.66634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31059 0.20190 -1.00000 - 2354 2017 8 21 3 10 32 7 4.8788 179.66644 810.76326 744.06467 -7.71194 0.06443 -3.68635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31023 0.20190 -1.00000 - 2355 2017 8 21 3 10 36 886 4.8789 179.67141 810.66197 743.98539 -7.77015 0.06448 -3.70403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30988 0.20190 -1.00000 - 2356 2017 8 21 3 10 41 765 4.8789 179.67640 810.56110 743.90632 -7.82800 0.06451 -3.72271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30952 0.20190 -1.00000 - 2357 2017 8 21 3 10 46 644 4.8789 179.68139 810.46060 743.82749 -7.88730 0.06451 -3.74192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30917 0.20190 -1.00000 - 2358 2017 8 21 3 10 51 523 4.8790 179.68639 810.36023 743.74895 -7.94803 0.06453 -3.75978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30881 0.20190 -1.00000 - 2359 2017 8 21 3 10 56 402 4.8790 179.69139 810.26019 743.67066 -8.02621 0.06457 -3.77824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30846 0.20190 -1.00000 - 2360 2017 8 21 3 11 1 281 4.8791 179.69639 810.16246 743.59263 -8.10482 0.06462 -3.79655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30810 0.20190 -1.00000 - 2361 2017 8 21 3 11 6 160 4.8791 179.70139 810.06241 743.51473 -8.14336 0.06468 -3.81301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30775 0.20190 -1.00000 - 2362 2017 8 21 3 11 11 39 4.8791 179.70640 809.96440 743.43707 -8.19920 0.06472 -3.82994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30740 0.20190 -1.00000 - 2363 2017 8 21 3 11 15 918 4.8792 179.71141 809.86660 743.35955 -8.25425 0.06472 -3.84612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30704 0.20190 -1.00000 - 2364 2017 8 21 3 11 20 797 4.8792 179.71643 809.76899 743.28213 -8.30866 0.06472 -3.86187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30669 0.20190 -1.00000 - 2365 2017 8 21 3 11 25 677 4.8793 179.72146 809.67120 743.20493 -8.39883 0.06474 -3.87807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30633 0.20190 -1.00000 - 2366 2017 8 21 3 11 30 556 4.8793 179.72649 809.57457 743.12792 -8.46557 0.06479 -3.89198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30598 0.20190 -1.00000 - 2367 2017 8 21 3 11 35 435 4.8793 179.73151 809.47430 743.05100 -8.49099 0.06485 -3.90777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30562 0.20190 -1.00000 - 2368 2017 8 21 3 11 40 315 4.8794 179.73654 809.37813 742.97425 -8.53345 0.06489 -3.92030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30527 0.20190 -1.00000 - 2369 2017 8 21 3 11 45 194 4.8794 179.74158 809.28183 742.89757 -8.57466 0.06490 -3.93242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30491 0.20189 -1.00000 - 2370 2017 8 21 3 11 50 73 4.8795 179.74663 809.18548 742.82093 -8.61420 0.06490 -3.94521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30456 0.20189 -1.00000 - 2371 2017 8 21 3 11 54 953 4.8795 179.75168 809.08915 742.74444 -8.65133 0.06491 -3.95564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30420 0.20189 -1.00000 - 2372 2017 8 21 3 11 59 833 4.8795 179.75674 808.99300 742.66794 -8.68622 0.06495 -3.96563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30385 0.20189 -1.00000 - 2373 2017 8 21 3 12 4 712 4.8796 179.76179 808.89654 742.59150 -8.71898 0.06501 -3.97446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30349 0.20189 -1.00000 - 2374 2017 8 21 3 12 9 592 4.8796 179.76685 808.80013 742.51506 -8.74979 0.06506 -3.98302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30314 0.20189 -1.00000 - 2375 2017 8 21 3 12 14 471 4.8796 179.77191 808.70361 742.43865 -8.77855 0.06508 -3.98895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30278 0.20189 -1.00000 - 2376 2017 8 21 3 12 19 351 4.8797 179.77698 808.60715 742.36217 -8.80487 0.06508 -3.99559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30243 0.20189 -1.00000 - 2377 2017 8 21 3 12 24 231 4.8797 179.78205 808.51061 742.28565 -8.82842 0.06508 -3.99994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30207 0.20189 -1.00000 - 2378 2017 8 21 3 12 29 111 4.8798 179.78713 808.41389 742.20910 -8.84888 0.06512 -4.00346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30172 0.20189 -1.00000 - 2379 2017 8 21 3 12 33 990 4.8798 179.79222 808.31705 742.13246 -8.86597 0.06518 -4.00755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30136 0.20189 -1.00000 - 2380 2017 8 21 3 12 38 870 4.8798 179.79730 808.21963 742.05578 -8.88009 0.06525 -4.01055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30101 0.20189 -1.00000 - 2381 2017 8 21 3 12 43 750 4.8799 179.80238 808.12288 741.97916 -8.91333 0.06528 -4.01306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30065 0.20189 -1.00000 - 2382 2017 8 21 3 12 48 630 4.8799 179.80747 808.02427 741.90258 -8.94782 0.06528 -4.01474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30030 0.20189 -1.00000 - 2383 2017 8 21 3 12 53 510 4.8800 179.81258 807.92458 741.82587 -8.93204 0.06528 -4.01602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29994 0.20189 -1.00000 - 2384 2017 8 21 3 12 58 390 4.8800 179.81768 807.82742 741.74911 -8.93177 0.06531 -4.01611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29959 0.20189 -1.00000 - 2385 2017 8 21 3 13 3 270 4.8800 179.82279 807.73013 741.67231 -8.92912 0.06537 -4.01418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29923 0.20189 -1.00000 - 2386 2017 8 21 3 13 8 150 4.8801 179.82790 807.63258 741.59535 -8.92369 0.06544 -4.01195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29888 0.20189 -1.00000 - 2387 2017 8 21 3 13 13 30 4.8801 179.83301 807.53502 741.51820 -8.91450 0.06549 -4.00852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29852 0.20189 -1.00000 - 2388 2017 8 21 3 13 17 910 4.8802 179.83812 807.43668 741.44088 -8.90176 0.06550 -4.00345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29817 0.20189 -1.00000 - 2389 2017 8 21 3 13 22 791 4.8802 179.84325 807.33799 741.36343 -8.88575 0.06549 -3.99800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29781 0.20189 -1.00000 - 2390 2017 8 21 3 13 27 671 4.8802 179.84838 807.23910 741.28581 -8.86672 0.06550 -3.99084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29746 0.20189 -1.00000 - 2391 2017 8 21 3 13 32 551 4.8803 179.85351 807.13985 741.20793 -8.84491 0.06555 -3.98437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29710 0.20189 -1.00000 - 2392 2017 8 21 3 13 37 431 4.8803 179.85865 807.03999 741.12984 -8.82023 0.06563 -3.97569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29675 0.20189 -1.00000 - 2393 2017 8 21 3 13 42 312 4.8804 179.86378 806.93779 741.05159 -8.79300 0.06568 -3.96648 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29639 0.20189 -1.00000 - 2394 2017 8 21 3 13 47 192 4.8804 179.86892 806.83523 740.97306 -8.76447 0.06570 -3.95766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29604 0.20189 -1.00000 - 2395 2017 8 21 3 13 52 73 4.8804 179.87407 806.73450 740.89434 -8.73617 0.06569 -3.94747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29568 0.20189 -1.00000 - 2396 2017 8 21 3 13 56 953 4.8805 179.87923 806.63325 740.81544 -8.70808 0.06569 -3.93625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29533 0.20189 -1.00000 - 2397 2017 8 21 3 14 1 834 4.8805 179.88438 806.53157 740.73631 -8.67935 0.06573 -3.92507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29497 0.20188 -1.00000 - 2398 2017 8 21 3 14 6 714 4.8806 179.88954 806.42963 740.65689 -8.64832 0.06580 -3.91280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29462 0.20188 -1.00000 - 2399 2017 8 21 3 14 11 595 4.8806 179.89470 806.32689 740.57720 -8.61440 0.06586 -3.89887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29426 0.20188 -1.00000 - 2400 2017 8 21 3 14 16 475 4.8806 179.89987 806.22359 740.49727 -8.57712 0.06589 -3.88526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29391 0.20188 -1.00000 - 2401 2017 8 21 3 14 21 356 4.8807 179.90504 806.11983 740.41705 -8.53634 0.06589 -3.87003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29355 0.20188 -1.00000 - 2402 2017 8 21 3 14 26 237 4.8807 179.91022 806.01550 740.33649 -8.49205 0.06589 -3.85474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29320 0.20188 -1.00000 - 2403 2017 8 21 3 14 31 117 4.8808 179.91540 805.91043 740.25562 -8.44435 0.06592 -3.83837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29285 0.20188 -1.00000 - 2404 2017 8 21 3 14 35 998 4.8808 179.92059 805.80467 740.17443 -8.39355 0.06598 -3.82085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29249 0.20188 -1.00000 - 2405 2017 8 21 3 14 40 879 4.8808 179.92577 805.69843 740.09288 -8.34002 0.06604 -3.80416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29214 0.20188 -1.00000 - 2406 2017 8 21 3 14 45 760 4.8809 179.93096 805.59149 740.01101 -8.28415 0.06609 -3.78594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29178 0.20188 -1.00000 - 2407 2017 8 21 3 14 50 641 4.8809 179.93616 805.48391 739.92883 -8.22634 0.06610 -3.76871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29143 0.20188 -1.00000 - 2408 2017 8 21 3 14 55 522 4.8810 179.94136 805.37585 739.84630 -8.16677 0.06610 -3.75178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29107 0.20188 -1.00000 - 2409 2017 8 21 3 15 0 403 4.8810 179.94656 805.26699 739.76349 -8.10571 0.06612 -3.73380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29072 0.20188 -1.00000 - 2410 2017 8 21 3 15 5 284 4.8810 179.95178 805.15505 739.68031 -8.04400 0.06617 -3.71664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29036 0.20188 -1.00000 - 2411 2017 8 21 3 15 10 165 4.8811 179.95699 805.04297 739.59692 -7.98401 0.06623 -3.69852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29001 0.20188 -1.00000 - 2412 2017 8 21 3 15 15 46 4.8811 179.96220 804.93281 739.51322 -7.92374 0.06628 -3.68113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28965 0.20188 -1.00000 - 2413 2017 8 21 3 15 19 927 4.8812 179.96742 804.82216 739.42920 -7.86565 0.06630 -3.66341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28930 0.20188 -1.00000 - 2414 2017 8 21 3 15 24 808 4.8812 179.97264 804.71061 739.34494 -7.80886 0.06630 -3.64538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28894 0.20188 -1.00000 - 2415 2017 8 21 3 15 29 690 4.8812 179.97787 804.59879 739.26043 -7.75268 0.06632 -3.62710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28859 0.20188 -1.00000 - 2416 2017 8 21 3 15 34 571 4.8813 179.98311 804.48657 739.17558 -7.69686 0.06635 -3.60889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28823 0.20188 -1.00000 - 2417 2017 8 21 3 15 39 452 4.8813 179.98834 804.37346 739.09043 -7.64118 0.06640 -3.59037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28788 0.20188 -1.00000 - 2418 2017 8 21 3 15 44 334 4.8814 179.99358 804.25974 739.00503 -7.58551 0.06644 -3.57268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28752 0.20188 -1.00000 - 2419 2017 8 21 3 15 49 215 4.8814 179.99882 804.14542 738.91935 -7.52964 0.06647 -3.55395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28717 0.20188 -1.00000 - 2420 2017 8 21 3 15 54 96 4.8814 180.00407 804.03062 738.83336 -7.47344 0.06648 -3.53646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28681 0.20188 -1.00000 - 2421 2017 8 21 3 15 58 978 4.8815 180.00933 803.91521 738.74709 -7.41693 0.06649 -3.51814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28646 0.20188 -1.00000 - 2422 2017 8 21 3 16 3 859 4.8815 180.01459 803.79920 738.66057 -7.36019 0.06651 -3.50033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28610 0.20188 -1.00000 - 2423 2017 8 21 3 16 8 741 4.8816 180.01985 803.68261 738.57370 -7.30341 0.06655 -3.48387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28575 0.20188 -1.00000 - 2424 2017 8 21 3 16 13 623 4.8816 180.02511 803.56545 738.48668 -7.24707 0.06659 -3.46773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28539 0.20187 -1.00000 - 2425 2017 8 21 3 16 18 504 4.8816 180.03038 803.44808 738.39944 -7.19151 0.06662 -3.45263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28504 0.20187 -1.00000 - 2426 2017 8 21 3 16 23 386 4.8817 180.03565 803.32819 738.31204 -7.14351 0.06664 -3.43758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28468 0.20187 -1.00000 - 2427 2017 8 21 3 16 28 268 4.8817 180.04092 803.20827 738.22448 -7.10814 0.06665 -3.42388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28433 0.20187 -1.00000 - 2428 2017 8 21 3 16 33 149 4.8818 180.04621 803.09024 738.13672 -7.03552 0.06667 -3.41040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28397 0.20187 -1.00000 - 2429 2017 8 21 3 16 38 31 4.8818 180.05149 802.97172 738.04885 -6.98954 0.06671 -3.39714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28362 0.20187 -1.00000 - 2430 2017 8 21 3 16 42 913 4.8818 180.05678 802.85307 737.96090 -6.94629 0.06675 -3.38444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28326 0.20187 -1.00000 - 2431 2017 8 21 3 16 47 795 4.8819 180.06207 802.73452 737.87281 -6.90480 0.06678 -3.37268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28291 0.20187 -1.00000 - 2432 2017 8 21 3 16 52 677 4.8819 180.06737 802.61543 737.78457 -6.86475 0.06681 -3.36054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28255 0.20187 -1.00000 - 2433 2017 8 21 3 16 57 559 4.8820 180.07266 802.49591 737.69628 -6.82590 0.06683 -3.34977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28220 0.20187 -1.00000 - 2434 2017 8 21 3 17 2 441 4.8820 180.07797 802.37631 737.60789 -6.78815 0.06685 -3.33938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28184 0.20187 -1.00000 - 2435 2017 8 21 3 17 7 323 4.8820 180.08328 802.25644 737.51936 -6.75139 0.06688 -3.32963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28149 0.20187 -1.00000 - 2436 2017 8 21 3 17 12 205 4.8821 180.08859 802.13632 737.43075 -6.71566 0.06692 -3.32055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28113 0.20187 -1.00000 - 2437 2017 8 21 3 17 17 87 4.8821 180.09391 802.01594 737.34209 -6.68114 0.06696 -3.31156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28078 0.20187 -1.00000 - 2438 2017 8 21 3 17 21 969 4.8822 180.09923 801.89555 737.25335 -6.64811 0.06699 -3.30428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28042 0.20187 -1.00000 - 2439 2017 8 21 3 17 26 851 4.8822 180.10455 801.77503 737.16458 -6.61689 0.06702 -3.29693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28007 0.20187 -1.00000 - 2440 2017 8 21 3 17 31 734 4.8822 180.10988 801.65455 737.07578 -6.58782 0.06704 -3.29163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27971 0.20187 -1.00000 - 2441 2017 8 21 3 17 36 616 4.8823 180.11521 801.53405 736.98700 -6.56110 0.06706 -3.28719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27936 0.20187 -1.00000 - 2442 2017 8 21 3 17 41 498 4.8823 180.12055 801.41149 736.89825 -6.57652 0.06710 -3.28492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27900 0.20187 -1.00000 - 2443 2017 8 21 3 17 46 381 4.8824 180.12589 801.28923 736.80953 -6.57494 0.06713 -3.28316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27865 0.20187 -1.00000 - 2444 2017 8 21 3 17 51 263 4.8824 180.13123 801.16918 736.72099 -6.53564 0.06717 -3.28162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27829 0.20187 -1.00000 - 2445 2017 8 21 3 17 56 145 4.8824 180.13657 801.04939 736.63255 -6.52002 0.06719 -3.28193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27793 0.20187 -1.00000 - 2446 2017 8 21 3 18 1 28 4.8825 180.14192 800.92993 736.54421 -6.51024 0.06721 -3.28259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27758 0.20187 -1.00000 - 2447 2017 8 21 3 18 5 910 4.8825 180.14728 800.81044 736.45596 -6.50511 0.06724 -3.28348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27722 0.20187 -1.00000 - 2448 2017 8 21 3 18 10 793 4.8826 180.15264 800.68962 736.36787 -6.52052 0.06726 -3.28623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27687 0.20187 -1.00000 - 2449 2017 8 21 3 18 15 676 4.8826 180.15801 800.57010 736.27997 -6.51829 0.06730 -3.28902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27651 0.20187 -1.00000 - 2450 2017 8 21 3 18 20 558 4.8826 180.16337 800.45179 736.19219 -6.52303 0.06733 -3.29172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27616 0.20187 -1.00000 - 2451 2017 8 21 3 18 25 441 4.8827 180.16874 800.33382 736.10451 -6.52759 0.06736 -3.29737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27580 0.20187 -1.00000 - 2452 2017 8 21 3 18 30 324 4.8827 180.17411 800.21606 736.01705 -6.53621 0.06738 -3.30271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27545 0.20186 -1.00000 - 2453 2017 8 21 3 18 35 206 4.8828 180.17949 800.09871 735.92982 -6.54905 0.06741 -3.30772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27509 0.20186 -1.00000 - 2454 2017 8 21 3 18 40 89 4.8828 180.18488 799.97961 735.84270 -6.60071 0.06743 -3.31564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27474 0.20186 -1.00000 - 2455 2017 8 21 3 18 44 972 4.8829 180.19026 799.86106 735.75582 -6.63435 0.06746 -3.32340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27438 0.20186 -1.00000 - 2456 2017 8 21 3 18 49 855 4.8829 180.19565 799.74522 735.66921 -6.63268 0.06749 -3.33102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27403 0.20186 -1.00000 - 2457 2017 8 21 3 18 54 738 4.8829 180.20105 799.62999 735.58275 -6.65127 0.06752 -3.34110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27367 0.20186 -1.00000 - 2458 2017 8 21 3 18 59 621 4.8830 180.20644 799.51501 735.49655 -6.67317 0.06755 -3.35088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27332 0.20186 -1.00000 - 2459 2017 8 21 3 19 4 504 4.8830 180.21184 799.40035 735.41065 -6.69863 0.06758 -3.36107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27296 0.20186 -1.00000 - 2460 2017 8 21 3 19 9 387 4.8831 180.21725 799.28621 735.32494 -6.72738 0.06759 -3.37289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27261 0.20186 -1.00000 - 2461 2017 8 21 3 19 14 270 4.8831 180.22266 799.17243 735.23946 -6.75895 0.06762 -3.38495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27225 0.20186 -1.00000 - 2462 2017 8 21 3 19 19 153 4.8831 180.22808 799.05935 735.15429 -6.79353 0.06764 -3.39745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27190 0.20186 -1.00000 - 2463 2017 8 21 3 19 24 36 4.8832 180.23349 798.94630 735.06946 -6.83496 0.06768 -3.41067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27154 0.20186 -1.00000 - 2464 2017 8 21 3 19 28 920 4.8832 180.23891 798.83219 734.98489 -6.91366 0.06771 -3.42508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27119 0.20186 -1.00000 - 2465 2017 8 21 3 19 33 803 4.8833 180.24433 798.72275 734.90062 -6.93466 0.06773 -3.43888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27083 0.20186 -1.00000 - 2466 2017 8 21 3 19 38 686 4.8833 180.24976 798.61147 734.81664 -6.97678 0.06775 -3.45409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27048 0.20186 -1.00000 - 2467 2017 8 21 3 19 43 570 4.8833 180.25520 798.50193 734.73293 -7.02145 0.06776 -3.46937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27012 0.20186 -1.00000 - 2468 2017 8 21 3 19 48 453 4.8834 180.26064 798.39191 734.64951 -7.07067 0.06778 -3.48520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26977 0.20186 -1.00000 - 2469 2017 8 21 3 19 53 336 4.8834 180.26608 798.28315 734.56645 -7.12457 0.06781 -3.50187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26941 0.20186 -1.00000 - 2470 2017 8 21 3 19 58 220 4.8835 180.27152 798.17473 734.48372 -7.17891 0.06784 -3.51930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26906 0.20186 -1.00000 - 2471 2017 8 21 3 20 3 103 4.8835 180.27696 798.06590 734.40132 -7.26901 0.06787 -3.53656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26870 0.20186 -1.00000 - 2472 2017 8 21 3 20 7 987 4.8836 180.28241 797.95800 734.31916 -7.33846 0.06789 -3.55307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26835 0.20186 -1.00000 - 2473 2017 8 21 3 20 12 870 4.8836 180.28787 797.85140 734.23729 -7.36995 0.06790 -3.57075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26799 0.20186 -1.00000 - 2474 2017 8 21 3 20 17 754 4.8836 180.29333 797.74568 734.15566 -7.42177 0.06791 -3.58893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26764 0.20186 -1.00000 - 2475 2017 8 21 3 20 22 638 4.8837 180.29880 797.64028 734.07438 -7.47621 0.06793 -3.60728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26728 0.20186 -1.00000 - 2476 2017 8 21 3 20 27 521 4.8837 180.30426 797.53574 733.99343 -7.53253 0.06796 -3.62444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26693 0.20186 -1.00000 - 2477 2017 8 21 3 20 32 405 4.8838 180.30973 797.43184 733.91285 -7.62563 0.06800 -3.64275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26657 0.20186 -1.00000 - 2478 2017 8 21 3 20 37 289 4.8838 180.31520 797.32558 733.83248 -7.69596 0.06802 -3.66131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26622 0.20186 -1.00000 - 2479 2017 8 21 3 20 42 173 4.8838 180.32068 797.22333 733.75242 -7.73066 0.06803 -3.67915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26586 0.20186 -1.00000 - 2480 2017 8 21 3 20 47 57 4.8839 180.32617 797.12118 733.67269 -7.78448 0.06803 -3.69664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26551 0.20185 -1.00000 - 2481 2017 8 21 3 20 51 941 4.8839 180.33166 797.01979 733.59324 -7.84629 0.06805 -3.71402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26515 0.20185 -1.00000 - 2482 2017 8 21 3 20 56 825 4.8840 180.33715 796.91966 733.51405 -7.91858 0.06809 -3.73149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26480 0.20185 -1.00000 - 2483 2017 8 21 3 21 1 709 4.8840 180.34264 796.81898 733.43508 -7.95791 0.06813 -3.74727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26444 0.20185 -1.00000 - 2484 2017 8 21 3 21 6 593 4.8840 180.34813 796.71853 733.35625 -8.01263 0.06817 -3.76388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26409 0.20185 -1.00000 - 2485 2017 8 21 3 21 11 477 4.8841 180.35363 796.61799 733.27757 -8.06746 0.06818 -3.78084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26373 0.20185 -1.00000 - 2486 2017 8 21 3 21 16 361 4.8841 180.35914 796.51648 733.19916 -8.15409 0.06819 -3.79765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26337 0.20185 -1.00000 - 2487 2017 8 21 3 21 21 245 4.8842 180.36465 796.41605 733.12103 -8.22218 0.06820 -3.81378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26302 0.20185 -1.00000 - 2488 2017 8 21 3 21 26 129 4.8842 180.37017 796.31571 733.04310 -8.27142 0.06823 -3.82842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26266 0.20185 -1.00000 - 2489 2017 8 21 3 21 31 14 4.8843 180.37568 796.21695 732.96530 -8.30822 0.06828 -3.84313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26231 0.20185 -1.00000 - 2490 2017 8 21 3 21 35 898 4.8843 180.38119 796.11847 732.88767 -8.35771 0.06833 -3.85752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26195 0.20185 -1.00000 - 2491 2017 8 21 3 21 40 782 4.8843 180.38671 796.02010 732.81027 -8.43733 0.06836 -3.87170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26160 0.20185 -1.00000 - 2492 2017 8 21 3 21 45 667 4.8844 180.39224 795.92230 732.73304 -8.49841 0.06836 -3.88481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26124 0.20185 -1.00000 - 2493 2017 8 21 3 21 50 551 4.8844 180.39778 795.82390 732.65598 -8.55425 0.06837 -3.89802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26089 0.20185 -1.00000 - 2494 2017 8 21 3 21 55 435 4.8845 180.40332 795.72534 732.57907 -8.57578 0.06839 -3.90951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26053 0.20185 -1.00000 - 2495 2017 8 21 3 22 0 320 4.8845 180.40886 795.62778 732.50227 -8.60951 0.06844 -3.92059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26018 0.20185 -1.00000 - 2496 2017 8 21 3 22 5 204 4.8845 180.41439 795.53073 732.42544 -8.64065 0.06849 -3.93150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25982 0.20185 -1.00000 - 2497 2017 8 21 3 22 10 89 4.8846 180.41993 795.43336 732.34881 -8.70049 0.06853 -3.94138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25947 0.20185 -1.00000 - 2498 2017 8 21 3 22 14 974 4.8846 180.42548 795.33654 732.27229 -8.74111 0.06853 -3.95002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25911 0.20185 -1.00000 - 2499 2017 8 21 3 22 19 858 4.8847 180.43105 795.23940 732.19585 -8.77608 0.06853 -3.95869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25876 0.20185 -1.00000 - 2500 2017 8 21 3 22 24 743 4.8847 180.43661 795.14010 732.11944 -8.77704 0.06855 -3.96659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25840 0.20185 -1.00000 - 2501 2017 8 21 3 22 29 628 4.8847 180.44217 795.04391 732.04310 -8.79106 0.06860 -3.97309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25805 0.20185 -1.00000 - 2502 2017 8 21 3 22 34 513 4.8848 180.44773 794.94747 731.96682 -8.83354 0.06865 -3.97876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25769 0.20185 -1.00000 - 2503 2017 8 21 3 22 39 397 4.8848 180.45329 794.85111 731.89053 -8.85780 0.06869 -3.98357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25734 0.20185 -1.00000 - 2504 2017 8 21 3 22 44 282 4.8849 180.45886 794.75459 731.81426 -8.87802 0.06870 -3.98784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25698 0.20185 -1.00000 - 2505 2017 8 21 3 22 49 167 4.8849 180.46444 794.65766 731.73798 -8.86296 0.06869 -3.99058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25663 0.20185 -1.00000 - 2506 2017 8 21 3 22 54 52 4.8850 180.47004 794.56080 731.66169 -8.86077 0.06870 -3.99244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25627 0.20185 -1.00000 - 2507 2017 8 21 3 22 58 937 4.8850 180.47562 794.46360 731.58529 -8.85647 0.06875 -3.99441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25592 0.20185 -1.00000 - 2508 2017 8 21 3 23 3 822 4.8850 180.48120 794.36594 731.50893 -8.88214 0.06881 -3.99485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25556 0.20184 -1.00000 - 2509 2017 8 21 3 23 8 707 4.8851 180.48677 794.26640 731.43250 -8.88851 0.06886 -3.99494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25520 0.20184 -1.00000 - 2510 2017 8 21 3 23 13 592 4.8851 180.49237 794.16978 731.35603 -8.89219 0.06886 -3.99435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25485 0.20184 -1.00000 - 2511 2017 8 21 3 23 18 478 4.8852 180.49798 794.07112 731.27947 -8.86339 0.06885 -3.99173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25449 0.20184 -1.00000 - 2512 2017 8 21 3 23 23 363 4.8852 180.50360 793.97366 731.20281 -8.84802 0.06885 -3.98890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25414 0.20184 -1.00000 - 2513 2017 8 21 3 23 28 248 4.8852 180.50921 793.87581 731.12609 -8.86257 0.06889 -3.98515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25378 0.20184 -1.00000 - 2514 2017 8 21 3 23 33 133 4.8853 180.51480 793.77785 731.04923 -8.85898 0.06896 -3.98028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25343 0.20184 -1.00000 - 2515 2017 8 21 3 23 38 19 4.8853 180.52039 793.67923 730.97227 -8.85093 0.06901 -3.97591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25307 0.20184 -1.00000 - 2516 2017 8 21 3 23 42 904 4.8854 180.52600 793.57789 730.89520 -8.80988 0.06901 -3.97014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25272 0.20184 -1.00000 - 2517 2017 8 21 3 23 47 789 4.8854 180.53164 793.47967 730.81804 -8.78274 0.06897 -3.96304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25236 0.20184 -1.00000 - 2518 2017 8 21 3 23 52 675 4.8855 180.53729 793.38095 730.74075 -8.78458 0.06895 -3.95559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25201 0.20184 -1.00000 - 2519 2017 8 21 3 23 57 560 4.8855 180.54293 793.28193 730.66329 -8.76852 0.06898 -3.94734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25165 0.20184 -1.00000 - 2520 2017 8 21 3 24 2 446 4.8855 180.54853 793.18370 730.58576 -8.74818 0.06907 -3.93849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25130 0.20184 -1.00000 - 2521 2017 8 21 3 24 7 331 4.8856 180.55413 793.08058 730.50797 -8.69411 0.06915 -3.92871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25094 0.20184 -1.00000 - 2522 2017 8 21 3 24 12 217 4.8856 180.55976 792.97884 730.42996 -8.65487 0.06916 -3.91855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25059 0.20184 -1.00000 - 2523 2017 8 21 3 24 17 103 4.8857 180.56542 792.87864 730.35185 -8.64181 0.06910 -3.90760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25023 0.20184 -1.00000 - 2524 2017 8 21 3 24 21 988 4.8857 180.57110 792.77808 730.27353 -8.61973 0.06904 -3.89623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24988 0.20184 -1.00000 - 2525 2017 8 21 3 24 26 874 4.8857 180.57677 792.67751 730.19504 -8.59289 0.06906 -3.88418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24952 0.20184 -1.00000 - 2526 2017 8 21 3 24 31 760 4.8858 180.58240 792.57662 730.11636 -8.56264 0.06918 -3.87130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24917 0.20184 -1.00000 - 2527 2017 8 21 3 24 36 646 4.8858 180.58802 792.47259 730.03747 -8.49808 0.06929 -3.85766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24881 0.20184 -1.00000 - 2528 2017 8 21 3 24 41 532 4.8859 180.59365 792.36847 729.95832 -8.44881 0.06931 -3.84372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24845 0.20184 -1.00000 - 2529 2017 8 21 3 24 46 418 4.8859 180.59933 792.26591 729.87898 -8.42966 0.06924 -3.82953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24810 0.20184 -1.00000 - 2530 2017 8 21 3 24 51 304 4.8860 180.60504 792.16291 729.79941 -8.39364 0.06916 -3.81486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24774 0.20184 -1.00000 - 2531 2017 8 21 3 24 56 190 4.8860 180.61074 792.05987 729.71971 -8.35519 0.06916 -3.79875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24739 0.20184 -1.00000 - 2532 2017 8 21 3 25 1 76 4.8860 180.61640 791.95556 729.63976 -8.31288 0.06929 -3.78347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24703 0.20184 -1.00000 - 2533 2017 8 21 3 25 5 962 4.8861 180.62204 791.84840 729.55948 -8.23869 0.06944 -3.76780 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24668 0.20184 -1.00000 - 2534 2017 8 21 3 25 10 848 4.8861 180.62768 791.74366 729.47896 -8.17938 0.06948 -3.75136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24632 0.20184 -1.00000 - 2535 2017 8 21 3 25 15 734 4.8862 180.63337 791.63799 729.39824 -8.14992 0.06942 -3.73490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24597 0.20184 -1.00000 - 2536 2017 8 21 3 25 20 620 4.8862 180.63910 791.53205 729.31728 -8.10418 0.06932 -3.71817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24561 0.20183 -1.00000 - 2537 2017 8 21 3 25 25 506 4.8862 180.64483 791.42424 729.23613 -8.05637 0.06930 -3.70157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24526 0.20183 -1.00000 - 2538 2017 8 21 3 25 30 393 4.8863 180.65053 791.31827 729.15482 -8.00746 0.06941 -3.68433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24490 0.20183 -1.00000 - 2539 2017 8 21 3 25 35 279 4.8863 180.65620 791.20947 729.07322 -7.92747 0.06958 -3.66613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24455 0.20183 -1.00000 - 2540 2017 8 21 3 25 40 165 4.8864 180.66185 791.10209 728.99134 -7.86186 0.06964 -3.64862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24419 0.20183 -1.00000 - 2541 2017 8 21 3 25 45 52 4.8864 180.66753 790.99359 728.90925 -7.82737 0.06960 -3.63140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24384 0.20183 -1.00000 - 2542 2017 8 21 3 25 49 938 4.8865 180.67327 790.88430 728.82700 -7.77700 0.06951 -3.61384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24348 0.20183 -1.00000 - 2543 2017 8 21 3 25 54 825 4.8865 180.67904 790.77476 728.74454 -7.72546 0.06946 -3.59645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24312 0.20183 -1.00000 - 2544 2017 8 21 3 25 59 711 4.8865 180.68478 790.66375 728.66192 -7.67338 0.06950 -3.58014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24277 0.20183 -1.00000 - 2545 2017 8 21 3 26 4 598 4.8866 180.69047 790.55289 728.57908 -7.59188 0.06966 -3.56261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24241 0.20183 -1.00000 - 2546 2017 8 21 3 26 9 485 4.8866 180.69615 790.44371 728.49603 -7.54708 0.06976 -3.54544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24206 0.20183 -1.00000 - 2547 2017 8 21 3 26 14 371 4.8867 180.70183 790.33345 728.41277 -7.50572 0.06976 -3.52911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24170 0.20183 -1.00000 - 2548 2017 8 21 3 26 19 258 4.8867 180.70757 790.22310 728.32939 -7.45688 0.06970 -3.51189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24135 0.20183 -1.00000 - 2549 2017 8 21 3 26 24 145 4.8868 180.71337 790.11182 728.24581 -7.40568 0.06962 -3.49528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24099 0.20183 -1.00000 - 2550 2017 8 21 3 26 29 32 4.8868 180.71915 789.99875 728.16206 -7.32596 0.06959 -3.47927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24064 0.20183 -1.00000 - 2551 2017 8 21 3 26 33 918 4.8868 180.72487 789.88654 728.07812 -7.26247 0.06971 -3.46344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24028 0.20183 -1.00000 - 2552 2017 8 21 3 26 38 805 4.8869 180.73057 789.77437 727.99406 -7.22896 0.06985 -3.44805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23993 0.20183 -1.00000 - 2553 2017 8 21 3 26 43 692 4.8869 180.73626 789.66206 727.90981 -7.18126 0.06990 -3.43288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23957 0.20183 -1.00000 - 2554 2017 8 21 3 26 48 579 4.8870 180.74201 789.54978 727.82546 -7.13384 0.06988 -3.41837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23922 0.20183 -1.00000 - 2555 2017 8 21 3 26 53 466 4.8870 180.74782 789.43648 727.74101 -7.08484 0.06980 -3.40413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23886 0.20183 -1.00000 - 2556 2017 8 21 3 26 58 353 4.8871 180.75363 789.32164 727.65644 -7.02369 0.06972 -3.39065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23850 0.20183 -1.00000 - 2557 2017 8 21 3 27 3 240 4.8871 180.75939 789.20599 727.57167 -6.96541 0.06979 -3.37794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23815 0.20183 -1.00000 - 2558 2017 8 21 3 27 8 128 4.8871 180.76512 789.09397 727.48684 -6.90162 0.06994 -3.36538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23779 0.20183 -1.00000 - 2559 2017 8 21 3 27 13 15 4.8872 180.77083 788.98031 727.40191 -6.87804 0.07003 -3.35312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23744 0.20183 -1.00000 - 2560 2017 8 21 3 27 17 902 4.8872 180.77658 788.86685 727.31688 -6.83920 0.07005 -3.34157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23708 0.20183 -1.00000 - 2561 2017 8 21 3 27 22 789 4.8873 180.78239 788.75306 727.23182 -6.80057 0.06999 -3.33157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23673 0.20183 -1.00000 - 2562 2017 8 21 3 27 27 677 4.8873 180.78824 788.63657 727.14671 -6.75517 0.06988 -3.32166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23637 0.20183 -1.00000 - 2563 2017 8 21 3 27 32 564 4.8873 180.79404 788.52251 727.06153 -6.69646 0.06988 -3.31202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23602 0.20183 -1.00000 - 2564 2017 8 21 3 27 37 451 4.8874 180.79980 788.40820 726.97632 -6.67400 0.07002 -3.30394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23566 0.20182 -1.00000 - 2565 2017 8 21 3 27 42 339 4.8874 180.80553 788.29393 726.89111 -6.64725 0.07016 -3.29589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23531 0.20182 -1.00000 - 2566 2017 8 21 3 27 47 226 4.8875 180.81128 788.17800 726.80592 -6.62704 0.07022 -3.28885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23495 0.20182 -1.00000 - 2567 2017 8 21 3 27 52 114 4.8875 180.81709 788.06450 726.72074 -6.61316 0.07019 -3.28321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23459 0.20182 -1.00000 - 2568 2017 8 21 3 27 57 1 4.8876 180.82296 787.94962 726.63564 -6.58066 0.07008 -3.27846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23424 0.20182 -1.00000 - 2569 2017 8 21 3 28 1 889 4.8876 180.82880 787.83454 726.55054 -6.54542 0.07001 -3.27346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23388 0.20182 -1.00000 - 2570 2017 8 21 3 28 6 777 4.8876 180.83460 787.72116 726.46547 -6.52732 0.07011 -3.26986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23353 0.20182 -1.00000 - 2571 2017 8 21 3 28 11 664 4.8877 180.84038 787.60760 726.38045 -6.51983 0.07026 -3.26738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23317 0.20182 -1.00000 - 2572 2017 8 21 3 28 16 552 4.8877 180.84614 787.49322 726.29555 -6.51920 0.07035 -3.26538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23282 0.20182 -1.00000 - 2573 2017 8 21 3 28 21 440 4.8878 180.85193 787.37831 726.21075 -6.52021 0.07036 -3.26441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23246 0.20182 -1.00000 - 2574 2017 8 21 3 28 26 328 4.8878 180.85779 787.26296 726.12602 -6.52171 0.07029 -3.26354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23211 0.20182 -1.00000 - 2575 2017 8 21 3 28 31 215 4.8879 180.86367 787.15044 726.04141 -6.49243 0.07018 -3.26438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23175 0.20182 -1.00000 - 2576 2017 8 21 3 28 36 103 4.8879 180.86952 787.03799 725.95694 -6.48655 0.07018 -3.26502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23140 0.20182 -1.00000 - 2577 2017 8 21 3 28 40 991 4.8879 180.87533 786.92602 725.87262 -6.49095 0.07030 -3.26632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23104 0.20182 -1.00000 - 2578 2017 8 21 3 28 45 879 4.8880 180.88111 786.81461 725.78844 -6.51665 0.07043 -3.26983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23068 0.20182 -1.00000 - 2579 2017 8 21 3 28 50 767 4.8880 180.88690 786.70032 725.70447 -6.53240 0.07050 -3.27373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23033 0.20182 -1.00000 - 2580 2017 8 21 3 28 55 655 4.8881 180.89275 786.58853 725.62063 -6.51530 0.07047 -3.27732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22997 0.20182 -1.00000 - 2581 2017 8 21 3 29 0 544 4.8881 180.89866 786.47730 725.53696 -6.52013 0.07034 -3.28292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22962 0.20182 -1.00000 - 2582 2017 8 21 3 29 5 432 4.8882 180.90455 786.36655 725.45342 -6.53029 0.07026 -3.28922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22926 0.20182 -1.00000 - 2583 2017 8 21 3 29 10 320 4.8882 180.91040 786.25511 725.37013 -6.57874 0.07032 -3.29584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22891 0.20182 -1.00000 - 2584 2017 8 21 3 29 15 208 4.8883 180.91621 786.14336 725.28706 -6.60896 0.07048 -3.30334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22855 0.20182 -1.00000 - 2585 2017 8 21 3 29 20 96 4.8883 180.92201 786.03135 725.20415 -6.63913 0.07059 -3.31132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22820 0.20182 -1.00000 - 2586 2017 8 21 3 29 24 985 4.8883 180.92785 785.92245 725.12151 -6.63827 0.07061 -3.32018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22784 0.20182 -1.00000 - 2587 2017 8 21 3 29 29 873 4.8884 180.93376 785.81380 725.03910 -6.65893 0.07053 -3.32882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22749 0.20182 -1.00000 - 2588 2017 8 21 3 29 34 762 4.8884 180.93969 785.70590 724.95695 -6.68268 0.07039 -3.33773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22713 0.20182 -1.00000 - 2589 2017 8 21 3 29 39 650 4.8885 180.94559 785.59841 724.87500 -6.74345 0.07037 -3.34899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22677 0.20182 -1.00000 - 2590 2017 8 21 3 29 44 539 4.8885 180.95144 785.48931 724.79336 -6.78420 0.07048 -3.36040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22642 0.20182 -1.00000 - 2591 2017 8 21 3 29 49 427 4.8886 180.95726 785.38068 724.71193 -6.79072 0.07065 -3.37110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22606 0.20182 -1.00000 - 2592 2017 8 21 3 29 54 316 4.8886 180.96309 785.27542 724.63079 -6.81804 0.07075 -3.38319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22571 0.20181 -1.00000 - 2593 2017 8 21 3 29 59 204 4.8886 180.96898 785.16922 724.54990 -6.84917 0.07073 -3.39593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22535 0.20181 -1.00000 - 2594 2017 8 21 3 30 4 93 4.8887 180.97493 785.06217 724.46935 -6.91714 0.07057 -3.40879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22500 0.20181 -1.00000 - 2595 2017 8 21 3 30 8 982 4.8887 180.98087 784.95573 724.38905 -6.96574 0.07046 -3.42205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22464 0.20181 -1.00000 - 2596 2017 8 21 3 30 13 870 4.8888 180.98677 784.85031 724.30902 -7.01362 0.07051 -3.43606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22429 0.20181 -1.00000 - 2597 2017 8 21 3 30 18 759 4.8888 180.99263 784.74691 724.22929 -7.02929 0.07068 -3.45047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22393 0.20181 -1.00000 - 2598 2017 8 21 3 30 23 648 4.8889 180.99847 784.64398 724.14987 -7.06570 0.07084 -3.46434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22358 0.20181 -1.00000 - 2599 2017 8 21 3 30 28 537 4.8889 181.00434 784.54119 724.07075 -7.13874 0.07090 -3.47864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22322 0.20181 -1.00000 - 2600 2017 8 21 3 30 33 426 4.8889 181.01028 784.43752 723.99190 -7.19175 0.07081 -3.49435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22286 0.20181 -1.00000 - 2601 2017 8 21 3 30 38 315 4.8890 181.01626 784.33387 723.91336 -7.24309 0.07063 -3.50934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22251 0.20181 -1.00000 - 2602 2017 8 21 3 30 43 204 4.8890 181.02222 784.23328 723.83514 -7.26117 0.07058 -3.52393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22215 0.20181 -1.00000 - 2603 2017 8 21 3 30 48 93 4.8891 181.02812 784.13315 723.75717 -7.29882 0.07069 -3.53917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22180 0.20181 -1.00000 - 2604 2017 8 21 3 30 52 982 4.8891 181.03398 784.03383 723.67948 -7.33817 0.07090 -3.55458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22144 0.20181 -1.00000 - 2605 2017 8 21 3 30 57 871 4.8892 181.03985 783.93405 723.60211 -7.41339 0.07105 -3.56933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22109 0.20181 -1.00000 - 2606 2017 8 21 3 31 2 761 4.8892 181.04576 783.83337 723.52502 -7.46862 0.07103 -3.58478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22073 0.20181 -1.00000 - 2607 2017 8 21 3 31 7 650 4.8892 181.05175 783.73481 723.44804 -7.48949 0.07085 -3.60027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22038 0.20181 -1.00000 - 2608 2017 8 21 3 31 12 539 4.8893 181.05775 783.63662 723.37135 -7.53196 0.07069 -3.61563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22002 0.20181 -1.00000 - 2609 2017 8 21 3 31 17 428 4.8893 181.06371 783.53904 723.29493 -7.58721 0.07070 -3.63012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21966 0.20181 -1.00000 - 2610 2017 8 21 3 31 22 318 4.8894 181.06962 783.44143 723.21876 -7.65473 0.07088 -3.64537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21931 0.20181 -1.00000 - 2611 2017 8 21 3 31 27 207 4.8894 181.07550 783.34324 723.14282 -7.71438 0.07111 -3.66108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21895 0.20181 -1.00000 - 2612 2017 8 21 3 31 32 97 4.8895 181.08140 783.24513 723.06715 -7.77170 0.07122 -3.67589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21860 0.20181 -1.00000 - 2613 2017 8 21 3 31 36 986 4.8895 181.08736 783.14961 722.99180 -7.80096 0.07111 -3.69025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21824 0.20181 -1.00000 - 2614 2017 8 21 3 31 41 876 4.8895 181.09338 783.05486 722.91662 -7.85714 0.07089 -3.70515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21789 0.20181 -1.00000 - 2615 2017 8 21 3 31 46 765 4.8896 181.09940 782.95929 722.84170 -7.91306 0.07077 -3.71934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21753 0.20181 -1.00000 - 2616 2017 8 21 3 31 51 655 4.8896 181.10537 782.86580 722.76703 -7.97290 0.07085 -3.73213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21717 0.20181 -1.00000 - 2617 2017 8 21 3 31 56 545 4.8897 181.11128 782.77043 722.69257 -8.02653 0.07111 -3.74610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21682 0.20181 -1.00000 - 2618 2017 8 21 3 32 1 434 4.8897 181.11718 782.67604 722.61832 -8.07316 0.07135 -3.75899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21646 0.20181 -1.00000 - 2619 2017 8 21 3 32 6 324 4.8898 181.12313 782.58336 722.54422 -8.12980 0.07136 -3.77038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21611 0.20181 -1.00000 - 2620 2017 8 21 3 32 11 214 4.8898 181.12914 782.49085 722.47024 -8.18159 0.07115 -3.78268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21575 0.20180 -1.00000 - 2621 2017 8 21 3 32 16 104 4.8898 181.13519 782.39671 722.39643 -8.22996 0.07093 -3.79439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21540 0.20180 -1.00000 - 2622 2017 8 21 3 32 20 994 4.8899 181.14123 782.30388 722.32282 -8.27505 0.07090 -3.80411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21504 0.20180 -1.00000 - 2623 2017 8 21 3 32 25 884 4.8899 181.14719 782.21069 722.24932 -8.31695 0.07110 -3.81476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21469 0.20180 -1.00000 - 2624 2017 8 21 3 32 30 773 4.8900 181.15310 782.11851 722.17596 -8.35740 0.07140 -3.82412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21433 0.20180 -1.00000 - 2625 2017 8 21 3 32 35 664 4.8900 181.15903 782.02732 722.10270 -8.39520 0.07155 -3.83209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21397 0.20180 -1.00000 - 2626 2017 8 21 3 32 40 554 4.8901 181.16502 781.93608 722.02953 -8.43051 0.07144 -3.83997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21362 0.20180 -1.00000 - 2627 2017 8 21 3 32 45 444 4.8901 181.17108 781.84307 721.95644 -8.46224 0.07117 -3.84762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21326 0.20180 -1.00000 - 2628 2017 8 21 3 32 50 334 4.8901 181.17717 781.75043 721.88348 -8.49103 0.07100 -3.85405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21291 0.20180 -1.00000 - 2629 2017 8 21 3 32 55 224 4.8902 181.18321 781.65820 721.81061 -8.51736 0.07107 -3.85942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21255 0.20180 -1.00000 - 2630 2017 8 21 3 33 0 114 4.8902 181.18916 781.56770 721.73778 -8.54288 0.07136 -3.86432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21220 0.20180 -1.00000 - 2631 2017 8 21 3 33 5 5 4.8903 181.19509 781.47720 721.66491 -8.56615 0.07166 -3.86868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21184 0.20180 -1.00000 - 2632 2017 8 21 3 33 9 895 4.8903 181.20105 781.38661 721.59209 -8.58699 0.07170 -3.87064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21149 0.20180 -1.00000 - 2633 2017 8 21 3 33 14 785 4.8904 181.20710 781.29484 721.51925 -8.60333 0.07147 -3.87377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21113 0.20180 -1.00000 - 2634 2017 8 21 3 33 19 676 4.8904 181.21320 781.20212 721.44643 -8.61537 0.07123 -3.87590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21077 0.20180 -1.00000 - 2635 2017 8 21 3 33 24 566 4.8904 181.21931 781.10959 721.37362 -8.62390 0.07112 -3.87609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21042 0.20180 -1.00000 - 2636 2017 8 21 3 33 29 457 4.8905 181.22533 781.01718 721.30077 -8.62995 0.07132 -3.87680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21006 0.20180 -1.00000 - 2637 2017 8 21 3 33 34 347 4.8905 181.23128 780.92642 721.22791 -8.63437 0.07166 -3.87610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20971 0.20180 -1.00000 - 2638 2017 8 21 3 33 39 238 4.8906 181.23723 780.83571 721.15499 -8.63589 0.07186 -3.87308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20935 0.20180 -1.00000 - 2639 2017 8 21 3 33 44 128 4.8906 181.24324 780.74537 721.08200 -8.63319 0.07174 -3.87065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20900 0.20180 -1.00000 - 2640 2017 8 21 3 33 49 19 4.8907 181.24935 780.65148 721.00895 -8.62587 0.07146 -3.86758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20864 0.20180 -1.00000 - 2641 2017 8 21 3 33 53 910 4.8907 181.25549 780.55723 720.93577 -8.58648 0.07125 -3.86252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20828 0.20180 -1.00000 - 2642 2017 8 21 3 33 58 800 4.8908 181.26159 780.46348 720.86253 -8.58913 0.07127 -3.85803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20793 0.20180 -1.00000 - 2643 2017 8 21 3 34 3 691 4.8908 181.26759 780.37171 720.78919 -8.57642 0.07157 -3.85211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20757 0.20180 -1.00000 - 2644 2017 8 21 3 34 8 582 4.8909 181.27355 780.27964 720.71570 -8.56148 0.07190 -3.84410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20722 0.20180 -1.00000 - 2645 2017 8 21 3 34 13 473 4.8909 181.27955 780.18608 720.64205 -8.54280 0.07194 -3.83698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20686 0.20180 -1.00000 - 2646 2017 8 21 3 34 18 364 4.8909 181.28562 780.09117 720.56829 -8.52076 0.07169 -3.82920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20651 0.20180 -1.00000 - 2647 2017 8 21 3 34 23 255 4.8910 181.29176 779.99637 720.49442 -8.49563 0.07151 -3.81995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20615 0.20180 -1.00000 - 2648 2017 8 21 3 34 28 146 4.8910 181.29792 779.90301 720.42037 -8.46902 0.07131 -3.81042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20579 0.20179 -1.00000 - 2649 2017 8 21 3 34 33 37 4.8911 181.30402 779.80921 720.34616 -8.43951 0.07150 -3.80000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20544 0.20179 -1.00000 - 2650 2017 8 21 3 34 37 928 4.8911 181.31002 779.71452 720.27181 -8.40727 0.07183 -3.78803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20508 0.20179 -1.00000 - 2651 2017 8 21 3 34 42 819 4.8912 181.31599 779.61988 720.19726 -8.37180 0.07206 -3.77660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20473 0.20179 -1.00000 - 2652 2017 8 21 3 34 47 711 4.8912 181.32203 779.52267 720.12255 -8.33329 0.07197 -3.76471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20437 0.20179 -1.00000 - 2653 2017 8 21 3 34 52 602 4.8912 181.32817 779.42559 720.04767 -8.29221 0.07167 -3.75175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20402 0.20179 -1.00000 - 2654 2017 8 21 3 34 57 493 4.8913 181.33436 779.32811 719.97259 -8.24947 0.07151 -3.73894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20366 0.20179 -1.00000 - 2655 2017 8 21 3 35 2 384 4.8913 181.34051 779.23212 719.89735 -8.20607 0.07147 -3.72494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20330 0.20179 -1.00000 - 2656 2017 8 21 3 35 7 276 4.8914 181.34658 779.13583 719.82182 -8.16071 0.07178 -3.71001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20295 0.20179 -1.00000 - 2657 2017 8 21 3 35 12 167 4.8914 181.35259 779.03756 719.74610 -8.11328 0.07211 -3.69552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20259 0.20179 -1.00000 - 2658 2017 8 21 3 35 17 59 4.8915 181.35861 778.93819 719.67022 -8.06430 0.07216 -3.68045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20224 0.20179 -1.00000 - 2659 2017 8 21 3 35 21 950 4.8915 181.36470 778.83867 719.59412 -8.01432 0.07193 -3.66546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20188 0.20179 -1.00000 - 2660 2017 8 21 3 35 26 842 4.8915 181.37088 778.74084 719.51782 -7.96382 0.07172 -3.64941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20153 0.20179 -1.00000 - 2661 2017 8 21 3 35 31 733 4.8916 181.37709 778.64226 719.44129 -7.91145 0.07157 -3.63295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20117 0.20179 -1.00000 - 2662 2017 8 21 3 35 36 625 4.8916 181.38325 778.54298 719.36458 -7.85768 0.07173 -3.61657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20081 0.20179 -1.00000 - 2663 2017 8 21 3 35 41 517 4.8917 181.38930 778.44170 719.28771 -7.80182 0.07205 -3.59927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20046 0.20179 -1.00000 - 2664 2017 8 21 3 35 46 408 4.8917 181.39531 778.34011 719.21057 -7.74477 0.07229 -3.58321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20010 0.20179 -1.00000 - 2665 2017 8 21 3 35 51 300 4.8918 181.40138 778.23810 719.13322 -7.68642 0.07221 -3.56664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19975 0.20179 -1.00000 - 2666 2017 8 21 3 35 56 192 4.8918 181.40754 778.13771 719.05571 -7.62815 0.07192 -3.54952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19939 0.20179 -1.00000 - 2667 2017 8 21 3 36 1 84 4.8918 181.41376 778.03668 718.97799 -7.56891 0.07178 -3.53284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19904 0.20179 -1.00000 - 2668 2017 8 21 3 36 5 976 4.8919 181.41996 777.93337 718.90003 -7.50847 0.07173 -3.51592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19868 0.20179 -1.00000 - 2669 2017 8 21 3 36 10 867 4.8919 181.42609 777.83000 718.82190 -7.44799 0.07203 -3.49840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19832 0.20179 -1.00000 - 2670 2017 8 21 3 36 15 759 4.8920 181.43215 777.72623 718.74358 -7.38698 0.07231 -3.48221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19797 0.20179 -1.00000 - 2671 2017 8 21 3 36 20 652 4.8920 181.43819 777.62347 718.66510 -7.32721 0.07233 -3.46511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19761 0.20179 -1.00000 - 2672 2017 8 21 3 36 25 544 4.8921 181.44430 777.52058 718.58643 -7.26803 0.07212 -3.44756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19726 0.20179 -1.00000 - 2673 2017 8 21 3 36 30 436 4.8921 181.45052 777.41613 718.50757 -7.20925 0.07188 -3.43157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19690 0.20179 -1.00000 - 2674 2017 8 21 3 36 35 328 4.8921 181.45678 777.31052 718.42857 -7.15116 0.07183 -3.41561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19655 0.20179 -1.00000 - 2675 2017 8 21 3 36 40 220 4.8922 181.46297 777.20497 718.34946 -7.09473 0.07194 -3.39944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19619 0.20179 -1.00000 - 2676 2017 8 21 3 36 45 112 4.8922 181.46907 777.09937 718.27021 -7.04045 0.07225 -3.38430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19583 0.20178 -1.00000 - 2677 2017 8 21 3 36 50 5 4.8923 181.47512 776.99590 718.19088 -6.98959 0.07241 -3.36882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19548 0.20178 -1.00000 - 2678 2017 8 21 3 36 54 897 4.8923 181.48122 776.89212 718.11140 -6.94045 0.07229 -3.35386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19512 0.20178 -1.00000 - 2679 2017 8 21 3 36 59 789 4.8924 181.48740 776.78570 718.03180 -6.89161 0.07203 -3.34045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19477 0.20178 -1.00000 - 2680 2017 8 21 3 37 4 682 4.8924 181.49366 776.67929 717.95217 -6.84411 0.07192 -3.32633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19441 0.20178 -1.00000 - 2681 2017 8 21 3 37 9 574 4.8925 181.49992 776.57256 717.87235 -6.79853 0.07192 -3.31326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19406 0.20178 -1.00000 - 2682 2017 8 21 3 37 14 467 4.8925 181.50609 776.46560 717.79243 -6.75529 0.07219 -3.30113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19370 0.20178 -1.00000 - 2683 2017 8 21 3 37 19 359 4.8926 181.51218 776.36075 717.71245 -6.71511 0.07241 -3.28776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19334 0.20178 -1.00000 - 2684 2017 8 21 3 37 24 252 4.8926 181.51826 776.25561 717.63231 -6.67572 0.07241 -3.27556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19299 0.20178 -1.00000 - 2685 2017 8 21 3 37 29 145 4.8927 181.52441 776.14797 717.55209 -6.63527 0.07222 -3.26507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19263 0.20178 -1.00000 - 2686 2017 8 21 3 37 34 37 4.8927 181.53067 776.04043 717.47188 -6.59525 0.07201 -3.25357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19228 0.20178 -1.00000 - 2687 2017 8 21 3 37 38 930 4.8927 181.53696 775.93276 717.39162 -6.55652 0.07198 -3.24327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19192 0.20178 -1.00000 - 2688 2017 8 21 3 37 43 823 4.8928 181.54319 775.82530 717.31132 -6.51979 0.07216 -3.23451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19156 0.20178 -1.00000 - 2689 2017 8 21 3 37 48 716 4.8928 181.54935 775.71976 717.23109 -6.48638 0.07245 -3.22457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19121 0.20178 -1.00000 - 2690 2017 8 21 3 37 53 608 4.8929 181.55545 775.61452 717.15083 -6.45469 0.07254 -3.21580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19085 0.20178 -1.00000 - 2691 2017 8 21 3 37 58 501 4.8929 181.56156 775.50689 717.07055 -6.42359 0.07241 -3.20921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19050 0.20178 -1.00000 - 2692 2017 8 21 3 38 3 394 4.8930 181.56777 775.39951 716.99035 -6.40097 0.07223 -3.20192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19014 0.20178 -1.00000 - 2693 2017 8 21 3 38 8 287 4.8930 181.57408 775.29199 716.91009 -6.38395 0.07211 -3.19551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18979 0.20178 -1.00000 - 2694 2017 8 21 3 38 13 180 4.8930 181.58038 775.18459 716.82988 -6.36817 0.07217 -3.19074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18943 0.20178 -1.00000 - 2695 2017 8 21 3 38 18 73 4.8931 181.58660 775.07965 716.74979 -6.32775 0.07242 -3.18446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18907 0.20178 -1.00000 - 2696 2017 8 21 3 38 22 967 4.8931 181.59274 774.97475 716.66968 -6.31022 0.07262 -3.18011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18872 0.20178 -1.00000 - 2697 2017 8 21 3 38 27 860 4.8932 181.59887 774.86760 716.58965 -6.30445 0.07260 -3.17789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18836 0.20178 -1.00000 - 2698 2017 8 21 3 38 32 753 4.8932 181.60504 774.76082 716.50975 -6.29898 0.07242 -3.17486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18801 0.20178 -1.00000 - 2699 2017 8 21 3 38 37 646 4.8933 181.61132 774.65410 716.42991 -6.29549 0.07228 -3.17354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18765 0.20178 -1.00000 - 2700 2017 8 21 3 38 42 540 4.8933 181.61765 774.54773 716.35018 -6.29398 0.07226 -3.17345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18729 0.20178 -1.00000 - 2701 2017 8 21 3 38 47 433 4.8933 181.62394 774.44431 716.27064 -6.27037 0.07242 -3.17249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18694 0.20178 -1.00000 - 2702 2017 8 21 3 38 52 326 4.8934 181.63015 774.34034 716.19118 -6.25861 0.07264 -3.17261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18658 0.20178 -1.00000 - 2703 2017 8 21 3 38 57 220 4.8934 181.63115 774.23401 716.11185 -6.28144 0.07272 -3.17496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18623 0.20178 -1.00000 - 2704 2017 8 21 3 39 2 113 4.8935 181.63174 774.12879 716.03272 -6.28969 0.07263 -3.17720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18587 0.20177 -1.00000 - 2705 2017 8 21 3 39 7 7 4.8935 181.63233 774.02403 715.95369 -6.30054 0.07248 -3.18031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18552 0.20177 -1.00000 - 2706 2017 8 21 3 39 11 900 4.8936 181.63290 773.91938 715.87481 -6.31397 0.07240 -3.18494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18516 0.20177 -1.00000 - 2707 2017 8 21 3 39 16 794 4.8936 181.63348 773.81514 715.79614 -6.32965 0.07244 -3.18983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18480 0.20177 -1.00000 - 2708 2017 8 21 3 39 21 688 4.8937 181.63407 773.71134 715.71771 -6.34717 0.07262 -3.19539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18445 0.20177 -1.00000 - 2709 2017 8 21 3 39 26 581 4.8937 181.63467 773.60813 715.63947 -6.36623 0.07278 -3.20225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18409 0.20177 -1.00000 - 2710 2017 8 21 3 39 31 475 4.8938 181.63527 773.50664 715.56148 -6.35847 0.07278 -3.20916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18374 0.20177 -1.00000 - 2711 2017 8 21 3 39 36 369 4.8938 181.63589 773.40586 715.48370 -6.36997 0.07265 -3.21667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18338 0.20177 -1.00000 - 2712 2017 8 21 3 39 41 263 4.8938 181.63649 773.30323 715.40617 -6.41402 0.07255 -3.22522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18302 0.20177 -1.00000 - 2713 2017 8 21 3 39 46 157 4.8939 181.63708 773.20146 715.32891 -6.44327 0.07255 -3.23383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18267 0.20177 -1.00000 - 2714 2017 8 21 3 39 51 50 4.8939 181.63767 773.10016 715.25186 -6.47298 0.07263 -3.24323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18231 0.20177 -1.00000 - 2715 2017 8 21 3 39 55 944 4.8940 181.63827 772.99934 715.17506 -6.50256 0.07276 -3.25362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18196 0.20177 -1.00000 - 2716 2017 8 21 3 40 0 838 4.8940 181.63890 772.90105 715.09852 -6.50243 0.07283 -3.26325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18160 0.20177 -1.00000 - 2717 2017 8 21 3 40 5 733 4.8941 181.63952 772.80277 715.02214 -6.52170 0.07281 -3.27392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18124 0.20177 -1.00000 - 2718 2017 8 21 3 40 10 627 4.8941 181.64015 772.70148 714.94602 -6.57550 0.07270 -3.28506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18089 0.20177 -1.00000 - 2719 2017 8 21 3 40 15 521 4.8941 181.64077 772.60164 714.87015 -6.61533 0.07263 -3.29587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18053 0.20177 -1.00000 - 2720 2017 8 21 3 40 20 415 4.8942 181.64138 772.50256 714.79450 -6.65596 0.07267 -3.30762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18018 0.20177 -1.00000 - 2721 2017 8 21 3 40 25 309 4.8942 181.64198 772.40412 714.71910 -6.69662 0.07277 -3.31930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17982 0.20177 -1.00000 - 2722 2017 8 21 3 40 30 204 4.8943 181.64260 772.30823 714.64395 -6.70800 0.07285 -3.33092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17947 0.20177 -1.00000 - 2723 2017 8 21 3 40 35 98 4.8943 181.64324 772.21249 714.56902 -6.73833 0.07284 -3.34358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17911 0.20177 -1.00000 - 2724 2017 8 21 3 40 39 992 4.8944 181.64390 772.11520 714.49437 -6.80225 0.07280 -3.35629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17875 0.20177 -1.00000 - 2725 2017 8 21 3 40 44 887 4.8944 181.64455 772.01867 714.41996 -6.85186 0.07274 -3.36920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17840 0.20177 -1.00000 - 2726 2017 8 21 3 40 49 781 4.8945 181.64519 771.92277 714.34582 -6.90120 0.07274 -3.38309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17804 0.20177 -1.00000 - 2727 2017 8 21 3 40 54 676 4.8945 181.64581 771.82759 714.27193 -6.94998 0.07281 -3.39642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17769 0.20177 -1.00000 - 2728 2017 8 21 3 40 59 570 4.8945 181.64643 771.73302 714.19831 -6.99848 0.07290 -3.40983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17733 0.20177 -1.00000 - 2729 2017 8 21 3 41 4 465 4.8946 181.64706 771.63916 714.12491 -7.04441 0.07291 -3.42441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17697 0.20177 -1.00000 - 2730 2017 8 21 3 41 9 359 4.8946 181.64774 771.54560 714.05173 -7.09319 0.07287 -3.43812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17662 0.20177 -1.00000 - 2731 2017 8 21 3 41 14 254 4.8947 181.64843 771.45232 713.97880 -7.14259 0.07284 -3.45199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17626 0.20176 -1.00000 - 2732 2017 8 21 3 41 19 149 4.8947 181.64911 771.36134 713.90612 -7.16175 0.07284 -3.46586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17591 0.20176 -1.00000 - 2733 2017 8 21 3 41 24 44 4.8948 181.64977 771.27068 713.83366 -7.20006 0.07288 -3.47912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17555 0.20176 -1.00000 - 2734 2017 8 21 3 41 28 938 4.8948 181.65040 771.17834 713.76145 -7.26542 0.07296 -3.49323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17519 0.20176 -1.00000 - 2735 2017 8 21 3 41 33 833 4.8949 181.65102 771.08681 713.68950 -7.31665 0.07300 -3.50679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17484 0.20176 -1.00000 - 2736 2017 8 21 3 41 38 728 4.8949 181.65168 770.99556 713.61775 -7.36681 0.07294 -3.51982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17448 0.20176 -1.00000 - 2737 2017 8 21 3 41 43 623 4.8950 181.65240 770.90463 713.54619 -7.41545 0.07289 -3.53285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17413 0.20176 -1.00000 - 2738 2017 8 21 3 41 48 518 4.8950 181.65314 770.81425 713.47481 -7.46285 0.07291 -3.54556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17377 0.20176 -1.00000 - 2739 2017 8 21 3 41 53 413 4.8950 181.65386 770.72433 713.40363 -7.50914 0.07299 -3.55805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17341 0.20176 -1.00000 - 2740 2017 8 21 3 41 58 308 4.8951 181.65453 770.63493 713.33266 -7.55431 0.07308 -3.57047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17306 0.20176 -1.00000 - 2741 2017 8 21 3 42 3 203 4.8951 181.65517 770.54617 713.26191 -7.60364 0.07317 -3.58216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17270 0.20176 -1.00000 - 2742 2017 8 21 3 42 8 99 4.8952 181.65581 770.45807 713.19134 -7.65218 0.07323 -3.59338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17235 0.20176 -1.00000 - 2743 2017 8 21 3 42 12 994 4.8952 181.65651 770.36977 713.12093 -7.69871 0.07308 -3.60457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17199 0.20176 -1.00000 - 2744 2017 8 21 3 42 17 889 4.8953 181.65730 770.28188 713.05072 -7.74300 0.07297 -3.61523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17163 0.20176 -1.00000 - 2745 2017 8 21 3 42 22 784 4.8953 181.65808 770.19436 712.98069 -7.78495 0.07309 -3.62593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17128 0.20176 -1.00000 - 2746 2017 8 21 3 42 27 680 4.8954 181.65881 770.10714 712.91080 -7.82475 0.07320 -3.63659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17092 0.20176 -1.00000 - 2747 2017 8 21 3 42 32 575 4.8954 181.65950 770.02005 712.84106 -7.86251 0.07322 -3.64652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17057 0.20176 -1.00000 - 2748 2017 8 21 3 42 37 471 4.8954 181.66017 769.93314 712.77143 -7.89836 0.07341 -3.65614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17021 0.20176 -1.00000 - 2749 2017 8 21 3 42 42 366 4.8955 181.66086 769.84641 712.70193 -7.93245 0.07336 -3.66515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16985 0.20176 -1.00000 - 2750 2017 8 21 3 42 47 262 4.8955 181.66161 769.75983 712.63255 -7.96491 0.07311 -3.67343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16950 0.20176 -1.00000 - 2751 2017 8 21 3 42 52 157 4.8956 181.66242 769.67344 712.56328 -7.99580 0.07311 -3.68125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16914 0.20176 -1.00000 - 2752 2017 8 21 3 42 57 53 4.8956 181.66323 769.58721 712.49412 -8.02509 0.07320 -3.68836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16879 0.20176 -1.00000 - 2753 2017 8 21 3 43 1 948 4.8957 181.66399 769.50113 712.42505 -8.05272 0.07327 -3.69466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16843 0.20176 -1.00000 - 2754 2017 8 21 3 43 6 844 4.8957 181.66470 769.41516 712.35601 -8.07852 0.07338 -3.70038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16807 0.20176 -1.00000 - 2755 2017 8 21 3 43 11 740 4.8957 181.66540 769.32918 712.28705 -8.10229 0.07355 -3.70529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16772 0.20176 -1.00000 - 2756 2017 8 21 3 43 16 636 4.8958 181.66612 769.24334 712.21816 -8.12380 0.07340 -3.70938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16736 0.20176 -1.00000 - 2757 2017 8 21 3 43 21 531 4.8958 181.66692 769.15765 712.14934 -8.14281 0.07321 -3.71290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16701 0.20176 -1.00000 - 2758 2017 8 21 3 43 26 427 4.8959 181.66776 769.07205 712.08056 -8.15909 0.07323 -3.71561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16665 0.20176 -1.00000 - 2759 2017 8 21 3 43 31 323 4.8959 181.66858 768.98650 712.01181 -8.17246 0.07328 -3.71753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16629 0.20175 -1.00000 - 2760 2017 8 21 3 43 36 219 4.8960 181.66935 768.90096 711.94308 -8.18282 0.07331 -3.71860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16594 0.20175 -1.00000 - 2761 2017 8 21 3 43 41 115 4.8960 181.67010 768.81542 711.87436 -8.19013 0.07351 -3.71884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16558 0.20175 -1.00000 - 2762 2017 8 21 3 43 46 11 4.8961 181.67082 768.72990 711.80564 -8.19441 0.07358 -3.71833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16523 0.20175 -1.00000 - 2763 2017 8 21 3 43 50 907 4.8961 181.67156 768.64433 711.73688 -8.19574 0.07339 -3.71729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16487 0.20175 -1.00000 - 2764 2017 8 21 3 43 55 804 4.8962 181.67238 768.55860 711.66811 -8.19422 0.07327 -3.71489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16451 0.20175 -1.00000 - 2765 2017 8 21 3 44 0 700 4.8962 181.67325 768.47285 711.59926 -8.18998 0.07326 -3.71225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16416 0.20175 -1.00000 - 2766 2017 8 21 3 44 5 596 4.8962 181.67409 768.38681 711.53032 -8.18318 0.07332 -3.70813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16380 0.20175 -1.00000 - 2767 2017 8 21 3 44 10 492 4.8963 181.67489 768.30044 711.46129 -8.17409 0.07340 -3.70319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16345 0.20175 -1.00000 - 2768 2017 8 21 3 44 15 389 4.8963 181.67565 768.21397 711.39218 -8.16286 0.07361 -3.69825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16309 0.20175 -1.00000 - 2769 2017 8 21 3 44 20 285 4.8964 181.67638 768.12738 711.32298 -8.14933 0.07367 -3.69178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16273 0.20175 -1.00000 - 2770 2017 8 21 3 44 25 181 4.8964 181.67714 768.04055 711.25365 -8.13334 0.07351 -3.68488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16238 0.20175 -1.00000 - 2771 2017 8 21 3 44 30 78 4.8965 181.67800 767.95352 711.18424 -8.11474 0.07331 -3.67720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16202 0.20175 -1.00000 - 2772 2017 8 21 3 44 34 974 4.8965 181.67889 767.86635 711.11470 -8.09341 0.07333 -3.66862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16166 0.20175 -1.00000 - 2773 2017 8 21 3 44 39 871 4.8966 181.67974 767.77881 711.04506 -8.06940 0.07343 -3.65894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16131 0.20175 -1.00000 - 2774 2017 8 21 3 44 44 768 4.8966 181.68054 767.69110 710.97528 -8.04274 0.07349 -3.64933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16095 0.20175 -1.00000 - 2775 2017 8 21 3 44 49 664 4.8966 181.68131 767.60326 710.90537 -8.01337 0.07370 -3.63812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16060 0.20175 -1.00000 - 2776 2017 8 21 3 44 54 561 4.8967 181.68206 767.51515 710.83528 -7.98068 0.07375 -3.62579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16024 0.20175 -1.00000 - 2777 2017 8 21 3 44 59 458 4.8967 181.68284 767.42670 710.76501 -7.94382 0.07356 -3.61420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15988 0.20175 -1.00000 - 2778 2017 8 21 3 45 4 354 4.8968 181.68372 767.33787 710.69459 -7.90322 0.07337 -3.60133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15953 0.20175 -1.00000 - 2779 2017 8 21 3 45 9 251 4.8968 181.68463 767.24845 710.62389 -7.85984 0.07340 -3.58822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15917 0.20175 -1.00000 - 2780 2017 8 21 3 45 14 148 4.8969 181.68549 767.15838 710.55300 -7.81420 0.07352 -3.57518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15882 0.20175 -1.00000 - 2781 2017 8 21 3 45 19 45 4.8969 181.68630 767.06794 710.48194 -7.76671 0.07359 -3.56160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15846 0.20175 -1.00000 - 2782 2017 8 21 3 45 23 942 4.8969 181.68707 766.97707 710.41072 -7.71764 0.07381 -3.54730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15810 0.20175 -1.00000 - 2783 2017 8 21 3 45 28 839 4.8970 181.68784 766.88593 710.33930 -7.66715 0.07380 -3.53348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15775 0.20175 -1.00000 - 2784 2017 8 21 3 45 33 736 4.8970 181.68865 766.79441 710.26770 -7.61540 0.07358 -3.51932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15739 0.20175 -1.00000 - 2785 2017 8 21 3 45 38 633 4.8971 181.68955 766.70243 710.19592 -7.56269 0.07344 -3.50499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15704 0.20175 -1.00000 - 2786 2017 8 21 3 45 43 530 4.8971 181.69047 766.61006 710.12395 -7.50928 0.07349 -3.49077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15668 0.20175 -1.00000 - 2787 2017 8 21 3 45 48 427 4.8972 181.69133 766.51721 710.05179 -7.45534 0.07360 -3.47603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15632 0.20174 -1.00000 - 2788 2017 8 21 3 45 53 325 4.8972 181.69215 766.42397 709.97947 -7.40102 0.07369 -3.46124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15597 0.20174 -1.00000 - 2789 2017 8 21 3 45 58 222 4.8973 181.69294 766.33036 709.90697 -7.34643 0.07389 -3.44636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15561 0.20174 -1.00000 - 2790 2017 8 21 3 46 3 119 4.8973 181.69372 766.23637 709.83431 -7.29169 0.07381 -3.43127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15525 0.20174 -1.00000 - 2791 2017 8 21 3 46 8 16 4.8973 181.69458 766.14197 709.76143 -7.23693 0.07359 -3.41610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15490 0.20174 -1.00000 - 2792 2017 8 21 3 46 12 914 4.8974 181.69550 766.04718 709.68841 -7.18227 0.07350 -3.40089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15454 0.20174 -1.00000 - 2793 2017 8 21 3 46 17 811 4.8974 181.69641 765.95212 709.61524 -7.12785 0.07357 -3.38563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15419 0.20174 -1.00000 - 2794 2017 8 21 3 46 22 709 4.8975 181.69727 765.85681 709.54194 -7.07383 0.07364 -3.37031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15383 0.20174 -1.00000 - 2795 2017 8 21 3 46 27 606 4.8975 181.69810 765.76128 709.46849 -7.02036 0.07378 -3.35532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15347 0.20174 -1.00000 - 2796 2017 8 21 3 46 32 504 4.8975 181.69892 765.66547 709.39493 -6.96760 0.07389 -3.34026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15312 0.20174 -1.00000 - 2797 2017 8 21 3 46 37 401 4.8974 181.69974 765.56946 709.32123 -6.91571 0.07377 -3.32544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15276 0.20174 -1.00000 - 2798 2017 8 21 3 46 42 298 4.8973 181.70061 765.47319 709.24741 -6.86483 0.07359 -3.31061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15241 0.20174 -1.00000 - 2799 2017 8 21 3 46 47 196 4.8972 181.70154 765.37672 709.17348 -6.81508 0.07354 -3.29608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15205 0.20174 -1.00000 - 2800 2017 8 21 3 46 52 93 4.8971 181.70245 765.28008 709.09946 -6.76658 0.07361 -3.28174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15169 0.20174 -1.00000 - 2801 2017 8 21 3 46 56 990 4.8971 181.70332 765.18331 709.02534 -6.71942 0.07368 -3.26775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15134 0.20174 -1.00000 - 2802 2017 8 21 3 47 1 887 4.8970 181.70417 765.08637 708.95111 -6.67368 0.07385 -3.25411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15098 0.20174 -1.00000 - 2803 2017 8 21 3 47 6 784 4.8969 181.70502 764.98913 708.87676 -6.62942 0.07393 -3.24037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15062 0.20174 -1.00000 - 2804 2017 8 21 3 47 11 681 4.8968 181.70587 764.89172 708.80232 -6.58671 0.07384 -3.22724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15027 0.20174 -1.00000 - 2805 2017 8 21 3 47 16 577 4.8967 181.70675 764.79425 708.72785 -6.54555 0.07371 -3.21429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14991 0.20174 -1.00000 - 2806 2017 8 21 3 47 21 474 4.8966 181.70766 764.69675 708.65330 -6.50598 0.07363 -3.20158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14956 0.20174 -1.00000 - 2807 2017 8 21 3 47 26 370 4.8966 181.70858 764.59907 708.57868 -6.46796 0.07367 -3.18937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14920 0.20174 -1.00000 - 2808 2017 8 21 3 47 31 267 4.8965 181.70947 764.50150 708.50402 -6.43149 0.07376 -3.17694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14884 0.20174 -1.00000 - 2809 2017 8 21 3 47 36 163 4.8964 181.71035 764.40385 708.42933 -6.39594 0.07391 -3.16476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14849 0.20174 -1.00000 - 2810 2017 8 21 3 47 41 60 4.8963 181.71123 764.30625 708.35462 -6.36091 0.07399 -3.15321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14813 0.20174 -1.00000 - 2811 2017 8 21 3 47 45 956 4.8962 181.71210 764.20859 708.27983 -6.32682 0.07398 -3.14271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14778 0.20174 -1.00000 - 2812 2017 8 21 3 47 50 852 4.8961 181.71298 764.11081 708.20501 -6.29398 0.07390 -3.13228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14742 0.20174 -1.00000 - 2813 2017 8 21 3 47 55 748 4.8961 181.71388 764.01303 708.13019 -6.26237 0.07383 -3.12261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14706 0.20174 -1.00000 - 2814 2017 8 21 3 48 0 644 4.8960 181.71481 763.91529 708.05535 -6.23197 0.07379 -3.11379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14671 0.20174 -1.00000 - 2815 2017 8 21 3 48 5 540 4.8959 181.71573 763.81748 707.98046 -6.20288 0.07381 -3.10565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14635 0.20173 -1.00000 - 2816 2017 8 21 3 48 10 436 4.8958 181.71664 763.71961 707.90561 -6.17522 0.07390 -3.09787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14600 0.20173 -1.00000 - 2817 2017 8 21 3 48 15 331 4.8957 181.71752 763.62194 707.83077 -6.14913 0.07401 -3.09135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14564 0.20173 -1.00000 - 2818 2017 8 21 3 48 20 227 4.8956 181.71841 763.52431 707.75595 -6.12474 0.07407 -3.08576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14528 0.20173 -1.00000 - 2819 2017 8 21 3 48 25 123 4.8956 181.71932 763.42666 707.68118 -6.10244 0.07403 -3.08052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14493 0.20173 -1.00000 - 2820 2017 8 21 3 48 30 18 4.8955 181.72024 763.32913 707.60645 -6.08409 0.07392 -3.07645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14457 0.20173 -1.00000 - 2821 2017 8 21 3 48 34 914 4.8954 181.72116 763.23168 707.53179 -6.06802 0.07385 -3.07319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14422 0.20173 -1.00000 - 2822 2017 8 21 3 48 39 809 4.8953 181.72208 763.13431 707.45718 -6.05434 0.07390 -3.07081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14386 0.20173 -1.00000 - 2823 2017 8 21 3 48 44 704 4.8952 181.72301 763.03700 707.38265 -6.04314 0.07399 -3.06918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14350 0.20173 -1.00000 - 2824 2017 8 21 3 48 49 599 4.8951 181.72394 762.93981 707.30819 -6.03448 0.07404 -3.06828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14315 0.20173 -1.00000 - 2825 2017 8 21 3 48 54 494 4.8951 181.72486 762.84277 707.23384 -6.02842 0.07402 -3.06803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14279 0.20173 -1.00000 - 2826 2017 8 21 3 48 59 389 4.8950 181.72576 762.74592 707.15960 -6.02499 0.07399 -3.06849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14244 0.20173 -1.00000 - 2827 2017 8 21 3 49 4 284 4.8949 181.72667 762.64927 707.08548 -6.02416 0.07399 -3.06952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14208 0.20173 -1.00000 - 2828 2017 8 21 3 49 9 179 4.8948 181.72763 762.55274 707.01144 -6.02592 0.07396 -3.07122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14172 0.20173 -1.00000 - 2829 2017 8 21 3 49 14 74 4.8947 181.72861 762.45645 706.93756 -6.03021 0.07389 -3.07363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14137 0.20173 -1.00000 - 2830 2017 8 21 3 49 18 968 4.8946 181.72955 762.36049 706.86385 -6.03696 0.07393 -3.07657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14101 0.20173 -1.00000 - 2831 2017 8 21 3 49 23 863 4.8946 181.73045 762.26488 706.79030 -6.04608 0.07399 -3.08016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14066 0.20173 -1.00000 - 2832 2017 8 21 3 49 28 757 4.8945 181.73135 762.16962 706.71695 -6.05749 0.07412 -3.08437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14030 0.20173 -1.00000 - 2833 2017 8 21 3 49 33 652 4.8944 181.73233 762.07475 706.64377 -6.07112 0.07408 -3.08933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13994 0.20173 -1.00000 - 2834 2017 8 21 3 49 38 546 4.8943 181.73332 761.98022 706.57077 -6.08688 0.07388 -3.09469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13959 0.20173 -1.00000 - 2835 2017 8 21 3 49 43 440 4.8942 181.73427 761.88607 706.49798 -6.10473 0.07391 -3.10055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13923 0.20173 -1.00000 - 2836 2017 8 21 3 49 48 334 4.8941 181.73519 761.79233 706.42540 -6.12461 0.07390 -3.10699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13888 0.20173 -1.00000 - 2837 2017 8 21 3 49 53 228 4.8940 181.73613 761.69903 706.35303 -6.14649 0.07405 -3.11382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13852 0.20173 -1.00000 - 2838 2017 8 21 3 49 58 122 4.8940 181.73712 761.60616 706.28087 -6.17032 0.07408 -3.12144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13816 0.20173 -1.00000 - 2839 2017 8 21 3 50 3 16 4.8939 181.73811 761.51367 706.20894 -6.19606 0.07392 -3.12890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13781 0.20173 -1.00000 - 2840 2017 8 21 3 50 7 910 4.8938 181.73904 761.42151 706.13714 -6.22368 0.07395 -3.13738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13745 0.20173 -1.00000 - 2841 2017 8 21 3 50 12 804 4.8937 181.73997 761.32876 706.06559 -6.25315 0.07386 -3.14562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13710 0.20173 -1.00000 - 2842 2017 8 21 3 50 17 697 4.8936 181.74096 761.23692 705.99423 -6.28397 0.07400 -3.15434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13674 0.20173 -1.00000 - 2843 2017 8 21 3 50 22 591 4.8935 181.74198 761.14568 705.92306 -6.31597 0.07404 -3.16407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13639 0.20172 -1.00000 - 2844 2017 8 21 3 50 27 484 4.8935 181.74298 761.05490 705.85212 -6.34919 0.07394 -3.17328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13603 0.20172 -1.00000 - 2845 2017 8 21 3 50 32 378 4.8934 181.74391 760.96457 705.78137 -6.38355 0.07405 -3.18335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13567 0.20172 -1.00000 - 2846 2017 8 21 3 50 37 271 4.8933 181.74483 760.87468 705.71083 -6.41894 0.07396 -3.19395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13532 0.20172 -1.00000 - 2847 2017 8 21 3 50 42 164 4.8932 181.74582 760.78520 705.64051 -6.45524 0.07406 -3.20392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13496 0.20172 -1.00000 - 2848 2017 8 21 3 50 47 57 4.8931 181.74689 760.69600 705.57041 -6.49176 0.07401 -3.21436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13461 0.20172 -1.00000 - 2849 2017 8 21 3 50 51 950 4.8930 181.74792 760.60737 705.50053 -6.52788 0.07392 -3.22583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13425 0.20172 -1.00000 - 2850 2017 8 21 3 50 56 843 4.8930 181.74885 760.51923 705.43086 -6.56387 0.07412 -3.23678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13389 0.20172 -1.00000 - 2851 2017 8 21 3 51 1 736 4.8929 181.74976 760.43142 705.36142 -6.60003 0.07413 -3.24741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13354 0.20172 -1.00000 - 2852 2017 8 21 3 51 6 629 4.8928 181.75075 760.34399 705.29213 -6.63656 0.07423 -3.25936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13318 0.20172 -1.00000 - 2853 2017 8 21 3 51 11 522 4.8927 181.75182 760.25698 705.22309 -6.67363 0.07406 -3.27088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13283 0.20172 -1.00000 - 2854 2017 8 21 3 51 16 414 4.8926 181.75288 760.17037 705.15427 -6.71129 0.07391 -3.28217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13247 0.20172 -1.00000 - 2855 2017 8 21 3 51 21 307 4.8925 181.75385 760.08427 705.08568 -6.74953 0.07410 -3.29398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13212 0.20172 -1.00000 - 2856 2017 8 21 3 51 26 199 4.8924 181.75478 759.99862 705.01730 -6.78823 0.07413 -3.30595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13176 0.20172 -1.00000 - 2857 2017 8 21 3 51 31 92 4.8924 181.75576 759.91332 704.94914 -6.82723 0.07440 -3.31773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13140 0.20172 -1.00000 - 2858 2017 8 21 3 51 35 984 4.8923 181.75681 759.82841 704.88119 -6.86639 0.07425 -3.32982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13105 0.20172 -1.00000 - 2859 2017 8 21 3 51 40 876 4.8922 181.75786 759.74387 704.81343 -6.90556 0.07402 -3.34210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13069 0.20172 -1.00000 - 2860 2017 8 21 3 51 45 768 4.8921 181.75885 759.65962 704.74587 -6.94461 0.07408 -3.35423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13034 0.20172 -1.00000 - 2861 2017 8 21 3 51 50 660 4.8920 181.75984 759.57568 704.67849 -6.98345 0.07398 -3.36651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12998 0.20172 -1.00000 - 2862 2017 8 21 3 51 55 552 4.8919 181.76087 759.49204 704.61129 -7.02198 0.07430 -3.37859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12963 0.20172 -1.00000 - 2863 2017 8 21 3 52 0 444 4.8919 181.76193 759.40869 704.54428 -7.06016 0.07437 -3.39037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12927 0.20172 -1.00000 - 2864 2017 8 21 3 52 5 336 4.8918 181.76294 759.32551 704.47740 -7.09795 0.07419 -3.40203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12891 0.20172 -1.00000 - 2865 2017 8 21 3 52 10 228 4.8917 181.76389 759.24262 704.41070 -7.13846 0.07422 -3.41340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12856 0.20172 -1.00000 - 2866 2017 8 21 3 52 15 119 4.8916 181.76489 759.16008 704.34419 -7.17857 0.07405 -3.42439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12820 0.20172 -1.00000 - 2867 2017 8 21 3 52 20 11 4.8915 181.76597 759.07788 704.27785 -7.21780 0.07418 -3.43515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12785 0.20172 -1.00000 - 2868 2017 8 21 3 52 24 902 4.8914 181.76710 758.99600 704.21167 -7.25596 0.07417 -3.44553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12749 0.20172 -1.00000 - 2869 2017 8 21 3 52 29 793 4.8913 181.76815 758.91438 704.14564 -7.29294 0.07418 -3.45548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12714 0.20172 -1.00000 - 2870 2017 8 21 3 52 34 685 4.8913 181.76909 758.83304 704.07977 -7.32869 0.07435 -3.46505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12678 0.20172 -1.00000 - 2871 2017 8 21 3 52 39 576 4.8912 181.77003 758.75198 704.01404 -7.36320 0.07431 -3.47433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12642 0.20171 -1.00000 - 2872 2017 8 21 3 52 44 467 4.8911 181.77109 758.67115 703.94842 -7.39649 0.07433 -3.48306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12607 0.20171 -1.00000 - 2873 2017 8 21 3 52 49 358 4.8910 181.77226 758.59051 703.88294 -7.42861 0.07408 -3.49122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12571 0.20171 -1.00000 - 2874 2017 8 21 3 52 54 249 4.8909 181.77338 758.51009 703.81757 -7.45963 0.07401 -3.49891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12536 0.20171 -1.00000 - 2875 2017 8 21 3 52 59 140 4.8908 181.77436 758.42989 703.75231 -7.48958 0.07426 -3.50602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12500 0.20171 -1.00000 - 2876 2017 8 21 3 53 4 30 4.8908 181.77530 758.34987 703.68712 -7.51848 0.07422 -3.51295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12465 0.20171 -1.00000 - 2877 2017 8 21 3 53 8 921 4.8907 181.77632 758.26976 703.62200 -7.54631 0.07439 -3.51873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12429 0.20171 -1.00000 - 2878 2017 8 21 3 53 13 812 4.8906 181.77745 758.18984 703.55694 -7.57304 0.07414 -3.52438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12393 0.20171 -1.00000 - 2879 2017 8 21 3 53 18 702 4.8905 181.77859 758.11008 703.49198 -7.59857 0.07394 -3.52929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12358 0.20171 -1.00000 - 2880 2017 8 21 3 53 23 593 4.8904 181.77964 758.03049 703.42708 -7.62282 0.07414 -3.53339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12322 0.20171 -1.00000 - 2881 2017 8 21 3 53 28 483 4.8903 181.78064 757.95102 703.36221 -7.64562 0.07412 -3.53736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12287 0.20171 -1.00000 - 2882 2017 8 21 3 53 33 373 4.8902 181.78168 757.87154 703.29741 -7.66680 0.07447 -3.54026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12251 0.20171 -1.00000 - 2883 2017 8 21 3 53 38 263 4.8902 181.78276 757.79216 703.23263 -7.68614 0.07439 -3.54279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12216 0.20171 -1.00000 - 2884 2017 8 21 3 53 43 153 4.8901 181.78383 757.71278 703.16787 -7.70340 0.07409 -3.54447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12180 0.20171 -1.00000 - 2885 2017 8 21 3 53 48 43 4.8900 181.78488 757.63340 703.10312 -7.71833 0.07411 -3.54561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12144 0.20171 -1.00000 - 2886 2017 8 21 3 53 52 933 4.8899 181.78595 757.55400 703.03839 -7.73071 0.07400 -3.54612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12109 0.20171 -1.00000 - 2887 2017 8 21 3 53 57 823 4.8898 181.78705 757.47461 702.97364 -7.74030 0.07427 -3.54605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12073 0.20171 -1.00000 - 2888 2017 8 21 3 54 2 713 4.8897 181.78817 757.39508 702.90886 -7.74689 0.07446 -3.54518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12038 0.20171 -1.00000 - 2889 2017 8 21 3 54 7 603 4.8896 181.78922 757.31526 702.84403 -7.75035 0.07436 -3.54348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12002 0.20171 -1.00000 - 2890 2017 8 21 3 54 12 492 4.8896 181.79021 757.23542 702.77917 -7.75058 0.07434 -3.54142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11967 0.20171 -1.00000 - 2891 2017 8 21 3 54 17 382 4.8895 181.79124 757.15550 702.71427 -7.74753 0.07426 -3.53836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11931 0.20171 -1.00000 - 2892 2017 8 21 3 54 22 271 4.8894 181.79236 757.07542 702.64931 -7.74122 0.07432 -3.53501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11896 0.20171 -1.00000 - 2893 2017 8 21 3 54 27 160 4.8893 181.79355 756.99519 702.58430 -7.73166 0.07427 -3.53089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11860 0.20171 -1.00000 - 2894 2017 8 21 3 54 32 49 4.8892 181.79467 756.91475 702.51921 -7.71892 0.07426 -3.52608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11824 0.20171 -1.00000 - 2895 2017 8 21 3 54 36 939 4.8891 181.79567 756.83410 702.45404 -7.70309 0.07448 -3.52071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11789 0.20171 -1.00000 - 2896 2017 8 21 3 54 41 828 4.8891 181.79665 756.75325 702.38878 -7.68428 0.07453 -3.51477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11753 0.20171 -1.00000 - 2897 2017 8 21 3 54 46 717 4.8890 181.79773 756.67212 702.32344 -7.66265 0.07458 -3.50810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11718 0.20171 -1.00000 - 2898 2017 8 21 3 54 51 606 4.8889 181.79894 756.59082 702.25800 -7.63833 0.07432 -3.50108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11682 0.20171 -1.00000 - 2899 2017 8 21 3 54 56 494 4.8888 181.80012 756.50927 702.19245 -7.61151 0.07415 -3.49346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11647 0.20170 -1.00000 - 2900 2017 8 21 3 55 1 383 4.8887 181.80115 756.42740 702.12680 -7.58234 0.07439 -3.48490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11611 0.20170 -1.00000 - 2901 2017 8 21 3 55 6 272 4.8886 181.80214 756.34516 702.06100 -7.55100 0.07440 -3.47611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11576 0.20170 -1.00000 - 2902 2017 8 21 3 55 11 160 4.8885 181.80323 756.26271 701.99509 -7.51767 0.07460 -3.46668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11540 0.20170 -1.00000 - 2903 2017 8 21 3 55 16 49 4.8885 181.80442 756.17999 701.92907 -7.48252 0.07431 -3.45656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11504 0.20170 -1.00000 - 2904 2017 8 21 3 55 20 937 4.8884 181.80559 756.09705 701.86294 -7.44572 0.07414 -3.44581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11469 0.20170 -1.00000 - 2905 2017 8 21 3 55 25 825 4.8883 181.80666 756.01392 701.79670 -7.40746 0.07428 -3.43463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11433 0.20170 -1.00000 - 2906 2017 8 21 3 55 30 713 4.8882 181.80770 755.93058 701.73033 -7.36790 0.07430 -3.42282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11398 0.20170 -1.00000 - 2907 2017 8 21 3 55 35 602 4.8881 181.80884 755.84702 701.66384 -7.32725 0.07463 -3.41103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11362 0.20170 -1.00000 - 2908 2017 8 21 3 55 40 490 4.8880 181.81002 755.76322 701.59722 -7.28565 0.07442 -3.39816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11327 0.20170 -1.00000 - 2909 2017 8 21 3 55 45 378 4.8879 181.81113 755.67911 701.53045 -7.24325 0.07429 -3.38480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11291 0.20170 -1.00000 - 2910 2017 8 21 3 55 50 265 4.8879 181.81218 755.59475 701.46354 -7.20015 0.07425 -3.37220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11256 0.20170 -1.00000 - 2911 2017 8 21 3 55 55 153 4.8878 181.81327 755.51014 701.39648 -7.15643 0.07411 -3.35858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11220 0.20170 -1.00000 - 2912 2017 8 21 3 56 0 41 4.8877 181.81448 755.42524 701.32930 -7.11212 0.07438 -3.34460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11185 0.20170 -1.00000 - 2913 2017 8 21 3 56 4 929 4.8876 181.81571 755.33994 701.26195 -7.06728 0.07430 -3.33121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11149 0.20170 -1.00000 - 2914 2017 8 21 3 56 9 816 4.8875 181.81681 755.25453 701.19446 -7.02192 0.07436 -3.31762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11113 0.20170 -1.00000 - 2915 2017 8 21 3 56 14 703 4.8874 181.81781 755.16882 701.12684 -6.97601 0.07440 -3.30366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11078 0.20170 -1.00000 - 2916 2017 8 21 3 56 19 591 4.8874 181.81888 755.08291 701.05910 -6.92955 0.07427 -3.29003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11042 0.20170 -1.00000 - 2917 2017 8 21 3 56 24 478 4.8873 181.82011 754.99676 700.99121 -6.88259 0.07434 -3.27643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11007 0.20170 -1.00000 - 2918 2017 8 21 3 56 29 365 4.8872 181.82140 754.91031 700.92320 -6.83519 0.07407 -3.26278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10971 0.20170 -1.00000 - 2919 2017 8 21 3 56 34 252 4.8871 181.82256 754.82360 700.85506 -6.78750 0.07422 -3.24956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10936 0.20170 -1.00000 - 2920 2017 8 21 3 56 39 139 4.8870 181.82356 754.73662 700.78679 -6.73969 0.07444 -3.23646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10900 0.20170 -1.00000 - 2921 2017 8 21 3 56 44 26 4.8869 181.82457 754.64933 700.71837 -6.69197 0.07432 -3.22346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10865 0.20170 -1.00000 - 2922 2017 8 21 3 56 48 913 4.8868 181.82574 754.56177 700.64984 -6.64458 0.07441 -3.21042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10829 0.20170 -1.00000 - 2923 2017 8 21 3 56 53 800 4.8867 181.82704 754.47397 700.58118 -6.59775 0.07410 -3.19753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10794 0.20170 -1.00000 - 2924 2017 8 21 3 56 58 687 4.8867 181.82828 754.38596 700.51242 -6.55172 0.07409 -3.18476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10758 0.20170 -1.00000 - 2925 2017 8 21 3 57 3 573 4.8866 181.82935 754.29776 700.44355 -6.50670 0.07441 -3.17210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10723 0.20170 -1.00000 - 2926 2017 8 21 3 57 8 460 4.8865 181.83035 754.20919 700.37455 -6.46287 0.07439 -3.15968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10687 0.20169 -1.00000 - 2927 2017 8 21 3 57 13 346 4.8864 181.83146 754.12058 700.30547 -6.42037 0.07469 -3.14744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10651 0.20169 -1.00000 - 2928 2017 8 21 3 57 18 232 4.8863 181.83267 754.03182 700.23631 -6.37927 0.07436 -3.13527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10616 0.20169 -1.00000 - 2929 2017 8 21 3 57 23 119 4.8862 181.83388 753.94302 700.16707 -6.33961 0.07413 -3.12354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10580 0.20169 -1.00000 - 2930 2017 8 21 3 57 28 5 4.8861 181.83501 753.85409 700.09774 -6.30137 0.07430 -3.11225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10545 0.20169 -1.00000 - 2931 2017 8 21 3 57 32 891 4.8861 181.83609 753.76499 700.02836 -6.26455 0.07422 -3.10078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10509 0.20169 -1.00000 - 2932 2017 8 21 3 57 37 777 4.8860 181.83721 753.67583 699.95888 -6.22910 0.07470 -3.09020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10474 0.20169 -1.00000 - 2933 2017 8 21 3 57 42 663 4.8859 181.83838 753.58652 699.88936 -6.19504 0.07469 -3.07957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10438 0.20169 -1.00000 - 2934 2017 8 21 3 57 47 548 4.8858 181.83949 753.49719 699.81979 -6.16238 0.07439 -3.06958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10403 0.20169 -1.00000 - 2935 2017 8 21 3 57 52 434 4.8857 181.84052 753.40779 699.75017 -6.13115 0.07437 -3.06005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10367 0.20169 -1.00000 - 2936 2017 8 21 3 57 57 320 4.8856 181.84160 753.31830 699.68051 -6.10141 0.07409 -3.05069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10332 0.20169 -1.00000 - 2937 2017 8 21 3 58 2 205 4.8855 181.84279 753.22881 699.61081 -6.07324 0.07431 -3.04228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10296 0.20169 -1.00000 - 2938 2017 8 21 3 58 7 91 4.8855 181.84400 753.13898 699.54104 -6.04832 0.07430 -3.03382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10261 0.20169 -1.00000 - 2939 2017 8 21 3 58 11 976 4.8854 181.84509 753.04921 699.47125 -6.02531 0.07431 -3.02597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10225 0.20169 -1.00000 - 2940 2017 8 21 3 58 16 861 4.8853 181.84604 752.95947 699.40147 -6.00416 0.07444 -3.01898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10190 0.20169 -1.00000 - 2941 2017 8 21 3 58 21 747 4.8852 181.84701 752.86973 699.33168 -5.98494 0.07423 -3.01176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10154 0.20169 -1.00000 - 2942 2017 8 21 3 58 26 632 4.8851 181.84813 752.77991 699.26189 -5.96778 0.07422 -3.00550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10118 0.20169 -1.00000 - 2943 2017 8 21 3 58 31 517 4.8850 181.84936 752.69017 699.19211 -5.95240 0.07387 -2.99975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10083 0.20169 -1.00000 - 2944 2017 8 21 3 58 36 402 4.8850 181.85047 752.60045 699.12236 -5.93848 0.07384 -2.99429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10047 0.20169 -1.00000 - 2945 2017 8 21 3 58 41 287 4.8849 181.85141 752.51083 699.05264 -5.92587 0.07400 -2.98979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10012 0.20169 -1.00000 - 2946 2017 8 21 3 58 46 171 4.8848 181.85231 752.42130 698.98297 -5.91450 0.07381 -2.98612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09976 0.20169 -1.00000 - 2947 2017 8 21 3 58 51 56 4.8847 181.85333 752.33182 698.91335 -5.90434 0.07380 -2.98247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09941 0.20169 -1.00000 - 2948 2017 8 21 3 58 55 941 4.8846 181.85449 752.24246 698.84380 -5.89539 0.07334 -2.97997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09905 0.20169 -1.00000 - 2949 2017 8 21 3 59 0 825 4.8845 181.85564 752.15322 698.77432 -5.88771 0.07308 -2.97802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09870 0.20169 -1.00000 - 2950 2017 8 21 3 59 5 710 4.8845 181.85665 752.06388 698.70489 -5.88135 0.07323 -2.97670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09834 0.20169 -1.00000 - 2951 2017 8 21 3 59 10 594 4.8844 181.85759 751.97481 698.63556 -5.87635 0.07306 -2.97640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09799 0.20169 -1.00000 - 2952 2017 8 21 3 59 15 478 4.8843 181.85860 751.88588 698.56633 -5.87278 0.07319 -2.97659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09763 0.20169 -1.00000 - 2953 2017 8 21 3 59 20 363 4.8842 181.85967 751.79710 698.49721 -5.87070 0.07289 -2.97763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09728 0.20169 -1.00000 - 2954 2017 8 21 3 59 25 247 4.8841 181.86071 751.70850 698.42820 -5.87017 0.07266 -2.97924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09692 0.20168 -1.00000 - 2955 2017 8 21 3 59 30 131 4.8840 181.86175 751.62009 698.35932 -5.87124 0.07258 -2.98126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09657 0.20168 -1.00000 - 2956 2017 8 21 3 59 35 15 4.8840 181.86280 751.53192 698.29058 -5.87395 0.07248 -2.98393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09621 0.20168 -1.00000 - 2957 2017 8 21 3 59 39 899 4.8839 181.86384 751.44399 698.22198 -5.87834 0.07247 -2.98706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09586 0.20168 -1.00000 - 2958 2017 8 21 3 59 44 782 4.8838 181.86483 751.35634 698.15355 -5.88443 0.07266 -2.99059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09550 0.20168 -1.00000 - 2959 2017 8 21 3 59 49 666 4.8837 181.86577 751.26903 698.08525 -5.89222 0.07252 -2.99476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09515 0.20168 -1.00000 - 2960 2017 8 21 3 59 54 550 4.8836 181.86676 751.18197 698.01713 -5.90172 0.07239 -2.99903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09479 0.20168 -1.00000 - 2961 2017 8 21 3 59 59 433 4.8835 181.86784 751.09529 697.94920 -5.91292 0.07229 -3.00376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09444 0.20168 -1.00000 - 2962 2017 8 21 4 0 4 317 4.8835 181.86891 751.00902 697.88143 -5.92581 0.07235 -3.00923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09408 0.20168 -1.00000 - 2963 2017 8 21 4 0 9 200 4.8834 181.86990 750.92287 697.81384 -5.94035 0.07244 -3.01430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09373 0.20168 -1.00000 - 2964 2017 8 21 4 0 14 83 4.8833 181.87082 750.83660 697.74638 -5.95652 0.07253 -3.02031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09337 0.20168 -1.00000 - 2965 2017 8 21 4 0 18 967 4.8832 181.87174 750.75090 697.67909 -5.97422 0.07257 -3.02661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09302 0.20168 -1.00000 - 2966 2017 8 21 4 0 23 850 4.8831 181.87268 750.66567 697.61196 -5.99353 0.07240 -3.03318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09266 0.20168 -1.00000 - 2967 2017 8 21 4 0 28 733 4.8830 181.87370 750.58083 697.54501 -6.01441 0.07231 -3.04030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09231 0.20168 -1.00000 - 2968 2017 8 21 4 0 33 616 4.8830 181.87473 750.49640 697.47822 -6.03681 0.07234 -3.04796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09195 0.20168 -1.00000 - 2969 2017 8 21 4 0 38 499 4.8829 181.87571 750.41226 697.41161 -6.06061 0.07246 -3.05575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09160 0.20168 -1.00000 - 2970 2017 8 21 4 0 43 381 4.8828 181.87662 750.32844 697.34518 -6.08568 0.07257 -3.06387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09124 0.20168 -1.00000 - 2971 2017 8 21 4 0 48 264 4.8827 181.87749 750.24503 697.27888 -6.11190 0.07262 -3.07300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09089 0.20168 -1.00000 - 2972 2017 8 21 4 0 53 147 4.8826 181.87835 750.16183 697.21277 -6.13917 0.07259 -3.08194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09053 0.20168 -1.00000 - 2973 2017 8 21 4 0 58 29 4.8825 181.87929 750.07897 697.14686 -6.16736 0.07241 -3.09168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09018 0.20168 -1.00000 - 2974 2017 8 21 4 1 2 912 4.8825 181.88029 749.99647 697.08112 -6.19638 0.07232 -3.10203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08982 0.20168 -1.00000 - 2975 2017 8 21 4 1 7 794 4.8824 181.88126 749.91403 697.01555 -6.22613 0.07244 -3.11249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08946 0.20168 -1.00000 - 2976 2017 8 21 4 1 12 676 4.8823 181.88216 749.83202 696.95017 -6.25658 0.07254 -3.12309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08911 0.20168 -1.00000 - 2977 2017 8 21 4 1 17 559 4.8822 181.88303 749.75039 696.88500 -6.28771 0.07259 -3.13395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08875 0.20168 -1.00000 - 2978 2017 8 21 4 1 22 441 4.8821 181.88388 749.66911 696.82003 -6.31951 0.07269 -3.14490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08840 0.20168 -1.00000 - 2979 2017 8 21 4 1 27 323 4.8821 181.88477 749.58820 696.75525 -6.35201 0.07255 -3.15603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08804 0.20168 -1.00000 - 2980 2017 8 21 4 1 32 205 4.8820 181.88575 749.50765 696.69069 -6.38521 0.07232 -3.16714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08769 0.20168 -1.00000 - 2981 2017 8 21 4 1 37 87 4.8819 181.88675 749.42749 696.62632 -6.41910 0.07231 -3.17831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08733 0.20168 -1.00000 - 2982 2017 8 21 4 1 41 969 4.8818 181.88770 749.34773 696.56215 -6.45371 0.07240 -3.18950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08698 0.20167 -1.00000 - 2983 2017 8 21 4 1 46 850 4.8817 181.88860 749.26832 696.49819 -6.48904 0.07242 -3.20052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08662 0.20167 -1.00000 - 2984 2017 8 21 4 1 51 732 4.8816 181.88951 749.18933 696.43443 -6.52507 0.07260 -3.21158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08627 0.20167 -1.00000 - 2985 2017 8 21 4 1 56 613 4.8816 181.89043 749.11074 696.37085 -6.56179 0.07252 -3.22257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08591 0.20167 -1.00000 - 2986 2017 8 21 4 2 1 495 4.8815 181.89137 749.03251 696.30748 -6.59914 0.07229 -3.23323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08556 0.20167 -1.00000 - 2987 2017 8 21 4 2 6 376 4.8814 181.89235 748.95449 696.24428 -6.63703 0.07223 -3.24361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08520 0.20167 -1.00000 - 2988 2017 8 21 4 2 11 258 4.8813 181.89334 748.87703 696.18125 -6.67534 0.07218 -3.25438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08485 0.20167 -1.00000 - 2989 2017 8 21 4 2 16 139 4.8812 181.89434 748.79987 696.11841 -6.71397 0.07226 -3.26452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08449 0.20167 -1.00000 - 2990 2017 8 21 4 2 21 20 4.8812 181.89532 748.72311 696.05575 -6.75282 0.07238 -3.27459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08414 0.20167 -1.00000 - 2991 2017 8 21 4 2 25 901 4.8811 181.89629 748.64675 695.99325 -6.79171 0.07242 -3.28470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08378 0.20167 -1.00000 - 2992 2017 8 21 4 2 30 782 4.8810 181.89723 748.57065 695.93090 -6.83043 0.07239 -3.29398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08343 0.20167 -1.00000 - 2993 2017 8 21 4 2 35 663 4.8809 181.89817 748.49486 695.86870 -6.86879 0.07237 -3.30322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08307 0.20167 -1.00000 - 2994 2017 8 21 4 2 40 544 4.8808 181.89918 748.41944 695.80665 -6.90658 0.07232 -3.31240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08272 0.20167 -1.00000 - 2995 2017 8 21 4 2 45 425 4.8807 181.90024 748.34430 695.74474 -6.94361 0.07218 -3.32088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08237 0.20167 -1.00000 - 2996 2017 8 21 4 2 50 305 4.8807 181.90128 748.26939 695.68296 -6.97976 0.07216 -3.32888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08201 0.20167 -1.00000 - 2997 2017 8 21 4 2 55 186 4.8806 181.90226 748.19479 695.62128 -7.01480 0.07226 -3.33693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08166 0.20167 -1.00000 - 2998 2017 8 21 4 3 0 66 4.8805 181.90323 748.12041 695.55972 -7.04846 0.07236 -3.34434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08130 0.20167 -1.00000 - 2999 2017 8 21 4 3 4 947 4.8804 181.90423 748.04612 695.49825 -7.08051 0.07250 -3.35127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08095 0.20167 -1.00000 - 3000 2017 8 21 4 3 9 827 4.8803 181.90525 747.97217 695.43685 -7.11077 0.07242 -3.35837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08059 0.20167 -1.00000 - 3001 2017 8 21 4 3 14 707 4.8803 181.90628 747.89834 695.37554 -7.14414 0.07222 -3.36469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08024 0.20167 -1.00000 - 3002 2017 8 21 4 3 19 588 4.8802 181.90732 747.82466 695.31428 -7.17931 0.07221 -3.37077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07988 0.20167 -1.00000 - 3003 2017 8 21 4 3 24 468 4.8801 181.90836 747.75105 695.25308 -7.21241 0.07218 -3.37632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07953 0.20167 -1.00000 - 3004 2017 8 21 4 3 29 348 4.8800 181.90941 747.67750 695.19191 -7.24280 0.07236 -3.38145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07917 0.20167 -1.00000 - 3005 2017 8 21 4 3 34 228 4.8799 181.91047 747.60395 695.13077 -7.26995 0.07248 -3.38614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07882 0.20167 -1.00000 - 3006 2017 8 21 4 3 39 107 4.8798 181.91150 747.53037 695.06963 -7.29346 0.07247 -3.39023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07846 0.20167 -1.00000 - 3007 2017 8 21 4 3 43 987 4.8798 181.91248 747.45671 695.00847 -7.31309 0.07244 -3.39389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07811 0.20167 -1.00000 - 3008 2017 8 21 4 3 48 867 4.8797 181.91349 747.38289 694.94729 -7.32877 0.07245 -3.39668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07775 0.20167 -1.00000 - 3009 2017 8 21 4 3 53 747 4.8796 181.91459 747.30891 694.88608 -7.34058 0.07240 -3.39873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07740 0.20167 -1.00000 - 3010 2017 8 21 4 3 58 626 4.8795 181.91573 747.23481 694.82484 -7.34874 0.07227 -3.40031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07704 0.20166 -1.00000 - 3011 2017 8 21 4 4 3 505 4.8794 181.91682 747.16054 694.76353 -7.35353 0.07234 -3.40127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07669 0.20166 -1.00000 - 3012 2017 8 21 4 4 8 385 4.8794 181.91783 747.08581 694.70217 -7.35529 0.07247 -3.40125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07633 0.20166 -1.00000 - 3013 2017 8 21 4 4 13 264 4.8793 181.91883 747.01104 694.64074 -7.35435 0.07271 -3.40102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07598 0.20166 -1.00000 - 3014 2017 8 21 4 4 18 143 4.8792 181.91989 746.93598 694.57927 -7.35106 0.07273 -3.39988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07562 0.20166 -1.00000 - 3015 2017 8 21 4 4 23 22 4.8791 181.92101 746.86072 694.51772 -7.34575 0.07247 -3.39829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07527 0.20166 -1.00000 - 3016 2017 8 21 4 4 27 901 4.8790 181.92213 746.78518 694.45611 -7.33865 0.07234 -3.39625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07491 0.20166 -1.00000 - 3017 2017 8 21 4 4 32 780 4.8789 181.92320 746.70933 694.39445 -7.32997 0.07237 -3.39327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07456 0.20166 -1.00000 - 3018 2017 8 21 4 4 37 659 4.8789 181.92427 746.63327 694.33272 -7.31984 0.07253 -3.39009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07420 0.20166 -1.00000 - 3019 2017 8 21 4 4 42 538 4.8788 181.92539 746.55693 694.27094 -7.30834 0.07276 -3.38600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07385 0.20166 -1.00000 - 3020 2017 8 21 4 4 47 417 4.8787 181.92649 746.48033 694.20912 -7.29553 0.07269 -3.38136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07349 0.20166 -1.00000 - 3021 2017 8 21 4 4 52 295 4.8786 181.92753 746.40357 694.14727 -7.28143 0.07260 -3.37658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07314 0.20166 -1.00000 - 3022 2017 8 21 4 4 57 174 4.8785 181.92858 746.32668 694.08538 -7.26601 0.07249 -3.37124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07278 0.20166 -1.00000 - 3023 2017 8 21 4 5 2 52 4.8785 181.92971 746.24953 694.02347 -7.24924 0.07256 -3.36522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07243 0.20166 -1.00000 - 3024 2017 8 21 4 5 6 931 4.8784 181.93093 746.17213 693.96156 -7.23108 0.07253 -3.35881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07207 0.20166 -1.00000 - 3025 2017 8 21 4 5 11 809 4.8783 181.93211 746.09484 693.89962 -7.21151 0.07245 -3.35231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07172 0.20166 -1.00000 - 3026 2017 8 21 4 5 16 687 4.8782 181.93315 746.01741 693.83770 -7.19052 0.07271 -3.34483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07136 0.20166 -1.00000 - 3027 2017 8 21 4 5 21 565 4.8781 181.93414 745.93999 693.77578 -7.16812 0.07275 -3.33733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07101 0.20166 -1.00000 - 3028 2017 8 21 4 5 26 443 4.8780 181.93523 745.86261 693.71388 -7.14428 0.07283 -3.32947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07066 0.20166 -1.00000 - 3029 2017 8 21 4 5 31 321 4.8780 181.93647 745.78525 693.65198 -7.11898 0.07260 -3.32106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07030 0.20166 -1.00000 - 3030 2017 8 21 4 5 36 199 4.8779 181.93772 745.70795 693.59010 -7.09220 0.07232 -3.31230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06995 0.20166 -1.00000 - 3031 2017 8 21 4 5 41 77 4.8778 181.93882 745.63075 693.52821 -7.06389 0.07257 -3.30324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06959 0.20166 -1.00000 - 3032 2017 8 21 4 5 45 955 4.8777 181.93985 745.55359 693.46632 -7.03400 0.07252 -3.29359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06924 0.20166 -1.00000 - 3033 2017 8 21 4 5 50 832 4.8776 181.94097 745.47654 693.40443 -7.00251 0.07282 -3.28362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06888 0.20166 -1.00000 - 3034 2017 8 21 4 5 55 710 4.8775 181.94216 745.39962 693.34251 -6.96939 0.07268 -3.27338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06853 0.20166 -1.00000 - 3035 2017 8 21 4 6 0 587 4.8775 181.94336 745.32276 693.28056 -6.93463 0.07241 -3.26227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06817 0.20166 -1.00000 - 3036 2017 8 21 4 6 5 465 4.8774 181.94449 745.24585 693.21854 -6.89825 0.07248 -3.25111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06782 0.20166 -1.00000 - 3037 2017 8 21 4 6 10 342 4.8773 181.94562 745.16911 693.15649 -6.86028 0.07243 -3.23952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06746 0.20166 -1.00000 - 3038 2017 8 21 4 6 15 219 4.8772 181.94681 745.09246 693.09434 -6.82079 0.07274 -3.22772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06711 0.20165 -1.00000 - 3039 2017 8 21 4 6 20 96 4.8771 181.94804 745.01573 693.03210 -6.77990 0.07275 -3.21537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06675 0.20165 -1.00000 - 3040 2017 8 21 4 6 24 973 4.8770 181.94919 744.93896 692.96973 -6.73775 0.07258 -3.20318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06640 0.20165 -1.00000 - 3041 2017 8 21 4 6 29 850 4.8770 181.95027 744.86205 692.90722 -6.69452 0.07258 -3.19057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06604 0.20165 -1.00000 - 3042 2017 8 21 4 6 34 727 4.8769 181.95141 744.78499 692.84456 -6.65043 0.07252 -3.17768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06569 0.20165 -1.00000 - 3043 2017 8 21 4 6 39 604 4.8768 181.95267 744.70776 692.78173 -6.60569 0.07262 -3.16502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06534 0.20165 -1.00000 - 3044 2017 8 21 4 6 44 481 4.8767 181.95398 744.63029 692.71875 -6.56050 0.07248 -3.15185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06498 0.20165 -1.00000 - 3045 2017 8 21 4 6 49 357 4.8766 181.95516 744.55257 692.65555 -6.51505 0.07255 -3.13892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06463 0.20165 -1.00000 - 3046 2017 8 21 4 6 54 234 4.8766 181.95623 744.47443 692.59213 -6.46951 0.07266 -3.12611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06427 0.20165 -1.00000 - 3047 2017 8 21 4 6 59 110 4.8765 181.95734 744.39592 692.52851 -6.42405 0.07262 -3.11334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06392 0.20165 -1.00000 - 3048 2017 8 21 4 7 3 987 4.8764 181.95859 744.31705 692.46469 -6.37883 0.07266 -3.10092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06356 0.20165 -1.00000 - 3049 2017 8 21 4 7 8 863 4.8763 181.95994 744.23766 692.40063 -6.33395 0.07237 -3.08860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06321 0.20165 -1.00000 - 3050 2017 8 21 4 7 13 739 4.8762 181.96119 744.15787 692.33638 -6.28950 0.07242 -3.07631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06285 0.20165 -1.00000 - 3051 2017 8 21 4 7 18 615 4.8761 181.96230 744.07767 692.27194 -6.24558 0.07259 -3.06443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06250 0.20165 -1.00000 - 3052 2017 8 21 4 7 23 491 4.8761 181.96341 743.99706 692.20727 -6.20227 0.07262 -3.05288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06214 0.20165 -1.00000 - 3053 2017 8 21 4 7 28 367 4.8760 181.96464 743.91593 692.14241 -6.15966 0.07275 -3.04125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06179 0.20165 -1.00000 - 3054 2017 8 21 4 7 33 243 4.8759 181.96595 743.83436 692.07738 -6.11791 0.07248 -3.03024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06143 0.20165 -1.00000 - 3055 2017 8 21 4 7 38 119 4.8758 181.96724 743.75238 692.01216 -6.07721 0.07241 -3.01964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06108 0.20165 -1.00000 - 3056 2017 8 21 4 7 42 995 4.8757 181.96842 743.66995 691.94679 -6.03781 0.07256 -3.00921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06073 0.20165 -1.00000 - 3057 2017 8 21 4 7 47 870 4.8756 181.96959 743.58712 691.88126 -6.00067 0.07270 -2.99909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06037 0.20165 -1.00000 - 3058 2017 8 21 4 7 52 746 4.8756 181.97084 743.50393 691.81560 -5.96961 0.07296 -2.98937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06002 0.20165 -1.00000 - 3059 2017 8 21 4 7 57 622 4.8755 181.97212 743.42042 691.74984 -5.94131 0.07273 -2.97993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05966 0.20165 -1.00000 - 3060 2017 8 21 4 8 2 497 4.8754 181.97335 743.33667 691.68397 -5.91599 0.07259 -2.97119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05931 0.20165 -1.00000 - 3061 2017 8 21 4 8 7 372 4.8753 181.97453 743.25253 691.61801 -5.89375 0.07254 -2.96237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05895 0.20165 -1.00000 - 3062 2017 8 21 4 8 12 247 4.8752 181.97576 743.16824 691.55199 -5.87465 0.07265 -2.95402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05860 0.20165 -1.00000 - 3063 2017 8 21 4 8 17 123 4.8751 181.97710 743.08384 691.48595 -5.85865 0.07284 -2.94614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05824 0.20165 -1.00000 - 3064 2017 8 21 4 8 21 998 4.8750 181.97844 742.99939 691.41987 -5.84566 0.07271 -2.93855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05789 0.20165 -1.00000 - 3065 2017 8 21 4 8 26 873 4.8750 181.97963 742.91483 691.35374 -5.83550 0.07279 -2.93198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05753 0.20165 -1.00000 - 3066 2017 8 21 4 8 31 747 4.8749 181.98076 742.83014 691.28765 -5.82790 0.07271 -2.92529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05718 0.20164 -1.00000 - 3067 2017 8 21 4 8 36 622 4.8748 181.98198 742.74548 691.22157 -5.82252 0.07278 -2.91934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05683 0.20164 -1.00000 - 3068 2017 8 21 4 8 41 497 4.8747 181.98337 742.66089 691.15551 -5.81896 0.07276 -2.91424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05647 0.20164 -1.00000 - 3069 2017 8 21 4 8 46 372 4.8746 181.98479 742.57628 691.08950 -5.81677 0.07244 -2.90909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05612 0.20164 -1.00000 - 3070 2017 8 21 4 8 51 246 4.8746 181.98602 742.49174 691.02355 -5.81551 0.07269 -2.90472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05576 0.20164 -1.00000 - 3071 2017 8 21 4 8 56 121 4.8745 181.98714 742.40738 690.95767 -5.81468 0.07272 -2.90114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05541 0.20164 -1.00000 - 3072 2017 8 21 4 9 0 995 4.8744 181.98834 742.32308 690.89186 -5.81384 0.07278 -2.89775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05505 0.20164 -1.00000 - 3073 2017 8 21 4 9 5 869 4.8743 181.98970 742.23884 690.82617 -5.81257 0.07273 -2.89453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05470 0.20164 -1.00000 - 3074 2017 8 21 4 9 10 744 4.8742 181.99114 742.15493 690.76057 -5.81051 0.07235 -2.89223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05434 0.20164 -1.00000 - 3075 2017 8 21 4 9 15 618 4.8741 181.99244 742.07118 690.69508 -5.80739 0.07252 -2.89007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05399 0.20164 -1.00000 - 3076 2017 8 21 4 9 20 492 4.8741 181.99363 741.98762 690.62971 -5.80298 0.07260 -2.88839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05363 0.20164 -1.00000 - 3077 2017 8 21 4 9 25 366 4.8740 181.99486 741.90434 690.56449 -5.79713 0.07285 -2.88717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05328 0.20164 -1.00000 - 3078 2017 8 21 4 9 30 240 4.8739 181.99621 741.82133 690.49938 -5.78971 0.07289 -2.88643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05293 0.20164 -1.00000 - 3079 2017 8 21 4 9 35 113 4.8738 181.99757 741.73853 690.43440 -5.78071 0.07249 -2.88594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05257 0.20164 -1.00000 - 3080 2017 8 21 4 9 39 987 4.8737 181.99886 741.65597 690.36955 -5.77884 0.07251 -2.88596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05222 0.20164 -1.00000 - 3081 2017 8 21 4 9 44 861 4.8736 182.00012 741.57365 690.30485 -5.78260 0.07243 -2.88645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05186 0.20164 -1.00000 - 3082 2017 8 21 4 9 49 734 4.8735 182.00144 741.49161 690.24029 -5.78392 0.07276 -2.88743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05151 0.20164 -1.00000 - 3083 2017 8 21 4 9 54 608 4.8735 182.00284 741.40978 690.17582 -5.78175 0.07291 -2.88909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05115 0.20164 -1.00000 - 3084 2017 8 21 4 9 59 481 4.8734 182.00420 741.32805 690.11150 -5.77538 0.07267 -2.89055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05080 0.20164 -1.00000 - 3085 2017 8 21 4 10 4 354 4.8733 182.00543 741.24655 690.04730 -5.76450 0.07276 -2.89271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05045 0.20164 -1.00000 - 3086 2017 8 21 4 10 9 228 4.8732 182.00665 741.16522 689.98322 -5.74925 0.07258 -2.89544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05009 0.20164 -1.00000 - 3087 2017 8 21 4 10 14 101 4.8731 182.00800 741.08364 689.91925 -5.73006 0.07276 -2.89837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04974 0.20164 -1.00000 - 3088 2017 8 21 4 10 18 974 4.8730 182.00949 741.00240 689.85539 -5.70768 0.07267 -2.90171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04938 0.20164 -1.00000 - 3089 2017 8 21 4 10 23 847 4.8730 182.01092 740.92142 689.79163 -5.68313 0.07242 -2.90565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04903 0.20164 -1.00000 - 3090 2017 8 21 4 10 28 720 4.8729 182.01215 740.84062 689.72799 -5.65755 0.07278 -2.90979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04867 0.20164 -1.00000 - 3091 2017 8 21 4 10 33 592 4.8728 182.01334 740.76000 689.66447 -5.63216 0.07264 -2.91429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04832 0.20164 -1.00000 - 3092 2017 8 21 4 10 38 465 4.8727 182.01466 740.67968 689.60109 -5.61357 0.07283 -2.91968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04796 0.20164 -1.00000 - 3093 2017 8 21 4 10 43 338 4.8726 182.01615 740.59960 689.53784 -5.60700 0.07263 -2.92529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04761 0.20164 -1.00000 - 3094 2017 8 21 4 10 48 210 4.8725 182.01763 740.51974 689.47473 -5.61074 0.07224 -2.93147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04726 0.20163 -1.00000 - 3095 2017 8 21 4 10 53 83 4.8725 182.01892 740.44018 689.41175 -5.62417 0.07258 -2.93840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04690 0.20163 -1.00000 - 3096 2017 8 21 4 10 57 955 4.8724 182.02016 740.36087 689.34894 -5.64120 0.07253 -2.94552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04655 0.20163 -1.00000 - 3097 2017 8 21 4 11 2 827 4.8723 182.02149 740.28193 689.28631 -5.67080 0.07288 -2.95326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04619 0.20163 -1.00000 - 3098 2017 8 21 4 11 7 700 4.8722 182.02293 740.20335 689.22382 -5.70126 0.07271 -2.96178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04584 0.20163 -1.00000 - 3099 2017 8 21 4 11 12 572 4.8721 182.02438 740.12507 689.16155 -5.73235 0.07232 -2.97023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04548 0.20163 -1.00000 - 3100 2017 8 21 4 11 17 444 4.8720 182.02571 740.04725 689.09946 -5.76406 0.07248 -2.97944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04513 0.20163 -1.00000 - 3101 2017 8 21 4 11 22 316 4.8720 182.02702 739.96988 689.03756 -5.79626 0.07250 -2.98918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04478 0.20163 -1.00000 - 3102 2017 8 21 4 11 27 188 4.8719 182.02842 739.89287 688.97587 -5.82893 0.07288 -2.99881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04442 0.20163 -1.00000 - 3103 2017 8 21 4 11 32 59 4.8718 182.02990 739.81631 688.91439 -5.86204 0.07282 -3.00911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04407 0.20163 -1.00000 - 3104 2017 8 21 4 11 36 931 4.8717 182.03128 739.74024 688.85312 -5.89557 0.07257 -3.01978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04371 0.20163 -1.00000 - 3105 2017 8 21 4 11 41 803 4.8716 182.03255 739.66461 688.79207 -5.92944 0.07261 -3.03043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04336 0.20163 -1.00000 - 3106 2017 8 21 4 11 46 674 4.8715 182.03387 739.58947 688.73125 -5.96353 0.07255 -3.04118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04300 0.20163 -1.00000 - 3107 2017 8 21 4 11 51 546 4.8714 182.03536 739.51488 688.67063 -5.99791 0.07271 -3.05241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04265 0.20163 -1.00000 - 3108 2017 8 21 4 11 56 417 4.8714 182.03693 739.44073 688.61025 -6.03634 0.07253 -3.06340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04230 0.20163 -1.00000 - 3109 2017 8 21 4 12 1 288 4.8713 182.03831 739.36712 688.55010 -6.07948 0.07259 -3.07473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04194 0.20163 -1.00000 - 3110 2017 8 21 4 12 6 160 4.8712 182.03955 739.29399 688.49015 -6.12276 0.07271 -3.08599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04159 0.20163 -1.00000 - 3111 2017 8 21 4 12 11 31 4.8711 182.04085 739.22131 688.43043 -6.17118 0.07267 -3.09699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04123 0.20163 -1.00000 - 3112 2017 8 21 4 12 15 902 4.8710 182.04234 739.14912 688.37091 -6.22808 0.07269 -3.10803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04088 0.20163 -1.00000 - 3113 2017 8 21 4 12 20 773 4.8709 182.04394 739.07740 688.31159 -6.28480 0.07232 -3.11881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04052 0.20163 -1.00000 - 3114 2017 8 21 4 12 25 643 4.8709 182.04537 739.00609 688.25246 -6.34080 0.07233 -3.12949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04017 0.20163 -1.00000 - 3115 2017 8 21 4 12 30 514 4.8708 182.04666 738.93518 688.19353 -6.39558 0.07251 -3.13982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03982 0.20163 -1.00000 - 3116 2017 8 21 4 12 35 385 4.8707 182.04798 738.86466 688.13478 -6.44871 0.07261 -3.14990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03946 0.20163 -1.00000 - 3117 2017 8 21 4 12 40 256 4.8706 182.04944 738.79454 688.07619 -6.49981 0.07269 -3.15950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03911 0.20163 -1.00000 - 3118 2017 8 21 4 12 45 126 4.8705 182.05100 738.72476 688.01776 -6.54863 0.07234 -3.16897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03875 0.20163 -1.00000 - 3119 2017 8 21 4 12 49 996 4.8704 182.05247 738.65529 687.95949 -6.59500 0.07228 -3.17797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03840 0.20163 -1.00000 - 3120 2017 8 21 4 12 54 867 4.8704 182.05382 738.58617 687.90136 -6.63883 0.07236 -3.18685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03805 0.20163 -1.00000 - 3121 2017 8 21 4 12 59 737 4.8703 182.05521 738.51729 687.84334 -6.68008 0.07267 -3.19549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03769 0.20163 -1.00000 - 3122 2017 8 21 4 13 4 607 4.8702 182.05670 738.44856 687.78545 -6.71874 0.07282 -3.20339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03734 0.20162 -1.00000 - 3123 2017 8 21 4 13 9 477 4.8701 182.05821 738.38010 687.72766 -6.75487 0.07248 -3.21130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03698 0.20162 -1.00000 - 3124 2017 8 21 4 13 14 347 4.8700 182.05960 738.31181 687.66997 -6.78853 0.07248 -3.21873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03663 0.20162 -1.00000 - 3125 2017 8 21 4 13 19 217 4.8699 182.06096 738.24365 687.61236 -6.82868 0.07233 -3.22581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03627 0.20162 -1.00000 - 3126 2017 8 21 4 13 24 87 4.8698 182.06242 738.17560 687.55483 -6.87534 0.07263 -3.23238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03592 0.20162 -1.00000 - 3127 2017 8 21 4 13 28 957 4.8698 182.06401 738.10766 687.49735 -6.91784 0.07268 -3.23857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03557 0.20162 -1.00000 - 3128 2017 8 21 4 13 33 827 4.8697 182.06556 738.03976 687.43990 -6.95522 0.07242 -3.24419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03521 0.20162 -1.00000 - 3129 2017 8 21 4 13 38 696 4.8696 182.06690 737.97186 687.38249 -6.98684 0.07270 -3.24918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03486 0.20162 -1.00000 - 3130 2017 8 21 4 13 43 566 4.8695 182.06821 737.90394 687.32510 -7.01245 0.07252 -3.25358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03450 0.20162 -1.00000 - 3131 2017 8 21 4 13 48 435 4.8694 182.06967 737.83603 687.26770 -7.03218 0.07273 -3.25748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03415 0.20162 -1.00000 - 3132 2017 8 21 4 13 53 304 4.8693 182.07131 737.76801 687.21029 -7.04641 0.07256 -3.26078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03380 0.20162 -1.00000 - 3133 2017 8 21 4 13 58 174 4.8692 182.07292 737.69986 687.15286 -7.05574 0.07215 -3.26308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03344 0.20162 -1.00000 - 3134 2017 8 21 4 14 3 43 4.8692 182.07429 737.63160 687.09538 -7.06085 0.07254 -3.26525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03309 0.20162 -1.00000 - 3135 2017 8 21 4 14 7 912 4.8691 182.07560 737.56315 687.03786 -7.06250 0.07242 -3.26658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03273 0.20162 -1.00000 - 3136 2017 8 21 4 14 12 781 4.8690 182.07705 737.49458 686.98030 -7.06143 0.07271 -3.26746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03238 0.20162 -1.00000 - 3137 2017 8 21 4 14 17 650 4.8689 182.07866 737.42581 686.92267 -7.05831 0.07254 -3.26770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03203 0.20162 -1.00000 - 3138 2017 8 21 4 14 22 519 4.8688 182.08028 737.35686 686.86498 -7.05372 0.07211 -3.26735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03167 0.20162 -1.00000 - 3139 2017 8 21 4 14 27 387 4.8687 182.08172 737.28769 686.80724 -7.04811 0.07235 -3.26636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03132 0.20162 -1.00000 - 3140 2017 8 21 4 14 32 256 4.8687 182.08309 737.21838 686.74944 -7.04183 0.07236 -3.26478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03096 0.20162 -1.00000 - 3141 2017 8 21 4 14 37 125 4.8686 182.08456 737.14890 686.69155 -7.03506 0.07274 -3.26317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03061 0.20162 -1.00000 - 3142 2017 8 21 4 14 41 993 4.8685 182.08614 737.07913 686.63361 -7.02783 0.07260 -3.26028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03025 0.20162 -1.00000 - 3143 2017 8 21 4 14 46 862 4.8684 182.08770 737.00916 686.57558 -7.02007 0.07219 -3.25727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02990 0.20162 -1.00000 - 3144 2017 8 21 4 14 51 730 4.8683 182.08914 736.93900 686.51750 -7.01166 0.07231 -3.25369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02955 0.20162 -1.00000 - 3145 2017 8 21 4 14 56 598 4.8682 182.09058 736.86871 686.45935 -7.00240 0.07237 -3.24930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02919 0.20162 -1.00000 - 3146 2017 8 21 4 15 1 466 4.8682 182.09215 736.79819 686.40112 -6.99207 0.07268 -3.24450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02884 0.20162 -1.00000 - 3147 2017 8 21 4 15 6 334 4.8681 182.09378 736.72753 686.34284 -6.98044 0.07260 -3.23928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02848 0.20162 -1.00000 - 3148 2017 8 21 4 15 11 202 4.8680 182.09529 736.65672 686.28446 -6.96730 0.07244 -3.23374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02813 0.20162 -1.00000 - 3149 2017 8 21 4 15 16 70 4.8679 182.09665 736.58564 686.22601 -6.95244 0.07252 -3.22717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02778 0.20162 -1.00000 - 3150 2017 8 21 4 15 20 938 4.8678 182.09808 736.51440 686.16749 -6.93571 0.07249 -3.22057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02742 0.20161 -1.00000 - 3151 2017 8 21 4 15 25 806 4.8677 182.09971 736.44300 686.10887 -6.91701 0.07257 -3.21400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02707 0.20161 -1.00000 - 3152 2017 8 21 4 15 30 673 4.8676 182.10144 736.37132 686.05017 -6.89624 0.07229 -3.20658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02671 0.20161 -1.00000 - 3153 2017 8 21 4 15 35 541 4.8676 182.10297 736.29940 685.99138 -6.87337 0.07233 -3.19905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02636 0.20161 -1.00000 - 3154 2017 8 21 4 15 40 409 4.8675 182.10431 736.22729 685.93250 -6.84838 0.07250 -3.19124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02601 0.20161 -1.00000 - 3155 2017 8 21 4 15 45 276 4.8674 182.10572 736.15494 685.87353 -6.82131 0.07250 -3.18286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02565 0.20161 -1.00000 - 3156 2017 8 21 4 15 50 143 4.8673 182.10734 736.08235 685.81447 -6.79221 0.07253 -3.17415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02530 0.20161 -1.00000 - 3157 2017 8 21 4 15 55 10 4.8672 182.10907 736.00956 685.75530 -6.76114 0.07213 -3.16528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02494 0.20161 -1.00000 - 3158 2017 8 21 4 15 59 878 4.8671 182.11064 735.93652 685.69604 -6.72819 0.07208 -3.15589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02459 0.20161 -1.00000 - 3159 2017 8 21 4 16 4 745 4.8671 182.11205 735.86324 685.63667 -6.69344 0.07222 -3.14628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02424 0.20161 -1.00000 - 3160 2017 8 21 4 16 9 612 4.8670 182.11351 735.78970 685.57719 -6.65698 0.07243 -3.13620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02388 0.20161 -1.00000 - 3161 2017 8 21 4 16 14 478 4.8669 182.11511 735.71593 685.51762 -6.61891 0.07250 -3.12558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02353 0.20161 -1.00000 - 3162 2017 8 21 4 16 19 345 4.8668 182.11678 735.64199 685.45794 -6.57932 0.07214 -3.11491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02318 0.20161 -1.00000 - 3163 2017 8 21 4 16 24 212 4.8667 182.11833 735.56784 685.39815 -6.53833 0.07209 -3.10404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02282 0.20161 -1.00000 - 3164 2017 8 21 4 16 29 79 4.8666 182.11981 735.49343 685.33827 -6.49607 0.07207 -3.09252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02247 0.20161 -1.00000 - 3165 2017 8 21 4 16 33 945 4.8665 182.12135 735.41883 685.27826 -6.45268 0.07246 -3.08122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02211 0.20161 -1.00000 - 3166 2017 8 21 4 16 38 812 4.8665 182.12301 735.34400 685.21816 -6.40835 0.07253 -3.06952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02176 0.20161 -1.00000 - 3167 2017 8 21 4 16 43 678 4.8664 182.12465 735.26904 685.15796 -6.36331 0.07221 -3.05775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02141 0.20161 -1.00000 - 3168 2017 8 21 4 16 48 544 4.8663 182.12611 735.19384 685.09761 -6.31778 0.07233 -3.04662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02105 0.20161 -1.00000 - 3169 2017 8 21 4 16 53 411 4.8662 182.12757 735.11834 685.03717 -6.27198 0.07223 -3.03460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02070 0.20161 -1.00000 - 3170 2017 8 21 4 16 58 277 4.8661 182.12918 735.04261 684.97662 -6.22615 0.07245 -3.02320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02034 0.20161 -1.00000 - 3171 2017 8 21 4 17 3 143 4.8660 182.13094 734.96673 684.91596 -6.18055 0.07231 -3.01203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01999 0.20161 -1.00000 - 3172 2017 8 21 4 17 8 9 4.8659 182.13261 734.89059 684.85520 -6.13541 0.07201 -3.00060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01964 0.20161 -1.00000 - 3173 2017 8 21 4 17 12 875 4.8659 182.13404 734.81427 684.79435 -6.09093 0.07240 -2.98943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01928 0.20161 -1.00000 - 3174 2017 8 21 4 17 17 740 4.8658 182.13546 734.73784 684.73343 -6.04729 0.07231 -2.97860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01893 0.20161 -1.00000 - 3175 2017 8 21 4 17 22 606 4.8657 182.13707 734.66126 684.67241 -6.00462 0.07250 -2.96795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01857 0.20161 -1.00000 - 3176 2017 8 21 4 17 27 472 4.8656 182.13885 734.58449 684.61132 -5.96297 0.07221 -2.95730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01822 0.20161 -1.00000 - 3177 2017 8 21 4 17 32 337 4.8655 182.14054 734.50762 684.55015 -5.92238 0.07184 -2.94717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01787 0.20161 -1.00000 - 3178 2017 8 21 4 17 37 203 4.8654 182.14202 734.43059 684.48890 -5.88284 0.07216 -2.93714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01751 0.20160 -1.00000 - 3179 2017 8 21 4 17 42 68 4.8654 182.14348 734.35341 684.42759 -5.84434 0.07222 -2.92746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01716 0.20160 -1.00000 - 3180 2017 8 21 4 17 46 933 4.8653 182.14510 734.27613 684.36623 -5.80686 0.07247 -2.91811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01681 0.20160 -1.00000 - 3181 2017 8 21 4 17 51 798 4.8652 182.14684 734.19876 684.30480 -5.77042 0.07219 -2.90913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01645 0.20160 -1.00000 - 3182 2017 8 21 4 17 56 664 4.8651 182.14850 734.12125 684.24332 -5.73511 0.07191 -2.90031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01610 0.20160 -1.00000 - 3183 2017 8 21 4 18 1 529 4.8650 182.15001 734.04367 684.18180 -5.70102 0.07203 -2.89186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01574 0.20160 -1.00000 - 3184 2017 8 21 4 18 6 393 4.8649 182.15156 733.96600 684.12025 -5.67083 0.07226 -2.88366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01539 0.20160 -1.00000 - 3185 2017 8 21 4 18 11 258 4.8648 182.15324 733.88834 684.05867 -5.64325 0.07247 -2.87599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01504 0.20160 -1.00000 - 3186 2017 8 21 4 18 16 123 4.8648 182.15498 733.81065 683.99705 -5.61800 0.07218 -2.86886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01468 0.20160 -1.00000 - 3187 2017 8 21 4 18 20 988 4.8647 182.15655 733.73289 683.93543 -5.59518 0.07214 -2.86164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01433 0.20160 -1.00000 - 3188 2017 8 21 4 18 25 852 4.8646 182.15803 733.65515 683.87379 -5.57485 0.07204 -2.85539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01398 0.20160 -1.00000 - 3189 2017 8 21 4 18 30 717 4.8645 182.15962 733.57741 683.81216 -5.55700 0.07226 -2.84946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01362 0.20160 -1.00000 - 3190 2017 8 21 4 18 35 581 4.8644 182.16140 733.49973 683.75053 -5.54163 0.07228 -2.84403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01327 0.20160 -1.00000 - 3191 2017 8 21 4 18 40 446 4.8643 182.16320 733.42208 683.68892 -5.52864 0.07196 -2.83903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01291 0.20160 -1.00000 - 3192 2017 8 21 4 18 45 310 4.8643 182.16474 733.34451 683.62733 -5.51791 0.07219 -2.83460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01256 0.20160 -1.00000 - 3193 2017 8 21 4 18 50 174 4.8642 182.16618 733.26702 683.56576 -5.50929 0.07209 -2.83069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01221 0.20160 -1.00000 - 3194 2017 8 21 4 18 55 38 4.8641 182.16776 733.18957 683.50423 -5.50257 0.07231 -2.82689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01185 0.20160 -1.00000 - 3195 2017 8 21 4 18 59 902 4.8640 182.16956 733.11225 683.44273 -5.49754 0.07217 -2.82406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01150 0.20160 -1.00000 - 3196 2017 8 21 4 19 4 766 4.8639 182.17139 733.03504 683.38129 -5.49397 0.07169 -2.82158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01115 0.20160 -1.00000 - 3197 2017 8 21 4 19 9 630 4.8638 182.17298 732.95791 683.31988 -5.49167 0.07193 -2.81947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01079 0.20160 -1.00000 - 3198 2017 8 21 4 19 14 494 4.8638 182.17446 732.88089 683.25853 -5.49045 0.07194 -2.81771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01044 0.20160 -1.00000 - 3199 2017 8 21 4 19 19 357 4.8637 182.17604 732.80399 683.19724 -5.49017 0.07226 -2.81635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01008 0.20160 -1.00000 - 3200 2017 8 21 4 19 24 221 4.8636 182.17780 732.72725 683.13603 -5.49073 0.07217 -2.81551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00973 0.20160 -1.00000 - 3201 2017 8 21 4 19 29 84 4.8635 182.17960 732.65069 683.07488 -5.49204 0.07171 -2.81524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00938 0.20160 -1.00000 - 3202 2017 8 21 4 19 33 948 4.8634 182.18123 732.57423 683.01381 -5.49409 0.07181 -2.81520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00902 0.20160 -1.00000 - 3203 2017 8 21 4 19 38 811 4.8633 182.18278 732.49792 682.95282 -5.49685 0.07185 -2.81566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00867 0.20160 -1.00000 - 3204 2017 8 21 4 19 43 674 4.8632 182.18443 732.42177 682.89191 -5.50034 0.07229 -2.81659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00832 0.20160 -1.00000 - 3205 2017 8 21 4 19 48 538 4.8632 182.18620 732.34577 682.83109 -5.50459 0.07224 -2.81771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00796 0.20160 -1.00000 - 3206 2017 8 21 4 19 53 401 4.8631 182.18793 732.26992 682.77035 -5.50965 0.07183 -2.81955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00761 0.20159 -1.00000 - 3207 2017 8 21 4 19 58 264 4.8630 182.18950 732.19424 682.70972 -5.51557 0.07193 -2.82171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00725 0.20159 -1.00000 - 3208 2017 8 21 4 20 3 127 4.8629 182.19108 732.11873 682.64920 -5.52239 0.07196 -2.82425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00690 0.20159 -1.00000 - 3209 2017 8 21 4 20 7 989 4.8628 182.19282 732.04341 682.58880 -5.53017 0.07219 -2.82700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00655 0.20159 -1.00000 - 3210 2017 8 21 4 20 12 852 4.8627 182.19468 731.96832 682.52849 -5.53898 0.07204 -2.83039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00619 0.20159 -1.00000 - 3211 2017 8 21 4 20 17 715 4.8626 182.19639 731.89340 682.46832 -5.54887 0.07183 -2.83398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00584 0.20159 -1.00000 - 3212 2017 8 21 4 20 22 577 4.8626 182.19790 731.81876 682.40828 -5.55992 0.07209 -2.83809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00549 0.20159 -1.00000 - 3213 2017 8 21 4 20 27 440 4.8625 182.19945 731.74435 682.34834 -5.57217 0.07209 -2.84289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00513 0.20159 -1.00000 - 3214 2017 8 21 4 20 32 302 4.8624 182.20122 731.67008 682.28854 -5.58567 0.07217 -2.84748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00478 0.20159 -1.00000 - 3215 2017 8 21 4 20 37 164 4.8623 182.20315 731.59608 682.22887 -5.60044 0.07181 -2.85276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00443 0.20159 -1.00000 - 3216 2017 8 21 4 20 42 27 4.8622 182.20488 731.52237 682.16933 -5.61650 0.07163 -2.85855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00407 0.20159 -1.00000 - 3217 2017 8 21 4 20 46 889 4.8621 182.20640 731.44886 682.10992 -5.63381 0.07189 -2.86460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00372 0.20159 -1.00000 - 3218 2017 8 21 4 20 51 751 4.8621 182.20797 731.37557 682.05066 -5.65236 0.07200 -2.87082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00337 0.20159 -1.00000 - 3219 2017 8 21 4 20 56 613 4.8620 182.20974 731.30258 681.99154 -5.67208 0.07210 -2.87755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00301 0.20159 -1.00000 - 3220 2017 8 21 4 21 1 475 4.8619 182.21163 731.22985 681.93256 -5.69289 0.07170 -2.88442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00266 0.20159 -1.00000 - 3221 2017 8 21 4 21 6 337 4.8618 182.21335 731.15735 681.87373 -5.71471 0.07155 -2.89139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00230 0.20159 -1.00000 - 3222 2017 8 21 4 21 11 198 4.8617 182.21493 731.08513 681.81504 -5.73742 0.07162 -2.89875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00195 0.20159 -1.00000 - 3223 2017 8 21 4 21 16 60 4.8616 182.21658 731.01319 681.75650 -5.76094 0.07196 -2.90626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00160 0.20159 -1.00000 - 3224 2017 8 21 4 21 20 921 4.8615 182.21839 730.94150 681.69811 -5.78515 0.07205 -2.91397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00124 0.20159 -1.00000 - 3225 2017 8 21 4 21 25 783 4.8615 182.22023 730.87007 681.63987 -5.81000 0.07168 -2.92156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00089 0.20159 -1.00000 - 3226 2017 8 21 4 21 30 644 4.8614 182.22188 730.79892 681.58177 -5.83542 0.07172 -2.92942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00054 0.20159 -1.00000 - 3227 2017 8 21 4 21 35 506 4.8613 182.22348 730.72805 681.52384 -5.86139 0.07166 -2.93729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00018 0.20159 -1.00000 - 3228 2017 8 21 4 21 40 367 4.8612 182.22521 730.65749 681.46605 -5.88791 0.07196 -2.94541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99983 0.20159 -1.00000 - 3229 2017 8 21 4 21 45 228 4.8611 182.22711 730.58720 681.40841 -5.91497 0.07189 -2.95347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99948 0.20159 -1.00000 - 3230 2017 8 21 4 21 50 89 4.8610 182.22895 730.51718 681.35093 -5.94258 0.07156 -2.96153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99912 0.20159 -1.00000 - 3231 2017 8 21 4 21 54 950 4.8610 182.23054 730.44744 681.29359 -5.97075 0.07185 -2.96966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99877 0.20159 -1.00000 - 3232 2017 8 21 4 21 59 811 4.8609 182.23210 730.37801 681.23639 -5.99946 0.07176 -2.97769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99842 0.20159 -1.00000 - 3233 2017 8 21 4 22 4 672 4.8608 182.23386 730.30884 681.17934 -6.02869 0.07196 -2.98598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99806 0.20159 -1.00000 - 3234 2017 8 21 4 22 9 532 4.8607 182.23582 730.23995 681.12243 -6.05835 0.07168 -2.99422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99771 0.20158 -1.00000 - 3235 2017 8 21 4 22 14 393 4.8606 182.23768 730.17134 681.06566 -6.08834 0.07123 -3.00250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99736 0.20158 -1.00000 - 3236 2017 8 21 4 22 19 253 4.8605 182.23929 730.10295 681.00903 -6.11848 0.07163 -3.01030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99700 0.20158 -1.00000 - 3237 2017 8 21 4 22 24 114 4.8605 182.24087 730.03484 680.95252 -6.14861 0.07167 -3.01833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99665 0.20158 -1.00000 - 3238 2017 8 21 4 22 28 974 4.8604 182.24264 729.96701 680.89615 -6.17854 0.07192 -3.02629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99629 0.20158 -1.00000 - 3239 2017 8 21 4 22 33 835 4.8603 182.24456 729.89942 680.83991 -6.20811 0.07161 -3.03395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99594 0.20158 -1.00000 - 3240 2017 8 21 4 22 38 695 4.8602 182.24640 729.83206 680.78376 -6.23714 0.07121 -3.04179 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99559 0.20158 -1.00000 - 3241 2017 8 21 4 22 43 555 4.8601 182.24805 729.76487 680.72773 -6.26549 0.07141 -3.04919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99523 0.20158 -1.00000 - 3242 2017 8 21 4 22 48 415 4.8600 182.24972 729.69786 680.67180 -6.29303 0.07164 -3.05633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99488 0.20158 -1.00000 - 3243 2017 8 21 4 22 53 275 4.8599 182.25155 729.63106 680.61598 -6.31963 0.07186 -3.06328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99453 0.20158 -1.00000 - 3244 2017 8 21 4 22 58 135 4.8598 182.25345 729.56447 680.56024 -6.34524 0.07156 -3.07027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99417 0.20158 -1.00000 - 3245 2017 8 21 4 23 2 994 4.8598 182.25519 729.49797 680.50460 -6.36979 0.07143 -3.07667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99382 0.20158 -1.00000 - 3246 2017 8 21 4 23 7 854 4.8597 182.25683 729.43164 680.44902 -6.39330 0.07136 -3.08303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99347 0.20158 -1.00000 - 3247 2017 8 21 4 23 12 714 4.8596 182.25857 729.36542 680.39352 -6.41582 0.07169 -3.08903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99311 0.20158 -1.00000 - 3248 2017 8 21 4 23 17 573 4.8595 182.26049 729.29927 680.33808 -6.44327 0.07173 -3.09454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99276 0.20158 -1.00000 - 3249 2017 8 21 4 23 22 433 4.8594 182.26245 729.23321 680.28270 -6.46957 0.07143 -3.09980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99241 0.20158 -1.00000 - 3250 2017 8 21 4 23 27 292 4.8593 182.26413 729.16728 680.22739 -6.49406 0.07159 -3.10477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99205 0.20158 -1.00000 - 3251 2017 8 21 4 23 32 151 4.8593 182.26571 729.10142 680.17210 -6.51647 0.07147 -3.10950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99170 0.20158 -1.00000 - 3252 2017 8 21 4 23 37 10 4.8592 182.26744 729.03553 680.11686 -6.53669 0.07175 -3.11343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99135 0.20158 -1.00000 - 3253 2017 8 21 4 23 41 870 4.8591 182.26941 728.96969 680.06164 -6.55470 0.07160 -3.11709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99099 0.20158 -1.00000 - 3254 2017 8 21 4 23 46 729 4.8590 182.27142 728.90389 680.00647 -6.57062 0.07113 -3.12052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99064 0.20158 -1.00000 - 3255 2017 8 21 4 23 51 587 4.8589 182.27314 728.83814 679.95131 -6.58463 0.07137 -3.12345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99029 0.20158 -1.00000 - 3256 2017 8 21 4 23 56 446 4.8588 182.27473 728.77235 679.89616 -6.59697 0.07135 -3.12591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98993 0.20158 -1.00000 - 3257 2017 8 21 4 24 1 305 4.8588 182.27646 728.70656 679.84102 -6.60790 0.07172 -3.12815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98958 0.20158 -1.00000 - 3258 2017 8 21 4 24 6 164 4.8587 182.27839 728.64073 679.78586 -6.61768 0.07158 -3.12992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98923 0.20158 -1.00000 - 3259 2017 8 21 4 24 11 22 4.8586 182.28038 728.57480 679.73071 -6.62651 0.07110 -3.13089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98887 0.20158 -1.00000 - 3260 2017 8 21 4 24 15 881 4.8585 182.28213 728.50887 679.67555 -6.63452 0.07120 -3.13196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98852 0.20158 -1.00000 - 3261 2017 8 21 4 24 20 739 4.8584 182.28380 728.44289 679.62038 -6.64177 0.07128 -3.13257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98817 0.20158 -1.00000 - 3262 2017 8 21 4 24 25 598 4.8583 182.28560 728.37681 679.56520 -6.64821 0.07170 -3.13272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98781 0.20157 -1.00000 - 3263 2017 8 21 4 24 30 456 4.8582 182.28753 728.31067 679.51000 -6.65372 0.07158 -3.13240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98746 0.20157 -1.00000 - 3264 2017 8 21 4 24 35 314 4.8582 182.28943 728.24446 679.45477 -6.65813 0.07116 -3.13171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98711 0.20157 -1.00000 - 3265 2017 8 21 4 24 40 172 4.8581 182.29114 728.17812 679.39952 -6.66120 0.07126 -3.13049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98675 0.20157 -1.00000 - 3266 2017 8 21 4 24 45 30 4.8580 182.29286 728.11171 679.34425 -6.66270 0.07141 -3.12898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98640 0.20157 -1.00000 - 3267 2017 8 21 4 24 49 888 4.8579 182.29475 728.04520 679.28896 -6.66238 0.07163 -3.12705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98605 0.20157 -1.00000 - 3268 2017 8 21 4 24 54 746 4.8578 182.29676 727.97860 679.23362 -6.66001 0.07144 -3.12472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98569 0.20157 -1.00000 - 3269 2017 8 21 4 24 59 603 4.8577 182.29861 727.91185 679.17824 -6.65542 0.07119 -3.12180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98534 0.20157 -1.00000 - 3270 2017 8 21 4 25 4 461 4.8577 182.30025 727.84497 679.12282 -6.64847 0.07140 -3.11839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98499 0.20157 -1.00000 - 3271 2017 8 21 4 25 9 319 4.8576 182.30195 727.77798 679.06737 -6.63912 0.07149 -3.11454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98463 0.20157 -1.00000 - 3272 2017 8 21 4 25 14 176 4.8575 182.30390 727.71093 679.01188 -6.62737 0.07154 -3.11032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98428 0.20157 -1.00000 - 3273 2017 8 21 4 25 19 34 4.8574 182.30599 727.64374 678.95631 -6.61329 0.07116 -3.10579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98393 0.20157 -1.00000 - 3274 2017 8 21 4 25 23 891 4.8573 182.30785 727.57638 678.90069 -6.59698 0.07104 -3.10056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98357 0.20157 -1.00000 - 3275 2017 8 21 4 25 28 748 4.8572 182.30948 727.50887 678.84502 -6.57861 0.07124 -3.09491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98322 0.20157 -1.00000 - 3276 2017 8 21 4 25 33 605 4.8572 182.31119 727.44129 678.78929 -6.55835 0.07144 -3.08898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98287 0.20157 -1.00000 - 3277 2017 8 21 4 25 38 462 4.8571 182.31315 727.37357 678.73347 -6.53638 0.07144 -3.08292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98251 0.20157 -1.00000 - 3278 2017 8 21 4 25 43 319 4.8570 182.31521 727.30565 678.67759 -6.51287 0.07097 -3.07621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98216 0.20157 -1.00000 - 3279 2017 8 21 4 25 48 176 4.8569 182.31705 727.23761 678.62162 -6.48802 0.07088 -3.06949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98181 0.20157 -1.00000 - 3280 2017 8 21 4 25 53 33 4.8568 182.31875 727.16937 678.56556 -6.46199 0.07090 -3.06238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98146 0.20157 -1.00000 - 3281 2017 8 21 4 25 57 890 4.8567 182.32055 727.10090 678.50941 -6.43493 0.07133 -3.05472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98110 0.20157 -1.00000 - 3282 2017 8 21 4 26 2 746 4.8566 182.32253 727.03228 678.45319 -6.40698 0.07134 -3.04708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98075 0.20157 -1.00000 - 3283 2017 8 21 4 26 7 603 4.8566 182.32453 726.96350 678.39688 -6.37823 0.07093 -3.03926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98040 0.20157 -1.00000 - 3284 2017 8 21 4 26 12 459 4.8565 182.32631 726.89451 678.34046 -6.34876 0.07099 -3.03120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98004 0.20157 -1.00000 - 3285 2017 8 21 4 26 17 316 4.8564 182.32804 726.82529 678.28397 -6.31864 0.07102 -3.02277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97969 0.20157 -1.00000 - 3286 2017 8 21 4 26 22 172 4.8563 182.32993 726.75589 678.22737 -6.28791 0.07130 -3.01427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97934 0.20157 -1.00000 - 3287 2017 8 21 4 26 27 28 4.8562 182.33198 726.68630 678.17069 -6.25660 0.07116 -3.00554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97898 0.20157 -1.00000 - 3288 2017 8 21 4 26 31 885 4.8561 182.33395 726.61650 678.11391 -6.22472 0.07079 -2.99673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97863 0.20157 -1.00000 - 3289 2017 8 21 4 26 36 741 4.8561 182.33567 726.54652 678.05706 -6.19229 0.07107 -2.98782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97828 0.20157 -1.00000 - 3290 2017 8 21 4 26 41 597 4.8560 182.33738 726.47637 678.00012 -6.15934 0.07109 -2.97887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97792 0.20156 -1.00000 - 3291 2017 8 21 4 26 46 452 4.8559 182.33932 726.40602 677.94309 -6.12589 0.07126 -2.96963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97757 0.20156 -1.00000 - 3292 2017 8 21 4 26 51 308 4.8558 182.34143 726.33550 677.88598 -6.09200 0.07092 -2.96042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97722 0.20156 -1.00000 - 3293 2017 8 21 4 26 56 164 4.8557 182.34340 726.26482 677.82880 -6.05774 0.07056 -2.95113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97686 0.20156 -1.00000 - 3294 2017 8 21 4 27 1 20 4.8556 182.34512 726.19404 677.77155 -6.02321 0.07091 -2.94193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97651 0.20156 -1.00000 - 3295 2017 8 21 4 27 5 875 4.8556 182.34686 726.12313 677.71420 -5.98854 0.07110 -2.93306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97616 0.20156 -1.00000 - 3296 2017 8 21 4 27 10 731 4.8555 182.34882 726.05198 677.65679 -5.95389 0.07127 -2.92361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97580 0.20156 -1.00000 - 3297 2017 8 21 4 27 15 586 4.8554 182.35091 725.98073 677.59930 -5.91944 0.07086 -2.91460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97545 0.20156 -1.00000 - 3298 2017 8 21 4 27 20 441 4.8553 182.35283 725.90938 677.54176 -5.88539 0.07058 -2.90585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97510 0.20156 -1.00000 - 3299 2017 8 21 4 27 25 296 4.8552 182.35458 725.83790 677.48414 -5.85192 0.07067 -2.89701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97475 0.20156 -1.00000 - 3300 2017 8 21 4 27 30 152 4.8551 182.35641 725.76628 677.42647 -5.81923 0.07106 -2.88828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97439 0.20156 -1.00000 - 3301 2017 8 21 4 27 35 7 4.8550 182.35844 725.69462 677.36874 -5.78750 0.07119 -2.87990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97404 0.20156 -1.00000 - 3302 2017 8 21 4 27 39 862 4.8550 182.36051 725.62286 677.31095 -5.75840 0.07084 -2.87168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97369 0.20156 -1.00000 - 3303 2017 8 21 4 27 44 716 4.8549 182.36234 725.55098 677.25312 -5.73111 0.07082 -2.86341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97333 0.20156 -1.00000 - 3304 2017 8 21 4 27 49 571 4.8548 182.36408 725.47903 677.19524 -5.70486 0.07079 -2.85561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97298 0.20156 -1.00000 - 3305 2017 8 21 4 27 54 426 4.8547 182.36598 725.40705 677.13732 -5.67966 0.07111 -2.84811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97263 0.20156 -1.00000 - 3306 2017 8 21 4 27 59 281 4.8546 182.36808 725.33497 677.07935 -5.65551 0.07104 -2.84082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97227 0.20156 -1.00000 - 3307 2017 8 21 4 28 4 135 4.8545 182.37018 725.26281 677.02136 -5.63244 0.07068 -2.83356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97192 0.20156 -1.00000 - 3308 2017 8 21 4 28 8 990 4.8545 182.37198 725.19063 676.96333 -5.61044 0.07087 -2.82671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97157 0.20156 -1.00000 - 3309 2017 8 21 4 28 13 844 4.8544 182.37369 725.11842 676.90528 -5.58957 0.07086 -2.82005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97122 0.20156 -1.00000 - 3310 2017 8 21 4 28 18 698 4.8543 182.37559 725.04620 676.84721 -5.56986 0.07112 -2.81387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97086 0.20156 -1.00000 - 3311 2017 8 21 4 28 23 552 4.8542 182.37773 724.97394 676.78913 -5.55135 0.07085 -2.80779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97051 0.20156 -1.00000 - 3312 2017 8 21 4 28 28 407 4.8541 182.37985 724.90170 676.73104 -5.53409 0.07035 -2.80229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97016 0.20156 -1.00000 - 3313 2017 8 21 4 28 33 261 4.8540 182.38167 724.82943 676.67292 -5.51811 0.07061 -2.79699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96980 0.20156 -1.00000 - 3314 2017 8 21 4 28 38 114 4.8540 182.38342 724.75711 676.61480 -5.50341 0.07075 -2.79165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96945 0.20156 -1.00000 - 3315 2017 8 21 4 28 42 968 4.8539 182.38536 724.68482 676.55668 -5.48999 0.07110 -2.78701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96910 0.20156 -1.00000 - 3316 2017 8 21 4 28 47 822 4.8538 182.38746 724.61259 676.49857 -5.47785 0.07084 -2.78270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96874 0.20156 -1.00000 - 3317 2017 8 21 4 28 52 676 4.8537 182.38953 724.54038 676.44046 -5.46693 0.07037 -2.77879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96839 0.20156 -1.00000 - 3318 2017 8 21 4 28 57 529 4.8536 182.39138 724.46815 676.38237 -5.45719 0.07047 -2.77500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96804 0.20155 -1.00000 - 3319 2017 8 21 4 29 2 383 4.8535 182.39321 724.39597 676.32428 -5.44855 0.07072 -2.77180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96769 0.20155 -1.00000 - 3320 2017 8 21 4 29 7 236 4.8534 182.39524 724.32382 676.26621 -5.44094 0.07097 -2.76897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96733 0.20155 -1.00000 - 3321 2017 8 21 4 29 12 90 4.8534 182.39737 724.25168 676.20817 -5.43431 0.07073 -2.76653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96698 0.20155 -1.00000 - 3322 2017 8 21 4 29 16 943 4.8533 182.39933 724.17959 676.15017 -5.42859 0.07046 -2.76460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96663 0.20155 -1.00000 - 3323 2017 8 21 4 29 21 796 4.8532 182.40112 724.10757 676.09219 -5.42372 0.07053 -2.76314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96627 0.20155 -1.00000 - 3324 2017 8 21 4 29 26 649 4.8531 182.40300 724.03557 676.03425 -5.41964 0.07083 -2.76188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96592 0.20155 -1.00000 - 3325 2017 8 21 4 29 31 502 4.8530 182.40512 723.96361 675.97636 -5.41632 0.07083 -2.76094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96557 0.20155 -1.00000 - 3326 2017 8 21 4 29 36 355 4.8529 182.40734 723.89174 675.91854 -5.41376 0.07048 -2.76046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96521 0.20155 -1.00000 - 3327 2017 8 21 4 29 41 208 4.8529 182.40927 723.82001 675.86078 -5.41197 0.07048 -2.76037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96486 0.20155 -1.00000 - 3328 2017 8 21 4 29 46 61 4.8528 182.41101 723.74837 675.80308 -5.41098 0.07055 -2.76080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96451 0.20155 -1.00000 - 3329 2017 8 21 4 29 50 914 4.8527 182.41288 723.67681 675.74545 -5.41085 0.07088 -2.76131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96416 0.20155 -1.00000 - 3330 2017 8 21 4 29 55 766 4.8526 182.41503 723.60538 675.68790 -5.41164 0.07074 -2.76222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96380 0.20155 -1.00000 - 3331 2017 8 21 4 30 0 619 4.8525 182.41728 723.53412 675.63045 -5.41344 0.07020 -2.76350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96345 0.20155 -1.00000 - 3332 2017 8 21 4 30 5 471 4.8524 182.41921 723.46304 675.57307 -5.41633 0.07025 -2.76531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96310 0.20155 -1.00000 - 3333 2017 8 21 4 30 10 324 4.8524 182.42100 723.39208 675.51580 -5.42039 0.07032 -2.76721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96274 0.20155 -1.00000 - 3334 2017 8 21 4 30 15 176 4.8523 182.42293 723.32133 675.45861 -5.42571 0.07077 -2.76972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96239 0.20155 -1.00000 - 3335 2017 8 21 4 30 20 28 4.8522 182.42507 723.25074 675.40151 -5.43234 0.07066 -2.77251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96204 0.20155 -1.00000 - 3336 2017 8 21 4 30 24 880 4.8521 182.42724 723.18028 675.34452 -5.44033 0.07018 -2.77535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96169 0.20155 -1.00000 - 3337 2017 8 21 4 30 29 732 4.8520 182.42916 723.11003 675.28763 -5.44969 0.07021 -2.77875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96133 0.20155 -1.00000 - 3338 2017 8 21 4 30 34 584 4.8519 182.43101 723.04000 675.23085 -5.46042 0.07033 -2.78255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96098 0.20155 -1.00000 - 3339 2017 8 21 4 30 39 436 4.8518 182.43305 722.97016 675.17416 -5.47250 0.07065 -2.78664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96063 0.20155 -1.00000 - 3340 2017 8 21 4 30 44 288 4.8518 182.43524 722.90048 675.11760 -5.48587 0.07049 -2.79079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96027 0.20155 -1.00000 - 3341 2017 8 21 4 30 49 139 4.8517 182.43734 722.83103 675.06113 -5.50047 0.07013 -2.79544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95992 0.20155 -1.00000 - 3342 2017 8 21 4 30 53 991 4.8516 182.43919 722.76178 675.00478 -5.51620 0.07033 -2.80026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95957 0.20155 -1.00000 - 3343 2017 8 21 4 30 58 842 4.8515 182.44105 722.69271 674.94856 -5.53297 0.07048 -2.80533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95922 0.20155 -1.00000 - 3344 2017 8 21 4 31 3 694 4.8514 182.44316 722.62387 674.89246 -5.55064 0.07060 -2.81072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95886 0.20155 -1.00000 - 3345 2017 8 21 4 31 8 545 4.8513 182.44544 722.55528 674.83648 -5.56908 0.07024 -2.81642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95851 0.20155 -1.00000 - 3346 2017 8 21 4 31 13 396 4.8513 182.44751 722.48687 674.78061 -5.58815 0.06997 -2.82212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95816 0.20155 -1.00000 - 3347 2017 8 21 4 31 18 248 4.8512 182.44933 722.41868 674.72488 -5.60774 0.07024 -2.82794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95781 0.20154 -1.00000 - 3348 2017 8 21 4 31 23 99 4.8511 182.45121 722.35073 674.66929 -5.62772 0.07054 -2.83400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95745 0.20154 -1.00000 - 3349 2017 8 21 4 31 27 950 4.8510 182.45336 722.28308 674.61384 -5.64800 0.07057 -2.84022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95710 0.20154 -1.00000 - 3350 2017 8 21 4 31 32 801 4.8509 182.45562 722.21566 674.55851 -5.66852 0.07007 -2.84674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95675 0.20154 -1.00000 - 3351 2017 8 21 4 31 37 651 4.8508 182.45765 722.14846 674.50332 -5.68921 0.06990 -2.85313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95639 0.20154 -1.00000 - 3352 2017 8 21 4 31 42 502 4.8508 182.45951 722.08153 674.44826 -5.71003 0.06998 -2.85968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95604 0.20154 -1.00000 - 3353 2017 8 21 4 31 47 353 4.8507 182.46149 722.01486 674.39335 -5.73098 0.07047 -2.86622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95569 0.20154 -1.00000 - 3354 2017 8 21 4 31 52 204 4.8506 182.46368 721.94846 674.33856 -5.75203 0.07051 -2.87296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95534 0.20154 -1.00000 - 3355 2017 8 21 4 31 57 54 4.8505 182.46590 721.88230 674.28391 -5.77320 0.07007 -2.87957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95498 0.20154 -1.00000 - 3356 2017 8 21 4 32 1 904 4.8504 182.46785 721.81643 674.22938 -5.79449 0.07007 -2.88638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95463 0.20154 -1.00000 - 3357 2017 8 21 4 32 6 755 4.8503 182.46972 721.75078 674.17497 -5.81592 0.07008 -2.89303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95428 0.20154 -1.00000 - 3358 2017 8 21 4 32 11 605 4.8503 182.47178 721.68534 674.12069 -5.83749 0.07039 -2.89950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95392 0.20154 -1.00000 - 3359 2017 8 21 4 32 16 455 4.8502 182.47405 721.62015 674.06653 -5.85923 0.07025 -2.90604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95357 0.20154 -1.00000 - 3360 2017 8 21 4 32 21 305 4.8501 182.47627 721.55525 674.01248 -5.88113 0.06986 -2.91260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95322 0.20154 -1.00000 - 3361 2017 8 21 4 32 26 155 4.8500 182.47817 721.49056 673.95853 -5.90318 0.07010 -2.91927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95287 0.20154 -1.00000 - 3362 2017 8 21 4 32 31 5 4.8499 182.48001 721.42602 673.90469 -5.92538 0.07013 -2.92557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95251 0.20154 -1.00000 - 3363 2017 8 21 4 32 35 855 4.8498 182.48210 721.36171 673.85095 -5.94769 0.07034 -2.93200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95216 0.20154 -1.00000 - 3364 2017 8 21 4 32 40 705 4.8497 182.48441 721.29759 673.79730 -5.97008 0.06999 -2.93835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95181 0.20154 -1.00000 - 3365 2017 8 21 4 32 45 554 4.8497 182.48662 721.23362 673.74374 -5.99251 0.06951 -2.94449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95146 0.20154 -1.00000 - 3366 2017 8 21 4 32 50 404 4.8496 182.48855 721.16982 673.69027 -6.01493 0.06982 -2.95052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95110 0.20154 -1.00000 - 3367 2017 8 21 4 32 55 254 4.8495 182.49044 721.10621 673.63687 -6.03728 0.07005 -2.95649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95075 0.20154 -1.00000 - 3368 2017 8 21 4 33 0 103 4.8494 182.49256 721.04271 673.58354 -6.05949 0.07030 -2.96213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95040 0.20154 -1.00000 - 3369 2017 8 21 4 33 4 952 4.8493 182.49483 720.97933 673.53028 -6.08150 0.06993 -2.96742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95005 0.20154 -1.00000 - 3370 2017 8 21 4 33 9 802 4.8492 182.49698 720.91610 673.47710 -6.10323 0.06948 -2.97262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94969 0.20154 -1.00000 - 3371 2017 8 21 4 33 14 651 4.8492 182.49892 720.85303 673.42397 -6.12463 0.06961 -2.97764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94934 0.20154 -1.00000 - 3372 2017 8 21 4 33 19 500 4.8491 182.50091 720.79005 673.37088 -6.14565 0.07000 -2.98259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94899 0.20154 -1.00000 - 3373 2017 8 21 4 33 24 349 4.8490 182.50312 720.72710 673.31785 -6.16620 0.07015 -2.98700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94863 0.20154 -1.00000 - 3374 2017 8 21 4 33 29 198 4.8489 182.50539 720.66425 673.26485 -6.18729 0.06984 -2.99139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94828 0.20154 -1.00000 - 3375 2017 8 21 4 33 34 47 4.8488 182.50743 720.60147 673.21188 -6.20850 0.06971 -2.99560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94793 0.20153 -1.00000 - 3376 2017 8 21 4 33 38 895 4.8488 182.50932 720.53867 673.15893 -6.22888 0.06976 -2.99933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94758 0.20153 -1.00000 - 3377 2017 8 21 4 33 43 744 4.8487 182.51137 720.47590 673.10602 -6.24832 0.07007 -3.00286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94722 0.20153 -1.00000 - 3378 2017 8 21 4 33 48 593 4.8486 182.51366 720.41316 673.05311 -6.26672 0.06996 -3.00618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94687 0.20153 -1.00000 - 3379 2017 8 21 4 33 53 441 4.8485 182.51600 720.35038 673.00021 -6.28401 0.06955 -3.00897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94652 0.20153 -1.00000 - 3380 2017 8 21 4 33 58 289 4.8484 182.51800 720.28755 672.94732 -6.30012 0.06969 -3.01132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94617 0.20153 -1.00000 - 3381 2017 8 21 4 34 3 138 4.8483 182.51986 720.22471 672.89443 -6.31497 0.06977 -3.01341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94581 0.20153 -1.00000 - 3382 2017 8 21 4 34 7 986 4.8483 182.52191 720.16187 672.84155 -6.32851 0.07007 -3.01521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94546 0.20153 -1.00000 - 3383 2017 8 21 4 34 12 834 4.8482 182.52422 720.09897 672.78865 -6.34066 0.06980 -3.01684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94511 0.20153 -1.00000 - 3384 2017 8 21 4 34 17 682 4.8481 182.52655 720.03596 672.73575 -6.35135 0.06925 -3.01781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94476 0.20153 -1.00000 - 3385 2017 8 21 4 34 22 530 4.8480 182.52857 719.97291 672.68284 -6.36052 0.06940 -3.01864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94440 0.20153 -1.00000 - 3386 2017 8 21 4 34 27 378 4.8479 182.53048 719.90981 672.62992 -6.36809 0.06956 -3.01921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94405 0.20153 -1.00000 - 3387 2017 8 21 4 34 32 226 4.8478 182.53259 719.84659 672.57698 -6.37398 0.06995 -3.01925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94370 0.20153 -1.00000 - 3388 2017 8 21 4 34 37 74 4.8477 182.53489 719.78328 672.52403 -6.37813 0.06972 -3.01896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94335 0.20153 -1.00000 - 3389 2017 8 21 4 34 41 922 4.8477 182.53714 719.71993 672.47106 -6.38049 0.06925 -3.01844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94299 0.20153 -1.00000 - 3390 2017 8 21 4 34 46 769 4.8476 182.53914 719.65645 672.41805 -6.38102 0.06933 -3.01731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94264 0.20153 -1.00000 - 3391 2017 8 21 4 34 51 617 4.8475 182.54112 719.59287 672.36503 -6.37970 0.06958 -3.01564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94229 0.20153 -1.00000 - 3392 2017 8 21 4 34 56 464 4.8474 182.54333 719.52921 672.31198 -6.37652 0.06979 -3.01370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94194 0.20153 -1.00000 - 3393 2017 8 21 4 35 1 311 4.8473 182.54567 719.46549 672.25891 -6.37150 0.06953 -3.01136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94158 0.20153 -1.00000 - 3394 2017 8 21 4 35 6 159 4.8472 182.54782 719.40169 672.20579 -6.36468 0.06922 -3.00891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94123 0.20153 -1.00000 - 3395 2017 8 21 4 35 11 6 4.8472 182.54976 719.33771 672.15264 -6.35610 0.06937 -3.00567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94088 0.20153 -1.00000 - 3396 2017 8 21 4 35 15 853 4.8471 182.55178 719.27365 672.09945 -6.34584 0.06971 -3.00238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94053 0.20153 -1.00000 - 3397 2017 8 21 4 35 20 700 4.8470 182.55407 719.20949 672.04621 -6.33397 0.06970 -2.99888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94017 0.20153 -1.00000 - 3398 2017 8 21 4 35 25 547 4.8469 182.55647 719.14517 671.99293 -6.32058 0.06928 -2.99479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93982 0.20153 -1.00000 - 3399 2017 8 21 4 35 30 394 4.8468 182.55858 719.08072 671.93961 -6.30574 0.06919 -2.99051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93947 0.20153 -1.00000 - 3400 2017 8 21 4 35 35 240 4.8468 182.56049 719.01618 671.88624 -6.28956 0.06932 -2.98604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93912 0.20153 -1.00000 - 3401 2017 8 21 4 35 40 87 4.8467 182.56253 718.95147 671.83282 -6.27210 0.06973 -2.98106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93876 0.20153 -1.00000 - 3402 2017 8 21 4 35 44 934 4.8466 182.56485 718.88664 671.77935 -6.25345 0.06959 -2.97565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93841 0.20153 -1.00000 - 3403 2017 8 21 4 35 49 780 4.8465 182.56724 718.82170 671.72584 -6.23365 0.06904 -2.97018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93806 0.20152 -1.00000 - 3404 2017 8 21 4 35 54 627 4.8464 182.56933 718.75667 671.67229 -6.21275 0.06904 -2.96440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93771 0.20152 -1.00000 - 3405 2017 8 21 4 35 59 473 4.8463 182.57128 718.69153 671.61868 -6.19079 0.06917 -2.95853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93735 0.20152 -1.00000 - 3406 2017 8 21 4 36 4 319 4.8463 182.57340 718.62625 671.56503 -6.16777 0.06961 -2.95222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93700 0.20152 -1.00000 - 3407 2017 8 21 4 36 9 165 4.8462 182.57574 718.56088 671.51133 -6.14371 0.06948 -2.94583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93665 0.20152 -1.00000 - 3408 2017 8 21 4 36 14 11 4.8461 182.57806 718.49541 671.45757 -6.11863 0.06899 -2.93929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93630 0.20152 -1.00000 - 3409 2017 8 21 4 36 18 857 4.8460 182.58010 718.42980 671.40376 -6.09253 0.06908 -2.93243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93594 0.20152 -1.00000 - 3410 2017 8 21 4 36 23 703 4.8459 182.58208 718.36409 671.34991 -6.06546 0.06919 -2.92544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93559 0.20152 -1.00000 - 3411 2017 8 21 4 36 28 549 4.8458 182.58430 718.29829 671.29599 -6.03744 0.06946 -2.91836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93524 0.20152 -1.00000 - 3412 2017 8 21 4 36 33 395 4.8457 182.58669 718.23236 671.24202 -6.00856 0.06922 -2.91100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93489 0.20152 -1.00000 - 3413 2017 8 21 4 36 38 241 4.8457 182.58897 718.16633 671.18799 -5.97888 0.06883 -2.90345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93453 0.20152 -1.00000 - 3414 2017 8 21 4 36 43 86 4.8456 182.59095 718.10018 671.13391 -5.94853 0.06907 -2.89579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93418 0.20152 -1.00000 - 3415 2017 8 21 4 36 47 932 4.8455 182.59294 718.03397 671.07978 -5.91763 0.06926 -2.88814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93383 0.20152 -1.00000 - 3416 2017 8 21 4 36 52 777 4.8454 182.59521 717.96767 671.02557 -5.88634 0.06936 -2.88060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93348 0.20152 -1.00000 - 3417 2017 8 21 4 36 57 622 4.8453 182.59764 717.90119 670.97131 -5.85481 0.06892 -2.87254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93313 0.20152 -1.00000 - 3418 2017 8 21 4 37 2 468 4.8453 182.59988 717.83464 670.91698 -5.82323 0.06856 -2.86480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93277 0.20152 -1.00000 - 3419 2017 8 21 4 37 7 313 4.8452 182.60187 717.76801 670.86261 -5.79177 0.06882 -2.85725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93242 0.20152 -1.00000 - 3420 2017 8 21 4 37 12 158 4.8451 182.60392 717.70127 670.80817 -5.76063 0.06926 -2.84948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93207 0.20152 -1.00000 - 3421 2017 8 21 4 37 17 3 4.8450 182.60623 717.63441 670.75367 -5.72998 0.06933 -2.84198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93172 0.20152 -1.00000 - 3422 2017 8 21 4 37 21 848 4.8449 182.60862 717.56747 670.69913 -5.69997 0.06885 -2.83465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93136 0.20152 -1.00000 - 3423 2017 8 21 4 37 26 693 4.8448 182.61079 717.50045 670.64452 -5.67078 0.06863 -2.82736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93101 0.20152 -1.00000 - 3424 2017 8 21 4 37 31 538 4.8448 182.61280 717.43332 670.58988 -5.64421 0.06874 -2.82006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93066 0.20152 -1.00000 - 3425 2017 8 21 4 37 36 382 4.8447 182.61495 717.36613 670.53518 -5.61886 0.06915 -2.81317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93031 0.20152 -1.00000 - 3426 2017 8 21 4 37 41 227 4.8446 182.61733 717.29886 670.48044 -5.59446 0.06914 -2.80639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92995 0.20152 -1.00000 - 3427 2017 8 21 4 37 46 71 4.8445 182.61971 717.23150 670.42566 -5.57109 0.06876 -2.79977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92960 0.20152 -1.00000 - 3428 2017 8 21 4 37 50 916 4.8444 182.62179 717.16407 670.37084 -5.54881 0.06881 -2.79330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92925 0.20152 -1.00000 - 3429 2017 8 21 4 37 55 760 4.8444 182.62376 717.09658 670.31597 -5.52767 0.06887 -2.78693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92890 0.20152 -1.00000 - 3430 2017 8 21 4 38 0 604 4.8443 182.62597 717.02902 670.26108 -5.50775 0.06912 -2.78072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92854 0.20152 -1.00000 - 3431 2017 8 21 4 38 5 449 4.8442 182.62842 716.96144 670.20615 -5.48907 0.06887 -2.77490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92819 0.20151 -1.00000 - 3432 2017 8 21 4 38 10 293 4.8441 182.63082 716.89378 670.15120 -5.47168 0.06844 -2.76907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92784 0.20151 -1.00000 - 3433 2017 8 21 4 38 15 137 4.8440 182.63287 716.82612 670.09622 -5.45561 0.06867 -2.76368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92749 0.20151 -1.00000 - 3434 2017 8 21 4 38 19 981 4.8439 182.63485 716.75841 670.04122 -5.44086 0.06882 -2.75849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92714 0.20151 -1.00000 - 3435 2017 8 21 4 38 24 824 4.8439 182.63707 716.69065 669.98621 -5.42744 0.06904 -2.75317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92678 0.20151 -1.00000 - 3436 2017 8 21 4 38 29 668 4.8438 182.63952 716.62287 669.93117 -5.41533 0.06864 -2.74856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92643 0.20151 -1.00000 - 3437 2017 8 21 4 38 34 512 4.8437 182.64188 716.55509 669.87614 -5.40449 0.06813 -2.74413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92608 0.20151 -1.00000 - 3438 2017 8 21 4 38 39 356 4.8436 182.64396 716.48732 669.82109 -5.39486 0.06834 -2.74005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92573 0.20151 -1.00000 - 3439 2017 8 21 4 38 44 199 4.8435 182.64601 716.41952 669.76605 -5.38637 0.06868 -2.73608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92537 0.20151 -1.00000 - 3440 2017 8 21 4 38 49 43 4.8434 182.64831 716.35174 669.71102 -5.37896 0.06892 -2.73250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92502 0.20151 -1.00000 - 3441 2017 8 21 4 38 53 886 4.8434 182.65072 716.28397 669.65600 -5.37255 0.06858 -2.72911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92467 0.20151 -1.00000 - 3442 2017 8 21 4 38 58 729 4.8433 182.65297 716.21627 669.60100 -5.36706 0.06821 -2.72602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92432 0.20151 -1.00000 - 3443 2017 8 21 4 39 3 572 4.8432 182.65504 716.14863 669.54601 -5.36242 0.06834 -2.72342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92397 0.20151 -1.00000 - 3444 2017 8 21 4 39 8 415 4.8431 182.65719 716.08100 669.49105 -5.35855 0.06872 -2.72083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92361 0.20151 -1.00000 - 3445 2017 8 21 4 39 13 259 4.8430 182.65958 716.01342 669.43611 -5.35536 0.06875 -2.71858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92326 0.20151 -1.00000 - 3446 2017 8 21 4 39 18 101 4.8429 182.66202 715.94593 669.38121 -5.35280 0.06840 -2.71651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92291 0.20151 -1.00000 - 3447 2017 8 21 4 39 22 944 4.8429 182.66419 715.87850 669.32633 -5.35080 0.06836 -2.71496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92256 0.20151 -1.00000 - 3448 2017 8 21 4 39 27 787 4.8428 182.66619 715.81113 669.27150 -5.34933 0.06852 -2.71348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92220 0.20151 -1.00000 - 3449 2017 8 21 4 39 32 630 4.8427 182.66837 715.74386 669.21669 -5.34836 0.06880 -2.71249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92185 0.20151 -1.00000 - 3450 2017 8 21 4 39 37 472 4.8426 182.67082 715.67664 669.16192 -5.34786 0.06857 -2.71171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92150 0.20151 -1.00000 - 3451 2017 8 21 4 39 42 315 4.8425 182.67330 715.60946 669.10720 -5.34785 0.06806 -2.71106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92115 0.20151 -1.00000 - 3452 2017 8 21 4 39 47 157 4.8425 182.67544 715.54236 669.05253 -5.34833 0.06818 -2.71081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92080 0.20151 -1.00000 - 3453 2017 8 21 4 39 52 0 4.8424 182.67745 715.47539 668.99791 -5.34931 0.06835 -2.71092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92044 0.20151 -1.00000 - 3454 2017 8 21 4 39 56 842 4.8423 182.67967 715.40849 668.94333 -5.35082 0.06870 -2.71145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92009 0.20151 -1.00000 - 3455 2017 8 21 4 40 1 684 4.8422 182.68212 715.34162 668.88881 -5.35288 0.06839 -2.71197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91974 0.20151 -1.00000 - 3456 2017 8 21 4 40 6 526 4.8421 182.68455 715.27489 668.83435 -5.35550 0.06784 -2.71298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91939 0.20151 -1.00000 - 3457 2017 8 21 4 40 11 369 4.8421 182.68668 715.20825 668.77995 -5.35870 0.06798 -2.71417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91904 0.20151 -1.00000 - 3458 2017 8 21 4 40 16 210 4.8420 182.68875 715.14168 668.72562 -5.36249 0.06822 -2.71560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91868 0.20151 -1.00000 - 3459 2017 8 21 4 40 21 52 4.8419 182.69106 715.07524 668.67137 -5.36688 0.06853 -2.71728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91833 0.20150 -1.00000 - 3460 2017 8 21 4 40 25 894 4.8418 182.69353 715.00895 668.61718 -5.37187 0.06825 -2.71932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91798 0.20150 -1.00000 - 3461 2017 8 21 4 40 30 736 4.8417 182.69586 714.94277 668.56306 -5.37745 0.06784 -2.72154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91763 0.20150 -1.00000 - 3462 2017 8 21 4 40 35 578 4.8416 182.69795 714.87669 668.50901 -5.38360 0.06796 -2.72385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91727 0.20150 -1.00000 - 3463 2017 8 21 4 40 40 419 4.8416 182.70007 714.81075 668.45506 -5.39031 0.06829 -2.72645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91692 0.20150 -1.00000 - 3464 2017 8 21 4 40 45 261 4.8415 182.70247 714.74500 668.40118 -5.39755 0.06838 -2.72943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91657 0.20150 -1.00000 - 3465 2017 8 21 4 40 50 102 4.8414 182.70499 714.67939 668.34738 -5.40531 0.06801 -2.73277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91622 0.20150 -1.00000 - 3466 2017 8 21 4 40 54 943 4.8413 182.70725 714.61386 668.29366 -5.41359 0.06778 -2.73602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91587 0.20150 -1.00000 - 3467 2017 8 21 4 40 59 784 4.8412 182.70929 714.54852 668.24003 -5.42237 0.06797 -2.73976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91551 0.20150 -1.00000 - 3468 2017 8 21 4 41 4 626 4.8412 182.71145 714.48331 668.18648 -5.43168 0.06837 -2.74358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91516 0.20150 -1.00000 - 3469 2017 8 21 4 41 9 467 4.8411 182.71389 714.41824 668.13303 -5.44153 0.06827 -2.74747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91481 0.20150 -1.00000 - 3470 2017 8 21 4 41 14 308 4.8410 182.71642 714.35334 668.07966 -5.45193 0.06774 -2.75175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91446 0.20150 -1.00000 - 3471 2017 8 21 4 41 19 149 4.8409 182.71865 714.28857 668.02638 -5.46292 0.06766 -2.75595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91411 0.20150 -1.00000 - 3472 2017 8 21 4 41 23 989 4.8408 182.72070 714.22396 667.97319 -5.47450 0.06784 -2.76032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91375 0.20150 -1.00000 - 3473 2017 8 21 4 41 28 830 4.8407 182.72293 714.15954 667.92011 -5.48670 0.06827 -2.76472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91340 0.20150 -1.00000 - 3474 2017 8 21 4 41 33 671 4.8407 182.72540 714.09530 667.86710 -5.49953 0.06811 -2.76953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91305 0.20150 -1.00000 - 3475 2017 8 21 4 41 38 511 4.8406 182.72788 714.03120 667.81420 -5.51300 0.06759 -2.77422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91270 0.20150 -1.00000 - 3476 2017 8 21 4 41 43 352 4.8405 182.73005 713.96728 667.76139 -5.52712 0.06763 -2.77925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91235 0.20150 -1.00000 - 3477 2017 8 21 4 41 48 192 4.8404 182.73213 713.90354 667.70867 -5.54187 0.06778 -2.78435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91199 0.20150 -1.00000 - 3478 2017 8 21 4 41 53 33 4.8403 182.73445 713.83994 667.65605 -5.55724 0.06808 -2.78939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91164 0.20150 -1.00000 - 3479 2017 8 21 4 41 57 873 4.8402 182.73697 713.77651 667.60353 -5.57323 0.06785 -2.79467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91129 0.20150 -1.00000 - 3480 2017 8 21 4 42 2 713 4.8402 182.73941 713.71327 667.55111 -5.58979 0.06742 -2.80002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91094 0.20150 -1.00000 - 3481 2017 8 21 4 42 7 553 4.8401 182.74153 713.65019 667.49878 -5.60688 0.06761 -2.80550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91059 0.20150 -1.00000 - 3482 2017 8 21 4 42 12 393 4.8400 182.74362 713.58727 667.44655 -5.62446 0.06779 -2.81090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91023 0.20150 -1.00000 - 3483 2017 8 21 4 42 17 233 4.8399 182.74600 713.52452 667.39441 -5.64246 0.06795 -2.81630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90988 0.20150 -1.00000 - 3484 2017 8 21 4 42 22 73 4.8398 182.74855 713.46193 667.34237 -5.66082 0.06756 -2.82154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90953 0.20150 -1.00000 - 3485 2017 8 21 4 42 26 913 4.8398 182.75094 713.39952 667.29041 -5.67949 0.06716 -2.82700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90918 0.20150 -1.00000 - 3486 2017 8 21 4 42 31 752 4.8397 182.75305 713.33727 667.23856 -5.69838 0.06739 -2.83222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90883 0.20150 -1.00000 - 3487 2017 8 21 4 42 36 592 4.8396 182.75520 713.27522 667.18680 -5.71741 0.06779 -2.83755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90847 0.20149 -1.00000 - 3488 2017 8 21 4 42 41 431 4.8395 182.75762 713.21334 667.13512 -5.73651 0.06786 -2.84287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90812 0.20149 -1.00000 - 3489 2017 8 21 4 42 46 271 4.8394 182.76016 713.15157 667.08352 -5.75559 0.06738 -2.84769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90777 0.20149 -1.00000 - 3490 2017 8 21 4 42 51 110 4.8394 182.76247 713.08996 667.03201 -5.77459 0.06707 -2.85270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90742 0.20149 -1.00000 - 3491 2017 8 21 4 42 55 950 4.8393 182.76459 713.02854 666.98059 -5.79342 0.06728 -2.85774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90707 0.20149 -1.00000 - 3492 2017 8 21 4 43 0 789 4.8392 182.76684 712.96728 666.92925 -5.81200 0.06774 -2.86258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90671 0.20149 -1.00000 - 3493 2017 8 21 4 43 5 628 4.8391 182.76933 712.90614 666.87798 -5.83025 0.06773 -2.86722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90636 0.20149 -1.00000 - 3494 2017 8 21 4 43 10 467 4.8390 182.77184 712.84516 666.82678 -5.84813 0.06731 -2.87187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90601 0.20149 -1.00000 - 3495 2017 8 21 4 43 15 306 4.8390 182.77406 712.78427 666.77564 -5.86556 0.06725 -2.87614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90566 0.20149 -1.00000 - 3496 2017 8 21 4 43 20 145 4.8389 182.77615 712.72348 666.72456 -5.88249 0.06738 -2.88025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90531 0.20149 -1.00000 - 3497 2017 8 21 4 43 24 984 4.8388 182.77847 712.66284 666.67356 -5.89891 0.06766 -2.88437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90496 0.20149 -1.00000 - 3498 2017 8 21 4 43 29 822 4.8387 182.78103 712.60232 666.62261 -5.91479 0.06744 -2.88828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90460 0.20149 -1.00000 - 3499 2017 8 21 4 43 34 661 4.8386 182.78356 712.54187 666.57170 -5.93162 0.06702 -2.89202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90425 0.20149 -1.00000 - 3500 2017 8 21 4 43 39 499 4.8386 182.78573 712.48146 666.52082 -5.94963 0.06717 -2.89550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90390 0.20149 -1.00000 - 3501 2017 8 21 4 43 44 338 4.8385 182.78781 712.42110 666.47000 -5.96656 0.06737 -2.89867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90355 0.20149 -1.00000 - 3502 2017 8 21 4 43 49 176 4.8384 182.79016 712.36080 666.41921 -5.98221 0.06757 -2.90166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90320 0.20149 -1.00000 - 3503 2017 8 21 4 43 54 15 4.8383 182.79273 712.30055 666.36844 -5.99649 0.06718 -2.90456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90284 0.20149 -1.00000 - 3504 2017 8 21 4 43 58 853 4.8382 182.79523 712.24029 666.31771 -6.00931 0.06668 -2.90700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90249 0.20149 -1.00000 - 3505 2017 8 21 4 44 3 691 4.8382 182.79741 712.18009 666.26699 -6.02069 0.06687 -2.90934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90214 0.20149 -1.00000 - 3506 2017 8 21 4 44 8 529 4.8381 182.79956 712.11987 666.21630 -6.03066 0.06719 -2.91114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90179 0.20149 -1.00000 - 3507 2017 8 21 4 44 13 367 4.8380 182.80197 712.05965 666.16562 -6.03929 0.06741 -2.91285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90144 0.20149 -1.00000 - 3508 2017 8 21 4 44 18 205 4.8379 182.80453 711.99944 666.11496 -6.04669 0.06703 -2.91421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90108 0.20149 -1.00000 - 3509 2017 8 21 4 44 23 43 4.8378 182.80691 711.93927 666.06431 -6.05295 0.06663 -2.91538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90073 0.20149 -1.00000 - 3510 2017 8 21 4 44 27 880 4.8377 182.80908 711.87909 666.01367 -6.05818 0.06676 -2.91629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90038 0.20149 -1.00000 - 3511 2017 8 21 4 44 32 718 4.8377 182.81132 711.81886 665.96302 -6.06247 0.06720 -2.91672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90003 0.20149 -1.00000 - 3512 2017 8 21 4 44 37 556 4.8376 182.81382 711.75863 665.91239 -6.06587 0.06726 -2.91688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89968 0.20149 -1.00000 - 3513 2017 8 21 4 44 42 393 4.8375 182.81639 711.69842 665.86176 -6.06844 0.06689 -2.91687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89933 0.20149 -1.00000 - 3514 2017 8 21 4 44 47 231 4.8374 182.81869 711.63820 665.81112 -6.07017 0.06674 -2.91669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89897 0.20149 -1.00000 - 3515 2017 8 21 4 44 52 68 4.8373 182.82081 711.57792 665.76048 -6.07105 0.06695 -2.91601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89862 0.20148 -1.00000 - 3516 2017 8 21 4 44 56 905 4.8373 182.82310 711.51764 665.70982 -6.07103 0.06728 -2.91518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89827 0.20148 -1.00000 - 3517 2017 8 21 4 45 1 742 4.8372 182.82566 711.45728 665.65914 -6.07006 0.06709 -2.91384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89792 0.20148 -1.00000 - 3518 2017 8 21 4 45 6 579 4.8371 182.82824 711.39687 665.60843 -6.06808 0.06659 -2.91230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89757 0.20148 -1.00000 - 3519 2017 8 21 4 45 11 417 4.8370 182.83049 711.33641 665.55772 -6.06499 0.06662 -2.91044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89722 0.20148 -1.00000 - 3520 2017 8 21 4 45 16 253 4.8369 182.83261 711.27592 665.50697 -6.06076 0.06686 -2.90840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89686 0.20148 -1.00000 - 3521 2017 8 21 4 45 21 90 4.8369 182.83496 711.21534 665.45618 -6.05532 0.06717 -2.90611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89651 0.20148 -1.00000 - 3522 2017 8 21 4 45 25 927 4.8368 182.83754 711.15463 665.40535 -6.04864 0.06687 -2.90328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89616 0.20148 -1.00000 - 3523 2017 8 21 4 45 30 764 4.8367 182.84008 711.09382 665.35450 -6.04073 0.06636 -2.90023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89581 0.20148 -1.00000 - 3524 2017 8 21 4 45 35 600 4.8366 182.84230 711.03297 665.30360 -6.03161 0.06648 -2.89708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89546 0.20148 -1.00000 - 3525 2017 8 21 4 45 40 437 4.8365 182.84446 710.97200 665.25266 -6.02130 0.06673 -2.89376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89510 0.20148 -1.00000 - 3526 2017 8 21 4 45 45 273 4.8365 182.84688 710.91090 665.20168 -6.00989 0.06698 -2.88999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89475 0.20148 -1.00000 - 3527 2017 8 21 4 45 50 110 4.8364 182.84949 710.84971 665.15065 -5.99746 0.06665 -2.88619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89440 0.20148 -1.00000 - 3528 2017 8 21 4 45 54 946 4.8363 182.85196 710.78838 665.09956 -5.98408 0.06623 -2.88200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89405 0.20148 -1.00000 - 3529 2017 8 21 4 45 59 782 4.8362 182.85414 710.72692 665.04844 -5.96986 0.06638 -2.87756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89370 0.20148 -1.00000 - 3530 2017 8 21 4 46 4 618 4.8361 182.85635 710.66537 664.99728 -5.95490 0.06673 -2.87298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89335 0.20148 -1.00000 - 3531 2017 8 21 4 46 9 454 4.8361 182.85885 710.60375 664.94607 -5.93927 0.06684 -2.86821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89299 0.20148 -1.00000 - 3532 2017 8 21 4 46 14 290 4.8360 182.86147 710.54203 664.89480 -5.92305 0.06643 -2.86328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89264 0.20148 -1.00000 - 3533 2017 8 21 4 46 19 126 4.8359 182.86387 710.48017 664.84348 -5.90629 0.06610 -2.85798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89229 0.20148 -1.00000 - 3534 2017 8 21 4 46 23 962 4.8358 182.86603 710.41819 664.79213 -5.88904 0.06632 -2.85245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89194 0.20148 -1.00000 - 3535 2017 8 21 4 46 28 798 4.8357 182.86829 710.35617 664.74073 -5.87133 0.06676 -2.84700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89159 0.20148 -1.00000 - 3536 2017 8 21 4 46 33 634 4.8356 182.87085 710.29406 664.68927 -5.85316 0.06672 -2.84151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89124 0.20148 -1.00000 - 3537 2017 8 21 4 46 38 469 4.8356 182.87347 710.23180 664.63776 -5.83453 0.06623 -2.83567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89088 0.20148 -1.00000 - 3538 2017 8 21 4 46 43 305 4.8355 182.87580 710.16946 664.58620 -5.81545 0.06608 -2.82995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89053 0.20148 -1.00000 - 3539 2017 8 21 4 46 48 140 4.8354 182.87796 710.10699 664.53458 -5.79589 0.06629 -2.82401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89018 0.20148 -1.00000 - 3540 2017 8 21 4 46 52 975 4.8353 182.88030 710.04438 664.48292 -5.77584 0.06666 -2.81786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88983 0.20148 -1.00000 - 3541 2017 8 21 4 46 57 811 4.8352 182.88289 709.98168 664.43120 -5.75531 0.06648 -2.81175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88948 0.20148 -1.00000 - 3542 2017 8 21 4 47 2 646 4.8352 182.88549 709.91891 664.37944 -5.73429 0.06601 -2.80560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88913 0.20148 -1.00000 - 3543 2017 8 21 4 47 7 481 4.8351 182.88776 709.85603 664.32761 -5.71281 0.06602 -2.79943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88877 0.20148 -1.00000 - 3544 2017 8 21 4 47 12 316 4.8350 182.88993 709.79300 664.27574 -5.69089 0.06624 -2.79297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88842 0.20147 -1.00000 - 3545 2017 8 21 4 47 17 151 4.8349 182.89234 709.72986 664.22381 -5.66859 0.06651 -2.78647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88807 0.20147 -1.00000 - 3546 2017 8 21 4 47 21 986 4.8349 182.89497 709.66665 664.17184 -5.64596 0.06621 -2.78015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88772 0.20147 -1.00000 - 3547 2017 8 21 4 47 26 820 4.8348 182.89754 709.60336 664.11982 -5.62310 0.06576 -2.77396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88737 0.20147 -1.00000 - 3548 2017 8 21 4 47 31 655 4.8347 182.89977 709.53994 664.06775 -5.60010 0.06590 -2.76762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88702 0.20147 -1.00000 - 3549 2017 8 21 4 47 36 490 4.8346 182.90196 709.47642 664.01564 -5.57705 0.06617 -2.76141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88667 0.20147 -1.00000 - 3550 2017 8 21 4 47 41 324 4.8345 182.90443 709.41280 663.96347 -5.55406 0.06635 -2.75526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88631 0.20147 -1.00000 - 3551 2017 8 21 4 47 46 159 4.8345 182.90708 709.34908 663.91127 -5.53125 0.06594 -2.74906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88596 0.20147 -1.00000 - 3552 2017 8 21 4 47 50 993 4.8344 182.90958 709.28529 663.85903 -5.50873 0.06554 -2.74312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88561 0.20147 -1.00000 - 3553 2017 8 21 4 47 55 828 4.8343 182.91181 709.22143 663.80676 -5.48658 0.06569 -2.73730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88526 0.20147 -1.00000 - 3554 2017 8 21 4 48 0 662 4.8342 182.91406 709.15750 663.75445 -5.46493 0.06615 -2.73158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88491 0.20147 -1.00000 - 3555 2017 8 21 4 48 5 496 4.8341 182.91659 709.09349 663.70212 -5.44452 0.06624 -2.72581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88456 0.20147 -1.00000 - 3556 2017 8 21 4 48 10 330 4.8341 182.91924 709.02942 663.64976 -5.42526 0.06581 -2.72025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88420 0.20147 -1.00000 - 3557 2017 8 21 4 48 15 164 4.8340 182.92165 708.96534 663.59739 -5.40664 0.06549 -2.71496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88385 0.20147 -1.00000 - 3558 2017 8 21 4 48 19 998 4.8339 182.92386 708.90125 663.54501 -5.38868 0.06573 -2.70989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88350 0.20147 -1.00000 - 3559 2017 8 21 4 48 24 832 4.8338 182.92619 708.83712 663.49260 -5.37140 0.06615 -2.70485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88315 0.20147 -1.00000 - 3560 2017 8 21 4 48 29 665 4.8337 182.92879 708.77297 663.44018 -5.35484 0.06608 -2.70008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88280 0.20147 -1.00000 - 3561 2017 8 21 4 48 34 499 4.8337 182.93143 708.70879 663.38775 -5.33900 0.06565 -2.69541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88245 0.20147 -1.00000 - 3562 2017 8 21 4 48 39 333 4.8336 182.93378 708.64461 663.33532 -5.32388 0.06555 -2.69091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88210 0.20147 -1.00000 - 3563 2017 8 21 4 48 44 166 4.8335 182.93596 708.58045 663.28289 -5.30950 0.06579 -2.68679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88174 0.20147 -1.00000 - 3564 2017 8 21 4 48 49 0 4.8334 182.93835 708.51630 663.23046 -5.29585 0.06609 -2.68285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88139 0.20147 -1.00000 - 3565 2017 8 21 4 48 53 833 4.8333 182.94100 708.45216 663.17801 -5.28292 0.06583 -2.67922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88104 0.20147 -1.00000 - 3566 2017 8 21 4 48 58 666 4.8333 182.94363 708.38799 663.12558 -5.27072 0.06536 -2.67549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88069 0.20147 -1.00000 - 3567 2017 8 21 4 49 3 499 4.8332 182.94593 708.32383 663.07314 -5.25926 0.06542 -2.67225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88034 0.20147 -1.00000 - 3568 2017 8 21 4 49 8 333 4.8331 182.94812 708.25970 663.02073 -5.24856 0.06570 -2.66934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87999 0.20147 -1.00000 - 3569 2017 8 21 4 49 13 166 4.8330 182.95058 708.19560 662.96832 -5.23863 0.06593 -2.66662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87963 0.20147 -1.00000 - 3570 2017 8 21 4 49 17 999 4.8330 182.95325 708.13150 662.91592 -5.22949 0.06557 -2.66417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87928 0.20147 -1.00000 - 3571 2017 8 21 4 49 22 831 4.8329 182.95584 708.06742 662.86352 -5.22120 0.06511 -2.66206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87893 0.20147 -1.00000 - 3572 2017 8 21 4 49 27 664 4.8328 182.95810 708.00333 662.81115 -5.21379 0.06525 -2.66004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87858 0.20146 -1.00000 - 3573 2017 8 21 4 49 32 497 4.8327 182.96034 707.93927 662.75881 -5.20731 0.06561 -2.65823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87823 0.20146 -1.00000 - 3574 2017 8 21 4 49 37 330 4.8326 182.96287 707.87528 662.70650 -5.20179 0.06576 -2.65696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87788 0.20146 -1.00000 - 3575 2017 8 21 4 49 42 162 4.8326 182.96555 707.81134 662.65422 -5.19726 0.06534 -2.65582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87753 0.20146 -1.00000 - 3576 2017 8 21 4 49 46 995 4.8325 182.96806 707.74747 662.60197 -5.19373 0.06497 -2.65505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87717 0.20146 -1.00000 - 3577 2017 8 21 4 49 51 827 4.8324 182.97030 707.68363 662.54977 -5.19121 0.06514 -2.65431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87682 0.20146 -1.00000 - 3578 2017 8 21 4 49 56 659 4.8323 182.97261 707.61987 662.49761 -5.18970 0.06561 -2.65395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87647 0.20146 -1.00000 - 3579 2017 8 21 4 50 1 492 4.8322 182.97521 707.55623 662.44552 -5.18917 0.06565 -2.65400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87612 0.20146 -1.00000 - 3580 2017 8 21 4 50 6 324 4.8322 182.97790 707.49271 662.39347 -5.18961 0.06520 -2.65431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87577 0.20146 -1.00000 - 3581 2017 8 21 4 50 11 156 4.8321 182.98033 707.42926 662.34148 -5.19099 0.06495 -2.65482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87542 0.20146 -1.00000 - 3582 2017 8 21 4 50 15 988 4.8320 182.98254 707.36594 662.28955 -5.19329 0.06522 -2.65567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87507 0.20146 -1.00000 - 3583 2017 8 21 4 50 20 820 4.8319 182.98492 707.30270 662.23767 -5.19647 0.06561 -2.65664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87471 0.20146 -1.00000 - 3584 2017 8 21 4 50 25 652 4.8319 182.98757 707.23958 662.18586 -5.20051 0.06546 -2.65782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87436 0.20146 -1.00000 - 3585 2017 8 21 4 50 30 483 4.8318 182.99025 707.17660 662.13411 -5.20536 0.06499 -2.65942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87401 0.20146 -1.00000 - 3586 2017 8 21 4 50 35 315 4.8317 182.99262 707.11377 662.08244 -5.21099 0.06492 -2.66122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87366 0.20146 -1.00000 - 3587 2017 8 21 4 50 40 147 4.8316 182.99483 707.05107 662.03082 -5.21734 0.06518 -2.66333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87331 0.20146 -1.00000 - 3588 2017 8 21 4 50 44 978 4.8315 182.99728 706.98845 661.97928 -5.22439 0.06547 -2.66538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87296 0.20146 -1.00000 - 3589 2017 8 21 4 50 49 810 4.8315 182.99997 706.92596 661.92780 -5.23210 0.06517 -2.66782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87261 0.20146 -1.00000 - 3590 2017 8 21 4 50 54 641 4.8314 183.00263 706.86362 661.87640 -5.24043 0.06470 -2.67060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87226 0.20146 -1.00000 - 3591 2017 8 21 4 50 59 473 4.8313 183.00494 706.80142 661.82507 -5.24937 0.06479 -2.67353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87190 0.20146 -1.00000 - 3592 2017 8 21 4 51 4 304 4.8312 183.00718 706.73933 661.77382 -5.25888 0.06510 -2.67659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87155 0.20146 -1.00000 - 3593 2017 8 21 4 51 9 135 4.8312 183.00969 706.67738 661.72263 -5.26897 0.06530 -2.67994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87120 0.20146 -1.00000 - 3594 2017 8 21 4 51 13 966 4.8311 183.01241 706.61553 661.67152 -5.27962 0.06490 -2.68332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87085 0.20146 -1.00000 - 3595 2017 8 21 4 51 18 797 4.8310 183.01501 706.55380 661.62049 -5.29084 0.06447 -2.68678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87050 0.20146 -1.00000 - 3596 2017 8 21 4 51 23 628 4.8309 183.01730 706.49223 661.56954 -5.30263 0.06462 -2.69056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87015 0.20146 -1.00000 - 3597 2017 8 21 4 51 28 459 4.8309 183.01958 706.43083 661.51869 -5.31498 0.06503 -2.69445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86980 0.20146 -1.00000 - 3598 2017 8 21 4 51 33 290 4.8308 183.02216 706.36958 661.46790 -5.32787 0.06513 -2.69852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86944 0.20146 -1.00000 - 3599 2017 8 21 4 51 38 120 4.8307 183.02489 706.30844 661.41720 -5.34129 0.06468 -2.70249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86909 0.20146 -1.00000 - 3600 2017 8 21 4 51 42 951 4.8306 183.02742 706.24745 661.36660 -5.35523 0.06433 -2.70668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86874 0.20145 -1.00000 - 3601 2017 8 21 4 51 47 781 4.8305 183.02968 706.18665 661.31609 -5.36965 0.06454 -2.71109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86839 0.20145 -1.00000 - 3602 2017 8 21 4 51 52 612 4.8305 183.03203 706.12602 661.26567 -5.38452 0.06501 -2.71562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86804 0.20145 -1.00000 - 3603 2017 8 21 4 51 57 442 4.8304 183.03468 706.06554 661.21533 -5.39979 0.06500 -2.72009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86769 0.20145 -1.00000 - 3604 2017 8 21 4 52 2 272 4.8303 183.03741 706.00523 661.16508 -5.41542 0.06454 -2.72474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86734 0.20145 -1.00000 - 3605 2017 8 21 4 52 7 103 4.8302 183.03986 705.94506 661.11491 -5.43137 0.06433 -2.72933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86699 0.20145 -1.00000 - 3606 2017 8 21 4 52 11 933 4.8302 183.04210 705.88504 661.06484 -5.44758 0.06460 -2.73383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86663 0.20145 -1.00000 - 3607 2017 8 21 4 52 16 763 4.8301 183.04452 705.82520 661.01485 -5.46400 0.06497 -2.73855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86628 0.20145 -1.00000 - 3608 2017 8 21 4 52 21 593 4.8300 183.04722 705.76555 660.96495 -5.48057 0.06478 -2.74325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86593 0.20145 -1.00000 - 3609 2017 8 21 4 52 26 423 4.8299 183.04994 705.70605 660.91512 -5.49721 0.06430 -2.74797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86558 0.20145 -1.00000 - 3610 2017 8 21 4 52 31 253 4.8298 183.05233 705.64667 660.86538 -5.51389 0.06428 -2.75254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86523 0.20145 -1.00000 - 3611 2017 8 21 4 52 36 82 4.8298 183.05457 705.58743 660.81571 -5.53052 0.06457 -2.75711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86488 0.20145 -1.00000 - 3612 2017 8 21 4 52 40 912 4.8297 183.05706 705.52836 660.76613 -5.54707 0.06484 -2.76177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86453 0.20145 -1.00000 - 3613 2017 8 21 4 52 45 742 4.8296 183.05980 705.46944 660.71663 -5.56349 0.06451 -2.76650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86418 0.20145 -1.00000 - 3614 2017 8 21 4 52 50 571 4.8295 183.06248 705.41062 660.66718 -5.57975 0.06403 -2.77099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86382 0.20145 -1.00000 - 3615 2017 8 21 4 52 55 401 4.8294 183.06482 705.35193 660.61781 -5.59581 0.06414 -2.77546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86347 0.20145 -1.00000 - 3616 2017 8 21 4 53 0 230 4.8294 183.06710 705.29333 660.56850 -5.61165 0.06448 -2.77975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86312 0.20145 -1.00000 - 3617 2017 8 21 4 53 5 59 4.8293 183.06966 705.23486 660.51925 -5.62728 0.06466 -2.78390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86277 0.20145 -1.00000 - 3618 2017 8 21 4 53 9 888 4.8292 183.07241 705.17650 660.47007 -5.64269 0.06425 -2.78805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86242 0.20145 -1.00000 - 3619 2017 8 21 4 53 14 718 4.8291 183.07503 705.11825 660.42095 -5.65790 0.06384 -2.79207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86207 0.20145 -1.00000 - 3620 2017 8 21 4 53 19 547 4.8291 183.07735 705.06010 660.37188 -5.67290 0.06397 -2.79596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86172 0.20145 -1.00000 - 3621 2017 8 21 4 53 24 376 4.8290 183.07967 705.00201 660.32286 -5.68768 0.06442 -2.79944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86137 0.20145 -1.00000 - 3622 2017 8 21 4 53 29 205 4.8289 183.08230 704.94403 660.27389 -5.70220 0.06449 -2.80310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86102 0.20145 -1.00000 - 3623 2017 8 21 4 53 34 33 4.8288 183.08507 704.88612 660.22497 -5.71644 0.06403 -2.80644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86066 0.20145 -1.00000 - 3624 2017 8 21 4 53 38 862 4.8287 183.08762 704.82831 660.17610 -5.73061 0.06371 -2.80970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86031 0.20145 -1.00000 - 3625 2017 8 21 4 53 43 691 4.8287 183.08991 704.77059 660.12726 -5.74443 0.06394 -2.81284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85996 0.20145 -1.00000 - 3626 2017 8 21 4 53 48 519 4.8286 183.09229 704.71289 660.07846 -5.75762 0.06439 -2.81556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85961 0.20145 -1.00000 - 3627 2017 8 21 4 53 53 348 4.8285 183.09499 704.65524 660.02969 -5.77020 0.06434 -2.81815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85926 0.20145 -1.00000 - 3628 2017 8 21 4 53 58 176 4.8284 183.09775 704.59769 659.98096 -5.78220 0.06387 -2.82061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85891 0.20144 -1.00000 - 3629 2017 8 21 4 54 3 5 4.8284 183.10023 704.54018 659.93225 -5.79364 0.06367 -2.82303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85856 0.20144 -1.00000 - 3630 2017 8 21 4 54 7 833 4.8283 183.10250 704.48268 659.88356 -5.80454 0.06396 -2.82502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85821 0.20144 -1.00000 - 3631 2017 8 21 4 54 12 661 4.8282 183.10496 704.42523 659.83489 -5.81487 0.06432 -2.82693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85785 0.20144 -1.00000 - 3632 2017 8 21 4 54 17 489 4.8281 183.10770 704.36778 659.78622 -5.82459 0.06409 -2.82860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85750 0.20144 -1.00000 - 3633 2017 8 21 4 54 22 317 4.8280 183.11045 704.31031 659.73756 -5.83365 0.06361 -2.82989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85715 0.20144 -1.00000 - 3634 2017 8 21 4 54 27 145 4.8280 183.11287 704.25283 659.68891 -5.84195 0.06361 -2.83095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85680 0.20144 -1.00000 - 3635 2017 8 21 4 54 31 973 4.8279 183.11515 704.19537 659.64026 -5.84939 0.06393 -2.83183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85645 0.20144 -1.00000 - 3636 2017 8 21 4 54 36 801 4.8278 183.11768 704.13788 659.59160 -5.85586 0.06419 -2.83244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85610 0.20144 -1.00000 - 3637 2017 8 21 4 54 41 629 4.8277 183.12045 704.08031 659.54292 -5.86123 0.06384 -2.83253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85575 0.20144 -1.00000 - 3638 2017 8 21 4 54 46 457 4.8277 183.12316 704.02269 659.49424 -5.86541 0.06338 -2.83242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85540 0.20144 -1.00000 - 3639 2017 8 21 4 54 51 284 4.8276 183.12552 703.96504 659.44555 -5.86830 0.06348 -2.83214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85505 0.20144 -1.00000 - 3640 2017 8 21 4 54 56 112 4.8275 183.12784 703.90735 659.39683 -5.86984 0.06385 -2.83171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85470 0.20144 -1.00000 - 3641 2017 8 21 4 55 0 939 4.8274 183.13044 703.84956 659.34810 -5.86998 0.06400 -2.83083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85434 0.20144 -1.00000 - 3642 2017 8 21 4 55 5 766 4.8274 183.13324 703.79172 659.29935 -5.86874 0.06358 -2.82983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85399 0.20144 -1.00000 - 3643 2017 8 21 4 55 10 594 4.8273 183.13587 703.73379 659.25056 -5.86613 0.06319 -2.82857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85364 0.20144 -1.00000 - 3644 2017 8 21 4 55 15 421 4.8272 183.13821 703.67576 659.20176 -5.86222 0.06332 -2.82685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85329 0.20144 -1.00000 - 3645 2017 8 21 4 55 20 248 4.8271 183.14058 703.61766 659.15293 -5.85711 0.06380 -2.82516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85294 0.20144 -1.00000 - 3646 2017 8 21 4 55 25 75 4.8271 183.14325 703.55950 659.10409 -5.85090 0.06384 -2.82318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85259 0.20144 -1.00000 - 3647 2017 8 21 4 55 29 902 4.8270 183.14606 703.50127 659.05520 -5.84371 0.06338 -2.82091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85224 0.20144 -1.00000 - 3648 2017 8 21 4 55 34 729 4.8269 183.14862 703.44294 659.00630 -5.83567 0.06307 -2.81831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85189 0.20144 -1.00000 - 3649 2017 8 21 4 55 39 556 4.8268 183.15094 703.38454 658.95737 -5.82689 0.06333 -2.81554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85154 0.20144 -1.00000 - 3650 2017 8 21 4 55 44 383 4.8268 183.15336 703.32609 658.90842 -5.81745 0.06377 -2.81260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85118 0.20144 -1.00000 - 3651 2017 8 21 4 55 49 209 4.8267 183.15610 703.26758 658.85943 -5.80744 0.06367 -2.80956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85083 0.20144 -1.00000 - 3652 2017 8 21 4 55 54 36 4.8266 183.15890 703.20899 658.81042 -5.79690 0.06318 -2.80617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85048 0.20144 -1.00000 - 3653 2017 8 21 4 55 58 862 4.8265 183.16140 703.15032 658.76137 -5.78585 0.06301 -2.80260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85013 0.20144 -1.00000 - 3654 2017 8 21 4 56 3 689 4.8265 183.16369 703.09157 658.71228 -5.77427 0.06332 -2.79880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84978 0.20144 -1.00000 - 3655 2017 8 21 4 56 8 515 4.8264 183.16619 703.03274 658.66316 -5.76214 0.06366 -2.79478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84943 0.20144 -1.00000 - 3656 2017 8 21 4 56 13 342 4.8263 183.16897 702.97382 658.61401 -5.74940 0.06340 -2.79055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84908 0.20143 -1.00000 - 3657 2017 8 21 4 56 18 168 4.8262 183.17175 702.91485 658.56481 -5.73600 0.06292 -2.78627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84873 0.20143 -1.00000 - 3658 2017 8 21 4 56 22 994 4.8262 183.17419 702.85578 658.51557 -5.72187 0.06294 -2.78181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84838 0.20143 -1.00000 - 3659 2017 8 21 4 56 27 820 4.8261 183.17650 702.79658 658.46629 -5.70695 0.06328 -2.77687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84803 0.20143 -1.00000 - 3660 2017 8 21 4 56 32 646 4.8260 183.17907 702.73729 658.41696 -5.69121 0.06353 -2.77217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84767 0.20143 -1.00000 - 3661 2017 8 21 4 56 37 472 4.8259 183.18188 702.67790 658.36760 -5.67463 0.06316 -2.76722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84732 0.20143 -1.00000 - 3662 2017 8 21 4 56 42 298 4.8258 183.18461 702.61842 658.31818 -5.65718 0.06270 -2.76222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84697 0.20143 -1.00000 - 3663 2017 8 21 4 56 47 124 4.8258 183.18700 702.55883 658.26873 -5.63891 0.06280 -2.75714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84662 0.20143 -1.00000 - 3664 2017 8 21 4 56 51 949 4.8257 183.18935 702.49914 658.21924 -5.61987 0.06319 -2.75195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84627 0.20143 -1.00000 - 3665 2017 8 21 4 56 56 775 4.8256 183.19200 702.43934 658.16970 -5.60012 0.06332 -2.74665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84592 0.20143 -1.00000 - 3666 2017 8 21 4 57 1 600 4.8255 183.19483 702.37945 658.12014 -5.57978 0.06289 -2.74122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84557 0.20143 -1.00000 - 3667 2017 8 21 4 57 6 426 4.8255 183.19748 702.31950 658.07053 -5.55895 0.06251 -2.73608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84522 0.20143 -1.00000 - 3668 2017 8 21 4 57 11 251 4.8254 183.19984 702.25945 658.02089 -5.53776 0.06267 -2.73068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84487 0.20143 -1.00000 - 3669 2017 8 21 4 57 16 77 4.8253 183.20225 702.19932 657.97122 -5.51634 0.06315 -2.72526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84452 0.20143 -1.00000 - 3670 2017 8 21 4 57 20 902 4.8252 183.20496 702.13912 657.92152 -5.49483 0.06316 -2.71982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84417 0.20143 -1.00000 - 3671 2017 8 21 4 57 25 727 4.8252 183.20780 702.07888 657.87178 -5.47334 0.06268 -2.71441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84381 0.20143 -1.00000 - 3672 2017 8 21 4 57 30 552 4.8251 183.21039 702.01855 657.82202 -5.45196 0.06239 -2.70883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84346 0.20143 -1.00000 - 3673 2017 8 21 4 57 35 377 4.8250 183.21272 701.95822 657.77224 -5.43080 0.06268 -2.70347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84311 0.20143 -1.00000 - 3674 2017 8 21 4 57 40 202 4.8249 183.21519 701.89785 657.72242 -5.40992 0.06309 -2.69810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84276 0.20143 -1.00000 - 3675 2017 8 21 4 57 45 27 4.8249 183.21796 701.83742 657.67258 -5.38936 0.06295 -2.69249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84241 0.20143 -1.00000 - 3676 2017 8 21 4 57 49 852 4.8248 183.22079 701.77695 657.62270 -5.36933 0.06245 -2.68727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84206 0.20143 -1.00000 - 3677 2017 8 21 4 57 54 676 4.8247 183.22331 701.71645 657.57281 -5.35009 0.06232 -2.68200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84171 0.20143 -1.00000 - 3678 2017 8 21 4 57 59 501 4.8246 183.22564 701.65593 657.52289 -5.33118 0.06264 -2.67696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84136 0.20143 -1.00000 - 3679 2017 8 21 4 58 4 326 4.8246 183.22817 701.59537 657.47295 -5.31268 0.06298 -2.67193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84101 0.20143 -1.00000 - 3680 2017 8 21 4 58 9 150 4.8245 183.23099 701.53476 657.42298 -5.29465 0.06269 -2.66704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84066 0.20143 -1.00000 - 3681 2017 8 21 4 58 13 974 4.8244 183.23379 701.47411 657.37299 -5.27716 0.06221 -2.66231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84031 0.20143 -1.00000 - 3682 2017 8 21 4 58 18 799 4.8243 183.23625 701.41342 657.32297 -5.26027 0.06224 -2.65764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83996 0.20143 -1.00000 - 3683 2017 8 21 4 58 23 623 4.8243 183.23859 701.35270 657.27294 -5.24405 0.06260 -2.65337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83960 0.20143 -1.00000 - 3684 2017 8 21 4 58 28 447 4.8242 183.24120 701.29194 657.22289 -5.22855 0.06282 -2.64918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83925 0.20143 -1.00000 - 3685 2017 8 21 4 58 33 271 4.8241 183.24405 701.23113 657.17282 -5.21382 0.06243 -2.64514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83890 0.20142 -1.00000 - 3686 2017 8 21 4 58 38 95 4.8240 183.24679 701.17028 657.12274 -5.19992 0.06199 -2.64118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83855 0.20142 -1.00000 - 3687 2017 8 21 4 58 42 919 4.8240 183.24920 701.10942 657.07264 -5.18690 0.06209 -2.63760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83820 0.20142 -1.00000 - 3688 2017 8 21 4 58 47 743 4.8239 183.25158 701.04851 657.02255 -5.17479 0.06251 -2.63398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83785 0.20142 -1.00000 - 3689 2017 8 21 4 58 52 567 4.8238 183.25427 700.98763 656.97245 -5.16363 0.06261 -2.63073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83750 0.20142 -1.00000 - 3690 2017 8 21 4 58 57 391 4.8237 183.25713 700.92674 656.92235 -5.15346 0.06216 -2.62768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83715 0.20142 -1.00000 - 3691 2017 8 21 4 59 2 214 4.8237 183.25980 700.86583 656.87225 -5.14429 0.06180 -2.62453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83680 0.20142 -1.00000 - 3692 2017 8 21 4 59 7 38 4.8236 183.26217 700.80493 656.82215 -5.13613 0.06199 -2.62188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83645 0.20142 -1.00000 - 3693 2017 8 21 4 59 11 861 4.8235 183.26461 700.74406 656.77207 -5.12895 0.06246 -2.61934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83610 0.20142 -1.00000 - 3694 2017 8 21 4 59 16 685 4.8234 183.26736 700.68324 656.72201 -5.12275 0.06243 -2.61716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83575 0.20142 -1.00000 - 3695 2017 8 21 4 59 21 508 4.8233 183.27022 700.62245 656.67197 -5.11749 0.06194 -2.61508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83539 0.20142 -1.00000 - 3696 2017 8 21 4 59 26 332 4.8233 183.27282 700.56171 656.62194 -5.11313 0.06167 -2.61332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83504 0.20142 -1.00000 - 3697 2017 8 21 4 59 31 155 4.8232 183.27517 700.50102 656.57194 -5.10963 0.06197 -2.61183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83469 0.20142 -1.00000 - 3698 2017 8 21 4 59 35 978 4.8231 183.27766 700.44035 656.52197 -5.10692 0.06237 -2.61038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83434 0.20142 -1.00000 - 3699 2017 8 21 4 59 40 801 4.8231 183.28047 700.37975 656.47202 -5.10496 0.06219 -2.60939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83399 0.20142 -1.00000 - 3700 2017 8 21 4 59 45 624 4.8230 183.28332 700.31922 656.42211 -5.10367 0.06168 -2.60862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83364 0.20142 -1.00000 - 3701 2017 8 21 4 59 50 447 4.8229 183.28585 700.25876 656.37223 -5.10300 0.06160 -2.60800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83329 0.20142 -1.00000 - 3702 2017 8 21 4 59 55 270 4.8228 183.28819 700.19834 656.32238 -5.10289 0.06191 -2.60753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83294 0.20142 -1.00000 - 3703 2017 8 21 5 0 0 92 4.8228 183.29076 700.13800 656.27257 -5.10329 0.06223 -2.60735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83259 0.20142 -1.00000 - 3704 2017 8 21 5 0 4 915 4.8227 183.29360 700.07773 656.22281 -5.10419 0.06192 -2.60735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83224 0.20142 -1.00000 - 3705 2017 8 21 5 0 9 738 4.8226 183.29641 700.01755 656.17309 -5.10555 0.06143 -2.60774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83189 0.20142 -1.00000 - 3706 2017 8 21 5 0 14 560 4.8225 183.29888 699.95742 656.12341 -5.10737 0.06149 -2.60817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83154 0.20142 -1.00000 - 3707 2017 8 21 5 0 19 383 4.8225 183.30123 699.89737 656.07376 -5.10966 0.06184 -2.60886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83119 0.20142 -1.00000 - 3708 2017 8 21 5 0 24 205 4.8224 183.30388 699.83739 656.02417 -5.11246 0.06204 -2.60973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83084 0.20142 -1.00000 - 3709 2017 8 21 5 0 29 27 4.8223 183.30674 699.77748 655.97461 -5.11579 0.06163 -2.61070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83048 0.20142 -1.00000 - 3710 2017 8 21 5 0 33 850 4.8222 183.30949 699.71765 655.92511 -5.11968 0.06120 -2.61200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83013 0.20142 -1.00000 - 3711 2017 8 21 5 0 38 672 4.8222 183.31191 699.65791 655.87567 -5.12418 0.06131 -2.61352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82978 0.20142 -1.00000 - 3712 2017 8 21 5 0 43 494 4.8221 183.31431 699.59827 655.82627 -5.12931 0.06174 -2.61520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82943 0.20142 -1.00000 - 3713 2017 8 21 5 0 48 316 4.8220 183.31702 699.53869 655.77693 -5.13510 0.06182 -2.61686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82908 0.20141 -1.00000 - 3714 2017 8 21 5 0 53 138 4.8219 183.31990 699.47922 655.72765 -5.14156 0.06137 -2.61898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82873 0.20141 -1.00000 - 3715 2017 8 21 5 0 57 960 4.8219 183.32256 699.41985 655.67843 -5.14869 0.06103 -2.62109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82838 0.20141 -1.00000 - 3716 2017 8 21 5 1 2 782 4.8218 183.32495 699.36060 655.62928 -5.15646 0.06123 -2.62347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82803 0.20141 -1.00000 - 3717 2017 8 21 5 1 7 603 4.8217 183.32740 699.30147 655.58019 -5.16485 0.06168 -2.62606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82768 0.20141 -1.00000 - 3718 2017 8 21 5 1 12 425 4.8216 183.33018 699.24243 655.53116 -5.17382 0.06161 -2.62859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82733 0.20141 -1.00000 - 3719 2017 8 21 5 1 17 247 4.8216 183.33305 699.18350 655.48220 -5.18333 0.06113 -2.63134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82698 0.20141 -1.00000 - 3720 2017 8 21 5 1 22 68 4.8215 183.33564 699.12473 655.43333 -5.19330 0.06088 -2.63425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82663 0.20141 -1.00000 - 3721 2017 8 21 5 1 26 890 4.8214 183.33799 699.06611 655.38451 -5.20368 0.06120 -2.63748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82628 0.20141 -1.00000 - 3722 2017 8 21 5 1 31 711 4.8214 183.34051 699.00758 655.33578 -5.21440 0.06158 -2.64060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82593 0.20141 -1.00000 - 3723 2017 8 21 5 1 36 532 4.8213 183.34333 698.94919 655.28712 -5.22537 0.06135 -2.64396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82558 0.20141 -1.00000 - 3724 2017 8 21 5 1 41 353 4.8212 183.34619 698.89096 655.23852 -5.23653 0.06086 -2.64748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82523 0.20141 -1.00000 - 3725 2017 8 21 5 1 46 175 4.8211 183.34871 698.83282 655.18999 -5.24783 0.06080 -2.65093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82487 0.20141 -1.00000 - 3726 2017 8 21 5 1 50 996 4.8211 183.35106 698.77480 655.14155 -5.25921 0.06113 -2.65445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82452 0.20141 -1.00000 - 3727 2017 8 21 5 1 55 817 4.8210 183.35365 698.71694 655.09318 -5.27064 0.06141 -2.65817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82417 0.20141 -1.00000 - 3728 2017 8 21 5 2 0 638 4.8209 183.35650 698.65920 655.04486 -5.28210 0.06108 -2.66184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82382 0.20141 -1.00000 - 3729 2017 8 21 5 2 5 458 4.8208 183.35931 698.60156 654.99663 -5.29357 0.06061 -2.66538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82347 0.20141 -1.00000 - 3730 2017 8 21 5 2 10 279 4.8208 183.36177 698.54407 654.94845 -5.30506 0.06067 -2.66914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82312 0.20141 -1.00000 - 3731 2017 8 21 5 2 15 100 4.8207 183.36414 698.48669 654.90036 -5.31658 0.06105 -2.67281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82277 0.20141 -1.00000 - 3732 2017 8 21 5 2 19 920 4.8206 183.36681 698.42945 654.85233 -5.32818 0.06121 -2.67668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82242 0.20141 -1.00000 - 3733 2017 8 21 5 2 24 741 4.8205 183.36968 698.37231 654.80437 -5.33987 0.06080 -2.68040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82207 0.20141 -1.00000 - 3734 2017 8 21 5 2 29 561 4.8205 183.37242 698.31530 654.75647 -5.35172 0.06040 -2.68421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82172 0.20141 -1.00000 - 3735 2017 8 21 5 2 34 382 4.8204 183.37484 698.25840 654.70864 -5.36376 0.06050 -2.68807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82137 0.20141 -1.00000 - 3736 2017 8 21 5 2 39 202 4.8203 183.37726 698.20160 654.66087 -5.37604 0.06097 -2.69172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82102 0.20141 -1.00000 - 3737 2017 8 21 5 2 44 23 4.8203 183.37999 698.14491 654.61316 -5.38859 0.06100 -2.69562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82067 0.20141 -1.00000 - 3738 2017 8 21 5 2 48 843 4.8202 183.38287 698.08833 654.56552 -5.40141 0.06054 -2.69944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82032 0.20141 -1.00000 - 3739 2017 8 21 5 2 53 663 4.8201 183.38553 698.03186 654.51794 -5.41448 0.06025 -2.70320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81997 0.20141 -1.00000 - 3740 2017 8 21 5 2 58 483 4.8201 183.38791 697.97547 654.47041 -5.42778 0.06048 -2.70684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81962 0.20141 -1.00000 - 3741 2017 8 21 5 3 3 303 4.8200 183.39039 697.91918 654.42294 -5.44126 0.06089 -2.71046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81927 0.20140 -1.00000 - 3742 2017 8 21 5 3 8 123 4.8199 183.39318 697.86299 654.37553 -5.45486 0.06076 -2.71390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81892 0.20140 -1.00000 - 3743 2017 8 21 5 3 12 943 4.8198 183.39605 697.80694 654.32818 -5.46850 0.06028 -2.71740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81856 0.20140 -1.00000 - 3744 2017 8 21 5 3 17 762 4.8198 183.39864 697.75098 654.28087 -5.48210 0.06009 -2.72073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81821 0.20140 -1.00000 - 3745 2017 8 21 5 3 22 582 4.8197 183.40101 697.69509 654.23361 -5.49557 0.06045 -2.72382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81786 0.20140 -1.00000 - 3746 2017 8 21 5 3 27 402 4.8196 183.40356 697.63928 654.18640 -5.50882 0.06078 -2.72684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81751 0.20140 -1.00000 - 3747 2017 8 21 5 3 32 221 4.8195 183.40639 697.58359 654.13924 -5.52175 0.06050 -2.72970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81716 0.20140 -1.00000 - 3748 2017 8 21 5 3 37 41 4.8195 183.40924 697.52800 654.09211 -5.53428 0.06003 -2.73272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81681 0.20140 -1.00000 - 3749 2017 8 21 5 3 41 860 4.8194 183.41176 697.47243 654.04503 -5.54634 0.05999 -2.73539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81646 0.20140 -1.00000 - 3750 2017 8 21 5 3 46 679 4.8193 183.41413 697.41695 653.99798 -5.55789 0.06038 -2.73801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81611 0.20140 -1.00000 - 3751 2017 8 21 5 3 51 499 4.8192 183.41675 697.36152 653.95095 -5.56888 0.06060 -2.74050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81576 0.20140 -1.00000 - 3752 2017 8 21 5 3 56 318 4.8192 183.41962 697.30610 653.90395 -5.57926 0.06023 -2.74273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81541 0.20140 -1.00000 - 3753 2017 8 21 5 4 1 137 4.8191 183.42241 697.25071 653.85698 -5.58902 0.05981 -2.74476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81506 0.20140 -1.00000 - 3754 2017 8 21 5 4 5 956 4.8190 183.42487 697.19538 653.81004 -5.59890 0.05985 -2.74678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81471 0.20140 -1.00000 - 3755 2017 8 21 5 4 10 775 4.8190 183.42727 697.14007 653.76310 -5.60914 0.06029 -2.74856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81436 0.20140 -1.00000 - 3756 2017 8 21 5 4 15 594 4.8189 183.42997 697.08474 653.71618 -5.61844 0.06039 -2.74991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81401 0.20140 -1.00000 - 3757 2017 8 21 5 4 20 413 4.8188 183.43286 697.02942 653.66926 -5.62670 0.05997 -2.75122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81366 0.20140 -1.00000 - 3758 2017 8 21 5 4 25 231 4.8187 183.43558 696.97410 653.62237 -5.63391 0.05963 -2.75224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81331 0.20140 -1.00000 - 3759 2017 8 21 5 4 30 50 4.8187 183.43800 696.91881 653.57547 -5.64004 0.05979 -2.75324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81296 0.20140 -1.00000 - 3760 2017 8 21 5 4 34 869 4.8186 183.44045 696.86348 653.52859 -5.64512 0.06022 -2.75384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81261 0.20140 -1.00000 - 3761 2017 8 21 5 4 39 687 4.8185 183.44321 696.80816 653.48170 -5.64919 0.06018 -2.75433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81226 0.20140 -1.00000 - 3762 2017 8 21 5 4 44 506 4.8184 183.44610 696.75282 653.43480 -5.65231 0.05973 -2.75467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81191 0.20140 -1.00000 - 3763 2017 8 21 5 4 49 324 4.8184 183.44875 696.69742 653.38791 -5.65456 0.05949 -2.75460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81156 0.20140 -1.00000 - 3764 2017 8 21 5 4 54 142 4.8183 183.45115 696.64199 653.34101 -5.65600 0.05976 -2.75443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81121 0.20140 -1.00000 - 3765 2017 8 21 5 4 58 960 4.8182 183.45366 696.58656 653.29411 -5.65670 0.06011 -2.75418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81085 0.20140 -1.00000 - 3766 2017 8 21 5 5 3 779 4.8182 183.45647 696.53110 653.24719 -5.65671 0.05991 -2.75360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81050 0.20140 -1.00000 - 3767 2017 8 21 5 5 8 597 4.8181 183.45935 696.47556 653.20026 -5.65607 0.05944 -2.75266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81015 0.20140 -1.00000 - 3768 2017 8 21 5 5 13 415 4.8180 183.46193 696.42001 653.15331 -5.65480 0.05932 -2.75170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80980 0.20140 -1.00000 - 3769 2017 8 21 5 5 18 233 4.8180 183.46432 696.36441 653.10636 -5.65289 0.05972 -2.75040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80945 0.20139 -1.00000 - 3770 2017 8 21 5 5 23 51 4.8179 183.46690 696.30878 653.05939 -5.65033 0.06000 -2.74907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80910 0.20139 -1.00000 - 3771 2017 8 21 5 5 27 868 4.8178 183.46976 696.25309 653.01241 -5.64707 0.05968 -2.74737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80875 0.20139 -1.00000 - 3772 2017 8 21 5 5 32 686 4.8177 183.47260 696.19736 652.96540 -5.64308 0.05923 -2.74552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80840 0.20139 -1.00000 - 3773 2017 8 21 5 5 37 504 4.8177 183.47511 696.14157 652.91837 -5.63832 0.05922 -2.74351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80805 0.20139 -1.00000 - 3774 2017 8 21 5 5 42 321 4.8176 183.47751 696.08570 652.87130 -5.63272 0.05966 -2.74113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80770 0.20139 -1.00000 - 3775 2017 8 21 5 5 47 139 4.8175 183.48018 696.02975 652.82422 -5.62626 0.05980 -2.73863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80735 0.20139 -1.00000 - 3776 2017 8 21 5 5 51 956 4.8174 183.48306 695.97377 652.77712 -5.61891 0.05939 -2.73607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80700 0.20139 -1.00000 - 3777 2017 8 21 5 5 56 774 4.8174 183.48584 695.91772 652.72997 -5.61064 0.05902 -2.73331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80665 0.20139 -1.00000 - 3778 2017 8 21 5 6 1 591 4.8173 183.48830 695.86155 652.68280 -5.60146 0.05912 -2.73016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80630 0.20139 -1.00000 - 3779 2017 8 21 5 6 6 408 4.8173 183.49073 695.80532 652.63559 -5.59137 0.05956 -2.72702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80595 0.20139 -1.00000 - 3780 2017 8 21 5 6 11 226 4.8172 183.49348 695.74901 652.58836 -5.58041 0.05958 -2.72367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80560 0.20139 -1.00000 - 3781 2017 8 21 5 6 16 43 4.8171 183.49638 695.69262 652.54109 -5.56861 0.05913 -2.72024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80525 0.20139 -1.00000 - 3782 2017 8 21 5 6 20 860 4.8170 183.49908 695.63615 652.49379 -5.55601 0.05887 -2.71656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80490 0.20139 -1.00000 - 3783 2017 8 21 5 6 25 677 4.8170 183.50151 695.57962 652.44646 -5.54269 0.05910 -2.71277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80455 0.20139 -1.00000 - 3784 2017 8 21 5 6 30 494 4.8169 183.50400 695.52300 652.39909 -5.52871 0.05947 -2.70888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80420 0.20139 -1.00000 - 3785 2017 8 21 5 6 35 310 4.8168 183.50680 695.46629 652.35169 -5.51415 0.05932 -2.70474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80385 0.20139 -1.00000 - 3786 2017 8 21 5 6 40 127 4.8167 183.50970 695.40950 652.30425 -5.49907 0.05886 -2.70057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80350 0.20139 -1.00000 - 3787 2017 8 21 5 6 44 944 4.8167 183.51233 695.35265 652.25679 -5.48356 0.05871 -2.69645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80315 0.20139 -1.00000 - 3788 2017 8 21 5 6 49 760 4.8166 183.51474 695.29575 652.20929 -5.46768 0.05907 -2.69220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80280 0.20139 -1.00000 - 3789 2017 8 21 5 6 54 577 4.8165 183.51730 695.23873 652.16176 -5.45152 0.05936 -2.68771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80245 0.20139 -1.00000 - 3790 2017 8 21 5 6 59 393 4.8165 183.52015 695.18166 652.11419 -5.43512 0.05906 -2.68336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80210 0.20139 -1.00000 - 3791 2017 8 21 5 7 4 210 4.8164 183.52302 695.12452 652.06660 -5.41855 0.05860 -2.67887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80175 0.20139 -1.00000 - 3792 2017 8 21 5 7 9 26 4.8163 183.52559 695.06732 652.01898 -5.40185 0.05856 -2.67445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80140 0.20139 -1.00000 - 3793 2017 8 21 5 7 13 842 4.8163 183.52800 695.01005 651.97133 -5.38505 0.05900 -2.66987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80105 0.20139 -1.00000 - 3794 2017 8 21 5 7 18 659 4.8162 183.53065 694.95273 651.92365 -5.36817 0.05919 -2.66530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80070 0.20139 -1.00000 - 3795 2017 8 21 5 7 23 475 4.8161 183.53353 694.89534 651.87594 -5.35125 0.05880 -2.66072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80035 0.20139 -1.00000 - 3796 2017 8 21 5 7 28 291 4.8160 183.53634 694.83788 651.82820 -5.33430 0.05841 -2.65599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80000 0.20139 -1.00000 - 3797 2017 8 21 5 7 33 107 4.8160 183.53885 694.78037 651.78043 -5.31733 0.05847 -2.65144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79964 0.20139 -1.00000 - 3798 2017 8 21 5 7 37 923 4.8159 183.54128 694.72282 651.73265 -5.30036 0.05892 -2.64693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79929 0.20138 -1.00000 - 3799 2017 8 21 5 7 42 738 4.8158 183.54401 694.66523 651.68483 -5.28341 0.05897 -2.64248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79894 0.20138 -1.00000 - 3800 2017 8 21 5 7 47 554 4.8158 183.54691 694.60755 651.63698 -5.26649 0.05853 -2.63789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79859 0.20138 -1.00000 - 3801 2017 8 21 5 7 52 370 4.8157 183.54967 694.54982 651.58911 -5.24965 0.05823 -2.63350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79824 0.20138 -1.00000 - 3802 2017 8 21 5 7 57 186 4.8156 183.55212 694.49204 651.54123 -5.23331 0.05843 -2.62908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79789 0.20138 -1.00000 - 3803 2017 8 21 5 8 2 1 4.8156 183.55460 694.43425 651.49333 -5.21734 0.05883 -2.62483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79754 0.20138 -1.00000 - 3804 2017 8 21 5 8 6 817 4.8155 183.55740 694.37641 651.44540 -5.20168 0.05874 -2.62060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79719 0.20138 -1.00000 - 3805 2017 8 21 5 8 11 632 4.8154 183.56030 694.31854 651.39746 -5.18641 0.05829 -2.61646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79684 0.20138 -1.00000 - 3806 2017 8 21 5 8 16 447 4.8153 183.56299 694.26063 651.34951 -5.17157 0.05810 -2.61244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79649 0.20138 -1.00000 - 3807 2017 8 21 5 8 21 263 4.8153 183.56542 694.20270 651.30155 -5.15724 0.05841 -2.60838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79614 0.20138 -1.00000 - 3808 2017 8 21 5 8 26 78 4.8152 183.56797 694.14475 651.25357 -5.14347 0.05872 -2.60478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79579 0.20138 -1.00000 - 3809 2017 8 21 5 8 30 893 4.8151 183.57081 694.08679 651.20559 -5.13029 0.05846 -2.60118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79544 0.20138 -1.00000 - 3810 2017 8 21 5 8 35 708 4.8151 183.57370 694.02881 651.15761 -5.11774 0.05800 -2.59774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79509 0.20138 -1.00000 - 3811 2017 8 21 5 8 40 523 4.8150 183.57631 693.97083 651.10961 -5.10586 0.05794 -2.59450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79474 0.20138 -1.00000 - 3812 2017 8 21 5 8 45 338 4.8149 183.57874 693.91282 651.06161 -5.09466 0.05836 -2.59130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79439 0.20138 -1.00000 - 3813 2017 8 21 5 8 50 153 4.8149 183.58137 693.85480 651.01363 -5.08417 0.05858 -2.58818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79404 0.20138 -1.00000 - 3814 2017 8 21 5 8 54 968 4.8148 183.58425 693.79682 650.96564 -5.07440 0.05821 -2.58541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79369 0.20138 -1.00000 - 3815 2017 8 21 5 8 59 782 4.8147 183.58710 693.73886 650.91766 -5.06535 0.05780 -2.58275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79334 0.20138 -1.00000 - 3816 2017 8 21 5 9 4 597 4.8147 183.58964 693.68089 650.86968 -5.05701 0.05784 -2.58009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79299 0.20138 -1.00000 - 3817 2017 8 21 5 9 9 412 4.8146 183.59208 693.62294 650.82171 -5.04936 0.05829 -2.57775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79264 0.20138 -1.00000 - 3818 2017 8 21 5 9 14 226 4.8145 183.59480 693.56503 650.77376 -5.04241 0.05836 -2.57544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79229 0.20138 -1.00000 - 3819 2017 8 21 5 9 19 41 4.8144 183.59771 693.50715 650.72582 -5.03612 0.05792 -2.57359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79194 0.20138 -1.00000 - 3820 2017 8 21 5 9 23 855 4.8144 183.60049 693.44929 650.67790 -5.03048 0.05761 -2.57176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79159 0.20138 -1.00000 - 3821 2017 8 21 5 9 28 669 4.8143 183.60298 693.39147 650.62999 -5.02548 0.05779 -2.57016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79124 0.20138 -1.00000 - 3822 2017 8 21 5 9 33 483 4.8142 183.60546 693.33370 650.58210 -5.02110 0.05820 -2.56885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79089 0.20138 -1.00000 - 3823 2017 8 21 5 9 38 298 4.8142 183.60825 693.27593 650.53423 -5.01735 0.05812 -2.56751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79054 0.20138 -1.00000 - 3824 2017 8 21 5 9 43 112 4.8141 183.61117 693.21819 650.48639 -5.01422 0.05767 -2.56641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79019 0.20138 -1.00000 - 3825 2017 8 21 5 9 47 926 4.8140 183.61388 693.16054 650.43858 -5.01171 0.05746 -2.56568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78984 0.20138 -1.00000 - 3826 2017 8 21 5 9 52 740 4.8140 183.61634 693.10294 650.39079 -5.00982 0.05776 -2.56510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78949 0.20137 -1.00000 - 3827 2017 8 21 5 9 57 554 4.8139 183.61888 693.04535 650.34304 -5.00854 0.05807 -2.56455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78914 0.20137 -1.00000 - 3828 2017 8 21 5 10 2 367 4.8138 183.62173 692.98784 650.29531 -5.00789 0.05783 -2.56438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78879 0.20137 -1.00000 - 3829 2017 8 21 5 10 7 181 4.8137 183.62464 692.93039 650.24762 -5.00785 0.05738 -2.56425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78844 0.20137 -1.00000 - 3830 2017 8 21 5 10 11 995 4.8137 183.62728 692.87299 650.19997 -5.00843 0.05730 -2.56443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78809 0.20137 -1.00000 - 3831 2017 8 21 5 10 16 808 4.8136 183.62972 692.81567 650.15236 -5.00963 0.05772 -2.56475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78774 0.20137 -1.00000 - 3832 2017 8 21 5 10 21 622 4.8136 183.63235 692.75843 650.10480 -5.01145 0.05794 -2.56525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78739 0.20137 -1.00000 - 3833 2017 8 21 5 10 26 436 4.8135 183.63523 692.70127 650.05727 -5.01388 0.05758 -2.56598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78704 0.20137 -1.00000 - 3834 2017 8 21 5 10 31 249 4.8134 183.63810 692.64417 650.00978 -5.01691 0.05715 -2.56678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78669 0.20137 -1.00000 - 3835 2017 8 21 5 10 36 62 4.8133 183.64067 692.58713 649.96235 -5.02054 0.05719 -2.56772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78634 0.20137 -1.00000 - 3836 2017 8 21 5 10 40 876 4.8133 183.64312 692.53022 649.91496 -5.02474 0.05763 -2.56898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78599 0.20137 -1.00000 - 3837 2017 8 21 5 10 45 689 4.8132 183.64584 692.47340 649.86762 -5.02951 0.05772 -2.57039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78564 0.20137 -1.00000 - 3838 2017 8 21 5 10 50 502 4.8131 183.64876 692.41665 649.82033 -5.03481 0.05730 -2.57182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78529 0.20137 -1.00000 - 3839 2017 8 21 5 10 55 315 4.8131 183.65157 692.35999 649.77308 -5.04062 0.05697 -2.57352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78494 0.20137 -1.00000 - 3840 2017 8 21 5 11 0 128 4.8130 183.65407 692.30342 649.72590 -5.04692 0.05714 -2.57522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78459 0.20137 -1.00000 - 3841 2017 8 21 5 11 4 941 4.8129 183.65656 692.24695 649.67876 -5.05366 0.05755 -2.57726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78424 0.20137 -1.00000 - 3842 2017 8 21 5 11 9 754 4.8129 183.65936 692.19058 649.63169 -5.06083 0.05748 -2.57932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78389 0.20137 -1.00000 - 3843 2017 8 21 5 11 14 567 4.8128 183.66229 692.13432 649.58467 -5.06838 0.05703 -2.58152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78354 0.20137 -1.00000 - 3844 2017 8 21 5 11 19 379 4.8127 183.66502 692.07816 649.53769 -5.07630 0.05683 -2.58391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78319 0.20137 -1.00000 - 3845 2017 8 21 5 11 24 192 4.8127 183.66749 692.02207 649.49077 -5.08457 0.05711 -2.58625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78284 0.20137 -1.00000 - 3846 2017 8 21 5 11 29 5 4.8126 183.67004 691.96607 649.44392 -5.09316 0.05744 -2.58866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78249 0.20137 -1.00000 - 3847 2017 8 21 5 11 33 817 4.8125 183.67290 691.91022 649.39712 -5.10207 0.05720 -2.59136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78214 0.20137 -1.00000 - 3848 2017 8 21 5 11 38 630 4.8124 183.67582 691.85447 649.35038 -5.11127 0.05675 -2.59411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78179 0.20137 -1.00000 - 3849 2017 8 21 5 11 43 442 4.8124 183.67848 691.79880 649.30370 -5.12077 0.05667 -2.59685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78144 0.20137 -1.00000 - 3850 2017 8 21 5 11 48 254 4.8123 183.68094 691.74324 649.25707 -5.13056 0.05708 -2.59980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78109 0.20137 -1.00000 - 3851 2017 8 21 5 11 53 66 4.8123 183.68357 691.68777 649.21050 -5.14061 0.05730 -2.60268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78074 0.20137 -1.00000 - 3852 2017 8 21 5 11 57 879 4.8122 183.68646 691.63240 649.16399 -5.15092 0.05694 -2.60574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78039 0.20137 -1.00000 - 3853 2017 8 21 5 12 2 691 4.8121 183.68935 691.57714 649.11754 -5.16146 0.05651 -2.60882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78004 0.20137 -1.00000 - 3854 2017 8 21 5 12 7 503 4.8121 183.69194 691.52199 649.07115 -5.17222 0.05654 -2.61194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77969 0.20136 -1.00000 - 3855 2017 8 21 5 12 12 315 4.8120 183.69440 691.46694 649.02482 -5.18318 0.05699 -2.61512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77934 0.20136 -1.00000 - 3856 2017 8 21 5 12 17 127 4.8119 183.69712 691.41198 648.97853 -5.19430 0.05708 -2.61826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77899 0.20136 -1.00000 - 3857 2017 8 21 5 12 21 939 4.8118 183.70005 691.35709 648.93231 -5.20556 0.05666 -2.62130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77864 0.20136 -1.00000 - 3858 2017 8 21 5 12 26 750 4.8118 183.70287 691.30234 648.88615 -5.21692 0.05633 -2.62451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77829 0.20136 -1.00000 - 3859 2017 8 21 5 12 31 562 4.8117 183.70540 691.24770 648.84003 -5.22837 0.05649 -2.62774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77794 0.20136 -1.00000 - 3860 2017 8 21 5 12 36 374 4.8117 183.70790 691.19314 648.79398 -5.23985 0.05690 -2.63086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77759 0.20136 -1.00000 - 3861 2017 8 21 5 12 41 185 4.8116 183.71070 691.13867 648.74797 -5.25135 0.05683 -2.63400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77724 0.20136 -1.00000 - 3862 2017 8 21 5 12 45 997 4.8115 183.71364 691.08428 648.70202 -5.26282 0.05638 -2.63705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77689 0.20136 -1.00000 - 3863 2017 8 21 5 12 50 808 4.8114 183.71639 691.02999 648.65611 -5.27424 0.05618 -2.64024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77654 0.20136 -1.00000 - 3864 2017 8 21 5 12 55 620 4.8114 183.71887 690.97577 648.61025 -5.28558 0.05647 -2.64324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77619 0.20136 -1.00000 - 3865 2017 8 21 5 13 0 431 4.8113 183.72143 690.92165 648.56445 -5.29680 0.05679 -2.64622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77584 0.20136 -1.00000 - 3866 2017 8 21 5 13 5 242 4.8112 183.72430 690.86761 648.51868 -5.30788 0.05655 -2.64919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77549 0.20136 -1.00000 - 3867 2017 8 21 5 13 10 53 4.8112 183.72723 690.81362 648.47294 -5.31881 0.05610 -2.65191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77514 0.20136 -1.00000 - 3868 2017 8 21 5 13 14 864 4.8111 183.72991 690.75969 648.42726 -5.32956 0.05602 -2.65461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77479 0.20136 -1.00000 - 3869 2017 8 21 5 13 19 676 4.8111 183.73237 690.70586 648.38162 -5.34013 0.05642 -2.65733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77444 0.20136 -1.00000 - 3870 2017 8 21 5 13 24 486 4.8110 183.73502 690.65210 648.33601 -5.35047 0.05664 -2.65995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77409 0.20136 -1.00000 - 3871 2017 8 21 5 13 29 297 4.8109 183.73792 690.59838 648.29044 -5.36057 0.05627 -2.66240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77374 0.20136 -1.00000 - 3872 2017 8 21 5 13 34 108 4.8108 183.74082 690.54472 648.24490 -5.37039 0.05585 -2.66485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77339 0.20136 -1.00000 - 3873 2017 8 21 5 13 38 919 4.8108 183.74342 690.49109 648.19939 -5.37991 0.05589 -2.66712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77304 0.20136 -1.00000 - 3874 2017 8 21 5 13 43 730 4.8107 183.74590 690.43751 648.15391 -5.38910 0.05633 -2.66933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77269 0.20136 -1.00000 - 3875 2017 8 21 5 13 48 540 4.8106 183.74863 690.38396 648.10846 -5.39793 0.05642 -2.67134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77234 0.20136 -1.00000 - 3876 2017 8 21 5 13 53 351 4.8106 183.75157 690.33047 648.06303 -5.40635 0.05599 -2.67321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77199 0.20136 -1.00000 - 3877 2017 8 21 5 13 58 161 4.8105 183.75440 690.27700 648.01761 -5.41435 0.05567 -2.67496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77164 0.20136 -1.00000 - 3878 2017 8 21 5 14 2 972 4.8104 183.75694 690.22354 647.97222 -5.42187 0.05584 -2.67638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77129 0.20136 -1.00000 - 3879 2017 8 21 5 14 7 782 4.8104 183.75945 690.17011 647.92685 -5.42890 0.05625 -2.67787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77094 0.20136 -1.00000 - 3880 2017 8 21 5 14 12 593 4.8103 183.76227 690.11670 647.88149 -5.43540 0.05618 -2.67919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77059 0.20136 -1.00000 - 3881 2017 8 21 5 14 17 403 4.8102 183.76522 690.06331 647.83615 -5.44135 0.05573 -2.68035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77024 0.20136 -1.00000 - 3882 2017 8 21 5 14 22 213 4.8102 183.76797 690.00993 647.79081 -5.44671 0.05553 -2.68133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76989 0.20136 -1.00000 - 3883 2017 8 21 5 14 27 23 4.8101 183.77047 689.95654 647.74548 -5.45147 0.05582 -2.68221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76954 0.20135 -1.00000 - 3884 2017 8 21 5 14 31 833 4.8101 183.77304 689.90313 647.70016 -5.45562 0.05614 -2.68283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76919 0.20135 -1.00000 - 3885 2017 8 21 5 14 36 643 4.8100 183.77592 689.84973 647.65485 -5.45955 0.05590 -2.68336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76884 0.20135 -1.00000 - 3886 2017 8 21 5 14 41 453 4.8099 183.77886 689.79633 647.60954 -5.46304 0.05545 -2.68370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76849 0.20135 -1.00000 - 3887 2017 8 21 5 14 46 263 4.8098 183.78154 689.74291 647.56423 -5.46588 0.05537 -2.68381 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76814 0.20135 -1.00000 - 3888 2017 8 21 5 14 51 73 4.8098 183.78402 689.68948 647.51891 -5.46802 0.05577 -2.68377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76780 0.20135 -1.00000 - 3889 2017 8 21 5 14 55 882 4.8097 183.78668 689.63601 647.47360 -5.46944 0.05598 -2.68339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76745 0.20135 -1.00000 - 3890 2017 8 21 5 15 0 692 4.8096 183.78960 689.58252 647.42828 -5.47013 0.05561 -2.68305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76710 0.20135 -1.00000 - 3891 2017 8 21 5 15 5 502 4.8096 183.79250 689.52901 647.38296 -5.47008 0.05520 -2.68249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76675 0.20135 -1.00000 - 3892 2017 8 21 5 15 10 311 4.8095 183.79511 689.47548 647.33762 -5.46928 0.05524 -2.68176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76640 0.20135 -1.00000 - 3893 2017 8 21 5 15 15 121 4.8095 183.79760 689.42192 647.29228 -5.46773 0.05569 -2.68086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76605 0.20135 -1.00000 - 3894 2017 8 21 5 15 19 930 4.8094 183.80035 689.36831 647.24693 -5.46542 0.05577 -2.67981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76570 0.20135 -1.00000 - 3895 2017 8 21 5 15 24 739 4.8093 183.80329 689.31463 647.20156 -5.46238 0.05534 -2.67847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76535 0.20135 -1.00000 - 3896 2017 8 21 5 15 29 549 4.8092 183.80613 689.26094 647.15619 -5.45859 0.05502 -2.67708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76500 0.20135 -1.00000 - 3897 2017 8 21 5 15 34 358 4.8092 183.80868 689.20722 647.11080 -5.45408 0.05519 -2.67554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76465 0.20135 -1.00000 - 3898 2017 8 21 5 15 39 167 4.8091 183.81120 689.15344 647.06540 -5.44885 0.05561 -2.67374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76430 0.20135 -1.00000 - 3899 2017 8 21 5 15 43 976 4.8091 183.81403 689.09962 647.01998 -5.44292 0.05553 -2.67181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76395 0.20135 -1.00000 - 3900 2017 8 21 5 15 48 785 4.8090 183.81699 689.04575 646.97454 -5.43631 0.05508 -2.66959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76360 0.20135 -1.00000 - 3901 2017 8 21 5 15 53 594 4.8089 183.81975 688.99184 646.92908 -5.42905 0.05488 -2.66746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76325 0.20135 -1.00000 - 3902 2017 8 21 5 15 58 403 4.8089 183.82226 688.93787 646.88361 -5.42115 0.05518 -2.66506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76290 0.20135 -1.00000 - 3903 2017 8 21 5 16 3 211 4.8088 183.82484 688.88388 646.83812 -5.41264 0.05550 -2.66254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76255 0.20135 -1.00000 - 3904 2017 8 21 5 16 8 20 4.8087 183.82773 688.82983 646.79261 -5.40357 0.05525 -2.65994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76220 0.20135 -1.00000 - 3905 2017 8 21 5 16 12 829 4.8087 183.83068 688.77571 646.74706 -5.39395 0.05480 -2.65712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76185 0.20135 -1.00000 - 3906 2017 8 21 5 16 17 637 4.8086 183.83337 688.72152 646.70151 -5.38382 0.05472 -2.65412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76150 0.20135 -1.00000 - 3907 2017 8 21 5 16 22 446 4.8085 183.83586 688.66731 646.65593 -5.37322 0.05512 -2.65117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76115 0.20135 -1.00000 - 3908 2017 8 21 5 16 27 254 4.8085 183.83854 688.61306 646.61033 -5.36218 0.05532 -2.64812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76080 0.20135 -1.00000 - 3909 2017 8 21 5 16 32 63 4.8084 183.84146 688.55873 646.56471 -5.35075 0.05495 -2.64487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76045 0.20135 -1.00000 - 3910 2017 8 21 5 16 36 871 4.8083 183.84437 688.50436 646.51905 -5.33894 0.05453 -2.64164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76010 0.20135 -1.00000 - 3911 2017 8 21 5 16 41 680 4.8083 183.84698 688.44992 646.47338 -5.32681 0.05458 -2.63821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75975 0.20134 -1.00000 - 3912 2017 8 21 5 16 46 488 4.8082 183.84948 688.39542 646.42768 -5.31439 0.05503 -2.63485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75940 0.20134 -1.00000 - 3913 2017 8 21 5 16 51 296 4.8081 183.85225 688.34088 646.38197 -5.30171 0.05510 -2.63134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75905 0.20134 -1.00000 - 3914 2017 8 21 5 16 56 104 4.8081 183.85521 688.28629 646.33623 -5.28881 0.05466 -2.62779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75870 0.20134 -1.00000 - 3915 2017 8 21 5 17 0 912 4.8080 183.85804 688.23166 646.29046 -5.27571 0.05435 -2.62423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75835 0.20134 -1.00000 - 3916 2017 8 21 5 17 5 720 4.8080 183.86060 688.17695 646.24467 -5.26244 0.05454 -2.62054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75800 0.20134 -1.00000 - 3917 2017 8 21 5 17 10 528 4.8079 183.86314 688.12218 646.19886 -5.24905 0.05494 -2.61673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75765 0.20134 -1.00000 - 3918 2017 8 21 5 17 15 336 4.8078 183.86598 688.06739 646.15303 -5.23568 0.05485 -2.61304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75730 0.20134 -1.00000 - 3919 2017 8 21 5 17 20 143 4.8077 183.86895 688.01258 646.10717 -5.22243 0.05440 -2.60938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75695 0.20134 -1.00000 - 3920 2017 8 21 5 17 24 951 4.8077 183.87171 687.95769 646.06130 -5.20913 0.05421 -2.60560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75660 0.20134 -1.00000 - 3921 2017 8 21 5 17 29 759 4.8076 183.87423 687.90277 646.01540 -5.19584 0.05452 -2.60193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75626 0.20134 -1.00000 - 3922 2017 8 21 5 17 34 566 4.8076 183.87683 687.84779 645.96949 -5.18257 0.05482 -2.59823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75591 0.20134 -1.00000 - 3923 2017 8 21 5 17 39 374 4.8075 183.87973 687.79278 645.92356 -5.16938 0.05457 -2.59462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75556 0.20134 -1.00000 - 3924 2017 8 21 5 17 44 181 4.8074 183.88269 687.73772 645.87761 -5.15630 0.05413 -2.59094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75521 0.20134 -1.00000 - 3925 2017 8 21 5 17 48 989 4.8074 183.88538 687.68264 645.83165 -5.14336 0.05406 -2.58731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75486 0.20134 -1.00000 - 3926 2017 8 21 5 17 53 796 4.8073 183.88787 687.62753 645.78566 -5.13061 0.05446 -2.58378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75451 0.20134 -1.00000 - 3927 2017 8 21 5 17 58 603 4.8072 183.89057 687.57237 645.73966 -5.11807 0.05464 -2.58014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75416 0.20134 -1.00000 - 3928 2017 8 21 5 18 3 410 4.8072 183.89351 687.51717 645.69365 -5.10577 0.05426 -2.57658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75381 0.20134 -1.00000 - 3929 2017 8 21 5 18 8 217 4.8071 183.89641 687.46198 645.64764 -5.09376 0.05386 -2.57319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75346 0.20134 -1.00000 - 3930 2017 8 21 5 18 13 24 4.8071 183.89903 687.40677 645.60160 -5.08207 0.05392 -2.56993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75311 0.20134 -1.00000 - 3931 2017 8 21 5 18 17 831 4.8070 183.90154 687.35153 645.55557 -5.07071 0.05437 -2.56663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75276 0.20134 -1.00000 - 3932 2017 8 21 5 18 22 638 4.8069 183.90433 687.29628 645.50952 -5.05973 0.05441 -2.56357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75241 0.20134 -1.00000 - 3933 2017 8 21 5 18 27 445 4.8068 183.90729 687.24100 645.46346 -5.04914 0.05397 -2.56054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75206 0.20134 -1.00000 - 3934 2017 8 21 5 18 32 252 4.8068 183.91013 687.18570 645.41740 -5.03897 0.05368 -2.55765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75171 0.20134 -1.00000 - 3935 2017 8 21 5 18 37 59 4.8067 183.91269 687.13040 645.37135 -5.02925 0.05389 -2.55482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75136 0.20134 -1.00000 - 3936 2017 8 21 5 18 41 865 4.8067 183.91524 687.07511 645.32529 -5.02000 0.05428 -2.55210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75101 0.20134 -1.00000 - 3937 2017 8 21 5 18 46 672 4.8066 183.91811 687.01981 645.27922 -5.01123 0.05417 -2.54950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75066 0.20134 -1.00000 - 3938 2017 8 21 5 18 51 479 4.8065 183.92108 686.96450 645.23316 -5.00295 0.05372 -2.54686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75031 0.20134 -1.00000 - 3939 2017 8 21 5 18 56 285 4.8065 183.92384 686.90920 645.18710 -4.99518 0.05355 -2.54458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74996 0.20133 -1.00000 - 3940 2017 8 21 5 19 1 91 4.8064 183.92636 686.85392 645.14106 -4.98794 0.05388 -2.54237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74961 0.20133 -1.00000 - 3941 2017 8 21 5 19 5 898 4.8064 183.92898 686.79867 645.09502 -4.98122 0.05417 -2.54033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74926 0.20133 -1.00000 - 3942 2017 8 21 5 19 10 704 4.8063 183.93190 686.74342 645.04899 -4.97504 0.05389 -2.53839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74891 0.20133 -1.00000 - 3943 2017 8 21 5 19 15 510 4.8062 183.93486 686.68819 645.00297 -4.96939 0.05345 -2.53666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74856 0.20133 -1.00000 - 3944 2017 8 21 5 19 20 316 4.8062 183.93754 686.63296 644.95696 -4.96427 0.05341 -2.53499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74822 0.20133 -1.00000 - 3945 2017 8 21 5 19 25 123 4.8061 183.94005 686.57778 644.91098 -4.95969 0.05382 -2.53356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74787 0.20133 -1.00000 - 3946 2017 8 21 5 19 29 929 4.8060 183.94277 686.52264 644.86501 -4.95564 0.05397 -2.53226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74752 0.20133 -1.00000 - 3947 2017 8 21 5 19 34 735 4.8060 183.94572 686.46752 644.81906 -4.95212 0.05357 -2.53105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74717 0.20133 -1.00000 - 3948 2017 8 21 5 19 39 540 4.8059 183.94862 686.41244 644.77312 -4.94913 0.05322 -2.53002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74682 0.20133 -1.00000 - 3949 2017 8 21 5 19 44 346 4.8058 183.95123 686.35739 644.72721 -4.94665 0.05328 -2.52899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74647 0.20133 -1.00000 - 3950 2017 8 21 5 19 49 152 4.8058 183.95376 686.30239 644.68132 -4.94467 0.05372 -2.52834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74612 0.20133 -1.00000 - 3951 2017 8 21 5 19 53 958 4.8057 183.95657 686.24742 644.63546 -4.94319 0.05373 -2.52773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74577 0.20133 -1.00000 - 3952 2017 8 21 5 19 58 763 4.8056 183.95954 686.19253 644.58962 -4.94218 0.05328 -2.52729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74542 0.20133 -1.00000 - 3953 2017 8 21 5 20 3 569 4.8056 183.96237 686.13768 644.54381 -4.94163 0.05301 -2.52703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74507 0.20133 -1.00000 - 3954 2017 8 21 5 20 8 375 4.8055 183.96493 686.08286 644.49802 -4.94152 0.05324 -2.52691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74472 0.20133 -1.00000 - 3955 2017 8 21 5 20 13 180 4.8055 183.96750 686.02808 644.45227 -4.94184 0.05362 -2.52684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74437 0.20133 -1.00000 - 3956 2017 8 21 5 20 17 985 4.8054 183.97039 685.97337 644.40655 -4.94258 0.05346 -2.52704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74402 0.20133 -1.00000 - 3957 2017 8 21 5 20 22 791 4.8053 183.97337 685.91873 644.36086 -4.94373 0.05301 -2.52741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74367 0.20133 -1.00000 - 3958 2017 8 21 5 20 27 596 4.8053 183.97612 685.86414 644.31520 -4.94528 0.05287 -2.52782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74332 0.20133 -1.00000 - 3959 2017 8 21 5 20 32 401 4.8052 183.97863 685.80959 644.26958 -4.94723 0.05323 -2.52843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74297 0.20133 -1.00000 - 3960 2017 8 21 5 20 37 206 4.8052 183.98129 685.75510 644.22399 -4.94958 0.05349 -2.52908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74262 0.20133 -1.00000 - 3961 2017 8 21 5 20 42 12 4.8051 183.98422 685.70068 644.17844 -4.95233 0.05318 -2.53000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74227 0.20133 -1.00000 - 3962 2017 8 21 5 20 46 817 4.8050 183.98718 685.64631 644.13292 -4.95547 0.05275 -2.53095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74192 0.20133 -1.00000 - 3963 2017 8 21 5 20 51 621 4.8050 183.98985 685.59203 644.08745 -4.95899 0.05274 -2.53204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74158 0.20133 -1.00000 - 3964 2017 8 21 5 20 56 426 4.8049 183.99236 685.53782 644.04201 -4.96290 0.05317 -2.53330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74123 0.20133 -1.00000 - 3965 2017 8 21 5 21 1 231 4.8048 183.99512 685.48366 643.99661 -4.96719 0.05328 -2.53458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74088 0.20133 -1.00000 - 3966 2017 8 21 5 21 6 36 4.8048 183.99808 685.42955 643.95125 -4.97185 0.05287 -2.53593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74053 0.20133 -1.00000 - 3967 2017 8 21 5 21 10 841 4.8047 184.00097 685.37555 643.90594 -4.97688 0.05255 -2.53751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74018 0.20133 -1.00000 - 3968 2017 8 21 5 21 15 645 4.8047 184.00357 685.32164 643.86067 -4.98227 0.05264 -2.53924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73983 0.20132 -1.00000 - 3969 2017 8 21 5 21 20 450 4.8046 184.00611 685.26778 643.81545 -4.98801 0.05306 -2.54095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73948 0.20132 -1.00000 - 3970 2017 8 21 5 21 25 255 4.8045 184.00895 685.21400 643.77026 -4.99410 0.05302 -2.54288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73913 0.20132 -1.00000 - 3971 2017 8 21 5 21 30 59 4.8045 184.01194 685.16029 643.72513 -5.00053 0.05256 -2.54485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73878 0.20132 -1.00000 - 3972 2017 8 21 5 21 34 863 4.8044 184.01475 685.10665 643.68004 -5.00728 0.05233 -2.54694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73843 0.20132 -1.00000 - 3973 2017 8 21 5 21 39 668 4.8044 184.01730 685.05309 643.63500 -5.01434 0.05261 -2.54902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73808 0.20132 -1.00000 - 3974 2017 8 21 5 21 44 472 4.8043 184.01990 684.99962 643.59000 -5.02169 0.05295 -2.55119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73773 0.20132 -1.00000 - 3975 2017 8 21 5 21 49 276 4.8042 184.02281 684.94623 643.54505 -5.02932 0.05274 -2.55345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73738 0.20132 -1.00000 - 3976 2017 8 21 5 21 54 80 4.8041 184.02579 684.89291 643.50013 -5.03720 0.05229 -2.55569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73703 0.20132 -1.00000 - 3977 2017 8 21 5 21 58 884 4.8041 184.02852 684.83965 643.45527 -5.04531 0.05220 -2.55793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73668 0.20132 -1.00000 - 3978 2017 8 21 5 22 3 689 4.8040 184.03104 684.78651 643.41047 -5.05363 0.05259 -2.56030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73633 0.20132 -1.00000 - 3979 2017 8 21 5 22 8 492 4.8040 184.03374 684.73346 643.36570 -5.06213 0.05279 -2.56278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73598 0.20132 -1.00000 - 3980 2017 8 21 5 22 13 296 4.8039 184.03669 684.68047 643.32099 -5.07079 0.05243 -2.56514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73564 0.20132 -1.00000 - 3981 2017 8 21 5 22 18 100 4.8038 184.03962 684.62756 643.27631 -5.07959 0.05208 -2.56767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73529 0.20132 -1.00000 - 3982 2017 8 21 5 22 22 904 4.8038 184.04228 684.57472 643.23169 -5.08849 0.05207 -2.57017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73494 0.20132 -1.00000 - 3983 2017 8 21 5 22 27 708 4.8037 184.04481 684.52196 643.18711 -5.09748 0.05251 -2.57272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73459 0.20132 -1.00000 - 3984 2017 8 21 5 22 32 511 4.8037 184.04760 684.46927 643.14258 -5.10653 0.05257 -2.57517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73424 0.20132 -1.00000 - 3985 2017 8 21 5 22 37 315 4.8036 184.05057 684.41667 643.09809 -5.11562 0.05212 -2.57766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73389 0.20132 -1.00000 - 3986 2017 8 21 5 22 42 119 4.8035 184.05344 684.36415 643.05364 -5.12473 0.05185 -2.58012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73354 0.20132 -1.00000 - 3987 2017 8 21 5 22 46 922 4.8035 184.05603 684.31169 643.00923 -5.13382 0.05201 -2.58242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73319 0.20132 -1.00000 - 3988 2017 8 21 5 22 51 725 4.8034 184.05860 684.25932 642.96487 -5.14290 0.05240 -2.58489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73284 0.20132 -1.00000 - 3989 2017 8 21 5 22 56 529 4.8034 184.06147 684.20701 642.92056 -5.15192 0.05229 -2.58726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73249 0.20132 -1.00000 - 3990 2017 8 21 5 23 1 332 4.8033 184.06446 684.15479 642.87628 -5.16089 0.05183 -2.58962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73214 0.20132 -1.00000 - 3991 2017 8 21 5 23 6 135 4.8032 184.06725 684.10264 642.83204 -5.16978 0.05166 -2.59190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73179 0.20132 -1.00000 - 3992 2017 8 21 5 23 10 939 4.8032 184.06980 684.05054 642.78783 -5.17857 0.05199 -2.59421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73144 0.20132 -1.00000 - 3993 2017 8 21 5 23 15 742 4.8031 184.07243 683.99848 642.74367 -5.18724 0.05228 -2.59638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73109 0.20132 -1.00000 - 3994 2017 8 21 5 23 20 545 4.8030 184.07536 683.94650 642.69954 -5.19576 0.05200 -2.59856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73075 0.20132 -1.00000 - 3995 2017 8 21 5 23 25 348 4.8030 184.07833 683.89457 642.65543 -5.20411 0.05159 -2.60067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73040 0.20132 -1.00000 - 3996 2017 8 21 5 23 30 151 4.8029 184.08104 683.84269 642.61136 -5.21224 0.05153 -2.60265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73005 0.20131 -1.00000 - 3997 2017 8 21 5 23 34 954 4.8029 184.08356 683.79084 642.56732 -5.22013 0.05195 -2.60454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72970 0.20131 -1.00000 - 3998 2017 8 21 5 23 39 756 4.8028 184.08631 683.73903 642.52330 -5.22774 0.05208 -2.60623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72935 0.20131 -1.00000 - 3999 2017 8 21 5 23 44 559 4.8027 184.08927 683.68728 642.47931 -5.23503 0.05166 -2.60803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72900 0.20131 -1.00000 - 4000 2017 8 21 5 23 49 362 4.8027 184.09218 683.63554 642.43535 -5.24197 0.05141 -2.60959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72865 0.20131 -1.00000 - 4001 2017 8 21 5 23 54 164 4.8026 184.09482 683.58386 642.39140 -5.24852 0.05140 -2.61109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72830 0.20131 -1.00000 - 4002 2017 8 21 5 23 58 967 4.8026 184.09737 683.53221 642.34748 -5.25466 0.05185 -2.61249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72795 0.20131 -1.00000 - 4003 2017 8 21 5 24 3 769 4.8025 184.10019 683.48058 642.30357 -5.26035 0.05183 -2.61379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72760 0.20131 -1.00000 - 4004 2017 8 21 5 24 8 572 4.8024 184.10317 683.42895 642.25969 -5.26558 0.05136 -2.61488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72725 0.20131 -1.00000 - 4005 2017 8 21 5 24 13 374 4.8024 184.10601 683.37736 642.21583 -5.27034 0.05115 -2.61594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72690 0.20131 -1.00000 - 4006 2017 8 21 5 24 18 177 4.8023 184.10859 683.32581 642.17197 -5.27463 0.05138 -2.61693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72655 0.20131 -1.00000 - 4007 2017 8 21 5 24 22 979 4.8023 184.11119 683.27426 642.12813 -5.27844 0.05172 -2.61768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72620 0.20131 -1.00000 - 4008 2017 8 21 5 24 27 781 4.8022 184.11409 683.22271 642.08430 -5.28177 0.05152 -2.61839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72586 0.20131 -1.00000 - 4009 2017 8 21 5 24 32 583 4.8021 184.11708 683.17117 642.04047 -5.28463 0.05107 -2.61889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72551 0.20131 -1.00000 - 4010 2017 8 21 5 24 37 385 4.8021 184.11984 683.11963 641.99665 -5.28702 0.05097 -2.61931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72516 0.20131 -1.00000 - 4011 2017 8 21 5 24 42 187 4.8020 184.12238 683.06808 641.95284 -5.28895 0.05138 -2.61952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72481 0.20131 -1.00000 - 4012 2017 8 21 5 24 46 989 4.8020 184.12506 683.01655 641.90904 -5.29043 0.05159 -2.61962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72446 0.20131 -1.00000 - 4013 2017 8 21 5 24 51 791 4.8019 184.12801 682.96502 641.86523 -5.29143 0.05123 -2.61960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72411 0.20131 -1.00000 - 4014 2017 8 21 5 24 56 593 4.8018 184.13096 682.91346 641.82141 -5.29198 0.05094 -2.61941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72376 0.20131 -1.00000 - 4015 2017 8 21 5 25 1 395 4.8018 184.13363 682.86186 641.77760 -5.29206 0.05088 -2.61903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72341 0.20131 -1.00000 - 4016 2017 8 21 5 25 6 197 4.8017 184.13617 682.81027 641.73379 -5.29168 0.05133 -2.61858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72306 0.20131 -1.00000 - 4017 2017 8 21 5 25 10 998 4.8017 184.13896 682.75867 641.68996 -5.29083 0.05138 -2.61809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72271 0.20131 -1.00000 - 4018 2017 8 21 5 25 15 800 4.8016 184.14194 682.70703 641.64614 -5.28951 0.05091 -2.61732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72236 0.20131 -1.00000 - 4019 2017 8 21 5 25 20 601 4.8015 184.14482 682.65536 641.60230 -5.28773 0.05072 -2.61654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72201 0.20131 -1.00000 - 4020 2017 8 21 5 25 25 403 4.8015 184.14742 682.60366 641.55846 -5.28548 0.05082 -2.61559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72167 0.20131 -1.00000 - 4021 2017 8 21 5 25 30 204 4.8014 184.14999 682.55192 641.51460 -5.28277 0.05122 -2.61454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72132 0.20131 -1.00000 - 4022 2017 8 21 5 25 35 6 4.8014 184.15287 682.50014 641.47074 -5.27961 0.05109 -2.61326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72097 0.20131 -1.00000 - 4023 2017 8 21 5 25 39 807 4.8013 184.15586 682.44834 641.42687 -5.27599 0.05062 -2.61189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72062 0.20131 -1.00000 - 4024 2017 8 21 5 25 44 608 4.8013 184.15866 682.39652 641.38298 -5.27193 0.05046 -2.61043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72027 0.20130 -1.00000 - 4025 2017 8 21 5 25 49 410 4.8012 184.16122 682.34465 641.33908 -5.26745 0.05080 -2.60874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71992 0.20130 -1.00000 - 4026 2017 8 21 5 25 54 211 4.8011 184.16386 682.29273 641.29518 -5.26262 0.05107 -2.60692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71957 0.20130 -1.00000 - 4027 2017 8 21 5 25 59 12 4.8011 184.16679 682.24080 641.25126 -5.25736 0.05078 -2.60504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71922 0.20130 -1.00000 - 4028 2017 8 21 5 26 3 813 4.8010 184.16977 682.18886 641.20733 -5.25167 0.05045 -2.60314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71887 0.20130 -1.00000 - 4029 2017 8 21 5 26 8 614 4.8010 184.17248 682.13686 641.16338 -5.24556 0.05035 -2.60099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71852 0.20130 -1.00000 - 4030 2017 8 21 5 26 13 415 4.8009 184.17502 682.08483 641.11942 -5.23903 0.05077 -2.59889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71817 0.20130 -1.00000 - 4031 2017 8 21 5 26 18 215 4.8008 184.17777 682.03276 641.07544 -5.23211 0.05086 -2.59667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71782 0.20130 -1.00000 - 4032 2017 8 21 5 26 23 16 4.8008 184.18073 681.98064 641.03145 -5.22480 0.05042 -2.59435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71748 0.20130 -1.00000 - 4033 2017 8 21 5 26 27 817 4.8007 184.18364 681.92848 640.98744 -5.21711 0.05025 -2.59190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71713 0.20130 -1.00000 - 4034 2017 8 21 5 26 32 618 4.8007 184.18628 681.87628 640.94341 -5.20907 0.05022 -2.58938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71678 0.20130 -1.00000 - 4035 2017 8 21 5 26 37 418 4.8006 184.18885 681.82404 640.89937 -5.20068 0.05066 -2.58677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71643 0.20130 -1.00000 - 4036 2017 8 21 5 26 42 219 4.8005 184.19169 681.77175 640.85530 -5.19203 0.05060 -2.58395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71608 0.20130 -1.00000 - 4037 2017 8 21 5 26 47 19 4.8005 184.19467 681.71942 640.81122 -5.18308 0.05013 -2.58126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71573 0.20130 -1.00000 - 4038 2017 8 21 5 26 51 820 4.8004 184.19750 681.66705 640.76713 -5.17384 0.04999 -2.57841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71538 0.20130 -1.00000 - 4039 2017 8 21 5 26 56 620 4.8004 184.20009 681.61466 640.72301 -5.16432 0.05022 -2.57556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71503 0.20130 -1.00000 - 4040 2017 8 21 5 27 1 420 4.8003 184.20270 681.56221 640.67888 -5.15454 0.05052 -2.57261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71468 0.20130 -1.00000 - 4041 2017 8 21 5 27 6 221 4.8002 184.20562 681.50973 640.63473 -5.14452 0.05027 -2.56970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71433 0.20130 -1.00000 - 4042 2017 8 21 5 27 11 21 4.8002 184.20861 681.45719 640.59057 -5.13429 0.04992 -2.56669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71398 0.20130 -1.00000 - 4043 2017 8 21 5 27 15 821 4.8001 184.21135 681.40462 640.54639 -5.12387 0.04980 -2.56371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71364 0.20130 -1.00000 - 4044 2017 8 21 5 27 20 621 4.8001 184.21390 681.35202 640.50219 -5.11329 0.05021 -2.56075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71329 0.20130 -1.00000 - 4045 2017 8 21 5 27 25 421 4.8000 184.21662 681.29938 640.45799 -5.10258 0.05036 -2.55769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71294 0.20130 -1.00000 - 4046 2017 8 21 5 27 30 221 4.8000 184.21957 681.24669 640.41376 -5.09178 0.04995 -2.55465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71259 0.20130 -1.00000 - 4047 2017 8 21 5 27 35 21 4.7999 184.22251 681.19397 640.36952 -5.08090 0.04977 -2.55150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71224 0.20130 -1.00000 - 4048 2017 8 21 5 27 39 821 4.7998 184.22517 681.14123 640.32527 -5.06999 0.04969 -2.54856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71189 0.20130 -1.00000 - 4049 2017 8 21 5 27 44 620 4.7998 184.22773 681.08845 640.28101 -5.05906 0.05013 -2.54548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71154 0.20130 -1.00000 - 4050 2017 8 21 5 27 49 420 4.7997 184.23055 681.03566 640.23673 -5.04814 0.05012 -2.54247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71119 0.20130 -1.00000 - 4051 2017 8 21 5 27 54 220 4.7997 184.23353 680.98285 640.19245 -5.03727 0.04965 -2.53951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71084 0.20130 -1.00000 - 4052 2017 8 21 5 27 59 19 4.7996 184.23639 680.93000 640.14815 -5.02647 0.04952 -2.53657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71049 0.20130 -1.00000 - 4053 2017 8 21 5 28 3 819 4.7996 184.23899 680.87712 640.10385 -5.01577 0.04966 -2.53360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71014 0.20129 -1.00000 - 4054 2017 8 21 5 28 8 619 4.7995 184.24158 680.82423 640.05954 -5.00520 0.05001 -2.53073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70980 0.20129 -1.00000 - 4055 2017 8 21 5 28 13 418 4.7994 184.24449 680.77135 640.01523 -4.99480 0.04981 -2.52801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70945 0.20129 -1.00000 - 4056 2017 8 21 5 28 18 217 4.7994 184.24748 680.71844 639.97091 -4.98460 0.04943 -2.52522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70910 0.20129 -1.00000 - 4057 2017 8 21 5 28 23 17 4.7993 184.25026 680.66552 639.92658 -4.97463 0.04926 -2.52262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70875 0.20129 -1.00000 - 4058 2017 8 21 5 28 27 816 4.7993 184.25281 680.61258 639.88225 -4.96492 0.04965 -2.52004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70840 0.20129 -1.00000 - 4059 2017 8 21 5 28 32 615 4.7992 184.25550 680.55963 639.83792 -4.95551 0.04985 -2.51758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70805 0.20129 -1.00000 - 4060 2017 8 21 5 28 37 414 4.7991 184.25845 680.50667 639.79359 -4.94641 0.04949 -2.51510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70770 0.20129 -1.00000 - 4061 2017 8 21 5 28 42 213 4.7991 184.26141 680.45372 639.74926 -4.93766 0.04929 -2.51275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70735 0.20129 -1.00000 - 4062 2017 8 21 5 28 47 12 4.7990 184.26410 680.40078 639.70493 -4.92928 0.04918 -2.51051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70700 0.20129 -1.00000 - 4063 2017 8 21 5 28 51 811 4.7990 184.26664 680.34783 639.66060 -4.92128 0.04961 -2.50833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70665 0.20129 -1.00000 - 4064 2017 8 21 5 28 56 610 4.7989 184.26944 680.29488 639.61628 -4.91369 0.04964 -2.50620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70631 0.20129 -1.00000 - 4065 2017 8 21 5 29 1 409 4.7989 184.27242 680.24195 639.57196 -4.90652 0.04918 -2.50421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70596 0.20129 -1.00000 - 4066 2017 8 21 5 29 6 208 4.7988 184.27530 680.18904 639.52765 -4.89981 0.04907 -2.50246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70561 0.20129 -1.00000 - 4067 2017 8 21 5 29 11 7 4.7988 184.27791 680.13613 639.48334 -4.89357 0.04913 -2.50067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70526 0.20129 -1.00000 - 4068 2017 8 21 5 29 15 805 4.7987 184.28050 680.08323 639.43904 -4.88781 0.04948 -2.49913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70491 0.20129 -1.00000 - 4069 2017 8 21 5 29 20 604 4.7986 184.28339 680.03034 639.39476 -4.88256 0.04930 -2.49768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70456 0.20129 -1.00000 - 4070 2017 8 21 5 29 25 403 4.7986 184.28638 679.97746 639.35049 -4.87783 0.04894 -2.49637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70421 0.20129 -1.00000 - 4071 2017 8 21 5 29 30 201 4.7985 184.28918 679.92460 639.30622 -4.87363 0.04876 -2.49512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70386 0.20129 -1.00000 - 4072 2017 8 21 5 29 35 0 4.7985 184.29174 679.87177 639.26198 -4.86996 0.04909 -2.49402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70351 0.20129 -1.00000 - 4073 2017 8 21 5 29 39 798 4.7984 184.29441 679.81897 639.21774 -4.86683 0.04931 -2.49301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70317 0.20129 -1.00000 - 4074 2017 8 21 5 29 44 596 4.7983 184.29736 679.76618 639.17353 -4.86422 0.04898 -2.49201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70282 0.20129 -1.00000 - 4075 2017 8 21 5 29 49 395 4.7983 184.30033 679.71345 639.12934 -4.86214 0.04876 -2.49138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70247 0.20129 -1.00000 - 4076 2017 8 21 5 29 54 193 4.7982 184.30304 679.66074 639.08517 -4.86058 0.04864 -2.49072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70212 0.20129 -1.00000 - 4077 2017 8 21 5 29 58 991 4.7982 184.30558 679.60809 639.04103 -4.85951 0.04907 -2.49025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70177 0.20129 -1.00000 - 4078 2017 8 21 5 30 3 789 4.7981 184.30837 679.55548 638.99690 -4.85892 0.04912 -2.48989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70142 0.20129 -1.00000 - 4079 2017 8 21 5 30 8 587 4.7981 184.31134 679.50291 638.95281 -4.85879 0.04867 -2.48970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70107 0.20129 -1.00000 - 4080 2017 8 21 5 30 13 385 4.7980 184.31423 679.45038 638.90874 -4.85910 0.04857 -2.48957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70072 0.20129 -1.00000 - 4081 2017 8 21 5 30 18 183 4.7980 184.31686 679.39791 638.86470 -4.85983 0.04857 -2.48959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70037 0.20128 -1.00000 - 4082 2017 8 21 5 30 22 981 4.7979 184.31945 679.34551 638.82069 -4.86096 0.04894 -2.48982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70002 0.20128 -1.00000 - 4083 2017 8 21 5 30 27 779 4.7978 184.32233 679.29315 638.77672 -4.86247 0.04878 -2.49005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69968 0.20128 -1.00000 - 4084 2017 8 21 5 30 32 577 4.7978 184.32532 679.24085 638.73276 -4.86433 0.04843 -2.49047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69933 0.20128 -1.00000 - 4085 2017 8 21 5 30 37 375 4.7977 184.32812 679.18860 638.68884 -4.86652 0.04827 -2.49093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69898 0.20128 -1.00000 - 4086 2017 8 21 5 30 42 172 4.7977 184.33070 679.13641 638.64495 -4.86903 0.04855 -2.49162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69863 0.20128 -1.00000 - 4087 2017 8 21 5 30 46 970 4.7976 184.33336 679.08426 638.60110 -4.87183 0.04878 -2.49228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69828 0.20128 -1.00000 - 4088 2017 8 21 5 30 51 767 4.7976 184.33630 679.03219 638.55728 -4.87491 0.04847 -2.49309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69793 0.20128 -1.00000 - 4089 2017 8 21 5 30 56 565 4.7975 184.33928 678.98018 638.51348 -4.87825 0.04824 -2.49403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69758 0.20128 -1.00000 - 4090 2017 8 21 5 31 1 362 4.7975 184.34200 678.92822 638.46972 -4.88185 0.04811 -2.49502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69723 0.20128 -1.00000 - 4091 2017 8 21 5 31 6 160 4.7974 184.34454 678.87630 638.42599 -4.88569 0.04854 -2.49605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69688 0.20128 -1.00000 - 4092 2017 8 21 5 31 10 957 4.7973 184.34732 678.82446 638.38230 -4.88978 0.04860 -2.49721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69654 0.20128 -1.00000 - 4093 2017 8 21 5 31 15 754 4.7973 184.35029 678.77269 638.33863 -4.89412 0.04815 -2.49857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69619 0.20128 -1.00000 - 4094 2017 8 21 5 31 20 552 4.7972 184.35319 678.72095 638.29501 -4.89870 0.04808 -2.49986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69584 0.20128 -1.00000 - 4095 2017 8 21 5 31 25 349 4.7972 184.35583 678.66929 638.25142 -4.90355 0.04803 -2.50138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69549 0.20128 -1.00000 - 4096 2017 8 21 5 31 30 146 4.7971 184.35842 678.61766 638.20786 -4.90864 0.04841 -2.50295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69514 0.20128 -1.00000 - 4097 2017 8 21 5 31 34 943 4.7971 184.36129 678.56609 638.16433 -4.91400 0.04827 -2.50456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69479 0.20128 -1.00000 - 4098 2017 8 21 5 31 39 740 4.7970 184.36428 678.51456 638.12085 -4.91962 0.04793 -2.50616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69444 0.20128 -1.00000 - 4099 2017 8 21 5 31 44 537 4.7970 184.36709 678.46311 638.07739 -4.92548 0.04778 -2.50785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69409 0.20128 -1.00000 - 4100 2017 8 21 5 31 49 334 4.7969 184.36967 678.41172 638.03397 -4.93159 0.04802 -2.50963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69375 0.20128 -1.00000 - 4101 2017 8 21 5 31 54 131 4.7968 184.37233 678.36037 637.99059 -4.93791 0.04826 -2.51137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69340 0.20128 -1.00000 - 4102 2017 8 21 5 31 58 927 4.7968 184.37527 678.30907 637.94725 -4.94444 0.04796 -2.51315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69305 0.20128 -1.00000 - 4103 2017 8 21 5 32 3 724 4.7967 184.37825 678.25786 637.90394 -4.95115 0.04773 -2.51499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69270 0.20128 -1.00000 - 4104 2017 8 21 5 32 8 521 4.7967 184.38098 678.20672 637.86067 -4.95802 0.04760 -2.51695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69235 0.20128 -1.00000 - 4105 2017 8 21 5 32 13 318 4.7966 184.38352 678.15562 637.81745 -4.96502 0.04802 -2.51881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69200 0.20128 -1.00000 - 4106 2017 8 21 5 32 18 114 4.7966 184.38630 678.10461 637.77426 -4.97212 0.04808 -2.52084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69165 0.20128 -1.00000 - 4107 2017 8 21 5 32 22 911 4.7965 184.38927 678.05364 637.73111 -4.97930 0.04763 -2.52287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69130 0.20128 -1.00000 - 4108 2017 8 21 5 32 27 707 4.7965 184.39217 678.00274 637.68800 -4.98653 0.04758 -2.52488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69095 0.20128 -1.00000 - 4109 2017 8 21 5 32 32 503 4.7964 184.39482 677.95190 637.64493 -4.99380 0.04750 -2.52689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69061 0.20128 -1.00000 - 4110 2017 8 21 5 32 37 300 4.7964 184.39740 677.90113 637.60190 -5.00109 0.04788 -2.52891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69026 0.20127 -1.00000 - 4111 2017 8 21 5 32 42 96 4.7963 184.40027 677.85043 637.55890 -5.00838 0.04774 -2.53088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68991 0.20127 -1.00000 - 4112 2017 8 21 5 32 46 892 4.7962 184.40326 677.79978 637.51595 -5.01566 0.04741 -2.53275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68956 0.20127 -1.00000 - 4113 2017 8 21 5 32 51 688 4.7962 184.40608 677.74921 637.47302 -5.02291 0.04727 -2.53479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68921 0.20127 -1.00000 - 4114 2017 8 21 5 32 56 485 4.7961 184.40867 677.69869 637.43014 -5.03014 0.04749 -2.53665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68886 0.20127 -1.00000 - 4115 2017 8 21 5 33 1 281 4.7961 184.41132 677.64825 637.38729 -5.03733 0.04773 -2.53854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68851 0.20127 -1.00000 - 4116 2017 8 21 5 33 6 77 4.7960 184.41426 677.59787 637.34448 -5.04447 0.04744 -2.54038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68816 0.20127 -1.00000 - 4117 2017 8 21 5 33 10 873 4.7960 184.41724 677.54755 637.30169 -5.05155 0.04721 -2.54221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68782 0.20127 -1.00000 - 4118 2017 8 21 5 33 15 669 4.7959 184.41997 677.49726 637.25894 -5.05855 0.04708 -2.54398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68747 0.20127 -1.00000 - 4119 2017 8 21 5 33 20 464 4.7959 184.42252 677.44704 637.21622 -5.06545 0.04749 -2.54568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68712 0.20127 -1.00000 - 4120 2017 8 21 5 33 25 260 4.7958 184.42530 677.39688 637.17353 -5.07223 0.04754 -2.54742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68677 0.20127 -1.00000 - 4121 2017 8 21 5 33 30 56 4.7957 184.42826 677.34675 637.13087 -5.07888 0.04710 -2.54900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68642 0.20127 -1.00000 - 4122 2017 8 21 5 33 34 852 4.7957 184.43117 677.29666 637.08822 -5.08536 0.04707 -2.55058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68607 0.20127 -1.00000 - 4123 2017 8 21 5 33 39 647 4.7956 184.43382 677.24661 637.04561 -5.09166 0.04697 -2.55201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68572 0.20127 -1.00000 - 4124 2017 8 21 5 33 44 443 4.7956 184.43640 677.19661 637.00302 -5.09775 0.04734 -2.55352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68537 0.20127 -1.00000 - 4125 2017 8 21 5 33 49 238 4.7955 184.43927 677.14662 636.96045 -5.10360 0.04720 -2.55477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68503 0.20127 -1.00000 - 4126 2017 8 21 5 33 54 34 4.7955 184.44226 677.09667 636.91790 -5.10918 0.04688 -2.55603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68468 0.20127 -1.00000 - 4127 2017 8 21 5 33 58 829 4.7954 184.44509 677.04677 636.87536 -5.11447 0.04674 -2.55721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68433 0.20127 -1.00000 - 4128 2017 8 21 5 34 3 625 4.7954 184.44767 676.99688 636.83284 -5.11944 0.04696 -2.55828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68398 0.20127 -1.00000 - 4129 2017 8 21 5 34 8 420 4.7953 184.45032 676.94699 636.79034 -5.12407 0.04720 -2.55921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68363 0.20127 -1.00000 - 4130 2017 8 21 5 34 13 215 4.7953 184.45327 676.89714 636.74786 -5.12834 0.04690 -2.56002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68328 0.20127 -1.00000 - 4131 2017 8 21 5 34 18 10 4.7952 184.45625 676.84731 636.70538 -5.13222 0.04669 -2.56085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68293 0.20127 -1.00000 - 4132 2017 8 21 5 34 22 806 4.7952 184.45898 676.79748 636.66291 -5.13571 0.04655 -2.56146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68258 0.20127 -1.00000 - 4133 2017 8 21 5 34 27 601 4.7951 184.46153 676.74766 636.62045 -5.13878 0.04696 -2.56205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68224 0.20127 -1.00000 - 4134 2017 8 21 5 34 32 396 4.7950 184.46431 676.69784 636.57800 -5.14143 0.04701 -2.56253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68189 0.20127 -1.00000 - 4135 2017 8 21 5 34 37 191 4.7950 184.46727 676.64802 636.53555 -5.14364 0.04659 -2.56290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68154 0.20127 -1.00000 - 4136 2017 8 21 5 34 41 986 4.7949 184.47018 676.59818 636.49311 -5.14540 0.04656 -2.56307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68119 0.20127 -1.00000 - 4137 2017 8 21 5 34 46 781 4.7949 184.47283 676.54835 636.45067 -5.14670 0.04645 -2.56318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68084 0.20127 -1.00000 - 4138 2017 8 21 5 34 51 575 4.7948 184.47542 676.49852 636.40823 -5.14754 0.04682 -2.56321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68049 0.20126 -1.00000 - 4139 2017 8 21 5 34 56 370 4.7948 184.47828 676.44865 636.36579 -5.14792 0.04667 -2.56300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68014 0.20126 -1.00000 - 4140 2017 8 21 5 35 1 165 4.7947 184.48127 676.39878 636.32335 -5.14784 0.04637 -2.56284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67979 0.20126 -1.00000 - 4141 2017 8 21 5 35 5 960 4.7947 184.48410 676.34889 636.28091 -5.14730 0.04622 -2.56246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67945 0.20126 -1.00000 - 4142 2017 8 21 5 35 10 754 4.7946 184.48669 676.29899 636.23846 -5.14632 0.04644 -2.56201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67910 0.20126 -1.00000 - 4143 2017 8 21 5 35 15 549 4.7946 184.48934 676.24907 636.19602 -5.14490 0.04668 -2.56141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67875 0.20126 -1.00000 - 4144 2017 8 21 5 35 20 343 4.7945 184.49228 676.19913 636.15357 -5.14308 0.04638 -2.56075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67840 0.20126 -1.00000 - 4145 2017 8 21 5 35 25 138 4.7945 184.49527 676.14917 636.11112 -5.14086 0.04618 -2.55997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67805 0.20126 -1.00000 - 4146 2017 8 21 5 35 29 932 4.7944 184.49800 676.09919 636.06866 -5.13828 0.04604 -2.55906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67770 0.20126 -1.00000 - 4147 2017 8 21 5 35 34 726 4.7944 184.50055 676.04919 636.02620 -5.13535 0.04645 -2.55811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67735 0.20126 -1.00000 - 4148 2017 8 21 5 35 39 521 4.7943 184.50333 675.99916 635.98374 -5.13210 0.04649 -2.55698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67701 0.20126 -1.00000 - 4149 2017 8 21 5 35 44 315 4.7942 184.50630 675.94913 635.94126 -5.12855 0.04608 -2.55582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67666 0.20126 -1.00000 - 4150 2017 8 21 5 35 49 109 4.7942 184.50920 675.89905 635.89878 -5.12472 0.04605 -2.55446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67631 0.20126 -1.00000 - 4151 2017 8 21 5 35 53 903 4.7941 184.51185 675.84896 635.85629 -5.12062 0.04595 -2.55316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67596 0.20126 -1.00000 - 4152 2017 8 21 5 35 58 697 4.7941 184.51444 675.79883 635.81380 -5.11626 0.04630 -2.55161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67561 0.20126 -1.00000 - 4153 2017 8 21 5 36 3 492 4.7940 184.51731 675.74869 635.77130 -5.11166 0.04613 -2.55005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67526 0.20126 -1.00000 - 4154 2017 8 21 5 36 8 285 4.7940 184.52030 675.69853 635.72879 -5.10682 0.04586 -2.54838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67491 0.20126 -1.00000 - 4155 2017 8 21 5 36 13 79 4.7939 184.52313 675.64835 635.68627 -5.10173 0.04570 -2.54665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67456 0.20126 -1.00000 - 4156 2017 8 21 5 36 17 873 4.7939 184.52571 675.59813 635.64374 -5.09641 0.04592 -2.54485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67422 0.20126 -1.00000 - 4157 2017 8 21 5 36 22 667 4.7938 184.52836 675.54790 635.60121 -5.09084 0.04615 -2.54291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67387 0.20126 -1.00000 - 4158 2017 8 21 5 36 27 461 4.7938 184.53131 675.49764 635.55866 -5.08504 0.04584 -2.54100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67352 0.20126 -1.00000 - 4159 2017 8 21 5 36 32 255 4.7937 184.53429 675.44736 635.51611 -5.07900 0.04565 -2.53896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67317 0.20126 -1.00000 - 4160 2017 8 21 5 36 37 48 4.7937 184.53702 675.39706 635.47354 -5.07272 0.04551 -2.53689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67282 0.20126 -1.00000 - 4161 2017 8 21 5 36 41 842 4.7936 184.53957 675.34673 635.43097 -5.06619 0.04592 -2.53473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67247 0.20126 -1.00000 - 4162 2017 8 21 5 36 46 635 4.7936 184.54235 675.29638 635.38839 -5.05942 0.04596 -2.53263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67212 0.20126 -1.00000 - 4163 2017 8 21 5 36 51 429 4.7935 184.54532 675.24598 635.34579 -5.05239 0.04555 -2.53028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67178 0.20126 -1.00000 - 4164 2017 8 21 5 36 56 222 4.7935 184.54822 675.19556 635.30318 -5.04512 0.04551 -2.52798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67143 0.20126 -1.00000 - 4165 2017 8 21 5 37 1 16 4.7934 184.55086 675.14513 635.26056 -5.03760 0.04542 -2.52562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67108 0.20126 -1.00000 - 4166 2017 8 21 5 37 5 809 4.7934 184.55345 675.09467 635.21794 -5.02982 0.04576 -2.52323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67073 0.20125 -1.00000 - 4167 2017 8 21 5 37 10 603 4.7933 184.55632 675.04418 635.17530 -5.02181 0.04558 -2.52081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67038 0.20125 -1.00000 - 4168 2017 8 21 5 37 15 396 4.7932 184.55932 674.99366 635.13265 -5.01356 0.04532 -2.51828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67003 0.20125 -1.00000 - 4169 2017 8 21 5 37 20 189 4.7932 184.56214 674.94312 635.08998 -5.00510 0.04514 -2.51586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66968 0.20125 -1.00000 - 4170 2017 8 21 5 37 24 982 4.7932 184.56471 674.89255 635.04731 -4.99643 0.04538 -2.51333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66934 0.20125 -1.00000 - 4171 2017 8 21 5 37 29 775 4.7931 184.56737 674.84195 635.00463 -4.98758 0.04561 -2.51082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66899 0.20125 -1.00000 - 4172 2017 8 21 5 37 34 568 4.7930 184.57032 674.79133 634.96194 -4.97857 0.04529 -2.50833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66864 0.20125 -1.00000 - 4173 2017 8 21 5 37 39 361 4.7930 184.57329 674.74069 634.91923 -4.96944 0.04511 -2.50590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66829 0.20125 -1.00000 - 4174 2017 8 21 5 37 44 154 4.7929 184.57601 674.68999 634.87652 -4.96020 0.04497 -2.50328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66794 0.20125 -1.00000 - 4175 2017 8 21 5 37 48 947 4.7929 184.57856 674.63928 634.83379 -4.95090 0.04538 -2.50080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66759 0.20125 -1.00000 - 4176 2017 8 21 5 37 53 740 4.7928 184.58134 674.58856 634.79106 -4.94157 0.04540 -2.49833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66724 0.20125 -1.00000 - 4177 2017 8 21 5 37 58 533 4.7928 184.58431 674.53782 634.74831 -4.93224 0.04501 -2.49590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66690 0.20125 -1.00000 - 4178 2017 8 21 5 38 3 325 4.7927 184.58720 674.48704 634.70556 -4.92295 0.04495 -2.49346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66655 0.20125 -1.00000 - 4179 2017 8 21 5 38 8 118 4.7927 184.58983 674.43624 634.66280 -4.91373 0.04488 -2.49100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66620 0.20125 -1.00000 - 4180 2017 8 21 5 38 12 911 4.7926 184.59242 674.38543 634.62004 -4.90465 0.04521 -2.48869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66585 0.20125 -1.00000 - 4181 2017 8 21 5 38 17 703 4.7926 184.59530 674.33460 634.57727 -4.89572 0.04502 -2.48634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66550 0.20125 -1.00000 - 4182 2017 8 21 5 38 22 496 4.7925 184.59829 674.28376 634.53449 -4.88699 0.04478 -2.48410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66515 0.20125 -1.00000 - 4183 2017 8 21 5 38 27 288 4.7925 184.60109 674.23292 634.49172 -4.87850 0.04459 -2.48196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66480 0.20125 -1.00000 - 4184 2017 8 21 5 38 32 81 4.7924 184.60365 674.18206 634.44894 -4.87028 0.04485 -2.47982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66446 0.20125 -1.00000 - 4185 2017 8 21 5 38 36 873 4.7924 184.60633 674.13117 634.40616 -4.86237 0.04506 -2.47771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66411 0.20125 -1.00000 - 4186 2017 8 21 5 38 41 666 4.7923 184.60928 674.08030 634.36338 -4.85478 0.04473 -2.47572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66376 0.20125 -1.00000 - 4187 2017 8 21 5 38 46 458 4.7923 184.61224 674.02944 634.32061 -4.84755 0.04457 -2.47384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66341 0.20125 -1.00000 - 4188 2017 8 21 5 38 51 250 4.7922 184.61493 673.97858 634.27783 -4.84070 0.04445 -2.47202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66306 0.20125 -1.00000 - 4189 2017 8 21 5 38 56 42 4.7922 184.61748 673.92771 634.23506 -4.83425 0.04484 -2.47031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66271 0.20125 -1.00000 - 4190 2017 8 21 5 39 0 834 4.7921 184.62028 673.87684 634.19230 -4.82822 0.04482 -2.46860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66237 0.20125 -1.00000 - 4191 2017 8 21 5 39 5 626 4.7921 184.62324 673.82598 634.14954 -4.82263 0.04447 -2.46703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66202 0.20125 -1.00000 - 4192 2017 8 21 5 39 10 419 4.7920 184.62611 673.77515 634.10679 -4.81749 0.04439 -2.46550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66167 0.20125 -1.00000 - 4193 2017 8 21 5 39 15 210 4.7920 184.62873 673.72433 634.06405 -4.81281 0.04434 -2.46411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66132 0.20125 -1.00000 - 4194 2017 8 21 5 39 20 2 4.7919 184.63132 673.67352 634.02132 -4.80859 0.04466 -2.46286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66097 0.20125 -1.00000 - 4195 2017 8 21 5 39 24 794 4.7919 184.63421 673.62274 633.97860 -4.80482 0.04444 -2.46164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66062 0.20124 -1.00000 - 4196 2017 8 21 5 39 29 586 4.7918 184.63719 673.57196 633.93590 -4.80150 0.04423 -2.46055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66027 0.20124 -1.00000 - 4197 2017 8 21 5 39 34 378 4.7918 184.63997 673.52122 633.89321 -4.79861 0.04404 -2.45955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65993 0.20124 -1.00000 - 4198 2017 8 21 5 39 39 170 4.7917 184.64252 673.47053 633.85054 -4.79615 0.04432 -2.45873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65958 0.20124 -1.00000 - 4199 2017 8 21 5 39 43 961 4.7917 184.64521 673.41985 633.80789 -4.79410 0.04450 -2.45794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65923 0.20124 -1.00000 - 4200 2017 8 21 5 39 48 753 4.7916 184.64816 673.36919 633.76525 -4.79244 0.04416 -2.45733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65888 0.20124 -1.00000 - 4201 2017 8 21 5 39 53 545 4.7916 184.65109 673.31856 633.72263 -4.79115 0.04404 -2.45673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65853 0.20124 -1.00000 - 4202 2017 8 21 5 39 58 336 4.7915 184.65377 673.26796 633.68003 -4.79021 0.04391 -2.45626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65818 0.20124 -1.00000 - 4203 2017 8 21 5 40 3 128 4.7915 184.65632 673.21741 633.63745 -4.78960 0.04428 -2.45586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65784 0.20124 -1.00000 - 4204 2017 8 21 5 40 7 919 4.7914 184.65913 673.16691 633.59490 -4.78931 0.04422 -2.45557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65749 0.20124 -1.00000 - 4205 2017 8 21 5 40 12 710 4.7914 184.66209 673.11644 633.55236 -4.78932 0.04392 -2.45542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65714 0.20124 -1.00000 - 4206 2017 8 21 5 40 17 502 4.7913 184.66493 673.06600 633.50985 -4.78961 0.04381 -2.45530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65679 0.20124 -1.00000 - 4207 2017 8 21 5 40 22 293 4.7913 184.66753 673.01560 633.46736 -4.79018 0.04381 -2.45532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65644 0.20124 -1.00000 - 4208 2017 8 21 5 40 27 84 4.7912 184.67014 672.96525 633.42490 -4.79100 0.04409 -2.45543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65609 0.20124 -1.00000 - 4209 2017 8 21 5 40 31 875 4.7912 184.67303 672.91495 633.38247 -4.79207 0.04384 -2.45568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65574 0.20124 -1.00000 - 4210 2017 8 21 5 40 36 666 4.7911 184.67599 672.86470 633.34005 -4.79339 0.04368 -2.45599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65540 0.20124 -1.00000 - 4211 2017 8 21 5 40 41 458 4.7911 184.67875 672.81448 633.29766 -4.79494 0.04348 -2.45645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65505 0.20124 -1.00000 - 4212 2017 8 21 5 40 46 249 4.7910 184.68129 672.76428 633.25530 -4.79671 0.04379 -2.45689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65470 0.20124 -1.00000 - 4213 2017 8 21 5 40 51 40 4.7910 184.68400 672.71414 633.21296 -4.79872 0.04393 -2.45745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65435 0.20124 -1.00000 - 4214 2017 8 21 5 40 55 831 4.7909 184.68694 672.66406 633.17066 -4.80094 0.04356 -2.45805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65400 0.20124 -1.00000 - 4215 2017 8 21 5 41 0 621 4.7909 184.68986 672.61403 633.12838 -4.80339 0.04350 -2.45878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65365 0.20124 -1.00000 - 4216 2017 8 21 5 41 5 412 4.7908 184.69251 672.56404 633.08613 -4.80606 0.04336 -2.45961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65331 0.20124 -1.00000 - 4217 2017 8 21 5 41 10 203 4.7908 184.69506 672.51410 633.04390 -4.80894 0.04371 -2.46044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65296 0.20124 -1.00000 - 4218 2017 8 21 5 41 14 994 4.7907 184.69788 672.46420 633.00171 -4.81205 0.04361 -2.46138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65261 0.20124 -1.00000 - 4219 2017 8 21 5 41 19 784 4.7907 184.70084 672.41436 632.95954 -4.81538 0.04337 -2.46240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65226 0.20124 -1.00000 - 4220 2017 8 21 5 41 24 575 4.7906 184.70366 672.36458 632.91741 -4.81894 0.04322 -2.46351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65191 0.20124 -1.00000 - 4221 2017 8 21 5 41 29 366 4.7906 184.70623 672.31485 632.87530 -4.82271 0.04330 -2.46469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65156 0.20124 -1.00000 - 4222 2017 8 21 5 41 34 156 4.7905 184.70884 672.26515 632.83323 -4.82670 0.04354 -2.46594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65122 0.20124 -1.00000 - 4223 2017 8 21 5 41 38 947 4.7905 184.71175 672.21549 632.79118 -4.83091 0.04326 -2.46716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65087 0.20123 -1.00000 - 4224 2017 8 21 5 41 43 737 4.7904 184.71470 672.16588 632.74916 -4.83532 0.04313 -2.46847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65052 0.20123 -1.00000 - 4225 2017 8 21 5 41 48 528 4.7904 184.71743 672.11634 632.70718 -4.83994 0.04295 -2.46977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65017 0.20123 -1.00000 - 4226 2017 8 21 5 41 53 318 4.7904 184.71995 672.06686 632.66523 -4.84476 0.04329 -2.47120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64982 0.20123 -1.00000 - 4227 2017 8 21 5 41 58 108 4.7903 184.72269 672.01743 632.62331 -4.84976 0.04336 -2.47266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64947 0.20123 -1.00000 - 4228 2017 8 21 5 42 2 898 4.7902 184.72562 671.96804 632.58142 -4.85494 0.04297 -2.47411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64913 0.20123 -1.00000 - 4229 2017 8 21 5 42 7 689 4.7902 184.72851 671.91870 632.53956 -4.86028 0.04297 -2.47560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64878 0.20123 -1.00000 - 4230 2017 8 21 5 42 12 479 4.7902 184.73113 671.86942 632.49773 -4.86577 0.04284 -2.47713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64843 0.20123 -1.00000 - 4231 2017 8 21 5 42 17 269 4.7901 184.73368 671.82020 632.45594 -4.87140 0.04316 -2.47871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64808 0.20123 -1.00000 - 4232 2017 8 21 5 42 22 59 4.7901 184.73652 671.77104 632.41418 -4.87715 0.04299 -2.48031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64773 0.20123 -1.00000 - 4233 2017 8 21 5 42 26 849 4.7900 184.73948 671.72191 632.37244 -4.88301 0.04282 -2.48191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64738 0.20123 -1.00000 - 4234 2017 8 21 5 42 31 639 4.7900 184.74227 671.67283 632.33074 -4.88896 0.04262 -2.48345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64704 0.20123 -1.00000 - 4235 2017 8 21 5 42 36 429 4.7899 184.74481 671.62380 632.28906 -4.89499 0.04279 -2.48506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64669 0.20123 -1.00000 - 4236 2017 8 21 5 42 41 219 4.7899 184.74746 671.57482 632.24742 -4.90107 0.04299 -2.48658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64634 0.20123 -1.00000 - 4237 2017 8 21 5 42 46 9 4.7898 184.75037 671.52591 632.20581 -4.90719 0.04270 -2.48818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64599 0.20123 -1.00000 - 4238 2017 8 21 5 42 50 798 4.7898 184.75330 671.47704 632.16423 -4.91333 0.04259 -2.48981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64564 0.20123 -1.00000 - 4239 2017 8 21 5 42 55 588 4.7897 184.75599 671.42822 632.12267 -4.91948 0.04245 -2.49135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64529 0.20123 -1.00000 - 4240 2017 8 21 5 43 0 378 4.7897 184.75851 671.37943 632.08114 -4.92561 0.04278 -2.49286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64495 0.20123 -1.00000 - 4241 2017 8 21 5 43 5 167 4.7896 184.76127 671.33069 632.03965 -4.93172 0.04275 -2.49438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64460 0.20123 -1.00000 - 4242 2017 8 21 5 43 9 957 4.7896 184.76420 671.28201 631.99818 -4.93778 0.04249 -2.49588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64425 0.20123 -1.00000 - 4243 2017 8 21 5 43 14 746 4.7895 184.76704 671.23338 631.95673 -4.94378 0.04240 -2.49736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64390 0.20123 -1.00000 - 4244 2017 8 21 5 43 19 536 4.7895 184.76964 671.18477 631.91531 -4.94969 0.04231 -2.49880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64355 0.20123 -1.00000 - 4245 2017 8 21 5 43 24 325 4.7894 184.77222 671.13619 631.87391 -4.95551 0.04259 -2.50012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64320 0.20123 -1.00000 - 4246 2017 8 21 5 43 29 115 4.7894 184.77508 671.08765 631.83254 -4.96120 0.04237 -2.50144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64286 0.20123 -1.00000 - 4247 2017 8 21 5 43 33 904 4.7893 184.77802 671.03916 631.79119 -4.96674 0.04225 -2.50264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64251 0.20123 -1.00000 - 4248 2017 8 21 5 43 38 693 4.7893 184.78077 670.99071 631.74986 -4.97211 0.04205 -2.50387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64216 0.20123 -1.00000 - 4249 2017 8 21 5 43 43 483 4.7893 184.78329 670.94229 631.70855 -4.97729 0.04228 -2.50507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64181 0.20123 -1.00000 - 4250 2017 8 21 5 43 48 272 4.7892 184.78597 670.89389 631.66726 -4.98224 0.04242 -2.50612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64146 0.20123 -1.00000 - 4251 2017 8 21 5 43 53 61 4.7891 184.78890 670.84550 631.62598 -4.98696 0.04208 -2.50711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64111 0.20123 -1.00000 - 4252 2017 8 21 5 43 57 850 4.7891 184.79181 670.79715 631.58473 -4.99141 0.04206 -2.50805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64077 0.20122 -1.00000 - 4253 2017 8 21 5 44 2 639 4.7891 184.79448 670.74883 631.54349 -4.99559 0.04189 -2.50894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64042 0.20122 -1.00000 - 4254 2017 8 21 5 44 7 428 4.7890 184.79703 670.70053 631.50227 -4.99947 0.04228 -2.50976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64007 0.20122 -1.00000 - 4255 2017 8 21 5 44 12 217 4.7890 184.79986 670.65223 631.46105 -5.00303 0.04227 -2.51049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63972 0.20122 -1.00000 - 4256 2017 8 21 5 44 17 6 4.7889 184.80283 670.60394 631.41985 -5.00626 0.04200 -2.51107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63937 0.20122 -1.00000 - 4257 2017 8 21 5 44 21 795 4.7889 184.80566 670.55567 631.37866 -5.00916 0.04201 -2.51162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63902 0.20122 -1.00000 - 4258 2017 8 21 5 44 26 584 4.7888 184.80825 670.50741 631.33748 -5.01172 0.04255 -2.51200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63868 0.20122 -1.00000 - 4259 2017 8 21 5 44 31 373 4.7888 184.81086 670.45917 631.29631 -5.01392 0.04300 -2.51238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63833 0.20122 -1.00000 - 4260 2017 8 21 5 44 36 161 4.7887 184.81374 670.41094 631.25515 -5.01576 0.04286 -2.51269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63798 0.20122 -1.00000 - 4261 2017 8 21 5 44 40 950 4.7887 184.81668 670.36270 631.21399 -5.01725 0.04280 -2.51283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63763 0.20122 -1.00000 - 4262 2017 8 21 5 44 45 739 4.7886 184.81941 670.31445 631.17284 -5.01837 0.04276 -2.51289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63728 0.20122 -1.00000 - 4263 2017 8 21 5 44 50 527 4.7886 184.82192 670.26621 631.13170 -5.01914 0.04313 -2.51288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63694 0.20122 -1.00000 - 4264 2017 8 21 5 44 55 316 4.7885 184.82460 670.21798 631.09055 -5.01954 0.04336 -2.51278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63659 0.20122 -1.00000 - 4265 2017 8 21 5 45 0 104 4.7885 184.82754 670.16975 631.04941 -5.01959 0.04311 -2.51260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63624 0.20122 -1.00000 - 4266 2017 8 21 5 45 4 893 4.7884 184.83043 670.12149 631.00827 -5.01927 0.04317 -2.51233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63589 0.20122 -1.00000 - 4267 2017 8 21 5 45 9 681 4.7884 184.83304 670.07322 630.96713 -5.01860 0.04297 -2.51190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63554 0.20122 -1.00000 - 4268 2017 8 21 5 45 14 469 4.7883 184.83550 670.02494 630.92599 -5.01758 0.04320 -2.51142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63519 0.20122 -1.00000 - 4269 2017 8 21 5 45 19 258 4.7883 184.83830 669.97666 630.88485 -5.01621 0.04310 -2.51077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63485 0.20122 -1.00000 - 4270 2017 8 21 5 45 24 46 4.7882 184.84128 669.92838 630.84370 -5.01450 0.04306 -2.51012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63450 0.20122 -1.00000 - 4271 2017 8 21 5 45 28 834 4.7882 184.84410 669.88008 630.80256 -5.01245 0.04281 -2.50940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63415 0.20122 -1.00000 - 4272 2017 8 21 5 45 33 622 4.7882 184.84659 669.83176 630.76141 -5.01007 0.04264 -2.50851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63380 0.20122 -1.00000 - 4273 2017 8 21 5 45 38 410 4.7881 184.84918 669.78341 630.72025 -5.00737 0.04287 -2.50755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63345 0.20122 -1.00000 - 4274 2017 8 21 5 45 43 198 4.7880 184.85206 669.73505 630.67910 -5.00435 0.04261 -2.50651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63310 0.20122 -1.00000 - 4275 2017 8 21 5 45 47 986 4.7880 184.85500 669.68669 630.63793 -5.00104 0.04260 -2.50542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63276 0.20122 -1.00000 - 4276 2017 8 21 5 45 52 774 4.7880 184.85770 669.63830 630.59676 -4.99743 0.04237 -2.50425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63241 0.20122 -1.00000 - 4277 2017 8 21 5 45 57 562 4.7879 184.86018 669.58988 630.55559 -4.99354 0.04233 -2.50302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63206 0.20122 -1.00000 - 4278 2017 8 21 5 46 2 350 4.7879 184.86289 669.54143 630.51441 -4.98938 0.04229 -2.50163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63171 0.20122 -1.00000 - 4279 2017 8 21 5 46 7 138 4.7878 184.86582 669.49296 630.47321 -4.98497 0.04202 -2.50022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63136 0.20122 -1.00000 - 4280 2017 8 21 5 46 11 926 4.7878 184.86869 669.44447 630.43202 -4.98031 0.04190 -2.49867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63102 0.20121 -1.00000 - 4281 2017 8 21 5 46 16 713 4.7877 184.87128 669.39598 630.39082 -4.97542 0.04163 -2.49713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63067 0.20121 -1.00000 - 4282 2017 8 21 5 46 21 501 4.7877 184.87383 669.34746 630.34961 -4.97031 0.04184 -2.49555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63032 0.20121 -1.00000 - 4283 2017 8 21 5 46 26 289 4.7876 184.87666 669.29891 630.30840 -4.96499 0.04160 -2.49384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62997 0.20121 -1.00000 - 4284 2017 8 21 5 46 31 76 4.7876 184.87960 669.25033 630.26717 -4.95947 0.04144 -2.49208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62962 0.20121 -1.00000 - 4285 2017 8 21 5 46 35 864 4.7876 184.88237 669.20174 630.22595 -4.95375 0.04118 -2.49029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62927 0.20121 -1.00000 - 4286 2017 8 21 5 46 40 651 4.7875 184.88489 669.15313 630.18471 -4.94786 0.04134 -2.48847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62893 0.20121 -1.00000 - 4287 2017 8 21 5 46 45 439 4.7875 184.88754 669.10451 630.14347 -4.94179 0.04149 -2.48660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62858 0.20121 -1.00000 - 4288 2017 8 21 5 46 50 226 4.7874 184.89045 669.05585 630.10222 -4.93556 0.04116 -2.48471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62823 0.20121 -1.00000 - 4289 2017 8 21 5 46 55 14 4.7874 184.89337 669.00716 630.06097 -4.92918 0.04105 -2.48271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62788 0.20121 -1.00000 - 4290 2017 8 21 5 46 59 801 4.7873 184.89603 668.95845 630.01970 -4.92266 0.04089 -2.48072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62753 0.20121 -1.00000 - 4291 2017 8 21 5 47 4 588 4.7873 184.89852 668.90973 629.97844 -4.91600 0.04125 -2.47863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62719 0.20121 -1.00000 - 4292 2017 8 21 5 47 9 375 4.7872 184.90129 668.86100 629.93717 -4.90923 0.04121 -2.47659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62684 0.20121 -1.00000 - 4293 2017 8 21 5 47 14 163 4.7872 184.90423 668.81225 629.89589 -4.90235 0.04093 -2.47455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62649 0.20121 -1.00000 - 4294 2017 8 21 5 47 18 950 4.7871 184.90707 668.76347 629.85461 -4.89538 0.04083 -2.47243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62614 0.20121 -1.00000 - 4295 2017 8 21 5 47 23 737 4.7871 184.90963 668.71466 629.81332 -4.88832 0.04087 -2.47030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62579 0.20121 -1.00000 - 4296 2017 8 21 5 47 28 524 4.7871 184.91220 668.66584 629.77203 -4.88121 0.04119 -2.46818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62545 0.20121 -1.00000 - 4297 2017 8 21 5 47 33 311 4.7870 184.91505 668.61702 629.73073 -4.87404 0.04098 -2.46607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62510 0.20121 -1.00000 - 4298 2017 8 21 5 47 38 98 4.7870 184.91799 668.56818 629.68943 -4.86684 0.04091 -2.46396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62475 0.20121 -1.00000 - 4299 2017 8 21 5 47 42 885 4.7869 184.92073 668.51931 629.64812 -4.85962 0.04075 -2.46189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62440 0.20121 -1.00000 - 4300 2017 8 21 5 47 47 672 4.7869 184.92323 668.47042 629.60681 -4.85240 0.04102 -2.45975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62405 0.20121 -1.00000 - 4301 2017 8 21 5 47 52 459 4.7868 184.92589 668.42151 629.56549 -4.84520 0.04120 -2.45765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62370 0.20121 -1.00000 - 4302 2017 8 21 5 47 57 245 4.7868 184.92880 668.37259 629.52418 -4.83803 0.04087 -2.45551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62336 0.20121 -1.00000 - 4303 2017 8 21 5 48 2 32 4.7867 184.93168 668.32368 629.48287 -4.83092 0.04091 -2.45346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62301 0.20121 -1.00000 - 4304 2017 8 21 5 48 6 819 4.7867 184.93431 668.27476 629.44155 -4.82387 0.04079 -2.45146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62266 0.20121 -1.00000 - 4305 2017 8 21 5 48 11 605 4.7867 184.93680 668.22582 629.40023 -4.81691 0.04113 -2.44943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62231 0.20121 -1.00000 - 4306 2017 8 21 5 48 16 392 4.7866 184.93958 668.17685 629.35891 -4.81005 0.04107 -2.44743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62196 0.20121 -1.00000 - 4307 2017 8 21 5 48 21 179 4.7866 184.94252 668.12789 629.31760 -4.80332 0.04094 -2.44548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62162 0.20121 -1.00000 - 4308 2017 8 21 5 48 25 965 4.7865 184.94531 668.07894 629.27629 -4.79674 0.04079 -2.44360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62127 0.20121 -1.00000 - 4309 2017 8 21 5 48 30 752 4.7865 184.94781 668.02997 629.23497 -4.79032 0.04079 -2.44176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62092 0.20120 -1.00000 - 4310 2017 8 21 5 48 35 538 4.7864 184.95041 667.98099 629.19366 -4.78407 0.04106 -2.44000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62057 0.20120 -1.00000 - 4311 2017 8 21 5 48 40 324 4.7864 184.95328 667.93199 629.15236 -4.77803 0.04082 -2.43822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62022 0.20120 -1.00000 - 4312 2017 8 21 5 48 45 111 4.7863 184.95619 667.88299 629.11106 -4.77220 0.04086 -2.43652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61988 0.20120 -1.00000 - 4313 2017 8 21 5 48 49 897 4.7863 184.95887 667.83398 629.06977 -4.76659 0.04066 -2.43482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61953 0.20120 -1.00000 - 4314 2017 8 21 5 48 54 683 4.7863 184.96133 667.78500 629.02850 -4.76123 0.04079 -2.43325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61918 0.20120 -1.00000 - 4315 2017 8 21 5 48 59 470 4.7862 184.96403 667.73603 628.98724 -4.75613 0.04082 -2.43177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61883 0.20120 -1.00000 - 4316 2017 8 21 5 49 4 256 4.7862 184.96695 667.68707 628.94601 -4.75129 0.04060 -2.43028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61848 0.20120 -1.00000 - 4317 2017 8 21 5 49 9 42 4.7861 184.96980 667.63814 628.90480 -4.74673 0.04056 -2.42887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61814 0.20120 -1.00000 - 4318 2017 8 21 5 49 13 828 4.7861 184.97236 667.58926 628.86362 -4.74246 0.04034 -2.42754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61779 0.20120 -1.00000 - 4319 2017 8 21 5 49 18 614 4.7860 184.97489 667.54047 628.82249 -4.73848 0.04060 -2.42630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61744 0.20120 -1.00000 - 4320 2017 8 21 5 49 23 400 4.7860 184.97769 667.49177 628.78139 -4.73480 0.04040 -2.42512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61709 0.20120 -1.00000 - 4321 2017 8 21 5 49 28 186 4.7859 184.98060 667.44316 628.74035 -4.73142 0.04041 -2.42406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61674 0.20120 -1.00000 - 4322 2017 8 21 5 49 32 972 4.7859 184.98335 667.39468 628.69935 -4.72834 0.04016 -2.42299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61640 0.20120 -1.00000 - 4323 2017 8 21 5 49 37 758 4.7859 184.98584 667.34635 628.65841 -4.72556 0.04018 -2.42202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61605 0.20120 -1.00000 - 4324 2017 8 21 5 49 42 543 4.7858 184.98847 667.29819 628.61753 -4.72307 0.04032 -2.42104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61570 0.20120 -1.00000 - 4325 2017 8 21 5 49 47 329 4.7858 184.99136 667.25023 628.57670 -4.72087 0.04000 -2.42021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61535 0.20120 -1.00000 - 4326 2017 8 21 5 49 52 115 4.7857 184.99424 667.20246 628.53592 -4.71895 0.04005 -2.41946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61500 0.20120 -1.00000 - 4327 2017 8 21 5 49 56 901 4.7857 184.99687 667.15486 628.49518 -4.71729 0.03988 -2.41872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61465 0.20120 -1.00000 - 4328 2017 8 21 5 50 1 686 4.7857 184.99935 667.10742 628.45446 -4.71589 0.04006 -2.41805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61431 0.20120 -1.00000 - 4329 2017 8 21 5 50 6 472 4.7856 185.00209 667.06016 628.41377 -4.71474 0.03996 -2.41744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61396 0.20120 -1.00000 - 4330 2017 8 21 5 50 11 257 4.7856 185.00501 667.01303 628.37309 -4.71382 0.03981 -2.41694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61361 0.20120 -1.00000 - 4331 2017 8 21 5 50 16 43 4.7855 185.00781 666.96600 628.33238 -4.71313 0.03964 -2.41648 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61326 0.20120 -1.00000 - 4332 2017 8 21 5 50 20 828 4.7855 185.01032 666.91900 628.29165 -4.71265 0.03962 -2.41615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61291 0.20120 -1.00000 - 4333 2017 8 21 5 50 25 614 4.7854 185.01291 666.87200 628.25086 -4.71238 0.03985 -2.41582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61257 0.20120 -1.00000 - 4334 2017 8 21 5 50 30 399 4.7854 185.01576 666.82495 628.21001 -4.71232 0.03961 -2.41558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61222 0.20120 -1.00000 - 4335 2017 8 21 5 50 35 185 4.7853 185.01865 666.77779 628.16907 -4.71247 0.03962 -2.41536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61187 0.20120 -1.00000 - 4336 2017 8 21 5 50 39 970 4.7853 185.02132 666.73049 628.12804 -4.71281 0.03943 -2.41530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61152 0.20120 -1.00000 - 4337 2017 8 21 5 50 44 755 4.7853 185.02379 666.68297 628.08690 -4.71336 0.03959 -2.41535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61117 0.20119 -1.00000 - 4338 2017 8 21 5 50 49 540 4.7852 185.02648 666.63519 628.04564 -4.71412 0.03960 -2.41543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61083 0.20119 -1.00000 - 4339 2017 8 21 5 50 54 326 4.7852 185.02939 666.58709 628.00425 -4.71509 0.03939 -2.41561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61048 0.20119 -1.00000 - 4340 2017 8 21 5 50 59 111 4.7851 185.03223 666.53867 627.96274 -4.71629 0.03936 -2.41590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61013 0.20119 -1.00000 - 4341 2017 8 21 5 51 3 896 4.7851 185.03478 666.48991 627.92111 -4.71772 0.03923 -2.41633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60978 0.20119 -1.00000 - 4342 2017 8 21 5 51 8 681 4.7851 185.03731 666.44078 627.87937 -4.71939 0.03952 -2.41685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60943 0.20119 -1.00000 - 4343 2017 8 21 5 51 13 466 4.7850 185.04009 666.39127 627.83752 -4.72131 0.03933 -2.41753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60909 0.20119 -1.00000 - 4344 2017 8 21 5 51 18 251 4.7850 185.04299 666.34139 627.79558 -4.72349 0.03934 -2.41827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60874 0.20119 -1.00000 - 4345 2017 8 21 5 51 23 36 4.7849 185.04572 666.29117 627.75357 -4.72595 0.03913 -2.41914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60839 0.20119 -1.00000 - 4346 2017 8 21 5 51 27 821 4.7849 185.04821 666.24065 627.71151 -4.72868 0.03919 -2.42007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60804 0.20119 -1.00000 - 4347 2017 8 21 5 51 32 605 4.7848 185.05084 666.18987 627.66942 -4.73170 0.03936 -2.42118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60770 0.20119 -1.00000 - 4348 2017 8 21 5 51 37 390 4.7848 185.05371 666.13887 627.62733 -4.73500 0.03907 -2.42243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60735 0.20119 -1.00000 - 4349 2017 8 21 5 51 42 175 4.7847 185.05657 666.08770 627.58526 -4.73858 0.03918 -2.42373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60700 0.20119 -1.00000 - 4350 2017 8 21 5 51 46 960 4.7847 185.05919 666.03642 627.54324 -4.74244 0.03903 -2.42515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60665 0.20119 -1.00000 - 4351 2017 8 21 5 51 51 744 4.7847 185.06165 665.98511 627.50130 -4.74659 0.03923 -2.42666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60630 0.20119 -1.00000 - 4352 2017 8 21 5 51 56 529 4.7846 185.06438 665.93384 627.45946 -4.75100 0.03913 -2.42830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60596 0.20119 -1.00000 - 4353 2017 8 21 5 52 1 313 4.7846 185.06728 665.88267 627.41774 -4.75567 0.03905 -2.43001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60561 0.20119 -1.00000 - 4354 2017 8 21 5 52 6 98 4.7845 185.07006 665.83166 627.37617 -4.76058 0.03890 -2.43185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60526 0.20119 -1.00000 - 4355 2017 8 21 5 52 10 883 4.7845 185.07256 665.78086 627.33476 -4.76573 0.03884 -2.43368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60491 0.20119 -1.00000 - 4356 2017 8 21 5 52 15 667 4.7845 185.07514 665.73035 627.29354 -4.77109 0.03909 -2.43558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60456 0.20119 -1.00000 - 4357 2017 8 21 5 52 20 451 4.7844 185.07798 665.68019 627.25251 -4.77666 0.03885 -2.43746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60422 0.20119 -1.00000 - 4358 2017 8 21 5 52 25 236 4.7844 185.08084 665.63044 627.21169 -4.78242 0.03891 -2.43944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60387 0.20119 -1.00000 - 4359 2017 8 21 5 52 30 20 4.7843 185.08348 665.58111 627.17108 -4.78835 0.03873 -2.44145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60352 0.20119 -1.00000 - 4360 2017 8 21 5 52 34 804 4.7843 185.08593 665.53224 627.13068 -4.79443 0.03883 -2.44339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60317 0.20119 -1.00000 - 4361 2017 8 21 5 52 39 589 4.7843 185.08863 665.48385 627.09050 -4.80066 0.03880 -2.44535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60282 0.20119 -1.00000 - 4362 2017 8 21 5 52 44 373 4.7842 185.09153 665.43597 627.05053 -4.80701 0.03867 -2.44725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60248 0.20119 -1.00000 - 4363 2017 8 21 5 52 49 157 4.7842 185.09434 665.38861 627.01075 -4.81346 0.03857 -2.44916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60213 0.20119 -1.00000 - 4364 2017 8 21 5 52 53 941 4.7841 185.09685 665.34175 626.97118 -4.81999 0.03844 -2.45101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60178 0.20119 -1.00000 - 4365 2017 8 21 5 52 58 725 4.7841 185.09939 665.29537 626.93177 -4.82657 0.03870 -2.45285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60143 0.20119 -1.00000 - 4366 2017 8 21 5 53 3 509 4.7840 185.10218 665.24945 626.89253 -4.83314 0.03850 -2.45454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60108 0.20118 -1.00000 - 4367 2017 8 21 5 53 8 293 4.7840 185.10504 665.20397 626.85343 -4.83967 0.03854 -2.45617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60074 0.20118 -1.00000 - 4368 2017 8 21 5 53 13 77 4.7840 185.10773 665.15890 626.81446 -4.84606 0.03834 -2.45765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60039 0.20118 -1.00000 - 4369 2017 8 21 5 53 17 861 4.7839 185.11019 665.11422 626.77559 -4.85224 0.03832 -2.45909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60004 0.20118 -1.00000 - 4370 2017 8 21 5 53 22 645 4.7839 185.11285 665.06985 626.73680 -4.85810 0.03839 -2.46043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59969 0.20118 -1.00000 - 4371 2017 8 21 5 53 27 429 4.7838 185.11572 665.02575 626.69807 -4.86351 0.03821 -2.46159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59934 0.20118 -1.00000 - 4372 2017 8 21 5 53 32 213 4.7838 185.11854 664.98187 626.65938 -4.86835 0.03823 -2.46267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59900 0.20118 -1.00000 - 4373 2017 8 21 5 53 36 996 4.7838 185.12110 664.93817 626.62070 -4.87245 0.03804 -2.46358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59865 0.20118 -1.00000 - 4374 2017 8 21 5 53 41 780 4.7837 185.12359 664.89459 626.58202 -4.87565 0.03827 -2.46443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59830 0.20118 -1.00000 - 4375 2017 8 21 5 53 46 564 4.7837 185.12633 664.85107 626.54330 -4.87776 0.03808 -2.46511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59795 0.20118 -1.00000 - 4376 2017 8 21 5 53 51 348 4.7836 185.12921 664.80755 626.50454 -4.87859 0.03809 -2.46573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59761 0.20118 -1.00000 - 4377 2017 8 21 5 53 56 131 4.7836 185.13194 664.76396 626.46571 -4.87841 0.03789 -2.46615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59726 0.20118 -1.00000 - 4378 2017 8 21 5 54 0 915 4.7836 185.13442 664.72028 626.42680 -4.88019 0.03785 -2.46645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59691 0.20118 -1.00000 - 4379 2017 8 21 5 54 5 698 4.7835 185.13703 664.67645 626.38780 -4.88039 0.03804 -2.46658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59656 0.20118 -1.00000 - 4380 2017 8 21 5 54 10 482 4.7835 185.13987 664.63245 626.34869 -4.87872 0.03778 -2.46664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59621 0.20118 -1.00000 - 4381 2017 8 21 5 54 15 265 4.7834 185.14270 664.58822 626.30946 -4.87494 0.03787 -2.46659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59587 0.20118 -1.00000 - 4382 2017 8 21 5 54 20 49 4.7834 185.14530 664.54372 626.27011 -4.86881 0.03772 -2.46638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59552 0.20118 -1.00000 - 4383 2017 8 21 5 54 24 832 4.7834 185.14775 664.49894 626.23062 -4.86020 0.03787 -2.46615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59517 0.20118 -1.00000 - 4384 2017 8 21 5 54 29 615 4.7833 185.15046 664.45384 626.19101 -4.84905 0.03778 -2.46576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59482 0.20118 -1.00000 - 4385 2017 8 21 5 54 34 398 4.7833 185.15335 664.40843 626.15126 -4.83547 0.03774 -2.46538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59447 0.20118 -1.00000 - 4386 2017 8 21 5 54 39 182 4.7832 185.15611 664.36268 626.11138 -4.81965 0.03758 -2.46495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59413 0.20118 -1.00000 - 4387 2017 8 21 5 54 43 965 4.7832 185.15857 664.31659 626.07136 -4.80189 0.03750 -2.46459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59378 0.20118 -1.00000 - 4388 2017 8 21 5 54 48 748 4.7832 185.16114 664.27014 626.03123 -4.78261 0.03773 -2.46413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59343 0.20118 -1.00000 - 4389 2017 8 21 5 54 53 531 4.7831 185.16395 664.22338 625.99098 -4.76231 0.03750 -2.46373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59308 0.20118 -1.00000 - 4390 2017 8 21 5 54 58 314 4.7831 185.16680 664.17632 625.95063 -4.74150 0.03758 -2.46335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59274 0.20118 -1.00000 - 4391 2017 8 21 5 55 3 97 4.7830 185.16942 664.12898 625.91018 -4.72863 0.03743 -2.46307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59239 0.20118 -1.00000 - 4392 2017 8 21 5 55 7 880 4.7830 185.17185 664.08139 625.86966 -4.73386 0.03748 -2.46287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59204 0.20118 -1.00000 - 4393 2017 8 21 5 55 12 663 4.7830 185.17454 664.03356 625.82907 -4.75295 0.03745 -2.46271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59169 0.20118 -1.00000 - 4394 2017 8 21 5 55 17 446 4.7829 185.17742 663.98553 625.78843 -4.77646 0.03737 -2.46274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59134 0.20117 -1.00000 - 4395 2017 8 21 5 55 22 229 4.7829 185.18019 663.93733 625.74775 -4.80121 0.03727 -2.46278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59100 0.20117 -1.00000 - 4396 2017 8 21 5 55 27 12 4.7829 185.18266 663.88902 625.70704 -4.82660 0.03718 -2.46302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59065 0.20117 -1.00000 - 4397 2017 8 21 5 55 31 795 4.7828 185.18521 663.84062 625.66633 -4.85218 0.03743 -2.46334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59030 0.20117 -1.00000 - 4398 2017 8 21 5 55 36 578 4.7828 185.18800 663.79217 625.62562 -4.87721 0.03720 -2.46386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58995 0.20117 -1.00000 - 4399 2017 8 21 5 55 41 360 4.7827 185.19083 663.74367 625.58492 -4.90101 0.03727 -2.46433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58961 0.20117 -1.00000 - 4400 2017 8 21 5 55 46 143 4.7827 185.19346 663.69519 625.54425 -4.92290 0.03708 -2.46492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58926 0.20117 -1.00000 - 4401 2017 8 21 5 55 50 926 4.7827 185.19589 663.64675 625.50362 -4.94212 0.03709 -2.46552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58891 0.20117 -1.00000 - 4402 2017 8 21 5 55 55 708 4.7826 185.19856 663.59838 625.46303 -4.95801 0.03710 -2.46615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58856 0.20117 -1.00000 - 4403 2017 8 21 5 56 0 491 4.7826 185.20145 663.55010 625.42250 -4.96996 0.03702 -2.46672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58821 0.20117 -1.00000 - 4404 2017 8 21 5 56 5 273 4.7825 185.20423 663.50194 625.38203 -4.98196 0.03695 -2.46720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58787 0.20117 -1.00000 - 4405 2017 8 21 5 56 10 56 4.7825 185.20670 663.45392 625.34163 -5.00665 0.03685 -2.46771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58752 0.20117 -1.00000 - 4406 2017 8 21 5 56 14 838 4.7825 185.20921 663.40607 625.30130 -5.02911 0.03705 -2.46796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58717 0.20117 -1.00000 - 4407 2017 8 21 5 56 19 621 4.7824 185.21197 663.35839 625.26106 -5.04807 0.03689 -2.46814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58682 0.20117 -1.00000 - 4408 2017 8 21 5 56 24 403 4.7824 185.21480 663.31089 625.22089 -5.08091 0.03696 -2.46815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58647 0.20117 -1.00000 - 4409 2017 8 21 5 56 29 185 4.7823 185.21746 663.26354 625.18078 -5.11967 0.03671 -2.46787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58613 0.20117 -1.00000 - 4410 2017 8 21 5 56 33 968 4.7823 185.21989 663.21633 625.14075 -5.15435 0.03664 -2.46721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58578 0.20117 -1.00000 - 4411 2017 8 21 5 56 38 750 4.7823 185.22255 663.16930 625.10079 -5.18373 0.03671 -2.46628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58543 0.20117 -1.00000 - 4412 2017 8 21 5 56 43 532 4.7822 185.22540 663.12244 625.06089 -5.20690 0.03654 -2.46503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58508 0.20117 -1.00000 - 4413 2017 8 21 5 56 48 314 4.7822 185.22817 663.07572 625.02105 -5.22315 0.03661 -2.46340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58474 0.20117 -1.00000 - 4414 2017 8 21 5 56 53 97 4.7822 185.23068 663.02913 624.98127 -5.23198 0.03649 -2.46147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58439 0.20117 -1.00000 - 4415 2017 8 21 5 56 57 879 4.7821 185.23319 662.98262 624.94152 -5.23320 0.03668 -2.45914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58404 0.20117 -1.00000 - 4416 2017 8 21 5 57 2 661 4.7821 185.23592 662.93618 624.90180 -5.26121 0.03652 -2.45647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58369 0.20117 -1.00000 - 4417 2017 8 21 5 57 7 443 4.7820 185.23872 662.88976 624.86208 -5.28686 0.03658 -2.45336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58335 0.20117 -1.00000 - 4418 2017 8 21 5 57 12 225 4.7820 185.24138 662.84336 624.82237 -5.30275 0.03636 -2.44996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58300 0.20117 -1.00000 - 4419 2017 8 21 5 57 17 7 4.7820 185.24384 662.79694 624.78266 -5.30627 0.03622 -2.44621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58265 0.20117 -1.00000 - 4420 2017 8 21 5 57 21 789 4.7819 185.24648 662.75045 624.74292 -5.29689 0.03640 -2.44203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58230 0.20117 -1.00000 - 4421 2017 8 21 5 57 26 571 4.7819 185.24931 662.70386 624.70314 -5.27466 0.03617 -2.43747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58195 0.20117 -1.00000 - 4422 2017 8 21 5 57 31 352 4.7818 185.25208 662.65715 624.66332 -5.24015 0.03620 -2.43263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58161 0.20117 -1.00000 - 4423 2017 8 21 5 57 36 134 4.7818 185.25460 662.61030 624.62344 -5.19432 0.03611 -2.42758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58126 0.20116 -1.00000 - 4424 2017 8 21 5 57 40 916 4.7818 185.25706 662.56328 624.58350 -5.13836 0.03623 -2.42229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58091 0.20116 -1.00000 - 4425 2017 8 21 5 57 45 698 4.7817 185.25978 662.51606 624.54348 -5.07366 0.03621 -2.41693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58056 0.20116 -1.00000 - 4426 2017 8 21 5 57 50 479 4.7817 185.26263 662.46864 624.50339 -5.00206 0.03624 -2.41144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58022 0.20116 -1.00000 - 4427 2017 8 21 5 57 55 261 4.7817 185.26532 662.42102 624.46322 -4.92525 0.03594 -2.40594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57987 0.20116 -1.00000 - 4428 2017 8 21 5 58 0 43 4.7816 185.26774 662.37321 624.42298 -4.84492 0.03585 -2.40041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57952 0.20116 -1.00000 - 4429 2017 8 21 5 58 4 824 4.7816 185.27031 662.32525 624.38268 -4.76261 0.03604 -2.39506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57917 0.20116 -1.00000 - 4430 2017 8 21 5 58 9 606 4.7815 185.27312 662.27713 624.34231 -4.67957 0.03582 -2.38988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57882 0.20116 -1.00000 - 4431 2017 8 21 5 58 14 387 4.7815 185.27592 662.22885 624.30188 -4.59717 0.03596 -2.38485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57848 0.20116 -1.00000 - 4432 2017 8 21 5 58 19 169 4.7815 185.27850 662.18044 624.26141 -4.52432 0.03587 -2.38006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57813 0.20116 -1.00000 - 4433 2017 8 21 5 58 23 950 4.7814 185.28093 662.13194 624.22090 -4.49274 0.03585 -2.37552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57778 0.20116 -1.00000 - 4434 2017 8 21 5 58 28 732 4.7814 185.28360 662.08336 624.18035 -4.46270 0.03577 -2.37137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57743 0.20116 -1.00000 - 4435 2017 8 21 5 58 33 513 4.7814 185.28642 662.03470 624.13976 -4.45772 0.03582 -2.36752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57709 0.20116 -1.00000 - 4436 2017 8 21 5 58 38 294 4.7813 185.28913 661.98600 624.09917 -4.46812 0.03572 -2.36413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57674 0.20116 -1.00000 - 4437 2017 8 21 5 58 43 76 4.7813 185.29157 661.93726 624.05857 -4.47648 0.03553 -2.36105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57639 0.20116 -1.00000 - 4438 2017 8 21 5 58 47 857 4.7813 185.29413 661.88852 624.01796 -4.48268 0.03574 -2.35837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57604 0.20116 -1.00000 - 4439 2017 8 21 5 58 52 638 4.7812 185.29692 661.83982 623.97737 -4.48674 0.03552 -2.35605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57569 0.20116 -1.00000 - 4440 2017 8 21 5 58 57 419 4.7812 185.29970 661.79117 623.93680 -4.48860 0.03554 -2.35420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57535 0.20116 -1.00000 - 4441 2017 8 21 5 59 2 200 4.7811 185.30224 661.74258 623.89625 -4.48827 0.03545 -2.35279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57500 0.20116 -1.00000 - 4442 2017 8 21 5 59 6 982 4.7811 185.30467 661.69407 623.85574 -4.48584 0.03549 -2.35172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57465 0.20116 -1.00000 - 4443 2017 8 21 5 59 11 763 4.7811 185.30736 661.64564 623.81526 -4.48147 0.03550 -2.35111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57430 0.20116 -1.00000 - 4444 2017 8 21 5 59 16 544 4.7810 185.31023 661.59733 623.77483 -4.47546 0.03553 -2.35081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57396 0.20116 -1.00000 - 4445 2017 8 21 5 59 21 325 4.7810 185.31293 661.54916 623.73446 -4.46799 0.03533 -2.35097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57361 0.20116 -1.00000 - 4446 2017 8 21 5 59 26 106 4.7810 185.31530 661.50112 623.69414 -4.45917 0.03520 -2.35142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57326 0.20116 -1.00000 - 4447 2017 8 21 5 59 30 887 4.7809 185.31781 661.45324 623.65388 -4.44900 0.03537 -2.35227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57291 0.20116 -1.00000 - 4448 2017 8 21 5 59 35 667 4.7809 185.32060 661.40550 623.61369 -4.44722 0.03530 -2.35326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57257 0.20116 -1.00000 - 4449 2017 8 21 5 59 40 448 4.7808 185.32342 661.35792 623.57357 -4.44722 0.03533 -2.35445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57222 0.20116 -1.00000 - 4450 2017 8 21 5 59 45 229 4.7808 185.32601 661.31052 623.53352 -4.44728 0.03507 -2.35575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57187 0.20116 -1.00000 - 4451 2017 8 21 5 59 50 10 4.7808 185.32840 661.26330 623.49354 -4.44753 0.03500 -2.35718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57152 0.20115 -1.00000 - 4452 2017 8 21 5 59 54 791 4.7807 185.33102 661.21622 623.45363 -4.44810 0.03499 -2.35867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57118 0.20115 -1.00000 - 4453 2017 8 21 5 59 59 571 4.7807 185.33385 661.16929 623.41377 -4.45793 0.03508 -2.36016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57083 0.20115 -1.00000 - 4454 2017 8 21 6 0 4 352 4.7807 185.33660 661.12251 623.37398 -4.48812 0.03509 -2.36179 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57048 0.20115 -1.00000 - 4455 2017 8 21 6 0 9 133 4.7806 185.33905 661.07587 623.33424 -4.51749 0.03492 -2.36335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57013 0.20115 -1.00000 - 4456 2017 8 21 6 0 13 913 4.7806 185.34155 661.02938 623.29456 -4.54538 0.03499 -2.36504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56978 0.20115 -1.00000 - 4457 2017 8 21 6 0 18 694 4.7806 185.34426 660.98301 623.25494 -4.57123 0.03488 -2.36674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56944 0.20115 -1.00000 - 4458 2017 8 21 6 0 23 474 4.7805 185.34701 660.93676 623.21536 -4.59477 0.03494 -2.36852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56909 0.20115 -1.00000 - 4459 2017 8 21 6 0 28 255 4.7805 185.34960 660.89060 623.17583 -4.61585 0.03480 -2.37015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56874 0.20115 -1.00000 - 4460 2017 8 21 6 0 33 35 4.7805 185.35206 660.84454 623.13634 -4.63441 0.03470 -2.37179 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56839 0.20115 -1.00000 - 4461 2017 8 21 6 0 37 816 4.7804 185.35473 660.79859 623.09689 -4.65043 0.03478 -2.37339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56805 0.20115 -1.00000 - 4462 2017 8 21 6 0 42 596 4.7804 185.35754 660.75272 623.05747 -4.66397 0.03469 -2.37492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56770 0.20115 -1.00000 - 4463 2017 8 21 6 0 47 376 4.7804 185.36020 660.70691 623.01808 -4.67513 0.03466 -2.37642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56735 0.20115 -1.00000 - 4464 2017 8 21 6 0 52 157 4.7803 185.36259 660.66115 622.97872 -4.68408 0.03456 -2.37784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56700 0.20115 -1.00000 - 4465 2017 8 21 6 0 56 937 4.7803 185.36512 660.61544 622.93937 -4.69098 0.03475 -2.37931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56666 0.20115 -1.00000 - 4466 2017 8 21 6 1 1 717 4.7802 185.36790 660.56974 622.90004 -4.69608 0.03472 -2.38061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56631 0.20115 -1.00000 - 4467 2017 8 21 6 1 6 498 4.7802 185.37068 660.52406 622.86072 -4.70344 0.03465 -2.38200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56596 0.20115 -1.00000 - 4468 2017 8 21 6 1 11 278 4.7802 185.37322 660.47839 622.82140 -4.72065 0.03438 -2.38343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56561 0.20115 -1.00000 - 4469 2017 8 21 6 1 16 58 4.7802 185.37559 660.43268 622.78208 -4.73368 0.03431 -2.38475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56527 0.20115 -1.00000 - 4470 2017 8 21 6 1 20 838 4.7801 185.37823 660.38692 622.74276 -4.74206 0.03442 -2.38597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56492 0.20115 -1.00000 - 4471 2017 8 21 6 1 25 618 4.7801 185.38108 660.34113 622.70343 -4.74561 0.03442 -2.38716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56457 0.20115 -1.00000 - 4472 2017 8 21 6 1 30 398 4.7800 185.38381 660.29532 622.66409 -4.74458 0.03437 -2.38837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56422 0.20115 -1.00000 - 4473 2017 8 21 6 1 35 178 4.7800 185.38622 660.24946 622.62474 -4.73957 0.03418 -2.38951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56387 0.20115 -1.00000 - 4474 2017 8 21 6 1 39 958 4.7800 185.38867 660.20355 622.58538 -4.73135 0.03418 -2.39074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56353 0.20115 -1.00000 - 4475 2017 8 21 6 1 44 738 4.7799 185.39136 660.15757 622.54602 -4.72075 0.03428 -2.39190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56318 0.20115 -1.00000 - 4476 2017 8 21 6 1 49 518 4.7799 185.39413 660.11155 622.50664 -4.70869 0.03430 -2.39305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56283 0.20115 -1.00000 - 4477 2017 8 21 6 1 54 298 4.7799 185.39676 660.06549 622.46726 -4.69604 0.03404 -2.39417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56248 0.20115 -1.00000 - 4478 2017 8 21 6 1 59 78 4.7798 185.39919 660.01942 622.42788 -4.69210 0.03385 -2.39538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56214 0.20115 -1.00000 - 4479 2017 8 21 6 2 3 857 4.7798 185.40178 659.97333 622.38851 -4.68927 0.03394 -2.39664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56179 0.20115 -1.00000 - 4480 2017 8 21 6 2 8 637 4.7798 185.40454 659.92722 622.34913 -4.68678 0.03382 -2.39790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56144 0.20114 -1.00000 - 4481 2017 8 21 6 2 13 417 4.7797 185.40722 659.88110 622.30977 -4.68485 0.03397 -2.39918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56109 0.20114 -1.00000 - 4482 2017 8 21 6 2 18 197 4.7797 185.40971 659.83500 622.27042 -4.68369 0.03397 -2.40046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56075 0.20114 -1.00000 - 4483 2017 8 21 6 2 22 976 4.7797 185.41222 659.78893 622.23109 -4.68347 0.03394 -2.40185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56040 0.20114 -1.00000 - 4484 2017 8 21 6 2 27 756 4.7796 185.41491 659.74289 622.19178 -4.68429 0.03397 -2.40323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56005 0.20114 -1.00000 - 4485 2017 8 21 6 2 32 536 4.7796 185.41763 659.69688 622.15249 -4.68625 0.03394 -2.40474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55970 0.20114 -1.00000 - 4486 2017 8 21 6 2 37 315 4.7796 185.42017 659.65088 622.11322 -4.68936 0.03373 -2.40621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55936 0.20114 -1.00000 - 4487 2017 8 21 6 2 42 95 4.7795 185.42258 659.60492 622.07398 -4.69360 0.03358 -2.40770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55901 0.20114 -1.00000 - 4488 2017 8 21 6 2 46 874 4.7795 185.42523 659.55900 622.03476 -4.69891 0.03374 -2.40915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55866 0.20114 -1.00000 - 4489 2017 8 21 6 2 51 654 4.7795 185.42804 659.51314 621.99556 -4.70520 0.03359 -2.41065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55831 0.20114 -1.00000 - 4490 2017 8 21 6 2 56 433 4.7794 185.43073 659.46732 621.95640 -4.71240 0.03359 -2.41213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55797 0.20114 -1.00000 - 4491 2017 8 21 6 3 1 212 4.7794 185.43311 659.42154 621.91727 -4.72040 0.03352 -2.41355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55762 0.20114 -1.00000 - 4492 2017 8 21 6 3 5 992 4.7794 185.43557 659.37582 621.87816 -4.72908 0.03358 -2.41503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55727 0.20114 -1.00000 - 4493 2017 8 21 6 3 10 771 4.7793 185.43828 659.33015 621.83909 -4.73829 0.03370 -2.41634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55692 0.20114 -1.00000 - 4494 2017 8 21 6 3 15 550 4.7793 185.44105 659.28455 621.80004 -4.74785 0.03369 -2.41771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55658 0.20114 -1.00000 - 4495 2017 8 21 6 3 20 330 4.7793 185.44364 659.23900 621.76104 -4.75758 0.03341 -2.41904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55623 0.20114 -1.00000 - 4496 2017 8 21 6 3 25 109 4.7792 185.44600 659.19352 621.72205 -4.76728 0.03312 -2.42038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55588 0.20114 -1.00000 - 4497 2017 8 21 6 3 29 888 4.7792 185.44855 659.14806 621.68310 -4.77674 0.03325 -2.42155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55553 0.20114 -1.00000 - 4498 2017 8 21 6 3 34 667 4.7792 185.45133 659.10266 621.64418 -4.78578 0.03319 -2.42264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55519 0.20114 -1.00000 - 4499 2017 8 21 6 3 39 446 4.7791 185.45407 659.05731 621.60528 -4.79424 0.03330 -2.42367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55484 0.20114 -1.00000 - 4500 2017 8 21 6 3 44 225 4.7791 185.45657 659.01202 621.56641 -4.80199 0.03326 -2.42458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55449 0.20114 -1.00000 - 4501 2017 8 21 6 3 49 4 4.7791 185.45899 658.96677 621.52756 -4.80891 0.03317 -2.42540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55414 0.20114 -1.00000 - 4502 2017 8 21 6 3 53 784 4.7790 185.46159 658.92156 621.48874 -4.81495 0.03324 -2.42609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55380 0.20114 -1.00000 - 4503 2017 8 21 6 3 58 563 4.7790 185.46431 658.87639 621.44994 -4.82003 0.03325 -2.42676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55345 0.20114 -1.00000 - 4504 2017 8 21 6 4 3 341 4.7790 185.46693 658.83124 621.41115 -4.82415 0.03306 -2.42718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55310 0.20114 -1.00000 - 4505 2017 8 21 6 4 8 120 4.7789 185.46936 658.78614 621.37239 -4.82729 0.03280 -2.42760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55275 0.20114 -1.00000 - 4506 2017 8 21 6 4 12 899 4.7789 185.47192 658.74107 621.33363 -4.82946 0.03287 -2.42799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55240 0.20114 -1.00000 - 4507 2017 8 21 6 4 17 678 4.7789 185.47466 658.69600 621.29489 -4.83071 0.03281 -2.42820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55206 0.20114 -1.00000 - 4508 2017 8 21 6 4 22 457 4.7788 185.47732 658.65091 621.25615 -4.83107 0.03287 -2.42828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55171 0.20113 -1.00000 - 4509 2017 8 21 6 4 27 236 4.7788 185.47978 658.60584 621.21742 -4.83063 0.03282 -2.42823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55136 0.20113 -1.00000 - 4510 2017 8 21 6 4 32 15 4.7788 185.48226 658.56077 621.17869 -4.82951 0.03288 -2.42815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55101 0.20113 -1.00000 - 4511 2017 8 21 6 4 36 793 4.7787 185.48493 658.51568 621.13995 -4.83143 0.03293 -2.42793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55067 0.20113 -1.00000 - 4512 2017 8 21 6 4 41 572 4.7787 185.48764 658.47058 621.10122 -4.83339 0.03296 -2.42773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55032 0.20113 -1.00000 - 4513 2017 8 21 6 4 46 351 4.7787 185.49019 658.42543 621.06247 -4.83339 0.03276 -2.42737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54997 0.20113 -1.00000 - 4514 2017 8 21 6 4 51 129 4.7786 185.49254 658.38024 621.02372 -4.83137 0.03251 -2.42689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54962 0.20113 -1.00000 - 4515 2017 8 21 6 4 55 908 4.7786 185.49513 658.33500 620.98495 -4.82736 0.03263 -2.42628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54928 0.20113 -1.00000 - 4516 2017 8 21 6 5 0 686 4.7786 185.49791 658.28973 620.94618 -4.82153 0.03252 -2.42563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54893 0.20113 -1.00000 - 4517 2017 8 21 6 5 5 465 4.7785 185.50061 658.24441 620.90738 -4.81410 0.03255 -2.42490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54858 0.20113 -1.00000 - 4518 2017 8 21 6 5 10 244 4.7785 185.50303 658.19904 620.86858 -4.80537 0.03246 -2.42406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54823 0.20113 -1.00000 - 4519 2017 8 21 6 5 15 22 4.7785 185.50545 658.15362 620.82977 -4.79565 0.03243 -2.42316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54789 0.20113 -1.00000 - 4520 2017 8 21 6 5 19 800 4.7784 185.50808 658.10815 620.79094 -4.78535 0.03258 -2.42210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54754 0.20113 -1.00000 - 4521 2017 8 21 6 5 24 579 4.7784 185.51082 658.06265 620.75210 -4.77831 0.03264 -2.42108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54719 0.20113 -1.00000 - 4522 2017 8 21 6 5 29 357 4.7784 185.51341 658.01712 620.71325 -4.77107 0.03240 -2.42001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54684 0.20113 -1.00000 - 4523 2017 8 21 6 5 34 136 4.7784 185.51577 657.97156 620.67440 -4.76373 0.03209 -2.41898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54650 0.20113 -1.00000 - 4524 2017 8 21 6 5 38 914 4.7783 185.51829 657.92596 620.63554 -4.75642 0.03212 -2.41784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54615 0.20113 -1.00000 - 4525 2017 8 21 6 5 43 692 4.7783 185.52102 657.88033 620.59668 -4.74925 0.03212 -2.41666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54580 0.20113 -1.00000 - 4526 2017 8 21 6 5 48 470 4.7783 185.52372 657.83470 620.55781 -4.74235 0.03218 -2.41547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54545 0.20113 -1.00000 - 4527 2017 8 21 6 5 53 249 4.7782 185.52619 657.78906 620.51894 -4.73585 0.03211 -2.41426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54511 0.20113 -1.00000 - 4528 2017 8 21 6 5 58 27 4.7782 185.52863 657.74342 620.48007 -4.72980 0.03210 -2.41304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54476 0.20113 -1.00000 - 4529 2017 8 21 6 6 2 805 4.7782 185.53124 657.69777 620.44121 -4.72426 0.03215 -2.41178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54441 0.20113 -1.00000 - 4530 2017 8 21 6 6 7 583 4.7781 185.53393 657.65213 620.40233 -4.71926 0.03224 -2.41059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54406 0.20113 -1.00000 - 4531 2017 8 21 6 6 12 361 4.7781 185.53649 657.60648 620.36347 -4.71480 0.03210 -2.40924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54372 0.20113 -1.00000 - 4532 2017 8 21 6 6 17 139 4.7781 185.53886 657.56084 620.32460 -4.71088 0.03184 -2.40799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54337 0.20113 -1.00000 - 4533 2017 8 21 6 6 21 917 4.7780 185.54141 657.51523 620.28574 -4.70746 0.03183 -2.40680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54302 0.20113 -1.00000 - 4534 2017 8 21 6 6 26 695 4.7780 185.54415 657.46961 620.24688 -4.70450 0.03179 -2.40557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54268 0.20113 -1.00000 - 4535 2017 8 21 6 6 31 473 4.7780 185.54682 657.42397 620.20801 -4.70193 0.03180 -2.40428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54233 0.20113 -1.00000 - 4536 2017 8 21 6 6 36 251 4.7779 185.54923 657.37833 620.16915 -4.69968 0.03171 -2.40295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54198 0.20113 -1.00000 - 4537 2017 8 21 6 6 41 29 4.7779 185.55167 657.33270 620.13028 -4.69770 0.03179 -2.40168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54163 0.20112 -1.00000 - 4538 2017 8 21 6 6 45 807 4.7779 185.55430 657.28707 620.09141 -4.69589 0.03184 -2.40036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54129 0.20112 -1.00000 - 4539 2017 8 21 6 6 50 585 4.7778 185.55701 657.24143 620.05254 -4.69419 0.03192 -2.39912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54094 0.20112 -1.00000 - 4540 2017 8 21 6 6 55 363 4.7778 185.55956 657.19578 620.01367 -4.69252 0.03173 -2.39784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54059 0.20112 -1.00000 - 4541 2017 8 21 6 7 0 141 4.7778 185.56189 657.15012 619.97479 -4.69082 0.03145 -2.39654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54024 0.20112 -1.00000 - 4542 2017 8 21 6 7 4 918 4.7778 185.56442 657.10444 619.93592 -4.68903 0.03147 -2.39518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53990 0.20112 -1.00000 - 4543 2017 8 21 6 7 9 696 4.7777 185.56716 657.05877 619.89705 -4.68710 0.03143 -2.39388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53955 0.20112 -1.00000 - 4544 2017 8 21 6 7 14 474 4.7777 185.56984 657.01310 619.85817 -4.68499 0.03145 -2.39260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53920 0.20112 -1.00000 - 4545 2017 8 21 6 7 19 251 4.7777 185.57227 656.96742 619.81931 -4.68266 0.03137 -2.39126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53885 0.20112 -1.00000 - 4546 2017 8 21 6 7 24 29 4.7776 185.57467 656.92174 619.78045 -4.68010 0.03134 -2.38995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53851 0.20112 -1.00000 - 4547 2017 8 21 6 7 28 807 4.7776 185.57727 656.87606 619.74159 -4.67729 0.03148 -2.38852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53816 0.20112 -1.00000 - 4548 2017 8 21 6 7 33 584 4.7776 185.57997 656.83041 619.70274 -4.67423 0.03154 -2.38719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53781 0.20112 -1.00000 - 4549 2017 8 21 6 7 38 362 4.7776 185.58253 656.78477 619.66391 -4.67092 0.03134 -2.38585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53746 0.20112 -1.00000 - 4550 2017 8 21 6 7 43 139 4.7775 185.58488 656.73916 619.62508 -4.66741 0.03106 -2.38460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53712 0.20112 -1.00000 - 4551 2017 8 21 6 7 47 917 4.7775 185.58739 656.69355 619.58626 -4.66371 0.03107 -2.38327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53677 0.20112 -1.00000 - 4552 2017 8 21 6 7 52 694 4.7775 185.59010 656.64796 619.54744 -4.65983 0.03110 -2.38192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53642 0.20112 -1.00000 - 4553 2017 8 21 6 7 57 472 4.7774 185.59276 656.60239 619.50863 -4.65577 0.03113 -2.38060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53607 0.20112 -1.00000 - 4554 2017 8 21 6 8 2 249 4.7774 185.59517 656.55684 619.46983 -4.65154 0.03103 -2.37928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53573 0.20112 -1.00000 - 4555 2017 8 21 6 8 7 27 4.7774 185.59761 656.51132 619.43104 -4.64713 0.03104 -2.37800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53538 0.20112 -1.00000 - 4556 2017 8 21 6 8 11 804 4.7773 185.60022 656.46581 619.39225 -4.64255 0.03111 -2.37672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53503 0.20112 -1.00000 - 4557 2017 8 21 6 8 16 581 4.7773 185.60288 656.42031 619.35346 -4.63782 0.03122 -2.37550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53468 0.20112 -1.00000 - 4558 2017 8 21 6 8 21 358 4.7773 185.60540 656.37481 619.31468 -4.63294 0.03109 -2.37417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53434 0.20112 -1.00000 - 4559 2017 8 21 6 8 26 136 4.7773 185.60775 656.32932 619.27590 -4.62794 0.03085 -2.37296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53399 0.20112 -1.00000 - 4560 2017 8 21 6 8 30 913 4.7772 185.61028 656.28385 619.23712 -4.62284 0.03080 -2.37185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53364 0.20112 -1.00000 - 4561 2017 8 21 6 8 35 690 4.7772 185.61299 656.23838 619.19833 -4.61767 0.03083 -2.37075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53329 0.20112 -1.00000 - 4562 2017 8 21 6 8 40 467 4.7772 185.61563 656.19289 619.15954 -4.61248 0.03083 -2.36965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53295 0.20112 -1.00000 - 4563 2017 8 21 6 8 45 244 4.7771 185.61801 656.14738 619.12075 -4.60732 0.03074 -2.36853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53260 0.20112 -1.00000 - 4564 2017 8 21 6 8 50 22 4.7771 185.62044 656.10187 619.08195 -4.60226 0.03073 -2.36751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53225 0.20112 -1.00000 - 4565 2017 8 21 6 8 54 799 4.7771 185.62304 656.05635 619.04315 -4.59735 0.03084 -2.36652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53190 0.20111 -1.00000 - 4566 2017 8 21 6 8 59 576 4.7770 185.62571 656.01083 619.00435 -4.59266 0.03090 -2.36564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53156 0.20111 -1.00000 - 4567 2017 8 21 6 9 4 353 4.7770 185.62822 655.96527 618.96554 -4.58827 0.03072 -2.36480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53121 0.20111 -1.00000 - 4568 2017 8 21 6 9 9 130 4.7770 185.63056 655.91971 618.92674 -4.58423 0.03047 -2.36402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53086 0.20111 -1.00000 - 4569 2017 8 21 6 9 13 907 4.7770 185.63309 655.87412 618.88793 -4.58063 0.03047 -2.36322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53052 0.20111 -1.00000 - 4570 2017 8 21 6 9 18 684 4.7769 185.63578 655.82854 618.84913 -4.57753 0.03048 -2.36258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53017 0.20111 -1.00000 - 4571 2017 8 21 6 9 23 460 4.7769 185.63840 655.78297 618.81033 -4.57495 0.03051 -2.36207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52982 0.20111 -1.00000 - 4572 2017 8 21 6 9 28 237 4.7769 185.64078 655.73738 618.77154 -4.57293 0.03042 -2.36155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52947 0.20111 -1.00000 - 4573 2017 8 21 6 9 33 14 4.7768 185.64320 655.69179 618.73275 -4.57148 0.03036 -2.36111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52913 0.20111 -1.00000 - 4574 2017 8 21 6 9 37 791 4.7768 185.64580 655.64620 618.69398 -4.57058 0.03046 -2.36065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52878 0.20111 -1.00000 - 4575 2017 8 21 6 9 42 568 4.7768 185.64846 655.60064 618.65522 -4.57023 0.03048 -2.36033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52843 0.20111 -1.00000 - 4576 2017 8 21 6 9 47 345 4.7768 185.65096 655.55511 618.61648 -4.57039 0.03031 -2.36006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52808 0.20111 -1.00000 - 4577 2017 8 21 6 9 52 121 4.7767 185.65331 655.50961 618.57776 -4.57101 0.03007 -2.35996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52774 0.20111 -1.00000 - 4578 2017 8 21 6 9 56 898 4.7767 185.65582 655.46413 618.53905 -4.57203 0.03007 -2.35982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52739 0.20111 -1.00000 - 4579 2017 8 21 6 10 1 675 4.7767 185.65849 655.41867 618.50036 -4.57341 0.03013 -2.35971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52704 0.20111 -1.00000 - 4580 2017 8 21 6 10 6 451 4.7766 185.66110 655.37325 618.46168 -4.57507 0.03012 -2.35967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52669 0.20111 -1.00000 - 4581 2017 8 21 6 10 11 228 4.7766 185.66347 655.32787 618.42303 -4.57695 0.02998 -2.35968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52635 0.20111 -1.00000 - 4582 2017 8 21 6 10 16 5 4.7766 185.66591 655.28254 618.38440 -4.57899 0.02991 -2.35977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52600 0.20111 -1.00000 - 4583 2017 8 21 6 10 20 781 4.7766 185.66851 655.23723 618.34579 -4.58112 0.03000 -2.35992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52565 0.20111 -1.00000 - 4584 2017 8 21 6 10 25 558 4.7765 185.67115 655.19196 618.30719 -4.58330 0.03007 -2.36012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52530 0.20111 -1.00000 - 4585 2017 8 21 6 10 30 334 4.7765 185.67362 655.14671 618.26862 -4.58547 0.02994 -2.36024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52496 0.20111 -1.00000 - 4586 2017 8 21 6 10 35 111 4.7765 185.67596 655.10150 618.23006 -4.58760 0.02973 -2.36048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52461 0.20111 -1.00000 - 4587 2017 8 21 6 10 39 887 4.7764 185.67848 655.05633 618.19152 -4.58967 0.02966 -2.36081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52426 0.20111 -1.00000 - 4588 2017 8 21 6 10 44 663 4.7764 185.68116 655.01120 618.15301 -4.59167 0.02971 -2.36124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52392 0.20111 -1.00000 - 4589 2017 8 21 6 10 49 440 4.7764 185.68375 654.96608 618.11450 -4.59359 0.02969 -2.36162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52357 0.20111 -1.00000 - 4590 2017 8 21 6 10 54 216 4.7764 185.68611 654.92097 618.07601 -4.59545 0.02958 -2.36197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52322 0.20111 -1.00000 - 4591 2017 8 21 6 10 58 993 4.7763 185.68853 654.87588 618.03754 -4.59728 0.02956 -2.36238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52287 0.20111 -1.00000 - 4592 2017 8 21 6 11 3 769 4.7763 185.69113 654.83084 617.99909 -4.59910 0.02967 -2.36283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52253 0.20111 -1.00000 - 4593 2017 8 21 6 11 8 545 4.7763 185.69375 654.78582 617.96065 -4.60095 0.02972 -2.36335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52218 0.20111 -1.00000 - 4594 2017 8 21 6 11 13 321 4.7763 185.69621 654.74082 617.92224 -4.60287 0.02957 -2.36388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52183 0.20110 -1.00000 - 4595 2017 8 21 6 11 18 98 4.7762 185.69857 654.69584 617.88384 -4.60490 0.02935 -2.36442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52148 0.20110 -1.00000 - 4596 2017 8 21 6 11 22 874 4.7762 185.70109 654.65088 617.84546 -4.60708 0.02935 -2.36490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52114 0.20110 -1.00000 - 4597 2017 8 21 6 11 27 650 4.7762 185.70374 654.60597 617.80710 -4.60943 0.02941 -2.36549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52079 0.20110 -1.00000 - 4598 2017 8 21 6 11 32 426 4.7761 185.70632 654.56110 617.76877 -4.61196 0.02944 -2.36615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52044 0.20110 -1.00000 - 4599 2017 8 21 6 11 37 202 4.7761 185.70866 654.51626 617.73046 -4.61464 0.02936 -2.36686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52009 0.20110 -1.00000 - 4600 2017 8 21 6 11 41 978 4.7761 185.71108 654.47145 617.69216 -4.61747 0.02930 -2.36750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51975 0.20110 -1.00000 - 4601 2017 8 21 6 11 46 754 4.7761 185.71367 654.42665 617.65389 -4.62041 0.02939 -2.36810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51940 0.20110 -1.00000 - 4602 2017 8 21 6 11 51 530 4.7760 185.71629 654.38190 617.61563 -4.62342 0.02941 -2.36875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51905 0.20110 -1.00000 - 4603 2017 8 21 6 11 56 306 4.7760 185.71874 654.33720 617.57740 -4.62645 0.02928 -2.36941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51871 0.20110 -1.00000 - 4604 2017 8 21 6 12 1 82 4.7760 185.72109 654.29254 617.53919 -4.62945 0.02911 -2.37014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51836 0.20110 -1.00000 - 4605 2017 8 21 6 12 5 858 4.7760 185.72359 654.24790 617.50099 -4.63237 0.02912 -2.37084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51801 0.20110 -1.00000 - 4606 2017 8 21 6 12 10 634 4.7759 185.72623 654.20329 617.46281 -4.63516 0.02923 -2.37148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51766 0.20110 -1.00000 - 4607 2017 8 21 6 12 15 410 4.7759 185.72877 654.15870 617.42465 -4.63777 0.02920 -2.37212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51732 0.20110 -1.00000 - 4608 2017 8 21 6 12 20 186 4.7759 185.73110 654.11415 617.38651 -4.64017 0.02905 -2.37279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51697 0.20110 -1.00000 - 4609 2017 8 21 6 12 24 962 4.7758 185.73354 654.06964 617.34839 -4.64231 0.02897 -2.37353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51662 0.20110 -1.00000 - 4610 2017 8 21 6 12 29 738 4.7758 185.73616 654.02515 617.31028 -4.64419 0.02905 -2.37422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51627 0.20110 -1.00000 - 4611 2017 8 21 6 12 34 514 4.7758 185.73876 653.98066 617.27217 -4.64578 0.02912 -2.37487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51593 0.20110 -1.00000 - 4612 2017 8 21 6 12 39 289 4.7758 185.74115 653.93618 617.23408 -4.64710 0.02907 -2.37544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51558 0.20110 -1.00000 - 4613 2017 8 21 6 12 44 65 4.7757 185.74349 653.89173 617.19601 -4.64815 0.02895 -2.37605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51523 0.20110 -1.00000 - 4614 2017 8 21 6 12 48 841 4.7757 185.74599 653.84729 617.15796 -4.64896 0.02891 -2.37664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51488 0.20110 -1.00000 - 4615 2017 8 21 6 12 53 616 4.7757 185.74862 653.80289 617.11991 -4.64958 0.02888 -2.37733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51454 0.20110 -1.00000 - 4616 2017 8 21 6 12 58 392 4.7757 185.75115 653.75848 617.08188 -4.65004 0.02873 -2.37789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51419 0.20110 -1.00000 - 4617 2017 8 21 6 13 3 168 4.7756 185.75348 653.71406 617.04385 -4.65041 0.02858 -2.37838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51384 0.20110 -1.00000 - 4618 2017 8 21 6 13 7 943 4.7756 185.75593 653.66966 617.00584 -4.65074 0.02864 -2.37887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51350 0.20110 -1.00000 - 4619 2017 8 21 6 13 12 719 4.7756 185.75855 653.62528 616.96784 -4.65110 0.02874 -2.37936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51315 0.20110 -1.00000 - 4620 2017 8 21 6 13 17 495 4.7756 185.76111 653.58093 616.92985 -4.65156 0.02880 -2.37989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51280 0.20110 -1.00000 - 4621 2017 8 21 6 13 22 270 4.7755 185.76345 653.53658 616.89188 -4.65216 0.02870 -2.38042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51245 0.20110 -1.00000 - 4622 2017 8 21 6 13 27 46 4.7755 185.76581 653.49224 616.85392 -4.65295 0.02853 -2.38089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51211 0.20109 -1.00000 - 4623 2017 8 21 6 13 31 821 4.7755 185.76834 653.44791 616.81596 -4.65398 0.02847 -2.38126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51176 0.20109 -1.00000 - 4624 2017 8 21 6 13 36 597 4.7755 185.77096 653.40361 616.77803 -4.65528 0.02843 -2.38168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51141 0.20109 -1.00000 - 4625 2017 8 21 6 13 41 372 4.7754 185.77347 653.35934 616.74012 -4.65687 0.02833 -2.38212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51106 0.20109 -1.00000 - 4626 2017 8 21 6 13 46 147 4.7754 185.77579 653.31511 616.70222 -4.65875 0.02821 -2.38262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51072 0.20109 -1.00000 - 4627 2017 8 21 6 13 50 923 4.7754 185.77822 653.27089 616.66433 -4.66093 0.02824 -2.38299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51037 0.20109 -1.00000 - 4628 2017 8 21 6 13 55 698 4.7754 185.78081 653.22667 616.62645 -4.66338 0.02836 -2.38328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51002 0.20109 -1.00000 - 4629 2017 8 21 6 14 0 473 4.7753 185.78335 653.18249 616.58858 -4.66606 0.02835 -2.38358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50968 0.20109 -1.00000 - 4630 2017 8 21 6 14 5 249 4.7753 185.78569 653.13834 616.55073 -4.66890 0.02818 -2.38386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50933 0.20109 -1.00000 - 4631 2017 8 21 6 14 10 24 4.7753 185.78809 653.09422 616.51290 -4.67185 0.02801 -2.38418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50898 0.20109 -1.00000 - 4632 2017 8 21 6 14 14 799 4.7753 185.79063 653.05012 616.47507 -4.67482 0.02798 -2.38446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50863 0.20109 -1.00000 - 4633 2017 8 21 6 14 19 574 4.7752 185.79322 653.00603 616.43725 -4.67775 0.02801 -2.38466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50829 0.20109 -1.00000 - 4634 2017 8 21 6 14 24 350 4.7752 185.79568 652.96194 616.39944 -4.68055 0.02798 -2.38475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50794 0.20109 -1.00000 - 4635 2017 8 21 6 14 29 125 4.7752 185.79798 652.91787 616.36164 -4.68318 0.02789 -2.38487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50759 0.20109 -1.00000 - 4636 2017 8 21 6 14 33 900 4.7752 185.80043 652.87384 616.32385 -4.68555 0.02787 -2.38498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50724 0.20109 -1.00000 - 4637 2017 8 21 6 14 38 675 4.7751 185.80302 652.82981 616.28607 -4.68763 0.02790 -2.38505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50690 0.20109 -1.00000 - 4638 2017 8 21 6 14 43 450 4.7751 185.80555 652.78578 616.24829 -4.68937 0.02783 -2.38500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50655 0.20109 -1.00000 - 4639 2017 8 21 6 14 48 225 4.7751 185.80789 652.74175 616.21052 -4.69074 0.02769 -2.38485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50620 0.20109 -1.00000 - 4640 2017 8 21 6 14 53 0 4.7751 185.81030 652.69772 616.17275 -4.69175 0.02766 -2.38469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50586 0.20109 -1.00000 - 4641 2017 8 21 6 14 57 775 4.7750 185.81283 652.65371 616.13499 -4.69241 0.02778 -2.38446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50551 0.20109 -1.00000 - 4642 2017 8 21 6 15 2 550 4.7750 185.81538 652.60972 616.09723 -4.69273 0.02785 -2.38430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50516 0.20109 -1.00000 - 4643 2017 8 21 6 15 7 325 4.7750 185.81775 652.56571 616.05948 -4.69271 0.02774 -2.38403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50481 0.20109 -1.00000 - 4644 2017 8 21 6 15 12 100 4.7750 185.82008 652.52168 616.02172 -4.69237 0.02752 -2.38364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50447 0.20109 -1.00000 - 4645 2017 8 21 6 15 16 875 4.7749 185.82256 652.47764 615.98396 -4.69172 0.02743 -2.38318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50412 0.20109 -1.00000 - 4646 2017 8 21 6 15 21 650 4.7749 185.82517 652.43361 615.94621 -4.69078 0.02747 -2.38272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50377 0.20109 -1.00000 - 4647 2017 8 21 6 15 26 425 4.7749 185.82770 652.38958 615.90846 -4.68956 0.02753 -2.38225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50342 0.20109 -1.00000 - 4648 2017 8 21 6 15 31 200 4.7749 185.83001 652.34554 615.87070 -4.68808 0.02756 -2.38173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50308 0.20109 -1.00000 - 4649 2017 8 21 6 15 35 975 4.7748 185.83238 652.30148 615.83294 -4.68635 0.02762 -2.38108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50273 0.20109 -1.00000 - 4650 2017 8 21 6 15 40 750 4.7748 185.83486 652.25739 615.79518 -4.68437 0.02769 -2.38032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50238 0.20109 -1.00000 - 4651 2017 8 21 6 15 45 524 4.7748 185.83739 652.21330 615.75741 -4.68216 0.02758 -2.37958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50204 0.20108 -1.00000 - 4652 2017 8 21 6 15 50 299 4.7748 185.83976 652.16922 615.71965 -4.67974 0.02732 -2.37879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50169 0.20108 -1.00000 - 4653 2017 8 21 6 15 55 74 4.7747 185.84212 652.12513 615.68189 -4.67709 0.02706 -2.37807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50134 0.20108 -1.00000 - 4654 2017 8 21 6 15 59 849 4.7747 185.84463 652.08102 615.64412 -4.67422 0.02707 -2.37723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50099 0.20108 -1.00000 - 4655 2017 8 21 6 16 4 623 4.7747 185.84721 652.03689 615.60634 -4.67115 0.02723 -2.37628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50065 0.20108 -1.00000 - 4656 2017 8 21 6 16 9 398 4.7747 185.84969 651.99274 615.56855 -4.66787 0.02737 -2.37531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50030 0.20108 -1.00000 - 4657 2017 8 21 6 16 14 173 4.7746 185.85196 651.94859 615.53078 -4.66441 0.02736 -2.37432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49995 0.20108 -1.00000 - 4658 2017 8 21 6 16 18 947 4.7746 185.85431 651.90445 615.49300 -4.66076 0.02730 -2.37339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49961 0.20108 -1.00000 - 4659 2017 8 21 6 16 23 722 4.7746 185.85681 651.86030 615.45522 -4.65694 0.02728 -2.37245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49926 0.20108 -1.00000 - 4660 2017 8 21 6 16 28 496 4.7746 185.85934 651.81611 615.41742 -4.65295 0.02716 -2.37142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49891 0.20108 -1.00000 - 4661 2017 8 21 6 16 33 271 4.7745 185.86175 651.77190 615.37963 -4.64883 0.02696 -2.37028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49856 0.20108 -1.00000 - 4662 2017 8 21 6 16 38 45 4.7745 185.86409 651.72769 615.34183 -4.64459 0.02681 -2.36916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49822 0.20108 -1.00000 - 4663 2017 8 21 6 16 42 820 4.7745 185.86655 651.68348 615.30403 -4.64025 0.02684 -2.36805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49787 0.20108 -1.00000 - 4664 2017 8 21 6 16 47 594 4.7745 185.86909 651.63928 615.26623 -4.63584 0.02698 -2.36699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49752 0.20108 -1.00000 - 4665 2017 8 21 6 16 52 369 4.7744 185.87152 651.59505 615.22843 -4.63138 0.02701 -2.36586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49717 0.20108 -1.00000 - 4666 2017 8 21 6 16 57 143 4.7744 185.87380 651.55079 615.19061 -4.62690 0.02690 -2.36466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49683 0.20108 -1.00000 - 4667 2017 8 21 6 17 1 918 4.7744 185.87620 651.50653 615.15280 -4.62243 0.02681 -2.36347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49648 0.20108 -1.00000 - 4668 2017 8 21 6 17 6 692 4.7744 185.87873 651.46226 615.11499 -4.61800 0.02682 -2.36228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49613 0.20108 -1.00000 - 4669 2017 8 21 6 17 11 466 4.7744 185.88126 651.41800 615.07717 -4.61363 0.02680 -2.36118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49579 0.20108 -1.00000 - 4670 2017 8 21 6 17 16 241 4.7743 185.88360 651.37373 615.03935 -4.60934 0.02671 -2.36011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49544 0.20108 -1.00000 - 4671 2017 8 21 6 17 21 15 4.7743 185.88590 651.32942 615.00153 -4.60516 0.02662 -2.35897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49509 0.20108 -1.00000 - 4672 2017 8 21 6 17 25 789 4.7743 185.88833 651.28508 614.96369 -4.60110 0.02662 -2.35775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49474 0.20108 -1.00000 - 4673 2017 8 21 6 17 30 564 4.7743 185.89086 651.24073 614.92586 -4.59717 0.02661 -2.35658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49440 0.20108 -1.00000 - 4674 2017 8 21 6 17 35 338 4.7742 185.89328 651.19639 614.88803 -4.59337 0.02648 -2.35546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49405 0.20108 -1.00000 - 4675 2017 8 21 6 17 40 112 4.7742 185.89560 651.15205 614.85020 -4.58970 0.02632 -2.35442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49370 0.20108 -1.00000 - 4676 2017 8 21 6 17 44 886 4.7742 185.89802 651.10769 614.81236 -4.58616 0.02632 -2.35334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49336 0.20108 -1.00000 - 4677 2017 8 21 6 17 49 660 4.7742 185.90056 651.06330 614.77453 -4.58273 0.02646 -2.35221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49301 0.20108 -1.00000 - 4678 2017 8 21 6 17 54 435 4.7741 185.90303 651.01890 614.73669 -4.57941 0.02657 -2.35111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49266 0.20108 -1.00000 - 4679 2017 8 21 6 17 59 209 4.7741 185.90529 650.97451 614.69886 -4.57617 0.02653 -2.35006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49231 0.20107 -1.00000 - 4680 2017 8 21 6 18 3 983 4.7741 185.90759 650.93013 614.66104 -4.57300 0.02637 -2.34910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49197 0.20107 -1.00000 - 4681 2017 8 21 6 18 8 757 4.7741 185.91003 650.88575 614.62321 -4.56987 0.02620 -2.34821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49162 0.20107 -1.00000 - 4682 2017 8 21 6 18 13 531 4.7741 185.91256 650.84134 614.58539 -4.56678 0.02605 -2.34726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49127 0.20107 -1.00000 - 4683 2017 8 21 6 18 18 305 4.7740 185.91501 650.79690 614.54757 -4.56369 0.02593 -2.34624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49093 0.20107 -1.00000 - 4684 2017 8 21 6 18 23 79 4.7740 185.91735 650.75248 614.50976 -4.56062 0.02594 -2.34529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49058 0.20107 -1.00000 - 4685 2017 8 21 6 18 27 853 4.7740 185.91975 650.70807 614.47196 -4.55754 0.02612 -2.34441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49023 0.20107 -1.00000 - 4686 2017 8 21 6 18 32 627 4.7740 185.92220 650.66369 614.43418 -4.55444 0.02634 -2.34363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48988 0.20107 -1.00000 - 4687 2017 8 21 6 18 37 401 4.7740 185.92461 650.61930 614.39640 -4.55134 0.02636 -2.34283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48954 0.20107 -1.00000 - 4688 2017 8 21 6 18 42 175 4.7739 185.92687 650.57491 614.35863 -4.54823 0.02614 -2.34200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48919 0.20107 -1.00000 - 4689 2017 8 21 6 18 46 949 4.7739 185.92921 650.53052 614.32088 -4.54514 0.02587 -2.34120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48884 0.20107 -1.00000 - 4690 2017 8 21 6 18 51 723 4.7739 185.93169 650.48617 614.28314 -4.54206 0.02572 -2.34045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48850 0.20107 -1.00000 - 4691 2017 8 21 6 18 56 496 4.7739 185.93422 650.44185 614.24543 -4.53904 0.02573 -2.33981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48815 0.20107 -1.00000 - 4692 2017 8 21 6 19 1 270 4.7738 185.93666 650.39755 614.20773 -4.53607 0.02578 -2.33924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48780 0.20107 -1.00000 - 4693 2017 8 21 6 19 6 44 4.7738 185.93896 650.35326 614.17004 -4.53320 0.02582 -2.33862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48745 0.20107 -1.00000 - 4694 2017 8 21 6 19 10 818 4.7738 185.94127 650.30899 614.13238 -4.53045 0.02590 -2.33796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48711 0.20107 -1.00000 - 4695 2017 8 21 6 19 15 592 4.7738 185.94367 650.26475 614.09473 -4.52784 0.02600 -2.33738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48676 0.20107 -1.00000 - 4696 2017 8 21 6 19 20 365 4.7738 185.94610 650.22056 614.05712 -4.52540 0.02593 -2.33686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48641 0.20107 -1.00000 - 4697 2017 8 21 6 19 25 139 4.7737 185.94847 650.17644 614.01953 -4.52314 0.02569 -2.33647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48606 0.20107 -1.00000 - 4698 2017 8 21 6 19 29 913 4.7737 185.95082 650.13235 613.98196 -4.52110 0.02543 -2.33606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48572 0.20107 -1.00000 - 4699 2017 8 21 6 19 34 687 4.7737 185.95324 650.08829 613.94442 -4.51927 0.02536 -2.33564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48537 0.20107 -1.00000 - 4700 2017 8 21 6 19 39 460 4.7737 185.95572 650.04427 613.90690 -4.51769 0.02548 -2.33525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48502 0.20107 -1.00000 - 4701 2017 8 21 6 19 44 234 4.7736 185.95813 650.00033 613.86941 -4.51634 0.02561 -2.33493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48468 0.20107 -1.00000 - 4702 2017 8 21 6 19 49 7 4.7736 185.96039 649.95646 613.83195 -4.51524 0.02562 -2.33472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48433 0.20107 -1.00000 - 4703 2017 8 21 6 19 53 781 4.7736 185.96269 649.91265 613.79452 -4.51439 0.02553 -2.33458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48398 0.20107 -1.00000 - 4704 2017 8 21 6 19 58 555 4.7736 185.96510 649.86889 613.75712 -4.51378 0.02546 -2.33441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48363 0.20107 -1.00000 - 4705 2017 8 21 6 20 3 328 4.7736 185.96757 649.82517 613.71973 -4.51342 0.02538 -2.33419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48329 0.20107 -1.00000 - 4706 2017 8 21 6 20 8 102 4.7735 185.96999 649.78152 613.68237 -4.51328 0.02528 -2.33405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48294 0.20107 -1.00000 - 4707 2017 8 21 6 20 12 875 4.7735 185.97229 649.73795 613.64505 -4.51336 0.02520 -2.33396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48259 0.20107 -1.00000 - 4708 2017 8 21 6 20 17 649 4.7735 185.97464 649.69445 613.60775 -4.51365 0.02524 -2.33400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48225 0.20106 -1.00000 - 4709 2017 8 21 6 20 22 422 4.7735 185.97705 649.65100 613.57046 -4.51411 0.02534 -2.33402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48190 0.20106 -1.00000 - 4710 2017 8 21 6 20 27 196 4.7735 185.97944 649.60759 613.53319 -4.51475 0.02535 -2.33402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48155 0.20106 -1.00000 - 4711 2017 8 21 6 20 31 969 4.7734 185.98172 649.56423 613.49593 -4.51555 0.02518 -2.33404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48120 0.20106 -1.00000 - 4712 2017 8 21 6 20 36 743 4.7734 185.98407 649.52092 613.45870 -4.51648 0.02502 -2.33411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48086 0.20106 -1.00000 - 4713 2017 8 21 6 20 41 516 4.7734 185.98652 649.47767 613.42147 -4.51756 0.02501 -2.33428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48051 0.20106 -1.00000 - 4714 2017 8 21 6 20 46 289 4.7734 185.98900 649.43445 613.38425 -4.51876 0.02512 -2.33451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48016 0.20106 -1.00000 - 4715 2017 8 21 6 20 51 63 4.7734 185.99136 649.39123 613.34703 -4.52008 0.02517 -2.33470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47982 0.20106 -1.00000 - 4716 2017 8 21 6 20 55 836 4.7733 185.99357 649.34801 613.30981 -4.52153 0.02514 -2.33482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47947 0.20106 -1.00000 - 4717 2017 8 21 6 21 0 609 4.7733 185.99586 649.30481 613.27259 -4.52310 0.02510 -2.33501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47912 0.20106 -1.00000 - 4718 2017 8 21 6 21 5 383 4.7733 185.99826 649.26163 613.23537 -4.52480 0.02504 -2.33524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47878 0.20106 -1.00000 - 4719 2017 8 21 6 21 10 156 4.7733 186.00069 649.21846 613.19814 -4.52661 0.02485 -2.33560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47843 0.20106 -1.00000 - 4720 2017 8 21 6 21 14 929 4.7733 186.00304 649.17526 613.16091 -4.52854 0.02462 -2.33592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47808 0.20106 -1.00000 - 4721 2017 8 21 6 21 19 702 4.7732 186.00540 649.13203 613.12366 -4.53059 0.02450 -2.33621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47773 0.20106 -1.00000 - 4722 2017 8 21 6 21 24 476 4.7732 186.00780 649.08877 613.08640 -4.53276 0.02462 -2.33651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47739 0.20106 -1.00000 - 4723 2017 8 21 6 21 29 249 4.7732 186.01019 649.04550 613.04913 -4.53505 0.02476 -2.33686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47704 0.20106 -1.00000 - 4724 2017 8 21 6 21 34 22 4.7732 186.01251 649.00220 613.01186 -4.53746 0.02490 -2.33729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47669 0.20106 -1.00000 - 4725 2017 8 21 6 21 38 795 4.7732 186.01474 648.95888 612.97457 -4.53999 0.02485 -2.33777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47635 0.20106 -1.00000 - 4726 2017 8 21 6 21 43 568 4.7731 186.01705 648.91550 612.93726 -4.54264 0.02468 -2.33821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47600 0.20106 -1.00000 - 4727 2017 8 21 6 21 48 341 4.7731 186.01946 648.87206 612.89994 -4.54540 0.02450 -2.33858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47565 0.20106 -1.00000 - 4728 2017 8 21 6 21 53 114 4.7731 186.02190 648.82859 612.86260 -4.54829 0.02434 -2.33901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47530 0.20106 -1.00000 - 4729 2017 8 21 6 21 57 888 4.7731 186.02427 648.78509 612.82527 -4.55130 0.02424 -2.33946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47496 0.20106 -1.00000 - 4730 2017 8 21 6 22 2 661 4.7731 186.02656 648.74157 612.78793 -4.55442 0.02430 -2.34003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47461 0.20106 -1.00000 - 4731 2017 8 21 6 22 7 434 4.7730 186.02889 648.69801 612.75058 -4.55766 0.02436 -2.34056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47426 0.20106 -1.00000 - 4732 2017 8 21 6 22 12 207 4.7730 186.03124 648.65439 612.71322 -4.56101 0.02454 -2.34105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47392 0.20106 -1.00000 - 4733 2017 8 21 6 22 16 980 4.7730 186.03358 648.61074 612.67586 -4.56447 0.02456 -2.34154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47357 0.20106 -1.00000 - 4734 2017 8 21 6 22 21 753 4.7730 186.03585 648.56708 612.63851 -4.56803 0.02439 -2.34206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47322 0.20106 -1.00000 - 4735 2017 8 21 6 22 26 526 4.7730 186.03822 648.52341 612.60116 -4.57169 0.02420 -2.34264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47287 0.20106 -1.00000 - 4736 2017 8 21 6 22 31 298 4.7729 186.04063 648.47973 612.56382 -4.57542 0.02410 -2.34327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47253 0.20105 -1.00000 - 4737 2017 8 21 6 22 36 71 4.7729 186.04302 648.43602 612.52648 -4.57922 0.02409 -2.34383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47218 0.20105 -1.00000 - 4738 2017 8 21 6 22 40 844 4.7729 186.04532 648.39229 612.48915 -4.58308 0.02414 -2.34430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47183 0.20105 -1.00000 - 4739 2017 8 21 6 22 45 617 4.7729 186.04755 648.34856 612.45183 -4.58696 0.02418 -2.34481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47149 0.20105 -1.00000 - 4740 2017 8 21 6 22 50 390 4.7729 186.04986 648.30486 612.41454 -4.59086 0.02421 -2.34531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47114 0.20105 -1.00000 - 4741 2017 8 21 6 22 55 163 4.7728 186.05225 648.26118 612.37727 -4.59473 0.02415 -2.34591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47079 0.20105 -1.00000 - 4742 2017 8 21 6 22 59 936 4.7728 186.05461 648.21752 612.34002 -4.59856 0.02397 -2.34643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47044 0.20105 -1.00000 - 4743 2017 8 21 6 23 4 709 4.7728 186.05691 648.17386 612.30278 -4.60230 0.02379 -2.34689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47010 0.20105 -1.00000 - 4744 2017 8 21 6 23 9 481 4.7728 186.05925 648.13022 612.26557 -4.60592 0.02372 -2.34731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46975 0.20105 -1.00000 - 4745 2017 8 21 6 23 14 254 4.7728 186.06162 648.08664 612.22839 -4.60938 0.02379 -2.34772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46940 0.20105 -1.00000 - 4746 2017 8 21 6 23 19 27 4.7727 186.06396 648.04310 612.19124 -4.61265 0.02394 -2.34816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46906 0.20105 -1.00000 - 4747 2017 8 21 6 23 23 800 4.7727 186.06622 647.99962 612.15412 -4.61567 0.02397 -2.34861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46871 0.20105 -1.00000 - 4748 2017 8 21 6 23 28 572 4.7727 186.06845 647.95616 612.11702 -4.61840 0.02385 -2.34896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46836 0.20105 -1.00000 - 4749 2017 8 21 6 23 33 345 4.7727 186.07080 647.91273 612.07995 -4.62080 0.02369 -2.34916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46801 0.20105 -1.00000 - 4750 2017 8 21 6 23 38 118 4.7727 186.07321 647.86936 612.04291 -4.62283 0.02356 -2.34937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46767 0.20105 -1.00000 - 4751 2017 8 21 6 23 42 890 4.7727 186.07558 647.82606 612.00591 -4.62444 0.02350 -2.34953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46732 0.20105 -1.00000 - 4752 2017 8 21 6 23 47 663 4.7726 186.07785 647.78282 611.96894 -4.62559 0.02349 -2.34974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46697 0.20105 -1.00000 - 4753 2017 8 21 6 23 52 436 4.7726 186.08012 647.73963 611.93199 -4.62624 0.02356 -2.34985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46663 0.20105 -1.00000 - 4754 2017 8 21 6 23 57 208 4.7726 186.08243 647.69647 611.89506 -4.62636 0.02368 -2.34985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46628 0.20105 -1.00000 - 4755 2017 8 21 6 24 1 981 4.7726 186.08475 647.65335 611.85816 -4.62591 0.02368 -2.34978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46593 0.20105 -1.00000 - 4756 2017 8 21 6 24 6 753 4.7726 186.08703 647.61029 611.82128 -4.62488 0.02351 -2.34967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46559 0.20105 -1.00000 - 4757 2017 8 21 6 24 11 526 4.7725 186.08935 647.56728 611.78444 -4.62323 0.02328 -2.34956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46524 0.20105 -1.00000 - 4758 2017 8 21 6 24 16 298 4.7725 186.09171 647.52433 611.74761 -4.62095 0.02313 -2.34943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46489 0.20105 -1.00000 - 4759 2017 8 21 6 24 21 71 4.7725 186.09406 647.48138 611.71079 -4.61803 0.02315 -2.34919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46454 0.20105 -1.00000 - 4760 2017 8 21 6 24 25 843 4.7725 186.09636 647.43845 611.67398 -4.61447 0.02329 -2.34879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46420 0.20105 -1.00000 - 4761 2017 8 21 6 24 30 616 4.7725 186.09860 647.39556 611.63719 -4.61059 0.02340 -2.34838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46385 0.20105 -1.00000 - 4762 2017 8 21 6 24 35 388 4.7725 186.10087 647.35269 611.60042 -4.60625 0.02339 -2.34792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46350 0.20105 -1.00000 - 4763 2017 8 21 6 24 40 161 4.7724 186.10318 647.30987 611.56366 -4.60116 0.02324 -2.34751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46316 0.20105 -1.00000 - 4764 2017 8 21 6 24 44 933 4.7724 186.10550 647.26705 611.52691 -4.59533 0.02304 -2.34700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46281 0.20105 -1.00000 - 4765 2017 8 21 6 24 49 706 4.7724 186.10782 647.22423 611.49016 -4.58880 0.02290 -2.34641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46246 0.20104 -1.00000 - 4766 2017 8 21 6 24 54 478 4.7724 186.11014 647.18142 611.45341 -4.58162 0.02289 -2.34576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46211 0.20104 -1.00000 - 4767 2017 8 21 6 24 59 250 4.7724 186.11245 647.13862 611.41668 -4.57386 0.02299 -2.34509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46177 0.20104 -1.00000 - 4768 2017 8 21 6 25 4 23 4.7724 186.11474 647.09584 611.37995 -4.56602 0.02310 -2.34446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46142 0.20104 -1.00000 - 4769 2017 8 21 6 25 8 795 4.7723 186.11697 647.05307 611.34323 -4.55825 0.02309 -2.34385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46107 0.20104 -1.00000 - 4770 2017 8 21 6 25 13 567 4.7723 186.11924 647.01029 611.30650 -4.55036 0.02297 -2.34316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46073 0.20104 -1.00000 - 4771 2017 8 21 6 25 18 340 4.7723 186.12156 646.96749 611.26977 -4.54247 0.02281 -2.34237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46038 0.20104 -1.00000 - 4772 2017 8 21 6 25 23 112 4.7723 186.12390 646.92469 611.23304 -4.53469 0.02271 -2.34162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46003 0.20104 -1.00000 - 4773 2017 8 21 6 25 27 884 4.7723 186.12621 646.88192 611.19632 -4.52713 0.02271 -2.34087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45969 0.20104 -1.00000 - 4774 2017 8 21 6 25 32 656 4.7722 186.12849 646.83916 611.15960 -4.51991 0.02278 -2.34024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45934 0.20104 -1.00000 - 4775 2017 8 21 6 25 37 429 4.7722 186.13074 646.79639 611.12288 -4.51314 0.02285 -2.33958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45899 0.20104 -1.00000 - 4776 2017 8 21 6 25 42 201 4.7722 186.13299 646.75361 611.08615 -4.50692 0.02284 -2.33889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45864 0.20104 -1.00000 - 4777 2017 8 21 6 25 46 973 4.7722 186.13525 646.71083 611.04943 -4.50136 0.02271 -2.33822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45830 0.20104 -1.00000 - 4778 2017 8 21 6 25 51 745 4.7722 186.13756 646.66806 611.01270 -4.49654 0.02254 -2.33758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45795 0.20104 -1.00000 - 4779 2017 8 21 6 25 56 517 4.7722 186.13988 646.62531 610.97598 -4.49257 0.02243 -2.33704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45760 0.20104 -1.00000 - 4780 2017 8 21 6 26 1 290 4.7721 186.14220 646.58256 610.93926 -4.48951 0.02245 -2.33658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45726 0.20104 -1.00000 - 4781 2017 8 21 6 26 6 62 4.7721 186.14448 646.53979 610.90253 -4.48741 0.02255 -2.33611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45691 0.20104 -1.00000 - 4782 2017 8 21 6 26 10 834 4.7721 186.14672 646.49700 610.86579 -4.48628 0.02264 -2.33558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45656 0.20104 -1.00000 - 4783 2017 8 21 6 26 15 606 4.7721 186.14895 646.45421 610.82905 -4.48612 0.02264 -2.33511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45621 0.20104 -1.00000 - 4784 2017 8 21 6 26 20 378 4.7721 186.15119 646.41143 610.79231 -4.48691 0.02251 -2.33468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45587 0.20104 -1.00000 - 4785 2017 8 21 6 26 25 150 4.7721 186.15347 646.36865 610.75557 -4.48861 0.02230 -2.33440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45552 0.20104 -1.00000 - 4786 2017 8 21 6 26 29 922 4.7720 186.15578 646.32586 610.71883 -4.49116 0.02212 -2.33410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45517 0.20104 -1.00000 - 4787 2017 8 21 6 26 34 694 4.7720 186.15809 646.28304 610.68207 -4.49449 0.02207 -2.33379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45483 0.20104 -1.00000 - 4788 2017 8 21 6 26 39 466 4.7720 186.16040 646.24021 610.64532 -4.49852 0.02216 -2.33347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45448 0.20104 -1.00000 - 4789 2017 8 21 6 26 44 238 4.7720 186.16265 646.19738 610.60857 -4.50313 0.02228 -2.33319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45413 0.20104 -1.00000 - 4790 2017 8 21 6 26 49 10 4.7720 186.16486 646.15455 610.57182 -4.50824 0.02234 -2.33298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45379 0.20104 -1.00000 - 4791 2017 8 21 6 26 53 782 4.7720 186.16708 646.11173 610.53507 -4.51370 0.02229 -2.33281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45344 0.20104 -1.00000 - 4792 2017 8 21 6 26 58 554 4.7720 186.16934 646.06889 610.49832 -4.51941 0.02215 -2.33260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45309 0.20104 -1.00000 - 4793 2017 8 21 6 27 3 326 4.7719 186.17163 646.02603 610.46157 -4.52527 0.02196 -2.33229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45274 0.20103 -1.00000 - 4794 2017 8 21 6 27 8 98 4.7719 186.17393 645.98318 610.42483 -4.53116 0.02183 -2.33200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45240 0.20103 -1.00000 - 4795 2017 8 21 6 27 12 870 4.7719 186.17622 645.94034 610.38810 -4.53696 0.02181 -2.33169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45205 0.20103 -1.00000 - 4796 2017 8 21 6 27 17 642 4.7719 186.17848 645.89753 610.35138 -4.54259 0.02189 -2.33147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45170 0.20103 -1.00000 - 4797 2017 8 21 6 27 22 414 4.7719 186.18071 645.85473 610.31466 -4.54794 0.02199 -2.33119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45136 0.20103 -1.00000 - 4798 2017 8 21 6 27 27 185 4.7719 186.18292 645.81192 610.27795 -4.55292 0.02203 -2.33084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45101 0.20103 -1.00000 - 4799 2017 8 21 6 27 31 957 4.7718 186.18515 645.76912 610.24125 -4.55747 0.02195 -2.33044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45066 0.20103 -1.00000 - 4800 2017 8 21 6 27 36 729 4.7718 186.18742 645.72635 610.20456 -4.56154 0.02179 -2.33001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45032 0.20103 -1.00000 - 4801 2017 8 21 6 27 41 501 4.7718 186.18971 645.68360 610.16788 -4.56506 0.02163 -2.32961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44997 0.20103 -1.00000 - 4802 2017 8 21 6 27 46 273 4.7718 186.19199 645.64089 610.13121 -4.56801 0.02157 -2.32921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44962 0.20103 -1.00000 - 4803 2017 8 21 6 27 51 44 4.7718 186.19425 645.59816 610.09454 -4.57033 0.02162 -2.32873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44927 0.20103 -1.00000 - 4804 2017 8 21 6 27 55 816 4.7718 186.19648 645.55543 610.05788 -4.57204 0.02172 -2.32812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44893 0.20103 -1.00000 - 4805 2017 8 21 6 28 0 588 4.7718 186.19868 645.51271 610.02122 -4.57317 0.02178 -2.32749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44858 0.20103 -1.00000 - 4806 2017 8 21 6 28 5 360 4.7717 186.20089 645.47001 609.98457 -4.57370 0.02171 -2.32682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44823 0.20103 -1.00000 - 4807 2017 8 21 6 28 10 131 4.7717 186.20314 645.42732 609.94792 -4.57359 0.02155 -2.32622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44789 0.20103 -1.00000 - 4808 2017 8 21 6 28 14 903 4.7717 186.20542 645.38462 609.91127 -4.57567 0.02138 -2.32553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44754 0.20103 -1.00000 - 4809 2017 8 21 6 28 19 675 4.7717 186.20770 645.34190 609.87461 -4.57670 0.02132 -2.32476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44719 0.20103 -1.00000 - 4810 2017 8 21 6 28 24 447 4.7717 186.20996 645.29916 609.83795 -4.57624 0.02136 -2.32392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44685 0.20103 -1.00000 - 4811 2017 8 21 6 28 29 218 4.7717 186.21219 645.25641 609.80130 -4.57428 0.02146 -2.32303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44650 0.20103 -1.00000 - 4812 2017 8 21 6 28 33 990 4.7716 186.21438 645.21365 609.76464 -4.57086 0.02154 -2.32217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44615 0.20103 -1.00000 - 4813 2017 8 21 6 28 38 761 4.7716 186.21657 645.17089 609.72798 -4.56610 0.02151 -2.32131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44580 0.20103 -1.00000 - 4814 2017 8 21 6 28 43 533 4.7716 186.21879 645.12809 609.69130 -4.56013 0.02138 -2.32038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44546 0.20103 -1.00000 - 4815 2017 8 21 6 28 48 305 4.7716 186.22105 645.08524 609.65462 -4.55315 0.02120 -2.31932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44511 0.20103 -1.00000 - 4816 2017 8 21 6 28 53 76 4.7716 186.22333 645.04238 609.61794 -4.54534 0.02108 -2.31828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44476 0.20103 -1.00000 - 4817 2017 8 21 6 28 57 848 4.7716 186.22559 644.99952 609.58126 -4.53690 0.02106 -2.31721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44442 0.20103 -1.00000 - 4818 2017 8 21 6 29 2 619 4.7716 186.22782 644.95665 609.54458 -4.52933 0.02113 -2.31624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44407 0.20103 -1.00000 - 4819 2017 8 21 6 29 7 391 4.7715 186.23002 644.91376 609.50789 -4.52206 0.02124 -2.31524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44372 0.20103 -1.00000 - 4820 2017 8 21 6 29 12 162 4.7715 186.23219 644.87084 609.47120 -4.51456 0.02129 -2.31420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44338 0.20103 -1.00000 - 4821 2017 8 21 6 29 16 934 4.7715 186.23439 644.82790 609.43451 -4.50691 0.02121 -2.31314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44303 0.20103 -1.00000 - 4822 2017 8 21 6 29 21 705 4.7715 186.23663 644.78497 609.39783 -4.49923 0.02104 -2.31210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44268 0.20102 -1.00000 - 4823 2017 8 21 6 29 26 477 4.7715 186.23889 644.74204 609.36116 -4.49161 0.02086 -2.31115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44233 0.20102 -1.00000 - 4824 2017 8 21 6 29 31 248 4.7715 186.24114 644.69913 609.32449 -4.48413 0.02077 -2.31026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44199 0.20102 -1.00000 - 4825 2017 8 21 6 29 36 20 4.7715 186.24337 644.65620 609.28782 -4.47688 0.02079 -2.30937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44164 0.20102 -1.00000 - 4826 2017 8 21 6 29 40 791 4.7714 186.24558 644.61325 609.25115 -4.46993 0.02089 -2.30841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44129 0.20102 -1.00000 - 4827 2017 8 21 6 29 45 563 4.7714 186.24776 644.57032 609.21449 -4.46332 0.02099 -2.30752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44095 0.20102 -1.00000 - 4828 2017 8 21 6 29 50 334 4.7714 186.24993 644.52742 609.17786 -4.45711 0.02097 -2.30666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44060 0.20102 -1.00000 - 4829 2017 8 21 6 29 55 106 4.7714 186.25214 644.48454 609.14123 -4.45132 0.02083 -2.30597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44025 0.20102 -1.00000 - 4830 2017 8 21 6 29 59 877 4.7714 186.25438 644.44168 609.10462 -4.44598 0.02064 -2.30528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43991 0.20102 -1.00000 - 4831 2017 8 21 6 30 4 648 4.7714 186.25663 644.39882 609.06801 -4.44110 0.02052 -2.30460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43956 0.20102 -1.00000 - 4832 2017 8 21 6 30 9 420 4.7714 186.25886 644.35598 609.03142 -4.43670 0.02049 -2.30395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43921 0.20102 -1.00000 - 4833 2017 8 21 6 30 14 191 4.7713 186.26107 644.31317 608.99484 -4.43277 0.02056 -2.30335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43886 0.20102 -1.00000 - 4834 2017 8 21 6 30 18 962 4.7713 186.26325 644.27040 608.95829 -4.42930 0.02066 -2.30287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43852 0.20102 -1.00000 - 4835 2017 8 21 6 30 23 734 4.7713 186.26541 644.22767 608.92175 -4.42629 0.02070 -2.30249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43817 0.20102 -1.00000 - 4836 2017 8 21 6 30 28 505 4.7713 186.26759 644.18495 608.88522 -4.42372 0.02061 -2.30213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43782 0.20102 -1.00000 - 4837 2017 8 21 6 30 33 276 4.7713 186.26982 644.14225 608.84870 -4.42158 0.02044 -2.30173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43748 0.20102 -1.00000 - 4838 2017 8 21 6 30 38 48 4.7713 186.27206 644.09957 608.81220 -4.41988 0.02029 -2.30141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43713 0.20102 -1.00000 - 4839 2017 8 21 6 30 42 819 4.7713 186.27429 644.05694 608.77572 -4.41859 0.02023 -2.30114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43678 0.20102 -1.00000 - 4840 2017 8 21 6 30 47 590 4.7712 186.27649 644.01436 608.73925 -4.41772 0.02026 -2.30103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43644 0.20102 -1.00000 - 4841 2017 8 21 6 30 52 361 4.7712 186.27866 643.97180 608.70280 -4.41726 0.02036 -2.30094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43609 0.20102 -1.00000 - 4842 2017 8 21 6 30 57 133 4.7712 186.28082 643.92926 608.66636 -4.41722 0.02044 -2.30087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43574 0.20102 -1.00000 - 4843 2017 8 21 6 31 1 904 4.7712 186.28299 643.88674 608.62993 -4.41758 0.02039 -2.30082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43539 0.20102 -1.00000 - 4844 2017 8 21 6 31 6 675 4.7712 186.28519 643.84425 608.59352 -4.41835 0.02023 -2.30081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43505 0.20102 -1.00000 - 4845 2017 8 21 6 31 11 446 4.7712 186.28742 643.80181 608.55713 -4.41951 0.02006 -2.30092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43470 0.20102 -1.00000 - 4846 2017 8 21 6 31 16 217 4.7712 186.28964 643.75940 608.52075 -4.42105 0.01997 -2.30112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43435 0.20102 -1.00000 - 4847 2017 8 21 6 31 20 988 4.7712 186.29185 643.71699 608.48438 -4.42295 0.01998 -2.30134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43401 0.20102 -1.00000 - 4848 2017 8 21 6 31 25 760 4.7711 186.29402 643.67458 608.44801 -4.42517 0.02007 -2.30150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43366 0.20102 -1.00000 - 4849 2017 8 21 6 31 30 531 4.7711 186.29617 643.63220 608.41165 -4.42769 0.02016 -2.30172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43331 0.20102 -1.00000 - 4850 2017 8 21 6 31 35 302 4.7711 186.29832 643.58984 608.37531 -4.43047 0.02015 -2.30198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43297 0.20101 -1.00000 - 4851 2017 8 21 6 31 40 73 4.7711 186.30049 643.54752 608.33899 -4.43346 0.02003 -2.30238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43262 0.20101 -1.00000 - 4852 2017 8 21 6 31 44 844 4.7711 186.30270 643.50520 608.30267 -4.43661 0.01985 -2.30277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43227 0.20101 -1.00000 - 4853 2017 8 21 6 31 49 615 4.7711 186.30493 643.46287 608.26635 -4.43987 0.01973 -2.30315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43193 0.20101 -1.00000 - 4854 2017 8 21 6 31 54 386 4.7711 186.30713 643.42055 608.23005 -4.44319 0.01969 -2.30353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43158 0.20101 -1.00000 - 4855 2017 8 21 6 31 59 157 4.7711 186.30930 643.37825 608.19376 -4.44652 0.01975 -2.30393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43123 0.20101 -1.00000 - 4856 2017 8 21 6 32 3 928 4.7710 186.31145 643.33598 608.15748 -4.44982 0.01985 -2.30442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43088 0.20101 -1.00000 - 4857 2017 8 21 6 32 8 699 4.7710 186.31359 643.29373 608.12122 -4.45303 0.01991 -2.30497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43054 0.20101 -1.00000 - 4858 2017 8 21 6 32 13 470 4.7710 186.31574 643.25148 608.08496 -4.45613 0.01984 -2.30551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43019 0.20101 -1.00000 - 4859 2017 8 21 6 32 18 241 4.7710 186.31793 643.20922 608.04872 -4.45909 0.01968 -2.30596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42984 0.20101 -1.00000 - 4860 2017 8 21 6 32 23 12 4.7710 186.32014 643.16699 608.01249 -4.46189 0.01952 -2.30644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42950 0.20101 -1.00000 - 4861 2017 8 21 6 32 27 783 4.7710 186.32234 643.12478 607.97629 -4.46453 0.01943 -2.30693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42915 0.20101 -1.00000 - 4862 2017 8 21 6 32 32 554 4.7710 186.32451 643.08262 607.94010 -4.46702 0.01945 -2.30753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42880 0.20101 -1.00000 - 4863 2017 8 21 6 32 37 325 4.7710 186.32666 643.04047 607.90392 -4.46939 0.01954 -2.30810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42846 0.20101 -1.00000 - 4864 2017 8 21 6 32 42 96 4.7710 186.32879 642.99833 607.86776 -4.47165 0.01962 -2.30863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42811 0.20101 -1.00000 - 4865 2017 8 21 6 32 46 867 4.7709 186.33093 642.95621 607.83162 -4.47382 0.01959 -2.30914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42776 0.20101 -1.00000 - 4866 2017 8 21 6 32 51 638 4.7709 186.33310 642.91413 607.79549 -4.47592 0.01945 -2.30963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42741 0.20101 -1.00000 - 4867 2017 8 21 6 32 56 409 4.7709 186.33529 642.87210 607.75939 -4.47797 0.01929 -2.31021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42707 0.20101 -1.00000 - 4868 2017 8 21 6 33 1 180 4.7709 186.33748 642.83010 607.72331 -4.47998 0.01920 -2.31081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42672 0.20101 -1.00000 - 4869 2017 8 21 6 33 5 951 4.7709 186.33965 642.78811 607.68723 -4.48199 0.01918 -2.31139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42637 0.20101 -1.00000 - 4870 2017 8 21 6 33 10 722 4.7709 186.34180 642.74614 607.65118 -4.48402 0.01925 -2.31186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42603 0.20101 -1.00000 - 4871 2017 8 21 6 33 15 493 4.7709 186.34392 642.70420 607.61513 -4.48608 0.01933 -2.31234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42568 0.20101 -1.00000 - 4872 2017 8 21 6 33 20 263 4.7709 186.34604 642.66230 607.57911 -4.48819 0.01932 -2.31281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42533 0.20101 -1.00000 - 4873 2017 8 21 6 33 25 34 4.7708 186.34819 642.62045 607.54311 -4.49036 0.01922 -2.31338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42499 0.20101 -1.00000 - 4874 2017 8 21 6 33 29 805 4.7708 186.35037 642.57861 607.50711 -4.49261 0.01907 -2.31389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42464 0.20101 -1.00000 - 4875 2017 8 21 6 33 34 576 4.7708 186.35256 642.53679 607.47113 -4.49493 0.01896 -2.31435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42429 0.20101 -1.00000 - 4876 2017 8 21 6 33 39 347 4.7708 186.35472 642.49499 607.43516 -4.49732 0.01892 -2.31479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42395 0.20101 -1.00000 - 4877 2017 8 21 6 33 44 118 4.7708 186.35686 642.45322 607.39920 -4.49979 0.01896 -2.31518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42360 0.20101 -1.00000 - 4878 2017 8 21 6 33 48 888 4.7708 186.35898 642.41149 607.36326 -4.50231 0.01905 -2.31565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42325 0.20101 -1.00000 - 4879 2017 8 21 6 33 53 659 4.7708 186.36109 642.36980 607.32734 -4.50490 0.01908 -2.31613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42290 0.20100 -1.00000 - 4880 2017 8 21 6 33 58 430 4.7708 186.36323 642.32810 607.29141 -4.50751 0.01902 -2.31657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42256 0.20100 -1.00000 - 4881 2017 8 21 6 34 3 201 4.7708 186.36539 642.28641 607.25550 -4.51014 0.01887 -2.31689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42221 0.20100 -1.00000 - 4882 2017 8 21 6 34 7 971 4.7707 186.36756 642.24474 607.21959 -4.51275 0.01872 -2.31720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42186 0.20100 -1.00000 - 4883 2017 8 21 6 34 12 742 4.7707 186.36972 642.20309 607.18370 -4.51530 0.01866 -2.31747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42152 0.20100 -1.00000 - 4884 2017 8 21 6 34 17 513 4.7707 186.37186 642.16147 607.14781 -4.51777 0.01867 -2.31783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42117 0.20100 -1.00000 - 4885 2017 8 21 6 34 22 284 4.7707 186.37398 642.11985 607.11192 -4.52011 0.01877 -2.31809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42082 0.20100 -1.00000 - 4886 2017 8 21 6 34 27 54 4.7707 186.37608 642.07823 607.07604 -4.52230 0.01883 -2.31829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42048 0.20100 -1.00000 - 4887 2017 8 21 6 34 31 825 4.7707 186.37819 642.03660 607.04016 -4.52432 0.01878 -2.31845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42013 0.20100 -1.00000 - 4888 2017 8 21 6 34 36 596 4.7707 186.38033 641.99498 607.00429 -4.52612 0.01864 -2.31853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41978 0.20100 -1.00000 - 4889 2017 8 21 6 34 41 366 4.7707 186.38249 641.95338 606.96842 -4.52769 0.01849 -2.31866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41944 0.20100 -1.00000 - 4890 2017 8 21 6 34 46 137 4.7707 186.38465 641.91178 606.93256 -4.52900 0.01841 -2.31879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41909 0.20100 -1.00000 - 4891 2017 8 21 6 34 50 908 4.7706 186.38679 641.87016 606.89668 -4.53001 0.01840 -2.31885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41874 0.20100 -1.00000 - 4892 2017 8 21 6 34 55 678 4.7706 186.38890 641.82851 606.86081 -4.53073 0.01847 -2.31877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41839 0.20100 -1.00000 - 4893 2017 8 21 6 35 0 449 4.7706 186.39100 641.78686 606.82494 -4.53112 0.01854 -2.31867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41805 0.20100 -1.00000 - 4894 2017 8 21 6 35 5 220 4.7706 186.39309 641.74520 606.78907 -4.53119 0.01853 -2.31852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41770 0.20100 -1.00000 - 4895 2017 8 21 6 35 9 990 4.7706 186.39521 641.70355 606.75320 -4.53092 0.01842 -2.31843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41735 0.20100 -1.00000 - 4896 2017 8 21 6 35 14 761 4.7706 186.39736 641.66187 606.71733 -4.53032 0.01828 -2.31823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41701 0.20100 -1.00000 - 4897 2017 8 21 6 35 19 531 4.7706 186.39951 641.62017 606.68146 -4.52940 0.01819 -2.31796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41666 0.20100 -1.00000 - 4898 2017 8 21 6 35 24 302 4.7706 186.40164 641.57846 606.64559 -4.52817 0.01816 -2.31764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41631 0.20100 -1.00000 - 4899 2017 8 21 6 35 29 72 4.7706 186.40375 641.53674 606.60972 -4.52665 0.01820 -2.31725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41597 0.20100 -1.00000 - 4900 2017 8 21 6 35 33 843 4.7706 186.40584 641.49502 606.57385 -4.52486 0.01828 -2.31691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41562 0.20100 -1.00000 - 4901 2017 8 21 6 35 38 614 4.7706 186.40792 641.45331 606.53799 -4.52284 0.01829 -2.31657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41527 0.20100 -1.00000 - 4902 2017 8 21 6 35 43 384 4.7705 186.41002 641.41157 606.50213 -4.52061 0.01821 -2.31617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41492 0.20100 -1.00000 - 4903 2017 8 21 6 35 48 155 4.7705 186.41216 641.36981 606.46626 -4.51821 0.01808 -2.31564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41458 0.20100 -1.00000 - 4904 2017 8 21 6 35 52 925 4.7705 186.41430 641.32805 606.43040 -4.51568 0.01796 -2.31510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41423 0.20100 -1.00000 - 4905 2017 8 21 6 35 57 696 4.7705 186.41643 641.28629 606.39455 -4.51307 0.01791 -2.31453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41388 0.20100 -1.00000 - 4906 2017 8 21 6 36 2 466 4.7705 186.41853 641.24456 606.35871 -4.51041 0.01793 -2.31403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41354 0.20100 -1.00000 - 4907 2017 8 21 6 36 7 237 4.7705 186.42061 641.20281 606.32286 -4.50774 0.01801 -2.31344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41319 0.20100 -1.00000 - 4908 2017 8 21 6 36 12 7 4.7705 186.42269 641.16106 606.28702 -4.50509 0.01805 -2.31279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41284 0.20099 -1.00000 - 4909 2017 8 21 6 36 16 778 4.7705 186.42476 641.11931 606.25118 -4.50249 0.01799 -2.31212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41250 0.20099 -1.00000 - 4910 2017 8 21 6 36 21 548 4.7705 186.42687 641.07757 606.21535 -4.49998 0.01785 -2.31138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41215 0.20099 -1.00000 - 4911 2017 8 21 6 36 26 319 4.7705 186.42902 641.03585 606.17953 -4.49757 0.01771 -2.31073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41180 0.20099 -1.00000 - 4912 2017 8 21 6 36 31 89 4.7704 186.43114 640.99415 606.14372 -4.49528 0.01764 -2.31011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41146 0.20099 -1.00000 - 4913 2017 8 21 6 36 35 859 4.7704 186.43324 640.95244 606.10791 -4.49311 0.01765 -2.30943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41111 0.20099 -1.00000 - 4914 2017 8 21 6 36 40 630 4.7704 186.43532 640.91071 606.07209 -4.49107 0.01773 -2.30864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41076 0.20099 -1.00000 - 4915 2017 8 21 6 36 45 400 4.7704 186.43738 640.86900 606.03629 -4.48915 0.01780 -2.30786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41042 0.20099 -1.00000 - 4916 2017 8 21 6 36 50 171 4.7704 186.43944 640.82730 606.00049 -4.48732 0.01776 -2.30709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41007 0.20099 -1.00000 - 4917 2017 8 21 6 36 54 941 4.7704 186.44153 640.78563 605.96470 -4.48559 0.01763 -2.30638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40972 0.20099 -1.00000 - 4918 2017 8 21 6 36 59 711 4.7704 186.44366 640.74395 605.92891 -4.48390 0.01747 -2.30558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40937 0.20099 -1.00000 - 4919 2017 8 21 6 37 4 482 4.7704 186.44578 640.70226 605.89312 -4.48223 0.01738 -2.30473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40903 0.20099 -1.00000 - 4920 2017 8 21 6 37 9 252 4.7704 186.44788 640.66058 605.85733 -4.48054 0.01737 -2.30389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40868 0.20099 -1.00000 - 4921 2017 8 21 6 37 14 23 4.7704 186.44995 640.61891 605.82156 -4.47879 0.01744 -2.30298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40833 0.20099 -1.00000 - 4922 2017 8 21 6 37 18 793 4.7704 186.45201 640.57725 605.78578 -4.47695 0.01752 -2.30216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40799 0.20099 -1.00000 - 4923 2017 8 21 6 37 23 563 4.7704 186.45405 640.53561 605.75002 -4.47498 0.01753 -2.30138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40764 0.20099 -1.00000 - 4924 2017 8 21 6 37 28 334 4.7703 186.45612 640.49395 605.71424 -4.47284 0.01742 -2.30053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40729 0.20099 -1.00000 - 4925 2017 8 21 6 37 33 104 4.7703 186.45823 640.45227 605.67847 -4.47050 0.01727 -2.29958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40695 0.20099 -1.00000 - 4926 2017 8 21 6 37 37 874 4.7703 186.46035 640.41060 605.64270 -4.46795 0.01715 -2.29866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40660 0.20099 -1.00000 - 4927 2017 8 21 6 37 42 645 4.7703 186.46244 640.36894 605.60694 -4.46516 0.01711 -2.29776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40625 0.20099 -1.00000 - 4928 2017 8 21 6 37 47 415 4.7703 186.46451 640.32728 605.57118 -4.46212 0.01715 -2.29689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40591 0.20099 -1.00000 - 4929 2017 8 21 6 37 52 185 4.7703 186.46656 640.28561 605.53541 -4.45882 0.01725 -2.29595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40556 0.20099 -1.00000 - 4930 2017 8 21 6 37 56 956 4.7703 186.46860 640.24393 605.49965 -4.45526 0.01730 -2.29495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40521 0.20099 -1.00000 - 4931 2017 8 21 6 38 1 726 4.7703 186.47065 640.20224 605.46388 -4.45147 0.01723 -2.29398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40486 0.20099 -1.00000 - 4932 2017 8 21 6 38 6 496 4.7703 186.47273 640.16056 605.42812 -4.44744 0.01707 -2.29295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40452 0.20099 -1.00000 - 4933 2017 8 21 6 38 11 266 4.7703 186.47485 640.11888 605.39236 -4.44322 0.01693 -2.29203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40417 0.20099 -1.00000 - 4934 2017 8 21 6 38 16 37 4.7703 186.47694 640.07721 605.35661 -4.43884 0.01686 -2.29116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40382 0.20099 -1.00000 - 4935 2017 8 21 6 38 20 807 4.7702 186.47900 640.03551 605.32085 -4.43431 0.01689 -2.29024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40348 0.20099 -1.00000 - 4936 2017 8 21 6 38 25 577 4.7702 186.48105 639.99379 605.28508 -4.42970 0.01699 -2.28926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40313 0.20098 -1.00000 - 4937 2017 8 21 6 38 30 347 4.7702 186.48308 639.95207 605.24933 -4.42504 0.01706 -2.28830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40278 0.20098 -1.00000 - 4938 2017 8 21 6 38 35 118 4.7702 186.48510 639.91037 605.21357 -4.42037 0.01701 -2.28742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40244 0.20098 -1.00000 - 4939 2017 8 21 6 38 39 888 4.7702 186.48715 639.86867 605.17783 -4.41575 0.01687 -2.28658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40209 0.20098 -1.00000 - 4940 2017 8 21 6 38 44 658 4.7702 186.48926 639.82697 605.14208 -4.41122 0.01671 -2.28574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40174 0.20098 -1.00000 - 4941 2017 8 21 6 38 49 428 4.7702 186.49136 639.78524 605.10633 -4.40681 0.01662 -2.28486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40140 0.20098 -1.00000 - 4942 2017 8 21 6 38 54 198 4.7702 186.49342 639.74353 605.07058 -4.40259 0.01662 -2.28403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40105 0.20098 -1.00000 - 4943 2017 8 21 6 38 58 969 4.7702 186.49546 639.70183 605.03485 -4.39859 0.01670 -2.28319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40070 0.20098 -1.00000 - 4944 2017 8 21 6 39 3 739 4.7702 186.49748 639.66015 604.99912 -4.39484 0.01679 -2.28250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40035 0.20098 -1.00000 - 4945 2017 8 21 6 39 8 509 4.7702 186.49949 639.61848 604.96340 -4.39139 0.01680 -2.28186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40001 0.20098 -1.00000 - 4946 2017 8 21 6 39 13 279 4.7702 186.50152 639.57680 604.92768 -4.38827 0.01669 -2.28120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39966 0.20098 -1.00000 - 4947 2017 8 21 6 39 18 49 4.7702 186.50360 639.53513 604.89197 -4.38552 0.01653 -2.28055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39931 0.20098 -1.00000 - 4948 2017 8 21 6 39 22 819 4.7701 186.50570 639.49347 604.85626 -4.38315 0.01640 -2.27992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39897 0.20098 -1.00000 - 4949 2017 8 21 6 39 27 590 4.7701 186.50775 639.45184 604.82057 -4.38119 0.01635 -2.27941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39862 0.20098 -1.00000 - 4950 2017 8 21 6 39 32 360 4.7701 186.50979 639.41023 604.78489 -4.37963 0.01640 -2.27897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39827 0.20098 -1.00000 - 4951 2017 8 21 6 39 37 130 4.7701 186.51181 639.36863 604.74921 -4.37846 0.01651 -2.27857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39793 0.20098 -1.00000 - 4952 2017 8 21 6 39 41 900 4.7701 186.51381 639.32703 604.71354 -4.37766 0.01656 -2.27813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39758 0.20098 -1.00000 - 4953 2017 8 21 6 39 46 670 4.7701 186.51582 639.28544 604.67788 -4.37722 0.01649 -2.27773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39723 0.20098 -1.00000 - 4954 2017 8 21 6 39 51 440 4.7701 186.51787 639.24388 604.64223 -4.37710 0.01634 -2.27736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39689 0.20098 -1.00000 - 4955 2017 8 21 6 39 56 210 4.7701 186.51997 639.20235 604.60660 -4.37728 0.01618 -2.27713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39654 0.20098 -1.00000 - 4956 2017 8 21 6 40 0 980 4.7701 186.52202 639.16083 604.57097 -4.37772 0.01610 -2.27691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39619 0.20098 -1.00000 - 4957 2017 8 21 6 40 5 750 4.7701 186.52404 639.11931 604.53535 -4.37837 0.01612 -2.27669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39585 0.20098 -1.00000 - 4958 2017 8 21 6 40 10 520 4.7701 186.52607 639.07781 604.49974 -4.37921 0.01622 -2.27648 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39550 0.20098 -1.00000 - 4959 2017 8 21 6 40 15 291 4.7701 186.52807 639.03633 604.46415 -4.38020 0.01630 -2.27626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39515 0.20098 -1.00000 - 4960 2017 8 21 6 40 20 61 4.7701 186.53005 638.99488 604.42856 -4.38129 0.01626 -2.27617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39480 0.20098 -1.00000 - 4961 2017 8 21 6 40 24 831 4.7701 186.53207 638.95346 604.39300 -4.38246 0.01613 -2.27614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39446 0.20098 -1.00000 - 4962 2017 8 21 6 40 29 601 4.7701 186.53415 638.91205 604.35743 -4.38367 0.01597 -2.27613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39411 0.20098 -1.00000 - 4963 2017 8 21 6 40 34 371 4.7700 186.53622 638.87064 604.32188 -4.38489 0.01586 -2.27606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39376 0.20098 -1.00000 - 4964 2017 8 21 6 40 39 141 4.7700 186.53824 638.82925 604.28634 -4.38610 0.01584 -2.27602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39342 0.20098 -1.00000 - 4965 2017 8 21 6 40 43 911 4.7700 186.54024 638.78789 604.25082 -4.38726 0.01591 -2.27601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39307 0.20097 -1.00000 - 4966 2017 8 21 6 40 48 681 4.7700 186.54224 638.74657 604.21530 -4.38838 0.01601 -2.27611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39272 0.20097 -1.00000 - 4967 2017 8 21 6 40 53 451 4.7700 186.54422 638.70525 604.17980 -4.38943 0.01602 -2.27617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39238 0.20097 -1.00000 - 4968 2017 8 21 6 40 58 221 4.7700 186.54622 638.66394 604.14430 -4.39040 0.01593 -2.27622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39203 0.20097 -1.00000 - 4969 2017 8 21 6 41 2 991 4.7700 186.54826 638.62265 604.10881 -4.39129 0.01577 -2.27631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39168 0.20097 -1.00000 - 4970 2017 8 21 6 41 7 761 4.7700 186.55033 638.58138 604.07334 -4.39212 0.01564 -2.27635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39134 0.20097 -1.00000 - 4971 2017 8 21 6 41 12 531 4.7700 186.55236 638.54014 604.03788 -4.39288 0.01557 -2.27650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39099 0.20097 -1.00000 - 4972 2017 8 21 6 41 17 301 4.7700 186.55435 638.49892 604.00243 -4.39361 0.01559 -2.27673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39064 0.20097 -1.00000 - 4973 2017 8 21 6 41 22 71 4.7700 186.55633 638.45771 603.96699 -4.39431 0.01570 -2.27693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39029 0.20097 -1.00000 - 4974 2017 8 21 6 41 26 841 4.7700 186.55832 638.41649 603.93155 -4.39499 0.01578 -2.27706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38995 0.20097 -1.00000 - 4975 2017 8 21 6 41 31 611 4.7700 186.56031 638.37529 603.89612 -4.39565 0.01573 -2.27723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38960 0.20097 -1.00000 - 4976 2017 8 21 6 41 36 381 4.7700 186.56232 638.33411 603.86071 -4.39630 0.01559 -2.27743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38925 0.20097 -1.00000 - 4977 2017 8 21 6 41 41 151 4.7700 186.56435 638.29295 603.82531 -4.39696 0.01543 -2.27771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38891 0.20097 -1.00000 - 4978 2017 8 21 6 41 45 921 4.7700 186.56640 638.25180 603.78991 -4.39761 0.01533 -2.27796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38856 0.20097 -1.00000 - 4979 2017 8 21 6 41 50 691 4.7700 186.56840 638.21064 603.75452 -4.39829 0.01532 -2.27818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38821 0.20097 -1.00000 - 4980 2017 8 21 6 41 55 461 4.7699 186.57036 638.16949 603.71913 -4.39899 0.01540 -2.27843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38787 0.20097 -1.00000 - 4981 2017 8 21 6 42 0 231 4.7699 186.57234 638.12836 603.68376 -4.39972 0.01549 -2.27863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38752 0.20097 -1.00000 - 4982 2017 8 21 6 42 5 1 4.7699 186.57432 638.08725 603.64840 -4.40049 0.01549 -2.27894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38717 0.20097 -1.00000 - 4983 2017 8 21 6 42 9 771 4.7699 186.57631 638.04616 603.61305 -4.40132 0.01537 -2.27933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38683 0.20097 -1.00000 - 4984 2017 8 21 6 42 14 540 4.7699 186.57832 638.00506 603.57771 -4.40221 0.01522 -2.27967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38648 0.20097 -1.00000 - 4985 2017 8 21 6 42 19 310 4.7699 186.58035 637.96396 603.54238 -4.40317 0.01512 -2.27994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38613 0.20097 -1.00000 - 4986 2017 8 21 6 42 24 80 4.7699 186.58237 637.92289 603.50705 -4.40421 0.01509 -2.28025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38579 0.20097 -1.00000 - 4987 2017 8 21 6 42 28 850 4.7699 186.58434 637.88184 603.47175 -4.40534 0.01514 -2.28059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38544 0.20097 -1.00000 - 4988 2017 8 21 6 42 33 620 4.7699 186.58628 637.84082 603.43646 -4.40656 0.01521 -2.28099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38509 0.20097 -1.00000 - 4989 2017 8 21 6 42 38 390 4.7699 186.58824 637.79981 603.40117 -4.40787 0.01523 -2.28136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38474 0.20097 -1.00000 - 4990 2017 8 21 6 42 43 160 4.7699 186.59023 637.75880 603.36590 -4.40928 0.01515 -2.28169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38440 0.20097 -1.00000 - 4991 2017 8 21 6 42 47 930 4.7699 186.59224 637.71782 603.33064 -4.41078 0.01502 -2.28204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38405 0.20097 -1.00000 - 4992 2017 8 21 6 42 52 700 4.7699 186.59424 637.67686 603.29540 -4.41236 0.01492 -2.28233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38370 0.20097 -1.00000 - 4993 2017 8 21 6 42 57 470 4.7699 186.59623 637.63594 603.26017 -4.41401 0.01489 -2.28273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38336 0.20096 -1.00000 - 4994 2017 8 21 6 43 2 239 4.7699 186.59822 637.59504 603.22496 -4.41572 0.01492 -2.28317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38301 0.20096 -1.00000 - 4995 2017 8 21 6 43 7 9 4.7699 186.60016 637.55415 603.18975 -4.41746 0.01499 -2.28355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38266 0.20096 -1.00000 - 4996 2017 8 21 6 43 11 779 4.7699 186.60210 637.51327 603.15456 -4.41924 0.01501 -2.28387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38232 0.20096 -1.00000 - 4997 2017 8 21 6 43 16 549 4.7699 186.60407 637.47241 603.11938 -4.42104 0.01494 -2.28417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38197 0.20096 -1.00000 - 4998 2017 8 21 6 43 21 319 4.7699 186.60606 637.43158 603.08421 -4.42283 0.01482 -2.28451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38162 0.20096 -1.00000 - 4999 2017 8 21 6 43 26 89 4.7699 186.60807 637.39079 603.04906 -4.42461 0.01472 -2.28488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38128 0.20096 -1.00000 - 5000 2017 8 21 6 43 30 859 4.7698 186.61007 637.35000 603.01392 -4.42636 0.01465 -2.28523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38093 0.20096 -1.00000 - 5001 2017 8 21 6 43 35 628 4.7698 186.61202 637.30922 602.97879 -4.42807 0.01462 -2.28551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38058 0.20096 -1.00000 - 5002 2017 8 21 6 43 40 398 4.7698 186.61395 637.26846 602.94366 -4.42973 0.01468 -2.28578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38024 0.20096 -1.00000 - 5003 2017 8 21 6 43 45 168 4.7698 186.61590 637.22770 602.90855 -4.43133 0.01476 -2.28598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37989 0.20096 -1.00000 - 5004 2017 8 21 6 43 49 938 4.7698 186.61786 637.18698 602.87344 -4.43286 0.01477 -2.28627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37954 0.20096 -1.00000 - 5005 2017 8 21 6 43 54 708 4.7698 186.61984 637.14627 602.83835 -4.43431 0.01467 -2.28657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37919 0.20096 -1.00000 - 5006 2017 8 21 6 43 59 478 4.7698 186.62181 637.10556 602.80326 -4.43568 0.01452 -2.28679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37885 0.20096 -1.00000 - 5007 2017 8 21 6 44 4 247 4.7698 186.62378 637.06484 602.76818 -4.43694 0.01442 -2.28694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37850 0.20096 -1.00000 - 5008 2017 8 21 6 44 9 17 4.7698 186.62574 637.02414 602.73311 -4.43810 0.01439 -2.28705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37815 0.20096 -1.00000 - 5009 2017 8 21 6 44 13 787 4.7698 186.62771 636.98346 602.69805 -4.43916 0.01442 -2.28720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37781 0.20096 -1.00000 - 5010 2017 8 21 6 44 18 557 4.7698 186.62963 636.94280 602.66300 -4.44010 0.01443 -2.28735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37746 0.20096 -1.00000 - 5011 2017 8 21 6 44 23 327 4.7698 186.63156 636.90214 602.62795 -4.44093 0.01439 -2.28749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37711 0.20096 -1.00000 - 5012 2017 8 21 6 44 28 96 4.7698 186.63352 636.86146 602.59290 -4.44164 0.01433 -2.28753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37677 0.20096 -1.00000 - 5013 2017 8 21 6 44 32 866 4.7698 186.63551 636.82080 602.55786 -4.44222 0.01429 -2.28754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37642 0.20096 -1.00000 - 5014 2017 8 21 6 44 37 636 4.7698 186.63748 636.78014 602.52283 -4.44268 0.01426 -2.28748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37607 0.20096 -1.00000 - 5015 2017 8 21 6 44 42 406 4.7698 186.63942 636.73950 602.48781 -4.44301 0.01420 -2.28751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37573 0.20096 -1.00000 - 5016 2017 8 21 6 44 47 176 4.7698 186.64135 636.69887 602.45279 -4.44321 0.01412 -2.28751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37538 0.20096 -1.00000 - 5017 2017 8 21 6 44 51 945 4.7698 186.64326 636.65822 602.41778 -4.44327 0.01410 -2.28743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37503 0.20096 -1.00000 - 5018 2017 8 21 6 44 56 715 4.7698 186.64520 636.61758 602.38277 -4.44320 0.01415 -2.28729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37469 0.20096 -1.00000 - 5019 2017 8 21 6 45 1 485 4.7698 186.64716 636.57694 602.34777 -4.44300 0.01419 -2.28708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37434 0.20096 -1.00000 - 5020 2017 8 21 6 45 6 255 4.7698 186.64913 636.53632 602.31278 -4.44265 0.01415 -2.28693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37399 0.20096 -1.00000 - 5021 2017 8 21 6 45 11 25 4.7698 186.65108 636.49572 602.27780 -4.44217 0.01405 -2.28678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37365 0.20096 -1.00000 - 5022 2017 8 21 6 45 15 794 4.7698 186.65300 636.45512 602.24281 -4.44154 0.01393 -2.28660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37330 0.20095 -1.00000 - 5023 2017 8 21 6 45 20 564 4.7698 186.65492 636.41449 602.20783 -4.44078 0.01389 -2.28631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37295 0.20095 -1.00000 - 5024 2017 8 21 6 45 25 334 4.7698 186.65685 636.37388 602.17286 -4.43987 0.01394 -2.28600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37260 0.20095 -1.00000 - 5025 2017 8 21 6 45 30 104 4.7698 186.65879 636.33328 602.13789 -4.43884 0.01396 -2.28564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37226 0.20095 -1.00000 - 5026 2017 8 21 6 45 34 873 4.7698 186.66072 636.29269 602.10293 -4.43767 0.01389 -2.28537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37191 0.20095 -1.00000 - 5027 2017 8 21 6 45 39 643 4.7698 186.66266 636.25211 602.06798 -4.43637 0.01378 -2.28502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37156 0.20095 -1.00000 - 5028 2017 8 21 6 45 44 413 4.7698 186.66461 636.21151 602.03302 -4.43495 0.01373 -2.28460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37122 0.20095 -1.00000 - 5029 2017 8 21 6 45 49 183 4.7697 186.66655 636.17092 601.99807 -4.43343 0.01376 -2.28416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37087 0.20095 -1.00000 - 5030 2017 8 21 6 45 53 952 4.7697 186.66847 636.13033 601.96312 -4.43180 0.01379 -2.28364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37052 0.20095 -1.00000 - 5031 2017 8 21 6 45 58 722 4.7697 186.67037 636.08975 601.92819 -4.43009 0.01375 -2.28318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37018 0.20095 -1.00000 - 5032 2017 8 21 6 46 3 492 4.7697 186.67226 636.04919 601.89326 -4.42830 0.01364 -2.28275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36983 0.20095 -1.00000 - 5033 2017 8 21 6 46 8 262 4.7697 186.67418 636.00863 601.85832 -4.42645 0.01355 -2.28226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36948 0.20095 -1.00000 - 5034 2017 8 21 6 46 13 31 4.7697 186.67614 635.96805 601.82340 -4.42455 0.01353 -2.28167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36914 0.20095 -1.00000 - 5035 2017 8 21 6 46 17 801 4.7697 186.67810 635.92748 601.78847 -4.42262 0.01358 -2.28107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36879 0.20095 -1.00000 - 5036 2017 8 21 6 46 22 571 4.7697 186.68003 635.88692 601.75355 -4.42066 0.01359 -2.28047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36844 0.20095 -1.00000 - 5037 2017 8 21 6 46 27 340 4.7697 186.68191 635.84638 601.71864 -4.41870 0.01352 -2.27991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36810 0.20095 -1.00000 - 5038 2017 8 21 6 46 32 110 4.7697 186.68379 635.80584 601.68373 -4.41673 0.01344 -2.27932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36775 0.20095 -1.00000 - 5039 2017 8 21 6 46 36 880 4.7697 186.68569 635.76529 601.64882 -4.41477 0.01343 -2.27868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36740 0.20095 -1.00000 - 5040 2017 8 21 6 46 41 650 4.7697 186.68762 635.72474 601.61391 -4.41282 0.01346 -2.27802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36705 0.20095 -1.00000 - 5041 2017 8 21 6 46 46 419 4.7697 186.68957 635.68420 601.57900 -4.41089 0.01344 -2.27728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36671 0.20095 -1.00000 - 5042 2017 8 21 6 46 51 189 4.7697 186.69149 635.64367 601.54410 -4.40897 0.01337 -2.27663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36636 0.20095 -1.00000 - 5043 2017 8 21 6 46 55 959 4.7697 186.69340 635.60315 601.50921 -4.40707 0.01329 -2.27602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36601 0.20095 -1.00000 - 5044 2017 8 21 6 47 0 729 4.7697 186.69529 635.56262 601.47431 -4.40517 0.01324 -2.27537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36567 0.20095 -1.00000 - 5045 2017 8 21 6 47 5 498 4.7697 186.69718 635.52208 601.43941 -4.40328 0.01327 -2.27462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36532 0.20095 -1.00000 - 5046 2017 8 21 6 47 10 268 4.7697 186.69908 635.48154 601.40451 -4.40138 0.01329 -2.27387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36497 0.20095 -1.00000 - 5047 2017 8 21 6 47 15 38 4.7697 186.70097 635.44101 601.36962 -4.39947 0.01324 -2.27315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36463 0.20095 -1.00000 - 5048 2017 8 21 6 47 19 807 4.7697 186.70288 635.40049 601.33473 -4.39753 0.01314 -2.27246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36428 0.20095 -1.00000 - 5049 2017 8 21 6 47 24 577 4.7697 186.70480 635.35996 601.29984 -4.39555 0.01305 -2.27176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36393 0.20095 -1.00000 - 5050 2017 8 21 6 47 29 347 4.7697 186.70673 635.31942 601.26494 -4.39353 0.01304 -2.27099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36359 0.20094 -1.00000 - 5051 2017 8 21 6 47 34 116 4.7697 186.70863 635.27888 601.23005 -4.39146 0.01305 -2.27023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36324 0.20094 -1.00000 - 5052 2017 8 21 6 47 38 886 4.7697 186.71050 635.23833 601.19515 -4.38932 0.01302 -2.26940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36289 0.20094 -1.00000 - 5053 2017 8 21 6 47 43 656 4.7697 186.71236 635.19780 601.16027 -4.38712 0.01298 -2.26868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36255 0.20094 -1.00000 - 5054 2017 8 21 6 47 48 426 4.7697 186.71423 635.15727 601.12538 -4.38485 0.01293 -2.26801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36220 0.20094 -1.00000 - 5055 2017 8 21 6 47 53 195 4.7697 186.71614 635.11673 601.09049 -4.38250 0.01291 -2.26730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36185 0.20094 -1.00000 - 5056 2017 8 21 6 47 57 965 4.7697 186.71807 635.07617 601.05560 -4.38009 0.01289 -2.26651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36150 0.20094 -1.00000 - 5057 2017 8 21 6 48 2 735 4.7697 186.71999 635.03561 601.02071 -4.37763 0.01288 -2.26571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36116 0.20094 -1.00000 - 5058 2017 8 21 6 48 7 504 4.7697 186.72187 634.99505 600.98582 -4.37511 0.01282 -2.26497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36081 0.20094 -1.00000 - 5059 2017 8 21 6 48 12 274 4.7697 186.72373 634.95451 600.95094 -4.37255 0.01276 -2.26427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36046 0.20094 -1.00000 - 5060 2017 8 21 6 48 17 44 4.7697 186.72559 634.91396 600.91605 -4.36996 0.01275 -2.26357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36012 0.20094 -1.00000 - 5061 2017 8 21 6 48 21 813 4.7697 186.72747 634.87339 600.88116 -4.36736 0.01278 -2.26283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35977 0.20094 -1.00000 - 5062 2017 8 21 6 48 26 583 4.7697 186.72936 634.83282 600.84627 -4.36476 0.01278 -2.26209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35942 0.20094 -1.00000 - 5063 2017 8 21 6 48 31 353 4.7697 186.73126 634.79225 600.81139 -4.36219 0.01271 -2.26132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35908 0.20094 -1.00000 - 5064 2017 8 21 6 48 36 122 4.7697 186.73315 634.75168 600.77651 -4.35966 0.01262 -2.26067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35873 0.20094 -1.00000 - 5065 2017 8 21 6 48 40 892 4.7697 186.73503 634.71113 600.74163 -4.35719 0.01255 -2.26009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35838 0.20094 -1.00000 - 5066 2017 8 21 6 48 45 662 4.7697 186.73690 634.67055 600.70675 -4.35479 0.01254 -2.25948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35804 0.20094 -1.00000 - 5067 2017 8 21 6 48 50 431 4.7697 186.73876 634.62995 600.67186 -4.35248 0.01255 -2.25881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35769 0.20094 -1.00000 - 5068 2017 8 21 6 48 55 201 4.7697 186.74061 634.58935 600.63698 -4.35028 0.01254 -2.25814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35734 0.20094 -1.00000 - 5069 2017 8 21 6 48 59 971 4.7697 186.74248 634.54876 600.60210 -4.34819 0.01248 -2.25756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35700 0.20094 -1.00000 - 5070 2017 8 21 6 49 4 740 4.7697 186.74437 634.50818 600.56723 -4.34622 0.01241 -2.25703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35665 0.20094 -1.00000 - 5071 2017 8 21 6 49 9 510 4.7697 186.74627 634.46759 600.53235 -4.34437 0.01237 -2.25653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35630 0.20094 -1.00000 - 5072 2017 8 21 6 49 14 280 4.7697 186.74815 634.42698 600.49748 -4.34265 0.01236 -2.25599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35595 0.20094 -1.00000 - 5073 2017 8 21 6 49 19 50 4.7697 186.75001 634.38637 600.46261 -4.34106 0.01232 -2.25545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35561 0.20094 -1.00000 - 5074 2017 8 21 6 49 23 819 4.7697 186.75184 634.34576 600.42775 -4.33959 0.01229 -2.25494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35526 0.20094 -1.00000 - 5075 2017 8 21 6 49 28 589 4.7697 186.75368 634.30518 600.39290 -4.33825 0.01228 -2.25456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35491 0.20094 -1.00000 - 5076 2017 8 21 6 49 33 359 4.7697 186.75554 634.26459 600.35806 -4.33702 0.01228 -2.25420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35457 0.20094 -1.00000 - 5077 2017 8 21 6 49 38 128 4.7697 186.75743 634.22399 600.32322 -4.33591 0.01225 -2.25384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35422 0.20094 -1.00000 - 5078 2017 8 21 6 49 42 898 4.7697 186.75932 634.18341 600.28839 -4.33489 0.01220 -2.25347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35387 0.20094 -1.00000 - 5079 2017 8 21 6 49 47 668 4.7697 186.76118 634.14282 600.25357 -4.33397 0.01215 -2.25307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35353 0.20093 -1.00000 - 5080 2017 8 21 6 49 52 437 4.7697 186.76302 634.10227 600.21877 -4.33313 0.01210 -2.25277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35318 0.20093 -1.00000 - 5081 2017 8 21 6 49 57 207 4.7697 186.76486 634.06174 600.18398 -4.33237 0.01209 -2.25255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35283 0.20093 -1.00000 - 5082 2017 8 21 6 50 1 977 4.7697 186.76670 634.02123 600.14921 -4.33167 0.01211 -2.25233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35249 0.20093 -1.00000 - 5083 2017 8 21 6 50 6 746 4.7697 186.76855 633.98072 600.11444 -4.33104 0.01209 -2.25206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35214 0.20093 -1.00000 - 5084 2017 8 21 6 50 11 516 4.7697 186.77041 633.94025 600.07970 -4.33046 0.01203 -2.25178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35179 0.20093 -1.00000 - 5085 2017 8 21 6 50 16 286 4.7697 186.77227 633.89980 600.04497 -4.32994 0.01196 -2.25157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35145 0.20093 -1.00000 - 5086 2017 8 21 6 50 21 55 4.7697 186.77414 633.85940 600.01026 -4.32947 0.01191 -2.25144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35110 0.20093 -1.00000 - 5087 2017 8 21 6 50 25 825 4.7697 186.77598 633.81903 599.97557 -4.32905 0.01189 -2.25135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35075 0.20093 -1.00000 - 5088 2017 8 21 6 50 30 595 4.7697 186.77781 633.77868 599.94089 -4.32866 0.01188 -2.25126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35041 0.20093 -1.00000 - 5089 2017 8 21 6 50 35 364 4.7697 186.77963 633.73835 599.90623 -4.32833 0.01186 -2.25115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35006 0.20093 -1.00000 - 5090 2017 8 21 6 50 40 134 4.7697 186.78146 633.69805 599.87158 -4.32802 0.01181 -2.25100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34971 0.20093 -1.00000 - 5091 2017 8 21 6 50 44 904 4.7697 186.78331 633.65778 599.83695 -4.32776 0.01176 -2.25096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34936 0.20093 -1.00000 - 5092 2017 8 21 6 50 49 673 4.7697 186.78518 633.61756 599.80234 -4.32753 0.01171 -2.25097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34902 0.20093 -1.00000 - 5093 2017 8 21 6 50 54 443 4.7697 186.78704 633.57736 599.76773 -4.32732 0.01168 -2.25102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34867 0.20093 -1.00000 - 5094 2017 8 21 6 50 59 213 4.7697 186.78887 633.53717 599.73314 -4.32715 0.01165 -2.25101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34832 0.20093 -1.00000 - 5095 2017 8 21 6 51 3 982 4.7697 186.79068 633.49700 599.69856 -4.32701 0.01163 -2.25097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34798 0.20093 -1.00000 - 5096 2017 8 21 6 51 8 752 4.7697 186.79249 633.45687 599.66400 -4.32689 0.01162 -2.25098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34763 0.20093 -1.00000 - 5097 2017 8 21 6 51 13 522 4.7697 186.79432 633.41677 599.62945 -4.32681 0.01161 -2.25107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34728 0.20093 -1.00000 - 5098 2017 8 21 6 51 18 291 4.7697 186.79617 633.37669 599.59492 -4.32676 0.01157 -2.25120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34694 0.20093 -1.00000 - 5099 2017 8 21 6 51 23 61 4.7697 186.79802 633.33663 599.56039 -4.32675 0.01150 -2.25131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34659 0.20093 -1.00000 - 5100 2017 8 21 6 51 27 831 4.7697 186.79985 633.29658 599.52587 -4.32678 0.01144 -2.25140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34624 0.20093 -1.00000 - 5101 2017 8 21 6 51 32 600 4.7697 186.80168 633.25654 599.49136 -4.32687 0.01141 -2.25145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34590 0.20093 -1.00000 - 5102 2017 8 21 6 51 37 370 4.7697 186.80349 633.21654 599.45687 -4.32701 0.01141 -2.25160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34555 0.20093 -1.00000 - 5103 2017 8 21 6 51 42 140 4.7697 186.80530 633.17657 599.42239 -4.32721 0.01141 -2.25180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34520 0.20093 -1.00000 - 5104 2017 8 21 6 51 46 910 4.7697 186.80711 633.13662 599.38792 -4.32748 0.01138 -2.25203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34486 0.20093 -1.00000 - 5105 2017 8 21 6 51 51 679 4.7697 186.80894 633.09667 599.35346 -4.32783 0.01132 -2.25220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34451 0.20093 -1.00000 - 5106 2017 8 21 6 51 56 449 4.7697 186.81077 633.05674 599.31900 -4.32826 0.01126 -2.25233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34416 0.20093 -1.00000 - 5107 2017 8 21 6 52 1 219 4.7697 186.81261 633.01682 599.28455 -4.32879 0.01122 -2.25251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34381 0.20092 -1.00000 - 5108 2017 8 21 6 52 5 988 4.7697 186.81443 632.97694 599.25012 -4.32940 0.01120 -2.25276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34347 0.20092 -1.00000 - 5109 2017 8 21 6 52 10 758 4.7697 186.81624 632.93707 599.21569 -4.33011 0.01119 -2.25305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34312 0.20092 -1.00000 - 5110 2017 8 21 6 52 15 528 4.7697 186.81803 632.89720 599.18127 -4.33092 0.01117 -2.25331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34277 0.20092 -1.00000 - 5111 2017 8 21 6 52 20 297 4.7697 186.81983 632.85734 599.14685 -4.33184 0.01114 -2.25354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34243 0.20092 -1.00000 - 5112 2017 8 21 6 52 25 67 4.7697 186.82165 632.81748 599.11243 -4.33286 0.01109 -2.25374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34208 0.20092 -1.00000 - 5113 2017 8 21 6 52 29 837 4.7697 186.82348 632.77763 599.07802 -4.33398 0.01104 -2.25402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34173 0.20092 -1.00000 - 5114 2017 8 21 6 52 34 606 4.7697 186.82530 632.73780 599.04362 -4.33520 0.01101 -2.25436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34139 0.20092 -1.00000 - 5115 2017 8 21 6 52 39 376 4.7697 186.82711 632.69796 599.00922 -4.33653 0.01098 -2.25470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34104 0.20092 -1.00000 - 5116 2017 8 21 6 52 44 146 4.7697 186.82890 632.65811 598.97482 -4.33795 0.01098 -2.25497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34069 0.20092 -1.00000 - 5117 2017 8 21 6 52 48 916 4.7697 186.83069 632.61826 598.94042 -4.33947 0.01097 -2.25521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34035 0.20092 -1.00000 - 5118 2017 8 21 6 52 53 685 4.7697 186.83249 632.57842 598.90603 -4.34108 0.01094 -2.25548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34000 0.20092 -1.00000 - 5119 2017 8 21 6 52 58 455 4.7697 186.83429 632.53859 598.87165 -4.34278 0.01089 -2.25582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33965 0.20092 -1.00000 - 5120 2017 8 21 6 53 3 225 4.7697 186.83610 632.49876 598.83728 -4.34457 0.01082 -2.25619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33931 0.20092 -1.00000 - 5121 2017 8 21 6 53 7 994 4.7697 186.83791 632.45893 598.80290 -4.34644 0.01078 -2.25652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33896 0.20092 -1.00000 - 5122 2017 8 21 6 53 12 764 4.7697 186.83972 632.41909 598.76853 -4.34839 0.01076 -2.25679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33861 0.20092 -1.00000 - 5123 2017 8 21 6 53 17 534 4.7697 186.84151 632.37926 598.73417 -4.35042 0.01077 -2.25704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33827 0.20092 -1.00000 - 5124 2017 8 21 6 53 22 304 4.7697 186.84329 632.33945 598.69982 -4.35253 0.01076 -2.25736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33792 0.20092 -1.00000 - 5125 2017 8 21 6 53 27 73 4.7697 186.84507 632.29966 598.66549 -4.35472 0.01072 -2.25771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33757 0.20092 -1.00000 - 5126 2017 8 21 6 53 31 843 4.7697 186.84686 632.25987 598.63116 -4.35697 0.01066 -2.25805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33722 0.20092 -1.00000 - 5127 2017 8 21 6 53 36 613 4.7697 186.84866 632.22008 598.59683 -4.35930 0.01060 -2.25831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33688 0.20092 -1.00000 - 5128 2017 8 21 6 53 41 382 4.7697 186.85047 632.18030 598.56251 -4.36169 0.01057 -2.25852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33653 0.20092 -1.00000 - 5129 2017 8 21 6 53 46 152 4.7697 186.85226 632.14054 598.52820 -4.36413 0.01055 -2.25875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33618 0.20092 -1.00000 - 5130 2017 8 21 6 53 50 922 4.7697 186.85404 632.10081 598.49391 -4.36663 0.01054 -2.25903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33584 0.20092 -1.00000 - 5131 2017 8 21 6 53 55 692 4.7697 186.85580 632.06109 598.45962 -4.36915 0.01052 -2.25931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33549 0.20092 -1.00000 - 5132 2017 8 21 6 54 0 461 4.7697 186.85758 632.02136 598.42533 -4.37169 0.01049 -2.25953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33514 0.20092 -1.00000 - 5133 2017 8 21 6 54 5 231 4.7697 186.85937 631.98164 598.39105 -4.37422 0.01044 -2.25966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33480 0.20092 -1.00000 - 5134 2017 8 21 6 54 10 1 4.7697 186.86116 631.94192 598.35678 -4.37673 0.01039 -2.25976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33445 0.20092 -1.00000 - 5135 2017 8 21 6 54 14 771 4.7697 186.86295 631.90222 598.32252 -4.37918 0.01035 -2.25993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33410 0.20092 -1.00000 - 5136 2017 8 21 6 54 19 540 4.7697 186.86473 631.86254 598.28827 -4.38155 0.01033 -2.26010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33376 0.20091 -1.00000 - 5137 2017 8 21 6 54 24 310 4.7698 186.86650 631.82286 598.25402 -4.38380 0.01033 -2.26024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33341 0.20091 -1.00000 - 5138 2017 8 21 6 54 29 80 4.7698 186.86826 631.78317 598.21977 -4.38591 0.01032 -2.26028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33306 0.20091 -1.00000 - 5139 2017 8 21 6 54 33 850 4.7698 186.87003 631.74348 598.18553 -4.38782 0.01028 -2.26024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33272 0.20091 -1.00000 - 5140 2017 8 21 6 54 38 619 4.7698 186.87180 631.70381 598.15130 -4.38953 0.01022 -2.26021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33237 0.20091 -1.00000 - 5141 2017 8 21 6 54 43 389 4.7698 186.87357 631.66415 598.11708 -4.39098 0.01015 -2.26021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33202 0.20091 -1.00000 - 5142 2017 8 21 6 54 48 159 4.7698 186.87536 631.62451 598.08287 -4.39214 0.01011 -2.26016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33167 0.20091 -1.00000 - 5143 2017 8 21 6 54 52 929 4.7698 186.87713 631.58485 598.04866 -4.39298 0.01010 -2.26002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33133 0.20091 -1.00000 - 5144 2017 8 21 6 54 57 698 4.7698 186.87890 631.54520 598.01446 -4.39347 0.01011 -2.25976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33098 0.20091 -1.00000 - 5145 2017 8 21 6 55 2 468 4.7698 186.88065 631.50557 597.98026 -4.39360 0.01011 -2.25949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33063 0.20091 -1.00000 - 5146 2017 8 21 6 55 7 238 4.7698 186.88239 631.46596 597.94608 -4.39333 0.01007 -2.25929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33029 0.20091 -1.00000 - 5147 2017 8 21 6 55 12 8 4.7698 186.88415 631.42636 597.91191 -4.39265 0.01001 -2.25906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32994 0.20091 -1.00000 - 5148 2017 8 21 6 55 16 778 4.7698 186.88593 631.38676 597.87773 -4.39157 0.00994 -2.25877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32959 0.20091 -1.00000 - 5149 2017 8 21 6 55 21 547 4.7698 186.88770 631.34715 597.84355 -4.39008 0.00989 -2.25835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32925 0.20091 -1.00000 - 5150 2017 8 21 6 55 26 317 4.7698 186.88947 631.30753 597.80938 -4.38819 0.00988 -2.25786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32890 0.20091 -1.00000 - 5151 2017 8 21 6 55 31 87 4.7698 186.89122 631.26793 597.77521 -4.38591 0.00988 -2.25740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32855 0.20091 -1.00000 - 5152 2017 8 21 6 55 35 857 4.7698 186.89296 631.22833 597.74105 -4.38326 0.00989 -2.25694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32821 0.20091 -1.00000 - 5153 2017 8 21 6 55 40 627 4.7698 186.89470 631.18873 597.70689 -4.38027 0.00987 -2.25645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32786 0.20091 -1.00000 - 5154 2017 8 21 6 55 45 396 4.7698 186.89645 631.14911 597.67273 -4.37696 0.00981 -2.25586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32751 0.20091 -1.00000 - 5155 2017 8 21 6 55 50 166 4.7698 186.89821 631.10948 597.63856 -4.37337 0.00973 -2.25516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32717 0.20091 -1.00000 - 5156 2017 8 21 6 55 54 936 4.7698 186.89997 631.06985 597.60440 -4.36954 0.00967 -2.25449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32682 0.20091 -1.00000 - 5157 2017 8 21 6 55 59 706 4.7698 186.90173 631.03023 597.57024 -4.36550 0.00965 -2.25387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32647 0.20091 -1.00000 - 5158 2017 8 21 6 56 4 476 4.7698 186.90348 630.99060 597.53608 -4.36130 0.00966 -2.25325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32612 0.20091 -1.00000 - 5159 2017 8 21 6 56 9 246 4.7698 186.90521 630.95096 597.50192 -4.35697 0.00968 -2.25259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32578 0.20091 -1.00000 - 5160 2017 8 21 6 56 14 15 4.7698 186.90693 630.91129 597.46775 -4.35255 0.00966 -2.25184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32543 0.20091 -1.00000 - 5161 2017 8 21 6 56 18 785 4.7698 186.90866 630.87162 597.43359 -4.34809 0.00961 -2.25105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32508 0.20091 -1.00000 - 5162 2017 8 21 6 56 23 555 4.7698 186.91041 630.83195 597.39944 -4.34362 0.00952 -2.25032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32474 0.20091 -1.00000 - 5163 2017 8 21 6 56 28 325 4.7698 186.91217 630.79230 597.36529 -4.33918 0.00946 -2.24963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32439 0.20091 -1.00000 - 5164 2017 8 21 6 56 33 95 4.7698 186.91392 630.75264 597.33114 -4.33479 0.00943 -2.24894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32404 0.20090 -1.00000 - 5165 2017 8 21 6 56 37 865 4.7699 186.91566 630.71298 597.29699 -4.33049 0.00943 -2.24820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32370 0.20090 -1.00000 - 5166 2017 8 21 6 56 42 634 4.7699 186.91738 630.67330 597.26284 -4.32631 0.00946 -2.24738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32335 0.20090 -1.00000 - 5167 2017 8 21 6 56 47 404 4.7699 186.91910 630.63364 597.22871 -4.32228 0.00946 -2.24660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32300 0.20090 -1.00000 - 5168 2017 8 21 6 56 52 174 4.7699 186.92082 630.59400 597.19458 -4.31842 0.00942 -2.24591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32266 0.20090 -1.00000 - 5169 2017 8 21 6 56 56 944 4.7699 186.92255 630.55437 597.16046 -4.31477 0.00934 -2.24526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32231 0.20090 -1.00000 - 5170 2017 8 21 6 57 1 714 4.7699 186.92429 630.51474 597.12634 -4.31135 0.00925 -2.24458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32196 0.20090 -1.00000 - 5171 2017 8 21 6 57 6 484 4.7699 186.92604 630.47510 597.09222 -4.30817 0.00920 -2.24383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32162 0.20090 -1.00000 - 5172 2017 8 21 6 57 11 254 4.7699 186.92777 630.43547 597.05810 -4.30526 0.00919 -2.24309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32127 0.20090 -1.00000 - 5173 2017 8 21 6 57 16 24 4.7699 186.92949 630.39586 597.02400 -4.30263 0.00922 -2.24244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32092 0.20090 -1.00000 - 5174 2017 8 21 6 57 20 793 4.7699 186.93120 630.35627 596.98991 -4.30028 0.00924 -2.24184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32057 0.20090 -1.00000 - 5175 2017 8 21 6 57 25 563 4.7699 186.93290 630.31670 596.95583 -4.29821 0.00922 -2.24128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32023 0.20090 -1.00000 - 5176 2017 8 21 6 57 30 333 4.7699 186.93462 630.27712 596.92174 -4.29640 0.00915 -2.24066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31988 0.20090 -1.00000 - 5177 2017 8 21 6 57 35 103 4.7699 186.93635 630.23754 596.88766 -4.29485 0.00906 -2.23999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31953 0.20090 -1.00000 - 5178 2017 8 21 6 57 39 873 4.7699 186.93809 630.19797 596.85359 -4.29353 0.00899 -2.23938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31919 0.20090 -1.00000 - 5179 2017 8 21 6 57 44 643 4.7699 186.93981 630.15844 596.81954 -4.29242 0.00896 -2.23886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31884 0.20090 -1.00000 - 5180 2017 8 21 6 57 49 413 4.7699 186.94152 630.11893 596.78549 -4.29150 0.00897 -2.23837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31849 0.20090 -1.00000 - 5181 2017 8 21 6 57 54 183 4.7699 186.94322 630.07941 596.75144 -4.29074 0.00899 -2.23786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31815 0.20090 -1.00000 - 5182 2017 8 21 6 57 58 953 4.7699 186.94492 630.03990 596.71739 -4.29011 0.00900 -2.23727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31780 0.20090 -1.00000 - 5183 2017 8 21 6 58 3 723 4.7699 186.94663 630.00039 596.68336 -4.28959 0.00896 -2.23671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31745 0.20090 -1.00000 - 5184 2017 8 21 6 58 8 493 4.7699 186.94834 629.96092 596.64933 -4.28914 0.00887 -2.23625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31711 0.20090 -1.00000 - 5185 2017 8 21 6 58 13 263 4.7699 186.95006 629.92147 596.61532 -4.28875 0.00879 -2.23583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31676 0.20090 -1.00000 - 5186 2017 8 21 6 58 18 32 4.7700 186.95178 629.88203 596.58131 -4.28839 0.00874 -2.23544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31641 0.20090 -1.00000 - 5187 2017 8 21 6 58 22 802 4.7700 186.95349 629.84258 596.54730 -4.28804 0.00875 -2.23498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31607 0.20090 -1.00000 - 5188 2017 8 21 6 58 27 572 4.7700 186.95518 629.80313 596.51329 -4.28769 0.00877 -2.23448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31572 0.20090 -1.00000 - 5189 2017 8 21 6 58 32 342 4.7700 186.95687 629.76370 596.47930 -4.28733 0.00877 -2.23404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31537 0.20090 -1.00000 - 5190 2017 8 21 6 58 37 112 4.7700 186.95856 629.72430 596.44531 -4.28696 0.00874 -2.23368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31502 0.20090 -1.00000 - 5191 2017 8 21 6 58 41 882 4.7700 186.96026 629.68490 596.41133 -4.28656 0.00867 -2.23335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31468 0.20090 -1.00000 - 5192 2017 8 21 6 58 46 652 4.7700 186.96197 629.64550 596.37735 -4.28615 0.00860 -2.23298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31433 0.20090 -1.00000 - 5193 2017 8 21 6 58 51 422 4.7700 186.96368 629.60610 596.34337 -4.28572 0.00855 -2.23253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31398 0.20089 -1.00000 - 5194 2017 8 21 6 58 56 192 4.7700 186.96538 629.56670 596.30940 -4.28529 0.00853 -2.23211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31364 0.20089 -1.00000 - 5195 2017 8 21 6 59 0 962 4.7700 186.96706 629.52733 596.27543 -4.28487 0.00855 -2.23180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31329 0.20089 -1.00000 - 5196 2017 8 21 6 59 5 732 4.7700 186.96874 629.48797 596.24148 -4.28447 0.00855 -2.23152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31294 0.20089 -1.00000 - 5197 2017 8 21 6 59 10 502 4.7700 186.97042 629.44861 596.20752 -4.28410 0.00853 -2.23129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31260 0.20089 -1.00000 - 5198 2017 8 21 6 59 15 272 4.7700 186.97211 629.40923 596.17357 -4.28374 0.00847 -2.23097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31225 0.20089 -1.00000 - 5199 2017 8 21 6 59 20 42 4.7700 186.97381 629.36986 596.13961 -4.28340 0.00840 -2.23061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31190 0.20089 -1.00000 - 5200 2017 8 21 6 59 24 812 4.7700 186.97551 629.33049 596.10567 -4.28308 0.00835 -2.23031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31156 0.20089 -1.00000 - 5201 2017 8 21 6 59 29 582 4.7700 186.97720 629.29115 596.07173 -4.28277 0.00834 -2.23009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31121 0.20089 -1.00000 - 5202 2017 8 21 6 59 34 352 4.7700 186.97888 629.25182 596.03780 -4.28247 0.00835 -2.22992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31086 0.20089 -1.00000 - 5203 2017 8 21 6 59 39 123 4.7700 186.98055 629.21248 596.00388 -4.28216 0.00835 -2.22971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31052 0.20089 -1.00000 - 5204 2017 8 21 6 59 43 893 4.7701 186.98222 629.17313 595.96995 -4.28186 0.00832 -2.22941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31017 0.20089 -1.00000 - 5205 2017 8 21 6 59 48 663 4.7701 186.98390 629.13378 595.93603 -4.28156 0.00826 -2.22914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30982 0.20089 -1.00000 - 5206 2017 8 21 6 59 53 433 4.7701 186.98558 629.09447 595.90212 -4.28125 0.00819 -2.22898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30947 0.20089 -1.00000 - 5207 2017 8 21 6 59 58 203 4.7701 186.98727 629.05516 595.86822 -4.28094 0.00815 -2.22886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30913 0.20089 -1.00000 - 5208 2017 8 21 7 0 2 973 4.7701 186.98895 629.01586 595.83432 -4.28064 0.00815 -2.22878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30878 0.20089 -1.00000 - 5209 2017 8 21 7 0 7 743 4.7701 186.99061 628.97656 595.80042 -4.28034 0.00815 -2.22861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30843 0.20089 -1.00000 - 5210 2017 8 21 7 0 12 513 4.7701 186.99227 628.93724 595.76653 -4.28007 0.00815 -2.22841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30809 0.20089 -1.00000 - 5211 2017 8 21 7 0 17 283 4.7701 186.99392 628.89795 595.73265 -4.27983 0.00811 -2.22826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30774 0.20089 -1.00000 - 5212 2017 8 21 7 0 22 53 4.7701 186.99557 628.85868 595.69878 -4.27963 0.00804 -2.22820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30739 0.20089 -1.00000 - 5213 2017 8 21 7 0 26 823 4.7701 186.99723 628.81942 595.66492 -4.27948 0.00796 -2.22819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30705 0.20089 -1.00000 - 5214 2017 8 21 7 0 31 593 4.7701 186.99887 628.78017 595.63106 -4.27940 0.00792 -2.22815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30670 0.20089 -1.00000 - 5215 2017 8 21 7 0 36 364 4.7701 187.00051 628.74090 595.59720 -4.27939 0.00791 -2.22801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30635 0.20089 -1.00000 - 5216 2017 8 21 7 0 41 134 4.7701 187.00214 628.70165 595.56335 -4.27947 0.00792 -2.22790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30601 0.20089 -1.00000 - 5217 2017 8 21 7 0 45 904 4.7701 187.00376 628.66242 595.52952 -4.27964 0.00791 -2.22790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30566 0.20089 -1.00000 - 5218 2017 8 21 7 0 50 674 4.7701 187.00537 628.62321 595.49569 -4.27991 0.00786 -2.22794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30531 0.20089 -1.00000 - 5219 2017 8 21 7 0 55 444 4.7702 187.00698 628.58402 595.46187 -4.28027 0.00778 -2.22802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30496 0.20089 -1.00000 - 5220 2017 8 21 7 1 0 214 4.7702 187.00860 628.54481 595.42806 -4.28072 0.00769 -2.22802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30462 0.20089 -1.00000 - 5221 2017 8 21 7 1 4 985 4.7702 187.01022 628.50560 595.39424 -4.28126 0.00763 -2.22797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30427 0.20089 -1.00000 - 5222 2017 8 21 7 1 9 755 4.7702 187.01183 628.46642 595.36044 -4.28188 0.00761 -2.22797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30392 0.20088 -1.00000 - 5223 2017 8 21 7 1 14 525 4.7702 187.01343 628.42726 595.32666 -4.28257 0.00761 -2.22806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30358 0.20088 -1.00000 - 5224 2017 8 21 7 1 19 295 4.7702 187.01501 628.38813 595.29288 -4.28331 0.00761 -2.22820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30323 0.20088 -1.00000 - 5225 2017 8 21 7 1 24 65 4.7702 187.01659 628.34900 595.25911 -4.28408 0.00757 -2.22828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30288 0.20088 -1.00000 - 5226 2017 8 21 7 1 28 835 4.7702 187.01817 628.30986 595.22534 -4.28487 0.00750 -2.22827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30254 0.20088 -1.00000 - 5227 2017 8 21 7 1 33 606 4.7702 187.01976 628.27073 595.19158 -4.28567 0.00740 -2.22828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30219 0.20088 -1.00000 - 5228 2017 8 21 7 1 38 376 4.7702 187.02134 628.23163 595.15784 -4.28645 0.00731 -2.22838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30184 0.20088 -1.00000 - 5229 2017 8 21 7 1 43 146 4.7702 187.02292 628.19256 595.12411 -4.28719 0.00726 -2.22851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30150 0.20088 -1.00000 - 5230 2017 8 21 7 1 47 916 4.7702 187.02450 628.15350 595.09038 -4.28789 0.00724 -2.22868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30115 0.20088 -1.00000 - 5231 2017 8 21 7 1 52 687 4.7702 187.02607 628.11444 595.05666 -4.28853 0.00724 -2.22875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30080 0.20088 -1.00000 - 5232 2017 8 21 7 1 57 457 4.7703 187.02762 628.07537 595.02294 -4.28910 0.00722 -2.22876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30046 0.20088 -1.00000 - 5233 2017 8 21 7 2 2 227 4.7703 187.02917 628.03632 594.98924 -4.28959 0.00717 -2.22881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30011 0.20088 -1.00000 - 5234 2017 8 21 7 2 6 997 4.7703 187.03071 627.99731 594.95555 -4.29000 0.00709 -2.22893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29976 0.20088 -1.00000 - 5235 2017 8 21 7 2 11 768 4.7703 187.03227 627.95831 594.92187 -4.29032 0.00701 -2.22910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29941 0.20088 -1.00000 - 5236 2017 8 21 7 2 16 538 4.7703 187.03382 627.91931 594.88819 -4.29054 0.00694 -2.22920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29907 0.20088 -1.00000 - 5237 2017 8 21 7 2 21 308 4.7703 187.03537 627.88030 594.85452 -4.29067 0.00690 -2.22920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29872 0.20088 -1.00000 - 5238 2017 8 21 7 2 26 79 4.7703 187.03691 627.84131 594.82085 -4.29072 0.00688 -2.22921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29837 0.20088 -1.00000 - 5239 2017 8 21 7 2 30 849 4.7703 187.03844 627.80233 594.78720 -4.29068 0.00687 -2.22929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29803 0.20088 -1.00000 - 5240 2017 8 21 7 2 35 619 4.7703 187.03996 627.76338 594.75356 -4.29057 0.00685 -2.22940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29768 0.20088 -1.00000 - 5241 2017 8 21 7 2 40 389 4.7703 187.04147 627.72444 594.71992 -4.29038 0.00680 -2.22955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29733 0.20088 -1.00000 - 5242 2017 8 21 7 2 45 160 4.7703 187.04299 627.68549 594.68629 -4.29013 0.00674 -2.22960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29699 0.20088 -1.00000 - 5243 2017 8 21 7 2 49 930 4.7703 187.04451 627.64653 594.65266 -4.28984 0.00667 -2.22957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29664 0.20088 -1.00000 - 5244 2017 8 21 7 2 54 700 4.7704 187.04602 627.60759 594.61904 -4.28950 0.00661 -2.22959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29629 0.20088 -1.00000 - 5245 2017 8 21 7 2 59 471 4.7704 187.04754 627.56868 594.58544 -4.28914 0.00657 -2.22967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29595 0.20088 -1.00000 - 5246 2017 8 21 7 3 4 241 4.7704 187.04904 627.52978 594.55185 -4.28876 0.00656 -2.22980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29560 0.20088 -1.00000 - 5247 2017 8 21 7 3 9 12 4.7704 187.05053 627.49088 594.51825 -4.28838 0.00655 -2.22987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29525 0.20088 -1.00000 - 5248 2017 8 21 7 3 13 782 4.7704 187.05201 627.45197 594.48466 -4.28800 0.00653 -2.22984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29490 0.20088 -1.00000 - 5249 2017 8 21 7 3 18 552 4.7704 187.05349 627.41307 594.45108 -4.28764 0.00649 -2.22980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29456 0.20088 -1.00000 - 5250 2017 8 21 7 3 23 323 4.7704 187.05498 627.37420 594.41751 -4.28731 0.00643 -2.22985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29421 0.20087 -1.00000 - 5251 2017 8 21 7 3 28 93 4.7704 187.05646 627.33534 594.38396 -4.28701 0.00635 -2.22992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29386 0.20087 -1.00000 - 5252 2017 8 21 7 3 32 864 4.7704 187.05794 627.29650 594.35040 -4.28677 0.00629 -2.23005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29352 0.20087 -1.00000 - 5253 2017 8 21 7 3 37 634 4.7704 187.05942 627.25766 594.31686 -4.28657 0.00626 -2.23006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29317 0.20087 -1.00000 - 5254 2017 8 21 7 3 42 404 4.7704 187.06088 627.21880 594.28331 -4.28644 0.00625 -2.23001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29282 0.20087 -1.00000 - 5255 2017 8 21 7 3 47 175 4.7704 187.06234 627.17997 594.24978 -4.28637 0.00625 -2.22999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29248 0.20087 -1.00000 - 5256 2017 8 21 7 3 51 945 4.7705 187.06378 627.14117 594.21627 -4.28637 0.00623 -2.23004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29213 0.20087 -1.00000 - 5257 2017 8 21 7 3 56 716 4.7705 187.06522 627.10239 594.18276 -4.28644 0.00618 -2.23014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29178 0.20087 -1.00000 - 5258 2017 8 21 7 4 1 486 4.7705 187.06666 627.06361 594.14925 -4.28657 0.00611 -2.23018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29144 0.20087 -1.00000 - 5259 2017 8 21 7 4 6 257 4.7705 187.06811 627.02482 594.11575 -4.28677 0.00603 -2.23012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29109 0.20087 -1.00000 - 5260 2017 8 21 7 4 11 27 4.7705 187.06955 626.98605 594.08226 -4.28703 0.00597 -2.23005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29074 0.20087 -1.00000 - 5261 2017 8 21 7 4 15 798 4.7705 187.07101 626.94730 594.04878 -4.28734 0.00594 -2.23005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29039 0.20087 -1.00000 - 5262 2017 8 21 7 4 20 568 4.7705 187.07249 626.90857 594.01531 -4.28770 0.00593 -2.23008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29005 0.20087 -1.00000 - 5263 2017 8 21 7 4 25 339 4.7705 187.07396 626.86987 593.98185 -4.28809 0.00593 -2.23016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28970 0.20087 -1.00000 - 5264 2017 8 21 7 4 30 109 4.7705 187.07543 626.83116 593.94839 -4.28851 0.00594 -2.23012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28935 0.20087 -1.00000 - 5265 2017 8 21 7 4 34 880 4.7705 187.07692 626.79244 593.91493 -4.28896 0.00593 -2.23001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28901 0.20087 -1.00000 - 5266 2017 8 21 7 4 39 651 4.7706 187.07841 626.75374 593.88149 -4.28941 0.00589 -2.22992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28866 0.20087 -1.00000 - 5267 2017 8 21 7 4 44 421 4.7706 187.07991 626.71507 593.84806 -4.28986 0.00584 -2.22990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28831 0.20087 -1.00000 - 5268 2017 8 21 7 4 49 192 4.7706 187.08143 626.67643 593.81463 -4.29029 0.00579 -2.22991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28797 0.20087 -1.00000 - 5269 2017 8 21 7 4 53 962 4.7706 187.08295 626.63778 593.78121 -4.29070 0.00577 -2.22987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28762 0.20087 -1.00000 - 5270 2017 8 21 7 4 58 733 4.7706 187.08448 626.59912 593.74778 -4.29108 0.00577 -2.22972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28727 0.20087 -1.00000 - 5271 2017 8 21 7 5 3 503 4.7706 187.08600 626.56046 593.71436 -4.29141 0.00579 -2.22954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28693 0.20087 -1.00000 - 5272 2017 8 21 7 5 8 274 4.7706 187.08752 626.52183 593.68095 -4.29168 0.00581 -2.22943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28658 0.20087 -1.00000 - 5273 2017 8 21 7 5 13 45 4.7706 187.08903 626.48321 593.64755 -4.29189 0.00581 -2.22933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28623 0.20087 -1.00000 - 5274 2017 8 21 7 5 17 815 4.7706 187.09055 626.44461 593.61414 -4.29202 0.00579 -2.22929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28588 0.20087 -1.00000 - 5275 2017 8 21 7 5 22 586 4.7706 187.09207 626.40599 593.58074 -4.29207 0.00576 -2.22912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28554 0.20087 -1.00000 - 5276 2017 8 21 7 5 27 357 4.7707 187.09361 626.36735 593.54733 -4.29203 0.00572 -2.22887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28519 0.20087 -1.00000 - 5277 2017 8 21 7 5 32 127 4.7707 187.09515 626.32872 593.51393 -4.29189 0.00570 -2.22863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28484 0.20087 -1.00000 - 5278 2017 8 21 7 5 36 898 4.7707 187.09670 626.29011 593.48053 -4.29165 0.00572 -2.22846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28450 0.20087 -1.00000 - 5279 2017 8 21 7 5 41 669 4.7707 187.09824 626.25150 593.44714 -4.29131 0.00577 -2.22831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28415 0.20086 -1.00000 - 5280 2017 8 21 7 5 46 439 4.7707 187.09977 626.21288 593.41374 -4.29086 0.00583 -2.22812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28380 0.20086 -1.00000 - 5281 2017 8 21 7 5 51 210 4.7707 187.10130 626.17422 593.38033 -4.29031 0.00587 -2.22781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28346 0.20086 -1.00000 - 5282 2017 8 21 7 5 55 981 4.7707 187.10282 626.13556 593.34692 -4.28965 0.00588 -2.22748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28311 0.20086 -1.00000 - 5283 2017 8 21 7 6 0 752 4.7707 187.10435 626.09690 593.31351 -4.28889 0.00586 -2.22720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28276 0.20086 -1.00000 - 5284 2017 8 21 7 6 5 522 4.7707 187.10588 626.05824 593.28011 -4.28802 0.00582 -2.22695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28242 0.20086 -1.00000 - 5285 2017 8 21 7 6 10 293 4.7707 187.10743 626.01958 593.24671 -4.28707 0.00578 -2.22675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28207 0.20086 -1.00000 - 5286 2017 8 21 7 6 15 64 4.7708 187.10898 625.98089 593.21329 -4.28601 0.00575 -2.22644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28172 0.20086 -1.00000 - 5287 2017 8 21 7 6 19 835 4.7708 187.11053 625.94216 593.17988 -4.28488 0.00576 -2.22604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28137 0.20086 -1.00000 - 5288 2017 8 21 7 6 24 605 4.7708 187.11207 625.90343 593.14646 -4.28367 0.00579 -2.22566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28103 0.20086 -1.00000 - 5289 2017 8 21 7 6 29 376 4.7708 187.11361 625.86471 593.11305 -4.28240 0.00582 -2.22535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28068 0.20086 -1.00000 - 5290 2017 8 21 7 6 34 147 4.7708 187.11514 625.82599 593.07965 -4.28107 0.00583 -2.22507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28033 0.20086 -1.00000 - 5291 2017 8 21 7 6 38 918 4.7708 187.11668 625.78724 593.04624 -4.27969 0.00581 -2.22477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27999 0.20086 -1.00000 - 5292 2017 8 21 7 6 43 689 4.7708 187.11822 625.74848 593.01283 -4.27828 0.00576 -2.22436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27964 0.20086 -1.00000 - 5293 2017 8 21 7 6 48 459 4.7708 187.11976 625.70969 592.97942 -4.27683 0.00571 -2.22392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27929 0.20086 -1.00000 - 5294 2017 8 21 7 6 53 230 4.7708 187.12132 625.67092 592.94602 -4.27537 0.00566 -2.22355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27895 0.20086 -1.00000 - 5295 2017 8 21 7 6 58 1 4.7709 187.12288 625.63217 592.91264 -4.27390 0.00563 -2.22321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27860 0.20086 -1.00000 - 5296 2017 8 21 7 7 2 772 4.7709 187.12443 625.59342 592.87927 -4.27243 0.00563 -2.22293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27825 0.20086 -1.00000 - 5297 2017 8 21 7 7 7 543 4.7709 187.12599 625.55467 592.84589 -4.27097 0.00564 -2.22256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27791 0.20086 -1.00000 - 5298 2017 8 21 7 7 12 314 4.7709 187.12753 625.51590 592.81253 -4.26953 0.00565 -2.22210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27756 0.20086 -1.00000 - 5299 2017 8 21 7 7 17 85 4.7709 187.12908 625.47715 592.77918 -4.26811 0.00563 -2.22166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27721 0.20086 -1.00000 - 5300 2017 8 21 7 7 21 855 4.7709 187.13063 625.43844 592.74585 -4.26671 0.00559 -2.22131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27686 0.20086 -1.00000 - 5301 2017 8 21 7 7 26 626 4.7709 187.13218 625.39976 592.71254 -4.26536 0.00553 -2.22098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27652 0.20086 -1.00000 - 5302 2017 8 21 7 7 31 397 4.7709 187.13374 625.36109 592.67924 -4.26403 0.00547 -2.22065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27617 0.20086 -1.00000 - 5303 2017 8 21 7 7 36 168 4.7709 187.13531 625.32244 592.64595 -4.26274 0.00543 -2.22020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27582 0.20086 -1.00000 - 5304 2017 8 21 7 7 40 939 4.7709 187.13688 625.28380 592.61268 -4.26149 0.00541 -2.21974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27548 0.20086 -1.00000 - 5305 2017 8 21 7 7 45 710 4.7710 187.13844 625.24521 592.57944 -4.26027 0.00540 -2.21934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27513 0.20086 -1.00000 - 5306 2017 8 21 7 7 50 481 4.7710 187.14000 625.20667 592.54622 -4.25909 0.00539 -2.21897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27478 0.20086 -1.00000 - 5307 2017 8 21 7 7 55 252 4.7710 187.14156 625.16818 592.51301 -4.25794 0.00538 -2.21866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27444 0.20085 -1.00000 - 5308 2017 8 21 7 8 0 23 4.7710 187.14312 625.12970 592.47982 -4.25681 0.00535 -2.21827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27409 0.20085 -1.00000 - 5309 2017 8 21 7 8 4 794 4.7710 187.14468 625.09125 592.44665 -4.25570 0.00530 -2.21778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27374 0.20085 -1.00000 - 5310 2017 8 21 7 8 9 565 4.7710 187.14625 625.05284 592.41349 -4.25460 0.00524 -2.21731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27339 0.20085 -1.00000 - 5311 2017 8 21 7 8 14 336 4.7710 187.14782 625.01449 592.38036 -4.25352 0.00519 -2.21693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27305 0.20085 -1.00000 - 5312 2017 8 21 7 8 19 107 4.7710 187.14940 624.97618 592.34725 -4.25243 0.00517 -2.21656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27270 0.20085 -1.00000 - 5313 2017 8 21 7 8 23 878 4.7710 187.15097 624.93790 592.31415 -4.25133 0.00517 -2.21618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27235 0.20085 -1.00000 - 5314 2017 8 21 7 8 28 649 4.7710 187.15254 624.89963 592.28105 -4.25022 0.00518 -2.21569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27201 0.20085 -1.00000 - 5315 2017 8 21 7 8 33 420 4.7711 187.15411 624.86138 592.24797 -4.24909 0.00519 -2.21518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27166 0.20085 -1.00000 - 5316 2017 8 21 7 8 38 191 4.7711 187.15567 624.82318 592.21490 -4.24794 0.00517 -2.21474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27131 0.20085 -1.00000 - 5317 2017 8 21 7 8 42 962 4.7711 187.15724 624.78501 592.18185 -4.24676 0.00513 -2.21431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27097 0.20085 -1.00000 - 5318 2017 8 21 7 8 47 733 4.7711 187.15881 624.74687 592.14881 -4.24555 0.00507 -2.21394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27062 0.20085 -1.00000 - 5319 2017 8 21 7 8 52 505 4.7711 187.16039 624.70873 592.11576 -4.24430 0.00501 -2.21349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27027 0.20085 -1.00000 - 5320 2017 8 21 7 8 57 276 4.7711 187.16197 624.67058 592.08271 -4.24302 0.00497 -2.21295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26993 0.20085 -1.00000 - 5321 2017 8 21 7 9 2 47 4.7711 187.16355 624.63245 592.04967 -4.24169 0.00496 -2.21242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26958 0.20085 -1.00000 - 5322 2017 8 21 7 9 6 818 4.7711 187.16513 624.59433 592.01664 -4.24034 0.00498 -2.21199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26923 0.20085 -1.00000 - 5323 2017 8 21 7 9 11 589 4.7711 187.16671 624.55622 591.98360 -4.23895 0.00502 -2.21156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26888 0.20085 -1.00000 - 5324 2017 8 21 7 9 16 360 4.7711 187.16828 624.51810 591.95056 -4.23753 0.00505 -2.21114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26854 0.20085 -1.00000 - 5325 2017 8 21 7 9 21 131 4.7712 187.16984 624.47996 591.91752 -4.23608 0.00504 -2.21062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26819 0.20085 -1.00000 - 5326 2017 8 21 7 9 25 903 4.7712 187.17141 624.44180 591.88447 -4.23462 0.00500 -2.21008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26784 0.20085 -1.00000 - 5327 2017 8 21 7 9 30 674 4.7712 187.17298 624.40365 591.85143 -4.23316 0.00493 -2.20960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26750 0.20085 -1.00000 - 5328 2017 8 21 7 9 35 445 4.7712 187.17456 624.36550 591.81839 -4.23170 0.00486 -2.20916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26715 0.20085 -1.00000 - 5329 2017 8 21 7 9 40 216 4.7712 187.17615 624.32735 591.78535 -4.23026 0.00481 -2.20878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26680 0.20085 -1.00000 - 5330 2017 8 21 7 9 44 987 4.7712 187.17774 624.28918 591.75231 -4.22885 0.00479 -2.20834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26646 0.20085 -1.00000 - 5331 2017 8 21 7 9 49 758 4.7712 187.17932 624.25100 591.71926 -4.22749 0.00481 -2.20781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26611 0.20085 -1.00000 - 5332 2017 8 21 7 9 54 530 4.7712 187.18090 624.21281 591.68622 -4.22618 0.00485 -2.20731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26576 0.20085 -1.00000 - 5333 2017 8 21 7 9 59 301 4.7712 187.18247 624.17464 591.65318 -4.22497 0.00489 -2.20691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26541 0.20085 -1.00000 - 5334 2017 8 21 7 10 4 72 4.7712 187.18403 624.13649 591.62015 -4.22385 0.00489 -2.20654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26507 0.20085 -1.00000 - 5335 2017 8 21 7 10 8 843 4.7713 187.18560 624.09834 591.58713 -4.22284 0.00485 -2.20618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26472 0.20085 -1.00000 - 5336 2017 8 21 7 10 13 615 4.7713 187.18717 624.06018 591.55410 -4.22198 0.00478 -2.20573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26437 0.20084 -1.00000 - 5337 2017 8 21 7 10 18 386 4.7713 187.18875 624.02202 591.52108 -4.22127 0.00470 -2.20527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26403 0.20084 -1.00000 - 5338 2017 8 21 7 10 23 157 4.7713 187.19035 623.98390 591.48807 -4.22074 0.00463 -2.20489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26368 0.20084 -1.00000 - 5339 2017 8 21 7 10 27 929 4.7713 187.19195 623.94581 591.45508 -4.22040 0.00458 -2.20455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26333 0.20084 -1.00000 - 5340 2017 8 21 7 10 32 700 4.7713 187.19354 623.90775 591.42208 -4.22026 0.00458 -2.20428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26299 0.20084 -1.00000 - 5341 2017 8 21 7 10 37 471 4.7713 187.19515 623.86969 591.38909 -4.22035 0.00462 -2.20396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26264 0.20084 -1.00000 - 5342 2017 8 21 7 10 42 243 4.7713 187.19675 623.83164 591.35610 -4.22066 0.00468 -2.20355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26229 0.20084 -1.00000 - 5343 2017 8 21 7 10 47 14 4.7713 187.19833 623.79361 591.32311 -4.22120 0.00471 -2.20319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26194 0.20084 -1.00000 - 5344 2017 8 21 7 10 51 785 4.7713 187.19991 623.75563 591.29014 -4.22197 0.00470 -2.20292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26160 0.20084 -1.00000 - 5345 2017 8 21 7 10 56 557 4.7714 187.20148 623.71766 591.25716 -4.22298 0.00465 -2.20269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26125 0.20084 -1.00000 - 5346 2017 8 21 7 11 1 328 4.7714 187.20306 623.67970 591.22417 -4.22421 0.00459 -2.20246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26090 0.20084 -1.00000 - 5347 2017 8 21 7 11 6 99 4.7714 187.20465 623.64172 591.19118 -4.22566 0.00454 -2.20215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26056 0.20084 -1.00000 - 5348 2017 8 21 7 11 10 871 4.7714 187.20624 623.60374 591.15817 -4.22730 0.00449 -2.20183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26021 0.20084 -1.00000 - 5349 2017 8 21 7 11 15 642 4.7714 187.20781 623.56577 591.12516 -4.22912 0.00448 -2.20157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25986 0.20084 -1.00000 - 5350 2017 8 21 7 11 20 414 4.7714 187.20937 623.52780 591.09214 -4.23108 0.00450 -2.20135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25952 0.20084 -1.00000 - 5351 2017 8 21 7 11 25 185 4.7714 187.21092 623.48981 591.05911 -4.23315 0.00451 -2.20120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25917 0.20084 -1.00000 - 5352 2017 8 21 7 11 29 956 4.7714 187.21247 623.45178 591.02605 -4.23529 0.00450 -2.20098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25882 0.20084 -1.00000 - 5353 2017 8 21 7 11 34 728 4.7715 187.21399 623.41369 590.99296 -4.23745 0.00444 -2.20068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25847 0.20084 -1.00000 - 5354 2017 8 21 7 11 39 499 4.7715 187.21549 623.37556 590.95985 -4.23959 0.00435 -2.20041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25813 0.20084 -1.00000 - 5355 2017 8 21 7 11 44 271 4.7715 187.21700 623.33739 590.92672 -4.24167 0.00424 -2.20022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25778 0.20084 -1.00000 - 5356 2017 8 21 7 11 49 42 4.7715 187.21851 623.29917 590.89357 -4.24365 0.00414 -2.20005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25743 0.20084 -1.00000 - 5357 2017 8 21 7 11 53 814 4.7715 187.22001 623.26088 590.86039 -4.24547 0.00404 -2.19989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25709 0.20084 -1.00000 - 5358 2017 8 21 7 11 58 585 4.7715 187.22150 623.22250 590.82718 -4.24710 0.00399 -2.19963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25674 0.20084 -1.00000 - 5359 2017 8 21 7 12 3 357 4.7715 187.22297 623.18405 590.79394 -4.24849 0.00398 -2.19934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25639 0.20084 -1.00000 - 5360 2017 8 21 7 12 8 128 4.7715 187.22445 623.14553 590.76068 -4.24958 0.00399 -2.19912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25605 0.20084 -1.00000 - 5361 2017 8 21 7 12 12 900 4.7716 187.22592 623.10695 590.72740 -4.25035 0.00400 -2.19892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25570 0.20084 -1.00000 - 5362 2017 8 21 7 12 17 672 4.7716 187.22739 623.06830 590.69410 -4.25073 0.00395 -2.19878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25535 0.20084 -1.00000 - 5363 2017 8 21 7 12 22 443 4.7716 187.22884 623.02958 590.66079 -4.25070 0.00386 -2.19858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25500 0.20084 -1.00000 - 5364 2017 8 21 7 12 27 215 4.7716 187.23031 622.99077 590.62745 -4.25022 0.00375 -2.19829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25466 0.20083 -1.00000 - 5365 2017 8 21 7 12 31 986 4.7716 187.23179 622.95190 590.59411 -4.24927 0.00364 -2.19801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25431 0.20083 -1.00000 - 5366 2017 8 21 7 12 36 758 4.7716 187.23328 622.91301 590.56077 -4.24784 0.00354 -2.19782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25396 0.20083 -1.00000 - 5367 2017 8 21 7 12 41 530 4.7716 187.23477 622.87408 590.52744 -4.24591 0.00348 -2.19766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25362 0.20083 -1.00000 - 5368 2017 8 21 7 12 46 301 4.7717 187.23625 622.83511 590.49410 -4.24350 0.00345 -2.19750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25327 0.20083 -1.00000 - 5369 2017 8 21 7 12 51 73 4.7717 187.23772 622.79610 590.46077 -4.24062 0.00347 -2.19725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25292 0.20083 -1.00000 - 5370 2017 8 21 7 12 55 845 4.7717 187.23918 622.75707 590.42746 -4.23729 0.00351 -2.19697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25258 0.20083 -1.00000 - 5371 2017 8 21 7 13 0 616 4.7717 187.24065 622.71806 590.39417 -4.23354 0.00354 -2.19676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25223 0.20083 -1.00000 - 5372 2017 8 21 7 13 5 388 4.7717 187.24211 622.67907 590.36091 -4.22943 0.00353 -2.19658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25188 0.20083 -1.00000 - 5373 2017 8 21 7 13 10 160 4.7717 187.24358 622.64011 590.32769 -4.22500 0.00348 -2.19649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25153 0.20083 -1.00000 - 5374 2017 8 21 7 13 14 932 4.7717 187.24504 622.60118 590.29449 -4.22031 0.00341 -2.19634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25119 0.20083 -1.00000 - 5375 2017 8 21 7 13 19 703 4.7718 187.24651 622.56227 590.26132 -4.21546 0.00336 -2.19611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25084 0.20083 -1.00000 - 5376 2017 8 21 7 13 24 475 4.7718 187.24799 622.52343 590.22821 -4.21050 0.00336 -2.19593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25049 0.20083 -1.00000 - 5377 2017 8 21 7 13 29 247 4.7718 187.24946 622.48467 590.19514 -4.20554 0.00341 -2.19584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25015 0.20083 -1.00000 - 5378 2017 8 21 7 13 34 19 4.7718 187.25093 622.44601 590.16213 -4.20063 0.00349 -2.19580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24980 0.20083 -1.00000 - 5379 2017 8 21 7 13 38 790 4.7718 187.25239 622.40742 590.12916 -4.19587 0.00356 -2.19579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24945 0.20083 -1.00000 - 5380 2017 8 21 7 13 43 562 4.7718 187.25384 622.36891 590.09623 -4.19132 0.00362 -2.19570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24911 0.20083 -1.00000 - 5381 2017 8 21 7 13 48 334 4.7718 187.25529 622.33050 590.06336 -4.18704 0.00365 -2.19561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24876 0.20083 -1.00000 - 5382 2017 8 21 7 13 53 106 4.7719 187.25675 622.29220 590.03055 -4.18310 0.00365 -2.19561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24841 0.20083 -1.00000 - 5383 2017 8 21 7 13 57 878 4.7719 187.25820 622.25403 589.99780 -4.17953 0.00362 -2.19566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24806 0.20083 -1.00000 - 5384 2017 8 21 7 14 2 650 4.7719 187.25966 622.21599 589.96510 -4.17638 0.00360 -2.19580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24772 0.20083 -1.00000 - 5385 2017 8 21 7 14 7 422 4.7719 187.26111 622.17804 589.93245 -4.17368 0.00361 -2.19591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24737 0.20083 -1.00000 - 5386 2017 8 21 7 14 12 194 4.7719 187.26257 622.14019 589.89985 -4.17143 0.00364 -2.19595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24702 0.20083 -1.00000 - 5387 2017 8 21 7 14 16 965 4.7719 187.26402 622.10246 589.86729 -4.16965 0.00369 -2.19604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24668 0.20083 -1.00000 - 5388 2017 8 21 7 14 21 737 4.7719 187.26548 622.06485 589.83479 -4.16835 0.00375 -2.19623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24633 0.20083 -1.00000 - 5389 2017 8 21 7 14 26 509 4.7720 187.26692 622.02736 589.80233 -4.16749 0.00379 -2.19646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24598 0.20083 -1.00000 - 5390 2017 8 21 7 14 31 281 4.7720 187.26836 621.98996 589.76990 -4.16703 0.00379 -2.19672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24564 0.20083 -1.00000 - 5391 2017 8 21 7 14 36 53 4.7720 187.26979 621.95264 589.73750 -4.16691 0.00377 -2.19690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24529 0.20083 -1.00000 - 5392 2017 8 21 7 14 40 825 4.7720 187.27124 621.91540 589.70513 -4.16705 0.00373 -2.19705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24494 0.20083 -1.00000 - 5393 2017 8 21 7 14 45 597 4.7720 187.27268 621.87825 589.67279 -4.16740 0.00368 -2.19728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24459 0.20082 -1.00000 - 5394 2017 8 21 7 14 50 369 4.7720 187.27413 621.84118 589.64049 -4.16787 0.00364 -2.19753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24425 0.20082 -1.00000 - 5395 2017 8 21 7 14 55 141 4.7720 187.27557 621.80419 589.60819 -4.16839 0.00362 -2.19785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24390 0.20082 -1.00000 - 5396 2017 8 21 7 14 59 913 4.7721 187.27702 621.76723 589.57591 -4.16890 0.00361 -2.19812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24355 0.20082 -1.00000 - 5397 2017 8 21 7 15 4 686 4.7721 187.27846 621.73030 589.54363 -4.16932 0.00362 -2.19830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24321 0.20082 -1.00000 - 5398 2017 8 21 7 15 9 458 4.7721 187.27991 621.69340 589.51136 -4.16961 0.00361 -2.19849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24286 0.20082 -1.00000 - 5399 2017 8 21 7 15 14 230 4.7721 187.28134 621.65654 589.47910 -4.16974 0.00359 -2.19876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24251 0.20082 -1.00000 - 5400 2017 8 21 7 15 19 2 4.7721 187.28278 621.61970 589.44683 -4.16969 0.00355 -2.19906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24217 0.20082 -1.00000 - 5401 2017 8 21 7 15 23 774 4.7721 187.28421 621.58287 589.41456 -4.16948 0.00350 -2.19938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24182 0.20082 -1.00000 - 5402 2017 8 21 7 15 28 546 4.7722 187.28565 621.54601 589.38226 -4.16911 0.00345 -2.19959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24147 0.20082 -1.00000 - 5403 2017 8 21 7 15 33 318 4.7722 187.28709 621.50914 589.34996 -4.16862 0.00339 -2.19978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24112 0.20082 -1.00000 - 5404 2017 8 21 7 15 38 91 4.7722 187.28853 621.47226 589.31765 -4.16802 0.00334 -2.20003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24078 0.20082 -1.00000 - 5405 2017 8 21 7 15 42 863 4.7722 187.28997 621.43537 589.28532 -4.16737 0.00329 -2.20030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24043 0.20082 -1.00000 - 5406 2017 8 21 7 15 47 635 4.7722 187.29141 621.39846 589.25298 -4.16673 0.00325 -2.20066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24008 0.20082 -1.00000 - 5407 2017 8 21 7 15 52 407 4.7722 187.29285 621.36150 589.22060 -4.16618 0.00322 -2.20097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23974 0.20082 -1.00000 - 5408 2017 8 21 7 15 57 179 4.7722 187.29429 621.32448 589.18820 -4.16581 0.00319 -2.20121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23939 0.20082 -1.00000 - 5409 2017 8 21 7 16 1 952 4.7723 187.29572 621.28742 589.15578 -4.16572 0.00316 -2.20148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23904 0.20082 -1.00000 - 5410 2017 8 21 7 16 6 724 4.7723 187.29716 621.25033 589.12334 -4.16602 0.00313 -2.20185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23869 0.20082 -1.00000 - 5411 2017 8 21 7 16 11 496 4.7723 187.29859 621.21319 589.09087 -4.16682 0.00310 -2.20227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23835 0.20082 -1.00000 - 5412 2017 8 21 7 16 16 269 4.7723 187.30002 621.17600 589.05837 -4.16822 0.00306 -2.20273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23800 0.20082 -1.00000 - 5413 2017 8 21 7 16 21 41 4.7723 187.30145 621.13873 589.02583 -4.17032 0.00303 -2.20313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23765 0.20082 -1.00000 - 5414 2017 8 21 7 16 25 813 4.7723 187.30289 621.10138 588.99327 -4.17501 0.00300 -2.20352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23731 0.20082 -1.00000 - 5415 2017 8 21 7 16 30 586 4.7724 187.30431 621.06398 588.96067 -4.18102 0.00298 -2.20401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23696 0.20082 -1.00000 - 5416 2017 8 21 7 16 35 358 4.7724 187.30573 621.02652 588.92806 -4.18764 0.00296 -2.20455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23661 0.20082 -1.00000 - 5417 2017 8 21 7 16 40 130 4.7724 187.30714 620.98899 588.89541 -4.19477 0.00294 -2.20520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23627 0.20082 -1.00000 - 5418 2017 8 21 7 16 44 903 4.7724 187.30853 620.95137 588.86272 -4.20244 0.00292 -2.20583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23592 0.20082 -1.00000 - 5419 2017 8 21 7 16 49 675 4.7724 187.30991 620.91366 588.83001 -4.21061 0.00290 -2.20640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23557 0.20082 -1.00000 - 5420 2017 8 21 7 16 54 448 4.7724 187.31127 620.87587 588.79727 -4.21927 0.00286 -2.20701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23522 0.20082 -1.00000 - 5421 2017 8 21 7 16 59 220 4.7725 187.31262 620.83802 588.76451 -4.22837 0.00280 -2.20771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23488 0.20081 -1.00000 - 5422 2017 8 21 7 17 3 993 4.7725 187.31397 620.80010 588.73174 -4.23785 0.00271 -2.20845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23453 0.20081 -1.00000 - 5423 2017 8 21 7 17 8 765 4.7725 187.31532 620.76211 588.69895 -4.24760 0.00261 -2.20921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23418 0.20081 -1.00000 - 5424 2017 8 21 7 17 13 538 4.7725 187.31666 620.72403 588.66614 -4.25752 0.00252 -2.20985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23384 0.20081 -1.00000 - 5425 2017 8 21 7 17 18 310 4.7725 187.31799 620.68589 588.63332 -4.26753 0.00244 -2.21044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23349 0.20081 -1.00000 - 5426 2017 8 21 7 17 23 83 4.7726 187.31932 620.64771 588.60051 -4.28013 0.00239 -2.21106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23314 0.20081 -1.00000 - 5427 2017 8 21 7 17 27 855 4.7726 187.32065 620.60950 588.56771 -4.29339 0.00235 -2.21165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23279 0.20081 -1.00000 - 5428 2017 8 21 7 17 32 628 4.7726 187.32197 620.57128 588.53492 -4.30655 0.00232 -2.21226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23245 0.20081 -1.00000 - 5429 2017 8 21 7 17 37 400 4.7726 187.32329 620.53303 588.50215 -4.31936 0.00229 -2.21274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23210 0.20081 -1.00000 - 5430 2017 8 21 7 17 42 173 4.7726 187.32461 620.49477 588.46941 -4.33161 0.00227 -2.21305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23175 0.20081 -1.00000 - 5431 2017 8 21 7 17 46 946 4.7726 187.32593 620.45653 588.43670 -4.34308 0.00224 -2.21328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23141 0.20081 -1.00000 - 5432 2017 8 21 7 17 51 718 4.7727 187.32724 620.41835 588.40404 -4.35357 0.00222 -2.21348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23106 0.20081 -1.00000 - 5433 2017 8 21 7 17 56 491 4.7727 187.32856 620.38025 588.37143 -4.36290 0.00219 -2.21361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23071 0.20081 -1.00000 - 5434 2017 8 21 7 18 1 264 4.7727 187.32987 620.34221 588.33888 -4.37094 0.00217 -2.21364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23037 0.20081 -1.00000 - 5435 2017 8 21 7 18 6 36 4.7727 187.33118 620.30426 588.30638 -4.37755 0.00217 -2.21344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23002 0.20081 -1.00000 - 5436 2017 8 21 7 18 10 809 4.7727 187.33249 620.26641 588.27394 -4.38269 0.00217 -2.21307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22967 0.20081 -1.00000 - 5437 2017 8 21 7 18 15 582 4.7727 187.33379 620.22870 588.24158 -4.38637 0.00219 -2.21261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22932 0.20081 -1.00000 - 5438 2017 8 21 7 18 20 355 4.7728 187.33509 620.19114 588.20929 -4.39241 0.00219 -2.21203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22898 0.20081 -1.00000 - 5439 2017 8 21 7 18 25 127 4.7728 187.33639 620.15374 588.17708 -4.40050 0.00219 -2.21137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22863 0.20081 -1.00000 - 5440 2017 8 21 7 18 29 900 4.7728 187.33769 620.11648 588.14492 -4.40619 0.00218 -2.21048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22828 0.20081 -1.00000 - 5441 2017 8 21 7 18 34 673 4.7728 187.33899 620.07936 588.11283 -4.40911 0.00217 -2.20934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22794 0.20081 -1.00000 - 5442 2017 8 21 7 18 39 446 4.7728 187.34028 620.04240 588.08080 -4.40894 0.00216 -2.20803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22759 0.20081 -1.00000 - 5443 2017 8 21 7 18 44 219 4.7728 187.34158 620.00562 588.04883 -4.40567 0.00215 -2.20662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22724 0.20081 -1.00000 - 5444 2017 8 21 7 18 48 992 4.7729 187.34287 619.96899 588.01691 -4.39940 0.00214 -2.20508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22689 0.20081 -1.00000 - 5445 2017 8 21 7 18 53 764 4.7729 187.34416 619.93250 587.98502 -4.39031 0.00214 -2.20340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22655 0.20081 -1.00000 - 5446 2017 8 21 7 18 58 537 4.7729 187.34544 619.89610 587.95315 -4.37863 0.00214 -2.20147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22620 0.20081 -1.00000 - 5447 2017 8 21 7 19 3 310 4.7729 187.34673 619.85979 587.92130 -4.36464 0.00214 -2.19936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22585 0.20081 -1.00000 - 5448 2017 8 21 7 19 8 83 4.7729 187.34801 619.82357 587.88946 -4.34857 0.00213 -2.19718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22551 0.20081 -1.00000 - 5449 2017 8 21 7 19 12 856 4.7730 187.34929 619.78743 587.85761 -4.33067 0.00211 -2.19492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22516 0.20081 -1.00000 - 5450 2017 8 21 7 19 17 629 4.7730 187.35057 619.75132 587.82575 -4.31121 0.00208 -2.19263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22481 0.20080 -1.00000 - 5451 2017 8 21 7 19 22 402 4.7730 187.35185 619.71521 587.79385 -4.29045 0.00205 -2.19022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22446 0.20080 -1.00000 - 5452 2017 8 21 7 19 27 175 4.7730 187.35313 619.67905 587.76190 -4.26863 0.00202 -2.18767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22412 0.20080 -1.00000 - 5453 2017 8 21 7 19 31 948 4.7730 187.35440 619.64284 587.72990 -4.24600 0.00200 -2.18509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22377 0.20080 -1.00000 - 5454 2017 8 21 7 19 36 721 4.7730 187.35568 619.60657 587.69784 -4.22280 0.00198 -2.18255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22342 0.20080 -1.00000 - 5455 2017 8 21 7 19 41 494 4.7731 187.35695 619.57020 587.66570 -4.19925 0.00195 -2.18005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22308 0.20080 -1.00000 - 5456 2017 8 21 7 19 46 267 4.7731 187.35822 619.53370 587.63348 -4.17557 0.00193 -2.17760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22273 0.20080 -1.00000 - 5457 2017 8 21 7 19 51 40 4.7731 187.35949 619.49703 587.60117 -4.15200 0.00190 -2.17508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22238 0.20080 -1.00000 - 5458 2017 8 21 7 19 55 814 4.7731 187.36075 619.46017 587.56876 -4.13095 0.00186 -2.17258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22203 0.20080 -1.00000 - 5459 2017 8 21 7 20 0 587 4.7731 187.36202 619.42313 587.53626 -4.11621 0.00182 -2.17021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22169 0.20080 -1.00000 - 5460 2017 8 21 7 20 5 360 4.7732 187.36328 619.38589 587.50366 -4.10219 0.00178 -2.16794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22134 0.20080 -1.00000 - 5461 2017 8 21 7 20 10 133 4.7732 187.36454 619.34846 587.47096 -4.08898 0.00173 -2.16586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22099 0.20080 -1.00000 - 5462 2017 8 21 7 20 14 906 4.7732 187.36581 619.31078 587.43817 -4.07665 0.00169 -2.16385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22065 0.20080 -1.00000 - 5463 2017 8 21 7 20 19 680 4.7732 187.36707 619.27287 587.40527 -4.06520 0.00166 -2.16189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22030 0.20080 -1.00000 - 5464 2017 8 21 7 20 24 453 4.7732 187.36832 619.23474 587.37229 -4.05460 0.00163 -2.16009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21995 0.20080 -1.00000 - 5465 2017 8 21 7 20 29 226 4.7733 187.36958 619.19641 587.33923 -4.04482 0.00160 -2.15851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21961 0.20080 -1.00000 - 5466 2017 8 21 7 20 33 999 4.7733 187.37083 619.15788 587.30611 -4.03590 0.00157 -2.15715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21926 0.20080 -1.00000 - 5467 2017 8 21 7 20 38 773 4.7733 187.37209 619.11916 587.27291 -4.02796 0.00153 -2.15600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21891 0.20080 -1.00000 - 5468 2017 8 21 7 20 43 546 4.7733 187.37334 619.08025 587.23966 -4.02111 0.00149 -2.15494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21856 0.20080 -1.00000 - 5469 2017 8 21 7 20 48 319 4.7733 187.37459 619.04117 587.20636 -4.01547 0.00145 -2.15403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21822 0.20080 -1.00000 - 5470 2017 8 21 7 20 53 93 4.7734 187.37584 619.00198 587.17303 -4.01115 0.00141 -2.15336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21787 0.20080 -1.00000 - 5471 2017 8 21 7 20 57 866 4.7734 187.37709 618.96268 587.13970 -4.00821 0.00137 -2.15292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21752 0.20080 -1.00000 - 5472 2017 8 21 7 21 2 639 4.7734 187.37833 618.92332 587.10636 -4.00675 0.00134 -2.15274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21718 0.20080 -1.00000 - 5473 2017 8 21 7 21 7 413 4.7734 187.37958 618.88388 587.07302 -4.00683 0.00132 -2.15272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21683 0.20080 -1.00000 - 5474 2017 8 21 7 21 12 186 4.7734 187.38082 618.84440 587.03969 -4.00847 0.00130 -2.15280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21648 0.20080 -1.00000 - 5475 2017 8 21 7 21 16 960 4.7734 187.38206 618.80491 587.00639 -4.01168 0.00128 -2.15307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21613 0.20080 -1.00000 - 5476 2017 8 21 7 21 21 733 4.7735 187.38330 618.76547 586.97315 -4.01645 0.00125 -2.15358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21579 0.20080 -1.00000 - 5477 2017 8 21 7 21 26 507 4.7735 187.38454 618.72608 586.93995 -4.02271 0.00121 -2.15430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21544 0.20080 -1.00000 - 5478 2017 8 21 7 21 31 280 4.7735 187.38577 618.68675 586.90681 -4.03041 0.00118 -2.15521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21509 0.20079 -1.00000 - 5479 2017 8 21 7 21 36 54 4.7735 187.38701 618.64750 586.87372 -4.03945 0.00115 -2.15616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21475 0.20079 -1.00000 - 5480 2017 8 21 7 21 40 827 4.7735 187.38824 618.60833 586.84071 -4.04971 0.00113 -2.15720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21440 0.20079 -1.00000 - 5481 2017 8 21 7 21 45 601 4.7736 187.38947 618.56931 586.80778 -4.06103 0.00111 -2.15842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21405 0.20079 -1.00000 - 5482 2017 8 21 7 21 50 374 4.7736 187.39070 618.53043 586.77494 -4.07318 0.00110 -2.15976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21370 0.20079 -1.00000 - 5483 2017 8 21 7 21 55 148 4.7736 187.39193 618.49171 586.74219 -4.08598 0.00109 -2.16126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21336 0.20079 -1.00000 - 5484 2017 8 21 7 21 59 922 4.7736 187.39315 618.45314 586.70952 -4.09921 0.00107 -2.16279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21301 0.20079 -1.00000 - 5485 2017 8 21 7 22 4 695 4.7736 187.39438 618.41472 586.67693 -4.11269 0.00105 -2.16429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21266 0.20079 -1.00000 - 5486 2017 8 21 7 22 9 469 4.7737 187.39560 618.37647 586.64445 -4.12783 0.00102 -2.16582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21232 0.20079 -1.00000 - 5487 2017 8 21 7 22 14 242 4.7737 187.39682 618.33841 586.61206 -4.14575 0.00099 -2.16741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21197 0.20079 -1.00000 - 5488 2017 8 21 7 22 19 16 4.7737 187.39804 618.30055 586.57977 -4.16338 0.00097 -2.16903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21162 0.20079 -1.00000 - 5489 2017 8 21 7 22 23 790 4.7737 187.39926 618.26286 586.54757 -4.18042 0.00095 -2.17066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21127 0.20079 -1.00000 - 5490 2017 8 21 7 22 28 564 4.7737 187.40048 618.22534 586.51545 -4.19655 0.00094 -2.17214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21093 0.20079 -1.00000 - 5491 2017 8 21 7 22 33 337 4.7738 187.40169 618.18799 586.48343 -4.21149 0.00093 -2.17352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21058 0.20079 -1.00000 - 5492 2017 8 21 7 22 38 111 4.7738 187.40290 618.15084 586.45150 -4.22498 0.00091 -2.17487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21023 0.20079 -1.00000 - 5493 2017 8 21 7 22 42 885 4.7738 187.40411 618.11389 586.41967 -4.23681 0.00089 -2.17615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20989 0.20079 -1.00000 - 5494 2017 8 21 7 22 47 659 4.7738 187.40532 618.07714 586.38792 -4.24675 0.00087 -2.17742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20954 0.20079 -1.00000 - 5495 2017 8 21 7 22 52 433 4.7738 187.40652 618.04055 586.35625 -4.25473 0.00084 -2.17853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20919 0.20079 -1.00000 - 5496 2017 8 21 7 22 57 207 4.7739 187.40773 618.00412 586.32466 -4.26682 0.00080 -2.17944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20884 0.20079 -1.00000 - 5497 2017 8 21 7 23 1 980 4.7739 187.40893 617.96787 586.29314 -4.28099 0.00078 -2.18023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20850 0.20079 -1.00000 - 5498 2017 8 21 7 23 6 754 4.7739 187.41014 617.93180 586.26170 -4.29248 0.00076 -2.18093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20815 0.20079 -1.00000 - 5499 2017 8 21 7 23 11 528 4.7739 187.41134 617.89591 586.23033 -4.30062 0.00074 -2.18151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20780 0.20079 -1.00000 - 5500 2017 8 21 7 23 16 302 4.7739 187.41253 617.86016 586.19901 -4.30504 0.00073 -2.18198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20745 0.20079 -1.00000 - 5501 2017 8 21 7 23 21 76 4.7740 187.41373 617.82454 586.16774 -4.30564 0.00071 -2.18220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20711 0.20079 -1.00000 - 5502 2017 8 21 7 23 25 850 4.7740 187.41492 617.78903 586.13650 -4.30241 0.00068 -2.18222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20676 0.20079 -1.00000 - 5503 2017 8 21 7 23 30 624 4.7740 187.41612 617.75365 586.10530 -4.29546 0.00065 -2.18217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20641 0.20079 -1.00000 - 5504 2017 8 21 7 23 35 398 4.7740 187.41731 617.71837 586.07412 -4.28500 0.00061 -2.18202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20607 0.20079 -1.00000 - 5505 2017 8 21 7 23 40 172 4.7740 187.41850 617.68317 586.04296 -4.27132 0.00058 -2.18185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20572 0.20079 -1.00000 - 5506 2017 8 21 7 23 44 946 4.7741 187.41969 617.64802 586.01180 -4.25471 0.00054 -2.18157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20537 0.20079 -1.00000 - 5507 2017 8 21 7 23 49 720 4.7741 187.42087 617.61289 585.98063 -4.23553 0.00052 -2.18115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20502 0.20078 -1.00000 - 5508 2017 8 21 7 23 54 494 4.7741 187.42206 617.57778 585.94944 -4.21418 0.00050 -2.18072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20468 0.20078 -1.00000 - 5509 2017 8 21 7 23 59 269 4.7741 187.42324 617.54269 585.91823 -4.19110 0.00048 -2.18034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20433 0.20078 -1.00000 - 5510 2017 8 21 7 24 4 43 4.7741 187.42442 617.50758 585.88699 -4.16672 0.00046 -2.18003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20398 0.20078 -1.00000 - 5511 2017 8 21 7 24 8 817 4.7742 187.42560 617.47244 585.85570 -4.14147 0.00043 -2.17981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20364 0.20078 -1.00000 - 5512 2017 8 21 7 24 13 591 4.7742 187.42678 617.43723 585.82437 -4.11582 0.00040 -2.17956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20329 0.20078 -1.00000 - 5513 2017 8 21 7 24 18 365 4.7742 187.42796 617.40192 585.79297 -4.09016 0.00036 -2.17936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20294 0.20078 -1.00000 - 5514 2017 8 21 7 24 23 140 4.7742 187.42913 617.36654 585.76152 -4.06490 0.00032 -2.17931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20259 0.20078 -1.00000 - 5515 2017 8 21 7 24 27 914 4.7743 187.43031 617.33105 585.73000 -4.05275 0.00029 -2.17939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20225 0.20078 -1.00000 - 5516 2017 8 21 7 24 32 688 4.7743 187.43148 617.29546 585.69842 -4.05072 0.00026 -2.17968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20190 0.20078 -1.00000 - 5517 2017 8 21 7 24 37 462 4.7743 187.43265 617.25973 585.66676 -4.05295 0.00024 -2.18008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20155 0.20078 -1.00000 - 5518 2017 8 21 7 24 42 237 4.7743 187.43382 617.22385 585.63503 -4.07042 0.00022 -2.18056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20121 0.20078 -1.00000 - 5519 2017 8 21 7 24 47 11 4.7743 187.43498 617.18781 585.60322 -4.08737 0.00020 -2.18122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20086 0.20078 -1.00000 - 5520 2017 8 21 7 24 51 785 4.7744 187.43615 617.15165 585.57135 -4.10352 0.00017 -2.18210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20051 0.20078 -1.00000 - 5521 2017 8 21 7 24 56 560 4.7744 187.43731 617.11535 585.53941 -4.11868 0.00013 -2.18318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20016 0.20078 -1.00000 - 5522 2017 8 21 7 25 1 334 4.7744 187.43847 617.07891 585.50741 -4.13277 0.00010 -2.18449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19982 0.20078 -1.00000 - 5523 2017 8 21 7 25 6 109 4.7744 187.43963 617.04231 585.47534 -4.14567 0.00006 -2.18585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19947 0.20078 -1.00000 - 5524 2017 8 21 7 25 10 883 4.7744 187.44079 617.00557 585.44322 -4.15724 0.00003 -2.18732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19912 0.20078 -1.00000 - 5525 2017 8 21 7 25 15 658 4.7745 187.44195 616.96871 585.41105 -4.16740 0.00001 -2.18898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19878 0.20078 -1.00000 - 5526 2017 8 21 7 25 20 432 4.7745 187.44311 616.93175 585.37885 -4.17800 0.00000 -2.19077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19843 0.20078 -1.00000 - 5527 2017 8 21 7 25 25 207 4.7745 187.44426 616.89470 585.34661 -4.19554 0.00000 -2.19274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19808 0.20078 -1.00000 - 5528 2017 8 21 7 25 29 981 4.7745 187.44541 616.85755 585.31435 -4.21164 0.00000 -2.19475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19773 0.20078 -1.00000 - 5529 2017 8 21 7 25 34 756 4.7746 187.44656 616.82030 585.28206 -4.22601 0.00000 -2.19673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19739 0.20078 -1.00000 - 5530 2017 8 21 7 25 39 530 4.7746 187.44771 616.78298 585.24975 -4.23998 0.00000 -2.19874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19704 0.20078 -1.00000 - 5531 2017 8 21 7 25 44 305 4.7746 187.44886 616.74563 585.21745 -4.26297 0.00000 -2.20079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19669 0.20078 -1.00000 - 5532 2017 8 21 7 25 49 79 4.7746 187.45000 616.70825 585.18515 -4.28588 0.00000 -2.20285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19634 0.20078 -1.00000 - 5533 2017 8 21 7 25 53 854 4.7746 187.45115 616.67085 585.15286 -4.30816 0.00000 -2.20488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19600 0.20078 -1.00000 - 5534 2017 8 21 7 25 58 629 4.7747 187.45229 616.63343 585.12058 -4.32952 0.00000 -2.20670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19565 0.20078 -1.00000 - 5535 2017 8 21 7 26 3 403 4.7747 187.45343 616.59599 585.08832 -4.36058 0.00000 -2.20833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19530 0.20077 -1.00000 - 5536 2017 8 21 7 26 8 178 4.7747 187.45457 616.55858 585.05608 -4.39437 0.00000 -2.20984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19496 0.20077 -1.00000 - 5537 2017 8 21 7 26 12 953 4.7747 187.45571 616.52121 585.02388 -4.42537 0.00000 -2.21117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19461 0.20077 -1.00000 - 5538 2017 8 21 7 26 17 728 4.7748 187.45684 616.48387 584.99171 -4.45307 0.00000 -2.21237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19426 0.20077 -1.00000 - 5539 2017 8 21 7 26 22 502 4.7748 187.45798 616.44657 584.95957 -4.47719 0.00000 -2.21331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19391 0.20077 -1.00000 - 5540 2017 8 21 7 26 27 277 4.7748 187.45911 616.40930 584.92746 -4.49760 0.00000 -2.21393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19357 0.20077 -1.00000 - 5541 2017 8 21 7 26 32 52 4.7748 187.46024 616.37208 584.89540 -4.51434 0.00000 -2.21429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19322 0.20077 -1.00000 - 5542 2017 8 21 7 26 36 827 4.7748 187.46137 616.33493 584.86337 -4.53458 0.00000 -2.21446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19287 0.20077 -1.00000 - 5543 2017 8 21 7 26 41 602 4.7749 187.46250 616.29783 584.83138 -4.56542 0.00000 -2.21440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19253 0.20077 -1.00000 - 5544 2017 8 21 7 26 46 377 4.7749 187.46362 616.26078 584.79942 -4.59173 0.00000 -2.21410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19218 0.20077 -1.00000 - 5545 2017 8 21 7 26 51 151 4.7749 187.46475 616.22376 584.76749 -4.61224 0.00000 -2.21340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19183 0.20077 -1.00000 - 5546 2017 8 21 7 26 55 926 4.7749 187.46587 616.18677 584.73558 -4.62657 0.00000 -2.21234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19148 0.20077 -1.00000 - 5547 2017 8 21 7 27 0 701 4.7749 187.46699 616.14983 584.70370 -4.63473 0.00000 -2.21103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19114 0.20077 -1.00000 - 5548 2017 8 21 7 27 5 476 4.7750 187.46811 616.11293 584.67184 -4.63685 0.00000 -2.20944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19079 0.20077 -1.00000 - 5549 2017 8 21 7 27 10 251 4.7750 187.46923 616.07606 584.64001 -4.63322 0.00000 -2.20765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19044 0.20077 -1.00000 - 5550 2017 8 21 7 27 15 26 4.7750 187.47034 616.03921 584.60818 -4.62425 0.00000 -2.20556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19009 0.20077 -1.00000 - 5551 2017 8 21 7 27 19 801 4.7750 187.47146 616.00235 584.57635 -4.61049 0.00000 -2.20312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18975 0.20077 -1.00000 - 5552 2017 8 21 7 27 24 576 4.7751 187.47257 615.96549 584.54454 -4.59249 0.00000 -2.20045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18940 0.20077 -1.00000 - 5553 2017 8 21 7 27 29 351 4.7751 187.47368 615.92866 584.51273 -4.57072 0.00000 -2.19762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18905 0.20077 -1.00000 - 5554 2017 8 21 7 27 34 127 4.7751 187.47479 615.89183 584.48093 -4.54563 0.00000 -2.19462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18871 0.20077 -1.00000 - 5555 2017 8 21 7 27 38 902 4.7751 187.47590 615.85501 584.44912 -4.51762 0.00000 -2.19150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18836 0.20077 -1.00000 - 5556 2017 8 21 7 27 43 677 4.7752 187.47700 615.81815 584.41730 -4.48707 0.00000 -2.18812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18801 0.20077 -1.00000 - 5557 2017 8 21 7 27 48 452 4.7752 187.47811 615.78128 584.38548 -4.45430 0.00000 -2.18455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18766 0.20077 -1.00000 - 5558 2017 8 21 7 27 53 227 4.7752 187.47921 615.74440 584.35365 -4.41962 0.00000 -2.18092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18732 0.20077 -1.00000 - 5559 2017 8 21 7 27 58 2 4.7752 187.48031 615.70751 584.32182 -4.38334 0.00000 -2.17722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18697 0.20077 -1.00000 - 5560 2017 8 21 7 28 2 778 4.7752 187.48141 615.67061 584.28998 -4.34577 0.00000 -2.17354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18662 0.20077 -1.00000 - 5561 2017 8 21 7 28 7 553 4.7753 187.48251 615.63368 584.25812 -4.30720 0.00000 -2.16981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18627 0.20077 -1.00000 - 5562 2017 8 21 7 28 12 328 4.7753 187.48361 615.59671 584.22624 -4.26790 0.00000 -2.16599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18593 0.20077 -1.00000 - 5563 2017 8 21 7 28 17 104 4.7753 187.48470 615.55971 584.19436 -4.22810 0.00000 -2.16220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18558 0.20077 -1.00000 - 5564 2017 8 21 7 28 21 879 4.7753 187.48579 615.52270 584.16246 -4.18802 0.00000 -2.15851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18523 0.20076 -1.00000 - 5565 2017 8 21 7 28 26 654 4.7754 187.48688 615.48567 584.13056 -4.14784 0.00000 -2.15494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18489 0.20076 -1.00000 - 5566 2017 8 21 7 28 31 430 4.7754 187.48797 615.44861 584.09864 -4.10770 0.00000 -2.15151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18454 0.20076 -1.00000 - 5567 2017 8 21 7 28 36 205 4.7754 187.48906 615.41151 584.06670 -4.06780 0.00000 -2.14811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18419 0.20076 -1.00000 - 5568 2017 8 21 7 28 40 981 4.7754 187.49015 615.37437 584.03475 -4.02834 0.00000 -2.14479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18384 0.20076 -1.00000 - 5569 2017 8 21 7 28 45 756 4.7755 187.49123 615.33722 584.00280 -3.98958 0.00000 -2.14168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18350 0.20076 -1.00000 - 5570 2017 8 21 7 28 50 531 4.7755 187.49232 615.30005 583.97083 -3.96198 0.00000 -2.13876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18315 0.20076 -1.00000 - 5571 2017 8 21 7 28 55 307 4.7755 187.49340 615.26288 583.93887 -3.93994 0.00000 -2.13611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18280 0.20076 -1.00000 - 5572 2017 8 21 7 29 0 82 4.7755 187.49448 615.22568 583.90689 -3.92011 0.00000 -2.13366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18245 0.20076 -1.00000 - 5573 2017 8 21 7 29 4 858 4.7755 187.49555 615.18846 583.87491 -3.90255 0.00000 -2.13136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18211 0.20076 -1.00000 - 5574 2017 8 21 7 29 9 634 4.7756 187.49663 615.15124 583.84292 -3.89116 0.00000 -2.12932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18176 0.20076 -1.00000 - 5575 2017 8 21 7 29 14 409 4.7756 187.49770 615.11403 583.81094 -3.88967 0.00000 -2.12759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18141 0.20076 -1.00000 - 5576 2017 8 21 7 29 19 185 4.7756 187.49878 615.07683 583.77898 -3.88887 0.00000 -2.12617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18107 0.20076 -1.00000 - 5577 2017 8 21 7 29 23 960 4.7756 187.49985 615.03966 583.74701 -3.88875 0.00000 -2.12509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18072 0.20076 -1.00000 - 5578 2017 8 21 7 29 28 736 4.7757 187.50092 615.00249 583.71506 -3.88927 0.00000 -2.12419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18037 0.20076 -1.00000 - 5579 2017 8 21 7 29 33 512 4.7757 187.50199 614.96533 583.68311 -3.89041 0.00000 -2.12352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18002 0.20076 -1.00000 - 5580 2017 8 21 7 29 38 287 4.7757 187.50306 614.92822 583.65118 -3.89209 0.00000 -2.12319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17968 0.20076 -1.00000 - 5581 2017 8 21 7 29 43 63 4.7757 187.50412 614.89116 583.61928 -3.89433 0.00000 -2.12316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17933 0.20076 -1.00000 - 5582 2017 8 21 7 29 47 839 4.7758 187.50518 614.85416 583.58740 -3.89704 0.00000 -2.12347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17898 0.20076 -1.00000 - 5583 2017 8 21 7 29 52 615 4.7758 187.50625 614.81720 583.55554 -3.90004 0.00000 -2.12402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17863 0.20076 -1.00000 - 5584 2017 8 21 7 29 57 391 4.7758 187.50731 614.78028 583.52370 -3.90322 0.00000 -2.12472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17829 0.20076 -1.00000 - 5585 2017 8 21 7 30 2 166 4.7758 187.50836 614.74341 583.49189 -3.90641 0.00000 -2.12565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17794 0.20076 -1.00000 - 5586 2017 8 21 7 30 6 942 4.7759 187.50942 614.70662 583.46011 -3.90937 0.00000 -2.12684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17759 0.20076 -1.00000 - 5587 2017 8 21 7 30 11 718 4.7759 187.51048 614.66990 583.42837 -3.91448 0.00000 -2.12826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17725 0.20076 -1.00000 - 5588 2017 8 21 7 30 16 494 4.7759 187.51153 614.63325 583.39665 -3.92314 0.00000 -2.12990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17690 0.20076 -1.00000 - 5589 2017 8 21 7 30 21 270 4.7759 187.51258 614.59664 583.36495 -3.93161 0.00000 -2.13158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17655 0.20076 -1.00000 - 5590 2017 8 21 7 30 26 46 4.7760 187.51363 614.56009 583.33328 -3.94916 0.00000 -2.13333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17620 0.20076 -1.00000 - 5591 2017 8 21 7 30 30 822 4.7760 187.51468 614.52362 583.30165 -3.96774 0.00000 -2.13523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17586 0.20076 -1.00000 - 5592 2017 8 21 7 30 35 598 4.7760 187.51573 614.48722 583.27005 -3.98676 0.00000 -2.13722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17551 0.20075 -1.00000 - 5593 2017 8 21 7 30 40 374 4.7760 187.51677 614.45090 583.23847 -4.00592 0.00000 -2.13934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17516 0.20075 -1.00000 - 5594 2017 8 21 7 30 45 150 4.7760 187.51782 614.41463 583.20693 -4.02497 0.00000 -2.14148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17481 0.20075 -1.00000 - 5595 2017 8 21 7 30 49 926 4.7761 187.51886 614.37841 583.17540 -4.04789 0.00000 -2.14354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17447 0.20075 -1.00000 - 5596 2017 8 21 7 30 54 702 4.7761 187.51990 614.34224 583.14390 -4.07379 0.00000 -2.14558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17412 0.20075 -1.00000 - 5597 2017 8 21 7 30 59 478 4.7761 187.52094 614.30614 583.11243 -4.09834 0.00000 -2.14763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17377 0.20075 -1.00000 - 5598 2017 8 21 7 31 4 254 4.7761 187.52198 614.27010 583.08099 -4.12122 0.00000 -2.14968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17342 0.20075 -1.00000 - 5599 2017 8 21 7 31 9 31 4.7762 187.52301 614.23411 583.04956 -4.14219 0.00000 -2.15173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17308 0.20075 -1.00000 - 5600 2017 8 21 7 31 13 807 4.7762 187.52404 614.19814 583.01814 -4.16111 0.00000 -2.15361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17273 0.20075 -1.00000 - 5601 2017 8 21 7 31 18 583 4.7762 187.52508 614.16219 582.98674 -4.17791 0.00000 -2.15536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17238 0.20075 -1.00000 - 5602 2017 8 21 7 31 23 359 4.7762 187.52611 614.12629 582.95535 -4.19265 0.00000 -2.15707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17204 0.20075 -1.00000 - 5603 2017 8 21 7 31 28 136 4.7763 187.52714 614.09041 582.92398 -4.21442 0.00000 -2.15871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17169 0.20075 -1.00000 - 5604 2017 8 21 7 31 32 912 4.7763 187.52817 614.05455 582.89261 -4.23924 0.00000 -2.16033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17134 0.20075 -1.00000 - 5605 2017 8 21 7 31 37 688 4.7763 187.52919 614.01870 582.86125 -4.26100 0.00000 -2.16183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17099 0.20075 -1.00000 - 5606 2017 8 21 7 31 42 464 4.7763 187.53022 613.98283 582.82988 -4.27902 0.00000 -2.16312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17065 0.20075 -1.00000 - 5607 2017 8 21 7 31 47 241 4.7764 187.53124 613.94695 582.79851 -4.29326 0.00000 -2.16429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17030 0.20075 -1.00000 - 5608 2017 8 21 7 31 52 17 4.7764 187.53226 613.91109 582.76715 -4.30385 0.00000 -2.16539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16995 0.20075 -1.00000 - 5609 2017 8 21 7 31 56 794 4.7764 187.53328 613.87521 582.73579 -4.31102 0.00000 -2.16642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16960 0.20075 -1.00000 - 5610 2017 8 21 7 32 1 570 4.7764 187.53430 613.83932 582.70442 -4.31509 0.00000 -2.16740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16926 0.20075 -1.00000 - 5611 2017 8 21 7 32 6 347 4.7765 187.53531 613.80339 582.67303 -4.31638 0.00000 -2.16819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16891 0.20075 -1.00000 - 5612 2017 8 21 7 32 11 123 4.7765 187.53633 613.76742 582.64163 -4.31525 0.00000 -2.16883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16856 0.20075 -1.00000 - 5613 2017 8 21 7 32 15 900 4.7765 187.53734 613.73144 582.61023 -4.31209 0.00000 -2.16944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16821 0.20075 -1.00000 - 5614 2017 8 21 7 32 20 676 4.7765 187.53836 613.69544 582.57882 -4.30724 0.00000 -2.16998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16787 0.20075 -1.00000 - 5615 2017 8 21 7 32 25 453 4.7766 187.53937 613.65943 582.54741 -4.30108 0.00000 -2.17054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16752 0.20075 -1.00000 - 5616 2017 8 21 7 32 30 229 4.7766 187.54037 613.62338 582.51598 -4.29393 0.00000 -2.17102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16717 0.20075 -1.00000 - 5617 2017 8 21 7 32 35 6 4.7766 187.54138 613.58730 582.48455 -4.28610 0.00000 -2.17138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16682 0.20075 -1.00000 - 5618 2017 8 21 7 32 39 783 4.7766 187.54239 613.55119 582.45311 -4.27784 0.00000 -2.17168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16648 0.20075 -1.00000 - 5619 2017 8 21 7 32 44 559 4.7767 187.54339 613.51507 582.42167 -4.26933 0.00000 -2.17199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16613 0.20075 -1.00000 - 5620 2017 8 21 7 32 49 336 4.7767 187.54439 613.47895 582.39023 -4.26075 0.00000 -2.17230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16578 0.20075 -1.00000 - 5621 2017 8 21 7 32 54 113 4.7767 187.54539 613.44283 582.35879 -4.25220 0.00000 -2.17265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16544 0.20074 -1.00000 - 5622 2017 8 21 7 32 58 889 4.7767 187.54639 613.40667 582.32733 -4.24380 0.00000 -2.17287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16509 0.20074 -1.00000 - 5623 2017 8 21 7 33 3 666 4.7768 187.54739 613.37048 582.29588 -4.23565 0.00000 -2.17302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16474 0.20074 -1.00000 - 5624 2017 8 21 7 33 8 443 4.7768 187.54838 613.33430 582.26443 -4.22784 0.00000 -2.17318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16439 0.20074 -1.00000 - 5625 2017 8 21 7 33 13 220 4.7768 187.54938 613.29812 582.23298 -4.22046 0.00000 -2.17334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16405 0.20074 -1.00000 - 5626 2017 8 21 7 33 17 997 4.7768 187.55036 613.26194 582.20154 -4.21560 0.00000 -2.17356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16370 0.20074 -1.00000 - 5627 2017 8 21 7 33 22 774 4.7769 187.55135 613.22576 582.17010 -4.21400 0.00000 -2.17375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16335 0.20074 -1.00000 - 5628 2017 8 21 7 33 27 550 4.7769 187.55234 613.18956 582.13867 -4.21266 0.00000 -2.17384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16300 0.20074 -1.00000 - 5629 2017 8 21 7 33 32 327 4.7769 187.55334 613.15336 582.10723 -4.21154 0.00000 -2.17391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16266 0.20074 -1.00000 - 5630 2017 8 21 7 33 37 104 4.7770 187.55432 613.11718 582.07581 -4.21063 0.00000 -2.17401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16231 0.20074 -1.00000 - 5631 2017 8 21 7 33 41 881 4.7770 187.55530 613.08102 582.04441 -4.20988 0.00000 -2.17413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16196 0.20074 -1.00000 - 5632 2017 8 21 7 33 46 658 4.7770 187.55627 613.04487 582.01301 -4.20925 0.00000 -2.17430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16161 0.20074 -1.00000 - 5633 2017 8 21 7 33 51 435 4.7770 187.55726 613.00871 581.98161 -4.20868 0.00000 -2.17434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16127 0.20074 -1.00000 - 5634 2017 8 21 7 33 56 212 4.7771 187.55825 612.97254 581.95022 -4.20815 0.00000 -2.17430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16092 0.20074 -1.00000 - 5635 2017 8 21 7 34 0 989 4.7771 187.55922 612.93640 581.91885 -4.20759 0.00000 -2.17429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16057 0.20074 -1.00000 - 5636 2017 8 21 7 34 5 767 4.7771 187.56019 612.90029 581.88749 -4.20694 0.00000 -2.17425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16022 0.20074 -1.00000 - 5637 2017 8 21 7 34 10 544 4.7771 187.56116 612.86419 581.85615 -4.20617 0.00000 -2.17426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15988 0.20074 -1.00000 - 5638 2017 8 21 7 34 15 321 4.7772 187.56214 612.82811 581.82481 -4.20525 0.00000 -2.17423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15953 0.20074 -1.00000 - 5639 2017 8 21 7 34 20 98 4.7772 187.56312 612.79203 581.79349 -4.20421 0.00000 -2.17407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15918 0.20074 -1.00000 - 5640 2017 8 21 7 34 24 875 4.7772 187.56408 612.75596 581.76217 -4.20309 0.00000 -2.17387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15883 0.20074 -1.00000 - 5641 2017 8 21 7 34 29 652 4.7772 187.56504 612.71992 581.73087 -4.20191 0.00000 -2.17366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15849 0.20074 -1.00000 - 5642 2017 8 21 7 34 34 430 4.7773 187.56600 612.68390 581.69959 -4.20070 0.00000 -2.17344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15814 0.20074 -1.00000 - 5643 2017 8 21 7 34 39 207 4.7773 187.56697 612.64790 581.66832 -4.20034 0.00000 -2.17323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15779 0.20074 -1.00000 - 5644 2017 8 21 7 34 43 984 4.7773 187.56794 612.61190 581.63705 -4.20275 0.00000 -2.17287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15745 0.20074 -1.00000 - 5645 2017 8 21 7 34 48 762 4.7773 187.56891 612.57589 581.60578 -4.20474 0.00000 -2.17239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15710 0.20074 -1.00000 - 5646 2017 8 21 7 34 53 539 4.7774 187.56985 612.53989 581.57453 -4.20618 0.00000 -2.17189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15675 0.20074 -1.00000 - 5647 2017 8 21 7 34 58 316 4.7774 187.57080 612.50392 581.54329 -4.20702 0.00000 -2.17134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15640 0.20074 -1.00000 - 5648 2017 8 21 7 35 3 94 4.7774 187.57176 612.46796 581.51206 -4.20723 0.00000 -2.17081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15606 0.20074 -1.00000 - 5649 2017 8 21 7 35 7 871 4.7774 187.57273 612.43200 581.48083 -4.20679 0.00000 -2.17022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15571 0.20073 -1.00000 - 5650 2017 8 21 7 35 12 649 4.7775 187.57369 612.39603 581.44960 -4.20572 0.00000 -2.16949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15536 0.20073 -1.00000 - 5651 2017 8 21 7 35 17 426 4.7775 187.57462 612.36005 581.41837 -4.20400 0.00000 -2.16868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15501 0.20073 -1.00000 - 5652 2017 8 21 7 35 22 204 4.7775 187.57556 612.32409 581.38716 -4.20167 0.00000 -2.16787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15467 0.20073 -1.00000 - 5653 2017 8 21 7 35 26 981 4.7776 187.57651 612.28813 581.35595 -4.19876 0.00000 -2.16705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15432 0.20073 -1.00000 - 5654 2017 8 21 7 35 31 759 4.7776 187.57748 612.25219 581.32474 -4.19529 0.00000 -2.16624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15397 0.20073 -1.00000 - 5655 2017 8 21 7 35 36 537 4.7776 187.57844 612.21622 581.29353 -4.19131 0.00000 -2.16530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15362 0.20073 -1.00000 - 5656 2017 8 21 7 35 41 314 4.7776 187.57936 612.18023 581.26232 -4.18684 0.00000 -2.16426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15328 0.20073 -1.00000 - 5657 2017 8 21 7 35 46 92 4.7777 187.58028 612.14425 581.23110 -4.18193 0.00000 -2.16322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15293 0.20073 -1.00000 - 5658 2017 8 21 7 35 50 870 4.7777 187.58122 612.10828 581.19990 -4.17660 0.00000 -2.16217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15258 0.20073 -1.00000 - 5659 2017 8 21 7 35 55 647 4.7777 187.58219 612.07230 581.16869 -4.17091 0.00000 -2.16116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15223 0.20073 -1.00000 - 5660 2017 8 21 7 36 0 425 4.7777 187.58315 612.03633 581.13748 -4.16488 0.00000 -2.16014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15189 0.20073 -1.00000 - 5661 2017 8 21 7 36 5 203 4.7778 187.58406 612.00032 581.10627 -4.15857 0.00000 -2.15901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15154 0.20073 -1.00000 - 5662 2017 8 21 7 36 9 981 4.7778 187.58496 611.96431 581.07505 -4.15203 0.00000 -2.15787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15119 0.20073 -1.00000 - 5663 2017 8 21 7 36 14 758 4.7778 187.58589 611.92831 581.04384 -4.14531 0.00000 -2.15676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15084 0.20073 -1.00000 - 5664 2017 8 21 7 36 19 536 4.7778 187.58686 611.89231 581.01263 -4.13848 0.00000 -2.15568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15050 0.20073 -1.00000 - 5665 2017 8 21 7 36 24 314 4.7779 187.58782 611.85631 580.98141 -4.13160 0.00000 -2.15468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15015 0.20073 -1.00000 - 5666 2017 8 21 7 36 29 92 4.7779 187.58873 611.82029 580.95019 -4.12471 0.00000 -2.15360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14980 0.20073 -1.00000 - 5667 2017 8 21 7 36 33 870 4.7779 187.58961 611.78425 580.91896 -4.11790 0.00000 -2.15247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14945 0.20073 -1.00000 - 5668 2017 8 21 7 36 38 648 4.7780 187.59051 611.74821 580.88774 -4.11120 0.00000 -2.15139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14911 0.20073 -1.00000 - 5669 2017 8 21 7 36 43 426 4.7780 187.59148 611.71218 580.85651 -4.10468 0.00000 -2.15034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14876 0.20073 -1.00000 - 5670 2017 8 21 7 36 48 204 4.7780 187.59245 611.67616 580.82529 -4.09957 0.00000 -2.14939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14841 0.20073 -1.00000 - 5671 2017 8 21 7 36 52 982 4.7780 187.59337 611.64012 580.79406 -4.09576 0.00000 -2.14848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14806 0.20073 -1.00000 - 5672 2017 8 21 7 36 57 760 4.7781 187.59424 611.60407 580.76282 -4.09220 0.00000 -2.14751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14772 0.20073 -1.00000 - 5673 2017 8 21 7 37 2 538 4.7781 187.59510 611.56802 580.73159 -4.08891 0.00000 -2.14655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14737 0.20073 -1.00000 - 5674 2017 8 21 7 37 7 316 4.7781 187.59604 611.53197 580.70035 -4.08588 0.00000 -2.14567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14702 0.20073 -1.00000 - 5675 2017 8 21 7 37 12 94 4.7781 187.59704 611.49594 580.66912 -4.08312 0.00000 -2.14486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14667 0.20073 -1.00000 - 5676 2017 8 21 7 37 16 873 4.7782 187.59798 611.45991 580.63789 -4.08063 0.00000 -2.14416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14633 0.20073 -1.00000 - 5677 2017 8 21 7 37 21 651 4.7782 187.59884 611.42386 580.60665 -4.07841 0.00000 -2.14340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14598 0.20073 -1.00000 - 5678 2017 8 21 7 37 26 429 4.7782 187.59966 611.38780 580.57541 -4.07645 0.00000 -2.14261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14563 0.20072 -1.00000 - 5679 2017 8 21 7 37 31 207 4.7783 187.60057 611.35175 580.54417 -4.07475 0.00000 -2.14190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14528 0.20072 -1.00000 - 5680 2017 8 21 7 37 35 986 4.7783 187.60157 611.31572 580.51293 -4.07329 0.00000 -2.14123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14494 0.20072 -1.00000 - 5681 2017 8 21 7 37 40 764 4.7783 187.60253 611.27969 580.48170 -4.07206 0.00000 -2.14068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14459 0.20072 -1.00000 - 5682 2017 8 21 7 37 45 542 4.7784 187.60340 611.24366 580.45047 -4.07105 0.00000 -2.14017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14424 0.20072 -1.00000 - 5683 2017 8 21 7 37 50 321 4.7784 187.60420 611.20762 580.41923 -4.07025 0.00000 -2.13961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14389 0.20072 -1.00000 - 5684 2017 8 21 7 37 55 99 4.7784 187.60506 611.17158 580.38799 -4.06964 0.00000 -2.13907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14355 0.20072 -1.00000 - 5685 2017 8 21 7 37 59 878 4.7784 187.60604 611.13555 580.35676 -4.06921 0.00000 -2.13860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14320 0.20072 -1.00000 - 5686 2017 8 21 7 38 4 656 4.7785 187.60704 611.09954 580.32554 -4.06894 0.00000 -2.13820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14285 0.20072 -1.00000 - 5687 2017 8 21 7 38 9 434 4.7785 187.60793 611.06354 580.29432 -4.06880 0.00000 -2.13790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14250 0.20072 -1.00000 - 5688 2017 8 21 7 38 14 213 4.7785 187.60872 611.02753 580.26309 -4.06880 0.00000 -2.13755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14216 0.20072 -1.00000 - 5689 2017 8 21 7 38 18 992 4.7785 187.60952 610.99150 580.23187 -4.06891 0.00000 -2.13715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14181 0.20072 -1.00000 - 5690 2017 8 21 7 38 23 770 4.7786 187.61046 610.95549 580.20065 -4.06913 0.00000 -2.13682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14146 0.20072 -1.00000 - 5691 2017 8 21 7 38 28 549 4.7786 187.61148 610.91949 580.16944 -4.06944 0.00000 -2.13652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14111 0.20072 -1.00000 - 5692 2017 8 21 7 38 33 327 4.7786 187.61241 610.88350 580.13823 -4.06984 0.00000 -2.13632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14077 0.20072 -1.00000 - 5693 2017 8 21 7 38 38 106 4.7787 187.61321 610.84752 580.10703 -4.07032 0.00000 -2.13615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14042 0.20072 -1.00000 - 5694 2017 8 21 7 38 42 885 4.7787 187.61396 610.81153 580.07583 -4.07085 0.00000 -2.13591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14007 0.20072 -1.00000 - 5695 2017 8 21 7 38 47 663 4.7787 187.61484 610.77553 580.04463 -4.07144 0.00000 -2.13567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13972 0.20072 -1.00000 - 5696 2017 8 21 7 38 52 442 4.7787 187.61586 610.73955 580.01344 -4.07206 0.00000 -2.13549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13938 0.20072 -1.00000 - 5697 2017 8 21 7 38 57 221 4.7788 187.61684 610.70359 579.98227 -4.07269 0.00000 -2.13536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13903 0.20072 -1.00000 - 5698 2017 8 21 7 39 2 0 4.7788 187.61766 610.66765 579.95110 -4.07332 0.00000 -2.13532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13868 0.20072 -1.00000 - 5699 2017 8 21 7 39 6 779 4.7788 187.61839 610.63169 579.91993 -4.07393 0.00000 -2.13520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13833 0.20072 -1.00000 - 5700 2017 8 21 7 39 11 557 4.7789 187.61920 610.59573 579.88877 -4.07450 0.00000 -2.13504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13799 0.20072 -1.00000 - 5701 2017 8 21 7 39 16 336 4.7789 187.62019 610.55979 579.85762 -4.07546 0.00000 -2.13492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13764 0.20072 -1.00000 - 5702 2017 8 21 7 39 21 115 4.7789 187.62120 610.52386 579.82648 -4.07633 0.00000 -2.13481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13729 0.20072 -1.00000 - 5703 2017 8 21 7 39 25 894 4.7789 187.62207 610.48796 579.79535 -4.07704 0.00000 -2.13480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13694 0.20072 -1.00000 - 5704 2017 8 21 7 39 30 673 4.7790 187.62280 610.45207 579.76424 -4.07761 0.00000 -2.13481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13660 0.20072 -1.00000 - 5705 2017 8 21 7 39 35 452 4.7790 187.62354 610.41618 579.73313 -4.07803 0.00000 -2.13474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13625 0.20072 -1.00000 - 5706 2017 8 21 7 39 40 231 4.7790 187.62447 610.38029 579.70203 -4.07831 0.00000 -2.13466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13590 0.20071 -1.00000 - 5707 2017 8 21 7 39 45 10 4.7790 187.62551 610.34444 579.67095 -4.07846 0.00000 -2.13463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13555 0.20071 -1.00000 - 5708 2017 8 21 7 39 49 789 4.7791 187.62642 610.30862 579.63989 -4.07848 0.00000 -2.13465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13521 0.20071 -1.00000 - 5709 2017 8 21 7 39 54 568 4.7791 187.62717 610.27282 579.60885 -4.07839 0.00000 -2.13475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13486 0.20071 -1.00000 - 5710 2017 8 21 7 39 59 347 4.7792 187.62787 610.23703 579.57781 -4.07820 0.00000 -2.13478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13451 0.20071 -1.00000 - 5711 2017 8 21 7 40 4 127 4.7792 187.62873 610.20125 579.54678 -4.07792 0.00000 -2.13475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13416 0.20071 -1.00000 - 5712 2017 8 21 7 40 8 906 4.7792 187.62975 610.16551 579.51578 -4.07756 0.00000 -2.13476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13382 0.20071 -1.00000 - 5713 2017 8 21 7 40 13 685 4.7792 187.63073 610.12980 579.48479 -4.07720 0.00000 -2.13479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13347 0.20071 -1.00000 - 5714 2017 8 21 7 40 18 464 4.7793 187.63152 610.09412 579.45382 -4.07722 0.00000 -2.13491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13312 0.20071 -1.00000 - 5715 2017 8 21 7 40 23 244 4.7793 187.63219 610.05847 579.42287 -4.07726 0.00000 -2.13504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13277 0.20071 -1.00000 - 5716 2017 8 21 7 40 28 23 4.7793 187.63298 610.02283 579.39192 -4.07730 0.00000 -2.13509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13243 0.20071 -1.00000 - 5717 2017 8 21 7 40 32 802 4.7793 187.63396 609.98722 579.36099 -4.07737 0.00000 -2.13513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13208 0.20071 -1.00000 - 5718 2017 8 21 7 40 37 582 4.7794 187.63497 609.95164 579.33008 -4.07746 0.00000 -2.13522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13173 0.20071 -1.00000 - 5719 2017 8 21 7 40 42 361 4.7794 187.63580 609.91611 579.29920 -4.07757 0.00000 -2.13535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13138 0.20071 -1.00000 - 5720 2017 8 21 7 40 47 140 4.7794 187.63647 609.88061 579.26832 -4.07771 0.00000 -2.13556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13104 0.20071 -1.00000 - 5721 2017 8 21 7 40 51 920 4.7795 187.63719 609.84512 579.23745 -4.07789 0.00000 -2.13570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13069 0.20071 -1.00000 - 5722 2017 8 21 7 40 56 699 4.7795 187.63811 609.80965 579.20660 -4.07810 0.00000 -2.13577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13034 0.20071 -1.00000 - 5723 2017 8 21 7 41 1 479 4.7795 187.63913 609.77421 579.17576 -4.07835 0.00000 -2.13589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12999 0.20071 -1.00000 - 5724 2017 8 21 7 41 6 259 4.7795 187.64002 609.73881 579.14493 -4.07864 0.00000 -2.13601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12965 0.20071 -1.00000 - 5725 2017 8 21 7 41 11 38 4.7796 187.64073 609.70344 579.11412 -4.07897 0.00000 -2.13621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12930 0.20071 -1.00000 - 5726 2017 8 21 7 41 15 818 4.7796 187.64139 609.66808 579.08331 -4.07934 0.00000 -2.13642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12895 0.20071 -1.00000 - 5727 2017 8 21 7 41 20 597 4.7796 187.64225 609.63274 579.05251 -4.07976 0.00000 -2.13654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12860 0.20071 -1.00000 - 5728 2017 8 21 7 41 25 377 4.7797 187.64325 609.59741 579.02172 -4.08022 0.00000 -2.13665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12826 0.20071 -1.00000 - 5729 2017 8 21 7 41 30 157 4.7797 187.64419 609.56210 578.99093 -4.08073 0.00000 -2.13679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12791 0.20071 -1.00000 - 5730 2017 8 21 7 41 34 936 4.7797 187.64493 609.52682 578.96016 -4.08129 0.00000 -2.13698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12756 0.20071 -1.00000 - 5731 2017 8 21 7 41 39 716 4.7798 187.64558 609.49157 578.92940 -4.08190 0.00000 -2.13723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12721 0.20071 -1.00000 - 5732 2017 8 21 7 41 44 496 4.7798 187.64636 609.45630 578.89863 -4.08255 0.00000 -2.13739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12686 0.20071 -1.00000 - 5733 2017 8 21 7 41 49 276 4.7798 187.64733 609.42103 578.86786 -4.08325 0.00000 -2.13749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12652 0.20071 -1.00000 - 5734 2017 8 21 7 41 54 56 4.7798 187.64830 609.38577 578.83709 -4.08400 0.00000 -2.13763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12617 0.20071 -1.00000 - 5735 2017 8 21 7 41 58 836 4.7799 187.64909 609.35053 578.80633 -4.08480 0.00000 -2.13777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12582 0.20070 -1.00000 - 5736 2017 8 21 7 42 3 615 4.7799 187.64973 609.31529 578.77557 -4.08565 0.00000 -2.13798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12547 0.20070 -1.00000 - 5737 2017 8 21 7 42 8 395 4.7799 187.65044 609.28004 578.74480 -4.08653 0.00000 -2.13816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12513 0.20070 -1.00000 - 5738 2017 8 21 7 42 13 175 4.7800 187.65136 609.24477 578.71403 -4.08746 0.00000 -2.13826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12478 0.20070 -1.00000 - 5739 2017 8 21 7 42 17 955 4.7800 187.65235 609.20949 578.68325 -4.08844 0.00000 -2.13836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12443 0.20070 -1.00000 - 5740 2017 8 21 7 42 22 735 4.7800 187.65319 609.17421 578.65248 -4.08945 0.00000 -2.13848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12408 0.20070 -1.00000 - 5741 2017 8 21 7 42 27 515 4.7801 187.65385 609.13893 578.62170 -4.09051 0.00000 -2.13863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12374 0.20070 -1.00000 - 5742 2017 8 21 7 42 32 296 4.7801 187.65451 609.10365 578.59092 -4.09160 0.00000 -2.13884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12339 0.20070 -1.00000 - 5743 2017 8 21 7 42 37 76 4.7801 187.65536 609.06833 578.56013 -4.09272 0.00000 -2.13896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12304 0.20070 -1.00000 - 5744 2017 8 21 7 42 41 856 4.7801 187.65635 609.03299 578.52934 -4.09388 0.00000 -2.13902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12269 0.20070 -1.00000 - 5745 2017 8 21 7 42 46 636 4.7802 187.65724 608.99764 578.49853 -4.09507 0.00000 -2.13910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12235 0.20070 -1.00000 - 5746 2017 8 21 7 42 51 416 4.7802 187.65794 608.96228 578.46773 -4.09628 0.00000 -2.13919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12200 0.20070 -1.00000 - 5747 2017 8 21 7 42 56 196 4.7802 187.65856 608.92692 578.43693 -4.09752 0.00000 -2.13933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12165 0.20070 -1.00000 - 5748 2017 8 21 7 43 0 977 4.7803 187.65934 608.89153 578.40612 -4.09877 0.00000 -2.13943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12130 0.20070 -1.00000 - 5749 2017 8 21 7 43 5 757 4.7803 187.66030 608.85611 578.37530 -4.10003 0.00000 -2.13944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12096 0.20070 -1.00000 - 5750 2017 8 21 7 43 10 537 4.7803 187.66124 608.82068 578.34448 -4.10129 0.00000 -2.13946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12061 0.20070 -1.00000 - 5751 2017 8 21 7 43 15 318 4.7804 187.66197 608.78524 578.31366 -4.10255 0.00000 -2.13947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12026 0.20070 -1.00000 - 5752 2017 8 21 7 43 20 98 4.7804 187.66258 608.74979 578.28284 -4.10380 0.00000 -2.13952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11991 0.20070 -1.00000 - 5753 2017 8 21 7 43 24 878 4.7804 187.66329 608.71435 578.25202 -4.10503 0.00000 -2.13962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11956 0.20070 -1.00000 - 5754 2017 8 21 7 43 29 659 4.7804 187.66421 608.67888 578.22120 -4.10622 0.00000 -2.13963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11922 0.20070 -1.00000 - 5755 2017 8 21 7 43 34 439 4.7805 187.66517 608.64338 578.19037 -4.10736 0.00000 -2.13957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11887 0.20070 -1.00000 - 5756 2017 8 21 7 43 39 220 4.7805 187.66597 608.60789 578.15955 -4.10845 0.00000 -2.13952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11852 0.20070 -1.00000 - 5757 2017 8 21 7 43 44 0 4.7806 187.66659 608.57240 578.12874 -4.10946 0.00000 -2.13946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11817 0.20070 -1.00000 - 5758 2017 8 21 7 43 48 781 4.7806 187.66724 608.53691 578.09792 -4.11039 0.00000 -2.13945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11783 0.20070 -1.00000 - 5759 2017 8 21 7 43 53 562 4.7806 187.66810 608.50141 578.06711 -4.11122 0.00000 -2.13937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11748 0.20070 -1.00000 - 5760 2017 8 21 7 43 58 342 4.7806 187.66907 608.46589 578.03630 -4.11192 0.00000 -2.13920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11713 0.20070 -1.00000 - 5761 2017 8 21 7 44 3 123 4.7807 187.66991 608.43038 578.00549 -4.11250 0.00000 -2.13904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11678 0.20070 -1.00000 - 5762 2017 8 21 7 44 7 904 4.7807 187.67056 608.39488 577.97470 -4.11292 0.00000 -2.13884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11644 0.20070 -1.00000 - 5763 2017 8 21 7 44 12 684 4.7807 187.67117 608.35939 577.94392 -4.11318 0.00000 -2.13867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11609 0.20069 -1.00000 - 5764 2017 8 21 7 44 17 465 4.7808 187.67197 608.32391 577.91314 -4.11325 0.00000 -2.13853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11574 0.20069 -1.00000 - 5765 2017 8 21 7 44 22 246 4.7808 187.67293 608.28843 577.88236 -4.11313 0.00000 -2.13829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11539 0.20069 -1.00000 - 5766 2017 8 21 7 44 27 27 4.7808 187.67382 608.25294 577.85160 -4.11279 0.00000 -2.13797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11505 0.20069 -1.00000 - 5767 2017 8 21 7 44 31 808 4.7809 187.67451 608.21747 577.82084 -4.11222 0.00000 -2.13765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11470 0.20069 -1.00000 - 5768 2017 8 21 7 44 36 588 4.7809 187.67510 608.18203 577.79010 -4.11142 0.00000 -2.13731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11435 0.20069 -1.00000 - 5769 2017 8 21 7 44 41 369 4.7809 187.67584 608.14660 577.75937 -4.11037 0.00000 -2.13700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11400 0.20069 -1.00000 - 5770 2017 8 21 7 44 46 150 4.7809 187.67677 608.11118 577.72865 -4.10938 0.00000 -2.13662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11365 0.20069 -1.00000 - 5771 2017 8 21 7 44 50 931 4.7810 187.67770 608.07577 577.69793 -4.10857 0.00000 -2.13615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11331 0.20069 -1.00000 - 5772 2017 8 21 7 44 55 712 4.7810 187.67845 608.04038 577.66723 -4.10749 0.00000 -2.13567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11296 0.20069 -1.00000 - 5773 2017 8 21 7 45 0 493 4.7810 187.67903 608.00502 577.63655 -4.10610 0.00000 -2.13514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11261 0.20069 -1.00000 - 5774 2017 8 21 7 45 5 274 4.7811 187.67971 607.96968 577.60588 -4.10441 0.00000 -2.13464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11226 0.20069 -1.00000 - 5775 2017 8 21 7 45 10 55 4.7811 187.68060 607.93438 577.57522 -4.10240 0.00000 -2.13417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11192 0.20069 -1.00000 - 5776 2017 8 21 7 45 14 837 4.7811 187.68155 607.89908 577.54456 -4.10005 0.00000 -2.13361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11157 0.20069 -1.00000 - 5777 2017 8 21 7 45 19 618 4.7812 187.68236 607.86379 577.51391 -4.09737 0.00000 -2.13297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11122 0.20069 -1.00000 - 5778 2017 8 21 7 45 24 399 4.7812 187.68297 607.82853 577.48327 -4.09436 0.00000 -2.13233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11087 0.20069 -1.00000 - 5779 2017 8 21 7 45 29 180 4.7812 187.68360 607.79330 577.45265 -4.09102 0.00000 -2.13169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11053 0.20069 -1.00000 - 5780 2017 8 21 7 45 33 961 4.7813 187.68445 607.75808 577.42203 -4.08736 0.00000 -2.13108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11018 0.20069 -1.00000 - 5781 2017 8 21 7 45 38 743 4.7813 187.68542 607.72287 577.39141 -4.08340 0.00000 -2.13042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10983 0.20069 -1.00000 - 5782 2017 8 21 7 45 43 524 4.7813 187.68629 607.68765 577.36079 -4.07915 0.00000 -2.12970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10948 0.20069 -1.00000 - 5783 2017 8 21 7 45 48 305 4.7814 187.68693 607.65245 577.33017 -4.07463 0.00000 -2.12898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10913 0.20069 -1.00000 - 5784 2017 8 21 7 45 53 87 4.7814 187.68753 607.61725 577.29956 -4.06986 0.00000 -2.12824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10879 0.20069 -1.00000 - 5785 2017 8 21 7 45 57 868 4.7814 187.68832 607.58206 577.26896 -4.06488 0.00000 -2.12756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10844 0.20069 -1.00000 - 5786 2017 8 21 7 46 2 650 4.7814 187.68928 607.54688 577.23834 -4.05972 0.00000 -2.12693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10809 0.20069 -1.00000 - 5787 2017 8 21 7 46 7 431 4.7815 187.69020 607.51168 577.20773 -4.05441 0.00000 -2.12626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10774 0.20069 -1.00000 - 5788 2017 8 21 7 46 12 213 4.7815 187.69089 607.47646 577.17711 -4.04899 0.00000 -2.12555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10740 0.20069 -1.00000 - 5789 2017 8 21 7 46 16 994 4.7816 187.69147 607.44124 577.14648 -4.04350 0.00000 -2.12488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10705 0.20069 -1.00000 - 5790 2017 8 21 7 46 21 776 4.7816 187.69220 607.40602 577.11586 -4.03800 0.00000 -2.12423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10670 0.20069 -1.00000 - 5791 2017 8 21 7 46 26 557 4.7816 187.69313 607.37079 577.08524 -4.03318 0.00000 -2.12366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10635 0.20069 -1.00000 - 5792 2017 8 21 7 46 31 339 4.7816 187.69409 607.33554 577.05460 -4.02927 0.00000 -2.12311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10600 0.20068 -1.00000 - 5793 2017 8 21 7 46 36 121 4.7817 187.69485 607.30026 577.02397 -4.02561 0.00000 -2.12252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10566 0.20068 -1.00000 - 5794 2017 8 21 7 46 40 902 4.7817 187.69543 607.26498 576.99333 -4.02221 0.00000 -2.12198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10531 0.20068 -1.00000 - 5795 2017 8 21 7 46 45 684 4.7817 187.69610 607.22969 576.96269 -4.01911 0.00000 -2.12147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10496 0.20068 -1.00000 - 5796 2017 8 21 7 46 50 466 4.7818 187.69699 607.19440 576.93206 -4.01634 0.00000 -2.12104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10461 0.20068 -1.00000 - 5797 2017 8 21 7 46 55 248 4.7818 187.69796 607.15910 576.90142 -4.01392 0.00000 -2.12071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10427 0.20068 -1.00000 - 5798 2017 8 21 7 47 0 30 4.7818 187.69878 607.12379 576.87078 -4.01186 0.00000 -2.12039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10392 0.20068 -1.00000 - 5799 2017 8 21 7 47 4 811 4.7819 187.69939 607.08847 576.84015 -4.01018 0.00000 -2.12006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10357 0.20068 -1.00000 - 5800 2017 8 21 7 47 9 593 4.7819 187.70001 607.05314 576.80952 -4.00888 0.00000 -2.11979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10322 0.20068 -1.00000 - 5801 2017 8 21 7 47 14 375 4.7819 187.70087 607.01782 576.77890 -4.00796 0.00000 -2.11957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10288 0.20068 -1.00000 - 5802 2017 8 21 7 47 19 157 4.7820 187.70184 606.98252 576.74829 -4.00743 0.00000 -2.11945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10253 0.20068 -1.00000 - 5803 2017 8 21 7 47 23 939 4.7820 187.70271 606.94721 576.71768 -4.00727 0.00000 -2.11937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10218 0.20068 -1.00000 - 5804 2017 8 21 7 47 28 721 4.7820 187.70334 606.91190 576.68708 -4.00747 0.00000 -2.11928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10183 0.20068 -1.00000 - 5805 2017 8 21 7 47 33 503 4.7821 187.70392 606.87660 576.65649 -4.00801 0.00000 -2.11922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10148 0.20068 -1.00000 - 5806 2017 8 21 7 47 38 285 4.7821 187.70472 606.84133 576.62592 -4.00888 0.00000 -2.11920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10114 0.20068 -1.00000 - 5807 2017 8 21 7 47 43 68 4.7821 187.70569 606.80608 576.59537 -4.01005 0.00000 -2.11927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10079 0.20068 -1.00000 - 5808 2017 8 21 7 47 47 850 4.7822 187.70662 606.77087 576.56484 -4.01149 0.00000 -2.11942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10044 0.20068 -1.00000 - 5809 2017 8 21 7 47 52 632 4.7822 187.70731 606.73568 576.53432 -4.01315 0.00000 -2.11957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10009 0.20068 -1.00000 - 5810 2017 8 21 7 47 57 414 4.7822 187.70788 606.70050 576.50382 -4.01502 0.00000 -2.11969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09975 0.20068 -1.00000 - 5811 2017 8 21 7 48 2 196 4.7823 187.70862 606.66537 576.47334 -4.01707 0.00000 -2.11986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09940 0.20068 -1.00000 - 5812 2017 8 21 7 48 6 979 4.7823 187.70956 606.63029 576.44289 -4.01931 0.00000 -2.12006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09905 0.20068 -1.00000 - 5813 2017 8 21 7 48 11 761 4.7823 187.71051 606.59525 576.41246 -4.02172 0.00000 -2.12033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09870 0.20068 -1.00000 - 5814 2017 8 21 7 48 16 543 4.7824 187.71124 606.56025 576.38204 -4.02430 0.00000 -2.12061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09835 0.20068 -1.00000 - 5815 2017 8 21 7 48 21 326 4.7824 187.71180 606.52528 576.35165 -4.02705 0.00000 -2.12084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09801 0.20068 -1.00000 - 5816 2017 8 21 7 48 26 108 4.7824 187.71248 606.49036 576.32128 -4.02994 0.00000 -2.12107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09766 0.20068 -1.00000 - 5817 2017 8 21 7 48 30 891 4.7825 187.71339 606.45548 576.29093 -4.03297 0.00000 -2.12129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09731 0.20068 -1.00000 - 5818 2017 8 21 7 48 35 673 4.7825 187.71436 606.42065 576.26061 -4.03609 0.00000 -2.12156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09696 0.20068 -1.00000 - 5819 2017 8 21 7 48 40 456 4.7825 187.71516 606.38587 576.23030 -4.03929 0.00000 -2.12186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09662 0.20068 -1.00000 - 5820 2017 8 21 7 48 45 238 4.7826 187.71574 606.35111 576.20001 -4.04251 0.00000 -2.12212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09627 0.20067 -1.00000 - 5821 2017 8 21 7 48 50 21 4.7826 187.71636 606.31638 576.16973 -4.04572 0.00000 -2.12229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09592 0.20067 -1.00000 - 5822 2017 8 21 7 48 54 804 4.7826 187.71721 606.28168 576.13946 -4.04885 0.00000 -2.12246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09557 0.20067 -1.00000 - 5823 2017 8 21 7 48 59 586 4.7827 187.71817 606.24701 576.10921 -4.05185 0.00000 -2.12261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09522 0.20067 -1.00000 - 5824 2017 8 21 7 49 4 369 4.7827 187.71900 606.21238 576.07897 -4.05468 0.00000 -2.12278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09488 0.20067 -1.00000 - 5825 2017 8 21 7 49 9 152 4.7828 187.71959 606.17777 576.04875 -4.05728 0.00000 -2.12291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09453 0.20067 -1.00000 - 5826 2017 8 21 7 49 13 935 4.7828 187.72016 606.14316 576.01853 -4.05961 0.00000 -2.12295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09418 0.20067 -1.00000 - 5827 2017 8 21 7 49 18 717 4.7828 187.72096 606.10858 575.98832 -4.06164 0.00000 -2.12294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09383 0.20067 -1.00000 - 5828 2017 8 21 7 49 23 500 4.7828 187.72190 606.07402 575.95812 -4.06334 0.00000 -2.12289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09349 0.20067 -1.00000 - 5829 2017 8 21 7 49 28 283 4.7829 187.72277 606.03950 575.92793 -4.06532 0.00000 -2.12285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09314 0.20067 -1.00000 - 5830 2017 8 21 7 49 33 66 4.7829 187.72338 606.00500 575.89775 -4.06717 0.00000 -2.12282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09279 0.20067 -1.00000 - 5831 2017 8 21 7 49 37 849 4.7830 187.72391 605.97051 575.86757 -4.06859 0.00000 -2.12270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09244 0.20067 -1.00000 - 5832 2017 8 21 7 49 42 632 4.7830 187.72463 605.93602 575.83740 -4.06956 0.00000 -2.12248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09209 0.20067 -1.00000 - 5833 2017 8 21 7 49 47 415 4.7830 187.72555 605.90155 575.80722 -4.07008 0.00000 -2.12223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09175 0.20067 -1.00000 - 5834 2017 8 21 7 49 52 198 4.7830 187.72645 605.86710 575.77706 -4.07015 0.00000 -2.12196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09140 0.20067 -1.00000 - 5835 2017 8 21 7 49 56 981 4.7831 187.72712 605.83267 575.74689 -4.06976 0.00000 -2.12170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09105 0.20067 -1.00000 - 5836 2017 8 21 7 50 1 764 4.7831 187.72765 605.79824 575.71672 -4.06893 0.00000 -2.12139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09070 0.20067 -1.00000 - 5837 2017 8 21 7 50 6 547 4.7832 187.72830 605.76379 575.68654 -4.06767 0.00000 -2.12097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09035 0.20067 -1.00000 - 5838 2017 8 21 7 50 11 330 4.7832 187.72916 605.72935 575.65636 -4.06601 0.00000 -2.12053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09001 0.20067 -1.00000 - 5839 2017 8 21 7 50 16 114 4.7832 187.73005 605.69489 575.62616 -4.06396 0.00000 -2.12005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08966 0.20067 -1.00000 - 5840 2017 8 21 7 50 20 897 4.7833 187.73075 605.66043 575.59596 -4.06157 0.00000 -2.11959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08931 0.20067 -1.00000 - 5841 2017 8 21 7 50 25 680 4.7833 187.73127 605.62597 575.56575 -4.05887 0.00000 -2.11916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08896 0.20067 -1.00000 - 5842 2017 8 21 7 50 30 464 4.7833 187.73187 605.59146 575.53552 -4.05589 0.00000 -2.11867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08862 0.20067 -1.00000 - 5843 2017 8 21 7 50 35 247 4.7834 187.73269 605.55692 575.50527 -4.05269 0.00000 -2.11811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08827 0.20067 -1.00000 - 5844 2017 8 21 7 50 40 30 4.7834 187.73360 605.52236 575.47500 -4.04957 0.00000 -2.11754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08792 0.20067 -1.00000 - 5845 2017 8 21 7 50 44 814 4.7834 187.73437 605.48776 575.44471 -4.04755 0.00000 -2.11699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08757 0.20067 -1.00000 - 5846 2017 8 21 7 50 49 597 4.7835 187.73491 605.45314 575.41441 -4.04564 0.00000 -2.11649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08722 0.20067 -1.00000 - 5847 2017 8 21 7 50 54 381 4.7835 187.73544 605.41847 575.38409 -4.04386 0.00000 -2.11598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08688 0.20067 -1.00000 - 5848 2017 8 21 7 50 59 164 4.7835 187.73620 605.38375 575.35374 -4.04225 0.00000 -2.11540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08653 0.20067 -1.00000 - 5849 2017 8 21 7 51 3 948 4.7836 187.73706 605.34899 575.32336 -4.04082 0.00000 -2.11484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08618 0.20066 -1.00000 - 5850 2017 8 21 7 51 8 731 4.7836 187.73784 605.31418 575.29297 -4.03959 0.00000 -2.11428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08583 0.20066 -1.00000 - 5851 2017 8 21 7 51 13 515 4.7836 187.73840 605.27934 575.26257 -4.03857 0.00000 -2.11378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08548 0.20066 -1.00000 - 5852 2017 8 21 7 51 18 299 4.7837 187.73892 605.24446 575.23214 -4.03777 0.00000 -2.11334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08514 0.20066 -1.00000 - 5853 2017 8 21 7 51 23 82 4.7837 187.73964 605.20952 575.20169 -4.03717 0.00000 -2.11287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08479 0.20066 -1.00000 - 5854 2017 8 21 7 51 27 866 4.7837 187.74051 605.17453 575.17122 -4.03678 0.00000 -2.11236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08444 0.20066 -1.00000 - 5855 2017 8 21 7 51 32 650 4.7838 187.74134 605.13949 575.14072 -4.03656 0.00000 -2.11188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08409 0.20066 -1.00000 - 5856 2017 8 21 7 51 37 434 4.7838 187.74193 605.10442 575.11022 -4.03650 0.00000 -2.11143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08375 0.20066 -1.00000 - 5857 2017 8 21 7 51 42 218 4.7838 187.74241 605.06930 575.07970 -4.03656 0.00000 -2.11105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08340 0.20066 -1.00000 - 5858 2017 8 21 7 51 47 1 4.7839 187.74303 605.03415 575.04917 -4.03666 0.00000 -2.11067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08305 0.20066 -1.00000 - 5859 2017 8 21 7 51 51 785 4.7839 187.74384 604.99893 575.01862 -4.03676 0.00000 -2.11025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08270 0.20066 -1.00000 - 5860 2017 8 21 7 51 56 569 4.7839 187.74466 604.96368 574.98805 -4.03681 0.00000 -2.10984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08235 0.20066 -1.00000 - 5861 2017 8 21 7 52 1 353 4.7840 187.74529 604.92840 574.95748 -4.03679 0.00000 -2.10945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08201 0.20066 -1.00000 - 5862 2017 8 21 7 52 6 137 4.7840 187.74578 604.89309 574.92691 -4.03666 0.00000 -2.10910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08166 0.20066 -1.00000 - 5863 2017 8 21 7 52 10 921 4.7840 187.74638 604.85776 574.89634 -4.03642 0.00000 -2.10881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08131 0.20066 -1.00000 - 5864 2017 8 21 7 52 15 705 4.7841 187.74718 604.82239 574.86575 -4.03607 0.00000 -2.10848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08096 0.20066 -1.00000 - 5865 2017 8 21 7 52 20 489 4.7841 187.74802 604.78699 574.83517 -4.03561 0.00000 -2.10812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08061 0.20066 -1.00000 - 5866 2017 8 21 7 52 25 273 4.7841 187.74871 604.75158 574.80460 -4.03502 0.00000 -2.10775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08027 0.20066 -1.00000 - 5867 2017 8 21 7 52 30 58 4.7842 187.74919 604.71617 574.77403 -4.03430 0.00000 -2.10741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07992 0.20066 -1.00000 - 5868 2017 8 21 7 52 34 842 4.7842 187.74970 604.68076 574.74348 -4.03344 0.00000 -2.10710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07957 0.20066 -1.00000 - 5869 2017 8 21 7 52 39 626 4.7842 187.75041 604.64535 574.71294 -4.03242 0.00000 -2.10678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07922 0.20066 -1.00000 - 5870 2017 8 21 7 52 44 410 4.7843 187.75121 604.60993 574.68241 -4.03120 0.00000 -2.10639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07887 0.20066 -1.00000 - 5871 2017 8 21 7 52 49 195 4.7843 187.75192 604.57452 574.65189 -4.02978 0.00000 -2.10598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07853 0.20066 -1.00000 - 5872 2017 8 21 7 52 53 979 4.7843 187.75244 604.53914 574.62140 -4.02916 0.00000 -2.10556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07818 0.20066 -1.00000 - 5873 2017 8 21 7 52 58 763 4.7844 187.75295 604.50379 574.59094 -4.02881 0.00000 -2.10516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07783 0.20066 -1.00000 - 5874 2017 8 21 7 53 3 548 4.7844 187.75366 604.46848 574.56050 -4.02787 0.00000 -2.10478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07748 0.20066 -1.00000 - 5875 2017 8 21 7 53 8 332 4.7844 187.75447 604.43319 574.53009 -4.02634 0.00000 -2.10436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07713 0.20066 -1.00000 - 5876 2017 8 21 7 53 13 117 4.7845 187.75522 604.39794 574.49970 -4.02418 0.00000 -2.10388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07679 0.20066 -1.00000 - 5877 2017 8 21 7 53 17 901 4.7845 187.75573 604.36273 574.46934 -4.02140 0.00000 -2.10339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07644 0.20065 -1.00000 - 5878 2017 8 21 7 53 22 686 4.7845 187.75616 604.32757 574.43901 -4.01802 0.00000 -2.10290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07609 0.20065 -1.00000 - 5879 2017 8 21 7 53 27 470 4.7846 187.75676 604.29248 574.40873 -4.01406 0.00000 -2.10244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07574 0.20065 -1.00000 - 5880 2017 8 21 7 53 32 255 4.7846 187.75753 604.25744 574.37846 -4.00957 0.00000 -2.10196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07540 0.20065 -1.00000 - 5881 2017 8 21 7 53 37 39 4.7846 187.75831 604.22245 574.34823 -4.00459 0.00000 -2.10142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07505 0.20065 -1.00000 - 5882 2017 8 21 7 53 41 824 4.7847 187.75890 604.18752 574.31804 -3.99916 0.00000 -2.10088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07470 0.20065 -1.00000 - 5883 2017 8 21 7 53 46 609 4.7847 187.75937 604.15266 574.28788 -3.99333 0.00000 -2.10034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07435 0.20065 -1.00000 - 5884 2017 8 21 7 53 51 394 4.7847 187.75994 604.11787 574.25776 -3.98717 0.00000 -2.09983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07400 0.20065 -1.00000 - 5885 2017 8 21 7 53 56 178 4.7848 187.76068 604.08315 574.22766 -3.98072 0.00000 -2.09936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07366 0.20065 -1.00000 - 5886 2017 8 21 7 54 0 963 4.7848 187.76143 604.04849 574.19760 -3.97487 0.00000 -2.09889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07331 0.20065 -1.00000 - 5887 2017 8 21 7 54 5 748 4.7848 187.76202 604.01388 574.16756 -3.96953 0.00000 -2.09838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07296 0.20065 -1.00000 - 5888 2017 8 21 7 54 10 533 4.7849 187.76245 603.97934 574.13755 -3.96417 0.00000 -2.09790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07261 0.20065 -1.00000 - 5889 2017 8 21 7 54 15 318 4.7849 187.76295 603.94486 574.10757 -3.95882 0.00000 -2.09745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07226 0.20065 -1.00000 - 5890 2017 8 21 7 54 20 103 4.7849 187.76367 603.91044 574.07761 -3.95353 0.00000 -2.09705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07192 0.20065 -1.00000 - 5891 2017 8 21 7 54 24 888 4.7850 187.76446 603.87607 574.04767 -3.94834 0.00000 -2.09668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07157 0.20065 -1.00000 - 5892 2017 8 21 7 54 29 673 4.7850 187.76513 603.84173 574.01774 -3.94328 0.00000 -2.09629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07122 0.20065 -1.00000 - 5893 2017 8 21 7 54 34 458 4.7850 187.76560 603.80744 573.98784 -3.93840 0.00000 -2.09593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07087 0.20065 -1.00000 - 5894 2017 8 21 7 54 39 243 4.7851 187.76606 603.77319 573.95795 -3.93373 0.00000 -2.09562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07052 0.20065 -1.00000 - 5895 2017 8 21 7 54 44 28 4.7851 187.76669 603.73898 573.92807 -3.92932 0.00000 -2.09537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07018 0.20065 -1.00000 - 5896 2017 8 21 7 54 48 813 4.7851 187.76741 603.70481 573.89821 -3.92521 0.00000 -2.09520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06983 0.20065 -1.00000 - 5897 2017 8 21 7 54 53 598 4.7852 187.76806 603.67067 573.86835 -3.92143 0.00000 -2.09507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06948 0.20065 -1.00000 - 5898 2017 8 21 7 54 58 383 4.7852 187.76854 603.63653 573.83850 -3.91802 0.00000 -2.09494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06913 0.20065 -1.00000 - 5899 2017 8 21 7 55 3 169 4.7853 187.76900 603.60241 573.80865 -3.91504 0.00000 -2.09486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06878 0.20065 -1.00000 - 5900 2017 8 21 7 55 7 954 4.7853 187.76963 603.56831 573.77881 -3.91252 0.00000 -2.09485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06844 0.20065 -1.00000 - 5901 2017 8 21 7 55 12 739 4.7853 187.77040 603.53423 573.74898 -3.91047 0.00000 -2.09492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06809 0.20065 -1.00000 - 5902 2017 8 21 7 55 17 525 4.7854 187.77111 603.50016 573.71914 -3.90892 0.00000 -2.09507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06774 0.20065 -1.00000 - 5903 2017 8 21 7 55 22 310 4.7854 187.77163 603.46608 573.68930 -3.90790 0.00000 -2.09521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06739 0.20065 -1.00000 - 5904 2017 8 21 7 55 27 95 4.7854 187.77204 603.43201 573.65946 -3.90744 0.00000 -2.09542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06704 0.20065 -1.00000 - 5905 2017 8 21 7 55 31 881 4.7855 187.77256 603.39794 573.62962 -3.90758 0.00000 -2.09570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06670 0.20065 -1.00000 - 5906 2017 8 21 7 55 36 666 4.7855 187.77322 603.36388 573.59978 -3.90835 0.00000 -2.09608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06635 0.20064 -1.00000 - 5907 2017 8 21 7 55 41 452 4.7855 187.77388 603.32982 573.56993 -3.90977 0.00000 -2.09655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06600 0.20064 -1.00000 - 5908 2017 8 21 7 55 46 238 4.7856 187.77440 603.29575 573.54008 -3.91189 0.00000 -2.09708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06565 0.20064 -1.00000 - 5909 2017 8 21 7 55 51 23 4.7856 187.77486 603.26166 573.51023 -3.91473 0.00000 -2.09762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06530 0.20064 -1.00000 - 5910 2017 8 21 7 55 55 809 4.7856 187.77543 603.22758 573.48038 -3.91830 0.00000 -2.09823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06496 0.20064 -1.00000 - 5911 2017 8 21 7 56 0 594 4.7857 187.77615 603.19349 573.45052 -3.92260 0.00000 -2.09891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06461 0.20064 -1.00000 - 5912 2017 8 21 7 56 5 380 4.7857 187.77687 603.15940 573.42066 -3.92763 0.00000 -2.09968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06426 0.20064 -1.00000 - 5913 2017 8 21 7 56 10 166 4.7857 187.77745 603.12531 573.39080 -3.93335 0.00000 -2.10051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06391 0.20064 -1.00000 - 5914 2017 8 21 7 56 14 952 4.7858 187.77788 603.09121 573.36094 -3.93974 0.00000 -2.10133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06356 0.20064 -1.00000 - 5915 2017 8 21 7 56 19 737 4.7858 187.77831 603.05710 573.33107 -3.94676 0.00000 -2.10219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06322 0.20064 -1.00000 - 5916 2017 8 21 7 56 24 523 4.7858 187.77887 603.02299 573.30121 -3.95437 0.00000 -2.10310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06287 0.20064 -1.00000 - 5917 2017 8 21 7 56 29 309 4.7859 187.77948 602.98889 573.27134 -3.96252 0.00000 -2.10406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06252 0.20064 -1.00000 - 5918 2017 8 21 7 56 34 95 4.7859 187.78003 602.95479 573.24148 -3.97116 0.00000 -2.10508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06217 0.20064 -1.00000 - 5919 2017 8 21 7 56 38 881 4.7860 187.78052 602.92069 573.21161 -3.98023 0.00000 -2.10610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06182 0.20064 -1.00000 - 5920 2017 8 21 7 56 43 667 4.7860 187.78107 602.88657 573.18175 -3.98965 0.00000 -2.10707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06148 0.20064 -1.00000 - 5921 2017 8 21 7 56 48 453 4.7860 187.78173 602.85246 573.15188 -3.99935 0.00000 -2.10805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06113 0.20064 -1.00000 - 5922 2017 8 21 7 56 53 239 4.7861 187.78243 602.81835 573.12201 -4.00922 0.00000 -2.10902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06078 0.20064 -1.00000 - 5923 2017 8 21 7 56 58 25 4.7861 187.78303 602.78424 573.09215 -4.01917 0.00000 -2.11000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06043 0.20064 -1.00000 - 5924 2017 8 21 7 57 2 811 4.7861 187.78346 602.75014 573.06229 -4.02909 0.00000 -2.11095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06008 0.20064 -1.00000 - 5925 2017 8 21 7 57 7 597 4.7862 187.78385 602.71602 573.03242 -4.03890 0.00000 -2.11181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05973 0.20064 -1.00000 - 5926 2017 8 21 7 57 12 384 4.7862 187.78432 602.68189 573.00255 -4.04850 0.00000 -2.11261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05939 0.20064 -1.00000 - 5927 2017 8 21 7 57 17 170 4.7862 187.78490 602.64777 572.97269 -4.05781 0.00000 -2.11337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05904 0.20064 -1.00000 - 5928 2017 8 21 7 57 21 956 4.7863 187.78550 602.61366 572.94283 -4.06817 0.00000 -2.11408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05869 0.20064 -1.00000 - 5929 2017 8 21 7 57 26 742 4.7863 187.78604 602.57954 572.91296 -4.07869 0.00000 -2.11474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05834 0.20064 -1.00000 - 5930 2017 8 21 7 57 31 529 4.7863 187.78654 602.54541 572.88310 -4.08864 0.00000 -2.11532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05799 0.20064 -1.00000 - 5931 2017 8 21 7 57 36 315 4.7864 187.78709 602.51126 572.85322 -4.09791 0.00000 -2.11574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05765 0.20064 -1.00000 - 5932 2017 8 21 7 57 41 102 4.7864 187.78771 602.47711 572.82335 -4.10640 0.00000 -2.11608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05730 0.20064 -1.00000 - 5933 2017 8 21 7 57 45 888 4.7864 187.78832 602.44295 572.79347 -4.11402 0.00000 -2.11633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05695 0.20064 -1.00000 - 5934 2017 8 21 7 57 50 675 4.7865 187.78881 602.40878 572.76360 -4.12067 0.00000 -2.11649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05660 0.20063 -1.00000 - 5935 2017 8 21 7 57 55 461 4.7865 187.78918 602.37460 572.73371 -4.12628 0.00000 -2.11656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05625 0.20063 -1.00000 - 5936 2017 8 21 7 58 0 248 4.7865 187.78957 602.34039 572.70382 -4.13216 0.00000 -2.11645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05591 0.20063 -1.00000 - 5937 2017 8 21 7 58 5 34 4.7866 187.79010 602.30615 572.67392 -4.13795 0.00000 -2.11620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05556 0.20063 -1.00000 - 5938 2017 8 21 7 58 9 821 4.7866 187.79072 602.27190 572.64402 -4.14240 0.00000 -2.11584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05521 0.20063 -1.00000 - 5939 2017 8 21 7 58 14 607 4.7867 187.79132 602.23763 572.61412 -4.14536 0.00000 -2.11538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05486 0.20063 -1.00000 - 5940 2017 8 21 7 58 19 394 4.7867 187.79183 602.20335 572.58421 -4.14675 0.00000 -2.11482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05451 0.20063 -1.00000 - 5941 2017 8 21 7 58 24 181 4.7867 187.79229 602.16904 572.55429 -4.14650 0.00000 -2.11414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05417 0.20063 -1.00000 - 5942 2017 8 21 7 58 28 968 4.7868 187.79280 602.13470 572.52436 -4.14461 0.00000 -2.11328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05382 0.20063 -1.00000 - 5943 2017 8 21 7 58 33 754 4.7868 187.79335 602.10033 572.49443 -4.14111 0.00000 -2.11228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05347 0.20063 -1.00000 - 5944 2017 8 21 7 58 38 541 4.7868 187.79389 602.06594 572.46449 -4.13605 0.00000 -2.11120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05312 0.20063 -1.00000 - 5945 2017 8 21 7 58 43 328 4.7869 187.79433 602.03154 572.43455 -4.12950 0.00000 -2.11002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05277 0.20063 -1.00000 - 5946 2017 8 21 7 58 48 115 4.7869 187.79470 601.99712 572.40461 -4.12154 0.00000 -2.10876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05243 0.20063 -1.00000 - 5947 2017 8 21 7 58 52 902 4.7869 187.79514 601.96268 572.37466 -4.11225 0.00000 -2.10738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05208 0.20063 -1.00000 - 5948 2017 8 21 7 58 57 689 4.7870 187.79570 601.92821 572.34470 -4.10173 0.00000 -2.10588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05173 0.20063 -1.00000 - 5949 2017 8 21 7 59 2 476 4.7870 187.79632 601.89373 572.31475 -4.09007 0.00000 -2.10432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05138 0.20063 -1.00000 - 5950 2017 8 21 7 59 7 263 4.7871 187.79688 601.85923 572.28479 -4.07738 0.00000 -2.10270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05103 0.20063 -1.00000 - 5951 2017 8 21 7 59 12 50 4.7871 187.79735 601.82473 572.25483 -4.06378 0.00000 -2.10105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05068 0.20063 -1.00000 - 5952 2017 8 21 7 59 16 837 4.7871 187.79778 601.79021 572.22487 -4.04940 0.00000 -2.09937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05034 0.20063 -1.00000 - 5953 2017 8 21 7 59 21 624 4.7872 187.79826 601.75567 572.19491 -4.03439 0.00000 -2.09760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04999 0.20063 -1.00000 - 5954 2017 8 21 7 59 26 412 4.7872 187.79878 601.72111 572.16494 -4.01891 0.00000 -2.09579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04964 0.20063 -1.00000 - 5955 2017 8 21 7 59 31 199 4.7872 187.79927 601.68655 572.13497 -4.00310 0.00000 -2.09399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04929 0.20063 -1.00000 - 5956 2017 8 21 7 59 35 986 4.7873 187.79966 601.65199 572.10501 -3.98733 0.00000 -2.09222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04894 0.20063 -1.00000 - 5957 2017 8 21 7 59 40 774 4.7873 187.80003 601.61742 572.07505 -3.97564 0.00000 -2.09047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04860 0.20063 -1.00000 - 5958 2017 8 21 7 59 45 561 4.7873 187.80050 601.58284 572.04509 -3.96412 0.00000 -2.08875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04825 0.20063 -1.00000 - 5959 2017 8 21 7 59 50 348 4.7874 187.80109 601.54824 572.01513 -3.95286 0.00000 -2.08700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04790 0.20063 -1.00000 - 5960 2017 8 21 7 59 55 136 4.7874 187.80170 601.51365 571.98517 -3.94192 0.00000 -2.08530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04755 0.20063 -1.00000 - 5961 2017 8 21 7 59 59 923 4.7875 187.80222 601.47905 571.95522 -3.93138 0.00000 -2.08365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04720 0.20063 -1.00000 - 5962 2017 8 21 8 0 4 711 4.7875 187.80266 601.44446 571.92527 -3.92130 0.00000 -2.08207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04685 0.20062 -1.00000 - 5963 2017 8 21 8 0 9 498 4.7875 187.80308 601.40988 571.89534 -3.91171 0.00000 -2.08058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04651 0.20062 -1.00000 - 5964 2017 8 21 8 0 14 286 4.7876 187.80354 601.37530 571.86540 -3.90259 0.00000 -2.07911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04616 0.20062 -1.00000 - 5965 2017 8 21 8 0 19 73 4.7876 187.80398 601.34072 571.83548 -3.89394 0.00000 -2.07769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04581 0.20062 -1.00000 - 5966 2017 8 21 8 0 23 861 4.7876 187.80436 601.30616 571.80557 -3.88577 0.00000 -2.07637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04546 0.20062 -1.00000 - 5967 2017 8 21 8 0 28 649 4.7877 187.80473 601.27163 571.77568 -3.87809 0.00000 -2.07515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04511 0.20062 -1.00000 - 5968 2017 8 21 8 0 33 436 4.7877 187.80518 601.23712 571.74580 -3.87094 0.00000 -2.07404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04477 0.20062 -1.00000 - 5969 2017 8 21 8 0 38 224 4.7878 187.80575 601.20263 571.71594 -3.86431 0.00000 -2.07303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04442 0.20062 -1.00000 - 5970 2017 8 21 8 0 43 12 4.7878 187.80635 601.16816 571.68609 -3.85828 0.00000 -2.07206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04407 0.20062 -1.00000 - 5971 2017 8 21 8 0 47 800 4.7878 187.80687 601.13372 571.65625 -3.85289 0.00000 -2.07119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04372 0.20062 -1.00000 - 5972 2017 8 21 8 0 52 588 4.7879 187.80732 601.09932 571.62643 -3.84819 0.00000 -2.07041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04337 0.20062 -1.00000 - 5973 2017 8 21 8 0 57 376 4.7879 187.80774 601.06495 571.59663 -3.84419 0.00000 -2.06974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04303 0.20062 -1.00000 - 5974 2017 8 21 8 1 2 163 4.7879 187.80813 601.03062 571.56685 -3.84092 0.00000 -2.06918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04268 0.20062 -1.00000 - 5975 2017 8 21 8 1 6 951 4.7880 187.80849 600.99632 571.53709 -3.83836 0.00000 -2.06870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04233 0.20062 -1.00000 - 5976 2017 8 21 8 1 11 739 4.7880 187.80884 600.96206 571.50735 -3.83649 0.00000 -2.06827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04198 0.20062 -1.00000 - 5977 2017 8 21 8 1 16 527 4.7880 187.80925 600.92783 571.47762 -3.83528 0.00000 -2.06792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04163 0.20062 -1.00000 - 5978 2017 8 21 8 1 21 316 4.7881 187.80974 600.89365 571.44792 -3.83467 0.00000 -2.06765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04128 0.20062 -1.00000 - 5979 2017 8 21 8 1 26 104 4.7881 187.81029 600.85951 571.41824 -3.83461 0.00000 -2.06748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04094 0.20062 -1.00000 - 5980 2017 8 21 8 1 30 892 4.7882 187.81081 600.82542 571.38857 -3.83502 0.00000 -2.06739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04059 0.20062 -1.00000 - 5981 2017 8 21 8 1 35 680 4.7882 187.81127 600.79136 571.35892 -3.83586 0.00000 -2.06735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04024 0.20062 -1.00000 - 5982 2017 8 21 8 1 40 468 4.7882 187.81172 600.75734 571.32929 -3.83706 0.00000 -2.06735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03989 0.20062 -1.00000 - 5983 2017 8 21 8 1 45 257 4.7883 187.81216 600.72337 571.29968 -3.83860 0.00000 -2.06741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03954 0.20062 -1.00000 - 5984 2017 8 21 8 1 50 45 4.7883 187.81255 600.68944 571.27008 -3.84043 0.00000 -2.06754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03919 0.20062 -1.00000 - 5985 2017 8 21 8 1 54 833 4.7883 187.81286 600.65555 571.24050 -3.84253 0.00000 -2.06774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03885 0.20062 -1.00000 - 5986 2017 8 21 8 1 59 622 4.7884 187.81316 600.62169 571.21094 -3.84487 0.00000 -2.06801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03850 0.20062 -1.00000 - 5987 2017 8 21 8 2 4 410 4.7884 187.81357 600.58787 571.18139 -3.84745 0.00000 -2.06829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03815 0.20062 -1.00000 - 5988 2017 8 21 8 2 9 198 4.7885 187.81410 600.55408 571.15184 -3.85025 0.00000 -2.06860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03780 0.20062 -1.00000 - 5989 2017 8 21 8 2 13 987 4.7885 187.81464 600.52032 571.12230 -3.85326 0.00000 -2.06895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03745 0.20062 -1.00000 - 5990 2017 8 21 8 2 18 775 4.7885 187.81509 600.48658 571.09278 -3.85647 0.00000 -2.06936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03711 0.20062 -1.00000 - 5991 2017 8 21 8 2 23 564 4.7886 187.81549 600.45287 571.06326 -3.85988 0.00000 -2.06982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03676 0.20061 -1.00000 - 5992 2017 8 21 8 2 28 353 4.7886 187.81591 600.41918 571.03374 -3.86348 0.00000 -2.07031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03641 0.20061 -1.00000 - 5993 2017 8 21 8 2 33 141 4.7886 187.81637 600.38550 571.00422 -3.86727 0.00000 -2.07082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03606 0.20061 -1.00000 - 5994 2017 8 21 8 2 37 930 4.7887 187.81679 600.35182 570.97470 -3.87123 0.00000 -2.07134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03571 0.20061 -1.00000 - 5995 2017 8 21 8 2 42 719 4.7887 187.81711 600.31815 570.94517 -3.87535 0.00000 -2.07190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03536 0.20061 -1.00000 - 5996 2017 8 21 8 2 47 507 4.7888 187.81740 600.28448 570.91565 -3.87961 0.00000 -2.07249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03502 0.20061 -1.00000 - 5997 2017 8 21 8 2 52 296 4.7888 187.81778 600.25080 570.88611 -3.88398 0.00000 -2.07311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03467 0.20061 -1.00000 - 5998 2017 8 21 8 2 57 85 4.7888 187.81828 600.21712 570.85657 -3.88844 0.00000 -2.07375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03432 0.20061 -1.00000 - 5999 2017 8 21 8 3 1 874 4.7889 187.81882 600.18341 570.82702 -3.89296 0.00000 -2.07440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03397 0.20061 -1.00000 - 6000 2017 8 21 8 3 6 663 4.7889 187.81928 600.14969 570.79746 -3.89753 0.00000 -2.07506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03362 0.20061 -1.00000 - 6001 2017 8 21 8 3 11 452 4.7890 187.81967 600.11594 570.76789 -3.90211 0.00000 -2.07574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03327 0.20061 -1.00000 - 6002 2017 8 21 8 3 16 241 4.7890 187.82007 600.08217 570.73830 -3.90668 0.00000 -2.07645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03293 0.20061 -1.00000 - 6003 2017 8 21 8 3 21 30 4.7890 187.82049 600.04837 570.70871 -3.91130 0.00000 -2.07717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03258 0.20061 -1.00000 - 6004 2017 8 21 8 3 25 819 4.7891 187.82087 600.01454 570.67910 -3.91612 0.00000 -2.07790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03223 0.20061 -1.00000 - 6005 2017 8 21 8 3 30 608 4.7891 187.82120 599.98068 570.64948 -3.92096 0.00000 -2.07862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03188 0.20061 -1.00000 - 6006 2017 8 21 8 3 35 397 4.7891 187.82151 599.94679 570.61985 -3.92582 0.00000 -2.07934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03153 0.20061 -1.00000 - 6007 2017 8 21 8 3 40 186 4.7892 187.82192 599.91287 570.59021 -3.93067 0.00000 -2.08007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03119 0.20061 -1.00000 - 6008 2017 8 21 8 3 44 976 4.7892 187.82241 599.87892 570.56057 -3.93548 0.00000 -2.08080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03084 0.20061 -1.00000 - 6009 2017 8 21 8 3 49 765 4.7893 187.82292 599.84495 570.53093 -3.94024 0.00000 -2.08154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03049 0.20061 -1.00000 - 6010 2017 8 21 8 3 54 554 4.7893 187.82336 599.81096 570.50128 -3.94494 0.00000 -2.08226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03014 0.20061 -1.00000 - 6011 2017 8 21 8 3 59 343 4.7893 187.82376 599.77695 570.47163 -3.94954 0.00000 -2.08295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02979 0.20061 -1.00000 - 6012 2017 8 21 8 4 4 133 4.7894 187.82416 599.74292 570.44198 -3.95404 0.00000 -2.08364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02944 0.20061 -1.00000 - 6013 2017 8 21 8 4 8 922 4.7894 187.82454 599.70889 570.41234 -3.95843 0.00000 -2.08432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02910 0.20061 -1.00000 - 6014 2017 8 21 8 4 13 712 4.7894 187.82487 599.67486 570.38271 -3.96268 0.00000 -2.08498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02875 0.20061 -1.00000 - 6015 2017 8 21 8 4 18 501 4.7895 187.82518 599.64083 570.35308 -3.96679 0.00000 -2.08562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02840 0.20061 -1.00000 - 6016 2017 8 21 8 4 23 291 4.7895 187.82554 599.60681 570.32347 -3.97075 0.00000 -2.08622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02805 0.20061 -1.00000 - 6017 2017 8 21 8 4 28 80 4.7896 187.82600 599.57280 570.29387 -3.97454 0.00000 -2.08679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02770 0.20061 -1.00000 - 6018 2017 8 21 8 4 32 870 4.7896 187.82650 599.53881 570.26429 -3.97816 0.00000 -2.08733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02735 0.20061 -1.00000 - 6019 2017 8 21 8 4 37 659 4.7896 187.82695 599.50485 570.23473 -3.98159 0.00000 -2.08784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02701 0.20060 -1.00000 - 6020 2017 8 21 8 4 42 449 4.7897 187.82734 599.47091 570.20518 -3.98484 0.00000 -2.08832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02666 0.20060 -1.00000 - 6021 2017 8 21 8 4 47 239 4.7897 187.82775 599.43700 570.17566 -3.98787 0.00000 -2.08875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02631 0.20060 -1.00000 - 6022 2017 8 21 8 4 52 29 4.7897 187.82817 599.40313 570.14615 -3.99069 0.00000 -2.08912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02596 0.20060 -1.00000 - 6023 2017 8 21 8 4 56 818 4.7898 187.82857 599.36928 570.11666 -3.99328 0.00000 -2.08944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02561 0.20060 -1.00000 - 6024 2017 8 21 8 5 1 608 4.7898 187.82887 599.33547 570.08720 -3.99563 0.00000 -2.08972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02526 0.20060 -1.00000 - 6025 2017 8 21 8 5 6 398 4.7899 187.82917 599.30170 570.05775 -3.99771 0.00000 -2.08996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02492 0.20060 -1.00000 - 6026 2017 8 21 8 5 11 188 4.7899 187.82956 599.26797 570.02832 -3.99950 0.00000 -2.09014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02457 0.20060 -1.00000 - 6027 2017 8 21 8 5 15 978 4.7899 187.83003 599.23426 569.99891 -4.00099 0.00000 -2.09026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02422 0.20060 -1.00000 - 6028 2017 8 21 8 5 20 768 4.7900 187.83050 599.20058 569.96952 -4.00214 0.00000 -2.09030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02387 0.20060 -1.00000 - 6029 2017 8 21 8 5 25 558 4.7900 187.83090 599.16694 569.94014 -4.00294 0.00000 -2.09029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02352 0.20060 -1.00000 - 6030 2017 8 21 8 5 30 348 4.7901 187.83126 599.13332 569.91077 -4.00336 0.00000 -2.09022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02317 0.20060 -1.00000 - 6031 2017 8 21 8 5 35 138 4.7901 187.83165 599.09972 569.88142 -4.00336 0.00000 -2.09010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02283 0.20060 -1.00000 - 6032 2017 8 21 8 5 39 928 4.7901 187.83203 599.06615 569.85208 -4.00293 0.00000 -2.08990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02248 0.20060 -1.00000 - 6033 2017 8 21 8 5 44 718 4.7902 187.83237 599.03260 569.82275 -4.00204 0.00000 -2.08963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02213 0.20060 -1.00000 - 6034 2017 8 21 8 5 49 509 4.7902 187.83263 598.99906 569.79343 -4.00066 0.00000 -2.08929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02178 0.20060 -1.00000 - 6035 2017 8 21 8 5 54 299 4.7902 187.83288 598.96554 569.76412 -3.99878 0.00000 -2.08889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02143 0.20060 -1.00000 - 6036 2017 8 21 8 5 59 89 4.7903 187.83324 598.93203 569.73482 -3.99639 0.00000 -2.08844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02108 0.20060 -1.00000 - 6037 2017 8 21 8 6 3 879 4.7903 187.83367 598.89853 569.70552 -3.99346 0.00000 -2.08793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02074 0.20060 -1.00000 - 6038 2017 8 21 8 6 8 670 4.7904 187.83410 598.86504 569.67623 -3.98999 0.00000 -2.08734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02039 0.20060 -1.00000 - 6039 2017 8 21 8 6 13 460 4.7904 187.83445 598.83155 569.64694 -3.98600 0.00000 -2.08668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02004 0.20060 -1.00000 - 6040 2017 8 21 8 6 18 251 4.7905 187.83478 598.79807 569.61765 -3.98147 0.00000 -2.08596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01969 0.20060 -1.00000 - 6041 2017 8 21 8 6 23 41 4.7905 187.83514 598.76459 569.58837 -3.97642 0.00000 -2.08520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01934 0.20060 -1.00000 - 6042 2017 8 21 8 6 27 832 4.7905 187.83549 598.73111 569.55908 -3.97088 0.00000 -2.08439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01899 0.20060 -1.00000 - 6043 2017 8 21 8 6 32 622 4.7906 187.83577 598.69763 569.52980 -3.96487 0.00000 -2.08354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01865 0.20060 -1.00000 - 6044 2017 8 21 8 6 37 413 4.7906 187.83599 598.66415 569.50051 -3.95842 0.00000 -2.08263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01830 0.20060 -1.00000 - 6045 2017 8 21 8 6 42 204 4.7906 187.83624 598.63065 569.47122 -3.95158 0.00000 -2.08167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01795 0.20060 -1.00000 - 6046 2017 8 21 8 6 46 994 4.7907 187.83659 598.59715 569.44193 -3.94439 0.00000 -2.08069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01760 0.20060 -1.00000 - 6047 2017 8 21 8 6 51 785 4.7907 187.83700 598.56365 569.41264 -3.93689 0.00000 -2.07968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01725 0.20060 -1.00000 - 6048 2017 8 21 8 6 56 576 4.7908 187.83738 598.53013 569.38334 -3.92915 0.00000 -2.07867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01690 0.20059 -1.00000 - 6049 2017 8 21 8 7 1 367 4.7908 187.83771 598.49659 569.35403 -3.92123 0.00000 -2.07763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01655 0.20059 -1.00000 - 6050 2017 8 21 8 7 6 157 4.7908 187.83803 598.46304 569.32472 -3.91320 0.00000 -2.07657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01621 0.20059 -1.00000 - 6051 2017 8 21 8 7 10 948 4.7909 187.83836 598.42948 569.29540 -3.90514 0.00000 -2.07550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01586 0.20059 -1.00000 - 6052 2017 8 21 8 7 15 739 4.7909 187.83867 598.39590 569.26607 -3.89712 0.00000 -2.07445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01551 0.20059 -1.00000 - 6053 2017 8 21 8 7 20 530 4.7910 187.83891 598.36230 569.23674 -3.88925 0.00000 -2.07342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01516 0.20059 -1.00000 - 6054 2017 8 21 8 7 25 321 4.7910 187.83911 598.32869 569.20741 -3.88228 0.00000 -2.07242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01481 0.20059 -1.00000 - 6055 2017 8 21 8 7 30 112 4.7910 187.83936 598.29506 569.17806 -3.87645 0.00000 -2.07142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01446 0.20059 -1.00000 - 6056 2017 8 21 8 7 34 903 4.7911 187.83972 598.26142 569.14872 -3.87098 0.00000 -2.07044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01412 0.20059 -1.00000 - 6057 2017 8 21 8 7 39 694 4.7911 187.84011 598.22776 569.11936 -3.86590 0.00000 -2.06950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01377 0.20059 -1.00000 - 6058 2017 8 21 8 7 44 485 4.7912 187.84046 598.19410 569.09001 -3.86124 0.00000 -2.06862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01342 0.20059 -1.00000 - 6059 2017 8 21 8 7 49 277 4.7912 187.84077 598.16042 569.06065 -3.85707 0.00000 -2.06779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01307 0.20059 -1.00000 - 6060 2017 8 21 8 7 54 68 4.7912 187.84109 598.12674 569.03128 -3.85345 0.00000 -2.06701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01272 0.20059 -1.00000 - 6061 2017 8 21 8 7 58 859 4.7913 187.84140 598.09305 569.00192 -3.85044 0.00000 -2.06627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01237 0.20059 -1.00000 - 6062 2017 8 21 8 8 3 651 4.7913 187.84167 598.05935 568.97255 -3.84807 0.00000 -2.06558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01203 0.20059 -1.00000 - 6063 2017 8 21 8 8 8 442 4.7914 187.84189 598.02565 568.94317 -3.84639 0.00000 -2.06495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01168 0.20059 -1.00000 - 6064 2017 8 21 8 8 13 233 4.7914 187.84212 597.99194 568.91380 -3.84539 0.00000 -2.06439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01133 0.20059 -1.00000 - 6065 2017 8 21 8 8 18 25 4.7914 187.84241 597.95823 568.88443 -3.84506 0.00000 -2.06389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01098 0.20059 -1.00000 - 6066 2017 8 21 8 8 22 816 4.7915 187.84278 597.92451 568.85505 -3.84537 0.00000 -2.06342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01063 0.20059 -1.00000 - 6067 2017 8 21 8 8 27 608 4.7915 187.84315 597.89079 568.82568 -3.84629 0.00000 -2.06300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01028 0.20059 -1.00000 - 6068 2017 8 21 8 8 32 399 4.7916 187.84347 597.85706 568.79630 -3.84776 0.00000 -2.06262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00993 0.20059 -1.00000 - 6069 2017 8 21 8 8 37 191 4.7916 187.84378 597.82333 568.76693 -3.84971 0.00000 -2.06230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00959 0.20059 -1.00000 - 6070 2017 8 21 8 8 41 982 4.7916 187.84410 597.78961 568.73755 -3.85206 0.00000 -2.06202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00924 0.20059 -1.00000 - 6071 2017 8 21 8 8 46 774 4.7917 187.84439 597.75588 568.70818 -3.85470 0.00000 -2.06178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00889 0.20059 -1.00000 - 6072 2017 8 21 8 8 51 566 4.7917 187.84463 597.72215 568.67881 -3.85756 0.00000 -2.06155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00854 0.20059 -1.00000 - 6073 2017 8 21 8 8 56 358 4.7918 187.84484 597.68842 568.64945 -3.86053 0.00000 -2.06133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00819 0.20059 -1.00000 - 6074 2017 8 21 8 9 1 149 4.7918 187.84509 597.65469 568.62009 -3.86420 0.00000 -2.06113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00784 0.20059 -1.00000 - 6075 2017 8 21 8 9 5 941 4.7918 187.84540 597.62098 568.59073 -3.86922 0.00000 -2.06095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00750 0.20059 -1.00000 - 6076 2017 8 21 8 9 10 733 4.7919 187.84575 597.58727 568.56138 -3.87416 0.00000 -2.06078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00715 0.20058 -1.00000 - 6077 2017 8 21 8 9 15 525 4.7919 187.84606 597.55357 568.53205 -3.87888 0.00000 -2.06061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00680 0.20058 -1.00000 - 6078 2017 8 21 8 9 20 317 4.7920 187.84635 597.51988 568.50271 -3.88327 0.00000 -2.06041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00645 0.20058 -1.00000 - 6079 2017 8 21 8 9 25 109 4.7920 187.84664 597.48621 568.47339 -3.88720 0.00000 -2.06020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00610 0.20058 -1.00000 - 6080 2017 8 21 8 9 29 901 4.7920 187.84694 597.45255 568.44408 -3.89061 0.00000 -2.05999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00575 0.20058 -1.00000 - 6081 2017 8 21 8 9 34 693 4.7921 187.84721 597.41891 568.41478 -3.89342 0.00000 -2.05977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00540 0.20058 -1.00000 - 6082 2017 8 21 8 9 39 485 4.7921 187.84744 597.38530 568.38549 -3.89561 0.00000 -2.05955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00506 0.20058 -1.00000 - 6083 2017 8 21 8 9 44 277 4.7921 187.84766 597.35170 568.35621 -3.89715 0.00000 -2.05929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00471 0.20058 -1.00000 - 6084 2017 8 21 8 9 49 70 4.7922 187.84791 597.31812 568.32694 -3.89806 0.00000 -2.05899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00436 0.20058 -1.00000 - 6085 2017 8 21 8 9 53 862 4.7922 187.84821 597.28456 568.29768 -3.89836 0.00000 -2.05868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00401 0.20058 -1.00000 - 6086 2017 8 21 8 9 58 654 4.7923 187.84854 597.25103 568.26844 -3.89809 0.00000 -2.05836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00366 0.20058 -1.00000 - 6087 2017 8 21 8 10 3 446 4.7923 187.84884 597.21752 568.23920 -3.89728 0.00000 -2.05804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00331 0.20058 -1.00000 - 6088 2017 8 21 8 10 8 239 4.7924 187.84912 597.18403 568.20998 -3.89603 0.00000 -2.05770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00297 0.20058 -1.00000 - 6089 2017 8 21 8 10 13 31 4.7924 187.84940 597.15056 568.18076 -3.89435 0.00000 -2.05732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00262 0.20058 -1.00000 - 6090 2017 8 21 8 10 17 824 4.7924 187.84967 597.11710 568.15155 -3.89228 0.00000 -2.05692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00227 0.20058 -1.00000 - 6091 2017 8 21 8 10 22 616 4.7925 187.84992 597.08365 568.12234 -3.88982 0.00000 -2.05652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00192 0.20058 -1.00000 - 6092 2017 8 21 8 10 27 408 4.7925 187.85015 597.05022 568.09314 -3.88702 0.00000 -2.05611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00157 0.20058 -1.00000 - 6093 2017 8 21 8 10 32 201 4.7925 187.85039 597.01680 568.06394 -3.88390 0.00000 -2.05571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00122 0.20058 -1.00000 - 6094 2017 8 21 8 10 36 994 4.7926 187.85064 596.98339 568.03474 -3.88049 0.00000 -2.05529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00087 0.20058 -1.00000 - 6095 2017 8 21 8 10 41 786 4.7926 187.85092 596.94997 568.00554 -3.87684 0.00000 -2.05485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00053 0.20058 -1.00000 - 6096 2017 8 21 8 10 46 579 4.7927 187.85120 596.91656 567.97634 -3.87298 0.00000 -2.05442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00018 0.20058 -1.00000 - 6097 2017 8 21 8 10 51 372 4.7927 187.85149 596.88314 567.94714 -3.86897 0.00000 -2.05400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99983 0.20058 -1.00000 - 6098 2017 8 21 8 10 56 164 4.7928 187.85179 596.84972 567.91793 -3.86484 0.00000 -2.05361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99948 0.20058 -1.00000 - 6099 2017 8 21 8 11 0 957 4.7928 187.85209 596.81629 567.88872 -3.86067 0.00000 -2.05324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99913 0.20058 -1.00000 - 6100 2017 8 21 8 11 5 750 4.7928 187.85235 596.78284 567.85950 -3.85649 0.00000 -2.05288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99878 0.20058 -1.00000 - 6101 2017 8 21 8 11 10 543 4.7929 187.85257 596.74938 567.83027 -3.85238 0.00000 -2.05252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99843 0.20058 -1.00000 - 6102 2017 8 21 8 11 15 336 4.7929 187.85278 596.71590 567.80104 -3.84839 0.00000 -2.05220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99809 0.20058 -1.00000 - 6103 2017 8 21 8 11 20 129 4.7929 187.85301 596.68241 567.77180 -3.84460 0.00000 -2.05193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99774 0.20058 -1.00000 - 6104 2017 8 21 8 11 24 922 4.7930 187.85327 596.64890 567.74256 -3.84105 0.00000 -2.05170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99739 0.20057 -1.00000 - 6105 2017 8 21 8 11 29 715 4.7930 187.85355 596.61537 567.71331 -3.83777 0.00000 -2.05151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99704 0.20057 -1.00000 - 6106 2017 8 21 8 11 34 508 4.7931 187.85381 596.58182 567.68406 -3.83477 0.00000 -2.05133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99669 0.20057 -1.00000 - 6107 2017 8 21 8 11 39 301 4.7931 187.85404 596.54824 567.65480 -3.83209 0.00000 -2.05119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99634 0.20057 -1.00000 - 6108 2017 8 21 8 11 44 94 4.7932 187.85429 596.51465 567.62555 -3.82974 0.00000 -2.05109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99599 0.20057 -1.00000 - 6109 2017 8 21 8 11 48 887 4.7932 187.85456 596.48106 567.59629 -3.82772 0.00000 -2.05104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99565 0.20057 -1.00000 - 6110 2017 8 21 8 11 53 681 4.7932 187.85481 596.44745 567.56704 -3.82606 0.00000 -2.05105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99530 0.20057 -1.00000 - 6111 2017 8 21 8 11 58 474 4.7933 187.85502 596.41383 567.53779 -3.82476 0.00000 -2.05109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99495 0.20057 -1.00000 - 6112 2017 8 21 8 12 3 267 4.7933 187.85520 596.38021 567.50855 -3.82383 0.00000 -2.05115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99460 0.20057 -1.00000 - 6113 2017 8 21 8 12 8 60 4.7934 187.85537 596.34659 567.47932 -3.82325 0.00000 -2.05124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99425 0.20057 -1.00000 - 6114 2017 8 21 8 12 12 854 4.7934 187.85558 596.31298 567.45011 -3.82303 0.00000 -2.05138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99390 0.20057 -1.00000 - 6115 2017 8 21 8 12 17 647 4.7934 187.85582 596.27939 567.42091 -3.82316 0.00000 -2.05157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99355 0.20057 -1.00000 - 6116 2017 8 21 8 12 22 441 4.7935 187.85607 596.24582 567.39172 -3.82363 0.00000 -2.05181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99321 0.20057 -1.00000 - 6117 2017 8 21 8 12 27 234 4.7935 187.85631 596.21228 567.36256 -3.82440 0.00000 -2.05206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99286 0.20057 -1.00000 - 6118 2017 8 21 8 12 32 28 4.7936 187.85652 596.17876 567.33342 -3.82548 0.00000 -2.05232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99251 0.20057 -1.00000 - 6119 2017 8 21 8 12 36 821 4.7936 187.85672 596.14528 567.30430 -3.82683 0.00000 -2.05261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99216 0.20057 -1.00000 - 6120 2017 8 21 8 12 41 615 4.7936 187.85690 596.11185 567.27521 -3.82844 0.00000 -2.05294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99181 0.20057 -1.00000 - 6121 2017 8 21 8 12 46 409 4.7937 187.85709 596.07847 567.24614 -3.83027 0.00000 -2.05330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99146 0.20057 -1.00000 - 6122 2017 8 21 8 12 51 202 4.7937 187.85727 596.04513 567.21710 -3.83231 0.00000 -2.05369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99111 0.20057 -1.00000 - 6123 2017 8 21 8 12 55 996 4.7938 187.85746 596.01184 567.18809 -3.83454 0.00000 -2.05407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99077 0.20057 -1.00000 - 6124 2017 8 21 8 13 0 790 4.7938 187.85763 595.97861 567.15910 -3.83693 0.00000 -2.05444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99042 0.20057 -1.00000 - 6125 2017 8 21 8 13 5 584 4.7938 187.85782 595.94543 567.13014 -3.83948 0.00000 -2.05483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99007 0.20057 -1.00000 - 6126 2017 8 21 8 13 10 378 4.7939 187.85802 595.91231 567.10121 -3.84215 0.00000 -2.05524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98972 0.20057 -1.00000 - 6127 2017 8 21 8 13 15 172 4.7939 187.85825 595.87924 567.07230 -3.84494 0.00000 -2.05566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98937 0.20057 -1.00000 - 6128 2017 8 21 8 13 19 966 4.7940 187.85848 595.84622 567.04342 -3.84783 0.00000 -2.05608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98902 0.20057 -1.00000 - 6129 2017 8 21 8 13 24 760 4.7940 187.85867 595.81325 567.01455 -3.85082 0.00000 -2.05647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98867 0.20057 -1.00000 - 6130 2017 8 21 8 13 29 554 4.7940 187.85883 595.78033 566.98571 -3.85388 0.00000 -2.05685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98833 0.20057 -1.00000 - 6131 2017 8 21 8 13 34 348 4.7941 187.85896 595.74745 566.95688 -3.85701 0.00000 -2.05722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98798 0.20057 -1.00000 - 6132 2017 8 21 8 13 39 142 4.7941 187.85910 595.71461 566.92807 -3.86019 0.00000 -2.05761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98763 0.20057 -1.00000 - 6133 2017 8 21 8 13 43 936 4.7942 187.85927 595.68181 566.89927 -3.86340 0.00000 -2.05799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98728 0.20056 -1.00000 - 6134 2017 8 21 8 13 48 730 4.7942 187.85946 595.64904 566.87047 -3.86661 0.00000 -2.05833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98693 0.20056 -1.00000 - 6135 2017 8 21 8 13 53 525 4.7942 187.85965 595.61628 566.84169 -3.86980 0.00000 -2.05863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98658 0.20056 -1.00000 - 6136 2017 8 21 8 13 58 319 4.7943 187.85983 595.58354 566.81290 -3.87293 0.00000 -2.05891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98623 0.20056 -1.00000 - 6137 2017 8 21 8 14 3 113 4.7943 187.86000 595.55081 566.78412 -3.87597 0.00000 -2.05917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98588 0.20056 -1.00000 - 6138 2017 8 21 8 14 7 907 4.7944 187.86018 595.51810 566.75534 -3.87889 0.00000 -2.05943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98554 0.20056 -1.00000 - 6139 2017 8 21 8 14 12 702 4.7944 187.86036 595.48538 566.72655 -3.88166 0.00000 -2.05967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98519 0.20056 -1.00000 - 6140 2017 8 21 8 14 17 496 4.7944 187.86052 595.45265 566.69776 -3.88423 0.00000 -2.05986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98484 0.20056 -1.00000 - 6141 2017 8 21 8 14 22 291 4.7945 187.86066 595.41990 566.66895 -3.88657 0.00000 -2.05999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98449 0.20056 -1.00000 - 6142 2017 8 21 8 14 27 85 4.7945 187.86079 595.38714 566.64014 -3.88866 0.00000 -2.06010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98414 0.20056 -1.00000 - 6143 2017 8 21 8 14 31 880 4.7946 187.86091 595.35435 566.61131 -3.89046 0.00000 -2.06020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98379 0.20056 -1.00000 - 6144 2017 8 21 8 14 36 675 4.7946 187.86106 595.32154 566.58248 -3.89195 0.00000 -2.06028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98344 0.20056 -1.00000 - 6145 2017 8 21 8 14 41 469 4.7947 187.86123 595.28870 566.55363 -3.89311 0.00000 -2.06033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98310 0.20056 -1.00000 - 6146 2017 8 21 8 14 46 264 4.7947 187.86140 595.25582 566.52476 -3.89391 0.00000 -2.06032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98275 0.20056 -1.00000 - 6147 2017 8 21 8 14 51 59 4.7947 187.86157 595.22290 566.49588 -3.89437 0.00000 -2.06027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98240 0.20056 -1.00000 - 6148 2017 8 21 8 14 55 853 4.7948 187.86171 595.18995 566.46699 -3.89446 0.00000 -2.06020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98205 0.20056 -1.00000 - 6149 2017 8 21 8 15 0 648 4.7948 187.86185 595.15698 566.43808 -3.89420 0.00000 -2.06012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98170 0.20056 -1.00000 - 6150 2017 8 21 8 15 5 443 4.7949 187.86199 595.12397 566.40917 -3.89361 0.00000 -2.06003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98135 0.20056 -1.00000 - 6151 2017 8 21 8 15 10 238 4.7949 187.86212 595.09092 566.38024 -3.89270 0.00000 -2.05991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98100 0.20056 -1.00000 - 6152 2017 8 21 8 15 15 33 4.7949 187.86225 595.05785 566.35130 -3.89150 0.00000 -2.05973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98065 0.20056 -1.00000 - 6153 2017 8 21 8 15 19 828 4.7950 187.86238 595.02474 566.32235 -3.89005 0.00000 -2.05953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98031 0.20056 -1.00000 - 6154 2017 8 21 8 15 24 623 4.7950 187.86250 594.99161 566.29340 -3.88841 0.00000 -2.05933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97996 0.20056 -1.00000 - 6155 2017 8 21 8 15 29 418 4.7951 187.86262 594.95846 566.26445 -3.88661 0.00000 -2.05913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97961 0.20056 -1.00000 - 6156 2017 8 21 8 15 34 213 4.7951 187.86276 594.92530 566.23549 -3.88472 0.00000 -2.05893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97926 0.20056 -1.00000 - 6157 2017 8 21 8 15 39 8 4.7951 187.86292 594.89211 566.20653 -3.88279 0.00000 -2.05870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97891 0.20056 -1.00000 - 6158 2017 8 21 8 15 43 803 4.7952 187.86306 594.85891 566.17756 -3.88088 0.00000 -2.05844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97856 0.20056 -1.00000 - 6159 2017 8 21 8 15 48 599 4.7952 187.86319 594.82570 566.14860 -3.87906 0.00000 -2.05817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97821 0.20056 -1.00000 - 6160 2017 8 21 8 15 53 394 4.7953 187.86331 594.79250 566.11964 -3.87739 0.00000 -2.05792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97786 0.20056 -1.00000 - 6161 2017 8 21 8 15 58 189 4.7953 187.86341 594.75929 566.09069 -3.87592 0.00000 -2.05768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97752 0.20055 -1.00000 - 6162 2017 8 21 8 16 2 985 4.7954 187.86352 594.72609 566.06174 -3.87470 0.00000 -2.05745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97717 0.20055 -1.00000 - 6163 2017 8 21 8 16 7 780 4.7954 187.86364 594.69289 566.03280 -3.87379 0.00000 -2.05719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97682 0.20055 -1.00000 - 6164 2017 8 21 8 16 12 575 4.7954 187.86377 594.65969 566.00386 -3.87322 0.00000 -2.05690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97647 0.20055 -1.00000 - 6165 2017 8 21 8 16 17 371 4.7955 187.86390 594.62651 565.97493 -3.87300 0.00000 -2.05663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97612 0.20055 -1.00000 - 6166 2017 8 21 8 16 22 166 4.7955 187.86402 594.59334 565.94601 -3.87317 0.00000 -2.05637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97577 0.20055 -1.00000 - 6167 2017 8 21 8 16 26 962 4.7956 187.86414 594.56019 565.91709 -3.87371 0.00000 -2.05613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97542 0.20055 -1.00000 - 6168 2017 8 21 8 16 31 758 4.7956 187.86426 594.52706 565.88819 -3.87462 0.00000 -2.05588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97507 0.20055 -1.00000 - 6169 2017 8 21 8 16 36 553 4.7956 187.86438 594.49393 565.85929 -3.87586 0.00000 -2.05559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97473 0.20055 -1.00000 - 6170 2017 8 21 8 16 41 349 4.7957 187.86449 594.46081 565.83040 -3.87741 0.00000 -2.05528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97438 0.20055 -1.00000 - 6171 2017 8 21 8 16 46 145 4.7957 187.86459 594.42771 565.80152 -3.87920 0.00000 -2.05496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97403 0.20055 -1.00000 - 6172 2017 8 21 8 16 50 940 4.7958 187.86469 594.39464 565.77265 -3.88117 0.00000 -2.05466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97368 0.20055 -1.00000 - 6173 2017 8 21 8 16 55 736 4.7958 187.86478 594.36158 565.74379 -3.88325 0.00000 -2.05434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97333 0.20055 -1.00000 - 6174 2017 8 21 8 17 0 532 4.7959 187.86488 594.32854 565.71494 -3.88533 0.00000 -2.05399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97298 0.20055 -1.00000 - 6175 2017 8 21 8 17 5 328 4.7959 187.86499 594.29550 565.68609 -3.88733 0.00000 -2.05357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97263 0.20055 -1.00000 - 6176 2017 8 21 8 17 10 124 4.7959 187.86511 594.26248 565.65725 -3.88916 0.00000 -2.05312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97228 0.20055 -1.00000 - 6177 2017 8 21 8 17 14 920 4.7960 187.86522 594.22947 565.62842 -3.89071 0.00000 -2.05265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97194 0.20055 -1.00000 - 6178 2017 8 21 8 17 19 716 4.7960 187.86532 594.19649 565.59959 -3.89188 0.00000 -2.05217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97159 0.20055 -1.00000 - 6179 2017 8 21 8 17 24 512 4.7961 187.86541 594.16351 565.57077 -3.89261 0.00000 -2.05165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97124 0.20055 -1.00000 - 6180 2017 8 21 8 17 29 308 4.7961 187.86549 594.13054 565.54196 -3.89280 0.00000 -2.05107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97089 0.20055 -1.00000 - 6181 2017 8 21 8 17 34 104 4.7961 187.86557 594.09758 565.51314 -3.89239 0.00000 -2.05042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97054 0.20055 -1.00000 - 6182 2017 8 21 8 17 38 900 4.7962 187.86566 594.06461 565.48433 -3.89134 0.00000 -2.04974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97019 0.20055 -1.00000 - 6183 2017 8 21 8 17 43 697 4.7962 187.86575 594.03166 565.45552 -3.88960 0.00000 -2.04904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96984 0.20055 -1.00000 - 6184 2017 8 21 8 17 48 493 4.7963 187.86583 593.99871 565.42672 -3.88716 0.00000 -2.04831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96949 0.20055 -1.00000 - 6185 2017 8 21 8 17 53 289 4.7963 187.86592 593.96575 565.39791 -3.88400 0.00000 -2.04755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96915 0.20055 -1.00000 - 6186 2017 8 21 8 17 58 86 4.7964 187.86601 593.93279 565.36911 -3.88011 0.00000 -2.04673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96880 0.20055 -1.00000 - 6187 2017 8 21 8 18 2 882 4.7964 187.86610 593.89981 565.34030 -3.87552 0.00000 -2.04585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96845 0.20055 -1.00000 - 6188 2017 8 21 8 18 7 678 4.7964 187.86619 593.86683 565.31149 -3.87024 0.00000 -2.04497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96810 0.20055 -1.00000 - 6189 2017 8 21 8 18 12 475 4.7965 187.86626 593.83385 565.28268 -3.86436 0.00000 -2.04408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96775 0.20055 -1.00000 - 6190 2017 8 21 8 18 17 271 4.7965 187.86633 593.80086 565.25387 -3.85794 0.00000 -2.04319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96740 0.20054 -1.00000 - 6191 2017 8 21 8 18 22 68 4.7966 187.86639 593.76786 565.22506 -3.85101 0.00000 -2.04228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96705 0.20054 -1.00000 - 6192 2017 8 21 8 18 26 865 4.7966 187.86646 593.73484 565.19624 -3.84363 0.00000 -2.04133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96670 0.20054 -1.00000 - 6193 2017 8 21 8 18 31 661 4.7967 187.86653 593.70180 565.16743 -3.83590 0.00000 -2.04036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96636 0.20054 -1.00000 - 6194 2017 8 21 8 18 36 458 4.7967 187.86660 593.66877 565.13861 -3.82787 0.00000 -2.03942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96601 0.20054 -1.00000 - 6195 2017 8 21 8 18 41 255 4.7967 187.86668 593.63573 565.10980 -3.81966 0.00000 -2.03851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96566 0.20054 -1.00000 - 6196 2017 8 21 8 18 46 51 4.7968 187.86675 593.60268 565.08098 -3.81137 0.00000 -2.03764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96531 0.20054 -1.00000 - 6197 2017 8 21 8 18 50 848 4.7968 187.86681 593.56962 565.05217 -3.80310 0.00000 -2.03677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96496 0.20054 -1.00000 - 6198 2017 8 21 8 18 55 645 4.7969 187.86688 593.53656 565.02335 -3.79497 0.00000 -2.03591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96461 0.20054 -1.00000 - 6199 2017 8 21 8 19 0 442 4.7969 187.86693 593.50349 564.99454 -3.78710 0.00000 -2.03508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96426 0.20054 -1.00000 - 6200 2017 8 21 8 19 5 239 4.7970 187.86698 593.47043 564.96574 -3.77960 0.00000 -2.03434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96391 0.20054 -1.00000 - 6201 2017 8 21 8 19 10 36 4.7970 187.86703 593.43738 564.93694 -3.77262 0.00000 -2.03367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96356 0.20054 -1.00000 - 6202 2017 8 21 8 19 14 833 4.7970 187.86708 593.40433 564.90815 -3.76627 0.00000 -2.03307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96322 0.20054 -1.00000 - 6203 2017 8 21 8 19 19 630 4.7971 187.86713 593.37129 564.87936 -3.76064 0.00000 -2.03250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96287 0.20054 -1.00000 - 6204 2017 8 21 8 19 24 427 4.7971 187.86718 593.33825 564.85058 -3.75580 0.00000 -2.03197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96252 0.20054 -1.00000 - 6205 2017 8 21 8 19 29 224 4.7972 187.86723 593.30523 564.82181 -3.75318 0.00000 -2.03152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96217 0.20054 -1.00000 - 6206 2017 8 21 8 19 34 22 4.7972 187.86729 593.27223 564.79305 -3.75125 0.00000 -2.03117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96182 0.20054 -1.00000 - 6207 2017 8 21 8 19 38 819 4.7973 187.86733 593.23926 564.76431 -3.74997 0.00000 -2.03091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96147 0.20054 -1.00000 - 6208 2017 8 21 8 19 43 616 4.7973 187.86737 593.20631 564.73558 -3.74931 0.00000 -2.03070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96112 0.20054 -1.00000 - 6209 2017 8 21 8 19 48 414 4.7973 187.86741 593.17337 564.70685 -3.74924 0.00000 -2.03053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96077 0.20054 -1.00000 - 6210 2017 8 21 8 19 53 211 4.7974 187.86744 593.14045 564.67814 -3.74974 0.00000 -2.03039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96042 0.20054 -1.00000 - 6211 2017 8 21 8 19 58 8 4.7974 187.86746 593.10756 564.64944 -3.75076 0.00000 -2.03034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96008 0.20054 -1.00000 - 6212 2017 8 21 8 20 2 806 4.7975 187.86749 593.07470 564.62075 -3.75225 0.00000 -2.03037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95973 0.20054 -1.00000 - 6213 2017 8 21 8 20 7 603 4.7975 187.86752 593.04188 564.59208 -3.75417 0.00000 -2.03048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95938 0.20054 -1.00000 - 6214 2017 8 21 8 20 12 401 4.7976 187.86755 593.00907 564.56342 -3.75644 0.00000 -2.03060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95903 0.20054 -1.00000 - 6215 2017 8 21 8 20 17 199 4.7976 187.86759 592.97628 564.53477 -3.75899 0.00000 -2.03073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95868 0.20054 -1.00000 - 6216 2017 8 21 8 20 21 996 4.7976 187.86762 592.94351 564.50613 -3.76174 0.00000 -2.03088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95833 0.20054 -1.00000 - 6217 2017 8 21 8 20 26 794 4.7977 187.86764 592.91077 564.47751 -3.76559 0.00000 -2.03109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95798 0.20054 -1.00000 - 6218 2017 8 21 8 20 31 592 4.7977 187.86766 592.87806 564.44890 -3.77037 0.00000 -2.03135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95763 0.20053 -1.00000 - 6219 2017 8 21 8 20 36 389 4.7978 187.86768 592.84537 564.42029 -3.77526 0.00000 -2.03163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95728 0.20053 -1.00000 - 6220 2017 8 21 8 20 41 187 4.7978 187.86769 592.81270 564.39170 -3.78016 0.00000 -2.03189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95694 0.20053 -1.00000 - 6221 2017 8 21 8 20 45 985 4.7979 187.86770 592.78004 564.36311 -3.78496 0.00000 -2.03213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95659 0.20053 -1.00000 - 6222 2017 8 21 8 20 50 783 4.7979 187.86772 592.74740 564.33453 -3.78958 0.00000 -2.03238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95624 0.20053 -1.00000 - 6223 2017 8 21 8 20 55 581 4.7979 187.86773 592.71479 564.30596 -3.79394 0.00000 -2.03266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95589 0.20053 -1.00000 - 6224 2017 8 21 8 21 0 379 4.7980 187.86775 592.68220 564.27741 -3.79801 0.00000 -2.03295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95554 0.20053 -1.00000 - 6225 2017 8 21 8 21 5 177 4.7980 187.86776 592.64963 564.24885 -3.80176 0.00000 -2.03324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95519 0.20053 -1.00000 - 6226 2017 8 21 8 21 9 975 4.7981 187.86778 592.61706 564.22030 -3.80517 0.00000 -2.03347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95484 0.20053 -1.00000 - 6227 2017 8 21 8 21 14 773 4.7981 187.86778 592.58450 564.19176 -3.80823 0.00000 -2.03368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95449 0.20053 -1.00000 - 6228 2017 8 21 8 21 19 571 4.7982 187.86779 592.55196 564.16322 -3.81095 0.00000 -2.03389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95414 0.20053 -1.00000 - 6229 2017 8 21 8 21 24 369 4.7982 187.86779 592.51943 564.13469 -3.81333 0.00000 -2.03412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95380 0.20053 -1.00000 - 6230 2017 8 21 8 21 29 168 4.7983 187.86779 592.48692 564.10616 -3.81539 0.00000 -2.03436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95345 0.20053 -1.00000 - 6231 2017 8 21 8 21 33 966 4.7983 187.86778 592.45440 564.07763 -3.81715 0.00000 -2.03457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95310 0.20053 -1.00000 - 6232 2017 8 21 8 21 38 764 4.7983 187.86778 592.42188 564.04909 -3.81864 0.00000 -2.03473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95275 0.20053 -1.00000 - 6233 2017 8 21 8 21 43 563 4.7984 187.86778 592.38935 564.02055 -3.81988 0.00000 -2.03487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95240 0.20053 -1.00000 - 6234 2017 8 21 8 21 48 361 4.7984 187.86778 592.35682 563.99202 -3.82089 0.00000 -2.03502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95205 0.20053 -1.00000 - 6235 2017 8 21 8 21 53 160 4.7985 187.86778 592.32429 563.96348 -3.82169 0.00000 -2.03519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95170 0.20053 -1.00000 - 6236 2017 8 21 8 21 57 958 4.7985 187.86778 592.29176 563.93494 -3.82231 0.00000 -2.03536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95135 0.20053 -1.00000 - 6237 2017 8 21 8 22 2 757 4.7986 187.86777 592.25921 563.90639 -3.82278 0.00000 -2.03550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95100 0.20053 -1.00000 - 6238 2017 8 21 8 22 7 555 4.7986 187.86776 592.22664 563.87784 -3.82311 0.00000 -2.03560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95065 0.20053 -1.00000 - 6239 2017 8 21 8 22 12 354 4.7987 187.86774 592.19405 563.84928 -3.82333 0.00000 -2.03570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95031 0.20053 -1.00000 - 6240 2017 8 21 8 22 17 153 4.7987 187.86773 592.16146 563.82072 -3.82347 0.00000 -2.03583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94996 0.20053 -1.00000 - 6241 2017 8 21 8 22 21 951 4.7987 187.86772 592.12886 563.79215 -3.82357 0.00000 -2.03597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94961 0.20053 -1.00000 - 6242 2017 8 21 8 22 26 750 4.7988 187.86770 592.09624 563.76358 -3.82365 0.00000 -2.03612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94926 0.20053 -1.00000 - 6243 2017 8 21 8 22 31 549 4.7988 187.86769 592.06359 563.73501 -3.82374 0.00000 -2.03623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94891 0.20053 -1.00000 - 6244 2017 8 21 8 22 36 348 4.7989 187.86767 592.03093 563.70643 -3.82387 0.00000 -2.03632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94856 0.20053 -1.00000 - 6245 2017 8 21 8 22 41 147 4.7989 187.86766 591.99825 563.67784 -3.82406 0.00000 -2.03643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94821 0.20053 -1.00000 - 6246 2017 8 21 8 22 45 946 4.7990 187.86764 591.96558 563.64926 -3.82433 0.00000 -2.03657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94786 0.20052 -1.00000 - 6247 2017 8 21 8 22 50 745 4.7990 187.86761 591.93289 563.62068 -3.82468 0.00000 -2.03673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94751 0.20052 -1.00000 - 6248 2017 8 21 8 22 55 544 4.7991 187.86758 591.90020 563.59210 -3.82513 0.00000 -2.03688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94717 0.20052 -1.00000 - 6249 2017 8 21 8 23 0 343 4.7991 187.86756 591.86749 563.56352 -3.82569 0.00000 -2.03698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94682 0.20052 -1.00000 - 6250 2017 8 21 8 23 5 142 4.7991 187.86753 591.83477 563.53494 -3.82637 0.00000 -2.03708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94647 0.20052 -1.00000 - 6251 2017 8 21 8 23 9 941 4.7992 187.86750 591.80206 563.50637 -3.82716 0.00000 -2.03720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94612 0.20052 -1.00000 - 6252 2017 8 21 8 23 14 741 4.7992 187.86747 591.76935 563.47781 -3.82806 0.00000 -2.03734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94577 0.20052 -1.00000 - 6253 2017 8 21 8 23 19 540 4.7993 187.86745 591.73666 563.44925 -3.82906 0.00000 -2.03750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94542 0.20052 -1.00000 - 6254 2017 8 21 8 23 24 339 4.7993 187.86742 591.70396 563.42070 -3.83015 0.00000 -2.03762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94507 0.20052 -1.00000 - 6255 2017 8 21 8 23 29 139 4.7994 187.86738 591.67127 563.39215 -3.83133 0.00000 -2.03769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94472 0.20052 -1.00000 - 6256 2017 8 21 8 23 33 938 4.7994 187.86735 591.63858 563.36362 -3.83256 0.00000 -2.03775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94437 0.20052 -1.00000 - 6257 2017 8 21 8 23 38 737 4.7995 187.86731 591.60592 563.33510 -3.83384 0.00000 -2.03784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94402 0.20052 -1.00000 - 6258 2017 8 21 8 23 43 537 4.7995 187.86727 591.57329 563.30659 -3.83513 0.00000 -2.03795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94367 0.20052 -1.00000 - 6259 2017 8 21 8 23 48 336 4.7995 187.86723 591.54067 563.27810 -3.83642 0.00000 -2.03803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94333 0.20052 -1.00000 - 6260 2017 8 21 8 23 53 136 4.7996 187.86718 591.50806 563.24961 -3.83767 0.00000 -2.03805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94298 0.20052 -1.00000 - 6261 2017 8 21 8 23 57 936 4.7996 187.86714 591.47546 563.22114 -3.83885 0.00000 -2.03803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94263 0.20052 -1.00000 - 6262 2017 8 21 8 24 2 735 4.7997 187.86710 591.44290 563.19268 -3.83994 0.00000 -2.03801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94228 0.20052 -1.00000 - 6263 2017 8 21 8 24 7 535 4.7997 187.86706 591.41037 563.16425 -3.84091 0.00000 -2.03800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94193 0.20052 -1.00000 - 6264 2017 8 21 8 24 12 335 4.7998 187.86701 591.37787 563.13582 -3.84173 0.00000 -2.03798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94158 0.20052 -1.00000 - 6265 2017 8 21 8 24 17 135 4.7998 187.86696 591.34539 563.10741 -3.84237 0.00000 -2.03792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94123 0.20052 -1.00000 - 6266 2017 8 21 8 24 21 935 4.7999 187.86691 591.31293 563.07900 -3.84282 0.00000 -2.03777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94088 0.20052 -1.00000 - 6267 2017 8 21 8 24 26 735 4.7999 187.86686 591.28049 563.05061 -3.84305 0.00000 -2.03759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94053 0.20052 -1.00000 - 6268 2017 8 21 8 24 31 534 4.8000 187.86681 591.24808 563.02224 -3.84304 0.00000 -2.03742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94018 0.20052 -1.00000 - 6269 2017 8 21 8 24 36 334 4.8000 187.86675 591.21571 562.99388 -3.84277 0.00000 -2.03724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93984 0.20052 -1.00000 - 6270 2017 8 21 8 24 41 134 4.8000 187.86670 591.18336 562.96553 -3.84225 0.00000 -2.03705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93949 0.20052 -1.00000 - 6271 2017 8 21 8 24 45 935 4.8001 187.86664 591.15102 562.93718 -3.84146 0.00000 -2.03677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93914 0.20052 -1.00000 - 6272 2017 8 21 8 24 50 735 4.8001 187.86659 591.11870 562.90884 -3.84040 0.00000 -2.03643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93879 0.20052 -1.00000 - 6273 2017 8 21 8 24 55 535 4.8002 187.86653 591.08639 562.88051 -3.83907 0.00000 -2.03607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93844 0.20052 -1.00000 - 6274 2017 8 21 8 25 0 335 4.8002 187.86647 591.05410 562.85218 -3.83748 0.00000 -2.03573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93809 0.20052 -1.00000 - 6275 2017 8 21 8 25 5 135 4.8003 187.86640 591.02182 562.82385 -3.83563 0.00000 -2.03539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93774 0.20051 -1.00000 - 6276 2017 8 21 8 25 9 936 4.8003 187.86634 590.98955 562.79553 -3.83354 0.00000 -2.03501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93739 0.20051 -1.00000 - 6277 2017 8 21 8 25 14 736 4.8004 187.86627 590.95726 562.76719 -3.83123 0.00000 -2.03455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93704 0.20051 -1.00000 - 6278 2017 8 21 8 25 19 536 4.8004 187.86620 590.92496 562.73886 -3.82870 0.00000 -2.03405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93669 0.20051 -1.00000 - 6279 2017 8 21 8 25 24 337 4.8005 187.86614 590.89266 562.71052 -3.82599 0.00000 -2.03356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93634 0.20051 -1.00000 - 6280 2017 8 21 8 25 29 137 4.8005 187.86607 590.86035 562.68218 -3.82310 0.00000 -2.03310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93600 0.20051 -1.00000 - 6281 2017 8 21 8 25 33 938 4.8005 187.86600 590.82804 562.65383 -3.82006 0.00000 -2.03264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93565 0.20051 -1.00000 - 6282 2017 8 21 8 25 38 739 4.8006 187.86593 590.79570 562.62547 -3.81689 0.00000 -2.03213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93530 0.20051 -1.00000 - 6283 2017 8 21 8 25 43 539 4.8006 187.86586 590.76333 562.59710 -3.81361 0.00000 -2.03157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93495 0.20051 -1.00000 - 6284 2017 8 21 8 25 48 340 4.8007 187.86578 590.73094 562.56872 -3.81025 0.00000 -2.03100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93460 0.20051 -1.00000 - 6285 2017 8 21 8 25 53 141 4.8007 187.86570 590.69853 562.54034 -3.80682 0.00000 -2.03048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93425 0.20051 -1.00000 - 6286 2017 8 21 8 25 57 941 4.8008 187.86563 590.66612 562.51196 -3.80335 0.00000 -2.02999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93390 0.20051 -1.00000 - 6287 2017 8 21 8 26 2 742 4.8008 187.86555 590.63367 562.48356 -3.79986 0.00000 -2.02950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93355 0.20051 -1.00000 - 6288 2017 8 21 8 26 7 543 4.8009 187.86547 590.60120 562.45516 -3.79637 0.00000 -2.02895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93320 0.20051 -1.00000 - 6289 2017 8 21 8 26 12 344 4.8009 187.86539 590.56869 562.42674 -3.79291 0.00000 -2.02839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93285 0.20051 -1.00000 - 6290 2017 8 21 8 26 17 145 4.8010 187.86531 590.53618 562.39833 -3.78951 0.00000 -2.02787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93250 0.20051 -1.00000 - 6291 2017 8 21 8 26 21 946 4.8010 187.86522 590.50366 562.36992 -3.78619 0.00000 -2.02741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93216 0.20051 -1.00000 - 6292 2017 8 21 8 26 26 747 4.8010 187.86514 590.47113 562.34150 -3.78297 0.00000 -2.02699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93181 0.20051 -1.00000 - 6293 2017 8 21 8 26 31 548 4.8011 187.86505 590.43858 562.31309 -3.77990 0.00000 -2.02654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93146 0.20051 -1.00000 - 6294 2017 8 21 8 26 36 349 4.8011 187.86496 590.40602 562.28466 -3.77700 0.00000 -2.02606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93111 0.20051 -1.00000 - 6295 2017 8 21 8 26 41 150 4.8012 187.86487 590.37344 562.25625 -3.77431 0.00000 -2.02561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93076 0.20051 -1.00000 - 6296 2017 8 21 8 26 45 952 4.8012 187.86478 590.34088 562.22784 -3.77185 0.00000 -2.02522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93041 0.20051 -1.00000 - 6297 2017 8 21 8 26 50 753 4.8013 187.86468 590.30833 562.19944 -3.76967 0.00000 -2.02489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93006 0.20051 -1.00000 - 6298 2017 8 21 8 26 55 554 4.8013 187.86459 590.27579 562.17105 -3.76778 0.00000 -2.02460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92971 0.20051 -1.00000 - 6299 2017 8 21 8 27 0 356 4.8014 187.86450 590.24324 562.14266 -3.76621 0.00000 -2.02425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92936 0.20051 -1.00000 - 6300 2017 8 21 8 27 5 157 4.8014 187.86440 590.21069 562.11427 -3.76498 0.00000 -2.02391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92901 0.20051 -1.00000 - 6301 2017 8 21 8 27 9 958 4.8015 187.86431 590.17816 562.08590 -3.76410 0.00000 -2.02361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92866 0.20051 -1.00000 - 6302 2017 8 21 8 27 14 760 4.8015 187.86421 590.14566 562.05755 -3.76359 0.00000 -2.02340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92831 0.20051 -1.00000 - 6303 2017 8 21 8 27 19 562 4.8016 187.86410 590.11319 562.02921 -3.76345 0.00000 -2.02323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92797 0.20050 -1.00000 - 6304 2017 8 21 8 27 24 363 4.8016 187.86400 590.08073 562.00087 -3.76367 0.00000 -2.02305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92762 0.20050 -1.00000 - 6305 2017 8 21 8 27 29 165 4.8016 187.86390 590.04828 561.97255 -3.76424 0.00000 -2.02282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92727 0.20050 -1.00000 - 6306 2017 8 21 8 27 33 966 4.8017 187.86379 590.01585 561.94424 -3.76514 0.00000 -2.02261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92692 0.20050 -1.00000 - 6307 2017 8 21 8 27 38 768 4.8017 187.86369 589.98346 561.91594 -3.76636 0.00000 -2.02246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92657 0.20050 -1.00000 - 6308 2017 8 21 8 27 43 570 4.8018 187.86358 589.95110 561.88767 -3.76785 0.00000 -2.02237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92622 0.20050 -1.00000 - 6309 2017 8 21 8 27 48 372 4.8018 187.86347 589.91878 561.85940 -3.76957 0.00000 -2.02230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92587 0.20050 -1.00000 - 6310 2017 8 21 8 27 53 174 4.8019 187.86336 589.88646 561.83114 -3.77148 0.00000 -2.02217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92552 0.20050 -1.00000 - 6311 2017 8 21 8 27 57 976 4.8019 187.86325 589.85416 561.80290 -3.77353 0.00000 -2.02200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92517 0.20050 -1.00000 - 6312 2017 8 21 8 28 2 778 4.8020 187.86314 589.82188 561.77466 -3.77566 0.00000 -2.02185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92482 0.20050 -1.00000 - 6313 2017 8 21 8 28 7 580 4.8020 187.86302 589.78965 561.74644 -3.77783 0.00000 -2.02176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92447 0.20050 -1.00000 - 6314 2017 8 21 8 28 12 382 4.8021 187.86291 589.75745 561.71824 -3.77998 0.00000 -2.02170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92412 0.20050 -1.00000 - 6315 2017 8 21 8 28 17 184 4.8021 187.86279 589.72525 561.69004 -3.78204 0.00000 -2.02160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92377 0.20050 -1.00000 - 6316 2017 8 21 8 28 21 986 4.8022 187.86267 589.69307 561.66184 -3.78398 0.00000 -2.02142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92343 0.20050 -1.00000 - 6317 2017 8 21 8 28 26 788 4.8022 187.86255 589.66089 561.63365 -3.78575 0.00000 -2.02122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92308 0.20050 -1.00000 - 6318 2017 8 21 8 28 31 590 4.8022 187.86243 589.62874 561.60547 -3.78729 0.00000 -2.02106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92273 0.20050 -1.00000 - 6319 2017 8 21 8 28 36 393 4.8023 187.86231 589.59662 561.57730 -3.78858 0.00000 -2.02092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92238 0.20050 -1.00000 - 6320 2017 8 21 8 28 41 195 4.8023 187.86218 589.56452 561.54914 -3.78957 0.00000 -2.02079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92203 0.20050 -1.00000 - 6321 2017 8 21 8 28 45 997 4.8024 187.86206 589.53241 561.52097 -3.79025 0.00000 -2.02058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92168 0.20050 -1.00000 - 6322 2017 8 21 8 28 50 800 4.8024 187.86193 589.50029 561.49280 -3.79060 0.00000 -2.02028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92133 0.20050 -1.00000 - 6323 2017 8 21 8 28 55 602 4.8025 187.86180 589.46818 561.46464 -3.79061 0.00000 -2.02000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92098 0.20050 -1.00000 - 6324 2017 8 21 8 29 0 405 4.8025 187.86167 589.43609 561.43649 -3.79028 0.00000 -2.01977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92063 0.20050 -1.00000 - 6325 2017 8 21 8 29 5 207 4.8026 187.86153 589.40401 561.40833 -3.78960 0.00000 -2.01954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92028 0.20050 -1.00000 - 6326 2017 8 21 8 29 10 10 4.8026 187.86140 589.37192 561.38018 -3.78857 0.00000 -2.01930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91993 0.20050 -1.00000 - 6327 2017 8 21 8 29 14 813 4.8027 187.86127 589.33982 561.35201 -3.78719 0.00000 -2.01897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91958 0.20050 -1.00000 - 6328 2017 8 21 8 29 19 615 4.8027 187.86113 589.30770 561.32385 -3.78548 0.00000 -2.01861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91923 0.20050 -1.00000 - 6329 2017 8 21 8 29 24 418 4.8028 187.86099 589.27559 561.29569 -3.78346 0.00000 -2.01828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91889 0.20050 -1.00000 - 6330 2017 8 21 8 29 29 221 4.8028 187.86085 589.24349 561.26753 -3.78115 0.00000 -2.01799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91854 0.20050 -1.00000 - 6331 2017 8 21 8 29 34 24 4.8029 187.86071 589.21138 561.23937 -3.77858 0.00000 -2.01773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91819 0.20049 -1.00000 - 6332 2017 8 21 8 29 38 827 4.8029 187.86057 589.17925 561.21119 -3.77579 0.00000 -2.01740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91784 0.20049 -1.00000 - 6333 2017 8 21 8 29 43 630 4.8029 187.86042 589.14710 561.18302 -3.77283 0.00000 -2.01701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91749 0.20049 -1.00000 - 6334 2017 8 21 8 29 48 433 4.8030 187.86028 589.11495 561.15484 -3.76976 0.00000 -2.01665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91714 0.20049 -1.00000 - 6335 2017 8 21 8 29 53 236 4.8030 187.86013 589.08280 561.12667 -3.76662 0.00000 -2.01636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91679 0.20049 -1.00000 - 6336 2017 8 21 8 29 58 39 4.8031 187.85999 589.05065 561.09850 -3.76348 0.00000 -2.01611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91644 0.20049 -1.00000 - 6337 2017 8 21 8 30 2 842 4.8031 187.85984 589.01849 561.07032 -3.76040 0.00000 -2.01588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91609 0.20049 -1.00000 - 6338 2017 8 21 8 30 7 645 4.8032 187.85969 588.98631 561.04214 -3.75745 0.00000 -2.01560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91574 0.20049 -1.00000 - 6339 2017 8 21 8 30 12 448 4.8032 187.85954 588.95411 561.01395 -3.75467 0.00000 -2.01531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91539 0.20049 -1.00000 - 6340 2017 8 21 8 30 17 252 4.8033 187.85938 588.92191 560.98577 -3.75214 0.00000 -2.01507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91504 0.20049 -1.00000 - 6341 2017 8 21 8 30 22 55 4.8033 187.85923 588.88973 560.95760 -3.74990 0.00000 -2.01492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91469 0.20049 -1.00000 - 6342 2017 8 21 8 30 26 858 4.8034 187.85907 588.85755 560.92942 -3.74802 0.00000 -2.01483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91434 0.20049 -1.00000 - 6343 2017 8 21 8 30 31 662 4.8034 187.85891 588.82535 560.90124 -3.74653 0.00000 -2.01470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91400 0.20049 -1.00000 - 6344 2017 8 21 8 30 36 465 4.8035 187.85875 588.79314 560.87306 -3.74547 0.00000 -2.01454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91365 0.20049 -1.00000 - 6345 2017 8 21 8 30 41 269 4.8035 187.85860 588.76092 560.84488 -3.74488 0.00000 -2.01443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91330 0.20049 -1.00000 - 6346 2017 8 21 8 30 46 72 4.8036 187.85843 588.72872 560.81671 -3.74476 0.00000 -2.01440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91295 0.20049 -1.00000 - 6347 2017 8 21 8 30 50 876 4.8036 187.85827 588.69654 560.78854 -3.74512 0.00000 -2.01443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91260 0.20049 -1.00000 - 6348 2017 8 21 8 30 55 680 4.8037 187.85811 588.66435 560.76038 -3.74595 0.00000 -2.01452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91225 0.20049 -1.00000 - 6349 2017 8 21 8 31 0 483 4.8037 187.85795 588.63216 560.73221 -3.74726 0.00000 -2.01455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91190 0.20049 -1.00000 - 6350 2017 8 21 8 31 5 287 4.8037 187.85778 588.59996 560.70405 -3.74900 0.00000 -2.01456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91155 0.20049 -1.00000 - 6351 2017 8 21 8 31 10 91 4.8038 187.85761 588.56778 560.67590 -3.75114 0.00000 -2.01462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91120 0.20049 -1.00000 - 6352 2017 8 21 8 31 14 895 4.8038 187.85744 588.53562 560.64776 -3.75365 0.00000 -2.01476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91085 0.20049 -1.00000 - 6353 2017 8 21 8 31 19 699 4.8039 187.85728 588.50347 560.61963 -3.75646 0.00000 -2.01494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91050 0.20049 -1.00000 - 6354 2017 8 21 8 31 24 502 4.8039 187.85711 588.47133 560.59150 -3.75953 0.00000 -2.01509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91015 0.20049 -1.00000 - 6355 2017 8 21 8 31 29 306 4.8040 187.85693 588.43918 560.56337 -3.76278 0.00000 -2.01517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90980 0.20049 -1.00000 - 6356 2017 8 21 8 31 34 110 4.8040 187.85676 588.40703 560.53524 -3.76615 0.00000 -2.01525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90945 0.20049 -1.00000 - 6357 2017 8 21 8 31 38 915 4.8041 187.85659 588.37492 560.50714 -3.76955 0.00000 -2.01538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90910 0.20049 -1.00000 - 6358 2017 8 21 8 31 43 719 4.8041 187.85641 588.34283 560.47904 -3.77291 0.00000 -2.01555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90876 0.20049 -1.00000 - 6359 2017 8 21 8 31 48 523 4.8042 187.85624 588.31075 560.45095 -3.77615 0.00000 -2.01572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90841 0.20049 -1.00000 - 6360 2017 8 21 8 31 53 327 4.8042 187.85606 588.27867 560.42287 -3.77921 0.00000 -2.01581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90806 0.20048 -1.00000 - 6361 2017 8 21 8 31 58 131 4.8043 187.85588 588.24659 560.39478 -3.78201 0.00000 -2.01582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90771 0.20048 -1.00000 - 6362 2017 8 21 8 32 2 936 4.8043 187.85570 588.21452 560.36671 -3.78450 0.00000 -2.01584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90736 0.20048 -1.00000 - 6363 2017 8 21 8 32 7 740 4.8044 187.85552 588.18249 560.33865 -3.78664 0.00000 -2.01591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90701 0.20048 -1.00000 - 6364 2017 8 21 8 32 12 544 4.8044 187.85534 588.15047 560.31060 -3.78841 0.00000 -2.01597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90666 0.20048 -1.00000 - 6365 2017 8 21 8 32 17 349 4.8045 187.85516 588.11846 560.28256 -3.78977 0.00000 -2.01599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90631 0.20048 -1.00000 - 6366 2017 8 21 8 32 22 153 4.8045 187.85497 588.08644 560.25451 -3.79073 0.00000 -2.01591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90596 0.20048 -1.00000 - 6367 2017 8 21 8 32 26 958 4.8046 187.85479 588.05442 560.22647 -3.79127 0.00000 -2.01580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90561 0.20048 -1.00000 - 6368 2017 8 21 8 32 31 763 4.8046 187.85460 588.02243 560.19845 -3.79142 0.00000 -2.01571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90526 0.20048 -1.00000 - 6369 2017 8 21 8 32 36 567 4.8047 187.85441 587.99046 560.17043 -3.79118 0.00000 -2.01563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90491 0.20048 -1.00000 - 6370 2017 8 21 8 32 41 372 4.8047 187.85422 587.95850 560.14242 -3.79056 0.00000 -2.01556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90456 0.20048 -1.00000 - 6371 2017 8 21 8 32 46 177 4.8047 187.85403 587.92653 560.11441 -3.78958 0.00000 -2.01540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90421 0.20048 -1.00000 - 6372 2017 8 21 8 32 50 981 4.8048 187.85384 587.89456 560.08640 -3.78827 0.00000 -2.01515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90386 0.20048 -1.00000 - 6373 2017 8 21 8 32 55 786 4.8048 187.85365 587.86259 560.05839 -3.78664 0.00000 -2.01490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90351 0.20048 -1.00000 - 6374 2017 8 21 8 33 0 591 4.8049 187.85346 587.83065 560.03040 -3.78474 0.00000 -2.01471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90316 0.20048 -1.00000 - 6375 2017 8 21 8 33 5 396 4.8049 187.85326 587.79873 560.00242 -3.78258 0.00000 -2.01453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90282 0.20048 -1.00000 - 6376 2017 8 21 8 33 10 201 4.8050 187.85307 587.76680 559.97443 -3.78021 0.00000 -2.01432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90247 0.20048 -1.00000 - 6377 2017 8 21 8 33 15 6 4.8050 187.85287 587.73485 559.94644 -3.77765 0.00000 -2.01403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90212 0.20048 -1.00000 - 6378 2017 8 21 8 33 19 811 4.8051 187.85267 587.70291 559.91845 -3.77495 0.00000 -2.01372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90177 0.20048 -1.00000 - 6379 2017 8 21 8 33 24 616 4.8051 187.85248 587.67098 559.89048 -3.77217 0.00000 -2.01344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90142 0.20048 -1.00000 - 6380 2017 8 21 8 33 29 422 4.8052 187.85228 587.63907 559.86251 -3.76932 0.00000 -2.01320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90107 0.20048 -1.00000 - 6381 2017 8 21 8 33 34 227 4.8052 187.85208 587.60717 559.83454 -3.76646 0.00000 -2.01300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90072 0.20048 -1.00000 - 6382 2017 8 21 8 33 39 32 4.8053 187.85188 587.57525 559.80657 -3.76361 0.00000 -2.01273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90037 0.20048 -1.00000 - 6383 2017 8 21 8 33 43 837 4.8053 187.85168 587.54333 559.77860 -3.76081 0.00000 -2.01240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90002 0.20048 -1.00000 - 6384 2017 8 21 8 33 48 643 4.8054 187.85147 587.51140 559.75063 -3.75809 0.00000 -2.01209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89967 0.20048 -1.00000 - 6385 2017 8 21 8 33 53 448 4.8054 187.85127 587.47950 559.72268 -3.75548 0.00000 -2.01187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89932 0.20048 -1.00000 - 6386 2017 8 21 8 33 58 254 4.8055 187.85106 587.44761 559.69472 -3.75302 0.00000 -2.01167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89897 0.20048 -1.00000 - 6387 2017 8 21 8 34 3 59 4.8055 187.85085 587.41572 559.66676 -3.75072 0.00000 -2.01149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89862 0.20048 -1.00000 - 6388 2017 8 21 8 34 7 865 4.8056 187.85065 587.38381 559.63881 -3.74861 0.00000 -2.01125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89827 0.20047 -1.00000 - 6389 2017 8 21 8 34 12 670 4.8056 187.85044 587.35189 559.61085 -3.74671 0.00000 -2.01099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89792 0.20047 -1.00000 - 6390 2017 8 21 8 34 17 476 4.8057 187.85023 587.31999 559.58289 -3.74504 0.00000 -2.01079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89757 0.20047 -1.00000 - 6391 2017 8 21 8 34 22 282 4.8057 187.85001 587.28810 559.55495 -3.74361 0.00000 -2.01066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89722 0.20047 -1.00000 - 6392 2017 8 21 8 34 27 87 4.8058 187.84980 587.25621 559.52701 -3.74244 0.00000 -2.01056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89687 0.20047 -1.00000 - 6393 2017 8 21 8 34 31 893 4.8058 187.84957 587.22432 559.49906 -3.74152 0.00000 -2.01043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89653 0.20047 -1.00000 - 6394 2017 8 21 8 34 36 699 4.8058 187.84935 587.19241 559.47111 -3.74085 0.00000 -2.01024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89618 0.20047 -1.00000 - 6395 2017 8 21 8 34 41 505 4.8059 187.84913 587.16050 559.44316 -3.74044 0.00000 -2.01008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89583 0.20047 -1.00000 - 6396 2017 8 21 8 34 46 311 4.8059 187.84890 587.12860 559.41522 -3.74028 0.00000 -2.00999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89548 0.20047 -1.00000 - 6397 2017 8 21 8 34 51 117 4.8060 187.84868 587.09672 559.38729 -3.74036 0.00000 -2.00995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89513 0.20047 -1.00000 - 6398 2017 8 21 8 34 55 923 4.8060 187.84845 587.06484 559.35936 -3.74064 0.00000 -2.00992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89478 0.20047 -1.00000 - 6399 2017 8 21 8 35 0 729 4.8061 187.84823 587.03295 559.33143 -3.74113 0.00000 -2.00984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89443 0.20047 -1.00000 - 6400 2017 8 21 8 35 5 535 4.8061 187.84800 587.00104 559.30349 -3.74179 0.00000 -2.00973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89408 0.20047 -1.00000 - 6401 2017 8 21 8 35 10 341 4.8062 187.84776 586.96915 559.27557 -3.74260 0.00000 -2.00965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89373 0.20047 -1.00000 - 6402 2017 8 21 8 35 15 148 4.8062 187.84753 586.93728 559.24766 -3.74354 0.00000 -2.00964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89338 0.20047 -1.00000 - 6403 2017 8 21 8 35 19 954 4.8063 187.84729 586.90542 559.21975 -3.74459 0.00000 -2.00966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89303 0.20047 -1.00000 - 6404 2017 8 21 8 35 24 760 4.8063 187.84705 586.87355 559.19184 -3.74571 0.00000 -2.00964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89268 0.20047 -1.00000 - 6405 2017 8 21 8 35 29 567 4.8064 187.84681 586.84167 559.16393 -3.74687 0.00000 -2.00954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89233 0.20047 -1.00000 - 6406 2017 8 21 8 35 34 373 4.8064 187.84657 586.80980 559.13603 -3.74807 0.00000 -2.00945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89198 0.20047 -1.00000 - 6407 2017 8 21 8 35 39 179 4.8065 187.84633 586.77795 559.10814 -3.74926 0.00000 -2.00941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89163 0.20047 -1.00000 - 6408 2017 8 21 8 35 43 986 4.8065 187.84609 586.74612 559.08027 -3.75043 0.00000 -2.00940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89128 0.20047 -1.00000 - 6409 2017 8 21 8 35 48 793 4.8066 187.84584 586.71430 559.05239 -3.75156 0.00000 -2.00941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89093 0.20047 -1.00000 - 6410 2017 8 21 8 35 53 599 4.8066 187.84560 586.68247 559.02452 -3.75263 0.00000 -2.00934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89058 0.20047 -1.00000 - 6411 2017 8 21 8 35 58 406 4.8067 187.84535 586.65064 558.99665 -3.75363 0.00000 -2.00921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89023 0.20047 -1.00000 - 6412 2017 8 21 8 36 3 213 4.8067 187.84509 586.61883 558.96880 -3.75453 0.00000 -2.00910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88988 0.20047 -1.00000 - 6413 2017 8 21 8 36 8 19 4.8068 187.84484 586.58705 558.94096 -3.75534 0.00000 -2.00905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88953 0.20047 -1.00000 - 6414 2017 8 21 8 36 12 826 4.8068 187.84458 586.55529 558.91312 -3.75604 0.00000 -2.00901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88919 0.20047 -1.00000 - 6415 2017 8 21 8 36 17 633 4.8069 187.84433 586.52353 558.88529 -3.75663 0.00000 -2.00893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88884 0.20047 -1.00000 - 6416 2017 8 21 8 36 22 440 4.8069 187.84407 586.49177 558.85746 -3.75709 0.00000 -2.00876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88849 0.20046 -1.00000 - 6417 2017 8 21 8 36 27 247 4.8070 187.84382 586.46002 558.82964 -3.75745 0.00000 -2.00858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88814 0.20046 -1.00000 - 6418 2017 8 21 8 36 32 54 4.8070 187.84356 586.42829 558.80184 -3.75768 0.00000 -2.00844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88779 0.20046 -1.00000 - 6419 2017 8 21 8 36 36 861 4.8071 187.84330 586.39659 558.77404 -3.75780 0.00000 -2.00832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88744 0.20046 -1.00000 - 6420 2017 8 21 8 36 41 668 4.8071 187.84303 586.36491 558.74625 -3.75781 0.00000 -2.00823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88709 0.20046 -1.00000 - 6421 2017 8 21 8 36 46 475 4.8072 187.84277 586.33322 558.71846 -3.75769 0.00000 -2.00805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88674 0.20046 -1.00000 - 6422 2017 8 21 8 36 51 283 4.8072 187.84250 586.30153 558.69068 -3.75747 0.00000 -2.00779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88639 0.20046 -1.00000 - 6423 2017 8 21 8 36 56 90 4.8073 187.84223 586.26985 558.66290 -3.75714 0.00000 -2.00754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88604 0.20046 -1.00000 - 6424 2017 8 21 8 37 0 897 4.8073 187.84196 586.23821 558.63513 -3.75671 0.00000 -2.00737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88569 0.20046 -1.00000 - 6425 2017 8 21 8 37 5 704 4.8074 187.84169 586.20658 558.60737 -3.75617 0.00000 -2.00719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88534 0.20046 -1.00000 - 6426 2017 8 21 8 37 10 512 4.8074 187.84142 586.17494 558.57961 -3.75554 0.00000 -2.00700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88499 0.20046 -1.00000 - 6427 2017 8 21 8 37 15 319 4.8075 187.84115 586.14330 558.55185 -3.75483 0.00000 -2.00672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88464 0.20046 -1.00000 - 6428 2017 8 21 8 37 20 127 4.8075 187.84088 586.11166 558.52408 -3.75402 0.00000 -2.00641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88429 0.20046 -1.00000 - 6429 2017 8 21 8 37 24 934 4.8076 187.84061 586.08003 558.49633 -3.75315 0.00000 -2.00615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88394 0.20046 -1.00000 - 6430 2017 8 21 8 37 29 742 4.8076 187.84034 586.04843 558.46858 -3.75219 0.00000 -2.00591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88359 0.20046 -1.00000 - 6431 2017 8 21 8 37 34 550 4.8076 187.84006 586.01683 558.44084 -3.75118 0.00000 -2.00570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88324 0.20046 -1.00000 - 6432 2017 8 21 8 37 39 357 4.8077 187.83978 585.98521 558.41308 -3.75009 0.00000 -2.00542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88289 0.20046 -1.00000 - 6433 2017 8 21 8 37 44 165 4.8077 187.83950 585.95358 558.38532 -3.74896 0.00000 -2.00507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88254 0.20046 -1.00000 - 6434 2017 8 21 8 37 48 973 4.8078 187.83923 585.92195 558.35757 -3.74777 0.00000 -2.00473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88219 0.20046 -1.00000 - 6435 2017 8 21 8 37 53 781 4.8078 187.83895 585.89033 558.32982 -3.74655 0.00000 -2.00446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88184 0.20046 -1.00000 - 6436 2017 8 21 8 37 58 589 4.8079 187.83868 585.85873 558.30208 -3.74529 0.00000 -2.00420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88149 0.20046 -1.00000 - 6437 2017 8 21 8 38 3 397 4.8079 187.83841 585.82711 558.27432 -3.74399 0.00000 -2.00393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88114 0.20046 -1.00000 - 6438 2017 8 21 8 38 8 205 4.8080 187.83813 585.79547 558.24656 -3.74267 0.00000 -2.00360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88079 0.20046 -1.00000 - 6439 2017 8 21 8 38 13 13 4.8080 187.83786 585.76381 558.21880 -3.74133 0.00000 -2.00324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88044 0.20046 -1.00000 - 6440 2017 8 21 8 38 17 821 4.8081 187.83758 585.73217 558.19104 -3.73998 0.00000 -2.00292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88010 0.20046 -1.00000 - 6441 2017 8 21 8 38 22 629 4.8081 187.83730 585.70053 558.16329 -3.73863 0.00000 -2.00265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87975 0.20046 -1.00000 - 6442 2017 8 21 8 38 27 437 4.8082 187.83701 585.66889 558.13554 -3.73728 0.00000 -2.00241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87940 0.20046 -1.00000 - 6443 2017 8 21 8 38 32 245 4.8082 187.83673 585.63724 558.10778 -3.73593 0.00000 -2.00211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87905 0.20046 -1.00000 - 6444 2017 8 21 8 38 37 54 4.8083 187.83645 585.60557 558.08001 -3.73461 0.00000 -2.00175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87870 0.20046 -1.00000 - 6445 2017 8 21 8 38 41 862 4.8083 187.83617 585.57389 558.05225 -3.73331 0.00000 -2.00141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87835 0.20045 -1.00000 - 6446 2017 8 21 8 38 46 670 4.8084 187.83589 585.54222 558.02449 -3.73205 0.00000 -2.00115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87800 0.20045 -1.00000 - 6447 2017 8 21 8 38 51 479 4.8084 187.83561 585.51057 557.99674 -3.73083 0.00000 -2.00090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87765 0.20045 -1.00000 - 6448 2017 8 21 8 38 56 287 4.8085 187.83533 585.47890 557.96898 -3.72966 0.00000 -2.00067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87730 0.20045 -1.00000 - 6449 2017 8 21 8 39 1 96 4.8085 187.83505 585.44721 557.94122 -3.72856 0.00000 -2.00037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87695 0.20045 -1.00000 - 6450 2017 8 21 8 39 5 904 4.8086 187.83476 585.41552 557.91346 -3.72754 0.00000 -2.00006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87660 0.20045 -1.00000 - 6451 2017 8 21 8 39 10 713 4.8086 187.83447 585.38383 557.88571 -3.72660 0.00000 -1.99979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87625 0.20045 -1.00000 - 6452 2017 8 21 8 39 15 522 4.8087 187.83418 585.35216 557.85797 -3.72575 0.00000 -1.99957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87590 0.20045 -1.00000 - 6453 2017 8 21 8 39 20 330 4.8087 187.83389 585.32050 557.83023 -3.72500 0.00000 -1.99939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87555 0.20045 -1.00000 - 6454 2017 8 21 8 39 25 139 4.8088 187.83360 585.28882 557.80248 -3.72435 0.00000 -1.99917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87520 0.20045 -1.00000 - 6455 2017 8 21 8 39 29 948 4.8088 187.83331 585.25714 557.77474 -3.72382 0.00000 -1.99889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87485 0.20045 -1.00000 - 6456 2017 8 21 8 39 34 757 4.8089 187.83302 585.22545 557.74701 -3.72340 0.00000 -1.99862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87450 0.20045 -1.00000 - 6457 2017 8 21 8 39 39 566 4.8089 187.83273 585.19379 557.71928 -3.72309 0.00000 -1.99844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87415 0.20045 -1.00000 - 6458 2017 8 21 8 39 44 375 4.8090 187.83244 585.16215 557.69156 -3.72290 0.00000 -1.99828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87380 0.20045 -1.00000 - 6459 2017 8 21 8 39 49 184 4.8090 187.83214 585.13051 557.66385 -3.72282 0.00000 -1.99813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87345 0.20045 -1.00000 - 6460 2017 8 21 8 39 53 993 4.8091 187.83185 585.09886 557.63614 -3.72284 0.00000 -1.99793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87310 0.20045 -1.00000 - 6461 2017 8 21 8 39 58 802 4.8091 187.83155 585.06721 557.60843 -3.72295 0.00000 -1.99770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87275 0.20045 -1.00000 - 6462 2017 8 21 8 40 3 611 4.8092 187.83125 585.03557 557.58073 -3.72315 0.00000 -1.99751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87240 0.20045 -1.00000 - 6463 2017 8 21 8 40 8 420 4.8092 187.83095 585.00397 557.55305 -3.72342 0.00000 -1.99736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87205 0.20045 -1.00000 - 6464 2017 8 21 8 40 13 230 4.8093 187.83066 584.97238 557.52538 -3.72375 0.00000 -1.99725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87170 0.20045 -1.00000 - 6465 2017 8 21 8 40 18 39 4.8093 187.83036 584.94078 557.49770 -3.72411 0.00000 -1.99711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87135 0.20045 -1.00000 - 6466 2017 8 21 8 40 22 848 4.8094 187.83005 584.90919 557.47003 -3.72449 0.00000 -1.99689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87100 0.20045 -1.00000 - 6467 2017 8 21 8 40 27 658 4.8094 187.82975 584.87760 557.44237 -3.72488 0.00000 -1.99667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87065 0.20045 -1.00000 - 6468 2017 8 21 8 40 32 467 4.8095 187.82945 584.84604 557.41472 -3.72524 0.00000 -1.99652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87030 0.20045 -1.00000 - 6469 2017 8 21 8 40 37 277 4.8095 187.82914 584.81450 557.38709 -3.72558 0.00000 -1.99639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86995 0.20045 -1.00000 - 6470 2017 8 21 8 40 42 86 4.8096 187.82884 584.78298 557.35946 -3.72585 0.00000 -1.99628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86960 0.20045 -1.00000 - 6471 2017 8 21 8 40 46 896 4.8096 187.82854 584.75145 557.33183 -3.72606 0.00000 -1.99609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86925 0.20045 -1.00000 - 6472 2017 8 21 8 40 51 706 4.8097 187.82823 584.71992 557.30420 -3.72617 0.00000 -1.99586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86890 0.20045 -1.00000 - 6473 2017 8 21 8 40 56 515 4.8097 187.82792 584.68842 557.27659 -3.72619 0.00000 -1.99566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86855 0.20044 -1.00000 - 6474 2017 8 21 8 41 1 325 4.8098 187.82761 584.65695 557.24899 -3.72610 0.00000 -1.99550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86820 0.20044 -1.00000 - 6475 2017 8 21 8 41 6 135 4.8098 187.82731 584.62549 557.22140 -3.72588 0.00000 -1.99536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86786 0.20044 -1.00000 - 6476 2017 8 21 8 41 10 945 4.8099 187.82700 584.59405 557.19381 -3.72553 0.00000 -1.99519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86751 0.20044 -1.00000 - 6477 2017 8 21 8 41 15 755 4.8099 187.82669 584.56260 557.16622 -3.72503 0.00000 -1.99495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86716 0.20044 -1.00000 - 6478 2017 8 21 8 41 20 565 4.8100 187.82637 584.53116 557.13864 -3.72440 0.00000 -1.99469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86681 0.20044 -1.00000 - 6479 2017 8 21 8 41 25 375 4.8100 187.82606 584.49974 557.11108 -3.72363 0.00000 -1.99448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86646 0.20044 -1.00000 - 6480 2017 8 21 8 41 30 185 4.8101 187.82575 584.46835 557.08352 -3.72272 0.00000 -1.99430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86611 0.20044 -1.00000 - 6481 2017 8 21 8 41 34 995 4.8101 187.82544 584.43698 557.05596 -3.72167 0.00000 -1.99414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86576 0.20044 -1.00000 - 6482 2017 8 21 8 41 39 805 4.8102 187.82512 584.40560 557.02841 -3.72050 0.00000 -1.99391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86541 0.20044 -1.00000 - 6483 2017 8 21 8 41 44 615 4.8102 187.82481 584.37422 557.00085 -3.71921 0.00000 -1.99362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86506 0.20044 -1.00000 - 6484 2017 8 21 8 41 49 426 4.8103 187.82449 584.34284 556.97330 -3.71781 0.00000 -1.99336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86471 0.20044 -1.00000 - 6485 2017 8 21 8 41 54 236 4.8103 187.82417 584.31149 556.94576 -3.71634 0.00000 -1.99316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86436 0.20044 -1.00000 - 6486 2017 8 21 8 41 59 46 4.8104 187.82385 584.28016 556.91821 -3.71478 0.00000 -1.99298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86401 0.20044 -1.00000 - 6487 2017 8 21 8 42 3 857 4.8104 187.82353 584.24881 556.89067 -3.71318 0.00000 -1.99280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86366 0.20044 -1.00000 - 6488 2017 8 21 8 42 8 667 4.8105 187.82320 584.21745 556.86311 -3.71154 0.00000 -1.99254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86331 0.20044 -1.00000 - 6489 2017 8 21 8 42 13 478 4.8105 187.82288 584.18608 556.83556 -3.70989 0.00000 -1.99228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86296 0.20044 -1.00000 - 6490 2017 8 21 8 42 18 288 4.8106 187.82255 584.15472 556.80801 -3.70826 0.00000 -1.99206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86261 0.20044 -1.00000 - 6491 2017 8 21 8 42 23 99 4.8106 187.82222 584.12336 556.78046 -3.70665 0.00000 -1.99189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86226 0.20044 -1.00000 - 6492 2017 8 21 8 42 27 910 4.8107 187.82189 584.09201 556.75290 -3.70511 0.00000 -1.99177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86191 0.20044 -1.00000 - 6493 2017 8 21 8 42 32 720 4.8107 187.82156 584.06062 556.72534 -3.70363 0.00000 -1.99160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86156 0.20044 -1.00000 - 6494 2017 8 21 8 42 37 531 4.8108 187.82122 584.02922 556.69776 -3.70226 0.00000 -1.99138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86121 0.20044 -1.00000 - 6495 2017 8 21 8 42 42 342 4.8108 187.82088 583.99780 556.67019 -3.70101 0.00000 -1.99119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86086 0.20044 -1.00000 - 6496 2017 8 21 8 42 47 153 4.8109 187.82054 583.96639 556.64262 -3.69990 0.00000 -1.99108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86051 0.20044 -1.00000 - 6497 2017 8 21 8 42 51 964 4.8109 187.82020 583.93498 556.61504 -3.69894 0.00000 -1.99101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86016 0.20044 -1.00000 - 6498 2017 8 21 8 42 56 775 4.8110 187.81986 583.90354 556.58746 -3.69815 0.00000 -1.99096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85981 0.20044 -1.00000 - 6499 2017 8 21 8 43 1 586 4.8110 187.81951 583.87208 556.55987 -3.69755 0.00000 -1.99085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85946 0.20044 -1.00000 - 6500 2017 8 21 8 43 6 397 4.8111 187.81916 583.84060 556.53227 -3.69713 0.00000 -1.99074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85911 0.20044 -1.00000 - 6501 2017 8 21 8 43 11 208 4.8111 187.81881 583.80912 556.50468 -3.69692 0.00000 -1.99069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85876 0.20043 -1.00000 - 6502 2017 8 21 8 43 16 19 4.8112 187.81846 583.77764 556.47710 -3.69690 0.00000 -1.99069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85841 0.20043 -1.00000 - 6503 2017 8 21 8 43 20 830 4.8112 187.81811 583.74617 556.44951 -3.69708 0.00000 -1.99075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85806 0.20043 -1.00000 - 6504 2017 8 21 8 43 25 642 4.8113 187.81775 583.71467 556.42192 -3.69745 0.00000 -1.99078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85771 0.20043 -1.00000 - 6505 2017 8 21 8 43 30 453 4.8113 187.81739 583.68316 556.39432 -3.69801 0.00000 -1.99075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85736 0.20043 -1.00000 - 6506 2017 8 21 8 43 35 264 4.8114 187.81703 583.65164 556.36674 -3.69875 0.00000 -1.99075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85701 0.20043 -1.00000 - 6507 2017 8 21 8 43 40 76 4.8114 187.81667 583.62014 556.33916 -3.69966 0.00000 -1.99083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85666 0.20043 -1.00000 - 6508 2017 8 21 8 43 44 887 4.8115 187.81630 583.58865 556.31159 -3.70073 0.00000 -1.99094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85631 0.20043 -1.00000 - 6509 2017 8 21 8 43 49 699 4.8115 187.81593 583.55717 556.28402 -3.70193 0.00000 -1.99107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85596 0.20043 -1.00000 - 6510 2017 8 21 8 43 54 510 4.8116 187.81556 583.52567 556.25646 -3.70324 0.00000 -1.99113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85561 0.20043 -1.00000 - 6511 2017 8 21 8 43 59 322 4.8116 187.81519 583.49418 556.22890 -3.70466 0.00000 -1.99118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85526 0.20043 -1.00000 - 6512 2017 8 21 8 44 4 134 4.8117 187.81482 583.46271 556.20136 -3.70615 0.00000 -1.99128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85491 0.20043 -1.00000 - 6513 2017 8 21 8 44 8 946 4.8117 187.81444 583.43127 556.17384 -3.70770 0.00000 -1.99141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85456 0.20043 -1.00000 - 6514 2017 8 21 8 44 13 757 4.8118 187.81406 583.39985 556.14632 -3.70929 0.00000 -1.99158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85421 0.20043 -1.00000 - 6515 2017 8 21 8 44 18 569 4.8118 187.81368 583.36844 556.11881 -3.71089 0.00000 -1.99170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85386 0.20043 -1.00000 - 6516 2017 8 21 8 44 23 381 4.8119 187.81330 583.33703 556.09131 -3.71249 0.00000 -1.99175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85351 0.20043 -1.00000 - 6517 2017 8 21 8 44 28 193 4.8119 187.81292 583.30563 556.06383 -3.71406 0.00000 -1.99180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85316 0.20043 -1.00000 - 6518 2017 8 21 8 44 33 5 4.8120 187.81253 583.27428 556.03636 -3.71559 0.00000 -1.99192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85281 0.20043 -1.00000 - 6519 2017 8 21 8 44 37 817 4.8120 187.81214 583.24296 556.00891 -3.71706 0.00000 -1.99205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85246 0.20043 -1.00000 - 6520 2017 8 21 8 44 42 629 4.8121 187.81175 583.21165 555.98146 -3.71845 0.00000 -1.99217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85211 0.20043 -1.00000 - 6521 2017 8 21 8 44 47 441 4.8121 187.81136 583.18035 555.95402 -3.71975 0.00000 -1.99221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85176 0.20043 -1.00000 - 6522 2017 8 21 8 44 52 253 4.8122 187.81096 583.14906 555.92659 -3.72094 0.00000 -1.99221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85141 0.20043 -1.00000 - 6523 2017 8 21 8 44 57 66 4.8122 187.81057 583.11780 555.89918 -3.72202 0.00000 -1.99224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85106 0.20043 -1.00000 - 6524 2017 8 21 8 45 1 878 4.8123 187.81017 583.08657 555.87178 -3.72298 0.00000 -1.99228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85071 0.20043 -1.00000 - 6525 2017 8 21 8 45 6 690 4.8123 187.80977 583.05537 555.84439 -3.72379 0.00000 -1.99235 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85036 0.20043 -1.00000 - 6526 2017 8 21 8 45 11 503 4.8124 187.80937 583.02418 555.81701 -3.72446 0.00000 -1.99235 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85001 0.20043 -1.00000 - 6527 2017 8 21 8 45 16 315 4.8124 187.80896 582.99298 555.78963 -3.72497 0.00000 -1.99227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84966 0.20043 -1.00000 - 6528 2017 8 21 8 45 21 128 4.8125 187.80856 582.96180 555.76226 -3.72532 0.00000 -1.99218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84931 0.20043 -1.00000 - 6529 2017 8 21 8 45 25 940 4.8125 187.80815 582.93065 555.73491 -3.72550 0.00000 -1.99213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84896 0.20042 -1.00000 - 6530 2017 8 21 8 45 30 753 4.8126 187.80774 582.89953 555.70757 -3.72549 0.00000 -1.99209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84861 0.20042 -1.00000 - 6531 2017 8 21 8 45 35 565 4.8126 187.80733 582.86841 555.68023 -3.72529 0.00000 -1.99203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84826 0.20042 -1.00000 - 6532 2017 8 21 8 45 40 378 4.8127 187.80692 582.83729 555.65288 -3.72489 0.00000 -1.99189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84791 0.20042 -1.00000 - 6533 2017 8 21 8 45 45 191 4.8128 187.80650 582.80617 555.62555 -3.72430 0.00000 -1.99169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84756 0.20042 -1.00000 - 6534 2017 8 21 8 45 50 4 4.8128 187.80608 582.77507 555.59822 -3.72350 0.00000 -1.99152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84721 0.20042 -1.00000 - 6535 2017 8 21 8 45 54 817 4.8129 187.80567 582.74399 555.57090 -3.72250 0.00000 -1.99136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84686 0.20042 -1.00000 - 6536 2017 8 21 8 45 59 629 4.8129 187.80525 582.71292 555.54359 -3.72129 0.00000 -1.99122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84651 0.20042 -1.00000 - 6537 2017 8 21 8 46 4 442 4.8130 187.80483 582.68185 555.51627 -3.71988 0.00000 -1.99104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84616 0.20042 -1.00000 - 6538 2017 8 21 8 46 9 255 4.8130 187.80440 582.65076 555.48895 -3.71827 0.00000 -1.99076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84581 0.20042 -1.00000 - 6539 2017 8 21 8 46 14 68 4.8131 187.80398 582.61968 555.46164 -3.71648 0.00000 -1.99048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84546 0.20042 -1.00000 - 6540 2017 8 21 8 46 18 882 4.8131 187.80355 582.58861 555.43433 -3.71452 0.00000 -1.99023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84511 0.20042 -1.00000 - 6541 2017 8 21 8 46 23 695 4.8132 187.80312 582.55755 555.40703 -3.71240 0.00000 -1.99001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84476 0.20042 -1.00000 - 6542 2017 8 21 8 46 28 508 4.8132 187.80269 582.52650 555.37972 -3.71015 0.00000 -1.98979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84441 0.20042 -1.00000 - 6543 2017 8 21 8 46 33 321 4.8133 187.80226 582.49542 555.35241 -3.70778 0.00000 -1.98950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84406 0.20042 -1.00000 - 6544 2017 8 21 8 46 38 135 4.8133 187.80183 582.46434 555.32510 -3.70532 0.00000 -1.98916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84371 0.20042 -1.00000 - 6545 2017 8 21 8 46 42 948 4.8134 187.80139 582.43327 555.29780 -3.70280 0.00000 -1.98885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84336 0.20042 -1.00000 - 6546 2017 8 21 8 46 47 761 4.8134 187.80096 582.40221 555.27050 -3.70026 0.00000 -1.98858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84301 0.20042 -1.00000 - 6547 2017 8 21 8 46 52 575 4.8135 187.80052 582.37116 555.24321 -3.69772 0.00000 -1.98835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84266 0.20042 -1.00000 - 6548 2017 8 21 8 46 57 388 4.8135 187.80008 582.34010 555.21591 -3.69523 0.00000 -1.98811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84231 0.20042 -1.00000 - 6549 2017 8 21 8 47 2 202 4.8136 187.79964 582.30903 555.18860 -3.69282 0.00000 -1.98779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84196 0.20042 -1.00000 - 6550 2017 8 21 8 47 7 15 4.8136 187.79920 582.27795 555.16130 -3.69053 0.00000 -1.98748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84161 0.20042 -1.00000 - 6551 2017 8 21 8 47 11 829 4.8137 187.79875 582.24688 555.13400 -3.68841 0.00000 -1.98721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84126 0.20042 -1.00000 - 6552 2017 8 21 8 47 16 643 4.8137 187.79831 582.21583 555.10671 -3.68649 0.00000 -1.98699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84091 0.20042 -1.00000 - 6553 2017 8 21 8 47 21 457 4.8138 187.79786 582.18478 555.07942 -3.68480 0.00000 -1.98682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84056 0.20042 -1.00000 - 6554 2017 8 21 8 47 26 270 4.8138 187.79741 582.15372 555.05212 -3.68337 0.00000 -1.98660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84021 0.20042 -1.00000 - 6555 2017 8 21 8 47 31 84 4.8139 187.79696 582.12264 555.02482 -3.68222 0.00000 -1.98632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83986 0.20042 -1.00000 - 6556 2017 8 21 8 47 35 898 4.8139 187.79651 582.09156 554.99752 -3.68138 0.00000 -1.98609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83951 0.20042 -1.00000 - 6557 2017 8 21 8 47 40 712 4.8140 187.79606 582.06049 554.97022 -3.68087 0.00000 -1.98593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83916 0.20042 -1.00000 - 6558 2017 8 21 8 47 45 526 4.8140 187.79560 582.02943 554.94293 -3.68068 0.00000 -1.98580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83881 0.20041 -1.00000 - 6559 2017 8 21 8 47 50 340 4.8141 187.79515 581.99837 554.91563 -3.68083 0.00000 -1.98571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83846 0.20041 -1.00000 - 6560 2017 8 21 8 47 55 154 4.8141 187.79469 581.96728 554.88832 -3.68131 0.00000 -1.98555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83811 0.20041 -1.00000 - 6561 2017 8 21 8 47 59 969 4.8142 187.79423 581.93617 554.86101 -3.68212 0.00000 -1.98537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83776 0.20041 -1.00000 - 6562 2017 8 21 8 48 4 783 4.8142 187.79377 581.90506 554.83370 -3.68323 0.00000 -1.98525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83741 0.20041 -1.00000 - 6563 2017 8 21 8 48 9 597 4.8143 187.79331 581.87396 554.80640 -3.68464 0.00000 -1.98516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83706 0.20041 -1.00000 - 6564 2017 8 21 8 48 14 412 4.8143 187.79285 581.84286 554.77910 -3.68629 0.00000 -1.98512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83671 0.20041 -1.00000 - 6565 2017 8 21 8 48 19 226 4.8144 187.79238 581.81175 554.75179 -3.68818 0.00000 -1.98505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83636 0.20041 -1.00000 - 6566 2017 8 21 8 48 24 40 4.8144 187.79191 581.78061 554.72447 -3.69025 0.00000 -1.98491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83601 0.20041 -1.00000 - 6567 2017 8 21 8 48 28 855 4.8145 187.79145 581.74946 554.69717 -3.69247 0.00000 -1.98478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83566 0.20041 -1.00000 - 6568 2017 8 21 8 48 33 669 4.8145 187.79098 581.71833 554.66987 -3.69478 0.00000 -1.98470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83531 0.20041 -1.00000 - 6569 2017 8 21 8 48 38 484 4.8146 187.79051 581.68721 554.64257 -3.69713 0.00000 -1.98464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83496 0.20041 -1.00000 - 6570 2017 8 21 8 48 43 299 4.8147 187.79004 581.65609 554.61528 -3.69947 0.00000 -1.98458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83461 0.20041 -1.00000 - 6571 2017 8 21 8 48 48 113 4.8147 187.78956 581.62496 554.58799 -3.70173 0.00000 -1.98444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83426 0.20041 -1.00000 - 6572 2017 8 21 8 48 52 928 4.8148 187.78909 581.59382 554.56070 -3.70386 0.00000 -1.98426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83391 0.20041 -1.00000 - 6573 2017 8 21 8 48 57 743 4.8148 187.78861 581.56271 554.53343 -3.70581 0.00000 -1.98410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83356 0.20041 -1.00000 - 6574 2017 8 21 8 49 2 558 4.8149 187.78813 581.53162 554.50617 -3.70754 0.00000 -1.98395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83321 0.20041 -1.00000 - 6575 2017 8 21 8 49 7 373 4.8149 187.78765 581.50055 554.47892 -3.70900 0.00000 -1.98382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83286 0.20041 -1.00000 - 6576 2017 8 21 8 49 12 188 4.8150 187.78717 581.46949 554.45167 -3.71017 0.00000 -1.98363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83251 0.20041 -1.00000 - 6577 2017 8 21 8 49 17 3 4.8150 187.78669 581.43843 554.42443 -3.71103 0.00000 -1.98336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83216 0.20041 -1.00000 - 6578 2017 8 21 8 49 21 818 4.8151 187.78621 581.40738 554.39720 -3.71156 0.00000 -1.98305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83181 0.20041 -1.00000 - 6579 2017 8 21 8 49 26 633 4.8151 187.78573 581.37637 554.36999 -3.71175 0.00000 -1.98279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83146 0.20041 -1.00000 - 6580 2017 8 21 8 49 31 448 4.8152 187.78524 581.34539 554.34279 -3.71162 0.00000 -1.98252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83111 0.20041 -1.00000 - 6581 2017 8 21 8 49 36 263 4.8152 187.78475 581.31442 554.31559 -3.71116 0.00000 -1.98224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83076 0.20041 -1.00000 - 6582 2017 8 21 8 49 41 79 4.8153 187.78427 581.28346 554.28840 -3.71038 0.00000 -1.98187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83041 0.20041 -1.00000 - 6583 2017 8 21 8 49 45 894 4.8153 187.78378 581.25250 554.26121 -3.70930 0.00000 -1.98145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83006 0.20041 -1.00000 - 6584 2017 8 21 8 49 50 709 4.8154 187.78328 581.22156 554.23403 -3.70793 0.00000 -1.98103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82971 0.20041 -1.00000 - 6585 2017 8 21 8 49 55 525 4.8154 187.78279 581.19065 554.20686 -3.70630 0.00000 -1.98063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82936 0.20041 -1.00000 - 6586 2017 8 21 8 50 0 340 4.8155 187.78230 581.15975 554.17970 -3.70442 0.00000 -1.98025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82901 0.20040 -1.00000 - 6587 2017 8 21 8 50 5 156 4.8155 187.78180 581.12886 554.15253 -3.70231 0.00000 -1.97984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82866 0.20040 -1.00000 - 6588 2017 8 21 8 50 9 971 4.8156 187.78131 581.09796 554.12537 -3.70000 0.00000 -1.97934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82831 0.20040 -1.00000 - 6589 2017 8 21 8 50 14 787 4.8156 187.78081 581.06705 554.09820 -3.69751 0.00000 -1.97882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82796 0.20040 -1.00000 - 6590 2017 8 21 8 50 19 603 4.8157 187.78031 581.03615 554.07103 -3.69488 0.00000 -1.97834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82761 0.20040 -1.00000 - 6591 2017 8 21 8 50 24 418 4.8157 187.77981 581.00526 554.04387 -3.69212 0.00000 -1.97788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82726 0.20040 -1.00000 - 6592 2017 8 21 8 50 29 234 4.8158 187.77931 580.97438 554.01671 -3.68926 0.00000 -1.97745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82691 0.20040 -1.00000 - 6593 2017 8 21 8 50 34 50 4.8158 187.77881 580.94347 553.98953 -3.68633 0.00000 -1.97695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82656 0.20040 -1.00000 - 6594 2017 8 21 8 50 38 866 4.8159 187.77830 580.91253 553.96235 -3.68336 0.00000 -1.97639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82620 0.20040 -1.00000 - 6595 2017 8 21 8 50 43 682 4.8160 187.77780 580.88159 553.93516 -3.68036 0.00000 -1.97587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82585 0.20040 -1.00000 - 6596 2017 8 21 8 50 48 498 4.8160 187.77729 580.85066 553.90798 -3.67737 0.00000 -1.97540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82550 0.20040 -1.00000 - 6597 2017 8 21 8 50 53 314 4.8161 187.77678 580.81972 553.88079 -3.67441 0.00000 -1.97496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82515 0.20040 -1.00000 - 6598 2017 8 21 8 50 58 130 4.8161 187.77627 580.78877 553.85359 -3.67149 0.00000 -1.97456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82480 0.20040 -1.00000 - 6599 2017 8 21 8 51 2 946 4.8162 187.77576 580.75778 553.82639 -3.66864 0.00000 -1.97408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82445 0.20040 -1.00000 - 6600 2017 8 21 8 51 7 762 4.8162 187.77525 580.72677 553.79917 -3.66588 0.00000 -1.97359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82410 0.20040 -1.00000 - 6601 2017 8 21 8 51 12 579 4.8163 187.77473 580.69576 553.77196 -3.66322 0.00000 -1.97316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82375 0.20040 -1.00000 - 6602 2017 8 21 8 51 17 395 4.8163 187.77422 580.66475 553.74475 -3.66067 0.00000 -1.97277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82340 0.20040 -1.00000 - 6603 2017 8 21 8 51 22 211 4.8164 187.77370 580.63373 553.71753 -3.65825 0.00000 -1.97244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82305 0.20040 -1.00000 - 6604 2017 8 21 8 51 27 28 4.8164 187.77318 580.60270 553.69031 -3.65597 0.00000 -1.97211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82270 0.20040 -1.00000 - 6605 2017 8 21 8 51 31 844 4.8165 187.77266 580.57164 553.66309 -3.65383 0.00000 -1.97173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82235 0.20040 -1.00000 - 6606 2017 8 21 8 51 36 661 4.8165 187.77214 580.54057 553.63586 -3.65183 0.00000 -1.97136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82200 0.20040 -1.00000 - 6607 2017 8 21 8 51 41 477 4.8166 187.77162 580.50952 553.60865 -3.64999 0.00000 -1.97109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82165 0.20040 -1.00000 - 6608 2017 8 21 8 51 46 294 4.8166 187.77110 580.47847 553.58144 -3.64829 0.00000 -1.97086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82130 0.20040 -1.00000 - 6609 2017 8 21 8 51 51 111 4.8167 187.77057 580.44742 553.55422 -3.64675 0.00000 -1.97066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82095 0.20040 -1.00000 - 6610 2017 8 21 8 51 55 927 4.8167 187.77005 580.41636 553.52701 -3.64534 0.00000 -1.97043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82060 0.20040 -1.00000 - 6611 2017 8 21 8 52 0 744 4.8168 187.76952 580.38529 553.49980 -3.64409 0.00000 -1.97018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82025 0.20040 -1.00000 - 6612 2017 8 21 8 52 5 561 4.8168 187.76899 580.35423 553.47260 -3.64298 0.00000 -1.96999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81990 0.20040 -1.00000 - 6613 2017 8 21 8 52 10 378 4.8169 187.76846 580.32320 553.44542 -3.64202 0.00000 -1.96986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81955 0.20040 -1.00000 - 6614 2017 8 21 8 52 15 195 4.8169 187.76793 580.29218 553.41824 -3.64120 0.00000 -1.96979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81920 0.20039 -1.00000 - 6615 2017 8 21 8 52 20 12 4.8170 187.76740 580.26117 553.39107 -3.64052 0.00000 -1.96972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81885 0.20039 -1.00000 - 6616 2017 8 21 8 52 24 829 4.8170 187.76687 580.23016 553.36390 -3.64000 0.00000 -1.96961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81850 0.20039 -1.00000 - 6617 2017 8 21 8 52 29 646 4.8171 187.76633 580.19915 553.33674 -3.63964 0.00000 -1.96951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81815 0.20039 -1.00000 - 6618 2017 8 21 8 52 34 463 4.8172 187.76580 580.16818 553.30960 -3.63945 0.00000 -1.96949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81780 0.20039 -1.00000 - 6619 2017 8 21 8 52 39 280 4.8172 187.76526 580.13723 553.28247 -3.63942 0.00000 -1.96952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81745 0.20039 -1.00000 - 6620 2017 8 21 8 52 44 98 4.8173 187.76472 580.10630 553.25535 -3.63958 0.00000 -1.96959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81710 0.20039 -1.00000 - 6621 2017 8 21 8 52 48 915 4.8173 187.76418 580.07537 553.22823 -3.63993 0.00000 -1.96961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81675 0.20039 -1.00000 - 6622 2017 8 21 8 52 53 732 4.8174 187.76364 580.04446 553.20113 -3.64047 0.00000 -1.96961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81640 0.20039 -1.00000 - 6623 2017 8 21 8 52 58 550 4.8174 187.76310 580.01356 553.17403 -3.64122 0.00000 -1.96965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81605 0.20039 -1.00000 - 6624 2017 8 21 8 53 3 367 4.8175 187.76256 579.98270 553.14696 -3.64218 0.00000 -1.96975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81570 0.20039 -1.00000 - 6625 2017 8 21 8 53 8 185 4.8175 187.76201 579.95187 553.11989 -3.64334 0.00000 -1.96990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81535 0.20039 -1.00000 - 6626 2017 8 21 8 53 13 2 4.8176 187.76147 579.92105 553.09283 -3.64470 0.00000 -1.97007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81500 0.20039 -1.00000 - 6627 2017 8 21 8 53 17 820 4.8176 187.76092 579.89023 553.06578 -3.64625 0.00000 -1.97017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81465 0.20039 -1.00000 - 6628 2017 8 21 8 53 22 638 4.8177 187.76037 579.85943 553.03874 -3.64797 0.00000 -1.97026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81430 0.20039 -1.00000 - 6629 2017 8 21 8 53 27 455 4.8177 187.75983 579.82864 553.01170 -3.64985 0.00000 -1.97040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81394 0.20039 -1.00000 - 6630 2017 8 21 8 53 32 273 4.8178 187.75928 579.79789 552.98469 -3.65184 0.00000 -1.97057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81359 0.20039 -1.00000 - 6631 2017 8 21 8 53 37 91 4.8178 187.75873 579.76716 552.95768 -3.65393 0.00000 -1.97079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81324 0.20039 -1.00000 - 6632 2017 8 21 8 53 41 909 4.8179 187.75818 579.73643 552.93067 -3.65605 0.00000 -1.97096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81289 0.20039 -1.00000 - 6633 2017 8 21 8 53 46 727 4.8179 187.75763 579.70570 552.90367 -3.65818 0.00000 -1.97107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81254 0.20039 -1.00000 - 6634 2017 8 21 8 53 51 545 4.8180 187.75708 579.67498 552.87667 -3.66026 0.00000 -1.97118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81219 0.20039 -1.00000 - 6635 2017 8 21 8 53 56 363 4.8180 187.75653 579.64429 552.84969 -3.66225 0.00000 -1.97134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81184 0.20039 -1.00000 - 6636 2017 8 21 8 54 1 181 4.8181 187.75597 579.61362 552.82272 -3.66410 0.00000 -1.97151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81149 0.20039 -1.00000 - 6637 2017 8 21 8 54 5 999 4.8182 187.75542 579.58296 552.79575 -3.66576 0.00000 -1.97171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81114 0.20039 -1.00000 - 6638 2017 8 21 8 54 10 817 4.8182 187.75487 579.55228 552.76878 -3.66720 0.00000 -1.97181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81079 0.20039 -1.00000 - 6639 2017 8 21 8 54 15 636 4.8183 187.75431 579.52161 552.74181 -3.66838 0.00000 -1.97186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81044 0.20039 -1.00000 - 6640 2017 8 21 8 54 20 454 4.8183 187.75376 579.49095 552.71485 -3.66929 0.00000 -1.97194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81009 0.20039 -1.00000 - 6641 2017 8 21 8 54 25 272 4.8184 187.75320 579.46031 552.68791 -3.66990 0.00000 -1.97202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80974 0.20039 -1.00000 - 6642 2017 8 21 8 54 30 91 4.8184 187.75265 579.42969 552.66097 -3.67022 0.00000 -1.97213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80939 0.20038 -1.00000 - 6643 2017 8 21 8 54 34 909 4.8185 187.75209 579.39906 552.63402 -3.67024 0.00000 -1.97222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80904 0.20038 -1.00000 - 6644 2017 8 21 8 54 39 728 4.8185 187.75153 579.36843 552.60708 -3.66997 0.00000 -1.97222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80869 0.20038 -1.00000 - 6645 2017 8 21 8 54 44 546 4.8186 187.75097 579.33780 552.58015 -3.66945 0.00000 -1.97220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80834 0.20038 -1.00000 - 6646 2017 8 21 8 54 49 365 4.8186 187.75041 579.30718 552.55322 -3.66868 0.00000 -1.97222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80799 0.20038 -1.00000 - 6647 2017 8 21 8 54 54 184 4.8187 187.74985 579.27659 552.52631 -3.66771 0.00000 -1.97226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80764 0.20038 -1.00000 - 6648 2017 8 21 8 54 59 2 4.8187 187.74929 579.24600 552.49939 -3.66658 0.00000 -1.97231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80729 0.20038 -1.00000 - 6649 2017 8 21 8 55 3 821 4.8188 187.74872 579.21540 552.47247 -3.66532 0.00000 -1.97228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80694 0.20038 -1.00000 - 6650 2017 8 21 8 55 8 640 4.8188 187.74816 579.18480 552.44556 -3.66399 0.00000 -1.97221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80659 0.20038 -1.00000 - 6651 2017 8 21 8 55 13 459 4.8189 187.74759 579.15421 552.41865 -3.66262 0.00000 -1.97216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80624 0.20038 -1.00000 - 6652 2017 8 21 8 55 18 278 4.8189 187.74703 579.12364 552.39175 -3.66128 0.00000 -1.97214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80589 0.20038 -1.00000 - 6653 2017 8 21 8 55 23 97 4.8190 187.74646 579.09308 552.36486 -3.66001 0.00000 -1.97216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80554 0.20038 -1.00000 - 6654 2017 8 21 8 55 27 916 4.8191 187.74589 579.06253 552.33797 -3.65885 0.00000 -1.97219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80518 0.20038 -1.00000 - 6655 2017 8 21 8 55 32 735 4.8191 187.74532 579.03196 552.31107 -3.65784 0.00000 -1.97214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80483 0.20038 -1.00000 - 6656 2017 8 21 8 55 37 554 4.8192 187.74475 579.00140 552.28418 -3.65702 0.00000 -1.97208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80448 0.20038 -1.00000 - 6657 2017 8 21 8 55 42 373 4.8192 187.74418 578.97085 552.25730 -3.65642 0.00000 -1.97206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80413 0.20038 -1.00000 - 6658 2017 8 21 8 55 47 193 4.8193 187.74361 578.94031 552.23042 -3.65608 0.00000 -1.97207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80378 0.20038 -1.00000 - 6659 2017 8 21 8 55 52 12 4.8193 187.74303 578.90979 552.20354 -3.65599 0.00000 -1.97213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80343 0.20038 -1.00000 - 6660 2017 8 21 8 55 56 831 4.8194 187.74246 578.87926 552.17666 -3.65617 0.00000 -1.97215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80308 0.20038 -1.00000 - 6661 2017 8 21 8 56 1 651 4.8194 187.74188 578.84872 552.14978 -3.65663 0.00000 -1.97210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80273 0.20038 -1.00000 - 6662 2017 8 21 8 56 6 470 4.8195 187.74130 578.81818 552.12291 -3.65735 0.00000 -1.97207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80238 0.20038 -1.00000 - 6663 2017 8 21 8 56 11 290 4.8195 187.74072 578.78766 552.09603 -3.65834 0.00000 -1.97209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80203 0.20038 -1.00000 - 6664 2017 8 21 8 56 16 109 4.8196 187.74014 578.75715 552.06917 -3.65957 0.00000 -1.97214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80168 0.20038 -1.00000 - 6665 2017 8 21 8 56 20 929 4.8196 187.73956 578.72664 552.04230 -3.66101 0.00000 -1.97222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80133 0.20038 -1.00000 - 6666 2017 8 21 8 56 25 749 4.8197 187.73898 578.69612 552.01542 -3.66264 0.00000 -1.97222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80098 0.20038 -1.00000 - 6667 2017 8 21 8 56 30 568 4.8197 187.73839 578.66558 551.98855 -3.66443 0.00000 -1.97217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80063 0.20038 -1.00000 - 6668 2017 8 21 8 56 35 388 4.8198 187.73781 578.63505 551.96167 -3.66634 0.00000 -1.97214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80028 0.20038 -1.00000 - 6669 2017 8 21 8 56 40 208 4.8199 187.73722 578.60453 551.93480 -3.66833 0.00000 -1.97213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79993 0.20038 -1.00000 - 6670 2017 8 21 8 56 45 28 4.8199 187.73663 578.57401 551.90794 -3.67036 0.00000 -1.97215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79958 0.20038 -1.00000 - 6671 2017 8 21 8 56 49 848 4.8200 187.73604 578.54349 551.88106 -3.67237 0.00000 -1.97215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79923 0.20037 -1.00000 - 6672 2017 8 21 8 56 54 668 4.8200 187.73545 578.51294 551.85418 -3.67433 0.00000 -1.97205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79888 0.20037 -1.00000 - 6673 2017 8 21 8 56 59 488 4.8201 187.73486 578.48239 551.82730 -3.67618 0.00000 -1.97192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79853 0.20037 -1.00000 - 6674 2017 8 21 8 57 4 308 4.8201 187.73427 578.45184 551.80043 -3.67790 0.00000 -1.97182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79817 0.20037 -1.00000 - 6675 2017 8 21 8 57 9 128 4.8202 187.73367 578.42130 551.77355 -3.67944 0.00000 -1.97172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79782 0.20037 -1.00000 - 6676 2017 8 21 8 57 13 948 4.8202 187.73307 578.39075 551.74667 -3.68077 0.00000 -1.97163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79747 0.20037 -1.00000 - 6677 2017 8 21 8 57 18 769 4.8203 187.73247 578.36018 551.71979 -3.68186 0.00000 -1.97144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79712 0.20037 -1.00000 - 6678 2017 8 21 8 57 23 589 4.8203 187.73188 578.32960 551.69290 -3.68269 0.00000 -1.97117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79677 0.20037 -1.00000 - 6679 2017 8 21 8 57 28 409 4.8204 187.73127 578.29901 551.66602 -3.68325 0.00000 -1.97092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79642 0.20037 -1.00000 - 6680 2017 8 21 8 57 33 230 4.8204 187.73067 578.26844 551.63914 -3.68353 0.00000 -1.97066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79607 0.20037 -1.00000 - 6681 2017 8 21 8 57 38 50 4.8205 187.73007 578.23787 551.61226 -3.68352 0.00000 -1.97042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79572 0.20037 -1.00000 - 6682 2017 8 21 8 57 42 871 4.8205 187.72946 578.20729 551.58538 -3.68322 0.00000 -1.97016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79537 0.20037 -1.00000 - 6683 2017 8 21 8 57 47 692 4.8206 187.72886 578.17669 551.55849 -3.68264 0.00000 -1.96980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79502 0.20037 -1.00000 - 6684 2017 8 21 8 57 52 512 4.8207 187.72825 578.14607 551.53161 -3.68179 0.00000 -1.96939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79467 0.20037 -1.00000 - 6685 2017 8 21 8 57 57 333 4.8207 187.72764 578.11546 551.50472 -3.68068 0.00000 -1.96900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79432 0.20037 -1.00000 - 6686 2017 8 21 8 58 2 154 4.8208 187.72703 578.08486 551.47785 -3.67932 0.00000 -1.96861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79397 0.20037 -1.00000 - 6687 2017 8 21 8 58 6 974 4.8208 187.72642 578.05426 551.45097 -3.67773 0.00000 -1.96825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79362 0.20037 -1.00000 - 6688 2017 8 21 8 58 11 795 4.8209 187.72580 578.02365 551.42409 -3.67593 0.00000 -1.96782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79327 0.20037 -1.00000 - 6689 2017 8 21 8 58 16 616 4.8209 187.72519 577.99302 551.39721 -3.67393 0.00000 -1.96730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79292 0.20037 -1.00000 - 6690 2017 8 21 8 58 21 437 4.8210 187.72457 577.96239 551.37034 -3.67177 0.00000 -1.96679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79257 0.20037 -1.00000 - 6691 2017 8 21 8 58 26 258 4.8210 187.72395 577.93178 551.34347 -3.66945 0.00000 -1.96631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79222 0.20037 -1.00000 - 6692 2017 8 21 8 58 31 79 4.8211 187.72334 577.90118 551.31661 -3.66701 0.00000 -1.96584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79186 0.20037 -1.00000 - 6693 2017 8 21 8 58 35 900 4.8211 187.72271 577.87058 551.28975 -3.66446 0.00000 -1.96541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79151 0.20037 -1.00000 - 6694 2017 8 21 8 58 40 722 4.8212 187.72209 577.83997 551.26289 -3.66183 0.00000 -1.96489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79116 0.20037 -1.00000 - 6695 2017 8 21 8 58 45 543 4.8212 187.72147 577.80934 551.23603 -3.65914 0.00000 -1.96431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79081 0.20037 -1.00000 - 6696 2017 8 21 8 58 50 364 4.8213 187.72085 577.77873 551.20917 -3.65642 0.00000 -1.96376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79046 0.20037 -1.00000 - 6697 2017 8 21 8 58 55 186 4.8213 187.72022 577.74814 551.18233 -3.65368 0.00000 -1.96323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79011 0.20037 -1.00000 - 6698 2017 8 21 8 59 0 7 4.8214 187.71959 577.71757 551.15550 -3.65094 0.00000 -1.96275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78976 0.20037 -1.00000 - 6699 2017 8 21 8 59 4 828 4.8215 187.71896 577.68701 551.12867 -3.64822 0.00000 -1.96229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78941 0.20036 -1.00000 - 6700 2017 8 21 8 59 9 650 4.8215 187.71833 577.65643 551.10184 -3.64552 0.00000 -1.96174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78906 0.20036 -1.00000 - 6701 2017 8 21 8 59 14 471 4.8216 187.71770 577.62585 551.07502 -3.64287 0.00000 -1.96118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78871 0.20036 -1.00000 - 6702 2017 8 21 8 59 19 293 4.8216 187.71707 577.59530 551.04821 -3.64026 0.00000 -1.96067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78836 0.20036 -1.00000 - 6703 2017 8 21 8 59 24 115 4.8217 187.71644 577.56478 551.02141 -3.63771 0.00000 -1.96019 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78801 0.20036 -1.00000 - 6704 2017 8 21 8 59 28 936 4.8217 187.71580 577.53427 550.99462 -3.63522 0.00000 -1.95975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78766 0.20036 -1.00000 - 6705 2017 8 21 8 59 33 758 4.8218 187.71516 577.50375 550.96783 -3.63278 0.00000 -1.95926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78731 0.20036 -1.00000 - 6706 2017 8 21 8 59 38 580 4.8218 187.71453 577.47324 550.94104 -3.63041 0.00000 -1.95871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78696 0.20036 -1.00000 - 6707 2017 8 21 8 59 43 402 4.8219 187.71389 577.44274 550.91426 -3.62809 0.00000 -1.95820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78661 0.20036 -1.00000 - 6708 2017 8 21 8 59 48 224 4.8219 187.71325 577.41227 550.88749 -3.62583 0.00000 -1.95773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78625 0.20036 -1.00000 - 6709 2017 8 21 8 59 53 46 4.8220 187.71261 577.38181 550.86073 -3.62361 0.00000 -1.95730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78590 0.20036 -1.00000 - 6710 2017 8 21 8 59 57 868 4.8220 187.71196 577.35137 550.83397 -3.62144 0.00000 -1.95693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78555 0.20036 -1.00000 - 6711 2017 8 21 9 0 2 690 4.8221 187.71132 577.32093 550.80722 -3.61930 0.00000 -1.95649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78520 0.20036 -1.00000 - 6712 2017 8 21 9 0 7 512 4.8222 187.71067 577.29047 550.78046 -3.61719 0.00000 -1.95600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78485 0.20036 -1.00000 - 6713 2017 8 21 9 0 12 334 4.8222 187.71003 577.26003 550.75371 -3.61512 0.00000 -1.95556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78450 0.20036 -1.00000 - 6714 2017 8 21 9 0 17 157 4.8223 187.70938 577.22960 550.72697 -3.61307 0.00000 -1.95515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78415 0.20036 -1.00000 - 6715 2017 8 21 9 0 21 979 4.8223 187.70873 577.19919 550.70024 -3.61104 0.00000 -1.95481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78380 0.20036 -1.00000 - 6716 2017 8 21 9 0 26 801 4.8224 187.70808 577.16879 550.67350 -3.60904 0.00000 -1.95450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78345 0.20036 -1.00000 - 6717 2017 8 21 9 0 31 624 4.8224 187.70743 577.13836 550.64676 -3.60707 0.00000 -1.95413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78310 0.20036 -1.00000 - 6718 2017 8 21 9 0 36 446 4.8225 187.70677 577.10793 550.62002 -3.60513 0.00000 -1.95374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78275 0.20036 -1.00000 - 6719 2017 8 21 9 0 41 269 4.8225 187.70612 577.07751 550.59329 -3.60324 0.00000 -1.95342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78240 0.20036 -1.00000 - 6720 2017 8 21 9 0 46 91 4.8226 187.70546 577.04710 550.56657 -3.60141 0.00000 -1.95314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78205 0.20036 -1.00000 - 6721 2017 8 21 9 0 50 914 4.8226 187.70480 577.01670 550.53984 -3.59964 0.00000 -1.95292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78170 0.20036 -1.00000 - 6722 2017 8 21 9 0 55 737 4.8227 187.70415 576.98629 550.51311 -3.59796 0.00000 -1.95266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78134 0.20036 -1.00000 - 6723 2017 8 21 9 1 0 559 4.8227 187.70349 576.95586 550.48638 -3.59637 0.00000 -1.95237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78099 0.20036 -1.00000 - 6724 2017 8 21 9 1 5 382 4.8228 187.70283 576.92543 550.45966 -3.59490 0.00000 -1.95213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78064 0.20036 -1.00000 - 6725 2017 8 21 9 1 10 205 4.8229 187.70216 576.89503 550.43294 -3.59356 0.00000 -1.95193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78029 0.20036 -1.00000 - 6726 2017 8 21 9 1 15 28 4.8229 187.70150 576.86463 550.40623 -3.59236 0.00000 -1.95180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77994 0.20036 -1.00000 - 6727 2017 8 21 9 1 19 851 4.8230 187.70083 576.83425 550.37952 -3.59133 0.00000 -1.95173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77959 0.20035 -1.00000 - 6728 2017 8 21 9 1 24 674 4.8230 187.70017 576.80385 550.35281 -3.59047 0.00000 -1.95162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77924 0.20035 -1.00000 - 6729 2017 8 21 9 1 29 497 4.8231 187.69950 576.77344 550.32611 -3.58980 0.00000 -1.95148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77889 0.20035 -1.00000 - 6730 2017 8 21 9 1 34 320 4.8231 187.69883 576.74305 550.29941 -3.58934 0.00000 -1.95139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77854 0.20035 -1.00000 - 6731 2017 8 21 9 1 39 143 4.8232 187.69816 576.71268 550.27272 -3.58909 0.00000 -1.95136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77819 0.20035 -1.00000 - 6732 2017 8 21 9 1 43 967 4.8232 187.69749 576.68232 550.24604 -3.58906 0.00000 -1.95140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77784 0.20035 -1.00000 - 6733 2017 8 21 9 1 48 790 4.8233 187.69682 576.65198 550.21937 -3.58926 0.00000 -1.95149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77749 0.20035 -1.00000 - 6734 2017 8 21 9 1 53 613 4.8233 187.69615 576.62164 550.19270 -3.58968 0.00000 -1.95152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77714 0.20035 -1.00000 - 6735 2017 8 21 9 1 58 437 4.8234 187.69547 576.59129 550.16603 -3.59033 0.00000 -1.95154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77679 0.20035 -1.00000 - 6736 2017 8 21 9 2 3 260 4.8234 187.69479 576.56097 550.13937 -3.59121 0.00000 -1.95163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77643 0.20035 -1.00000 - 6737 2017 8 21 9 2 8 84 4.8235 187.69412 576.53067 550.11273 -3.59231 0.00000 -1.95177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77608 0.20035 -1.00000 - 6738 2017 8 21 9 2 12 907 4.8236 187.69344 576.50039 550.08609 -3.59361 0.00000 -1.95196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77573 0.20035 -1.00000 - 6739 2017 8 21 9 2 17 731 4.8236 187.69276 576.47012 550.05946 -3.59511 0.00000 -1.95214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77538 0.20035 -1.00000 - 6740 2017 8 21 9 2 22 554 4.8237 187.69208 576.43985 550.03283 -3.59679 0.00000 -1.95228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77503 0.20035 -1.00000 - 6741 2017 8 21 9 2 27 378 4.8237 187.69139 576.40959 550.00620 -3.59863 0.00000 -1.95243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77468 0.20035 -1.00000 - 6742 2017 8 21 9 2 32 202 4.8238 187.69071 576.37936 549.97959 -3.60063 0.00000 -1.95264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77433 0.20035 -1.00000 - 6743 2017 8 21 9 2 37 26 4.8238 187.69003 576.34915 549.95299 -3.60277 0.00000 -1.95288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77398 0.20035 -1.00000 - 6744 2017 8 21 9 2 41 850 4.8239 187.68934 576.31895 549.92639 -3.60501 0.00000 -1.95317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77363 0.20035 -1.00000 - 6745 2017 8 21 9 2 46 673 4.8239 187.68865 576.28875 549.89980 -3.60735 0.00000 -1.95340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77328 0.20035 -1.00000 - 6746 2017 8 21 9 2 51 497 4.8240 187.68796 576.25855 549.87320 -3.60977 0.00000 -1.95358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77293 0.20035 -1.00000 - 6747 2017 8 21 9 2 56 322 4.8240 187.68728 576.22836 549.84661 -3.61224 0.00000 -1.95380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77258 0.20035 -1.00000 - 6748 2017 8 21 9 3 1 146 4.8241 187.68658 576.19819 549.82003 -3.61475 0.00000 -1.95404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77222 0.20035 -1.00000 - 6749 2017 8 21 9 3 5 970 4.8242 187.68589 576.16803 549.79345 -3.61727 0.00000 -1.95431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77187 0.20035 -1.00000 - 6750 2017 8 21 9 3 10 794 4.8242 187.68520 576.13788 549.76688 -3.61979 0.00000 -1.95461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77152 0.20035 -1.00000 - 6751 2017 8 21 9 3 15 618 4.8243 187.68450 576.10772 549.74030 -3.62228 0.00000 -1.95484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77117 0.20035 -1.00000 - 6752 2017 8 21 9 3 20 443 4.8243 187.68381 576.07755 549.71372 -3.62472 0.00000 -1.95500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77082 0.20035 -1.00000 - 6753 2017 8 21 9 3 25 267 4.8244 187.68311 576.04738 549.68714 -3.62710 0.00000 -1.95519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77047 0.20035 -1.00000 - 6754 2017 8 21 9 3 30 91 4.8244 187.68241 576.01724 549.66057 -3.62940 0.00000 -1.95541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77012 0.20035 -1.00000 - 6755 2017 8 21 9 3 34 916 4.8245 187.68171 575.98709 549.63400 -3.63159 0.00000 -1.95565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76977 0.20034 -1.00000 - 6756 2017 8 21 9 3 39 740 4.8245 187.68101 575.95694 549.60743 -3.63366 0.00000 -1.95586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76942 0.20034 -1.00000 - 6757 2017 8 21 9 3 44 565 4.8246 187.68031 575.92678 549.58085 -3.63559 0.00000 -1.95599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76907 0.20034 -1.00000 - 6758 2017 8 21 9 3 49 390 4.8246 187.67961 575.89660 549.55428 -3.63736 0.00000 -1.95610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76872 0.20034 -1.00000 - 6759 2017 8 21 9 3 54 214 4.8247 187.67891 575.86644 549.52771 -3.63896 0.00000 -1.95623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76837 0.20034 -1.00000 - 6760 2017 8 21 9 3 59 39 4.8247 187.67820 575.83628 549.50114 -3.64038 0.00000 -1.95637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76801 0.20034 -1.00000 - 6761 2017 8 21 9 4 3 864 4.8248 187.67749 575.80612 549.47457 -3.64161 0.00000 -1.95652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76766 0.20034 -1.00000 - 6762 2017 8 21 9 4 8 689 4.8249 187.67679 575.77594 549.44800 -3.64265 0.00000 -1.95661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76731 0.20034 -1.00000 - 6763 2017 8 21 9 4 13 514 4.8249 187.67608 575.74574 549.42142 -3.64348 0.00000 -1.95661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76696 0.20034 -1.00000 - 6764 2017 8 21 9 4 18 339 4.8250 187.67537 575.71555 549.39484 -3.64412 0.00000 -1.95663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76661 0.20034 -1.00000 - 6765 2017 8 21 9 4 23 164 4.8250 187.67465 575.68536 549.36827 -3.64455 0.00000 -1.95665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76626 0.20034 -1.00000 - 6766 2017 8 21 9 4 27 989 4.8251 187.67394 575.65518 549.34171 -3.64480 0.00000 -1.95669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76591 0.20034 -1.00000 - 6767 2017 8 21 9 4 32 814 4.8251 187.67323 575.62500 549.31514 -3.64485 0.00000 -1.95674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76556 0.20034 -1.00000 - 6768 2017 8 21 9 4 37 639 4.8252 187.67251 575.59480 549.28857 -3.64473 0.00000 -1.95670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76521 0.20034 -1.00000 - 6769 2017 8 21 9 4 42 464 4.8252 187.67180 575.56458 549.26200 -3.64443 0.00000 -1.95660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76486 0.20034 -1.00000 - 6770 2017 8 21 9 4 47 289 4.8253 187.67108 575.53438 549.23544 -3.64398 0.00000 -1.95652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76451 0.20034 -1.00000 - 6771 2017 8 21 9 4 52 115 4.8253 187.67036 575.50418 549.20888 -3.64340 0.00000 -1.95646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76415 0.20034 -1.00000 - 6772 2017 8 21 9 4 56 940 4.8254 187.66964 575.47400 549.18233 -3.64269 0.00000 -1.95641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76380 0.20034 -1.00000 - 6773 2017 8 21 9 5 1 766 4.8255 187.66892 575.44381 549.15578 -3.64187 0.00000 -1.95633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76345 0.20034 -1.00000 - 6774 2017 8 21 9 5 6 591 4.8255 187.66820 575.41360 549.12922 -3.64097 0.00000 -1.95618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76310 0.20034 -1.00000 - 6775 2017 8 21 9 5 11 417 4.8256 187.66747 575.38340 549.10267 -3.64000 0.00000 -1.95602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76275 0.20034 -1.00000 - 6776 2017 8 21 9 5 16 242 4.8256 187.66675 575.35321 549.07613 -3.63899 0.00000 -1.95586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76240 0.20034 -1.00000 - 6777 2017 8 21 9 5 21 68 4.8257 187.66602 575.32304 549.04960 -3.63795 0.00000 -1.95573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76205 0.20034 -1.00000 - 6778 2017 8 21 9 5 25 894 4.8257 187.66530 575.29287 549.02308 -3.63691 0.00000 -1.95562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76170 0.20034 -1.00000 - 6779 2017 8 21 9 5 30 720 4.8258 187.66457 575.26271 548.99655 -3.63587 0.00000 -1.95546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76135 0.20034 -1.00000 - 6780 2017 8 21 9 5 35 545 4.8258 187.66384 575.23253 548.97003 -3.63486 0.00000 -1.95523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76100 0.20034 -1.00000 - 6781 2017 8 21 9 5 40 371 4.8259 187.66311 575.20236 548.94351 -3.63388 0.00000 -1.95502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76065 0.20034 -1.00000 - 6782 2017 8 21 9 5 45 197 4.8259 187.66238 575.17222 548.91701 -3.63294 0.00000 -1.95482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76029 0.20034 -1.00000 - 6783 2017 8 21 9 5 50 23 4.8260 187.66164 575.14209 548.89051 -3.63204 0.00000 -1.95464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75994 0.20033 -1.00000 - 6784 2017 8 21 9 5 54 849 4.8261 187.66091 575.11197 548.86402 -3.63119 0.00000 -1.95448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75959 0.20033 -1.00000 - 6785 2017 8 21 9 5 59 675 4.8261 187.66017 575.08185 548.83753 -3.63038 0.00000 -1.95425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75924 0.20033 -1.00000 - 6786 2017 8 21 9 6 4 502 4.8262 187.65944 575.05172 548.81105 -3.62960 0.00000 -1.95396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75889 0.20033 -1.00000 - 6787 2017 8 21 9 6 9 328 4.8262 187.65870 575.02161 548.78457 -3.62885 0.00000 -1.95371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75854 0.20033 -1.00000 - 6788 2017 8 21 9 6 14 154 4.8263 187.65796 574.99153 548.75811 -3.62811 0.00000 -1.95347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75819 0.20033 -1.00000 - 6789 2017 8 21 9 6 18 980 4.8263 187.65722 574.96146 548.73165 -3.62737 0.00000 -1.95325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75784 0.20033 -1.00000 - 6790 2017 8 21 9 6 23 807 4.8264 187.65648 574.93139 548.70519 -3.62661 0.00000 -1.95300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75749 0.20033 -1.00000 - 6791 2017 8 21 9 6 28 633 4.8264 187.65573 574.90131 548.67874 -3.62580 0.00000 -1.95268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75714 0.20033 -1.00000 - 6792 2017 8 21 9 6 33 460 4.8265 187.65499 574.87124 548.65229 -3.62494 0.00000 -1.95235 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75678 0.20033 -1.00000 - 6793 2017 8 21 9 6 38 286 4.8265 187.65424 574.84120 548.62585 -3.62401 0.00000 -1.95204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75643 0.20033 -1.00000 - 6794 2017 8 21 9 6 43 113 4.8266 187.65350 574.81116 548.59942 -3.62297 0.00000 -1.95174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75608 0.20033 -1.00000 - 6795 2017 8 21 9 6 47 940 4.8267 187.65275 574.78114 548.57299 -3.62183 0.00000 -1.95145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75573 0.20033 -1.00000 - 6796 2017 8 21 9 6 52 766 4.8267 187.65200 574.75112 548.54657 -3.62056 0.00000 -1.95111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75538 0.20033 -1.00000 - 6797 2017 8 21 9 6 57 593 4.8268 187.65125 574.72108 548.52014 -3.61916 0.00000 -1.95071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75503 0.20033 -1.00000 - 6798 2017 8 21 9 7 2 420 4.8268 187.65050 574.69106 548.49372 -3.61762 0.00000 -1.95033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75468 0.20033 -1.00000 - 6799 2017 8 21 9 7 7 247 4.8269 187.64975 574.66106 548.46731 -3.61594 0.00000 -1.94995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75433 0.20033 -1.00000 - 6800 2017 8 21 9 7 12 74 4.8269 187.64899 574.63106 548.44091 -3.61412 0.00000 -1.94960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75398 0.20033 -1.00000 - 6801 2017 8 21 9 7 16 901 4.8270 187.64824 574.60107 548.41451 -3.61217 0.00000 -1.94925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75363 0.20033 -1.00000 - 6802 2017 8 21 9 7 21 728 4.8270 187.64748 574.57107 548.38810 -3.61009 0.00000 -1.94882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75327 0.20033 -1.00000 - 6803 2017 8 21 9 7 26 555 4.8271 187.64672 574.54107 548.36170 -3.60791 0.00000 -1.94837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75292 0.20033 -1.00000 - 6804 2017 8 21 9 7 31 382 4.8272 187.64596 574.51107 548.33530 -3.60563 0.00000 -1.94795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75257 0.20033 -1.00000 - 6805 2017 8 21 9 7 36 209 4.8272 187.64520 574.48110 548.30891 -3.60327 0.00000 -1.94755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75222 0.20033 -1.00000 - 6806 2017 8 21 9 7 41 36 4.8273 187.64444 574.45112 548.28252 -3.60086 0.00000 -1.94717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75187 0.20033 -1.00000 - 6807 2017 8 21 9 7 45 864 4.8273 187.64368 574.42114 548.25613 -3.59841 0.00000 -1.94677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75152 0.20033 -1.00000 - 6808 2017 8 21 9 7 50 691 4.8274 187.64292 574.39115 548.22973 -3.59596 0.00000 -1.94632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75117 0.20033 -1.00000 - 6809 2017 8 21 9 7 55 519 4.8274 187.64216 574.36116 548.20334 -3.59353 0.00000 -1.94588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75082 0.20033 -1.00000 - 6810 2017 8 21 9 8 0 346 4.8275 187.64139 574.33119 548.17696 -3.59115 0.00000 -1.94548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75047 0.20033 -1.00000 - 6811 2017 8 21 9 8 5 174 4.8275 187.64062 574.30122 548.15058 -3.58884 0.00000 -1.94511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75012 0.20033 -1.00000 - 6812 2017 8 21 9 8 10 1 4.8276 187.63986 574.27126 548.12420 -3.58663 0.00000 -1.94478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74976 0.20032 -1.00000 - 6813 2017 8 21 9 8 14 829 4.8276 187.63909 574.24128 548.09782 -3.58454 0.00000 -1.94441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74941 0.20032 -1.00000 - 6814 2017 8 21 9 8 19 657 4.8277 187.63832 574.21130 548.07144 -3.58259 0.00000 -1.94401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74906 0.20032 -1.00000 - 6815 2017 8 21 9 8 24 484 4.8278 187.63755 574.18132 548.04506 -3.58082 0.00000 -1.94365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74871 0.20032 -1.00000 - 6816 2017 8 21 9 8 29 312 4.8278 187.63678 574.15136 548.01869 -3.57923 0.00000 -1.94334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74836 0.20032 -1.00000 - 6817 2017 8 21 9 8 34 140 4.8279 187.63600 574.12141 547.99233 -3.57783 0.00000 -1.94307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74801 0.20032 -1.00000 - 6818 2017 8 21 9 8 38 968 4.8279 187.63523 574.09145 547.96596 -3.57663 0.00000 -1.94282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74766 0.20032 -1.00000 - 6819 2017 8 21 9 8 43 796 4.8280 187.63445 574.06149 547.93959 -3.57565 0.00000 -1.94252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74731 0.20032 -1.00000 - 6820 2017 8 21 9 8 48 624 4.8280 187.63368 574.03152 547.91322 -3.57490 0.00000 -1.94223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74696 0.20032 -1.00000 - 6821 2017 8 21 9 8 53 452 4.8281 187.63290 574.00157 547.88686 -3.57436 0.00000 -1.94200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74660 0.20032 -1.00000 - 6822 2017 8 21 9 8 58 280 4.8281 187.63212 573.97163 547.86050 -3.57405 0.00000 -1.94180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74625 0.20032 -1.00000 - 6823 2017 8 21 9 9 3 108 4.8282 187.63134 573.94170 547.83415 -3.57395 0.00000 -1.94165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74590 0.20032 -1.00000 - 6824 2017 8 21 9 9 7 937 4.8283 187.63056 573.91176 547.80779 -3.57406 0.00000 -1.94147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74555 0.20032 -1.00000 - 6825 2017 8 21 9 9 12 765 4.8283 187.62978 573.88181 547.78144 -3.57438 0.00000 -1.94126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74520 0.20032 -1.00000 - 6826 2017 8 21 9 9 17 593 4.8284 187.62899 573.85187 547.75509 -3.57488 0.00000 -1.94108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74485 0.20032 -1.00000 - 6827 2017 8 21 9 9 22 422 4.8284 187.62821 573.82194 547.72874 -3.57556 0.00000 -1.94094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74450 0.20032 -1.00000 - 6828 2017 8 21 9 9 27 250 4.8285 187.62742 573.79203 547.70240 -3.57640 0.00000 -1.94084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74415 0.20032 -1.00000 - 6829 2017 8 21 9 9 32 79 4.8285 187.62664 573.76212 547.67607 -3.57737 0.00000 -1.94078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74380 0.20032 -1.00000 - 6830 2017 8 21 9 9 36 907 4.8286 187.62585 573.73221 547.64972 -3.57846 0.00000 -1.94066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74344 0.20032 -1.00000 - 6831 2017 8 21 9 9 41 736 4.8286 187.62506 573.70228 547.62338 -3.57965 0.00000 -1.94051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74309 0.20032 -1.00000 - 6832 2017 8 21 9 9 46 565 4.8287 187.62427 573.67236 547.59705 -3.58090 0.00000 -1.94040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74274 0.20032 -1.00000 - 6833 2017 8 21 9 9 51 393 4.8287 187.62348 573.64246 547.57072 -3.58220 0.00000 -1.94031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74239 0.20032 -1.00000 - 6834 2017 8 21 9 9 56 222 4.8288 187.62269 573.61257 547.54440 -3.58351 0.00000 -1.94027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74204 0.20032 -1.00000 - 6835 2017 8 21 9 10 1 51 4.8289 187.62190 573.58268 547.51807 -3.58482 0.00000 -1.94021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74169 0.20032 -1.00000 - 6836 2017 8 21 9 10 5 880 4.8289 187.62110 573.55277 547.49174 -3.58609 0.00000 -1.94009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74134 0.20032 -1.00000 - 6837 2017 8 21 9 10 10 709 4.8290 187.62031 573.52287 547.46542 -3.58731 0.00000 -1.93996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74099 0.20032 -1.00000 - 6838 2017 8 21 9 10 15 538 4.8290 187.61951 573.49297 547.43910 -3.58846 0.00000 -1.93986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74063 0.20032 -1.00000 - 6839 2017 8 21 9 10 20 367 4.8291 187.61871 573.46309 547.41279 -3.58950 0.00000 -1.93979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74028 0.20032 -1.00000 - 6840 2017 8 21 9 10 25 196 4.8291 187.61791 573.43321 547.38648 -3.59044 0.00000 -1.93974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73993 0.20031 -1.00000 - 6841 2017 8 21 9 10 30 25 4.8292 187.61712 573.40332 547.36016 -3.59125 0.00000 -1.93965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73958 0.20031 -1.00000 - 6842 2017 8 21 9 10 34 854 4.8292 187.61631 573.37342 547.33384 -3.59192 0.00000 -1.93949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73923 0.20031 -1.00000 - 6843 2017 8 21 9 10 39 684 4.8293 187.61551 573.34352 547.30753 -3.59245 0.00000 -1.93935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73888 0.20031 -1.00000 - 6844 2017 8 21 9 10 44 513 4.8294 187.61471 573.31364 547.28122 -3.59284 0.00000 -1.93922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73853 0.20031 -1.00000 - 6845 2017 8 21 9 10 49 343 4.8294 187.61391 573.28376 547.25492 -3.59308 0.00000 -1.93913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73818 0.20031 -1.00000 - 6846 2017 8 21 9 10 54 172 4.8295 187.61310 573.25389 547.22862 -3.59317 0.00000 -1.93905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73783 0.20031 -1.00000 - 6847 2017 8 21 9 10 59 2 4.8295 187.61230 573.22400 547.20231 -3.59312 0.00000 -1.93890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73747 0.20031 -1.00000 - 6848 2017 8 21 9 11 3 831 4.8296 187.61149 573.19410 547.17601 -3.59294 0.00000 -1.93870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73712 0.20031 -1.00000 - 6849 2017 8 21 9 11 8 661 4.8296 187.61068 573.16422 547.14971 -3.59263 0.00000 -1.93855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73677 0.20031 -1.00000 - 6850 2017 8 21 9 11 13 490 4.8297 187.60987 573.13434 547.12342 -3.59219 0.00000 -1.93841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73642 0.20031 -1.00000 - 6851 2017 8 21 9 11 18 320 4.8297 187.60906 573.10448 547.09713 -3.59165 0.00000 -1.93829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73607 0.20031 -1.00000 - 6852 2017 8 21 9 11 23 150 4.8298 187.60825 573.07461 547.07084 -3.59102 0.00000 -1.93815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73572 0.20031 -1.00000 - 6853 2017 8 21 9 11 27 980 4.8298 187.60744 573.04473 547.04455 -3.59029 0.00000 -1.93795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73537 0.20031 -1.00000 - 6854 2017 8 21 9 11 32 810 4.8299 187.60663 573.01485 547.01827 -3.58949 0.00000 -1.93776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73502 0.20031 -1.00000 - 6855 2017 8 21 9 11 37 640 4.8300 187.60581 572.98499 546.99199 -3.58863 0.00000 -1.93759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73466 0.20031 -1.00000 - 6856 2017 8 21 9 11 42 470 4.8300 187.60500 572.95515 546.96572 -3.58771 0.00000 -1.93744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73431 0.20031 -1.00000 - 6857 2017 8 21 9 11 47 300 4.8301 187.60418 572.92531 546.93946 -3.58674 0.00000 -1.93733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73396 0.20031 -1.00000 - 6858 2017 8 21 9 11 52 130 4.8301 187.60336 572.89547 546.91319 -3.58575 0.00000 -1.93717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73361 0.20031 -1.00000 - 6859 2017 8 21 9 11 56 960 4.8302 187.60254 572.86561 546.88692 -3.58473 0.00000 -1.93697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73326 0.20031 -1.00000 - 6860 2017 8 21 9 12 1 790 4.8302 187.60172 572.83577 546.86066 -3.58371 0.00000 -1.93679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73291 0.20031 -1.00000 - 6861 2017 8 21 9 12 6 621 4.8303 187.60090 572.80595 546.83442 -3.58268 0.00000 -1.93664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73256 0.20031 -1.00000 - 6862 2017 8 21 9 12 11 451 4.8303 187.60008 572.77614 546.80817 -3.58165 0.00000 -1.93652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73221 0.20031 -1.00000 - 6863 2017 8 21 9 12 16 281 4.8304 187.59926 572.74633 546.78193 -3.58064 0.00000 -1.93641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73185 0.20031 -1.00000 - 6864 2017 8 21 9 12 21 112 4.8305 187.59843 572.71651 546.75569 -3.57964 0.00000 -1.93625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73150 0.20031 -1.00000 - 6865 2017 8 21 9 12 25 942 4.8305 187.59761 572.68669 546.72945 -3.57867 0.00000 -1.93607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73115 0.20031 -1.00000 - 6866 2017 8 21 9 12 30 773 4.8306 187.59678 572.65689 546.70322 -3.57773 0.00000 -1.93594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73080 0.20031 -1.00000 - 6867 2017 8 21 9 12 35 603 4.8306 187.59595 572.62711 546.67700 -3.57682 0.00000 -1.93582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73045 0.20031 -1.00000 - 6868 2017 8 21 9 12 40 434 4.8307 187.59512 572.59734 546.65078 -3.57595 0.00000 -1.93574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73010 0.20030 -1.00000 - 6869 2017 8 21 9 12 45 265 4.8307 187.59429 572.56756 546.62457 -3.57511 0.00000 -1.93563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72975 0.20030 -1.00000 - 6870 2017 8 21 9 12 50 96 4.8308 187.59346 572.53777 546.59835 -3.57432 0.00000 -1.93548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72940 0.20030 -1.00000 - 6871 2017 8 21 9 12 54 926 4.8308 187.59263 572.50800 546.57214 -3.57358 0.00000 -1.93535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72904 0.20030 -1.00000 - 6872 2017 8 21 9 12 59 757 4.8309 187.59180 572.47824 546.54595 -3.57290 0.00000 -1.93525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72869 0.20030 -1.00000 - 6873 2017 8 21 9 13 4 588 4.8310 187.59097 572.44850 546.51976 -3.57226 0.00000 -1.93518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72834 0.20030 -1.00000 - 6874 2017 8 21 9 13 9 419 4.8310 187.59013 572.41877 546.49357 -3.57167 0.00000 -1.93514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72799 0.20030 -1.00000 - 6875 2017 8 21 9 13 14 250 4.8311 187.58929 572.38904 546.46738 -3.57114 0.00000 -1.93506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72764 0.20030 -1.00000 - 6876 2017 8 21 9 13 19 82 4.8311 187.58846 572.35929 546.44120 -3.57066 0.00000 -1.93493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72729 0.20030 -1.00000 - 6877 2017 8 21 9 13 23 913 4.8312 187.58762 572.32957 546.41503 -3.57023 0.00000 -1.93484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72694 0.20030 -1.00000 - 6878 2017 8 21 9 13 28 744 4.8312 187.58678 572.29987 546.38886 -3.56985 0.00000 -1.93479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72658 0.20030 -1.00000 - 6879 2017 8 21 9 13 33 575 4.8313 187.58594 572.27017 546.36270 -3.56951 0.00000 -1.93476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72623 0.20030 -1.00000 - 6880 2017 8 21 9 13 38 407 4.8313 187.58510 572.24049 546.33655 -3.56922 0.00000 -1.93472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72588 0.20030 -1.00000 - 6881 2017 8 21 9 13 43 238 4.8314 187.58426 572.21079 546.31039 -3.56896 0.00000 -1.93463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72553 0.20030 -1.00000 - 6882 2017 8 21 9 13 48 69 4.8315 187.58341 572.18110 546.28424 -3.56873 0.00000 -1.93455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72518 0.20030 -1.00000 - 6883 2017 8 21 9 13 52 901 4.8315 187.58257 572.15143 546.25810 -3.56853 0.00000 -1.93450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72483 0.20030 -1.00000 - 6884 2017 8 21 9 13 57 733 4.8316 187.58172 572.12178 546.23197 -3.56836 0.00000 -1.93447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72448 0.20030 -1.00000 - 6885 2017 8 21 9 14 2 564 4.8316 187.58088 572.09213 546.20584 -3.56821 0.00000 -1.93447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72413 0.20030 -1.00000 - 6886 2017 8 21 9 14 7 396 4.8317 187.58003 572.06248 546.17970 -3.56808 0.00000 -1.93443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72377 0.20030 -1.00000 - 6887 2017 8 21 9 14 12 228 4.8317 187.57918 572.03283 546.15357 -3.56797 0.00000 -1.93435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72342 0.20030 -1.00000 - 6888 2017 8 21 9 14 17 59 4.8318 187.57833 572.00318 546.12745 -3.56789 0.00000 -1.93430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72307 0.20030 -1.00000 - 6889 2017 8 21 9 14 21 891 4.8318 187.57748 571.97355 546.10133 -3.56782 0.00000 -1.93427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72272 0.20030 -1.00000 - 6890 2017 8 21 9 14 26 723 4.8319 187.57663 571.94392 546.07522 -3.56778 0.00000 -1.93427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72237 0.20030 -1.00000 - 6891 2017 8 21 9 14 31 555 4.8320 187.57578 571.91430 546.04910 -3.56776 0.00000 -1.93429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72202 0.20030 -1.00000 - 6892 2017 8 21 9 14 36 387 4.8320 187.57492 571.88466 546.02299 -3.56777 0.00000 -1.93424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72167 0.20030 -1.00000 - 6893 2017 8 21 9 14 41 219 4.8321 187.57407 571.85502 545.99687 -3.56782 0.00000 -1.93417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72131 0.20030 -1.00000 - 6894 2017 8 21 9 14 46 51 4.8321 187.57321 571.82539 545.97076 -3.56790 0.00000 -1.93415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72096 0.20030 -1.00000 - 6895 2017 8 21 9 14 50 883 4.8322 187.57235 571.79577 545.94466 -3.56802 0.00000 -1.93413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72061 0.20030 -1.00000 - 6896 2017 8 21 9 14 55 716 4.8322 187.57150 571.76615 545.91855 -3.56819 0.00000 -1.93415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72026 0.20029 -1.00000 - 6897 2017 8 21 9 15 0 548 4.8323 187.57064 571.73653 545.89245 -3.56840 0.00000 -1.93415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71991 0.20029 -1.00000 - 6898 2017 8 21 9 15 5 380 4.8323 187.56978 571.70689 545.86634 -3.56866 0.00000 -1.93409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71956 0.20029 -1.00000 - 6899 2017 8 21 9 15 10 213 4.8324 187.56892 571.67725 545.84024 -3.56897 0.00000 -1.93405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71921 0.20029 -1.00000 - 6900 2017 8 21 9 15 15 45 4.8325 187.56805 571.64762 545.81414 -3.56932 0.00000 -1.93403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71885 0.20029 -1.00000 - 6901 2017 8 21 9 15 19 878 4.8325 187.56719 571.61801 545.78805 -3.56971 0.00000 -1.93404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71850 0.20029 -1.00000 - 6902 2017 8 21 9 15 24 710 4.8326 187.56633 571.58839 545.76196 -3.57014 0.00000 -1.93406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71815 0.20029 -1.00000 - 6903 2017 8 21 9 15 29 543 4.8326 187.56546 571.55877 545.73587 -3.57059 0.00000 -1.93405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71780 0.20029 -1.00000 - 6904 2017 8 21 9 15 34 375 4.8327 187.56459 571.52914 545.70978 -3.57108 0.00000 -1.93399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71745 0.20029 -1.00000 - 6905 2017 8 21 9 15 39 208 4.8327 187.56373 571.49951 545.68370 -3.57158 0.00000 -1.93396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71710 0.20029 -1.00000 - 6906 2017 8 21 9 15 44 41 4.8328 187.56286 571.46991 545.65763 -3.57209 0.00000 -1.93395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71675 0.20029 -1.00000 - 6907 2017 8 21 9 15 48 874 4.8328 187.56199 571.44031 545.63156 -3.57261 0.00000 -1.93395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71639 0.20029 -1.00000 - 6908 2017 8 21 9 15 53 707 4.8329 187.56112 571.41071 545.60549 -3.57312 0.00000 -1.93394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71604 0.20029 -1.00000 - 6909 2017 8 21 9 15 58 540 4.8330 187.56024 571.38111 545.57943 -3.57361 0.00000 -1.93387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71569 0.20029 -1.00000 - 6910 2017 8 21 9 16 3 373 4.8330 187.55937 571.35151 545.55337 -3.57407 0.00000 -1.93380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71534 0.20029 -1.00000 - 6911 2017 8 21 9 16 8 206 4.8331 187.55850 571.32194 545.52732 -3.57450 0.00000 -1.93375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71499 0.20029 -1.00000 - 6912 2017 8 21 9 16 13 39 4.8331 187.55762 571.29238 545.50128 -3.57489 0.00000 -1.93371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71464 0.20029 -1.00000 - 6913 2017 8 21 9 16 17 872 4.8332 187.55675 571.26283 545.47524 -3.57523 0.00000 -1.93368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71429 0.20029 -1.00000 - 6914 2017 8 21 9 16 22 705 4.8332 187.55587 571.23327 545.44921 -3.57552 0.00000 -1.93361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71393 0.20029 -1.00000 - 6915 2017 8 21 9 16 27 539 4.8333 187.55499 571.20372 545.42318 -3.57574 0.00000 -1.93349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71358 0.20029 -1.00000 - 6916 2017 8 21 9 16 32 372 4.8333 187.55411 571.17418 545.39715 -3.57589 0.00000 -1.93338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71323 0.20029 -1.00000 - 6917 2017 8 21 9 16 37 205 4.8334 187.55323 571.14466 545.37114 -3.57597 0.00000 -1.93328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71288 0.20029 -1.00000 - 6918 2017 8 21 9 16 42 39 4.8335 187.55235 571.11516 545.34513 -3.57598 0.00000 -1.93319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71253 0.20029 -1.00000 - 6919 2017 8 21 9 16 46 872 4.8335 187.55147 571.08566 545.31913 -3.57592 0.00000 -1.93311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71218 0.20029 -1.00000 - 6920 2017 8 21 9 16 51 706 4.8336 187.55058 571.05616 545.29312 -3.57577 0.00000 -1.93296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71182 0.20029 -1.00000 - 6921 2017 8 21 9 16 56 539 4.8336 187.54970 571.02666 545.26713 -3.57555 0.00000 -1.93276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71147 0.20029 -1.00000 - 6922 2017 8 21 9 17 1 373 4.8337 187.54881 570.99717 545.24113 -3.57526 0.00000 -1.93261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71112 0.20029 -1.00000 - 6923 2017 8 21 9 17 6 207 4.8337 187.54793 570.96770 545.21515 -3.57489 0.00000 -1.93245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71077 0.20029 -1.00000 - 6924 2017 8 21 9 17 11 41 4.8338 187.54704 570.93824 545.18917 -3.57446 0.00000 -1.93231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71042 0.20028 -1.00000 - 6925 2017 8 21 9 17 15 875 4.8338 187.54615 570.90878 545.16318 -3.57396 0.00000 -1.93213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71007 0.20028 -1.00000 - 6926 2017 8 21 9 17 20 708 4.8339 187.54526 570.87930 545.13720 -3.57340 0.00000 -1.93189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70972 0.20028 -1.00000 - 6927 2017 8 21 9 17 25 542 4.8340 187.54437 570.84984 545.11122 -3.57279 0.00000 -1.93167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70936 0.20028 -1.00000 - 6928 2017 8 21 9 17 30 376 4.8340 187.54348 570.82038 545.08524 -3.57212 0.00000 -1.93145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70901 0.20028 -1.00000 - 6929 2017 8 21 9 17 35 210 4.8341 187.54259 570.79094 545.05927 -3.57140 0.00000 -1.93125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70866 0.20028 -1.00000 - 6930 2017 8 21 9 17 40 45 4.8341 187.54169 570.76149 545.03330 -3.57064 0.00000 -1.93105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70831 0.20028 -1.00000 - 6931 2017 8 21 9 17 44 879 4.8342 187.54080 570.73204 545.00733 -3.56984 0.00000 -1.93081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70796 0.20028 -1.00000 - 6932 2017 8 21 9 17 49 713 4.8342 187.53990 570.70257 544.98135 -3.56900 0.00000 -1.93052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70761 0.20028 -1.00000 - 6933 2017 8 21 9 17 54 547 4.8343 187.53901 570.67312 544.95538 -3.56813 0.00000 -1.93027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70725 0.20028 -1.00000 - 6934 2017 8 21 9 17 59 382 4.8343 187.53811 570.64367 544.92942 -3.56723 0.00000 -1.93002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70690 0.20028 -1.00000 - 6935 2017 8 21 9 18 4 216 4.8344 187.53721 570.61422 544.90345 -3.56629 0.00000 -1.92978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70655 0.20028 -1.00000 - 6936 2017 8 21 9 18 9 50 4.8345 187.53631 570.58477 544.87749 -3.56532 0.00000 -1.92952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70620 0.20028 -1.00000 - 6937 2017 8 21 9 18 13 885 4.8345 187.53541 570.55530 544.85152 -3.56432 0.00000 -1.92922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70585 0.20028 -1.00000 - 6938 2017 8 21 9 18 18 720 4.8346 187.53451 570.52584 544.82555 -3.56329 0.00000 -1.92892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70550 0.20028 -1.00000 - 6939 2017 8 21 9 18 23 554 4.8346 187.53360 570.49639 544.79959 -3.56222 0.00000 -1.92864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70515 0.20028 -1.00000 - 6940 2017 8 21 9 18 28 389 4.8347 187.53270 570.46694 544.77363 -3.56113 0.00000 -1.92837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70479 0.20028 -1.00000 - 6941 2017 8 21 9 18 33 224 4.8347 187.53180 570.43749 544.74767 -3.56001 0.00000 -1.92812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70444 0.20028 -1.00000 - 6942 2017 8 21 9 18 38 58 4.8348 187.53089 570.40803 544.72172 -3.55886 0.00000 -1.92784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70409 0.20028 -1.00000 - 6943 2017 8 21 9 18 42 893 4.8348 187.52998 570.37857 544.69576 -3.55769 0.00000 -1.92751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70374 0.20028 -1.00000 - 6944 2017 8 21 9 18 47 728 4.8349 187.52907 570.34911 544.66980 -3.55650 0.00000 -1.92722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70339 0.20028 -1.00000 - 6945 2017 8 21 9 18 52 563 4.8350 187.52817 570.31966 544.64386 -3.55529 0.00000 -1.92694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70304 0.20028 -1.00000 - 6946 2017 8 21 9 18 57 398 4.8350 187.52726 570.29022 544.61791 -3.55407 0.00000 -1.92668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70268 0.20028 -1.00000 - 6947 2017 8 21 9 19 2 233 4.8351 187.52634 570.26077 544.59197 -3.55286 0.00000 -1.92641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70233 0.20028 -1.00000 - 6948 2017 8 21 9 19 7 68 4.8351 187.52543 570.23132 544.56602 -3.55165 0.00000 -1.92610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70198 0.20028 -1.00000 - 6949 2017 8 21 9 19 11 903 4.8352 187.52452 570.20187 544.54008 -3.55046 0.00000 -1.92579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70163 0.20028 -1.00000 - 6950 2017 8 21 9 19 16 739 4.8352 187.52360 570.17244 544.51415 -3.54931 0.00000 -1.92552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70128 0.20028 -1.00000 - 6951 2017 8 21 9 19 21 574 4.8353 187.52269 570.14301 544.48822 -3.54820 0.00000 -1.92526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70093 0.20028 -1.00000 - 6952 2017 8 21 9 19 26 409 4.8354 187.52177 570.11359 544.46230 -3.54714 0.00000 -1.92502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70057 0.20027 -1.00000 - 6953 2017 8 21 9 19 31 245 4.8354 187.52086 570.08417 544.43638 -3.54614 0.00000 -1.92477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70022 0.20027 -1.00000 - 6954 2017 8 21 9 19 36 80 4.8355 187.51994 570.05474 544.41045 -3.54522 0.00000 -1.92448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69987 0.20027 -1.00000 - 6955 2017 8 21 9 19 40 916 4.8355 187.51902 570.02533 544.38454 -3.54438 0.00000 -1.92422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69952 0.20027 -1.00000 - 6956 2017 8 21 9 19 45 751 4.8356 187.51810 569.99593 544.35863 -3.54364 0.00000 -1.92398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69917 0.20027 -1.00000 - 6957 2017 8 21 9 19 50 587 4.8356 187.51718 569.96654 544.33273 -3.54299 0.00000 -1.92377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69882 0.20027 -1.00000 - 6958 2017 8 21 9 19 55 423 4.8357 187.51626 569.93715 544.30683 -3.54244 0.00000 -1.92356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69846 0.20027 -1.00000 - 6959 2017 8 21 9 20 0 258 4.8357 187.51533 569.90776 544.28093 -3.54200 0.00000 -1.92330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69811 0.20027 -1.00000 - 6960 2017 8 21 9 20 5 94 4.8358 187.51441 569.87837 544.25504 -3.54167 0.00000 -1.92306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69776 0.20027 -1.00000 - 6961 2017 8 21 9 20 9 930 4.8359 187.51348 569.84900 544.22915 -3.54144 0.00000 -1.92284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69741 0.20027 -1.00000 - 6962 2017 8 21 9 20 14 766 4.8359 187.51256 569.81964 544.20327 -3.54130 0.00000 -1.92264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69706 0.20027 -1.00000 - 6963 2017 8 21 9 20 19 602 4.8360 187.51163 569.79029 544.17740 -3.54126 0.00000 -1.92246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69671 0.20027 -1.00000 - 6964 2017 8 21 9 20 24 438 4.8360 187.51070 569.76094 544.15152 -3.54129 0.00000 -1.92227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69635 0.20027 -1.00000 - 6965 2017 8 21 9 20 29 274 4.8361 187.50977 569.73158 544.12564 -3.54139 0.00000 -1.92204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69600 0.20027 -1.00000 - 6966 2017 8 21 9 20 34 110 4.8361 187.50884 569.70224 544.09977 -3.54154 0.00000 -1.92183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69565 0.20027 -1.00000 - 6967 2017 8 21 9 20 38 946 4.8362 187.50791 569.67290 544.07391 -3.54172 0.00000 -1.92164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69530 0.20027 -1.00000 - 6968 2017 8 21 9 20 43 783 4.8362 187.50698 569.64357 544.04804 -3.54191 0.00000 -1.92147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69495 0.20027 -1.00000 - 6969 2017 8 21 9 20 48 619 4.8363 187.50605 569.61425 544.02218 -3.54209 0.00000 -1.92131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69460 0.20027 -1.00000 - 6970 2017 8 21 9 20 53 455 4.8364 187.50511 569.58492 543.99632 -3.54224 0.00000 -1.92110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69424 0.20027 -1.00000 - 6971 2017 8 21 9 20 58 292 4.8364 187.50418 569.55558 543.97045 -3.54234 0.00000 -1.92087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69389 0.20027 -1.00000 - 6972 2017 8 21 9 21 3 128 4.8365 187.50324 569.52625 543.94459 -3.54238 0.00000 -1.92068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69354 0.20027 -1.00000 - 6973 2017 8 21 9 21 7 965 4.8365 187.50230 569.49694 543.91874 -3.54234 0.00000 -1.92049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69319 0.20027 -1.00000 - 6974 2017 8 21 9 21 12 801 4.8366 187.50137 569.46762 543.89289 -3.54221 0.00000 -1.92031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69284 0.20027 -1.00000 - 6975 2017 8 21 9 21 17 638 4.8366 187.50043 569.43830 543.86703 -3.54197 0.00000 -1.92013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69249 0.20027 -1.00000 - 6976 2017 8 21 9 21 22 475 4.8367 187.49949 569.40897 543.84117 -3.54163 0.00000 -1.91990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69213 0.20027 -1.00000 - 6977 2017 8 21 9 21 27 311 4.8367 187.49855 569.37964 543.81531 -3.54117 0.00000 -1.91968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69178 0.20027 -1.00000 - 6978 2017 8 21 9 21 32 148 4.8368 187.49760 569.35031 543.78946 -3.54061 0.00000 -1.91947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69143 0.20027 -1.00000 - 6979 2017 8 21 9 21 36 985 4.8369 187.49666 569.32100 543.76361 -3.53994 0.00000 -1.91928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69108 0.20027 -1.00000 - 6980 2017 8 21 9 21 41 822 4.8369 187.49572 569.29168 543.73776 -3.53918 0.00000 -1.91910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69073 0.20027 -1.00000 - 6981 2017 8 21 9 21 46 659 4.8370 187.49477 569.26235 543.71191 -3.53832 0.00000 -1.91891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69038 0.20026 -1.00000 - 6982 2017 8 21 9 21 51 496 4.8370 187.49383 569.23302 543.68606 -3.53738 0.00000 -1.91868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69002 0.20026 -1.00000 - 6983 2017 8 21 9 21 56 333 4.8371 187.49288 569.20369 543.66021 -3.53638 0.00000 -1.91848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68967 0.20026 -1.00000 - 6984 2017 8 21 9 22 1 170 4.8371 187.49193 569.17436 543.63436 -3.53533 0.00000 -1.91829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68932 0.20026 -1.00000 - 6985 2017 8 21 9 22 6 7 4.8372 187.49098 569.14504 543.60852 -3.53424 0.00000 -1.91812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68897 0.20026 -1.00000 - 6986 2017 8 21 9 22 10 845 4.8373 187.49003 569.11571 543.58267 -3.53313 0.00000 -1.91796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68862 0.20026 -1.00000 - 6987 2017 8 21 9 22 15 682 4.8373 187.48908 569.08638 543.55683 -3.53203 0.00000 -1.91775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68826 0.20026 -1.00000 - 6988 2017 8 21 9 22 20 519 4.8374 187.48813 569.05705 543.53099 -3.53094 0.00000 -1.91757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68791 0.20026 -1.00000 - 6989 2017 8 21 9 22 25 357 4.8374 187.48718 569.02772 543.50515 -3.52988 0.00000 -1.91741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68756 0.20026 -1.00000 - 6990 2017 8 21 9 22 30 194 4.8375 187.48623 568.99841 543.47932 -3.52887 0.00000 -1.91727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68721 0.20026 -1.00000 - 6991 2017 8 21 9 22 35 32 4.8375 187.48527 568.96909 543.45349 -3.52792 0.00000 -1.91715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68686 0.20026 -1.00000 - 6992 2017 8 21 9 22 39 869 4.8376 187.48432 568.93978 543.42766 -3.52705 0.00000 -1.91704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68651 0.20026 -1.00000 - 6993 2017 8 21 9 22 44 707 4.8376 187.48336 568.91045 543.40183 -3.52627 0.00000 -1.91690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68615 0.20026 -1.00000 - 6994 2017 8 21 9 22 49 545 4.8377 187.48240 568.88114 543.37601 -3.52558 0.00000 -1.91679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68580 0.20026 -1.00000 - 6995 2017 8 21 9 22 54 382 4.8378 187.48145 568.85184 543.35020 -3.52500 0.00000 -1.91671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68545 0.20026 -1.00000 - 6996 2017 8 21 9 22 59 220 4.8378 187.48049 568.82255 543.32439 -3.52453 0.00000 -1.91665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68510 0.20026 -1.00000 - 6997 2017 8 21 9 23 4 58 4.8379 187.47953 568.79326 543.29858 -3.52418 0.00000 -1.91660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68475 0.20026 -1.00000 - 6998 2017 8 21 9 23 8 896 4.8379 187.47857 568.76396 543.27277 -3.52394 0.00000 -1.91652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68439 0.20026 -1.00000 - 6999 2017 8 21 9 23 13 734 4.8380 187.47761 568.73468 543.24697 -3.52381 0.00000 -1.91646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68404 0.20026 -1.00000 - 7000 2017 8 21 9 23 18 572 4.8380 187.47664 568.70540 543.22118 -3.52380 0.00000 -1.91642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68369 0.20026 -1.00000 - 7001 2017 8 21 9 23 23 410 4.8381 187.47568 568.67614 543.19540 -3.52389 0.00000 -1.91641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68334 0.20026 -1.00000 - 7002 2017 8 21 9 23 28 248 4.8381 187.47471 568.64689 543.16961 -3.52409 0.00000 -1.91642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68299 0.20026 -1.00000 - 7003 2017 8 21 9 23 33 86 4.8382 187.47106 568.61764 543.14384 -3.52437 0.00000 -1.91643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68264 0.20026 -1.00000 - 7004 2017 8 21 9 23 37 925 4.8383 187.46674 568.58839 543.11806 -3.52474 0.00000 -1.91641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68228 0.20026 -1.00000 - 7005 2017 8 21 9 23 42 763 4.8383 187.46242 568.55915 543.09230 -3.52517 0.00000 -1.91642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68193 0.20026 -1.00000 - 7006 2017 8 21 9 23 47 601 4.8384 187.45810 568.52993 543.06654 -3.52566 0.00000 -1.91644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68158 0.20026 -1.00000 - 7007 2017 8 21 9 23 52 440 4.8384 187.45379 568.50071 543.04078 -3.52618 0.00000 -1.91647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68123 0.20026 -1.00000 - 7008 2017 8 21 9 23 57 278 4.8385 187.44947 568.47151 543.01503 -3.52674 0.00000 -1.91652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68088 0.20026 -1.00000 - 7009 2017 8 21 9 24 2 117 4.8385 187.44515 568.44230 542.98929 -3.52731 0.00000 -1.91654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68052 0.20025 -1.00000 - 7010 2017 8 21 9 24 6 955 4.8386 187.44083 568.41309 542.96355 -3.52788 0.00000 -1.91653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68017 0.20025 -1.00000 - 7011 2017 8 21 9 24 11 794 4.8387 187.43651 568.38391 542.93781 -3.52843 0.00000 -1.91656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67982 0.20025 -1.00000 - 7012 2017 8 21 9 24 16 633 4.8387 187.43219 568.35473 542.91209 -3.52896 0.00000 -1.91659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67947 0.20025 -1.00000 - 7013 2017 8 21 9 24 21 472 4.8388 187.42788 568.32556 542.88637 -3.52945 0.00000 -1.91664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67912 0.20025 -1.00000 - 7014 2017 8 21 9 24 26 310 4.8388 187.42356 568.29640 542.86065 -3.52990 0.00000 -1.91669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67877 0.20025 -1.00000 - 7015 2017 8 21 9 24 31 149 4.8389 187.41924 568.26724 542.83493 -3.53030 0.00000 -1.91669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67841 0.20025 -1.00000 - 7016 2017 8 21 9 24 35 988 4.8389 187.41492 568.23808 542.80922 -3.53064 0.00000 -1.91669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67806 0.20025 -1.00000 - 7017 2017 8 21 9 24 40 827 4.8390 187.41060 568.20893 542.78352 -3.53092 0.00000 -1.91670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67771 0.20025 -1.00000 - 7018 2017 8 21 9 24 45 666 4.8390 187.40628 568.17980 542.75783 -3.53114 0.00000 -1.91672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67736 0.20025 -1.00000 - 7019 2017 8 21 9 24 50 505 4.8391 187.40196 568.15067 542.73214 -3.53130 0.00000 -1.91675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67701 0.20025 -1.00000 - 7020 2017 8 21 9 24 55 345 4.8392 187.39764 568.12155 542.70645 -3.53139 0.00000 -1.91676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67665 0.20025 -1.00000 - 7021 2017 8 21 9 25 0 184 4.8392 187.39332 568.09242 542.68077 -3.53142 0.00000 -1.91674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67630 0.20025 -1.00000 - 7022 2017 8 21 9 25 5 23 4.8393 187.38900 568.06331 542.65509 -3.53139 0.00000 -1.91673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67595 0.20025 -1.00000 - 7023 2017 8 21 9 25 9 862 4.8393 187.38468 568.03421 542.62942 -3.53130 0.00000 -1.91672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67560 0.20025 -1.00000 - 7024 2017 8 21 9 25 14 702 4.8394 187.38036 568.00512 542.60376 -3.53115 0.00000 -1.91672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67525 0.20025 -1.00000 - 7025 2017 8 21 9 25 19 541 4.8394 187.37604 567.97604 542.57810 -3.53095 0.00000 -1.91671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67489 0.20025 -1.00000 - 7026 2017 8 21 9 25 24 381 4.8395 187.37172 567.94695 542.55244 -3.53069 0.00000 -1.91667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67454 0.20025 -1.00000 - 7027 2017 8 21 9 25 29 220 4.8396 187.36740 567.91787 542.52679 -3.53039 0.00000 -1.91662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67419 0.20025 -1.00000 - 7028 2017 8 21 9 25 34 60 4.8396 187.36308 567.88881 542.50114 -3.53005 0.00000 -1.91657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67384 0.20025 -1.00000 - 7029 2017 8 21 9 25 38 899 4.8397 187.35876 567.85975 542.47550 -3.52967 0.00000 -1.91654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67349 0.20025 -1.00000 - 7030 2017 8 21 9 25 43 739 4.8397 187.35444 567.83071 542.44987 -3.52926 0.00000 -1.91652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67313 0.20025 -1.00000 - 7031 2017 8 21 9 25 48 579 4.8398 187.35012 567.80167 542.42424 -3.52883 0.00000 -1.91648 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67278 0.20025 -1.00000 - 7032 2017 8 21 9 25 53 419 4.8398 187.34580 567.77263 542.39862 -3.52838 0.00000 -1.91641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67243 0.20025 -1.00000 - 7033 2017 8 21 9 25 58 259 4.8399 187.34148 567.74360 542.37300 -3.52794 0.00000 -1.91635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67208 0.20025 -1.00000 - 7034 2017 8 21 9 26 3 99 4.8399 187.33716 567.71458 542.34738 -3.52749 0.00000 -1.91629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67173 0.20025 -1.00000 - 7035 2017 8 21 9 26 7 939 4.8400 187.33284 567.68558 542.32177 -3.52706 0.00000 -1.91624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67137 0.20025 -1.00000 - 7036 2017 8 21 9 26 12 779 4.8401 187.32852 567.65657 542.29616 -3.52664 0.00000 -1.91620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67102 0.20025 -1.00000 - 7037 2017 8 21 9 26 17 619 4.8401 187.32420 567.62757 542.27056 -3.52625 0.00000 -1.91612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67067 0.20024 -1.00000 - 7038 2017 8 21 9 26 22 459 4.8402 187.31988 567.59856 542.24495 -3.52591 0.00000 -1.91603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67032 0.20024 -1.00000 - 7039 2017 8 21 9 26 27 299 4.8402 187.31556 567.56957 542.21936 -3.52560 0.00000 -1.91596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66997 0.20024 -1.00000 - 7040 2017 8 21 9 26 32 140 4.8403 187.31124 567.54059 542.19376 -3.52534 0.00000 -1.91589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66961 0.20024 -1.00000 - 7041 2017 8 21 9 26 36 980 4.8403 187.30692 567.51161 542.16817 -3.52513 0.00000 -1.91583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66926 0.20024 -1.00000 - 7042 2017 8 21 9 26 41 820 4.8404 187.30260 567.48263 542.14258 -3.52497 0.00000 -1.91577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66891 0.20024 -1.00000 - 7043 2017 8 21 9 26 46 661 4.8405 187.29828 567.45364 542.11699 -3.52486 0.00000 -1.91566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66856 0.20024 -1.00000 - 7044 2017 8 21 9 26 51 501 4.8405 187.29396 567.42466 542.09140 -3.52480 0.00000 -1.91557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66821 0.20024 -1.00000 - 7045 2017 8 21 9 26 56 342 4.8406 187.28964 567.39568 542.06581 -3.52480 0.00000 -1.91548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66785 0.20024 -1.00000 - 7046 2017 8 21 9 27 1 182 4.8406 187.28532 567.36670 542.04023 -3.52484 0.00000 -1.91539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66750 0.20024 -1.00000 - 7047 2017 8 21 9 27 6 23 4.8407 187.28100 567.33773 542.01464 -3.52493 0.00000 -1.91531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66715 0.20024 -1.00000 - 7048 2017 8 21 9 27 10 864 4.8407 187.27669 567.30875 541.98906 -3.52506 0.00000 -1.91521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66680 0.20024 -1.00000 - 7049 2017 8 21 9 27 15 705 4.8408 187.27237 567.27977 541.96348 -3.52522 0.00000 -1.91509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66645 0.20024 -1.00000 - 7050 2017 8 21 9 27 20 545 4.8408 187.26805 567.25079 541.93790 -3.52541 0.00000 -1.91498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66609 0.20024 -1.00000 - 7051 2017 8 21 9 27 25 386 4.8409 187.26373 567.22181 541.91232 -3.52562 0.00000 -1.91486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66574 0.20024 -1.00000 - 7052 2017 8 21 9 27 30 227 4.8410 187.25942 567.19284 541.88675 -3.52585 0.00000 -1.91475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66539 0.20024 -1.00000 - 7053 2017 8 21 9 27 35 68 4.8410 187.25510 567.16386 541.86117 -3.52607 0.00000 -1.91464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66504 0.20024 -1.00000 - 7054 2017 8 21 9 27 39 909 4.8411 187.25078 567.13488 541.83560 -3.52629 0.00000 -1.91449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66469 0.20024 -1.00000 - 7055 2017 8 21 9 27 44 750 4.8411 187.24646 567.10590 541.81003 -3.52650 0.00000 -1.91433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66433 0.20024 -1.00000 - 7056 2017 8 21 9 27 49 592 4.8412 187.24214 567.07693 541.78446 -3.52668 0.00000 -1.91417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66398 0.20024 -1.00000 - 7057 2017 8 21 9 27 54 433 4.8412 187.23782 567.04796 541.75890 -3.52683 0.00000 -1.91402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66363 0.20024 -1.00000 - 7058 2017 8 21 9 27 59 274 4.8413 187.23351 567.01900 541.73334 -3.52693 0.00000 -1.91386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66328 0.20024 -1.00000 - 7059 2017 8 21 9 28 4 116 4.8414 187.22919 566.99004 541.70778 -3.52699 0.00000 -1.91369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66293 0.20024 -1.00000 - 7060 2017 8 21 9 28 8 957 4.8414 187.22487 566.96107 541.68222 -3.52699 0.00000 -1.91349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66257 0.20024 -1.00000 - 7061 2017 8 21 9 28 13 798 4.8415 187.22055 566.93211 541.65667 -3.52692 0.00000 -1.91328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66222 0.20024 -1.00000 - 7062 2017 8 21 9 28 18 640 4.8415 187.21623 566.90316 541.63112 -3.52679 0.00000 -1.91307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66187 0.20024 -1.00000 - 7063 2017 8 21 9 28 23 482 4.8416 187.21191 566.87421 541.60557 -3.52659 0.00000 -1.91285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66152 0.20024 -1.00000 - 7064 2017 8 21 9 28 28 323 4.8416 187.20759 566.84527 541.58003 -3.52631 0.00000 -1.91264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66117 0.20024 -1.00000 - 7065 2017 8 21 9 28 33 165 4.8417 187.20328 566.81633 541.55449 -3.52596 0.00000 -1.91239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66081 0.20023 -1.00000 - 7066 2017 8 21 9 28 38 7 4.8417 187.19896 566.78739 541.52895 -3.52554 0.00000 -1.91213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66046 0.20023 -1.00000 - 7067 2017 8 21 9 28 42 848 4.8418 187.19464 566.75846 541.50342 -3.52506 0.00000 -1.91186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66011 0.20023 -1.00000 - 7068 2017 8 21 9 28 47 690 4.8419 187.19032 566.72954 541.47789 -3.52450 0.00000 -1.91159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65976 0.20023 -1.00000 - 7069 2017 8 21 9 28 52 532 4.8419 187.18600 566.70063 541.45237 -3.52388 0.00000 -1.91132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65940 0.20023 -1.00000 - 7070 2017 8 21 9 28 57 374 4.8420 187.18168 566.67172 541.42684 -3.52321 0.00000 -1.91104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65905 0.20023 -1.00000 - 7071 2017 8 21 9 29 2 216 4.8420 187.17737 566.64280 541.40132 -3.52248 0.00000 -1.91073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65870 0.20023 -1.00000 - 7072 2017 8 21 9 29 7 58 4.8421 187.17305 566.61390 541.37581 -3.52170 0.00000 -1.91042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65835 0.20023 -1.00000 - 7073 2017 8 21 9 29 11 900 4.8421 187.16873 566.58500 541.35029 -3.52087 0.00000 -1.91010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65800 0.20023 -1.00000 - 7074 2017 8 21 9 29 16 743 4.8422 187.16441 566.55610 541.32477 -3.52001 0.00000 -1.90978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65764 0.20023 -1.00000 - 7075 2017 8 21 9 29 21 585 4.8423 187.16010 566.52720 541.29926 -3.51911 0.00000 -1.90946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65729 0.20023 -1.00000 - 7076 2017 8 21 9 29 26 427 4.8423 187.15578 566.49831 541.27375 -3.51818 0.00000 -1.90914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65694 0.20023 -1.00000 - 7077 2017 8 21 9 29 31 270 4.8424 187.15146 566.46941 541.24824 -3.51722 0.00000 -1.90879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65659 0.20023 -1.00000 - 7078 2017 8 21 9 29 36 112 4.8424 187.14715 566.44052 541.22273 -3.51624 0.00000 -1.90844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65624 0.20023 -1.00000 - 7079 2017 8 21 9 29 40 954 4.8425 187.14283 566.41162 541.19721 -3.51523 0.00000 -1.90809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65588 0.20023 -1.00000 - 7080 2017 8 21 9 29 45 797 4.8425 187.13851 566.38272 541.17170 -3.51419 0.00000 -1.90774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65553 0.20023 -1.00000 - 7081 2017 8 21 9 29 50 640 4.8426 187.13420 566.35382 541.14619 -3.51314 0.00000 -1.90739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65518 0.20023 -1.00000 - 7082 2017 8 21 9 29 55 482 4.8426 187.12988 566.32492 541.12068 -3.51206 0.00000 -1.90703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65483 0.20023 -1.00000 - 7083 2017 8 21 9 30 0 325 4.8427 187.12557 566.29601 541.09517 -3.51095 0.00000 -1.90667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65447 0.20023 -1.00000 - 7084 2017 8 21 9 30 5 168 4.8428 187.12125 566.26710 541.06965 -3.50982 0.00000 -1.90630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65412 0.20023 -1.00000 - 7085 2017 8 21 9 30 10 10 4.8428 187.11694 566.23819 541.04414 -3.50866 0.00000 -1.90594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65377 0.20023 -1.00000 - 7086 2017 8 21 9 30 14 853 4.8429 187.11262 566.20927 541.01863 -3.50747 0.00000 -1.90558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65342 0.20023 -1.00000 - 7087 2017 8 21 9 30 19 696 4.8429 187.10831 566.18034 540.99311 -3.50624 0.00000 -1.90523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65307 0.20023 -1.00000 - 7088 2017 8 21 9 30 24 539 4.8430 187.10399 566.15142 540.96760 -3.50498 0.00000 -1.90487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65271 0.20023 -1.00000 - 7089 2017 8 21 9 30 29 382 4.8430 187.09968 566.12248 540.94208 -3.50369 0.00000 -1.90451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65236 0.20023 -1.00000 - 7090 2017 8 21 9 30 34 225 4.8431 187.09536 566.09355 540.91656 -3.50236 0.00000 -1.90415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65201 0.20023 -1.00000 - 7091 2017 8 21 9 30 39 69 4.8432 187.09105 566.06461 540.89105 -3.50099 0.00000 -1.90380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65166 0.20023 -1.00000 - 7092 2017 8 21 9 30 43 912 4.8432 187.08673 566.03566 540.86553 -3.49959 0.00000 -1.90346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65131 0.20023 -1.00000 - 7093 2017 8 21 9 30 48 755 4.8433 187.08242 566.00672 540.84001 -3.49817 0.00000 -1.90312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65095 0.20022 -1.00000 - 7094 2017 8 21 9 30 53 598 4.8433 187.07810 565.97777 540.81450 -3.49671 0.00000 -1.90278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65060 0.20022 -1.00000 - 7095 2017 8 21 9 30 58 442 4.8434 187.07379 565.94881 540.78898 -3.49523 0.00000 -1.90245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65025 0.20022 -1.00000 - 7096 2017 8 21 9 31 3 285 4.8434 187.06947 565.91986 540.76347 -3.49374 0.00000 -1.90213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64990 0.20022 -1.00000 - 7097 2017 8 21 9 31 8 129 4.8435 187.06516 565.89091 540.73796 -3.49225 0.00000 -1.90183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64954 0.20022 -1.00000 - 7098 2017 8 21 9 31 12 972 4.8435 187.06084 565.86195 540.71245 -3.49076 0.00000 -1.90153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64919 0.20022 -1.00000 - 7099 2017 8 21 9 31 17 816 4.8436 187.05653 565.83300 540.68695 -3.48928 0.00000 -1.90124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64884 0.20022 -1.00000 - 7100 2017 8 21 9 31 22 659 4.8437 187.05222 565.80405 540.66145 -3.48783 0.00000 -1.90096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64849 0.20022 -1.00000 - 7101 2017 8 21 9 31 27 503 4.8437 187.04790 565.77510 540.63595 -3.48641 0.00000 -1.90069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64814 0.20022 -1.00000 - 7102 2017 8 21 9 31 32 347 4.8438 187.04359 565.74615 540.61046 -3.48505 0.00000 -1.90044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64778 0.20022 -1.00000 - 7103 2017 8 21 9 31 37 191 4.8438 187.03928 565.71721 540.58497 -3.48374 0.00000 -1.90020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64743 0.20022 -1.00000 - 7104 2017 8 21 9 31 42 35 4.8439 187.03496 565.68828 540.55949 -3.48250 0.00000 -1.89998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64708 0.20022 -1.00000 - 7105 2017 8 21 9 31 46 879 4.8439 187.03065 565.65936 540.53402 -3.48134 0.00000 -1.89977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64673 0.20022 -1.00000 - 7106 2017 8 21 9 31 51 723 4.8440 187.02634 565.63045 540.50855 -3.48027 0.00000 -1.89957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64637 0.20022 -1.00000 - 7107 2017 8 21 9 31 56 567 4.8441 187.02202 565.60154 540.48310 -3.47931 0.00000 -1.89939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64602 0.20022 -1.00000 - 7108 2017 8 21 9 32 1 411 4.8441 187.01771 565.57266 540.45765 -3.47845 0.00000 -1.89923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64567 0.20022 -1.00000 - 7109 2017 8 21 9 32 6 255 4.8442 187.01340 565.54379 540.43222 -3.47770 0.00000 -1.89908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64532 0.20022 -1.00000 - 7110 2017 8 21 9 32 11 99 4.8442 187.00909 565.51494 540.40679 -3.47708 0.00000 -1.89895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64496 0.20022 -1.00000 - 7111 2017 8 21 9 32 15 943 4.8443 187.00478 565.48611 540.38138 -3.47657 0.00000 -1.89882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64461 0.20022 -1.00000 - 7112 2017 8 21 9 32 20 788 4.8443 187.00046 565.45730 540.35597 -3.47619 0.00000 -1.89872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64426 0.20022 -1.00000 - 7113 2017 8 21 9 32 25 632 4.8444 186.99615 565.42851 540.33058 -3.47593 0.00000 -1.89862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64391 0.20022 -1.00000 - 7114 2017 8 21 9 32 30 477 4.8444 186.99184 565.39975 540.30521 -3.47578 0.00000 -1.89854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64356 0.20022 -1.00000 - 7115 2017 8 21 9 32 35 321 4.8445 186.98753 565.37102 540.27984 -3.47574 0.00000 -1.89847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64320 0.20022 -1.00000 - 7116 2017 8 21 9 32 40 166 4.8446 186.98322 565.34230 540.25448 -3.47580 0.00000 -1.89842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64285 0.20022 -1.00000 - 7117 2017 8 21 9 32 45 10 4.8446 186.97891 565.31362 540.22914 -3.47595 0.00000 -1.89837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64250 0.20022 -1.00000 - 7118 2017 8 21 9 32 49 855 4.8447 186.97460 565.28495 540.20380 -3.47617 0.00000 -1.89832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64215 0.20022 -1.00000 - 7119 2017 8 21 9 32 54 700 4.8447 186.97029 565.25631 540.17847 -3.47645 0.00000 -1.89829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64179 0.20022 -1.00000 - 7120 2017 8 21 9 32 59 544 4.8448 186.96598 565.22768 540.15315 -3.47678 0.00000 -1.89826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64144 0.20022 -1.00000 - 7121 2017 8 21 9 33 4 389 4.8448 186.96167 565.19907 540.12783 -3.47713 0.00000 -1.89824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64109 0.20021 -1.00000 - 7122 2017 8 21 9 33 9 234 4.8449 186.95736 565.17048 540.10251 -3.47749 0.00000 -1.89823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64074 0.20021 -1.00000 - 7123 2017 8 21 9 33 14 79 4.8450 186.95305 565.14189 540.07720 -3.47785 0.00000 -1.89821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64038 0.20021 -1.00000 - 7124 2017 8 21 9 33 18 924 4.8450 186.94874 565.11330 540.05188 -3.47818 0.00000 -1.89821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64003 0.20021 -1.00000 - 7125 2017 8 21 9 33 23 769 4.8451 186.94443 565.08471 540.02656 -3.47849 0.00000 -1.89820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63968 0.20021 -1.00000 - 7126 2017 8 21 9 33 28 614 4.8451 186.94012 565.05612 540.00124 -3.47875 0.00000 -1.89820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63933 0.20021 -1.00000 - 7127 2017 8 21 9 33 33 459 4.8452 186.93582 565.02751 539.97591 -3.47896 0.00000 -1.89820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63898 0.20021 -1.00000 - 7128 2017 8 21 9 33 38 305 4.8452 186.93151 564.99890 539.95057 -3.47912 0.00000 -1.89821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63862 0.20021 -1.00000 - 7129 2017 8 21 9 33 43 150 4.8453 186.92720 564.97026 539.92522 -3.47921 0.00000 -1.89822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63827 0.20021 -1.00000 - 7130 2017 8 21 9 33 47 995 4.8453 186.92289 564.94161 539.89987 -3.47925 0.00000 -1.89823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63792 0.20021 -1.00000 - 7131 2017 8 21 9 33 52 841 4.8454 186.91859 564.91293 539.87450 -3.47924 0.00000 -1.89826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63757 0.20021 -1.00000 - 7132 2017 8 21 9 33 57 686 4.8455 186.91428 564.88423 539.84913 -3.47918 0.00000 -1.89828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63721 0.20021 -1.00000 - 7133 2017 8 21 9 34 2 532 4.8455 186.90997 564.85551 539.82375 -3.47909 0.00000 -1.89832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63686 0.20021 -1.00000 - 7134 2017 8 21 9 34 7 377 4.8456 186.90567 564.82676 539.79835 -3.47897 0.00000 -1.89836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63651 0.20021 -1.00000 - 7135 2017 8 21 9 34 12 223 4.8456 186.90136 564.79798 539.77295 -3.47884 0.00000 -1.89842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63616 0.20021 -1.00000 - 7136 2017 8 21 9 34 17 69 4.8457 186.89705 564.76919 539.74755 -3.47871 0.00000 -1.89848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63580 0.20021 -1.00000 - 7137 2017 8 21 9 34 21 914 4.8457 186.89275 564.74037 539.72214 -3.47860 0.00000 -1.89855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63545 0.20021 -1.00000 - 7138 2017 8 21 9 34 26 760 4.8458 186.88844 564.71153 539.69673 -3.47853 0.00000 -1.89864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63510 0.20021 -1.00000 - 7139 2017 8 21 9 34 31 606 4.8459 186.88414 564.68268 539.67131 -3.47851 0.00000 -1.89874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63475 0.20021 -1.00000 - 7140 2017 8 21 9 34 36 452 4.8459 186.87983 564.65382 539.64590 -3.47856 0.00000 -1.89885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63439 0.20021 -1.00000 - 7141 2017 8 21 9 34 41 298 4.8460 186.87553 564.62495 539.62049 -3.47869 0.00000 -1.89898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63404 0.20021 -1.00000 - 7142 2017 8 21 9 34 46 144 4.8460 186.87122 564.59608 539.59509 -3.47892 0.00000 -1.89911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63369 0.20021 -1.00000 - 7143 2017 8 21 9 34 50 990 4.8461 186.86692 564.56722 539.56969 -3.47925 0.00000 -1.89926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63334 0.20021 -1.00000 - 7144 2017 8 21 9 34 55 836 4.8461 186.86262 564.53836 539.54430 -3.47970 0.00000 -1.89942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63298 0.20021 -1.00000 - 7145 2017 8 21 9 35 0 682 4.8462 186.85831 564.50951 539.51893 -3.48028 0.00000 -1.89959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63263 0.20021 -1.00000 - 7146 2017 8 21 9 35 5 528 4.8462 186.85401 564.48068 539.49356 -3.48099 0.00000 -1.89977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63228 0.20021 -1.00000 - 7147 2017 8 21 9 35 10 375 4.8463 186.84971 564.45186 539.46822 -3.48184 0.00000 -1.89996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63193 0.20021 -1.00000 - 7148 2017 8 21 9 35 15 221 4.8464 186.84540 564.42308 539.44289 -3.48281 0.00000 -1.90016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63157 0.20021 -1.00000 - 7149 2017 8 21 9 35 20 68 4.8464 186.84110 564.39432 539.41757 -3.48391 0.00000 -1.90036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63122 0.20020 -1.00000 - 7150 2017 8 21 9 35 24 914 4.8465 186.83680 564.36558 539.39228 -3.48514 0.00000 -1.90056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63087 0.20020 -1.00000 - 7151 2017 8 21 9 35 29 761 4.8465 186.83250 564.33689 539.36700 -3.48649 0.00000 -1.90076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63052 0.20020 -1.00000 - 7152 2017 8 21 9 35 34 607 4.8466 186.82820 564.30822 539.34174 -3.48793 0.00000 -1.90096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63017 0.20020 -1.00000 - 7153 2017 8 21 9 35 39 454 4.8466 186.82390 564.27959 539.31650 -3.48947 0.00000 -1.90116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62981 0.20020 -1.00000 - 7154 2017 8 21 9 35 44 300 4.8467 186.81959 564.25100 539.29128 -3.49108 0.00000 -1.90135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62946 0.20020 -1.00000 - 7155 2017 8 21 9 35 49 147 4.8467 186.81529 564.22244 539.26607 -3.49274 0.00000 -1.90153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62911 0.20020 -1.00000 - 7156 2017 8 21 9 35 53 994 4.8468 186.81099 564.19392 539.24089 -3.49445 0.00000 -1.90170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62876 0.20020 -1.00000 - 7157 2017 8 21 9 35 58 841 4.8469 186.80669 564.16543 539.21571 -3.49617 0.00000 -1.90185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62840 0.20020 -1.00000 - 7158 2017 8 21 9 36 3 688 4.8469 186.80239 564.13697 539.19056 -3.49789 0.00000 -1.90198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62805 0.20020 -1.00000 - 7159 2017 8 21 9 36 8 535 4.8470 186.79809 564.10854 539.16541 -3.49959 0.00000 -1.90210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62770 0.20020 -1.00000 - 7160 2017 8 21 9 36 13 382 4.8470 186.79379 564.08014 539.14028 -3.50124 0.00000 -1.90220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62735 0.20020 -1.00000 - 7161 2017 8 21 9 36 18 229 4.8471 186.78950 564.05176 539.11516 -3.50284 0.00000 -1.90227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62699 0.20020 -1.00000 - 7162 2017 8 21 9 36 23 76 4.8471 186.78520 564.02341 539.09005 -3.50434 0.00000 -1.90231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62664 0.20020 -1.00000 - 7163 2017 8 21 9 36 27 923 4.8472 186.78090 563.99507 539.06494 -3.50574 0.00000 -1.90233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62629 0.20020 -1.00000 - 7164 2017 8 21 9 36 32 770 4.8473 186.77660 563.96675 539.03984 -3.50702 0.00000 -1.90232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62594 0.20020 -1.00000 - 7165 2017 8 21 9 36 37 618 4.8473 186.77230 563.93844 539.01474 -3.50814 0.00000 -1.90228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62558 0.20020 -1.00000 - 7166 2017 8 21 9 36 42 465 4.8474 186.76801 563.91014 538.98964 -3.50909 0.00000 -1.90221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62523 0.20020 -1.00000 - 7167 2017 8 21 9 36 47 313 4.8474 186.76371 563.88184 538.96455 -3.50984 0.00000 -1.90210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62488 0.20020 -1.00000 - 7168 2017 8 21 9 36 52 160 4.8475 186.75941 563.85354 538.93945 -3.51036 0.00000 -1.90197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62453 0.20020 -1.00000 - 7169 2017 8 21 9 36 57 8 4.8475 186.75512 563.82524 538.91435 -3.51065 0.00000 -1.90180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62417 0.20020 -1.00000 - 7170 2017 8 21 9 37 1 855 4.8476 186.75082 563.79694 538.88925 -3.51067 0.00000 -1.90159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62382 0.20020 -1.00000 - 7171 2017 8 21 9 37 6 703 4.8476 186.74652 563.76863 538.86414 -3.51040 0.00000 -1.90136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62347 0.20020 -1.00000 - 7172 2017 8 21 9 37 11 550 4.8477 186.74223 563.74031 538.83903 -3.50982 0.00000 -1.90109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62312 0.20020 -1.00000 - 7173 2017 8 21 9 37 16 398 4.8478 186.73793 563.71198 538.81391 -3.50892 0.00000 -1.90079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62276 0.20020 -1.00000 - 7174 2017 8 21 9 37 21 246 4.8478 186.73364 563.68364 538.78879 -3.50769 0.00000 -1.90047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62241 0.20020 -1.00000 - 7175 2017 8 21 9 37 26 94 4.8479 186.72934 563.65528 538.76365 -3.50611 0.00000 -1.90011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62206 0.20020 -1.00000 - 7176 2017 8 21 9 37 30 942 4.8479 186.72505 563.62691 538.73851 -3.50418 0.00000 -1.89973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62171 0.20020 -1.00000 - 7177 2017 8 21 9 37 35 790 4.8480 186.72076 563.59852 538.71336 -3.50191 0.00000 -1.89933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62135 0.20019 -1.00000 - 7178 2017 8 21 9 37 40 638 4.8480 186.71646 563.57011 538.68821 -3.49930 0.00000 -1.89891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62100 0.20019 -1.00000 - 7179 2017 8 21 9 37 45 486 4.8481 186.71217 563.54168 538.66305 -3.49637 0.00000 -1.89847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62065 0.20019 -1.00000 - 7180 2017 8 21 9 37 50 334 4.8481 186.70788 563.51323 538.63787 -3.49314 0.00000 -1.89802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62029 0.20019 -1.00000 - 7181 2017 8 21 9 37 55 182 4.8482 186.70359 563.48477 538.61269 -3.48966 0.00000 -1.89755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61994 0.20019 -1.00000 - 7182 2017 8 21 9 38 0 31 4.8483 186.69929 563.45629 538.58751 -3.48595 0.00000 -1.89708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61959 0.20019 -1.00000 - 7183 2017 8 21 9 38 4 879 4.8483 186.69500 563.42779 538.56232 -3.48208 0.00000 -1.89661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61924 0.20019 -1.00000 - 7184 2017 8 21 9 38 9 727 4.8484 186.69071 563.39927 538.53712 -3.47810 0.00000 -1.89614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61888 0.20019 -1.00000 - 7185 2017 8 21 9 38 14 576 4.8484 186.68642 563.37074 538.51191 -3.47407 0.00000 -1.89567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61853 0.20019 -1.00000 - 7186 2017 8 21 9 38 19 424 4.8485 186.68213 563.34220 538.48670 -3.47008 0.00000 -1.89522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61818 0.20019 -1.00000 - 7187 2017 8 21 9 38 24 273 4.8485 186.67784 563.31364 538.46149 -3.46621 0.00000 -1.89478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61783 0.20019 -1.00000 - 7188 2017 8 21 9 38 29 121 4.8486 186.67355 563.28507 538.43628 -3.46253 0.00000 -1.89436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61747 0.20019 -1.00000 - 7189 2017 8 21 9 38 33 970 4.8487 186.66927 563.25649 538.41106 -3.45912 0.00000 -1.89396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61712 0.20019 -1.00000 - 7190 2017 8 21 9 38 38 819 4.8487 186.66498 563.22791 538.38584 -3.45606 0.00000 -1.89359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61677 0.20019 -1.00000 - 7191 2017 8 21 9 38 43 667 4.8488 186.66069 563.19931 538.36062 -3.45465 0.00000 -1.89325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61642 0.20019 -1.00000 - 7192 2017 8 21 9 38 48 516 4.8488 186.65640 563.17072 538.33540 -3.45464 0.00000 -1.89294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61606 0.20019 -1.00000 - 7193 2017 8 21 9 38 53 365 4.8489 186.65211 563.14212 538.31018 -3.45565 0.00000 -1.89266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61571 0.20019 -1.00000 - 7194 2017 8 21 9 38 58 214 4.8489 186.64783 563.11352 538.28497 -3.45695 0.00000 -1.89242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61536 0.20019 -1.00000 - 7195 2017 8 21 9 39 3 63 4.8490 186.64354 563.08492 538.25975 -3.45848 0.00000 -1.89222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61501 0.20019 -1.00000 - 7196 2017 8 21 9 39 7 912 4.8490 186.63926 563.05633 538.23454 -3.46019 0.00000 -1.89205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61465 0.20019 -1.00000 - 7197 2017 8 21 9 39 12 761 4.8491 186.63497 563.02774 538.20934 -3.46202 0.00000 -1.89191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61430 0.20019 -1.00000 - 7198 2017 8 21 9 39 17 610 4.8492 186.63069 562.99915 538.18414 -3.46391 0.00000 -1.89180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61395 0.20019 -1.00000 - 7199 2017 8 21 9 39 22 460 4.8492 186.62640 562.97058 538.15894 -3.46579 0.00000 -1.89172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61360 0.20019 -1.00000 - 7200 2017 8 21 9 39 27 309 4.8493 186.62212 562.94201 538.13376 -3.46761 0.00000 -1.89167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61324 0.20019 -1.00000 - 7201 2017 8 21 9 39 32 158 4.8493 186.61783 562.91346 538.10858 -3.46932 0.00000 -1.89163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61289 0.20019 -1.00000 - 7202 2017 8 21 9 39 37 8 4.8494 186.61355 562.88491 538.08340 -3.47086 0.00000 -1.89161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61254 0.20019 -1.00000 - 7203 2017 8 21 9 39 41 857 4.8494 186.60927 562.85638 538.05823 -3.47218 0.00000 -1.89159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61218 0.20019 -1.00000 - 7204 2017 8 21 9 39 46 706 4.8495 186.60499 562.82786 538.03308 -3.47517 0.00000 -1.89158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61183 0.20019 -1.00000 - 7205 2017 8 21 9 39 51 556 4.8495 186.60071 562.79935 538.00792 -3.47817 0.00000 -1.89157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61148 0.20018 -1.00000 - 7206 2017 8 21 9 39 56 406 4.8496 186.59642 562.77085 537.98278 -3.48094 0.00000 -1.89155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61113 0.20018 -1.00000 - 7207 2017 8 21 9 40 1 255 4.8497 186.59214 562.74237 537.95764 -3.48386 0.00000 -1.89151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61077 0.20018 -1.00000 - 7208 2017 8 21 9 40 6 105 4.8497 186.58786 562.71390 537.93251 -3.48808 0.00000 -1.89144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61042 0.20018 -1.00000 - 7209 2017 8 21 9 40 10 955 4.8498 186.58359 562.68543 537.90739 -3.49196 0.00000 -1.89135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61007 0.20018 -1.00000 - 7210 2017 8 21 9 40 15 805 4.8498 186.57931 562.65698 537.88227 -3.49535 0.00000 -1.89123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60972 0.20018 -1.00000 - 7211 2017 8 21 9 40 20 654 4.8499 186.57503 562.62854 537.85716 -3.49813 0.00000 -1.89107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60936 0.20018 -1.00000 - 7212 2017 8 21 9 40 25 504 4.8499 186.57075 562.60011 537.83205 -3.50022 0.00000 -1.89088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60901 0.20018 -1.00000 - 7213 2017 8 21 9 40 30 354 4.8500 186.56647 562.57169 537.80695 -3.50156 0.00000 -1.89064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60866 0.20018 -1.00000 - 7214 2017 8 21 9 40 35 204 4.8501 186.56219 562.54327 537.78186 -3.50213 0.00000 -1.89036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60831 0.20018 -1.00000 - 7215 2017 8 21 9 40 40 55 4.8501 186.55792 562.51486 537.75676 -3.50191 0.00000 -1.89005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60795 0.20018 -1.00000 - 7216 2017 8 21 9 40 44 905 4.8502 186.55364 562.48645 537.73167 -3.50093 0.00000 -1.88969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60760 0.20018 -1.00000 - 7217 2017 8 21 9 40 49 755 4.8502 186.54937 562.45805 537.70659 -3.49920 0.00000 -1.88930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60725 0.20018 -1.00000 - 7218 2017 8 21 9 40 54 605 4.8503 186.54509 562.42965 537.68151 -3.49677 0.00000 -1.88887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60689 0.20018 -1.00000 - 7219 2017 8 21 9 40 59 456 4.8503 186.54082 562.40126 537.65643 -3.49370 0.00000 -1.88841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60654 0.20018 -1.00000 - 7220 2017 8 21 9 41 4 306 4.8504 186.53654 562.37286 537.63135 -3.49003 0.00000 -1.88792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60619 0.20018 -1.00000 - 7221 2017 8 21 9 41 9 156 4.8504 186.53227 562.34447 537.60627 -3.48583 0.00000 -1.88741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60584 0.20018 -1.00000 - 7222 2017 8 21 9 41 14 7 4.8505 186.52799 562.31607 537.58119 -3.48117 0.00000 -1.88688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60548 0.20018 -1.00000 - 7223 2017 8 21 9 41 18 857 4.8506 186.52372 562.28768 537.55612 -3.47610 0.00000 -1.88634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60513 0.20018 -1.00000 - 7224 2017 8 21 9 41 23 708 4.8506 186.51945 562.25929 537.53105 -3.47071 0.00000 -1.88580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60478 0.20018 -1.00000 - 7225 2017 8 21 9 41 28 559 4.8507 186.51518 562.23090 537.50598 -3.46508 0.00000 -1.88525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60443 0.20018 -1.00000 - 7226 2017 8 21 9 41 33 409 4.8507 186.51090 562.20250 537.48091 -3.45930 0.00000 -1.88470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60407 0.20018 -1.00000 - 7227 2017 8 21 9 41 38 260 4.8508 186.50663 562.17411 537.45584 -3.45345 0.00000 -1.88416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60372 0.20018 -1.00000 - 7228 2017 8 21 9 41 43 111 4.8508 186.50236 562.14572 537.43078 -3.44761 0.00000 -1.88365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60337 0.20018 -1.00000 - 7229 2017 8 21 9 41 47 962 4.8509 186.49809 562.11733 537.40571 -3.44186 0.00000 -1.88315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60301 0.20018 -1.00000 - 7230 2017 8 21 9 41 52 813 4.8509 186.49382 562.08894 537.38065 -3.43628 0.00000 -1.88268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60266 0.20018 -1.00000 - 7231 2017 8 21 9 41 57 664 4.8510 186.48955 562.06055 537.35559 -3.43093 0.00000 -1.88224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60231 0.20018 -1.00000 - 7232 2017 8 21 9 42 2 515 4.8511 186.48528 562.03217 537.33054 -3.42589 0.00000 -1.88184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60196 0.20018 -1.00000 - 7233 2017 8 21 9 42 7 366 4.8511 186.48102 562.00379 537.30549 -3.42192 0.00000 -1.88148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60160 0.20017 -1.00000 - 7234 2017 8 21 9 42 12 217 4.8512 186.47675 561.97541 537.28044 -3.41909 0.00000 -1.88117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60125 0.20017 -1.00000 - 7235 2017 8 21 9 42 17 68 4.8512 186.47248 561.94705 537.25539 -3.41660 0.00000 -1.88089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60090 0.20017 -1.00000 - 7236 2017 8 21 9 42 21 920 4.8513 186.46821 561.91868 537.23035 -3.41445 0.00000 -1.88067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60054 0.20017 -1.00000 - 7237 2017 8 21 9 42 26 771 4.8513 186.46395 561.89033 537.20532 -3.41365 0.00000 -1.88049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60019 0.20017 -1.00000 - 7238 2017 8 21 9 42 31 622 4.8514 186.45968 561.86198 537.18029 -3.41360 0.00000 -1.88037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59984 0.20017 -1.00000 - 7239 2017 8 21 9 42 36 474 4.8514 186.45542 561.83364 537.15527 -3.41377 0.00000 -1.88030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59949 0.20017 -1.00000 - 7240 2017 8 21 9 42 41 325 4.8515 186.45115 561.80532 537.13025 -3.41415 0.00000 -1.88027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59913 0.20017 -1.00000 - 7241 2017 8 21 9 42 46 177 4.8516 186.44688 561.77700 537.10524 -3.41472 0.00000 -1.88030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59878 0.20017 -1.00000 - 7242 2017 8 21 9 42 51 29 4.8516 186.44262 561.74869 537.08023 -3.41547 0.00000 -1.88037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59843 0.20017 -1.00000 - 7243 2017 8 21 9 42 55 880 4.8517 186.43836 561.72039 537.05523 -3.41637 0.00000 -1.88049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59807 0.20017 -1.00000 - 7244 2017 8 21 9 43 0 732 4.8517 186.43410 561.69211 537.03024 -3.41741 0.00000 -1.88066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59772 0.20017 -1.00000 - 7245 2017 8 21 9 43 5 584 4.8518 186.42983 561.66383 537.00526 -3.41857 0.00000 -1.88086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59737 0.20017 -1.00000 - 7246 2017 8 21 9 43 10 436 4.8518 186.42557 561.63557 536.98028 -3.41987 0.00000 -1.88110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59702 0.20017 -1.00000 - 7247 2017 8 21 9 43 15 288 4.8519 186.42131 561.60732 536.95531 -3.42127 0.00000 -1.88137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59666 0.20017 -1.00000 - 7248 2017 8 21 9 43 20 139 4.8520 186.41705 561.57909 536.93034 -3.42279 0.00000 -1.88168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59631 0.20017 -1.00000 - 7249 2017 8 21 9 43 24 991 4.8520 186.41279 561.55086 536.90538 -3.42440 0.00000 -1.88201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59596 0.20017 -1.00000 - 7250 2017 8 21 9 43 29 844 4.8521 186.40853 561.52264 536.88043 -3.42610 0.00000 -1.88235 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59560 0.20017 -1.00000 - 7251 2017 8 21 9 43 34 696 4.8521 186.40427 561.49444 536.85549 -3.42789 0.00000 -1.88272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59525 0.20017 -1.00000 - 7252 2017 8 21 9 43 39 548 4.8522 186.40001 561.46625 536.83055 -3.43004 0.00000 -1.88310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59490 0.20017 -1.00000 - 7253 2017 8 21 9 43 44 400 4.8522 186.39575 561.43807 536.80561 -3.43306 0.00000 -1.88348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59455 0.20017 -1.00000 - 7254 2017 8 21 9 43 49 252 4.8523 186.39150 561.40989 536.78069 -3.43608 0.00000 -1.88388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59419 0.20017 -1.00000 - 7255 2017 8 21 9 43 54 105 4.8523 186.38724 561.38173 536.75577 -3.43907 0.00000 -1.88427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59384 0.20017 -1.00000 - 7256 2017 8 21 9 43 58 957 4.8524 186.38298 561.35357 536.73085 -3.44201 0.00000 -1.88466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59349 0.20017 -1.00000 - 7257 2017 8 21 9 44 3 810 4.8525 186.37872 561.32543 536.70594 -3.44588 0.00000 -1.88504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59313 0.20017 -1.00000 - 7258 2017 8 21 9 44 8 662 4.8525 186.37447 561.29729 536.68103 -3.44963 0.00000 -1.88541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59278 0.20017 -1.00000 - 7259 2017 8 21 9 44 13 515 4.8526 186.37021 561.26915 536.65612 -3.45321 0.00000 -1.88578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59243 0.20017 -1.00000 - 7260 2017 8 21 9 44 18 367 4.8526 186.36596 561.24102 536.63122 -3.45659 0.00000 -1.88613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59208 0.20017 -1.00000 - 7261 2017 8 21 9 44 23 220 4.8527 186.36170 561.21290 536.60633 -3.45973 0.00000 -1.88646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59172 0.20016 -1.00000 - 7262 2017 8 21 9 44 28 73 4.8527 186.35745 561.18478 536.58143 -3.46264 0.00000 -1.88676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59137 0.20016 -1.00000 - 7263 2017 8 21 9 44 32 925 4.8528 186.35320 561.15666 536.55654 -3.46529 0.00000 -1.88705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59102 0.20016 -1.00000 - 7264 2017 8 21 9 44 37 778 4.8528 186.34894 561.12854 536.53165 -3.46768 0.00000 -1.88731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59066 0.20016 -1.00000 - 7265 2017 8 21 9 44 42 631 4.8529 186.34469 561.10043 536.50676 -3.46982 0.00000 -1.88756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59031 0.20016 -1.00000 - 7266 2017 8 21 9 44 47 484 4.8530 186.34044 561.07231 536.48187 -3.47170 0.00000 -1.88778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58996 0.20016 -1.00000 - 7267 2017 8 21 9 44 52 337 4.8530 186.33619 561.04420 536.45699 -3.47335 0.00000 -1.88797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58961 0.20016 -1.00000 - 7268 2017 8 21 9 44 57 190 4.8531 186.33194 561.01608 536.43211 -3.47476 0.00000 -1.88814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58925 0.20016 -1.00000 - 7269 2017 8 21 9 45 2 43 4.8531 186.32769 560.98797 536.40722 -3.47595 0.00000 -1.88828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58890 0.20016 -1.00000 - 7270 2017 8 21 9 45 6 897 4.8532 186.32343 560.95986 536.38235 -3.47692 0.00000 -1.88841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58855 0.20016 -1.00000 - 7271 2017 8 21 9 45 11 750 4.8532 186.31918 560.93175 536.35747 -3.47769 0.00000 -1.88850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58819 0.20016 -1.00000 - 7272 2017 8 21 9 45 16 603 4.8533 186.31494 560.90364 536.33259 -3.47827 0.00000 -1.88858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58784 0.20016 -1.00000 - 7273 2017 8 21 9 45 21 456 4.8533 186.31069 560.87553 536.30772 -3.47866 0.00000 -1.88862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58749 0.20016 -1.00000 - 7274 2017 8 21 9 45 26 310 4.8534 186.30644 560.84742 536.28285 -3.47888 0.00000 -1.88864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58714 0.20016 -1.00000 - 7275 2017 8 21 9 45 31 163 4.8535 186.30219 560.81932 536.25798 -3.47893 0.00000 -1.88865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58678 0.20016 -1.00000 - 7276 2017 8 21 9 45 36 17 4.8535 186.29795 560.79121 536.23311 -3.47884 0.00000 -1.88863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58643 0.20016 -1.00000 - 7277 2017 8 21 9 45 40 870 4.8536 186.29370 560.76311 536.20825 -3.47860 0.00000 -1.88858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58608 0.20016 -1.00000 - 7278 2017 8 21 9 45 45 724 4.8536 186.28946 560.73501 536.18339 -3.47823 0.00000 -1.88851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58572 0.20016 -1.00000 - 7279 2017 8 21 9 45 50 578 4.8537 186.28521 560.70691 536.15852 -3.47775 0.00000 -1.88842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58537 0.20016 -1.00000 - 7280 2017 8 21 9 45 55 431 4.8537 186.28097 560.67882 536.13366 -3.47716 0.00000 -1.88831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58502 0.20016 -1.00000 - 7281 2017 8 21 9 46 0 285 4.8538 186.27672 560.65073 536.10881 -3.47649 0.00000 -1.88819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58466 0.20016 -1.00000 - 7282 2017 8 21 9 46 5 139 4.8538 186.27248 560.62264 536.08395 -3.47573 0.00000 -1.88804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58431 0.20016 -1.00000 - 7283 2017 8 21 9 46 9 993 4.8539 186.26824 560.59455 536.05910 -3.47490 0.00000 -1.88788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58396 0.20016 -1.00000 - 7284 2017 8 21 9 46 14 847 4.8540 186.26400 560.56646 536.03424 -3.47401 0.00000 -1.88769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58361 0.20016 -1.00000 - 7285 2017 8 21 9 46 19 701 4.8540 186.25975 560.53837 536.00939 -3.47307 0.00000 -1.88748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58325 0.20016 -1.00000 - 7286 2017 8 21 9 46 24 555 4.8541 186.25551 560.51028 535.98454 -3.47208 0.00000 -1.88726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58290 0.20016 -1.00000 - 7287 2017 8 21 9 46 29 409 4.8541 186.25127 560.48219 535.95969 -3.47104 0.00000 -1.88703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58255 0.20016 -1.00000 - 7288 2017 8 21 9 46 34 263 4.8542 186.24703 560.45410 535.93483 -3.46997 0.00000 -1.88678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58219 0.20016 -1.00000 - 7289 2017 8 21 9 46 39 118 4.8542 186.24279 560.42601 535.90998 -3.46886 0.00000 -1.88651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58184 0.20015 -1.00000 - 7290 2017 8 21 9 46 43 972 4.8543 186.23855 560.39791 535.88513 -3.46772 0.00000 -1.88622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58149 0.20015 -1.00000 - 7291 2017 8 21 9 46 48 826 4.8543 186.23431 560.36981 535.86028 -3.46653 0.00000 -1.88592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58113 0.20015 -1.00000 - 7292 2017 8 21 9 46 53 681 4.8544 186.23008 560.34171 535.83543 -3.46531 0.00000 -1.88561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58078 0.20015 -1.00000 - 7293 2017 8 21 9 46 58 535 4.8545 186.22584 560.31361 535.81057 -3.46405 0.00000 -1.88528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58043 0.20015 -1.00000 - 7294 2017 8 21 9 47 3 390 4.8545 186.22161 560.28550 535.78572 -3.46276 0.00000 -1.88495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58008 0.20015 -1.00000 - 7295 2017 8 21 9 47 8 244 4.8546 186.21737 560.25739 535.76087 -3.46142 0.00000 -1.88459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57972 0.20015 -1.00000 - 7296 2017 8 21 9 47 13 99 4.8546 186.21313 560.22927 535.73601 -3.46004 0.00000 -1.88422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57937 0.20015 -1.00000 - 7297 2017 8 21 9 47 17 953 4.8547 186.20890 560.20116 535.71116 -3.45862 0.00000 -1.88385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57902 0.20015 -1.00000 - 7298 2017 8 21 9 47 22 808 4.8547 186.20467 560.17304 535.68631 -3.45716 0.00000 -1.88347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57866 0.20015 -1.00000 - 7299 2017 8 21 9 47 27 663 4.8548 186.20043 560.14492 535.66146 -3.45566 0.00000 -1.88308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57831 0.20015 -1.00000 - 7300 2017 8 21 9 47 32 518 4.8548 186.19619 560.11679 535.63661 -3.45411 0.00000 -1.88268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57796 0.20015 -1.00000 - 7301 2017 8 21 9 47 37 373 4.8549 186.19196 560.08867 535.61176 -3.45252 0.00000 -1.88226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57760 0.20015 -1.00000 - 7302 2017 8 21 9 47 42 228 4.8550 186.18774 560.06054 535.58691 -3.45089 0.00000 -1.88183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57725 0.20015 -1.00000 - 7303 2017 8 21 9 47 47 83 4.8550 186.18351 560.03241 535.56207 -3.44921 0.00000 -1.88141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57690 0.20015 -1.00000 - 7304 2017 8 21 9 47 51 938 4.8551 186.17927 560.00429 535.53723 -3.44749 0.00000 -1.88098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57654 0.20015 -1.00000 - 7305 2017 8 21 9 47 56 793 4.8551 186.17503 559.97616 535.51239 -3.44573 0.00000 -1.88055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57619 0.20015 -1.00000 - 7306 2017 8 21 9 48 1 648 4.8552 186.17081 559.94804 535.48755 -3.44393 0.00000 -1.88011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57584 0.20015 -1.00000 - 7307 2017 8 21 9 48 6 503 4.8552 186.16659 559.91992 535.46272 -3.44210 0.00000 -1.87965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57549 0.20015 -1.00000 - 7308 2017 8 21 9 48 11 359 4.8553 186.16236 559.89181 535.43789 -3.44022 0.00000 -1.87920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57513 0.20015 -1.00000 - 7309 2017 8 21 9 48 16 214 4.8553 186.15813 559.86370 535.41307 -3.43832 0.00000 -1.87875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57478 0.20015 -1.00000 - 7310 2017 8 21 9 48 21 69 4.8554 186.15389 559.83559 535.38825 -3.43638 0.00000 -1.87831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57443 0.20015 -1.00000 - 7311 2017 8 21 9 48 25 925 4.8555 186.14967 559.80750 535.36344 -3.43442 0.00000 -1.87787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57407 0.20015 -1.00000 - 7312 2017 8 21 9 48 30 780 4.8555 186.14546 559.77940 535.33863 -3.43244 0.00000 -1.87741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57372 0.20015 -1.00000 - 7313 2017 8 21 9 48 35 636 4.8556 186.14123 559.75132 535.31383 -3.43045 0.00000 -1.87696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57337 0.20015 -1.00000 - 7314 2017 8 21 9 48 40 492 4.8556 186.13699 559.72324 535.28903 -3.42845 0.00000 -1.87652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57301 0.20015 -1.00000 - 7315 2017 8 21 9 48 45 347 4.8557 186.13276 559.69517 535.26424 -3.42646 0.00000 -1.87609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57266 0.20015 -1.00000 - 7316 2017 8 21 9 48 50 203 4.8557 186.12854 559.66712 535.23945 -3.42447 0.00000 -1.87566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57231 0.20015 -1.00000 - 7317 2017 8 21 9 48 55 59 4.8558 186.12434 559.63907 535.21467 -3.42250 0.00000 -1.87524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57195 0.20014 -1.00000 - 7318 2017 8 21 9 48 59 915 4.8558 186.12012 559.61103 535.18990 -3.42055 0.00000 -1.87481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57160 0.20014 -1.00000 - 7319 2017 8 21 9 49 4 771 4.8559 186.11587 559.58299 535.16513 -3.41865 0.00000 -1.87440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57125 0.20014 -1.00000 - 7320 2017 8 21 9 49 9 626 4.8560 186.11164 559.55497 535.14036 -3.41679 0.00000 -1.87400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57090 0.20014 -1.00000 - 7321 2017 8 21 9 49 14 482 4.8560 186.10744 559.52696 535.11561 -3.41498 0.00000 -1.87361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57054 0.20014 -1.00000 - 7322 2017 8 21 9 49 19 339 4.8561 186.10324 559.49895 535.09085 -3.41325 0.00000 -1.87324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57019 0.20014 -1.00000 - 7323 2017 8 21 9 49 24 195 4.8561 186.09902 559.47095 535.06611 -3.41159 0.00000 -1.87287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56984 0.20014 -1.00000 - 7324 2017 8 21 9 49 29 51 4.8562 186.09477 559.44296 535.04136 -3.41001 0.00000 -1.87251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56948 0.20014 -1.00000 - 7325 2017 8 21 9 49 33 907 4.8562 186.09054 559.41498 535.01662 -3.40853 0.00000 -1.87217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56913 0.20014 -1.00000 - 7326 2017 8 21 9 49 38 763 4.8563 186.08635 559.38701 534.99189 -3.40716 0.00000 -1.87185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56878 0.20014 -1.00000 - 7327 2017 8 21 9 49 43 620 4.8563 186.08216 559.35905 534.96716 -3.40607 0.00000 -1.87154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56842 0.20014 -1.00000 - 7328 2017 8 21 9 49 48 476 4.8564 186.07793 559.33109 534.94243 -3.40507 0.00000 -1.87125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56807 0.20014 -1.00000 - 7329 2017 8 21 9 49 53 333 4.8565 186.07367 559.30313 534.91770 -3.40416 0.00000 -1.87096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56772 0.20014 -1.00000 - 7330 2017 8 21 9 49 58 189 4.8565 186.06945 559.27518 534.89298 -3.40333 0.00000 -1.87069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56736 0.20014 -1.00000 - 7331 2017 8 21 9 50 3 46 4.8566 186.06528 559.24724 534.86826 -3.40258 0.00000 -1.87043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56701 0.20014 -1.00000 - 7332 2017 8 21 9 50 7 902 4.8566 186.06110 559.21930 534.84355 -3.40190 0.00000 -1.87021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56666 0.20014 -1.00000 - 7333 2017 8 21 9 50 12 759 4.8567 186.05686 559.19137 534.81884 -3.40130 0.00000 -1.87000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56630 0.20014 -1.00000 - 7334 2017 8 21 9 50 17 616 4.8567 186.05259 559.16344 534.79412 -3.40076 0.00000 -1.86980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56595 0.20014 -1.00000 - 7335 2017 8 21 9 50 22 473 4.8568 186.04838 559.13551 534.76941 -3.40029 0.00000 -1.86960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56560 0.20014 -1.00000 - 7336 2017 8 21 9 50 27 329 4.8568 186.04423 559.10758 534.74470 -3.39988 0.00000 -1.86942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56524 0.20014 -1.00000 - 7337 2017 8 21 9 50 32 186 4.8569 186.04005 559.07965 534.72000 -3.39952 0.00000 -1.86927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56489 0.20014 -1.00000 - 7338 2017 8 21 9 50 37 43 4.8570 186.03580 559.05173 534.69529 -3.39921 0.00000 -1.86913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56454 0.20014 -1.00000 - 7339 2017 8 21 9 50 41 900 4.8570 186.03153 559.02381 534.67059 -3.39895 0.00000 -1.86902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56418 0.20014 -1.00000 - 7340 2017 8 21 9 50 46 757 4.8571 186.02734 558.99588 534.64588 -3.39872 0.00000 -1.86890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56383 0.20014 -1.00000 - 7341 2017 8 21 9 50 51 614 4.8571 186.02320 558.96796 534.62118 -3.39853 0.00000 -1.86880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56348 0.20014 -1.00000 - 7342 2017 8 21 9 50 56 472 4.8572 186.01902 558.94003 534.59647 -3.39845 0.00000 -1.86871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56313 0.20014 -1.00000 - 7343 2017 8 21 9 51 1 329 4.8572 186.01475 558.91211 534.57177 -3.39845 0.00000 -1.86865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56277 0.20014 -1.00000 - 7344 2017 8 21 9 51 6 186 4.8573 186.01049 558.88419 534.54707 -3.39847 0.00000 -1.86861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56242 0.20014 -1.00000 - 7345 2017 8 21 9 51 11 43 4.8573 186.00632 558.85627 534.52237 -3.39851 0.00000 -1.86857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56207 0.20013 -1.00000 - 7346 2017 8 21 9 51 15 901 4.8574 186.00219 558.82834 534.49767 -3.39858 0.00000 -1.86854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56171 0.20013 -1.00000 - 7347 2017 8 21 9 51 20 758 4.8575 185.99800 558.80042 534.47297 -3.39868 0.00000 -1.86851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56136 0.20013 -1.00000 - 7348 2017 8 21 9 51 25 616 4.8575 185.99373 558.77250 534.44828 -3.39881 0.00000 -1.86851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56101 0.20013 -1.00000 - 7349 2017 8 21 9 51 30 473 4.8576 185.98947 558.74458 534.42358 -3.39900 0.00000 -1.86854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56065 0.20013 -1.00000 - 7350 2017 8 21 9 51 35 331 4.8576 185.98531 558.71666 534.39889 -3.39923 0.00000 -1.86858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56030 0.20013 -1.00000 - 7351 2017 8 21 9 51 40 189 4.8577 185.98119 558.68875 534.37420 -3.39962 0.00000 -1.86862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55995 0.20013 -1.00000 - 7352 2017 8 21 9 51 45 46 4.8577 185.97698 558.66083 534.34952 -3.40016 0.00000 -1.86867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55959 0.20013 -1.00000 - 7353 2017 8 21 9 51 49 904 4.8578 185.97271 558.63292 534.32483 -3.40078 0.00000 -1.86873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55924 0.20013 -1.00000 - 7354 2017 8 21 9 51 54 762 4.8578 185.96847 558.60502 534.30015 -3.40151 0.00000 -1.86881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55889 0.20013 -1.00000 - 7355 2017 8 21 9 51 59 620 4.8579 185.96432 558.57712 534.27547 -3.40232 0.00000 -1.86892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55853 0.20013 -1.00000 - 7356 2017 8 21 9 52 4 478 4.8580 185.96019 558.54922 534.25080 -3.40324 0.00000 -1.86903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55818 0.20013 -1.00000 - 7357 2017 8 21 9 52 9 336 4.8580 185.95599 558.52133 534.22613 -3.40426 0.00000 -1.86915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55783 0.20013 -1.00000 - 7358 2017 8 21 9 52 14 194 4.8581 185.95172 558.49344 534.20146 -3.40536 0.00000 -1.86927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55747 0.20013 -1.00000 - 7359 2017 8 21 9 52 19 52 4.8581 185.94748 558.46556 534.17680 -3.40654 0.00000 -1.86941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55712 0.20013 -1.00000 - 7360 2017 8 21 9 52 23 910 4.8582 185.94334 558.43769 534.15214 -3.40779 0.00000 -1.86956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55677 0.20013 -1.00000 - 7361 2017 8 21 9 52 28 769 4.8582 185.93921 558.40982 534.12749 -3.40910 0.00000 -1.86973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55641 0.20013 -1.00000 - 7362 2017 8 21 9 52 33 627 4.8583 185.93500 558.38196 534.10284 -3.41046 0.00000 -1.86990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55606 0.20013 -1.00000 - 7363 2017 8 21 9 52 38 485 4.8583 185.93074 558.35411 534.07820 -3.41185 0.00000 -1.87005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55571 0.20013 -1.00000 - 7364 2017 8 21 9 52 43 344 4.8584 185.92651 558.32626 534.05356 -3.41327 0.00000 -1.87021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55535 0.20013 -1.00000 - 7365 2017 8 21 9 52 48 202 4.8585 185.92238 558.29842 534.02892 -3.41469 0.00000 -1.87038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55500 0.20013 -1.00000 - 7366 2017 8 21 9 52 53 61 4.8585 185.91825 558.27059 534.00429 -3.41610 0.00000 -1.87056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55465 0.20013 -1.00000 - 7367 2017 8 21 9 52 57 919 4.8586 185.91404 558.24276 533.97967 -3.41750 0.00000 -1.87074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55429 0.20013 -1.00000 - 7368 2017 8 21 9 53 2 778 4.8586 185.90978 558.21495 533.95505 -3.41916 0.00000 -1.87091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55394 0.20013 -1.00000 - 7369 2017 8 21 9 53 7 636 4.8587 185.90556 558.18713 533.93043 -3.42078 0.00000 -1.87105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55359 0.20013 -1.00000 - 7370 2017 8 21 9 53 12 495 4.8587 185.90143 558.15932 533.90582 -3.42234 0.00000 -1.87119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55323 0.20013 -1.00000 - 7371 2017 8 21 9 53 17 354 4.8588 185.89731 558.13152 533.88121 -3.42383 0.00000 -1.87134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55288 0.20013 -1.00000 - 7372 2017 8 21 9 53 22 213 4.8588 185.89310 558.10373 533.85660 -3.42521 0.00000 -1.87148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55253 0.20013 -1.00000 - 7373 2017 8 21 9 53 27 72 4.8589 185.88884 558.07594 533.83200 -3.42647 0.00000 -1.87161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55217 0.20012 -1.00000 - 7374 2017 8 21 9 53 31 931 4.8589 185.88462 558.04816 533.80740 -3.42760 0.00000 -1.87171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55182 0.20012 -1.00000 - 7375 2017 8 21 9 53 36 790 4.8590 185.88050 558.02037 533.78281 -3.42858 0.00000 -1.87180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55147 0.20012 -1.00000 - 7376 2017 8 21 9 53 41 649 4.8591 185.87638 557.99259 533.75822 -3.42940 0.00000 -1.87187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55111 0.20012 -1.00000 - 7377 2017 8 21 9 53 46 508 4.8591 185.87218 557.96482 533.73363 -3.43006 0.00000 -1.87194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55076 0.20012 -1.00000 - 7378 2017 8 21 9 53 51 367 4.8592 185.86792 557.93705 533.70905 -3.43055 0.00000 -1.87200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55041 0.20012 -1.00000 - 7379 2017 8 21 9 53 56 226 4.8592 185.86370 557.90929 533.68446 -3.43087 0.00000 -1.87204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55005 0.20012 -1.00000 - 7380 2017 8 21 9 54 1 85 4.8593 185.85959 557.88152 533.65988 -3.43102 0.00000 -1.87205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54970 0.20012 -1.00000 - 7381 2017 8 21 9 54 5 945 4.8593 185.85548 557.85376 533.63531 -3.43102 0.00000 -1.87205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54935 0.20012 -1.00000 - 7382 2017 8 21 9 54 10 804 4.8594 185.85128 557.82600 533.61073 -3.43085 0.00000 -1.87203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54899 0.20012 -1.00000 - 7383 2017 8 21 9 54 15 664 4.8594 185.84702 557.79824 533.58616 -3.43054 0.00000 -1.87201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54864 0.20012 -1.00000 - 7384 2017 8 21 9 54 20 523 4.8595 185.84281 557.77049 533.56160 -3.43009 0.00000 -1.87199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54829 0.20012 -1.00000 - 7385 2017 8 21 9 54 25 383 4.8596 185.83870 557.74273 533.53703 -3.42951 0.00000 -1.87194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54793 0.20012 -1.00000 - 7386 2017 8 21 9 54 30 242 4.8596 185.83460 557.71498 533.51246 -3.42881 0.00000 -1.87186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54758 0.20012 -1.00000 - 7387 2017 8 21 9 54 35 102 4.8597 185.83039 557.68722 533.48790 -3.42800 0.00000 -1.87177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54723 0.20012 -1.00000 - 7388 2017 8 21 9 54 39 962 4.8597 185.82614 557.65947 533.46334 -3.42710 0.00000 -1.87169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54687 0.20012 -1.00000 - 7389 2017 8 21 9 54 44 821 4.8598 185.82193 557.63172 533.43879 -3.42612 0.00000 -1.87160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54652 0.20012 -1.00000 - 7390 2017 8 21 9 54 49 681 4.8598 185.81783 557.60398 533.41424 -3.42508 0.00000 -1.87151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54617 0.20012 -1.00000 - 7391 2017 8 21 9 54 54 541 4.8599 185.81373 557.57623 533.38969 -3.42398 0.00000 -1.87140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54581 0.20012 -1.00000 - 7392 2017 8 21 9 54 59 401 4.8599 185.80953 557.54849 533.36514 -3.42285 0.00000 -1.87126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54546 0.20012 -1.00000 - 7393 2017 8 21 9 55 4 261 4.8600 185.80527 557.52074 533.34059 -3.42170 0.00000 -1.87112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54511 0.20012 -1.00000 - 7394 2017 8 21 9 55 9 121 4.8601 185.80107 557.49301 533.31605 -3.42055 0.00000 -1.87099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54475 0.20012 -1.00000 - 7395 2017 8 21 9 55 13 981 4.8601 185.79697 557.46528 533.29152 -3.41940 0.00000 -1.87086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54440 0.20012 -1.00000 - 7396 2017 8 21 9 55 18 841 4.8602 185.79287 557.43755 533.26699 -3.41827 0.00000 -1.87073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54405 0.20012 -1.00000 - 7397 2017 8 21 9 55 23 702 4.8602 185.78867 557.40983 533.24246 -3.41717 0.00000 -1.87058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54369 0.20012 -1.00000 - 7398 2017 8 21 9 55 28 562 4.8603 185.78442 557.38211 533.21794 -3.41611 0.00000 -1.87042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54334 0.20012 -1.00000 - 7399 2017 8 21 9 55 33 422 4.8603 185.78023 557.35439 533.19342 -3.41510 0.00000 -1.87027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54298 0.20012 -1.00000 - 7400 2017 8 21 9 55 38 283 4.8604 185.77613 557.32669 533.16891 -3.41415 0.00000 -1.87012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54263 0.20012 -1.00000 - 7401 2017 8 21 9 55 43 143 4.8604 185.77203 557.29900 533.14440 -3.41345 0.00000 -1.86998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54228 0.20011 -1.00000 - 7402 2017 8 21 9 55 48 3 4.8605 185.76784 557.27131 533.11990 -3.41278 0.00000 -1.86983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54192 0.20011 -1.00000 - 7403 2017 8 21 9 55 52 864 4.8605 185.76359 557.24363 533.09540 -3.41216 0.00000 -1.86966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54157 0.20011 -1.00000 - 7404 2017 8 21 9 55 57 725 4.8606 185.75940 557.21596 533.07091 -3.41157 0.00000 -1.86949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54122 0.20011 -1.00000 - 7405 2017 8 21 9 56 2 585 4.8607 185.75530 557.18829 533.04642 -3.41102 0.00000 -1.86932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54086 0.20011 -1.00000 - 7406 2017 8 21 9 56 7 446 4.8607 185.75121 557.16064 533.02194 -3.41049 0.00000 -1.86916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54051 0.20011 -1.00000 - 7407 2017 8 21 9 56 12 307 4.8608 185.74701 557.13301 532.99747 -3.41000 0.00000 -1.86901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54016 0.20011 -1.00000 - 7408 2017 8 21 9 56 17 168 4.8608 185.74277 557.10538 532.97299 -3.40953 0.00000 -1.86884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53980 0.20011 -1.00000 - 7409 2017 8 21 9 56 22 28 4.8609 185.73859 557.07775 532.94853 -3.40908 0.00000 -1.86865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53945 0.20011 -1.00000 - 7410 2017 8 21 9 56 26 889 4.8609 185.73450 557.05013 532.92406 -3.40866 0.00000 -1.86846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53910 0.20011 -1.00000 - 7411 2017 8 21 9 56 31 750 4.8610 185.73041 557.02252 532.89960 -3.40824 0.00000 -1.86827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53874 0.20011 -1.00000 - 7412 2017 8 21 9 56 36 611 4.8610 185.72620 556.99492 532.87514 -3.40782 0.00000 -1.86809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53839 0.20011 -1.00000 - 7413 2017 8 21 9 56 41 472 4.8611 185.72196 556.96733 532.85069 -3.40739 0.00000 -1.86792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53804 0.20011 -1.00000 - 7414 2017 8 21 9 56 46 334 4.8611 185.71780 556.93973 532.82623 -3.40695 0.00000 -1.86772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53768 0.20011 -1.00000 - 7415 2017 8 21 9 56 51 195 4.8612 185.71373 556.91213 532.80177 -3.40649 0.00000 -1.86751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53733 0.20011 -1.00000 - 7416 2017 8 21 9 56 56 56 4.8613 185.70963 556.88453 532.77732 -3.40601 0.00000 -1.86729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53698 0.20011 -1.00000 - 7417 2017 8 21 9 57 0 917 4.8613 185.70542 556.85693 532.75286 -3.40552 0.00000 -1.86708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53662 0.20011 -1.00000 - 7418 2017 8 21 9 57 5 779 4.8614 185.70119 556.82934 532.72840 -3.40506 0.00000 -1.86687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53627 0.20011 -1.00000 - 7419 2017 8 21 9 57 10 640 4.8614 185.69704 556.80173 532.70394 -3.40468 0.00000 -1.86667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53591 0.20011 -1.00000 - 7420 2017 8 21 9 57 15 502 4.8615 185.69298 556.77411 532.67947 -3.40426 0.00000 -1.86644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53556 0.20011 -1.00000 - 7421 2017 8 21 9 57 20 363 4.8615 185.68889 556.74648 532.65500 -3.40380 0.00000 -1.86619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53521 0.20011 -1.00000 - 7422 2017 8 21 9 57 25 225 4.8616 185.68467 556.71884 532.63053 -3.40329 0.00000 -1.86595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53485 0.20011 -1.00000 - 7423 2017 8 21 9 57 30 86 4.8616 185.68044 556.69120 532.60605 -3.40273 0.00000 -1.86572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53450 0.20011 -1.00000 - 7424 2017 8 21 9 57 34 948 4.8617 185.67631 556.66354 532.58157 -3.40212 0.00000 -1.86550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53415 0.20011 -1.00000 - 7425 2017 8 21 9 57 39 810 4.8617 185.67226 556.63587 532.55709 -3.40147 0.00000 -1.86527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53379 0.20011 -1.00000 - 7426 2017 8 21 9 57 44 672 4.8618 185.66815 556.60819 532.53260 -3.40077 0.00000 -1.86503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53344 0.20011 -1.00000 - 7427 2017 8 21 9 57 49 534 4.8619 185.66394 556.58049 532.50811 -3.40003 0.00000 -1.86477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53309 0.20011 -1.00000 - 7428 2017 8 21 9 57 54 395 4.8619 185.65971 556.55279 532.48362 -3.39926 0.00000 -1.86452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53273 0.20011 -1.00000 - 7429 2017 8 21 9 57 59 257 4.8620 185.65559 556.52508 532.45913 -3.39846 0.00000 -1.86429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53238 0.20010 -1.00000 - 7430 2017 8 21 9 58 4 119 4.8620 185.65154 556.49737 532.43464 -3.39764 0.00000 -1.86407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53203 0.20010 -1.00000 - 7431 2017 8 21 9 58 8 981 4.8621 185.64743 556.46965 532.41015 -3.39680 0.00000 -1.86385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53167 0.20010 -1.00000 - 7432 2017 8 21 9 58 13 844 4.8621 185.64321 556.44192 532.38567 -3.39594 0.00000 -1.86360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53132 0.20010 -1.00000 - 7433 2017 8 21 9 58 18 706 4.8622 185.63900 556.41419 532.36119 -3.39508 0.00000 -1.86336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53097 0.20010 -1.00000 - 7434 2017 8 21 9 58 23 568 4.8622 185.63489 556.38647 532.33671 -3.39423 0.00000 -1.86313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53061 0.20010 -1.00000 - 7435 2017 8 21 9 58 28 430 4.8623 185.63084 556.35876 532.31225 -3.39337 0.00000 -1.86292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53026 0.20010 -1.00000 - 7436 2017 8 21 9 58 33 293 4.8624 185.62672 556.33106 532.28779 -3.39253 0.00000 -1.86272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52990 0.20010 -1.00000 - 7437 2017 8 21 9 58 38 155 4.8624 185.62250 556.30337 532.26334 -3.39171 0.00000 -1.86251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52955 0.20010 -1.00000 - 7438 2017 8 21 9 58 43 18 4.8625 185.61829 556.27569 532.23890 -3.39092 0.00000 -1.86229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52920 0.20010 -1.00000 - 7439 2017 8 21 9 58 47 880 4.8625 185.61420 556.24803 532.21447 -3.39030 0.00000 -1.86207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52884 0.20010 -1.00000 - 7440 2017 8 21 9 58 52 743 4.8626 185.61016 556.22039 532.19006 -3.38971 0.00000 -1.86187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52849 0.20010 -1.00000 - 7441 2017 8 21 9 58 57 605 4.8626 185.60604 556.19278 532.16566 -3.38917 0.00000 -1.86168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52814 0.20010 -1.00000 - 7442 2017 8 21 9 59 2 468 4.8627 185.60181 556.16519 532.14127 -3.38867 0.00000 -1.86151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52778 0.20010 -1.00000 - 7443 2017 8 21 9 59 7 331 4.8627 185.59761 556.13763 532.11689 -3.38822 0.00000 -1.86132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52743 0.20010 -1.00000 - 7444 2017 8 21 9 59 12 194 4.8628 185.59354 556.11008 532.09253 -3.38782 0.00000 -1.86112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52708 0.20010 -1.00000 - 7445 2017 8 21 9 59 17 56 4.8628 185.58950 556.08257 532.06818 -3.38745 0.00000 -1.86092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52672 0.20010 -1.00000 - 7446 2017 8 21 9 59 21 919 4.8629 185.58537 556.05508 532.04384 -3.38713 0.00000 -1.86073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52637 0.20010 -1.00000 - 7447 2017 8 21 9 59 26 782 4.8630 185.58115 556.02763 532.01952 -3.38685 0.00000 -1.86056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52601 0.20010 -1.00000 - 7448 2017 8 21 9 59 31 645 4.8630 185.57696 556.00020 531.99521 -3.38660 0.00000 -1.86040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52566 0.20010 -1.00000 - 7449 2017 8 21 9 59 36 508 4.8631 185.57290 555.97280 531.97091 -3.38639 0.00000 -1.86021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52531 0.20010 -1.00000 - 7450 2017 8 21 9 59 41 371 4.8631 185.56887 555.94542 531.94661 -3.38620 0.00000 -1.86001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52495 0.20010 -1.00000 - 7451 2017 8 21 9 59 46 235 4.8632 185.56474 555.91805 531.92232 -3.38603 0.00000 -1.85981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52460 0.20010 -1.00000 - 7452 2017 8 21 9 59 51 98 4.8632 185.56052 555.89071 531.89804 -3.38587 0.00000 -1.85963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52425 0.20010 -1.00000 - 7453 2017 8 21 9 59 55 961 4.8633 185.55634 555.86338 531.87376 -3.38572 0.00000 -1.85946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52389 0.20010 -1.00000 - 7454 2017 8 21 10 0 0 824 4.8633 185.55228 555.83607 531.84949 -3.38556 0.00000 -1.85929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52354 0.20010 -1.00000 - 7455 2017 8 21 10 0 5 688 4.8634 185.54825 555.80875 531.82521 -3.38539 0.00000 -1.85909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52319 0.20010 -1.00000 - 7456 2017 8 21 10 0 10 551 4.8634 185.54412 555.78144 531.80092 -3.38520 0.00000 -1.85887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52283 0.20010 -1.00000 - 7457 2017 8 21 10 0 15 415 4.8635 185.53991 555.75412 531.77664 -3.38498 0.00000 -1.85867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52248 0.20009 -1.00000 - 7458 2017 8 21 10 0 20 278 4.8636 185.53573 555.72680 531.75234 -3.38472 0.00000 -1.85847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52212 0.20009 -1.00000 - 7459 2017 8 21 10 0 25 142 4.8636 185.53168 555.69947 531.72804 -3.38441 0.00000 -1.85829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52177 0.20009 -1.00000 - 7460 2017 8 21 10 0 30 6 4.8637 185.52765 555.67212 531.70373 -3.38405 0.00000 -1.85810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52142 0.20009 -1.00000 - 7461 2017 8 21 10 0 34 869 4.8637 185.52353 555.64474 531.67940 -3.38378 0.00000 -1.85788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52106 0.20009 -1.00000 - 7462 2017 8 21 10 0 39 733 4.8638 185.51932 555.61734 531.65506 -3.38353 0.00000 -1.85765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52071 0.20009 -1.00000 - 7463 2017 8 21 10 0 44 597 4.8638 185.51515 555.58991 531.63071 -3.38319 0.00000 -1.85744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52036 0.20009 -1.00000 - 7464 2017 8 21 10 0 49 461 4.8639 185.51110 555.56246 531.60634 -3.38276 0.00000 -1.85724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52000 0.20009 -1.00000 - 7465 2017 8 21 10 0 54 325 4.8639 185.50707 555.53498 531.58196 -3.38223 0.00000 -1.85706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51965 0.20009 -1.00000 - 7466 2017 8 21 10 0 59 189 4.8640 185.50295 555.50746 531.55757 -3.38158 0.00000 -1.85687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51929 0.20009 -1.00000 - 7467 2017 8 21 10 1 4 53 4.8640 185.49875 555.47991 531.53316 -3.38083 0.00000 -1.85666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51894 0.20009 -1.00000 - 7468 2017 8 21 10 1 8 917 4.8641 185.49459 555.45232 531.50873 -3.37997 0.00000 -1.85645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51859 0.20009 -1.00000 - 7469 2017 8 21 10 1 13 781 4.8641 185.49054 555.42470 531.48430 -3.37902 0.00000 -1.85626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51823 0.20009 -1.00000 - 7470 2017 8 21 10 1 18 645 4.8642 185.48652 555.39706 531.45986 -3.37797 0.00000 -1.85610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51788 0.20009 -1.00000 - 7471 2017 8 21 10 1 23 509 4.8643 185.48239 555.36939 531.43541 -3.37684 0.00000 -1.85596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51753 0.20009 -1.00000 - 7472 2017 8 21 10 1 28 374 4.8643 185.47819 555.34169 531.41095 -3.37565 0.00000 -1.85581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51717 0.20009 -1.00000 - 7473 2017 8 21 10 1 33 238 4.8644 185.47404 555.31396 531.38649 -3.37442 0.00000 -1.85565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51682 0.20009 -1.00000 - 7474 2017 8 21 10 1 38 103 4.8644 185.47001 555.28622 531.36203 -3.37317 0.00000 -1.85551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51646 0.20009 -1.00000 - 7475 2017 8 21 10 1 42 967 4.8645 185.46599 555.25847 531.33757 -3.37192 0.00000 -1.85541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51611 0.20009 -1.00000 - 7476 2017 8 21 10 1 47 832 4.8645 185.46185 555.23071 531.31311 -3.37070 0.00000 -1.85534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51576 0.20009 -1.00000 - 7477 2017 8 21 10 1 52 696 4.8646 185.45764 555.20296 531.28866 -3.36987 0.00000 -1.85529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51540 0.20009 -1.00000 - 7478 2017 8 21 10 1 57 561 4.8646 185.45351 555.17521 531.26422 -3.36927 0.00000 -1.85524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51505 0.20009 -1.00000 - 7479 2017 8 21 10 2 2 425 4.8647 185.44950 555.14746 531.23980 -3.36883 0.00000 -1.85520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51470 0.20009 -1.00000 - 7480 2017 8 21 10 2 7 290 4.8647 185.44548 555.11974 531.21538 -3.36856 0.00000 -1.85518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51434 0.20009 -1.00000 - 7481 2017 8 21 10 2 12 155 4.8648 185.44133 555.09204 531.19099 -3.36848 0.00000 -1.85519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51399 0.20009 -1.00000 - 7482 2017 8 21 10 2 17 20 4.8649 185.43713 555.06438 531.16662 -3.36860 0.00000 -1.85525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51363 0.20009 -1.00000 - 7483 2017 8 21 10 2 21 885 4.8649 185.43302 555.03675 531.14227 -3.36910 0.00000 -1.85532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51328 0.20009 -1.00000 - 7484 2017 8 21 10 2 26 750 4.8650 185.42902 555.00916 531.11794 -3.37029 0.00000 -1.85539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51293 0.20009 -1.00000 - 7485 2017 8 21 10 2 31 615 4.8650 185.42500 554.98162 531.09364 -3.37164 0.00000 -1.85547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51257 0.20008 -1.00000 - 7486 2017 8 21 10 2 36 480 4.8651 185.42084 554.95412 531.06936 -3.37311 0.00000 -1.85557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51222 0.20008 -1.00000 - 7487 2017 8 21 10 2 41 345 4.8651 185.41664 554.92669 531.04511 -3.37467 0.00000 -1.85570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51187 0.20008 -1.00000 - 7488 2017 8 21 10 2 46 210 4.8652 185.41256 554.89931 531.02089 -3.37628 0.00000 -1.85587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51151 0.20008 -1.00000 - 7489 2017 8 21 10 2 51 75 4.8652 185.40857 554.87198 530.99668 -3.37790 0.00000 -1.85604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51116 0.20008 -1.00000 - 7490 2017 8 21 10 2 55 941 4.8653 185.40453 554.84469 530.97249 -3.37950 0.00000 -1.85618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51080 0.20008 -1.00000 - 7491 2017 8 21 10 3 0 806 4.8653 185.40037 554.81745 530.94833 -3.38105 0.00000 -1.85632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51045 0.20008 -1.00000 - 7492 2017 8 21 10 3 5 671 4.8654 185.39619 554.79024 530.92417 -3.38252 0.00000 -1.85647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51010 0.20008 -1.00000 - 7493 2017 8 21 10 3 10 537 4.8655 185.39212 554.76308 530.90003 -3.38386 0.00000 -1.85664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50974 0.20008 -1.00000 - 7494 2017 8 21 10 3 15 402 4.8655 185.38814 554.73595 530.87590 -3.38587 0.00000 -1.85681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50939 0.20008 -1.00000 - 7495 2017 8 21 10 3 20 268 4.8656 185.38409 554.70884 530.85178 -3.38802 0.00000 -1.85696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50903 0.20008 -1.00000 - 7496 2017 8 21 10 3 25 134 4.8656 185.37992 554.68173 530.82765 -3.39007 0.00000 -1.85707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50868 0.20008 -1.00000 - 7497 2017 8 21 10 3 29 999 4.8657 185.37575 554.65463 530.80351 -3.39197 0.00000 -1.85715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50833 0.20008 -1.00000 - 7498 2017 8 21 10 3 34 865 4.8657 185.37170 554.62752 530.77938 -3.39366 0.00000 -1.85723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50797 0.20008 -1.00000 - 7499 2017 8 21 10 3 39 731 4.8658 185.36773 554.60041 530.75524 -3.39530 0.00000 -1.85731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50762 0.20008 -1.00000 - 7500 2017 8 21 10 3 44 597 4.8658 185.36366 554.57329 530.73108 -3.39764 0.00000 -1.85737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50727 0.20008 -1.00000 - 7501 2017 8 21 10 3 49 462 4.8659 185.35949 554.54613 530.70691 -3.39965 0.00000 -1.85738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50691 0.20008 -1.00000 - 7502 2017 8 21 10 3 54 328 4.8659 185.35533 554.51895 530.68273 -3.40127 0.00000 -1.85734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50656 0.20008 -1.00000 - 7503 2017 8 21 10 3 59 194 4.8660 185.35131 554.49173 530.65853 -3.40242 0.00000 -1.85726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50620 0.20008 -1.00000 - 7504 2017 8 21 10 4 4 60 4.8660 185.34734 554.46448 530.63432 -3.40305 0.00000 -1.85718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50585 0.20008 -1.00000 - 7505 2017 8 21 10 4 8 926 4.8661 185.34326 554.43720 530.61010 -3.40313 0.00000 -1.85708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50550 0.20008 -1.00000 - 7506 2017 8 21 10 4 13 793 4.8662 185.33908 554.40988 530.58586 -3.40264 0.00000 -1.85696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50514 0.20008 -1.00000 - 7507 2017 8 21 10 4 18 659 4.8662 185.33494 554.38253 530.56161 -3.40158 0.00000 -1.85679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50479 0.20008 -1.00000 - 7508 2017 8 21 10 4 23 525 4.8663 185.33094 554.35514 530.53734 -3.39996 0.00000 -1.85658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50443 0.20008 -1.00000 - 7509 2017 8 21 10 4 28 391 4.8663 185.32697 554.32772 530.51307 -3.39780 0.00000 -1.85635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50408 0.20008 -1.00000 - 7510 2017 8 21 10 4 33 258 4.8664 185.32288 554.30028 530.48880 -3.39513 0.00000 -1.85612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50373 0.20008 -1.00000 - 7511 2017 8 21 10 4 38 124 4.8664 185.31870 554.27283 530.46452 -3.39200 0.00000 -1.85589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50337 0.20008 -1.00000 - 7512 2017 8 21 10 4 42 991 4.8665 185.31457 554.24536 530.44024 -3.38845 0.00000 -1.85565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50302 0.20008 -1.00000 - 7513 2017 8 21 10 4 47 857 4.8665 185.31059 554.21788 530.41596 -3.38456 0.00000 -1.85538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50267 0.20007 -1.00000 - 7514 2017 8 21 10 4 52 724 4.8666 185.30662 554.19039 530.39168 -3.38037 0.00000 -1.85509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50231 0.20007 -1.00000 - 7515 2017 8 21 10 4 57 590 4.8666 185.30253 554.16290 530.36741 -3.37597 0.00000 -1.85482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50196 0.20007 -1.00000 - 7516 2017 8 21 10 5 2 457 4.8667 185.29836 554.13542 530.34315 -3.37143 0.00000 -1.85457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50160 0.20007 -1.00000 - 7517 2017 8 21 10 5 7 324 4.8668 185.29424 554.10796 530.31890 -3.36683 0.00000 -1.85436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50125 0.20007 -1.00000 - 7518 2017 8 21 10 5 12 191 4.8668 185.29026 554.08051 530.29466 -3.36226 0.00000 -1.85415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50090 0.20007 -1.00000 - 7519 2017 8 21 10 5 17 58 4.8669 185.28629 554.05307 530.27043 -3.35781 0.00000 -1.85393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50054 0.20007 -1.00000 - 7520 2017 8 21 10 5 21 924 4.8669 185.28220 554.02565 530.24621 -3.35457 0.00000 -1.85373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50019 0.20007 -1.00000 - 7521 2017 8 21 10 5 26 791 4.8670 185.27804 553.99826 530.22200 -3.35239 0.00000 -1.85357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49983 0.20007 -1.00000 - 7522 2017 8 21 10 5 31 658 4.8670 185.27393 553.97090 530.19782 -3.35152 0.00000 -1.85347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49948 0.20007 -1.00000 - 7523 2017 8 21 10 5 36 526 4.8671 185.26995 553.94358 530.17365 -3.35224 0.00000 -1.85342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49913 0.20007 -1.00000 - 7524 2017 8 21 10 5 41 393 4.8671 185.26599 553.91627 530.14948 -3.35340 0.00000 -1.85339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49877 0.20007 -1.00000 - 7525 2017 8 21 10 5 46 260 4.8672 185.26190 553.88898 530.12533 -3.35500 0.00000 -1.85337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49842 0.20007 -1.00000 - 7526 2017 8 21 10 5 51 127 4.8672 185.25774 553.86172 530.10119 -3.35701 0.00000 -1.85340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49806 0.20007 -1.00000 - 7527 2017 8 21 10 5 55 994 4.8673 185.25364 553.83449 530.07706 -3.35938 0.00000 -1.85349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49771 0.20007 -1.00000 - 7528 2017 8 21 10 6 0 862 4.8673 185.24968 553.80728 530.05295 -3.36208 0.00000 -1.85363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49736 0.20007 -1.00000 - 7529 2017 8 21 10 6 5 729 4.8674 185.24571 553.78010 530.02884 -3.36505 0.00000 -1.85383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49700 0.20007 -1.00000 - 7530 2017 8 21 10 6 10 597 4.8674 185.24161 553.75293 530.00474 -3.36821 0.00000 -1.85404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49665 0.20007 -1.00000 - 7531 2017 8 21 10 6 15 464 4.8675 185.23746 553.72577 529.98064 -3.37152 0.00000 -1.85426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49629 0.20007 -1.00000 - 7532 2017 8 21 10 6 20 332 4.8676 185.23339 553.69862 529.95655 -3.37491 0.00000 -1.85451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49594 0.20007 -1.00000 - 7533 2017 8 21 10 6 25 199 4.8676 185.22944 553.67148 529.93246 -3.37831 0.00000 -1.85480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49559 0.20007 -1.00000 - 7534 2017 8 21 10 6 30 67 4.8677 185.22546 553.64436 529.90837 -3.38165 0.00000 -1.85513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49523 0.20007 -1.00000 - 7535 2017 8 21 10 6 34 935 4.8677 185.22135 553.61724 529.88429 -3.38484 0.00000 -1.85548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49488 0.20007 -1.00000 - 7536 2017 8 21 10 6 39 802 4.8678 185.21720 553.59011 529.86020 -3.38780 0.00000 -1.85581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49452 0.20007 -1.00000 - 7537 2017 8 21 10 6 44 670 4.8678 185.21316 553.56297 529.83611 -3.39049 0.00000 -1.85612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49417 0.20007 -1.00000 - 7538 2017 8 21 10 6 49 538 4.8679 185.20923 553.53583 529.81201 -3.39284 0.00000 -1.85643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49382 0.20007 -1.00000 - 7539 2017 8 21 10 6 54 406 4.8679 185.20524 553.50869 529.78792 -3.39482 0.00000 -1.85674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49346 0.20007 -1.00000 - 7540 2017 8 21 10 6 59 274 4.8680 185.20111 553.48154 529.76383 -3.39893 0.00000 -1.85704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49311 0.20007 -1.00000 - 7541 2017 8 21 10 7 4 142 4.8680 185.19696 553.45439 529.73973 -3.40321 0.00000 -1.85731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49275 0.20006 -1.00000 - 7542 2017 8 21 10 7 9 10 4.8681 185.19296 553.42721 529.71562 -3.40698 0.00000 -1.85751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49240 0.20006 -1.00000 - 7543 2017 8 21 10 7 13 878 4.8681 185.18905 553.40002 529.69152 -3.41256 0.00000 -1.85764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49205 0.20006 -1.00000 - 7544 2017 8 21 10 7 18 746 4.8682 185.18504 553.37282 529.66741 -3.41773 0.00000 -1.85773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49169 0.20006 -1.00000 - 7545 2017 8 21 10 7 23 615 4.8683 185.18089 553.34563 529.64331 -3.42210 0.00000 -1.85779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49134 0.20006 -1.00000 - 7546 2017 8 21 10 7 28 483 4.8683 185.17676 553.31843 529.61921 -3.42556 0.00000 -1.85781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49098 0.20006 -1.00000 - 7547 2017 8 21 10 7 33 351 4.8684 185.17279 553.29123 529.59511 -3.42803 0.00000 -1.85776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49063 0.20006 -1.00000 - 7548 2017 8 21 10 7 38 220 4.8684 185.16888 553.26402 529.57101 -3.42946 0.00000 -1.85760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49028 0.20006 -1.00000 - 7549 2017 8 21 10 7 43 88 4.8685 185.16485 553.23681 529.54692 -3.42978 0.00000 -1.85737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48992 0.20006 -1.00000 - 7550 2017 8 21 10 7 47 957 4.8685 185.16070 553.20961 529.52283 -3.42900 0.00000 -1.85710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48957 0.20006 -1.00000 - 7551 2017 8 21 10 7 52 825 4.8686 185.15659 553.18242 529.49876 -3.42712 0.00000 -1.85679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48921 0.20006 -1.00000 - 7552 2017 8 21 10 7 57 694 4.8686 185.15265 553.15525 529.47469 -3.42418 0.00000 -1.85643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48886 0.20006 -1.00000 - 7553 2017 8 21 10 8 2 563 4.8687 185.14874 553.12809 529.45063 -3.42023 0.00000 -1.85600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48851 0.20006 -1.00000 - 7554 2017 8 21 10 8 7 431 4.8687 185.14469 553.10094 529.42657 -3.41534 0.00000 -1.85549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48815 0.20006 -1.00000 - 7555 2017 8 21 10 8 12 300 4.8688 185.14054 553.07379 529.40252 -3.40962 0.00000 -1.85493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48780 0.20006 -1.00000 - 7556 2017 8 21 10 8 17 169 4.8688 185.13646 553.04667 529.37848 -3.40318 0.00000 -1.85436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48744 0.20006 -1.00000 - 7557 2017 8 21 10 8 22 38 4.8689 185.13253 553.01958 529.35445 -3.39614 0.00000 -1.85378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48709 0.20006 -1.00000 - 7558 2017 8 21 10 8 26 907 4.8689 185.12861 552.99249 529.33042 -3.38868 0.00000 -1.85318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48674 0.20006 -1.00000 - 7559 2017 8 21 10 8 31 776 4.8690 185.12455 552.96541 529.30640 -3.38093 0.00000 -1.85255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48638 0.20006 -1.00000 - 7560 2017 8 21 10 8 36 645 4.8691 185.12042 552.93833 529.28237 -3.37310 0.00000 -1.85189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48603 0.20006 -1.00000 - 7561 2017 8 21 10 8 41 514 4.8691 185.11635 552.91126 529.25835 -3.36536 0.00000 -1.85124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48567 0.20006 -1.00000 - 7562 2017 8 21 10 8 46 383 4.8692 185.11243 552.88420 529.23432 -3.35789 0.00000 -1.85063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48532 0.20006 -1.00000 - 7563 2017 8 21 10 8 51 252 4.8692 185.10851 552.85715 529.21030 -3.35387 0.00000 -1.85007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48496 0.20006 -1.00000 - 7564 2017 8 21 10 8 56 122 4.8693 185.10444 552.83009 529.18627 -3.35046 0.00000 -1.84954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48461 0.20006 -1.00000 - 7565 2017 8 21 10 9 0 991 4.8693 185.10031 552.80302 529.16224 -3.35052 0.00000 -1.84902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48426 0.20006 -1.00000 - 7566 2017 8 21 10 9 5 860 4.8694 185.09627 552.77593 529.13820 -3.35110 0.00000 -1.84853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48390 0.20006 -1.00000 - 7567 2017 8 21 10 9 10 730 4.8694 185.09236 552.74884 529.11415 -3.35202 0.00000 -1.84810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48355 0.20006 -1.00000 - 7568 2017 8 21 10 9 15 599 4.8695 185.08843 552.72174 529.09010 -3.35319 0.00000 -1.84775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48319 0.20006 -1.00000 - 7569 2017 8 21 10 9 20 469 4.8695 185.08435 552.69464 529.06604 -3.35455 0.00000 -1.84747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48284 0.20005 -1.00000 - 7570 2017 8 21 10 9 25 338 4.8696 185.08022 552.66751 529.04198 -3.35602 0.00000 -1.84724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48249 0.20005 -1.00000 - 7571 2017 8 21 10 9 30 208 4.8696 185.07621 552.64037 529.01790 -3.35750 0.00000 -1.84702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48213 0.20005 -1.00000 - 7572 2017 8 21 10 9 35 78 4.8697 185.07233 552.61320 528.99382 -3.35891 0.00000 -1.84684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48178 0.20005 -1.00000 - 7573 2017 8 21 10 9 39 947 4.8697 185.06838 552.58602 528.96973 -3.36017 0.00000 -1.84673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48142 0.20005 -1.00000 - 7574 2017 8 21 10 9 44 817 4.8698 185.06428 552.55884 528.94565 -3.36122 0.00000 -1.84667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48107 0.20005 -1.00000 - 7575 2017 8 21 10 9 49 687 4.8699 185.06016 552.53164 528.92155 -3.36201 0.00000 -1.84668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48072 0.20005 -1.00000 - 7576 2017 8 21 10 9 54 557 4.8699 185.05619 552.50443 528.89746 -3.36248 0.00000 -1.84669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48036 0.20005 -1.00000 - 7577 2017 8 21 10 9 59 427 4.8700 185.05232 552.47721 528.87335 -3.36262 0.00000 -1.84669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48001 0.20005 -1.00000 - 7578 2017 8 21 10 10 4 297 4.8700 185.04835 552.44997 528.84925 -3.36246 0.00000 -1.84670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47965 0.20005 -1.00000 - 7579 2017 8 21 10 10 9 167 4.8701 185.04424 552.42273 528.82515 -3.36202 0.00000 -1.84673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47930 0.20005 -1.00000 - 7580 2017 8 21 10 10 14 37 4.8701 185.04014 552.39549 528.80106 -3.36292 0.00000 -1.84679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47894 0.20005 -1.00000 - 7581 2017 8 21 10 10 18 907 4.8702 185.03621 552.36825 528.77696 -3.36501 0.00000 -1.84684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47859 0.20005 -1.00000 - 7582 2017 8 21 10 10 23 778 4.8702 185.03235 552.34101 528.75287 -3.36665 0.00000 -1.84685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47824 0.20005 -1.00000 - 7583 2017 8 21 10 10 28 648 4.8703 185.02834 552.31376 528.72878 -3.36980 0.00000 -1.84681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47788 0.20005 -1.00000 - 7584 2017 8 21 10 10 33 518 4.8703 185.02422 552.28652 528.70470 -3.37290 0.00000 -1.84675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47753 0.20005 -1.00000 - 7585 2017 8 21 10 10 38 389 4.8704 185.02015 552.25929 528.68063 -3.37523 0.00000 -1.84668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47717 0.20005 -1.00000 - 7586 2017 8 21 10 10 43 259 4.8704 185.01625 552.23208 528.65657 -3.37673 0.00000 -1.84660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47682 0.20005 -1.00000 - 7587 2017 8 21 10 10 48 129 4.8705 185.01238 552.20487 528.63251 -3.37739 0.00000 -1.84649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47647 0.20005 -1.00000 - 7588 2017 8 21 10 10 53 0 4.8705 185.00836 552.17767 528.60846 -3.37723 0.00000 -1.84632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47611 0.20005 -1.00000 - 7589 2017 8 21 10 10 57 871 4.8706 185.00424 552.15047 528.58442 -3.37628 0.00000 -1.84609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47576 0.20005 -1.00000 - 7590 2017 8 21 10 11 2 741 4.8706 185.00020 552.12329 528.56038 -3.37460 0.00000 -1.84585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47540 0.20005 -1.00000 - 7591 2017 8 21 10 11 7 612 4.8707 184.99632 552.09613 528.53636 -3.37227 0.00000 -1.84561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47505 0.20005 -1.00000 - 7592 2017 8 21 10 11 12 483 4.8707 184.99244 552.06899 528.51235 -3.36939 0.00000 -1.84536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47469 0.20005 -1.00000 - 7593 2017 8 21 10 11 17 353 4.8708 184.98841 552.04185 528.48834 -3.36607 0.00000 -1.84510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47434 0.20005 -1.00000 - 7594 2017 8 21 10 11 22 224 4.8709 184.98430 552.01473 528.46434 -3.36241 0.00000 -1.84478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47399 0.20005 -1.00000 - 7595 2017 8 21 10 11 27 95 4.8709 184.98028 551.98761 528.44035 -3.35855 0.00000 -1.84444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47363 0.20005 -1.00000 - 7596 2017 8 21 10 11 31 966 4.8710 184.97641 551.96051 528.41637 -3.35460 0.00000 -1.84411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47328 0.20005 -1.00000 - 7597 2017 8 21 10 11 36 837 4.8710 184.97252 551.93343 528.39240 -3.35068 0.00000 -1.84381 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47292 0.20004 -1.00000 - 7598 2017 8 21 10 11 41 708 4.8711 184.96848 551.90637 528.36844 -3.34689 0.00000 -1.84354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47257 0.20004 -1.00000 - 7599 2017 8 21 10 11 46 579 4.8711 184.96437 551.87932 528.34448 -3.34398 0.00000 -1.84327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47221 0.20004 -1.00000 - 7600 2017 8 21 10 11 51 450 4.8712 184.96038 551.85227 528.32052 -3.34249 0.00000 -1.84298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47186 0.20004 -1.00000 - 7601 2017 8 21 10 11 56 322 4.8712 184.95653 551.82524 528.29658 -3.34118 0.00000 -1.84269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47151 0.20004 -1.00000 - 7602 2017 8 21 10 12 1 193 4.8713 184.95263 551.79822 528.27264 -3.34006 0.00000 -1.84246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47115 0.20004 -1.00000 - 7603 2017 8 21 10 12 6 64 4.8713 184.94856 551.77123 528.24871 -3.33997 0.00000 -1.84227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47080 0.20004 -1.00000 - 7604 2017 8 21 10 12 10 936 4.8714 184.94446 551.74425 528.22479 -3.34034 0.00000 -1.84212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47044 0.20004 -1.00000 - 7605 2017 8 21 10 12 15 807 4.8714 184.94052 551.71728 528.20088 -3.34073 0.00000 -1.84197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47009 0.20004 -1.00000 - 7606 2017 8 21 10 12 20 679 4.8715 184.93669 551.69031 528.17696 -3.34109 0.00000 -1.84181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46974 0.20004 -1.00000 - 7607 2017 8 21 10 12 25 550 4.8715 184.93276 551.66336 528.15306 -3.34137 0.00000 -1.84168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46938 0.20004 -1.00000 - 7608 2017 8 21 10 12 30 422 4.8716 184.92868 551.63643 528.12916 -3.34151 0.00000 -1.84159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46903 0.20004 -1.00000 - 7609 2017 8 21 10 12 35 293 4.8716 184.92459 551.60952 528.10527 -3.34149 0.00000 -1.84155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46867 0.20004 -1.00000 - 7610 2017 8 21 10 12 40 165 4.8717 184.92069 551.58262 528.08138 -3.34126 0.00000 -1.84153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46832 0.20004 -1.00000 - 7611 2017 8 21 10 12 45 37 4.8717 184.91687 551.55571 528.05749 -3.34081 0.00000 -1.84148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46796 0.20004 -1.00000 - 7612 2017 8 21 10 12 49 909 4.8718 184.91291 551.52881 528.03360 -3.34016 0.00000 -1.84142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46761 0.20004 -1.00000 - 7613 2017 8 21 10 12 54 780 4.8718 184.90882 551.50192 528.00971 -3.33957 0.00000 -1.84138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46726 0.20004 -1.00000 - 7614 2017 8 21 10 12 59 652 4.8719 184.90476 551.47503 527.98583 -3.33986 0.00000 -1.84136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46690 0.20004 -1.00000 - 7615 2017 8 21 10 13 4 524 4.8719 184.90089 551.44816 527.96195 -3.33996 0.00000 -1.84137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46655 0.20004 -1.00000 - 7616 2017 8 21 10 13 9 396 4.8720 184.89707 551.42128 527.93806 -3.33984 0.00000 -1.84137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46619 0.20004 -1.00000 - 7617 2017 8 21 10 13 14 268 4.8720 184.89309 551.39438 527.91418 -3.33947 0.00000 -1.84131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46584 0.20004 -1.00000 - 7618 2017 8 21 10 13 19 140 4.8721 184.88899 551.36748 527.89028 -3.33896 0.00000 -1.84124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46548 0.20004 -1.00000 - 7619 2017 8 21 10 13 24 12 4.8722 184.88496 551.34057 527.86639 -3.33915 0.00000 -1.84117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46513 0.20004 -1.00000 - 7620 2017 8 21 10 13 28 885 4.8722 184.88113 551.31367 527.84249 -3.33894 0.00000 -1.84113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46477 0.20004 -1.00000 - 7621 2017 8 21 10 13 33 757 4.8722 184.87730 551.28676 527.81860 -3.33830 0.00000 -1.84109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46442 0.20004 -1.00000 - 7622 2017 8 21 10 13 38 629 4.8723 184.87330 551.25984 527.79470 -3.33722 0.00000 -1.84103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46407 0.20004 -1.00000 - 7623 2017 8 21 10 13 43 502 4.8724 184.86921 551.23290 527.77079 -3.33574 0.00000 -1.84092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46371 0.20004 -1.00000 - 7624 2017 8 21 10 13 48 374 4.8724 184.86521 551.20595 527.74687 -3.33392 0.00000 -1.84081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46336 0.20004 -1.00000 - 7625 2017 8 21 10 13 53 246 4.8725 184.86139 551.17899 527.72296 -3.33182 0.00000 -1.84072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46300 0.20003 -1.00000 - 7626 2017 8 21 10 13 58 119 4.8725 184.85754 551.15203 527.69904 -3.32953 0.00000 -1.84066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46265 0.20003 -1.00000 - 7627 2017 8 21 10 14 2 992 4.8726 184.85353 551.12506 527.67513 -3.32716 0.00000 -1.84062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46229 0.20003 -1.00000 - 7628 2017 8 21 10 14 7 864 4.8726 184.84944 551.09808 527.65120 -3.32480 0.00000 -1.84056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46194 0.20003 -1.00000 - 7629 2017 8 21 10 14 12 737 4.8727 184.84548 551.07108 527.62727 -3.32402 0.00000 -1.84048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46159 0.20003 -1.00000 - 7630 2017 8 21 10 14 17 610 4.8727 184.84167 551.04406 527.60334 -3.32461 0.00000 -1.84044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46123 0.20003 -1.00000 - 7631 2017 8 21 10 14 22 482 4.8728 184.83781 551.01705 527.57941 -3.32547 0.00000 -1.84044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46088 0.20003 -1.00000 - 7632 2017 8 21 10 14 27 355 4.8728 184.83377 550.99004 527.55549 -3.32661 0.00000 -1.84050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46052 0.20003 -1.00000 - 7633 2017 8 21 10 14 32 228 4.8729 184.82970 550.96302 527.53156 -3.32800 0.00000 -1.84058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46017 0.20003 -1.00000 - 7634 2017 8 21 10 14 37 101 4.8729 184.82579 550.93599 527.50763 -3.32961 0.00000 -1.84066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45981 0.20003 -1.00000 - 7635 2017 8 21 10 14 41 974 4.8730 184.82200 550.90895 527.48370 -3.33141 0.00000 -1.84075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45946 0.20003 -1.00000 - 7636 2017 8 21 10 14 46 847 4.8730 184.81811 550.88191 527.45977 -3.33340 0.00000 -1.84089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45911 0.20003 -1.00000 - 7637 2017 8 21 10 14 51 720 4.8731 184.81405 550.85489 527.43586 -3.33551 0.00000 -1.84110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45875 0.20003 -1.00000 - 7638 2017 8 21 10 14 56 593 4.8731 184.80999 550.82787 527.41195 -3.33771 0.00000 -1.84136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45840 0.20003 -1.00000 - 7639 2017 8 21 10 15 1 466 4.8732 184.80613 550.80086 527.38804 -3.33996 0.00000 -1.84163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45804 0.20003 -1.00000 - 7640 2017 8 21 10 15 6 340 4.8732 184.80235 550.77384 527.36414 -3.34223 0.00000 -1.84187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45769 0.20003 -1.00000 - 7641 2017 8 21 10 15 11 213 4.8733 184.79842 550.74683 527.34025 -3.34447 0.00000 -1.84212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45733 0.20003 -1.00000 - 7642 2017 8 21 10 15 16 86 4.8733 184.79435 550.71984 527.31637 -3.34667 0.00000 -1.84242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45698 0.20003 -1.00000 - 7643 2017 8 21 10 15 20 960 4.8734 184.79032 550.69288 527.29250 -3.34878 0.00000 -1.84275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45662 0.20003 -1.00000 - 7644 2017 8 21 10 15 25 833 4.8734 184.78650 550.66593 527.26865 -3.35079 0.00000 -1.84311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45627 0.20003 -1.00000 - 7645 2017 8 21 10 15 30 707 4.8735 184.78272 550.63900 527.24480 -3.35266 0.00000 -1.84342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45592 0.20003 -1.00000 - 7646 2017 8 21 10 15 35 580 4.8735 184.77876 550.61208 527.22096 -3.35440 0.00000 -1.84370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45556 0.20003 -1.00000 - 7647 2017 8 21 10 15 40 454 4.8736 184.77469 550.58518 527.19714 -3.35597 0.00000 -1.84396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45521 0.20003 -1.00000 - 7648 2017 8 21 10 15 45 327 4.8736 184.77070 550.55831 527.17333 -3.35880 0.00000 -1.84424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45485 0.20003 -1.00000 - 7649 2017 8 21 10 15 50 201 4.8737 184.76691 550.53147 527.14953 -3.36150 0.00000 -1.84452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45450 0.20003 -1.00000 - 7650 2017 8 21 10 15 55 75 4.8737 184.76312 550.50465 527.12575 -3.36393 0.00000 -1.84477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45414 0.20003 -1.00000 - 7651 2017 8 21 10 15 59 949 4.8738 184.75914 550.47785 527.10197 -3.36627 0.00000 -1.84495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45379 0.20003 -1.00000 - 7652 2017 8 21 10 16 4 822 4.8739 184.75507 550.45106 527.07821 -3.36931 0.00000 -1.84506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45343 0.20003 -1.00000 - 7653 2017 8 21 10 16 9 696 4.8739 184.75112 550.42429 527.05445 -3.37192 0.00000 -1.84516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45308 0.20002 -1.00000 - 7654 2017 8 21 10 16 14 570 4.8740 184.74734 550.39756 527.03071 -3.37404 0.00000 -1.84524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45273 0.20002 -1.00000 - 7655 2017 8 21 10 16 19 444 4.8740 184.74353 550.37085 527.00698 -3.37564 0.00000 -1.84530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45237 0.20002 -1.00000 - 7656 2017 8 21 10 16 24 318 4.8741 184.73953 550.34415 526.98325 -3.37671 0.00000 -1.84530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45202 0.20002 -1.00000 - 7657 2017 8 21 10 16 29 192 4.8741 184.73548 550.31745 526.95953 -3.37727 0.00000 -1.84521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45166 0.20002 -1.00000 - 7658 2017 8 21 10 16 34 67 4.8742 184.73157 550.29077 526.93580 -3.37733 0.00000 -1.84506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45131 0.20002 -1.00000 - 7659 2017 8 21 10 16 38 941 4.8742 184.72781 550.26409 526.91209 -3.37690 0.00000 -1.84489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45095 0.20002 -1.00000 - 7660 2017 8 21 10 16 43 815 4.8743 184.72397 550.23743 526.88838 -3.37600 0.00000 -1.84471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45060 0.20002 -1.00000 - 7661 2017 8 21 10 16 48 689 4.8743 184.71995 550.21078 526.86466 -3.37467 0.00000 -1.84450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45024 0.20002 -1.00000 - 7662 2017 8 21 10 16 53 564 4.8744 184.71591 550.18412 526.84094 -3.37293 0.00000 -1.84422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44989 0.20002 -1.00000 - 7663 2017 8 21 10 16 58 438 4.8744 184.71205 550.15745 526.81722 -3.37082 0.00000 -1.84387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44954 0.20002 -1.00000 - 7664 2017 8 21 10 17 3 313 4.8745 184.70830 550.13076 526.79349 -3.36837 0.00000 -1.84349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44918 0.20002 -1.00000 - 7665 2017 8 21 10 17 8 187 4.8745 184.70443 550.10408 526.76976 -3.36560 0.00000 -1.84311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44883 0.20002 -1.00000 - 7666 2017 8 21 10 17 13 62 4.8746 184.70040 550.07739 526.74602 -3.36255 0.00000 -1.84273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44847 0.20002 -1.00000 - 7667 2017 8 21 10 17 17 936 4.8746 184.69638 550.05068 526.72227 -3.35926 0.00000 -1.84234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44812 0.20002 -1.00000 - 7668 2017 8 21 10 17 22 811 4.8747 184.69257 550.02394 526.69851 -3.35575 0.00000 -1.84188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44776 0.20002 -1.00000 - 7669 2017 8 21 10 17 27 686 4.8747 184.68883 549.99718 526.67474 -3.35205 0.00000 -1.84138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44741 0.20002 -1.00000 - 7670 2017 8 21 10 17 32 561 4.8748 184.68492 549.97040 526.65097 -3.34820 0.00000 -1.84089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44705 0.20002 -1.00000 - 7671 2017 8 21 10 17 37 435 4.8748 184.68087 549.94361 526.62719 -3.34425 0.00000 -1.84043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44670 0.20002 -1.00000 - 7672 2017 8 21 10 17 42 310 4.8749 184.67689 549.91680 526.60341 -3.34022 0.00000 -1.83999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44635 0.20002 -1.00000 - 7673 2017 8 21 10 17 47 185 4.8749 184.67313 549.88998 526.57961 -3.33637 0.00000 -1.83953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44599 0.20002 -1.00000 - 7674 2017 8 21 10 17 52 60 4.8750 184.66938 549.86312 526.55581 -3.33320 0.00000 -1.83902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44564 0.20002 -1.00000 - 7675 2017 8 21 10 17 56 935 4.8750 184.66544 549.83624 526.53200 -3.33011 0.00000 -1.83852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44528 0.20002 -1.00000 - 7676 2017 8 21 10 18 1 810 4.8751 184.66139 549.80936 526.50819 -3.32712 0.00000 -1.83805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44493 0.20002 -1.00000 - 7677 2017 8 21 10 18 6 685 4.8751 184.65746 549.78249 526.48439 -3.32425 0.00000 -1.83765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44457 0.20002 -1.00000 - 7678 2017 8 21 10 18 11 561 4.8752 184.65372 549.75560 526.46058 -3.32207 0.00000 -1.83727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44422 0.20002 -1.00000 - 7679 2017 8 21 10 18 16 436 4.8752 184.64995 549.72870 526.43677 -3.32077 0.00000 -1.83687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44386 0.20002 -1.00000 - 7680 2017 8 21 10 18 21 311 4.8753 184.64598 549.70179 526.41296 -3.31964 0.00000 -1.83645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44351 0.20001 -1.00000 - 7681 2017 8 21 10 18 26 186 4.8753 184.64195 549.67489 526.38916 -3.31870 0.00000 -1.83607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44315 0.20001 -1.00000 - 7682 2017 8 21 10 18 31 62 4.8754 184.63805 549.64800 526.36537 -3.31794 0.00000 -1.83576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44280 0.20001 -1.00000 - 7683 2017 8 21 10 18 35 937 4.8754 184.63433 549.62113 526.34159 -3.31735 0.00000 -1.83551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44245 0.20001 -1.00000 - 7684 2017 8 21 10 18 40 813 4.8755 184.63053 549.59427 526.31781 -3.31692 0.00000 -1.83529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44209 0.20001 -1.00000 - 7685 2017 8 21 10 18 45 688 4.8755 184.62654 549.56742 526.29404 -3.31666 0.00000 -1.83503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44174 0.20001 -1.00000 - 7686 2017 8 21 10 18 50 564 4.8756 184.62252 549.54057 526.27027 -3.31657 0.00000 -1.83478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44138 0.20001 -1.00000 - 7687 2017 8 21 10 18 55 439 4.8756 184.61868 549.51374 526.24652 -3.31664 0.00000 -1.83460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44103 0.20001 -1.00000 - 7688 2017 8 21 10 19 0 315 4.8757 184.61497 549.48695 526.22279 -3.31688 0.00000 -1.83448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44067 0.20001 -1.00000 - 7689 2017 8 21 10 19 5 191 4.8757 184.61114 549.46019 526.19906 -3.31727 0.00000 -1.83440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44032 0.20001 -1.00000 - 7690 2017 8 21 10 19 10 67 4.8758 184.60714 549.43343 526.17534 -3.31780 0.00000 -1.83431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43996 0.20001 -1.00000 - 7691 2017 8 21 10 19 14 943 4.8758 184.60314 549.40668 526.15162 -3.31845 0.00000 -1.83420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43961 0.20001 -1.00000 - 7692 2017 8 21 10 19 19 818 4.8759 184.59936 549.37994 526.12791 -3.31920 0.00000 -1.83410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43925 0.20001 -1.00000 - 7693 2017 8 21 10 19 24 694 4.8759 184.59566 549.35323 526.10421 -3.32004 0.00000 -1.83406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43890 0.20001 -1.00000 - 7694 2017 8 21 10 19 29 570 4.8760 184.59178 549.32654 526.08052 -3.32094 0.00000 -1.83407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43855 0.20001 -1.00000 - 7695 2017 8 21 10 19 34 446 4.8760 184.58776 549.29986 526.05683 -3.32189 0.00000 -1.83409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43819 0.20001 -1.00000 - 7696 2017 8 21 10 19 39 323 4.8761 184.58380 549.27317 526.03314 -3.32285 0.00000 -1.83407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43784 0.20001 -1.00000 - 7697 2017 8 21 10 19 44 199 4.8761 184.58007 549.24647 526.00944 -3.32379 0.00000 -1.83401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43748 0.20001 -1.00000 - 7698 2017 8 21 10 19 49 75 4.8762 184.57636 549.21978 525.98575 -3.32469 0.00000 -1.83398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43713 0.20001 -1.00000 - 7699 2017 8 21 10 19 53 951 4.8762 184.57244 549.19310 525.96207 -3.32552 0.00000 -1.83399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43677 0.20001 -1.00000 - 7700 2017 8 21 10 19 58 827 4.8763 184.56842 549.16643 525.93839 -3.32625 0.00000 -1.83403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43642 0.20001 -1.00000 - 7701 2017 8 21 10 20 3 704 4.8764 184.56452 549.13975 525.91469 -3.32685 0.00000 -1.83404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43606 0.20001 -1.00000 - 7702 2017 8 21 10 20 8 580 4.8764 184.56081 549.11304 525.89100 -3.32831 0.00000 -1.83398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43571 0.20001 -1.00000 - 7703 2017 8 21 10 20 13 457 4.8764 184.55708 549.08632 525.86730 -3.32974 0.00000 -1.83389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43535 0.20001 -1.00000 - 7704 2017 8 21 10 20 18 333 4.8765 184.55313 549.05961 525.84360 -3.33100 0.00000 -1.83383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43500 0.20001 -1.00000 - 7705 2017 8 21 10 20 23 210 4.8766 184.54912 549.03290 525.81991 -3.33202 0.00000 -1.83379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43464 0.20001 -1.00000 - 7706 2017 8 21 10 20 28 86 4.8766 184.54527 549.00619 525.79622 -3.33325 0.00000 -1.83375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43429 0.20001 -1.00000 - 7707 2017 8 21 10 20 32 963 4.8766 184.54158 548.97947 525.77252 -3.33455 0.00000 -1.83364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43394 0.20001 -1.00000 - 7708 2017 8 21 10 20 37 840 4.8767 184.53781 548.95272 525.74882 -3.33551 0.00000 -1.83345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43358 0.20000 -1.00000 - 7709 2017 8 21 10 20 42 716 4.8768 184.53384 548.92598 525.72513 -3.33608 0.00000 -1.83327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43323 0.20000 -1.00000 - 7710 2017 8 21 10 20 47 593 4.8768 184.52985 548.89925 525.70144 -3.33623 0.00000 -1.83312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43287 0.20000 -1.00000 - 7711 2017 8 21 10 20 52 470 4.8769 184.52605 548.87253 525.67776 -3.33594 0.00000 -1.83297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43252 0.20000 -1.00000 - 7712 2017 8 21 10 20 57 347 4.8769 184.52238 548.84582 525.65407 -3.33522 0.00000 -1.83279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43216 0.20000 -1.00000 - 7713 2017 8 21 10 21 2 224 4.8770 184.51857 548.81909 525.63039 -3.33405 0.00000 -1.83253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43181 0.20000 -1.00000 - 7714 2017 8 21 10 21 7 101 4.8770 184.51459 548.79237 525.60671 -3.33245 0.00000 -1.83223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43145 0.20000 -1.00000 - 7715 2017 8 21 10 21 11 978 4.8771 184.51062 548.76565 525.58304 -3.33044 0.00000 -1.83194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43110 0.20000 -1.00000 - 7716 2017 8 21 10 21 16 855 4.8771 184.50688 548.73897 525.55938 -3.32804 0.00000 -1.83170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43074 0.20000 -1.00000 - 7717 2017 8 21 10 21 21 732 4.8772 184.50322 548.71230 525.53573 -3.32530 0.00000 -1.83146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43039 0.20000 -1.00000 - 7718 2017 8 21 10 21 26 609 4.8772 184.49936 548.68563 525.51207 -3.32225 0.00000 -1.83116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43003 0.20000 -1.00000 - 7719 2017 8 21 10 21 31 487 4.8773 184.49536 548.65895 525.48842 -3.31894 0.00000 -1.83080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42968 0.20000 -1.00000 - 7720 2017 8 21 10 21 36 364 4.8773 184.49144 548.63228 525.46477 -3.31542 0.00000 -1.83045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42932 0.20000 -1.00000 - 7721 2017 8 21 10 21 41 241 4.8774 184.48776 548.60563 525.44113 -3.31175 0.00000 -1.83015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42897 0.20000 -1.00000 - 7722 2017 8 21 10 21 46 119 4.8774 184.48407 548.57900 525.41750 -3.30798 0.00000 -1.82989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42862 0.20000 -1.00000 - 7723 2017 8 21 10 21 50 996 4.8775 184.48018 548.55237 525.39386 -3.30442 0.00000 -1.82963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42826 0.20000 -1.00000 - 7724 2017 8 21 10 21 55 874 4.8775 184.47618 548.52573 525.37022 -3.30175 0.00000 -1.82934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42791 0.20000 -1.00000 - 7725 2017 8 21 10 22 0 751 4.8776 184.47232 548.49908 525.34658 -3.29924 0.00000 -1.82902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42755 0.20000 -1.00000 - 7726 2017 8 21 10 22 5 629 4.8776 184.46866 548.47243 525.32294 -3.29749 0.00000 -1.82877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42720 0.20000 -1.00000 - 7727 2017 8 21 10 22 10 507 4.8777 184.46494 548.44580 525.29931 -3.29697 0.00000 -1.82858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42684 0.20000 -1.00000 - 7728 2017 8 21 10 22 15 384 4.8777 184.46101 548.41917 525.27568 -3.29675 0.00000 -1.82845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42649 0.20000 -1.00000 - 7729 2017 8 21 10 22 20 262 4.8778 184.45703 548.39253 525.25204 -3.29680 0.00000 -1.82832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42613 0.20000 -1.00000 - 7730 2017 8 21 10 22 25 140 4.8778 184.45323 548.36587 525.22840 -3.29711 0.00000 -1.82815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42578 0.20000 -1.00000 - 7731 2017 8 21 10 22 30 18 4.8779 184.44958 548.33921 525.20475 -3.29767 0.00000 -1.82803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42542 0.20000 -1.00000 - 7732 2017 8 21 10 22 34 896 4.8779 184.44583 548.31256 525.18112 -3.29844 0.00000 -1.82799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42507 0.20000 -1.00000 - 7733 2017 8 21 10 22 39 774 4.8780 184.44187 548.28592 525.15749 -3.29940 0.00000 -1.82802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42471 0.20000 -1.00000 - 7734 2017 8 21 10 22 44 652 4.8780 184.43791 548.25928 525.13387 -3.30052 0.00000 -1.82811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42436 0.20000 -1.00000 - 7735 2017 8 21 10 22 49 530 4.8781 184.43418 548.23264 525.11024 -3.30175 0.00000 -1.82818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42400 0.20000 -1.00000 - 7736 2017 8 21 10 22 54 408 4.8781 184.43055 548.20599 525.08661 -3.30305 0.00000 -1.82824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42365 0.19999 -1.00000 - 7737 2017 8 21 10 22 59 286 4.8782 184.42674 548.17934 525.06299 -3.30440 0.00000 -1.82835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42329 0.19999 -1.00000 - 7738 2017 8 21 10 23 4 164 4.8782 184.42276 548.15272 525.03938 -3.30576 0.00000 -1.82855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42294 0.19999 -1.00000 - 7739 2017 8 21 10 23 9 42 4.8783 184.41885 548.12612 525.01578 -3.30710 0.00000 -1.82880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42258 0.19999 -1.00000 - 7740 2017 8 21 10 23 13 921 4.8783 184.41518 548.09953 524.99218 -3.30839 0.00000 -1.82905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42223 0.19999 -1.00000 - 7741 2017 8 21 10 23 18 799 4.8784 184.41153 548.07293 524.96858 -3.30958 0.00000 -1.82926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42188 0.19999 -1.00000 - 7742 2017 8 21 10 23 23 677 4.8784 184.40767 548.04633 524.94499 -3.31067 0.00000 -1.82946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42152 0.19999 -1.00000 - 7743 2017 8 21 10 23 28 556 4.8785 184.40369 548.01975 524.92140 -3.31165 0.00000 -1.82972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42117 0.19999 -1.00000 - 7744 2017 8 21 10 23 33 434 4.8785 184.39984 547.99320 524.89783 -3.31249 0.00000 -1.83001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42081 0.19999 -1.00000 - 7745 2017 8 21 10 23 38 313 4.8786 184.39621 547.96667 524.87427 -3.31321 0.00000 -1.83033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42046 0.19999 -1.00000 - 7746 2017 8 21 10 23 43 192 4.8786 184.39253 547.94012 524.85070 -3.31422 0.00000 -1.83059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42010 0.19999 -1.00000 - 7747 2017 8 21 10 23 48 70 4.8787 184.38863 547.91357 524.82713 -3.31618 0.00000 -1.83077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41975 0.19999 -1.00000 - 7748 2017 8 21 10 23 52 949 4.8787 184.38467 547.88702 524.80356 -3.31787 0.00000 -1.83096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41939 0.19999 -1.00000 - 7749 2017 8 21 10 23 57 828 4.8788 184.38088 547.86049 524.78000 -3.31929 0.00000 -1.83118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41904 0.19999 -1.00000 - 7750 2017 8 21 10 24 2 706 4.8788 184.37727 547.83398 524.75645 -3.32122 0.00000 -1.83142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41868 0.19999 -1.00000 - 7751 2017 8 21 10 24 7 585 4.8789 184.37355 547.80746 524.73290 -3.32303 0.00000 -1.83163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41833 0.19999 -1.00000 - 7752 2017 8 21 10 24 12 464 4.8789 184.36962 547.78092 524.70934 -3.32437 0.00000 -1.83175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41797 0.19999 -1.00000 - 7753 2017 8 21 10 24 17 343 4.8790 184.36568 547.75438 524.68579 -3.32523 0.00000 -1.83182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41762 0.19999 -1.00000 - 7754 2017 8 21 10 24 22 222 4.8790 184.36196 547.72784 524.66223 -3.32563 0.00000 -1.83190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41726 0.19999 -1.00000 - 7755 2017 8 21 10 24 27 101 4.8791 184.35836 547.70131 524.63869 -3.32559 0.00000 -1.83202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41691 0.19999 -1.00000 - 7756 2017 8 21 10 24 31 980 4.8791 184.35459 547.67479 524.61515 -3.32518 0.00000 -1.83213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41655 0.19999 -1.00000 - 7757 2017 8 21 10 24 36 860 4.8792 184.35063 547.64826 524.59161 -3.32442 0.00000 -1.83217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41620 0.19999 -1.00000 - 7758 2017 8 21 10 24 41 739 4.8792 184.34674 547.62171 524.56806 -3.32341 0.00000 -1.83214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41584 0.19999 -1.00000 - 7759 2017 8 21 10 24 46 618 4.8793 184.34309 547.59517 524.54452 -3.32220 0.00000 -1.83210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41549 0.19999 -1.00000 - 7760 2017 8 21 10 24 51 497 4.8793 184.33948 547.56864 524.52099 -3.32087 0.00000 -1.83210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41513 0.19999 -1.00000 - 7761 2017 8 21 10 24 56 377 4.8794 184.33564 547.54213 524.49747 -3.31959 0.00000 -1.83212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41478 0.19999 -1.00000 - 7762 2017 8 21 10 25 1 256 4.8794 184.33168 547.51563 524.47395 -3.31925 0.00000 -1.83215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41442 0.19999 -1.00000 - 7763 2017 8 21 10 25 6 136 4.8795 184.32785 547.48912 524.45043 -3.31899 0.00000 -1.83211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41407 0.19999 -1.00000 - 7764 2017 8 21 10 25 11 15 4.8795 184.32425 547.46261 524.42691 -3.31882 0.00000 -1.83203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41371 0.19998 -1.00000 - 7765 2017 8 21 10 25 15 895 4.8795 184.32061 547.43612 524.40340 -3.31874 0.00000 -1.83197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41336 0.19998 -1.00000 - 7766 2017 8 21 10 25 20 774 4.8796 184.31673 547.40965 524.37991 -3.31933 0.00000 -1.83197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41300 0.19998 -1.00000 - 7767 2017 8 21 10 25 25 654 4.8797 184.31279 547.38320 524.35642 -3.31997 0.00000 -1.83200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41265 0.19998 -1.00000 - 7768 2017 8 21 10 25 30 534 4.8797 184.30903 547.35676 524.33294 -3.32057 0.00000 -1.83200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41230 0.19998 -1.00000 - 7769 2017 8 21 10 25 35 413 4.8797 184.30545 547.33030 524.30945 -3.32111 0.00000 -1.83193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41194 0.19998 -1.00000 - 7770 2017 8 21 10 25 40 293 4.8798 184.30175 547.30385 524.28596 -3.32156 0.00000 -1.83186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41159 0.19998 -1.00000 - 7771 2017 8 21 10 25 45 173 4.8798 184.29784 547.27742 524.26249 -3.32188 0.00000 -1.83183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41123 0.19998 -1.00000 - 7772 2017 8 21 10 25 50 53 4.8799 184.29392 547.25101 524.23902 -3.32205 0.00000 -1.83184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41088 0.19998 -1.00000 - 7773 2017 8 21 10 25 54 933 4.8799 184.29024 547.22460 524.21555 -3.32207 0.00000 -1.83187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41052 0.19998 -1.00000 - 7774 2017 8 21 10 25 59 813 4.8800 184.28667 547.19818 524.19208 -3.32194 0.00000 -1.83183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41017 0.19998 -1.00000 - 7775 2017 8 21 10 26 4 693 4.8800 184.28292 547.17175 524.16861 -3.32164 0.00000 -1.83172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40981 0.19998 -1.00000 - 7776 2017 8 21 10 26 9 573 4.8801 184.27899 547.14532 524.14513 -3.32142 0.00000 -1.83163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40946 0.19998 -1.00000 - 7777 2017 8 21 10 26 14 453 4.8801 184.27513 547.11891 524.12167 -3.32151 0.00000 -1.83159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40910 0.19998 -1.00000 - 7778 2017 8 21 10 26 19 333 4.8802 184.27153 547.09250 524.09821 -3.32147 0.00000 -1.83156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40875 0.19998 -1.00000 - 7779 2017 8 21 10 26 24 213 4.8802 184.26796 547.06609 524.07474 -3.32128 0.00000 -1.83149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40839 0.19998 -1.00000 - 7780 2017 8 21 10 26 29 94 4.8803 184.26416 547.03965 524.05127 -3.32092 0.00000 -1.83135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40804 0.19998 -1.00000 - 7781 2017 8 21 10 26 33 974 4.8803 184.26025 547.01321 524.02780 -3.32040 0.00000 -1.83117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40768 0.19998 -1.00000 - 7782 2017 8 21 10 26 38 854 4.8804 184.25648 546.98678 524.00433 -3.31972 0.00000 -1.83102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40733 0.19998 -1.00000 - 7783 2017 8 21 10 26 43 735 4.8804 184.25293 546.96037 523.98088 -3.31889 0.00000 -1.83088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40697 0.19998 -1.00000 - 7784 2017 8 21 10 26 48 615 4.8805 184.24932 546.93396 523.95742 -3.31794 0.00000 -1.83076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40662 0.19998 -1.00000 - 7785 2017 8 21 10 26 53 496 4.8805 184.24548 546.90754 523.93396 -3.31688 0.00000 -1.83056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40626 0.19998 -1.00000 - 7786 2017 8 21 10 26 58 377 4.8806 184.24158 546.88111 523.91050 -3.31574 0.00000 -1.83028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40591 0.19998 -1.00000 - 7787 2017 8 21 10 27 3 257 4.8806 184.23788 546.85468 523.88704 -3.31456 0.00000 -1.83001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40555 0.19998 -1.00000 - 7788 2017 8 21 10 27 8 138 4.8807 184.23434 546.82827 523.86360 -3.31336 0.00000 -1.82978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40520 0.19998 -1.00000 - 7789 2017 8 21 10 27 13 19 4.8807 184.23067 546.80188 523.84016 -3.31215 0.00000 -1.82956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40484 0.19998 -1.00000 - 7790 2017 8 21 10 27 17 899 4.8808 184.22679 546.77549 523.81671 -3.31097 0.00000 -1.82933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40449 0.19998 -1.00000 - 7791 2017 8 21 10 27 22 780 4.8808 184.22292 546.74909 523.79326 -3.30982 0.00000 -1.82904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40413 0.19998 -1.00000 - 7792 2017 8 21 10 27 27 661 4.8809 184.21928 546.72267 523.76981 -3.30872 0.00000 -1.82871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40378 0.19997 -1.00000 - 7793 2017 8 21 10 27 32 542 4.8809 184.21575 546.69627 523.74637 -3.30778 0.00000 -1.82841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40342 0.19997 -1.00000 - 7794 2017 8 21 10 27 37 423 4.8810 184.21201 546.66988 523.72293 -3.30721 0.00000 -1.82815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40307 0.19997 -1.00000 - 7795 2017 8 21 10 27 42 304 4.8810 184.20811 546.64350 523.69950 -3.30663 0.00000 -1.82792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40271 0.19997 -1.00000 - 7796 2017 8 21 10 27 47 185 4.8811 184.20429 546.61710 523.67605 -3.30602 0.00000 -1.82766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40236 0.19997 -1.00000 - 7797 2017 8 21 10 27 52 66 4.8811 184.20072 546.59068 523.65260 -3.30537 0.00000 -1.82734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40200 0.19997 -1.00000 - 7798 2017 8 21 10 27 56 947 4.8812 184.19716 546.56426 523.62915 -3.30467 0.00000 -1.82702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40165 0.19997 -1.00000 - 7799 2017 8 21 10 28 1 829 4.8812 184.19337 546.53784 523.60570 -3.30392 0.00000 -1.82675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40129 0.19997 -1.00000 - 7800 2017 8 21 10 28 6 710 4.8813 184.18947 546.51143 523.58226 -3.30313 0.00000 -1.82652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40094 0.19997 -1.00000 - 7801 2017 8 21 10 28 11 591 4.8813 184.18572 546.48502 523.55881 -3.30231 0.00000 -1.82632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40058 0.19997 -1.00000 - 7802 2017 8 21 10 28 16 472 4.8814 184.18219 546.45859 523.53536 -3.30145 0.00000 -1.82605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40023 0.19997 -1.00000 - 7803 2017 8 21 10 28 21 354 4.8814 184.17858 546.43214 523.51191 -3.30058 0.00000 -1.82575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39987 0.19997 -1.00000 - 7804 2017 8 21 10 28 26 235 4.8815 184.17475 546.40569 523.48846 -3.29970 0.00000 -1.82547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39952 0.19997 -1.00000 - 7805 2017 8 21 10 28 31 117 4.8815 184.17087 546.37926 523.46502 -3.29883 0.00000 -1.82526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39916 0.19997 -1.00000 - 7806 2017 8 21 10 28 35 998 4.8816 184.16720 546.35284 523.44158 -3.29798 0.00000 -1.82507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39881 0.19997 -1.00000 - 7807 2017 8 21 10 28 40 880 4.8816 184.16368 546.32642 523.41814 -3.29717 0.00000 -1.82486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39845 0.19997 -1.00000 - 7808 2017 8 21 10 28 45 762 4.8817 184.16002 546.29998 523.39470 -3.29642 0.00000 -1.82458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39810 0.19997 -1.00000 - 7809 2017 8 21 10 28 50 643 4.8817 184.15615 546.27355 523.37127 -3.29571 0.00000 -1.82430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39774 0.19997 -1.00000 - 7810 2017 8 21 10 28 55 525 4.8818 184.15230 546.24713 523.34784 -3.29506 0.00000 -1.82406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39739 0.19997 -1.00000 - 7811 2017 8 21 10 29 0 407 4.8818 184.14870 546.22073 523.32443 -3.29448 0.00000 -1.82386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39703 0.19997 -1.00000 - 7812 2017 8 21 10 29 5 289 4.8818 184.14518 546.19435 523.30102 -3.29396 0.00000 -1.82369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39668 0.19997 -1.00000 - 7813 2017 8 21 10 29 10 171 4.8819 184.14146 546.16796 523.27761 -3.29351 0.00000 -1.82346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39632 0.19997 -1.00000 - 7814 2017 8 21 10 29 15 53 4.8820 184.13757 546.14157 523.25419 -3.29311 0.00000 -1.82317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39597 0.19997 -1.00000 - 7815 2017 8 21 10 29 19 935 4.8820 184.13379 546.11518 523.23079 -3.29274 0.00000 -1.82291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39561 0.19997 -1.00000 - 7816 2017 8 21 10 29 24 817 4.8820 184.13025 546.08881 523.20740 -3.29241 0.00000 -1.82272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39526 0.19997 -1.00000 - 7817 2017 8 21 10 29 29 699 4.8821 184.12671 546.06247 523.18401 -3.29209 0.00000 -1.82254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39490 0.19997 -1.00000 - 7818 2017 8 21 10 29 34 581 4.8821 184.12294 546.03612 523.16062 -3.29176 0.00000 -1.82237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39455 0.19997 -1.00000 - 7819 2017 8 21 10 29 39 463 4.8822 184.11906 546.00975 523.13723 -3.29141 0.00000 -1.82213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39419 0.19997 -1.00000 - 7820 2017 8 21 10 29 44 345 4.8822 184.11535 545.98339 523.11384 -3.29104 0.00000 -1.82188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39384 0.19996 -1.00000 - 7821 2017 8 21 10 29 49 228 4.8823 184.11185 545.95704 523.09046 -3.29061 0.00000 -1.82167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39348 0.19996 -1.00000 - 7822 2017 8 21 10 29 54 110 4.8823 184.10826 545.93071 523.06709 -3.29012 0.00000 -1.82151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39313 0.19996 -1.00000 - 7823 2017 8 21 10 29 58 992 4.8824 184.10444 545.90438 523.04372 -3.28957 0.00000 -1.82137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39277 0.19996 -1.00000 - 7824 2017 8 21 10 30 3 875 4.8824 184.10058 545.87805 523.02035 -3.28894 0.00000 -1.82119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39242 0.19996 -1.00000 - 7825 2017 8 21 10 30 8 757 4.8825 184.09695 545.85171 522.99698 -3.28825 0.00000 -1.82095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39206 0.19996 -1.00000 - 7826 2017 8 21 10 30 13 640 4.8825 184.09347 545.82537 522.97361 -3.28778 0.00000 -1.82073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39171 0.19996 -1.00000 - 7827 2017 8 21 10 30 18 522 4.8826 184.08982 545.79906 522.95025 -3.28730 0.00000 -1.82056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39135 0.19996 -1.00000 - 7828 2017 8 21 10 30 23 405 4.8826 184.08597 545.77276 522.92691 -3.28673 0.00000 -1.82042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39100 0.19996 -1.00000 - 7829 2017 8 21 10 30 28 288 4.8827 184.08215 545.74646 522.90356 -3.28609 0.00000 -1.82029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39064 0.19996 -1.00000 - 7830 2017 8 21 10 30 33 170 4.8827 184.07859 545.72016 522.88021 -3.28537 0.00000 -1.82009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39029 0.19996 -1.00000 - 7831 2017 8 21 10 30 38 53 4.8828 184.07511 545.69385 522.85686 -3.28457 0.00000 -1.81986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38993 0.19996 -1.00000 - 7832 2017 8 21 10 30 42 936 4.8828 184.07140 545.66756 522.83352 -3.28371 0.00000 -1.81966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38958 0.19996 -1.00000 - 7833 2017 8 21 10 30 47 819 4.8829 184.06752 545.64129 522.81019 -3.28281 0.00000 -1.81951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38922 0.19996 -1.00000 - 7834 2017 8 21 10 30 52 702 4.8829 184.06377 545.61503 522.78686 -3.28187 0.00000 -1.81938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38887 0.19996 -1.00000 - 7835 2017 8 21 10 30 57 585 4.8830 184.06028 545.58876 522.76353 -3.28092 0.00000 -1.81923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38851 0.19996 -1.00000 - 7836 2017 8 21 10 31 2 468 4.8830 184.05676 545.56249 522.74020 -3.27998 0.00000 -1.81902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38816 0.19996 -1.00000 - 7837 2017 8 21 10 31 7 351 4.8831 184.05299 545.53621 522.71687 -3.27907 0.00000 -1.81881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38780 0.19996 -1.00000 - 7838 2017 8 21 10 31 12 234 4.8831 184.04913 545.50995 522.69354 -3.27846 0.00000 -1.81865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38745 0.19996 -1.00000 - 7839 2017 8 21 10 31 17 117 4.8832 184.04545 545.48370 522.67023 -3.27808 0.00000 -1.81853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38709 0.19996 -1.00000 - 7840 2017 8 21 10 31 22 0 4.8832 184.04199 545.45746 522.64691 -3.27777 0.00000 -1.81843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38674 0.19996 -1.00000 - 7841 2017 8 21 10 31 26 884 4.8832 184.03841 545.43121 522.62360 -3.27751 0.00000 -1.81829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38638 0.19996 -1.00000 - 7842 2017 8 21 10 31 31 767 4.8833 184.03459 545.40495 522.60027 -3.27729 0.00000 -1.81811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38603 0.19996 -1.00000 - 7843 2017 8 21 10 31 36 650 4.8834 184.03076 545.37870 522.57696 -3.27711 0.00000 -1.81797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38567 0.19996 -1.00000 - 7844 2017 8 21 10 31 41 534 4.8834 184.02717 545.35247 522.55366 -3.27696 0.00000 -1.81790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38532 0.19996 -1.00000 - 7845 2017 8 21 10 31 46 417 4.8834 184.02372 545.32626 522.53036 -3.27682 0.00000 -1.81785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38496 0.19996 -1.00000 - 7846 2017 8 21 10 31 51 301 4.8835 184.02007 545.30004 522.50706 -3.27668 0.00000 -1.81781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38461 0.19996 -1.00000 - 7847 2017 8 21 10 31 56 184 4.8835 184.01622 545.27381 522.48375 -3.27655 0.00000 -1.81771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38425 0.19996 -1.00000 - 7848 2017 8 21 10 32 1 68 4.8836 184.01244 545.24759 522.46045 -3.27643 0.00000 -1.81761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38389 0.19995 -1.00000 - 7849 2017 8 21 10 32 5 951 4.8836 184.00894 545.22139 522.43716 -3.27632 0.00000 -1.81757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38354 0.19995 -1.00000 - 7850 2017 8 21 10 32 10 835 4.8837 184.00546 545.19520 522.41388 -3.27623 0.00000 -1.81758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38318 0.19995 -1.00000 - 7851 2017 8 21 10 32 15 719 4.8837 184.00173 545.16903 522.39059 -3.27617 0.00000 -1.81762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38283 0.19995 -1.00000 - 7852 2017 8 21 10 32 20 602 4.8838 183.99787 545.14284 522.36730 -3.27613 0.00000 -1.81762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38247 0.19995 -1.00000 - 7853 2017 8 21 10 32 25 486 4.8838 183.99417 545.11664 522.34400 -3.27614 0.00000 -1.81757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38212 0.19995 -1.00000 - 7854 2017 8 21 10 32 30 370 4.8839 183.99072 545.09044 522.32071 -3.27621 0.00000 -1.81755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38176 0.19995 -1.00000 - 7855 2017 8 21 10 32 35 254 4.8839 183.98719 545.06426 522.29742 -3.27634 0.00000 -1.81760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38141 0.19995 -1.00000 - 7856 2017 8 21 10 32 40 138 4.8840 183.98340 545.03809 522.27413 -3.27656 0.00000 -1.81767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38105 0.19995 -1.00000 - 7857 2017 8 21 10 32 45 22 4.8840 183.97956 545.01190 522.25083 -3.27686 0.00000 -1.81775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38070 0.19995 -1.00000 - 7858 2017 8 21 10 32 49 906 4.8841 183.97594 544.98568 522.22752 -3.27724 0.00000 -1.81778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38034 0.19995 -1.00000 - 7859 2017 8 21 10 32 54 790 4.8841 183.97251 544.95945 522.20421 -3.27770 0.00000 -1.81779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37999 0.19995 -1.00000 - 7860 2017 8 21 10 32 59 674 4.8841 183.96890 544.93321 522.18090 -3.27825 0.00000 -1.81785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37963 0.19995 -1.00000 - 7861 2017 8 21 10 33 4 558 4.8841 183.96507 544.90698 522.15759 -3.27888 0.00000 -1.81796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37928 0.19995 -1.00000 - 7862 2017 8 21 10 33 9 443 4.8841 183.96127 544.88074 522.13427 -3.27958 0.00000 -1.81810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37892 0.19995 -1.00000 - 7863 2017 8 21 10 33 14 327 4.8841 183.95775 544.85448 522.11094 -3.28035 0.00000 -1.81821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37857 0.19995 -1.00000 - 7864 2017 8 21 10 33 19 211 4.8842 183.95431 544.82818 522.08760 -3.28116 0.00000 -1.81827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37821 0.19995 -1.00000 - 7865 2017 8 21 10 33 24 95 4.8842 183.95062 544.80187 522.06426 -3.28200 0.00000 -1.81834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37786 0.19995 -1.00000 - 7866 2017 8 21 10 33 28 979 4.8842 183.94676 544.77556 522.04092 -3.28284 0.00000 -1.81848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37750 0.19995 -1.00000 - 7867 2017 8 21 10 33 33 863 4.8842 183.94304 544.74926 522.01759 -3.28368 0.00000 -1.81865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37715 0.19995 -1.00000 - 7868 2017 8 21 10 33 38 748 4.8842 183.93959 544.72294 521.99425 -3.28451 0.00000 -1.81884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37679 0.19995 -1.00000 - 7869 2017 8 21 10 33 43 632 4.8843 183.93609 544.69659 521.97090 -3.28530 0.00000 -1.81897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37644 0.19995 -1.00000 - 7870 2017 8 21 10 33 48 516 4.8843 183.93234 544.67023 521.94756 -3.28604 0.00000 -1.81907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37608 0.19995 -1.00000 - 7871 2017 8 21 10 33 53 401 4.8843 183.92850 544.64387 521.92422 -3.28673 0.00000 -1.81921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37573 0.19995 -1.00000 - 7872 2017 8 21 10 33 58 285 4.8843 183.92486 544.61753 521.90089 -3.28736 0.00000 -1.81940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37537 0.19995 -1.00000 - 7873 2017 8 21 10 34 3 169 4.8843 183.92144 544.59119 521.87757 -3.28793 0.00000 -1.81962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37502 0.19995 -1.00000 - 7874 2017 8 21 10 34 8 54 4.8843 183.91787 544.56485 521.85424 -3.28844 0.00000 -1.81981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37466 0.19995 -1.00000 - 7875 2017 8 21 10 34 12 938 4.8844 183.91406 544.53849 521.83093 -3.28890 0.00000 -1.81993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37430 0.19994 -1.00000 - 7876 2017 8 21 10 34 17 822 4.8844 183.91025 544.51215 521.80762 -3.28939 0.00000 -1.82005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37395 0.19994 -1.00000 - 7877 2017 8 21 10 34 22 707 4.8844 183.90671 544.48583 521.78433 -3.29012 0.00000 -1.82020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37359 0.19994 -1.00000 - 7878 2017 8 21 10 34 27 591 4.8844 183.90329 544.45954 521.76106 -3.29076 0.00000 -1.82038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37324 0.19994 -1.00000 - 7879 2017 8 21 10 34 32 476 4.8844 183.89965 544.43327 521.73780 -3.29130 0.00000 -1.82058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37288 0.19994 -1.00000 - 7880 2017 8 21 10 34 37 360 4.8845 183.89580 544.40701 521.71456 -3.29173 0.00000 -1.82070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37253 0.19994 -1.00000 - 7881 2017 8 21 10 34 42 244 4.8845 183.89205 544.38077 521.69132 -3.29206 0.00000 -1.82076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37217 0.19994 -1.00000 - 7882 2017 8 21 10 34 47 129 4.8845 183.88860 544.35456 521.66811 -3.29230 0.00000 -1.82084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37182 0.19994 -1.00000 - 7883 2017 8 21 10 34 52 13 4.8845 183.88514 544.32840 521.64492 -3.29245 0.00000 -1.82095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37146 0.19994 -1.00000 - 7884 2017 8 21 10 34 56 898 4.8845 183.88142 544.30228 521.62175 -3.29251 0.00000 -1.82107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37111 0.19994 -1.00000 - 7885 2017 8 21 10 35 1 783 4.8845 183.87757 544.27618 521.59860 -3.29250 0.00000 -1.82116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37075 0.19994 -1.00000 - 7886 2017 8 21 10 35 6 667 4.8846 183.87392 544.25011 521.57545 -3.29241 0.00000 -1.82117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37040 0.19994 -1.00000 - 7887 2017 8 21 10 35 11 552 4.8846 183.87051 544.22406 521.55233 -3.29225 0.00000 -1.82114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37004 0.19994 -1.00000 - 7888 2017 8 21 10 35 16 436 4.8846 183.86698 544.19806 521.52922 -3.29202 0.00000 -1.82114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36969 0.19994 -1.00000 - 7889 2017 8 21 10 35 21 321 4.8846 183.86320 544.17209 521.50613 -3.29173 0.00000 -1.82115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36933 0.19994 -1.00000 - 7890 2017 8 21 10 35 26 206 4.8846 183.85938 544.14617 521.48306 -3.29137 0.00000 -1.82118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36898 0.19994 -1.00000 - 7891 2017 8 21 10 35 31 90 4.8847 183.85582 544.12025 521.45999 -3.29094 0.00000 -1.82114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36862 0.19994 -1.00000 - 7892 2017 8 21 10 35 35 975 4.8847 183.85242 544.09435 521.43692 -3.29044 0.00000 -1.82102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36827 0.19994 -1.00000 - 7893 2017 8 21 10 35 40 860 4.8847 183.84882 544.06846 521.41387 -3.28987 0.00000 -1.82089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36791 0.19994 -1.00000 - 7894 2017 8 21 10 35 45 744 4.8847 183.84499 544.04260 521.39083 -3.28924 0.00000 -1.82082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36756 0.19994 -1.00000 - 7895 2017 8 21 10 35 50 629 4.8847 183.84123 544.01677 521.36779 -3.28853 0.00000 -1.82074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36720 0.19994 -1.00000 - 7896 2017 8 21 10 35 55 514 4.8847 183.83777 543.99095 521.34475 -3.28775 0.00000 -1.82065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36685 0.19994 -1.00000 - 7897 2017 8 21 10 36 0 398 4.8848 183.83434 543.96511 521.32171 -3.28691 0.00000 -1.82047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36649 0.19994 -1.00000 - 7898 2017 8 21 10 36 5 283 4.8848 183.83065 543.93927 521.29867 -3.28600 0.00000 -1.82026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36613 0.19994 -1.00000 - 7899 2017 8 21 10 36 10 168 4.8848 183.82681 543.91345 521.27563 -3.28502 0.00000 -1.82007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36578 0.19994 -1.00000 - 7900 2017 8 21 10 36 15 53 4.8848 183.82314 543.88763 521.25260 -3.28398 0.00000 -1.81991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36542 0.19994 -1.00000 - 7901 2017 8 21 10 36 19 938 4.8848 183.81974 543.86183 521.22956 -3.28289 0.00000 -1.81976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36507 0.19994 -1.00000 - 7902 2017 8 21 10 36 24 823 4.8848 183.81625 543.83600 521.20651 -3.28173 0.00000 -1.81957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36471 0.19994 -1.00000 - 7903 2017 8 21 10 36 29 707 4.8849 183.81249 543.81015 521.18345 -3.28053 0.00000 -1.81930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36436 0.19993 -1.00000 - 7904 2017 8 21 10 36 34 592 4.8849 183.80868 543.78429 521.16038 -3.27928 0.00000 -1.81902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36400 0.19993 -1.00000 - 7905 2017 8 21 10 36 39 477 4.8849 183.80511 543.75843 521.13731 -3.27799 0.00000 -1.81880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36365 0.19993 -1.00000 - 7906 2017 8 21 10 36 44 362 4.8849 183.80174 543.73256 521.11424 -3.27675 0.00000 -1.81859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36329 0.19993 -1.00000 - 7907 2017 8 21 10 36 49 247 4.8849 183.79819 543.70668 521.09115 -3.27551 0.00000 -1.81839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36294 0.19993 -1.00000 - 7908 2017 8 21 10 36 54 132 4.8850 183.79439 543.68076 521.06804 -3.27427 0.00000 -1.81812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36258 0.19993 -1.00000 - 7909 2017 8 21 10 36 59 17 4.8850 183.79065 543.65481 521.04493 -3.27305 0.00000 -1.81782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36223 0.19993 -1.00000 - 7910 2017 8 21 10 37 3 902 4.8850 183.78721 543.62884 521.02180 -3.27188 0.00000 -1.81755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36187 0.19993 -1.00000 - 7911 2017 8 21 10 37 8 787 4.8850 183.78384 543.60286 520.99867 -3.27077 0.00000 -1.81733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36152 0.19993 -1.00000 - 7912 2017 8 21 10 37 13 672 4.8850 183.78021 543.57686 520.97553 -3.26974 0.00000 -1.81713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36116 0.19993 -1.00000 - 7913 2017 8 21 10 37 18 557 4.8851 183.77641 543.55083 520.95237 -3.26882 0.00000 -1.81693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36081 0.19993 -1.00000 - 7914 2017 8 21 10 37 23 442 4.8851 183.77278 543.52477 520.92920 -3.26803 0.00000 -1.81668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36045 0.19993 -1.00000 - 7915 2017 8 21 10 37 28 327 4.8851 183.76943 543.49867 520.90602 -3.26740 0.00000 -1.81642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36010 0.19993 -1.00000 - 7916 2017 8 21 10 37 33 212 4.8851 183.76600 543.47256 520.88284 -3.26694 0.00000 -1.81622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35974 0.19993 -1.00000 - 7917 2017 8 21 10 37 38 97 4.8851 183.76231 543.44645 520.85965 -3.26668 0.00000 -1.81606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35939 0.19993 -1.00000 - 7918 2017 8 21 10 37 42 983 4.8851 183.75855 543.42033 520.83646 -3.26663 0.00000 -1.81595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35903 0.19993 -1.00000 - 7919 2017 8 21 10 37 47 868 4.8852 183.75503 543.39418 520.81326 -3.26682 0.00000 -1.81582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35867 0.19993 -1.00000 - 7920 2017 8 21 10 37 52 753 4.8852 183.75171 543.36800 520.79006 -3.26724 0.00000 -1.81564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35832 0.19993 -1.00000 - 7921 2017 8 21 10 37 57 638 4.8852 183.74821 543.34181 520.76686 -3.26790 0.00000 -1.81549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35796 0.19993 -1.00000 - 7922 2017 8 21 10 38 2 523 4.8852 183.74447 543.31565 520.74366 -3.26882 0.00000 -1.81542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35761 0.19993 -1.00000 - 7923 2017 8 21 10 38 7 409 4.8852 183.74076 543.28948 520.72047 -3.26997 0.00000 -1.81540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35725 0.19993 -1.00000 - 7924 2017 8 21 10 38 12 294 4.8852 183.73735 543.26331 520.69727 -3.27133 0.00000 -1.81540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35690 0.19993 -1.00000 - 7925 2017 8 21 10 38 17 179 4.8853 183.73402 543.23713 520.67408 -3.27290 0.00000 -1.81535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35654 0.19993 -1.00000 - 7926 2017 8 21 10 38 22 64 4.8853 183.73044 543.21094 520.65089 -3.27465 0.00000 -1.81530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35619 0.19993 -1.00000 - 7927 2017 8 21 10 38 26 950 4.8853 183.72668 543.18477 520.62771 -3.27656 0.00000 -1.81530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35583 0.19993 -1.00000 - 7928 2017 8 21 10 38 31 835 4.8853 183.72307 543.15862 520.60454 -3.27858 0.00000 -1.81535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35548 0.19993 -1.00000 - 7929 2017 8 21 10 38 36 720 4.8853 183.71974 543.13249 520.58138 -3.28068 0.00000 -1.81545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35512 0.19993 -1.00000 - 7930 2017 8 21 10 38 41 606 4.8854 183.71635 543.10636 520.55823 -3.28281 0.00000 -1.81554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35477 0.19993 -1.00000 - 7931 2017 8 21 10 38 46 491 4.8854 183.71270 543.08023 520.53508 -3.28494 0.00000 -1.81556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35441 0.19992 -1.00000 - 7932 2017 8 21 10 38 51 376 4.8854 183.70897 543.05411 520.51194 -3.28702 0.00000 -1.81560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35406 0.19992 -1.00000 - 7933 2017 8 21 10 38 56 262 4.8854 183.70547 543.02803 520.48881 -3.28901 0.00000 -1.81568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35370 0.19992 -1.00000 - 7934 2017 8 21 10 39 1 147 4.8854 183.70218 543.00197 520.46570 -3.29086 0.00000 -1.81579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35335 0.19992 -1.00000 - 7935 2017 8 21 10 39 6 33 4.8854 183.69871 542.97594 520.44260 -3.29253 0.00000 -1.81590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35299 0.19992 -1.00000 - 7936 2017 8 21 10 39 10 918 4.8855 183.69500 542.94990 520.41950 -3.29397 0.00000 -1.81594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35264 0.19992 -1.00000 - 7937 2017 8 21 10 39 15 804 4.8855 183.69132 542.92388 520.39641 -3.29514 0.00000 -1.81592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35228 0.19992 -1.00000 - 7938 2017 8 21 10 39 20 689 4.8855 183.68793 542.89787 520.37333 -3.29601 0.00000 -1.81592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35192 0.19992 -1.00000 - 7939 2017 8 21 10 39 25 575 4.8855 183.68463 542.87190 520.35027 -3.29697 0.00000 -1.81592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35157 0.19992 -1.00000 - 7940 2017 8 21 10 39 30 460 4.8855 183.68107 542.84596 520.32722 -3.29892 0.00000 -1.81591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35121 0.19992 -1.00000 - 7941 2017 8 21 10 39 35 346 4.8856 183.67734 542.82002 520.30417 -3.30051 0.00000 -1.81587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35086 0.19992 -1.00000 - 7942 2017 8 21 10 39 40 231 4.8856 183.67376 542.79408 520.28112 -3.30165 0.00000 -1.81572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35050 0.19992 -1.00000 - 7943 2017 8 21 10 39 45 117 4.8856 183.67046 542.76814 520.25808 -3.30280 0.00000 -1.81551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35015 0.19992 -1.00000 - 7944 2017 8 21 10 39 50 3 4.8856 183.66709 542.74223 520.23504 -3.30428 0.00000 -1.81529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34979 0.19992 -1.00000 - 7945 2017 8 21 10 39 54 888 4.8856 183.66347 542.71633 520.21202 -3.30515 0.00000 -1.81505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34944 0.19992 -1.00000 - 7946 2017 8 21 10 39 59 774 4.8856 183.65977 542.69044 520.18899 -3.30536 0.00000 -1.81480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34908 0.19992 -1.00000 - 7947 2017 8 21 10 40 4 659 4.8857 183.65630 542.66455 520.16597 -3.30486 0.00000 -1.81446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34873 0.19992 -1.00000 - 7948 2017 8 21 10 40 9 545 4.8857 183.65303 542.63864 520.14294 -3.30363 0.00000 -1.81401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34837 0.19992 -1.00000 - 7949 2017 8 21 10 40 14 431 4.8857 183.64957 542.61273 520.11991 -3.30166 0.00000 -1.81352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34802 0.19992 -1.00000 - 7950 2017 8 21 10 40 19 317 4.8857 183.64588 542.58685 520.09689 -3.29896 0.00000 -1.81305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34766 0.19992 -1.00000 - 7951 2017 8 21 10 40 24 202 4.8857 183.64225 542.56096 520.07388 -3.29555 0.00000 -1.81256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34731 0.19992 -1.00000 - 7952 2017 8 21 10 40 29 88 4.8857 183.63889 542.53508 520.05086 -3.29147 0.00000 -1.81204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34695 0.19992 -1.00000 - 7953 2017 8 21 10 40 33 974 4.8858 183.63560 542.50917 520.02783 -3.28675 0.00000 -1.81143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34660 0.19992 -1.00000 - 7954 2017 8 21 10 40 38 860 4.8858 183.63205 542.48325 520.00480 -3.28145 0.00000 -1.81075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34624 0.19992 -1.00000 - 7955 2017 8 21 10 40 43 745 4.8858 183.62836 542.45733 519.98177 -3.27566 0.00000 -1.81010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34588 0.19992 -1.00000 - 7956 2017 8 21 10 40 48 631 4.8858 183.62482 542.43143 519.95875 -3.26945 0.00000 -1.80946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34553 0.19992 -1.00000 - 7957 2017 8 21 10 40 53 517 4.8858 183.62155 542.40552 519.93573 -3.26292 0.00000 -1.80885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34517 0.19992 -1.00000 - 7958 2017 8 21 10 40 58 403 4.8859 183.61818 542.37961 519.91271 -3.25615 0.00000 -1.80821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34482 0.19992 -1.00000 - 7959 2017 8 21 10 41 3 289 4.8859 183.61456 542.35367 519.88967 -3.24924 0.00000 -1.80752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34446 0.19991 -1.00000 - 7960 2017 8 21 10 41 8 175 4.8859 183.61090 542.32772 519.86664 -3.24378 0.00000 -1.80683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34411 0.19991 -1.00000 - 7961 2017 8 21 10 41 13 61 4.8859 183.60748 542.30179 519.84362 -3.23847 0.00000 -1.80622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34375 0.19991 -1.00000 - 7962 2017 8 21 10 41 17 947 4.8859 183.60422 542.27587 519.82060 -3.23330 0.00000 -1.80566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34340 0.19991 -1.00000 - 7963 2017 8 21 10 41 22 832 4.8859 183.60076 542.24995 519.79758 -3.22912 0.00000 -1.80515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34304 0.19991 -1.00000 - 7964 2017 8 21 10 41 27 718 4.8860 183.59710 542.22401 519.77455 -3.22659 0.00000 -1.80462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34269 0.19991 -1.00000 - 7965 2017 8 21 10 41 32 604 4.8860 183.59351 542.19807 519.75153 -3.22443 0.00000 -1.80410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34233 0.19991 -1.00000 - 7966 2017 8 21 10 41 37 490 4.8860 183.59020 542.17213 519.72851 -3.22265 0.00000 -1.80366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34198 0.19991 -1.00000 - 7967 2017 8 21 10 41 42 376 4.8860 183.58690 542.14622 519.70550 -3.22125 0.00000 -1.80332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34162 0.19991 -1.00000 - 7968 2017 8 21 10 41 47 262 4.8860 183.58335 542.12031 519.68250 -3.22022 0.00000 -1.80307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34127 0.19991 -1.00000 - 7969 2017 8 21 10 41 52 149 4.8861 183.57969 542.09442 519.65950 -3.21958 0.00000 -1.80288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34091 0.19991 -1.00000 - 7970 2017 8 21 10 41 57 35 4.8861 183.57622 542.06851 519.63650 -3.21931 0.00000 -1.80269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34055 0.19991 -1.00000 - 7971 2017 8 21 10 42 1 921 4.8861 183.57296 542.04261 519.61350 -3.21942 0.00000 -1.80254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34020 0.19991 -1.00000 - 7972 2017 8 21 10 42 6 807 4.8861 183.56958 542.01672 519.59052 -3.21992 0.00000 -1.80250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33984 0.19991 -1.00000 - 7973 2017 8 21 10 42 11 693 4.8861 183.56597 541.99087 519.56755 -3.22077 0.00000 -1.80255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33949 0.19991 -1.00000 - 7974 2017 8 21 10 42 16 579 4.8861 183.56237 541.96503 519.54458 -3.22195 0.00000 -1.80270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33913 0.19991 -1.00000 - 7975 2017 8 21 10 42 21 465 4.8862 183.55900 541.93919 519.52162 -3.22345 0.00000 -1.80287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33878 0.19991 -1.00000 - 7976 2017 8 21 10 42 26 351 4.8862 183.55574 541.91335 519.49866 -3.22524 0.00000 -1.80305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33842 0.19991 -1.00000 - 7977 2017 8 21 10 42 31 238 4.8862 183.55227 541.88753 519.47571 -3.22729 0.00000 -1.80328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33807 0.19991 -1.00000 - 7978 2017 8 21 10 42 36 124 4.8862 183.54863 541.86174 519.45277 -3.22959 0.00000 -1.80363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33771 0.19991 -1.00000 - 7979 2017 8 21 10 42 41 10 4.8862 183.54511 541.83597 519.42984 -3.23210 0.00000 -1.80405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33736 0.19991 -1.00000 - 7980 2017 8 21 10 42 45 896 4.8862 183.54184 541.81021 519.40691 -3.23479 0.00000 -1.80452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33700 0.19991 -1.00000 - 7981 2017 8 21 10 42 50 783 4.8863 183.53852 541.78445 519.38399 -3.23760 0.00000 -1.80495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33665 0.19991 -1.00000 - 7982 2017 8 21 10 42 55 669 4.8863 183.53498 541.75869 519.36106 -3.24053 0.00000 -1.80539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33629 0.19991 -1.00000 - 7983 2017 8 21 10 43 0 555 4.8863 183.53137 541.73295 519.33815 -3.24355 0.00000 -1.80589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33594 0.19991 -1.00000 - 7984 2017 8 21 10 43 5 441 4.8863 183.52796 541.70724 519.31524 -3.24661 0.00000 -1.80643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33558 0.19991 -1.00000 - 7985 2017 8 21 10 43 10 328 4.8863 183.52471 541.68153 519.29234 -3.24967 0.00000 -1.80702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33522 0.19991 -1.00000 - 7986 2017 8 21 10 43 15 214 4.8864 183.52131 541.65583 519.26943 -3.25269 0.00000 -1.80761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33487 0.19991 -1.00000 - 7987 2017 8 21 10 43 20 100 4.8864 183.51771 541.63010 519.24652 -3.25563 0.00000 -1.80812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33451 0.19990 -1.00000 - 7988 2017 8 21 10 43 24 987 4.8864 183.51417 541.60437 519.22360 -3.25845 0.00000 -1.80862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33416 0.19990 -1.00000 - 7989 2017 8 21 10 43 29 873 4.8864 183.51086 541.57864 519.20069 -3.26113 0.00000 -1.80915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33380 0.19990 -1.00000 - 7990 2017 8 21 10 43 34 760 4.8864 183.50759 541.55292 519.17778 -3.26364 0.00000 -1.80969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33345 0.19990 -1.00000 - 7991 2017 8 21 10 43 39 646 4.8864 183.50410 541.52720 519.15486 -3.26594 0.00000 -1.81023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33309 0.19990 -1.00000 - 7992 2017 8 21 10 43 44 533 4.8865 183.50050 541.50144 519.13193 -3.26932 0.00000 -1.81069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33274 0.19990 -1.00000 - 7993 2017 8 21 10 43 49 419 4.8865 183.49706 541.47566 519.10899 -3.27272 0.00000 -1.81107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33238 0.19990 -1.00000 - 7994 2017 8 21 10 43 54 306 4.8865 183.49382 541.44987 519.08605 -3.27577 0.00000 -1.81144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33203 0.19990 -1.00000 - 7995 2017 8 21 10 43 59 192 4.8865 183.49047 541.42408 519.06311 -3.27917 0.00000 -1.81182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33167 0.19990 -1.00000 - 7996 2017 8 21 10 44 4 79 4.8865 183.48693 541.39828 519.04017 -3.28228 0.00000 -1.81219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33132 0.19990 -1.00000 - 7997 2017 8 21 10 44 8 965 4.8866 183.48338 541.37247 519.01723 -3.28487 0.00000 -1.81254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33096 0.19990 -1.00000 - 7998 2017 8 21 10 44 13 852 4.8866 183.48004 541.34663 518.99427 -3.28691 0.00000 -1.81279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33061 0.19990 -1.00000 - 7999 2017 8 21 10 44 18 738 4.8866 183.47679 541.32077 518.97131 -3.28840 0.00000 -1.81296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33025 0.19990 -1.00000 - 8000 2017 8 21 10 44 23 625 4.8866 183.47335 541.29490 518.94836 -3.28934 0.00000 -1.81313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32989 0.19990 -1.00000 - 8001 2017 8 21 10 44 28 512 4.8866 183.46979 541.26905 518.92541 -3.28975 0.00000 -1.81329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32954 0.19990 -1.00000 - 8002 2017 8 21 10 44 33 398 4.8866 183.46632 541.24320 518.90247 -3.28967 0.00000 -1.81345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32918 0.19990 -1.00000 - 8003 2017 8 21 10 44 38 285 4.8867 183.46306 541.21735 518.87953 -3.28912 0.00000 -1.81358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32883 0.19990 -1.00000 - 8004 2017 8 21 10 44 43 172 4.8867 183.45975 541.19148 518.85659 -3.28815 0.00000 -1.81361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32847 0.19990 -1.00000 - 8005 2017 8 21 10 44 48 58 4.8867 183.45627 541.16561 518.83365 -3.28682 0.00000 -1.81358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32812 0.19990 -1.00000 - 8006 2017 8 21 10 44 52 945 4.8867 183.45273 541.13976 518.81073 -3.28521 0.00000 -1.81358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32776 0.19990 -1.00000 - 8007 2017 8 21 10 44 57 832 4.8867 183.44936 541.11393 518.78782 -3.28367 0.00000 -1.81357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32741 0.19990 -1.00000 - 8008 2017 8 21 10 45 2 718 4.8867 183.44611 541.08813 518.76492 -3.28253 0.00000 -1.81358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32705 0.19990 -1.00000 - 8009 2017 8 21 10 45 7 605 4.8868 183.44273 541.06232 518.74202 -3.28127 0.00000 -1.81350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32670 0.19990 -1.00000 - 8010 2017 8 21 10 45 12 492 4.8868 183.43921 541.03652 518.71913 -3.27990 0.00000 -1.81335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32634 0.19990 -1.00000 - 8011 2017 8 21 10 45 17 379 4.8868 183.43574 541.01074 518.69626 -3.27847 0.00000 -1.81321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32599 0.19990 -1.00000 - 8012 2017 8 21 10 45 22 266 4.8868 183.43245 540.98499 518.67340 -3.27699 0.00000 -1.81309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32563 0.19990 -1.00000 - 8013 2017 8 21 10 45 27 152 4.8868 183.42917 540.95928 518.65056 -3.27549 0.00000 -1.81299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32527 0.19990 -1.00000 - 8014 2017 8 21 10 45 32 39 4.8868 183.42573 540.93358 518.62772 -3.27403 0.00000 -1.81291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32492 0.19990 -1.00000 - 8015 2017 8 21 10 45 36 926 4.8869 183.42222 540.90790 518.60489 -3.27353 0.00000 -1.81274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32456 0.19989 -1.00000 - 8016 2017 8 21 10 45 41 813 4.8869 183.41883 540.88221 518.58207 -3.27302 0.00000 -1.81252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32421 0.19989 -1.00000 - 8017 2017 8 21 10 45 46 700 4.8869 183.41558 540.85656 518.55926 -3.27249 0.00000 -1.81232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32385 0.19989 -1.00000 - 8018 2017 8 21 10 45 51 587 4.8869 183.41223 540.83093 518.53646 -3.27193 0.00000 -1.81215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32350 0.19989 -1.00000 - 8019 2017 8 21 10 45 56 474 4.8869 183.40876 540.80534 518.51368 -3.27134 0.00000 -1.81200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32314 0.19989 -1.00000 - 8020 2017 8 21 10 46 1 361 4.8870 183.40531 540.77976 518.49090 -3.27070 0.00000 -1.81187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32279 0.19989 -1.00000 - 8021 2017 8 21 10 46 6 248 4.8870 183.40199 540.75417 518.46811 -3.27001 0.00000 -1.81166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32243 0.19989 -1.00000 - 8022 2017 8 21 10 46 11 135 4.8870 183.39871 540.72859 518.44533 -3.26925 0.00000 -1.81140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32208 0.19989 -1.00000 - 8023 2017 8 21 10 46 16 22 4.8870 183.39531 540.70303 518.42256 -3.26842 0.00000 -1.81118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32172 0.19989 -1.00000 - 8024 2017 8 21 10 46 20 909 4.8870 183.39185 540.67749 518.39980 -3.26754 0.00000 -1.81098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32137 0.19989 -1.00000 - 8025 2017 8 21 10 46 25 796 4.8870 183.38847 540.65196 518.37704 -3.26659 0.00000 -1.81080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32101 0.19989 -1.00000 - 8026 2017 8 21 10 46 30 683 4.8871 183.38518 540.62643 518.35428 -3.26559 0.00000 -1.81061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32065 0.19989 -1.00000 - 8027 2017 8 21 10 46 35 570 4.8871 183.38185 540.60088 518.33150 -3.26453 0.00000 -1.81033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32030 0.19989 -1.00000 - 8028 2017 8 21 10 46 40 457 4.8871 183.37843 540.57532 518.30873 -3.26340 0.00000 -1.81005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31994 0.19989 -1.00000 - 8029 2017 8 21 10 46 45 344 4.8871 183.37502 540.54978 518.28596 -3.26220 0.00000 -1.80980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31959 0.19989 -1.00000 - 8030 2017 8 21 10 46 50 231 4.8871 183.37169 540.52423 518.26319 -3.26092 0.00000 -1.80956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31923 0.19989 -1.00000 - 8031 2017 8 21 10 46 55 118 4.8871 183.36839 540.49868 518.24042 -3.25957 0.00000 -1.80933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31888 0.19989 -1.00000 - 8032 2017 8 21 10 47 0 6 4.8872 183.36502 540.47310 518.21763 -3.25814 0.00000 -1.80902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31852 0.19989 -1.00000 - 8033 2017 8 21 10 47 4 893 4.8872 183.36162 540.44750 518.19483 -3.25662 0.00000 -1.80867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31817 0.19989 -1.00000 - 8034 2017 8 21 10 47 9 780 4.8872 183.35825 540.42189 518.17203 -3.25503 0.00000 -1.80834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31781 0.19989 -1.00000 - 8035 2017 8 21 10 47 14 667 4.8872 183.35494 540.39629 518.14923 -3.25336 0.00000 -1.80803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31746 0.19989 -1.00000 - 8036 2017 8 21 10 47 19 554 4.8872 183.35161 540.37067 518.12643 -3.25163 0.00000 -1.80773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31710 0.19989 -1.00000 - 8037 2017 8 21 10 47 24 442 4.8873 183.34824 540.34505 518.10362 -3.24985 0.00000 -1.80745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31675 0.19989 -1.00000 - 8038 2017 8 21 10 47 29 329 4.8873 183.34486 540.31940 518.08080 -3.24816 0.00000 -1.80708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31639 0.19989 -1.00000 - 8039 2017 8 21 10 47 34 216 4.8873 183.34154 540.29372 518.05798 -3.24653 0.00000 -1.80668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31603 0.19989 -1.00000 - 8040 2017 8 21 10 47 39 104 4.8873 183.33822 540.26804 518.03516 -3.24480 0.00000 -1.80632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31568 0.19989 -1.00000 - 8041 2017 8 21 10 47 43 991 4.8873 183.33487 540.24237 518.01234 -3.24298 0.00000 -1.80598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31532 0.19989 -1.00000 - 8042 2017 8 21 10 47 48 878 4.8873 183.33151 540.21670 517.98951 -3.24108 0.00000 -1.80566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31497 0.19988 -1.00000 - 8043 2017 8 21 10 47 53 766 4.8874 183.32817 540.19101 517.96669 -3.23912 0.00000 -1.80534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31461 0.19988 -1.00000 - 8044 2017 8 21 10 47 58 653 4.8874 183.32485 540.16530 517.94386 -3.23741 0.00000 -1.80495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31426 0.19988 -1.00000 - 8045 2017 8 21 10 48 3 540 4.8874 183.32152 540.13959 517.92103 -3.23591 0.00000 -1.80456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31390 0.19988 -1.00000 - 8046 2017 8 21 10 48 8 428 4.8874 183.31818 540.11388 517.89820 -3.23457 0.00000 -1.80424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31355 0.19988 -1.00000 - 8047 2017 8 21 10 48 13 315 4.8874 183.31483 540.08819 517.87538 -3.23341 0.00000 -1.80393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31319 0.19988 -1.00000 - 8048 2017 8 21 10 48 18 203 4.8874 183.31151 540.06250 517.85256 -3.23245 0.00000 -1.80367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31284 0.19988 -1.00000 - 8049 2017 8 21 10 48 23 90 4.8875 183.30820 540.03679 517.82974 -3.23171 0.00000 -1.80336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31248 0.19988 -1.00000 - 8050 2017 8 21 10 48 27 978 4.8875 183.30487 540.01107 517.80691 -3.23121 0.00000 -1.80302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31212 0.19988 -1.00000 - 8051 2017 8 21 10 48 32 865 4.8875 183.30153 539.98536 517.78410 -3.23095 0.00000 -1.80274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31177 0.19988 -1.00000 - 8052 2017 8 21 10 48 37 753 4.8875 183.29821 539.95967 517.76129 -3.23096 0.00000 -1.80251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31141 0.19988 -1.00000 - 8053 2017 8 21 10 48 42 640 4.8875 183.29490 539.93399 517.73849 -3.23123 0.00000 -1.80233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31106 0.19988 -1.00000 - 8054 2017 8 21 10 48 47 528 4.8876 183.29158 539.90832 517.71569 -3.23174 0.00000 -1.80219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31070 0.19988 -1.00000 - 8055 2017 8 21 10 48 52 415 4.8876 183.28825 539.88263 517.69288 -3.23248 0.00000 -1.80202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31035 0.19988 -1.00000 - 8056 2017 8 21 10 48 57 303 4.8876 183.28493 539.85694 517.67008 -3.23343 0.00000 -1.80183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30999 0.19988 -1.00000 - 8057 2017 8 21 10 49 2 190 4.8876 183.28162 539.83127 517.64729 -3.23454 0.00000 -1.80170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30964 0.19988 -1.00000 - 8058 2017 8 21 10 49 7 78 4.8876 183.27832 539.80562 517.62451 -3.23581 0.00000 -1.80163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30928 0.19988 -1.00000 - 8059 2017 8 21 10 49 11 966 4.8876 183.27500 539.77998 517.60174 -3.23718 0.00000 -1.80161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30893 0.19988 -1.00000 - 8060 2017 8 21 10 49 16 853 4.8877 183.27169 539.75436 517.57897 -3.23862 0.00000 -1.80162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30857 0.19988 -1.00000 - 8061 2017 8 21 10 49 21 741 4.8877 183.26838 539.72872 517.55620 -3.24009 0.00000 -1.80159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30821 0.19988 -1.00000 - 8062 2017 8 21 10 49 26 629 4.8877 183.26508 539.70308 517.53343 -3.24153 0.00000 -1.80155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30786 0.19988 -1.00000 - 8063 2017 8 21 10 49 31 516 4.8877 183.26178 539.67747 517.51067 -3.24292 0.00000 -1.80157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30750 0.19988 -1.00000 - 8064 2017 8 21 10 49 36 404 4.8877 183.25847 539.65188 517.48793 -3.24421 0.00000 -1.80163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30715 0.19988 -1.00000 - 8065 2017 8 21 10 49 41 292 4.8877 183.25517 539.62631 517.46518 -3.24536 0.00000 -1.80172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30679 0.19988 -1.00000 - 8066 2017 8 21 10 49 46 180 4.8878 183.25187 539.60072 517.44244 -3.24635 0.00000 -1.80177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30644 0.19988 -1.00000 - 8067 2017 8 21 10 49 51 67 4.8878 183.24858 539.57513 517.41969 -3.24715 0.00000 -1.80177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30608 0.19988 -1.00000 - 8068 2017 8 21 10 49 55 955 4.8878 183.24528 539.54955 517.39696 -3.24775 0.00000 -1.80178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30573 0.19988 -1.00000 - 8069 2017 8 21 10 50 0 843 4.8878 183.24199 539.52400 517.37423 -3.24812 0.00000 -1.80181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30537 0.19988 -1.00000 - 8070 2017 8 21 10 50 5 731 4.8878 183.23869 539.49845 517.35151 -3.24825 0.00000 -1.80186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30502 0.19987 -1.00000 - 8071 2017 8 21 10 50 10 619 4.8879 183.23540 539.47292 517.32878 -3.24812 0.00000 -1.80192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30466 0.19987 -1.00000 - 8072 2017 8 21 10 50 15 507 4.8879 183.23212 539.44737 517.30606 -3.24888 0.00000 -1.80189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30430 0.19987 -1.00000 - 8073 2017 8 21 10 50 20 395 4.8879 183.22883 539.42180 517.28333 -3.24969 0.00000 -1.80179 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30395 0.19987 -1.00000 - 8074 2017 8 21 10 50 25 282 4.8879 183.22554 539.39625 517.26061 -3.25012 0.00000 -1.80170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30359 0.19987 -1.00000 - 8075 2017 8 21 10 50 30 170 4.8879 183.22226 539.37071 517.23789 -3.25015 0.00000 -1.80161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30324 0.19987 -1.00000 - 8076 2017 8 21 10 50 35 58 4.8879 183.21898 539.34518 517.21518 -3.25008 0.00000 -1.80152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30288 0.19987 -1.00000 - 8077 2017 8 21 10 50 39 946 4.8880 183.21570 539.31966 517.19247 -3.25009 0.00000 -1.80142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30253 0.19987 -1.00000 - 8078 2017 8 21 10 50 44 834 4.8880 183.21242 539.29411 517.16975 -3.24954 0.00000 -1.80123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30217 0.19987 -1.00000 - 8079 2017 8 21 10 50 49 722 4.8880 183.20914 539.26855 517.14703 -3.24843 0.00000 -1.80098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30182 0.19987 -1.00000 - 8080 2017 8 21 10 50 54 610 4.8880 183.20587 539.24301 517.12431 -3.24678 0.00000 -1.80073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30146 0.19987 -1.00000 - 8081 2017 8 21 10 50 59 498 4.8880 183.20259 539.21747 517.10161 -3.24460 0.00000 -1.80049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30111 0.19987 -1.00000 - 8082 2017 8 21 10 51 4 386 4.8880 183.19932 539.19194 517.07890 -3.24192 0.00000 -1.80026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30075 0.19987 -1.00000 - 8083 2017 8 21 10 51 9 274 4.8881 183.19605 539.16640 517.05619 -3.23882 0.00000 -1.80001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30039 0.19987 -1.00000 - 8084 2017 8 21 10 51 14 162 4.8881 183.19278 539.14085 517.03348 -3.23534 0.00000 -1.79969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30004 0.19987 -1.00000 - 8085 2017 8 21 10 51 19 51 4.8881 183.18952 539.11529 517.01077 -3.23208 0.00000 -1.79935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29968 0.19987 -1.00000 - 8086 2017 8 21 10 51 23 939 4.8881 183.18625 539.08975 516.98806 -3.22917 0.00000 -1.79905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29933 0.19987 -1.00000 - 8087 2017 8 21 10 51 28 827 4.8881 183.18299 539.06422 516.96537 -3.22623 0.00000 -1.79877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29897 0.19987 -1.00000 - 8088 2017 8 21 10 51 33 715 4.8882 183.17973 539.03870 516.94267 -3.22329 0.00000 -1.79852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29862 0.19987 -1.00000 - 8089 2017 8 21 10 51 38 603 4.8882 183.17647 539.01316 516.91997 -3.22039 0.00000 -1.79823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29826 0.19987 -1.00000 - 8090 2017 8 21 10 51 43 491 4.8882 183.17321 538.98761 516.89727 -3.21904 0.00000 -1.79792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29791 0.19987 -1.00000 - 8091 2017 8 21 10 51 48 380 4.8882 183.16996 538.96207 516.87457 -3.21795 0.00000 -1.79765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29755 0.19987 -1.00000 - 8092 2017 8 21 10 51 53 268 4.8882 183.16670 538.93656 516.85189 -3.21707 0.00000 -1.79743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29720 0.19987 -1.00000 - 8093 2017 8 21 10 51 58 156 4.8882 183.16345 538.91105 516.82921 -3.21639 0.00000 -1.79727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29684 0.19987 -1.00000 - 8094 2017 8 21 10 52 3 44 4.8883 183.16020 538.88555 516.80653 -3.21593 0.00000 -1.79718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29648 0.19987 -1.00000 - 8095 2017 8 21 10 52 7 933 4.8883 183.15695 538.86004 516.78385 -3.21567 0.00000 -1.79706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29613 0.19987 -1.00000 - 8096 2017 8 21 10 52 12 821 4.8883 183.15370 538.83453 516.76118 -3.21561 0.00000 -1.79693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29577 0.19987 -1.00000 - 8097 2017 8 21 10 52 17 709 4.8883 183.15045 538.80903 516.73851 -3.21576 0.00000 -1.79687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29542 0.19987 -1.00000 - 8098 2017 8 21 10 52 22 597 4.8883 183.14721 538.78355 516.71585 -3.21610 0.00000 -1.79687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29506 0.19986 -1.00000 - 8099 2017 8 21 10 52 27 486 4.8883 183.14397 538.75808 516.69320 -3.21661 0.00000 -1.79694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29471 0.19986 -1.00000 - 8100 2017 8 21 10 52 32 374 4.8884 183.14072 538.73262 516.67055 -3.21727 0.00000 -1.79705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29435 0.19986 -1.00000 - 8101 2017 8 21 10 52 37 263 4.8884 183.13749 538.70716 516.64790 -3.21808 0.00000 -1.79714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29400 0.19986 -1.00000 - 8102 2017 8 21 10 52 42 151 4.8884 183.13425 538.68169 516.62525 -3.21902 0.00000 -1.79725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29364 0.19986 -1.00000 - 8103 2017 8 21 10 52 47 39 4.8884 183.13101 538.65624 516.60261 -3.22007 0.00000 -1.79743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29329 0.19986 -1.00000 - 8104 2017 8 21 10 52 51 928 4.8884 183.12778 538.63081 516.57998 -3.22120 0.00000 -1.79765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29293 0.19986 -1.00000 - 8105 2017 8 21 10 52 56 816 4.8884 183.12455 538.60540 516.55736 -3.22240 0.00000 -1.79792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29257 0.19986 -1.00000 - 8106 2017 8 21 10 53 1 705 4.8885 183.12132 538.57997 516.53473 -3.22365 0.00000 -1.79818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29222 0.19986 -1.00000 - 8107 2017 8 21 10 53 6 593 4.8885 183.11809 538.55454 516.51210 -3.22494 0.00000 -1.79842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29186 0.19986 -1.00000 - 8108 2017 8 21 10 53 11 482 4.8885 183.11486 538.52912 516.48949 -3.22625 0.00000 -1.79868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29151 0.19986 -1.00000 - 8109 2017 8 21 10 53 16 370 4.8885 183.11163 538.50372 516.46687 -3.22759 0.00000 -1.79899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29115 0.19986 -1.00000 - 8110 2017 8 21 10 53 21 259 4.8885 183.10841 538.47833 516.44427 -3.22892 0.00000 -1.79932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29080 0.19986 -1.00000 - 8111 2017 8 21 10 53 26 147 4.8886 183.10519 538.45294 516.42166 -3.23024 0.00000 -1.79968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29044 0.19986 -1.00000 - 8112 2017 8 21 10 53 31 36 4.8886 183.10197 538.42755 516.39905 -3.23153 0.00000 -1.79999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29009 0.19986 -1.00000 - 8113 2017 8 21 10 53 35 924 4.8886 183.09875 538.40214 516.37645 -3.23278 0.00000 -1.80025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28973 0.19986 -1.00000 - 8114 2017 8 21 10 53 40 813 4.8886 183.09553 538.37674 516.35384 -3.23398 0.00000 -1.80054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28937 0.19986 -1.00000 - 8115 2017 8 21 10 53 45 702 4.8886 183.09232 538.35136 516.33125 -3.23514 0.00000 -1.80083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28902 0.19986 -1.00000 - 8116 2017 8 21 10 53 50 590 4.8886 183.08910 538.32599 516.30866 -3.23622 0.00000 -1.80114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28866 0.19986 -1.00000 - 8117 2017 8 21 10 53 55 479 4.8887 183.08589 538.30061 516.28607 -3.23723 0.00000 -1.80144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28831 0.19986 -1.00000 - 8118 2017 8 21 10 54 0 368 4.8887 183.08268 538.27522 516.26347 -3.23816 0.00000 -1.80166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28795 0.19986 -1.00000 - 8119 2017 8 21 10 54 5 256 4.8887 183.07948 538.24982 516.24087 -3.23901 0.00000 -1.80185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28760 0.19986 -1.00000 - 8120 2017 8 21 10 54 10 145 4.8887 183.07627 538.22444 516.21829 -3.23978 0.00000 -1.80205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28724 0.19986 -1.00000 - 8121 2017 8 21 10 54 15 34 4.8887 183.07306 538.19906 516.19570 -3.24068 0.00000 -1.80225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28689 0.19986 -1.00000 - 8122 2017 8 21 10 54 19 922 4.8887 183.06986 538.17369 516.17312 -3.24171 0.00000 -1.80245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28653 0.19986 -1.00000 - 8123 2017 8 21 10 54 24 811 4.8888 183.06666 538.14831 516.15054 -3.24255 0.00000 -1.80260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28617 0.19986 -1.00000 - 8124 2017 8 21 10 54 29 700 4.8888 183.06346 538.12292 516.12795 -3.24320 0.00000 -1.80267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28582 0.19986 -1.00000 - 8125 2017 8 21 10 54 34 589 4.8888 183.06026 538.09753 516.10537 -3.24368 0.00000 -1.80275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28546 0.19986 -1.00000 - 8126 2017 8 21 10 54 39 478 4.8888 183.05707 538.07216 516.08280 -3.24398 0.00000 -1.80282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28511 0.19985 -1.00000 - 8127 2017 8 21 10 54 44 366 4.8888 183.05387 538.04679 516.06023 -3.24412 0.00000 -1.80291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28475 0.19985 -1.00000 - 8128 2017 8 21 10 54 49 255 4.8888 183.05068 538.02144 516.03767 -3.24412 0.00000 -1.80300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28440 0.19985 -1.00000 - 8129 2017 8 21 10 54 54 144 4.8889 183.04749 537.99607 516.01510 -3.24400 0.00000 -1.80302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28404 0.19985 -1.00000 - 8130 2017 8 21 10 54 59 33 4.8889 183.04430 537.97069 515.99253 -3.24377 0.00000 -1.80298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28369 0.19985 -1.00000 - 8131 2017 8 21 10 55 3 922 4.8889 183.04111 537.94532 515.96997 -3.24346 0.00000 -1.80295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28333 0.19985 -1.00000 - 8132 2017 8 21 10 55 8 811 4.8889 183.03793 537.91998 515.94741 -3.24332 0.00000 -1.80293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28298 0.19985 -1.00000 - 8133 2017 8 21 10 55 13 700 4.8889 183.03474 537.89464 515.92486 -3.24329 0.00000 -1.80292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28262 0.19985 -1.00000 - 8134 2017 8 21 10 55 18 589 4.8890 183.03156 537.86930 515.90232 -3.24323 0.00000 -1.80291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28226 0.19985 -1.00000 - 8135 2017 8 21 10 55 23 478 4.8890 183.02838 537.84396 515.87976 -3.24314 0.00000 -1.80284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28191 0.19985 -1.00000 - 8136 2017 8 21 10 55 28 367 4.8890 183.02520 537.81861 515.85722 -3.24304 0.00000 -1.80272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28155 0.19985 -1.00000 - 8137 2017 8 21 10 55 33 256 4.8890 183.02203 537.79328 515.83468 -3.24292 0.00000 -1.80263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28120 0.19985 -1.00000 - 8138 2017 8 21 10 55 38 145 4.8890 183.01885 537.76796 515.81214 -3.24279 0.00000 -1.80256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28084 0.19985 -1.00000 - 8139 2017 8 21 10 55 43 34 4.8890 183.01568 537.74265 515.78961 -3.24265 0.00000 -1.80250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28049 0.19985 -1.00000 - 8140 2017 8 21 10 55 47 923 4.8891 183.01251 537.71734 515.76708 -3.24249 0.00000 -1.80240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28013 0.19985 -1.00000 - 8141 2017 8 21 10 55 52 812 4.8891 183.00934 537.69201 515.74454 -3.24230 0.00000 -1.80225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27978 0.19985 -1.00000 - 8142 2017 8 21 10 55 57 701 4.8891 183.00617 537.66670 515.72201 -3.24209 0.00000 -1.80210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27942 0.19985 -1.00000 - 8143 2017 8 21 10 56 2 590 4.8891 183.00300 537.64139 515.69949 -3.24186 0.00000 -1.80196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27906 0.19985 -1.00000 - 8144 2017 8 21 10 56 7 479 4.8891 182.99984 537.61610 515.67697 -3.24160 0.00000 -1.80185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27871 0.19985 -1.00000 - 8145 2017 8 21 10 56 12 368 4.8891 182.99667 537.59082 515.65445 -3.24131 0.00000 -1.80176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27835 0.19985 -1.00000 - 8146 2017 8 21 10 56 17 257 4.8892 182.99351 537.56552 515.63192 -3.24099 0.00000 -1.80161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27800 0.19985 -1.00000 - 8147 2017 8 21 10 56 22 147 4.8892 182.99035 537.54020 515.60940 -3.24062 0.00000 -1.80141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27764 0.19985 -1.00000 - 8148 2017 8 21 10 56 27 36 4.8892 182.98720 537.51490 515.58687 -3.24020 0.00000 -1.80122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27729 0.19985 -1.00000 - 8149 2017 8 21 10 56 31 925 4.8892 182.98404 537.48960 515.56436 -3.23973 0.00000 -1.80105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27693 0.19985 -1.00000 - 8150 2017 8 21 10 56 36 814 4.8892 182.98089 537.46432 515.54184 -3.23920 0.00000 -1.80091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27658 0.19985 -1.00000 - 8151 2017 8 21 10 56 41 704 4.8892 182.97773 537.43903 515.51932 -3.23861 0.00000 -1.80077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27622 0.19985 -1.00000 - 8152 2017 8 21 10 56 46 593 4.8893 182.97458 537.41372 515.49680 -3.23796 0.00000 -1.80056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27586 0.19985 -1.00000 - 8153 2017 8 21 10 56 51 482 4.8893 182.97143 537.38841 515.47427 -3.23725 0.00000 -1.80031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27551 0.19985 -1.00000 - 8154 2017 8 21 10 56 56 371 4.8893 182.96829 537.36310 515.45175 -3.23649 0.00000 -1.80008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27515 0.19984 -1.00000 - 8155 2017 8 21 10 57 1 261 4.8893 182.96514 537.33780 515.42923 -3.23566 0.00000 -1.79987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27480 0.19984 -1.00000 - 8156 2017 8 21 10 57 6 150 4.8893 182.96200 537.31250 515.40672 -3.23477 0.00000 -1.79969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27444 0.19984 -1.00000 - 8157 2017 8 21 10 57 11 39 4.8893 182.95886 537.28720 515.38419 -3.23383 0.00000 -1.79947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27409 0.19984 -1.00000 - 8158 2017 8 21 10 57 15 929 4.8894 182.95572 537.26187 515.36167 -3.23285 0.00000 -1.79918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27373 0.19984 -1.00000 - 8159 2017 8 21 10 57 20 818 4.8894 182.95258 537.23655 515.33914 -3.23183 0.00000 -1.79890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27338 0.19984 -1.00000 - 8160 2017 8 21 10 57 25 708 4.8894 182.94944 537.21123 515.31662 -3.23078 0.00000 -1.79863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27302 0.19984 -1.00000 - 8161 2017 8 21 10 57 30 597 4.8894 182.94631 537.18592 515.29411 -3.22969 0.00000 -1.79838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27266 0.19984 -1.00000 - 8162 2017 8 21 10 57 35 486 4.8894 182.94318 537.16062 515.27159 -3.22858 0.00000 -1.79815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27231 0.19984 -1.00000 - 8163 2017 8 21 10 57 40 376 4.8895 182.94004 537.13529 515.24907 -3.22745 0.00000 -1.79787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27195 0.19984 -1.00000 - 8164 2017 8 21 10 57 45 265 4.8895 182.93691 537.10996 515.22654 -3.22631 0.00000 -1.79753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27160 0.19984 -1.00000 - 8165 2017 8 21 10 57 50 155 4.8895 182.93379 537.08463 515.20402 -3.22519 0.00000 -1.79721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27124 0.19984 -1.00000 - 8166 2017 8 21 10 57 55 44 4.8895 182.93066 537.05931 515.18151 -3.22407 0.00000 -1.79692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27089 0.19984 -1.00000 - 8167 2017 8 21 10 57 59 934 4.8895 182.92754 537.03399 515.15900 -3.22296 0.00000 -1.79665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27053 0.19984 -1.00000 - 8168 2017 8 21 10 58 4 823 4.8895 182.92441 537.00868 515.13649 -3.22187 0.00000 -1.79641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27018 0.19984 -1.00000 - 8169 2017 8 21 10 58 9 713 4.8896 182.92129 536.98336 515.11397 -3.22081 0.00000 -1.79610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26982 0.19984 -1.00000 - 8170 2017 8 21 10 58 14 602 4.8896 182.91818 536.95802 515.09146 -3.21978 0.00000 -1.79575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26946 0.19984 -1.00000 - 8171 2017 8 21 10 58 19 492 4.8896 182.91506 536.93269 515.06895 -3.21880 0.00000 -1.79544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26911 0.19984 -1.00000 - 8172 2017 8 21 10 58 24 382 4.8896 182.91194 536.90738 515.04645 -3.21788 0.00000 -1.79516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26875 0.19984 -1.00000 - 8173 2017 8 21 10 58 29 271 4.8896 182.90883 536.88208 515.02395 -3.21701 0.00000 -1.79492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26840 0.19984 -1.00000 - 8174 2017 8 21 10 58 34 161 4.8896 182.90572 536.85677 515.00145 -3.21620 0.00000 -1.79467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26804 0.19984 -1.00000 - 8175 2017 8 21 10 58 39 51 4.8897 182.90261 536.83146 514.97895 -3.21545 0.00000 -1.79437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26769 0.19984 -1.00000 - 8176 2017 8 21 10 58 43 940 4.8897 182.89950 536.80614 514.95645 -3.21475 0.00000 -1.79408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26733 0.19984 -1.00000 - 8177 2017 8 21 10 58 48 830 4.8897 182.89639 536.78085 514.93396 -3.21412 0.00000 -1.79382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26697 0.19984 -1.00000 - 8178 2017 8 21 10 58 53 720 4.8897 182.89328 536.75556 514.91148 -3.21354 0.00000 -1.79360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26662 0.19984 -1.00000 - 8179 2017 8 21 10 58 58 609 4.8897 182.89018 536.73029 514.88901 -3.21301 0.00000 -1.79342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26626 0.19984 -1.00000 - 8180 2017 8 21 10 59 3 499 4.8897 182.88708 536.70500 514.86653 -3.21253 0.00000 -1.79320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26591 0.19984 -1.00000 - 8181 2017 8 21 10 59 8 389 4.8898 182.88398 536.67971 514.84405 -3.21209 0.00000 -1.79294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26555 0.19983 -1.00000 - 8182 2017 8 21 10 59 13 279 4.8898 182.88088 536.65444 514.82157 -3.21168 0.00000 -1.79272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26520 0.19983 -1.00000 - 8183 2017 8 21 10 59 18 168 4.8898 182.87778 536.62918 514.79911 -3.21128 0.00000 -1.79253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26484 0.19983 -1.00000 - 8184 2017 8 21 10 59 23 58 4.8898 182.87468 536.60393 514.77666 -3.21090 0.00000 -1.79238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26449 0.19983 -1.00000 - 8185 2017 8 21 10 59 27 948 4.8898 182.87159 536.57869 514.75420 -3.21052 0.00000 -1.79227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26413 0.19983 -1.00000 - 8186 2017 8 21 10 59 32 838 4.8898 182.86849 536.55344 514.73174 -3.21016 0.00000 -1.79210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26377 0.19983 -1.00000 - 8187 2017 8 21 10 59 37 728 4.8899 182.86540 536.52818 514.70928 -3.20978 0.00000 -1.79190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26342 0.19983 -1.00000 - 8188 2017 8 21 10 59 42 618 4.8899 182.86231 536.50294 514.68683 -3.20940 0.00000 -1.79175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26306 0.19983 -1.00000 - 8189 2017 8 21 10 59 47 508 4.8899 182.85922 536.47772 514.66439 -3.20901 0.00000 -1.79162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26271 0.19983 -1.00000 - 8190 2017 8 21 10 59 52 398 4.8899 182.85613 536.45251 514.64196 -3.20860 0.00000 -1.79154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26235 0.19983 -1.00000 - 8191 2017 8 21 10 59 57 287 4.8899 182.85304 536.42729 514.61952 -3.20817 0.00000 -1.79145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26200 0.19983 -1.00000 - 8192 2017 8 21 11 0 2 177 4.8900 182.84995 536.40207 514.59708 -3.20772 0.00000 -1.79131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26164 0.19983 -1.00000 - 8193 2017 8 21 11 0 7 67 4.8900 182.84687 536.37684 514.57464 -3.20727 0.00000 -1.79117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26129 0.19983 -1.00000 - 8194 2017 8 21 11 0 11 957 4.8900 182.84378 536.35163 514.55221 -3.20681 0.00000 -1.79107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26093 0.19983 -1.00000 - 8195 2017 8 21 11 0 16 847 4.8900 182.84070 536.32643 514.52978 -3.20633 0.00000 -1.79099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26057 0.19983 -1.00000 - 8196 2017 8 21 11 0 21 737 4.8900 182.83762 536.30124 514.50736 -3.20584 0.00000 -1.79095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26022 0.19983 -1.00000 - 8197 2017 8 21 11 0 26 627 4.8900 182.83453 536.27604 514.48493 -3.20534 0.00000 -1.79086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25986 0.19983 -1.00000 - 8198 2017 8 21 11 0 31 518 4.8901 182.83145 536.25083 514.46250 -3.20484 0.00000 -1.79074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25951 0.19983 -1.00000 - 8199 2017 8 21 11 0 36 408 4.8901 182.82837 536.22562 514.44008 -3.20434 0.00000 -1.79064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25915 0.19983 -1.00000 - 8200 2017 8 21 11 0 41 298 4.8901 182.82529 536.20043 514.41766 -3.20385 0.00000 -1.79056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25880 0.19983 -1.00000 - 8201 2017 8 21 11 0 46 188 4.8901 182.82221 536.17524 514.39524 -3.20338 0.00000 -1.79052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25844 0.19983 -1.00000 - 8202 2017 8 21 11 0 51 78 4.8901 182.81912 536.15006 514.37283 -3.20292 0.00000 -1.79051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25808 0.19983 -1.00000 - 8203 2017 8 21 11 0 55 968 4.8901 182.81604 536.12486 514.35041 -3.20249 0.00000 -1.79044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25773 0.19983 -1.00000 - 8204 2017 8 21 11 1 0 858 4.8902 182.81296 536.09966 514.32799 -3.20208 0.00000 -1.79034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25737 0.19983 -1.00000 - 8205 2017 8 21 11 1 5 748 4.8902 182.80987 536.07446 514.30557 -3.20170 0.00000 -1.79028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25702 0.19983 -1.00000 - 8206 2017 8 21 11 1 10 639 4.8902 182.80679 536.04927 514.28317 -3.20137 0.00000 -1.79025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25666 0.19983 -1.00000 - 8207 2017 8 21 11 1 15 529 4.8902 182.80371 536.02410 514.26076 -3.20110 0.00000 -1.79026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25631 0.19983 -1.00000 - 8208 2017 8 21 11 1 20 419 4.8902 182.80062 535.99892 514.23835 -3.20089 0.00000 -1.79027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25595 0.19983 -1.00000 - 8209 2017 8 21 11 1 25 309 4.8902 182.79754 535.97372 514.21594 -3.20074 0.00000 -1.79023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25560 0.19982 -1.00000 - 8210 2017 8 21 11 1 30 200 4.8903 182.79445 535.94853 514.19354 -3.20066 0.00000 -1.79020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25524 0.19982 -1.00000 - 8211 2017 8 21 11 1 35 90 4.8903 182.79136 535.92335 514.17114 -3.20064 0.00000 -1.79021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25488 0.19982 -1.00000 - 8212 2017 8 21 11 1 39 980 4.8903 182.78828 535.89819 514.14875 -3.20070 0.00000 -1.79025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25453 0.19982 -1.00000 - 8213 2017 8 21 11 1 44 870 4.8903 182.78519 535.87303 514.12636 -3.20085 0.00000 -1.79033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25417 0.19982 -1.00000 - 8214 2017 8 21 11 1 49 761 4.8903 182.78210 535.84786 514.10397 -3.20108 0.00000 -1.79039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25382 0.19982 -1.00000 - 8215 2017 8 21 11 1 54 651 4.8904 182.77901 535.82269 514.08157 -3.20137 0.00000 -1.79041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25346 0.19982 -1.00000 - 8216 2017 8 21 11 1 59 542 4.8904 182.77592 535.79752 514.05919 -3.20175 0.00000 -1.79047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25311 0.19982 -1.00000 - 8217 2017 8 21 11 2 4 432 4.8904 182.77283 535.77238 514.03681 -3.20218 0.00000 -1.79056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25275 0.19982 -1.00000 - 8218 2017 8 21 11 2 9 322 4.8904 182.76974 535.74724 514.01444 -3.20269 0.00000 -1.79069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25239 0.19982 -1.00000 - 8219 2017 8 21 11 2 14 213 4.8904 182.76664 535.72211 513.99207 -3.20326 0.00000 -1.79085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25204 0.19982 -1.00000 - 8220 2017 8 21 11 2 19 103 4.8904 182.76355 535.69698 513.96970 -3.20389 0.00000 -1.79097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25168 0.19982 -1.00000 - 8221 2017 8 21 11 2 23 994 4.8905 182.76046 535.67184 513.94734 -3.20457 0.00000 -1.79106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25133 0.19982 -1.00000 - 8222 2017 8 21 11 2 28 884 4.8905 182.75736 535.64671 513.92498 -3.20529 0.00000 -1.79120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25097 0.19982 -1.00000 - 8223 2017 8 21 11 2 33 775 4.8905 182.75426 535.62160 513.90263 -3.20604 0.00000 -1.79138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25062 0.19982 -1.00000 - 8224 2017 8 21 11 2 38 665 4.8905 182.75117 535.59651 513.88028 -3.20683 0.00000 -1.79158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25026 0.19982 -1.00000 - 8225 2017 8 21 11 2 43 556 4.8905 182.74807 535.57141 513.85793 -3.20765 0.00000 -1.79178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24991 0.19982 -1.00000 - 8226 2017 8 21 11 2 48 446 4.8906 182.74497 535.54630 513.83558 -3.20848 0.00000 -1.79193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24955 0.19982 -1.00000 - 8227 2017 8 21 11 2 53 337 4.8906 182.74187 535.52120 513.81324 -3.20933 0.00000 -1.79209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24919 0.19982 -1.00000 - 8228 2017 8 21 11 2 58 227 4.8906 182.73877 535.49612 513.79091 -3.21019 0.00000 -1.79228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24884 0.19982 -1.00000 - 8229 2017 8 21 11 3 3 118 4.8906 182.73566 535.47105 513.76858 -3.21104 0.00000 -1.79249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24848 0.19982 -1.00000 - 8230 2017 8 21 11 3 8 9 4.8906 182.73256 535.44599 513.74625 -3.21189 0.00000 -1.79273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24813 0.19982 -1.00000 - 8231 2017 8 21 11 3 12 899 4.8906 182.72946 535.42093 513.72392 -3.21273 0.00000 -1.79293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24777 0.19982 -1.00000 - 8232 2017 8 21 11 3 17 790 4.8907 182.72635 535.39585 513.70159 -3.21354 0.00000 -1.79308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24742 0.19982 -1.00000 - 8233 2017 8 21 11 3 22 681 4.8907 182.72324 535.37079 513.67927 -3.21433 0.00000 -1.79326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24706 0.19982 -1.00000 - 8234 2017 8 21 11 3 27 571 4.8907 182.72013 535.34574 513.65695 -3.21508 0.00000 -1.79345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24670 0.19982 -1.00000 - 8235 2017 8 21 11 3 32 462 4.8907 182.71703 535.32069 513.63464 -3.21578 0.00000 -1.79365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24635 0.19982 -1.00000 - 8236 2017 8 21 11 3 37 353 4.8907 182.71392 535.29566 513.61233 -3.21643 0.00000 -1.79387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24599 0.19982 -1.00000 - 8237 2017 8 21 11 3 42 244 4.8908 182.71081 535.27061 513.59001 -3.21702 0.00000 -1.79402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24564 0.19981 -1.00000 - 8238 2017 8 21 11 3 47 134 4.8908 182.70770 535.24555 513.56769 -3.21755 0.00000 -1.79413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24528 0.19981 -1.00000 - 8239 2017 8 21 11 3 52 25 4.8908 182.70459 535.22050 513.54538 -3.21802 0.00000 -1.79428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24493 0.19981 -1.00000 - 8240 2017 8 21 11 3 56 916 4.8908 182.70148 535.19546 513.52307 -3.21843 0.00000 -1.79442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24457 0.19981 -1.00000 - 8241 2017 8 21 11 4 1 807 4.8908 182.69837 535.17043 513.50076 -3.21877 0.00000 -1.79458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24421 0.19981 -1.00000 - 8242 2017 8 21 11 4 6 698 4.8908 182.69526 535.14539 513.47845 -3.21905 0.00000 -1.79471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24386 0.19981 -1.00000 - 8243 2017 8 21 11 4 11 588 4.8909 182.69215 535.12033 513.45613 -3.21926 0.00000 -1.79478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24350 0.19981 -1.00000 - 8244 2017 8 21 11 4 16 479 4.8909 182.68904 535.09527 513.43381 -3.21940 0.00000 -1.79484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24315 0.19981 -1.00000 - 8245 2017 8 21 11 4 21 370 4.8909 182.68593 535.07022 513.41150 -3.21949 0.00000 -1.79492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24279 0.19981 -1.00000 - 8246 2017 8 21 11 4 26 261 4.8909 182.68282 535.04517 513.38919 -3.21953 0.00000 -1.79500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24244 0.19981 -1.00000 - 8247 2017 8 21 11 4 31 152 4.8909 182.67972 535.02013 513.36688 -3.21952 0.00000 -1.79509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24208 0.19981 -1.00000 - 8248 2017 8 21 11 4 36 43 4.8910 182.67661 534.99507 513.34456 -3.21947 0.00000 -1.79514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24172 0.19981 -1.00000 - 8249 2017 8 21 11 4 40 934 4.8910 182.67351 534.96999 513.32224 -3.21938 0.00000 -1.79513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24137 0.19981 -1.00000 - 8250 2017 8 21 11 4 45 825 4.8910 182.67041 534.94491 513.29992 -3.21924 0.00000 -1.79514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24101 0.19981 -1.00000 - 8251 2017 8 21 11 4 50 716 4.8910 182.66730 534.91984 513.27761 -3.21908 0.00000 -1.79516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24066 0.19981 -1.00000 - 8252 2017 8 21 11 4 55 607 4.8910 182.66420 534.89477 513.25529 -3.21889 0.00000 -1.79519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24030 0.19981 -1.00000 - 8253 2017 8 21 11 5 0 498 4.8910 182.66111 534.86970 513.23297 -3.21868 0.00000 -1.79522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23995 0.19981 -1.00000 - 8254 2017 8 21 11 5 5 389 4.8911 182.65801 534.84461 513.21065 -3.21845 0.00000 -1.79519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23959 0.19981 -1.00000 - 8255 2017 8 21 11 5 10 280 4.8911 182.65492 534.81951 513.18832 -3.21820 0.00000 -1.79513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23924 0.19981 -1.00000 - 8256 2017 8 21 11 5 15 171 4.8911 182.65182 534.79441 513.16600 -3.21795 0.00000 -1.79511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23888 0.19981 -1.00000 - 8257 2017 8 21 11 5 20 62 4.8911 182.64873 534.76932 513.14369 -3.21768 0.00000 -1.79509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23852 0.19981 -1.00000 - 8258 2017 8 21 11 5 24 954 4.8911 182.64564 534.74423 513.12137 -3.21740 0.00000 -1.79509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23817 0.19981 -1.00000 - 8259 2017 8 21 11 5 29 845 4.8912 182.64255 534.71913 513.09905 -3.21713 0.00000 -1.79506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23781 0.19981 -1.00000 - 8260 2017 8 21 11 5 34 736 4.8912 182.63947 534.69401 513.07673 -3.21686 0.00000 -1.79499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23746 0.19981 -1.00000 - 8261 2017 8 21 11 5 39 627 4.8912 182.63638 534.66889 513.05441 -3.21659 0.00000 -1.79492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23710 0.19981 -1.00000 - 8262 2017 8 21 11 5 44 518 4.8912 182.63330 534.64378 513.03209 -3.21633 0.00000 -1.79488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23675 0.19981 -1.00000 - 8263 2017 8 21 11 5 49 410 4.8912 182.63022 534.61868 513.00979 -3.21608 0.00000 -1.79486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23639 0.19981 -1.00000 - 8264 2017 8 21 11 5 54 301 4.8913 182.62715 534.59359 512.98748 -3.21583 0.00000 -1.79485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23603 0.19981 -1.00000 - 8265 2017 8 21 11 5 59 192 4.8913 182.62407 534.56848 512.96518 -3.21557 0.00000 -1.79480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23568 0.19980 -1.00000 - 8266 2017 8 21 11 6 4 83 4.8913 182.62100 534.54337 512.94288 -3.21531 0.00000 -1.79471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23532 0.19980 -1.00000 - 8267 2017 8 21 11 6 8 975 4.8913 182.61793 534.51827 512.92059 -3.21506 0.00000 -1.79466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23497 0.19980 -1.00000 - 8268 2017 8 21 11 6 13 866 4.8913 182.61486 534.49319 512.89830 -3.21481 0.00000 -1.79461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23461 0.19980 -1.00000 - 8269 2017 8 21 11 6 18 757 4.8913 182.61179 534.46812 512.87603 -3.21455 0.00000 -1.79459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23426 0.19980 -1.00000 - 8270 2017 8 21 11 6 23 649 4.8914 182.60873 534.44306 512.85376 -3.21428 0.00000 -1.79455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23390 0.19980 -1.00000 - 8271 2017 8 21 11 6 28 540 4.8914 182.60567 534.41799 512.83149 -3.21399 0.00000 -1.79446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23354 0.19980 -1.00000 - 8272 2017 8 21 11 6 33 432 4.8914 182.60261 534.39293 512.80924 -3.21367 0.00000 -1.79437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23319 0.19980 -1.00000 - 8273 2017 8 21 11 6 38 323 4.8914 182.59955 534.36789 512.78699 -3.21333 0.00000 -1.79431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23283 0.19980 -1.00000 - 8274 2017 8 21 11 6 43 214 4.8914 182.59650 534.34288 512.76476 -3.21297 0.00000 -1.79425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23248 0.19980 -1.00000 - 8275 2017 8 21 11 6 48 106 4.8915 182.59345 534.31788 512.74254 -3.21258 0.00000 -1.79421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23212 0.19980 -1.00000 - 8276 2017 8 21 11 6 52 997 4.8915 182.59040 534.29289 512.72032 -3.21215 0.00000 -1.79413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23177 0.19980 -1.00000 - 8277 2017 8 21 11 6 57 889 4.8915 182.58736 534.26791 512.69811 -3.21167 0.00000 -1.79400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23141 0.19980 -1.00000 - 8278 2017 8 21 11 7 2 780 4.8915 182.58431 534.24295 512.67592 -3.21117 0.00000 -1.79389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23105 0.19980 -1.00000 - 8279 2017 8 21 11 7 7 672 4.8915 182.58127 534.21802 512.65374 -3.21062 0.00000 -1.79378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23070 0.19980 -1.00000 - 8280 2017 8 21 11 7 12 563 4.8915 182.57824 534.19311 512.63157 -3.21005 0.00000 -1.79369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23034 0.19980 -1.00000 - 8281 2017 8 21 11 7 17 455 4.8916 182.57520 534.16822 512.60941 -3.20944 0.00000 -1.79360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22999 0.19980 -1.00000 - 8282 2017 8 21 11 7 22 347 4.8916 182.57217 534.14334 512.58725 -3.20879 0.00000 -1.79345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22963 0.19980 -1.00000 - 8283 2017 8 21 11 7 27 238 4.8916 182.56914 534.11846 512.56511 -3.20810 0.00000 -1.79326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22928 0.19980 -1.00000 - 8284 2017 8 21 11 7 32 130 4.8916 182.56611 534.09362 512.54297 -3.20738 0.00000 -1.79309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22892 0.19980 -1.00000 - 8285 2017 8 21 11 7 37 21 4.8916 182.56309 534.06880 512.52085 -3.20662 0.00000 -1.79293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22856 0.19980 -1.00000 - 8286 2017 8 21 11 7 41 913 4.8917 182.56007 534.04399 512.49873 -3.20583 0.00000 -1.79277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22821 0.19980 -1.00000 - 8287 2017 8 21 11 7 46 805 4.8917 182.55705 534.01920 512.47662 -3.20500 0.00000 -1.79259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22785 0.19980 -1.00000 - 8288 2017 8 21 11 7 51 696 4.8917 182.55403 533.99440 512.45450 -3.20416 0.00000 -1.79235 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22750 0.19980 -1.00000 - 8289 2017 8 21 11 7 56 588 4.8917 182.55102 533.96961 512.43240 -3.20331 0.00000 -1.79211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22714 0.19980 -1.00000 - 8290 2017 8 21 11 8 1 480 4.8917 182.54801 533.94485 512.41030 -3.20244 0.00000 -1.79189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22679 0.19980 -1.00000 - 8291 2017 8 21 11 8 6 372 4.8917 182.54500 533.92010 512.38820 -3.20156 0.00000 -1.79167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22643 0.19980 -1.00000 - 8292 2017 8 21 11 8 11 263 4.8918 182.54199 533.89535 512.36610 -3.20068 0.00000 -1.79146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22607 0.19979 -1.00000 - 8293 2017 8 21 11 8 16 155 4.8918 182.53899 533.87060 512.34400 -3.19981 0.00000 -1.79121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22572 0.19979 -1.00000 - 8294 2017 8 21 11 8 21 47 4.8918 182.53599 533.84583 512.32190 -3.19896 0.00000 -1.79091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22536 0.19979 -1.00000 - 8295 2017 8 21 11 8 25 939 4.8918 182.53299 533.82106 512.29979 -3.19812 0.00000 -1.79064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22501 0.19979 -1.00000 - 8296 2017 8 21 11 8 30 830 4.8918 182.52999 533.79630 512.27769 -3.19732 0.00000 -1.79039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22465 0.19979 -1.00000 - 8297 2017 8 21 11 8 35 722 4.8918 182.52700 533.77154 512.25559 -3.19654 0.00000 -1.79014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22429 0.19979 -1.00000 - 8298 2017 8 21 11 8 40 614 4.8919 182.52401 533.74677 512.23347 -3.19581 0.00000 -1.78989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22394 0.19979 -1.00000 - 8299 2017 8 21 11 8 45 506 4.8919 182.52102 533.72198 512.21135 -3.19513 0.00000 -1.78960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22358 0.19979 -1.00000 - 8300 2017 8 21 11 8 50 398 4.8919 182.51803 533.69719 512.18923 -3.19451 0.00000 -1.78931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22323 0.19979 -1.00000 - 8301 2017 8 21 11 8 55 290 4.8919 182.51505 533.67240 512.16711 -3.19395 0.00000 -1.78905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22287 0.19979 -1.00000 - 8302 2017 8 21 11 9 0 182 4.8919 182.51207 533.64761 512.14499 -3.19347 0.00000 -1.78880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22252 0.19979 -1.00000 - 8303 2017 8 21 11 9 5 74 4.8920 182.50909 533.62283 512.12286 -3.19306 0.00000 -1.78858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22216 0.19979 -1.00000 - 8304 2017 8 21 11 9 9 966 4.8920 182.50611 533.59802 512.10072 -3.19273 0.00000 -1.78833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22180 0.19979 -1.00000 - 8305 2017 8 21 11 9 14 858 4.8920 182.50314 533.57319 512.07858 -3.19248 0.00000 -1.78806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22145 0.19979 -1.00000 - 8306 2017 8 21 11 9 19 750 4.8920 182.50017 533.54835 512.05644 -3.19232 0.00000 -1.78782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22109 0.19979 -1.00000 - 8307 2017 8 21 11 9 24 642 4.8920 182.49720 533.52353 512.03429 -3.19227 0.00000 -1.78760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22074 0.19979 -1.00000 - 8308 2017 8 21 11 9 29 534 4.8920 182.49423 533.49869 512.01215 -3.19230 0.00000 -1.78741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22038 0.19979 -1.00000 - 8309 2017 8 21 11 9 34 426 4.8921 182.49127 533.47386 511.98999 -3.19244 0.00000 -1.78724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22003 0.19979 -1.00000 - 8310 2017 8 21 11 9 39 318 4.8921 182.48831 533.44900 511.96783 -3.19266 0.00000 -1.78704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21967 0.19979 -1.00000 - 8311 2017 8 21 11 9 44 210 4.8921 182.48535 533.42413 511.94567 -3.19297 0.00000 -1.78682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21931 0.19979 -1.00000 - 8312 2017 8 21 11 9 49 102 4.8921 182.48240 533.39927 511.92350 -3.19338 0.00000 -1.78665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21896 0.19979 -1.00000 - 8313 2017 8 21 11 9 53 994 4.8921 182.47944 533.37441 511.90134 -3.19388 0.00000 -1.78650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21860 0.19979 -1.00000 - 8314 2017 8 21 11 9 58 886 4.8922 182.47649 533.34954 511.87916 -3.19447 0.00000 -1.78638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21825 0.19979 -1.00000 - 8315 2017 8 21 11 10 3 779 4.8922 182.47354 533.32466 511.85698 -3.19514 0.00000 -1.78626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21789 0.19979 -1.00000 - 8316 2017 8 21 11 10 8 671 4.8922 182.47060 533.29981 511.83480 -3.19589 0.00000 -1.78610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21754 0.19979 -1.00000 - 8317 2017 8 21 11 10 13 563 4.8922 182.46766 533.27491 511.81261 -3.19670 0.00000 -1.78597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21718 0.19979 -1.00000 - 8318 2017 8 21 11 10 18 455 4.8922 182.46472 533.25001 511.79042 -3.19756 0.00000 -1.78586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21682 0.19979 -1.00000 - 8319 2017 8 21 11 10 23 348 4.8922 182.46178 533.22511 511.76822 -3.19846 0.00000 -1.78578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21647 0.19979 -1.00000 - 8320 2017 8 21 11 10 28 240 4.8923 182.45884 533.20019 511.74602 -3.19940 0.00000 -1.78571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21611 0.19978 -1.00000 - 8321 2017 8 21 11 10 33 132 4.8923 182.45591 533.17526 511.72380 -3.20035 0.00000 -1.78563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21576 0.19978 -1.00000 - 8322 2017 8 21 11 10 38 24 4.8923 182.45298 533.15030 511.70158 -3.20131 0.00000 -1.78552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21540 0.19978 -1.00000 - 8323 2017 8 21 11 10 42 917 4.8923 182.45005 533.12533 511.67935 -3.20226 0.00000 -1.78545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21505 0.19978 -1.00000 - 8324 2017 8 21 11 10 47 809 4.8923 182.44713 533.10036 511.65711 -3.20319 0.00000 -1.78538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21469 0.19978 -1.00000 - 8325 2017 8 21 11 10 52 701 4.8923 182.44420 533.07536 511.63487 -3.20407 0.00000 -1.78533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21433 0.19978 -1.00000 - 8326 2017 8 21 11 10 57 594 4.8924 182.44128 533.05035 511.61261 -3.20490 0.00000 -1.78528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21398 0.19978 -1.00000 - 8327 2017 8 21 11 11 2 486 4.8924 182.43836 533.02530 511.59035 -3.20564 0.00000 -1.78518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21362 0.19978 -1.00000 - 8328 2017 8 21 11 11 7 378 4.8924 182.43545 533.00030 511.56807 -3.20628 0.00000 -1.78509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21327 0.19978 -1.00000 - 8329 2017 8 21 11 11 12 271 4.8924 182.43253 532.97522 511.54580 -3.20681 0.00000 -1.78502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21291 0.19978 -1.00000 - 8330 2017 8 21 11 11 17 163 4.8924 182.42962 532.95013 511.52351 -3.20721 0.00000 -1.78496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21255 0.19978 -1.00000 - 8331 2017 8 21 11 11 22 56 4.8924 182.42672 532.92502 511.50122 -3.20746 0.00000 -1.78490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21220 0.19978 -1.00000 - 8332 2017 8 21 11 11 26 948 4.8925 182.42381 532.89988 511.47892 -3.20754 0.00000 -1.78482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21184 0.19978 -1.00000 - 8333 2017 8 21 11 11 31 841 4.8925 182.42091 532.87472 511.45662 -3.20744 0.00000 -1.78469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21149 0.19978 -1.00000 - 8334 2017 8 21 11 11 36 733 4.8925 182.41801 532.84954 511.43431 -3.20714 0.00000 -1.78458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21113 0.19978 -1.00000 - 8335 2017 8 21 11 11 41 626 4.8925 182.41511 532.82437 511.41201 -3.20664 0.00000 -1.78447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21078 0.19978 -1.00000 - 8336 2017 8 21 11 11 46 518 4.8925 182.41221 532.79919 511.38972 -3.20593 0.00000 -1.78436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21042 0.19978 -1.00000 - 8337 2017 8 21 11 11 51 411 4.8926 182.40932 532.77400 511.36742 -3.20502 0.00000 -1.78424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21006 0.19978 -1.00000 - 8338 2017 8 21 11 11 56 303 4.8926 182.40643 532.74880 511.34512 -3.20439 0.00000 -1.78406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20971 0.19978 -1.00000 - 8339 2017 8 21 11 12 1 196 4.8926 182.40354 532.72360 511.32284 -3.20362 0.00000 -1.78387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20935 0.19978 -1.00000 - 8340 2017 8 21 11 12 6 89 4.8926 182.40065 532.69850 511.30057 -3.20255 0.00000 -1.78369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20900 0.19978 -1.00000 - 8341 2017 8 21 11 12 10 981 4.8926 182.39777 532.67334 511.27832 -3.20119 0.00000 -1.78351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20864 0.19978 -1.00000 - 8342 2017 8 21 11 12 15 874 4.8926 182.39488 532.64819 511.25608 -3.19952 0.00000 -1.78333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20829 0.19978 -1.00000 - 8343 2017 8 21 11 12 20 766 4.8927 182.39201 532.62306 511.23385 -3.19754 0.00000 -1.78312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20793 0.19978 -1.00000 - 8344 2017 8 21 11 12 25 659 4.8927 182.38913 532.59794 511.21164 -3.19528 0.00000 -1.78285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20757 0.19978 -1.00000 - 8345 2017 8 21 11 12 30 552 4.8927 182.38625 532.57286 511.18945 -3.19275 0.00000 -1.78260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20722 0.19978 -1.00000 - 8346 2017 8 21 11 12 35 445 4.8927 182.38338 532.54781 511.16728 -3.18997 0.00000 -1.78234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20686 0.19978 -1.00000 - 8347 2017 8 21 11 12 40 337 4.8927 182.38051 532.52280 511.14514 -3.18696 0.00000 -1.78209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20651 0.19978 -1.00000 - 8348 2017 8 21 11 12 45 230 4.8927 182.37764 532.49783 511.12301 -3.18374 0.00000 -1.78184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20615 0.19977 -1.00000 - 8349 2017 8 21 11 12 50 123 4.8928 182.37478 532.47289 511.10091 -3.18034 0.00000 -1.78155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20579 0.19977 -1.00000 - 8350 2017 8 21 11 12 55 16 4.8928 182.37191 532.44799 511.07884 -3.17679 0.00000 -1.78124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20544 0.19977 -1.00000 - 8351 2017 8 21 11 12 59 908 4.8928 182.36905 532.42313 511.05679 -3.17340 0.00000 -1.78095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20508 0.19977 -1.00000 - 8352 2017 8 21 11 13 4 801 4.8928 182.36619 532.39833 511.03476 -3.17055 0.00000 -1.78067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20473 0.19977 -1.00000 - 8353 2017 8 21 11 13 9 694 4.8928 182.36333 532.37369 511.01277 -3.16775 0.00000 -1.78041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20437 0.19977 -1.00000 - 8354 2017 8 21 11 13 14 587 4.8928 182.36048 532.34897 510.99078 -3.16503 0.00000 -1.78015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20402 0.19977 -1.00000 - 8355 2017 8 21 11 13 19 480 4.8929 182.35763 532.32428 510.96882 -3.16240 0.00000 -1.77986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20366 0.19977 -1.00000 - 8356 2017 8 21 11 13 24 373 4.8929 182.35478 532.29964 510.94688 -3.15990 0.00000 -1.77959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20330 0.19977 -1.00000 - 8357 2017 8 21 11 13 29 266 4.8929 182.35193 532.27504 510.92496 -3.15752 0.00000 -1.77936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20295 0.19977 -1.00000 - 8358 2017 8 21 11 13 34 158 4.8929 182.34908 532.25048 510.90306 -3.15530 0.00000 -1.77916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20259 0.19977 -1.00000 - 8359 2017 8 21 11 13 39 51 4.8929 182.34624 532.22596 510.88117 -3.15325 0.00000 -1.77899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20224 0.19977 -1.00000 - 8360 2017 8 21 11 13 43 944 4.8930 182.34340 532.20146 510.85929 -3.15138 0.00000 -1.77883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20188 0.19977 -1.00000 - 8361 2017 8 21 11 13 48 837 4.8930 182.34056 532.17697 510.83742 -3.14971 0.00000 -1.77867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20152 0.19977 -1.00000 - 8362 2017 8 21 11 13 53 730 4.8930 182.33772 532.15252 510.81557 -3.14823 0.00000 -1.77856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20117 0.19977 -1.00000 - 8363 2017 8 21 11 13 58 623 4.8930 182.33489 532.12810 510.79372 -3.14695 0.00000 -1.77848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20081 0.19977 -1.00000 - 8364 2017 8 21 11 14 3 516 4.8930 182.33205 532.10369 510.77188 -3.14586 0.00000 -1.77846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20046 0.19977 -1.00000 - 8365 2017 8 21 11 14 8 409 4.8930 182.32922 532.07942 510.75004 -3.14497 0.00000 -1.77846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20010 0.19977 -1.00000 - 8366 2017 8 21 11 14 13 302 4.8931 182.32639 532.05502 510.72820 -3.14425 0.00000 -1.77847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19975 0.19977 -1.00000 - 8367 2017 8 21 11 14 18 195 4.8931 182.32357 532.03063 510.70636 -3.14373 0.00000 -1.77851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19939 0.19977 -1.00000 - 8368 2017 8 21 11 14 23 89 4.8931 182.32074 532.00624 510.68452 -3.14338 0.00000 -1.77861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19903 0.19977 -1.00000 - 8369 2017 8 21 11 14 27 982 4.8931 182.31792 531.98186 510.66268 -3.14323 0.00000 -1.77876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19868 0.19977 -1.00000 - 8370 2017 8 21 11 14 32 875 4.8931 182.31510 531.95748 510.64084 -3.14325 0.00000 -1.77895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19832 0.19977 -1.00000 - 8371 2017 8 21 11 14 37 768 4.8931 182.31229 531.93308 510.61898 -3.14346 0.00000 -1.77917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19797 0.19977 -1.00000 - 8372 2017 8 21 11 14 42 661 4.8932 182.30947 531.90867 510.59712 -3.14386 0.00000 -1.77940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19761 0.19977 -1.00000 - 8373 2017 8 21 11 14 47 554 4.8932 182.30666 531.88425 510.57525 -3.14446 0.00000 -1.77968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19725 0.19977 -1.00000 - 8374 2017 8 21 11 14 52 447 4.8932 182.30385 531.85982 510.55337 -3.14526 0.00000 -1.78000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19690 0.19977 -1.00000 - 8375 2017 8 21 11 14 57 341 4.8932 182.30104 531.83537 510.53149 -3.14628 0.00000 -1.78037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19654 0.19977 -1.00000 - 8376 2017 8 21 11 15 2 234 4.8932 182.29823 531.81091 510.50959 -3.14754 0.00000 -1.78077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19619 0.19976 -1.00000 - 8377 2017 8 21 11 15 7 127 4.8932 182.29542 531.78656 510.48770 -3.14905 0.00000 -1.78117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19583 0.19976 -1.00000 - 8378 2017 8 21 11 15 12 20 4.8933 182.29262 531.76205 510.46578 -3.15081 0.00000 -1.78159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19548 0.19976 -1.00000 - 8379 2017 8 21 11 15 16 914 4.8933 182.28982 531.73753 510.44386 -3.15285 0.00000 -1.78206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19512 0.19976 -1.00000 - 8380 2017 8 21 11 15 21 807 4.8933 182.28702 531.71300 510.42192 -3.15515 0.00000 -1.78257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19476 0.19976 -1.00000 - 8381 2017 8 21 11 15 26 700 4.8933 182.28422 531.68845 510.39998 -3.15774 0.00000 -1.78311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19441 0.19976 -1.00000 - 8382 2017 8 21 11 15 31 594 4.8933 182.28143 531.66387 510.37803 -3.16062 0.00000 -1.78368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19405 0.19976 -1.00000 - 8383 2017 8 21 11 15 36 487 4.8933 182.27863 531.63927 510.35607 -3.16380 0.00000 -1.78423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19370 0.19976 -1.00000 - 8384 2017 8 21 11 15 41 380 4.8934 182.27584 531.61465 510.33410 -3.16730 0.00000 -1.78481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19334 0.19976 -1.00000 - 8385 2017 8 21 11 15 46 274 4.8934 182.27305 531.59002 510.31212 -3.17112 0.00000 -1.78543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19298 0.19976 -1.00000 - 8386 2017 8 21 11 15 51 167 4.8934 182.27026 531.56538 510.29014 -3.17523 0.00000 -1.78608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19263 0.19976 -1.00000 - 8387 2017 8 21 11 15 56 60 4.8934 182.26748 531.54073 510.26816 -3.17964 0.00000 -1.78675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19227 0.19976 -1.00000 - 8388 2017 8 21 11 16 0 954 4.8934 182.26469 531.51606 510.24616 -3.18433 0.00000 -1.78741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19192 0.19976 -1.00000 - 8389 2017 8 21 11 16 5 847 4.8934 182.26191 531.49151 510.22417 -3.18929 0.00000 -1.78806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19156 0.19976 -1.00000 - 8390 2017 8 21 11 16 10 741 4.8935 182.25913 531.46682 510.20218 -3.19447 0.00000 -1.78875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19121 0.19976 -1.00000 - 8391 2017 8 21 11 16 15 634 4.8935 182.25635 531.44213 510.18018 -3.19987 0.00000 -1.78945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19085 0.19976 -1.00000 - 8392 2017 8 21 11 16 20 528 4.8935 182.25357 531.41743 510.15817 -3.20543 0.00000 -1.79017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19049 0.19976 -1.00000 - 8393 2017 8 21 11 16 25 421 4.8935 182.25080 531.39272 510.13617 -3.21111 0.00000 -1.79088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19014 0.19976 -1.00000 - 8394 2017 8 21 11 16 30 315 4.8935 182.24803 531.36800 510.11416 -3.21687 0.00000 -1.79155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18978 0.19976 -1.00000 - 8395 2017 8 21 11 16 35 208 4.8935 182.24526 531.34327 510.09215 -3.22264 0.00000 -1.79223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18943 0.19976 -1.00000 - 8396 2017 8 21 11 16 40 102 4.8936 182.24249 531.31855 510.07014 -3.22838 0.00000 -1.79289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18907 0.19976 -1.00000 - 8397 2017 8 21 11 16 44 995 4.8936 182.23972 531.29383 510.04814 -3.23400 0.00000 -1.79355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18871 0.19976 -1.00000 - 8398 2017 8 21 11 16 49 889 4.8936 182.23695 531.26911 510.02613 -3.23945 0.00000 -1.79419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18836 0.19976 -1.00000 - 8399 2017 8 21 11 16 54 783 4.8936 182.23419 531.24439 510.00413 -3.24467 0.00000 -1.79478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18800 0.19976 -1.00000 - 8400 2017 8 21 11 16 59 676 4.8936 182.23143 531.21966 509.98212 -3.24958 0.00000 -1.79531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18765 0.19976 -1.00000 - 8401 2017 8 21 11 17 4 570 4.8936 182.22867 531.19494 509.96012 -3.25414 0.00000 -1.79581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18729 0.19976 -1.00000 - 8402 2017 8 21 11 17 9 464 4.8937 182.22591 531.17038 509.93814 -3.25830 0.00000 -1.79627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18693 0.19976 -1.00000 - 8403 2017 8 21 11 17 14 357 4.8937 182.22316 531.14567 509.91615 -3.26200 0.00000 -1.79667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18658 0.19976 -1.00000 - 8404 2017 8 21 11 17 19 251 4.8937 182.22040 531.12097 509.89416 -3.26519 0.00000 -1.79701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18622 0.19975 -1.00000 - 8405 2017 8 21 11 17 24 145 4.8937 182.21766 531.09626 509.87217 -3.26781 0.00000 -1.79724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18587 0.19975 -1.00000 - 8406 2017 8 21 11 17 29 38 4.8937 182.21491 531.07155 509.85018 -3.27146 0.00000 -1.79739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18551 0.19975 -1.00000 - 8407 2017 8 21 11 17 33 932 4.8937 182.21217 531.04684 509.82820 -3.27500 0.00000 -1.79747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18516 0.19975 -1.00000 - 8408 2017 8 21 11 17 38 826 4.8938 182.20943 531.02215 509.80622 -3.27782 0.00000 -1.79747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18480 0.19975 -1.00000 - 8409 2017 8 21 11 17 43 720 4.8938 182.20669 530.99745 509.78424 -3.28103 0.00000 -1.79739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18444 0.19975 -1.00000 - 8410 2017 8 21 11 17 48 614 4.8938 182.20395 530.97276 509.76227 -3.28402 0.00000 -1.79720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18409 0.19975 -1.00000 - 8411 2017 8 21 11 17 53 507 4.8938 182.20122 530.94806 509.74029 -3.28607 0.00000 -1.79688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18373 0.19975 -1.00000 - 8412 2017 8 21 11 17 58 401 4.8938 182.19849 530.92337 509.71832 -3.28713 0.00000 -1.79648 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18338 0.19975 -1.00000 - 8413 2017 8 21 11 18 3 295 4.8938 182.19577 530.89868 509.69636 -3.28713 0.00000 -1.79597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18302 0.19975 -1.00000 - 8414 2017 8 21 11 18 8 189 4.8939 182.19304 530.87412 509.67441 -3.28603 0.00000 -1.79538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18266 0.19975 -1.00000 - 8415 2017 8 21 11 18 13 83 4.8939 182.19032 530.84945 509.65245 -3.28382 0.00000 -1.79469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18231 0.19975 -1.00000 - 8416 2017 8 21 11 18 17 977 4.8939 182.18760 530.82476 509.63049 -3.28048 0.00000 -1.79388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18195 0.19975 -1.00000 - 8417 2017 8 21 11 18 22 871 4.8939 182.18489 530.80007 509.60853 -3.27603 0.00000 -1.79297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18160 0.19975 -1.00000 - 8418 2017 8 21 11 18 27 765 4.8939 182.18217 530.77539 509.58657 -3.27048 0.00000 -1.79198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18124 0.19975 -1.00000 - 8419 2017 8 21 11 18 32 658 4.8939 182.17946 530.75071 509.56462 -3.26386 0.00000 -1.79091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18088 0.19975 -1.00000 - 8420 2017 8 21 11 18 37 552 4.8940 182.17676 530.72603 509.54267 -3.25622 0.00000 -1.78977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18053 0.19975 -1.00000 - 8421 2017 8 21 11 18 42 446 4.8940 182.17405 530.70135 509.52072 -3.24762 0.00000 -1.78856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18017 0.19975 -1.00000 - 8422 2017 8 21 11 18 47 340 4.8940 182.17135 530.67666 509.49877 -3.23814 0.00000 -1.78726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17982 0.19975 -1.00000 - 8423 2017 8 21 11 18 52 234 4.8940 182.16865 530.65198 509.47682 -3.22785 0.00000 -1.78591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17946 0.19975 -1.00000 - 8424 2017 8 21 11 18 57 128 4.8940 182.16595 530.62730 509.45488 -3.21686 0.00000 -1.78452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17911 0.19975 -1.00000 - 8425 2017 8 21 11 19 2 22 4.8940 182.16326 530.60263 509.43294 -3.20526 0.00000 -1.78310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17875 0.19975 -1.00000 - 8426 2017 8 21 11 19 6 917 4.8941 182.16057 530.57808 509.41102 -3.19349 0.00000 -1.78166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17839 0.19975 -1.00000 - 8427 2017 8 21 11 19 11 811 4.8941 182.15788 530.55341 509.38909 -3.18360 0.00000 -1.78020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17804 0.19975 -1.00000 - 8428 2017 8 21 11 19 16 705 4.8941 182.15519 530.52874 509.36716 -3.17356 0.00000 -1.77871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17768 0.19975 -1.00000 - 8429 2017 8 21 11 19 21 599 4.8941 182.15250 530.50408 509.34523 -3.16343 0.00000 -1.77725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17733 0.19975 -1.00000 - 8430 2017 8 21 11 19 26 493 4.8941 182.14981 530.47942 509.32331 -3.15395 0.00000 -1.77582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17697 0.19975 -1.00000 - 8431 2017 8 21 11 19 31 387 4.8941 182.14713 530.45477 509.30139 -3.14705 0.00000 -1.77443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17661 0.19974 -1.00000 - 8432 2017 8 21 11 19 36 281 4.8942 182.14445 530.43012 509.27947 -3.14045 0.00000 -1.77309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17626 0.19974 -1.00000 - 8433 2017 8 21 11 19 41 175 4.8942 182.14176 530.40547 509.25756 -3.13418 0.00000 -1.77178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17590 0.19974 -1.00000 - 8434 2017 8 21 11 19 46 70 4.8942 182.13908 530.38082 509.23565 -3.12825 0.00000 -1.77054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17555 0.19974 -1.00000 - 8435 2017 8 21 11 19 50 964 4.8942 182.13640 530.35619 509.21375 -3.12271 0.00000 -1.76938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17519 0.19974 -1.00000 - 8436 2017 8 21 11 19 55 858 4.8942 182.13372 530.33156 509.19185 -3.11760 0.00000 -1.76830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17483 0.19974 -1.00000 - 8437 2017 8 21 11 20 0 752 4.8942 182.13104 530.30695 509.16996 -3.11293 0.00000 -1.76730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17448 0.19974 -1.00000 - 8438 2017 8 21 11 20 5 647 4.8943 182.12836 530.28245 509.14809 -3.10872 0.00000 -1.76640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17412 0.19974 -1.00000 - 8439 2017 8 21 11 20 10 541 4.8943 182.12568 530.25786 509.12621 -3.10499 0.00000 -1.76557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17377 0.19974 -1.00000 - 8440 2017 8 21 11 20 15 435 4.8943 182.12301 530.23327 509.10433 -3.10172 0.00000 -1.76484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17341 0.19974 -1.00000 - 8441 2017 8 21 11 20 20 329 4.8943 182.12033 530.20869 509.08246 -3.09891 0.00000 -1.76420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17305 0.19974 -1.00000 - 8442 2017 8 21 11 20 25 224 4.8943 182.11765 530.18411 509.06059 -3.09654 0.00000 -1.76368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17270 0.19974 -1.00000 - 8443 2017 8 21 11 20 30 118 4.8943 182.11498 530.15955 509.03873 -3.09461 0.00000 -1.76326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17234 0.19974 -1.00000 - 8444 2017 8 21 11 20 35 12 4.8944 182.11230 530.13499 509.01688 -3.09313 0.00000 -1.76293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17199 0.19974 -1.00000 - 8445 2017 8 21 11 20 39 907 4.8944 182.10963 530.11044 508.99502 -3.09210 0.00000 -1.76269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17163 0.19974 -1.00000 - 8446 2017 8 21 11 20 44 801 4.8944 182.10696 530.08590 508.97317 -3.09152 0.00000 -1.76255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17127 0.19974 -1.00000 - 8447 2017 8 21 11 20 49 696 4.8944 182.10428 530.06136 508.95133 -3.09140 0.00000 -1.76250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17092 0.19974 -1.00000 - 8448 2017 8 21 11 20 54 590 4.8944 182.10161 530.03684 508.92949 -3.09172 0.00000 -1.76255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17056 0.19974 -1.00000 - 8449 2017 8 21 11 20 59 484 4.8944 182.09894 530.01232 508.90766 -3.09249 0.00000 -1.76267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17021 0.19974 -1.00000 - 8450 2017 8 21 11 21 4 379 4.8945 182.09627 529.98781 508.88583 -3.09368 0.00000 -1.76287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16985 0.19974 -1.00000 - 8451 2017 8 21 11 21 9 273 4.8945 182.09361 529.96341 508.86403 -3.09526 0.00000 -1.76313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16950 0.19974 -1.00000 - 8452 2017 8 21 11 21 14 168 4.8945 182.09094 529.93893 508.84222 -3.09723 0.00000 -1.76346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16914 0.19974 -1.00000 - 8453 2017 8 21 11 21 19 62 4.8945 182.08827 529.91445 508.82041 -3.09954 0.00000 -1.76385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16878 0.19974 -1.00000 - 8454 2017 8 21 11 21 23 957 4.8945 182.08561 529.88998 508.79861 -3.10217 0.00000 -1.76430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16843 0.19974 -1.00000 - 8455 2017 8 21 11 21 28 851 4.8945 182.08294 529.86552 508.77681 -3.10505 0.00000 -1.76480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16807 0.19974 -1.00000 - 8456 2017 8 21 11 21 33 746 4.8945 182.08028 529.84106 508.75501 -3.10815 0.00000 -1.76534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16772 0.19974 -1.00000 - 8457 2017 8 21 11 21 38 641 4.8946 182.07761 529.81660 508.73322 -3.11142 0.00000 -1.76591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16736 0.19974 -1.00000 - 8458 2017 8 21 11 21 43 535 4.8946 182.07495 529.79216 508.71143 -3.11483 0.00000 -1.76652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16700 0.19974 -1.00000 - 8459 2017 8 21 11 21 48 430 4.8946 182.07229 529.76772 508.68964 -3.11833 0.00000 -1.76715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16665 0.19973 -1.00000 - 8460 2017 8 21 11 21 53 324 4.8946 182.06962 529.74328 508.66786 -3.12189 0.00000 -1.76782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16629 0.19973 -1.00000 - 8461 2017 8 21 11 21 58 219 4.8946 182.06696 529.71886 508.64609 -3.12550 0.00000 -1.76850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16594 0.19973 -1.00000 - 8462 2017 8 21 11 22 3 114 4.8946 182.06430 529.69443 508.62431 -3.12915 0.00000 -1.76920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16558 0.19973 -1.00000 - 8463 2017 8 21 11 22 8 8 4.8947 182.06164 529.67011 508.60257 -3.13281 0.00000 -1.76991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16522 0.19973 -1.00000 - 8464 2017 8 21 11 22 12 903 4.8947 182.05898 529.64571 508.58081 -3.13648 0.00000 -1.77062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16487 0.19973 -1.00000 - 8465 2017 8 21 11 22 17 798 4.8947 182.05632 529.62132 508.55905 -3.14014 0.00000 -1.77134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16451 0.19973 -1.00000 - 8466 2017 8 21 11 22 22 692 4.8947 182.05366 529.59693 508.53730 -3.14380 0.00000 -1.77206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16416 0.19973 -1.00000 - 8467 2017 8 21 11 22 27 587 4.8947 182.05100 529.57255 508.51555 -3.14743 0.00000 -1.77278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16380 0.19973 -1.00000 - 8468 2017 8 21 11 22 32 482 4.8947 182.04834 529.54818 508.49381 -3.15103 0.00000 -1.77348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16344 0.19973 -1.00000 - 8469 2017 8 21 11 22 37 377 4.8948 182.04568 529.52381 508.47206 -3.15460 0.00000 -1.77418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16309 0.19973 -1.00000 - 8470 2017 8 21 11 22 42 271 4.8948 182.04302 529.49945 508.45032 -3.15813 0.00000 -1.77487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16273 0.19973 -1.00000 - 8471 2017 8 21 11 22 47 166 4.8948 182.04036 529.47509 508.42859 -3.16158 0.00000 -1.77554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16238 0.19973 -1.00000 - 8472 2017 8 21 11 22 52 61 4.8948 182.03769 529.45074 508.40686 -3.16496 0.00000 -1.77619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16202 0.19973 -1.00000 - 8473 2017 8 21 11 22 56 956 4.8948 182.03503 529.42640 508.38513 -3.16824 0.00000 -1.77683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16166 0.19973 -1.00000 - 8474 2017 8 21 11 23 1 851 4.8948 182.03237 529.40207 508.36341 -3.17142 0.00000 -1.77744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16131 0.19973 -1.00000 - 8475 2017 8 21 11 23 6 745 4.8949 182.02971 529.37782 508.34171 -3.17448 0.00000 -1.77803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16095 0.19973 -1.00000 - 8476 2017 8 21 11 23 11 640 4.8949 182.02705 529.35352 508.32000 -3.17740 0.00000 -1.77859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16060 0.19973 -1.00000 - 8477 2017 8 21 11 23 16 535 4.8949 182.02439 529.32922 508.29828 -3.18017 0.00000 -1.77912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16024 0.19973 -1.00000 - 8478 2017 8 21 11 23 21 430 4.8949 182.02173 529.30492 508.27657 -3.18279 0.00000 -1.77963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15988 0.19973 -1.00000 - 8479 2017 8 21 11 23 26 325 4.8949 182.01908 529.28061 508.25485 -3.18525 0.00000 -1.78011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15953 0.19973 -1.00000 - 8480 2017 8 21 11 23 31 220 4.8949 182.01642 529.25631 508.23313 -3.18753 0.00000 -1.78056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15917 0.19973 -1.00000 - 8481 2017 8 21 11 23 36 115 4.8949 182.01377 529.23201 508.21142 -3.18963 0.00000 -1.78098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15882 0.19973 -1.00000 - 8482 2017 8 21 11 23 41 10 4.8950 182.01112 529.20770 508.18970 -3.19155 0.00000 -1.78137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15846 0.19973 -1.00000 - 8483 2017 8 21 11 23 45 905 4.8950 182.00847 529.18339 508.16797 -3.19327 0.00000 -1.78174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15810 0.19973 -1.00000 - 8484 2017 8 21 11 23 50 800 4.8950 182.00582 529.15907 508.14624 -3.19479 0.00000 -1.78206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15775 0.19973 -1.00000 - 8485 2017 8 21 11 23 55 695 4.8950 182.00318 529.13474 508.12451 -3.19612 0.00000 -1.78236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15739 0.19973 -1.00000 - 8486 2017 8 21 11 24 0 590 4.8950 182.00054 529.11041 508.10278 -3.19725 0.00000 -1.78263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15704 0.19973 -1.00000 - 8487 2017 8 21 11 24 5 485 4.8950 181.99790 529.08613 508.08106 -3.19819 0.00000 -1.78286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15668 0.19972 -1.00000 - 8488 2017 8 21 11 24 10 380 4.8951 181.99526 529.06179 508.05932 -3.19892 0.00000 -1.78306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15632 0.19972 -1.00000 - 8489 2017 8 21 11 24 15 275 4.8951 181.99263 529.03744 508.03758 -3.19946 0.00000 -1.78323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15597 0.19972 -1.00000 - 8490 2017 8 21 11 24 20 170 4.8951 181.99000 529.01307 508.01583 -3.19981 0.00000 -1.78337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15561 0.19972 -1.00000 - 8491 2017 8 21 11 24 25 65 4.8951 181.98737 528.98869 507.99407 -3.19999 0.00000 -1.78347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15526 0.19972 -1.00000 - 8492 2017 8 21 11 24 29 960 4.8951 181.98475 528.96429 507.97231 -3.20001 0.00000 -1.78354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15490 0.19972 -1.00000 - 8493 2017 8 21 11 24 34 855 4.8951 181.98212 528.93988 507.95054 -3.19986 0.00000 -1.78358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15454 0.19972 -1.00000 - 8494 2017 8 21 11 24 39 751 4.8951 181.97951 528.91546 507.92877 -3.19957 0.00000 -1.78360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15419 0.19972 -1.00000 - 8495 2017 8 21 11 24 44 646 4.8952 181.97689 528.89102 507.90700 -3.19912 0.00000 -1.78358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15383 0.19972 -1.00000 - 8496 2017 8 21 11 24 49 541 4.8952 181.97428 528.86658 507.88523 -3.19854 0.00000 -1.78353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15348 0.19972 -1.00000 - 8497 2017 8 21 11 24 54 436 4.8952 181.97167 528.84213 507.86345 -3.19783 0.00000 -1.78345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15312 0.19972 -1.00000 - 8498 2017 8 21 11 24 59 331 4.8952 181.96906 528.81768 507.84168 -3.19700 0.00000 -1.78335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15276 0.19972 -1.00000 - 8499 2017 8 21 11 25 4 227 4.8952 181.96646 528.79322 507.81991 -3.19605 0.00000 -1.78322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15241 0.19972 -1.00000 - 8500 2017 8 21 11 25 9 122 4.8952 181.96386 528.76882 507.79817 -3.19501 0.00000 -1.78306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15205 0.19972 -1.00000 - 8501 2017 8 21 11 25 14 17 4.8953 181.96126 528.74438 507.77641 -3.19385 0.00000 -1.78287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15170 0.19972 -1.00000 - 8502 2017 8 21 11 25 18 912 4.8953 181.95867 528.71993 507.75465 -3.19260 0.00000 -1.78266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15134 0.19972 -1.00000 - 8503 2017 8 21 11 25 23 808 4.8953 181.95608 528.69547 507.73289 -3.19126 0.00000 -1.78243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15098 0.19972 -1.00000 - 8504 2017 8 21 11 25 28 703 4.8953 181.95350 528.67103 507.71115 -3.18985 0.00000 -1.78217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15063 0.19972 -1.00000 - 8505 2017 8 21 11 25 33 598 4.8953 181.95091 528.64658 507.68940 -3.18839 0.00000 -1.78190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15027 0.19972 -1.00000 - 8506 2017 8 21 11 25 38 494 4.8953 181.94833 528.62214 507.66767 -3.18686 0.00000 -1.78160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14992 0.19972 -1.00000 - 8507 2017 8 21 11 25 43 389 4.8954 181.94576 528.59772 507.64594 -3.18529 0.00000 -1.78128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14956 0.19972 -1.00000 - 8508 2017 8 21 11 25 48 284 4.8954 181.94319 528.57330 507.62422 -3.18368 0.00000 -1.78095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14920 0.19972 -1.00000 - 8509 2017 8 21 11 25 53 180 4.8954 181.94062 528.54890 507.60251 -3.18203 0.00000 -1.78060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14885 0.19972 -1.00000 - 8510 2017 8 21 11 25 58 75 4.8954 181.93805 528.52451 507.58082 -3.18033 0.00000 -1.78024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14849 0.19972 -1.00000 - 8511 2017 8 21 11 26 2 970 4.8954 181.93549 528.50014 507.55913 -3.17861 0.00000 -1.77986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14814 0.19972 -1.00000 - 8512 2017 8 21 11 26 7 866 4.8954 181.93293 528.47584 507.53748 -3.17685 0.00000 -1.77946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14778 0.19972 -1.00000 - 8513 2017 8 21 11 26 12 761 4.8954 181.93037 528.45153 507.51583 -3.17505 0.00000 -1.77905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14742 0.19972 -1.00000 - 8514 2017 8 21 11 26 17 657 4.8955 181.92782 528.42723 507.49418 -3.17323 0.00000 -1.77863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14707 0.19972 -1.00000 - 8515 2017 8 21 11 26 22 552 4.8955 181.92527 528.40294 507.47254 -3.17139 0.00000 -1.77819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14671 0.19971 -1.00000 - 8516 2017 8 21 11 26 27 448 4.8955 181.92273 528.37867 507.45091 -3.16953 0.00000 -1.77775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14636 0.19971 -1.00000 - 8517 2017 8 21 11 26 32 343 4.8955 181.92019 528.35442 507.42929 -3.16765 0.00000 -1.77729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14600 0.19971 -1.00000 - 8518 2017 8 21 11 26 37 239 4.8955 181.91765 528.33019 507.40768 -3.16575 0.00000 -1.77683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14564 0.19971 -1.00000 - 8519 2017 8 21 11 26 42 134 4.8955 181.91511 528.30596 507.38607 -3.16383 0.00000 -1.77636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14529 0.19971 -1.00000 - 8520 2017 8 21 11 26 47 30 4.8955 181.91258 528.28176 507.36447 -3.16189 0.00000 -1.77588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14493 0.19971 -1.00000 - 8521 2017 8 21 11 26 51 925 4.8956 181.91005 528.25756 507.34288 -3.15994 0.00000 -1.77540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14458 0.19971 -1.00000 - 8522 2017 8 21 11 26 56 821 4.8956 181.90753 528.23337 507.32129 -3.15798 0.00000 -1.77491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14422 0.19971 -1.00000 - 8523 2017 8 21 11 27 1 717 4.8956 181.90500 528.20919 507.29970 -3.15599 0.00000 -1.77441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14386 0.19971 -1.00000 - 8524 2017 8 21 11 27 6 612 4.8956 181.90249 528.18506 507.27814 -3.15398 0.00000 -1.77392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14351 0.19971 -1.00000 - 8525 2017 8 21 11 27 11 508 4.8956 181.89997 528.16092 507.25656 -3.15193 0.00000 -1.77341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14315 0.19971 -1.00000 - 8526 2017 8 21 11 27 16 403 4.8956 181.89746 528.13676 507.23498 -3.14985 0.00000 -1.77291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14280 0.19971 -1.00000 - 8527 2017 8 21 11 27 21 299 4.8957 181.89495 528.11260 507.21340 -3.14774 0.00000 -1.77240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14244 0.19971 -1.00000 - 8528 2017 8 21 11 27 26 195 4.8957 181.89244 528.08843 507.19181 -3.14562 0.00000 -1.77190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14208 0.19971 -1.00000 - 8529 2017 8 21 11 27 31 90 4.8957 181.88993 528.06425 507.17022 -3.14348 0.00000 -1.77140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14173 0.19971 -1.00000 - 8530 2017 8 21 11 27 35 986 4.8957 181.88742 528.04006 507.14862 -3.14133 0.00000 -1.77090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14137 0.19971 -1.00000 - 8531 2017 8 21 11 27 40 882 4.8957 181.88492 528.01586 507.12701 -3.13916 0.00000 -1.77040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14102 0.19971 -1.00000 - 8532 2017 8 21 11 27 45 778 4.8957 181.88242 527.99165 507.10540 -3.13698 0.00000 -1.76991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14066 0.19971 -1.00000 - 8533 2017 8 21 11 27 50 673 4.8957 181.87992 527.96742 507.08379 -3.13481 0.00000 -1.76943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14030 0.19971 -1.00000 - 8534 2017 8 21 11 27 55 569 4.8958 181.87742 527.94318 507.06216 -3.13265 0.00000 -1.76897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13995 0.19971 -1.00000 - 8535 2017 8 21 11 28 0 465 4.8958 181.87492 527.91893 507.04054 -3.13053 0.00000 -1.76851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13959 0.19971 -1.00000 - 8536 2017 8 21 11 28 5 361 4.8958 181.87243 527.89470 507.01893 -3.12846 0.00000 -1.76806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13924 0.19971 -1.00000 - 8537 2017 8 21 11 28 10 257 4.8958 181.86994 527.87046 506.99731 -3.12643 0.00000 -1.76763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13888 0.19971 -1.00000 - 8538 2017 8 21 11 28 15 152 4.8958 181.86745 527.84619 506.97567 -3.12447 0.00000 -1.76722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13852 0.19971 -1.00000 - 8539 2017 8 21 11 28 20 48 4.8958 181.86496 527.82190 506.95403 -3.12261 0.00000 -1.76682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13817 0.19971 -1.00000 - 8540 2017 8 21 11 28 24 944 4.8959 181.86247 527.79761 506.93239 -3.12087 0.00000 -1.76644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13781 0.19971 -1.00000 - 8541 2017 8 21 11 28 29 840 4.8959 181.85999 527.77330 506.91074 -3.11927 0.00000 -1.76609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13746 0.19971 -1.00000 - 8542 2017 8 21 11 28 34 736 4.8959 181.85751 527.74898 506.88909 -3.11785 0.00000 -1.76576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13710 0.19970 -1.00000 - 8543 2017 8 21 11 28 39 632 4.8959 181.85503 527.72466 506.86745 -3.11661 0.00000 -1.76546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13674 0.19970 -1.00000 - 8544 2017 8 21 11 28 44 528 4.8959 181.85255 527.70034 506.84580 -3.11557 0.00000 -1.76519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13639 0.19970 -1.00000 - 8545 2017 8 21 11 28 49 424 4.8959 181.85007 527.67601 506.82415 -3.11475 0.00000 -1.76494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13603 0.19970 -1.00000 - 8546 2017 8 21 11 28 54 319 4.8959 181.84760 527.65169 506.80251 -3.11417 0.00000 -1.76473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13568 0.19970 -1.00000 - 8547 2017 8 21 11 28 59 215 4.8960 181.84513 527.62737 506.78087 -3.11384 0.00000 -1.76456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13532 0.19970 -1.00000 - 8548 2017 8 21 11 29 4 111 4.8960 181.84265 527.60306 506.75923 -3.11378 0.00000 -1.76442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13496 0.19970 -1.00000 - 8549 2017 8 21 11 29 9 7 4.8960 181.84018 527.57879 506.73764 -3.11398 0.00000 -1.76432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13461 0.19970 -1.00000 - 8550 2017 8 21 11 29 13 903 4.8960 181.83772 527.55454 506.71603 -3.11442 0.00000 -1.76425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13425 0.19970 -1.00000 - 8551 2017 8 21 11 29 18 799 4.8960 181.83525 527.53028 506.69442 -3.11511 0.00000 -1.76421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13390 0.19970 -1.00000 - 8552 2017 8 21 11 29 23 695 4.8960 181.83278 527.50602 506.67282 -3.11607 0.00000 -1.76422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13354 0.19970 -1.00000 - 8553 2017 8 21 11 29 28 591 4.8960 181.83032 527.48178 506.65122 -3.11726 0.00000 -1.76427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13318 0.19970 -1.00000 - 8554 2017 8 21 11 29 33 488 4.8961 181.82786 527.45754 506.62963 -3.11869 0.00000 -1.76435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13283 0.19970 -1.00000 - 8555 2017 8 21 11 29 38 384 4.8961 181.82539 527.43331 506.60804 -3.12034 0.00000 -1.76446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13247 0.19970 -1.00000 - 8556 2017 8 21 11 29 43 280 4.8961 181.82294 527.40910 506.58646 -3.12217 0.00000 -1.76461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13212 0.19970 -1.00000 - 8557 2017 8 21 11 29 48 176 4.8961 181.82048 527.38490 506.56489 -3.12417 0.00000 -1.76480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13176 0.19970 -1.00000 - 8558 2017 8 21 11 29 53 72 4.8961 181.81802 527.36070 506.54332 -3.12630 0.00000 -1.76501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13140 0.19970 -1.00000 - 8559 2017 8 21 11 29 57 968 4.8961 181.81556 527.33652 506.52175 -3.12854 0.00000 -1.76526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13105 0.19970 -1.00000 - 8560 2017 8 21 11 30 2 864 4.8962 181.81311 527.31234 506.50019 -3.13086 0.00000 -1.76553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13069 0.19970 -1.00000 - 8561 2017 8 21 11 30 7 760 4.8962 181.81066 527.28820 506.47866 -3.13322 0.00000 -1.76582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13034 0.19970 -1.00000 - 8562 2017 8 21 11 30 12 657 4.8962 181.80821 527.26408 506.45713 -3.13558 0.00000 -1.76612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12998 0.19970 -1.00000 - 8563 2017 8 21 11 30 17 553 4.8962 181.80576 527.23995 506.43558 -3.13791 0.00000 -1.76644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12962 0.19970 -1.00000 - 8564 2017 8 21 11 30 22 449 4.8962 181.80331 527.21582 506.41404 -3.14018 0.00000 -1.76676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12927 0.19970 -1.00000 - 8565 2017 8 21 11 30 27 345 4.8962 181.80086 527.19169 506.39250 -3.14235 0.00000 -1.76709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12891 0.19970 -1.00000 - 8566 2017 8 21 11 30 32 241 4.8962 181.79842 527.16756 506.37096 -3.14439 0.00000 -1.76742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12855 0.19970 -1.00000 - 8567 2017 8 21 11 30 37 138 4.8963 181.79597 527.14342 506.34943 -3.14629 0.00000 -1.76774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12820 0.19970 -1.00000 - 8568 2017 8 21 11 30 42 34 4.8963 181.79353 527.11929 506.32789 -3.14802 0.00000 -1.76806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12784 0.19970 -1.00000 - 8569 2017 8 21 11 30 46 930 4.8963 181.79109 527.09516 506.30636 -3.14956 0.00000 -1.76836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12749 0.19970 -1.00000 - 8570 2017 8 21 11 30 51 827 4.8963 181.78865 527.07103 506.28482 -3.15090 0.00000 -1.76864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12713 0.19969 -1.00000 - 8571 2017 8 21 11 30 56 723 4.8963 181.78621 527.04690 506.26329 -3.15202 0.00000 -1.76891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12677 0.19969 -1.00000 - 8572 2017 8 21 11 31 1 619 4.8963 181.78377 527.02278 506.24176 -3.15290 0.00000 -1.76915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12642 0.19969 -1.00000 - 8573 2017 8 21 11 31 6 516 4.8963 181.78134 526.99867 506.22027 -3.15353 0.00000 -1.76937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12606 0.19969 -1.00000 - 8574 2017 8 21 11 31 11 412 4.8964 181.77891 526.97459 506.19876 -3.15389 0.00000 -1.76955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12571 0.19969 -1.00000 - 8575 2017 8 21 11 31 16 308 4.8964 181.77647 526.95050 506.17725 -3.15399 0.00000 -1.76970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12535 0.19969 -1.00000 - 8576 2017 8 21 11 31 21 205 4.8964 181.77404 526.92639 506.15574 -3.15383 0.00000 -1.76982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12499 0.19969 -1.00000 - 8577 2017 8 21 11 31 26 101 4.8964 181.77161 526.90229 506.13424 -3.15343 0.00000 -1.76991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12464 0.19969 -1.00000 - 8578 2017 8 21 11 31 30 997 4.8964 181.76919 526.87818 506.11273 -3.15280 0.00000 -1.76996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12428 0.19969 -1.00000 - 8579 2017 8 21 11 31 35 894 4.8964 181.76676 526.85408 506.09123 -3.15236 0.00000 -1.76998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12393 0.19969 -1.00000 - 8580 2017 8 21 11 31 40 790 4.8964 181.76434 526.82998 506.06973 -3.15168 0.00000 -1.76997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12357 0.19969 -1.00000 - 8581 2017 8 21 11 31 45 687 4.8965 181.76191 526.80588 506.04823 -3.15066 0.00000 -1.76992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12321 0.19969 -1.00000 - 8582 2017 8 21 11 31 50 583 4.8965 181.75949 526.78179 506.02674 -3.14933 0.00000 -1.76985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12286 0.19969 -1.00000 - 8583 2017 8 21 11 31 55 480 4.8965 181.75707 526.75770 506.00526 -3.14773 0.00000 -1.76975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12250 0.19969 -1.00000 - 8584 2017 8 21 11 32 0 376 4.8965 181.75465 526.73362 505.98377 -3.14587 0.00000 -1.76962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12215 0.19969 -1.00000 - 8585 2017 8 21 11 32 5 273 4.8965 181.75224 526.70957 505.96233 -3.14414 0.00000 -1.76947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12179 0.19969 -1.00000 - 8586 2017 8 21 11 32 10 169 4.8965 181.74982 526.68555 505.94088 -3.14266 0.00000 -1.76930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12143 0.19969 -1.00000 - 8587 2017 8 21 11 32 15 66 4.8965 181.74741 526.66152 505.91943 -3.14121 0.00000 -1.76912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12108 0.19969 -1.00000 - 8588 2017 8 21 11 32 19 962 4.8966 181.74500 526.63750 505.89798 -3.13981 0.00000 -1.76893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12072 0.19969 -1.00000 - 8589 2017 8 21 11 32 24 859 4.8966 181.74259 526.61347 505.87653 -3.13850 0.00000 -1.76873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12037 0.19969 -1.00000 - 8590 2017 8 21 11 32 29 756 4.8966 181.74018 526.58945 505.85509 -3.13730 0.00000 -1.76853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12001 0.19969 -1.00000 - 8591 2017 8 21 11 32 34 652 4.8966 181.73777 526.56543 505.83365 -3.13622 0.00000 -1.76833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11965 0.19969 -1.00000 - 8592 2017 8 21 11 32 39 549 4.8966 181.73536 526.54142 505.81221 -3.13528 0.00000 -1.76814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11930 0.19969 -1.00000 - 8593 2017 8 21 11 32 44 445 4.8966 181.73296 526.51741 505.79078 -3.13451 0.00000 -1.76796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11894 0.19969 -1.00000 - 8594 2017 8 21 11 32 49 342 4.8966 181.73055 526.49341 505.76935 -3.13390 0.00000 -1.76779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11858 0.19969 -1.00000 - 8595 2017 8 21 11 32 54 239 4.8967 181.72815 526.46942 505.74792 -3.13346 0.00000 -1.76764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11823 0.19969 -1.00000 - 8596 2017 8 21 11 32 59 135 4.8967 181.72575 526.44543 505.72649 -3.13320 0.00000 -1.76751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11787 0.19969 -1.00000 - 8597 2017 8 21 11 33 4 32 4.8967 181.72335 526.42144 505.70507 -3.13311 0.00000 -1.76739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11752 0.19969 -1.00000 - 8598 2017 8 21 11 33 8 929 4.8967 181.72096 526.39747 505.68369 -3.13319 0.00000 -1.76730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11716 0.19968 -1.00000 - 8599 2017 8 21 11 33 13 826 4.8967 181.71856 526.37356 505.66230 -3.13340 0.00000 -1.76723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11680 0.19968 -1.00000 - 8600 2017 8 21 11 33 18 722 4.8967 181.71616 526.34961 505.64090 -3.13374 0.00000 -1.76718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11645 0.19968 -1.00000 - 8601 2017 8 21 11 33 23 619 4.8968 181.71377 526.32566 505.61949 -3.13419 0.00000 -1.76715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11609 0.19968 -1.00000 - 8602 2017 8 21 11 33 28 516 4.8968 181.71138 526.30170 505.59809 -3.13472 0.00000 -1.76714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11574 0.19968 -1.00000 - 8603 2017 8 21 11 33 33 413 4.8968 181.70899 526.27774 505.57668 -3.13531 0.00000 -1.76715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11538 0.19968 -1.00000 - 8604 2017 8 21 11 33 38 309 4.8968 181.70660 526.25377 505.55528 -3.13594 0.00000 -1.76718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11502 0.19968 -1.00000 - 8605 2017 8 21 11 33 43 206 4.8968 181.70422 526.22981 505.53388 -3.13659 0.00000 -1.76723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11467 0.19968 -1.00000 - 8606 2017 8 21 11 33 48 103 4.8968 181.70184 526.20584 505.51248 -3.13724 0.00000 -1.76728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11431 0.19968 -1.00000 - 8607 2017 8 21 11 33 53 0 4.8968 181.69947 526.18187 505.49107 -3.13786 0.00000 -1.76735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11396 0.19968 -1.00000 - 8608 2017 8 21 11 33 57 897 4.8969 181.69710 526.15791 505.46968 -3.13843 0.00000 -1.76742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11360 0.19968 -1.00000 - 8609 2017 8 21 11 34 2 794 4.8969 181.69474 526.13394 505.44828 -3.13893 0.00000 -1.76750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11324 0.19968 -1.00000 - 8610 2017 8 21 11 34 7 690 4.8969 181.69238 526.10999 505.42692 -3.13936 0.00000 -1.76757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11289 0.19968 -1.00000 - 8611 2017 8 21 11 34 12 587 4.8969 181.69002 526.08610 505.40555 -3.13968 0.00000 -1.76763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11253 0.19968 -1.00000 - 8612 2017 8 21 11 34 17 484 4.8969 181.68766 526.06218 505.38418 -3.13992 0.00000 -1.76768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11217 0.19968 -1.00000 - 8613 2017 8 21 11 34 22 381 4.8969 181.68532 526.03826 505.36280 -3.14007 0.00000 -1.76772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11182 0.19968 -1.00000 - 8614 2017 8 21 11 34 27 278 4.8969 181.68297 526.01433 505.34143 -3.14011 0.00000 -1.76774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11146 0.19968 -1.00000 - 8615 2017 8 21 11 34 32 175 4.8970 181.68063 525.99039 505.32006 -3.14006 0.00000 -1.76775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11111 0.19968 -1.00000 - 8616 2017 8 21 11 34 37 72 4.8970 181.67829 525.96646 505.29869 -3.13993 0.00000 -1.76773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11075 0.19968 -1.00000 - 8617 2017 8 21 11 34 41 969 4.8970 181.67595 525.94253 505.27731 -3.13970 0.00000 -1.76770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11039 0.19968 -1.00000 - 8618 2017 8 21 11 34 46 866 4.8970 181.67362 525.91861 505.25595 -3.13939 0.00000 -1.76764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11004 0.19968 -1.00000 - 8619 2017 8 21 11 34 51 763 4.8970 181.67129 525.89468 505.23458 -3.13901 0.00000 -1.76756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10968 0.19968 -1.00000 - 8620 2017 8 21 11 34 56 660 4.8970 181.66896 525.87076 505.21321 -3.13855 0.00000 -1.76745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10933 0.19968 -1.00000 - 8621 2017 8 21 11 35 1 557 4.8970 181.66663 525.84683 505.19185 -3.13804 0.00000 -1.76732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10897 0.19968 -1.00000 - 8622 2017 8 21 11 35 6 454 4.8971 181.66431 525.82292 505.17052 -3.13749 0.00000 -1.76717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10861 0.19968 -1.00000 - 8623 2017 8 21 11 35 11 351 4.8971 181.66199 525.79908 505.14919 -3.13690 0.00000 -1.76699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10826 0.19968 -1.00000 - 8624 2017 8 21 11 35 16 248 4.8971 181.65968 525.77520 505.12784 -3.13629 0.00000 -1.76679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10790 0.19968 -1.00000 - 8625 2017 8 21 11 35 21 145 4.8971 181.65736 525.75131 505.10649 -3.13569 0.00000 -1.76657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10755 0.19968 -1.00000 - 8626 2017 8 21 11 35 26 43 4.8971 181.65505 525.72741 505.08514 -3.13509 0.00000 -1.76633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10719 0.19967 -1.00000 - 8627 2017 8 21 11 35 30 940 4.8971 181.65275 525.70350 505.06379 -3.13451 0.00000 -1.76608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10683 0.19967 -1.00000 - 8628 2017 8 21 11 35 35 837 4.8971 181.65044 525.67959 505.04243 -3.13395 0.00000 -1.76581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10648 0.19967 -1.00000 - 8629 2017 8 21 11 35 40 734 4.8972 181.64814 525.65567 505.02107 -3.13340 0.00000 -1.76554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10612 0.19967 -1.00000 - 8630 2017 8 21 11 35 45 631 4.8972 181.64584 525.63175 504.99971 -3.13287 0.00000 -1.76526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10576 0.19967 -1.00000 - 8631 2017 8 21 11 35 50 528 4.8972 181.64354 525.60782 504.97835 -3.13236 0.00000 -1.76498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10541 0.19967 -1.00000 - 8632 2017 8 21 11 35 55 425 4.8972 181.64125 525.58389 504.95698 -3.13186 0.00000 -1.76469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10505 0.19967 -1.00000 - 8633 2017 8 21 11 36 0 323 4.8972 181.63899 525.55995 504.93561 -3.13138 0.00000 -1.76441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10470 0.19967 -1.00000 - 8634 2017 8 21 11 36 5 220 4.8972 181.63675 525.53601 504.91428 -3.13090 0.00000 -1.76413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10434 0.19967 -1.00000 - 8635 2017 8 21 11 36 10 117 4.8972 181.63451 525.51214 504.89294 -3.13041 0.00000 -1.76385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10398 0.19967 -1.00000 - 8636 2017 8 21 11 36 15 14 4.8973 181.63226 525.48824 504.87159 -3.12990 0.00000 -1.76358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10363 0.19967 -1.00000 - 8637 2017 8 21 11 36 19 912 4.8973 181.63001 525.46431 504.85024 -3.12939 0.00000 -1.76331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10327 0.19967 -1.00000 - 8638 2017 8 21 11 36 24 809 4.8973 181.62776 525.44038 504.82888 -3.12885 0.00000 -1.76305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10292 0.19967 -1.00000 - 8639 2017 8 21 11 36 29 706 4.8973 181.62551 525.41644 504.80752 -3.12828 0.00000 -1.76279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10256 0.19967 -1.00000 - 8640 2017 8 21 11 36 34 604 4.8973 181.62324 525.39249 504.78616 -3.12768 0.00000 -1.76254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10220 0.19967 -1.00000 - 8641 2017 8 21 11 36 39 501 4.8973 181.62097 525.36854 504.76480 -3.12703 0.00000 -1.76229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10185 0.19967 -1.00000 - 8642 2017 8 21 11 36 44 398 4.8973 181.61870 525.34459 504.74344 -3.12634 0.00000 -1.76205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10149 0.19967 -1.00000 - 8643 2017 8 21 11 36 49 296 4.8974 181.61644 525.32063 504.72208 -3.12559 0.00000 -1.76182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10113 0.19967 -1.00000 - 8644 2017 8 21 11 36 54 193 4.8974 181.61417 525.29668 504.70072 -3.12478 0.00000 -1.76159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10078 0.19967 -1.00000 - 8645 2017 8 21 11 36 59 90 4.8974 181.61190 525.27273 504.67936 -3.12392 0.00000 -1.76137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10042 0.19967 -1.00000 - 8646 2017 8 21 11 37 3 988 4.8974 181.60963 525.24878 504.65801 -3.12300 0.00000 -1.76114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10007 0.19967 -1.00000 - 8647 2017 8 21 11 37 8 885 4.8974 181.60736 525.22484 504.63670 -3.12203 0.00000 -1.76092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09971 0.19967 -1.00000 - 8648 2017 8 21 11 37 13 783 4.8974 181.60510 525.20099 504.61539 -3.12100 0.00000 -1.76070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09935 0.19967 -1.00000 - 8649 2017 8 21 11 37 18 680 4.8975 181.60283 525.17711 504.59408 -3.11993 0.00000 -1.76047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09900 0.19967 -1.00000 - 8650 2017 8 21 11 37 23 578 4.8975 181.60056 525.15322 504.57276 -3.11883 0.00000 -1.76024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09864 0.19967 -1.00000 - 8651 2017 8 21 11 37 28 475 4.8975 181.59830 525.12933 504.55144 -3.11770 0.00000 -1.76001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09829 0.19967 -1.00000 - 8652 2017 8 21 11 37 33 373 4.8975 181.59605 525.10544 504.53013 -3.11655 0.00000 -1.75977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09793 0.19967 -1.00000 - 8653 2017 8 21 11 37 38 270 4.8975 181.59380 525.08155 504.50882 -3.11539 0.00000 -1.75953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09757 0.19966 -1.00000 - 8654 2017 8 21 11 37 43 168 4.8975 181.59154 525.05767 504.48752 -3.11422 0.00000 -1.75928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09722 0.19966 -1.00000 - 8655 2017 8 21 11 37 48 65 4.8975 181.58930 525.03379 504.46622 -3.11306 0.00000 -1.75904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09686 0.19966 -1.00000 - 8656 2017 8 21 11 37 52 963 4.8975 181.58706 525.00992 504.44492 -3.11192 0.00000 -1.75879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09650 0.19966 -1.00000 - 8657 2017 8 21 11 37 57 860 4.8976 181.58482 524.98606 504.42363 -3.11081 0.00000 -1.75853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09615 0.19966 -1.00000 - 8658 2017 8 21 11 38 2 758 4.8976 181.58259 524.96221 504.40235 -3.10974 0.00000 -1.75828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09579 0.19966 -1.00000 - 8659 2017 8 21 11 38 7 655 4.8976 181.58036 524.93837 504.38111 -3.10870 0.00000 -1.75803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09544 0.19966 -1.00000 - 8660 2017 8 21 11 38 12 553 4.8976 181.57813 524.91463 504.35988 -3.10771 0.00000 -1.75778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09508 0.19966 -1.00000 - 8661 2017 8 21 11 38 17 451 4.8976 181.57591 524.89085 504.33864 -3.10677 0.00000 -1.75754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09472 0.19966 -1.00000 - 8662 2017 8 21 11 38 22 348 4.8976 181.57370 524.86708 504.31740 -3.10588 0.00000 -1.75728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09437 0.19966 -1.00000 - 8663 2017 8 21 11 38 27 246 4.8976 181.57148 524.84330 504.29616 -3.10506 0.00000 -1.75704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09401 0.19966 -1.00000 - 8664 2017 8 21 11 38 32 144 4.8977 181.56927 524.81952 504.27493 -3.10430 0.00000 -1.75681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09366 0.19966 -1.00000 - 8665 2017 8 21 11 38 37 41 4.8977 181.56707 524.79575 504.25370 -3.10361 0.00000 -1.75658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09330 0.19966 -1.00000 - 8666 2017 8 21 11 38 41 939 4.8977 181.56487 524.77198 504.23248 -3.10298 0.00000 -1.75637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09294 0.19966 -1.00000 - 8667 2017 8 21 11 38 46 837 4.8977 181.56266 524.74821 504.21126 -3.10241 0.00000 -1.75616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09259 0.19966 -1.00000 - 8668 2017 8 21 11 38 51 734 4.8977 181.56047 524.72446 504.19005 -3.10190 0.00000 -1.75596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09223 0.19966 -1.00000 - 8669 2017 8 21 11 38 56 632 4.8977 181.55827 524.70070 504.16884 -3.10145 0.00000 -1.75578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09187 0.19966 -1.00000 - 8670 2017 8 21 11 39 1 530 4.8977 181.55608 524.67696 504.14764 -3.10106 0.00000 -1.75561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09152 0.19966 -1.00000 - 8671 2017 8 21 11 39 6 427 4.8977 181.55389 524.65323 504.12649 -3.10071 0.00000 -1.75545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09116 0.19966 -1.00000 - 8672 2017 8 21 11 39 11 325 4.8978 181.55170 524.62960 504.10534 -3.10039 0.00000 -1.75530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09081 0.19966 -1.00000 - 8673 2017 8 21 11 39 16 223 4.8978 181.54952 524.60595 504.08419 -3.10010 0.00000 -1.75516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09045 0.19966 -1.00000 - 8674 2017 8 21 11 39 21 121 4.8978 181.54733 524.58228 504.06304 -3.09983 0.00000 -1.75503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09009 0.19966 -1.00000 - 8675 2017 8 21 11 39 26 19 4.8978 181.54514 524.55862 504.04190 -3.09959 0.00000 -1.75491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08974 0.19966 -1.00000 - 8676 2017 8 21 11 39 30 916 4.8978 181.54296 524.53496 504.02076 -3.09936 0.00000 -1.75481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08938 0.19966 -1.00000 - 8677 2017 8 21 11 39 35 814 4.8978 181.54078 524.51131 503.99963 -3.09916 0.00000 -1.75471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08903 0.19966 -1.00000 - 8678 2017 8 21 11 39 40 712 4.8978 181.53860 524.48766 503.97850 -3.09898 0.00000 -1.75461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08867 0.19966 -1.00000 - 8679 2017 8 21 11 39 45 610 4.8979 181.53642 524.46403 503.95738 -3.09882 0.00000 -1.75452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08831 0.19966 -1.00000 - 8680 2017 8 21 11 39 50 508 4.8979 181.53424 524.44040 503.93627 -3.09868 0.00000 -1.75443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08796 0.19966 -1.00000 - 8681 2017 8 21 11 39 55 406 4.8979 181.53206 524.41678 503.91516 -3.09856 0.00000 -1.75435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08760 0.19965 -1.00000 - 8682 2017 8 21 11 40 0 304 4.8979 181.52988 524.39317 503.89406 -3.09849 0.00000 -1.75428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08724 0.19965 -1.00000 - 8683 2017 8 21 11 40 5 201 4.8979 181.52771 524.36958 503.87300 -3.09844 0.00000 -1.75420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08689 0.19965 -1.00000 - 8684 2017 8 21 11 40 10 99 4.8979 181.52553 524.34608 503.85195 -3.09845 0.00000 -1.75412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08653 0.19965 -1.00000 - 8685 2017 8 21 11 40 14 997 4.8979 181.52336 524.32254 503.83089 -3.09850 0.00000 -1.75403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08618 0.19965 -1.00000 - 8686 2017 8 21 11 40 19 895 4.8980 181.52118 524.29899 503.80982 -3.09860 0.00000 -1.75395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08582 0.19965 -1.00000 - 8687 2017 8 21 11 40 24 793 4.8980 181.51901 524.27543 503.78876 -3.09875 0.00000 -1.75387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08546 0.19965 -1.00000 - 8688 2017 8 21 11 40 29 691 4.8980 181.51684 524.25186 503.76769 -3.09897 0.00000 -1.75378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08511 0.19965 -1.00000 - 8689 2017 8 21 11 40 34 589 4.8980 181.51467 524.22827 503.74663 -3.09927 0.00000 -1.75369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08475 0.19965 -1.00000 - 8690 2017 8 21 11 40 39 487 4.8980 181.51251 524.20469 503.72558 -3.09964 0.00000 -1.75360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08439 0.19965 -1.00000 - 8691 2017 8 21 11 40 44 385 4.8980 181.51034 524.18111 503.70454 -3.10010 0.00000 -1.75350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08404 0.19965 -1.00000 - 8692 2017 8 21 11 40 49 283 4.8980 181.50817 524.15755 503.68352 -3.10064 0.00000 -1.75340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08368 0.19965 -1.00000 - 8693 2017 8 21 11 40 54 181 4.8980 181.50601 524.13402 503.66252 -3.10126 0.00000 -1.75330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08333 0.19965 -1.00000 - 8694 2017 8 21 11 40 59 79 4.8981 181.50385 524.11054 503.64156 -3.10195 0.00000 -1.75319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08297 0.19965 -1.00000 - 8695 2017 8 21 11 41 3 977 4.8981 181.50169 524.08713 503.62064 -3.10271 0.00000 -1.75307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08261 0.19965 -1.00000 - 8696 2017 8 21 11 41 8 876 4.8981 181.49953 524.06383 503.59982 -3.10353 0.00000 -1.75294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08226 0.19965 -1.00000 - 8697 2017 8 21 11 41 13 774 4.8981 181.49738 524.04076 503.57906 -3.10439 0.00000 -1.75279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08190 0.19965 -1.00000 - 8698 2017 8 21 11 41 18 672 4.8981 181.49522 524.01779 503.55835 -3.10527 0.00000 -1.75263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08155 0.19965 -1.00000 - 8699 2017 8 21 11 41 23 570 4.8981 181.49307 523.99495 503.53770 -3.10615 0.00000 -1.75244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08119 0.19965 -1.00000 - 8700 2017 8 21 11 41 28 468 4.8981 181.49092 523.97228 503.51710 -3.10700 0.00000 -1.75222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08083 0.19965 -1.00000 - 8701 2017 8 21 11 41 33 366 4.8982 181.48877 523.94977 503.49656 -3.10780 0.00000 -1.75196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08048 0.19965 -1.00000 - 8702 2017 8 21 11 41 38 264 4.8982 181.48663 523.92742 503.47607 -3.10854 0.00000 -1.75167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08012 0.19965 -1.00000 - 8703 2017 8 21 11 41 43 163 4.8982 181.48448 523.90521 503.45560 -3.10917 0.00000 -1.75134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07976 0.19965 -1.00000 - 8704 2017 8 21 11 41 48 61 4.8982 181.48234 523.88313 503.43515 -3.10970 0.00000 -1.75097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07941 0.19965 -1.00000 - 8705 2017 8 21 11 41 52 959 4.8982 181.48020 523.86111 503.41468 -3.11008 0.00000 -1.75057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07905 0.19965 -1.00000 - 8706 2017 8 21 11 41 57 857 4.8982 181.47806 523.83913 503.39417 -3.11031 0.00000 -1.75012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07870 0.19965 -1.00000 - 8707 2017 8 21 11 42 2 755 4.8982 181.47592 523.81711 503.37358 -3.11036 0.00000 -1.74963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07834 0.19965 -1.00000 - 8708 2017 8 21 11 42 7 654 4.8982 181.47378 523.79500 503.35294 -3.11023 0.00000 -1.74910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07798 0.19965 -1.00000 - 8709 2017 8 21 11 42 12 552 4.8983 181.47164 523.77283 503.33218 -3.10991 0.00000 -1.74854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07763 0.19964 -1.00000 - 8710 2017 8 21 11 42 17 450 4.8983 181.46951 523.75040 503.31124 -3.10942 0.00000 -1.74797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07727 0.19964 -1.00000 - 8711 2017 8 21 11 42 22 348 4.8983 181.46737 523.72765 503.29012 -3.10874 0.00000 -1.74739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07691 0.19964 -1.00000 - 8712 2017 8 21 11 42 27 247 4.8983 181.46524 523.70453 503.26880 -3.10791 0.00000 -1.74681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07656 0.19964 -1.00000 - 8713 2017 8 21 11 42 32 145 4.8983 181.46311 523.68100 503.24726 -3.10695 0.00000 -1.74623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07620 0.19964 -1.00000 - 8714 2017 8 21 11 42 37 43 4.8983 181.46097 523.65703 503.22550 -3.10589 0.00000 -1.74568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07585 0.19964 -1.00000 - 8715 2017 8 21 11 42 41 942 4.8983 181.45884 523.63260 503.20353 -3.10475 0.00000 -1.74518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07549 0.19964 -1.00000 - 8716 2017 8 21 11 42 46 840 4.8984 181.45671 523.60770 503.18136 -3.10358 0.00000 -1.74474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07513 0.19964 -1.00000 - 8717 2017 8 21 11 42 51 738 4.8984 181.45458 523.58234 503.15899 -3.10241 0.00000 -1.74436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07478 0.19964 -1.00000 - 8718 2017 8 21 11 42 56 637 4.8984 181.45246 523.55654 503.13646 -3.10126 0.00000 -1.74405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07442 0.19964 -1.00000 - 8719 2017 8 21 11 43 1 535 4.8984 181.45033 523.53035 503.11379 -3.10016 0.00000 -1.74382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07406 0.19964 -1.00000 - 8720 2017 8 21 11 43 6 434 4.8984 181.44820 523.50382 503.09107 -3.09916 0.00000 -1.74370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07371 0.19964 -1.00000 - 8721 2017 8 21 11 43 11 332 4.8984 181.44607 523.47714 503.06828 -3.09827 0.00000 -1.74368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07335 0.19964 -1.00000 - 8722 2017 8 21 11 43 16 231 4.8984 181.44395 523.45020 503.04546 -3.09751 0.00000 -1.74376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07300 0.19964 -1.00000 - 8723 2017 8 21 11 43 21 129 4.8985 181.44182 523.42312 503.02264 -3.09688 0.00000 -1.74394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07264 0.19964 -1.00000 - 8724 2017 8 21 11 43 26 27 4.8985 181.43970 523.39596 502.99988 -3.09639 0.00000 -1.74421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07228 0.19964 -1.00000 - 8725 2017 8 21 11 43 30 926 4.8985 181.43757 523.36884 502.97720 -3.09604 0.00000 -1.74458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07193 0.19964 -1.00000 - 8726 2017 8 21 11 43 35 824 4.8985 181.43545 523.34182 502.95466 -3.09582 0.00000 -1.74504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07157 0.19964 -1.00000 - 8727 2017 8 21 11 43 40 723 4.8985 181.43333 523.31500 502.93229 -3.09573 0.00000 -1.74558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07122 0.19964 -1.00000 - 8728 2017 8 21 11 43 45 621 4.8985 181.43120 523.28845 502.91012 -3.09573 0.00000 -1.74619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07086 0.19964 -1.00000 - 8729 2017 8 21 11 43 50 520 4.8985 181.42908 523.26224 502.88817 -3.09581 0.00000 -1.74685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07050 0.19964 -1.00000 - 8730 2017 8 21 11 43 55 419 4.8985 181.42696 523.23643 502.86647 -3.09592 0.00000 -1.74753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07015 0.19964 -1.00000 - 8731 2017 8 21 11 44 0 317 4.8986 181.42484 523.21106 502.84503 -3.09604 0.00000 -1.74824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06979 0.19964 -1.00000 - 8732 2017 8 21 11 44 5 216 4.8986 181.42272 523.18620 502.82391 -3.09613 0.00000 -1.74897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06943 0.19964 -1.00000 - 8733 2017 8 21 11 44 10 114 4.8986 181.42060 523.16199 502.80309 -3.09617 0.00000 -1.74968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06908 0.19964 -1.00000 - 8734 2017 8 21 11 44 15 13 4.8986 181.41848 523.13828 502.78252 -3.09611 0.00000 -1.75035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06872 0.19964 -1.00000 - 8735 2017 8 21 11 44 19 911 4.8986 181.41636 523.11509 502.76222 -3.09592 0.00000 -1.75096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06837 0.19964 -1.00000 - 8736 2017 8 21 11 44 24 810 4.8986 181.41425 523.09243 502.74217 -3.09559 0.00000 -1.75149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06801 0.19964 -1.00000 - 8737 2017 8 21 11 44 29 709 4.8986 181.41213 523.07028 502.72235 -3.09510 0.00000 -1.75195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06765 0.19963 -1.00000 - 8738 2017 8 21 11 44 34 607 4.8987 181.41002 523.04862 502.70276 -3.09444 0.00000 -1.75233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06730 0.19963 -1.00000 - 8739 2017 8 21 11 44 39 506 4.8987 181.40790 523.02742 502.68335 -3.09361 0.00000 -1.75260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06694 0.19963 -1.00000 - 8740 2017 8 21 11 44 44 405 4.8987 181.40579 523.00662 502.66410 -3.09263 0.00000 -1.75273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06658 0.19963 -1.00000 - 8741 2017 8 21 11 44 49 303 4.8987 181.40368 522.98618 502.64498 -3.09151 0.00000 -1.75273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06623 0.19963 -1.00000 - 8742 2017 8 21 11 44 54 202 4.8987 181.40157 522.96604 502.62597 -3.09024 0.00000 -1.75259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06587 0.19963 -1.00000 - 8743 2017 8 21 11 44 59 101 4.8987 181.39946 522.94615 502.60702 -3.08884 0.00000 -1.75233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06552 0.19963 -1.00000 - 8744 2017 8 21 11 45 4 0 4.8987 181.39735 522.92644 502.58810 -3.08731 0.00000 -1.75195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06516 0.19963 -1.00000 - 8745 2017 8 21 11 45 8 898 4.8988 181.39524 522.90685 502.56923 -3.08564 0.00000 -1.75142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06480 0.19963 -1.00000 - 8746 2017 8 21 11 45 13 797 4.8988 181.39313 522.88745 502.55035 -3.08378 0.00000 -1.75075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06445 0.19963 -1.00000 - 8747 2017 8 21 11 45 18 696 4.8988 181.39103 522.86801 502.53139 -3.08169 0.00000 -1.74994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06409 0.19963 -1.00000 - 8748 2017 8 21 11 45 23 595 4.8988 181.38892 522.84847 502.51233 -3.07929 0.00000 -1.74902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06373 0.19963 -1.00000 - 8749 2017 8 21 11 45 28 494 4.8988 181.38682 522.82879 502.49316 -3.07651 0.00000 -1.74799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06338 0.19963 -1.00000 - 8750 2017 8 21 11 45 33 392 4.8988 181.38472 522.80892 502.47384 -3.07323 0.00000 -1.74687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06302 0.19963 -1.00000 - 8751 2017 8 21 11 45 38 291 4.8988 181.38262 522.78881 502.45436 -3.06931 0.00000 -1.74565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06267 0.19963 -1.00000 - 8752 2017 8 21 11 45 43 190 4.8988 181.38052 522.76843 502.43471 -3.06461 0.00000 -1.74433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06231 0.19963 -1.00000 - 8753 2017 8 21 11 45 48 89 4.8989 181.37842 522.74773 502.41487 -3.05896 0.00000 -1.74295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06195 0.19963 -1.00000 - 8754 2017 8 21 11 45 52 988 4.8989 181.37633 522.72671 502.39484 -3.05221 0.00000 -1.74152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06160 0.19963 -1.00000 - 8755 2017 8 21 11 45 57 887 4.8989 181.37424 522.70533 502.37462 -3.04421 0.00000 -1.74007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06124 0.19963 -1.00000 - 8756 2017 8 21 11 46 2 786 4.8989 181.37215 522.68359 502.35420 -3.03581 0.00000 -1.73859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06088 0.19963 -1.00000 - 8757 2017 8 21 11 46 7 685 4.8989 181.37006 522.66149 502.33363 -3.02960 0.00000 -1.73707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06053 0.19963 -1.00000 - 8758 2017 8 21 11 46 12 583 4.8989 181.36798 522.63913 502.31288 -3.02215 0.00000 -1.73552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06017 0.19963 -1.00000 - 8759 2017 8 21 11 46 17 482 4.8989 181.36590 522.61637 502.29195 -3.01325 0.00000 -1.73397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05982 0.19963 -1.00000 - 8760 2017 8 21 11 46 22 381 4.8990 181.36382 522.59326 502.27084 -3.00599 0.00000 -1.73247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05946 0.19963 -1.00000 - 8761 2017 8 21 11 46 27 280 4.8990 181.36174 522.56980 502.24957 -2.99794 0.00000 -1.73100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05910 0.19963 -1.00000 - 8762 2017 8 21 11 46 32 179 4.8990 181.35967 522.54601 502.22815 -2.98817 0.00000 -1.72958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05875 0.19963 -1.00000 - 8763 2017 8 21 11 46 37 78 4.8990 181.35760 522.52193 502.20661 -2.97645 0.00000 -1.72820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05839 0.19963 -1.00000 - 8764 2017 8 21 11 46 41 977 4.8990 181.35553 522.49759 502.18496 -2.96262 0.00000 -1.72689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05803 0.19962 -1.00000 - 8765 2017 8 21 11 46 46 876 4.8990 181.35346 522.47302 502.16322 -2.94659 0.00000 -1.72570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05768 0.19962 -1.00000 - 8766 2017 8 21 11 46 51 775 4.8990 181.35140 522.44826 502.14141 -2.92835 0.00000 -1.72466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05732 0.19962 -1.00000 - 8767 2017 8 21 11 46 56 674 4.8990 181.34934 522.42335 502.11955 -2.91459 0.00000 -1.72379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05697 0.19962 -1.00000 - 8768 2017 8 21 11 47 1 573 4.8991 181.34729 522.39831 502.09766 -2.93931 0.00000 -1.72307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05661 0.19962 -1.00000 - 8769 2017 8 21 11 47 6 473 4.8991 181.34523 522.37319 502.07580 -2.96165 0.00000 -1.72253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05625 0.19962 -1.00000 - 8770 2017 8 21 11 47 11 372 4.8991 181.34318 522.34813 502.05395 -2.99815 0.00000 -1.72220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05590 0.19962 -1.00000 - 8771 2017 8 21 11 47 16 271 4.8991 181.34113 522.32302 502.03212 -3.03339 0.00000 -1.72214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05554 0.19962 -1.00000 - 8772 2017 8 21 11 47 21 170 4.8991 181.33909 522.29790 502.01031 -3.06536 0.00000 -1.72239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05518 0.19962 -1.00000 - 8773 2017 8 21 11 47 26 69 4.8991 181.33704 522.27280 501.98854 -3.09263 0.00000 -1.72296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05483 0.19962 -1.00000 - 8774 2017 8 21 11 47 30 968 4.8991 181.33500 522.24775 501.96681 -3.11420 0.00000 -1.72390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05447 0.19962 -1.00000 - 8775 2017 8 21 11 47 35 867 4.8992 181.33296 522.22277 501.94515 -3.14614 0.00000 -1.72523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05411 0.19962 -1.00000 - 8776 2017 8 21 11 47 40 766 4.8992 181.33093 522.19790 501.92356 -3.18363 0.00000 -1.72693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05376 0.19962 -1.00000 - 8777 2017 8 21 11 47 45 666 4.8992 181.32890 522.17316 501.90205 -3.21627 0.00000 -1.72906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05340 0.19962 -1.00000 - 8778 2017 8 21 11 47 50 565 4.8992 181.32687 522.14855 501.88063 -3.24258 0.00000 -1.73160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05305 0.19962 -1.00000 - 8779 2017 8 21 11 47 55 464 4.8992 181.32484 522.12410 501.85930 -3.26493 0.00000 -1.73450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05269 0.19962 -1.00000 - 8780 2017 8 21 11 48 0 363 4.8992 181.32282 522.09979 501.83805 -3.30647 0.00000 -1.73776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05233 0.19962 -1.00000 - 8781 2017 8 21 11 48 5 262 4.8992 181.32079 522.07566 501.81694 -3.34297 0.00000 -1.74134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05198 0.19962 -1.00000 - 8782 2017 8 21 11 48 10 162 4.8992 181.31878 522.05184 501.79593 -3.37223 0.00000 -1.74527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05162 0.19962 -1.00000 - 8783 2017 8 21 11 48 15 61 4.8993 181.31676 522.02819 501.77501 -3.39276 0.00000 -1.74951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05126 0.19962 -1.00000 - 8784 2017 8 21 11 48 19 960 4.8993 181.31474 522.00469 501.75417 -3.40389 0.00000 -1.75403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05091 0.19962 -1.00000 - 8785 2017 8 21 11 48 24 859 4.8993 181.31273 521.98135 501.73341 -3.42412 0.00000 -1.75879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05055 0.19962 -1.00000 - 8786 2017 8 21 11 48 29 759 4.8993 181.31072 521.95816 501.71271 -3.45366 0.00000 -1.76370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05020 0.19962 -1.00000 - 8787 2017 8 21 11 48 34 658 4.8993 181.30872 521.93512 501.69209 -3.47407 0.00000 -1.76866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04984 0.19962 -1.00000 - 8788 2017 8 21 11 48 39 557 4.8993 181.30671 521.91222 501.67153 -3.48472 0.00000 -1.77362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04948 0.19962 -1.00000 - 8789 2017 8 21 11 48 44 457 4.8993 181.30471 521.88945 501.65102 -3.51513 0.00000 -1.77849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04913 0.19962 -1.00000 - 8790 2017 8 21 11 48 49 356 4.8993 181.30271 521.86680 501.63057 -3.54864 0.00000 -1.78314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04877 0.19962 -1.00000 - 8791 2017 8 21 11 48 54 255 4.8994 181.30072 521.84425 501.61016 -3.57262 0.00000 -1.78740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04841 0.19962 -1.00000 - 8792 2017 8 21 11 48 59 155 4.8994 181.29872 521.82178 501.58979 -3.58663 0.00000 -1.79109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04806 0.19961 -1.00000 - 8793 2017 8 21 11 49 4 54 4.8994 181.29673 521.79938 501.56943 -3.61323 0.00000 -1.79417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04770 0.19961 -1.00000 - 8794 2017 8 21 11 49 8 954 4.8994 181.29474 521.77702 501.54915 -3.69383 0.00000 -1.79666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04735 0.19961 -1.00000 - 8795 2017 8 21 11 49 13 853 4.8994 181.29275 521.75484 501.52891 -3.76782 0.00000 -1.79851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04699 0.19961 -1.00000 - 8796 2017 8 21 11 49 18 752 4.8994 181.29077 521.73269 501.50866 -3.83301 0.00000 -1.79964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04663 0.19961 -1.00000 - 8797 2017 8 21 11 49 23 652 4.8994 181.28878 521.71053 501.48840 -3.88697 0.00000 -1.79997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04628 0.19961 -1.00000 - 8798 2017 8 21 11 49 28 551 4.8994 181.28680 521.68839 501.46813 -3.92789 0.00000 -1.79946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04592 0.19961 -1.00000 - 8799 2017 8 21 11 49 33 451 4.8995 181.28483 521.66629 501.44784 -3.95438 0.00000 -1.79806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04556 0.19961 -1.00000 - 8800 2017 8 21 11 49 38 350 4.8995 181.28285 521.64414 501.42753 -4.01629 0.00000 -1.79576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04521 0.19961 -1.00000 - 8801 2017 8 21 11 49 43 250 4.8995 181.28088 521.62198 501.40720 -4.06593 0.00000 -1.79254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04485 0.19961 -1.00000 - 8802 2017 8 21 11 49 48 149 4.8995 181.27890 521.59976 501.38684 -4.09472 0.00000 -1.78838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04450 0.19961 -1.00000 - 8803 2017 8 21 11 49 53 49 4.8995 181.27693 521.57746 501.36644 -4.09951 0.00000 -1.78325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04414 0.19961 -1.00000 - 8804 2017 8 21 11 49 57 948 4.8995 181.27497 521.55504 501.34600 -4.07910 0.00000 -1.77718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04378 0.19961 -1.00000 - 8805 2017 8 21 11 50 2 848 4.8995 181.27300 521.53252 501.32552 -4.03339 0.00000 -1.77028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04343 0.19961 -1.00000 - 8806 2017 8 21 11 50 7 747 4.8995 181.27104 521.50990 501.30505 -3.96324 0.00000 -1.76268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04307 0.19961 -1.00000 - 8807 2017 8 21 11 50 12 647 4.8996 181.26908 521.48729 501.28457 -3.87033 0.00000 -1.75448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04271 0.19961 -1.00000 - 8808 2017 8 21 11 50 17 546 4.8996 181.26712 521.46457 501.26405 -3.75697 0.00000 -1.74579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04236 0.19961 -1.00000 - 8809 2017 8 21 11 50 22 446 4.8996 181.26516 521.44171 501.24349 -3.62592 0.00000 -1.73670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04200 0.19961 -1.00000 - 8810 2017 8 21 11 50 27 346 4.8996 181.26321 521.41874 501.22288 -3.48025 0.00000 -1.72733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04164 0.19961 -1.00000 - 8811 2017 8 21 11 50 32 245 4.8996 181.26125 521.39568 501.20225 -3.32347 0.00000 -1.71786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04129 0.19961 -1.00000 - 8812 2017 8 21 11 50 37 145 4.8996 181.25930 521.37255 501.18160 -3.16049 0.00000 -1.70851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04093 0.19961 -1.00000 - 8813 2017 8 21 11 50 42 44 4.8996 181.25735 521.34937 501.16095 -2.99674 0.00000 -1.69947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04058 0.19961 -1.00000 - 8814 2017 8 21 11 50 46 944 4.8996 181.25541 521.32617 501.14028 -2.83554 0.00000 -1.69088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04022 0.19961 -1.00000 - 8815 2017 8 21 11 50 51 844 4.8996 181.25346 521.30294 501.11962 -2.81853 0.00000 -1.68277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03986 0.19961 -1.00000 - 8816 2017 8 21 11 50 56 743 4.8997 181.25152 521.27975 501.09897 -2.86391 0.00000 -1.67526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03951 0.19961 -1.00000 - 8817 2017 8 21 11 51 1 643 4.8997 181.24958 521.25659 501.07833 -2.90797 0.00000 -1.66841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03915 0.19961 -1.00000 - 8818 2017 8 21 11 51 6 543 4.8997 181.24764 521.23348 501.05777 -2.94965 0.00000 -1.66224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03879 0.19961 -1.00000 - 8819 2017 8 21 11 51 11 442 4.8997 181.24571 521.21055 501.03727 -2.98806 0.00000 -1.65682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03844 0.19961 -1.00000 - 8820 2017 8 21 11 51 16 342 4.8997 181.24377 521.18768 501.01679 -3.02257 0.00000 -1.65217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03808 0.19960 -1.00000 - 8821 2017 8 21 11 51 21 242 4.8997 181.24184 521.16482 500.99632 -3.05277 0.00000 -1.64830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03773 0.19960 -1.00000 - 8822 2017 8 21 11 51 26 142 4.8997 181.23991 521.14202 500.97588 -3.07824 0.00000 -1.64530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03737 0.19960 -1.00000 - 8823 2017 8 21 11 51 31 41 4.8997 181.23798 521.11928 500.95548 -3.09864 0.00000 -1.64328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03701 0.19960 -1.00000 - 8824 2017 8 21 11 51 35 941 4.8998 181.23606 521.09663 500.93511 -3.11362 0.00000 -1.64227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03666 0.19960 -1.00000 - 8825 2017 8 21 11 51 40 841 4.8998 181.23413 521.07408 500.91478 -3.12289 0.00000 -1.64223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03630 0.19960 -1.00000 - 8826 2017 8 21 11 51 45 741 4.8998 181.23221 521.05161 500.89449 -3.12626 0.00000 -1.64310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03594 0.19960 -1.00000 - 8827 2017 8 21 11 51 50 640 4.8998 181.23029 521.02922 500.87423 -3.12371 0.00000 -1.64482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03559 0.19960 -1.00000 - 8828 2017 8 21 11 51 55 540 4.8998 181.22837 521.00692 500.85401 -3.11534 0.00000 -1.64737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03523 0.19960 -1.00000 - 8829 2017 8 21 11 52 0 440 4.8998 181.22646 520.98471 500.83383 -3.10142 0.00000 -1.65073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03487 0.19960 -1.00000 - 8830 2017 8 21 11 52 5 340 4.8998 181.22454 520.96260 500.81374 -3.08236 0.00000 -1.65483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03452 0.19960 -1.00000 - 8831 2017 8 21 11 52 10 240 4.8998 181.22263 520.94068 500.79369 -3.05870 0.00000 -1.65955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03416 0.19960 -1.00000 - 8832 2017 8 21 11 52 15 140 4.8999 181.22072 520.91881 500.77366 -3.03107 0.00000 -1.66477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03381 0.19960 -1.00000 - 8833 2017 8 21 11 52 20 39 4.8999 181.21882 520.89696 500.75364 -3.00217 0.00000 -1.67039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03345 0.19960 -1.00000 - 8834 2017 8 21 11 52 24 939 4.8999 181.21691 520.87514 500.73363 -2.97548 0.00000 -1.67630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03309 0.19960 -1.00000 - 8835 2017 8 21 11 52 29 839 4.8999 181.21501 520.85334 500.71363 -2.94753 0.00000 -1.68234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03274 0.19960 -1.00000 - 8836 2017 8 21 11 52 34 739 4.8999 181.21311 520.83155 500.69363 -2.91923 0.00000 -1.68838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03238 0.19960 -1.00000 - 8837 2017 8 21 11 52 39 639 4.8999 181.21121 520.80977 500.67362 -2.89171 0.00000 -1.69429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03202 0.19960 -1.00000 - 8838 2017 8 21 11 52 44 539 4.8999 181.20932 520.78794 500.65359 -2.91791 0.00000 -1.69997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03167 0.19960 -1.00000 - 8839 2017 8 21 11 52 49 439 4.8999 181.20742 520.76609 500.63356 -2.94799 0.00000 -1.70544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03131 0.19960 -1.00000 - 8840 2017 8 21 11 52 54 339 4.8999 181.20553 520.74421 500.61351 -3.02379 0.00000 -1.71073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03095 0.19960 -1.00000 - 8841 2017 8 21 11 52 59 239 4.9000 181.20364 520.72231 500.59346 -3.09402 0.00000 -1.71583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03060 0.19960 -1.00000 - 8842 2017 8 21 11 53 4 139 4.9000 181.20175 520.70037 500.57338 -3.15845 0.00000 -1.72070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03024 0.19960 -1.00000 - 8843 2017 8 21 11 53 9 39 4.9000 181.19987 520.67838 500.55334 -3.21626 0.00000 -1.72523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02989 0.19960 -1.00000 - 8844 2017 8 21 11 53 13 939 4.9000 181.19798 520.65648 500.53331 -3.26699 0.00000 -1.72939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02953 0.19960 -1.00000 - 8845 2017 8 21 11 53 18 839 4.9000 181.19610 520.63456 500.51327 -3.31047 0.00000 -1.73322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02917 0.19960 -1.00000 - 8846 2017 8 21 11 53 23 739 4.9000 181.19422 520.61260 500.49321 -3.34692 0.00000 -1.73671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02882 0.19960 -1.00000 - 8847 2017 8 21 11 53 28 639 4.9000 181.19234 520.59061 500.47315 -3.37659 0.00000 -1.73981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02846 0.19959 -1.00000 - 8848 2017 8 21 11 53 33 539 4.9000 181.19047 520.56854 500.45306 -3.39960 0.00000 -1.74248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02810 0.19959 -1.00000 - 8849 2017 8 21 11 53 38 439 4.9001 181.18859 520.54640 500.43294 -3.43399 0.00000 -1.74465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02775 0.19959 -1.00000 - 8850 2017 8 21 11 53 43 339 4.9001 181.18672 520.52420 500.41281 -3.46339 0.00000 -1.74638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02739 0.19959 -1.00000 - 8851 2017 8 21 11 53 48 239 4.9001 181.18485 520.50197 500.39268 -3.48158 0.00000 -1.74770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02704 0.19959 -1.00000 - 8852 2017 8 21 11 53 53 139 4.9001 181.18299 520.47971 500.37253 -3.48827 0.00000 -1.74864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02668 0.19959 -1.00000 - 8853 2017 8 21 11 53 58 39 4.9001 181.18112 520.45742 500.35238 -3.48379 0.00000 -1.74916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02632 0.19959 -1.00000 - 8854 2017 8 21 11 54 2 939 4.9001 181.17926 520.43508 500.33220 -3.46892 0.00000 -1.74923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02597 0.19959 -1.00000 - 8855 2017 8 21 11 54 7 839 4.9001 181.17740 520.41272 500.31206 -3.44480 0.00000 -1.74887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02561 0.19959 -1.00000 - 8856 2017 8 21 11 54 12 739 4.9001 181.17554 520.39049 500.29195 -3.41286 0.00000 -1.74817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02525 0.19959 -1.00000 - 8857 2017 8 21 11 54 17 640 4.9001 181.17368 520.36827 500.27184 -3.37468 0.00000 -1.74721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02490 0.19959 -1.00000 - 8858 2017 8 21 11 54 22 540 4.9002 181.17182 520.34604 500.25173 -3.33184 0.00000 -1.74600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02454 0.19959 -1.00000 - 8859 2017 8 21 11 54 27 440 4.9002 181.16997 520.32379 500.23161 -3.28594 0.00000 -1.74455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02418 0.19959 -1.00000 - 8860 2017 8 21 11 54 32 340 4.9002 181.16812 520.30152 500.21147 -3.25524 0.00000 -1.74285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02383 0.19959 -1.00000 - 8861 2017 8 21 11 54 37 240 4.9002 181.16627 520.27924 500.19134 -3.23752 0.00000 -1.74098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02347 0.19959 -1.00000 - 8862 2017 8 21 11 54 42 141 4.9002 181.16442 520.25699 500.17121 -3.21660 0.00000 -1.73906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02312 0.19959 -1.00000 - 8863 2017 8 21 11 54 47 41 4.9002 181.16258 520.23476 500.15109 -3.19339 0.00000 -1.73713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02276 0.19959 -1.00000 - 8864 2017 8 21 11 54 51 941 4.9002 181.16074 520.21256 500.13098 -3.17356 0.00000 -1.73517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02240 0.19959 -1.00000 - 8865 2017 8 21 11 54 56 841 4.9002 181.15889 520.19036 500.11086 -3.16595 0.00000 -1.73312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02205 0.19959 -1.00000 - 8866 2017 8 21 11 55 1 741 4.9002 181.15706 520.16816 500.09074 -3.15751 0.00000 -1.73098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02169 0.19959 -1.00000 - 8867 2017 8 21 11 55 6 642 4.9003 181.15522 520.14600 500.07068 -3.14855 0.00000 -1.72884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02133 0.19959 -1.00000 - 8868 2017 8 21 11 55 11 542 4.9003 181.15338 520.12401 500.05067 -3.13908 0.00000 -1.72677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02098 0.19959 -1.00000 - 8869 2017 8 21 11 55 16 442 4.9003 181.15155 520.10206 500.03067 -3.12984 0.00000 -1.72473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02062 0.19959 -1.00000 - 8870 2017 8 21 11 55 21 343 4.9003 181.14972 520.08013 500.01066 -3.12146 0.00000 -1.72272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02026 0.19959 -1.00000 - 8871 2017 8 21 11 55 26 243 4.9003 181.14789 520.05818 499.99065 -3.11108 0.00000 -1.72066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01991 0.19959 -1.00000 - 8872 2017 8 21 11 55 31 143 4.9003 181.14607 520.03622 499.97063 -3.09903 0.00000 -1.71861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01955 0.19959 -1.00000 - 8873 2017 8 21 11 55 36 43 4.9003 181.14424 520.01429 499.95063 -3.08563 0.00000 -1.71664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01920 0.19959 -1.00000 - 8874 2017 8 21 11 55 40 944 4.9003 181.14242 519.99239 499.93063 -3.07191 0.00000 -1.71477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01884 0.19959 -1.00000 - 8875 2017 8 21 11 55 45 844 4.9003 181.14060 519.97050 499.91063 -3.05960 0.00000 -1.71294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01848 0.19958 -1.00000 - 8876 2017 8 21 11 55 50 744 4.9004 181.13878 519.94859 499.89062 -3.04727 0.00000 -1.71111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01813 0.19958 -1.00000 - 8877 2017 8 21 11 55 55 645 4.9004 181.13696 519.92667 499.87061 -3.03494 0.00000 -1.70922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01777 0.19958 -1.00000 - 8878 2017 8 21 11 56 0 545 4.9004 181.13515 519.90476 499.85060 -3.02257 0.00000 -1.70736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01741 0.19958 -1.00000 - 8879 2017 8 21 11 56 5 446 4.9004 181.13334 519.88287 499.83066 -3.01011 0.00000 -1.70554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01706 0.19958 -1.00000 - 8880 2017 8 21 11 56 10 346 4.9004 181.13152 519.86112 499.81075 -2.99751 0.00000 -1.70373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01670 0.19958 -1.00000 - 8881 2017 8 21 11 56 15 246 4.9004 181.12972 519.83938 499.79084 -2.98485 0.00000 -1.70191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01634 0.19958 -1.00000 - 8882 2017 8 21 11 56 20 147 4.9004 181.12791 519.81763 499.77092 -2.97225 0.00000 -1.70000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01599 0.19958 -1.00000 - 8883 2017 8 21 11 56 25 47 4.9004 181.12610 519.79587 499.75101 -2.95990 0.00000 -1.69804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01563 0.19958 -1.00000 - 8884 2017 8 21 11 56 29 948 4.9004 181.12430 519.77411 499.73110 -2.94789 0.00000 -1.69609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01528 0.19958 -1.00000 - 8885 2017 8 21 11 56 34 848 4.9005 181.12250 519.75236 499.71120 -2.93631 0.00000 -1.69419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01492 0.19958 -1.00000 - 8886 2017 8 21 11 56 39 749 4.9005 181.12070 519.73061 499.69130 -2.92517 0.00000 -1.69229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01456 0.19958 -1.00000 - 8887 2017 8 21 11 56 44 649 4.9005 181.11890 519.70882 499.67140 -2.91444 0.00000 -1.69034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01421 0.19958 -1.00000 - 8888 2017 8 21 11 56 49 550 4.9005 181.11710 519.68702 499.65150 -2.90403 0.00000 -1.68833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01385 0.19958 -1.00000 - 8889 2017 8 21 11 56 54 450 4.9005 181.11531 519.66521 499.63161 -2.89385 0.00000 -1.68632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01349 0.19958 -1.00000 - 8890 2017 8 21 11 56 59 351 4.9005 181.11351 519.64342 499.61174 -2.88392 0.00000 -1.68437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01314 0.19958 -1.00000 - 8891 2017 8 21 11 57 4 251 4.9005 181.11172 519.62164 499.59187 -2.87427 0.00000 -1.68245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01278 0.19958 -1.00000 - 8892 2017 8 21 11 57 9 152 4.9005 181.10993 519.59986 499.57206 -2.86501 0.00000 -1.68056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01242 0.19958 -1.00000 - 8893 2017 8 21 11 57 14 52 4.9005 181.10814 519.57818 499.55229 -2.85624 0.00000 -1.67864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01207 0.19958 -1.00000 - 8894 2017 8 21 11 57 18 953 4.9006 181.10636 519.55652 499.53254 -2.84807 0.00000 -1.67672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01171 0.19958 -1.00000 - 8895 2017 8 21 11 57 23 853 4.9006 181.10457 519.53487 499.51280 -2.84062 0.00000 -1.67487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01136 0.19958 -1.00000 - 8896 2017 8 21 11 57 28 754 4.9006 181.10279 519.51325 499.49308 -2.83398 0.00000 -1.67313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01100 0.19958 -1.00000 - 8897 2017 8 21 11 57 33 655 4.9006 181.10101 519.49164 499.47337 -2.82823 0.00000 -1.67148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01064 0.19958 -1.00000 - 8898 2017 8 21 11 57 38 555 4.9006 181.09923 519.47001 499.45366 -2.82342 0.00000 -1.66987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01029 0.19958 -1.00000 - 8899 2017 8 21 11 57 43 456 4.9006 181.09745 519.44837 499.43396 -2.81956 0.00000 -1.66829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00993 0.19958 -1.00000 - 8900 2017 8 21 11 57 48 356 4.9006 181.09567 519.42675 499.41428 -2.81664 0.00000 -1.66682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00957 0.19958 -1.00000 - 8901 2017 8 21 11 57 53 257 4.9006 181.09389 519.40516 499.39462 -2.81462 0.00000 -1.66552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00922 0.19958 -1.00000 - 8902 2017 8 21 11 57 58 158 4.9006 181.09212 519.38361 499.37498 -2.81344 0.00000 -1.66438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00886 0.19958 -1.00000 - 8903 2017 8 21 11 58 3 58 4.9007 181.09035 519.36207 499.35535 -2.81299 0.00000 -1.66340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00850 0.19957 -1.00000 - 8904 2017 8 21 11 58 7 959 4.9007 181.08857 519.34054 499.33578 -2.81321 0.00000 -1.66248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00815 0.19957 -1.00000 - 8905 2017 8 21 11 58 12 860 4.9007 181.08681 519.31914 499.31625 -2.81405 0.00000 -1.66167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00779 0.19957 -1.00000 - 8906 2017 8 21 11 58 17 760 4.9007 181.08504 519.29780 499.29675 -2.81544 0.00000 -1.66103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00744 0.19957 -1.00000 - 8907 2017 8 21 11 58 22 661 4.9007 181.08327 519.27651 499.27728 -2.81728 0.00000 -1.66059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00708 0.19957 -1.00000 - 8908 2017 8 21 11 58 27 562 4.9007 181.08151 519.25526 499.25782 -2.81953 0.00000 -1.66030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00672 0.19957 -1.00000 - 8909 2017 8 21 11 58 32 462 4.9007 181.07974 519.23400 499.23837 -2.82215 0.00000 -1.66013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00637 0.19957 -1.00000 - 8910 2017 8 21 11 58 37 363 4.9007 181.07798 519.21276 499.21892 -2.82511 0.00000 -1.66000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00601 0.19957 -1.00000 - 8911 2017 8 21 11 58 42 264 4.9007 181.07622 519.19154 499.19949 -2.82835 0.00000 -1.66000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00565 0.19957 -1.00000 - 8912 2017 8 21 11 58 47 165 4.9008 181.07446 519.17036 499.18008 -2.83178 0.00000 -1.66016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00530 0.19957 -1.00000 - 8913 2017 8 21 11 58 52 65 4.9008 181.07270 519.14922 499.16068 -2.83531 0.00000 -1.66045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00494 0.19957 -1.00000 - 8914 2017 8 21 11 58 56 966 4.9008 181.07095 519.12810 499.14129 -2.83883 0.00000 -1.66086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00458 0.19957 -1.00000 - 8915 2017 8 21 11 59 1 867 4.9008 181.06919 519.10698 499.12191 -2.84223 0.00000 -1.66127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00423 0.19957 -1.00000 - 8916 2017 8 21 11 59 6 768 4.9008 181.06744 519.08588 499.10257 -2.84554 0.00000 -1.66171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00387 0.19957 -1.00000 - 8917 2017 8 21 11 59 11 669 4.9008 181.06569 519.06491 499.08328 -2.84878 0.00000 -1.66223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00351 0.19957 -1.00000 - 8918 2017 8 21 11 59 16 569 4.9008 181.06394 519.04402 499.06402 -2.85197 0.00000 -1.66285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00316 0.19957 -1.00000 - 8919 2017 8 21 11 59 21 470 4.9008 181.06219 519.02315 499.04477 -2.85517 0.00000 -1.66351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00280 0.19957 -1.00000 - 8920 2017 8 21 11 59 26 371 4.9008 181.06045 519.00227 499.02551 -2.85842 0.00000 -1.66417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00245 0.19957 -1.00000 - 8921 2017 8 21 11 59 31 272 4.9009 181.05870 518.98139 499.00625 -2.86171 0.00000 -1.66476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00209 0.19957 -1.00000 - 8922 2017 8 21 11 59 36 173 4.9009 181.05696 518.96051 498.98700 -2.86497 0.00000 -1.66534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00173 0.19957 -1.00000 - 8923 2017 8 21 11 59 41 74 4.9009 181.05522 518.93967 498.96776 -2.86811 0.00000 -1.66595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00138 0.19957 -1.00000 - 8924 2017 8 21 11 59 45 975 4.9009 181.05348 518.91885 498.94854 -2.87104 0.00000 -1.66657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00102 0.19957 -1.00000 - 8925 2017 8 21 11 59 50 875 4.9009 181.05175 518.89803 498.92931 -2.87371 0.00000 -1.66720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00066 0.19957 -1.00000 - 8926 2017 8 21 11 59 55 776 4.9009 181.05001 518.87720 498.91007 -2.87613 0.00000 -1.66772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00031 0.19957 -1.00000 - 8927 2017 8 21 12 0 0 677 4.9009 181.04828 518.85634 498.89083 -2.87831 0.00000 -1.66813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28314 0.19957 -1.00000 - 8928 2017 8 21 12 0 5 578 4.9009 181.04655 518.83552 498.87164 -2.88031 0.00000 -1.66854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28278 0.19957 -1.00000 - 8929 2017 8 21 12 0 10 479 4.9009 181.04482 518.81483 498.85250 -2.88215 0.00000 -1.66897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28242 0.19957 -1.00000 - 8930 2017 8 21 12 0 15 380 4.9009 181.04309 518.79417 498.83337 -2.88386 0.00000 -1.66937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28207 0.19957 -1.00000 - 8931 2017 8 21 12 0 20 281 4.9010 181.04136 518.77350 498.81423 -2.88549 0.00000 -1.66971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28171 0.19956 -1.00000 - 8932 2017 8 21 12 0 25 182 4.9010 181.03964 518.75282 498.79510 -2.88708 0.00000 -1.66993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28135 0.19956 -1.00000 - 8933 2017 8 21 12 0 30 83 4.9010 181.03791 518.73215 498.77598 -2.88865 0.00000 -1.67007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28100 0.19956 -1.00000 - 8934 2017 8 21 12 0 34 984 4.9010 181.03619 518.71151 498.75688 -2.89024 0.00000 -1.67022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28064 0.19956 -1.00000 - 8935 2017 8 21 12 0 39 885 4.9010 181.03447 518.69091 498.73780 -2.89188 0.00000 -1.67037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28028 0.19956 -1.00000 - 8936 2017 8 21 12 0 44 786 4.9010 181.03276 518.67033 498.71873 -2.89355 0.00000 -1.67052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27993 0.19956 -1.00000 - 8937 2017 8 21 12 0 49 687 4.9010 181.03104 518.64974 498.69966 -2.89527 0.00000 -1.67056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27957 0.19956 -1.00000 - 8938 2017 8 21 12 0 54 588 4.9010 181.02933 518.62915 498.68060 -2.89700 0.00000 -1.67049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27922 0.19956 -1.00000 - 8939 2017 8 21 12 0 59 489 4.9010 181.02762 518.60860 498.66157 -2.89873 0.00000 -1.67043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27886 0.19956 -1.00000 - 8940 2017 8 21 12 1 4 390 4.9011 181.02591 518.58810 498.64255 -2.90045 0.00000 -1.67043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27850 0.19956 -1.00000 - 8941 2017 8 21 12 1 9 291 4.9011 181.02420 518.56763 498.62360 -2.90215 0.00000 -1.67043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27815 0.19956 -1.00000 - 8942 2017 8 21 12 1 14 192 4.9011 181.02249 518.54728 498.60469 -2.90379 0.00000 -1.67041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27779 0.19956 -1.00000 - 8943 2017 8 21 12 1 19 93 4.9011 181.02079 518.52695 498.58580 -2.90536 0.00000 -1.67028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27743 0.19956 -1.00000 - 8944 2017 8 21 12 1 23 994 4.9011 181.01908 518.50666 498.56693 -2.90685 0.00000 -1.67011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27708 0.19956 -1.00000 - 8945 2017 8 21 12 1 28 896 4.9011 181.01738 518.48642 498.54809 -2.90829 0.00000 -1.66999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27672 0.19956 -1.00000 - 8946 2017 8 21 12 1 33 797 4.9011 181.01568 518.46622 498.52928 -2.90966 0.00000 -1.66988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27636 0.19956 -1.00000 - 8947 2017 8 21 12 1 38 698 4.9011 181.01399 518.44606 498.51048 -2.91097 0.00000 -1.66981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27601 0.19956 -1.00000 - 8948 2017 8 21 12 1 43 599 4.9011 181.01229 518.42589 498.49168 -2.91222 0.00000 -1.66965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27565 0.19956 -1.00000 - 8949 2017 8 21 12 1 48 500 4.9011 181.01060 518.40573 498.47290 -2.91339 0.00000 -1.66938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27529 0.19956 -1.00000 - 8950 2017 8 21 12 1 53 401 4.9012 181.00891 518.38560 498.45414 -2.91450 0.00000 -1.66913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27494 0.19956 -1.00000 - 8951 2017 8 21 12 1 58 302 4.9012 181.00722 518.36554 498.43540 -2.91550 0.00000 -1.66893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27458 0.19956 -1.00000 - 8952 2017 8 21 12 2 3 204 4.9012 181.00553 518.34549 498.41668 -2.91638 0.00000 -1.66872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27423 0.19956 -1.00000 - 8953 2017 8 21 12 2 8 105 4.9012 181.00384 518.32547 498.39801 -2.91712 0.00000 -1.66849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27387 0.19956 -1.00000 - 8954 2017 8 21 12 2 13 6 4.9012 181.00216 518.30553 498.37937 -2.91770 0.00000 -1.66813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27351 0.19956 -1.00000 - 8955 2017 8 21 12 2 17 907 4.9012 181.00047 518.28563 498.36076 -2.91811 0.00000 -1.66768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27316 0.19956 -1.00000 - 8956 2017 8 21 12 2 22 808 4.9012 180.99879 518.26580 498.34219 -2.91831 0.00000 -1.66724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27280 0.19956 -1.00000 - 8957 2017 8 21 12 2 27 710 4.9012 180.99711 518.24601 498.32363 -2.91829 0.00000 -1.66677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27244 0.19956 -1.00000 - 8958 2017 8 21 12 2 32 611 4.9012 180.99544 518.22625 498.30509 -2.91802 0.00000 -1.66629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27209 0.19955 -1.00000 - 8959 2017 8 21 12 2 37 512 4.9012 180.99376 518.20648 498.28655 -2.91746 0.00000 -1.66566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27173 0.19955 -1.00000 - 8960 2017 8 21 12 2 42 413 4.9013 180.99209 518.18671 498.26803 -2.91661 0.00000 -1.66487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27137 0.19955 -1.00000 - 8961 2017 8 21 12 2 47 315 4.9013 180.99042 518.16698 498.24952 -2.91542 0.00000 -1.66404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27102 0.19955 -1.00000 - 8962 2017 8 21 12 2 52 216 4.9013 180.98875 518.14729 498.23102 -2.91388 0.00000 -1.66320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27066 0.19955 -1.00000 - 8963 2017 8 21 12 2 57 117 4.9013 180.98708 518.12761 498.21254 -2.91196 0.00000 -1.66229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27030 0.19955 -1.00000 - 8964 2017 8 21 12 3 2 19 4.9013 180.98542 518.10793 498.19406 -2.90965 0.00000 -1.66132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26995 0.19955 -1.00000 - 8965 2017 8 21 12 3 6 920 4.9013 180.98375 518.08824 498.17562 -2.90693 0.00000 -1.66015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26959 0.19955 -1.00000 - 8966 2017 8 21 12 3 11 821 4.9013 180.98209 518.06864 498.15722 -2.90381 0.00000 -1.65887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26924 0.19955 -1.00000 - 8967 2017 8 21 12 3 16 722 4.9013 180.98043 518.04910 498.13885 -2.90027 0.00000 -1.65754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26888 0.19955 -1.00000 - 8968 2017 8 21 12 3 21 624 4.9013 180.97878 518.02960 498.12050 -2.89631 0.00000 -1.65614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26852 0.19955 -1.00000 - 8969 2017 8 21 12 3 26 525 4.9013 180.97712 518.01012 498.10215 -2.89193 0.00000 -1.65471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26817 0.19955 -1.00000 - 8970 2017 8 21 12 3 31 427 4.9014 180.97547 517.99062 498.08381 -2.88714 0.00000 -1.65310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26781 0.19955 -1.00000 - 8971 2017 8 21 12 3 36 328 4.9014 180.97382 517.97110 498.06546 -2.88198 0.00000 -1.65131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26745 0.19955 -1.00000 - 8972 2017 8 21 12 3 41 229 4.9014 180.97217 517.95161 498.04713 -2.87645 0.00000 -1.64947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26710 0.19955 -1.00000 - 8973 2017 8 21 12 3 46 131 4.9014 180.97052 517.93215 498.02881 -2.87058 0.00000 -1.64762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26674 0.19955 -1.00000 - 8974 2017 8 21 12 3 51 32 4.9014 180.96888 517.91269 498.01050 -2.86438 0.00000 -1.64571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26638 0.19955 -1.00000 - 8975 2017 8 21 12 3 55 933 4.9014 180.96723 517.89321 497.99218 -2.85789 0.00000 -1.64374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26603 0.19955 -1.00000 - 8976 2017 8 21 12 4 0 835 4.9014 180.96559 517.87370 497.97385 -2.85113 0.00000 -1.64160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26567 0.19955 -1.00000 - 8977 2017 8 21 12 4 5 736 4.9014 180.96395 517.85419 497.95557 -2.84413 0.00000 -1.63937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26531 0.19955 -1.00000 - 8978 2017 8 21 12 4 10 638 4.9014 180.96231 517.83478 497.93732 -2.83692 0.00000 -1.63715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26496 0.19955 -1.00000 - 8979 2017 8 21 12 4 15 539 4.9014 180.96068 517.81542 497.91910 -2.82952 0.00000 -1.63489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26460 0.19955 -1.00000 - 8980 2017 8 21 12 4 20 441 4.9015 180.95904 517.79608 497.90088 -2.82196 0.00000 -1.63264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26425 0.19955 -1.00000 - 8981 2017 8 21 12 4 25 342 4.9015 180.95741 517.77672 497.88267 -2.81427 0.00000 -1.63028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26389 0.19955 -1.00000 - 8982 2017 8 21 12 4 30 244 4.9015 180.95578 517.75734 497.86445 -2.80648 0.00000 -1.62778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26353 0.19955 -1.00000 - 8983 2017 8 21 12 4 35 145 4.9015 180.95415 517.73797 497.84624 -2.79861 0.00000 -1.62530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26318 0.19955 -1.00000 - 8984 2017 8 21 12 4 40 47 4.9015 180.95252 517.71864 497.82805 -2.79068 0.00000 -1.62289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26282 0.19955 -1.00000 - 8985 2017 8 21 12 4 44 948 4.9015 180.95089 517.69931 497.80987 -2.78272 0.00000 -1.62050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26246 0.19955 -1.00000 - 8986 2017 8 21 12 4 49 850 4.9015 180.94927 517.67997 497.79168 -2.77476 0.00000 -1.61811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26211 0.19954 -1.00000 - 8987 2017 8 21 12 4 54 751 4.9015 180.94765 517.66060 497.77348 -2.76684 0.00000 -1.61563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26175 0.19954 -1.00000 - 8988 2017 8 21 12 4 59 653 4.9015 180.94602 517.64122 497.75529 -2.75900 0.00000 -1.61313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26139 0.19954 -1.00000 - 8989 2017 8 21 12 5 4 554 4.9015 180.94440 517.62187 497.73711 -2.75126 0.00000 -1.61073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26104 0.19954 -1.00000 - 8990 2017 8 21 12 5 9 456 4.9016 180.94278 517.60254 497.71899 -2.74366 0.00000 -1.60839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26068 0.19954 -1.00000 - 8991 2017 8 21 12 5 14 357 4.9016 180.94117 517.58330 497.70090 -2.73622 0.00000 -1.60615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26032 0.19954 -1.00000 - 8992 2017 8 21 12 5 19 259 4.9016 180.93955 517.56408 497.68282 -2.72895 0.00000 -1.60385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25997 0.19954 -1.00000 - 8993 2017 8 21 12 5 24 161 4.9016 180.93794 517.54486 497.66475 -2.72186 0.00000 -1.60150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25961 0.19954 -1.00000 - 8994 2017 8 21 12 5 29 62 4.9016 180.93633 517.52567 497.64671 -2.71497 0.00000 -1.59922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25926 0.19954 -1.00000 - 8995 2017 8 21 12 5 33 964 4.9016 180.93472 517.50654 497.62870 -2.70830 0.00000 -1.59708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25890 0.19954 -1.00000 - 8996 2017 8 21 12 5 38 865 4.9016 180.93311 517.48744 497.61071 -2.70185 0.00000 -1.59502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25854 0.19954 -1.00000 - 8997 2017 8 21 12 5 43 767 4.9016 180.93150 517.46834 497.59272 -2.69561 0.00000 -1.59301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25819 0.19954 -1.00000 - 8998 2017 8 21 12 5 48 669 4.9016 180.92990 517.44923 497.57474 -2.68959 0.00000 -1.59094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25783 0.19954 -1.00000 - 8999 2017 8 21 12 5 53 570 4.9016 180.92830 517.43015 497.55678 -2.68380 0.00000 -1.58891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25747 0.19954 -1.00000 - 9000 2017 8 21 12 5 58 472 4.9017 180.92669 517.41113 497.53885 -2.67824 0.00000 -1.58701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25712 0.19954 -1.00000 - 9001 2017 8 21 12 6 3 374 4.9017 180.92510 517.39214 497.52095 -2.67291 0.00000 -1.58521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25676 0.19954 -1.00000 - 9002 2017 8 21 12 6 8 275 4.9017 180.92350 517.37319 497.50310 -2.66782 0.00000 -1.58353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25640 0.19954 -1.00000 - 9003 2017 8 21 12 6 13 177 4.9017 180.92191 517.35430 497.48528 -2.66298 0.00000 -1.58183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25605 0.19954 -1.00000 - 9004 2017 8 21 12 6 18 79 4.9017 180.92031 517.33546 497.46750 -2.65838 0.00000 -1.58007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25569 0.19954 -1.00000 - 9005 2017 8 21 12 6 22 980 4.9017 180.91872 517.31669 497.44975 -2.65403 0.00000 -1.57840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25533 0.19954 -1.00000 - 9006 2017 8 21 12 6 27 882 4.9017 180.91714 517.29800 497.43205 -2.64991 0.00000 -1.57687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25498 0.19954 -1.00000 - 9007 2017 8 21 12 6 32 784 4.9017 180.91555 517.27935 497.41437 -2.64601 0.00000 -1.57542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25462 0.19954 -1.00000 - 9008 2017 8 21 12 6 37 685 4.9017 180.91397 517.26073 497.39672 -2.64232 0.00000 -1.57401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25426 0.19954 -1.00000 - 9009 2017 8 21 12 6 42 587 4.9017 180.91239 517.24213 497.37909 -2.63881 0.00000 -1.57253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25391 0.19954 -1.00000 - 9010 2017 8 21 12 6 47 489 4.9017 180.91081 517.22358 497.36148 -2.63547 0.00000 -1.57108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25355 0.19954 -1.00000 - 9011 2017 8 21 12 6 52 391 4.9018 180.90923 517.20510 497.34391 -2.63230 0.00000 -1.56977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25320 0.19954 -1.00000 - 9012 2017 8 21 12 6 57 292 4.9018 180.90766 517.18667 497.32638 -2.62926 0.00000 -1.56852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25284 0.19954 -1.00000 - 9013 2017 8 21 12 7 2 194 4.9018 180.90608 517.16829 497.30886 -2.62634 0.00000 -1.56740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25248 0.19954 -1.00000 - 9014 2017 8 21 12 7 7 96 4.9018 180.90451 517.14992 497.29140 -2.62353 0.00000 -1.56622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25213 0.19953 -1.00000 - 9015 2017 8 21 12 7 11 998 4.9018 180.90295 517.13163 497.27398 -2.62083 0.00000 -1.56498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25177 0.19953 -1.00000 - 9016 2017 8 21 12 7 16 900 4.9018 180.90138 517.11343 497.25661 -2.61822 0.00000 -1.56380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25141 0.19953 -1.00000 - 9017 2017 8 21 12 7 21 801 4.9018 180.89982 517.09532 497.23928 -2.61570 0.00000 -1.56276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25106 0.19953 -1.00000 - 9018 2017 8 21 12 7 26 703 4.9018 180.89826 517.07726 497.22198 -2.61327 0.00000 -1.56178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25070 0.19953 -1.00000 - 9019 2017 8 21 12 7 31 605 4.9018 180.89670 517.05923 497.20470 -2.61094 0.00000 -1.56081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25034 0.19953 -1.00000 - 9020 2017 8 21 12 7 36 507 4.9018 180.89515 517.04122 497.18745 -2.60871 0.00000 -1.55974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24999 0.19953 -1.00000 - 9021 2017 8 21 12 7 41 409 4.9018 180.89360 517.02325 497.17022 -2.60658 0.00000 -1.55869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24963 0.19953 -1.00000 - 9022 2017 8 21 12 7 46 311 4.9019 180.89205 517.00537 497.15302 -2.60455 0.00000 -1.55778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24927 0.19953 -1.00000 - 9023 2017 8 21 12 7 51 213 4.9019 180.89050 516.98753 497.13585 -2.60262 0.00000 -1.55691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24892 0.19953 -1.00000 - 9024 2017 8 21 12 7 56 114 4.9019 180.88895 516.96971 497.11869 -2.60079 0.00000 -1.55611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24856 0.19953 -1.00000 - 9025 2017 8 21 12 8 1 16 4.9019 180.88741 516.95188 497.10153 -2.59907 0.00000 -1.55527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24820 0.19953 -1.00000 - 9026 2017 8 21 12 8 5 918 4.9019 180.88587 516.93407 497.08443 -2.59747 0.00000 -1.55434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24785 0.19953 -1.00000 - 9027 2017 8 21 12 8 10 820 4.9019 180.88433 516.91635 497.06737 -2.59598 0.00000 -1.55351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24749 0.19953 -1.00000 - 9028 2017 8 21 12 8 15 722 4.9019 180.88279 516.89872 497.05036 -2.59461 0.00000 -1.55276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24714 0.19953 -1.00000 - 9029 2017 8 21 12 8 20 624 4.9019 180.88126 516.88113 497.03336 -2.59336 0.00000 -1.55205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24678 0.19953 -1.00000 - 9030 2017 8 21 12 8 25 526 4.9019 180.87972 516.86355 497.01639 -2.59222 0.00000 -1.55134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24642 0.19953 -1.00000 - 9031 2017 8 21 12 8 30 428 4.9019 180.87819 516.84599 496.99943 -2.59121 0.00000 -1.55057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24607 0.19953 -1.00000 - 9032 2017 8 21 12 8 35 330 4.9019 180.87666 516.82845 496.98249 -2.59033 0.00000 -1.54980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24571 0.19953 -1.00000 - 9033 2017 8 21 12 8 40 232 4.9020 180.87513 516.81099 496.96559 -2.58959 0.00000 -1.54918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24535 0.19953 -1.00000 - 9034 2017 8 21 12 8 45 134 4.9020 180.87361 516.79356 496.94870 -2.58898 0.00000 -1.54862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24500 0.19953 -1.00000 - 9035 2017 8 21 12 8 50 36 4.9020 180.87209 516.77613 496.93182 -2.58851 0.00000 -1.54809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24464 0.19953 -1.00000 - 9036 2017 8 21 12 8 54 938 4.9020 180.87056 516.75870 496.91495 -2.58819 0.00000 -1.54749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24428 0.19953 -1.00000 - 9037 2017 8 21 12 8 59 840 4.9020 180.86905 516.74127 496.89809 -2.58801 0.00000 -1.54686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24393 0.19953 -1.00000 - 9038 2017 8 21 12 9 4 742 4.9020 180.86753 516.72388 496.88124 -2.58798 0.00000 -1.54634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24357 0.19953 -1.00000 - 9039 2017 8 21 12 9 9 644 4.9020 180.86601 516.70652 496.86445 -2.58810 0.00000 -1.54586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24321 0.19953 -1.00000 - 9040 2017 8 21 12 9 14 546 4.9020 180.86450 516.68922 496.84768 -2.58838 0.00000 -1.54536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24286 0.19953 -1.00000 - 9041 2017 8 21 12 9 19 448 4.9020 180.86299 516.67194 496.83095 -2.58881 0.00000 -1.54481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24250 0.19952 -1.00000 - 9042 2017 8 21 12 9 24 350 4.9020 180.86148 516.65472 496.81424 -2.58940 0.00000 -1.54423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24214 0.19952 -1.00000 - 9043 2017 8 21 12 9 29 252 4.9020 180.85997 516.63755 496.79756 -2.59013 0.00000 -1.54372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24179 0.19952 -1.00000 - 9044 2017 8 21 12 9 34 154 4.9021 180.85847 516.62044 496.78091 -2.59099 0.00000 -1.54325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24143 0.19952 -1.00000 - 9045 2017 8 21 12 9 39 56 4.9021 180.85696 516.60336 496.76429 -2.59198 0.00000 -1.54283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24108 0.19952 -1.00000 - 9046 2017 8 21 12 9 43 958 4.9021 180.85546 516.58628 496.74768 -2.59308 0.00000 -1.54237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24072 0.19952 -1.00000 - 9047 2017 8 21 12 9 48 860 4.9021 180.85396 516.56922 496.73108 -2.59429 0.00000 -1.54197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24036 0.19952 -1.00000 - 9048 2017 8 21 12 9 53 762 4.9021 180.85246 516.55215 496.71449 -2.59558 0.00000 -1.54142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24001 0.19952 -1.00000 - 9049 2017 8 21 12 9 58 664 4.9021 180.85097 516.53515 496.69793 -2.59695 0.00000 -1.54098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23965 0.19952 -1.00000 - 9050 2017 8 21 12 10 3 566 4.9021 180.84947 516.51819 496.68139 -2.59837 0.00000 -1.54062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23929 0.19952 -1.00000 - 9051 2017 8 21 12 10 8 468 4.9021 180.84798 516.50122 496.66489 -2.59981 0.00000 -1.54021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23894 0.19952 -1.00000 - 9052 2017 8 21 12 10 13 371 4.9021 180.84649 516.48426 496.64841 -2.60125 0.00000 -1.53967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23858 0.19952 -1.00000 - 9053 2017 8 21 12 10 18 273 4.9021 180.84500 516.46737 496.63198 -2.60266 0.00000 -1.53910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23822 0.19952 -1.00000 - 9054 2017 8 21 12 10 23 175 4.9021 180.84352 516.45058 496.61558 -2.60401 0.00000 -1.53855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23787 0.19952 -1.00000 - 9055 2017 8 21 12 10 28 77 4.9021 180.84203 516.43385 496.59922 -2.60526 0.00000 -1.53796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23751 0.19952 -1.00000 - 9056 2017 8 21 12 10 32 979 4.9022 180.84055 516.41717 496.58290 -2.60638 0.00000 -1.53738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23715 0.19952 -1.00000 - 9057 2017 8 21 12 10 37 881 4.9022 180.83907 516.40052 496.56662 -2.60734 0.00000 -1.53665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23680 0.19952 -1.00000 - 9058 2017 8 21 12 10 42 783 4.9022 180.83759 516.38392 496.55036 -2.60810 0.00000 -1.53590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23644 0.19952 -1.00000 - 9059 2017 8 21 12 10 47 686 4.9022 180.83611 516.36736 496.53414 -2.60863 0.00000 -1.53498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23608 0.19952 -1.00000 - 9060 2017 8 21 12 10 52 588 4.9022 180.83464 516.35092 496.51796 -2.60890 0.00000 -1.53416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23573 0.19952 -1.00000 - 9061 2017 8 21 12 10 57 490 4.9022 180.83316 516.33452 496.50182 -2.60889 0.00000 -1.53331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23537 0.19952 -1.00000 - 9062 2017 8 21 12 11 2 392 4.9022 180.83169 516.31815 496.48570 -2.60857 0.00000 -1.53228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23501 0.19952 -1.00000 - 9063 2017 8 21 12 11 7 294 4.9022 180.83022 516.30180 496.46965 -2.60794 0.00000 -1.53121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23466 0.19952 -1.00000 - 9064 2017 8 21 12 11 12 197 4.9022 180.82875 516.28555 496.45366 -2.60696 0.00000 -1.53000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23430 0.19952 -1.00000 - 9065 2017 8 21 12 11 17 99 4.9022 180.82728 516.26942 496.43772 -2.60562 0.00000 -1.52879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23395 0.19952 -1.00000 - 9066 2017 8 21 12 11 22 1 4.9022 180.82582 516.25336 496.42183 -2.60388 0.00000 -1.52747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23359 0.19952 -1.00000 - 9067 2017 8 21 12 11 26 903 4.9023 180.82436 516.23738 496.40599 -2.60173 0.00000 -1.52615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23323 0.19952 -1.00000 - 9068 2017 8 21 12 11 31 806 4.9023 180.82289 516.22143 496.39019 -2.59913 0.00000 -1.52460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23288 0.19952 -1.00000 - 9069 2017 8 21 12 11 36 708 4.9023 180.82143 516.20553 496.37443 -2.59607 0.00000 -1.52298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23252 0.19951 -1.00000 - 9070 2017 8 21 12 11 41 610 4.9023 180.81998 516.18969 496.35871 -2.59252 0.00000 -1.52117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23216 0.19951 -1.00000 - 9071 2017 8 21 12 11 46 513 4.9023 180.81852 516.17399 496.34304 -2.58846 0.00000 -1.51936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23181 0.19951 -1.00000 - 9072 2017 8 21 12 11 51 415 4.9023 180.81706 516.15835 496.32742 -2.58388 0.00000 -1.51751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23145 0.19951 -1.00000 - 9073 2017 8 21 12 11 56 317 4.9023 180.81561 516.14276 496.31183 -2.57877 0.00000 -1.51541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23109 0.19951 -1.00000 - 9074 2017 8 21 12 12 1 219 4.9023 180.81416 516.12718 496.29626 -2.57314 0.00000 -1.51325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23074 0.19951 -1.00000 - 9075 2017 8 21 12 12 6 122 4.9023 180.81271 516.11167 496.28076 -2.56700 0.00000 -1.51096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23038 0.19951 -1.00000 - 9076 2017 8 21 12 12 11 24 4.9023 180.81126 516.09629 496.26532 -2.56037 0.00000 -1.50865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23002 0.19951 -1.00000 - 9077 2017 8 21 12 12 15 926 4.9023 180.80981 516.08098 496.24992 -2.55328 0.00000 -1.50620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22967 0.19951 -1.00000 - 9078 2017 8 21 12 12 20 829 4.9023 180.80836 516.06575 496.23456 -2.54576 0.00000 -1.50374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22931 0.19951 -1.00000 - 9079 2017 8 21 12 12 25 731 4.9024 180.80692 516.05054 496.21924 -2.53783 0.00000 -1.50107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22895 0.19951 -1.00000 - 9080 2017 8 21 12 12 30 633 4.9024 180.80548 516.03535 496.20393 -2.52953 0.00000 -1.49833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22860 0.19951 -1.00000 - 9081 2017 8 21 12 12 35 536 4.9024 180.80404 516.02022 496.18867 -2.52091 0.00000 -1.49540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22824 0.19951 -1.00000 - 9082 2017 8 21 12 12 40 438 4.9024 180.80260 516.00519 496.17344 -2.51201 0.00000 -1.49249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22788 0.19951 -1.00000 - 9083 2017 8 21 12 12 45 341 4.9024 180.80116 515.99021 496.15823 -2.50286 0.00000 -1.48958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22753 0.19951 -1.00000 - 9084 2017 8 21 12 12 50 243 4.9024 180.79972 515.97524 496.14303 -2.49352 0.00000 -1.48646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22717 0.19951 -1.00000 - 9085 2017 8 21 12 12 55 145 4.9024 180.79829 515.96024 496.12784 -2.48400 0.00000 -1.48325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22682 0.19951 -1.00000 - 9086 2017 8 21 12 13 0 48 4.9024 180.79686 515.94527 496.11265 -2.47436 0.00000 -1.48006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22646 0.19951 -1.00000 - 9087 2017 8 21 12 13 4 950 4.9024 180.79542 515.93033 496.09751 -2.46461 0.00000 -1.47683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22610 0.19951 -1.00000 - 9088 2017 8 21 12 13 9 853 4.9024 180.79400 515.91545 496.08239 -2.45478 0.00000 -1.47357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22575 0.19951 -1.00000 - 9089 2017 8 21 12 13 14 755 4.9024 180.79257 515.90059 496.06729 -2.44487 0.00000 -1.47036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22539 0.19951 -1.00000 - 9090 2017 8 21 12 13 19 658 4.9024 180.79114 515.88572 496.05219 -2.43492 0.00000 -1.46698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22503 0.19951 -1.00000 - 9091 2017 8 21 12 13 24 560 4.9024 180.78972 515.87082 496.03710 -2.42493 0.00000 -1.46369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22468 0.19951 -1.00000 - 9092 2017 8 21 12 13 29 462 4.9025 180.78830 515.85591 496.02202 -2.41495 0.00000 -1.46029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22432 0.19951 -1.00000 - 9093 2017 8 21 12 13 34 365 4.9025 180.78687 515.84106 496.00695 -2.40498 0.00000 -1.45695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22396 0.19951 -1.00000 - 9094 2017 8 21 12 13 39 267 4.9025 180.78546 515.82624 495.99189 -2.39504 0.00000 -1.45374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22361 0.19951 -1.00000 - 9095 2017 8 21 12 13 44 170 4.9025 180.78404 515.81137 495.97683 -2.38516 0.00000 -1.45042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22325 0.19951 -1.00000 - 9096 2017 8 21 12 13 49 72 4.9025 180.78262 515.79644 495.96177 -2.37537 0.00000 -1.44696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22289 0.19951 -1.00000 - 9097 2017 8 21 12 13 53 975 4.9025 180.78121 515.78152 495.94669 -2.36571 0.00000 -1.44375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22254 0.19950 -1.00000 - 9098 2017 8 21 12 13 58 877 4.9025 180.77980 515.76658 495.93161 -2.35619 0.00000 -1.44050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22218 0.19950 -1.00000 - 9099 2017 8 21 12 14 3 780 4.9025 180.77839 515.75163 495.91652 -2.34685 0.00000 -1.43722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22182 0.19950 -1.00000 - 9100 2017 8 21 12 14 8 682 4.9025 180.77698 515.73669 495.90149 -2.33770 0.00000 -1.43421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22147 0.19950 -1.00000 - 9101 2017 8 21 12 14 13 585 4.9025 180.77557 515.72174 495.88646 -2.32877 0.00000 -1.43102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22111 0.19950 -1.00000 - 9102 2017 8 21 12 14 18 487 4.9025 180.77416 515.70676 495.87144 -2.32007 0.00000 -1.42804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22075 0.19950 -1.00000 - 9103 2017 8 21 12 14 23 390 4.9025 180.77276 515.69179 495.85645 -2.31163 0.00000 -1.42505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22040 0.19950 -1.00000 - 9104 2017 8 21 12 14 28 293 4.9026 180.77136 515.67687 495.84149 -2.30347 0.00000 -1.42206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22004 0.19950 -1.00000 - 9105 2017 8 21 12 14 33 195 4.9026 180.76996 515.66197 495.82656 -2.29561 0.00000 -1.41917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21968 0.19950 -1.00000 - 9106 2017 8 21 12 14 38 98 4.9026 180.76856 515.64711 495.81165 -2.28806 0.00000 -1.41650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21933 0.19950 -1.00000 - 9107 2017 8 21 12 14 43 0 4.9026 180.76716 515.63222 495.79678 -2.28086 0.00000 -1.41360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21897 0.19950 -1.00000 - 9108 2017 8 21 12 14 47 903 4.9026 180.76576 515.61741 495.78194 -2.27400 0.00000 -1.41100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21862 0.19950 -1.00000 - 9109 2017 8 21 12 14 52 805 4.9026 180.76437 515.60266 495.76713 -2.26751 0.00000 -1.40849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21826 0.19950 -1.00000 - 9110 2017 8 21 12 14 57 708 4.9026 180.76298 515.58794 495.75236 -2.26140 0.00000 -1.40588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21790 0.19950 -1.00000 - 9111 2017 8 21 12 15 2 611 4.9026 180.76159 515.57330 495.73764 -2.25565 0.00000 -1.40352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21755 0.19950 -1.00000 - 9112 2017 8 21 12 15 7 513 4.9026 180.76020 515.55872 495.72301 -2.25026 0.00000 -1.40112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21719 0.19950 -1.00000 - 9113 2017 8 21 12 15 12 416 4.9026 180.75881 515.54423 495.70842 -2.24523 0.00000 -1.39892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21683 0.19950 -1.00000 - 9114 2017 8 21 12 15 17 319 4.9026 180.75742 515.52982 495.69391 -2.24054 0.00000 -1.39662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21648 0.19950 -1.00000 - 9115 2017 8 21 12 15 22 221 4.9026 180.75604 515.51556 495.67946 -2.23615 0.00000 -1.39441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21612 0.19950 -1.00000 - 9116 2017 8 21 12 15 27 124 4.9026 180.75465 515.50139 495.66509 -2.23206 0.00000 -1.39218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21576 0.19950 -1.00000 - 9117 2017 8 21 12 15 32 26 4.9027 180.75327 515.48731 495.65077 -2.22823 0.00000 -1.39022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21541 0.19950 -1.00000 - 9118 2017 8 21 12 15 36 929 4.9027 180.75189 515.47329 495.63653 -2.22466 0.00000 -1.38801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21505 0.19950 -1.00000 - 9119 2017 8 21 12 15 41 832 4.9027 180.75052 515.45943 495.62235 -2.22131 0.00000 -1.38608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21469 0.19950 -1.00000 - 9120 2017 8 21 12 15 46 734 4.9027 180.74914 515.44570 495.60823 -2.21816 0.00000 -1.38431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21434 0.19950 -1.00000 - 9121 2017 8 21 12 15 51 637 4.9027 180.74776 515.43203 495.59416 -2.21518 0.00000 -1.38211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21398 0.19950 -1.00000 - 9122 2017 8 21 12 15 56 540 4.9027 180.74639 515.41844 495.58014 -2.21232 0.00000 -1.38026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21362 0.19950 -1.00000 - 9123 2017 8 21 12 16 1 443 4.9027 180.74502 515.40496 495.56619 -2.20956 0.00000 -1.37850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21327 0.19950 -1.00000 - 9124 2017 8 21 12 16 6 345 4.9027 180.74365 515.39159 495.55233 -2.20684 0.00000 -1.37668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21291 0.19950 -1.00000 - 9125 2017 8 21 12 16 11 248 4.9027 180.74228 515.37834 495.53854 -2.20412 0.00000 -1.37478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21255 0.19949 -1.00000 - 9126 2017 8 21 12 16 16 151 4.9027 180.74091 515.36528 495.52481 -2.20136 0.00000 -1.37308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21220 0.19949 -1.00000 - 9127 2017 8 21 12 16 21 53 4.9027 180.73955 515.35228 495.51114 -2.19850 0.00000 -1.37115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21184 0.19949 -1.00000 - 9128 2017 8 21 12 16 25 956 4.9027 180.73818 515.33934 495.49753 -2.19550 0.00000 -1.36931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21148 0.19949 -1.00000 - 9129 2017 8 21 12 16 30 859 4.9027 180.73682 515.32649 495.48398 -2.19231 0.00000 -1.36763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21113 0.19949 -1.00000 - 9130 2017 8 21 12 16 35 762 4.9028 180.73546 515.31377 495.47048 -2.18891 0.00000 -1.36602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21077 0.19949 -1.00000 - 9131 2017 8 21 12 16 40 664 4.9028 180.73410 515.30108 495.45702 -2.18525 0.00000 -1.36428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21041 0.19949 -1.00000 - 9132 2017 8 21 12 16 45 567 4.9028 180.73275 515.28851 495.44361 -2.18130 0.00000 -1.36263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21006 0.19949 -1.00000 - 9133 2017 8 21 12 16 50 470 4.9028 180.73139 515.27604 495.43024 -2.17705 0.00000 -1.36104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20970 0.19949 -1.00000 - 9134 2017 8 21 12 16 55 373 4.9028 180.73004 515.26357 495.41690 -2.17247 0.00000 -1.35921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20935 0.19949 -1.00000 - 9135 2017 8 21 12 17 0 276 4.9028 180.72868 515.25117 495.40359 -2.16756 0.00000 -1.35755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20899 0.19949 -1.00000 - 9136 2017 8 21 12 17 5 178 4.9028 180.72733 515.23881 495.39034 -2.16234 0.00000 -1.35588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20863 0.19949 -1.00000 - 9137 2017 8 21 12 17 10 81 4.9028 180.72599 515.22651 495.37711 -2.15683 0.00000 -1.35409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20828 0.19949 -1.00000 - 9138 2017 8 21 12 17 14 984 4.9028 180.72464 515.21428 495.36393 -2.15107 0.00000 -1.35213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20792 0.19949 -1.00000 - 9139 2017 8 21 12 17 19 887 4.9028 180.72329 515.20209 495.35079 -2.14510 0.00000 -1.35026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20756 0.19949 -1.00000 - 9140 2017 8 21 12 17 24 790 4.9028 180.72195 515.18991 495.33766 -2.13896 0.00000 -1.34833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20721 0.19949 -1.00000 - 9141 2017 8 21 12 17 29 692 4.9028 180.72061 515.17774 495.32455 -2.13271 0.00000 -1.34648 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20685 0.19949 -1.00000 - 9142 2017 8 21 12 17 34 595 4.9028 180.71927 515.16559 495.31146 -2.12639 0.00000 -1.34447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20649 0.19949 -1.00000 - 9143 2017 8 21 12 17 39 498 4.9029 180.71793 515.15351 495.29839 -2.12006 0.00000 -1.34253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20614 0.19949 -1.00000 - 9144 2017 8 21 12 17 44 401 4.9029 180.71659 515.14145 495.28533 -2.11377 0.00000 -1.34024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20578 0.19949 -1.00000 - 9145 2017 8 21 12 17 49 304 4.9029 180.71526 515.12948 495.27225 -2.10760 0.00000 -1.33830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20542 0.19949 -1.00000 - 9146 2017 8 21 12 17 54 207 4.9029 180.71392 515.11718 495.25920 -2.10161 0.00000 -1.33625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20507 0.19949 -1.00000 - 9147 2017 8 21 12 17 59 110 4.9029 180.71259 515.10511 495.24614 -2.09586 0.00000 -1.33439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20471 0.19949 -1.00000 - 9148 2017 8 21 12 18 4 13 4.9029 180.71126 515.09300 495.23307 -2.09040 0.00000 -1.33261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20435 0.19949 -1.00000 - 9149 2017 8 21 12 18 8 915 4.9029 180.70993 515.08086 495.22003 -2.08529 0.00000 -1.33070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20400 0.19949 -1.00000 - 9150 2017 8 21 12 18 13 818 4.9029 180.70860 515.06876 495.20703 -2.08064 0.00000 -1.32897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20364 0.19949 -1.00000 - 9151 2017 8 21 12 18 18 721 4.9029 180.70728 515.05668 495.19404 -2.07655 0.00000 -1.32728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20328 0.19949 -1.00000 - 9152 2017 8 21 12 18 23 624 4.9029 180.70595 515.04457 495.18107 -2.07821 0.00000 -1.32576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20293 0.19948 -1.00000 - 9153 2017 8 21 12 18 28 527 4.9029 180.70463 515.03246 495.16813 -2.08079 0.00000 -1.32419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20257 0.19948 -1.00000 - 9154 2017 8 21 12 18 33 430 4.9029 180.70331 515.02041 495.15521 -2.08383 0.00000 -1.32270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20221 0.19948 -1.00000 - 9155 2017 8 21 12 18 38 333 4.9029 180.70199 515.00869 495.14231 -2.08727 0.00000 -1.32096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20186 0.19948 -1.00000 - 9156 2017 8 21 12 18 43 236 4.9029 180.70068 514.99671 495.12942 -2.09100 0.00000 -1.31970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20150 0.19948 -1.00000 - 9157 2017 8 21 12 18 48 139 4.9030 180.69936 514.98436 495.11656 -2.09489 0.00000 -1.31825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20114 0.19948 -1.00000 - 9158 2017 8 21 12 18 53 42 4.9030 180.69805 514.97233 495.10373 -2.09881 0.00000 -1.31700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20079 0.19948 -1.00000 - 9159 2017 8 21 12 18 57 945 4.9030 180.69673 514.96049 495.09090 -2.10260 0.00000 -1.31587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20043 0.19948 -1.00000 - 9160 2017 8 21 12 19 2 848 4.9030 180.69542 514.94886 495.07809 -2.10611 0.00000 -1.31454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20008 0.19948 -1.00000 - 9161 2017 8 21 12 19 7 751 4.9030 180.69411 514.93756 495.06534 -2.10917 0.00000 -1.31331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19972 0.19948 -1.00000 - 9162 2017 8 21 12 19 12 654 4.9030 180.69281 514.92544 495.05263 -2.11168 0.00000 -1.31233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19936 0.19948 -1.00000 - 9163 2017 8 21 12 19 17 557 4.9030 180.69150 514.91340 495.03993 -2.11354 0.00000 -1.31157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19901 0.19948 -1.00000 - 9164 2017 8 21 12 19 22 460 4.9030 180.69020 514.90244 495.02726 -2.11472 0.00000 -1.31004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19865 0.19948 -1.00000 - 9165 2017 8 21 12 19 27 363 4.9030 180.68889 514.89132 495.01459 -2.11517 0.00000 -1.30907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19829 0.19948 -1.00000 - 9166 2017 8 21 12 19 32 266 4.9030 180.68759 514.87920 495.00195 -2.11488 0.00000 -1.30812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19794 0.19948 -1.00000 - 9167 2017 8 21 12 19 37 169 4.9030 180.68629 514.86728 494.98938 -2.11383 0.00000 -1.30704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19758 0.19948 -1.00000 - 9168 2017 8 21 12 19 42 72 4.9030 180.68500 514.85544 494.97684 -2.11203 0.00000 -1.30582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19722 0.19948 -1.00000 - 9169 2017 8 21 12 19 46 975 4.9030 180.68370 514.84373 494.96432 -2.11406 0.00000 -1.30496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19687 0.19948 -1.00000 - 9170 2017 8 21 12 19 51 878 4.9030 180.68241 514.83297 494.95181 -2.11946 0.00000 -1.30376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19651 0.19948 -1.00000 - 9171 2017 8 21 12 19 56 781 4.9031 180.68111 514.82186 494.93933 -2.12440 0.00000 -1.30223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19615 0.19948 -1.00000 - 9172 2017 8 21 12 20 1 684 4.9031 180.67982 514.81099 494.92687 -2.12862 0.00000 -1.30148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19580 0.19948 -1.00000 - 9173 2017 8 21 12 20 6 587 4.9031 180.67853 514.79926 494.91448 -2.13196 0.00000 -1.30042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19544 0.19948 -1.00000 - 9174 2017 8 21 12 20 11 490 4.9031 180.67724 514.78761 494.90210 -2.13440 0.00000 -1.29940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19508 0.19948 -1.00000 - 9175 2017 8 21 12 20 16 393 4.9031 180.67596 514.77604 494.88977 -2.13596 0.00000 -1.29840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19473 0.19948 -1.00000 - 9176 2017 8 21 12 20 21 296 4.9031 180.67467 514.76464 494.87749 -2.13668 0.00000 -1.29730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19437 0.19948 -1.00000 - 9177 2017 8 21 12 20 26 200 4.9031 180.67339 514.75334 494.86528 -2.13657 0.00000 -1.29602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19401 0.19948 -1.00000 - 9178 2017 8 21 12 20 31 103 4.9031 180.67211 514.74224 494.85314 -2.13557 0.00000 -1.29496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19366 0.19948 -1.00000 - 9179 2017 8 21 12 20 36 6 4.9031 180.67083 514.73121 494.84106 -2.13358 0.00000 -1.29382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19330 0.19948 -1.00000 - 9180 2017 8 21 12 20 40 909 4.9031 180.66956 514.72017 494.82902 -2.13053 0.00000 -1.29247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19294 0.19947 -1.00000 - 9181 2017 8 21 12 20 45 812 4.9031 180.66828 514.70918 494.81702 -2.13241 0.00000 -1.29082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19259 0.19947 -1.00000 - 9182 2017 8 21 12 20 50 715 4.9031 180.66701 514.69903 494.80506 -2.13419 0.00000 -1.28872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19223 0.19947 -1.00000 - 9183 2017 8 21 12 20 55 618 4.9031 180.66573 514.68952 494.79314 -2.13409 0.00000 -1.28605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19187 0.19947 -1.00000 - 9184 2017 8 21 12 21 0 521 4.9031 180.66446 514.67816 494.78125 -2.13206 0.00000 -1.28355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19152 0.19947 -1.00000 - 9185 2017 8 21 12 21 5 425 4.9032 180.66319 514.66787 494.76945 -2.12804 0.00000 -1.28052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19116 0.19947 -1.00000 - 9186 2017 8 21 12 21 10 328 4.9032 180.66193 514.65763 494.75769 -2.12199 0.00000 -1.27682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19080 0.19947 -1.00000 - 9187 2017 8 21 12 21 15 231 4.9032 180.66066 514.64678 494.74591 -2.11385 0.00000 -1.27389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19045 0.19947 -1.00000 - 9188 2017 8 21 12 21 20 134 4.9032 180.65940 514.63754 494.73419 -2.10362 0.00000 -1.26985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19009 0.19947 -1.00000 - 9189 2017 8 21 12 21 25 37 4.9032 180.65814 514.62755 494.72248 -2.09131 0.00000 -1.26585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18973 0.19947 -1.00000 - 9190 2017 8 21 12 21 29 940 4.9032 180.65688 514.61663 494.71080 -2.07692 0.00000 -1.26181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18938 0.19947 -1.00000 - 9191 2017 8 21 12 21 34 844 4.9032 180.65562 514.60630 494.69912 -2.06046 0.00000 -1.25700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18902 0.19947 -1.00000 - 9192 2017 8 21 12 21 39 747 4.9032 180.65436 514.59685 494.68735 -2.04196 0.00000 -1.25250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18867 0.19947 -1.00000 - 9193 2017 8 21 12 21 44 650 4.9032 180.65310 514.58590 494.67562 -2.02153 0.00000 -1.24826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18831 0.19947 -1.00000 - 9194 2017 8 21 12 21 49 553 4.9032 180.65185 514.57522 494.66399 -1.99926 0.00000 -1.24380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18795 0.19947 -1.00000 - 9195 2017 8 21 12 21 54 456 4.9032 180.65060 514.56468 494.65239 -1.97611 0.00000 -1.23931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18760 0.19947 -1.00000 - 9196 2017 8 21 12 21 59 360 4.9032 180.64935 514.55414 494.64079 -1.95517 0.00000 -1.23557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18724 0.19947 -1.00000 - 9197 2017 8 21 12 22 4 263 4.9032 180.64810 514.54418 494.62922 -1.93344 0.00000 -1.23116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18688 0.19947 -1.00000 - 9198 2017 8 21 12 22 9 166 4.9032 180.64685 514.53398 494.61772 -1.91103 0.00000 -1.22706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18653 0.19947 -1.00000 - 9199 2017 8 21 12 22 14 69 4.9032 180.64560 514.52360 494.60631 -1.88818 0.00000 -1.22303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18617 0.19947 -1.00000 - 9200 2017 8 21 12 22 18 973 4.9033 180.64436 514.51342 494.59498 -1.86506 0.00000 -1.21919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18581 0.19947 -1.00000 - 9201 2017 8 21 12 22 23 876 4.9033 180.64312 514.50339 494.58374 -1.84911 0.00000 -1.21525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18546 0.19947 -1.00000 - 9202 2017 8 21 12 22 28 779 4.9033 180.64188 514.49343 494.57256 -1.83997 0.00000 -1.21148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18510 0.19947 -1.00000 - 9203 2017 8 21 12 22 33 683 4.9033 180.64064 514.48353 494.56146 -1.83271 0.00000 -1.20766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18474 0.19947 -1.00000 - 9204 2017 8 21 12 22 38 586 4.9033 180.63940 514.47483 494.55043 -1.82757 0.00000 -1.20358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18439 0.19947 -1.00000 - 9205 2017 8 21 12 22 43 489 4.9033 180.63816 514.46624 494.53947 -1.82214 0.00000 -1.19953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18403 0.19947 -1.00000 - 9206 2017 8 21 12 22 48 392 4.9033 180.63693 514.45629 494.52858 -1.81641 0.00000 -1.19566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18367 0.19947 -1.00000 - 9207 2017 8 21 12 22 53 296 4.9033 180.63570 514.44643 494.51774 -1.81038 0.00000 -1.19124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18332 0.19947 -1.00000 - 9208 2017 8 21 12 22 58 199 4.9033 180.63447 514.43915 494.50685 -1.80404 0.00000 -1.18660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18296 0.19946 -1.00000 - 9209 2017 8 21 12 23 3 102 4.9033 180.63324 514.42921 494.49594 -1.79746 0.00000 -1.18296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18260 0.19946 -1.00000 - 9210 2017 8 21 12 23 8 6 4.9033 180.63201 514.41891 494.48510 -1.79074 0.00000 -1.17848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18225 0.19946 -1.00000 - 9211 2017 8 21 12 23 12 909 4.9033 180.63078 514.40946 494.47425 -1.78398 0.00000 -1.17537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18189 0.19946 -1.00000 - 9212 2017 8 21 12 23 17 812 4.9033 180.62956 514.39989 494.46348 -1.77730 0.00000 -1.17239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18153 0.19946 -1.00000 - 9213 2017 8 21 12 23 22 716 4.9033 180.62834 514.39121 494.45278 -1.77232 0.00000 -1.16905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18118 0.19946 -1.00000 - 9214 2017 8 21 12 23 27 619 4.9033 180.62712 514.38278 494.44208 -1.76777 0.00000 -1.16640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18082 0.19946 -1.00000 - 9215 2017 8 21 12 23 32 522 4.9034 180.62590 514.37361 494.43144 -1.76284 0.00000 -1.16362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18046 0.19946 -1.00000 - 9216 2017 8 21 12 23 37 426 4.9034 180.62468 514.36463 494.42089 -1.75747 0.00000 -1.16107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18011 0.19946 -1.00000 - 9217 2017 8 21 12 23 42 329 4.9034 180.62346 514.35574 494.41040 -1.75169 0.00000 -1.15899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17975 0.19946 -1.00000 - 9218 2017 8 21 12 23 47 232 4.9034 180.62225 514.34658 494.39994 -1.74554 0.00000 -1.15735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17939 0.19946 -1.00000 - 9219 2017 8 21 12 23 52 136 4.9034 180.62103 514.33807 494.38954 -1.73912 0.00000 -1.15491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17904 0.19946 -1.00000 - 9220 2017 8 21 12 23 57 39 4.9034 180.61982 514.32999 494.37921 -1.73253 0.00000 -1.15312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17868 0.19946 -1.00000 - 9221 2017 8 21 12 24 1 943 4.9034 180.61861 514.32114 494.36897 -1.72594 0.00000 -1.15208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17832 0.19946 -1.00000 - 9222 2017 8 21 12 24 6 846 4.9034 180.61741 514.31247 494.35882 -1.71948 0.00000 -1.14984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17797 0.19946 -1.00000 - 9223 2017 8 21 12 24 11 749 4.9034 180.61620 514.30351 494.34867 -1.71342 0.00000 -1.14845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17761 0.19946 -1.00000 - 9224 2017 8 21 12 24 16 653 4.9034 180.61499 514.29533 494.33858 -1.70782 0.00000 -1.14756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17725 0.19946 -1.00000 - 9225 2017 8 21 12 24 21 556 4.9034 180.61379 514.28716 494.32857 -1.70244 0.00000 -1.14602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17690 0.19946 -1.00000 - 9226 2017 8 21 12 24 26 460 4.9034 180.61259 514.28000 494.31857 -1.69840 0.00000 -1.14455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17654 0.19946 -1.00000 - 9227 2017 8 21 12 24 31 363 4.9034 180.61139 514.27185 494.30864 -1.69498 0.00000 -1.14350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17618 0.19946 -1.00000 - 9228 2017 8 21 12 24 36 267 4.9034 180.61019 514.26362 494.29879 -1.69174 0.00000 -1.14251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17583 0.19946 -1.00000 - 9229 2017 8 21 12 24 41 170 4.9034 180.60900 514.25543 494.28898 -1.68863 0.00000 -1.14154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17547 0.19946 -1.00000 - 9230 2017 8 21 12 24 46 73 4.9035 180.60780 514.24738 494.27925 -1.68559 0.00000 -1.14060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17511 0.19946 -1.00000 - 9231 2017 8 21 12 24 50 977 4.9035 180.60661 514.23953 494.26958 -1.68258 0.00000 -1.13998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17476 0.19946 -1.00000 - 9232 2017 8 21 12 24 55 880 4.9035 180.60542 514.23340 494.25995 -1.67958 0.00000 -1.13859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17440 0.19946 -1.00000 - 9233 2017 8 21 12 25 0 784 4.9035 180.60423 514.22684 494.25034 -1.67660 0.00000 -1.13785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17405 0.19946 -1.00000 - 9234 2017 8 21 12 25 5 687 4.9035 180.60304 514.21644 494.24079 -1.67370 0.00000 -1.13701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17369 0.19946 -1.00000 - 9235 2017 8 21 12 25 10 591 4.9035 180.60185 514.20950 494.23122 -1.67460 0.00000 -1.13574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17333 0.19945 -1.00000 - 9236 2017 8 21 12 25 15 494 4.9035 180.60067 514.20293 494.22167 -1.67690 0.00000 -1.13490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17298 0.19945 -1.00000 - 9237 2017 8 21 12 25 20 398 4.9035 180.59948 514.19498 494.21216 -1.67903 0.00000 -1.13397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17262 0.19945 -1.00000 - 9238 2017 8 21 12 25 25 301 4.9035 180.59830 514.18791 494.20268 -1.68095 0.00000 -1.13175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17226 0.19945 -1.00000 - 9239 2017 8 21 12 25 30 205 4.9035 180.59712 514.17970 494.19316 -1.68265 0.00000 -1.13074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17191 0.19945 -1.00000 - 9240 2017 8 21 12 25 35 108 4.9035 180.59594 514.17170 494.18370 -1.68412 0.00000 -1.12999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17155 0.19945 -1.00000 - 9241 2017 8 21 12 25 40 12 4.9035 180.59477 514.16430 494.17429 -1.68535 0.00000 -1.12813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17119 0.19945 -1.00000 - 9242 2017 8 21 12 25 44 915 4.9035 180.59359 514.15802 494.16485 -1.68637 0.00000 -1.12688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17084 0.19945 -1.00000 - 9243 2017 8 21 12 25 49 819 4.9035 180.59242 514.15042 494.15539 -1.68721 0.00000 -1.12569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17048 0.19945 -1.00000 - 9244 2017 8 21 12 25 54 722 4.9035 180.59124 514.14287 494.14598 -1.68790 0.00000 -1.12385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17012 0.19945 -1.00000 - 9245 2017 8 21 12 25 59 626 4.9035 180.59007 514.13509 494.13659 -1.68847 0.00000 -1.12250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16977 0.19945 -1.00000 - 9246 2017 8 21 12 26 4 530 4.9036 180.58890 514.12738 494.12722 -1.68894 0.00000 -1.12150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16941 0.19945 -1.00000 - 9247 2017 8 21 12 26 9 433 4.9036 180.58774 514.12015 494.11791 -1.68932 0.00000 -1.11958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16905 0.19945 -1.00000 - 9248 2017 8 21 12 26 14 337 4.9036 180.58657 514.11397 494.10860 -1.68958 0.00000 -1.11775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16870 0.19945 -1.00000 - 9249 2017 8 21 12 26 19 240 4.9036 180.58541 514.10640 494.09933 -1.68971 0.00000 -1.11663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16834 0.19945 -1.00000 - 9250 2017 8 21 12 26 24 144 4.9036 180.58425 514.09889 494.09011 -1.68969 0.00000 -1.11435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16798 0.19945 -1.00000 - 9251 2017 8 21 12 26 29 47 4.9036 180.58309 514.09014 494.08087 -1.68948 0.00000 -1.11213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16763 0.19945 -1.00000 - 9252 2017 8 21 12 26 33 951 4.9036 180.58193 514.08210 494.07159 -1.68905 0.00000 -1.11086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16727 0.19945 -1.00000 - 9253 2017 8 21 12 26 38 855 4.9036 180.58077 514.07483 494.06237 -1.68837 0.00000 -1.10889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16691 0.19945 -1.00000 - 9254 2017 8 21 12 26 43 758 4.9036 180.57962 514.06913 494.05315 -1.68743 0.00000 -1.10579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16656 0.19945 -1.00000 - 9255 2017 8 21 12 26 48 662 4.9036 180.57846 514.06287 494.04388 -1.68622 0.00000 -1.10359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16620 0.19945 -1.00000 - 9256 2017 8 21 12 26 53 565 4.9036 180.57731 514.05500 494.03466 -1.68483 0.00000 -1.10177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16584 0.19945 -1.00000 - 9257 2017 8 21 12 26 58 469 4.9036 180.57616 514.04603 494.02548 -1.68334 0.00000 -1.09913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16549 0.19945 -1.00000 - 9258 2017 8 21 12 27 3 373 4.9036 180.57501 514.03872 494.01629 -1.68182 0.00000 -1.09677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16513 0.19945 -1.00000 - 9259 2017 8 21 12 27 8 276 4.9036 180.57387 514.03321 494.00712 -1.68026 0.00000 -1.09462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16477 0.19945 -1.00000 - 9260 2017 8 21 12 27 13 180 4.9036 180.57272 514.02617 493.99797 -1.67861 0.00000 -1.09173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16442 0.19945 -1.00000 - 9261 2017 8 21 12 27 18 84 4.9036 180.57158 514.02008 493.98886 -1.67677 0.00000 -1.08933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16406 0.19945 -1.00000 - 9262 2017 8 21 12 27 22 987 4.9036 180.57043 514.01240 493.97980 -1.67460 0.00000 -1.08720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16370 0.19945 -1.00000 - 9263 2017 8 21 12 27 27 891 4.9037 180.56929 514.00494 493.97081 -1.67194 0.00000 -1.08521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16335 0.19944 -1.00000 - 9264 2017 8 21 12 27 32 794 4.9037 180.56815 513.99764 493.96188 -1.66865 0.00000 -1.08279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16299 0.19944 -1.00000 - 9265 2017 8 21 12 27 37 698 4.9037 180.56701 513.99054 493.95299 -1.66464 0.00000 -1.08093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16263 0.19944 -1.00000 - 9266 2017 8 21 12 27 42 602 4.9037 180.56588 513.98385 493.94416 -1.65985 0.00000 -1.07874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16228 0.19944 -1.00000 - 9267 2017 8 21 12 27 47 506 4.9037 180.56474 513.97706 493.93542 -1.65430 0.00000 -1.07693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16192 0.19944 -1.00000 - 9268 2017 8 21 12 27 52 409 4.9037 180.56361 513.97045 493.92677 -1.64803 0.00000 -1.07541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16156 0.19944 -1.00000 - 9269 2017 8 21 12 27 57 313 4.9037 180.56248 513.96381 493.91818 -1.64112 0.00000 -1.07364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16121 0.19944 -1.00000 - 9270 2017 8 21 12 28 2 217 4.9037 180.56135 513.95722 493.90965 -1.63368 0.00000 -1.07197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16085 0.19944 -1.00000 - 9271 2017 8 21 12 28 7 120 4.9037 180.56022 513.95069 493.90119 -1.62581 0.00000 -1.07025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16049 0.19944 -1.00000 - 9272 2017 8 21 12 28 12 24 4.9037 180.55909 513.94475 493.89279 -1.61761 0.00000 -1.06808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16014 0.19944 -1.00000 - 9273 2017 8 21 12 28 16 928 4.9037 180.55797 513.93870 493.88449 -1.60912 0.00000 -1.06579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15978 0.19944 -1.00000 - 9274 2017 8 21 12 28 21 831 4.9037 180.55684 513.93197 493.87626 -1.60038 0.00000 -1.06343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15942 0.19944 -1.00000 - 9275 2017 8 21 12 28 26 735 4.9037 180.55572 513.92644 493.86813 -1.59138 0.00000 -1.06025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15907 0.19944 -1.00000 - 9276 2017 8 21 12 28 31 639 4.9037 180.55460 513.92184 493.86001 -1.58210 0.00000 -1.05707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15871 0.19944 -1.00000 - 9277 2017 8 21 12 28 36 543 4.9037 180.55348 513.91559 493.85193 -1.57251 0.00000 -1.05310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15835 0.19944 -1.00000 - 9278 2017 8 21 12 28 41 446 4.9037 180.55237 513.91112 493.84382 -1.56259 0.00000 -1.04875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15800 0.19944 -1.00000 - 9279 2017 8 21 12 28 46 350 4.9037 180.55125 513.90202 493.83567 -1.55230 0.00000 -1.04489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15764 0.19944 -1.00000 - 9280 2017 8 21 12 28 51 254 4.9038 180.55014 513.89633 493.82751 -1.54164 0.00000 -1.04061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15728 0.19944 -1.00000 - 9281 2017 8 21 12 28 56 158 4.9038 180.54903 513.89168 493.81929 -1.53062 0.00000 -1.03596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15693 0.19944 -1.00000 - 9282 2017 8 21 12 29 1 61 4.9038 180.54791 513.88490 493.81110 -1.51929 0.00000 -1.03161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15657 0.19944 -1.00000 - 9283 2017 8 21 12 29 5 965 4.9038 180.54680 513.88001 493.80292 -1.50777 0.00000 -1.02673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15622 0.19944 -1.00000 - 9284 2017 8 21 12 29 10 869 4.9038 180.54570 513.87172 493.79470 -1.49624 0.00000 -1.02287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15586 0.19944 -1.00000 - 9285 2017 8 21 12 29 15 773 4.9038 180.54459 513.86472 493.78653 -1.48486 0.00000 -1.01857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15550 0.19944 -1.00000 - 9286 2017 8 21 12 29 20 676 4.9038 180.54348 513.86026 493.77837 -1.47398 0.00000 -1.01386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15515 0.19944 -1.00000 - 9287 2017 8 21 12 29 25 580 4.9038 180.54238 513.85552 493.77021 -1.46475 0.00000 -1.00945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15479 0.19944 -1.00000 - 9288 2017 8 21 12 29 30 484 4.9038 180.54128 513.84931 493.76206 -1.45450 0.00000 -1.00474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15443 0.19944 -1.00000 - 9289 2017 8 21 12 29 35 388 4.9038 180.54018 513.84239 493.75394 -1.44420 0.00000 -1.00064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15408 0.19944 -1.00000 - 9290 2017 8 21 12 29 40 292 4.9038 180.53908 513.83372 493.74586 -1.43435 0.00000 -0.99595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15372 0.19944 -1.00000 - 9291 2017 8 21 12 29 45 195 4.9038 180.53798 513.83026 493.73778 -1.42405 0.00000 -0.99181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15336 0.19943 -1.00000 - 9292 2017 8 21 12 29 50 99 4.9038 180.53689 513.82566 493.72969 -1.41337 0.00000 -0.98810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15301 0.19943 -1.00000 - 9293 2017 8 21 12 29 55 3 4.9038 180.53579 513.81906 493.72165 -1.40296 0.00000 -0.98411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15265 0.19943 -1.00000 - 9294 2017 8 21 12 29 59 907 4.9038 180.53470 513.81278 493.71368 -1.39402 0.00000 -0.97924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15229 0.19943 -1.00000 - 9295 2017 8 21 12 30 4 811 4.9038 180.53361 513.80602 493.70565 -1.38569 0.00000 -0.97544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15194 0.19943 -1.00000 - 9296 2017 8 21 12 30 9 715 4.9038 180.53252 513.79835 493.69769 -1.37787 0.00000 -0.97194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15158 0.19943 -1.00000 - 9297 2017 8 21 12 30 14 618 4.9038 180.53144 513.79321 493.68979 -1.36998 0.00000 -0.96745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15122 0.19943 -1.00000 - 9298 2017 8 21 12 30 19 522 4.9039 180.53035 513.78909 493.68190 -1.36134 0.00000 -0.96411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15087 0.19943 -1.00000 - 9299 2017 8 21 12 30 24 426 4.9039 180.52927 513.78317 493.67406 -1.35209 0.00000 -0.96073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15051 0.19943 -1.00000 - 9300 2017 8 21 12 30 29 330 4.9039 180.52819 513.77795 493.66627 -1.34260 0.00000 -0.95658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15015 0.19943 -1.00000 - 9301 2017 8 21 12 30 34 234 4.9039 180.52711 513.77169 493.65850 -1.33306 0.00000 -0.95276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14980 0.19943 -1.00000 - 9302 2017 8 21 12 30 39 138 4.9039 180.52603 513.76357 493.65070 -1.32372 0.00000 -0.94969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14944 0.19943 -1.00000 - 9303 2017 8 21 12 30 44 42 4.9039 180.52495 513.75969 493.64288 -1.31511 0.00000 -0.94581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14908 0.19943 -1.00000 - 9304 2017 8 21 12 30 48 946 4.9039 180.52388 513.75579 493.63506 -1.30844 0.00000 -0.94139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14873 0.19943 -1.00000 - 9305 2017 8 21 12 30 53 849 4.9039 180.52280 513.75008 493.62724 -1.30056 0.00000 -0.93784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14837 0.19943 -1.00000 - 9306 2017 8 21 12 30 58 753 4.9039 180.52173 513.74397 493.61944 -1.28942 0.00000 -0.93418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14801 0.19943 -1.00000 - 9307 2017 8 21 12 31 3 657 4.9039 180.52066 513.73540 493.61162 -1.28755 0.00000 -0.92956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14766 0.19943 -1.00000 - 9308 2017 8 21 12 31 8 561 4.9039 180.51959 513.72977 493.60377 -1.28413 0.00000 -0.92665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14730 0.19943 -1.00000 - 9309 2017 8 21 12 31 13 465 4.9039 180.51853 513.72607 493.59599 -1.26429 0.00000 -0.92399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14694 0.19943 -1.00000 - 9310 2017 8 21 12 31 18 369 4.9039 180.51746 513.72204 493.58825 -1.25704 0.00000 -0.91982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14659 0.19943 -1.00000 - 9311 2017 8 21 12 31 23 273 4.9039 180.51640 513.71520 493.58052 -1.25456 0.00000 -0.91651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14623 0.19943 -1.00000 - 9312 2017 8 21 12 31 28 177 4.9039 180.51533 513.70894 493.57283 -1.25126 0.00000 -0.91409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14587 0.19943 -1.00000 - 9313 2017 8 21 12 31 33 81 4.9039 180.51427 513.70058 493.56525 -1.24767 0.00000 -0.91198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14552 0.19943 -1.00000 - 9314 2017 8 21 12 31 37 985 4.9039 180.51321 513.69705 493.55774 -1.24426 0.00000 -0.90911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14516 0.19943 -1.00000 - 9315 2017 8 21 12 31 42 889 4.9039 180.51216 513.69341 493.55023 -1.24250 0.00000 -0.90695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14480 0.19943 -1.00000 - 9316 2017 8 21 12 31 47 793 4.9039 180.51110 513.68755 493.54272 -1.24115 0.00000 -0.90530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14445 0.19943 -1.00000 - 9317 2017 8 21 12 31 52 696 4.9040 180.51004 513.68211 493.53536 -1.24020 0.00000 -0.90375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14409 0.19943 -1.00000 - 9318 2017 8 21 12 31 57 600 4.9040 180.50899 513.67734 493.52812 -1.23962 0.00000 -0.90234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14373 0.19942 -1.00000 - 9319 2017 8 21 12 32 2 504 4.9040 180.50794 513.67207 493.52093 -1.23936 0.00000 -0.90183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14338 0.19942 -1.00000 - 9320 2017 8 21 12 32 7 408 4.9040 180.50689 513.66831 493.51382 -1.23943 0.00000 -0.90063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14302 0.19942 -1.00000 - 9321 2017 8 21 12 32 12 312 4.9040 180.50584 513.66423 493.50679 -1.23981 0.00000 -0.89995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14266 0.19942 -1.00000 - 9322 2017 8 21 12 32 17 216 4.9040 180.50479 513.65859 493.49994 -1.24043 0.00000 -0.89978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14231 0.19942 -1.00000 - 9323 2017 8 21 12 32 22 120 4.9040 180.50374 513.65388 493.49320 -1.24155 0.00000 -0.89859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14195 0.19942 -1.00000 - 9324 2017 8 21 12 32 27 24 4.9040 180.50270 513.64938 493.48651 -1.24158 0.00000 -0.89895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14159 0.19942 -1.00000 - 9325 2017 8 21 12 32 31 928 4.9040 180.50165 513.64567 493.47990 -1.24149 0.00000 -0.89892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14124 0.19942 -1.00000 - 9326 2017 8 21 12 32 36 832 4.9040 180.50061 513.64312 493.47332 -1.24183 0.00000 -0.89867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14088 0.19942 -1.00000 - 9327 2017 8 21 12 32 41 736 4.9040 180.49957 513.63910 493.46686 -1.24288 0.00000 -0.89878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14052 0.19942 -1.00000 - 9328 2017 8 21 12 32 46 640 4.9040 180.49853 513.63501 493.46052 -1.24440 0.00000 -0.89896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14017 0.19942 -1.00000 - 9329 2017 8 21 12 32 51 544 4.9040 180.49750 513.63060 493.45431 -1.24622 0.00000 -0.89869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13981 0.19942 -1.00000 - 9330 2017 8 21 12 32 56 448 4.9040 180.49646 513.62684 493.44817 -1.24806 0.00000 -0.89949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13945 0.19942 -1.00000 - 9331 2017 8 21 12 33 1 352 4.9040 180.49543 513.62343 493.44212 -1.24971 0.00000 -0.89993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13910 0.19942 -1.00000 - 9332 2017 8 21 12 33 6 256 4.9040 180.49439 513.62348 493.43623 -1.25129 0.00000 -0.89960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13874 0.19942 -1.00000 - 9333 2017 8 21 12 33 11 160 4.9040 180.49336 513.62209 493.43037 -1.25283 0.00000 -0.90002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13838 0.19942 -1.00000 - 9334 2017 8 21 12 33 16 64 4.9040 180.49234 513.61581 493.42456 -1.25604 0.00000 -0.89968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13803 0.19942 -1.00000 - 9335 2017 8 21 12 33 20 968 4.9040 180.49131 513.61170 493.41875 -1.25940 0.00000 -0.89937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13767 0.19942 -1.00000 - 9336 2017 8 21 12 33 25 873 4.9040 180.49028 513.60789 493.41299 -1.26348 0.00000 -0.89889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13731 0.19942 -1.00000 - 9337 2017 8 21 12 33 30 777 4.9041 180.48926 513.60673 493.40722 -1.26568 0.00000 -0.89765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13696 0.19942 -1.00000 - 9338 2017 8 21 12 33 35 681 4.9041 180.48824 513.60529 493.40141 -1.24899 0.00000 -0.89683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13660 0.19942 -1.00000 - 9339 2017 8 21 12 33 40 585 4.9041 180.48722 513.59889 493.39566 -1.25247 0.00000 -0.89592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13624 0.19942 -1.00000 - 9340 2017 8 21 12 33 45 489 4.9041 180.48620 513.59505 493.38995 -1.25347 0.00000 -0.89565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13589 0.19942 -1.00000 - 9341 2017 8 21 12 33 50 393 4.9041 180.48518 513.59234 493.38426 -1.23920 0.00000 -0.89553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13553 0.19942 -1.00000 - 9342 2017 8 21 12 33 55 297 4.9041 180.48417 513.59044 493.37864 -1.24026 0.00000 -0.89343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13517 0.19942 -1.00000 - 9343 2017 8 21 12 34 0 201 4.9041 180.48315 513.58939 493.37298 -1.23847 0.00000 -0.89304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13482 0.19942 -1.00000 - 9344 2017 8 21 12 34 5 105 4.9041 180.48214 513.58296 493.36740 -1.24154 0.00000 -0.89211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13446 0.19942 -1.00000 - 9345 2017 8 21 12 34 10 9 4.9041 180.48113 513.57835 493.36183 -1.24487 0.00000 -0.89082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13410 0.19942 -1.00000 - 9346 2017 8 21 12 34 14 913 4.9041 180.48012 513.57744 493.35630 -1.24531 0.00000 -0.89097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13375 0.19941 -1.00000 - 9347 2017 8 21 12 34 19 817 4.9041 180.47912 513.57629 493.35091 -1.24459 0.00000 -0.88944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13339 0.19941 -1.00000 - 9348 2017 8 21 12 34 24 721 4.9041 180.47811 513.57443 493.34545 -1.24336 0.00000 -0.88841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13303 0.19941 -1.00000 - 9349 2017 8 21 12 34 29 626 4.9041 180.47711 513.56807 493.34001 -1.24191 0.00000 -0.88718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13268 0.19941 -1.00000 - 9350 2017 8 21 12 34 34 530 4.9041 180.47611 513.56349 493.33466 -1.24020 0.00000 -0.88645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13232 0.19941 -1.00000 - 9351 2017 8 21 12 34 39 434 4.9041 180.47510 513.56298 493.32940 -1.23829 0.00000 -0.88601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13196 0.19941 -1.00000 - 9352 2017 8 21 12 34 44 338 4.9041 180.47410 513.56232 493.32421 -1.23626 0.00000 -0.88446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13161 0.19941 -1.00000 - 9353 2017 8 21 12 34 49 242 4.9041 180.47310 513.56073 493.31903 -1.23431 0.00000 -0.88398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13125 0.19941 -1.00000 - 9354 2017 8 21 12 34 54 146 4.9041 180.47211 513.56038 493.31392 -1.23452 0.00000 -0.88225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13089 0.19941 -1.00000 - 9355 2017 8 21 12 34 59 50 4.9041 180.47111 513.55655 493.30881 -1.23419 0.00000 -0.88156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13054 0.19941 -1.00000 - 9356 2017 8 21 12 35 3 954 4.9041 180.47011 513.55314 493.30375 -1.23337 0.00000 -0.88004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13018 0.19941 -1.00000 - 9357 2017 8 21 12 35 8 859 4.9041 180.46912 513.55130 493.29874 -1.23211 0.00000 -0.87859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12982 0.19941 -1.00000 - 9358 2017 8 21 12 35 13 763 4.9042 180.46813 513.54914 493.29378 -1.23048 0.00000 -0.87754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12947 0.19941 -1.00000 - 9359 2017 8 21 12 35 18 667 4.9042 180.46714 513.54696 493.28894 -1.22853 0.00000 -0.87497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12911 0.19941 -1.00000 - 9360 2017 8 21 12 35 23 571 4.9042 180.46615 513.54747 493.28414 -1.22635 0.00000 -0.87352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12875 0.19941 -1.00000 - 9361 2017 8 21 12 35 28 475 4.9042 180.46516 513.54303 493.27940 -1.22403 0.00000 -0.87108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12840 0.19941 -1.00000 - 9362 2017 8 21 12 35 33 379 4.9042 180.46417 513.54121 493.27466 -1.22176 0.00000 -0.86833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12804 0.19941 -1.00000 - 9363 2017 8 21 12 35 38 284 4.9042 180.46319 513.54146 493.26994 -1.21992 0.00000 -0.86549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12768 0.19941 -1.00000 - 9364 2017 8 21 12 35 43 188 4.9042 180.46220 513.54137 493.26524 -1.21691 0.00000 -0.86163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12733 0.19941 -1.00000 - 9365 2017 8 21 12 35 48 92 4.9042 180.46122 513.53893 493.26045 -1.21223 0.00000 -0.85791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12697 0.19941 -1.00000 - 9366 2017 8 21 12 35 52 996 4.9042 180.46024 513.53622 493.25567 -1.20727 0.00000 -0.85441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12661 0.19941 -1.00000 - 9367 2017 8 21 12 35 57 900 4.9042 180.45926 513.53090 493.25096 -1.20213 0.00000 -0.85021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12626 0.19941 -1.00000 - 9368 2017 8 21 12 36 2 804 4.9042 180.45828 513.53097 493.24623 -1.19660 0.00000 -0.84650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12590 0.19941 -1.00000 - 9369 2017 8 21 12 36 7 709 4.9042 180.45731 513.53102 493.24147 -1.19035 0.00000 -0.84317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12555 0.19941 -1.00000 - 9370 2017 8 21 12 36 12 613 4.9042 180.45633 513.52826 493.23670 -1.18316 0.00000 -0.83893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12519 0.19941 -1.00000 - 9371 2017 8 21 12 36 17 517 4.9042 180.45534 513.52602 493.23198 -1.17459 0.00000 -0.83447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12483 0.19941 -1.00000 - 9372 2017 8 21 12 36 22 421 4.9042 180.45434 513.52359 493.22728 -1.16391 0.00000 -0.83073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12448 0.19941 -1.00000 - 9373 2017 8 21 12 36 27 326 4.9042 180.45335 513.51847 493.22262 -1.14231 0.00000 -0.82638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12412 0.19941 -1.00000 - 9374 2017 8 21 12 36 32 230 4.9042 180.45236 513.51823 493.21796 -1.13615 0.00000 -0.82096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12376 0.19940 -1.00000 - 9375 2017 8 21 12 36 37 134 4.9042 180.45139 513.51829 493.21326 -1.12998 0.00000 -0.81662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12341 0.19940 -1.00000 - 9376 2017 8 21 12 36 42 38 4.9042 180.45041 513.51606 493.20861 -1.11264 0.00000 -0.81234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12305 0.19940 -1.00000 - 9377 2017 8 21 12 36 46 942 4.9042 180.44944 513.51473 493.20406 -1.10259 0.00000 -0.80699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12269 0.19940 -1.00000 - 9378 2017 8 21 12 36 51 847 4.9042 180.44848 513.51227 493.19953 -1.09521 0.00000 -0.80228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12234 0.19940 -1.00000 - 9379 2017 8 21 12 36 56 751 4.9042 180.44752 513.51001 493.19501 -1.09068 0.00000 -0.79841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12198 0.19940 -1.00000 - 9380 2017 8 21 12 37 1 655 4.9042 180.44657 513.50843 493.19053 -1.08532 0.00000 -0.79338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12162 0.19940 -1.00000 - 9381 2017 8 21 12 37 6 559 4.9042 180.44561 513.50887 493.18607 -1.07851 0.00000 -0.78905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12127 0.19940 -1.00000 - 9382 2017 8 21 12 37 11 464 4.9042 180.44466 513.50558 493.18168 -1.07186 0.00000 -0.78444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12091 0.19940 -1.00000 - 9383 2017 8 21 12 37 16 368 4.9042 180.44371 513.50367 493.17733 -1.06553 0.00000 -0.77965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12055 0.19940 -1.00000 - 9384 2017 8 21 12 37 21 272 4.9043 180.44277 513.50154 493.17301 -1.05950 0.00000 -0.77623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12020 0.19940 -1.00000 - 9385 2017 8 21 12 37 26 176 4.9043 180.44183 513.50033 493.16881 -1.05342 0.00000 -0.77187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11984 0.19940 -1.00000 - 9386 2017 8 21 12 37 31 81 4.9043 180.44089 513.50086 493.16463 -1.04698 0.00000 -0.76749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11948 0.19940 -1.00000 - 9387 2017 8 21 12 37 35 985 4.9043 180.43995 513.50127 493.16051 -1.04004 0.00000 -0.76306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11913 0.19940 -1.00000 - 9388 2017 8 21 12 37 40 889 4.9043 180.43901 513.49963 493.15645 -1.03255 0.00000 -0.75874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11877 0.19940 -1.00000 - 9389 2017 8 21 12 37 45 793 4.9043 180.43808 513.49691 493.15245 -1.02445 0.00000 -0.75388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11841 0.19940 -1.00000 - 9390 2017 8 21 12 37 50 698 4.9043 180.43714 513.49577 493.14843 -1.01576 0.00000 -0.74985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11806 0.19940 -1.00000 - 9391 2017 8 21 12 37 55 602 4.9043 180.43621 513.49678 493.14441 -1.00656 0.00000 -0.74442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11770 0.19940 -1.00000 - 9392 2017 8 21 12 38 0 506 4.9043 180.43527 513.49532 493.14036 -0.99669 0.00000 -0.73943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11734 0.19940 -1.00000 - 9393 2017 8 21 12 38 5 411 4.9043 180.43434 513.49558 493.13631 -0.98369 0.00000 -0.73430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11699 0.19940 -1.00000 - 9394 2017 8 21 12 38 10 315 4.9043 180.43340 513.49052 493.13226 -0.96999 0.00000 -0.72859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11663 0.19940 -1.00000 - 9395 2017 8 21 12 38 15 219 4.9043 180.43247 513.48833 493.12822 -0.95726 0.00000 -0.72313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11627 0.19940 -1.00000 - 9396 2017 8 21 12 38 20 123 4.9043 180.43154 513.48825 493.12416 -0.94425 0.00000 -0.71774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11592 0.19940 -1.00000 - 9397 2017 8 21 12 38 25 28 4.9043 180.43060 513.48841 493.12006 -0.91922 0.00000 -0.71205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11556 0.19940 -1.00000 - 9398 2017 8 21 12 38 29 932 4.9043 180.42967 513.48709 493.11601 -0.90427 0.00000 -0.70671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11520 0.19940 -1.00000 - 9399 2017 8 21 12 38 34 836 4.9043 180.42874 513.48208 493.11199 -0.88288 0.00000 -0.70102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11485 0.19940 -1.00000 - 9400 2017 8 21 12 38 39 741 4.9043 180.42781 513.48056 493.10795 -0.87521 0.00000 -0.69509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11449 0.19940 -1.00000 - 9401 2017 8 21 12 38 44 645 4.9043 180.42688 513.47842 493.10395 -0.87759 0.00000 -0.69073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11413 0.19939 -1.00000 - 9402 2017 8 21 12 38 49 549 4.9043 180.42595 513.47908 493.10011 -0.87052 0.00000 -0.68448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11378 0.19939 -1.00000 - 9403 2017 8 21 12 38 54 454 4.9043 180.42502 513.47959 493.09618 -0.85602 0.00000 -0.67870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11342 0.19939 -1.00000 - 9404 2017 8 21 12 38 59 358 4.9043 180.42409 513.48010 493.09222 -0.85822 0.00000 -0.67375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11306 0.19939 -1.00000 - 9405 2017 8 21 12 39 4 262 4.9043 180.42316 513.47502 493.08833 -0.86080 0.00000 -0.66827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11271 0.19939 -1.00000 - 9406 2017 8 21 12 39 9 167 4.9043 180.42223 513.47171 493.08448 -0.86016 0.00000 -0.66267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11235 0.19939 -1.00000 - 9407 2017 8 21 12 39 14 71 4.9044 180.42131 513.47270 493.08066 -0.85886 0.00000 -0.65808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11199 0.19939 -1.00000 - 9408 2017 8 21 12 39 18 975 4.9044 180.42038 513.47340 493.07692 -0.85268 0.00000 -0.65339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11164 0.19939 -1.00000 - 9409 2017 8 21 12 39 23 880 4.9044 180.41946 513.47065 493.07330 -0.84017 0.00000 -0.64811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11128 0.19939 -1.00000 - 9410 2017 8 21 12 39 28 784 4.9044 180.41854 513.47178 493.06973 -0.83525 0.00000 -0.64310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11092 0.19939 -1.00000 - 9411 2017 8 21 12 39 33 689 4.9044 180.41762 513.46733 493.06619 -0.84262 0.00000 -0.63889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11057 0.19939 -1.00000 - 9412 2017 8 21 12 39 38 593 4.9044 180.41670 513.46733 493.06273 -0.84771 0.00000 -0.63404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11021 0.19939 -1.00000 - 9413 2017 8 21 12 39 43 497 4.9044 180.41579 513.46853 493.05927 -0.84299 0.00000 -0.62995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10985 0.19939 -1.00000 - 9414 2017 8 21 12 39 48 402 4.9044 180.41488 513.46745 493.05590 -0.82705 0.00000 -0.62634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10950 0.19939 -1.00000 - 9415 2017 8 21 12 39 53 306 4.9044 180.41396 513.46768 493.05265 -0.82437 0.00000 -0.62207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10914 0.19939 -1.00000 - 9416 2017 8 21 12 39 58 210 4.9044 180.41306 513.46726 493.04951 -0.82815 0.00000 -0.61865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10878 0.19939 -1.00000 - 9417 2017 8 21 12 40 3 115 4.9044 180.41215 513.46710 493.04651 -0.82685 0.00000 -0.61504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10843 0.19939 -1.00000 - 9418 2017 8 21 12 40 8 19 4.9044 180.41125 513.46659 493.04364 -0.82590 0.00000 -0.61224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10807 0.19939 -1.00000 - 9419 2017 8 21 12 40 12 924 4.9044 180.41035 513.46776 493.04083 -0.83357 0.00000 -0.60951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10771 0.19939 -1.00000 - 9420 2017 8 21 12 40 17 828 4.9044 180.40945 513.47002 493.03805 -0.81794 0.00000 -0.60565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10736 0.19939 -1.00000 - 9421 2017 8 21 12 40 22 732 4.9044 180.40855 513.47169 493.03531 -0.82049 0.00000 -0.60297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10700 0.19939 -1.00000 - 9422 2017 8 21 12 40 27 637 4.9044 180.40766 513.46865 493.03265 -0.82336 0.00000 -0.59892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10664 0.19939 -1.00000 - 9423 2017 8 21 12 40 32 541 4.9044 180.40677 513.46892 493.02992 -0.82248 0.00000 -0.59539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10629 0.19939 -1.00000 - 9424 2017 8 21 12 40 37 446 4.9044 180.40588 513.47049 493.02717 -0.82358 0.00000 -0.59183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10593 0.19939 -1.00000 - 9425 2017 8 21 12 40 42 350 4.9044 180.40499 513.47268 493.02434 -0.80215 0.00000 -0.58760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10557 0.19939 -1.00000 - 9426 2017 8 21 12 40 47 254 4.9044 180.40410 513.47303 493.02143 -0.80704 0.00000 -0.58377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10522 0.19939 -1.00000 - 9427 2017 8 21 12 40 52 159 4.9044 180.40322 513.46969 493.01857 -0.81189 0.00000 -0.57973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10486 0.19939 -1.00000 - 9428 2017 8 21 12 40 57 63 4.9044 180.40234 513.46970 493.01569 -0.81132 0.00000 -0.57628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10450 0.19939 -1.00000 - 9429 2017 8 21 12 41 1 968 4.9044 180.40146 513.47128 493.01282 -0.80553 0.00000 -0.57293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10415 0.19938 -1.00000 - 9430 2017 8 21 12 41 6 872 4.9044 180.40058 513.47322 493.00990 -0.81379 0.00000 -0.56944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10379 0.19938 -1.00000 - 9431 2017 8 21 12 41 11 777 4.9044 180.39970 513.47343 493.00691 -0.79684 0.00000 -0.56642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10343 0.19938 -1.00000 - 9432 2017 8 21 12 41 16 681 4.9044 180.39883 513.46975 493.00396 -0.79716 0.00000 -0.56337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10308 0.19938 -1.00000 - 9433 2017 8 21 12 41 21 585 4.9044 180.39795 513.46940 493.00101 -0.79700 0.00000 -0.56106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10272 0.19938 -1.00000 - 9434 2017 8 21 12 41 26 490 4.9044 180.39708 513.47077 492.99811 -0.80129 0.00000 -0.55911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10236 0.19938 -1.00000 - 9435 2017 8 21 12 41 31 394 4.9044 180.39621 513.47231 492.99516 -0.79702 0.00000 -0.55607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10201 0.19938 -1.00000 - 9436 2017 8 21 12 41 36 299 4.9045 180.39534 513.47195 492.99217 -0.78050 0.00000 -0.55489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10165 0.19938 -1.00000 - 9437 2017 8 21 12 41 41 203 4.9045 180.39447 513.46789 492.98921 -0.77904 0.00000 -0.55296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10129 0.19938 -1.00000 - 9438 2017 8 21 12 41 46 108 4.9045 180.39361 513.46751 492.98625 -0.78330 0.00000 -0.55178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10094 0.19938 -1.00000 - 9439 2017 8 21 12 41 51 12 4.9045 180.39274 513.46837 492.98340 -0.78796 0.00000 -0.55117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10058 0.19938 -1.00000 - 9440 2017 8 21 12 41 55 917 4.9045 180.39188 513.46989 492.98058 -0.78288 0.00000 -0.54902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10022 0.19938 -1.00000 - 9441 2017 8 21 12 42 0 821 4.9045 180.39101 513.46976 492.97771 -0.77284 0.00000 -0.54945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09987 0.19938 -1.00000 - 9442 2017 8 21 12 42 5 726 4.9045 180.39015 513.46727 492.97496 -0.76740 0.00000 -0.54820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09951 0.19938 -1.00000 - 9443 2017 8 21 12 42 10 630 4.9045 180.38929 513.46515 492.97225 -0.76695 0.00000 -0.54888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09915 0.19938 -1.00000 - 9444 2017 8 21 12 42 15 535 4.9045 180.38843 513.46809 492.96977 -0.77114 0.00000 -0.55001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09880 0.19938 -1.00000 - 9445 2017 8 21 12 42 20 439 4.9045 180.38757 513.47034 492.96745 -0.78539 0.00000 -0.55073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09844 0.19938 -1.00000 - 9446 2017 8 21 12 42 25 343 4.9045 180.38671 513.47001 492.96530 -0.77742 0.00000 -0.55156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09808 0.19938 -1.00000 - 9447 2017 8 21 12 42 30 248 4.9045 180.38585 513.47009 492.96336 -0.78073 0.00000 -0.55131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09773 0.19938 -1.00000 - 9448 2017 8 21 12 42 35 152 4.9045 180.38500 513.47031 492.96154 -0.76915 0.00000 -0.55326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09737 0.19938 -1.00000 - 9449 2017 8 21 12 42 40 57 4.9045 180.38415 513.46842 492.95994 -0.77170 0.00000 -0.55422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09701 0.19938 -1.00000 - 9450 2017 8 21 12 42 44 961 4.9045 180.38329 513.47150 492.95850 -0.77729 0.00000 -0.55510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09666 0.19938 -1.00000 - 9451 2017 8 21 12 42 49 866 4.9045 180.38244 513.47546 492.95720 -0.79106 0.00000 -0.55662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09630 0.19938 -1.00000 - 9452 2017 8 21 12 42 54 770 4.9045 180.38159 513.47910 492.95617 -0.79396 0.00000 -0.55737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09594 0.19938 -1.00000 - 9453 2017 8 21 12 42 59 675 4.9045 180.38075 513.48398 492.95528 -0.76300 0.00000 -0.55745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09559 0.19938 -1.00000 - 9454 2017 8 21 12 43 4 580 4.9045 180.37990 513.48258 492.95443 -0.77339 0.00000 -0.55808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09523 0.19938 -1.00000 - 9455 2017 8 21 12 43 9 484 4.9045 180.37905 513.48265 492.95372 -0.78361 0.00000 -0.55857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09487 0.19938 -1.00000 - 9456 2017 8 21 12 43 14 389 4.9045 180.37821 513.48832 492.95320 -0.78642 0.00000 -0.55885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09452 0.19938 -1.00000 - 9457 2017 8 21 12 43 19 293 4.9045 180.37737 513.49425 492.95278 -0.76812 0.00000 -0.55995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09416 0.19937 -1.00000 - 9458 2017 8 21 12 43 24 198 4.9045 180.37653 513.49689 492.95242 -0.75908 0.00000 -0.56055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09380 0.19937 -1.00000 - 9459 2017 8 21 12 43 29 102 4.9045 180.37569 513.50191 492.95219 -0.76318 0.00000 -0.56111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09345 0.19937 -1.00000 - 9460 2017 8 21 12 43 34 7 4.9045 180.37485 513.50258 492.95201 -0.76738 0.00000 -0.56124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09309 0.19937 -1.00000 - 9461 2017 8 21 12 43 38 911 4.9045 180.37402 513.50660 492.95177 -0.76376 0.00000 -0.56154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09273 0.19937 -1.00000 - 9462 2017 8 21 12 43 43 816 4.9045 180.37319 513.51280 492.95148 -0.76854 0.00000 -0.56234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09238 0.19937 -1.00000 - 9463 2017 8 21 12 43 48 720 4.9045 180.37235 513.51778 492.95124 -0.75335 0.00000 -0.56253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09202 0.19937 -1.00000 - 9464 2017 8 21 12 43 53 625 4.9045 180.37152 513.52356 492.95090 -0.74265 0.00000 -0.56198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09166 0.19937 -1.00000 - 9465 2017 8 21 12 43 58 529 4.9045 180.37069 513.52320 492.95042 -0.74848 0.00000 -0.56178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09131 0.19937 -1.00000 - 9466 2017 8 21 12 44 3 434 4.9046 180.36987 513.52450 492.94988 -0.74959 0.00000 -0.56212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09095 0.19937 -1.00000 - 9467 2017 8 21 12 44 8 338 4.9046 180.36904 513.53132 492.94933 -0.72271 0.00000 -0.56184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09059 0.19937 -1.00000 - 9468 2017 8 21 12 44 13 243 4.9046 180.36822 513.53671 492.94867 -0.72528 0.00000 -0.56091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09024 0.19937 -1.00000 - 9469 2017 8 21 12 44 18 148 4.9046 180.36739 513.53819 492.94787 -0.72981 0.00000 -0.55991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08988 0.19937 -1.00000 - 9470 2017 8 21 12 44 23 52 4.9046 180.36657 513.54041 492.94701 -0.72759 0.00000 -0.55983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08952 0.19937 -1.00000 - 9471 2017 8 21 12 44 27 957 4.9046 180.36575 513.53911 492.94613 -0.70754 0.00000 -0.55758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08917 0.19937 -1.00000 - 9472 2017 8 21 12 44 32 861 4.9046 180.36493 513.54248 492.94511 -0.71300 0.00000 -0.55697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08881 0.19937 -1.00000 - 9473 2017 8 21 12 44 37 766 4.9046 180.36412 513.54647 492.94400 -0.70531 0.00000 -0.55582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08845 0.19937 -1.00000 - 9474 2017 8 21 12 44 42 670 4.9046 180.36330 513.55010 492.94283 -0.70482 0.00000 -0.55417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08810 0.19937 -1.00000 - 9475 2017 8 21 12 44 47 575 4.9046 180.36249 513.55409 492.94164 -0.69881 0.00000 -0.55290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08774 0.19937 -1.00000 - 9476 2017 8 21 12 44 52 480 4.9046 180.36168 513.55134 492.94038 -0.69627 0.00000 -0.55094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08738 0.19937 -1.00000 - 9477 2017 8 21 12 44 57 384 4.9046 180.36086 513.54973 492.93910 -0.69372 0.00000 -0.54821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08703 0.19937 -1.00000 - 9478 2017 8 21 12 45 2 289 4.9046 180.36005 513.55334 492.93777 -0.69058 0.00000 -0.54611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08667 0.19937 -1.00000 - 9479 2017 8 21 12 45 7 193 4.9046 180.35925 513.55635 492.93646 -0.68753 0.00000 -0.54444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08631 0.19937 -1.00000 - 9480 2017 8 21 12 45 12 98 4.9046 180.35844 513.55738 492.93517 -0.68435 0.00000 -0.54172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08596 0.19937 -1.00000 - 9481 2017 8 21 12 45 17 3 4.9046 180.35763 513.55903 492.93405 -0.68111 0.00000 -0.53937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08560 0.19937 -1.00000 - 9482 2017 8 21 12 45 21 907 4.9046 180.35683 513.55705 492.93299 -0.67791 0.00000 -0.53659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08524 0.19937 -1.00000 - 9483 2017 8 21 12 45 26 812 4.9046 180.35602 513.55955 492.93197 -0.67477 0.00000 -0.53380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08489 0.19937 -1.00000 - 9484 2017 8 21 12 45 31 716 4.9046 180.35522 513.56343 492.93104 -0.67162 0.00000 -0.53126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08453 0.19937 -1.00000 - 9485 2017 8 21 12 45 36 621 4.9046 180.35442 513.56510 492.93029 -0.67803 0.00000 -0.52855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08417 0.19936 -1.00000 - 9486 2017 8 21 12 45 41 526 4.9046 180.35362 513.56783 492.92970 -0.66544 0.00000 -0.52510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08382 0.19936 -1.00000 - 9487 2017 8 21 12 45 46 430 4.9046 180.35282 513.56588 492.92912 -0.66278 0.00000 -0.52184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08346 0.19936 -1.00000 - 9488 2017 8 21 12 45 51 335 4.9046 180.35203 513.56847 492.92870 -0.66080 0.00000 -0.51927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08310 0.19936 -1.00000 - 9489 2017 8 21 12 45 56 239 4.9046 180.35123 513.57229 492.92852 -0.65905 0.00000 -0.51620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08275 0.19936 -1.00000 - 9490 2017 8 21 12 46 1 144 4.9046 180.35044 513.57775 492.92851 -0.66622 0.00000 -0.51295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08239 0.19936 -1.00000 - 9491 2017 8 21 12 46 6 49 4.9046 180.34964 513.58062 492.92860 -0.66305 0.00000 -0.51001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08203 0.19936 -1.00000 - 9492 2017 8 21 12 46 10 953 4.9046 180.34885 513.58461 492.92892 -0.65521 0.00000 -0.50644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08168 0.19936 -1.00000 - 9493 2017 8 21 12 46 15 858 4.9046 180.34806 513.58526 492.92942 -0.65422 0.00000 -0.50265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08132 0.19936 -1.00000 - 9494 2017 8 21 12 46 20 763 4.9046 180.34727 513.58897 492.93003 -0.65570 0.00000 -0.49941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08096 0.19936 -1.00000 - 9495 2017 8 21 12 46 25 667 4.9046 180.34649 513.59764 492.93077 -0.66762 0.00000 -0.49593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08061 0.19936 -1.00000 - 9496 2017 8 21 12 46 30 572 4.9046 180.34570 513.60431 492.93166 -0.65878 0.00000 -0.49211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08025 0.19936 -1.00000 - 9497 2017 8 21 12 46 35 476 4.9046 180.34492 513.60558 492.93260 -0.65078 0.00000 -0.48741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07989 0.19936 -1.00000 - 9498 2017 8 21 12 46 40 381 4.9046 180.34413 513.61023 492.93356 -0.64997 0.00000 -0.48300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07954 0.19936 -1.00000 - 9499 2017 8 21 12 46 45 286 4.9046 180.34335 513.61508 492.93464 -0.64924 0.00000 -0.47928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07918 0.19936 -1.00000 - 9500 2017 8 21 12 46 50 190 4.9046 180.34257 513.61787 492.93580 -0.64859 0.00000 -0.47427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07882 0.19936 -1.00000 - 9501 2017 8 21 12 46 55 95 4.9047 180.34179 513.62579 492.93692 -0.64804 0.00000 -0.46848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07847 0.19936 -1.00000 - 9502 2017 8 21 12 47 0 0 4.9047 180.34102 513.63356 492.93807 -0.64755 0.00000 -0.46301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07811 0.19936 -1.00000 - 9503 2017 8 21 12 47 4 904 4.9047 180.34024 513.63840 492.93930 -0.64707 0.00000 -0.45793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07775 0.19936 -1.00000 - 9504 2017 8 21 12 47 9 809 4.9047 180.33947 513.64246 492.94054 -0.64660 0.00000 -0.45278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07740 0.19936 -1.00000 - 9505 2017 8 21 12 47 14 714 4.9047 180.33870 513.64401 492.94182 -0.64612 0.00000 -0.44675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07704 0.19936 -1.00000 - 9506 2017 8 21 12 47 19 618 4.9047 180.33792 513.65100 492.94306 -0.64558 0.00000 -0.44096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07668 0.19936 -1.00000 - 9507 2017 8 21 12 47 24 523 4.9047 180.33715 513.65905 492.94431 -0.64497 0.00000 -0.43533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07633 0.19936 -1.00000 - 9508 2017 8 21 12 47 29 428 4.9047 180.33638 513.66648 492.94551 -0.64423 0.00000 -0.42832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07597 0.19936 -1.00000 - 9509 2017 8 21 12 47 34 332 4.9047 180.33562 513.67114 492.94666 -0.64336 0.00000 -0.42164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07561 0.19936 -1.00000 - 9510 2017 8 21 12 47 39 237 4.9047 180.33485 513.67462 492.94779 -0.64239 0.00000 -0.41568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07526 0.19936 -1.00000 - 9511 2017 8 21 12 47 44 142 4.9047 180.33409 513.67595 492.94891 -0.64136 0.00000 -0.40944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07490 0.19936 -1.00000 - 9512 2017 8 21 12 47 49 46 4.9047 180.33332 513.68305 492.94998 -0.64031 0.00000 -0.40203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07454 0.19935 -1.00000 - 9513 2017 8 21 12 47 53 951 4.9047 180.33256 513.68995 492.95091 -0.63922 0.00000 -0.39494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07419 0.19935 -1.00000 - 9514 2017 8 21 12 47 58 856 4.9047 180.33180 513.69402 492.95176 -0.63807 0.00000 -0.38828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07383 0.19935 -1.00000 - 9515 2017 8 21 12 48 3 760 4.9047 180.33105 513.69985 492.95265 -0.63689 0.00000 -0.38035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07347 0.19935 -1.00000 - 9516 2017 8 21 12 48 8 665 4.9047 180.33029 513.70278 492.95348 -0.63573 0.00000 -0.37314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07312 0.19935 -1.00000 - 9517 2017 8 21 12 48 13 570 4.9047 180.32953 513.70321 492.95428 -0.63460 0.00000 -0.36675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07276 0.19935 -1.00000 - 9518 2017 8 21 12 48 18 474 4.9047 180.32878 513.70867 492.95510 -0.63346 0.00000 -0.35773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07240 0.19935 -1.00000 - 9519 2017 8 21 12 48 23 379 4.9047 180.32803 513.71520 492.95589 -0.63224 0.00000 -0.34920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07205 0.19935 -1.00000 - 9520 2017 8 21 12 48 28 284 4.9047 180.32728 513.71918 492.95669 -0.63102 0.00000 -0.34135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07169 0.19935 -1.00000 - 9521 2017 8 21 12 48 33 189 4.9047 180.32653 513.72264 492.95744 -0.62994 0.01075 -0.33311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07133 0.19935 -1.00000 - 9522 2017 8 21 12 48 38 93 4.9047 180.32578 513.72260 492.95819 -0.62884 0.05525 -0.32491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07098 0.19935 -1.00000 - 9523 2017 8 21 12 48 42 998 4.9047 180.32503 513.72721 492.95897 -0.62773 0.07845 -0.31564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07062 0.19935 -1.00000 - 9524 2017 8 21 12 48 47 903 4.9047 180.32429 513.73347 492.95972 -0.62663 0.10093 -0.30684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07026 0.19935 -1.00000 - 9525 2017 8 21 12 48 52 807 4.9047 180.32354 513.73877 492.96050 -0.62554 0.12207 -0.29829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06991 0.19935 -1.00000 - 9526 2017 8 21 12 48 57 712 4.9047 180.32280 513.74494 492.96133 -0.62447 0.15447 -0.28931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06955 0.19935 -1.00000 - 9527 2017 8 21 12 49 2 617 4.9047 180.32206 513.74470 492.96218 -0.62341 0.18695 -0.27974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06919 0.19935 -1.00000 - 9528 2017 8 21 12 49 7 522 4.9047 180.32132 513.74474 492.96300 -0.62237 0.21227 -0.27178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06884 0.19935 -1.00000 - 9529 2017 8 21 12 49 12 426 4.9047 180.32059 513.75027 492.96387 -0.62136 0.26431 -0.26286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06848 0.19935 -1.00000 - 9530 2017 8 21 12 49 17 331 4.9047 180.31985 513.75465 492.96478 -0.62038 0.33518 -0.25482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06812 0.19935 -1.00000 - 9531 2017 8 21 12 49 22 236 4.9047 180.31912 513.76086 492.96578 -0.61937 0.39616 -0.24704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06777 0.19935 -1.00000 - 9532 2017 8 21 12 49 27 140 4.9047 180.31839 513.76535 492.96684 -0.61835 0.45325 -0.24012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06741 0.19935 -1.00000 - 9533 2017 8 21 12 49 32 45 4.9047 180.31765 513.76812 492.96806 -0.61732 0.51459 -0.23375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06705 0.19935 -1.00000 - 9534 2017 8 21 12 49 36 950 4.9047 180.31693 513.76820 492.96936 -0.61628 0.58582 -0.22769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06670 0.19935 -1.00000 - 9535 2017 8 21 12 49 41 855 4.9047 180.31620 513.77458 492.97071 -0.61526 0.65449 -0.22150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06634 0.19935 -1.00000 - 9536 2017 8 21 12 49 46 759 4.9047 180.31547 513.78038 492.97210 -0.61426 0.71997 -0.21604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06598 0.19935 -1.00000 - 9537 2017 8 21 12 49 51 664 4.9047 180.31475 513.78491 492.97360 -0.61329 0.77950 -0.21263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06563 0.19935 -1.00000 - 9538 2017 8 21 12 49 56 569 4.9047 180.31402 513.79249 492.97528 -0.61236 0.82869 -0.20819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06527 0.19935 -1.00000 - 9539 2017 8 21 12 50 1 474 4.9047 180.31330 513.79365 492.97697 -0.61145 0.86499 -0.20491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06491 0.19935 -1.00000 - 9540 2017 8 21 12 50 6 378 4.9047 180.31258 513.79675 492.97875 -0.61059 0.88729 -0.20238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06456 0.19934 -1.00000 - 9541 2017 8 21 12 50 11 283 4.9047 180.31186 513.80457 492.98060 -0.60980 0.89555 -0.19985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06420 0.19934 -1.00000 - 9542 2017 8 21 12 50 16 188 4.9047 180.31115 513.81250 492.98254 -0.60915 0.88936 -0.19812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06384 0.19934 -1.00000 - 9543 2017 8 21 12 50 21 93 4.9047 180.31043 513.81630 492.98459 -0.60847 0.86886 -0.19735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06349 0.19934 -1.00000 - 9544 2017 8 21 12 50 25 997 4.9048 180.30972 513.82242 492.98670 -0.60776 0.83495 -0.19689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06313 0.19934 -1.00000 - 9545 2017 8 21 12 50 30 902 4.9048 180.30900 513.82542 492.98888 -0.60698 0.78835 -0.19654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06277 0.19934 -1.00000 - 9546 2017 8 21 12 50 35 807 4.9048 180.30829 513.83048 492.99110 -0.60615 0.73134 -0.19638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06242 0.19934 -1.00000 - 9547 2017 8 21 12 50 40 712 4.9048 180.30758 513.83898 492.99336 -0.60527 0.66577 -0.19767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06206 0.19934 -1.00000 - 9548 2017 8 21 12 50 45 616 4.9048 180.30688 513.84751 492.99576 -0.60436 0.59358 -0.19745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06170 0.19934 -1.00000 - 9549 2017 8 21 12 50 50 521 4.9048 180.30617 513.85404 492.99815 -0.60344 0.51930 -0.19766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06135 0.19934 -1.00000 - 9550 2017 8 21 12 50 55 426 4.9048 180.30546 513.85610 493.00059 -0.60251 0.44648 -0.19781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06099 0.19934 -1.00000 - 9551 2017 8 21 12 51 0 331 4.9048 180.30476 513.86144 493.00312 -0.60160 0.37681 -0.19848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06063 0.19934 -1.00000 - 9552 2017 8 21 12 51 5 235 4.9048 180.30406 513.86989 493.00575 -0.60074 0.31099 -0.19946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06028 0.19934 -1.00000 - 9553 2017 8 21 12 51 10 140 4.9048 180.30335 513.87907 493.00844 -0.59992 0.24911 -0.19982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05992 0.19934 -1.00000 - 9554 2017 8 21 12 51 15 45 4.9048 180.30265 513.88641 493.01109 -0.59915 0.21188 -0.19992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05956 0.19934 -1.00000 - 9555 2017 8 21 12 51 19 950 4.9048 180.30196 513.88943 493.01387 -0.59834 0.22532 -0.20011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05921 0.19934 -1.00000 - 9556 2017 8 21 12 51 24 854 4.9048 180.30126 513.89548 493.01672 -0.59751 0.23938 -0.20028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05885 0.19934 -1.00000 - 9557 2017 8 21 12 51 29 759 4.9048 180.30056 513.90503 493.01964 -0.59663 0.27234 -0.19990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05849 0.19934 -1.00000 - 9558 2017 8 21 12 51 34 664 4.9048 180.29987 513.91425 493.02256 -0.59573 0.28743 -0.19874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05813 0.19934 -1.00000 - 9559 2017 8 21 12 51 39 569 4.9048 180.29918 513.91871 493.02547 -0.59481 0.29368 -0.19813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05778 0.19934 -1.00000 - 9560 2017 8 21 12 51 44 474 4.9048 180.29849 513.92793 493.02841 -0.59388 0.30436 -0.19690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05742 0.19934 -1.00000 - 9561 2017 8 21 12 51 49 378 4.9048 180.29780 513.92998 493.03131 -0.59293 0.33145 -0.19534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05706 0.19934 -1.00000 - 9562 2017 8 21 12 51 54 283 4.9048 180.29711 513.93605 493.03429 -0.59196 0.34912 -0.19295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05671 0.19934 -1.00000 - 9563 2017 8 21 12 51 59 188 4.9048 180.29642 513.94571 493.03728 -0.59097 0.34059 -0.19046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05635 0.19934 -1.00000 - 9564 2017 8 21 12 52 4 93 4.9048 180.29574 513.95513 493.04028 -0.58998 0.33360 -0.18865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05599 0.19934 -1.00000 - 9565 2017 8 21 12 52 8 997 4.9048 180.29505 513.95840 493.04326 -0.58899 0.32415 -0.18624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05564 0.19934 -1.00000 - 9566 2017 8 21 12 52 13 902 4.9048 180.29437 513.96772 493.04633 -0.58800 0.33052 -0.18351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05528 0.19934 -1.00000 - 9567 2017 8 21 12 52 18 807 4.9048 180.29369 513.97020 493.04944 -0.58698 0.32678 -0.18057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05492 0.19934 -1.00000 - 9568 2017 8 21 12 52 23 712 4.9048 180.29301 513.97621 493.05262 -0.58588 0.29690 -0.17784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05457 0.19933 -1.00000 - 9569 2017 8 21 12 52 28 617 4.9048 180.29233 513.98684 493.05585 -0.58471 0.28425 -0.17574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05421 0.19933 -1.00000 - 9570 2017 8 21 12 52 33 521 4.9048 180.29166 513.99614 493.05911 -0.58350 0.30045 -0.17327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05385 0.19933 -1.00000 - 9571 2017 8 21 12 52 38 426 4.9048 180.29098 513.99894 493.06238 -0.58226 0.30144 -0.17010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05350 0.19933 -1.00000 - 9572 2017 8 21 12 52 43 331 4.9048 180.29031 514.00799 493.06571 -0.58099 0.34481 -0.16763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05314 0.19933 -1.00000 - 9573 2017 8 21 12 52 48 236 4.9048 180.28963 514.01093 493.06911 -0.57970 0.39098 -0.16532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05278 0.19933 -1.00000 - 9574 2017 8 21 12 52 53 141 4.9048 180.28896 514.01910 493.07253 -0.57839 0.42720 -0.16365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05243 0.19933 -1.00000 - 9575 2017 8 21 12 52 58 45 4.9048 180.28829 514.02772 493.07599 -0.57709 0.46109 -0.16212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05207 0.19933 -1.00000 - 9576 2017 8 21 12 53 2 950 4.9048 180.28763 514.03705 493.07954 -0.57581 0.49205 -0.16069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05171 0.19933 -1.00000 - 9577 2017 8 21 12 53 7 855 4.9048 180.28696 514.04371 493.08315 -0.57454 0.52963 -0.15984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05136 0.19933 -1.00000 - 9578 2017 8 21 12 53 12 760 4.9048 180.28630 514.04704 493.08681 -0.57330 0.57266 -0.15906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05100 0.19933 -1.00000 - 9579 2017 8 21 12 53 17 665 4.9048 180.28563 514.05525 493.09056 -0.57219 0.61316 -0.15935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05064 0.19933 -1.00000 - 9580 2017 8 21 12 53 22 570 4.9048 180.28497 514.06344 493.09443 -0.57119 0.64929 -0.15942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05029 0.19933 -1.00000 - 9581 2017 8 21 12 53 27 474 4.9048 180.28431 514.07336 493.09840 -0.57021 0.67784 -0.15983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04993 0.19933 -1.00000 - 9582 2017 8 21 12 53 32 379 4.9048 180.28365 514.08477 493.10242 -0.56923 0.69720 -0.16048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04957 0.19933 -1.00000 - 9583 2017 8 21 12 53 37 284 4.9048 180.28299 514.08800 493.10653 -0.56829 0.70701 -0.16130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04922 0.19933 -1.00000 - 9584 2017 8 21 12 53 42 189 4.9048 180.28234 514.09392 493.11071 -0.56735 0.70685 -0.16212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04886 0.19933 -1.00000 - 9585 2017 8 21 12 53 47 94 4.9048 180.28168 514.10434 493.11503 -0.56644 0.69613 -0.16345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04850 0.19933 -1.00000 - 9586 2017 8 21 12 53 51 998 4.9048 180.28103 514.11544 493.11939 -0.56553 0.67433 -0.16488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04815 0.19933 -1.00000 - 9587 2017 8 21 12 53 56 903 4.9048 180.28038 514.12289 493.12370 -0.56462 0.64278 -0.16632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04779 0.19933 -1.00000 - 9588 2017 8 21 12 54 1 808 4.9048 180.27972 514.13154 493.12797 -0.56370 0.60267 -0.16804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04743 0.19933 -1.00000 - 9589 2017 8 21 12 54 6 713 4.9048 180.27908 514.13522 493.13237 -0.56280 0.56007 -0.16957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04708 0.19933 -1.00000 - 9590 2017 8 21 12 54 11 618 4.9048 180.27843 514.14525 493.13690 -0.56191 0.51218 -0.17236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04672 0.19933 -1.00000 - 9591 2017 8 21 12 54 16 522 4.9048 180.27778 514.15461 493.14162 -0.56110 0.45989 -0.17420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04636 0.19933 -1.00000 - 9592 2017 8 21 12 54 21 427 4.9048 180.27714 514.16583 493.14640 -0.56029 0.40427 -0.17574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04601 0.19933 -1.00000 - 9593 2017 8 21 12 54 26 332 4.9048 180.27650 514.17407 493.15125 -0.55952 0.34648 -0.17750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04565 0.19933 -1.00000 - 9594 2017 8 21 12 54 31 237 4.9048 180.27586 514.18251 493.15624 -0.55879 0.28806 -0.17775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04529 0.19933 -1.00000 - 9595 2017 8 21 12 54 36 142 4.9048 180.27522 514.18995 493.16121 -0.55809 0.23140 -0.17968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04494 0.19932 -1.00000 - 9596 2017 8 21 12 54 41 47 4.9048 180.27458 514.20087 493.16631 -0.55739 0.17681 -0.18020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04458 0.19932 -1.00000 - 9597 2017 8 21 12 54 45 951 4.9048 180.27394 514.21264 493.17140 -0.55667 0.12522 -0.18014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04422 0.19932 -1.00000 - 9598 2017 8 21 12 54 50 856 4.9048 180.27331 514.22008 493.17654 -0.55591 0.09963 -0.18075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04387 0.19932 -1.00000 - 9599 2017 8 21 12 54 55 761 4.9048 180.27267 514.23187 493.18173 -0.55512 0.09505 -0.18074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04351 0.19932 -1.00000 - 9600 2017 8 21 12 55 0 666 4.9048 180.27204 514.23668 493.18695 -0.55429 0.11019 -0.18060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04315 0.19932 -1.00000 - 9601 2017 8 21 12 55 5 571 4.9048 180.27141 514.24783 493.19235 -0.55343 0.13394 -0.17904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04280 0.19932 -1.00000 - 9602 2017 8 21 12 55 10 475 4.9048 180.27078 514.26003 493.19776 -0.55256 0.13378 -0.17752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04244 0.19932 -1.00000 - 9603 2017 8 21 12 55 15 380 4.9048 180.27015 514.26958 493.20329 -0.55171 0.14062 -0.17616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04208 0.19932 -1.00000 - 9604 2017 8 21 12 55 20 285 4.9048 180.26953 514.28157 493.20877 -0.55081 0.14760 -0.17401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04173 0.19932 -1.00000 - 9605 2017 8 21 12 55 25 190 4.9048 180.26890 514.28652 493.21437 -0.54991 0.17531 -0.17139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04137 0.19932 -1.00000 - 9606 2017 8 21 12 55 30 95 4.9048 180.26828 514.29547 493.22000 -0.54900 0.19314 -0.16766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04101 0.19932 -1.00000 - 9607 2017 8 21 12 55 35 0 4.9048 180.26765 514.30605 493.22567 -0.54807 0.20887 -0.16322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04066 0.19932 -1.00000 - 9608 2017 8 21 12 55 39 904 4.9048 180.26703 514.31846 493.23130 -0.54712 0.19761 -0.15841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04030 0.19932 -1.00000 - 9609 2017 8 21 12 55 44 809 4.9048 180.26641 514.32676 493.23694 -0.54616 0.19480 -0.15409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03994 0.19932 -1.00000 - 9610 2017 8 21 12 55 49 714 4.9048 180.26580 514.33920 493.24264 -0.54518 0.21640 -0.14845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03959 0.19932 -1.00000 - 9611 2017 8 21 12 55 54 619 4.9048 180.26518 514.34432 493.24828 -0.54418 0.22875 -0.14148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03923 0.19932 -1.00000 - 9612 2017 8 21 12 55 59 524 4.9048 180.26456 514.35342 493.25394 -0.54316 0.23952 -0.13464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03887 0.19932 -1.00000 - 9613 2017 8 21 12 56 4 428 4.9048 180.26395 514.36624 493.25962 -0.54213 0.23909 -0.12698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03852 0.19932 -1.00000 - 9614 2017 8 21 12 56 9 333 4.9048 180.26334 514.37842 493.26526 -0.54110 0.21966 -0.12093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03816 0.19932 -1.00000 - 9615 2017 8 21 12 56 14 238 4.9048 180.26272 514.38490 493.27091 -0.54008 0.23755 -0.11312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03780 0.19932 -1.00000 - 9616 2017 8 21 12 56 19 143 4.9048 180.26211 514.39745 493.27663 -0.53910 0.24691 -0.10656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03745 0.19932 -1.00000 - 9617 2017 8 21 12 56 24 48 4.9048 180.26151 514.40286 493.28239 -0.53808 0.25294 -0.09858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03709 0.19932 -1.00000 - 9618 2017 8 21 12 56 28 953 4.9048 180.26090 514.41202 493.28812 -0.53704 0.23479 -0.09151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03673 0.19932 -1.00000 - 9619 2017 8 21 12 56 33 857 4.9048 180.26029 514.42421 493.29388 -0.53599 0.27768 -0.08368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03638 0.19932 -1.00000 - 9620 2017 8 21 12 56 38 762 4.9048 180.25969 514.43608 493.29969 -0.53492 0.32017 -0.07598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03602 0.19932 -1.00000 - 9621 2017 8 21 12 56 43 667 4.9048 180.25909 514.44541 493.30548 -0.53382 0.36122 -0.06743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03566 0.19932 -1.00000 - 9622 2017 8 21 12 56 48 572 4.9048 180.25848 514.45366 493.31121 -0.53271 0.40096 -0.05779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03531 0.19932 -1.00000 - 9623 2017 8 21 12 56 53 477 4.9048 180.25788 514.46008 493.31684 -0.53157 0.43929 -0.04907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03495 0.19931 -1.00000 - 9624 2017 8 21 12 56 58 382 4.9048 180.25729 514.47011 493.32253 -0.53041 0.47618 -0.04034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03459 0.19931 -1.00000 - 9625 2017 8 21 12 57 3 286 4.9048 180.25669 514.48215 493.32821 -0.52923 0.51638 -0.03146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03424 0.19931 -1.00000 - 9626 2017 8 21 12 57 8 191 4.9048 180.25609 514.49216 493.33389 -0.52804 0.55793 -0.02179 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03388 0.19931 -1.00000 - 9627 2017 8 21 12 57 13 96 4.9048 180.25550 514.50066 493.33948 -0.52684 0.59854 -0.01265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03352 0.19931 -1.00000 - 9628 2017 8 21 12 57 18 1 4.9048 180.25491 514.50602 493.34502 -0.52567 0.63796 -0.00320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03317 0.19931 -1.00000 - 9629 2017 8 21 12 57 22 906 4.9048 180.25431 514.51705 493.35062 -0.52444 0.67602 0.00631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03281 0.19931 -1.00000 - 9630 2017 8 21 12 57 27 811 4.9048 180.25372 514.52875 493.35625 -0.52320 0.71245 0.01495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03245 0.19931 -1.00000 - 9631 2017 8 21 12 57 32 715 4.9048 180.25314 514.53706 493.36187 -0.52194 0.74676 0.02399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03210 0.19931 -1.00000 - 9632 2017 8 21 12 57 37 620 4.9048 180.25255 514.54832 493.36739 -0.52069 0.77884 0.03240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03174 0.19931 -1.00000 - 9633 2017 8 21 12 57 42 525 4.9048 180.25196 514.55310 493.37306 -0.51945 0.80860 0.04013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03138 0.19931 -1.00000 - 9634 2017 8 21 12 57 47 430 4.9048 180.25138 514.55979 493.37882 -0.51837 0.83518 0.04944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03103 0.19931 -1.00000 - 9635 2017 8 21 12 57 52 335 4.9048 180.25080 514.57165 493.38447 -0.51758 0.85796 0.05694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03067 0.19931 -1.00000 - 9636 2017 8 21 12 57 57 239 4.9048 180.25021 514.58320 493.39020 -0.51680 0.87666 0.06426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03031 0.19931 -1.00000 - 9637 2017 8 21 12 58 2 144 4.9048 180.24963 514.59186 493.39601 -0.51603 0.89146 0.07293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02996 0.19931 -1.00000 - 9638 2017 8 21 12 58 7 49 4.9048 180.24906 514.60057 493.40180 -0.51529 0.90330 0.08001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02960 0.19931 -1.00000 - 9639 2017 8 21 12 58 11 954 4.9048 180.24848 514.60668 493.40751 -0.51459 0.91280 0.08805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02924 0.19931 -1.00000 - 9640 2017 8 21 12 58 16 859 4.9048 180.24790 514.61803 493.41325 -0.51395 0.92010 0.09524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02889 0.19931 -1.00000 - 9641 2017 8 21 12 58 21 764 4.9048 180.24733 514.62963 493.41909 -0.51334 0.92523 0.10255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02853 0.19931 -1.00000 - 9642 2017 8 21 12 58 26 668 4.9048 180.24675 514.63863 493.42498 -0.51277 0.92837 0.10873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02817 0.19931 -1.00000 - 9643 2017 8 21 12 58 31 573 4.9048 180.24618 514.64735 493.43098 -0.51222 0.92990 0.11674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02782 0.19931 -1.00000 - 9644 2017 8 21 12 58 36 478 4.9048 180.24561 514.65326 493.43701 -0.51170 0.93024 0.12383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02746 0.19931 -1.00000 - 9645 2017 8 21 12 58 41 383 4.9048 180.24504 514.66277 493.44316 -0.51119 0.93002 0.13002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02710 0.19931 -1.00000 - 9646 2017 8 21 12 58 46 288 4.9048 180.24448 514.67703 493.44933 -0.51068 0.92980 0.13789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02675 0.19931 -1.00000 - 9647 2017 8 21 12 58 51 193 4.9048 180.24391 514.68585 493.45545 -0.51015 0.93023 0.14475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02639 0.19931 -1.00000 - 9648 2017 8 21 12 58 56 97 4.9048 180.24335 514.69683 493.46157 -0.50961 0.93188 0.15247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02603 0.19931 -1.00000 - 9649 2017 8 21 12 59 1 2 4.9048 180.24278 514.70536 493.46779 -0.50903 0.93513 0.16003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02568 0.19931 -1.00000 - 9650 2017 8 21 12 59 5 907 4.9048 180.24222 514.71235 493.47402 -0.50844 0.94048 0.16792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02532 0.19931 -1.00000 - 9651 2017 8 21 12 59 10 812 4.9048 180.24166 514.72010 493.48023 -0.50782 0.94820 0.17520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02496 0.19930 -1.00000 - 9652 2017 8 21 12 59 15 717 4.9048 180.24110 514.73016 493.48649 -0.50724 0.95841 0.18317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02461 0.19930 -1.00000 - 9653 2017 8 21 12 59 20 621 4.9048 180.24054 514.73988 493.49267 -0.50662 0.97121 0.19129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02425 0.19930 -1.00000 - 9654 2017 8 21 12 59 25 526 4.9048 180.23999 514.74852 493.49880 -0.50600 0.98657 0.19862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02389 0.19930 -1.00000 - 9655 2017 8 21 12 59 30 431 4.9048 180.23943 514.75864 493.50496 -0.50538 1.00646 0.20722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02354 0.19930 -1.00000 - 9656 2017 8 21 12 59 35 336 4.9048 180.23888 514.76937 493.51110 -0.50477 1.02771 0.21336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02318 0.19930 -1.00000 - 9657 2017 8 21 12 59 40 241 4.9048 180.23832 514.78181 493.51727 -0.50417 1.04999 0.21953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02282 0.19930 -1.00000 - 9658 2017 8 21 12 59 45 146 4.9048 180.23777 514.79023 493.52354 -0.50357 1.07291 0.22513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02247 0.19930 -1.00000 - 9659 2017 8 21 12 59 50 50 4.9048 180.23722 514.79886 493.52993 -0.50296 1.09614 0.23053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02211 0.19930 -1.00000 - 9660 2017 8 21 12 59 54 955 4.9048 180.23668 514.80758 493.53645 -0.50236 1.11987 0.23583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02175 0.19930 -1.00000 - 9661 2017 8 21 12 59 59 860 4.9048 180.23613 514.81645 493.54302 -0.50174 1.14557 0.24004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02140 0.19930 -1.00000 - 9662 2017 8 21 13 0 4 765 4.9048 180.23559 514.82975 493.54975 -0.50112 1.17151 0.24380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02104 0.19930 -1.00000 - 9663 2017 8 21 13 0 9 670 4.9048 180.23504 514.83971 493.55661 -0.50049 1.19754 0.24759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02068 0.19930 -1.00000 - 9664 2017 8 21 13 0 14 574 4.9048 180.23450 514.84967 493.56346 -0.49986 1.22375 0.25085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02033 0.19930 -1.00000 - 9665 2017 8 21 13 0 19 479 4.9048 180.23396 514.86222 493.57040 -0.49931 1.24996 0.25370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01997 0.19930 -1.00000 - 9666 2017 8 21 13 0 24 384 4.9048 180.23342 514.87180 493.57744 -0.49873 1.27533 0.25770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01961 0.19930 -1.00000 - 9667 2017 8 21 13 0 29 289 4.9048 180.23289 514.88210 493.58448 -0.49814 1.29882 0.25894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01926 0.19930 -1.00000 - 9668 2017 8 21 13 0 34 194 4.9048 180.23235 514.89273 493.59158 -0.49754 1.32011 0.26127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01890 0.19930 -1.00000 - 9669 2017 8 21 13 0 39 99 4.9048 180.23181 514.90369 493.59872 -0.49692 1.33508 0.26344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01854 0.19930 -1.00000 - 9670 2017 8 21 13 0 44 3 4.9048 180.23128 514.91707 493.60594 -0.49629 1.35233 0.26494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01819 0.19930 -1.00000 - 9671 2017 8 21 13 0 48 908 4.9048 180.23075 514.92803 493.61319 -0.49564 1.36853 0.26740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01783 0.19930 -1.00000 - 9672 2017 8 21 13 0 53 813 4.9048 180.23022 514.93772 493.62047 -0.49498 1.38198 0.26763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01747 0.19930 -1.00000 - 9673 2017 8 21 13 0 58 718 4.9048 180.22969 514.94853 493.62779 -0.49430 1.39197 0.26899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01712 0.19930 -1.00000 - 9674 2017 8 21 13 1 3 623 4.9048 180.22916 514.95649 493.63515 -0.49363 1.39461 0.26911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01676 0.19930 -1.00000 - 9675 2017 8 21 13 1 8 527 4.9048 180.22864 514.97066 493.64270 -0.49295 1.39467 0.26966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01640 0.19930 -1.00000 - 9676 2017 8 21 13 1 13 432 4.9048 180.22811 514.98573 493.65038 -0.49229 1.39792 0.26992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01605 0.19930 -1.00000 - 9677 2017 8 21 13 1 18 337 4.9048 180.22759 514.99697 493.65806 -0.49167 1.40085 0.27044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01569 0.19930 -1.00000 - 9678 2017 8 21 13 1 23 242 4.9048 180.22707 515.00669 493.66582 -0.49105 1.40259 0.26928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01533 0.19929 -1.00000 - 9679 2017 8 21 13 1 28 147 4.9048 180.22655 515.01840 493.67369 -0.49044 1.40233 0.26767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01498 0.19929 -1.00000 - 9680 2017 8 21 13 1 33 51 4.9048 180.22603 515.02991 493.68152 -0.48985 1.39884 0.26631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01462 0.19929 -1.00000 - 9681 2017 8 21 13 1 37 956 4.9048 180.22551 515.04121 493.68941 -0.48927 1.39266 0.26448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01426 0.19929 -1.00000 - 9682 2017 8 21 13 1 42 861 4.9048 180.22499 515.05575 493.69753 -0.48870 1.38511 0.26301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01391 0.19929 -1.00000 - 9683 2017 8 21 13 1 47 766 4.9048 180.22448 515.06493 493.70579 -0.48814 1.37643 0.26024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01355 0.19929 -1.00000 - 9684 2017 8 21 13 1 52 671 4.9048 180.22396 515.07881 493.71413 -0.48758 1.36642 0.25710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01319 0.19929 -1.00000 - 9685 2017 8 21 13 1 57 575 4.9048 180.22345 515.09136 493.72259 -0.48699 1.35487 0.25545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01284 0.19929 -1.00000 - 9686 2017 8 21 13 2 2 480 4.9048 180.22294 515.10340 493.73102 -0.48639 1.34161 0.25213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01248 0.19929 -1.00000 - 9687 2017 8 21 13 2 7 385 4.9048 180.22243 515.11885 493.73962 -0.48576 1.32657 0.24827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01212 0.19929 -1.00000 - 9688 2017 8 21 13 2 12 290 4.9048 180.22192 515.13162 493.74825 -0.48511 1.30968 0.24724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01177 0.19929 -1.00000 - 9689 2017 8 21 13 2 17 195 4.9048 180.22141 515.14087 493.75688 -0.48447 1.29088 0.24302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01141 0.19929 -1.00000 - 9690 2017 8 21 13 2 22 99 4.9048 180.22091 515.15663 493.76572 -0.48378 1.27017 0.23940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01105 0.19929 -1.00000 - 9691 2017 8 21 13 2 27 4 4.9048 180.22040 515.16938 493.77458 -0.48308 1.24758 0.23730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01070 0.19929 -1.00000 - 9692 2017 8 21 13 2 31 909 4.9048 180.21990 515.18327 493.78343 -0.48236 1.22318 0.23354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01034 0.19929 -1.00000 - 9693 2017 8 21 13 2 36 814 4.9048 180.21940 515.19575 493.79242 -0.48165 1.19707 0.23134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00998 0.19929 -1.00000 - 9694 2017 8 21 13 2 41 719 4.9048 180.21890 515.20637 493.80144 -0.48095 1.16943 0.22837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00963 0.19929 -1.00000 - 9695 2017 8 21 13 2 46 623 4.9048 180.21840 515.21723 493.81044 -0.48025 1.14059 0.22509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00927 0.19929 -1.00000 - 9696 2017 8 21 13 2 51 528 4.9048 180.21790 515.23082 493.81951 -0.47956 1.11084 0.22296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00891 0.19929 -1.00000 - 9697 2017 8 21 13 2 56 433 4.9048 180.21740 515.24447 493.82861 -0.47888 1.08050 0.22122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00856 0.19929 -1.00000 - 9698 2017 8 21 13 3 1 338 4.9048 180.21691 515.25815 493.83770 -0.47820 1.04988 0.21852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00820 0.19929 -1.00000 - 9699 2017 8 21 13 3 6 243 4.9048 180.21641 515.27157 493.84676 -0.47752 1.01930 0.21719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00784 0.19929 -1.00000 - 9700 2017 8 21 13 3 11 147 4.9048 180.21592 515.28495 493.85582 -0.47685 0.98926 0.21578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00749 0.19929 -1.00000 - 9701 2017 8 21 13 3 16 52 4.9048 180.21543 515.29825 493.86490 -0.47620 0.96038 0.21413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00713 0.19929 -1.00000 - 9702 2017 8 21 13 3 20 957 4.9048 180.21494 515.31127 493.87394 -0.47551 0.93285 0.21339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00677 0.19929 -1.00000 - 9703 2017 8 21 13 3 25 862 4.9048 180.21445 515.32397 493.88293 -0.47479 0.90687 0.21288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00642 0.19929 -1.00000 - 9704 2017 8 21 13 3 30 767 4.9048 180.21396 515.33688 493.89187 -0.47405 0.88276 0.21232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00606 0.19929 -1.00000 - 9705 2017 8 21 13 3 35 671 4.9048 180.21348 515.34946 493.90081 -0.47328 0.86075 0.21186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00570 0.19929 -1.00000 - 9706 2017 8 21 13 3 40 576 4.9048 180.21299 515.36191 493.90981 -0.47248 0.84091 0.21108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00535 0.19928 -1.00000 - 9707 2017 8 21 13 3 45 481 4.9048 180.21251 515.37543 493.91888 -0.47166 0.82320 0.20997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00499 0.19928 -1.00000 - 9708 2017 8 21 13 3 50 386 4.9048 180.21203 515.39313 493.92800 -0.47082 0.80756 0.20870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00463 0.19928 -1.00000 - 9709 2017 8 21 13 3 55 290 4.9048 180.21155 515.40455 493.93720 -0.46996 0.79390 0.20738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00428 0.19928 -1.00000 - 9710 2017 8 21 13 4 0 195 4.9048 180.21107 515.41517 493.94646 -0.46909 0.78209 0.20545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00392 0.19928 -1.00000 - 9711 2017 8 21 13 4 5 100 4.9048 180.21059 515.43175 493.95595 -0.46820 0.77183 0.20322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00356 0.19928 -1.00000 - 9712 2017 8 21 13 4 10 5 4.9048 180.21011 515.44522 493.96564 -0.46731 0.76284 0.20151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00321 0.19928 -1.00000 - 9713 2017 8 21 13 4 14 910 4.9048 180.20964 515.45948 493.97542 -0.46644 0.75492 0.19934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00285 0.19928 -1.00000 - 9714 2017 8 21 13 4 19 814 4.9048 180.20916 515.47330 493.98542 -0.46550 0.74797 0.19906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00249 0.19928 -1.00000 - 9715 2017 8 21 13 4 24 719 4.9048 180.20869 515.48591 493.99546 -0.46453 0.74192 0.19804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00213 0.19928 -1.00000 - 9716 2017 8 21 13 4 29 624 4.9048 180.20822 515.50306 494.00565 -0.46351 0.73682 0.19597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00178 0.19928 -1.00000 - 9717 2017 8 21 13 4 34 529 4.9048 180.20775 515.51814 494.01598 -0.46245 0.73291 0.19616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00142 0.19928 -1.00000 - 9718 2017 8 21 13 4 39 433 4.9048 180.20728 515.53292 494.02631 -0.46134 0.72983 0.19520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00106 0.19928 -1.00000 - 9719 2017 8 21 13 4 44 338 4.9048 180.20682 515.55048 494.03678 -0.46015 0.72627 0.19474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00071 0.19928 -1.00000 - 9720 2017 8 21 13 4 49 243 4.9048 180.20635 515.56396 494.04735 -0.45928 0.71866 0.19655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00035 0.19928 -1.00000 - 9721 2017 8 21 13 4 54 148 4.9048 180.20589 515.57901 494.05796 -0.45868 0.71647 0.19587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99999 0.19928 -1.00000 - 9722 2017 8 21 13 4 59 52 4.9048 180.20543 515.59436 494.06865 -0.45806 0.71951 0.19663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99964 0.19928 -1.00000 - 9723 2017 8 21 13 5 3 957 4.9048 180.20496 515.60690 494.07937 -0.45743 0.72449 0.19941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99928 0.19928 -1.00000 - 9724 2017 8 21 13 5 8 862 4.9048 180.20450 515.62400 494.09015 -0.45678 0.73065 0.20063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99892 0.19928 -1.00000 - 9725 2017 8 21 13 5 13 767 4.9048 180.20405 515.64346 494.10099 -0.45613 0.73805 0.20245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99857 0.19928 -1.00000 - 9726 2017 8 21 13 5 18 672 4.9048 180.20359 515.65910 494.11190 -0.45550 0.74758 0.20621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99821 0.19928 -1.00000 - 9727 2017 8 21 13 5 23 576 4.9048 180.20313 515.67266 494.12283 -0.45483 0.75928 0.20856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99785 0.19928 -1.00000 - 9728 2017 8 21 13 5 28 481 4.9048 180.20268 515.68844 494.13381 -0.45416 0.77318 0.21157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99750 0.19928 -1.00000 - 9729 2017 8 21 13 5 33 386 4.9048 180.20223 515.70128 494.14487 -0.45352 0.78891 0.21756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99714 0.19928 -1.00000 - 9730 2017 8 21 13 5 38 291 4.9048 180.20178 515.71855 494.15588 -0.45294 0.80598 0.22063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99678 0.19928 -1.00000 - 9731 2017 8 21 13 5 43 195 4.9048 180.20133 515.73783 494.16692 -0.45241 0.82405 0.22569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99643 0.19928 -1.00000 - 9732 2017 8 21 13 5 48 100 4.9048 180.20088 515.75334 494.17796 -0.45192 0.84282 0.23183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99607 0.19928 -1.00000 - 9733 2017 8 21 13 5 53 5 4.9047 180.20043 515.76734 494.18899 -0.45143 0.86199 0.23580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99571 0.19928 -1.00000 - 9734 2017 8 21 13 5 57 910 4.9047 180.19998 515.78305 494.20002 -0.45089 0.88148 0.24132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99536 0.19927 -1.00000 - 9735 2017 8 21 13 6 2 814 4.9047 180.19953 515.79582 494.21109 -0.45029 0.90099 0.24767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99500 0.19927 -1.00000 - 9736 2017 8 21 13 6 7 719 4.9047 180.19909 515.81249 494.22217 -0.44961 0.91919 0.25234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99464 0.19927 -1.00000 - 9737 2017 8 21 13 6 12 624 4.9047 180.19864 515.83183 494.23338 -0.44887 0.93664 0.25918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99429 0.19927 -1.00000 - 9738 2017 8 21 13 6 17 529 4.9047 180.19820 515.84695 494.24457 -0.44812 0.94754 0.26614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99393 0.19927 -1.00000 - 9739 2017 8 21 13 6 22 433 4.9047 180.19776 515.85853 494.25571 -0.44735 0.95866 0.27136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99357 0.19927 -1.00000 - 9740 2017 8 21 13 6 27 338 4.9047 180.19732 515.87412 494.26689 -0.44662 0.97756 0.27936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99322 0.19927 -1.00000 - 9741 2017 8 21 13 6 32 243 4.9047 180.19688 515.88893 494.27809 -0.44596 0.99779 0.28572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99286 0.19927 -1.00000 - 9742 2017 8 21 13 6 37 147 4.9047 180.19644 515.90666 494.28927 -0.44536 1.01774 0.29166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99250 0.19927 -1.00000 - 9743 2017 8 21 13 6 42 52 4.9047 180.19600 515.92599 494.30054 -0.44484 1.03673 0.29912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99215 0.19927 -1.00000 - 9744 2017 8 21 13 6 46 957 4.9047 180.19557 515.93871 494.31184 -0.44437 1.05458 0.30555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99179 0.19927 -1.00000 - 9745 2017 8 21 13 6 51 862 4.9047 180.19513 515.95364 494.32314 -0.44393 1.07137 0.31261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99143 0.19927 -1.00000 - 9746 2017 8 21 13 6 56 766 4.9047 180.19470 515.96956 494.33448 -0.44351 1.08736 0.32121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99108 0.19927 -1.00000 - 9747 2017 8 21 13 7 1 671 4.9047 180.19427 515.98303 494.34575 -0.44308 1.10300 0.32846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99072 0.19927 -1.00000 - 9748 2017 8 21 13 7 6 576 4.9047 180.19384 516.00205 494.35699 -0.44263 1.11867 0.33633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99036 0.19927 -1.00000 - 9749 2017 8 21 13 7 11 481 4.9047 180.19341 516.02143 494.36833 -0.44218 1.13466 0.34514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99001 0.19927 -1.00000 - 9750 2017 8 21 13 7 16 385 4.9047 180.19298 516.03541 494.37970 -0.44176 1.15125 0.35274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98965 0.19927 -1.00000 - 9751 2017 8 21 13 7 21 290 4.9047 180.19255 516.05218 494.39102 -0.44133 1.16863 0.36050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98929 0.19927 -1.00000 - 9752 2017 8 21 13 7 26 195 4.9047 180.19213 516.06529 494.40245 -0.44092 1.18699 0.36996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98894 0.19927 -1.00000 - 9753 2017 8 21 13 7 31 99 4.9047 180.19171 516.07880 494.41382 -0.44054 1.20656 0.37831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98858 0.19927 -1.00000 - 9754 2017 8 21 13 7 36 4 4.9047 180.19129 516.10034 494.42517 -0.44019 1.22758 0.38753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98822 0.19927 -1.00000 - 9755 2017 8 21 13 7 40 909 4.9047 180.19087 516.11719 494.43656 -0.43987 1.25008 0.39770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98787 0.19927 -1.00000 - 9756 2017 8 21 13 7 45 814 4.9047 180.19045 516.12872 494.44791 -0.43956 1.27369 0.40572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98751 0.19927 -1.00000 - 9757 2017 8 21 13 7 50 718 4.9047 180.19003 516.14650 494.45927 -0.43926 1.29787 0.41563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98715 0.19927 -1.00000 - 9758 2017 8 21 13 7 55 623 4.9047 180.18961 516.15854 494.47067 -0.43896 1.32293 0.42541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98680 0.19927 -1.00000 - 9759 2017 8 21 13 8 0 528 4.9047 180.18920 516.17302 494.48201 -0.43864 1.34948 0.43470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98644 0.19927 -1.00000 - 9760 2017 8 21 13 8 5 432 4.9047 180.18878 516.18945 494.49342 -0.43830 1.37740 0.44562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98608 0.19927 -1.00000 - 9761 2017 8 21 13 8 10 337 4.9047 180.18837 516.20539 494.50474 -0.43794 1.40649 0.45597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98573 0.19926 -1.00000 - 9762 2017 8 21 13 8 15 242 4.9047 180.18796 516.22145 494.51602 -0.43760 1.43633 0.46588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98537 0.19926 -1.00000 - 9763 2017 8 21 13 8 20 147 4.9047 180.18755 516.23959 494.52734 -0.43722 1.46637 0.47713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98501 0.19926 -1.00000 - 9764 2017 8 21 13 8 25 51 4.9047 180.18714 516.25152 494.53866 -0.43682 1.49627 0.48715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98466 0.19926 -1.00000 - 9765 2017 8 21 13 8 29 956 4.9047 180.18673 516.26618 494.54991 -0.43641 1.52587 0.49769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98430 0.19926 -1.00000 - 9766 2017 8 21 13 8 34 861 4.9047 180.18632 516.28135 494.56121 -0.43599 1.55510 0.50815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98394 0.19926 -1.00000 - 9767 2017 8 21 13 8 39 765 4.9047 180.18592 516.29683 494.57249 -0.43555 1.58388 0.51889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98359 0.19926 -1.00000 - 9768 2017 8 21 13 8 44 670 4.9047 180.18551 516.31381 494.58368 -0.43510 1.61216 0.52944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98323 0.19926 -1.00000 - 9769 2017 8 21 13 8 49 575 4.9047 180.18511 516.33110 494.59492 -0.43463 1.63985 0.53965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98287 0.19926 -1.00000 - 9770 2017 8 21 13 8 54 479 4.9047 180.18470 516.34271 494.60620 -0.43414 1.66692 0.54993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98252 0.19926 -1.00000 - 9771 2017 8 21 13 8 59 384 4.9047 180.18430 516.35648 494.61753 -0.43364 1.69336 0.55897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98216 0.19926 -1.00000 - 9772 2017 8 21 13 9 4 289 4.9047 180.18390 516.37052 494.62890 -0.43313 1.71925 0.56875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98180 0.19926 -1.00000 - 9773 2017 8 21 13 9 9 193 4.9047 180.18350 516.38784 494.64035 -0.43261 1.74469 0.57812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98145 0.19926 -1.00000 - 9774 2017 8 21 13 9 14 98 4.9047 180.18310 516.40610 494.65195 -0.43210 1.76995 0.58800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98109 0.19926 -1.00000 - 9775 2017 8 21 13 9 19 3 4.9047 180.18271 516.42158 494.66365 -0.43163 1.79545 0.59760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98073 0.19926 -1.00000 - 9776 2017 8 21 13 9 23 907 4.9047 180.18231 516.43378 494.67538 -0.43114 1.82158 0.60647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98038 0.19926 -1.00000 - 9777 2017 8 21 13 9 28 812 4.9047 180.18192 516.44900 494.68722 -0.43065 1.84864 0.61560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98002 0.19926 -1.00000 - 9778 2017 8 21 13 9 33 717 4.9047 180.18153 516.46531 494.69913 -0.43015 1.87680 0.62445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97966 0.19926 -1.00000 - 9779 2017 8 21 13 9 38 621 4.9047 180.18114 516.48299 494.71098 -0.42965 1.90628 0.63226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97931 0.19926 -1.00000 - 9780 2017 8 21 13 9 43 526 4.9047 180.18075 516.50147 494.72292 -0.42913 1.93726 0.64105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97895 0.19926 -1.00000 - 9781 2017 8 21 13 9 48 431 4.9047 180.18037 516.51688 494.73500 -0.42860 1.96974 0.64967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97859 0.19926 -1.00000 - 9782 2017 8 21 13 9 53 335 4.9047 180.17998 516.53001 494.74719 -0.42805 2.00367 0.65640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97824 0.19926 -1.00000 - 9783 2017 8 21 13 9 58 240 4.9047 180.17960 516.54555 494.75939 -0.42748 2.03910 0.66460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97788 0.19926 -1.00000 - 9784 2017 8 21 13 10 3 145 4.9047 180.17922 516.56304 494.77158 -0.42690 2.07578 0.67198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97752 0.19926 -1.00000 - 9785 2017 8 21 13 10 8 49 4.9047 180.17884 516.58323 494.78390 -0.42629 2.11291 0.67799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97717 0.19926 -1.00000 - 9786 2017 8 21 13 10 12 954 4.9047 180.17846 516.59955 494.79628 -0.42566 2.14523 0.68539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97681 0.19926 -1.00000 - 9787 2017 8 21 13 10 17 859 4.9046 180.17808 516.61264 494.80865 -0.42505 2.17695 0.69119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97645 0.19926 -1.00000 - 9788 2017 8 21 13 10 22 763 4.9046 180.17771 516.62944 494.82115 -0.42439 2.21327 0.69634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97610 0.19926 -1.00000 - 9789 2017 8 21 13 10 27 668 4.9046 180.17733 516.64648 494.83369 -0.42369 2.24962 0.70328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97574 0.19925 -1.00000 - 9790 2017 8 21 13 10 32 573 4.9046 180.17696 516.66446 494.84616 -0.42296 2.28432 0.70834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97538 0.19925 -1.00000 - 9791 2017 8 21 13 10 37 477 4.9046 180.17659 516.68472 494.85870 -0.42219 2.31592 0.71238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97503 0.19925 -1.00000 - 9792 2017 8 21 13 10 42 382 4.9046 180.17622 516.70129 494.87124 -0.42139 2.34322 0.71887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97467 0.19925 -1.00000 - 9793 2017 8 21 13 10 47 287 4.9046 180.17585 516.71461 494.88374 -0.42055 2.36152 0.72246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97431 0.19925 -1.00000 - 9794 2017 8 21 13 10 52 191 4.9046 180.17548 516.73157 494.89630 -0.41969 2.37559 0.72528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97396 0.19925 -1.00000 - 9795 2017 8 21 13 10 57 96 4.9046 180.17512 516.74875 494.90890 -0.41881 2.39122 0.72970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97360 0.19925 -1.00000 - 9796 2017 8 21 13 11 2 0 4.9046 180.17475 516.76669 494.92145 -0.41792 2.40446 0.73161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97324 0.19925 -1.00000 - 9797 2017 8 21 13 11 6 905 4.9046 180.17439 516.78772 494.93407 -0.41702 2.41399 0.73250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97289 0.19925 -1.00000 - 9798 2017 8 21 13 11 11 810 4.9046 180.17402 516.80440 494.94673 -0.41612 2.41922 0.73524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97253 0.19925 -1.00000 - 9799 2017 8 21 13 11 16 714 4.9046 180.17366 516.81750 494.95937 -0.41524 2.41604 0.73460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97217 0.19925 -1.00000 - 9800 2017 8 21 13 11 21 619 4.9046 180.17330 516.83456 494.97213 -0.41435 2.40947 0.73345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97182 0.19925 -1.00000 - 9801 2017 8 21 13 11 26 524 4.9046 180.17294 516.85157 494.98499 -0.41345 2.40539 0.73388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97146 0.19925 -1.00000 - 9802 2017 8 21 13 11 31 428 4.9046 180.17258 516.86905 494.99791 -0.41257 2.39976 0.73146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97110 0.19925 -1.00000 - 9803 2017 8 21 13 11 36 333 4.9046 180.17222 516.88934 495.01105 -0.41169 2.39113 0.72901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97075 0.19925 -1.00000 - 9804 2017 8 21 13 11 41 237 4.9046 180.17186 516.90517 495.02438 -0.41082 2.37871 0.72674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97039 0.19925 -1.00000 - 9805 2017 8 21 13 11 46 142 4.9046 180.17150 516.92374 495.03778 -0.40997 2.35822 0.72207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97003 0.19925 -1.00000 - 9806 2017 8 21 13 11 51 47 4.9046 180.17115 516.94141 495.05136 -0.40914 2.33461 0.71909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96968 0.19925 -1.00000 - 9807 2017 8 21 13 11 55 951 4.9046 180.17079 516.96025 495.06500 -0.40833 2.31371 0.71578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96932 0.19925 -1.00000 - 9808 2017 8 21 13 12 0 856 4.9046 180.17044 516.98076 495.07872 -0.40756 2.29143 0.70933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96896 0.19925 -1.00000 - 9809 2017 8 21 13 12 5 760 4.9046 180.17008 516.99862 495.09263 -0.40681 2.26638 0.70524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96861 0.19925 -1.00000 - 9810 2017 8 21 13 12 10 665 4.9046 180.16973 517.01438 495.10660 -0.40610 2.23791 0.69986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96825 0.19925 -1.00000 - 9811 2017 8 21 13 12 15 570 4.9046 180.16938 517.03627 495.12079 -0.40554 2.20190 0.69231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96789 0.19925 -1.00000 - 9812 2017 8 21 13 12 20 474 4.9046 180.16903 517.05532 495.13513 -0.40511 2.16368 0.68647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96754 0.19925 -1.00000 - 9813 2017 8 21 13 12 25 379 4.9046 180.16868 517.07311 495.14954 -0.40470 2.12951 0.67979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96718 0.19925 -1.00000 - 9814 2017 8 21 13 12 30 283 4.9046 180.16834 517.09552 495.16422 -0.40431 2.09583 0.67237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96682 0.19925 -1.00000 - 9815 2017 8 21 13 12 35 188 4.9046 180.16799 517.11497 495.17911 -0.40394 2.06150 0.66672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96647 0.19925 -1.00000 - 9816 2017 8 21 13 12 40 92 4.9046 180.16765 517.13263 495.19397 -0.40358 2.02563 0.65885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96611 0.19925 -1.00000 - 9817 2017 8 21 13 12 44 997 4.9046 180.16731 517.15627 495.20907 -0.40323 1.98796 0.65078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96575 0.19924 -1.00000 - 9818 2017 8 21 13 12 49 902 4.9046 180.16696 517.17607 495.22428 -0.40287 1.94945 0.64473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96540 0.19924 -1.00000 - 9819 2017 8 21 13 12 54 806 4.9046 180.16663 517.19836 495.23951 -0.40249 1.91155 0.63673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96504 0.19924 -1.00000 - 9820 2017 8 21 13 12 59 711 4.9046 180.16629 517.21805 495.25493 -0.40209 1.87446 0.63046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96468 0.19924 -1.00000 - 9821 2017 8 21 13 13 4 615 4.9046 180.16595 517.23576 495.27042 -0.40165 1.83823 0.62460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96433 0.19924 -1.00000 - 9822 2017 8 21 13 13 9 520 4.9046 180.16562 517.25725 495.28597 -0.40117 1.80265 0.61646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96397 0.19924 -1.00000 - 9823 2017 8 21 13 13 14 424 4.9046 180.16529 517.28140 495.30169 -0.40065 1.76757 0.60966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96361 0.19924 -1.00000 - 9824 2017 8 21 13 13 19 329 4.9046 180.16496 517.30215 495.31752 -0.40011 1.73295 0.60465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96326 0.19924 -1.00000 - 9825 2017 8 21 13 13 24 234 4.9046 180.16463 517.32523 495.33337 -0.39953 1.69886 0.59793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96290 0.19924 -1.00000 - 9826 2017 8 21 13 13 29 138 4.9046 180.16430 517.34350 495.34939 -0.39895 1.66537 0.59265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96254 0.19924 -1.00000 - 9827 2017 8 21 13 13 34 43 4.9046 180.16397 517.36285 495.36548 -0.39841 1.63257 0.58866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96219 0.19924 -1.00000 - 9828 2017 8 21 13 13 38 947 4.9045 180.16365 517.38614 495.38155 -0.39794 1.60051 0.58342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96183 0.19924 -1.00000 - 9829 2017 8 21 13 13 43 852 4.9045 180.16332 517.41064 495.39763 -0.39757 1.56924 0.57905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96147 0.19924 -1.00000 - 9830 2017 8 21 13 13 48 756 4.9045 180.16300 517.43183 495.41375 -0.39727 1.53879 0.57661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96112 0.19924 -1.00000 - 9831 2017 8 21 13 13 53 661 4.9045 180.16268 517.45016 495.42983 -0.39703 1.50922 0.57350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96076 0.19924 -1.00000 - 9832 2017 8 21 13 13 58 565 4.9045 180.16236 517.47190 495.44601 -0.39681 1.48062 0.57049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96040 0.19924 -1.00000 - 9833 2017 8 21 13 14 3 470 4.9045 180.16204 517.49438 495.46218 -0.39658 1.45308 0.56957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96005 0.19924 -1.00000 - 9834 2017 8 21 13 14 8 374 4.9045 180.16173 517.51626 495.47823 -0.39633 1.42683 0.56749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95969 0.19924 -1.00000 - 9835 2017 8 21 13 14 13 279 4.9045 180.16141 517.53756 495.49417 -0.39606 1.40202 0.56680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95933 0.19924 -1.00000 - 9836 2017 8 21 13 14 18 184 4.9045 180.16110 517.55789 495.51009 -0.39581 1.37887 0.56712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95898 0.19924 -1.00000 - 9837 2017 8 21 13 14 23 88 4.9045 180.16079 517.57875 495.52593 -0.39558 1.35760 0.56725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95862 0.19924 -1.00000 - 9838 2017 8 21 13 14 27 993 4.9045 180.16047 517.60031 495.54176 -0.39539 1.33921 0.56815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95826 0.19924 -1.00000 - 9839 2017 8 21 13 14 32 897 4.9045 180.16016 517.62170 495.55756 -0.39527 1.32680 0.56991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95791 0.19924 -1.00000 - 9840 2017 8 21 13 14 37 802 4.9045 180.15986 517.64387 495.57321 -0.39521 1.31933 0.57043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95755 0.19924 -1.00000 - 9841 2017 8 21 13 14 42 706 4.9044 180.15955 517.66604 495.58883 -0.39520 1.31581 0.57236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95719 0.19924 -1.00000 - 9842 2017 8 21 13 14 47 610 4.9044 180.15924 517.68399 495.60444 -0.39523 1.31628 0.57423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95684 0.19924 -1.00000 - 9843 2017 8 21 13 14 52 515 4.9043 180.15893 517.70318 495.62005 -0.39528 1.31859 0.57565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95648 0.19924 -1.00000 - 9844 2017 8 21 13 14 57 419 4.9043 180.15862 517.72255 495.63576 -0.39531 1.32144 0.57827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95612 0.19923 -1.00000 - 9845 2017 8 21 13 15 2 323 4.9043 180.15831 517.74605 495.65149 -0.39532 1.31896 0.58000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95577 0.19923 -1.00000 - 9846 2017 8 21 13 15 7 227 4.9042 180.15799 517.77054 495.66729 -0.39531 1.32381 0.58128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95541 0.19923 -1.00000 - 9847 2017 8 21 13 15 12 132 4.9042 180.15767 517.79142 495.68313 -0.39526 1.32933 0.58608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95505 0.19923 -1.00000 - 9848 2017 8 21 13 15 17 36 4.9041 180.15735 517.80820 495.69893 -0.39521 1.33185 0.58828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95470 0.19923 -1.00000 - 9849 2017 8 21 13 15 21 940 4.9041 180.15702 517.82926 495.71489 -0.39512 1.33888 0.59035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95434 0.19923 -1.00000 - 9850 2017 8 21 13 15 26 844 4.9041 180.15669 517.84997 495.73087 -0.39502 1.35106 0.59680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95398 0.19923 -1.00000 - 9851 2017 8 21 13 15 31 748 4.9040 180.15636 517.87336 495.74676 -0.39489 1.35788 0.59944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95363 0.19923 -1.00000 - 9852 2017 8 21 13 15 36 652 4.9040 180.15602 517.89828 495.76282 -0.39474 1.36943 0.60307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95327 0.19923 -1.00000 - 9853 2017 8 21 13 15 41 556 4.9039 180.15568 517.91932 495.77898 -0.39455 1.38712 0.61063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95291 0.19923 -1.00000 - 9854 2017 8 21 13 15 46 460 4.9039 180.15535 517.93619 495.79500 -0.39431 1.40982 0.61455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95256 0.19923 -1.00000 - 9855 2017 8 21 13 15 51 364 4.9039 180.15502 517.95647 495.81116 -0.39402 1.43432 0.61945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95220 0.19923 -1.00000 - 9856 2017 8 21 13 15 56 268 4.9038 180.15470 517.97774 495.82743 -0.39365 1.45873 0.62782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95184 0.19923 -1.00000 - 9857 2017 8 21 13 16 1 171 4.9038 180.15438 518.00166 495.84354 -0.39323 1.48322 0.63279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95149 0.19923 -1.00000 - 9858 2017 8 21 13 16 6 75 4.9037 180.15406 518.02689 495.85978 -0.39274 1.50894 0.63962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95113 0.19923 -1.00000 - 9859 2017 8 21 13 16 10 979 4.9037 180.15375 518.04813 495.87612 -0.39221 1.53585 0.64936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95077 0.19923 -1.00000 - 9860 2017 8 21 13 16 15 882 4.9037 180.15345 518.06518 495.89232 -0.39166 1.56397 0.65485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95042 0.19923 -1.00000 - 9861 2017 8 21 13 16 20 786 4.9036 180.15314 518.08517 495.90866 -0.39107 1.59274 0.66224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95006 0.19923 -1.00000 - 9862 2017 8 21 13 16 25 690 4.9036 180.15284 518.10651 495.92507 -0.39046 1.62133 0.67214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94970 0.19923 -1.00000 - 9863 2017 8 21 13 16 30 593 4.9036 180.15254 518.13083 495.94138 -0.38982 1.64328 0.67891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94935 0.19923 -1.00000 - 9864 2017 8 21 13 16 35 497 4.9035 180.15224 518.15528 495.95781 -0.38916 1.66650 0.68694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94899 0.19923 -1.00000 - 9865 2017 8 21 13 16 40 400 4.9035 180.15194 518.17681 495.97428 -0.38847 1.69794 0.69754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94863 0.19923 -1.00000 - 9866 2017 8 21 13 16 45 304 4.9034 180.15165 518.19403 495.99070 -0.38775 1.73042 0.70535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94828 0.19923 -1.00000 - 9867 2017 8 21 13 16 50 207 4.9034 180.15136 518.21439 496.00726 -0.38699 1.76309 0.71441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94792 0.19923 -1.00000 - 9868 2017 8 21 13 16 55 110 4.9034 180.15107 518.23638 496.02378 -0.38621 1.79538 0.72536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94756 0.19923 -1.00000 - 9869 2017 8 21 13 17 0 14 4.9033 180.15078 518.26068 496.04023 -0.38540 1.82713 0.73440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94721 0.19923 -1.00000 - 9870 2017 8 21 13 17 4 917 4.9033 180.15049 518.28563 496.05680 -0.38458 1.85866 0.74385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94685 0.19923 -1.00000 - 9871 2017 8 21 13 17 9 820 4.9032 180.15021 518.30345 496.07337 -0.38375 1.89010 0.75497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94650 0.19923 -1.00000 - 9872 2017 8 21 13 17 14 723 4.9032 180.14993 518.32336 496.09003 -0.38294 1.92161 0.76487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94614 0.19922 -1.00000 - 9873 2017 8 21 13 17 19 627 4.9032 180.14965 518.34309 496.10679 -0.38215 1.95444 0.77490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94578 0.19922 -1.00000 - 9874 2017 8 21 13 17 24 530 4.9031 180.14937 518.36426 496.12353 -0.38140 1.99003 0.78658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94543 0.19922 -1.00000 - 9875 2017 8 21 13 17 29 433 4.9031 180.14909 518.39070 496.14026 -0.38069 2.02565 0.79799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94507 0.19922 -1.00000 - 9876 2017 8 21 13 17 34 336 4.9030 180.14882 518.41401 496.15707 -0.38003 2.06115 0.80863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94471 0.19922 -1.00000 - 9877 2017 8 21 13 17 39 239 4.9030 180.14854 518.43423 496.17391 -0.37945 2.09635 0.82060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94436 0.19922 -1.00000 - 9878 2017 8 21 13 17 44 142 4.9030 180.14827 518.45494 496.19076 -0.37894 2.13094 0.83152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94400 0.19922 -1.00000 - 9879 2017 8 21 13 17 49 45 4.9029 180.14800 518.47310 496.20770 -0.37850 2.16474 0.84245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94364 0.19922 -1.00000 - 9880 2017 8 21 13 17 53 947 4.9029 180.14774 518.49511 496.22457 -0.37814 2.19774 0.85518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94329 0.19922 -1.00000 - 9881 2017 8 21 13 17 58 850 4.9028 180.14748 518.52002 496.24141 -0.37787 2.23007 0.86717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94293 0.19922 -1.00000 - 9882 2017 8 21 13 18 3 753 4.9028 180.14722 518.54258 496.25832 -0.37767 2.26197 0.87935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94257 0.19922 -1.00000 - 9883 2017 8 21 13 18 8 656 4.9027 180.14696 518.56416 496.27520 -0.37753 2.29376 0.89202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94222 0.19922 -1.00000 - 9884 2017 8 21 13 18 13 559 4.9027 180.14670 518.58359 496.29201 -0.37746 2.32576 0.90459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94186 0.19922 -1.00000 - 9885 2017 8 21 13 18 18 461 4.9027 180.14644 518.60387 496.30885 -0.37745 2.35829 0.91614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94150 0.19922 -1.00000 - 9886 2017 8 21 13 18 23 364 4.9026 180.14618 518.62543 496.32570 -0.37745 2.39165 0.92945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94115 0.19922 -1.00000 - 9887 2017 8 21 13 18 28 266 4.9026 180.14592 518.64689 496.34252 -0.37745 2.42594 0.94232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94079 0.19922 -1.00000 - 9888 2017 8 21 13 18 33 169 4.9025 180.14566 518.66833 496.35930 -0.37742 2.46121 0.95490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94043 0.19922 -1.00000 - 9889 2017 8 21 13 18 38 72 4.9025 180.14540 518.68989 496.37609 -0.37735 2.49753 0.96765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94008 0.19922 -1.00000 - 9890 2017 8 21 13 18 42 974 4.9025 180.14514 518.71153 496.39283 -0.37723 2.53497 0.98005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93972 0.19922 -1.00000 - 9891 2017 8 21 13 18 47 876 4.9024 180.14488 518.73287 496.40957 -0.37703 2.57472 0.99208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93936 0.19922 -1.00000 - 9892 2017 8 21 13 18 52 779 4.9024 180.14462 518.75429 496.42627 -0.37677 2.61514 1.00491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93901 0.19922 -1.00000 - 9893 2017 8 21 13 18 57 681 4.9023 180.14437 518.77489 496.44294 -0.37644 2.65613 1.01662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93865 0.19922 -1.00000 - 9894 2017 8 21 13 19 2 583 4.9023 180.14411 518.79689 496.45963 -0.37604 2.69752 1.02861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93829 0.19922 -1.00000 - 9895 2017 8 21 13 19 7 486 4.9023 180.14386 518.81868 496.47633 -0.37558 2.73913 1.04041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93794 0.19922 -1.00000 - 9896 2017 8 21 13 19 12 388 4.9022 180.14361 518.84022 496.49296 -0.37508 2.78161 1.05067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93758 0.19922 -1.00000 - 9897 2017 8 21 13 19 17 290 4.9022 180.14336 518.86092 496.50955 -0.37458 2.82575 1.06114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93723 0.19922 -1.00000 - 9898 2017 8 21 13 19 22 192 4.9021 180.14311 518.88225 496.52619 -0.37407 2.87030 1.07088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93687 0.19922 -1.00000 - 9899 2017 8 21 13 19 27 94 4.9021 180.14286 518.90188 496.54283 -0.37357 2.91491 1.07946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93651 0.19922 -1.00000 - 9900 2017 8 21 13 19 31 996 4.9021 180.14261 518.92182 496.55955 -0.37310 2.95918 1.08736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93616 0.19921 -1.00000 - 9901 2017 8 21 13 19 36 898 4.9020 180.14236 518.94659 496.57632 -0.37267 3.00225 1.09446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93580 0.19921 -1.00000 - 9902 2017 8 21 13 19 41 800 4.9020 180.14212 518.97054 496.59323 -0.37229 3.04319 1.09986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93544 0.19921 -1.00000 - 9903 2017 8 21 13 19 46 702 4.9019 180.14187 518.99387 496.61033 -0.37194 3.08117 1.10640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93509 0.19921 -1.00000 - 9904 2017 8 21 13 19 51 604 4.9019 180.14163 519.01498 496.62752 -0.37161 3.11560 1.11069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93473 0.19921 -1.00000 - 9905 2017 8 21 13 19 56 506 4.9019 180.14139 519.03296 496.64482 -0.37128 3.14618 1.11378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93437 0.19921 -1.00000 - 9906 2017 8 21 13 20 1 408 4.9018 180.14116 519.05311 496.66231 -0.37091 3.17275 1.11774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93402 0.19921 -1.00000 - 9907 2017 8 21 13 20 6 310 4.9018 180.14092 519.08106 496.67992 -0.37051 3.19526 1.11949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93366 0.19921 -1.00000 - 9908 2017 8 21 13 20 11 211 4.9017 180.14069 519.10615 496.69762 -0.37005 3.21372 1.12029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93330 0.19921 -1.00000 - 9909 2017 8 21 13 20 16 113 4.9017 180.14045 519.12759 496.71542 -0.36958 3.22848 1.12194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93295 0.19921 -1.00000 - 9910 2017 8 21 13 20 21 15 4.9017 180.14022 519.15026 496.73336 -0.36905 3.23979 1.12300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93259 0.19921 -1.00000 - 9911 2017 8 21 13 20 25 916 4.9016 180.14000 519.17075 496.75138 -0.36850 3.24677 1.12255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93223 0.19921 -1.00000 - 9912 2017 8 21 13 20 30 818 4.9016 180.13977 519.19382 496.76933 -0.36793 3.24811 1.12210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93188 0.19921 -1.00000 - 9913 2017 8 21 13 20 35 720 4.9015 180.13955 519.21967 496.78735 -0.36737 3.23975 1.12029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93152 0.19921 -1.00000 - 9914 2017 8 21 13 20 40 621 4.9015 180.13933 519.24597 496.80554 -0.36681 3.23235 1.11874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93117 0.19921 -1.00000 - 9915 2017 8 21 13 20 45 523 4.9015 180.13911 519.26887 496.82377 -0.36626 3.22312 1.11689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93081 0.19921 -1.00000 - 9916 2017 8 21 13 20 50 424 4.9014 180.13889 519.28807 496.84194 -0.36573 3.21154 1.11374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93045 0.19921 -1.00000 - 9917 2017 8 21 13 20 55 325 4.9014 180.13868 519.31022 496.86033 -0.36521 3.19697 1.11101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93010 0.19921 -1.00000 - 9918 2017 8 21 13 21 0 227 4.9013 180.13847 519.33455 496.87882 -0.36470 3.17866 1.10798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92974 0.19921 -1.00000 - 9919 2017 8 21 13 21 5 128 4.9013 180.13826 519.36118 496.89726 -0.36419 3.15227 1.10224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92938 0.19921 -1.00000 - 9920 2017 8 21 13 21 10 29 4.9013 180.13806 519.38840 496.91587 -0.36367 3.12316 1.09825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92903 0.19921 -1.00000 - 9921 2017 8 21 13 21 14 930 4.9012 180.13786 519.41167 496.93463 -0.36316 3.09755 1.09483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92867 0.19921 -1.00000 - 9922 2017 8 21 13 21 19 832 4.9012 180.13766 519.43163 496.95345 -0.36261 3.07143 1.08813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92831 0.19921 -1.00000 - 9923 2017 8 21 13 21 24 733 4.9011 180.13746 519.45445 496.97243 -0.36203 3.04412 1.08336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92796 0.19921 -1.00000 - 9924 2017 8 21 13 21 29 634 4.9011 180.13727 519.47900 496.99148 -0.36142 3.01521 1.07858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92760 0.19921 -1.00000 - 9925 2017 8 21 13 21 34 535 4.9011 180.13707 519.50680 497.01050 -0.36080 2.98401 1.07113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92724 0.19921 -1.00000 - 9926 2017 8 21 13 21 39 436 4.9010 180.13688 519.53497 497.02976 -0.36017 2.94593 1.06471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92689 0.19921 -1.00000 - 9927 2017 8 21 13 21 44 337 4.9010 180.13670 519.55899 497.04915 -0.35953 2.90606 1.05887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92653 0.19920 -1.00000 - 9928 2017 8 21 13 21 49 238 4.9009 180.13651 519.57967 497.06860 -0.35891 2.87042 1.05124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92618 0.19920 -1.00000 - 9929 2017 8 21 13 21 54 139 4.9009 180.13633 519.60311 497.08827 -0.35831 2.83455 1.04382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92582 0.19920 -1.00000 - 9930 2017 8 21 13 21 59 40 4.9009 180.13614 519.62893 497.10802 -0.35775 2.79731 1.03711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92546 0.19920 -1.00000 - 9931 2017 8 21 13 22 3 940 4.9008 180.13596 519.65761 497.12782 -0.35724 2.75815 1.02974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92511 0.19920 -1.00000 - 9932 2017 8 21 13 22 8 841 4.9008 180.13578 519.68682 497.14779 -0.35678 2.71683 1.02130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92475 0.19920 -1.00000 - 9933 2017 8 21 13 22 13 742 4.9007 180.13560 519.71232 497.16790 -0.35637 2.67350 1.01522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92439 0.19920 -1.00000 - 9934 2017 8 21 13 22 18 643 4.9007 180.13543 519.73464 497.18808 -0.35603 2.62970 1.00708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92404 0.19920 -1.00000 - 9935 2017 8 21 13 22 23 543 4.9007 180.13525 519.76000 497.20846 -0.35572 2.58581 0.99922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92368 0.19920 -1.00000 - 9936 2017 8 21 13 22 28 444 4.9006 180.13508 519.78496 497.22897 -0.35543 2.54229 0.99360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92332 0.19920 -1.00000 - 9937 2017 8 21 13 22 33 344 4.9006 180.13491 519.81535 497.24944 -0.35516 2.49925 0.98630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92297 0.19920 -1.00000 - 9938 2017 8 21 13 22 38 245 4.9005 180.13473 519.84553 497.27004 -0.35491 2.45662 0.97909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92261 0.19920 -1.00000 - 9939 2017 8 21 13 22 43 146 4.9005 180.13457 519.87184 497.29075 -0.35466 2.41436 0.97430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92226 0.19920 -1.00000 - 9940 2017 8 21 13 22 48 46 4.9004 180.13440 519.89569 497.31148 -0.35441 2.37257 0.96726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92190 0.19920 -1.00000 - 9941 2017 8 21 13 22 52 946 4.9004 180.13423 519.92115 497.33236 -0.35417 2.33131 0.96065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92154 0.19920 -1.00000 - 9942 2017 8 21 13 22 57 847 4.9004 180.13407 519.94727 497.35328 -0.35391 2.29069 0.95666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92119 0.19920 -1.00000 - 9943 2017 8 21 13 23 2 747 4.9003 180.13391 519.97745 497.37410 -0.35363 2.25081 0.95052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92083 0.19920 -1.00000 - 9944 2017 8 21 13 23 7 647 4.9003 180.13375 520.00807 497.39501 -0.35334 2.21120 0.94557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92047 0.19920 -1.00000 - 9945 2017 8 21 13 23 12 548 4.9002 180.13359 520.03462 497.41595 -0.35302 2.16650 0.94316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92012 0.19920 -1.00000 - 9946 2017 8 21 13 23 17 448 4.9002 180.13343 520.05754 497.43687 -0.35269 2.12200 0.93869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91976 0.19920 -1.00000 - 9947 2017 8 21 13 23 22 348 4.9002 180.13328 520.08482 497.45785 -0.35230 2.08449 0.93493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91940 0.19920 -1.00000 - 9948 2017 8 21 13 23 27 248 4.9001 180.13312 520.11208 497.47881 -0.35186 2.04986 0.93413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91905 0.19920 -1.00000 - 9949 2017 8 21 13 23 32 148 4.9001 180.13297 520.14027 497.49960 -0.35137 2.01742 0.93134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91869 0.19920 -1.00000 - 9950 2017 8 21 13 23 37 48 4.9000 180.13283 520.17075 497.52035 -0.35081 1.99597 0.92982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91834 0.19920 -1.00000 - 9951 2017 8 21 13 23 41 948 4.9000 180.13268 520.19711 497.54108 -0.35018 1.98572 0.93094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91798 0.19920 -1.00000 - 9952 2017 8 21 13 23 46 848 4.9000 180.13254 520.21990 497.56169 -0.34955 1.98046 0.92943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91762 0.19920 -1.00000 - 9953 2017 8 21 13 23 51 748 4.8999 180.13240 520.24691 497.58229 -0.34914 1.98154 0.92850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91727 0.19920 -1.00000 - 9954 2017 8 21 13 23 56 648 4.8999 180.13226 520.27359 497.60287 -0.34870 1.98405 0.93075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91691 0.19920 -1.00000 - 9955 2017 8 21 13 24 1 548 4.8998 180.13212 520.29915 497.62333 -0.34824 1.98829 0.93022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91655 0.19919 -1.00000 - 9956 2017 8 21 13 24 6 448 4.8998 180.13199 520.32860 497.64385 -0.34779 1.99285 0.93073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91620 0.19919 -1.00000 - 9957 2017 8 21 13 24 11 347 4.8998 180.13185 520.35569 497.66448 -0.34734 1.99746 0.93463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91584 0.19919 -1.00000 - 9958 2017 8 21 13 24 16 247 4.8997 180.13172 520.37824 497.68495 -0.34691 2.00398 0.93481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91548 0.19919 -1.00000 - 9959 2017 8 21 13 24 21 147 4.8997 180.13160 520.40820 497.70551 -0.34648 2.01152 0.93600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91513 0.19919 -1.00000 - 9960 2017 8 21 13 24 26 46 4.8996 180.13147 520.43426 497.72616 -0.34603 2.01950 0.94190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91477 0.19919 -1.00000 - 9961 2017 8 21 13 24 30 946 4.8996 180.13134 520.45832 497.74669 -0.34558 2.02802 0.94283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91442 0.19919 -1.00000 - 9962 2017 8 21 13 24 35 846 4.8996 180.13122 520.48764 497.76729 -0.34513 2.03484 0.94565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91406 0.19919 -1.00000 - 9963 2017 8 21 13 24 40 745 4.8995 180.13110 520.51347 497.78800 -0.34469 2.03826 0.95238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91370 0.19919 -1.00000 - 9964 2017 8 21 13 24 45 645 4.8995 180.13098 520.53694 497.80863 -0.34427 2.04283 0.95450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91335 0.19919 -1.00000 - 9965 2017 8 21 13 24 50 544 4.8994 180.13086 520.56670 497.82934 -0.34388 2.06119 0.95812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91299 0.19919 -1.00000 - 9966 2017 8 21 13 24 55 443 4.8994 180.13074 520.59270 497.85016 -0.34353 2.06700 0.96566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91263 0.19919 -1.00000 - 9967 2017 8 21 13 25 0 343 4.8994 180.13062 520.61605 497.87088 -0.34322 2.07553 0.96900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91228 0.19919 -1.00000 - 9968 2017 8 21 13 25 5 242 4.8993 180.13051 520.64561 497.89177 -0.34294 2.09953 0.97472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91192 0.19919 -1.00000 - 9969 2017 8 21 13 25 10 141 4.8993 180.13040 520.67080 497.91279 -0.34273 2.12434 0.98303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91157 0.19919 -1.00000 - 9970 2017 8 21 13 25 15 41 4.8992 180.13029 520.69601 497.93376 -0.34265 2.15169 0.98745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91121 0.19919 -1.00000 - 9971 2017 8 21 13 25 19 940 4.8992 180.13018 520.72621 497.95488 -0.34269 2.18887 0.99421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91085 0.19919 -1.00000 - 9972 2017 8 21 13 25 24 839 4.8991 180.13007 520.75282 497.97607 -0.34282 2.22783 1.00332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91050 0.19919 -1.00000 - 9973 2017 8 21 13 25 29 738 4.8991 180.12996 520.77825 497.99719 -0.34300 2.26712 1.00947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91014 0.19919 -1.00000 - 9974 2017 8 21 13 25 34 637 4.8991 180.12986 520.80833 498.01856 -0.34315 2.30539 1.01647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90978 0.19919 -1.00000 - 9975 2017 8 21 13 25 39 536 4.8990 180.12975 520.83138 498.04002 -0.34323 2.34154 1.02594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90943 0.19919 -1.00000 - 9976 2017 8 21 13 25 44 435 4.8990 180.12965 520.85779 498.06143 -0.34319 2.37676 1.03256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90907 0.19919 -1.00000 - 9977 2017 8 21 13 25 49 334 4.8989 180.12956 520.88814 498.08295 -0.34305 2.41118 1.04128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90872 0.19919 -1.00000 - 9978 2017 8 21 13 25 54 233 4.8989 180.12946 520.91554 498.10453 -0.34281 2.44567 1.05128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90836 0.19919 -1.00000 - 9979 2017 8 21 13 25 59 132 4.8989 180.12936 520.94377 498.12610 -0.34252 2.49249 1.06068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90800 0.19919 -1.00000 - 9980 2017 8 21 13 26 4 31 4.8988 180.12927 520.96803 498.14782 -0.34221 2.53820 1.07028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90765 0.19919 -1.00000 - 9981 2017 8 21 13 26 8 929 4.8988 180.12917 520.99289 498.16953 -0.34190 2.58171 1.08076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90729 0.19919 -1.00000 - 9982 2017 8 21 13 26 13 828 4.8987 180.12907 521.02090 498.19128 -0.34162 2.62256 1.09149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90693 0.19919 -1.00000 - 9983 2017 8 21 13 26 18 727 4.8987 180.12896 521.04865 498.21302 -0.34136 2.66031 1.10186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90658 0.19918 -1.00000 - 9984 2017 8 21 13 26 23 625 4.8987 180.12886 521.07653 498.23474 -0.34109 2.69469 1.11329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90622 0.19918 -1.00000 - 9985 2017 8 21 13 26 28 524 4.8986 180.12875 521.10270 498.25644 -0.34079 2.72561 1.12515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90587 0.19918 -1.00000 - 9986 2017 8 21 13 26 33 423 4.8986 180.12863 521.13102 498.27822 -0.34043 2.75315 1.13670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90551 0.19918 -1.00000 - 9987 2017 8 21 13 26 38 321 4.8985 180.12852 521.15904 498.29996 -0.34000 2.77760 1.14914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90515 0.19918 -1.00000 - 9988 2017 8 21 13 26 43 220 4.8985 180.12842 521.18663 498.32153 -0.33950 2.79932 1.16207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90480 0.19918 -1.00000 - 9989 2017 8 21 13 26 48 118 4.8985 180.12831 521.21409 498.34298 -0.33893 2.81886 1.17466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90444 0.19918 -1.00000 - 9990 2017 8 21 13 26 53 17 4.8984 180.12821 521.24145 498.36434 -0.33833 2.83689 1.18803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90408 0.19918 -1.00000 - 9991 2017 8 21 13 26 57 915 4.8984 180.12811 521.26858 498.38558 -0.33772 2.85412 1.20178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90373 0.19918 -1.00000 - 9992 2017 8 21 13 27 2 813 4.8983 180.12800 521.29453 498.40669 -0.33711 2.87113 1.21461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90337 0.19918 -1.00000 - 9993 2017 8 21 13 27 7 712 4.8983 180.12789 521.32137 498.42770 -0.33652 2.88872 1.22777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90302 0.19918 -1.00000 - 9994 2017 8 21 13 27 12 610 4.8982 180.12779 521.34796 498.44860 -0.33596 2.90766 1.24095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90266 0.19918 -1.00000 - 9995 2017 8 21 13 27 17 508 4.8982 180.12767 521.37452 498.46940 -0.33545 2.92828 1.25395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90230 0.19918 -1.00000 - 9996 2017 8 21 13 27 22 406 4.8982 180.12756 521.40071 498.49005 -0.33497 2.95080 1.26716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90195 0.19918 -1.00000 - 9997 2017 8 21 13 27 27 304 4.8981 180.12744 521.42662 498.51056 -0.33452 2.97535 1.28014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90159 0.19918 -1.00000 - 9998 2017 8 21 13 27 32 202 4.8981 180.12733 521.45216 498.53095 -0.33411 3.00209 1.29281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90123 0.19918 -1.00000 - 9999 2017 8 21 13 27 37 100 4.8980 180.12722 521.47720 498.55125 -0.33375 3.03115 1.30502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90088 0.19918 -1.00000 - 10000 2017 8 21 13 27 41 998 4.8980 180.12711 521.50319 498.57144 -0.33345 3.06256 1.31742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90052 0.19918 -1.00000 - 10001 2017 8 21 13 27 46 896 4.8980 180.12698 521.52976 498.59166 -0.33321 3.10046 1.32861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90017 0.19918 -1.00000 - 10002 2017 8 21 13 27 51 794 4.8979 180.12686 521.55102 498.61192 -0.33304 3.14201 1.34026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89981 0.19918 -1.00000 - 10003 2017 8 21 13 27 56 692 4.8979 180.12676 521.57794 498.63218 -0.33292 3.18555 1.34990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89945 0.19918 -1.00000 - 10004 2017 8 21 13 28 1 590 4.8978 180.12665 521.60654 498.65256 -0.33286 3.23097 1.36051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89910 0.19918 -1.00000 - 10005 2017 8 21 13 28 6 488 4.8978 180.12655 521.63060 498.67292 -0.33282 3.27818 1.37036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89874 0.19918 -1.00000 - 10006 2017 8 21 13 28 11 386 4.8978 180.12643 521.65665 498.69329 -0.33279 3.32693 1.37807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89838 0.19918 -1.00000 - 10007 2017 8 21 13 28 16 283 4.8977 180.12632 521.68089 498.71376 -0.33277 3.37690 1.38731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89803 0.19918 -1.00000 - 10008 2017 8 21 13 28 21 181 4.8977 180.12621 521.70235 498.73426 -0.33273 3.42744 1.39490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89767 0.19918 -1.00000 - 10009 2017 8 21 13 28 26 79 4.8976 180.12612 521.72944 498.75483 -0.33268 3.47781 1.40101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89732 0.19918 -1.00000 - 10010 2017 8 21 13 28 30 976 4.8976 180.12601 521.75634 498.77552 -0.33260 3.52719 1.40806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89696 0.19918 -1.00000 - 10011 2017 8 21 13 28 35 874 4.8976 180.12589 521.78077 498.79630 -0.33252 3.57576 1.41477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89660 0.19917 -1.00000 - 10012 2017 8 21 13 28 40 771 4.8975 180.12577 521.80864 498.81725 -0.33245 3.63354 1.41962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89625 0.19917 -1.00000 - 10013 2017 8 21 13 28 45 669 4.8975 180.12565 521.83100 498.83843 -0.33237 3.69141 1.42418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89589 0.19917 -1.00000 - 10014 2017 8 21 13 28 50 566 4.8974 180.12553 521.85554 498.85973 -0.33231 3.74728 1.42785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89554 0.19917 -1.00000 - 10015 2017 8 21 13 28 55 464 4.8974 180.12541 521.88570 498.88128 -0.33224 3.79875 1.43089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89518 0.19917 -1.00000 - 10016 2017 8 21 13 29 0 361 4.8973 180.12528 521.91141 498.90283 -0.33216 3.84427 1.43346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89482 0.19917 -1.00000 - 10017 2017 8 21 13 29 5 258 4.8973 180.12514 521.94055 498.92458 -0.33205 3.88380 1.43611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89447 0.19917 -1.00000 - 10018 2017 8 21 13 29 10 156 4.8973 180.12502 521.96631 498.94659 -0.33190 3.91754 1.43801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89411 0.19917 -1.00000 - 10019 2017 8 21 13 29 15 53 4.8972 180.12492 521.99035 498.96886 -0.33172 3.94540 1.43883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89375 0.19917 -1.00000 - 10020 2017 8 21 13 29 19 950 4.8972 180.12481 522.01963 498.99125 -0.33150 3.96694 1.43865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89340 0.19917 -1.00000 - 10021 2017 8 21 13 29 24 847 4.8971 180.12469 522.05037 499.01383 -0.33124 3.98181 1.43764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89304 0.19917 -1.00000 - 10022 2017 8 21 13 29 29 744 4.8971 180.12456 522.07926 499.03669 -0.33097 3.98985 1.43801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89269 0.19917 -1.00000 - 10023 2017 8 21 13 29 34 641 4.8971 180.12445 522.10696 499.05966 -0.33069 3.99115 1.43698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89233 0.19917 -1.00000 - 10024 2017 8 21 13 29 39 538 4.8970 180.12435 522.13119 499.08277 -0.33042 3.98592 1.43468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89197 0.19917 -1.00000 - 10025 2017 8 21 13 29 44 435 4.8970 180.12426 522.16024 499.10616 -0.33016 3.97447 1.43389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89162 0.19917 -1.00000 - 10026 2017 8 21 13 29 49 332 4.8969 180.12415 522.19232 499.12967 -0.32990 3.95716 1.43178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89126 0.19917 -1.00000 - 10027 2017 8 21 13 29 54 229 4.8969 180.12403 522.22482 499.15322 -0.32963 3.93439 1.42786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89091 0.19917 -1.00000 - 10028 2017 8 21 13 29 59 126 4.8969 180.12392 522.25645 499.17695 -0.32934 3.90655 1.42604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89055 0.19917 -1.00000 - 10029 2017 8 21 13 30 4 23 4.8968 180.12383 522.28564 499.20082 -0.32901 3.87415 1.42390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89019 0.19917 -1.00000 - 10030 2017 8 21 13 30 8 919 4.8968 180.12375 522.31187 499.22479 -0.32864 3.83769 1.41923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88984 0.19917 -1.00000 - 10031 2017 8 21 13 30 13 816 4.8967 180.12365 522.34130 499.24887 -0.32823 3.79772 1.41671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88948 0.19917 -1.00000 - 10032 2017 8 21 13 30 18 713 4.8967 180.12354 522.37112 499.27298 -0.32782 3.75493 1.41364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88913 0.19917 -1.00000 - 10033 2017 8 21 13 30 23 610 4.8966 180.12343 522.40223 499.29707 -0.32740 3.71009 1.40944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88877 0.19917 -1.00000 - 10034 2017 8 21 13 30 28 506 4.8966 180.12335 522.43307 499.32119 -0.32701 3.66389 1.40613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88841 0.19917 -1.00000 - 10035 2017 8 21 13 30 33 403 4.8966 180.12328 522.46393 499.34532 -0.32666 3.61692 1.40338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88806 0.19917 -1.00000 - 10036 2017 8 21 13 30 38 299 4.8965 180.12319 522.49476 499.36949 -0.32636 3.56967 1.39996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88770 0.19917 -1.00000 - 10037 2017 8 21 13 30 43 196 4.8965 180.12308 522.52556 499.39363 -0.32611 3.52259 1.39680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88734 0.19917 -1.00000 - 10038 2017 8 21 13 30 48 92 4.8964 180.12298 522.55616 499.41768 -0.32591 3.47608 1.39421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88699 0.19916 -1.00000 - 10039 2017 8 21 13 30 52 989 4.8964 180.12289 522.58669 499.44164 -0.32574 3.43060 1.39149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88663 0.19916 -1.00000 - 10040 2017 8 21 13 30 57 885 4.8964 180.12283 522.61717 499.46553 -0.32557 3.38660 1.38947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88628 0.19916 -1.00000 - 10041 2017 8 21 13 31 2 781 4.8963 180.12276 522.64764 499.48932 -0.32539 3.34434 1.38768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88592 0.19916 -1.00000 - 10042 2017 8 21 13 31 7 677 4.8963 180.12266 522.67800 499.51304 -0.32518 3.30409 1.38551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88556 0.19916 -1.00000 - 10043 2017 8 21 13 31 12 574 4.8962 180.12255 522.70821 499.53663 -0.32493 3.26612 1.38349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88521 0.19916 -1.00000 - 10044 2017 8 21 13 31 17 470 4.8962 180.12246 522.73807 499.56009 -0.32465 3.23073 1.38123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88485 0.19916 -1.00000 - 10045 2017 8 21 13 31 22 366 4.8961 180.12241 522.76777 499.58340 -0.32433 3.19815 1.37887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88450 0.19916 -1.00000 - 10046 2017 8 21 13 31 27 262 4.8961 180.12235 522.79721 499.60662 -0.32399 3.16845 1.37658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88414 0.19916 -1.00000 - 10047 2017 8 21 13 31 32 158 4.8961 180.12225 522.82636 499.62971 -0.32364 3.14167 1.37299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88378 0.19916 -1.00000 - 10048 2017 8 21 13 31 37 54 4.8960 180.12214 522.85499 499.65275 -0.32330 3.12211 1.36979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88343 0.19916 -1.00000 - 10049 2017 8 21 13 31 41 950 4.8960 180.12205 522.88340 499.67586 -0.32299 3.10586 1.36499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88307 0.19916 -1.00000 - 10050 2017 8 21 13 31 46 846 4.8959 180.12201 522.91461 499.69907 -0.32271 3.09287 1.36057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88272 0.19916 -1.00000 - 10051 2017 8 21 13 31 51 742 4.8959 180.12196 522.94270 499.72241 -0.32245 3.08268 1.35626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88236 0.19916 -1.00000 - 10052 2017 8 21 13 31 56 638 4.8958 180.12188 522.96930 499.74579 -0.32222 3.07403 1.35100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88200 0.19916 -1.00000 - 10053 2017 8 21 13 32 1 534 4.8958 180.12175 523.00241 499.76934 -0.32198 3.06660 1.34505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88165 0.19916 -1.00000 - 10054 2017 8 21 13 32 6 429 4.8958 180.12166 523.03204 499.79308 -0.32174 3.06012 1.34121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88129 0.19916 -1.00000 - 10055 2017 8 21 13 32 11 325 4.8957 180.12163 523.05917 499.81680 -0.32147 3.05428 1.33536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88094 0.19916 -1.00000 - 10056 2017 8 21 13 32 16 221 4.8957 180.12160 523.09226 499.84075 -0.32117 3.04877 1.32928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88058 0.19916 -1.00000 - 10057 2017 8 21 13 32 21 116 4.8956 180.12152 523.12275 499.86483 -0.32082 3.04350 1.32611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88022 0.19916 -1.00000 - 10058 2017 8 21 13 32 26 12 4.8956 180.12139 523.15223 499.88892 -0.32043 3.03849 1.31937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87987 0.19916 -1.00000 - 10059 2017 8 21 13 32 30 908 4.8956 180.12129 523.18267 499.91319 -0.31999 3.03339 1.31358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87951 0.19916 -1.00000 - 10060 2017 8 21 13 32 35 803 4.8955 180.12128 523.21182 499.93750 -0.31953 3.03217 1.30982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87916 0.19916 -1.00000 - 10061 2017 8 21 13 32 40 699 4.8955 180.12127 523.24073 499.96186 -0.31905 3.03486 1.30358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87880 0.19916 -1.00000 - 10062 2017 8 21 13 32 45 594 4.8954 180.12119 523.27661 499.98642 -0.31856 3.03493 1.29894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87844 0.19916 -1.00000 - 10063 2017 8 21 13 32 50 489 4.8954 180.12104 523.30472 500.01113 -0.31808 3.02702 1.29468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87809 0.19916 -1.00000 - 10064 2017 8 21 13 32 55 385 4.8953 180.12095 523.33644 500.03581 -0.31760 3.02236 1.28869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87773 0.19916 -1.00000 - 10065 2017 8 21 13 33 0 280 4.8953 180.12095 523.36771 500.06065 -0.31713 3.01698 1.28520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87738 0.19916 -1.00000 - 10066 2017 8 21 13 33 5 175 4.8953 180.12096 523.39823 500.08548 -0.31665 3.01012 1.28253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87702 0.19915 -1.00000 - 10067 2017 8 21 13 33 10 70 4.8952 180.12088 523.42923 500.11030 -0.31616 3.00131 1.27646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87666 0.19915 -1.00000 - 10068 2017 8 21 13 33 14 966 4.8952 180.12073 523.46638 500.13529 -0.31567 2.98952 1.27294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87631 0.19915 -1.00000 - 10069 2017 8 21 13 33 19 861 4.8951 180.12065 523.49312 500.16039 -0.31516 2.97424 1.26963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87595 0.19915 -1.00000 - 10070 2017 8 21 13 33 24 756 4.8951 180.12066 523.52557 500.18556 -0.31463 2.95585 1.26447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87560 0.19915 -1.00000 - 10071 2017 8 21 13 33 29 651 4.8951 180.12068 523.55728 500.21082 -0.31408 2.93463 1.26203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87524 0.19915 -1.00000 - 10072 2017 8 21 13 33 34 546 4.8950 180.12060 523.58559 500.23606 -0.31350 2.91089 1.25969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87488 0.19915 -1.00000 - 10073 2017 8 21 13 33 39 441 4.8950 180.12046 523.61974 500.26141 -0.31290 2.88482 1.25592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87453 0.19915 -1.00000 - 10074 2017 8 21 13 33 44 336 4.8949 180.12039 523.65578 500.28695 -0.31228 2.85647 1.25456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87417 0.19915 -1.00000 - 10075 2017 8 21 13 33 49 231 4.8949 180.12041 523.68316 500.31245 -0.31162 2.82588 1.25229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87382 0.19915 -1.00000 - 10076 2017 8 21 13 33 54 126 4.8948 180.12044 523.71855 500.33805 -0.31095 2.79309 1.24938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87346 0.19915 -1.00000 - 10077 2017 8 21 13 33 59 20 4.8948 180.12037 523.75045 500.36375 -0.31025 2.75831 1.25009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87310 0.19915 -1.00000 - 10078 2017 8 21 13 34 3 915 4.8948 180.12025 523.77906 500.38936 -0.30955 2.72199 1.24957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87275 0.19915 -1.00000 - 10079 2017 8 21 13 34 8 810 4.8947 180.12018 523.81269 500.41504 -0.30885 2.68475 1.24993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87239 0.19915 -1.00000 - 10080 2017 8 21 13 34 13 705 4.8947 180.12021 523.84965 500.44085 -0.30815 2.64738 1.25186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87204 0.19915 -1.00000 - 10081 2017 8 21 13 34 18 599 4.8946 180.12024 523.87997 500.46667 -0.30749 2.61100 1.25303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87168 0.19915 -1.00000 - 10082 2017 8 21 13 34 23 494 4.8946 180.12018 523.90773 500.49246 -0.30685 2.57640 1.25541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87132 0.19915 -1.00000 - 10083 2017 8 21 13 34 28 388 4.8946 180.12007 523.94062 500.51830 -0.30625 2.54414 1.25971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87097 0.19915 -1.00000 - 10084 2017 8 21 13 34 33 283 4.8945 180.12001 523.97232 500.54406 -0.30573 2.54655 1.26305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87061 0.19915 -1.00000 - 10085 2017 8 21 13 34 38 177 4.8945 180.12004 524.00488 500.56981 -0.30524 2.57526 1.26932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87026 0.19915 -1.00000 - 10086 2017 8 21 13 34 43 72 4.8944 180.12007 524.03736 500.59548 -0.30478 2.60473 1.27608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86990 0.19915 -1.00000 - 10087 2017 8 21 13 34 47 966 4.8944 180.12002 524.06961 500.62107 -0.30437 2.63464 1.28263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86954 0.19915 -1.00000 - 10088 2017 8 21 13 34 52 860 4.8943 180.11992 524.10139 500.64657 -0.30401 2.66471 1.29085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86919 0.19915 -1.00000 - 10089 2017 8 21 13 34 57 755 4.8943 180.11987 524.13346 500.67198 -0.30370 2.69459 1.30046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86883 0.19915 -1.00000 - 10090 2017 8 21 13 35 2 649 4.8943 180.11990 524.16547 500.69728 -0.30345 2.72404 1.31030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86848 0.19915 -1.00000 - 10091 2017 8 21 13 35 7 543 4.8942 180.11992 524.19728 500.72248 -0.30326 2.75284 1.32094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86812 0.19915 -1.00000 - 10092 2017 8 21 13 35 12 437 4.8942 180.11988 524.22895 500.74755 -0.30311 2.78084 1.33256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86777 0.19915 -1.00000 - 10093 2017 8 21 13 35 17 332 4.8941 180.11978 524.26044 500.77246 -0.30301 2.80791 1.34361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86741 0.19915 -1.00000 - 10094 2017 8 21 13 35 22 226 4.8941 180.11973 524.29163 500.79719 -0.30294 2.83396 1.35551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86705 0.19914 -1.00000 - 10095 2017 8 21 13 35 27 120 4.8940 180.11976 524.32065 500.82188 -0.30290 2.85892 1.36795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86670 0.19914 -1.00000 - 10096 2017 8 21 13 35 32 14 4.8940 180.11978 524.34830 500.84650 -0.30289 2.88278 1.37919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86634 0.19914 -1.00000 - 10097 2017 8 21 13 35 36 908 4.8940 180.11974 524.37908 500.87114 -0.30288 2.91038 1.39169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86599 0.19914 -1.00000 - 10098 2017 8 21 13 35 41 802 4.8939 180.11965 524.41262 500.89571 -0.30289 2.94096 1.40304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86563 0.19914 -1.00000 - 10099 2017 8 21 13 35 46 695 4.8939 180.11960 524.44602 500.92036 -0.30289 2.97568 1.41338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86527 0.19914 -1.00000 - 10100 2017 8 21 13 35 51 589 4.8938 180.11963 524.47669 500.94504 -0.30290 3.01719 1.42760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86492 0.19914 -1.00000 - 10101 2017 8 21 13 35 56 483 4.8938 180.11966 524.50349 500.96962 -0.30289 3.06038 1.43811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86456 0.19914 -1.00000 - 10102 2017 8 21 13 36 1 377 4.8937 180.11962 524.53413 500.99430 -0.30285 3.10587 1.44832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86421 0.19914 -1.00000 - 10103 2017 8 21 13 36 6 270 4.8937 180.11954 524.56429 501.01903 -0.30279 3.17504 1.46252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86385 0.19914 -1.00000 - 10104 2017 8 21 13 36 11 164 4.8937 180.11949 524.59573 501.04363 -0.30269 3.24346 1.47170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86349 0.19914 -1.00000 - 10105 2017 8 21 13 36 16 58 4.8936 180.11953 524.63013 501.06835 -0.30255 3.31086 1.48168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86314 0.19914 -1.00000 - 10106 2017 8 21 13 36 20 951 4.8936 180.11956 524.66015 501.09317 -0.30238 3.37812 1.49564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86278 0.19914 -1.00000 - 10107 2017 8 21 13 36 25 845 4.8935 180.11953 524.68698 501.11786 -0.30216 3.44397 1.50446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86243 0.19914 -1.00000 - 10108 2017 8 21 13 36 30 738 4.8935 180.11945 524.71715 501.14269 -0.30190 3.49847 1.51394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86207 0.19914 -1.00000 - 10109 2017 8 21 13 36 35 632 4.8935 180.11941 524.74733 501.16765 -0.30162 3.55022 1.52645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86172 0.19914 -1.00000 - 10110 2017 8 21 13 36 40 525 4.8934 180.11945 524.77932 501.19248 -0.30132 3.60899 1.53456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86136 0.19914 -1.00000 - 10111 2017 8 21 13 36 45 419 4.8934 180.11949 524.81344 501.21741 -0.30101 3.66521 1.54418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86100 0.19914 -1.00000 - 10112 2017 8 21 13 36 50 312 4.8933 180.11946 524.84381 501.24245 -0.30070 3.73548 1.55676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86065 0.19914 -1.00000 - 10113 2017 8 21 13 36 55 205 4.8933 180.11939 524.87028 501.26732 -0.30039 3.80499 1.56408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86029 0.19914 -1.00000 - 10114 2017 8 21 13 37 0 98 4.8932 180.11937 524.90064 501.29231 -0.30008 3.86959 1.57242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85994 0.19914 -1.00000 - 10115 2017 8 21 13 37 4 992 4.8932 180.11941 524.93086 501.31745 -0.29977 3.92723 1.58268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85958 0.19914 -1.00000 - 10116 2017 8 21 13 37 9 885 4.8932 180.11946 524.96297 501.34254 -0.29946 3.97608 1.58882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85922 0.19914 -1.00000 - 10117 2017 8 21 13 37 14 778 4.8931 180.11944 524.99698 501.36787 -0.29917 4.01050 1.59654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85887 0.19914 -1.00000 - 10118 2017 8 21 13 37 19 671 4.8931 180.11939 525.02823 501.39334 -0.29889 4.03699 1.60545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85851 0.19914 -1.00000 - 10119 2017 8 21 13 37 24 564 4.8930 180.11937 525.05434 501.41875 -0.29862 4.06320 1.61027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85816 0.19914 -1.00000 - 10120 2017 8 21 13 37 29 457 4.8930 180.11943 525.08620 501.44439 -0.29837 4.08478 1.61649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85780 0.19914 -1.00000 - 10121 2017 8 21 13 37 34 350 4.8930 180.11948 525.11751 501.47006 -0.29814 4.10087 1.62329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85744 0.19913 -1.00000 - 10122 2017 8 21 13 37 39 243 4.8929 180.11947 525.15231 501.49571 -0.29792 4.11058 1.62677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85709 0.19913 -1.00000 - 10123 2017 8 21 13 37 44 136 4.8929 180.11943 525.18602 501.52158 -0.29770 4.11486 1.63180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85673 0.19913 -1.00000 - 10124 2017 8 21 13 37 49 29 4.8928 180.11943 525.21235 501.54749 -0.29747 4.11571 1.63688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85638 0.19913 -1.00000 - 10125 2017 8 21 13 37 53 921 4.8928 180.11949 525.24065 501.57356 -0.29722 4.11393 1.64006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85602 0.19913 -1.00000 - 10126 2017 8 21 13 37 58 814 4.8927 180.11955 525.27571 501.59986 -0.29694 4.11039 1.64467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85567 0.19913 -1.00000 - 10127 2017 8 21 13 38 3 707 4.8927 180.11956 525.30939 501.62616 -0.29664 4.10565 1.64709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85531 0.19913 -1.00000 - 10128 2017 8 21 13 38 8 600 4.8927 180.11952 525.34643 501.65264 -0.29631 4.09954 1.64981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85495 0.19913 -1.00000 - 10129 2017 8 21 13 38 13 492 4.8926 180.11953 525.37892 501.67929 -0.29601 4.09177 1.65406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85460 0.19913 -1.00000 - 10130 2017 8 21 13 38 18 385 4.8926 180.11960 525.40688 501.70594 -0.29579 4.08212 1.65523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85424 0.19913 -1.00000 - 10131 2017 8 21 13 38 23 277 4.8925 180.11967 525.43937 501.73285 -0.29567 4.07052 1.65767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85389 0.19913 -1.00000 - 10132 2017 8 21 13 38 28 170 4.8925 180.11967 525.47256 501.75988 -0.29564 4.05699 1.66078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85353 0.19913 -1.00000 - 10133 2017 8 21 13 38 33 62 4.8924 180.11964 525.50849 501.78680 -0.29565 4.04178 1.66124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85318 0.19913 -1.00000 - 10134 2017 8 21 13 38 37 955 4.8924 180.11965 525.54574 501.81395 -0.29566 4.02533 1.66330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85282 0.19913 -1.00000 - 10135 2017 8 21 13 38 42 847 4.8924 180.11973 525.57923 501.84126 -0.29559 4.00825 1.66668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85246 0.19913 -1.00000 - 10136 2017 8 21 13 38 47 739 4.8923 180.11980 525.60857 501.86857 -0.29542 3.99119 1.66642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85211 0.19913 -1.00000 - 10137 2017 8 21 13 38 52 632 4.8923 180.11981 525.64084 501.89597 -0.29516 3.97474 1.66845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85175 0.19913 -1.00000 - 10138 2017 8 21 13 38 57 524 4.8922 180.11978 525.67493 501.92333 -0.29482 3.95934 1.67075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85140 0.19913 -1.00000 - 10139 2017 8 21 13 39 2 416 4.8922 180.11980 525.71262 501.95061 -0.29446 3.94522 1.67104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85104 0.19913 -1.00000 - 10140 2017 8 21 13 39 7 308 4.8921 180.11988 525.74980 501.97795 -0.29411 3.93237 1.67244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85068 0.19913 -1.00000 - 10141 2017 8 21 13 39 12 200 4.8921 180.11994 525.77970 502.00533 -0.29382 3.92074 1.67430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85033 0.19913 -1.00000 - 10142 2017 8 21 13 39 17 92 4.8921 180.11995 525.81220 502.03279 -0.29359 3.91019 1.67531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84997 0.19913 -1.00000 - 10143 2017 8 21 13 39 21 984 4.8920 180.11993 525.84716 502.06030 -0.29341 3.90053 1.67767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84962 0.19913 -1.00000 - 10144 2017 8 21 13 39 26 876 4.8920 180.11994 525.88154 502.08766 -0.29326 3.89154 1.67913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84926 0.19913 -1.00000 - 10145 2017 8 21 13 39 31 768 4.8919 180.12002 525.91529 502.11490 -0.29309 3.88313 1.68004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84891 0.19913 -1.00000 - 10146 2017 8 21 13 39 36 660 4.8919 180.12008 525.94840 502.14213 -0.29291 3.87526 1.68212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84855 0.19913 -1.00000 - 10147 2017 8 21 13 39 41 552 4.8918 180.12009 525.98033 502.16931 -0.29269 3.86802 1.68336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84819 0.19913 -1.00000 - 10148 2017 8 21 13 39 46 444 4.8918 180.12007 526.01298 502.19658 -0.29244 3.86151 1.68343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84784 0.19913 -1.00000 - 10149 2017 8 21 13 39 51 335 4.8918 180.12008 526.04695 502.22389 -0.29219 3.85686 1.68587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84748 0.19912 -1.00000 - 10150 2017 8 21 13 39 56 227 4.8917 180.12016 526.08304 502.25102 -0.29194 3.85456 1.68530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84713 0.19912 -1.00000 - 10151 2017 8 21 13 40 1 119 4.8917 180.12022 526.12060 502.27817 -0.29171 3.85360 1.68508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84677 0.19912 -1.00000 - 10152 2017 8 21 13 40 6 10 4.8916 180.12023 526.15341 502.30537 -0.29150 3.85389 1.68650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84642 0.19912 -1.00000 - 10153 2017 8 21 13 40 10 902 4.8916 180.12021 526.18260 502.33247 -0.29129 3.85532 1.68580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84606 0.19912 -1.00000 - 10154 2017 8 21 13 40 15 794 4.8916 180.12024 526.21662 502.35967 -0.29108 3.85775 1.68563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84570 0.19912 -1.00000 - 10155 2017 8 21 13 40 20 685 4.8915 180.12032 526.25071 502.38690 -0.29086 3.86100 1.68700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84535 0.19912 -1.00000 - 10156 2017 8 21 13 40 25 577 4.8915 180.12039 526.28489 502.41398 -0.29059 3.86488 1.68597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84499 0.19912 -1.00000 - 10157 2017 8 21 13 40 30 468 4.8914 180.12040 526.32240 502.44101 -0.29030 3.86913 1.68527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84464 0.19912 -1.00000 - 10158 2017 8 21 13 40 35 359 4.8914 180.12040 526.35532 502.46798 -0.28997 3.87353 1.68721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84428 0.19912 -1.00000 - 10159 2017 8 21 13 40 40 251 4.8913 180.12044 526.38504 502.49481 -0.28963 3.87789 1.68554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84393 0.19912 -1.00000 - 10160 2017 8 21 13 40 45 142 4.8913 180.12054 526.41857 502.52162 -0.28930 3.88531 1.68415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84357 0.19912 -1.00000 - 10161 2017 8 21 13 40 50 33 4.8913 180.12062 526.45176 502.54838 -0.28897 3.89288 1.68474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84321 0.19912 -1.00000 - 10162 2017 8 21 13 40 54 925 4.8912 180.12063 526.48532 502.57503 -0.28867 3.89957 1.68227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84286 0.19912 -1.00000 - 10163 2017 8 21 13 40 59 816 4.8912 180.12064 526.52219 502.60168 -0.28839 3.90417 1.67978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84250 0.19912 -1.00000 - 10164 2017 8 21 13 41 4 707 4.8911 180.12069 526.55309 502.62833 -0.28812 3.89953 1.67883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84215 0.19912 -1.00000 - 10165 2017 8 21 13 41 9 598 4.8911 180.12080 526.58363 502.65489 -0.28786 3.89123 1.67522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84179 0.19912 -1.00000 - 10166 2017 8 21 13 41 14 489 4.8911 180.12088 526.61642 502.68145 -0.28760 3.88688 1.67155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84144 0.19912 -1.00000 - 10167 2017 8 21 13 41 19 380 4.8910 180.12091 526.64908 502.70808 -0.28737 3.88060 1.66956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84108 0.19912 -1.00000 - 10168 2017 8 21 13 41 24 271 4.8910 180.12093 526.68171 502.73472 -0.28715 3.87016 1.66532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84072 0.19912 -1.00000 - 10169 2017 8 21 13 41 29 162 4.8909 180.12100 526.71713 502.76146 -0.28695 3.84850 1.66024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84037 0.19912 -1.00000 - 10170 2017 8 21 13 41 34 53 4.8909 180.12111 526.74748 502.78835 -0.28680 3.82175 1.65790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84001 0.19912 -1.00000 - 10171 2017 8 21 13 41 38 944 4.8908 180.12120 526.78000 502.81521 -0.28671 3.79795 1.65147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83966 0.19912 -1.00000 - 10172 2017 8 21 13 41 43 835 4.8908 180.12123 526.81710 502.84235 -0.28669 3.77173 1.64524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83930 0.19912 -1.00000 - 10173 2017 8 21 13 41 48 725 4.8908 180.12127 526.85019 502.86961 -0.28673 3.74209 1.64247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83895 0.19912 -1.00000 - 10174 2017 8 21 13 41 53 616 4.8907 180.12135 526.87895 502.89682 -0.28684 3.70858 1.63502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83859 0.19912 -1.00000 - 10175 2017 8 21 13 41 58 507 4.8907 180.12147 526.91494 502.92429 -0.28700 3.67081 1.62910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83823 0.19912 -1.00000 - 10176 2017 8 21 13 42 3 397 4.8906 180.12156 526.94907 502.95201 -0.28721 3.62340 1.62632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83788 0.19912 -1.00000 - 10177 2017 8 21 13 42 8 288 4.8906 180.12159 526.98204 502.97964 -0.28744 3.57340 1.61838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83752 0.19911 -1.00000 - 10178 2017 8 21 13 42 13 178 4.8905 180.12164 527.02006 503.00751 -0.28769 3.52943 1.61153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83717 0.19911 -1.00000 - 10179 2017 8 21 13 42 18 69 4.8905 180.12172 527.05435 503.03564 -0.28794 3.48744 1.60851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83681 0.19911 -1.00000 - 10180 2017 8 21 13 42 22 959 4.8905 180.12184 527.08448 503.06375 -0.28816 3.44491 1.60054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83646 0.19911 -1.00000 - 10181 2017 8 21 13 42 27 850 4.8904 180.12194 527.12188 503.09209 -0.28834 3.40132 1.59525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83610 0.19911 -1.00000 - 10182 2017 8 21 13 42 32 740 4.8904 180.12197 527.15662 503.12062 -0.28846 3.35841 1.59361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83575 0.19911 -1.00000 - 10183 2017 8 21 13 42 37 631 4.8903 180.12202 527.19145 503.14907 -0.28850 3.31493 1.58661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83539 0.19911 -1.00000 - 10184 2017 8 21 13 42 42 521 4.8903 180.12211 527.23098 503.17774 -0.28844 3.27164 1.58178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83503 0.19911 -1.00000 - 10185 2017 8 21 13 42 47 411 4.8902 180.12222 527.26646 503.20658 -0.28826 3.23166 1.58040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83468 0.19911 -1.00000 - 10186 2017 8 21 13 42 52 301 4.8902 180.12232 527.29798 503.23536 -0.28797 3.20163 1.57494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83432 0.19911 -1.00000 - 10187 2017 8 21 13 42 57 191 4.8902 180.12235 527.33739 503.26441 -0.28757 3.17372 1.57155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83397 0.19911 -1.00000 - 10188 2017 8 21 13 43 2 82 4.8901 180.12240 527.37011 503.29359 -0.28707 3.15884 1.57133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83361 0.19911 -1.00000 - 10189 2017 8 21 13 43 6 972 4.8901 180.12249 527.40781 503.32272 -0.28650 3.15882 1.56751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83326 0.19911 -1.00000 - 10190 2017 8 21 13 43 11 862 4.8900 180.12261 527.44756 503.35198 -0.28588 3.16302 1.56692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83290 0.19911 -1.00000 - 10191 2017 8 21 13 43 16 752 4.8900 180.12270 527.48412 503.38132 -0.28527 3.16815 1.56783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83254 0.19911 -1.00000 - 10192 2017 8 21 13 43 21 642 4.8899 180.12274 527.52006 503.41066 -0.28467 3.17455 1.56767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83219 0.19911 -1.00000 - 10193 2017 8 21 13 43 26 532 4.8899 180.12279 527.55451 503.44014 -0.28410 3.18312 1.56905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83183 0.19911 -1.00000 - 10194 2017 8 21 13 43 31 421 4.8899 180.12288 527.58776 503.46957 -0.28358 3.19343 1.57148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83148 0.19911 -1.00000 - 10195 2017 8 21 13 43 36 311 4.8898 180.12300 527.62490 503.49897 -0.28308 3.20331 1.57348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83112 0.19911 -1.00000 - 10196 2017 8 21 13 43 41 201 4.8898 180.12310 527.66178 503.52832 -0.28259 3.21464 1.57697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83077 0.19911 -1.00000 - 10197 2017 8 21 13 43 46 91 4.8897 180.12314 527.69834 503.55759 -0.28210 3.22740 1.58182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83041 0.19911 -1.00000 - 10198 2017 8 21 13 43 50 980 4.8897 180.12320 527.73388 503.58683 -0.28158 3.24083 1.58766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83006 0.19911 -1.00000 - 10199 2017 8 21 13 43 55 870 4.8897 180.12329 527.77046 503.61606 -0.28102 3.25478 1.59344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82970 0.19911 -1.00000 - 10200 2017 8 21 13 44 0 760 4.8896 180.12342 527.80668 503.64514 -0.28044 3.26934 1.60060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82934 0.19911 -1.00000 - 10201 2017 8 21 13 44 5 649 4.8896 180.12352 527.84260 503.67406 -0.27984 3.29102 1.60856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82899 0.19911 -1.00000 - 10202 2017 8 21 13 44 10 539 4.8895 180.12357 527.87835 503.70282 -0.27925 3.31421 1.61687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82863 0.19911 -1.00000 - 10203 2017 8 21 13 44 15 428 4.8895 180.12364 527.91388 503.73145 -0.27870 3.33895 1.62601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82828 0.19911 -1.00000 - 10204 2017 8 21 13 44 20 318 4.8894 180.12374 527.94923 503.75990 -0.27821 3.36524 1.63579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82792 0.19911 -1.00000 - 10205 2017 8 21 13 44 25 207 4.8894 180.12387 527.98434 503.78818 -0.27779 3.39288 1.64542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82757 0.19910 -1.00000 - 10206 2017 8 21 13 44 30 97 4.8894 180.12398 528.01912 503.81623 -0.27745 3.42517 1.65517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82721 0.19910 -1.00000 - 10207 2017 8 21 13 44 34 986 4.8893 180.12405 528.05348 503.84406 -0.27717 3.46848 1.66478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82686 0.19910 -1.00000 - 10208 2017 8 21 13 44 39 875 4.8893 180.12412 528.08755 503.87170 -0.27695 3.51225 1.67454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82650 0.19910 -1.00000 - 10209 2017 8 21 13 44 44 764 4.8892 180.12424 528.12121 503.89912 -0.27677 3.55644 1.68427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82614 0.19910 -1.00000 - 10210 2017 8 21 13 44 49 654 4.8892 180.12438 528.15424 503.92633 -0.27662 3.60116 1.69322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82579 0.19910 -1.00000 - 10211 2017 8 21 13 44 54 543 4.8892 180.12450 528.18621 503.95341 -0.27650 3.64596 1.70170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82543 0.19910 -1.00000 - 10212 2017 8 21 13 44 59 432 4.8891 180.12457 528.21910 503.98049 -0.27640 3.69051 1.70991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82508 0.19910 -1.00000 - 10213 2017 8 21 13 45 4 321 4.8891 180.12466 528.25024 504.00754 -0.27634 3.73474 1.71701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82472 0.19910 -1.00000 - 10214 2017 8 21 13 45 9 210 4.8890 180.12478 528.28160 504.03472 -0.27633 3.77856 1.72438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82437 0.19910 -1.00000 - 10215 2017 8 21 13 45 14 99 4.8890 180.12492 528.31462 504.06192 -0.27638 3.82188 1.73040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82401 0.19910 -1.00000 - 10216 2017 8 21 13 45 18 988 4.8889 180.12505 528.35125 504.08929 -0.27649 3.86462 1.73556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82366 0.19910 -1.00000 - 10217 2017 8 21 13 45 23 877 4.8889 180.12513 528.38367 504.11686 -0.27665 3.90677 1.74236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82330 0.19910 -1.00000 - 10218 2017 8 21 13 45 28 766 4.8889 180.12522 528.41447 504.14449 -0.27685 3.94835 1.74721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82294 0.19910 -1.00000 - 10219 2017 8 21 13 45 33 654 4.8888 180.12534 528.44670 504.17235 -0.27708 3.99262 1.75229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82259 0.19910 -1.00000 - 10220 2017 8 21 13 45 38 543 4.8888 180.12549 528.47725 504.20029 -0.27732 4.04293 1.75948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82223 0.19910 -1.00000 - 10221 2017 8 21 13 45 43 432 4.8887 180.12562 528.51441 504.22834 -0.27757 4.09047 1.76216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82188 0.19910 -1.00000 - 10222 2017 8 21 13 45 48 321 4.8887 180.12570 528.55222 504.25677 -0.27781 4.13492 1.76614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82152 0.19910 -1.00000 - 10223 2017 8 21 13 45 53 209 4.8886 180.12580 528.58573 504.28534 -0.27804 4.17615 1.77153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82117 0.19910 -1.00000 - 10224 2017 8 21 13 45 58 98 4.8886 180.12592 528.61889 504.31404 -0.27825 4.21437 1.77364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82081 0.19910 -1.00000 - 10225 2017 8 21 13 46 2 986 4.8886 180.12608 528.65285 504.34304 -0.27845 4.24878 1.77809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82046 0.19910 -1.00000 - 10226 2017 8 21 13 46 7 875 4.8885 180.12621 528.68460 504.37223 -0.27863 4.27748 1.78251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82010 0.19910 -1.00000 - 10227 2017 8 21 13 46 12 763 4.8885 180.12630 528.72346 504.40145 -0.27877 4.29466 1.78361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81974 0.19910 -1.00000 - 10228 2017 8 21 13 46 17 652 4.8884 180.12640 528.76305 504.43099 -0.27889 4.31358 1.78595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81939 0.19910 -1.00000 - 10229 2017 8 21 13 46 22 540 4.8884 180.12653 528.79860 504.46079 -0.27897 4.32928 1.78957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81903 0.19910 -1.00000 - 10230 2017 8 21 13 46 27 429 4.8883 180.12668 528.83489 504.49075 -0.27899 4.34118 1.78934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81868 0.19910 -1.00000 - 10231 2017 8 21 13 46 32 317 4.8883 180.12682 528.87087 504.52101 -0.27896 4.34864 1.79153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81832 0.19910 -1.00000 - 10232 2017 8 21 13 46 37 205 4.8883 180.12691 528.90447 504.55137 -0.27887 4.35032 1.79470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81797 0.19909 -1.00000 - 10233 2017 8 21 13 46 42 93 4.8882 180.12702 528.94488 504.58177 -0.27874 4.34605 1.79384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81761 0.19909 -1.00000 - 10234 2017 8 21 13 46 46 982 4.8882 180.12715 528.98652 504.61247 -0.27857 4.33077 1.79433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81726 0.19909 -1.00000 - 10235 2017 8 21 13 46 51 870 4.8881 180.12731 529.02398 504.64333 -0.27835 4.31165 1.79679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81690 0.19909 -1.00000 - 10236 2017 8 21 13 46 56 758 4.8881 180.12746 529.06241 504.67422 -0.27808 4.29466 1.79643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81655 0.19909 -1.00000 - 10237 2017 8 21 13 47 1 646 4.8881 180.12756 529.09747 504.70538 -0.27777 4.27543 1.79695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81619 0.19909 -1.00000 - 10238 2017 8 21 13 47 6 534 4.8880 180.12767 529.13354 504.73661 -0.27738 4.25281 1.79917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81583 0.19909 -1.00000 - 10239 2017 8 21 13 47 11 422 4.8880 180.12781 529.17659 504.76779 -0.27692 4.22645 1.79871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81548 0.19909 -1.00000 - 10240 2017 8 21 13 47 16 310 4.8879 180.12797 529.21974 504.79910 -0.27639 4.19091 1.79898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81512 0.19909 -1.00000 - 10241 2017 8 21 13 47 21 198 4.8879 180.12812 529.25804 504.83043 -0.27577 4.15412 1.80023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81477 0.19909 -1.00000 - 10242 2017 8 21 13 47 26 85 4.8878 180.12823 529.29783 504.86175 -0.27507 4.12436 1.80085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81441 0.19909 -1.00000 - 10243 2017 8 21 13 47 30 973 4.8878 180.12834 529.33178 504.89316 -0.27431 4.09608 1.80083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81406 0.19909 -1.00000 - 10244 2017 8 21 13 47 35 861 4.8878 180.12849 529.36917 504.92452 -0.27350 4.06857 1.80279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81370 0.19909 -1.00000 - 10245 2017 8 21 13 47 40 749 4.8877 180.12866 529.40891 504.95579 -0.27267 4.04132 1.80460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81335 0.19909 -1.00000 - 10246 2017 8 21 13 47 45 636 4.8877 180.12882 529.44906 504.98697 -0.27184 4.00867 1.80560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81299 0.19909 -1.00000 - 10247 2017 8 21 13 47 50 524 4.8876 180.12893 529.48908 505.01798 -0.27103 3.99304 1.80756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81264 0.19909 -1.00000 - 10248 2017 8 21 13 47 55 412 4.8876 180.12905 529.53236 505.04886 -0.27025 3.98025 1.81009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81228 0.19909 -1.00000 - 10249 2017 8 21 13 48 0 299 4.8875 180.12921 529.56453 505.07972 -0.26951 3.96869 1.81171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81192 0.19909 -1.00000 - 10250 2017 8 21 13 48 5 187 4.8875 180.12938 529.60254 505.11038 -0.26882 3.95882 1.81417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81157 0.19909 -1.00000 - 10251 2017 8 21 13 48 10 74 4.8875 180.12955 529.64132 505.14090 -0.26818 3.95473 1.81764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81121 0.19909 -1.00000 - 10252 2017 8 21 13 48 14 962 4.8874 180.12966 529.67946 505.17123 -0.26760 3.95920 1.81999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81086 0.19909 -1.00000 - 10253 2017 8 21 13 48 19 849 4.8874 180.12979 529.72054 505.20137 -0.26709 3.96284 1.82327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81050 0.19909 -1.00000 - 10254 2017 8 21 13 48 24 736 4.8873 180.12995 529.75383 505.23136 -0.26666 3.96721 1.82741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81015 0.19909 -1.00000 - 10255 2017 8 21 13 48 29 624 4.8873 180.13013 529.78960 505.26118 -0.26630 3.97266 1.83049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80979 0.19909 -1.00000 - 10256 2017 8 21 13 48 34 511 4.8872 180.13030 529.82571 505.29080 -0.26602 3.97977 1.83317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80944 0.19909 -1.00000 - 10257 2017 8 21 13 48 39 398 4.8872 180.13041 529.86320 505.32033 -0.26581 3.98884 1.83724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80908 0.19909 -1.00000 - 10258 2017 8 21 13 48 44 285 4.8872 180.13055 529.89553 505.34970 -0.26567 3.99920 1.84071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80873 0.19909 -1.00000 - 10259 2017 8 21 13 48 49 172 4.8871 180.13071 529.93687 505.37897 -0.26557 4.01636 1.84376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80837 0.19909 -1.00000 - 10260 2017 8 21 13 48 54 59 4.8871 180.13090 529.97105 505.40824 -0.26552 4.03556 1.84945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80802 0.19908 -1.00000 - 10261 2017 8 21 13 48 58 946 4.8870 180.13107 530.00452 505.43722 -0.26549 4.05645 1.85201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80766 0.19908 -1.00000 - 10262 2017 8 21 13 49 3 833 4.8870 180.13119 530.04052 505.46617 -0.26547 4.07807 1.85484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80730 0.19908 -1.00000 - 10263 2017 8 21 13 49 8 720 4.8869 180.13133 530.07436 505.49507 -0.26545 4.09952 1.85968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80695 0.19908 -1.00000 - 10264 2017 8 21 13 49 13 607 4.8869 180.13150 530.10456 505.52388 -0.26541 4.11999 1.86196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80659 0.19908 -1.00000 - 10265 2017 8 21 13 49 18 494 4.8869 180.13169 530.13712 505.55275 -0.26538 4.13879 1.86448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80624 0.19908 -1.00000 - 10266 2017 8 21 13 49 23 381 4.8868 180.13186 530.17147 505.58170 -0.26533 4.15541 1.86897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80588 0.19908 -1.00000 - 10267 2017 8 21 13 49 28 268 4.8868 180.13199 530.20912 505.61052 -0.26528 4.17104 1.87050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80553 0.19908 -1.00000 - 10268 2017 8 21 13 49 33 154 4.8867 180.13214 530.24739 505.63943 -0.26522 4.19757 1.87208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80517 0.19908 -1.00000 - 10269 2017 8 21 13 49 38 41 4.8867 180.13231 530.28138 505.66837 -0.26517 4.22085 1.87704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80482 0.19908 -1.00000 - 10270 2017 8 21 13 49 42 928 4.8867 180.13250 530.31163 505.69728 -0.26513 4.23998 1.87773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80446 0.19908 -1.00000 - 10271 2017 8 21 13 49 47 814 4.8866 180.13267 530.34379 505.72628 -0.26508 4.25453 1.87885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80411 0.19908 -1.00000 - 10272 2017 8 21 13 49 52 701 4.8866 180.13281 530.37849 505.75540 -0.26503 4.26409 1.88245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80375 0.19908 -1.00000 - 10273 2017 8 21 13 49 57 587 4.8865 180.13296 530.41739 505.78453 -0.26497 4.26776 1.88225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80340 0.19908 -1.00000 - 10274 2017 8 21 13 50 2 474 4.8865 180.13314 530.45637 505.81375 -0.26488 4.26464 1.88253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80304 0.19908 -1.00000 - 10275 2017 8 21 13 50 7 360 4.8864 180.13333 530.49090 505.84306 -0.26476 4.25540 1.88538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80268 0.19908 -1.00000 - 10276 2017 8 21 13 50 12 247 4.8864 180.13351 530.52189 505.87238 -0.26462 4.24125 1.88456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80233 0.19908 -1.00000 - 10277 2017 8 21 13 50 17 133 4.8864 180.13365 530.55456 505.90192 -0.26445 4.22275 1.88448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80197 0.19908 -1.00000 - 10278 2017 8 21 13 50 22 19 4.8863 180.13381 530.59068 505.93165 -0.26425 4.20024 1.88445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80162 0.19908 -1.00000 - 10279 2017 8 21 13 50 26 906 4.8863 180.13399 530.63118 505.96151 -0.26403 4.17366 1.88399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80126 0.19908 -1.00000 - 10280 2017 8 21 13 50 31 792 4.8862 180.13419 530.66959 505.99153 -0.26379 4.14323 1.88334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80091 0.19908 -1.00000 - 10281 2017 8 21 13 50 36 678 4.8862 180.13437 530.70454 506.02183 -0.26355 4.10971 1.88296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80055 0.19908 -1.00000 - 10282 2017 8 21 13 50 41 564 4.8861 180.13452 530.73627 506.05231 -0.26330 4.07441 1.88159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80020 0.19908 -1.00000 - 10283 2017 8 21 13 50 46 450 4.8861 180.13469 530.77737 506.08312 -0.26305 4.03839 1.88125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79984 0.19908 -1.00000 - 10284 2017 8 21 13 50 51 337 4.8861 180.13488 530.81610 506.11407 -0.26281 4.00289 1.88189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79949 0.19908 -1.00000 - 10285 2017 8 21 13 50 56 223 4.8860 180.13508 530.85765 506.14504 -0.26256 3.96861 1.88042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79913 0.19908 -1.00000 - 10286 2017 8 21 13 51 1 109 4.8860 180.13526 530.89596 506.17622 -0.26231 3.93608 1.88207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79878 0.19908 -1.00000 - 10287 2017 8 21 13 51 5 994 4.8859 180.13543 530.93021 506.20745 -0.26204 3.90582 1.88423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79842 0.19908 -1.00000 - 10288 2017 8 21 13 51 10 880 4.8859 180.13561 530.96656 506.23877 -0.26175 3.87833 1.88425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79807 0.19907 -1.00000 - 10289 2017 8 21 13 51 15 766 4.8859 180.13581 531.00853 506.27019 -0.26144 3.85420 1.88610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79771 0.19907 -1.00000 - 10290 2017 8 21 13 51 20 652 4.8858 180.13602 531.04664 506.30168 -0.26110 3.83406 1.88950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79735 0.19907 -1.00000 - 10291 2017 8 21 13 51 25 538 4.8858 180.13621 531.08459 506.33313 -0.26072 3.85510 1.89175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79700 0.19907 -1.00000 - 10292 2017 8 21 13 51 30 424 4.8857 180.13639 531.12767 506.36470 -0.26032 3.88965 1.89451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79664 0.19907 -1.00000 - 10293 2017 8 21 13 51 35 309 4.8857 180.13658 531.16582 506.39625 -0.25991 3.92419 1.90068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79629 0.19907 -1.00000 - 10294 2017 8 21 13 51 40 195 4.8856 180.13679 531.20213 506.42768 -0.25949 3.94506 1.90409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79593 0.19907 -1.00000 - 10295 2017 8 21 13 51 45 80 4.8856 180.13700 531.24205 506.45915 -0.25907 3.97604 1.90857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79558 0.19907 -1.00000 - 10296 2017 8 21 13 51 49 966 4.8856 180.13720 531.28043 506.49057 -0.25865 4.00872 1.91578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79522 0.19907 -1.00000 - 10297 2017 8 21 13 51 54 852 4.8855 180.13738 531.31831 506.52178 -0.25825 4.05134 1.92085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79487 0.19907 -1.00000 - 10298 2017 8 21 13 51 59 737 4.8855 180.13758 531.35970 506.55291 -0.25786 4.09169 1.92740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79451 0.19907 -1.00000 - 10299 2017 8 21 13 52 4 622 4.8854 180.13779 531.39715 506.58403 -0.25747 4.12749 1.93617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79416 0.19907 -1.00000 - 10300 2017 8 21 13 52 9 508 4.8854 180.13799 531.43350 506.61495 -0.25707 4.13817 1.94167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79380 0.19907 -1.00000 - 10301 2017 8 21 13 52 14 393 4.8853 180.13819 531.47237 506.64584 -0.25664 4.17850 1.94742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79345 0.19907 -1.00000 - 10302 2017 8 21 13 52 19 279 4.8853 180.13838 531.50968 506.67672 -0.25619 4.22273 1.95576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79309 0.19907 -1.00000 - 10303 2017 8 21 13 52 24 164 4.8853 180.13858 531.54310 506.70744 -0.25569 4.26487 1.96101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79274 0.19907 -1.00000 - 10304 2017 8 21 13 52 29 49 4.8852 180.13879 531.58391 506.73821 -0.25516 4.30444 1.96718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79238 0.19907 -1.00000 - 10305 2017 8 21 13 52 33 934 4.8852 180.13900 531.61957 506.76909 -0.25459 4.34257 1.97439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79203 0.19907 -1.00000 - 10306 2017 8 21 13 52 38 819 4.8851 180.13919 531.66056 506.79986 -0.25414 4.38590 1.97798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79167 0.19907 -1.00000 - 10307 2017 8 21 13 52 43 704 4.8851 180.13938 531.69784 506.83071 -0.25380 4.45460 1.98393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79131 0.19907 -1.00000 - 10308 2017 8 21 13 52 48 589 4.8851 180.13959 531.73514 506.86154 -0.25347 4.52357 1.99066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79096 0.19907 -1.00000 - 10309 2017 8 21 13 52 53 474 4.8850 180.13980 531.76890 506.89229 -0.25315 4.59054 1.99258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79060 0.19907 -1.00000 - 10310 2017 8 21 13 52 58 359 4.8850 180.14000 531.80934 506.92321 -0.25286 4.65441 1.99689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79025 0.19907 -1.00000 - 10311 2017 8 21 13 53 3 244 4.8849 180.14020 531.84330 506.95423 -0.25259 4.71541 2.00075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78989 0.19907 -1.00000 - 10312 2017 8 21 13 53 8 129 4.8849 180.14040 531.88484 506.98526 -0.25237 4.77194 2.00118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78954 0.19907 -1.00000 - 10313 2017 8 21 13 53 13 14 4.8848 180.14061 531.92204 507.01636 -0.25218 4.82291 2.00469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78918 0.19907 -1.00000 - 10314 2017 8 21 13 53 17 899 4.8848 180.14082 531.95671 507.04748 -0.25201 4.88541 2.00726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78883 0.19907 -1.00000 - 10315 2017 8 21 13 53 22 784 4.8848 180.14102 531.99300 507.07871 -0.25184 4.95933 2.00682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78847 0.19907 -1.00000 - 10316 2017 8 21 13 53 27 668 4.8847 180.14123 532.03562 507.11019 -0.25165 5.02303 2.00847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78812 0.19906 -1.00000 - 10317 2017 8 21 13 53 32 553 4.8847 180.14145 532.07066 507.14167 -0.25143 5.07370 2.00729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78776 0.19906 -1.00000 - 10318 2017 8 21 13 53 37 438 4.8846 180.14166 532.11280 507.17328 -0.25118 5.11095 2.00431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78741 0.19906 -1.00000 - 10319 2017 8 21 13 53 42 322 4.8846 180.14187 532.14990 507.20504 -0.25092 5.13563 2.00566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78705 0.19906 -1.00000 - 10320 2017 8 21 13 53 47 207 4.8845 180.14208 532.18322 507.23677 -0.25066 5.14812 2.00264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78670 0.19906 -1.00000 - 10321 2017 8 21 13 53 52 91 4.8845 180.14230 532.22471 507.26862 -0.25042 5.14878 1.99956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78634 0.19906 -1.00000 - 10322 2017 8 21 13 53 56 976 4.8845 180.14251 532.26196 507.30070 -0.25019 5.13758 1.99868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78599 0.19906 -1.00000 - 10323 2017 8 21 13 54 1 860 4.8844 180.14273 532.30105 507.33273 -0.24998 5.11475 1.99381 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78563 0.19906 -1.00000 - 10324 2017 8 21 13 54 6 745 4.8844 180.14294 532.34422 507.36494 -0.24977 5.08087 1.98995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78528 0.19906 -1.00000 - 10325 2017 8 21 13 54 11 629 4.8843 180.14316 532.38319 507.39730 -0.24958 5.03677 1.98740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78492 0.19906 -1.00000 - 10326 2017 8 21 13 54 16 513 4.8843 180.14338 532.41894 507.42964 -0.24942 4.98332 1.98093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78457 0.19906 -1.00000 - 10327 2017 8 21 13 54 21 397 4.8843 180.14361 532.46180 507.46213 -0.24928 4.92182 1.97606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78421 0.19906 -1.00000 - 10328 2017 8 21 13 54 26 282 4.8842 180.14383 532.49677 507.49475 -0.24920 4.85326 1.97255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78386 0.19906 -1.00000 - 10329 2017 8 21 13 54 31 166 4.8842 180.14405 532.53883 507.52735 -0.24916 4.77821 1.96583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78350 0.19906 -1.00000 - 10330 2017 8 21 13 54 36 50 4.8841 180.14428 532.58245 507.56008 -0.24918 4.69736 1.96076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78314 0.19906 -1.00000 - 10331 2017 8 21 13 54 40 934 4.8841 180.14451 532.62156 507.59286 -0.24924 4.61387 1.95796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78279 0.19906 -1.00000 - 10332 2017 8 21 13 54 45 818 4.8840 180.14473 532.65690 507.62561 -0.24933 4.53050 1.95262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78243 0.19906 -1.00000 - 10333 2017 8 21 13 54 50 702 4.8840 180.14496 532.69388 507.65846 -0.24941 4.44784 1.94825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78208 0.19906 -1.00000 - 10334 2017 8 21 13 54 55 586 4.8840 180.14519 532.73414 507.69138 -0.24947 4.36657 1.94641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78172 0.19906 -1.00000 - 10335 2017 8 21 13 55 0 470 4.8839 180.14543 532.77892 507.72427 -0.24952 4.28686 1.94195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78137 0.19906 -1.00000 - 10336 2017 8 21 13 55 5 354 4.8839 180.14566 532.82322 507.75712 -0.24954 4.20926 1.93927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78101 0.19906 -1.00000 - 10337 2017 8 21 13 55 10 238 4.8838 180.14589 532.86250 507.79000 -0.24955 4.13448 1.93900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78066 0.19906 -1.00000 - 10338 2017 8 21 13 55 15 122 4.8838 180.14613 532.89823 507.82278 -0.24957 4.06364 1.93685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78030 0.19906 -1.00000 - 10339 2017 8 21 13 55 20 5 4.8838 180.14636 532.93588 507.85558 -0.24959 4.00578 1.93570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77995 0.19906 -1.00000 - 10340 2017 8 21 13 55 24 889 4.8837 180.14660 532.97611 507.88843 -0.24960 4.00834 1.93618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77959 0.19906 -1.00000 - 10341 2017 8 21 13 55 29 773 4.8837 180.14684 533.02059 507.92118 -0.24960 4.01263 1.93584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77924 0.19906 -1.00000 - 10342 2017 8 21 13 55 34 656 4.8836 180.14707 533.06455 507.95388 -0.24958 4.01849 1.93736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77888 0.19906 -1.00000 - 10343 2017 8 21 13 55 39 540 4.8836 180.14731 533.09974 507.98655 -0.24953 4.02606 1.93877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77853 0.19906 -1.00000 - 10344 2017 8 21 13 55 44 423 4.8835 180.14755 533.13596 508.01918 -0.24944 4.03552 1.94041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77817 0.19905 -1.00000 - 10345 2017 8 21 13 55 49 307 4.8835 180.14779 533.17589 508.05188 -0.24931 4.04626 1.94364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77782 0.19905 -1.00000 - 10346 2017 8 21 13 55 54 190 4.8835 180.14803 533.21521 508.08456 -0.24918 4.05776 1.94595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77746 0.19905 -1.00000 - 10347 2017 8 21 13 55 59 74 4.8834 180.14827 533.25892 508.11723 -0.24908 4.06974 1.94790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77711 0.19905 -1.00000 - 10348 2017 8 21 13 56 3 957 4.8834 180.14852 533.29795 508.14988 -0.24902 4.08179 1.95369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77675 0.19905 -1.00000 - 10349 2017 8 21 13 56 8 841 4.8833 180.14876 533.33595 508.18243 -0.24899 4.09325 1.95748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77640 0.19905 -1.00000 - 10350 2017 8 21 13 56 13 724 4.8833 180.14900 533.37713 508.21500 -0.24896 4.10352 1.96127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77604 0.19905 -1.00000 - 10351 2017 8 21 13 56 18 607 4.8833 180.14925 533.41628 508.24749 -0.24888 4.11217 1.96902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77569 0.19905 -1.00000 - 10352 2017 8 21 13 56 23 490 4.8832 180.14950 533.45443 508.27984 -0.24873 4.11862 1.97345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77533 0.19905 -1.00000 - 10353 2017 8 21 13 56 28 373 4.8832 180.14975 533.49673 508.31221 -0.24851 4.12167 1.97868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77498 0.19905 -1.00000 - 10354 2017 8 21 13 56 33 257 4.8831 180.14999 533.53430 508.34458 -0.24823 4.13194 1.98777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77462 0.19905 -1.00000 - 10355 2017 8 21 13 56 38 140 4.8831 180.15024 533.57330 508.37685 -0.24793 4.15703 1.99304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77427 0.19905 -1.00000 - 10356 2017 8 21 13 56 43 23 4.8830 180.15050 533.61382 508.40911 -0.24765 4.17801 1.99889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77391 0.19905 -1.00000 - 10357 2017 8 21 13 56 47 906 4.8830 180.15075 533.65255 508.44135 -0.24741 4.23570 2.00803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77356 0.19905 -1.00000 - 10358 2017 8 21 13 56 52 789 4.8830 180.15100 533.69009 508.47346 -0.24722 4.29772 2.01337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77320 0.19905 -1.00000 - 10359 2017 8 21 13 56 57 672 4.8829 180.15126 533.73103 508.50555 -0.24706 4.35755 2.01950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77285 0.19905 -1.00000 - 10360 2017 8 21 13 57 2 554 4.8829 180.15151 533.76815 508.53760 -0.24690 4.41452 2.02730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77249 0.19905 -1.00000 - 10361 2017 8 21 13 57 7 437 4.8828 180.15177 533.80711 508.56951 -0.24672 4.46803 2.03251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77214 0.19905 -1.00000 - 10362 2017 8 21 13 57 12 320 4.8828 180.15202 533.84807 508.60137 -0.24649 4.51717 2.03836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77178 0.19905 -1.00000 - 10363 2017 8 21 13 57 17 203 4.8827 180.15228 533.88391 508.63325 -0.24621 4.58188 2.04412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77143 0.19905 -1.00000 - 10364 2017 8 21 13 57 22 85 4.8827 180.15254 533.92378 508.66512 -0.24590 4.64537 2.04876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77107 0.19905 -1.00000 - 10365 2017 8 21 13 57 26 968 4.8827 180.15280 533.96136 508.69703 -0.24556 4.70064 2.05420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77072 0.19905 -1.00000 - 10366 2017 8 21 13 57 31 851 4.8826 180.15307 533.99938 508.72896 -0.24523 4.73925 2.05820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77036 0.19905 -1.00000 - 10367 2017 8 21 13 57 36 733 4.8826 180.15333 534.04045 508.76085 -0.24493 4.76795 2.05952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77001 0.19905 -1.00000 - 10368 2017 8 21 13 57 41 616 4.8825 180.15359 534.07905 508.79288 -0.24467 4.79478 2.06391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76965 0.19905 -1.00000 - 10369 2017 8 21 13 57 46 498 4.8825 180.15385 534.11346 508.82483 -0.24445 4.81267 2.06625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76930 0.19905 -1.00000 - 10370 2017 8 21 13 57 51 381 4.8824 180.15412 534.15573 508.85688 -0.24425 4.82030 2.06684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76894 0.19905 -1.00000 - 10371 2017 8 21 13 57 56 263 4.8824 180.15438 534.19245 508.88898 -0.24407 4.81715 2.07059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76858 0.19904 -1.00000 - 10372 2017 8 21 13 58 1 146 4.8824 180.15464 534.23231 508.92099 -0.24387 4.79715 2.06999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76823 0.19904 -1.00000 - 10373 2017 8 21 13 58 6 28 4.8823 180.15491 534.27535 508.95320 -0.24365 4.76964 2.06946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76787 0.19904 -1.00000 - 10374 2017 8 21 13 58 10 910 4.8823 180.15517 534.31389 508.98546 -0.24340 4.74438 2.07267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76752 0.19904 -1.00000 - 10375 2017 8 21 13 58 15 792 4.8822 180.15544 534.34739 509.01759 -0.24314 4.71555 2.07084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76716 0.19904 -1.00000 - 10376 2017 8 21 13 58 20 675 4.8822 180.15571 534.38712 509.04987 -0.24286 4.68307 2.07014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76681 0.19904 -1.00000 - 10377 2017 8 21 13 58 25 557 4.8822 180.15598 534.42439 509.08230 -0.24257 4.64706 2.07276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76645 0.19904 -1.00000 - 10378 2017 8 21 13 58 30 439 4.8821 180.15625 534.46534 509.11459 -0.24230 4.60150 2.07028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76610 0.19904 -1.00000 - 10379 2017 8 21 13 58 35 321 4.8821 180.15652 534.50878 509.14710 -0.24204 4.55620 2.06934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76574 0.19904 -1.00000 - 10380 2017 8 21 13 58 40 203 4.8820 180.15679 534.54771 509.17971 -0.24181 4.52093 2.07200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76539 0.19904 -1.00000 - 10381 2017 8 21 13 58 45 85 4.8820 180.15706 534.58168 509.21221 -0.24159 4.48892 2.06915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76503 0.19904 -1.00000 - 10382 2017 8 21 13 58 49 967 4.8819 180.15734 534.62287 509.24489 -0.24138 4.45935 2.06831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76468 0.19904 -1.00000 - 10383 2017 8 21 13 58 54 849 4.8819 180.15761 534.65759 509.27767 -0.24118 4.43177 2.07033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76432 0.19904 -1.00000 - 10384 2017 8 21 13 58 59 731 4.8819 180.15789 534.70086 509.31035 -0.24099 4.40584 2.06786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76397 0.19904 -1.00000 - 10385 2017 8 21 13 59 4 612 4.8818 180.15817 534.74376 509.34321 -0.24079 4.38156 2.06711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76361 0.19904 -1.00000 - 10386 2017 8 21 13 59 9 494 4.8818 180.15846 534.78318 509.37615 -0.24058 4.36652 2.06935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76326 0.19904 -1.00000 - 10387 2017 8 21 13 59 14 376 4.8817 180.15874 534.81959 509.40909 -0.24038 4.35536 2.06810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76290 0.19904 -1.00000 - 10388 2017 8 21 13 59 19 258 4.8817 180.15903 534.85550 509.44231 -0.24018 4.34412 2.06834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76255 0.19904 -1.00000 - 10389 2017 8 21 13 59 24 139 4.8817 180.15931 534.89478 509.47559 -0.23998 4.33404 2.07077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76219 0.19904 -1.00000 - 10390 2017 8 21 13 59 29 21 4.8816 180.15960 534.93947 509.50892 -0.23979 4.32717 2.07014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76184 0.19904 -1.00000 - 10391 2017 8 21 13 59 33 903 4.8816 180.15989 534.98399 509.54239 -0.23960 4.32394 2.07063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76148 0.19904 -1.00000 - 10392 2017 8 21 13 59 38 784 4.8815 180.16018 535.01940 509.57596 -0.23941 4.32414 2.07272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76113 0.19904 -1.00000 - 10393 2017 8 21 13 59 43 666 4.8815 180.16047 535.06242 509.60975 -0.23924 4.32721 2.07444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76077 0.19904 -1.00000 - 10394 2017 8 21 13 59 48 547 4.8814 180.16076 535.09746 509.64374 -0.23907 4.33273 2.07519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76042 0.19904 -1.00000 - 10395 2017 8 21 13 59 53 428 4.8814 180.16106 535.13659 509.67779 -0.23893 4.34051 2.07850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76006 0.19904 -1.00000 - 10396 2017 8 21 13 59 58 310 4.8814 180.16135 535.18232 509.71189 -0.23880 4.35046 2.08205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75971 0.19904 -1.00000 - 10397 2017 8 21 14 0 3 191 4.8813 180.16165 535.22750 509.74603 -0.23868 4.36257 2.08512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75935 0.19904 -1.00000 - 10398 2017 8 21 14 0 8 72 4.8813 180.16194 535.26818 509.78022 -0.23860 4.37755 2.08988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75900 0.19904 -1.00000 - 10399 2017 8 21 14 0 12 954 4.8812 180.16224 535.30486 509.81430 -0.23853 4.39782 2.09491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75864 0.19903 -1.00000 - 10400 2017 8 21 14 0 17 835 4.8812 180.16254 535.34339 509.84844 -0.23850 4.42026 2.09889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75829 0.19903 -1.00000 - 10401 2017 8 21 14 0 22 716 4.8812 180.16283 535.38445 509.88267 -0.23850 4.44469 2.10440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75793 0.19903 -1.00000 - 10402 2017 8 21 14 0 27 597 4.8811 180.16313 535.42636 509.91680 -0.23854 4.47082 2.11011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75758 0.19903 -1.00000 - 10403 2017 8 21 14 0 32 478 4.8811 180.16343 535.46823 509.95083 -0.23861 4.49824 2.11528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75722 0.19903 -1.00000 - 10404 2017 8 21 14 0 37 359 4.8810 180.16373 535.50990 509.98485 -0.23871 4.52659 2.12117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75687 0.19903 -1.00000 - 10405 2017 8 21 14 0 42 240 4.8810 180.16403 535.55140 510.01874 -0.23885 4.55555 2.12817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75651 0.19903 -1.00000 - 10406 2017 8 21 14 0 47 121 4.8809 180.16433 535.59248 510.05257 -0.23900 4.58489 2.13431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75616 0.19903 -1.00000 - 10407 2017 8 21 14 0 52 2 4.8809 180.16463 535.63352 510.08639 -0.23915 4.61442 2.14103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75580 0.19903 -1.00000 - 10408 2017 8 21 14 0 56 883 4.8809 180.16493 535.67446 510.12011 -0.23927 4.64397 2.14859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75545 0.19903 -1.00000 - 10409 2017 8 21 14 1 1 764 4.8808 180.16523 535.71523 510.15366 -0.23936 4.67585 2.15555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75509 0.19903 -1.00000 - 10410 2017 8 21 14 1 6 644 4.8808 180.16553 535.75576 510.18706 -0.23940 4.71205 2.16282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75474 0.19903 -1.00000 - 10411 2017 8 21 14 1 11 525 4.8807 180.16584 535.79627 510.22031 -0.23939 4.74824 2.17038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75439 0.19903 -1.00000 - 10412 2017 8 21 14 1 16 406 4.8807 180.16614 535.83653 510.25341 -0.23934 4.78386 2.17690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75403 0.19903 -1.00000 - 10413 2017 8 21 14 1 21 286 4.8806 180.16645 535.87654 510.28638 -0.23927 4.81845 2.18307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75368 0.19903 -1.00000 - 10414 2017 8 21 14 1 26 167 4.8806 180.16675 535.91633 510.31922 -0.23918 4.85161 2.18968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75332 0.19903 -1.00000 - 10415 2017 8 21 14 1 31 48 4.8806 180.16706 535.95375 510.35190 -0.23909 4.88301 2.19418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75297 0.19903 -1.00000 - 10416 2017 8 21 14 1 35 928 4.8805 180.16737 535.99275 510.38451 -0.23902 4.91241 2.19972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75261 0.19903 -1.00000 - 10417 2017 8 21 14 1 40 809 4.8805 180.16768 536.03370 510.41707 -0.23896 4.93964 2.20233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75226 0.19903 -1.00000 - 10418 2017 8 21 14 1 45 689 4.8804 180.16800 536.07690 510.44965 -0.23888 4.96457 2.20457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75190 0.19903 -1.00000 - 10419 2017 8 21 14 1 50 569 4.8804 180.16831 536.11457 510.48226 -0.23878 4.98708 2.20689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75155 0.19903 -1.00000 - 10420 2017 8 21 14 1 55 450 4.8804 180.16863 536.14941 510.51494 -0.23864 5.00706 2.20757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75119 0.19903 -1.00000 - 10421 2017 8 21 14 2 0 330 4.8803 180.16894 536.18667 510.54784 -0.23845 5.02444 2.20784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75084 0.19903 -1.00000 - 10422 2017 8 21 14 2 5 210 4.8803 180.16926 536.23030 510.58086 -0.23820 5.03916 2.20828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75048 0.19903 -1.00000 - 10423 2017 8 21 14 2 10 91 4.8802 180.16959 536.26923 510.61395 -0.23791 5.05116 2.20731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75013 0.19903 -1.00000 - 10424 2017 8 21 14 2 14 971 4.8802 180.16991 536.31272 510.64724 -0.23761 5.06046 2.20539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74977 0.19903 -1.00000 - 10425 2017 8 21 14 2 19 851 4.8801 180.17023 536.35150 510.68066 -0.23731 5.06714 2.20537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74942 0.19903 -1.00000 - 10426 2017 8 21 14 2 24 731 4.8801 180.17056 536.38757 510.71405 -0.23703 5.07160 2.20282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74906 0.19903 -1.00000 - 10427 2017 8 21 14 2 29 611 4.8801 180.17088 536.43069 510.74763 -0.23677 5.07397 2.20135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74871 0.19902 -1.00000 - 10428 2017 8 21 14 2 34 491 4.8800 180.17121 536.47100 510.78130 -0.23654 5.07317 2.19978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74835 0.19902 -1.00000 - 10429 2017 8 21 14 2 39 371 4.8800 180.17153 536.51329 510.81492 -0.23632 5.06748 2.19582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74800 0.19902 -1.00000 - 10430 2017 8 21 14 2 44 251 4.8799 180.17186 536.55672 510.84874 -0.23610 5.05011 2.19171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74764 0.19902 -1.00000 - 10431 2017 8 21 14 2 49 131 4.8799 180.17219 536.59272 510.88271 -0.23587 5.03854 2.18866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74729 0.19902 -1.00000 - 10432 2017 8 21 14 2 54 11 4.8799 180.17252 536.63261 510.91684 -0.23564 5.02631 2.18491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74693 0.19902 -1.00000 - 10433 2017 8 21 14 2 58 891 4.8798 180.17285 536.67407 510.95103 -0.23539 5.01278 2.18158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74658 0.19902 -1.00000 - 10434 2017 8 21 14 3 3 770 4.8798 180.17318 536.71672 510.98526 -0.23515 4.99722 2.17750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74622 0.19902 -1.00000 - 10435 2017 8 21 14 3 8 650 4.8797 180.17351 536.76503 511.01963 -0.23492 4.97851 2.17319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74587 0.19902 -1.00000 - 10436 2017 8 21 14 3 13 530 4.8797 180.17384 536.80097 511.05409 -0.23471 4.94936 2.16914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74551 0.19902 -1.00000 - 10437 2017 8 21 14 3 18 410 4.8796 180.17417 536.84328 511.08860 -0.23455 4.91830 2.16391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74516 0.19902 -1.00000 - 10438 2017 8 21 14 3 23 289 4.8796 180.17450 536.88243 511.12320 -0.23442 4.89424 2.15993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74480 0.19902 -1.00000 - 10439 2017 8 21 14 3 28 169 4.8796 180.17484 536.92495 511.15793 -0.23430 4.86972 2.15440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74445 0.19902 -1.00000 - 10440 2017 8 21 14 3 33 48 4.8795 180.17517 536.96944 511.19273 -0.23419 4.84337 2.14864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74409 0.19902 -1.00000 - 10441 2017 8 21 14 3 37 928 4.8795 180.17551 537.01150 511.22755 -0.23407 4.81418 2.14401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74374 0.19902 -1.00000 - 10442 2017 8 21 14 3 42 807 4.8794 180.17584 537.05287 511.26240 -0.23391 4.77471 2.13955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74338 0.19902 -1.00000 - 10443 2017 8 21 14 3 47 687 4.8794 180.17618 537.09329 511.29740 -0.23371 4.73341 2.13566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74303 0.19902 -1.00000 - 10444 2017 8 21 14 3 52 566 4.8794 180.17652 537.13245 511.33238 -0.23346 4.69899 2.13111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74267 0.19902 -1.00000 - 10445 2017 8 21 14 3 57 445 4.8793 180.17686 537.18023 511.36736 -0.23316 4.66371 2.12551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74232 0.19902 -1.00000 - 10446 2017 8 21 14 4 2 324 4.8793 180.17720 537.22156 511.40248 -0.23280 4.62607 2.12208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74196 0.19902 -1.00000 - 10447 2017 8 21 14 4 7 204 4.8792 180.17754 537.26121 511.43749 -0.23240 4.58493 2.11759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74161 0.19902 -1.00000 - 10448 2017 8 21 14 4 12 83 4.8792 180.17788 537.30596 511.47261 -0.23196 4.53299 2.11248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74125 0.19902 -1.00000 - 10449 2017 8 21 14 4 16 962 4.8791 180.17823 537.34766 511.50785 -0.23149 4.47948 2.10990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74090 0.19902 -1.00000 - 10450 2017 8 21 14 4 21 841 4.8791 180.17857 537.38956 511.54305 -0.23099 4.43388 2.10455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74054 0.19902 -1.00000 - 10451 2017 8 21 14 4 26 720 4.8791 180.17892 537.43668 511.57839 -0.23048 4.38917 2.09900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74019 0.19902 -1.00000 - 10452 2017 8 21 14 4 31 599 4.8790 180.17926 537.47897 511.61385 -0.22996 4.34516 2.09623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73984 0.19902 -1.00000 - 10453 2017 8 21 14 4 36 478 4.8790 180.17961 537.51660 511.64929 -0.22943 4.30101 2.09186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73948 0.19902 -1.00000 - 10454 2017 8 21 14 4 41 357 4.8789 180.17995 537.56103 511.68496 -0.22891 4.25701 2.08786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73913 0.19902 -1.00000 - 10455 2017 8 21 14 4 46 236 4.8789 180.18030 537.60413 511.72064 -0.22840 4.21450 2.08867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73877 0.19901 -1.00000 - 10456 2017 8 21 14 4 51 115 4.8789 180.18065 537.64820 511.75621 -0.22792 4.18367 2.08508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73842 0.19901 -1.00000 - 10457 2017 8 21 14 4 55 994 4.8788 180.18100 537.69617 511.79196 -0.22747 4.17034 2.08194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73806 0.19901 -1.00000 - 10458 2017 8 21 14 5 0 872 4.8788 180.18135 537.73901 511.82779 -0.22707 4.15875 2.08323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73771 0.19901 -1.00000 - 10459 2017 8 21 14 5 5 751 4.8787 180.18170 537.77692 511.86353 -0.22670 4.14801 2.08139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73735 0.19901 -1.00000 - 10460 2017 8 21 14 5 10 630 4.8787 180.18205 537.82093 511.89948 -0.22639 4.15907 2.08190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73700 0.19901 -1.00000 - 10461 2017 8 21 14 5 15 508 4.8786 180.18240 537.86348 511.93556 -0.22616 4.16925 2.08444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73664 0.19901 -1.00000 - 10462 2017 8 21 14 5 20 387 4.8786 180.18276 537.91009 511.97144 -0.22599 4.17621 2.08377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73629 0.19901 -1.00000 - 10463 2017 8 21 14 5 25 266 4.8786 180.18311 537.95866 512.00745 -0.22588 4.18159 2.08611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73593 0.19901 -1.00000 - 10464 2017 8 21 14 5 30 144 4.8785 180.18347 538.00213 512.04350 -0.22585 4.18792 2.09136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73558 0.19901 -1.00000 - 10465 2017 8 21 14 5 35 23 4.8785 180.18382 538.04065 512.07941 -0.22587 4.20051 2.09264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73522 0.19901 -1.00000 - 10466 2017 8 21 14 5 39 901 4.8784 180.18418 538.08606 512.11536 -0.22594 4.21509 2.09752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73487 0.19901 -1.00000 - 10467 2017 8 21 14 5 44 779 4.8784 180.18454 538.12519 512.15129 -0.22605 4.23058 2.10376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73451 0.19901 -1.00000 - 10468 2017 8 21 14 5 49 658 4.8784 180.18490 538.17356 512.18702 -0.22618 4.24694 2.10750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73416 0.19901 -1.00000 - 10469 2017 8 21 14 5 54 536 4.8783 180.18526 538.22032 512.22275 -0.22632 4.26424 2.11358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73380 0.19901 -1.00000 - 10470 2017 8 21 14 5 59 414 4.8783 180.18562 538.26290 512.25839 -0.22645 4.28219 2.12178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73345 0.19901 -1.00000 - 10471 2017 8 21 14 6 4 293 4.8782 180.18599 538.30118 512.29384 -0.22657 4.30450 2.12815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73309 0.19901 -1.00000 - 10472 2017 8 21 14 6 9 171 4.8782 180.18635 538.34134 512.32923 -0.22668 4.34407 2.13564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73274 0.19901 -1.00000 - 10473 2017 8 21 14 6 14 49 4.8781 180.18672 538.38377 512.36453 -0.22677 4.38446 2.14463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73238 0.19901 -1.00000 - 10474 2017 8 21 14 6 18 927 4.8781 180.18708 538.42716 512.39970 -0.22687 4.42518 2.15221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73203 0.19901 -1.00000 - 10475 2017 8 21 14 6 23 805 4.8781 180.18745 538.47006 512.43459 -0.22695 4.46572 2.16122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73168 0.19901 -1.00000 - 10476 2017 8 21 14 6 28 683 4.8780 180.18782 538.51233 512.46931 -0.22702 4.50552 2.17104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73132 0.19901 -1.00000 - 10477 2017 8 21 14 6 33 561 4.8780 180.18819 538.55229 512.50383 -0.22707 4.54414 2.17965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73097 0.19901 -1.00000 - 10478 2017 8 21 14 6 38 439 4.8779 180.18856 538.59315 512.53826 -0.22711 4.58125 2.18874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73061 0.19901 -1.00000 - 10479 2017 8 21 14 6 43 317 4.8779 180.18893 538.63423 512.57259 -0.22712 4.61666 2.19836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73026 0.19901 -1.00000 - 10480 2017 8 21 14 6 48 195 4.8779 180.18930 538.67582 512.60670 -0.22711 4.65029 2.20652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72990 0.19901 -1.00000 - 10481 2017 8 21 14 6 53 73 4.8778 180.18967 538.71676 512.64059 -0.22708 4.68797 2.21629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72955 0.19901 -1.00000 - 10482 2017 8 21 14 6 57 950 4.8778 180.19004 538.75715 512.67441 -0.22703 4.73317 2.22585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72919 0.19901 -1.00000 - 10483 2017 8 21 14 7 2 828 4.8777 180.19041 538.79603 512.70804 -0.22698 4.77451 2.23385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72884 0.19900 -1.00000 - 10484 2017 8 21 14 7 7 706 4.8777 180.19079 538.83565 512.74165 -0.22692 4.81127 2.24229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72848 0.19900 -1.00000 - 10485 2017 8 21 14 7 12 584 4.8777 180.19116 538.87484 512.77521 -0.22686 4.84309 2.24976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72813 0.19900 -1.00000 - 10486 2017 8 21 14 7 17 461 4.8776 180.19154 538.92053 512.80875 -0.22682 4.86990 2.25548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72777 0.19900 -1.00000 - 10487 2017 8 21 14 7 22 339 4.8776 180.19192 538.95992 512.84240 -0.22678 4.89198 2.26424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72742 0.19900 -1.00000 - 10488 2017 8 21 14 7 27 216 4.8775 180.19230 538.99556 512.87597 -0.22674 4.90980 2.26830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72706 0.19900 -1.00000 - 10489 2017 8 21 14 7 32 94 4.8775 180.19268 539.03960 512.90971 -0.22670 4.92386 2.27210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72671 0.19900 -1.00000 - 10490 2017 8 21 14 7 36 971 4.8774 180.19306 539.07864 512.94355 -0.22665 4.93478 2.27899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72635 0.19900 -1.00000 - 10491 2017 8 21 14 7 41 849 4.8774 180.19345 539.11583 512.97732 -0.22658 4.94309 2.28115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72600 0.19900 -1.00000 - 10492 2017 8 21 14 7 46 726 4.8774 180.19383 539.15983 513.01129 -0.22649 4.94928 2.28455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72565 0.19900 -1.00000 - 10493 2017 8 21 14 7 51 603 4.8773 180.19422 539.20058 513.04541 -0.22638 4.95396 2.29068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72529 0.19900 -1.00000 - 10494 2017 8 21 14 7 56 481 4.8773 180.19461 539.23670 513.07939 -0.22624 4.95789 2.29222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72494 0.19900 -1.00000 - 10495 2017 8 21 14 8 1 358 4.8772 180.19500 539.28130 513.11361 -0.22607 4.96094 2.29437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72458 0.19900 -1.00000 - 10496 2017 8 21 14 8 6 235 4.8772 180.19539 539.32194 513.14806 -0.22586 4.96173 2.29922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72423 0.19900 -1.00000 - 10497 2017 8 21 14 8 11 112 4.8772 180.19578 539.36061 513.18246 -0.22561 4.95180 2.29932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72387 0.19900 -1.00000 - 10498 2017 8 21 14 8 15 989 4.8771 180.19618 539.40542 513.21708 -0.22532 4.94152 2.30225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72352 0.19900 -1.00000 - 10499 2017 8 21 14 8 20 866 4.8771 180.19657 539.44438 513.25183 -0.22499 4.94169 2.30686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72316 0.19900 -1.00000 - 10500 2017 8 21 14 8 25 743 4.8770 180.19697 539.48348 513.28649 -0.22461 4.94409 2.30689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72281 0.19900 -1.00000 - 10501 2017 8 21 14 8 30 620 4.8770 180.19737 539.52896 513.32129 -0.22419 4.94766 2.31014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72245 0.19900 -1.00000 - 10502 2017 8 21 14 8 35 497 4.8769 180.19776 539.57015 513.35612 -0.22375 4.95096 2.31445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72210 0.19900 -1.00000 - 10503 2017 8 21 14 8 40 374 4.8769 180.19816 539.61157 513.39083 -0.22328 4.95388 2.31477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72174 0.19900 -1.00000 - 10504 2017 8 21 14 8 45 251 4.8769 180.19856 539.65671 513.42577 -0.22280 4.95711 2.31629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72139 0.19900 -1.00000 - 10505 2017 8 21 14 8 50 128 4.8768 180.19896 539.69370 513.46083 -0.22231 4.96088 2.31931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72103 0.19900 -1.00000 - 10506 2017 8 21 14 8 55 5 4.8768 180.19936 539.73338 513.49593 -0.22181 4.96547 2.31910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72068 0.19900 -1.00000 - 10507 2017 8 21 14 8 59 881 4.8767 180.19976 539.77933 513.53120 -0.22132 4.97123 2.32025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72033 0.19900 -1.00000 - 10508 2017 8 21 14 9 4 758 4.8767 180.20015 539.81998 513.56653 -0.22082 4.97823 2.32363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71997 0.19900 -1.00000 - 10509 2017 8 21 14 9 9 635 4.8767 180.20055 539.86298 513.60189 -0.22033 4.98745 2.32514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71962 0.19900 -1.00000 - 10510 2017 8 21 14 9 14 511 4.8766 180.20095 539.90892 513.63745 -0.21985 4.99596 2.32563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71926 0.19899 -1.00000 - 10511 2017 8 21 14 9 19 388 4.8766 180.20135 539.94683 513.67305 -0.21939 5.00489 2.32931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71891 0.19899 -1.00000 - 10512 2017 8 21 14 9 24 264 4.8765 180.20175 539.98602 513.70862 -0.21893 5.01450 2.32986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71855 0.19899 -1.00000 - 10513 2017 8 21 14 9 29 141 4.8765 180.20215 540.03241 513.74436 -0.21848 5.02379 2.33016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71820 0.19899 -1.00000 - 10514 2017 8 21 14 9 34 17 4.8764 180.20255 540.07432 513.78015 -0.21805 5.03247 2.33304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71784 0.19899 -1.00000 - 10515 2017 8 21 14 9 38 894 4.8764 180.20295 540.11487 513.81592 -0.21764 5.03962 2.33494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71749 0.19899 -1.00000 - 10516 2017 8 21 14 9 43 770 4.8764 180.20336 540.16000 513.85185 -0.21726 5.03588 2.33599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71713 0.19899 -1.00000 - 10517 2017 8 21 14 9 48 647 4.8763 180.20376 540.20169 513.88785 -0.21690 5.03040 2.33938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71678 0.19899 -1.00000 - 10518 2017 8 21 14 9 53 523 4.8763 180.20416 540.24448 513.92371 -0.21656 5.03239 2.34011 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71642 0.19899 -1.00000 - 10519 2017 8 21 14 9 58 399 4.8762 180.20457 540.28929 513.95960 -0.21624 5.03472 2.34005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71607 0.19899 -1.00000 - 10520 2017 8 21 14 10 3 275 4.8762 180.20497 540.33173 513.99558 -0.21591 5.04397 2.34270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71572 0.19899 -1.00000 - 10521 2017 8 21 14 10 8 151 4.8762 180.20538 540.37012 514.03157 -0.21558 5.05340 2.34233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71536 0.19899 -1.00000 - 10522 2017 8 21 14 10 13 28 4.8761 180.20579 540.41496 514.06777 -0.21523 5.06006 2.34156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71501 0.19899 -1.00000 - 10523 2017 8 21 14 10 17 904 4.8761 180.20620 540.45843 514.10414 -0.21486 5.06599 2.34445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71465 0.19899 -1.00000 - 10524 2017 8 21 14 10 22 780 4.8760 180.20661 540.50213 514.14041 -0.21446 5.07272 2.34183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71430 0.19899 -1.00000 - 10525 2017 8 21 14 10 27 656 4.8760 180.20703 540.55047 514.17690 -0.21404 5.08118 2.33997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71394 0.19899 -1.00000 - 10526 2017 8 21 14 10 32 532 4.8760 180.20744 540.59377 514.21352 -0.21361 5.09167 2.34311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71359 0.19899 -1.00000 - 10527 2017 8 21 14 10 37 407 4.8759 180.20786 540.63217 514.25005 -0.21319 5.10359 2.34047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71323 0.19899 -1.00000 - 10528 2017 8 21 14 10 42 283 4.8759 180.20827 540.67745 514.28675 -0.21279 5.11622 2.34017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71288 0.19899 -1.00000 - 10529 2017 8 21 14 10 47 159 4.8758 180.20869 540.72125 514.32358 -0.21242 5.12914 2.34289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71252 0.19899 -1.00000 - 10530 2017 8 21 14 10 52 35 4.8758 180.20911 540.76670 514.36030 -0.21211 5.14213 2.34009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71217 0.19899 -1.00000 - 10531 2017 8 21 14 10 56 911 4.8758 180.20953 540.81568 514.39720 -0.21186 5.15504 2.33908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71181 0.19899 -1.00000 - 10532 2017 8 21 14 11 1 786 4.8757 180.20995 540.85992 514.43421 -0.21168 5.16778 2.34114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71146 0.19899 -1.00000 - 10533 2017 8 21 14 11 6 662 4.8757 180.21038 540.89897 514.47110 -0.21155 5.18020 2.33830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71111 0.19899 -1.00000 - 10534 2017 8 21 14 11 11 538 4.8756 180.21080 540.94535 514.50812 -0.21148 5.19210 2.33829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71075 0.19899 -1.00000 - 10535 2017 8 21 14 11 16 413 4.8756 180.21123 540.98622 514.54523 -0.21146 5.20324 2.33926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71040 0.19899 -1.00000 - 10536 2017 8 21 14 11 21 289 4.8755 180.21165 541.03365 514.58226 -0.21147 5.21330 2.33711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71004 0.19899 -1.00000 - 10537 2017 8 21 14 11 26 164 4.8755 180.21208 541.07824 514.61936 -0.21152 5.22200 2.33746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70969 0.19899 -1.00000 - 10538 2017 8 21 14 11 31 40 4.8755 180.21251 541.12291 514.65639 -0.21165 5.23385 2.33829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70933 0.19898 -1.00000 - 10539 2017 8 21 14 11 35 915 4.8754 180.21294 541.16520 514.69336 -0.21180 5.24571 2.33746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70898 0.19898 -1.00000 - 10540 2017 8 21 14 11 40 791 4.8754 180.21337 541.20890 514.73039 -0.21196 5.25536 2.33770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70862 0.19898 -1.00000 - 10541 2017 8 21 14 11 45 666 4.8753 180.21380 541.25400 514.76739 -0.21212 5.26223 2.33850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70827 0.19898 -1.00000 - 10542 2017 8 21 14 11 50 541 4.8753 180.21424 541.29911 514.80426 -0.21229 5.26576 2.33719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70791 0.19898 -1.00000 - 10543 2017 8 21 14 11 55 417 4.8753 180.21467 541.34389 514.84099 -0.21246 5.26537 2.33727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70756 0.19898 -1.00000 - 10544 2017 8 21 14 12 0 292 4.8752 180.21511 541.38853 514.87766 -0.21264 5.26051 2.33808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70721 0.19898 -1.00000 - 10545 2017 8 21 14 12 5 167 4.8752 180.21554 541.43023 514.91422 -0.21281 5.25065 2.33652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70685 0.19898 -1.00000 - 10546 2017 8 21 14 12 10 42 4.8751 180.21598 541.47421 514.95077 -0.21298 5.23552 2.33534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70650 0.19898 -1.00000 - 10547 2017 8 21 14 12 14 917 4.8751 180.21642 541.51807 514.98729 -0.21314 5.21496 2.33490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70614 0.19898 -1.00000 - 10548 2017 8 21 14 12 19 792 4.8751 180.21686 541.56563 515.02367 -0.21328 5.18890 2.33159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70579 0.19898 -1.00000 - 10549 2017 8 21 14 12 24 667 4.8750 180.21730 541.61390 515.05995 -0.21339 5.15744 2.32890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70543 0.19898 -1.00000 - 10550 2017 8 21 14 12 29 542 4.8750 180.21774 541.65659 515.09623 -0.21346 5.12077 2.32739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70508 0.19898 -1.00000 - 10551 2017 8 21 14 12 34 417 4.8749 180.21818 541.69519 515.13235 -0.21348 5.07925 2.32328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70472 0.19898 -1.00000 - 10552 2017 8 21 14 12 39 292 4.8749 180.21862 541.73760 515.16852 -0.21345 5.03336 2.31841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70437 0.19898 -1.00000 - 10553 2017 8 21 14 12 44 167 4.8749 180.21907 541.78161 515.20473 -0.21337 4.98377 2.31599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70401 0.19898 -1.00000 - 10554 2017 8 21 14 12 49 42 4.8748 180.21951 541.82566 515.24080 -0.21325 4.93137 2.30954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70366 0.19898 -1.00000 - 10555 2017 8 21 14 12 53 917 4.8748 180.21996 541.87275 515.27699 -0.21308 4.87713 2.30491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70331 0.19898 -1.00000 - 10556 2017 8 21 14 12 58 791 4.8747 180.22040 541.91666 515.31329 -0.21289 4.82227 2.30257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70295 0.19898 -1.00000 - 10557 2017 8 21 14 13 3 666 4.8747 180.22085 541.95584 515.34943 -0.21268 4.76834 2.29546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70260 0.19898 -1.00000 - 10558 2017 8 21 14 13 8 541 4.8747 180.22130 542.00277 515.38573 -0.21245 4.71642 2.28984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70224 0.19898 -1.00000 - 10559 2017 8 21 14 13 13 415 4.8746 180.22175 542.04644 515.42218 -0.21220 4.66661 2.28622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70189 0.19898 -1.00000 - 10560 2017 8 21 14 13 18 290 4.8746 180.22220 542.08853 515.45845 -0.21195 4.61937 2.27898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70153 0.19898 -1.00000 - 10561 2017 8 21 14 13 23 164 4.8745 180.22265 542.13581 515.49483 -0.21168 4.59213 2.27591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70118 0.19898 -1.00000 - 10562 2017 8 21 14 13 28 39 4.8745 180.22310 542.17885 515.53127 -0.21138 4.56666 2.27472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70082 0.19898 -1.00000 - 10563 2017 8 21 14 13 32 913 4.8744 180.22356 542.21832 515.56753 -0.21105 4.54081 2.26800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70047 0.19898 -1.00000 - 10564 2017 8 21 14 13 37 788 4.8744 180.22401 542.26648 515.60391 -0.21069 4.49939 2.26512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70012 0.19898 -1.00000 - 10565 2017 8 21 14 13 42 662 4.8744 180.22447 542.30979 515.64033 -0.21030 4.47137 2.26299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69976 0.19898 -1.00000 - 10566 2017 8 21 14 13 47 536 4.8743 180.22492 542.35282 515.67662 -0.20988 4.45400 2.25803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69941 0.19897 -1.00000 - 10567 2017 8 21 14 13 52 411 4.8743 180.22538 542.39885 515.71310 -0.20945 4.43950 2.25564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69905 0.19897 -1.00000 - 10568 2017 8 21 14 13 57 285 4.8742 180.22584 542.43756 515.74952 -0.20901 4.42720 2.25517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69870 0.19897 -1.00000 - 10569 2017 8 21 14 14 2 159 4.8742 180.22630 542.47941 515.78583 -0.20857 4.41666 2.25240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69834 0.19897 -1.00000 - 10570 2017 8 21 14 14 7 33 4.8742 180.22677 542.52666 515.82223 -0.20815 4.40784 2.25137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69799 0.19897 -1.00000 - 10571 2017 8 21 14 14 11 907 4.8741 180.22723 542.56937 515.85863 -0.20776 4.39905 2.25087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69763 0.19897 -1.00000 - 10572 2017 8 21 14 14 16 781 4.8741 180.22769 542.60855 515.89506 -0.20739 4.39052 2.24964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69728 0.19897 -1.00000 - 10573 2017 8 21 14 14 21 655 4.8740 180.22816 542.65357 515.93156 -0.20705 4.38417 2.24968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69693 0.19897 -1.00000 - 10574 2017 8 21 14 14 26 529 4.8740 180.22862 542.70026 515.96798 -0.20673 4.37936 2.24993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69657 0.19897 -1.00000 - 10575 2017 8 21 14 14 31 403 4.8740 180.22909 542.74804 516.00448 -0.20642 4.37580 2.24928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69622 0.19897 -1.00000 - 10576 2017 8 21 14 14 36 277 4.8739 180.22956 542.78732 516.04105 -0.20612 4.37395 2.25057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69586 0.19897 -1.00000 - 10577 2017 8 21 14 14 41 151 4.8739 180.23002 542.82633 516.07754 -0.20582 4.37230 2.25112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69551 0.19897 -1.00000 - 10578 2017 8 21 14 14 46 25 4.8738 180.23049 542.87014 516.11407 -0.20552 4.37123 2.25266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69515 0.19897 -1.00000 - 10579 2017 8 21 14 14 50 899 4.8738 180.23095 542.91337 516.15060 -0.20521 4.37310 2.25603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69480 0.19897 -1.00000 - 10580 2017 8 21 14 14 55 773 4.8737 180.23142 542.95742 516.18707 -0.20490 4.37743 2.25786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69444 0.19897 -1.00000 - 10581 2017 8 21 14 15 0 646 4.8737 180.23189 543.00465 516.22356 -0.20460 4.38386 2.26023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69409 0.19897 -1.00000 - 10582 2017 8 21 14 15 5 520 4.8737 180.23236 543.04738 516.26012 -0.20430 4.39244 2.26632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69374 0.19897 -1.00000 - 10583 2017 8 21 14 15 10 394 4.8736 180.23282 543.08729 516.29652 -0.20402 4.40479 2.26892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69338 0.19897 -1.00000 - 10584 2017 8 21 14 15 15 267 4.8736 180.23329 543.13086 516.33289 -0.20376 4.41911 2.27312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69303 0.19897 -1.00000 - 10585 2017 8 21 14 15 20 141 4.8735 180.23376 543.17381 516.36931 -0.20352 4.43521 2.27989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69267 0.19897 -1.00000 - 10586 2017 8 21 14 15 25 14 4.8735 180.23424 543.21726 516.40564 -0.20328 4.45086 2.28334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69232 0.19897 -1.00000 - 10587 2017 8 21 14 15 29 888 4.8735 180.23471 543.26391 516.44192 -0.20306 4.46660 2.28854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69196 0.19897 -1.00000 - 10588 2017 8 21 14 15 34 761 4.8734 180.23518 543.30615 516.47822 -0.20283 4.48532 2.29607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69161 0.19897 -1.00000 - 10589 2017 8 21 14 15 39 635 4.8734 180.23566 543.34547 516.51447 -0.20258 4.50623 2.30030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69125 0.19897 -1.00000 - 10590 2017 8 21 14 15 44 508 4.8733 180.23613 543.38706 516.55085 -0.20234 4.52900 2.30550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69090 0.19897 -1.00000 - 10591 2017 8 21 14 15 49 381 4.8733 180.23661 543.42892 516.58737 -0.20213 4.55368 2.31051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69055 0.19897 -1.00000 - 10592 2017 8 21 14 15 54 254 4.8733 180.23709 543.47513 516.62399 -0.20200 4.57932 2.31534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69019 0.19897 -1.00000 - 10593 2017 8 21 14 15 59 128 4.8732 180.23757 543.52232 516.66069 -0.20194 4.60819 2.32151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68984 0.19897 -1.00000 - 10594 2017 8 21 14 16 4 1 4.8732 180.23805 543.56083 516.69739 -0.20192 4.63854 2.32673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68948 0.19896 -1.00000 - 10595 2017 8 21 14 16 8 874 4.8731 180.23854 543.60319 516.73426 -0.20190 4.66882 2.33296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68913 0.19896 -1.00000 - 10596 2017 8 21 14 16 13 747 4.8731 180.23902 543.64451 516.77127 -0.20186 4.69961 2.33929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68877 0.19896 -1.00000 - 10597 2017 8 21 14 16 18 620 4.8731 180.23951 543.69273 516.80848 -0.20178 4.73316 2.34340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68842 0.19896 -1.00000 - 10598 2017 8 21 14 16 23 493 4.8730 180.24000 543.74003 516.84586 -0.20167 4.76895 2.34866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68806 0.19896 -1.00000 - 10599 2017 8 21 14 16 28 366 4.8730 180.24049 543.78276 516.88347 -0.20158 4.80637 2.35420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68771 0.19896 -1.00000 - 10600 2017 8 21 14 16 33 239 4.8729 180.24098 543.82707 516.92118 -0.20152 4.84532 2.35983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68736 0.19896 -1.00000 - 10601 2017 8 21 14 16 38 112 4.8729 180.24148 543.87035 516.95898 -0.20154 4.88427 2.36588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68700 0.19896 -1.00000 - 10602 2017 8 21 14 16 42 985 4.8729 180.24197 543.91662 516.99691 -0.20162 4.92373 2.37198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68665 0.19896 -1.00000 - 10603 2017 8 21 14 16 47 858 4.8728 180.24246 543.96640 517.03502 -0.20175 4.96551 2.37746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68629 0.19896 -1.00000 - 10604 2017 8 21 14 16 52 730 4.8728 180.24295 544.01099 517.07314 -0.20191 5.01008 2.38282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68594 0.19896 -1.00000 - 10605 2017 8 21 14 16 57 603 4.8727 180.24345 544.05928 517.11134 -0.20206 5.05584 2.38729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68558 0.19896 -1.00000 - 10606 2017 8 21 14 17 2 476 4.8727 180.24394 544.09983 517.14971 -0.20219 5.10248 2.39271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68523 0.19896 -1.00000 - 10607 2017 8 21 14 17 7 348 4.8726 180.24443 544.14392 517.18823 -0.20231 5.14711 2.39910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68488 0.19896 -1.00000 - 10608 2017 8 21 14 17 12 221 4.8726 180.24492 544.19284 517.22670 -0.20243 5.17835 2.40443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68452 0.19896 -1.00000 - 10609 2017 8 21 14 17 17 94 4.8726 180.24541 544.24296 517.26526 -0.20257 5.21322 2.40808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68417 0.19896 -1.00000 - 10610 2017 8 21 14 17 21 966 4.8725 180.24591 544.29333 517.30398 -0.20273 5.26353 2.41432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68381 0.19896 -1.00000 - 10611 2017 8 21 14 17 26 839 4.8725 180.24640 544.33606 517.34260 -0.20293 5.31382 2.42009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68346 0.19896 -1.00000 - 10612 2017 8 21 14 17 31 711 4.8725 180.24690 544.38114 517.38121 -0.20314 5.36217 2.42388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68310 0.19896 -1.00000 - 10613 2017 8 21 14 17 36 583 4.8724 180.24740 544.42646 517.41990 -0.20334 5.40653 2.43088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68275 0.19896 -1.00000 - 10614 2017 8 21 14 17 41 456 4.8724 180.24789 544.47367 517.45849 -0.20351 5.44686 2.43568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68240 0.19896 -1.00000 - 10615 2017 8 21 14 17 46 328 4.8723 180.24839 544.52377 517.49697 -0.20363 5.49612 2.43877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68204 0.19896 -1.00000 - 10616 2017 8 21 14 17 51 200 4.8723 180.24890 544.57305 517.53547 -0.20369 5.54267 2.44412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68169 0.19896 -1.00000 - 10617 2017 8 21 14 17 56 73 4.8723 180.24940 544.61829 517.57386 -0.20369 5.58481 2.45017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68133 0.19896 -1.00000 - 10618 2017 8 21 14 18 0 945 4.8722 180.24990 544.66092 517.61216 -0.20365 5.62190 2.45316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68098 0.19896 -1.00000 - 10619 2017 8 21 14 18 5 817 4.8722 180.25041 544.70258 517.65052 -0.20358 5.65348 2.45671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68062 0.19896 -1.00000 - 10620 2017 8 21 14 18 10 689 4.8721 180.25091 544.74891 517.68879 -0.20350 5.67919 2.46152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68027 0.19896 -1.00000 - 10621 2017 8 21 14 18 15 561 4.8721 180.25142 544.79956 517.72697 -0.20341 5.69873 2.46424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67992 0.19896 -1.00000 - 10622 2017 8 21 14 18 20 433 4.8721 180.25192 544.84962 517.76506 -0.20332 5.71200 2.46627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67956 0.19895 -1.00000 - 10623 2017 8 21 14 18 25 305 4.8720 180.25243 544.89426 517.80304 -0.20321 5.71906 2.47093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67921 0.19895 -1.00000 - 10624 2017 8 21 14 18 30 177 4.8720 180.25294 544.93442 517.84087 -0.20310 5.72029 2.47287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67885 0.19895 -1.00000 - 10625 2017 8 21 14 18 35 49 4.8719 180.25345 544.97880 517.87864 -0.20296 5.71594 2.47357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67850 0.19895 -1.00000 - 10626 2017 8 21 14 18 39 921 4.8719 180.25396 545.02398 517.91633 -0.20281 5.70543 2.47699 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67814 0.19895 -1.00000 - 10627 2017 8 21 14 18 44 793 4.8719 180.25447 545.07055 517.95377 -0.20263 5.68782 2.47727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67779 0.19895 -1.00000 - 10628 2017 8 21 14 18 49 665 4.8718 180.25498 545.11945 517.99104 -0.20244 5.66404 2.47778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67743 0.19895 -1.00000 - 10629 2017 8 21 14 18 54 537 4.8718 180.25549 545.16301 518.02825 -0.20225 5.63594 2.48009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67708 0.19895 -1.00000 - 10630 2017 8 21 14 18 59 408 4.8717 180.25600 545.20160 518.06526 -0.20205 5.60409 2.47953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67673 0.19895 -1.00000 - 10631 2017 8 21 14 19 4 280 4.8717 180.25651 545.24608 518.10227 -0.20187 5.56892 2.47749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67637 0.19895 -1.00000 - 10632 2017 8 21 14 19 9 152 4.8717 180.25702 545.29001 518.13924 -0.20168 5.53046 2.47883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67602 0.19895 -1.00000 - 10633 2017 8 21 14 19 14 23 4.8716 180.25752 545.33232 518.17604 -0.20150 5.48894 2.47579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67566 0.19895 -1.00000 - 10634 2017 8 21 14 19 18 895 4.8716 180.25803 545.37946 518.21299 -0.20131 5.44482 2.47435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67531 0.19895 -1.00000 - 10635 2017 8 21 14 19 23 767 4.8716 180.25853 545.42339 518.25003 -0.20110 5.39876 2.47532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67496 0.19895 -1.00000 - 10636 2017 8 21 14 19 28 638 4.8715 180.25903 545.46257 518.28685 -0.20085 5.35162 2.47119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67460 0.19895 -1.00000 - 10637 2017 8 21 14 19 33 510 4.8715 180.25953 545.51043 518.32385 -0.20056 5.30415 2.46800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67425 0.19895 -1.00000 - 10638 2017 8 21 14 19 38 381 4.8714 180.26003 545.55402 518.36098 -0.20022 5.25694 2.46770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67389 0.19895 -1.00000 - 10639 2017 8 21 14 19 43 252 4.8714 180.26052 545.59450 518.39789 -0.19986 5.21042 2.46292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67354 0.19895 -1.00000 - 10640 2017 8 21 14 19 48 124 4.8714 180.26100 545.64181 518.43495 -0.19948 5.16486 2.46067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67318 0.19895 -1.00000 - 10641 2017 8 21 14 19 52 995 4.8713 180.26148 545.68310 518.47215 -0.19912 5.12052 2.46069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67283 0.19895 -1.00000 - 10642 2017 8 21 14 19 57 866 4.8713 180.26196 545.72494 518.50924 -0.19880 5.07757 2.45590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67248 0.19895 -1.00000 - 10643 2017 8 21 14 20 2 738 4.8713 180.26243 545.77258 518.54644 -0.19853 5.04049 2.45437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67212 0.19895 -1.00000 - 10644 2017 8 21 14 20 7 609 4.8712 180.26289 545.81572 518.58365 -0.19833 5.00978 2.45405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67177 0.19895 -1.00000 - 10645 2017 8 21 14 20 12 480 4.8712 180.26336 545.85543 518.62078 -0.19819 4.98041 2.45053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67141 0.19895 -1.00000 - 10646 2017 8 21 14 20 17 351 4.8711 180.26382 545.89919 518.65800 -0.19808 4.95046 2.44807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67106 0.19895 -1.00000 - 10647 2017 8 21 14 20 22 222 4.8711 180.26427 545.94033 518.69527 -0.19797 4.92056 2.44741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67070 0.19895 -1.00000 - 10648 2017 8 21 14 20 27 93 4.8711 180.26472 545.98766 518.73261 -0.19784 4.89226 2.44408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67035 0.19895 -1.00000 - 10649 2017 8 21 14 20 31 964 4.8710 180.26516 546.03565 518.77002 -0.19767 4.86534 2.44144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67000 0.19895 -1.00000 - 10650 2017 8 21 14 20 36 835 4.8710 180.26559 546.07722 518.80755 -0.19746 4.84053 2.44044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66964 0.19894 -1.00000 - 10651 2017 8 21 14 20 41 706 4.8710 180.26602 546.11719 518.84517 -0.19722 4.81627 2.43923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66929 0.19894 -1.00000 - 10652 2017 8 21 14 20 46 577 4.8709 180.26645 546.16228 518.88289 -0.19698 4.79297 2.43713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66893 0.19894 -1.00000 - 10653 2017 8 21 14 20 51 448 4.8709 180.26687 546.20700 518.92064 -0.19677 4.77711 2.43873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66858 0.19894 -1.00000 - 10654 2017 8 21 14 20 56 319 4.8709 180.26729 546.25246 518.95829 -0.19658 4.76521 2.43755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66822 0.19894 -1.00000 - 10655 2017 8 21 14 21 1 190 4.8708 180.26770 546.30139 518.99598 -0.19642 4.75458 2.43685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66787 0.19894 -1.00000 - 10656 2017 8 21 14 21 6 61 4.8708 180.26811 546.34572 519.03377 -0.19629 4.74836 2.43911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66752 0.19894 -1.00000 - 10657 2017 8 21 14 21 10 931 4.8707 180.26851 546.38602 519.07149 -0.19615 4.74587 2.43918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66716 0.19894 -1.00000 - 10658 2017 8 21 14 21 15 802 4.8707 180.26891 546.43143 519.10932 -0.19601 4.74677 2.43865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66681 0.19894 -1.00000 - 10659 2017 8 21 14 21 20 673 4.8707 180.26930 546.47535 519.14734 -0.19585 4.75153 2.44193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66645 0.19894 -1.00000 - 10660 2017 8 21 14 21 25 543 4.8706 180.26969 546.52397 519.18523 -0.19569 4.75776 2.44067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66610 0.19894 -1.00000 - 10661 2017 8 21 14 21 30 414 4.8706 180.27008 546.57218 519.22326 -0.19553 4.76546 2.44047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66574 0.19894 -1.00000 - 10662 2017 8 21 14 21 35 285 4.8706 180.27046 546.61684 519.26138 -0.19541 4.77731 2.44428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66539 0.19894 -1.00000 - 10663 2017 8 21 14 21 40 155 4.8705 180.27083 546.65763 519.29945 -0.19535 4.79205 2.44367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66504 0.19894 -1.00000 - 10664 2017 8 21 14 21 45 26 4.8705 180.27121 546.70227 519.33775 -0.19536 4.80955 2.44396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66468 0.19894 -1.00000 - 10665 2017 8 21 14 21 49 896 4.8705 180.27157 546.74789 519.37633 -0.19541 4.83033 2.44835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66433 0.19894 -1.00000 - 10666 2017 8 21 14 21 54 767 4.8704 180.27194 546.79600 519.41476 -0.19551 4.85169 2.44711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66397 0.19894 -1.00000 - 10667 2017 8 21 14 21 59 637 4.8704 180.27230 546.84720 519.45337 -0.19560 4.87320 2.44780 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66362 0.19894 -1.00000 - 10668 2017 8 21 14 22 4 507 4.8704 180.27266 546.89317 519.49212 -0.19567 4.87403 2.45375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66327 0.19894 -1.00000 - 10669 2017 8 21 14 22 9 378 4.8703 180.27301 546.93439 519.53074 -0.19569 4.88199 2.45296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66291 0.19894 -1.00000 - 10670 2017 8 21 14 22 14 248 4.8703 180.27336 546.98010 519.56951 -0.19568 4.91637 2.45448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66256 0.19894 -1.00000 - 10671 2017 8 21 14 22 19 118 4.8703 180.27371 547.02636 519.60849 -0.19566 4.94804 2.45956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66220 0.19894 -1.00000 - 10672 2017 8 21 14 22 23 988 4.8702 180.27405 547.07550 519.64728 -0.19563 4.97769 2.45916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66185 0.19894 -1.00000 - 10673 2017 8 21 14 22 28 859 4.8702 180.27439 547.12718 519.68630 -0.19561 5.00357 2.46189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66149 0.19894 -1.00000 - 10674 2017 8 21 14 22 33 729 4.8701 180.27474 547.17388 519.72546 -0.19561 5.02638 2.46785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66114 0.19894 -1.00000 - 10675 2017 8 21 14 22 38 599 4.8701 180.27508 547.21512 519.76448 -0.19564 5.06791 2.46818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66079 0.19894 -1.00000 - 10676 2017 8 21 14 22 43 469 4.8701 180.27542 547.26169 519.80365 -0.19567 5.11769 2.47155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66043 0.19894 -1.00000 - 10677 2017 8 21 14 22 48 339 4.8700 180.27576 547.30841 519.84286 -0.19570 5.16649 2.47725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66008 0.19893 -1.00000 - 10678 2017 8 21 14 22 53 209 4.8700 180.27610 547.35767 519.88190 -0.19570 5.20114 2.47806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65972 0.19893 -1.00000 - 10679 2017 8 21 14 22 58 79 4.8700 180.27643 547.40939 519.92110 -0.19567 5.23774 2.48113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65937 0.19893 -1.00000 - 10680 2017 8 21 14 23 2 949 4.8699 180.27676 547.45544 519.96030 -0.19562 5.28830 2.48626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65902 0.19893 -1.00000 - 10681 2017 8 21 14 23 7 819 4.8699 180.27710 547.49700 519.99947 -0.19555 5.33677 2.48813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65866 0.19893 -1.00000 - 10682 2017 8 21 14 23 12 689 4.8698 180.27744 547.54216 520.03876 -0.19548 5.38207 2.49161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65831 0.19893 -1.00000 - 10683 2017 8 21 14 23 17 558 4.8698 180.27777 547.58901 520.07802 -0.19544 5.42336 2.49566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65795 0.19893 -1.00000 - 10684 2017 8 21 14 23 22 428 4.8698 180.27809 547.63888 520.11731 -0.19541 5.46707 2.49934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65760 0.19893 -1.00000 - 10685 2017 8 21 14 23 27 298 4.8697 180.27843 547.68639 520.15650 -0.19540 5.51685 2.50287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65724 0.19893 -1.00000 - 10686 2017 8 21 14 23 32 168 4.8697 180.27876 547.73304 520.19552 -0.19538 5.56150 2.50801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65689 0.19893 -1.00000 - 10687 2017 8 21 14 23 37 37 4.8697 180.27908 547.77788 520.23445 -0.19532 5.60024 2.51254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65654 0.19893 -1.00000 - 10688 2017 8 21 14 23 41 907 4.8696 180.27941 547.82438 520.27341 -0.19520 5.63259 2.51550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65618 0.19893 -1.00000 - 10689 2017 8 21 14 23 46 776 4.8696 180.27975 547.87075 520.31229 -0.19502 5.65828 2.52054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65583 0.19893 -1.00000 - 10690 2017 8 21 14 23 51 646 4.8695 180.28008 547.91689 520.35094 -0.19478 5.67720 2.52392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65547 0.19893 -1.00000 - 10691 2017 8 21 14 23 56 515 4.8695 180.28041 547.96276 520.38937 -0.19450 5.68943 2.52663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65512 0.19893 -1.00000 - 10692 2017 8 21 14 24 1 385 4.8695 180.28074 548.00842 520.42772 -0.19422 5.69510 2.53003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65477 0.19893 -1.00000 - 10693 2017 8 21 14 24 6 254 4.8694 180.28108 548.05381 520.46588 -0.19396 5.69439 2.53221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65441 0.19893 -1.00000 - 10694 2017 8 21 14 24 11 124 4.8694 180.28141 548.09894 520.50403 -0.19373 5.68743 2.53301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65406 0.19893 -1.00000 - 10695 2017 8 21 14 24 15 993 4.8693 180.28175 548.14349 520.54217 -0.19353 5.67437 2.53509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65370 0.19893 -1.00000 - 10696 2017 8 21 14 24 20 862 4.8693 180.28209 548.19145 520.58018 -0.19335 5.65536 2.53362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65335 0.19893 -1.00000 - 10697 2017 8 21 14 24 25 732 4.8693 180.28243 548.23561 520.61824 -0.19314 5.63062 2.53307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65300 0.19893 -1.00000 - 10698 2017 8 21 14 24 30 601 4.8692 180.28277 548.27729 520.65632 -0.19289 5.60041 2.53096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65264 0.19893 -1.00000 - 10699 2017 8 21 14 24 35 470 4.8692 180.28312 548.32704 520.69443 -0.19255 5.56508 2.52818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65229 0.19893 -1.00000 - 10700 2017 8 21 14 24 40 339 4.8691 180.28347 548.37129 520.73255 -0.19214 5.52515 2.52579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65193 0.19893 -1.00000 - 10701 2017 8 21 14 24 45 208 4.8691 180.28381 548.42117 520.77076 -0.19166 5.48133 2.52161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65158 0.19893 -1.00000 - 10702 2017 8 21 14 24 50 77 4.8691 180.28416 548.46466 520.80897 -0.19115 5.43443 2.51864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65123 0.19893 -1.00000 - 10703 2017 8 21 14 24 54 946 4.8690 180.28452 548.50506 520.84706 -0.19066 5.38538 2.51463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65087 0.19893 -1.00000 - 10704 2017 8 21 14 24 59 815 4.8690 180.28487 548.55419 520.88533 -0.19021 5.33579 2.50974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65052 0.19893 -1.00000 - 10705 2017 8 21 14 25 4 684 4.8690 180.28523 548.59958 520.92373 -0.18983 5.28661 2.50715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65016 0.19892 -1.00000 - 10706 2017 8 21 14 25 9 553 4.8689 180.28559 548.64197 520.96191 -0.18954 5.23762 2.50195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64981 0.19892 -1.00000 - 10707 2017 8 21 14 25 14 422 4.8689 180.28595 548.69076 521.00024 -0.18932 5.18644 2.49660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64945 0.19892 -1.00000 - 10708 2017 8 21 14 25 19 291 4.8688 180.28632 548.73634 521.03870 -0.18916 5.12638 2.49671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64910 0.19892 -1.00000 - 10709 2017 8 21 14 25 24 160 4.8688 180.28669 548.77710 521.07698 -0.18903 5.07920 2.49059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64875 0.19892 -1.00000 - 10710 2017 8 21 14 25 29 29 4.8688 180.28706 548.82680 521.11543 -0.18892 5.05149 2.48570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64839 0.19892 -1.00000 - 10711 2017 8 21 14 25 33 897 4.8687 180.28743 548.87169 521.15395 -0.18882 5.02610 2.48659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64804 0.19892 -1.00000 - 10712 2017 8 21 14 25 38 766 4.8687 180.28781 548.91336 521.19232 -0.18873 4.98729 2.48111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64768 0.19892 -1.00000 - 10713 2017 8 21 14 25 43 635 4.8687 180.28819 548.96246 521.23083 -0.18867 4.96879 2.47714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64733 0.19892 -1.00000 - 10714 2017 8 21 14 25 48 503 4.8686 180.28857 549.00788 521.26945 -0.18864 4.95295 2.47872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64698 0.19892 -1.00000 - 10715 2017 8 21 14 25 53 372 4.8686 180.28895 549.04884 521.30787 -0.18865 4.93942 2.47529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64662 0.19892 -1.00000 - 10716 2017 8 21 14 25 58 240 4.8685 180.28933 549.09853 521.34651 -0.18870 4.92774 2.47246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64627 0.19892 -1.00000 - 10717 2017 8 21 14 26 3 109 4.8685 180.28972 549.14350 521.38533 -0.18877 4.91776 2.47499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64591 0.19892 -1.00000 - 10718 2017 8 21 14 26 7 977 4.8685 180.29011 549.18561 521.42400 -0.18886 4.90921 2.47234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64556 0.19892 -1.00000 - 10719 2017 8 21 14 26 12 846 4.8684 180.29050 549.23489 521.46282 -0.18894 4.90270 2.47236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64521 0.19892 -1.00000 - 10720 2017 8 21 14 26 17 714 4.8684 180.29090 549.27997 521.50184 -0.18900 4.89858 2.47574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64485 0.19892 -1.00000 - 10721 2017 8 21 14 26 22 582 4.8683 180.29129 549.32108 521.54077 -0.18903 4.89642 2.47511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64450 0.19892 -1.00000 - 10722 2017 8 21 14 26 27 451 4.8683 180.29169 549.36470 521.57975 -0.18903 4.89635 2.47610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64414 0.19892 -1.00000 - 10723 2017 8 21 14 26 32 319 4.8683 180.29209 549.41050 521.61887 -0.18900 4.89840 2.47920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64379 0.19892 -1.00000 - 10724 2017 8 21 14 26 37 187 4.8682 180.29249 549.45637 521.65795 -0.18895 4.90254 2.48112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64344 0.19892 -1.00000 - 10725 2017 8 21 14 26 42 55 4.8682 180.29289 549.50211 521.69708 -0.18889 4.91049 2.48519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64308 0.19892 -1.00000 - 10726 2017 8 21 14 26 46 924 4.8681 180.29330 549.54806 521.73626 -0.18882 4.92253 2.48962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64273 0.19892 -1.00000 - 10727 2017 8 21 14 26 51 792 4.8681 180.29370 549.59415 521.77545 -0.18875 4.93671 2.49328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64237 0.19892 -1.00000 - 10728 2017 8 21 14 26 56 660 4.8681 180.29411 549.64024 521.81460 -0.18867 4.95300 2.49879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64202 0.19892 -1.00000 - 10729 2017 8 21 14 27 1 528 4.8680 180.29451 549.68628 521.85369 -0.18858 4.97132 2.50462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64167 0.19892 -1.00000 - 10730 2017 8 21 14 27 6 396 4.8680 180.29493 549.73244 521.89277 -0.18847 4.99163 2.50994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64131 0.19892 -1.00000 - 10731 2017 8 21 14 27 11 264 4.8679 180.29534 549.77863 521.93185 -0.18834 5.01379 2.51674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64096 0.19892 -1.00000 - 10732 2017 8 21 14 27 16 132 4.8679 180.29575 549.82513 521.97092 -0.18819 5.03767 2.52188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64060 0.19892 -1.00000 - 10733 2017 8 21 14 27 20 999 4.8679 180.29616 549.87186 522.00997 -0.18800 5.06316 2.52717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64025 0.19891 -1.00000 - 10734 2017 8 21 14 27 25 867 4.8678 180.29658 549.91593 522.04907 -0.18780 5.09009 2.53319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63990 0.19891 -1.00000 - 10735 2017 8 21 14 27 30 735 4.8678 180.29700 549.96156 522.08825 -0.18757 5.11830 2.53747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63954 0.19891 -1.00000 - 10736 2017 8 21 14 27 35 603 4.8678 180.29742 550.00840 522.12750 -0.18733 5.14763 2.54375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63919 0.19891 -1.00000 - 10737 2017 8 21 14 27 40 471 4.8677 180.29784 550.05761 522.16671 -0.18708 5.17793 2.54828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63883 0.19891 -1.00000 - 10738 2017 8 21 14 27 45 338 4.8677 180.29826 550.10880 522.20601 -0.18681 5.20906 2.55214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63848 0.19891 -1.00000 - 10739 2017 8 21 14 27 50 206 4.8676 180.29869 550.15383 522.24532 -0.18652 5.24091 2.55840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63813 0.19891 -1.00000 - 10740 2017 8 21 14 27 55 73 4.8676 180.29912 550.19607 522.28468 -0.18621 5.27333 2.56275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63777 0.19891 -1.00000 - 10741 2017 8 21 14 27 59 941 4.8676 180.29955 550.24274 522.32405 -0.18588 5.30628 2.56758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63742 0.19891 -1.00000 - 10742 2017 8 21 14 28 4 809 4.8675 180.29998 550.28937 522.36347 -0.18553 5.34008 2.57348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63706 0.19891 -1.00000 - 10743 2017 8 21 14 28 9 676 4.8675 180.30042 550.34052 522.40291 -0.18517 5.37469 2.57766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63671 0.19891 -1.00000 - 10744 2017 8 21 14 28 14 543 4.8674 180.30086 550.39215 522.44236 -0.18482 5.40897 2.58100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63636 0.19891 -1.00000 - 10745 2017 8 21 14 28 19 411 4.8674 180.30130 550.43870 522.48191 -0.18449 5.44078 2.58539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63600 0.19891 -1.00000 - 10746 2017 8 21 14 28 24 278 4.8674 180.30174 550.48115 522.52145 -0.18420 5.47071 2.58797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63565 0.19891 -1.00000 - 10747 2017 8 21 14 28 29 146 4.8673 180.30218 550.52557 522.56111 -0.18396 5.49949 2.58947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63529 0.19891 -1.00000 - 10748 2017 8 21 14 28 34 13 4.8673 180.30263 550.57439 522.60076 -0.18375 5.52710 2.59400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63494 0.19891 -1.00000 - 10749 2017 8 21 14 28 38 880 4.8673 180.30308 550.62718 522.64031 -0.18356 5.55457 2.59448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63459 0.19891 -1.00000 - 10750 2017 8 21 14 28 43 747 4.8672 180.30353 550.67593 522.67992 -0.18339 5.58089 2.59641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63423 0.19891 -1.00000 - 10751 2017 8 21 14 28 48 615 4.8672 180.30399 550.72299 522.71945 -0.18322 5.60395 2.59770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63388 0.19891 -1.00000 - 10752 2017 8 21 14 28 53 482 4.8671 180.30444 550.76622 522.75909 -0.18305 5.62440 2.59712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63352 0.19891 -1.00000 - 10753 2017 8 21 14 28 58 349 4.8671 180.30490 550.81368 522.79881 -0.18288 5.64276 2.59960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63317 0.19891 -1.00000 - 10754 2017 8 21 14 29 3 216 4.8671 180.30536 550.86134 522.83844 -0.18271 5.65878 2.59907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63282 0.19891 -1.00000 - 10755 2017 8 21 14 29 8 83 4.8670 180.30582 550.91352 522.87791 -0.18258 5.67318 2.59802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63246 0.19891 -1.00000 - 10756 2017 8 21 14 29 12 950 4.8670 180.30628 550.96159 522.91739 -0.18249 5.68401 2.59882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63211 0.19891 -1.00000 - 10757 2017 8 21 14 29 17 817 4.8669 180.30674 551.00679 522.95684 -0.18247 5.69795 2.59755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63175 0.19891 -1.00000 - 10758 2017 8 21 14 29 22 684 4.8669 180.30721 551.04949 522.99637 -0.18250 5.70027 2.59553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63140 0.19891 -1.00000 - 10759 2017 8 21 14 29 27 551 4.8669 180.30768 551.09667 523.03592 -0.18256 5.70930 2.59487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63105 0.19891 -1.00000 - 10760 2017 8 21 14 29 32 417 4.8668 180.30815 551.14838 523.07532 -0.18264 5.71459 2.59186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63069 0.19891 -1.00000 - 10761 2017 8 21 14 29 37 284 4.8668 180.30862 551.19463 523.11467 -0.18270 5.71654 2.59005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63034 0.19890 -1.00000 - 10762 2017 8 21 14 29 42 151 4.8667 180.30909 551.24456 523.15394 -0.18271 5.71544 2.58843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62998 0.19890 -1.00000 - 10763 2017 8 21 14 29 47 18 4.8667 180.30956 551.28610 523.19325 -0.18268 5.71146 2.58494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62963 0.19890 -1.00000 - 10764 2017 8 21 14 29 51 884 4.8667 180.31004 551.33077 523.23251 -0.18259 5.70315 2.58319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62928 0.19890 -1.00000 - 10765 2017 8 21 14 29 56 751 4.8666 180.31051 551.37751 523.27179 -0.18247 5.68876 2.58007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62892 0.19890 -1.00000 - 10766 2017 8 21 14 30 1 617 4.8666 180.31099 551.42858 523.31105 -0.18232 5.66864 2.57501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62857 0.19890 -1.00000 - 10767 2017 8 21 14 30 6 484 4.8666 180.31147 551.47565 523.35041 -0.18217 5.63401 2.57332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62822 0.19890 -1.00000 - 10768 2017 8 21 14 30 11 351 4.8665 180.31195 551.52048 523.38970 -0.18202 5.59675 2.57000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62786 0.19890 -1.00000 - 10769 2017 8 21 14 30 16 217 4.8665 180.31243 551.56358 523.42899 -0.18188 5.56802 2.56369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62751 0.19890 -1.00000 - 10770 2017 8 21 14 30 21 83 4.8664 180.31292 551.60941 523.46842 -0.18174 5.53624 2.56215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62715 0.19890 -1.00000 - 10771 2017 8 21 14 30 25 950 4.8664 180.31341 551.65446 523.50774 -0.18157 5.49967 2.55789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62680 0.19890 -1.00000 - 10772 2017 8 21 14 30 30 816 4.8664 180.31389 551.70541 523.54709 -0.18137 5.45869 2.55205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62645 0.19890 -1.00000 - 10773 2017 8 21 14 30 35 683 4.8663 180.31438 551.75455 523.58661 -0.18111 5.41473 2.55014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62609 0.19890 -1.00000 - 10774 2017 8 21 14 30 40 549 4.8663 180.31488 551.79564 523.62607 -0.18080 5.36844 2.54591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62574 0.19890 -1.00000 - 10775 2017 8 21 14 30 45 415 4.8662 180.31537 551.83725 523.66562 -0.18044 5.32044 2.54184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62538 0.19890 -1.00000 - 10776 2017 8 21 14 30 50 281 4.8662 180.31587 551.88349 523.70540 -0.18006 5.27116 2.53992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62503 0.19890 -1.00000 - 10777 2017 8 21 14 30 55 147 4.8662 180.31637 551.93251 523.74505 -0.17967 5.22106 2.53557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62468 0.19890 -1.00000 - 10778 2017 8 21 14 31 0 14 4.8661 180.31687 551.98130 523.78484 -0.17930 5.17059 2.53308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62432 0.19890 -1.00000 - 10779 2017 8 21 14 31 4 880 4.8661 180.31737 552.03229 523.82472 -0.17895 5.12015 2.53224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62397 0.19890 -1.00000 - 10780 2017 8 21 14 31 9 746 4.8661 180.31787 552.07603 523.86461 -0.17864 5.07025 2.52805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62361 0.19890 -1.00000 - 10781 2017 8 21 14 31 14 612 4.8660 180.31838 552.11776 523.90456 -0.17837 5.02073 2.52555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62326 0.19890 -1.00000 - 10782 2017 8 21 14 31 19 478 4.8660 180.31889 552.16509 523.94471 -0.17811 4.96033 2.52407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62291 0.19890 -1.00000 - 10783 2017 8 21 14 31 24 344 4.8659 180.31940 552.21338 523.98483 -0.17787 4.90479 2.52092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62255 0.19890 -1.00000 - 10784 2017 8 21 14 31 29 210 4.8659 180.31992 552.26480 524.02503 -0.17764 4.88133 2.51847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62220 0.19890 -1.00000 - 10785 2017 8 21 14 31 34 75 4.8659 180.32043 552.31454 524.06539 -0.17741 4.84183 2.51870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62185 0.19890 -1.00000 - 10786 2017 8 21 14 31 38 941 4.8658 180.32095 552.35731 524.10577 -0.17718 4.83063 2.51640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62149 0.19890 -1.00000 - 10787 2017 8 21 14 31 43 807 4.8658 180.32147 552.40372 524.14634 -0.17697 4.82537 2.51475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62114 0.19890 -1.00000 - 10788 2017 8 21 14 31 48 673 4.8657 180.32198 552.45183 524.18709 -0.17677 4.83901 2.51649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62078 0.19890 -1.00000 - 10789 2017 8 21 14 31 53 538 4.8657 180.32251 552.50185 524.22769 -0.17659 4.85432 2.51537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62043 0.19889 -1.00000 - 10790 2017 8 21 14 31 58 404 4.8657 180.32303 552.55477 524.26834 -0.17645 4.83953 2.51545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62008 0.19889 -1.00000 - 10791 2017 8 21 14 32 3 270 4.8656 180.32355 552.60460 524.30910 -0.17634 4.83556 2.51824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61972 0.19889 -1.00000 - 10792 2017 8 21 14 32 8 135 4.8656 180.32407 552.65062 524.34983 -0.17626 4.86485 2.51911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61937 0.19889 -1.00000 - 10793 2017 8 21 14 32 13 1 4.8655 180.32460 552.69601 524.39069 -0.17622 4.88628 2.51999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61901 0.19889 -1.00000 - 10794 2017 8 21 14 32 17 866 4.8655 180.32513 552.74481 524.43162 -0.17622 4.90856 2.52456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61866 0.19889 -1.00000 - 10795 2017 8 21 14 32 22 732 4.8655 180.32566 552.79370 524.47242 -0.17625 4.90023 2.52589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61831 0.19889 -1.00000 - 10796 2017 8 21 14 32 27 597 4.8654 180.32618 552.84655 524.51319 -0.17631 4.90171 2.52857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61795 0.19889 -1.00000 - 10797 2017 8 21 14 32 32 463 4.8654 180.32671 552.89618 524.55399 -0.17640 4.93503 2.53532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61760 0.19889 -1.00000 - 10798 2017 8 21 14 32 37 328 4.8654 180.32724 552.94004 524.59469 -0.17650 4.96094 2.53937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61725 0.19889 -1.00000 - 10799 2017 8 21 14 32 42 193 4.8653 180.32777 552.98931 524.63551 -0.17660 4.98673 2.54311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61689 0.19889 -1.00000 - 10800 2017 8 21 14 32 47 59 4.8653 180.32830 553.03776 524.67631 -0.17671 5.01277 2.55083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61654 0.19889 -1.00000 - 10801 2017 8 21 14 32 51 924 4.8652 180.32884 553.08707 524.71693 -0.17679 5.03067 2.55472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61618 0.19889 -1.00000 - 10802 2017 8 21 14 32 56 789 4.8652 180.32937 553.13930 524.75762 -0.17685 5.06912 2.56026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61583 0.19889 -1.00000 - 10803 2017 8 21 14 33 1 654 4.8652 180.32991 553.18649 524.79824 -0.17688 5.10471 2.56884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61548 0.19889 -1.00000 - 10804 2017 8 21 14 33 6 519 4.8651 180.33045 553.22865 524.83871 -0.17687 5.13964 2.57517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61512 0.19889 -1.00000 - 10805 2017 8 21 14 33 11 384 4.8651 180.33099 553.28003 524.87929 -0.17683 5.17715 2.58144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61477 0.19889 -1.00000 - 10806 2017 8 21 14 33 16 249 4.8650 180.33153 553.32955 524.91984 -0.17676 5.24124 2.58970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61442 0.19889 -1.00000 - 10807 2017 8 21 14 33 21 114 4.8650 180.33207 553.38114 524.96036 -0.17668 5.30670 2.59821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61406 0.19889 -1.00000 - 10808 2017 8 21 14 33 25 979 4.8650 180.33262 553.42785 525.00083 -0.17659 5.37271 2.60511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61371 0.19889 -1.00000 - 10809 2017 8 21 14 33 30 844 4.8649 180.33316 553.47457 525.04128 -0.17650 5.43866 2.61437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61335 0.19889 -1.00000 - 10810 2017 8 21 14 33 35 709 4.8649 180.33371 553.51775 525.08161 -0.17641 5.50395 2.62436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61300 0.19889 -1.00000 - 10811 2017 8 21 14 33 40 574 4.8649 180.33426 553.56427 525.12184 -0.17629 5.56810 2.63187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61265 0.19889 -1.00000 - 10812 2017 8 21 14 33 45 439 4.8648 180.33481 553.61177 525.16200 -0.17616 5.63072 2.64079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61229 0.19889 -1.00000 - 10813 2017 8 21 14 33 50 304 4.8648 180.33537 553.65898 525.20209 -0.17598 5.69135 2.65021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61194 0.19889 -1.00000 - 10814 2017 8 21 14 33 55 168 4.8647 180.33593 553.70599 525.24218 -0.17577 5.74954 2.66021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61158 0.19889 -1.00000 - 10815 2017 8 21 14 34 0 33 4.8647 180.33649 553.75323 525.28223 -0.17551 5.81135 2.66865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61123 0.19889 -1.00000 - 10816 2017 8 21 14 34 4 898 4.8647 180.33705 553.80002 525.32212 -0.17521 5.87937 2.67873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61088 0.19889 -1.00000 - 10817 2017 8 21 14 34 9 762 4.8646 180.33762 553.84658 525.36192 -0.17489 5.94317 2.68761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61052 0.19888 -1.00000 - 10818 2017 8 21 14 34 14 627 4.8646 180.33818 553.89330 525.40169 -0.17455 6.00167 2.69673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61017 0.19888 -1.00000 - 10819 2017 8 21 14 34 19 492 4.8646 180.33875 553.93998 525.44138 -0.17421 6.05402 2.70626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60982 0.19888 -1.00000 - 10820 2017 8 21 14 34 24 356 4.8645 180.33932 553.98648 525.48091 -0.17387 6.09950 2.71510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60946 0.19888 -1.00000 - 10821 2017 8 21 14 34 29 221 4.8645 180.33989 554.03277 525.52032 -0.17355 6.13776 2.72363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60911 0.19888 -1.00000 - 10822 2017 8 21 14 34 34 85 4.8644 180.34047 554.07901 525.55957 -0.17326 6.16861 2.73185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60875 0.19888 -1.00000 - 10823 2017 8 21 14 34 38 949 4.8644 180.34104 554.12500 525.59866 -0.17298 6.19191 2.73814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60840 0.19888 -1.00000 - 10824 2017 8 21 14 34 43 814 4.8644 180.34162 554.17097 525.63766 -0.17272 6.20756 2.74368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60805 0.19888 -1.00000 - 10825 2017 8 21 14 34 48 678 4.8643 180.34220 554.21585 525.67664 -0.17247 6.21550 2.74878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60769 0.19888 -1.00000 - 10826 2017 8 21 14 34 53 542 4.8643 180.34278 554.25838 525.71560 -0.17220 6.21572 2.75023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60734 0.19888 -1.00000 - 10827 2017 8 21 14 34 58 407 4.8642 180.34336 554.30420 525.75465 -0.17191 6.20829 2.75369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60699 0.19888 -1.00000 - 10828 2017 8 21 14 35 3 271 4.8642 180.34394 554.35320 525.79374 -0.17159 6.19330 2.75274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60663 0.19888 -1.00000 - 10829 2017 8 21 14 35 8 135 4.8642 180.34452 554.40254 525.83298 -0.17123 6.17099 2.75147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60628 0.19888 -1.00000 - 10830 2017 8 21 14 35 12 999 4.8641 180.34510 554.44415 525.87236 -0.17085 6.14184 2.75142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60592 0.19888 -1.00000 - 10831 2017 8 21 14 35 17 863 4.8641 180.34568 554.48618 525.91183 -0.17047 6.10642 2.74889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60557 0.19888 -1.00000 - 10832 2017 8 21 14 35 22 727 4.8640 180.34626 554.53648 525.95166 -0.17010 6.06532 2.74724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60522 0.19888 -1.00000 - 10833 2017 8 21 14 35 27 591 4.8640 180.34684 554.58372 525.99164 -0.16977 6.01952 2.74587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60486 0.19888 -1.00000 - 10834 2017 8 21 14 35 32 455 4.8640 180.34743 554.63304 526.03159 -0.16949 5.97045 2.74068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60451 0.19888 -1.00000 - 10835 2017 8 21 14 35 37 319 4.8639 180.34801 554.68401 526.07179 -0.16927 5.91955 2.73756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60416 0.19888 -1.00000 - 10836 2017 8 21 14 35 42 183 4.8639 180.34860 554.72829 526.11208 -0.16909 5.86825 2.73603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60380 0.19888 -1.00000 - 10837 2017 8 21 14 35 47 47 4.8639 180.34918 554.77075 526.15235 -0.16894 5.81693 2.73025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60345 0.19888 -1.00000 - 10838 2017 8 21 14 35 51 911 4.8638 180.34977 554.82200 526.19283 -0.16878 5.76296 2.72790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60310 0.19888 -1.00000 - 10839 2017 8 21 14 35 56 774 4.8638 180.35035 554.86964 526.23336 -0.16857 5.69854 2.72587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60274 0.19888 -1.00000 - 10840 2017 8 21 14 36 1 638 4.8637 180.35094 554.91975 526.27372 -0.16830 5.64881 2.72021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60239 0.19888 -1.00000 - 10841 2017 8 21 14 36 6 502 4.8637 180.35153 554.97120 526.31430 -0.16795 5.60262 2.71661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60203 0.19888 -1.00000 - 10842 2017 8 21 14 36 11 366 4.8637 180.35212 555.01640 526.35495 -0.16753 5.56806 2.71555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60168 0.19888 -1.00000 - 10843 2017 8 21 14 36 16 229 4.8636 180.35271 555.05889 526.39559 -0.16707 5.52878 2.71073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60133 0.19888 -1.00000 - 10844 2017 8 21 14 36 21 93 4.8636 180.35330 555.11071 526.43642 -0.16671 5.49811 2.70768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60097 0.19888 -1.00000 - 10845 2017 8 21 14 36 25 956 4.8635 180.35389 555.15875 526.47726 -0.16636 5.49212 2.70669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60062 0.19887 -1.00000 - 10846 2017 8 21 14 36 30 820 4.8635 180.35449 555.20930 526.51811 -0.16602 5.48652 2.70225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60027 0.19887 -1.00000 - 10847 2017 8 21 14 36 35 683 4.8635 180.35508 555.26139 526.55908 -0.16570 5.48268 2.69856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59991 0.19887 -1.00000 - 10848 2017 8 21 14 36 40 547 4.8634 180.35568 555.30473 526.60001 -0.16545 5.47838 2.69832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59956 0.19887 -1.00000 - 10849 2017 8 21 14 36 45 410 4.8634 180.35628 555.34909 526.64104 -0.16527 5.45494 2.69504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59920 0.19887 -1.00000 - 10850 2017 8 21 14 36 50 273 4.8634 180.35688 555.40155 526.68220 -0.16516 5.44439 2.69097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59885 0.19887 -1.00000 - 10851 2017 8 21 14 36 55 137 4.8633 180.35748 555.45070 526.72338 -0.16509 5.44588 2.69033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59850 0.19887 -1.00000 - 10852 2017 8 21 14 37 0 0 4.8633 180.35808 555.50322 526.76464 -0.16504 5.45171 2.68851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59814 0.19887 -1.00000 - 10853 2017 8 21 14 37 4 863 4.8632 180.35869 555.55205 526.80595 -0.16496 5.45765 2.68538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59779 0.19887 -1.00000 - 10854 2017 8 21 14 37 9 727 4.8632 180.35930 555.59950 526.84728 -0.16485 5.46197 2.68574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59744 0.19887 -1.00000 - 10855 2017 8 21 14 37 14 590 4.8632 180.35990 555.64383 526.88860 -0.16469 5.46002 2.68568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59708 0.19887 -1.00000 - 10856 2017 8 21 14 37 19 453 4.8631 180.36051 555.69141 526.92984 -0.16452 5.47227 2.68297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59673 0.19887 -1.00000 - 10857 2017 8 21 14 37 24 316 4.8631 180.36112 555.74241 526.97108 -0.16436 5.48452 2.68290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59638 0.19887 -1.00000 - 10858 2017 8 21 14 37 29 179 4.8631 180.36174 555.79526 527.01230 -0.16426 5.49867 2.68191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59602 0.19887 -1.00000 - 10859 2017 8 21 14 37 34 42 4.8630 180.36235 555.84127 527.05359 -0.16420 5.51367 2.68200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59567 0.19887 -1.00000 - 10860 2017 8 21 14 37 38 905 4.8630 180.36297 555.88556 527.09482 -0.16419 5.52857 2.68131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59531 0.19887 -1.00000 - 10861 2017 8 21 14 37 43 768 4.8629 180.36359 555.93461 527.13602 -0.16420 5.54262 2.68299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59496 0.19887 -1.00000 - 10862 2017 8 21 14 37 48 631 4.8629 180.36421 555.98350 527.17710 -0.16422 5.55357 2.68209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59461 0.19887 -1.00000 - 10863 2017 8 21 14 37 53 494 4.8629 180.36483 556.03684 527.21808 -0.16423 5.56158 2.68201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59425 0.19887 -1.00000 - 10864 2017 8 21 14 37 58 357 4.8628 180.36545 556.08937 527.25913 -0.16423 5.56869 2.68264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59390 0.19887 -1.00000 - 10865 2017 8 21 14 38 3 219 4.8628 180.36607 556.13251 527.30006 -0.16421 5.57426 2.68225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59355 0.19887 -1.00000 - 10866 2017 8 21 14 38 8 82 4.8628 180.36670 556.17640 527.34083 -0.16417 5.58432 2.68348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59319 0.19887 -1.00000 - 10867 2017 8 21 14 38 12 945 4.8627 180.36732 556.22517 527.38157 -0.16409 5.60273 2.68430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59284 0.19887 -1.00000 - 10868 2017 8 21 14 38 17 808 4.8627 180.36794 556.27387 527.42217 -0.16396 5.61633 2.68366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59249 0.19887 -1.00000 - 10869 2017 8 21 14 38 22 670 4.8626 180.36857 556.32660 527.46270 -0.16379 5.62293 2.68284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59213 0.19887 -1.00000 - 10870 2017 8 21 14 38 27 533 4.8626 180.36920 556.37879 527.50331 -0.16359 5.61121 2.68202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59178 0.19887 -1.00000 - 10871 2017 8 21 14 38 32 395 4.8626 180.36982 556.42090 527.54384 -0.16341 5.59498 2.67958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59142 0.19887 -1.00000 - 10872 2017 8 21 14 38 37 258 4.8625 180.37046 556.46484 527.58440 -0.16326 5.58683 2.67858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59107 0.19887 -1.00000 - 10873 2017 8 21 14 38 42 120 4.8625 180.37109 556.51170 527.62506 -0.16317 5.57497 2.67618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59072 0.19886 -1.00000 - 10874 2017 8 21 14 38 46 983 4.8625 180.37172 556.56252 527.66563 -0.16315 5.55889 2.67237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59036 0.19886 -1.00000 - 10875 2017 8 21 14 38 51 845 4.8624 180.37235 556.61153 527.70626 -0.16318 5.53757 2.67178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59001 0.19886 -1.00000 - 10876 2017 8 21 14 38 56 708 4.8624 180.37299 556.66410 527.74702 -0.16324 5.50072 2.66943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58966 0.19886 -1.00000 - 10877 2017 8 21 14 39 1 570 4.8623 180.37362 556.70823 527.78785 -0.16330 5.46307 2.66426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58930 0.19886 -1.00000 - 10878 2017 8 21 14 39 6 432 4.8623 180.37425 556.75595 527.82874 -0.16333 5.43763 2.66337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58895 0.19886 -1.00000 - 10879 2017 8 21 14 39 11 295 4.8623 180.37489 556.80041 527.86964 -0.16335 5.41261 2.65970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58860 0.19886 -1.00000 - 10880 2017 8 21 14 39 16 157 4.8622 180.37553 556.85413 527.91061 -0.16334 5.38795 2.65477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58824 0.19886 -1.00000 - 10881 2017 8 21 14 39 21 19 4.8622 180.37616 556.90594 527.95171 -0.16332 5.36232 2.65300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58789 0.19886 -1.00000 - 10882 2017 8 21 14 39 25 881 4.8622 180.37680 556.94932 527.99281 -0.16331 5.33426 2.64915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58753 0.19886 -1.00000 - 10883 2017 8 21 14 39 30 743 4.8621 180.37744 556.99891 528.03410 -0.16331 5.31450 2.64706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58718 0.19886 -1.00000 - 10884 2017 8 21 14 39 35 605 4.8621 180.37808 557.04743 528.07555 -0.16332 5.28360 2.64544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58683 0.19886 -1.00000 - 10885 2017 8 21 14 39 40 467 4.8621 180.37873 557.09383 528.11683 -0.16335 5.26486 2.64138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58647 0.19886 -1.00000 - 10886 2017 8 21 14 39 45 330 4.8620 180.37937 557.14740 528.15827 -0.16339 5.25788 2.63985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58612 0.19886 -1.00000 - 10887 2017 8 21 14 39 50 191 4.8620 180.38001 557.20005 528.19987 -0.16342 5.26024 2.64049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58577 0.19886 -1.00000 - 10888 2017 8 21 14 39 55 53 4.8619 180.38065 557.24423 528.24143 -0.16343 5.26184 2.63672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58541 0.19886 -1.00000 - 10889 2017 8 21 14 39 59 915 4.8619 180.38130 557.29435 528.28302 -0.16341 5.26202 2.63670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58506 0.19886 -1.00000 - 10890 2017 8 21 14 40 4 777 4.8619 180.38194 557.34295 528.32467 -0.16337 5.26256 2.63798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58471 0.19886 -1.00000 - 10891 2017 8 21 14 40 9 639 4.8618 180.38259 557.38907 528.36627 -0.16328 5.26442 2.63618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58435 0.19886 -1.00000 - 10892 2017 8 21 14 40 14 501 4.8618 180.38324 557.44329 528.40798 -0.16316 5.26817 2.63532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58400 0.19886 -1.00000 - 10893 2017 8 21 14 40 19 363 4.8618 180.38388 557.49622 528.44972 -0.16302 5.27398 2.63880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58365 0.19886 -1.00000 - 10894 2017 8 21 14 40 24 224 4.8617 180.38453 557.54036 528.49140 -0.16287 5.28112 2.63909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58329 0.19886 -1.00000 - 10895 2017 8 21 14 40 29 86 4.8617 180.38519 557.59103 528.53321 -0.16272 5.28903 2.63974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58294 0.19886 -1.00000 - 10896 2017 8 21 14 40 33 948 4.8616 180.38584 557.63969 528.57502 -0.16258 5.30562 2.64320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58258 0.19886 -1.00000 - 10897 2017 8 21 14 40 38 809 4.8616 180.38649 557.68633 528.61668 -0.16243 5.32402 2.64440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58223 0.19886 -1.00000 - 10898 2017 8 21 14 40 43 671 4.8616 180.38715 557.74012 528.65831 -0.16230 5.34305 2.64689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58188 0.19886 -1.00000 - 10899 2017 8 21 14 40 48 532 4.8615 180.38780 557.78586 528.69989 -0.16220 5.36200 2.65187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58152 0.19886 -1.00000 - 10900 2017 8 21 14 40 53 394 4.8615 180.38846 557.83383 528.74147 -0.16212 5.38039 2.65580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58117 0.19885 -1.00000 - 10901 2017 8 21 14 40 58 255 4.8615 180.38912 557.88255 528.78301 -0.16202 5.39813 2.65947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58082 0.19885 -1.00000 - 10902 2017 8 21 14 41 3 117 4.8614 180.38978 557.93073 528.82446 -0.16188 5.41534 2.66493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58046 0.19885 -1.00000 - 10903 2017 8 21 14 41 7 978 4.8614 180.39044 557.97831 528.86571 -0.16166 5.44044 2.66900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58011 0.19885 -1.00000 - 10904 2017 8 21 14 41 12 839 4.8614 180.39111 558.03129 528.90689 -0.16138 5.46496 2.67425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57976 0.19885 -1.00000 - 10905 2017 8 21 14 41 17 701 4.8613 180.39177 558.07794 528.94813 -0.16108 5.48822 2.67891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57940 0.19885 -1.00000 - 10906 2017 8 21 14 41 22 562 4.8613 180.39244 558.12395 528.98923 -0.16080 5.50995 2.68273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57905 0.19885 -1.00000 - 10907 2017 8 21 14 41 27 423 4.8612 180.39311 558.17232 529.03029 -0.16056 5.53025 2.68752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57870 0.19885 -1.00000 - 10908 2017 8 21 14 41 32 285 4.8612 180.39378 558.22045 529.07130 -0.16039 5.54931 2.69214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57834 0.19885 -1.00000 - 10909 2017 8 21 14 41 37 146 4.8612 180.39446 558.26622 529.11219 -0.16026 5.56744 2.69407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57799 0.19885 -1.00000 - 10910 2017 8 21 14 41 42 7 4.8611 180.39513 558.32134 529.15321 -0.16013 5.58502 2.69819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57764 0.19885 -1.00000 - 10911 2017 8 21 14 41 46 868 4.8611 180.39581 558.36448 529.19431 -0.15994 5.60264 2.70042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57728 0.19885 -1.00000 - 10912 2017 8 21 14 41 51 729 4.8611 180.39648 558.41707 529.23552 -0.15967 5.62042 2.70097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57693 0.19885 -1.00000 - 10913 2017 8 21 14 41 56 590 4.8610 180.39716 558.46509 529.27683 -0.15931 5.63773 2.70525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57657 0.19885 -1.00000 - 10914 2017 8 21 14 42 1 451 4.8610 180.39784 558.50860 529.31808 -0.15887 5.65368 2.70719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57622 0.19885 -1.00000 - 10915 2017 8 21 14 42 6 312 4.8610 180.39852 558.55494 529.35943 -0.15841 5.66985 2.70914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57587 0.19885 -1.00000 - 10916 2017 8 21 14 42 11 173 4.8609 180.39920 558.60315 529.40083 -0.15797 5.68748 2.71437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57551 0.19885 -1.00000 - 10917 2017 8 21 14 42 16 34 4.8609 180.39988 558.65555 529.44219 -0.15761 5.70632 2.71714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57516 0.19885 -1.00000 - 10918 2017 8 21 14 42 20 895 4.8608 180.40056 558.70867 529.48372 -0.15734 5.72552 2.71967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57481 0.19885 -1.00000 - 10919 2017 8 21 14 42 25 755 4.8608 180.40124 558.75193 529.52521 -0.15717 5.74319 2.72535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57445 0.19885 -1.00000 - 10920 2017 8 21 14 42 30 616 4.8608 180.40192 558.79658 529.56668 -0.15708 5.75681 2.72864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57410 0.19885 -1.00000 - 10921 2017 8 21 14 42 35 477 4.8607 180.40260 558.84541 529.60827 -0.15705 5.75493 2.73349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57375 0.19885 -1.00000 - 10922 2017 8 21 14 42 40 338 4.8607 180.40328 558.89832 529.64980 -0.15704 5.75155 2.73779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57339 0.19885 -1.00000 - 10923 2017 8 21 14 42 45 198 4.8607 180.40396 558.95188 529.69135 -0.15702 5.75881 2.74078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57304 0.19885 -1.00000 - 10924 2017 8 21 14 42 50 59 4.8606 180.40465 558.99969 529.73286 -0.15699 5.76451 2.74702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57269 0.19885 -1.00000 - 10925 2017 8 21 14 42 54 919 4.8606 180.40533 559.04328 529.77424 -0.15692 5.76904 2.75063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57233 0.19885 -1.00000 - 10926 2017 8 21 14 42 59 780 4.8605 180.40601 559.08982 529.81560 -0.15683 5.77262 2.75336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57198 0.19885 -1.00000 - 10927 2017 8 21 14 43 4 641 4.8605 180.40669 559.13848 529.85705 -0.15672 5.77450 2.75786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57163 0.19885 -1.00000 - 10928 2017 8 21 14 43 9 501 4.8605 180.40737 559.19019 529.89852 -0.15660 5.77324 2.76084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57127 0.19884 -1.00000 - 10929 2017 8 21 14 43 14 361 4.8604 180.40806 559.24556 529.94002 -0.15648 5.75785 2.76161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57092 0.19884 -1.00000 - 10930 2017 8 21 14 43 19 222 4.8604 180.40874 559.29397 529.98161 -0.15639 5.74772 2.76488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57057 0.19884 -1.00000 - 10931 2017 8 21 14 43 24 82 4.8604 180.40943 559.33758 530.02318 -0.15631 5.74915 2.76664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57021 0.19884 -1.00000 - 10932 2017 8 21 14 43 28 943 4.8603 180.41012 559.38202 530.06491 -0.15625 5.75034 2.76760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56986 0.19884 -1.00000 - 10933 2017 8 21 14 43 33 803 4.8603 180.41081 559.43196 530.10678 -0.15618 5.74972 2.76915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56951 0.19884 -1.00000 - 10934 2017 8 21 14 43 38 663 4.8603 180.41151 559.48517 530.14873 -0.15610 5.74770 2.76965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56915 0.19884 -1.00000 - 10935 2017 8 21 14 43 43 523 4.8602 180.41220 559.53800 530.19072 -0.15600 5.74640 2.77039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56880 0.19884 -1.00000 - 10936 2017 8 21 14 43 48 384 4.8602 180.41290 559.58358 530.23281 -0.15588 5.74707 2.77057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56845 0.19884 -1.00000 - 10937 2017 8 21 14 43 53 244 4.8602 180.41359 559.63376 530.27493 -0.15574 5.74836 2.77039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56809 0.19884 -1.00000 - 10938 2017 8 21 14 43 58 104 4.8601 180.41429 559.68393 530.31723 -0.15559 5.75044 2.77210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56774 0.19884 -1.00000 - 10939 2017 8 21 14 44 2 964 4.8601 180.41499 559.73498 530.35950 -0.15545 5.75262 2.77187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56738 0.19884 -1.00000 - 10940 2017 8 21 14 44 7 824 4.8600 180.41570 559.78916 530.40182 -0.15534 5.75465 2.77050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56703 0.19884 -1.00000 - 10941 2017 8 21 14 44 12 684 4.8600 180.41640 559.83973 530.44421 -0.15527 5.75650 2.77437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56668 0.19884 -1.00000 - 10942 2017 8 21 14 44 17 544 4.8600 180.41711 559.88513 530.48636 -0.15525 5.75795 2.77401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56632 0.19884 -1.00000 - 10943 2017 8 21 14 44 22 404 4.8599 180.41782 559.93684 530.52860 -0.15527 5.75764 2.77312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56597 0.19884 -1.00000 - 10944 2017 8 21 14 44 27 264 4.8599 180.41853 559.98616 530.57083 -0.15532 5.76445 2.77806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56562 0.19884 -1.00000 - 10945 2017 8 21 14 44 32 124 4.8599 180.41924 560.03408 530.61284 -0.15540 5.77116 2.77641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56526 0.19884 -1.00000 - 10946 2017 8 21 14 44 36 983 4.8598 180.41995 560.08839 530.65479 -0.15551 5.77466 2.77596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56491 0.19884 -1.00000 - 10947 2017 8 21 14 44 41 843 4.8598 180.42066 560.13661 530.69671 -0.15561 5.77688 2.77984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56456 0.19884 -1.00000 - 10948 2017 8 21 14 44 46 703 4.8598 180.42138 560.18332 530.73847 -0.15572 5.77979 2.78007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56420 0.19884 -1.00000 - 10949 2017 8 21 14 44 51 563 4.8597 180.42209 560.23440 530.78026 -0.15581 5.78260 2.78136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56385 0.19884 -1.00000 - 10950 2017 8 21 14 44 56 422 4.8597 180.42281 560.28346 530.82209 -0.15588 5.78479 2.78527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56350 0.19884 -1.00000 - 10951 2017 8 21 14 45 1 282 4.8597 180.42353 560.33097 530.86362 -0.15591 5.78577 2.78615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56314 0.19884 -1.00000 - 10952 2017 8 21 14 45 6 142 4.8596 180.42425 560.38267 530.90505 -0.15592 5.78553 2.78765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56279 0.19884 -1.00000 - 10953 2017 8 21 14 45 11 1 4.8596 180.42498 560.43050 530.94635 -0.15589 5.78437 2.79352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56244 0.19884 -1.00000 - 10954 2017 8 21 14 45 15 861 4.8595 180.42570 560.47754 530.98741 -0.15585 5.78276 2.79457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56208 0.19884 -1.00000 - 10955 2017 8 21 14 45 20 720 4.8595 180.42643 560.52801 531.02842 -0.15579 5.78111 2.79660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56173 0.19884 -1.00000 - 10956 2017 8 21 14 45 25 580 4.8595 180.42715 560.57554 531.06937 -0.15571 5.77978 2.80114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56138 0.19883 -1.00000 - 10957 2017 8 21 14 45 30 439 4.8594 180.42788 560.62143 531.11010 -0.15562 5.77894 2.80302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56102 0.19883 -1.00000 - 10958 2017 8 21 14 45 35 299 4.8594 180.42861 560.67112 531.15068 -0.15550 5.77865 2.80515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56067 0.19883 -1.00000 - 10959 2017 8 21 14 45 40 158 4.8594 180.42934 560.71633 531.19119 -0.15534 5.77884 2.80852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56032 0.19883 -1.00000 - 10960 2017 8 21 14 45 45 17 4.8593 180.43007 560.76344 531.23159 -0.15515 5.77936 2.80984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55996 0.19883 -1.00000 - 10961 2017 8 21 14 45 49 877 4.8593 180.43080 560.81030 531.27202 -0.15491 5.78004 2.81028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55961 0.19883 -1.00000 - 10962 2017 8 21 14 45 54 736 4.8593 180.43153 560.85370 531.31240 -0.15465 5.78072 2.81185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55926 0.19883 -1.00000 - 10963 2017 8 21 14 45 59 595 4.8592 180.43226 560.89708 531.35270 -0.15439 5.78124 2.81102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55890 0.19883 -1.00000 - 10964 2017 8 21 14 46 4 454 4.8592 180.43300 560.94952 531.39312 -0.15415 5.78145 2.81244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55855 0.19883 -1.00000 - 10965 2017 8 21 14 46 9 313 4.8592 180.43373 560.99629 531.43365 -0.15394 5.78125 2.81154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55820 0.19883 -1.00000 - 10966 2017 8 21 14 46 14 173 4.8591 180.43447 561.04817 531.47420 -0.15378 5.78056 2.80976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55784 0.19883 -1.00000 - 10967 2017 8 21 14 46 19 32 4.8591 180.43520 561.09452 531.51492 -0.15364 5.77931 2.81025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55749 0.19883 -1.00000 - 10968 2017 8 21 14 46 23 891 4.8590 180.43594 561.13642 531.55573 -0.15352 5.77747 2.80854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55714 0.19883 -1.00000 - 10969 2017 8 21 14 46 28 750 4.8590 180.43667 561.18057 531.59659 -0.15338 5.77508 2.80517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55678 0.19883 -1.00000 - 10970 2017 8 21 14 46 33 609 4.8590 180.43741 561.23370 531.63754 -0.15320 5.77247 2.80546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55643 0.19883 -1.00000 - 10971 2017 8 21 14 46 38 468 4.8589 180.43814 561.27961 531.67854 -0.15297 5.76957 2.80307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55608 0.19883 -1.00000 - 10972 2017 8 21 14 46 43 327 4.8589 180.43888 561.33273 531.71966 -0.15270 5.76498 2.79881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55572 0.19883 -1.00000 - 10973 2017 8 21 14 46 48 185 4.8589 180.43961 561.38010 531.76092 -0.15240 5.75571 2.79964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55537 0.19883 -1.00000 - 10974 2017 8 21 14 46 53 44 4.8588 180.44035 561.42275 531.80218 -0.15210 5.73110 2.79639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55502 0.19883 -1.00000 - 10975 2017 8 21 14 46 57 903 4.8588 180.44109 561.46973 531.84348 -0.15182 5.72046 2.79458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55466 0.19883 -1.00000 - 10976 2017 8 21 14 47 2 762 4.8588 180.44183 561.51732 531.88487 -0.15157 5.71024 2.79543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55431 0.19883 -1.00000 - 10977 2017 8 21 14 47 7 621 4.8587 180.44257 561.56857 531.92618 -0.15136 5.70088 2.79338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55396 0.19883 -1.00000 - 10978 2017 8 21 14 47 12 479 4.8587 180.44330 561.62121 531.96768 -0.15116 5.69202 2.79149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55360 0.19883 -1.00000 - 10979 2017 8 21 14 47 17 338 4.8587 180.44405 561.66400 532.00943 -0.15098 5.68275 2.79205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55325 0.19883 -1.00000 - 10980 2017 8 21 14 47 22 196 4.8586 180.44479 561.70808 532.05128 -0.15081 5.67176 2.78820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55290 0.19883 -1.00000 - 10981 2017 8 21 14 47 27 55 4.8586 180.44553 561.76234 532.09320 -0.15062 5.66020 2.78810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55254 0.19883 -1.00000 - 10982 2017 8 21 14 47 31 914 4.8585 180.44627 561.80855 532.13539 -0.15042 5.64867 2.78768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55219 0.19883 -1.00000 - 10983 2017 8 21 14 47 36 772 4.8585 180.44702 561.86245 532.17772 -0.15023 5.63779 2.78347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55184 0.19883 -1.00000 - 10984 2017 8 21 14 47 41 631 4.8585 180.44777 561.91233 532.22020 -0.15004 5.62815 2.78429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55148 0.19882 -1.00000 - 10985 2017 8 21 14 47 46 489 4.8584 180.44852 561.96038 532.26266 -0.14988 5.62344 2.78378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55113 0.19882 -1.00000 - 10986 2017 8 21 14 47 51 347 4.8584 180.44927 562.00824 532.30516 -0.14976 5.62415 2.78135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55078 0.19882 -1.00000 - 10987 2017 8 21 14 47 56 206 4.8584 180.45002 562.05837 532.34769 -0.14967 5.62582 2.78399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55042 0.19882 -1.00000 - 10988 2017 8 21 14 48 1 64 4.8583 180.45077 562.11186 532.39016 -0.14962 5.62867 2.78286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55007 0.19882 -1.00000 - 10989 2017 8 21 14 48 5 922 4.8583 180.45153 562.16617 532.43281 -0.14960 5.63220 2.78134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54972 0.19882 -1.00000 - 10990 2017 8 21 14 48 10 781 4.8583 180.45229 562.20935 532.47548 -0.14960 5.61938 2.78351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54936 0.19882 -1.00000 - 10991 2017 8 21 14 48 15 639 4.8582 180.45305 562.25783 532.51815 -0.14962 5.61202 2.78286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54901 0.19882 -1.00000 - 10992 2017 8 21 14 48 20 497 4.8582 180.45381 562.30761 532.56079 -0.14964 5.62439 2.78465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54866 0.19882 -1.00000 - 10993 2017 8 21 14 48 25 355 4.8582 180.45457 562.35963 532.60346 -0.14966 5.63775 2.78734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54830 0.19882 -1.00000 - 10994 2017 8 21 14 48 30 214 4.8581 180.45533 562.41491 532.64620 -0.14967 5.65387 2.78764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54795 0.19882 -1.00000 - 10995 2017 8 21 14 48 35 72 4.8581 180.45610 562.46484 532.68889 -0.14966 5.67272 2.78951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54760 0.19882 -1.00000 - 10996 2017 8 21 14 48 39 930 4.8581 180.45686 562.51003 532.73151 -0.14964 5.69411 2.79084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54724 0.19882 -1.00000 - 10997 2017 8 21 14 48 44 788 4.8580 180.45763 562.55791 532.77415 -0.14960 5.71777 2.79191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54689 0.19882 -1.00000 - 10998 2017 8 21 14 48 49 646 4.8580 180.45840 562.60996 532.81675 -0.14956 5.74342 2.79371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54654 0.19882 -1.00000 - 10999 2017 8 21 14 48 54 504 4.8580 180.45917 562.66439 532.85941 -0.14951 5.77087 2.79360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54618 0.19882 -1.00000 - 11000 2017 8 21 14 48 59 362 4.8579 180.45993 562.71356 532.90212 -0.14946 5.79956 2.79559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54583 0.19882 -1.00000 - 11001 2017 8 21 14 49 4 219 4.8579 180.46070 562.75891 532.94474 -0.14941 5.82825 2.79574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54548 0.19882 -1.00000 - 11002 2017 8 21 14 49 9 77 4.8579 180.46148 562.80778 532.98752 -0.14935 5.85574 2.79564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54512 0.19882 -1.00000 - 11003 2017 8 21 14 49 13 935 4.8578 180.46225 562.86011 533.03036 -0.14929 5.88146 2.79754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54477 0.19882 -1.00000 - 11004 2017 8 21 14 49 18 793 4.8578 180.46302 562.91506 533.07329 -0.14922 5.90506 2.79627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54442 0.19882 -1.00000 - 11005 2017 8 21 14 49 23 651 4.8578 180.46379 562.96519 533.11641 -0.14913 5.92640 2.79786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54406 0.19882 -1.00000 - 11006 2017 8 21 14 49 28 508 4.8577 180.46457 563.01005 533.15938 -0.14902 5.94537 2.79715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54371 0.19882 -1.00000 - 11007 2017 8 21 14 49 33 366 4.8577 180.46534 563.06479 533.20250 -0.14889 5.96178 2.79573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54336 0.19882 -1.00000 - 11008 2017 8 21 14 49 38 224 4.8576 180.46612 563.11588 533.24572 -0.14873 5.97556 2.79808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54300 0.19882 -1.00000 - 11009 2017 8 21 14 49 43 81 4.8576 180.46690 563.16596 533.28891 -0.14856 5.99046 2.79453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54265 0.19882 -1.00000 - 11010 2017 8 21 14 49 47 939 4.8576 180.46768 563.22210 533.33222 -0.14837 6.01019 2.79221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54230 0.19882 -1.00000 - 11011 2017 8 21 14 49 52 796 4.8575 180.46846 563.27259 533.37563 -0.14818 6.02560 2.79257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54194 0.19882 -1.00000 - 11012 2017 8 21 14 49 57 654 4.8575 180.46924 563.31788 533.41898 -0.14799 6.03624 2.78848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54159 0.19881 -1.00000 - 11013 2017 8 21 14 50 2 511 4.8575 180.47002 563.37261 533.46251 -0.14781 6.04190 2.78496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54124 0.19881 -1.00000 - 11014 2017 8 21 14 50 7 369 4.8574 180.47080 563.42463 533.50619 -0.14764 6.04281 2.78364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54088 0.19881 -1.00000 - 11015 2017 8 21 14 50 12 226 4.8574 180.47159 563.47560 533.54976 -0.14746 6.03909 2.77842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54053 0.19881 -1.00000 - 11016 2017 8 21 14 50 17 84 4.8574 180.47237 563.53251 533.59345 -0.14728 6.02891 2.77309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54018 0.19881 -1.00000 - 11017 2017 8 21 14 50 21 941 4.8573 180.47316 563.58360 533.63717 -0.14708 6.00978 2.77219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53982 0.19881 -1.00000 - 11018 2017 8 21 14 50 26 798 4.8573 180.47394 563.62922 533.68083 -0.14687 5.97102 2.76648 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53947 0.19881 -1.00000 - 11019 2017 8 21 14 50 31 656 4.8573 180.47473 563.68519 533.72456 -0.14663 5.94158 2.76255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53912 0.19881 -1.00000 - 11020 2017 8 21 14 50 36 513 4.8572 180.47552 563.73548 533.76840 -0.14639 5.90866 2.75981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53877 0.19881 -1.00000 - 11021 2017 8 21 14 50 41 370 4.8572 180.47631 563.78799 533.81209 -0.14615 5.87298 2.75384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53841 0.19881 -1.00000 - 11022 2017 8 21 14 50 46 227 4.8572 180.47709 563.84524 533.85588 -0.14593 5.83439 2.74988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53806 0.19881 -1.00000 - 11023 2017 8 21 14 50 51 84 4.8571 180.47788 563.89631 533.89967 -0.14574 5.79198 2.74732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53771 0.19881 -1.00000 - 11024 2017 8 21 14 50 55 941 4.8571 180.47867 563.94190 533.94326 -0.14559 5.74518 2.74211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53735 0.19881 -1.00000 - 11025 2017 8 21 14 51 0 798 4.8571 180.47946 563.99374 533.98681 -0.14546 5.69543 2.74127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53700 0.19881 -1.00000 - 11026 2017 8 21 14 51 5 655 4.8570 180.48025 564.04723 534.03027 -0.14535 5.64344 2.73926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53665 0.19881 -1.00000 - 11027 2017 8 21 14 51 10 512 4.8570 180.48104 564.10392 534.07364 -0.14525 5.59033 2.73597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53629 0.19881 -1.00000 - 11028 2017 8 21 14 51 15 369 4.8570 180.48183 564.15478 534.11677 -0.14515 5.53706 2.73558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53594 0.19881 -1.00000 - 11029 2017 8 21 14 51 20 226 4.8569 180.48263 564.20322 534.15972 -0.14504 5.48416 2.73430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53559 0.19881 -1.00000 - 11030 2017 8 21 14 51 25 83 4.8569 180.48342 564.25120 534.20255 -0.14492 5.43205 2.73232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53523 0.19881 -1.00000 - 11031 2017 8 21 14 51 29 940 4.8569 180.48421 564.30219 534.24531 -0.14480 5.38102 2.73214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53488 0.19881 -1.00000 - 11032 2017 8 21 14 51 34 797 4.8568 180.48500 564.35499 534.28787 -0.14468 5.33140 2.73076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53453 0.19881 -1.00000 - 11033 2017 8 21 14 51 39 654 4.8568 180.48580 564.41239 534.33042 -0.14456 5.28347 2.72906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53417 0.19881 -1.00000 - 11034 2017 8 21 14 51 44 510 4.8567 180.48660 564.45549 534.37288 -0.14445 5.23831 2.72839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53382 0.19881 -1.00000 - 11035 2017 8 21 14 51 49 367 4.8567 180.48740 564.50118 534.41526 -0.14435 5.20717 2.72862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53347 0.19881 -1.00000 - 11036 2017 8 21 14 51 54 224 4.8567 180.48820 564.55167 534.45751 -0.14424 5.18357 2.72846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53311 0.19881 -1.00000 - 11037 2017 8 21 14 51 59 80 4.8566 180.48900 564.60535 534.49974 -0.14412 5.16461 2.72866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53276 0.19881 -1.00000 - 11038 2017 8 21 14 52 3 937 4.8566 180.48980 564.65184 534.54196 -0.14398 5.16058 2.73048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53241 0.19881 -1.00000 - 11039 2017 8 21 14 52 8 794 4.8566 180.49061 564.69860 534.58399 -0.14383 5.15922 2.73205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53205 0.19881 -1.00000 - 11040 2017 8 21 14 52 13 650 4.8565 180.49141 564.75091 534.62596 -0.14366 5.15894 2.73309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53170 0.19880 -1.00000 - 11041 2017 8 21 14 52 18 507 4.8565 180.49222 564.79879 534.66786 -0.14347 5.15588 2.73828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53135 0.19880 -1.00000 - 11042 2017 8 21 14 52 23 363 4.8565 180.49303 564.84673 534.70954 -0.14328 5.16153 2.73956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53099 0.19880 -1.00000 - 11043 2017 8 21 14 52 28 220 4.8564 180.49384 564.89801 534.75110 -0.14308 5.16764 2.74288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53064 0.19880 -1.00000 - 11044 2017 8 21 14 52 33 76 4.8564 180.49466 564.94556 534.79264 -0.14288 5.17622 2.74852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53029 0.19880 -1.00000 - 11045 2017 8 21 14 52 37 932 4.8564 180.49547 564.99100 534.83401 -0.14269 5.18547 2.75163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52994 0.19880 -1.00000 - 11046 2017 8 21 14 52 42 789 4.8563 180.49629 565.04113 534.87536 -0.14251 5.19310 2.75464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52958 0.19880 -1.00000 - 11047 2017 8 21 14 52 47 645 4.8563 180.49711 565.08761 534.91675 -0.14234 5.20096 2.76212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52923 0.19880 -1.00000 - 11048 2017 8 21 14 52 52 501 4.8563 180.49793 565.13309 534.95802 -0.14220 5.20917 2.76696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52888 0.19880 -1.00000 - 11049 2017 8 21 14 52 57 358 4.8562 180.49874 565.18468 534.99929 -0.14209 5.21758 2.77058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52852 0.19880 -1.00000 - 11050 2017 8 21 14 53 2 214 4.8562 180.49956 565.23164 535.04059 -0.14200 5.22824 2.77890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52817 0.19880 -1.00000 - 11051 2017 8 21 14 53 7 70 4.8562 180.50038 565.27413 535.08182 -0.14194 5.25484 2.78328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52782 0.19880 -1.00000 - 11052 2017 8 21 14 53 11 926 4.8561 180.50121 565.32188 535.12320 -0.14191 5.28184 2.78710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52746 0.19880 -1.00000 - 11053 2017 8 21 14 53 16 782 4.8561 180.50203 565.36930 535.16469 -0.14189 5.30675 2.79660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52711 0.19880 -1.00000 - 11054 2017 8 21 14 53 21 638 4.8561 180.50285 565.41869 535.20614 -0.14190 5.32144 2.80069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52676 0.19880 -1.00000 - 11055 2017 8 21 14 53 26 494 4.8560 180.50367 565.47164 535.24785 -0.14190 5.36194 2.80414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52640 0.19880 -1.00000 - 11056 2017 8 21 14 53 31 350 4.8560 180.50449 565.51918 535.28970 -0.14190 5.40482 2.81340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52605 0.19880 -1.00000 - 11057 2017 8 21 14 53 36 206 4.8560 180.50532 565.56132 535.33149 -0.14190 5.44769 2.81719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52570 0.19880 -1.00000 - 11058 2017 8 21 14 53 41 62 4.8559 180.50614 565.60974 535.37356 -0.14189 5.49134 2.82379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52534 0.19880 -1.00000 - 11059 2017 8 21 14 53 45 918 4.8559 180.50696 565.65780 535.41583 -0.14186 5.53625 2.83312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52499 0.19880 -1.00000 - 11060 2017 8 21 14 53 50 774 4.8559 180.50779 565.70972 535.45801 -0.14182 5.58279 2.83689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52464 0.19880 -1.00000 - 11061 2017 8 21 14 53 55 630 4.8558 180.50861 565.76391 535.50046 -0.14177 5.63020 2.84298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52428 0.19880 -1.00000 - 11062 2017 8 21 14 54 0 486 4.8558 180.50944 565.81319 535.54310 -0.14171 5.67579 2.85122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52393 0.19880 -1.00000 - 11063 2017 8 21 14 54 5 341 4.8558 180.51026 565.85700 535.58570 -0.14163 5.71978 2.85523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52358 0.19880 -1.00000 - 11064 2017 8 21 14 54 10 197 4.8557 180.51109 565.90802 535.62848 -0.14153 5.76299 2.86299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52323 0.19880 -1.00000 - 11065 2017 8 21 14 54 15 53 4.8557 180.51192 565.95393 535.67137 -0.14142 5.80453 2.87150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52287 0.19880 -1.00000 - 11066 2017 8 21 14 54 19 909 4.8557 180.51275 566.00902 535.71421 -0.14129 5.84602 2.87587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52252 0.19880 -1.00000 - 11067 2017 8 21 14 54 24 764 4.8556 180.51358 566.06354 535.75716 -0.14113 5.88731 2.88324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52217 0.19880 -1.00000 - 11068 2017 8 21 14 54 29 620 4.8556 180.51441 566.11293 535.80021 -0.14095 5.92624 2.89093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52181 0.19879 -1.00000 - 11069 2017 8 21 14 54 34 475 4.8556 180.51524 566.15803 535.84320 -0.14076 5.96306 2.89643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52146 0.19879 -1.00000 - 11070 2017 8 21 14 54 39 331 4.8555 180.51607 566.20663 535.88631 -0.14054 6.00064 2.90390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52111 0.19879 -1.00000 - 11071 2017 8 21 14 54 44 186 4.8555 180.51691 566.25703 535.92942 -0.14032 6.03773 2.91179 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52075 0.19879 -1.00000 - 11072 2017 8 21 14 54 49 42 4.8555 180.51774 566.31142 535.97251 -0.14010 6.07427 2.91634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52040 0.19879 -1.00000 - 11073 2017 8 21 14 54 53 897 4.8554 180.51858 566.36664 536.01560 -0.13987 6.11103 2.92285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52005 0.19879 -1.00000 - 11074 2017 8 21 14 54 58 753 4.8554 180.51941 566.41499 536.05870 -0.13965 6.14596 2.92881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51969 0.19879 -1.00000 - 11075 2017 8 21 14 55 3 608 4.8554 180.52025 566.46044 536.10178 -0.13944 6.17910 2.93456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51934 0.19879 -1.00000 - 11076 2017 8 21 14 55 8 463 4.8553 180.52109 566.51105 536.14491 -0.13923 6.21269 2.94050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51899 0.19879 -1.00000 - 11077 2017 8 21 14 55 13 319 4.8553 180.52194 566.56293 536.18798 -0.13902 6.24559 2.94535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51864 0.19879 -1.00000 - 11078 2017 8 21 14 55 18 174 4.8553 180.52278 566.61841 536.23100 -0.13882 6.27737 2.94979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51828 0.19879 -1.00000 - 11079 2017 8 21 14 55 23 29 4.8552 180.52362 566.66844 536.27399 -0.13862 6.30860 2.95666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51793 0.19879 -1.00000 - 11080 2017 8 21 14 55 27 884 4.8552 180.52447 566.71376 536.31689 -0.13843 6.33705 2.96007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51758 0.19879 -1.00000 - 11081 2017 8 21 14 55 32 740 4.8552 180.52532 566.76335 536.35975 -0.13824 6.36275 2.96408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51722 0.19879 -1.00000 - 11082 2017 8 21 14 55 37 595 4.8551 180.52616 566.81382 536.40267 -0.13805 6.38806 2.97055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51687 0.19879 -1.00000 - 11083 2017 8 21 14 55 42 450 4.8551 180.52701 566.86769 536.44544 -0.13787 6.41168 2.97192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51652 0.19879 -1.00000 - 11084 2017 8 21 14 55 47 305 4.8551 180.52786 566.92100 536.48821 -0.13770 6.43318 2.97229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51616 0.19879 -1.00000 - 11085 2017 8 21 14 55 52 160 4.8550 180.52871 566.97099 536.53111 -0.13754 6.45326 2.97645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51581 0.19879 -1.00000 - 11086 2017 8 21 14 55 57 15 4.8550 180.52957 567.01581 536.57382 -0.13738 6.46978 2.97506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51546 0.19879 -1.00000 - 11087 2017 8 21 14 56 1 870 4.8550 180.53042 567.06930 536.61671 -0.13723 6.48634 2.97335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51510 0.19879 -1.00000 - 11088 2017 8 21 14 56 6 725 4.8549 180.53127 567.11919 536.65971 -0.13709 6.49433 2.97652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51475 0.19879 -1.00000 - 11089 2017 8 21 14 56 11 580 4.8549 180.53213 567.16740 536.70254 -0.13696 6.50317 2.97157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51440 0.19879 -1.00000 - 11090 2017 8 21 14 56 16 435 4.8549 180.53298 567.22171 536.74551 -0.13684 6.50885 2.96808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51405 0.19879 -1.00000 - 11091 2017 8 21 14 56 21 290 4.8548 180.53384 567.27087 536.78863 -0.13673 6.51792 2.96816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51369 0.19879 -1.00000 - 11092 2017 8 21 14 56 26 144 4.8548 180.53470 567.31643 536.83165 -0.13663 6.52584 2.96229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51334 0.19879 -1.00000 - 11093 2017 8 21 14 56 30 999 4.8548 180.53555 567.37114 536.87491 -0.13652 6.52913 2.95814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51299 0.19879 -1.00000 - 11094 2017 8 21 14 56 35 854 4.8547 180.53641 567.42178 536.91835 -0.13642 6.52699 2.95634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51263 0.19879 -1.00000 - 11095 2017 8 21 14 56 40 709 4.8547 180.53727 567.46999 536.96156 -0.13631 6.51892 2.94910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51228 0.19879 -1.00000 - 11096 2017 8 21 14 56 45 563 4.8547 180.53813 567.52482 537.00498 -0.13620 6.50638 2.94429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51193 0.19878 -1.00000 - 11097 2017 8 21 14 56 50 418 4.8546 180.53899 567.57192 537.04850 -0.13608 6.48949 2.94189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51157 0.19878 -1.00000 - 11098 2017 8 21 14 56 55 273 4.8546 180.53985 567.62068 537.09188 -0.13597 6.46850 2.93323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51122 0.19878 -1.00000 - 11099 2017 8 21 14 57 0 127 4.8546 180.54071 567.67600 537.13543 -0.13586 6.44378 2.92752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51087 0.19878 -1.00000 - 11100 2017 8 21 14 57 4 982 4.8545 180.54157 567.72643 537.17899 -0.13576 6.41531 2.92162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51051 0.19878 -1.00000 - 11101 2017 8 21 14 57 9 836 4.8545 180.54243 567.78151 537.22254 -0.13567 6.38183 2.91245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51016 0.19878 -1.00000 - 11102 2017 8 21 14 57 14 691 4.8545 180.54329 567.83008 537.26620 -0.13559 6.34173 2.90495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50981 0.19878 -1.00000 - 11103 2017 8 21 14 57 19 545 4.8545 180.54415 567.87646 537.30986 -0.13550 6.29599 2.89881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50946 0.19878 -1.00000 - 11104 2017 8 21 14 57 24 400 4.8544 180.54502 567.92738 537.35365 -0.13541 6.24679 2.89034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50910 0.19878 -1.00000 - 11105 2017 8 21 14 57 29 254 4.8544 180.54588 567.98288 537.39763 -0.13531 6.19400 2.88125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50875 0.19878 -1.00000 - 11106 2017 8 21 14 57 34 108 4.8544 180.54675 568.03350 537.44165 -0.13519 6.13786 2.87523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50840 0.19878 -1.00000 - 11107 2017 8 21 14 57 38 963 4.8543 180.54761 568.08006 537.48565 -0.13505 6.07814 2.86834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50804 0.19878 -1.00000 - 11108 2017 8 21 14 57 43 817 4.8543 180.54848 568.13465 537.52972 -0.13490 6.01491 2.86085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50769 0.19878 -1.00000 - 11109 2017 8 21 14 57 48 671 4.8543 180.54935 568.18536 537.57383 -0.13475 5.94875 2.85650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50734 0.19878 -1.00000 - 11110 2017 8 21 14 57 53 525 4.8542 180.55021 568.23653 537.61781 -0.13459 5.88078 2.85018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50698 0.19878 -1.00000 - 11111 2017 8 21 14 57 58 380 4.8542 180.55108 568.29259 537.66179 -0.13443 5.81201 2.84221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50663 0.19878 -1.00000 - 11112 2017 8 21 14 58 3 234 4.8542 180.55196 568.34385 537.70581 -0.13428 5.74329 2.83844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50628 0.19878 -1.00000 - 11113 2017 8 21 14 58 8 88 4.8541 180.55283 568.39064 537.74980 -0.13414 5.67533 2.83237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50593 0.19878 -1.00000 - 11114 2017 8 21 14 58 12 942 4.8541 180.55370 568.44427 537.79385 -0.13400 5.60871 2.82492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50557 0.19878 -1.00000 - 11115 2017 8 21 14 58 17 796 4.8541 180.55458 568.49594 537.83805 -0.13387 5.54384 2.82121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50522 0.19878 -1.00000 - 11116 2017 8 21 14 58 22 650 4.8540 180.55545 568.55044 537.88208 -0.13373 5.48105 2.81441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50487 0.19878 -1.00000 - 11117 2017 8 21 14 58 27 504 4.8540 180.55633 568.60203 537.92616 -0.13358 5.42078 2.80952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50451 0.19878 -1.00000 - 11118 2017 8 21 14 58 32 358 4.8540 180.55721 568.65125 537.97031 -0.13343 5.38184 2.80703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50416 0.19878 -1.00000 - 11119 2017 8 21 14 58 37 212 4.8539 180.55809 568.70112 538.01447 -0.13327 5.34810 2.80093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50381 0.19878 -1.00000 - 11120 2017 8 21 14 58 42 66 4.8539 180.55897 568.75354 538.05860 -0.13311 5.31869 2.80028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50345 0.19878 -1.00000 - 11121 2017 8 21 14 58 46 920 4.8539 180.55986 568.80797 538.10264 -0.13296 5.30429 2.79828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50310 0.19878 -1.00000 - 11122 2017 8 21 14 58 51 774 4.8538 180.56074 568.86475 538.14667 -0.13282 5.29543 2.79441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50275 0.19878 -1.00000 - 11123 2017 8 21 14 58 56 627 4.8538 180.56162 568.91605 538.19059 -0.13270 5.28743 2.79450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50240 0.19878 -1.00000 - 11124 2017 8 21 14 59 1 481 4.8538 180.56251 568.96247 538.23439 -0.13258 5.28276 2.79361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50204 0.19877 -1.00000 - 11125 2017 8 21 14 59 6 335 4.8537 180.56340 569.01411 538.27825 -0.13246 5.28043 2.79171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50169 0.19877 -1.00000 - 11126 2017 8 21 14 59 11 189 4.8537 180.56429 569.06613 538.32206 -0.13234 5.27982 2.79415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50134 0.19877 -1.00000 - 11127 2017 8 21 14 59 16 42 4.8537 180.56517 569.11959 538.36566 -0.13221 5.28147 2.79372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50098 0.19877 -1.00000 - 11128 2017 8 21 14 59 20 896 4.8536 180.56606 569.17597 538.40920 -0.13206 5.28314 2.79347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50063 0.19877 -1.00000 - 11129 2017 8 21 14 59 25 750 4.8536 180.56695 569.22638 538.45263 -0.13190 5.28628 2.79808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50028 0.19877 -1.00000 - 11130 2017 8 21 14 59 30 603 4.8536 180.56785 569.27199 538.49588 -0.13172 5.29120 2.79891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49992 0.19877 -1.00000 - 11131 2017 8 21 14 59 35 457 4.8535 180.56874 569.32325 538.53903 -0.13155 5.29753 2.80114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49957 0.19877 -1.00000 - 11132 2017 8 21 14 59 40 310 4.8535 180.56963 569.37403 538.58214 -0.13137 5.30718 2.80661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49922 0.19877 -1.00000 - 11133 2017 8 21 14 59 45 164 4.8535 180.57052 569.42606 538.62503 -0.13119 5.31801 2.80813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49887 0.19877 -1.00000 - 11134 2017 8 21 14 59 50 17 4.8535 180.57142 569.48116 538.66775 -0.13103 5.32748 2.81024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49851 0.19877 -1.00000 - 11135 2017 8 21 14 59 54 871 4.8534 180.57231 569.52800 538.71044 -0.13088 5.33686 2.81441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49816 0.19877 -1.00000 - 11136 2017 8 21 14 59 59 724 4.8534 180.57320 569.57482 538.75306 -0.13074 5.34673 2.81596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49781 0.19877 -1.00000 - 11137 2017 8 21 15 0 4 577 4.8534 180.57410 569.62505 538.79579 -0.13063 5.35719 2.81737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49745 0.19877 -1.00000 - 11138 2017 8 21 15 0 9 431 4.8533 180.57499 569.67351 538.83855 -0.13052 5.36956 2.82080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49710 0.19877 -1.00000 - 11139 2017 8 21 15 0 14 284 4.8533 180.57589 569.72160 538.88125 -0.13043 5.39630 2.82072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49675 0.19877 -1.00000 - 11140 2017 8 21 15 0 19 137 4.8533 180.57679 569.77678 538.92406 -0.13033 5.42731 2.82411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49640 0.19877 -1.00000 - 11141 2017 8 21 15 0 23 990 4.8532 180.57768 569.82640 538.96688 -0.13023 5.45859 2.82700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49604 0.19877 -1.00000 - 11142 2017 8 21 15 0 28 844 4.8532 180.57858 569.87810 539.00974 -0.13012 5.48758 2.82739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49569 0.19877 -1.00000 - 11143 2017 8 21 15 0 33 697 4.8532 180.57948 569.92758 539.05277 -0.13000 5.51495 2.83230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49534 0.19877 -1.00000 - 11144 2017 8 21 15 0 38 550 4.8531 180.58038 569.97292 539.09582 -0.12987 5.54337 2.83424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49498 0.19877 -1.00000 - 11145 2017 8 21 15 0 43 403 4.8531 180.58128 570.02261 539.13885 -0.12973 5.57143 2.83425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49463 0.19877 -1.00000 - 11146 2017 8 21 15 0 48 256 4.8531 180.58218 570.07842 539.18201 -0.12959 5.59860 2.83842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49428 0.19877 -1.00000 - 11147 2017 8 21 15 0 53 109 4.8530 180.58309 570.12610 539.22524 -0.12946 5.62564 2.84081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49392 0.19877 -1.00000 - 11148 2017 8 21 15 0 57 962 4.8530 180.58399 570.17920 539.26859 -0.12934 5.64969 2.83991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49357 0.19877 -1.00000 - 11149 2017 8 21 15 1 2 815 4.8530 180.58489 570.22645 539.31207 -0.12923 5.66953 2.84527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49322 0.19877 -1.00000 - 11150 2017 8 21 15 1 7 668 4.8529 180.58580 570.27332 539.35548 -0.12912 5.66957 2.84705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49287 0.19877 -1.00000 - 11151 2017 8 21 15 1 12 521 4.8529 180.58670 570.32867 539.39890 -0.12901 5.69360 2.84727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49251 0.19877 -1.00000 - 11152 2017 8 21 15 1 17 374 4.8529 180.58761 570.38490 539.44251 -0.12888 5.72150 2.85093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49216 0.19876 -1.00000 - 11153 2017 8 21 15 1 22 227 4.8529 180.58851 570.42987 539.48613 -0.12873 5.75209 2.85290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49181 0.19876 -1.00000 - 11154 2017 8 21 15 1 27 80 4.8528 180.58942 570.48259 539.52995 -0.12854 5.78009 2.85454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49145 0.19876 -1.00000 - 11155 2017 8 21 15 1 31 932 4.8528 180.59033 570.53389 539.57397 -0.12832 5.80551 2.85890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49110 0.19876 -1.00000 - 11156 2017 8 21 15 1 36 785 4.8528 180.59124 570.58067 539.61783 -0.12808 5.82730 2.86037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49075 0.19876 -1.00000 - 11157 2017 8 21 15 1 41 638 4.8527 180.59215 570.63513 539.66180 -0.12782 5.84399 2.86324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49040 0.19876 -1.00000 - 11158 2017 8 21 15 1 46 491 4.8527 180.59306 570.69189 539.70595 -0.12755 5.85662 2.86925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49004 0.19876 -1.00000 - 11159 2017 8 21 15 1 51 343 4.8527 180.59397 570.73804 539.75002 -0.12729 5.86766 2.86981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48969 0.19876 -1.00000 - 11160 2017 8 21 15 1 56 196 4.8526 180.59488 570.79207 539.79414 -0.12705 5.87729 2.87276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48934 0.19876 -1.00000 - 11161 2017 8 21 15 2 1 48 4.8526 180.59580 570.84279 539.83832 -0.12683 5.88587 2.87833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48898 0.19876 -1.00000 - 11162 2017 8 21 15 2 5 901 4.8526 180.59672 570.88932 539.88239 -0.12664 5.89320 2.88031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48863 0.19876 -1.00000 - 11163 2017 8 21 15 2 10 754 4.8525 180.59763 570.94325 539.92651 -0.12647 5.89945 2.88347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48828 0.19876 -1.00000 - 11164 2017 8 21 15 2 15 606 4.8525 180.59855 570.99342 539.97062 -0.12631 5.90491 2.89030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48793 0.19876 -1.00000 - 11165 2017 8 21 15 2 20 459 4.8525 180.59947 571.04535 540.01469 -0.12613 5.90995 2.89409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48757 0.19876 -1.00000 - 11166 2017 8 21 15 2 25 311 4.8524 180.60040 571.10124 540.05878 -0.12593 5.91505 2.89800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48722 0.19876 -1.00000 - 11167 2017 8 21 15 2 30 163 4.8524 180.60132 571.15208 540.10286 -0.12570 5.92061 2.90404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48687 0.19876 -1.00000 - 11168 2017 8 21 15 2 35 16 4.8524 180.60225 571.19942 540.14674 -0.12543 5.92998 2.90879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48651 0.19876 -1.00000 - 11169 2017 8 21 15 2 39 868 4.8524 180.60317 571.25015 540.19054 -0.12515 5.93964 2.91463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48616 0.19876 -1.00000 - 11170 2017 8 21 15 2 44 720 4.8523 180.60410 571.30156 540.23433 -0.12486 5.94965 2.92075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48581 0.19876 -1.00000 - 11171 2017 8 21 15 2 49 573 4.8523 180.60503 571.35253 540.27802 -0.12457 5.96012 2.92614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48546 0.19876 -1.00000 - 11172 2017 8 21 15 2 54 425 4.8523 180.60595 571.40356 540.32172 -0.12431 5.97119 2.93146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48510 0.19876 -1.00000 - 11173 2017 8 21 15 2 59 277 4.8522 180.60688 571.45208 540.36529 -0.12406 5.98306 2.93682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48475 0.19876 -1.00000 - 11174 2017 8 21 15 3 4 129 4.8522 180.60781 571.50252 540.40884 -0.12384 5.99588 2.94123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48440 0.19876 -1.00000 - 11175 2017 8 21 15 3 8 982 4.8522 180.60874 571.55274 540.45238 -0.12363 6.00979 2.94857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48404 0.19876 -1.00000 - 11176 2017 8 21 15 3 13 834 4.8521 180.60967 571.60460 540.49584 -0.12341 6.02489 2.95286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48369 0.19876 -1.00000 - 11177 2017 8 21 15 3 18 686 4.8521 180.61060 571.65998 540.53935 -0.12318 6.04120 2.95637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48334 0.19876 -1.00000 - 11178 2017 8 21 15 3 23 538 4.8521 180.61153 571.70956 540.58281 -0.12292 6.05874 2.96324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48299 0.19876 -1.00000 - 11179 2017 8 21 15 3 28 390 4.8520 180.61246 571.75442 540.62608 -0.12263 6.07741 2.96668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48263 0.19876 -1.00000 - 11180 2017 8 21 15 3 33 242 4.8520 180.61339 571.80475 540.66931 -0.12240 6.09717 2.97169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48228 0.19875 -1.00000 - 11181 2017 8 21 15 3 38 94 4.8520 180.61433 571.85457 540.71250 -0.12217 6.11800 2.97696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48193 0.19875 -1.00000 - 11182 2017 8 21 15 3 42 946 4.8520 180.61526 571.90494 540.75563 -0.12194 6.14009 2.97886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48157 0.19875 -1.00000 - 11183 2017 8 21 15 3 47 798 4.8519 180.61619 571.96280 540.79895 -0.12171 6.16320 2.98180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48122 0.19875 -1.00000 - 11184 2017 8 21 15 3 52 650 4.8519 180.61712 572.00582 540.84229 -0.12152 6.18563 2.98289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48087 0.19875 -1.00000 - 11185 2017 8 21 15 3 57 502 4.8519 180.61805 572.05461 540.88573 -0.12138 6.20489 2.98280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48052 0.19875 -1.00000 - 11186 2017 8 21 15 4 2 353 4.8518 180.61899 572.10974 540.92927 -0.12130 6.22186 2.98545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48016 0.19875 -1.00000 - 11187 2017 8 21 15 4 7 205 4.8518 180.61992 572.15920 540.97289 -0.12132 6.23731 2.98392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47981 0.19875 -1.00000 - 11188 2017 8 21 15 4 12 57 4.8518 180.62086 572.21390 541.01670 -0.12134 6.25101 2.98239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47946 0.19875 -1.00000 - 11189 2017 8 21 15 4 16 909 4.8517 180.62179 572.25862 541.06059 -0.12134 6.26376 2.98195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47910 0.19875 -1.00000 - 11190 2017 8 21 15 4 21 760 4.8517 180.62273 572.30855 541.10454 -0.12129 6.27262 2.97996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47875 0.19875 -1.00000 - 11191 2017 8 21 15 4 26 612 4.8517 180.62366 572.36354 541.14852 -0.12119 6.27613 2.98048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47840 0.19875 -1.00000 - 11192 2017 8 21 15 4 31 464 4.8516 180.62460 572.41537 541.19258 -0.12113 6.26707 2.97758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47805 0.19875 -1.00000 - 11193 2017 8 21 15 4 36 315 4.8516 180.62554 572.47176 541.23667 -0.12106 6.27563 2.97561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47769 0.19875 -1.00000 - 11194 2017 8 21 15 4 41 167 4.8516 180.62648 572.52138 541.28083 -0.12098 6.28096 2.97647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47734 0.19875 -1.00000 - 11195 2017 8 21 15 4 46 19 4.8516 180.62742 572.56818 541.32495 -0.12091 6.28388 2.97335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47699 0.19875 -1.00000 - 11196 2017 8 21 15 4 50 870 4.8515 180.62836 572.62456 541.36919 -0.12087 6.28422 2.97163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47663 0.19875 -1.00000 - 11197 2017 8 21 15 4 55 722 4.8515 180.62930 572.67637 541.41349 -0.12088 6.28193 2.97174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47628 0.19875 -1.00000 - 11198 2017 8 21 15 5 0 573 4.8515 180.63024 572.72527 541.45755 -0.12093 6.27627 2.96746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47593 0.19875 -1.00000 - 11199 2017 8 21 15 5 5 424 4.8514 180.63119 572.78139 541.50185 -0.12102 6.26644 2.96453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47558 0.19875 -1.00000 - 11200 2017 8 21 15 5 10 276 4.8514 180.63213 572.82875 541.54627 -0.12112 6.25215 2.96423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47522 0.19875 -1.00000 - 11201 2017 8 21 15 5 15 127 4.8514 180.63308 572.88038 541.59060 -0.12122 6.23343 2.96073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47487 0.19875 -1.00000 - 11202 2017 8 21 15 5 19 979 4.8513 180.63402 572.93622 541.63490 -0.12127 6.21051 2.95928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47452 0.19875 -1.00000 - 11203 2017 8 21 15 5 24 830 4.8513 180.63497 572.98735 541.67922 -0.12125 6.18375 2.95721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47416 0.19875 -1.00000 - 11204 2017 8 21 15 5 29 681 4.8513 180.63592 573.03497 541.72356 -0.12117 6.15357 2.95444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47381 0.19875 -1.00000 - 11205 2017 8 21 15 5 34 533 4.8513 180.63687 573.08665 541.76782 -0.12103 6.12039 2.95271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47346 0.19875 -1.00000 - 11206 2017 8 21 15 5 39 384 4.8512 180.63783 573.13565 541.81201 -0.12085 6.08466 2.95069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47311 0.19875 -1.00000 - 11207 2017 8 21 15 5 44 235 4.8512 180.63878 573.18799 541.85621 -0.12069 6.04679 2.95106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47275 0.19875 -1.00000 - 11208 2017 8 21 15 5 49 86 4.8512 180.63974 573.24013 541.90027 -0.12059 6.00723 2.94821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47240 0.19874 -1.00000 - 11209 2017 8 21 15 5 53 937 4.8511 180.64070 573.29178 541.94431 -0.12056 5.96647 2.94661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47205 0.19874 -1.00000 - 11210 2017 8 21 15 5 58 788 4.8511 180.64165 573.34338 541.98825 -0.12059 5.92520 2.94442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47170 0.19874 -1.00000 - 11211 2017 8 21 15 6 3 639 4.8511 180.64261 573.39400 542.03219 -0.12061 5.88416 2.94316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47134 0.19874 -1.00000 - 11212 2017 8 21 15 6 8 491 4.8511 180.64357 573.44513 542.07610 -0.12058 5.85067 2.94190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47099 0.19874 -1.00000 - 11213 2017 8 21 15 6 13 342 4.8510 180.64454 573.49608 542.12004 -0.12047 5.82150 2.94118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47064 0.19874 -1.00000 - 11214 2017 8 21 15 6 18 193 4.8510 180.64550 573.54786 542.16384 -0.12028 5.79500 2.94111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47028 0.19874 -1.00000 - 11215 2017 8 21 15 6 23 43 4.8510 180.64647 573.60340 542.20755 -0.12005 5.77134 2.93895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46993 0.19874 -1.00000 - 11216 2017 8 21 15 6 27 894 4.8509 180.64744 573.65341 542.25118 -0.11981 5.75070 2.93931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46958 0.19874 -1.00000 - 11217 2017 8 21 15 6 32 745 4.8509 180.64841 573.69916 542.29480 -0.11958 5.73310 2.93815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46923 0.19874 -1.00000 - 11218 2017 8 21 15 6 37 596 4.8509 180.64938 573.75055 542.33846 -0.11936 5.72091 2.93723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46887 0.19874 -1.00000 - 11219 2017 8 21 15 6 42 447 4.8508 180.65035 573.80161 542.38212 -0.11914 5.71709 2.93700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46852 0.19874 -1.00000 - 11220 2017 8 21 15 6 47 298 4.8508 180.65132 573.85285 542.42565 -0.11890 5.71063 2.93553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46817 0.19874 -1.00000 - 11221 2017 8 21 15 6 52 149 4.8508 180.65229 573.90818 542.46920 -0.11864 5.70314 2.93352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46781 0.19874 -1.00000 - 11222 2017 8 21 15 6 56 999 4.8508 180.65326 573.95816 542.51278 -0.11836 5.69558 2.93466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46746 0.19874 -1.00000 - 11223 2017 8 21 15 7 1 850 4.8507 180.65423 574.00475 542.55628 -0.11808 5.68729 2.93316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46711 0.19874 -1.00000 - 11224 2017 8 21 15 7 6 701 4.8507 180.65520 574.05563 542.59978 -0.11779 5.68124 2.93047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46676 0.19874 -1.00000 - 11225 2017 8 21 15 7 11 551 4.8507 180.65617 574.10654 542.64339 -0.11751 5.68008 2.93149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46640 0.19874 -1.00000 - 11226 2017 8 21 15 7 16 402 4.8506 180.65714 574.15473 542.68701 -0.11723 5.68146 2.92844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46605 0.19874 -1.00000 - 11227 2017 8 21 15 7 21 253 4.8506 180.65811 574.20955 542.73070 -0.11695 5.68445 2.92501 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46570 0.19874 -1.00000 - 11228 2017 8 21 15 7 26 103 4.8506 180.65908 574.26049 542.77451 -0.11665 5.68653 2.92595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46535 0.19874 -1.00000 - 11229 2017 8 21 15 7 30 954 4.8505 180.66005 574.31020 542.81835 -0.11636 5.68843 2.92244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46499 0.19874 -1.00000 - 11230 2017 8 21 15 7 35 804 4.8505 180.66103 574.36175 542.86242 -0.11608 5.69092 2.91920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46464 0.19874 -1.00000 - 11231 2017 8 21 15 7 40 655 4.8505 180.66200 574.41297 542.90652 -0.11582 5.69337 2.92005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46429 0.19874 -1.00000 - 11232 2017 8 21 15 7 45 505 4.8505 180.66297 574.46149 542.95054 -0.11559 5.69705 2.91550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46393 0.19874 -1.00000 - 11233 2017 8 21 15 7 50 356 4.8504 180.66394 574.51719 542.99480 -0.11537 5.70161 2.91247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46358 0.19874 -1.00000 - 11234 2017 8 21 15 7 55 206 4.8504 180.66491 574.56956 543.03920 -0.11516 5.70448 2.91237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46323 0.19874 -1.00000 - 11235 2017 8 21 15 8 0 56 4.8504 180.66587 574.62066 543.08353 -0.11493 5.68529 2.90880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46288 0.19874 -1.00000 - 11236 2017 8 21 15 8 4 907 4.8503 180.66684 574.67267 543.12808 -0.11469 5.67197 2.90751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46252 0.19873 -1.00000 - 11237 2017 8 21 15 8 9 757 4.8503 180.66781 574.72493 543.17271 -0.11444 5.68283 2.90718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46217 0.19873 -1.00000 - 11238 2017 8 21 15 8 14 607 4.8503 180.66879 574.77471 543.21723 -0.11422 5.69295 2.90332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46182 0.19873 -1.00000 - 11239 2017 8 21 15 8 19 458 4.8502 180.66976 574.83104 543.26199 -0.11405 5.70467 2.90340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46147 0.19873 -1.00000 - 11240 2017 8 21 15 8 24 308 4.8502 180.67074 574.87900 543.30685 -0.11395 5.71641 2.90392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46111 0.19873 -1.00000 - 11241 2017 8 21 15 8 29 158 4.8502 180.67172 574.93537 543.35170 -0.11394 5.72564 2.90081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46076 0.19873 -1.00000 - 11242 2017 8 21 15 8 34 8 4.8502 180.67270 574.98808 543.39663 -0.11401 5.71432 2.90243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46041 0.19873 -1.00000 - 11243 2017 8 21 15 8 38 858 4.8501 180.67367 575.04171 543.44151 -0.11409 5.72960 2.90152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46005 0.19873 -1.00000 - 11244 2017 8 21 15 8 43 708 4.8501 180.67465 575.09748 543.48643 -0.11414 5.73837 2.89939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45970 0.19873 -1.00000 - 11245 2017 8 21 15 8 48 559 4.8501 180.67563 575.14534 543.53141 -0.11413 5.74746 2.90051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45935 0.19873 -1.00000 - 11246 2017 8 21 15 8 53 409 4.8500 180.67661 575.19724 543.57628 -0.11403 5.75693 2.90047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45900 0.19873 -1.00000 - 11247 2017 8 21 15 8 58 259 4.8500 180.67759 575.25427 543.62137 -0.11388 5.76578 2.90120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45864 0.19873 -1.00000 - 11248 2017 8 21 15 9 3 109 4.8500 180.67858 575.30652 543.66648 -0.11373 5.77248 2.90353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45829 0.19873 -1.00000 - 11249 2017 8 21 15 9 7 959 4.8500 180.67956 575.35416 543.71141 -0.11361 5.76979 2.90250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45794 0.19873 -1.00000 - 11250 2017 8 21 15 9 12 808 4.8499 180.68054 575.40618 543.75638 -0.11357 5.77422 2.90446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45759 0.19873 -1.00000 - 11251 2017 8 21 15 9 17 658 4.8499 180.68153 575.45664 543.80132 -0.11363 5.78098 2.90793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45723 0.19873 -1.00000 - 11252 2017 8 21 15 9 22 508 4.8499 180.68251 575.51376 543.84624 -0.11377 5.79261 2.90835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45688 0.19873 -1.00000 - 11253 2017 8 21 15 9 27 358 4.8499 180.68350 575.56991 543.89115 -0.11395 5.80401 2.91091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45653 0.19873 -1.00000 - 11254 2017 8 21 15 9 32 208 4.8498 180.68449 575.61740 543.93605 -0.11414 5.81371 2.91193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45617 0.19873 -1.00000 - 11255 2017 8 21 15 9 37 58 4.8498 180.68548 575.66927 543.98092 -0.11429 5.82234 2.91276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45582 0.19873 -1.00000 - 11256 2017 8 21 15 9 41 907 4.8498 180.68646 575.72252 544.02576 -0.11439 5.83127 2.91591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45547 0.19873 -1.00000 - 11257 2017 8 21 15 9 46 757 4.8497 180.68745 575.77492 544.07044 -0.11442 5.84105 2.91723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45512 0.19873 -1.00000 - 11258 2017 8 21 15 9 51 607 4.8497 180.68845 575.83146 544.11529 -0.11440 5.85192 2.91868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45476 0.19873 -1.00000 - 11259 2017 8 21 15 9 56 457 4.8497 180.68944 575.88252 544.16024 -0.11435 5.86388 2.92218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45441 0.19873 -1.00000 - 11260 2017 8 21 15 10 1 306 4.8497 180.69044 575.93489 544.20509 -0.11430 5.87671 2.92257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45406 0.19873 -1.00000 - 11261 2017 8 21 15 10 6 156 4.8496 180.69144 575.98600 544.25007 -0.11427 5.89012 2.92572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45371 0.19873 -1.00000 - 11262 2017 8 21 15 10 11 5 4.8496 180.69244 576.03378 544.29494 -0.11428 5.90388 2.92875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45335 0.19873 -1.00000 - 11263 2017 8 21 15 10 15 855 4.8496 180.69345 576.08742 544.33971 -0.11430 5.91784 2.93050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45300 0.19873 -1.00000 - 11264 2017 8 21 15 10 20 705 4.8495 180.69445 576.14014 544.38458 -0.11434 5.93194 2.93396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45265 0.19872 -1.00000 - 11265 2017 8 21 15 10 25 554 4.8495 180.69545 576.19583 544.42951 -0.11436 5.94645 2.93534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45230 0.19872 -1.00000 - 11266 2017 8 21 15 10 30 404 4.8495 180.69645 576.24645 544.47434 -0.11434 5.96068 2.93666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45194 0.19872 -1.00000 - 11267 2017 8 21 15 10 35 253 4.8495 180.69745 576.29763 544.51916 -0.11429 5.97217 2.93875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45159 0.19872 -1.00000 - 11268 2017 8 21 15 10 40 102 4.8494 180.69845 576.34847 544.56409 -0.11420 5.98077 2.93998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45124 0.19872 -1.00000 - 11269 2017 8 21 15 10 44 952 4.8494 180.69945 576.40564 544.60907 -0.11407 5.96519 2.94021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45088 0.19872 -1.00000 - 11270 2017 8 21 15 10 49 801 4.8494 180.70046 576.45714 544.65399 -0.11393 5.95586 2.94117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45053 0.19872 -1.00000 - 11271 2017 8 21 15 10 54 651 4.8493 180.70146 576.51228 544.69892 -0.11378 5.96410 2.94068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45018 0.19872 -1.00000 - 11272 2017 8 21 15 10 59 500 4.8493 180.70247 576.56328 544.74399 -0.11363 5.97263 2.94272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44983 0.19872 -1.00000 - 11273 2017 8 21 15 11 4 349 4.8493 180.70347 576.61182 544.78898 -0.11349 5.97846 2.94162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44947 0.19872 -1.00000 - 11274 2017 8 21 15 11 9 198 4.8493 180.70448 576.66889 544.83397 -0.11336 5.98098 2.94167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44912 0.19872 -1.00000 - 11275 2017 8 21 15 11 14 48 4.8492 180.70548 576.72142 544.87916 -0.11323 5.98022 2.94515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44877 0.19872 -1.00000 - 11276 2017 8 21 15 11 18 897 4.8492 180.70649 576.77129 544.92427 -0.11310 5.97730 2.94440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44842 0.19872 -1.00000 - 11277 2017 8 21 15 11 23 746 4.8492 180.70749 576.82832 544.96942 -0.11295 5.97403 2.94362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44806 0.19872 -1.00000 - 11278 2017 8 21 15 11 28 595 4.8491 180.70849 576.88119 545.01462 -0.11278 5.97036 2.94884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44771 0.19872 -1.00000 - 11279 2017 8 21 15 11 33 444 4.8491 180.70949 576.92937 545.05962 -0.11257 5.96601 2.94969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44736 0.19872 -1.00000 - 11280 2017 8 21 15 11 38 293 4.8491 180.71050 576.98723 545.10477 -0.11235 5.96089 2.94908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44701 0.19872 -1.00000 - 11281 2017 8 21 15 11 43 142 4.8491 180.71150 577.03976 545.14993 -0.11211 5.95510 2.95515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44665 0.19872 -1.00000 - 11282 2017 8 21 15 11 47 991 4.8490 180.71250 577.08790 545.19484 -0.11188 5.94874 2.95547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44630 0.19872 -1.00000 - 11283 2017 8 21 15 11 52 840 4.8490 180.71351 577.14493 545.23977 -0.11168 5.94200 2.95628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44595 0.19872 -1.00000 - 11284 2017 8 21 15 11 57 689 4.8490 180.71451 577.19796 545.28472 -0.11150 5.93511 2.96129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44560 0.19872 -1.00000 - 11285 2017 8 21 15 12 2 538 4.8489 180.71552 577.24495 545.32942 -0.11136 5.92822 2.96354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44524 0.19872 -1.00000 - 11286 2017 8 21 15 12 7 387 4.8489 180.71652 577.29477 545.37417 -0.11122 5.92148 2.96645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44489 0.19872 -1.00000 - 11287 2017 8 21 15 12 12 236 4.8489 180.71752 577.34728 545.41900 -0.11108 5.91510 2.97114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44454 0.19872 -1.00000 - 11288 2017 8 21 15 12 17 85 4.8489 180.71853 577.39948 545.46363 -0.11091 5.90930 2.97395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44418 0.19872 -1.00000 - 11289 2017 8 21 15 12 21 934 4.8488 180.71954 577.45122 545.50817 -0.11073 5.90429 2.97982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44383 0.19872 -1.00000 - 11290 2017 8 21 15 12 26 783 4.8488 180.72054 577.50294 545.55259 -0.11051 5.90032 2.98613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44348 0.19872 -1.00000 - 11291 2017 8 21 15 12 31 631 4.8488 180.72155 577.55466 545.59686 -0.11028 5.89771 2.99117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44313 0.19872 -1.00000 - 11292 2017 8 21 15 12 36 480 4.8487 180.72256 577.60590 545.64092 -0.11005 5.89676 2.99778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44277 0.19871 -1.00000 - 11293 2017 8 21 15 12 41 329 4.8487 180.72357 577.65687 545.68477 -0.10986 5.89767 3.00387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44242 0.19871 -1.00000 - 11294 2017 8 21 15 12 46 178 4.8487 180.72458 577.70754 545.72842 -0.10971 5.90066 3.01075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44207 0.19871 -1.00000 - 11295 2017 8 21 15 12 51 26 4.8487 180.72559 577.75803 545.77193 -0.10961 5.90594 3.01831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44172 0.19871 -1.00000 - 11296 2017 8 21 15 12 55 875 4.8486 180.72661 577.80839 545.81522 -0.10954 5.91369 3.02576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44136 0.19871 -1.00000 - 11297 2017 8 21 15 13 0 724 4.8486 180.72762 577.85840 545.85829 -0.10950 5.92399 3.03259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44101 0.19871 -1.00000 - 11298 2017 8 21 15 13 5 572 4.8486 180.72864 577.90805 545.90116 -0.10946 5.93679 3.03965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44066 0.19871 -1.00000 - 11299 2017 8 21 15 13 10 421 4.8486 180.72966 577.95745 545.94388 -0.10941 5.95196 3.04569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44031 0.19871 -1.00000 - 11300 2017 8 21 15 13 15 269 4.8485 180.73068 578.00658 545.98649 -0.10933 5.96932 3.05232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43995 0.19871 -1.00000 - 11301 2017 8 21 15 13 20 118 4.8485 180.73170 578.05507 546.02895 -0.10924 5.98863 3.05669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43960 0.19871 -1.00000 - 11302 2017 8 21 15 13 24 966 4.8485 180.73272 578.10263 546.07138 -0.10915 6.00959 3.06054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43925 0.19871 -1.00000 - 11303 2017 8 21 15 13 29 815 4.8485 180.73375 578.15106 546.11383 -0.10908 6.03185 3.06314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43890 0.19871 -1.00000 - 11304 2017 8 21 15 13 34 663 4.8484 180.73478 578.20060 546.15644 -0.10902 6.05503 3.06484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43854 0.19871 -1.00000 - 11305 2017 8 21 15 13 39 511 4.8484 180.73580 578.24770 546.19920 -0.10899 6.07880 3.06899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43819 0.19871 -1.00000 - 11306 2017 8 21 15 13 44 360 4.8484 180.73683 578.29351 546.24195 -0.10897 6.10287 3.06946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43784 0.19871 -1.00000 - 11307 2017 8 21 15 13 49 208 4.8483 180.73786 578.34652 546.28486 -0.10894 6.12700 3.07030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43749 0.19871 -1.00000 - 11308 2017 8 21 15 13 54 57 4.8483 180.73889 578.39523 546.32807 -0.10889 6.15108 3.07089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43713 0.19871 -1.00000 - 11309 2017 8 21 15 13 58 905 4.8483 180.73992 578.44474 546.37153 -0.10882 6.17534 3.06976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43678 0.19871 -1.00000 - 11310 2017 8 21 15 14 3 753 4.8483 180.74095 578.49357 546.41514 -0.10871 6.19923 3.06937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43643 0.19871 -1.00000 - 11311 2017 8 21 15 14 8 601 4.8482 180.74198 578.54346 546.45886 -0.10858 6.21991 3.07008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43608 0.19871 -1.00000 - 11312 2017 8 21 15 14 13 450 4.8482 180.74301 578.59772 546.50272 -0.10844 6.21630 3.06819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43572 0.19871 -1.00000 - 11313 2017 8 21 15 14 18 298 4.8482 180.74404 578.64834 546.54688 -0.10830 6.21603 3.06667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43537 0.19871 -1.00000 - 11314 2017 8 21 15 14 23 146 4.8482 180.74508 578.69529 546.59110 -0.10817 6.23945 3.06599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43502 0.19871 -1.00000 - 11315 2017 8 21 15 14 27 994 4.8481 180.74611 578.75062 546.63555 -0.10805 6.25911 3.06281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43466 0.19871 -1.00000 - 11316 2017 8 21 15 14 32 842 4.8481 180.74714 578.80212 546.68016 -0.10792 6.27519 3.06343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43431 0.19871 -1.00000 - 11317 2017 8 21 15 14 37 690 4.8481 180.74817 578.85247 546.72477 -0.10780 6.28625 3.06062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43396 0.19871 -1.00000 - 11318 2017 8 21 15 14 42 538 4.8480 180.74920 578.90459 546.76962 -0.10766 6.29925 3.05923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43361 0.19871 -1.00000 - 11319 2017 8 21 15 14 47 386 4.8480 180.75023 578.95578 546.81469 -0.10751 6.31128 3.05882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43325 0.19871 -1.00000 - 11320 2017 8 21 15 14 52 234 4.8480 180.75126 579.00617 546.85995 -0.10735 6.32032 3.05506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43290 0.19870 -1.00000 - 11321 2017 8 21 15 14 57 82 4.8480 180.75229 579.06330 546.90537 -0.10719 6.32675 3.05375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43255 0.19870 -1.00000 - 11322 2017 8 21 15 15 1 930 4.8479 180.75333 579.11415 546.95095 -0.10702 6.33091 3.05254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43220 0.19870 -1.00000 - 11323 2017 8 21 15 15 6 778 4.8479 180.75436 579.16936 546.99661 -0.10686 6.33344 3.04903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43184 0.19870 -1.00000 - 11324 2017 8 21 15 15 11 626 4.8479 180.75539 579.22329 547.04256 -0.10670 6.33384 3.04726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43149 0.19870 -1.00000 - 11325 2017 8 21 15 15 16 474 4.8479 180.75643 579.27741 547.08854 -0.10653 6.33124 3.04709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43114 0.19870 -1.00000 - 11326 2017 8 21 15 15 21 322 4.8478 180.75746 579.33077 547.13445 -0.10637 6.32702 3.04290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43079 0.19870 -1.00000 - 11327 2017 8 21 15 15 26 169 4.8478 180.75849 579.38904 547.18056 -0.10620 6.32079 3.04114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43043 0.19870 -1.00000 - 11328 2017 8 21 15 15 31 17 4.8478 180.75953 579.43836 547.22679 -0.10603 6.31265 3.04079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43008 0.19870 -1.00000 - 11329 2017 8 21 15 15 35 865 4.8477 180.76056 579.49136 547.27302 -0.10585 6.30286 3.03691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42973 0.19870 -1.00000 - 11330 2017 8 21 15 15 40 713 4.8477 180.76160 579.54602 547.31933 -0.10566 6.29170 3.03669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42938 0.19870 -1.00000 - 11331 2017 8 21 15 15 45 560 4.8477 180.76263 579.60082 547.36561 -0.10547 6.27951 3.03567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42902 0.19870 -1.00000 - 11332 2017 8 21 15 15 50 408 4.8477 180.76367 579.65342 547.41180 -0.10528 6.26659 3.03321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42867 0.19870 -1.00000 - 11333 2017 8 21 15 15 55 256 4.8476 180.76471 579.70868 547.45802 -0.10510 6.25498 3.03280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42832 0.19870 -1.00000 - 11334 2017 8 21 15 16 0 103 4.8476 180.76575 579.76363 547.50414 -0.10493 6.24363 3.03346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42797 0.19870 -1.00000 - 11335 2017 8 21 15 16 4 951 4.8476 180.76679 579.81831 547.55023 -0.10478 6.23177 3.03264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42761 0.19870 -1.00000 - 11336 2017 8 21 15 16 9 798 4.8476 180.76783 579.87287 547.59629 -0.10466 6.21958 3.03274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42726 0.19870 -1.00000 - 11337 2017 8 21 15 16 14 646 4.8475 180.76887 579.92719 547.64218 -0.10457 6.20720 3.03370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42691 0.19870 -1.00000 - 11338 2017 8 21 15 16 19 493 4.8475 180.76992 579.98156 547.68780 -0.10449 6.19472 3.03374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42656 0.19870 -1.00000 - 11339 2017 8 21 15 16 24 341 4.8475 180.77096 580.03536 547.73322 -0.10441 6.18220 3.03474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42620 0.19870 -1.00000 - 11340 2017 8 21 15 16 29 188 4.8475 180.77201 580.08892 547.77840 -0.10433 6.16963 3.03643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42585 0.19870 -1.00000 - 11341 2017 8 21 15 16 34 36 4.8474 180.77305 580.14228 547.82333 -0.10423 6.15701 3.03559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42550 0.19870 -1.00000 - 11342 2017 8 21 15 16 38 883 4.8474 180.77410 580.19555 547.86815 -0.10411 6.14433 3.03457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42515 0.19870 -1.00000 - 11343 2017 8 21 15 16 43 731 4.8474 180.77515 580.24360 547.91284 -0.10397 6.13157 3.03224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42479 0.19870 -1.00000 - 11344 2017 8 21 15 16 48 578 4.8474 180.77620 580.29515 547.95747 -0.10383 6.11870 3.02872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42444 0.19870 -1.00000 - 11345 2017 8 21 15 16 53 425 4.8473 180.77725 580.34557 548.00207 -0.10370 6.10576 3.02904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42409 0.19870 -1.00000 - 11346 2017 8 21 15 16 58 273 4.8473 180.77831 580.40308 548.04657 -0.10358 6.09275 3.02330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42374 0.19870 -1.00000 - 11347 2017 8 21 15 17 3 120 4.8473 180.77936 580.45823 548.09104 -0.10348 6.07969 3.01955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42338 0.19870 -1.00000 - 11348 2017 8 21 15 17 7 967 4.8473 180.78041 580.50987 548.13541 -0.10340 6.06663 3.01689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42303 0.19869 -1.00000 - 11349 2017 8 21 15 17 12 814 4.8472 180.78147 580.55854 548.17969 -0.10333 6.05359 3.01047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42268 0.19869 -1.00000 - 11350 2017 8 21 15 17 17 662 4.8472 180.78252 580.60981 548.22408 -0.10326 6.04079 3.00590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42233 0.19869 -1.00000 - 11351 2017 8 21 15 17 22 509 4.8472 180.78358 580.65715 548.26857 -0.10318 6.02784 3.00195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42197 0.19869 -1.00000 - 11352 2017 8 21 15 17 27 356 4.8472 180.78464 580.71397 548.31289 -0.10309 6.01328 2.99521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42162 0.19869 -1.00000 - 11353 2017 8 21 15 17 32 203 4.8471 180.78569 580.76860 548.35728 -0.10299 5.99601 2.99138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42127 0.19869 -1.00000 - 11354 2017 8 21 15 17 37 50 4.8471 180.78675 580.81957 548.40158 -0.10289 5.97802 2.98859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42092 0.19869 -1.00000 - 11355 2017 8 21 15 17 41 897 4.8471 180.78781 580.86805 548.44586 -0.10281 5.94073 2.98060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42056 0.19869 -1.00000 - 11356 2017 8 21 15 17 46 744 4.8470 180.78887 580.91889 548.49022 -0.10275 5.92273 2.97628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42021 0.19869 -1.00000 - 11357 2017 8 21 15 17 51 591 4.8470 180.78993 580.96621 548.53464 -0.10272 5.90691 2.97120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41986 0.19869 -1.00000 - 11358 2017 8 21 15 17 56 438 4.8470 180.79099 581.02286 548.57902 -0.10271 5.89139 2.96453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41951 0.19869 -1.00000 - 11359 2017 8 21 15 18 1 285 4.8470 180.79204 581.07715 548.62346 -0.10272 5.87298 2.96018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41915 0.19869 -1.00000 - 11360 2017 8 21 15 18 6 132 4.8469 180.79310 581.12772 548.66791 -0.10274 5.85031 2.95535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41880 0.19869 -1.00000 - 11361 2017 8 21 15 18 10 979 4.8469 180.79416 581.17770 548.71250 -0.10275 5.82623 2.94925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41845 0.19869 -1.00000 - 11362 2017 8 21 15 18 15 826 4.8469 180.79522 581.22873 548.75736 -0.10276 5.79861 2.94608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41810 0.19869 -1.00000 - 11363 2017 8 21 15 18 20 673 4.8469 180.79627 581.27608 548.80218 -0.10274 5.77251 2.94062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41774 0.19869 -1.00000 - 11364 2017 8 21 15 18 25 520 4.8468 180.79733 581.33301 548.84706 -0.10271 5.74561 2.93379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41739 0.19869 -1.00000 - 11365 2017 8 21 15 18 30 367 4.8468 180.79839 581.38717 548.89212 -0.10266 5.71706 2.93296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41704 0.19869 -1.00000 - 11366 2017 8 21 15 18 35 213 4.8468 180.79945 581.43702 548.93711 -0.10261 5.68513 2.92708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41669 0.19869 -1.00000 - 11367 2017 8 21 15 18 40 60 4.8468 180.80051 581.48794 548.98218 -0.10256 5.65510 2.92242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41633 0.19869 -1.00000 - 11368 2017 8 21 15 18 44 907 4.8467 180.80157 581.53638 549.02757 -0.10250 5.62639 2.91960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41598 0.19869 -1.00000 - 11369 2017 8 21 15 18 49 754 4.8467 180.80264 581.59225 549.07304 -0.10244 5.58954 2.91418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41563 0.19869 -1.00000 - 11370 2017 8 21 15 18 54 600 4.8467 180.80370 581.64807 549.11864 -0.10238 5.56206 2.91170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41528 0.19869 -1.00000 - 11371 2017 8 21 15 18 59 447 4.8467 180.80476 581.70554 549.16432 -0.10231 5.53368 2.90917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41492 0.19869 -1.00000 - 11372 2017 8 21 15 19 4 294 4.8466 180.80583 581.75337 549.21008 -0.10222 5.48489 2.90424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41457 0.19869 -1.00000 - 11373 2017 8 21 15 19 9 140 4.8466 180.80689 581.80497 549.25597 -0.10212 5.46228 2.90437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41422 0.19869 -1.00000 - 11374 2017 8 21 15 19 13 987 4.8466 180.80796 581.85599 549.30194 -0.10200 5.44129 2.90275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41387 0.19869 -1.00000 - 11375 2017 8 21 15 19 18 833 4.8466 180.80903 581.91548 549.34796 -0.10187 5.42480 2.90036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41351 0.19868 -1.00000 - 11376 2017 8 21 15 19 23 680 4.8465 180.81010 581.96838 549.39402 -0.10174 5.41978 2.90302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41316 0.19868 -1.00000 - 11377 2017 8 21 15 19 28 526 4.8465 180.81117 582.01890 549.44003 -0.10160 5.42438 2.90385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41281 0.19868 -1.00000 - 11378 2017 8 21 15 19 33 373 4.8465 180.81225 582.07432 549.48623 -0.10145 5.43343 2.90616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41246 0.19868 -1.00000 - 11379 2017 8 21 15 19 38 219 4.8465 180.81332 582.12818 549.53255 -0.10131 5.44692 2.91007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41210 0.19868 -1.00000 - 11380 2017 8 21 15 19 43 66 4.8464 180.81440 582.18140 549.57870 -0.10117 5.46420 2.91303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41175 0.19868 -1.00000 - 11381 2017 8 21 15 19 47 912 4.8464 180.81548 582.23973 549.62483 -0.10103 5.48456 2.91659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41140 0.19868 -1.00000 - 11382 2017 8 21 15 19 52 759 4.8464 180.81656 582.29252 549.67091 -0.10089 5.50755 2.92437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41105 0.19868 -1.00000 - 11383 2017 8 21 15 19 57 605 4.8464 180.81764 582.34422 549.71688 -0.10073 5.53308 2.92899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41069 0.19868 -1.00000 - 11384 2017 8 21 15 20 2 451 4.8463 180.81872 582.39780 549.76272 -0.10056 5.56108 2.93554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41034 0.19868 -1.00000 - 11385 2017 8 21 15 20 7 298 4.8463 180.81980 582.45005 549.80848 -0.10036 5.59143 2.94330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40999 0.19868 -1.00000 - 11386 2017 8 21 15 20 12 144 4.8463 180.82088 582.50333 549.85408 -0.10013 5.62393 2.94972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40964 0.19868 -1.00000 - 11387 2017 8 21 15 20 16 990 4.8463 180.82197 582.55715 549.89956 -0.09989 5.65836 2.95753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40929 0.19868 -1.00000 - 11388 2017 8 21 15 20 21 836 4.8462 180.82305 582.61011 549.94502 -0.09963 5.69452 2.96507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40893 0.19868 -1.00000 - 11389 2017 8 21 15 20 26 683 4.8462 180.82414 582.66278 549.99040 -0.09935 5.73216 2.97350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40858 0.19868 -1.00000 - 11390 2017 8 21 15 20 31 529 4.8462 180.82522 582.71540 550.03572 -0.09908 5.77100 2.98123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40823 0.19868 -1.00000 - 11391 2017 8 21 15 20 36 375 4.8462 180.82630 582.76716 550.08087 -0.09882 5.81072 2.98774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40788 0.19868 -1.00000 - 11392 2017 8 21 15 20 41 221 4.8461 180.82739 582.82321 550.12608 -0.09856 5.85075 2.99336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40752 0.19868 -1.00000 - 11393 2017 8 21 15 20 46 67 4.8461 180.82847 582.86906 550.17138 -0.09832 5.89056 2.99927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40717 0.19868 -1.00000 - 11394 2017 8 21 15 20 50 913 4.8461 180.82955 582.92290 550.21680 -0.09808 5.93032 3.00453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40682 0.19868 -1.00000 - 11395 2017 8 21 15 20 55 759 4.8461 180.83064 582.98034 550.26223 -0.09785 5.98204 3.01211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40647 0.19868 -1.00000 - 11396 2017 8 21 15 21 0 605 4.8460 180.83172 583.03118 550.30758 -0.09763 6.04507 3.01646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40611 0.19868 -1.00000 - 11397 2017 8 21 15 21 5 451 4.8460 180.83280 583.08723 550.35314 -0.09742 6.10921 3.02221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40576 0.19868 -1.00000 - 11398 2017 8 21 15 21 10 297 4.8460 180.83389 583.13283 550.39860 -0.09721 6.17339 3.02719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40541 0.19868 -1.00000 - 11399 2017 8 21 15 21 15 143 4.8460 180.83497 583.18649 550.44412 -0.09701 6.23407 3.03174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40506 0.19868 -1.00000 - 11400 2017 8 21 15 21 19 989 4.8459 180.83605 583.24263 550.48972 -0.09683 6.26843 3.03858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40470 0.19868 -1.00000 - 11401 2017 8 21 15 21 24 835 4.8459 180.83714 583.29939 550.53526 -0.09665 6.30486 3.04031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40435 0.19868 -1.00000 - 11402 2017 8 21 15 21 29 681 4.8459 180.83822 583.35272 550.58086 -0.09649 6.36323 3.04370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40400 0.19868 -1.00000 - 11403 2017 8 21 15 21 34 527 4.8459 180.83930 583.40427 550.62647 -0.09633 6.41505 3.04813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40365 0.19867 -1.00000 - 11404 2017 8 21 15 21 39 373 4.8458 180.84039 583.45103 550.67215 -0.09617 6.46288 3.05050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40329 0.19867 -1.00000 - 11405 2017 8 21 15 21 44 219 4.8458 180.84147 583.50765 550.71798 -0.09601 6.50362 3.05489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40294 0.19867 -1.00000 - 11406 2017 8 21 15 21 49 64 4.8458 180.84255 583.56210 550.76376 -0.09586 6.56158 3.05859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40259 0.19867 -1.00000 - 11407 2017 8 21 15 21 53 910 4.8458 180.84364 583.61914 550.80940 -0.09572 6.61133 3.05976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40224 0.19867 -1.00000 - 11408 2017 8 21 15 21 58 756 4.8457 180.84472 583.67241 550.85520 -0.09559 6.65195 3.06251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40188 0.19867 -1.00000 - 11409 2017 8 21 15 22 3 602 4.8457 180.84581 583.72131 550.90100 -0.09548 6.68218 3.06564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40153 0.19867 -1.00000 - 11410 2017 8 21 15 22 8 447 4.8457 180.84690 583.77078 550.94678 -0.09539 6.70174 3.06546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40118 0.19867 -1.00000 - 11411 2017 8 21 15 22 13 293 4.8457 180.84799 583.82816 550.99261 -0.09533 6.71099 3.06837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40083 0.19867 -1.00000 - 11412 2017 8 21 15 22 18 139 4.8457 180.84908 583.88118 551.03850 -0.09528 6.71044 3.07002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40047 0.19867 -1.00000 - 11413 2017 8 21 15 22 22 984 4.8456 180.85017 583.93900 551.08445 -0.09524 6.70069 3.06829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40012 0.19867 -1.00000 - 11414 2017 8 21 15 22 27 830 4.8456 180.85126 583.99218 551.13046 -0.09521 6.68238 3.06869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39977 0.19867 -1.00000 - 11415 2017 8 21 15 22 32 676 4.8456 180.85235 584.04426 551.17639 -0.09518 6.65617 3.07082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39942 0.19867 -1.00000 - 11416 2017 8 21 15 22 37 521 4.8456 180.85345 584.09167 551.22230 -0.09517 6.62286 3.07098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39907 0.19867 -1.00000 - 11417 2017 8 21 15 22 42 367 4.8455 180.85454 584.14478 551.26834 -0.09516 6.58332 3.07114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39871 0.19867 -1.00000 - 11418 2017 8 21 15 22 47 212 4.8455 180.85564 584.19883 551.31431 -0.09517 6.53836 3.07207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39836 0.19867 -1.00000 - 11419 2017 8 21 15 22 52 58 4.8455 180.85674 584.25284 551.36029 -0.09519 6.48871 3.07279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39801 0.19867 -1.00000 - 11420 2017 8 21 15 22 56 903 4.8455 180.85784 584.30680 551.40611 -0.09521 6.43531 3.07299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39766 0.19867 -1.00000 - 11421 2017 8 21 15 23 1 749 4.8454 180.85894 584.36030 551.45184 -0.09524 6.37944 3.07439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39730 0.19867 -1.00000 - 11422 2017 8 21 15 23 6 594 4.8454 180.86005 584.41367 551.49750 -0.09527 6.32214 3.07718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39695 0.19867 -1.00000 - 11423 2017 8 21 15 23 11 439 4.8454 180.86115 584.46714 551.54310 -0.09529 6.26437 3.07893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39660 0.19867 -1.00000 - 11424 2017 8 21 15 23 16 285 4.8454 180.86226 584.52051 551.58861 -0.09529 6.20700 3.08154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39625 0.19867 -1.00000 - 11425 2017 8 21 15 23 21 130 4.8454 180.86337 584.57362 551.63389 -0.09528 6.15079 3.08483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39589 0.19867 -1.00000 - 11426 2017 8 21 15 23 25 975 4.8453 180.86447 584.62641 551.67890 -0.09524 6.09623 3.08781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39554 0.19867 -1.00000 - 11427 2017 8 21 15 23 30 821 4.8453 180.86558 584.67871 551.72369 -0.09519 6.04382 3.09160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39519 0.19867 -1.00000 - 11428 2017 8 21 15 23 35 666 4.8453 180.86670 584.73070 551.76821 -0.09511 5.99690 3.09587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39484 0.19867 -1.00000 - 11429 2017 8 21 15 23 40 511 4.8453 180.86781 584.78252 551.81256 -0.09501 5.97434 3.09834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39448 0.19867 -1.00000 - 11430 2017 8 21 15 23 45 357 4.8452 180.86892 584.83438 551.85685 -0.09490 5.95499 3.10189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39413 0.19867 -1.00000 - 11431 2017 8 21 15 23 50 202 4.8452 180.87003 584.88187 551.90094 -0.09477 5.93895 3.10261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39378 0.19866 -1.00000 - 11432 2017 8 21 15 23 55 47 4.8452 180.87115 584.93240 551.94500 -0.09463 5.92628 3.10305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39343 0.19866 -1.00000 - 11433 2017 8 21 15 23 59 892 4.8452 180.87226 584.98429 551.98909 -0.09448 5.92370 3.10425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39308 0.19866 -1.00000 - 11434 2017 8 21 15 24 4 737 4.8451 180.87337 585.03849 552.03321 -0.09431 5.92824 3.10212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39272 0.19866 -1.00000 - 11435 2017 8 21 15 24 9 582 4.8451 180.87449 585.08948 552.07737 -0.09414 5.93759 3.10457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39237 0.19866 -1.00000 - 11436 2017 8 21 15 24 14 427 4.8451 180.87560 585.13704 552.12141 -0.09396 5.94494 3.10397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39202 0.19866 -1.00000 - 11437 2017 8 21 15 24 19 273 4.8451 180.87671 585.18825 552.16566 -0.09377 5.95123 3.10273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39167 0.19866 -1.00000 - 11438 2017 8 21 15 24 24 118 4.8450 180.87783 585.23870 552.20990 -0.09357 5.92393 3.10625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39131 0.19866 -1.00000 - 11439 2017 8 21 15 24 28 963 4.8450 180.87894 585.29096 552.25407 -0.09336 5.90880 3.10392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39096 0.19866 -1.00000 - 11440 2017 8 21 15 24 33 808 4.8450 180.88005 585.34583 552.29831 -0.09314 5.93306 3.10216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39061 0.19866 -1.00000 - 11441 2017 8 21 15 24 38 653 4.8450 180.88117 585.39713 552.34263 -0.09292 5.94665 3.10400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39026 0.19866 -1.00000 - 11442 2017 8 21 15 24 43 497 4.8450 180.88228 585.44396 552.38694 -0.09270 5.96130 3.10298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38990 0.19866 -1.00000 - 11443 2017 8 21 15 24 48 342 4.8449 180.88340 585.49509 552.43144 -0.09249 5.97527 3.10199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38955 0.19866 -1.00000 - 11444 2017 8 21 15 24 53 187 4.8449 180.88451 585.54625 552.47608 -0.09229 5.98520 3.10636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38920 0.19866 -1.00000 - 11445 2017 8 21 15 24 58 32 4.8449 180.88562 585.59812 552.52057 -0.09210 5.99961 3.10522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38885 0.19866 -1.00000 - 11446 2017 8 21 15 25 2 877 4.8449 180.88674 585.65366 552.56520 -0.09192 6.02784 3.10344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38849 0.19866 -1.00000 - 11447 2017 8 21 15 25 7 722 4.8448 180.88785 585.70561 552.60993 -0.09174 6.05927 3.10672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38814 0.19866 -1.00000 - 11448 2017 8 21 15 25 12 567 4.8448 180.88897 585.75316 552.65458 -0.09156 6.08719 3.10520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38779 0.19866 -1.00000 - 11449 2017 8 21 15 25 17 411 4.8448 180.89008 585.80452 552.69949 -0.09138 6.11586 3.10503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38744 0.19866 -1.00000 - 11450 2017 8 21 15 25 22 256 4.8448 180.89120 585.85254 552.74461 -0.09119 6.14441 3.10708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38709 0.19866 -1.00000 - 11451 2017 8 21 15 25 27 101 4.8447 180.89232 585.90967 552.78957 -0.09101 6.17227 3.10547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38673 0.19866 -1.00000 - 11452 2017 8 21 15 25 31 946 4.8447 180.89343 585.96562 552.83469 -0.09085 6.19916 3.10615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38638 0.19866 -1.00000 - 11453 2017 8 21 15 25 36 790 4.8447 180.89455 586.01756 552.87987 -0.09069 6.22274 3.10750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38603 0.19866 -1.00000 - 11454 2017 8 21 15 25 41 635 4.8447 180.89567 586.06754 552.92501 -0.09056 6.24341 3.10450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38568 0.19866 -1.00000 - 11455 2017 8 21 15 25 46 480 4.8447 180.89679 586.11899 552.97032 -0.09046 6.26376 3.10512 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38532 0.19866 -1.00000 - 11456 2017 8 21 15 25 51 324 4.8446 180.89791 586.16628 553.01575 -0.09037 6.28283 3.10478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38497 0.19866 -1.00000 - 11457 2017 8 21 15 25 56 169 4.8446 180.89903 586.22332 553.06121 -0.09029 6.29967 3.10138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38462 0.19866 -1.00000 - 11458 2017 8 21 15 26 1 14 4.8446 180.90016 586.28032 553.10681 -0.09022 6.31948 3.10076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38427 0.19866 -1.00000 - 11459 2017 8 21 15 26 5 858 4.8446 180.90128 586.33245 553.15238 -0.09014 6.34915 3.10009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38391 0.19865 -1.00000 - 11460 2017 8 21 15 26 10 703 4.8445 180.90241 586.38246 553.19806 -0.09006 6.37147 3.09701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38356 0.19865 -1.00000 - 11461 2017 8 21 15 26 15 547 4.8445 180.90353 586.43529 553.24397 -0.08998 6.38440 3.09684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38321 0.19865 -1.00000 - 11462 2017 8 21 15 26 20 392 4.8445 180.90466 586.48526 553.28985 -0.08988 6.39049 3.09437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38286 0.19865 -1.00000 - 11463 2017 8 21 15 26 25 236 4.8445 180.90579 586.54398 553.33583 -0.08978 6.39330 3.08966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38251 0.19865 -1.00000 - 11464 2017 8 21 15 26 30 81 4.8445 180.90693 586.59997 553.38192 -0.08969 6.39319 3.08984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38215 0.19865 -1.00000 - 11465 2017 8 21 15 26 34 925 4.8444 180.90806 586.65047 553.42798 -0.08960 6.39067 3.08712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38180 0.19865 -1.00000 - 11466 2017 8 21 15 26 39 769 4.8444 180.90919 586.70311 553.47424 -0.08952 6.38554 3.08494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38145 0.19865 -1.00000 - 11467 2017 8 21 15 26 44 614 4.8444 180.91033 586.75698 553.52070 -0.08945 6.37781 3.08416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38110 0.19865 -1.00000 - 11468 2017 8 21 15 26 49 458 4.8444 180.91147 586.80787 553.56702 -0.08939 6.36777 3.08118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38074 0.19865 -1.00000 - 11469 2017 8 21 15 26 54 303 4.8443 180.91260 586.86646 553.61344 -0.08934 6.35594 3.07843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38039 0.19865 -1.00000 - 11470 2017 8 21 15 26 59 147 4.8443 180.91374 586.92538 553.65995 -0.08929 6.34296 3.07902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38004 0.19865 -1.00000 - 11471 2017 8 21 15 27 3 991 4.8443 180.91488 586.97378 553.70639 -0.08923 6.32942 3.07631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37969 0.19865 -1.00000 - 11472 2017 8 21 15 27 8 835 4.8443 180.91602 587.02282 553.75290 -0.08915 6.31576 3.07527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37933 0.19865 -1.00000 - 11473 2017 8 21 15 27 13 680 4.8443 180.91717 587.07725 553.79950 -0.08906 6.30230 3.07548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37898 0.19865 -1.00000 - 11474 2017 8 21 15 27 18 524 4.8442 180.91831 587.13198 553.84604 -0.08895 6.28926 3.07347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37863 0.19865 -1.00000 - 11475 2017 8 21 15 27 23 368 4.8442 180.91945 587.18636 553.89254 -0.08882 6.27681 3.07288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37828 0.19865 -1.00000 - 11476 2017 8 21 15 27 28 212 4.8442 180.92059 587.24033 553.93900 -0.08866 6.26509 3.07440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37793 0.19865 -1.00000 - 11477 2017 8 21 15 27 33 56 4.8442 180.92174 587.29430 553.98551 -0.08848 6.25419 3.07581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37757 0.19865 -1.00000 - 11478 2017 8 21 15 27 37 901 4.8441 180.92288 587.34852 554.03203 -0.08829 6.24423 3.07659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37722 0.19865 -1.00000 - 11479 2017 8 21 15 27 42 745 4.8441 180.92402 587.40253 554.07845 -0.08810 6.23589 3.07889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37687 0.19865 -1.00000 - 11480 2017 8 21 15 27 47 589 4.8441 180.92517 587.45640 554.12477 -0.08789 6.23121 3.08014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37652 0.19865 -1.00000 - 11481 2017 8 21 15 27 52 433 4.8441 180.92631 587.51015 554.17098 -0.08769 6.22765 3.08286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37616 0.19865 -1.00000 - 11482 2017 8 21 15 27 57 277 4.8441 180.92746 587.56385 554.21711 -0.08748 6.22529 3.08563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37581 0.19865 -1.00000 - 11483 2017 8 21 15 28 2 121 4.8440 180.92860 587.61724 554.26312 -0.08727 6.22413 3.08751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37546 0.19865 -1.00000 - 11484 2017 8 21 15 28 6 965 4.8440 180.92975 587.67000 554.30913 -0.08706 6.22414 3.09001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37511 0.19865 -1.00000 - 11485 2017 8 21 15 28 11 809 4.8440 180.93089 587.72304 554.35505 -0.08684 6.22523 3.09051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37476 0.19865 -1.00000 - 11486 2017 8 21 15 28 16 653 4.8440 180.93204 587.77711 554.40092 -0.08663 6.22726 3.09112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37440 0.19865 -1.00000 - 11487 2017 8 21 15 28 21 497 4.8439 180.93318 587.83038 554.44681 -0.08643 6.23001 3.09201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37405 0.19864 -1.00000 - 11488 2017 8 21 15 28 26 341 4.8439 180.93433 587.88340 554.49266 -0.08623 6.23325 3.09169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37370 0.19864 -1.00000 - 11489 2017 8 21 15 28 31 185 4.8439 180.93547 587.93606 554.53854 -0.08606 6.23675 3.09220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37335 0.19864 -1.00000 - 11490 2017 8 21 15 28 36 29 4.8439 180.93662 587.98747 554.58447 -0.08589 6.24026 3.09022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37299 0.19864 -1.00000 - 11491 2017 8 21 15 28 40 872 4.8439 180.93776 588.04490 554.63053 -0.08575 6.24353 3.08780 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37264 0.19864 -1.00000 - 11492 2017 8 21 15 28 45 716 4.8438 180.93891 588.09133 554.67666 -0.08562 6.24637 3.08557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37229 0.19864 -1.00000 - 11493 2017 8 21 15 28 50 560 4.8438 180.94006 588.14892 554.72301 -0.08551 6.24860 3.08280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37194 0.19864 -1.00000 - 11494 2017 8 21 15 28 55 404 4.8438 180.94120 588.20595 554.76942 -0.08541 6.25083 3.08201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37158 0.19864 -1.00000 - 11495 2017 8 21 15 29 0 248 4.8438 180.94235 588.25938 554.81586 -0.08532 6.25615 3.07739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37123 0.19864 -1.00000 - 11496 2017 8 21 15 29 5 91 4.8437 180.94350 588.31713 554.86251 -0.08523 6.26047 3.07466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37088 0.19864 -1.00000 - 11497 2017 8 21 15 29 9 935 4.8437 180.94465 588.36486 554.90916 -0.08516 6.26345 3.07166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37053 0.19864 -1.00000 - 11498 2017 8 21 15 29 14 779 4.8437 180.94580 588.41948 554.95581 -0.08509 6.26508 3.06663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37018 0.19864 -1.00000 - 11499 2017 8 21 15 29 19 623 4.8437 180.94695 588.47808 555.00262 -0.08503 6.26364 3.06358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36982 0.19864 -1.00000 - 11500 2017 8 21 15 29 24 466 4.8437 180.94811 588.53527 555.04949 -0.08498 6.25577 3.05801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36947 0.19864 -1.00000 - 11501 2017 8 21 15 29 29 310 4.8436 180.94926 588.59240 555.09644 -0.08492 6.22458 3.05422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36912 0.19864 -1.00000 - 11502 2017 8 21 15 29 34 153 4.8436 180.95041 588.64582 555.14328 -0.08486 6.21218 3.04934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36877 0.19864 -1.00000 - 11503 2017 8 21 15 29 38 997 4.8436 180.95157 588.69659 555.19012 -0.08480 6.19538 3.04574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36841 0.19864 -1.00000 - 11504 2017 8 21 15 29 43 841 4.8436 180.95272 588.75578 555.23713 -0.08473 6.17657 3.04178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36806 0.19864 -1.00000 - 11505 2017 8 21 15 29 48 684 4.8436 180.95388 588.81546 555.28421 -0.08466 6.15542 3.03734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36771 0.19864 -1.00000 - 11506 2017 8 21 15 29 53 528 4.8435 180.95504 588.86991 555.33107 -0.08459 6.13060 3.03276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36736 0.19864 -1.00000 - 11507 2017 8 21 15 29 58 371 4.8435 180.95620 588.92815 555.37791 -0.08452 6.10211 3.02817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36701 0.19864 -1.00000 - 11508 2017 8 21 15 30 3 215 4.8435 180.95736 588.97798 555.42481 -0.08444 6.05353 3.02551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36665 0.19864 -1.00000 - 11509 2017 8 21 15 30 8 58 4.8435 180.95852 589.02993 555.47163 -0.08436 6.00713 3.02165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36630 0.19864 -1.00000 - 11510 2017 8 21 15 30 12 902 4.8435 180.95969 589.08880 555.51822 -0.08426 5.97916 3.01724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36595 0.19864 -1.00000 - 11511 2017 8 21 15 30 17 745 4.8434 180.96085 589.14822 555.56493 -0.08416 5.94849 3.01453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36560 0.19864 -1.00000 - 11512 2017 8 21 15 30 22 589 4.8434 180.96202 589.20197 555.61160 -0.08405 5.91680 3.01229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36524 0.19864 -1.00000 - 11513 2017 8 21 15 30 27 432 4.8434 180.96319 589.25483 555.65806 -0.08392 5.88241 3.00802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36489 0.19864 -1.00000 - 11514 2017 8 21 15 30 32 275 4.8434 180.96436 589.30646 555.70458 -0.08379 5.82844 3.00673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36454 0.19864 -1.00000 - 11515 2017 8 21 15 30 37 119 4.8434 180.96553 589.35684 555.75104 -0.08365 5.79557 3.00599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36419 0.19863 -1.00000 - 11516 2017 8 21 15 30 41 962 4.8433 180.96670 589.41300 555.79730 -0.08350 5.76464 3.00259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36384 0.19863 -1.00000 - 11517 2017 8 21 15 30 46 805 4.8433 180.96787 589.47081 555.84356 -0.08336 5.73577 3.00185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36348 0.19863 -1.00000 - 11518 2017 8 21 15 30 51 649 4.8433 180.96904 589.52023 555.88979 -0.08320 5.70738 3.00116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36313 0.19863 -1.00000 - 11519 2017 8 21 15 30 56 492 4.8433 180.97022 589.57767 555.93584 -0.08305 5.68039 2.99965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36278 0.19863 -1.00000 - 11520 2017 8 21 15 31 1 335 4.8433 180.97139 589.62976 555.98187 -0.08289 5.65836 3.00149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36243 0.19863 -1.00000 - 11521 2017 8 21 15 31 6 178 4.8432 180.97256 589.68166 556.02776 -0.08272 5.64305 3.00189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36207 0.19863 -1.00000 - 11522 2017 8 21 15 31 11 22 4.8432 180.97374 589.73804 556.07360 -0.08255 5.63479 3.00255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36172 0.19863 -1.00000 - 11523 2017 8 21 15 31 15 865 4.8432 180.97491 589.79043 556.11946 -0.08239 5.61908 3.00570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36137 0.19863 -1.00000 - 11524 2017 8 21 15 31 20 708 4.8432 180.97609 589.84017 556.16507 -0.08221 5.62096 3.00723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36102 0.19863 -1.00000 - 11525 2017 8 21 15 31 25 551 4.8431 180.97726 589.89469 556.21056 -0.08203 5.62111 3.00949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36067 0.19863 -1.00000 - 11526 2017 8 21 15 31 30 394 4.8431 180.97843 589.94488 556.25605 -0.08184 5.61949 3.01232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36031 0.19863 -1.00000 - 11527 2017 8 21 15 31 35 237 4.8431 180.97961 589.99722 556.30147 -0.08163 5.61757 3.01388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35996 0.19863 -1.00000 - 11528 2017 8 21 15 31 40 80 4.8431 180.98078 590.05335 556.34699 -0.08142 5.61874 3.01783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35961 0.19863 -1.00000 - 11529 2017 8 21 15 31 44 924 4.8431 180.98195 590.10241 556.39250 -0.08118 5.62314 3.02018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35926 0.19863 -1.00000 - 11530 2017 8 21 15 31 49 767 4.8430 180.98312 590.15276 556.43804 -0.08093 5.63037 3.02108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35890 0.19863 -1.00000 - 11531 2017 8 21 15 31 54 610 4.8430 180.98430 590.20397 556.48367 -0.08066 5.63801 3.02654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35855 0.19863 -1.00000 - 11532 2017 8 21 15 31 59 453 4.8430 180.98547 590.26127 556.52926 -0.08038 5.64420 3.02849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35820 0.19863 -1.00000 - 11533 2017 8 21 15 32 4 296 4.8430 180.98664 590.31335 556.57496 -0.08008 5.65242 3.03097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35785 0.19863 -1.00000 - 11534 2017 8 21 15 32 9 139 4.8430 180.98782 590.36377 556.62066 -0.07979 5.67101 3.03584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35750 0.19863 -1.00000 - 11535 2017 8 21 15 32 13 982 4.8429 180.98899 590.42076 556.66646 -0.07950 5.69048 3.03713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35714 0.19863 -1.00000 - 11536 2017 8 21 15 32 18 824 4.8429 180.99016 590.46863 556.71224 -0.07923 5.71105 3.04167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35679 0.19863 -1.00000 - 11537 2017 8 21 15 32 23 667 4.8429 180.99134 590.52320 556.75805 -0.07896 5.73093 3.04551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35644 0.19863 -1.00000 - 11538 2017 8 21 15 32 28 510 4.8429 180.99251 590.57796 556.80397 -0.07871 5.75010 3.04785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35609 0.19863 -1.00000 - 11539 2017 8 21 15 32 33 353 4.8429 180.99368 590.63069 556.85001 -0.07848 5.76883 3.05348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35574 0.19863 -1.00000 - 11540 2017 8 21 15 32 38 196 4.8428 180.99486 590.68135 556.89621 -0.07826 5.78846 3.05877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35538 0.19863 -1.00000 - 11541 2017 8 21 15 32 43 39 4.8428 180.99604 590.73864 556.94239 -0.07805 5.80982 3.06168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35503 0.19863 -1.00000 - 11542 2017 8 21 15 32 47 882 4.8428 180.99721 590.78583 556.98857 -0.07785 5.83311 3.06849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35468 0.19863 -1.00000 - 11543 2017 8 21 15 32 52 724 4.8428 180.99839 590.84420 557.03475 -0.07768 5.85894 3.07495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35433 0.19862 -1.00000 - 11544 2017 8 21 15 32 57 567 4.8428 180.99957 590.90323 557.08096 -0.07754 5.88774 3.08094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35397 0.19862 -1.00000 - 11545 2017 8 21 15 33 2 410 4.8427 181.00075 590.95637 557.12710 -0.07743 5.91966 3.08941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35362 0.19862 -1.00000 - 11546 2017 8 21 15 33 7 253 4.8427 181.00194 591.00400 557.17322 -0.07735 5.95469 3.09614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35327 0.19862 -1.00000 - 11547 2017 8 21 15 33 12 95 4.8427 181.00312 591.05450 557.21932 -0.07730 5.99278 3.10283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35292 0.19862 -1.00000 - 11548 2017 8 21 15 33 16 938 4.8427 181.00430 591.10790 557.26533 -0.07728 6.03384 3.11204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35257 0.19862 -1.00000 - 11549 2017 8 21 15 33 21 781 4.8427 181.00549 591.16579 557.31143 -0.07727 6.07761 3.12033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35221 0.19862 -1.00000 - 11550 2017 8 21 15 33 26 623 4.8427 181.00668 591.21605 557.35744 -0.07725 6.12381 3.12742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35186 0.19862 -1.00000 - 11551 2017 8 21 15 33 31 466 4.8426 181.00786 591.26893 557.40344 -0.07723 6.17208 3.13660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35151 0.19862 -1.00000 - 11552 2017 8 21 15 33 36 309 4.8426 181.00905 591.32378 557.44943 -0.07720 6.22195 3.14273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35116 0.19862 -1.00000 - 11553 2017 8 21 15 33 41 151 4.8426 181.01024 591.37612 557.49529 -0.07716 6.27306 3.14917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35080 0.19862 -1.00000 - 11554 2017 8 21 15 33 45 994 4.8426 181.01143 591.42695 557.54119 -0.07713 6.32552 3.15851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35045 0.19862 -1.00000 - 11555 2017 8 21 15 33 50 836 4.8426 181.01262 591.48529 557.58704 -0.07712 6.37829 3.16337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35010 0.19862 -1.00000 - 11556 2017 8 21 15 33 55 679 4.8425 181.01381 591.53918 557.63296 -0.07714 6.42904 3.16992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34975 0.19862 -1.00000 - 11557 2017 8 21 15 34 0 521 4.8425 181.01500 591.59196 557.67888 -0.07720 6.47585 3.17681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34940 0.19862 -1.00000 - 11558 2017 8 21 15 34 5 364 4.8425 181.01619 591.64069 557.72482 -0.07729 6.49527 3.18022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34904 0.19862 -1.00000 - 11559 2017 8 21 15 34 10 206 4.8425 181.01738 591.69340 557.77071 -0.07741 6.54635 3.18484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34869 0.19862 -1.00000 - 11560 2017 8 21 15 34 15 49 4.8425 181.01858 591.74591 557.81672 -0.07753 6.59151 3.19146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34834 0.19862 -1.00000 - 11561 2017 8 21 15 34 19 891 4.8424 181.01977 591.80180 557.86252 -0.07763 6.63276 3.19488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34799 0.19862 -1.00000 - 11562 2017 8 21 15 34 24 734 4.8424 181.02096 591.85926 557.90826 -0.07768 6.67008 3.20089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34764 0.19862 -1.00000 - 11563 2017 8 21 15 34 29 576 4.8424 181.02216 591.90738 557.95397 -0.07767 6.71697 3.20738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34728 0.19862 -1.00000 - 11564 2017 8 21 15 34 34 418 4.8424 181.02336 591.95509 557.99958 -0.07759 6.75905 3.21043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34693 0.19862 -1.00000 - 11565 2017 8 21 15 34 39 261 4.8424 181.02455 592.00802 558.04528 -0.07747 6.79528 3.21721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34658 0.19862 -1.00000 - 11566 2017 8 21 15 34 44 103 4.8423 181.02575 592.06122 558.09092 -0.07731 6.82796 3.22252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34623 0.19862 -1.00000 - 11567 2017 8 21 15 34 48 945 4.8423 181.02695 592.11924 558.13643 -0.07715 6.85792 3.22429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34587 0.19862 -1.00000 - 11568 2017 8 21 15 34 53 788 4.8423 181.02815 592.17590 558.18202 -0.07699 6.88500 3.22913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34552 0.19862 -1.00000 - 11569 2017 8 21 15 34 58 630 4.8423 181.02936 592.22349 558.22758 -0.07684 6.90868 3.23135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34517 0.19862 -1.00000 - 11570 2017 8 21 15 35 3 472 4.8423 181.03056 592.27279 558.27317 -0.07669 6.92848 3.23208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34482 0.19862 -1.00000 - 11571 2017 8 21 15 35 8 315 4.8423 181.03176 592.32371 558.31890 -0.07652 6.94407 3.23490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34447 0.19861 -1.00000 - 11572 2017 8 21 15 35 13 157 4.8422 181.03296 592.38094 558.36458 -0.07631 6.95532 3.23481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34411 0.19861 -1.00000 - 11573 2017 8 21 15 35 17 999 4.8422 181.03417 592.43821 558.41028 -0.07604 6.96220 3.23496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34376 0.19861 -1.00000 - 11574 2017 8 21 15 35 22 841 4.8422 181.03537 592.48404 558.45605 -0.07570 6.96481 3.23399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34341 0.19861 -1.00000 - 11575 2017 8 21 15 35 27 683 4.8422 181.03658 592.53823 558.50207 -0.07528 6.96328 3.23430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34306 0.19861 -1.00000 - 11576 2017 8 21 15 35 32 526 4.8422 181.03778 592.58719 558.54824 -0.07483 6.95783 3.23396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34271 0.19861 -1.00000 - 11577 2017 8 21 15 35 37 368 4.8421 181.03899 592.64005 558.59432 -0.07447 6.94873 3.23173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34235 0.19861 -1.00000 - 11578 2017 8 21 15 35 42 210 4.8421 181.04019 592.69637 558.64059 -0.07412 6.93619 3.23066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34200 0.19861 -1.00000 - 11579 2017 8 21 15 35 47 52 4.8421 181.04140 592.74918 558.68698 -0.07381 6.92047 3.22993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34165 0.19861 -1.00000 - 11580 2017 8 21 15 35 51 894 4.8421 181.04260 592.80177 558.73325 -0.07353 6.90182 3.22613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34130 0.19861 -1.00000 - 11581 2017 8 21 15 35 56 736 4.8421 181.04381 592.86138 558.77958 -0.07330 6.88048 3.22515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34094 0.19861 -1.00000 - 11582 2017 8 21 15 36 1 578 4.8420 181.04501 592.90754 558.82608 -0.07311 6.85639 3.22299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34059 0.19861 -1.00000 - 11583 2017 8 21 15 36 6 420 4.8420 181.04622 592.96188 558.87262 -0.07294 6.82857 3.21903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34024 0.19861 -1.00000 - 11584 2017 8 21 15 36 11 262 4.8420 181.04742 593.01876 558.91922 -0.07277 6.77565 3.21573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33989 0.19861 -1.00000 - 11585 2017 8 21 15 36 16 104 4.8420 181.04863 593.07204 558.96589 -0.07258 6.72192 3.21218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33954 0.19861 -1.00000 - 11586 2017 8 21 15 36 20 946 4.8420 181.04983 593.12481 559.01246 -0.07234 6.68653 3.20749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33918 0.19861 -1.00000 - 11587 2017 8 21 15 36 25 788 4.8419 181.05104 593.18057 559.05918 -0.07206 6.64714 3.20308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33883 0.19861 -1.00000 - 11588 2017 8 21 15 36 30 630 4.8419 181.05224 593.22917 559.10602 -0.07176 6.60732 3.19971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33848 0.19861 -1.00000 - 11589 2017 8 21 15 36 35 472 4.8419 181.05345 593.28604 559.15296 -0.07147 6.56695 3.19416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33813 0.19861 -1.00000 - 11590 2017 8 21 15 36 40 314 4.8419 181.05466 593.34519 559.20001 -0.07122 6.52390 3.19004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33778 0.19861 -1.00000 - 11591 2017 8 21 15 36 45 156 4.8419 181.05586 593.39493 559.24715 -0.07104 6.45961 3.18545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33742 0.19861 -1.00000 - 11592 2017 8 21 15 36 49 997 4.8419 181.05707 593.45325 559.29426 -0.07092 6.40087 3.17917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33707 0.19861 -1.00000 - 11593 2017 8 21 15 36 54 839 4.8418 181.05828 593.50735 559.34133 -0.07084 6.36759 3.17685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33672 0.19861 -1.00000 - 11594 2017 8 21 15 36 59 681 4.8418 181.05948 593.56123 559.38820 -0.07076 6.33588 3.17301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33637 0.19861 -1.00000 - 11595 2017 8 21 15 37 4 523 4.8418 181.06069 593.62012 559.43510 -0.07067 6.30379 3.16726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33602 0.19861 -1.00000 - 11596 2017 8 21 15 37 9 365 4.8418 181.06190 593.67454 559.48209 -0.07057 6.27147 3.16505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33566 0.19861 -1.00000 - 11597 2017 8 21 15 37 14 206 4.8418 181.06311 593.72415 559.52904 -0.07046 6.24209 3.15916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33531 0.19861 -1.00000 - 11598 2017 8 21 15 37 19 48 4.8418 181.06432 593.78145 559.57601 -0.07036 6.21538 3.15204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33496 0.19861 -1.00000 - 11599 2017 8 21 15 37 23 890 4.8417 181.06553 593.83501 559.62303 -0.07028 6.19086 3.14913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33461 0.19860 -1.00000 - 11600 2017 8 21 15 37 28 732 4.8417 181.06675 593.89394 559.66990 -0.07022 6.16864 3.14233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33425 0.19860 -1.00000 - 11601 2017 8 21 15 37 33 573 4.8417 181.06796 593.94859 559.71690 -0.07018 6.14677 3.13587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33390 0.19860 -1.00000 - 11602 2017 8 21 15 37 38 415 4.8417 181.06918 594.00267 559.76402 -0.07013 6.12568 3.13289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33355 0.19860 -1.00000 - 11603 2017 8 21 15 37 43 257 4.8417 181.07039 594.05317 559.81109 -0.07009 6.10863 3.12552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33320 0.19860 -1.00000 - 11604 2017 8 21 15 37 48 98 4.8416 181.07161 594.11116 559.85827 -0.07005 6.09457 3.12215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33285 0.19860 -1.00000 - 11605 2017 8 21 15 37 52 940 4.8416 181.07282 594.16671 559.90538 -0.07003 6.08138 3.11923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33249 0.19860 -1.00000 - 11606 2017 8 21 15 37 57 782 4.8416 181.07404 594.22708 559.95241 -0.07003 6.06779 3.11209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33214 0.19860 -1.00000 - 11607 2017 8 21 15 38 2 623 4.8416 181.07525 594.28150 559.99949 -0.07003 6.02837 3.10853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33179 0.19860 -1.00000 - 11608 2017 8 21 15 38 7 465 4.8416 181.07647 594.33451 560.04656 -0.07005 6.00053 3.10337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33144 0.19860 -1.00000 - 11609 2017 8 21 15 38 12 306 4.8416 181.07769 594.38464 560.09345 -0.07005 5.99860 3.09771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33109 0.19860 -1.00000 - 11610 2017 8 21 15 38 17 148 4.8415 181.07892 594.44162 560.14043 -0.07004 5.99790 3.09592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33073 0.19860 -1.00000 - 11611 2017 8 21 15 38 21 989 4.8415 181.08014 594.49667 560.18738 -0.07001 5.99923 3.09194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33038 0.19860 -1.00000 - 11612 2017 8 21 15 38 26 831 4.8415 181.08136 594.55662 560.23430 -0.06996 6.00006 3.08675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33003 0.19860 -1.00000 - 11613 2017 8 21 15 38 31 672 4.8415 181.08258 594.60954 560.28148 -0.06990 5.99946 3.08586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32968 0.19860 -1.00000 - 11614 2017 8 21 15 38 36 514 4.8415 181.08381 594.66363 560.32854 -0.06983 5.99793 3.08146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32933 0.19860 -1.00000 - 11615 2017 8 21 15 38 41 355 4.8415 181.08503 594.71281 560.37552 -0.06975 5.99831 3.07921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32897 0.19860 -1.00000 - 11616 2017 8 21 15 38 46 197 4.8414 181.08625 594.77329 560.42268 -0.06966 6.00356 3.07985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32862 0.19860 -1.00000 - 11617 2017 8 21 15 38 51 38 4.8414 181.08748 594.82718 560.46976 -0.06956 6.00767 3.07587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32827 0.19860 -1.00000 - 11618 2017 8 21 15 38 55 880 4.8414 181.08871 594.88693 560.51687 -0.06946 6.01021 3.07250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32792 0.19860 -1.00000 - 11619 2017 8 21 15 39 0 721 4.8414 181.08994 594.94105 560.56420 -0.06936 6.01100 3.07381 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32757 0.19860 -1.00000 - 11620 2017 8 21 15 39 5 562 4.8414 181.09117 594.99040 560.61132 -0.06926 6.00999 3.07065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32721 0.19860 -1.00000 - 11621 2017 8 21 15 39 10 404 4.8414 181.09240 595.04430 560.65852 -0.06916 6.00719 3.07020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32686 0.19860 -1.00000 - 11622 2017 8 21 15 39 15 245 4.8413 181.09363 595.09928 560.70584 -0.06905 6.00278 3.07148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32651 0.19860 -1.00000 - 11623 2017 8 21 15 39 20 86 4.8413 181.09486 595.15748 560.75307 -0.06892 5.99734 3.06921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32616 0.19860 -1.00000 - 11624 2017 8 21 15 39 24 928 4.8413 181.09610 595.21767 560.80023 -0.06880 5.99109 3.06931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32580 0.19860 -1.00000 - 11625 2017 8 21 15 39 29 769 4.8413 181.09733 595.26808 560.84742 -0.06869 5.98322 3.06925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32545 0.19860 -1.00000 - 11626 2017 8 21 15 39 34 610 4.8413 181.09856 595.31942 560.89453 -0.06859 5.97268 3.06793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32510 0.19860 -1.00000 - 11627 2017 8 21 15 39 39 452 4.8413 181.09979 595.37439 560.94168 -0.06849 5.96055 3.06871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32475 0.19859 -1.00000 - 11628 2017 8 21 15 39 44 293 4.8412 181.10102 595.42932 560.98888 -0.06839 5.94812 3.06888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32440 0.19859 -1.00000 - 11629 2017 8 21 15 39 49 134 4.8412 181.10225 595.48393 561.03606 -0.06828 5.93632 3.06689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32404 0.19859 -1.00000 - 11630 2017 8 21 15 39 53 975 4.8412 181.10348 595.54792 561.08346 -0.06819 5.92542 3.06846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32369 0.19859 -1.00000 - 11631 2017 8 21 15 39 58 816 4.8412 181.10471 595.60169 561.13076 -0.06812 5.91528 3.06921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32334 0.19859 -1.00000 - 11632 2017 8 21 15 40 3 658 4.8412 181.10595 595.65396 561.17800 -0.06808 5.90576 3.06860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32299 0.19859 -1.00000 - 11633 2017 8 21 15 40 8 499 4.8412 181.10718 595.70942 561.22538 -0.06804 5.89700 3.07147 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32264 0.19859 -1.00000 - 11634 2017 8 21 15 40 13 340 4.8411 181.10842 595.76037 561.27268 -0.06799 5.88934 3.07347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32228 0.19859 -1.00000 - 11635 2017 8 21 15 40 18 181 4.8411 181.10966 595.81879 561.31980 -0.06790 5.88325 3.07408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32193 0.19859 -1.00000 - 11636 2017 8 21 15 40 23 22 4.8411 181.11089 595.87940 561.36699 -0.06777 5.87926 3.07869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32158 0.19859 -1.00000 - 11637 2017 8 21 15 40 27 863 4.8411 181.11213 595.93350 561.41413 -0.06760 5.87795 3.08334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32123 0.19859 -1.00000 - 11638 2017 8 21 15 40 32 704 4.8411 181.11337 595.98278 561.46120 -0.06743 5.89500 3.08451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32088 0.19859 -1.00000 - 11639 2017 8 21 15 40 37 545 4.8410 181.11461 596.03549 561.50828 -0.06727 5.91677 3.09025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32052 0.19859 -1.00000 - 11640 2017 8 21 15 40 42 386 4.8410 181.11585 596.09061 561.55524 -0.06712 5.94007 3.09462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32017 0.19859 -1.00000 - 11641 2017 8 21 15 40 47 227 4.8410 181.11709 596.14822 561.60206 -0.06700 5.96296 3.09722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31982 0.19859 -1.00000 - 11642 2017 8 21 15 40 52 68 4.8410 181.11833 596.20741 561.64881 -0.06689 5.98297 3.10232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31947 0.19859 -1.00000 - 11643 2017 8 21 15 40 56 909 4.8410 181.11957 596.26068 561.69550 -0.06677 6.00126 3.10951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31912 0.19859 -1.00000 - 11644 2017 8 21 15 41 1 750 4.8410 181.12081 596.30903 561.74211 -0.06665 6.02112 3.11528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31876 0.19859 -1.00000 - 11645 2017 8 21 15 41 6 591 4.8410 181.12205 596.36272 561.78870 -0.06651 6.04134 3.11948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31841 0.19859 -1.00000 - 11646 2017 8 21 15 41 11 432 4.8409 181.12329 596.41675 561.83512 -0.06636 6.06125 3.12718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31806 0.19859 -1.00000 - 11647 2017 8 21 15 41 16 273 4.8409 181.12454 596.47255 561.88132 -0.06620 6.08393 3.13220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31771 0.19859 -1.00000 - 11648 2017 8 21 15 41 21 114 4.8409 181.12578 596.53086 561.92749 -0.06605 6.12231 3.13768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31736 0.19859 -1.00000 - 11649 2017 8 21 15 41 25 955 4.8409 181.12702 596.57778 561.97357 -0.06590 6.15828 3.14402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31700 0.19859 -1.00000 - 11650 2017 8 21 15 41 30 796 4.8409 181.12827 596.62922 562.01967 -0.06574 6.19203 3.14884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31665 0.19859 -1.00000 - 11651 2017 8 21 15 41 35 637 4.8409 181.12951 596.68263 562.06587 -0.06559 6.22568 3.15492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31630 0.19859 -1.00000 - 11652 2017 8 21 15 41 40 477 4.8408 181.13076 596.73587 562.11183 -0.06542 6.26606 3.15774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31595 0.19859 -1.00000 - 11653 2017 8 21 15 41 45 318 4.8408 181.13201 596.79209 562.15790 -0.06523 6.30522 3.16287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31560 0.19859 -1.00000 - 11654 2017 8 21 15 41 50 159 4.8408 181.13326 596.84153 562.20403 -0.06503 6.34277 3.17070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31524 0.19859 -1.00000 - 11655 2017 8 21 15 41 55 0 4.8408 181.13451 596.89161 562.25003 -0.06481 6.37857 3.17343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31489 0.19858 -1.00000 - 11656 2017 8 21 15 41 59 841 4.8408 181.13576 596.94841 562.29612 -0.06459 6.41268 3.17937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31454 0.19858 -1.00000 - 11657 2017 8 21 15 42 4 681 4.8408 181.13701 597.00024 562.34218 -0.06438 6.44525 3.18620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31419 0.19858 -1.00000 - 11658 2017 8 21 15 42 9 522 4.8407 181.13827 597.04909 562.38818 -0.06417 6.47642 3.18931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31384 0.19858 -1.00000 - 11659 2017 8 21 15 42 14 363 4.8407 181.13953 597.10434 562.43421 -0.06398 6.50633 3.19290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31348 0.19858 -1.00000 - 11660 2017 8 21 15 42 19 204 4.8407 181.14078 597.15480 562.48027 -0.06380 6.53506 3.19961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31313 0.19858 -1.00000 - 11661 2017 8 21 15 42 24 44 4.8407 181.14204 597.20747 562.52634 -0.06365 6.56130 3.20330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31278 0.19858 -1.00000 - 11662 2017 8 21 15 42 28 885 4.8407 181.14329 597.26399 562.57258 -0.06353 6.56345 3.20691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31243 0.19858 -1.00000 - 11663 2017 8 21 15 42 33 726 4.8407 181.14455 597.31613 562.61886 -0.06343 6.57551 3.21333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31207 0.19858 -1.00000 - 11664 2017 8 21 15 42 38 566 4.8407 181.14581 597.36510 562.66497 -0.06336 6.58999 3.21591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31172 0.19858 -1.00000 - 11665 2017 8 21 15 42 43 407 4.8406 181.14707 597.41835 562.71108 -0.06332 6.60774 3.22050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31137 0.19858 -1.00000 - 11666 2017 8 21 15 42 48 248 4.8406 181.14832 597.47077 562.75730 -0.06329 6.62472 3.22641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31102 0.19858 -1.00000 - 11667 2017 8 21 15 42 53 88 4.8406 181.14958 597.52391 562.80332 -0.06328 6.63859 3.22896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31067 0.19858 -1.00000 - 11668 2017 8 21 15 42 57 929 4.8406 181.15084 597.58081 562.84937 -0.06326 6.64719 3.23202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31031 0.19858 -1.00000 - 11669 2017 8 21 15 43 2 769 4.8406 181.15210 597.63302 562.89553 -0.06324 6.63073 3.23567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30996 0.19858 -1.00000 - 11670 2017 8 21 15 43 7 610 4.8406 181.15336 597.68147 562.94164 -0.06321 6.61529 3.23698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30961 0.19858 -1.00000 - 11671 2017 8 21 15 43 12 450 4.8405 181.15461 597.73805 562.98787 -0.06317 6.61867 3.23867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30926 0.19858 -1.00000 - 11672 2017 8 21 15 43 17 291 4.8405 181.15587 597.78579 563.03424 -0.06312 6.61663 3.24002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30891 0.19858 -1.00000 - 11673 2017 8 21 15 43 22 131 4.8405 181.15713 597.84115 563.08053 -0.06307 6.61122 3.23921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30855 0.19858 -1.00000 - 11674 2017 8 21 15 43 26 972 4.8405 181.15839 597.89883 563.12696 -0.06300 6.60053 3.24004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30820 0.19858 -1.00000 - 11675 2017 8 21 15 43 31 812 4.8405 181.15965 597.94871 563.17360 -0.06293 6.56504 3.24065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30785 0.19858 -1.00000 - 11676 2017 8 21 15 43 36 653 4.8405 181.16091 597.99992 563.22022 -0.06284 6.54667 3.23741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30750 0.19858 -1.00000 - 11677 2017 8 21 15 43 41 493 4.8405 181.16216 598.05129 563.26700 -0.06275 6.53177 3.23719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30715 0.19858 -1.00000 - 11678 2017 8 21 15 43 46 334 4.8404 181.16343 598.10701 563.31406 -0.06266 6.51790 3.23644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30679 0.19858 -1.00000 - 11679 2017 8 21 15 43 51 174 4.8404 181.16469 598.16666 563.36129 -0.06256 6.50334 3.23358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30644 0.19858 -1.00000 - 11680 2017 8 21 15 43 56 15 4.8404 181.16595 598.22147 563.40851 -0.06246 6.48832 3.23005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30609 0.19858 -1.00000 - 11681 2017 8 21 15 44 0 855 4.8404 181.16721 598.27387 563.45596 -0.06235 6.47606 3.22754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30574 0.19858 -1.00000 - 11682 2017 8 21 15 44 5 695 4.8404 181.16848 598.32785 563.50362 -0.06223 6.46550 3.22732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30539 0.19858 -1.00000 - 11683 2017 8 21 15 44 10 536 4.8404 181.16974 598.38316 563.55127 -0.06211 6.45676 3.22413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30503 0.19857 -1.00000 - 11684 2017 8 21 15 44 15 376 4.8403 181.17101 598.44376 563.59889 -0.06197 6.44973 3.22118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30468 0.19857 -1.00000 - 11685 2017 8 21 15 44 20 216 4.8403 181.17227 598.49905 563.64663 -0.06184 6.44103 3.22044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30433 0.19857 -1.00000 - 11686 2017 8 21 15 44 25 57 4.8403 181.17354 598.55875 563.69444 -0.06171 6.40527 3.21777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30398 0.19857 -1.00000 - 11687 2017 8 21 15 44 29 897 4.8403 181.17481 598.60980 563.74224 -0.06158 6.39084 3.21288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30363 0.19857 -1.00000 - 11688 2017 8 21 15 44 34 737 4.8403 181.17608 598.66546 563.79009 -0.06147 6.39341 3.21336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30327 0.19857 -1.00000 - 11689 2017 8 21 15 44 39 578 4.8403 181.17736 598.72224 563.83796 -0.06137 6.39783 3.21180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30292 0.19857 -1.00000 - 11690 2017 8 21 15 44 44 418 4.8403 181.17863 598.78363 563.88579 -0.06129 6.40709 3.20752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30257 0.19857 -1.00000 - 11691 2017 8 21 15 44 49 258 4.8402 181.17991 598.83881 563.93361 -0.06121 6.41509 3.20759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30222 0.19857 -1.00000 - 11692 2017 8 21 15 44 54 98 4.8402 181.18118 598.89660 563.98137 -0.06114 6.42036 3.20455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30187 0.19857 -1.00000 - 11693 2017 8 21 15 44 58 939 4.8402 181.18246 598.94749 564.02916 -0.06107 6.42458 3.20093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30151 0.19857 -1.00000 - 11694 2017 8 21 15 45 3 779 4.8402 181.18373 599.00381 564.07707 -0.06100 6.42875 3.20018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30116 0.19857 -1.00000 - 11695 2017 8 21 15 45 8 619 4.8402 181.18501 599.06025 564.12483 -0.06094 6.43367 3.19811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30081 0.19857 -1.00000 - 11696 2017 8 21 15 45 13 459 4.8402 181.18629 599.12125 564.17261 -0.06087 6.43903 3.19523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30046 0.19857 -1.00000 - 11697 2017 8 21 15 45 18 299 4.8402 181.18757 599.17628 564.22048 -0.06082 6.44547 3.19772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30011 0.19857 -1.00000 - 11698 2017 8 21 15 45 23 139 4.8401 181.18885 599.22630 564.26803 -0.06077 6.45491 3.19486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29975 0.19857 -1.00000 - 11699 2017 8 21 15 45 27 980 4.8401 181.19012 599.28124 564.31554 -0.06071 6.46357 3.19423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29940 0.19857 -1.00000 - 11700 2017 8 21 15 45 32 820 4.8401 181.19140 599.33630 564.36305 -0.06066 6.47097 3.19681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29905 0.19857 -1.00000 - 11701 2017 8 21 15 45 37 660 4.8401 181.19268 599.39302 564.41031 -0.06061 6.47664 3.19432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29870 0.19857 -1.00000 - 11702 2017 8 21 15 45 42 500 4.8401 181.19394 599.45329 564.45749 -0.06054 6.48018 3.19313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29835 0.19857 -1.00000 - 11703 2017 8 21 15 45 47 340 4.8401 181.19520 599.50757 564.50463 -0.06047 6.48135 3.19472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29799 0.19857 -1.00000 - 11704 2017 8 21 15 45 52 180 4.8401 181.19644 599.55670 564.55157 -0.06037 6.48000 3.19156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29764 0.19857 -1.00000 - 11705 2017 8 21 15 45 57 20 4.8400 181.19767 599.61033 564.59838 -0.06026 6.47604 3.19068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29729 0.19857 -1.00000 - 11706 2017 8 21 15 46 1 860 4.8400 181.19887 599.66473 564.64515 -0.06013 6.46951 3.19067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29694 0.19857 -1.00000 - 11707 2017 8 21 15 46 6 700 4.8400 181.20006 599.72204 564.69173 -0.05999 6.46064 3.18748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29659 0.19857 -1.00000 - 11708 2017 8 21 15 46 11 540 4.8400 181.20122 599.78075 564.73821 -0.05983 6.45000 3.18693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29624 0.19857 -1.00000 - 11709 2017 8 21 15 46 16 380 4.8400 181.20237 599.82852 564.78464 -0.05965 6.43761 3.18493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29588 0.19857 -1.00000 - 11710 2017 8 21 15 46 21 220 4.8400 181.20350 599.88035 564.83098 -0.05946 6.42251 3.18222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29553 0.19857 -1.00000 - 11711 2017 8 21 15 46 26 60 4.8400 181.20467 599.93386 564.87731 -0.05926 6.40341 3.17999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29518 0.19856 -1.00000 - 11712 2017 8 21 15 46 30 900 4.8400 181.20584 599.98786 564.92355 -0.05904 6.38258 3.17637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29483 0.19856 -1.00000 - 11713 2017 8 21 15 46 35 740 4.8399 181.20703 600.04557 564.96983 -0.05881 6.36173 3.17342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29448 0.19856 -1.00000 - 11714 2017 8 21 15 46 40 580 4.8399 181.20822 600.09697 565.01620 -0.05858 6.34060 3.17087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29412 0.19856 -1.00000 - 11715 2017 8 21 15 46 45 420 4.8399 181.20942 600.14617 565.06247 -0.05833 6.31894 3.16645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29377 0.19856 -1.00000 - 11716 2017 8 21 15 46 50 260 4.8399 181.21063 600.19782 565.10887 -0.05809 6.29616 3.16397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29342 0.19856 -1.00000 - 11717 2017 8 21 15 46 55 100 4.8399 181.21184 600.25446 565.15538 -0.05785 6.27212 3.16157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29307 0.19856 -1.00000 - 11718 2017 8 21 15 46 59 939 4.8399 181.21306 600.31144 565.20187 -0.05764 6.24703 3.15661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29272 0.19856 -1.00000 - 11719 2017 8 21 15 47 4 779 4.8399 181.21429 600.36595 565.24841 -0.05747 6.22135 3.15499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29236 0.19856 -1.00000 - 11720 2017 8 21 15 47 9 619 4.8398 181.21552 600.41824 565.29497 -0.05735 6.19559 3.15333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29201 0.19856 -1.00000 - 11721 2017 8 21 15 47 14 459 4.8398 181.21676 600.46747 565.34158 -0.05728 6.17029 3.15034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29166 0.19856 -1.00000 - 11722 2017 8 21 15 47 19 299 4.8398 181.21800 600.51735 565.38833 -0.05725 6.14598 3.14786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29131 0.19856 -1.00000 - 11723 2017 8 21 15 47 24 139 4.8398 181.21924 600.57525 565.43512 -0.05726 6.12266 3.14696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29096 0.19856 -1.00000 - 11724 2017 8 21 15 47 28 978 4.8398 181.22048 600.63272 565.48210 -0.05728 6.10021 3.14631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29060 0.19856 -1.00000 - 11725 2017 8 21 15 47 33 818 4.8398 181.22173 600.68592 565.52904 -0.05729 6.07935 3.14530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29025 0.19856 -1.00000 - 11726 2017 8 21 15 47 38 658 4.8398 181.22298 600.73467 565.57597 -0.05727 6.06035 3.14361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28990 0.19856 -1.00000 - 11727 2017 8 21 15 47 43 498 4.8398 181.22423 600.79141 565.62305 -0.05722 6.04340 3.14416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28955 0.19856 -1.00000 - 11728 2017 8 21 15 47 48 337 4.8397 181.22548 600.84390 565.67022 -0.05713 6.02921 3.14415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28920 0.19856 -1.00000 - 11729 2017 8 21 15 47 53 177 4.8397 181.22674 600.89932 565.71741 -0.05704 6.02495 3.14376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28884 0.19856 -1.00000 - 11730 2017 8 21 15 47 58 17 4.8397 181.22800 600.95839 565.76478 -0.05695 6.01916 3.14581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28849 0.19856 -1.00000 - 11731 2017 8 21 15 48 2 857 4.8397 181.22925 601.00964 565.81210 -0.05690 6.01252 3.14596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28814 0.19856 -1.00000 - 11732 2017 8 21 15 48 7 696 4.8397 181.23051 601.06230 565.85930 -0.05689 6.00500 3.14644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28779 0.19856 -1.00000 - 11733 2017 8 21 15 48 12 536 4.8397 181.23177 601.11791 565.90660 -0.05694 5.99946 3.15031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28744 0.19856 -1.00000 - 11734 2017 8 21 15 48 17 376 4.8397 181.23304 601.17290 565.95383 -0.05701 5.99608 3.15131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28708 0.19856 -1.00000 - 11735 2017 8 21 15 48 22 215 4.8396 181.23431 601.23004 566.00110 -0.05709 5.99276 3.15039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28673 0.19856 -1.00000 - 11736 2017 8 21 15 48 27 55 4.8396 181.23558 601.28957 566.04859 -0.05713 5.99077 3.15254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28638 0.19856 -1.00000 - 11737 2017 8 21 15 48 31 894 4.8396 181.23685 601.33882 566.09599 -0.05712 5.99107 3.15178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28603 0.19856 -1.00000 - 11738 2017 8 21 15 48 36 734 4.8396 181.23813 601.38905 566.14344 -0.05705 5.99829 3.15203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28568 0.19856 -1.00000 - 11739 2017 8 21 15 48 41 574 4.8396 181.23942 601.44543 566.19113 -0.05694 6.01228 3.15472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28532 0.19855 -1.00000 - 11740 2017 8 21 15 48 46 413 4.8396 181.24070 601.50619 566.23870 -0.05681 6.02677 3.15457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28497 0.19855 -1.00000 - 11741 2017 8 21 15 48 51 253 4.8396 181.24198 601.56116 566.28636 -0.05666 6.04243 3.15531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28462 0.19855 -1.00000 - 11742 2017 8 21 15 48 56 92 4.8395 181.24325 601.61977 566.33416 -0.05651 6.05829 3.15741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28427 0.19855 -1.00000 - 11743 2017 8 21 15 49 0 932 4.8395 181.24452 601.67050 566.38201 -0.05637 6.07442 3.15514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28392 0.19855 -1.00000 - 11744 2017 8 21 15 49 5 771 4.8395 181.24579 601.72376 566.42991 -0.05623 6.08641 3.15706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28356 0.19855 -1.00000 - 11745 2017 8 21 15 49 10 611 4.8395 181.24706 601.77995 566.47792 -0.05608 6.10978 3.15917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28321 0.19855 -1.00000 - 11746 2017 8 21 15 49 15 450 4.8395 181.24833 601.84172 566.52586 -0.05592 6.12512 3.15683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28286 0.19855 -1.00000 - 11747 2017 8 21 15 49 20 290 4.8395 181.24960 601.89950 566.57378 -0.05575 6.15024 3.15945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28251 0.19855 -1.00000 - 11748 2017 8 21 15 49 25 129 4.8395 181.25088 601.95187 566.62173 -0.05556 6.14740 3.16027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28216 0.19855 -1.00000 - 11749 2017 8 21 15 49 29 969 4.8395 181.25216 602.00478 566.66970 -0.05535 6.16486 3.15877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28180 0.19855 -1.00000 - 11750 2017 8 21 15 49 34 808 4.8394 181.25343 602.06061 566.71779 -0.05511 6.19898 3.16355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28145 0.19855 -1.00000 - 11751 2017 8 21 15 49 39 648 4.8394 181.25471 602.12017 566.76569 -0.05485 6.23784 3.16532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28110 0.19855 -1.00000 - 11752 2017 8 21 15 49 44 487 4.8394 181.25600 602.18108 566.81364 -0.05457 6.27590 3.16396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28075 0.19855 -1.00000 - 11753 2017 8 21 15 49 49 327 4.8394 181.25728 602.23778 566.86173 -0.05428 6.30892 3.16823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28040 0.19855 -1.00000 - 11754 2017 8 21 15 49 54 166 4.8394 181.25856 602.28846 566.90968 -0.05400 6.33791 3.16770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28005 0.19855 -1.00000 - 11755 2017 8 21 15 49 59 5 4.8394 181.25985 602.34108 566.95773 -0.05375 6.36481 3.17018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27969 0.19855 -1.00000 - 11756 2017 8 21 15 50 3 845 4.8394 181.26114 602.39674 567.00585 -0.05354 6.39033 3.17482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27934 0.19855 -1.00000 - 11757 2017 8 21 15 50 8 684 4.8394 181.26243 602.45661 567.05373 -0.05336 6.42069 3.17567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27899 0.19855 -1.00000 - 11758 2017 8 21 15 50 13 523 4.8393 181.26372 602.51691 567.10167 -0.05322 6.45813 3.17850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27864 0.19855 -1.00000 - 11759 2017 8 21 15 50 18 363 4.8393 181.26501 602.57179 567.14962 -0.05308 6.49222 3.18303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27829 0.19855 -1.00000 - 11760 2017 8 21 15 50 23 202 4.8393 181.26631 602.62204 567.19733 -0.05293 6.52226 3.18463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27793 0.19855 -1.00000 - 11761 2017 8 21 15 50 28 41 4.8393 181.26761 602.67701 567.24499 -0.05273 6.54780 3.18847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27758 0.19855 -1.00000 - 11762 2017 8 21 15 50 32 881 4.8393 181.26891 602.73174 567.29268 -0.05250 6.56879 3.19364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27723 0.19855 -1.00000 - 11763 2017 8 21 15 50 37 720 4.8393 181.27021 602.78696 567.34026 -0.05224 6.58530 3.19549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27688 0.19855 -1.00000 - 11764 2017 8 21 15 50 42 559 4.8393 181.27151 602.84188 567.38761 -0.05199 6.59746 3.19960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27653 0.19855 -1.00000 - 11765 2017 8 21 15 50 47 398 4.8393 181.27282 602.89645 567.43481 -0.05176 6.60545 3.20380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27617 0.19855 -1.00000 - 11766 2017 8 21 15 50 52 238 4.8392 181.27412 602.95077 567.48187 -0.05158 6.60946 3.20607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27582 0.19855 -1.00000 - 11767 2017 8 21 15 50 57 77 4.8392 181.27543 603.00489 567.52891 -0.05143 6.60971 3.20901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27547 0.19855 -1.00000 - 11768 2017 8 21 15 51 1 916 4.8392 181.27674 603.05875 567.57587 -0.05131 6.60643 3.21301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27512 0.19854 -1.00000 - 11769 2017 8 21 15 51 6 755 4.8392 181.27806 603.11517 567.62267 -0.05121 6.59984 3.21340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27477 0.19854 -1.00000 - 11770 2017 8 21 15 51 11 594 4.8392 181.27938 603.17228 567.66944 -0.05113 6.59022 3.21621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27441 0.19854 -1.00000 - 11771 2017 8 21 15 51 16 434 4.8392 181.28071 603.22031 567.71616 -0.05106 6.57790 3.21844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27406 0.19854 -1.00000 - 11772 2017 8 21 15 51 21 273 4.8392 181.28204 603.27393 567.76276 -0.05100 6.56327 3.21871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27371 0.19854 -1.00000 - 11773 2017 8 21 15 51 26 112 4.8392 181.28338 603.32832 567.80936 -0.05096 6.54678 3.22243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27336 0.19854 -1.00000 - 11774 2017 8 21 15 51 30 951 4.8391 181.28472 603.38251 567.85574 -0.05092 6.52893 3.22250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27301 0.19854 -1.00000 - 11775 2017 8 21 15 51 35 790 4.8391 181.28606 603.44086 567.90209 -0.05089 6.51053 3.22202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27265 0.19854 -1.00000 - 11776 2017 8 21 15 51 40 629 4.8391 181.28741 603.49361 567.94844 -0.05086 6.49193 3.22496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27230 0.19854 -1.00000 - 11777 2017 8 21 15 51 45 468 4.8391 181.28877 603.54254 567.99462 -0.05083 6.47222 3.22331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27195 0.19854 -1.00000 - 11778 2017 8 21 15 51 50 308 4.8391 181.29013 603.59633 568.04081 -0.05080 6.45040 3.22070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27160 0.19854 -1.00000 - 11779 2017 8 21 15 51 55 147 4.8391 181.29150 603.64810 568.08704 -0.05077 6.42843 3.22253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27125 0.19854 -1.00000 - 11780 2017 8 21 15 51 59 986 4.8391 181.29287 603.69856 568.13322 -0.05074 6.40804 3.21852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27090 0.19854 -1.00000 - 11781 2017 8 21 15 52 4 825 4.8391 181.29424 603.75711 568.17952 -0.05071 6.38905 3.21734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27054 0.19854 -1.00000 - 11782 2017 8 21 15 52 9 664 4.8390 181.29562 603.80964 568.22580 -0.05068 6.37125 3.21712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27019 0.19854 -1.00000 - 11783 2017 8 21 15 52 14 503 4.8390 181.29701 603.86423 568.27212 -0.05064 6.35397 3.21357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26984 0.19854 -1.00000 - 11784 2017 8 21 15 52 19 342 4.8390 181.29840 603.91701 568.31859 -0.05060 6.33684 3.21451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26949 0.19854 -1.00000 - 11785 2017 8 21 15 52 24 181 4.8390 181.29979 603.96510 568.36517 -0.05054 6.31979 3.21324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26914 0.19854 -1.00000 - 11786 2017 8 21 15 52 29 20 4.8390 181.30119 604.01771 568.41177 -0.05047 6.30292 3.20873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26878 0.19854 -1.00000 - 11787 2017 8 21 15 52 33 859 4.8390 181.30260 604.07703 568.45857 -0.05038 6.28664 3.20910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26843 0.19854 -1.00000 - 11788 2017 8 21 15 52 38 698 4.8390 181.30401 604.12924 568.50543 -0.05029 6.27060 3.20769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26808 0.19854 -1.00000 - 11789 2017 8 21 15 52 43 537 4.8390 181.30542 604.18587 568.55235 -0.05019 6.25087 3.20314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26773 0.19854 -1.00000 - 11790 2017 8 21 15 52 48 376 4.8390 181.30684 604.23883 568.59956 -0.05008 6.22700 3.20419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26738 0.19854 -1.00000 - 11791 2017 8 21 15 52 53 215 4.8389 181.30827 604.28879 568.64676 -0.04996 6.20382 3.20191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26702 0.19854 -1.00000 - 11792 2017 8 21 15 52 58 54 4.8389 181.30970 604.34189 568.69400 -0.04983 6.18376 3.19810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26667 0.19854 -1.00000 - 11793 2017 8 21 15 53 2 893 4.8389 181.31113 604.40253 568.74148 -0.04969 6.16738 3.20070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26632 0.19854 -1.00000 - 11794 2017 8 21 15 53 7 732 4.8389 181.31257 604.45403 568.78898 -0.04954 6.16767 3.19931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26597 0.19854 -1.00000 - 11795 2017 8 21 15 53 12 570 4.8389 181.31401 604.51314 568.83663 -0.04939 6.17421 3.19797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26562 0.19854 -1.00000 - 11796 2017 8 21 15 53 17 409 4.8389 181.31546 604.56350 568.88455 -0.04923 6.18142 3.19811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26526 0.19853 -1.00000 - 11797 2017 8 21 15 53 22 248 4.8389 181.31691 604.61821 568.93246 -0.04909 6.18993 3.19741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26491 0.19853 -1.00000 - 11798 2017 8 21 15 53 27 87 4.8389 181.31837 604.67809 568.98043 -0.04894 6.20010 3.19997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26456 0.19853 -1.00000 - 11799 2017 8 21 15 53 31 926 4.8389 181.31983 604.73713 569.02847 -0.04880 6.21190 3.20037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26421 0.19853 -1.00000 - 11800 2017 8 21 15 53 36 765 4.8388 181.32129 604.79073 569.07669 -0.04865 6.22525 3.19913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26386 0.19853 -1.00000 - 11801 2017 8 21 15 53 41 604 4.8388 181.32276 604.84635 569.12492 -0.04850 6.24006 3.20306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26351 0.19853 -1.00000 - 11802 2017 8 21 15 53 46 442 4.8388 181.32424 604.89717 569.17308 -0.04836 6.25618 3.20343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26315 0.19853 -1.00000 - 11803 2017 8 21 15 53 51 281 4.8388 181.32571 604.95484 569.22121 -0.04821 6.27336 3.20373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26280 0.19853 -1.00000 - 11804 2017 8 21 15 53 56 120 4.8388 181.32719 605.00991 569.26937 -0.04807 6.29123 3.20742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26245 0.19853 -1.00000 - 11805 2017 8 21 15 54 0 959 4.8388 181.32867 605.06645 569.31744 -0.04795 6.30927 3.21001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26210 0.19853 -1.00000 - 11806 2017 8 21 15 54 5 798 4.8388 181.33016 605.12226 569.36548 -0.04783 6.32703 3.21363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26175 0.19853 -1.00000 - 11807 2017 8 21 15 54 10 636 4.8388 181.33165 605.17800 569.41347 -0.04771 6.34409 3.21709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26139 0.19853 -1.00000 - 11808 2017 8 21 15 54 15 475 4.8388 181.33314 605.23355 569.46130 -0.04760 6.36010 3.21979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26104 0.19853 -1.00000 - 11809 2017 8 21 15 54 20 314 4.8387 181.33464 605.28907 569.50904 -0.04748 6.37483 3.22411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26069 0.19853 -1.00000 - 11810 2017 8 21 15 54 25 153 4.8387 181.33613 605.34478 569.55663 -0.04736 6.38818 3.22879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26034 0.19853 -1.00000 - 11811 2017 8 21 15 54 29 991 4.8387 181.33763 605.40040 569.60403 -0.04722 6.40018 3.23012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25999 0.19853 -1.00000 - 11812 2017 8 21 15 54 34 830 4.8387 181.33914 605.45559 569.65127 -0.04708 6.41101 3.23445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25963 0.19853 -1.00000 - 11813 2017 8 21 15 54 39 669 4.8387 181.34064 605.50771 569.69839 -0.04694 6.42101 3.23694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25928 0.19853 -1.00000 - 11814 2017 8 21 15 54 44 507 4.8387 181.34215 605.56180 569.74542 -0.04679 6.43049 3.23779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25893 0.19853 -1.00000 - 11815 2017 8 21 15 54 49 346 4.8387 181.34367 605.61342 569.79240 -0.04664 6.44570 3.24016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25858 0.19853 -1.00000 - 11816 2017 8 21 15 54 54 185 4.8387 181.34518 605.67205 569.83932 -0.04648 6.45920 3.24094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25823 0.19853 -1.00000 - 11817 2017 8 21 15 54 59 23 4.8387 181.34670 605.73107 569.88628 -0.04631 6.47038 3.24178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25788 0.19853 -1.00000 - 11818 2017 8 21 15 55 3 862 4.8386 181.34822 605.78344 569.93319 -0.04612 6.47945 3.24265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25752 0.19853 -1.00000 - 11819 2017 8 21 15 55 8 701 4.8386 181.34975 605.83241 569.97998 -0.04592 6.48682 3.24207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25717 0.19853 -1.00000 - 11820 2017 8 21 15 55 13 539 4.8386 181.35127 605.88589 570.02677 -0.04571 6.49291 3.24282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25682 0.19853 -1.00000 - 11821 2017 8 21 15 55 18 378 4.8386 181.35280 605.94156 570.07343 -0.04550 6.50162 3.24262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25647 0.19853 -1.00000 - 11822 2017 8 21 15 55 23 217 4.8386 181.35434 606.00013 570.12014 -0.04527 6.50892 3.24047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25612 0.19853 -1.00000 - 11823 2017 8 21 15 55 28 55 4.8386 181.35587 606.05274 570.16688 -0.04504 6.51413 3.24018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25576 0.19853 -1.00000 - 11824 2017 8 21 15 55 32 894 4.8386 181.35741 606.10677 570.21358 -0.04482 6.51764 3.23722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25541 0.19852 -1.00000 - 11825 2017 8 21 15 55 37 732 4.8386 181.35895 606.15922 570.26035 -0.04460 6.51908 3.23414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25506 0.19852 -1.00000 - 11826 2017 8 21 15 55 42 571 4.8386 181.36050 606.20839 570.30715 -0.04438 6.51951 3.23110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25471 0.19852 -1.00000 - 11827 2017 8 21 15 55 47 409 4.8386 181.36204 606.26523 570.35392 -0.04418 6.51644 3.22749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25436 0.19852 -1.00000 - 11828 2017 8 21 15 55 52 248 4.8385 181.36358 606.32376 570.40092 -0.04398 6.51014 3.22495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25400 0.19852 -1.00000 - 11829 2017 8 21 15 55 57 87 4.8385 181.36509 606.37639 570.44790 -0.04381 6.47010 3.22097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25365 0.19852 -1.00000 - 11830 2017 8 21 15 56 1 925 4.8385 181.36659 606.43062 570.49481 -0.04365 6.43774 3.21368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25330 0.19852 -1.00000 - 11831 2017 8 21 15 56 6 764 4.8385 181.36808 606.48327 570.54197 -0.04351 6.43851 3.21069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25295 0.19852 -1.00000 - 11832 2017 8 21 15 56 11 602 4.8385 181.36955 606.53595 570.58905 -0.04338 6.43633 3.20741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25260 0.19852 -1.00000 - 11833 2017 8 21 15 56 16 441 4.8385 181.37101 606.59421 570.63611 -0.04328 6.43200 3.20173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25225 0.19852 -1.00000 - 11834 2017 8 21 15 56 21 279 4.8385 181.37245 606.64809 570.68328 -0.04320 6.42421 3.19981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25189 0.19852 -1.00000 - 11835 2017 8 21 15 56 26 118 4.8385 181.37388 606.70131 570.73045 -0.04312 6.41314 3.19318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25154 0.19852 -1.00000 - 11836 2017 8 21 15 56 30 956 4.8385 181.37530 606.75447 570.77776 -0.04306 6.39831 3.18832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25119 0.19852 -1.00000 - 11837 2017 8 21 15 56 35 794 4.8385 181.37671 606.80962 570.82506 -0.04301 6.37966 3.18577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25084 0.19852 -1.00000 - 11838 2017 8 21 15 56 40 633 4.8384 181.37811 606.86795 570.87224 -0.04298 6.35744 3.18140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25049 0.19852 -1.00000 - 11839 2017 8 21 15 56 45 471 4.8384 181.37951 606.92207 570.91964 -0.04296 6.33197 3.17871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25013 0.19852 -1.00000 - 11840 2017 8 21 15 56 50 310 4.8384 181.38089 606.97219 570.96714 -0.04296 6.30356 3.17475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24978 0.19852 -1.00000 - 11841 2017 8 21 15 56 55 148 4.8384 181.38227 607.03136 571.01475 -0.04298 6.27254 3.16908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24943 0.19852 -1.00000 - 11842 2017 8 21 15 56 59 987 4.8384 181.38364 607.08657 571.06246 -0.04301 6.23927 3.16878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24908 0.19852 -1.00000 - 11843 2017 8 21 15 57 4 825 4.8384 181.38501 607.13585 571.11003 -0.04304 6.20421 3.16509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24873 0.19852 -1.00000 - 11844 2017 8 21 15 57 9 663 4.8384 181.38638 607.19310 571.15768 -0.04305 6.16785 3.16020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24837 0.19852 -1.00000 - 11845 2017 8 21 15 57 14 502 4.8384 181.38774 607.24752 571.20540 -0.04307 6.13075 3.15931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24802 0.19852 -1.00000 - 11846 2017 8 21 15 57 19 340 4.8384 181.38910 607.30289 571.25308 -0.04309 6.09393 3.15483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24767 0.19852 -1.00000 - 11847 2017 8 21 15 57 24 178 4.8384 181.39046 607.36319 571.30084 -0.04312 6.05794 3.15340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24732 0.19852 -1.00000 - 11848 2017 8 21 15 57 29 17 4.8384 181.39181 607.41782 571.34858 -0.04314 6.02229 3.15229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24697 0.19852 -1.00000 - 11849 2017 8 21 15 57 33 855 4.8383 181.39316 607.46919 571.39624 -0.04314 5.98620 3.14985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24662 0.19852 -1.00000 - 11850 2017 8 21 15 57 38 694 4.8383 181.39452 607.52523 571.44397 -0.04312 5.95145 3.14895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24626 0.19852 -1.00000 - 11851 2017 8 21 15 57 43 532 4.8383 181.39587 607.58089 571.49180 -0.04307 5.92329 3.14686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24591 0.19852 -1.00000 - 11852 2017 8 21 15 57 48 370 4.8383 181.39723 607.63616 571.53950 -0.04303 5.91108 3.14616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24556 0.19851 -1.00000 - 11853 2017 8 21 15 57 53 208 4.8383 181.39858 607.69653 571.58717 -0.04299 5.90155 3.14713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24521 0.19851 -1.00000 - 11854 2017 8 21 15 57 58 47 4.8383 181.39992 607.74897 571.63475 -0.04298 5.89692 3.14795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24486 0.19851 -1.00000 - 11855 2017 8 21 15 58 2 885 4.8383 181.40127 607.80274 571.68221 -0.04297 5.89735 3.14864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24450 0.19851 -1.00000 - 11856 2017 8 21 15 58 7 723 4.8383 181.40262 607.85891 571.72972 -0.04294 5.90999 3.15125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24415 0.19851 -1.00000 - 11857 2017 8 21 15 58 12 562 4.8383 181.40397 607.91396 571.77714 -0.04289 5.92965 3.15235 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24380 0.19851 -1.00000 - 11858 2017 8 21 15 58 17 400 4.8383 181.40532 607.97144 571.82438 -0.04279 5.92985 3.15369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24345 0.19851 -1.00000 - 11859 2017 8 21 15 58 22 238 4.8383 181.40667 608.02980 571.87163 -0.04268 5.94490 3.15574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24310 0.19851 -1.00000 - 11860 2017 8 21 15 58 27 76 4.8382 181.40802 608.07880 571.91879 -0.04256 5.95834 3.15860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24275 0.19851 -1.00000 - 11861 2017 8 21 15 58 31 915 4.8382 181.40937 608.13359 571.96589 -0.04243 5.98509 3.16031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24239 0.19851 -1.00000 - 11862 2017 8 21 15 58 36 753 4.8382 181.41071 608.18902 572.01296 -0.04230 6.01583 3.16348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24204 0.19851 -1.00000 - 11863 2017 8 21 15 58 41 591 4.8382 181.41206 608.24377 572.06002 -0.04216 6.04260 3.16624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24169 0.19851 -1.00000 - 11864 2017 8 21 15 58 46 429 4.8382 181.41341 608.30100 572.10695 -0.04198 6.06596 3.16618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24134 0.19851 -1.00000 - 11865 2017 8 21 15 58 51 267 4.8382 181.41476 608.34749 572.15393 -0.04177 6.08814 3.16874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24099 0.19851 -1.00000 - 11866 2017 8 21 15 58 56 106 4.8382 181.41611 608.40434 572.20090 -0.04154 6.12035 3.17091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24063 0.19851 -1.00000 - 11867 2017 8 21 15 59 0 944 4.8382 181.41745 608.45999 572.24801 -0.04130 6.15259 3.17503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24028 0.19851 -1.00000 - 11868 2017 8 21 15 59 5 782 4.8382 181.41880 608.51423 572.29499 -0.04106 6.18693 3.17930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23993 0.19851 -1.00000 - 11869 2017 8 21 15 59 10 620 4.8382 181.42014 608.56466 572.34180 -0.04081 6.23527 3.18130 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23958 0.19851 -1.00000 - 11870 2017 8 21 15 59 15 458 4.8382 181.42149 608.61856 572.38863 -0.04057 6.28407 3.18632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23923 0.19851 -1.00000 - 11871 2017 8 21 15 59 20 296 4.8381 181.42283 608.67293 572.43528 -0.04032 6.33171 3.19194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23888 0.19851 -1.00000 - 11872 2017 8 21 15 59 25 135 4.8381 181.42417 608.72715 572.48176 -0.04008 6.37712 3.19446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23852 0.19851 -1.00000 - 11873 2017 8 21 15 59 29 973 4.8381 181.42551 608.78103 572.52813 -0.03983 6.41951 3.20003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23817 0.19851 -1.00000 - 11874 2017 8 21 15 59 34 811 4.8381 181.42685 608.83264 572.57444 -0.03959 6.45822 3.20386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23782 0.19851 -1.00000 - 11875 2017 8 21 15 59 39 649 4.8381 181.42819 608.88405 572.62061 -0.03936 6.49279 3.20607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23747 0.19851 -1.00000 - 11876 2017 8 21 15 59 44 487 4.8381 181.42952 608.93712 572.66667 -0.03914 6.52295 3.21030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23712 0.19851 -1.00000 - 11877 2017 8 21 15 59 49 325 4.8381 181.43086 608.99343 572.71263 -0.03893 6.55802 3.21293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23676 0.19851 -1.00000 - 11878 2017 8 21 15 59 54 163 4.8381 181.43219 609.05087 572.75858 -0.03871 6.60208 3.21401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23641 0.19851 -1.00000 - 11879 2017 8 21 15 59 59 1 4.8381 181.43353 609.10289 572.80447 -0.03849 6.63962 3.21659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23606 0.19851 -1.00000 - 11880 2017 8 21 16 0 3 839 4.8381 181.43486 609.15007 572.85026 -0.03827 6.66914 3.21717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23571 0.19850 -1.00000 - 11881 2017 8 21 16 0 8 677 4.8381 181.43619 609.19985 572.89594 -0.03806 6.68969 3.21727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23536 0.19850 -1.00000 - 11882 2017 8 21 16 0 13 516 4.8381 181.43753 609.25363 572.94162 -0.03784 6.70061 3.21838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23500 0.19850 -1.00000 - 11883 2017 8 21 16 0 18 354 4.8380 181.43886 609.31107 572.98726 -0.03764 6.70067 3.21751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23465 0.19850 -1.00000 - 11884 2017 8 21 16 0 23 192 4.8380 181.44019 609.36332 573.03285 -0.03745 6.66552 3.21765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23430 0.19850 -1.00000 - 11885 2017 8 21 16 0 28 30 4.8380 181.44152 609.41082 573.07842 -0.03728 6.62677 3.21530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23395 0.19850 -1.00000 - 11886 2017 8 21 16 0 32 868 4.8380 181.44286 609.46238 573.12400 -0.03714 6.60654 3.21337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23360 0.19850 -1.00000 - 11887 2017 8 21 16 0 37 706 4.8380 181.44420 609.51750 573.16958 -0.03701 6.57643 3.21116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23325 0.19850 -1.00000 - 11888 2017 8 21 16 0 42 544 4.8380 181.44553 609.57428 573.21512 -0.03691 6.54197 3.20943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23289 0.19850 -1.00000 - 11889 2017 8 21 16 0 47 382 4.8380 181.44687 609.62614 573.26062 -0.03682 6.50269 3.20693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23254 0.19850 -1.00000 - 11890 2017 8 21 16 0 52 220 4.8380 181.44821 609.67824 573.30611 -0.03675 6.43754 3.20159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23219 0.19850 -1.00000 - 11891 2017 8 21 16 0 57 58 4.8380 181.44955 609.72552 573.35163 -0.03671 6.39720 3.19619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23184 0.19850 -1.00000 - 11892 2017 8 21 16 1 1 896 4.8380 181.45090 609.77753 573.39720 -0.03668 6.35495 3.19134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23149 0.19850 -1.00000 - 11893 2017 8 21 16 1 6 734 4.8380 181.45224 609.83105 573.44289 -0.03668 6.31187 3.18616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23113 0.19850 -1.00000 - 11894 2017 8 21 16 1 11 572 4.8380 181.45358 609.88741 573.48867 -0.03669 6.26668 3.17951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23078 0.19850 -1.00000 - 11895 2017 8 21 16 1 16 410 4.8380 181.45493 609.93885 573.53456 -0.03671 6.22094 3.17377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23043 0.19850 -1.00000 - 11896 2017 8 21 16 1 21 248 4.8380 181.45628 609.98960 573.58065 -0.03674 6.17899 3.16686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23008 0.19850 -1.00000 - 11897 2017 8 21 16 1 26 86 4.8380 181.45763 610.04372 573.62685 -0.03678 6.13968 3.15895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22973 0.19850 -1.00000 - 11898 2017 8 21 16 1 30 923 4.8379 181.45898 610.09683 573.67310 -0.03682 6.10280 3.15261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22938 0.19850 -1.00000 - 11899 2017 8 21 16 1 35 761 4.8379 181.46033 610.15350 573.71946 -0.03688 6.06918 3.14654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22902 0.19850 -1.00000 - 11900 2017 8 21 16 1 40 599 4.8379 181.46168 610.20628 573.76594 -0.03694 6.03624 3.13943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22867 0.19850 -1.00000 - 11901 2017 8 21 16 1 45 437 4.8379 181.46304 610.25904 573.81250 -0.03701 5.99447 3.13337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22832 0.19850 -1.00000 - 11902 2017 8 21 16 1 50 275 4.8379 181.46439 610.30971 573.85901 -0.03705 5.98266 3.12647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22797 0.19850 -1.00000 - 11903 2017 8 21 16 1 55 113 4.8379 181.46574 610.36796 573.90574 -0.03708 5.97158 3.11916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22762 0.19850 -1.00000 - 11904 2017 8 21 16 1 59 951 4.8379 181.46710 610.42707 573.95242 -0.03708 5.95908 3.11534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22726 0.19850 -1.00000 - 11905 2017 8 21 16 2 4 789 4.8379 181.46845 610.47893 573.99916 -0.03704 5.90655 3.10826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22691 0.19850 -1.00000 - 11906 2017 8 21 16 2 9 627 4.8379 181.46980 610.53343 574.04594 -0.03698 5.89606 3.10304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22656 0.19850 -1.00000 - 11907 2017 8 21 16 2 14 465 4.8379 181.47115 610.58147 574.09275 -0.03690 5.88814 3.09829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22621 0.19850 -1.00000 - 11908 2017 8 21 16 2 19 303 4.8379 181.47251 610.63653 574.13965 -0.03680 5.88301 3.09268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22586 0.19849 -1.00000 - 11909 2017 8 21 16 2 24 140 4.8379 181.47386 610.69491 574.18646 -0.03668 5.88160 3.08911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22551 0.19849 -1.00000 - 11910 2017 8 21 16 2 28 978 4.8379 181.47521 610.75191 574.23337 -0.03653 5.88423 3.08308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22515 0.19849 -1.00000 - 11911 2017 8 21 16 2 33 816 4.8379 181.47657 610.80844 574.28019 -0.03636 5.88770 3.08119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22480 0.19849 -1.00000 - 11912 2017 8 21 16 2 38 654 4.8379 181.47792 610.85786 574.32692 -0.03618 5.89314 3.07792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22445 0.19849 -1.00000 - 11913 2017 8 21 16 2 43 492 4.8378 181.47927 610.90947 574.37369 -0.03597 5.90023 3.07481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22410 0.19849 -1.00000 - 11914 2017 8 21 16 2 48 330 4.8378 181.48063 610.96125 574.42053 -0.03575 5.90844 3.07263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22375 0.19849 -1.00000 - 11915 2017 8 21 16 2 53 168 4.8378 181.48198 611.01646 574.46738 -0.03552 5.91720 3.07093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22339 0.19849 -1.00000 - 11916 2017 8 21 16 2 58 5 4.8378 181.48333 611.07113 574.51402 -0.03528 5.92591 3.07092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22304 0.19849 -1.00000 - 11917 2017 8 21 16 3 2 843 4.8378 181.48469 611.12544 574.56056 -0.03504 5.93411 3.06918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22269 0.19849 -1.00000 - 11918 2017 8 21 16 3 7 681 4.8378 181.48604 611.17960 574.60699 -0.03479 5.94163 3.07029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22234 0.19849 -1.00000 - 11919 2017 8 21 16 3 12 519 4.8378 181.48739 611.23362 574.65330 -0.03455 5.94840 3.07079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22199 0.19849 -1.00000 - 11920 2017 8 21 16 3 17 357 4.8378 181.48875 611.28754 574.69951 -0.03432 5.95452 3.07179 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22164 0.19849 -1.00000 - 11921 2017 8 21 16 3 22 194 4.8378 181.49010 611.34133 574.74555 -0.03411 5.96028 3.07407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22128 0.19849 -1.00000 - 11922 2017 8 21 16 3 27 32 4.8378 181.49146 611.39501 574.79139 -0.03391 5.96694 3.07422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22093 0.19849 -1.00000 - 11923 2017 8 21 16 3 31 870 4.8378 181.49282 611.44832 574.83705 -0.03373 5.98198 3.07627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22058 0.19849 -1.00000 - 11924 2017 8 21 16 3 36 708 4.8378 181.49417 611.50149 574.88251 -0.03356 5.99444 3.07921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22023 0.19849 -1.00000 - 11925 2017 8 21 16 3 41 546 4.8378 181.49553 611.55412 574.92774 -0.03342 6.00418 3.07980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21988 0.19849 -1.00000 - 11926 2017 8 21 16 3 46 383 4.8378 181.49689 611.60603 574.97289 -0.03329 6.01133 3.08096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21952 0.19849 -1.00000 - 11927 2017 8 21 16 3 51 221 4.8378 181.49825 611.65825 575.01797 -0.03317 6.01630 3.08162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21917 0.19849 -1.00000 - 11928 2017 8 21 16 3 56 59 4.8378 181.49961 611.71060 575.06298 -0.03306 6.01964 3.08090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21882 0.19849 -1.00000 - 11929 2017 8 21 16 4 0 897 4.8378 181.50097 611.76773 575.10793 -0.03295 6.02196 3.08132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21847 0.19849 -1.00000 - 11930 2017 8 21 16 4 5 734 4.8377 181.50232 611.81431 575.15270 -0.03286 6.02381 3.07910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21812 0.19849 -1.00000 - 11931 2017 8 21 16 4 10 572 4.8377 181.50368 611.86734 575.19745 -0.03276 6.03000 3.07743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21777 0.19849 -1.00000 - 11932 2017 8 21 16 4 15 410 4.8377 181.50504 611.91898 575.24219 -0.03267 6.03755 3.07567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21741 0.19849 -1.00000 - 11933 2017 8 21 16 4 20 248 4.8377 181.50640 611.97000 575.28686 -0.03258 6.04338 3.07309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21706 0.19849 -1.00000 - 11934 2017 8 21 16 4 25 85 4.8377 181.50776 612.02478 575.33139 -0.03249 6.04574 3.06954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21671 0.19849 -1.00000 - 11935 2017 8 21 16 4 29 923 4.8377 181.50912 612.07022 575.37596 -0.03240 6.04289 3.06571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21636 0.19849 -1.00000 - 11936 2017 8 21 16 4 34 761 4.8377 181.51048 612.12550 575.42070 -0.03231 6.04730 3.06211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21601 0.19848 -1.00000 - 11937 2017 8 21 16 4 39 598 4.8377 181.51185 612.18039 575.46551 -0.03222 6.05154 3.05931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21565 0.19848 -1.00000 - 11938 2017 8 21 16 4 44 436 4.8377 181.51321 612.23137 575.51011 -0.03213 6.05716 3.05443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21530 0.19848 -1.00000 - 11939 2017 8 21 16 4 49 274 4.8377 181.51457 612.28351 575.55476 -0.03204 6.06380 3.04943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21495 0.19848 -1.00000 - 11940 2017 8 21 16 4 54 112 4.8377 181.51593 612.33390 575.59954 -0.03195 6.07061 3.04743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21460 0.19848 -1.00000 - 11941 2017 8 21 16 4 58 949 4.8377 181.51730 612.38393 575.64415 -0.03185 6.07499 3.04188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21425 0.19848 -1.00000 - 11942 2017 8 21 16 5 3 787 4.8377 181.51867 612.44058 575.68871 -0.03176 6.07408 3.03734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21390 0.19848 -1.00000 - 11943 2017 8 21 16 5 8 625 4.8377 181.52003 612.49194 575.73342 -0.03167 6.04438 3.03550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21354 0.19848 -1.00000 - 11944 2017 8 21 16 5 13 462 4.8377 181.52140 612.53831 575.77801 -0.03160 6.02622 3.02861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21319 0.19848 -1.00000 - 11945 2017 8 21 16 5 18 300 4.8377 181.52277 612.59361 575.82248 -0.03154 6.01741 3.02269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21284 0.19848 -1.00000 - 11946 2017 8 21 16 5 23 138 4.8377 181.52414 612.64502 575.86696 -0.03151 6.01060 3.02097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21249 0.19848 -1.00000 - 11947 2017 8 21 16 5 27 975 4.8377 181.52552 612.69887 575.91138 -0.03150 6.00086 3.01587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21214 0.19848 -1.00000 - 11948 2017 8 21 16 5 32 813 4.8377 181.52689 612.75025 575.95574 -0.03150 5.98463 3.00938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21178 0.19848 -1.00000 - 11949 2017 8 21 16 5 37 651 4.8377 181.52826 612.79962 576.00001 -0.03151 5.96353 3.00720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21143 0.19848 -1.00000 - 11950 2017 8 21 16 5 42 488 4.8377 181.52964 612.84529 576.04421 -0.03151 5.94237 3.00118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21108 0.19848 -1.00000 - 11951 2017 8 21 16 5 47 326 4.8377 181.53101 612.90046 576.08860 -0.03150 5.92135 2.99607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21073 0.19848 -1.00000 - 11952 2017 8 21 16 5 52 164 4.8376 181.53239 612.95200 576.13300 -0.03149 5.90054 2.99293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21038 0.19848 -1.00000 - 11953 2017 8 21 16 5 57 1 4.8376 181.53376 613.00457 576.17719 -0.03148 5.87917 2.98775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21003 0.19848 -1.00000 - 11954 2017 8 21 16 6 1 839 4.8376 181.53514 613.05514 576.22158 -0.03146 5.85699 2.98372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20967 0.19848 -1.00000 - 11955 2017 8 21 16 6 6 677 4.8376 181.53651 613.10596 576.26602 -0.03145 5.83397 2.98225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20932 0.19848 -1.00000 - 11956 2017 8 21 16 6 11 514 4.8376 181.53789 613.15138 576.31024 -0.03145 5.81046 2.97629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20897 0.19848 -1.00000 - 11957 2017 8 21 16 6 16 352 4.8376 181.53927 613.20622 576.35458 -0.03143 5.78948 2.97329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20862 0.19848 -1.00000 - 11958 2017 8 21 16 6 21 189 4.8376 181.54065 613.25340 576.39898 -0.03140 5.77106 2.97282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20827 0.19848 -1.00000 - 11959 2017 8 21 16 6 26 27 4.8376 181.54202 613.30480 576.44331 -0.03135 5.75353 2.96754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20792 0.19848 -1.00000 - 11960 2017 8 21 16 6 30 865 4.8376 181.54340 613.35554 576.48772 -0.03128 5.73724 2.96676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20756 0.19848 -1.00000 - 11961 2017 8 21 16 6 35 702 4.8376 181.54478 613.40636 576.53211 -0.03118 5.72252 2.96518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20721 0.19848 -1.00000 - 11962 2017 8 21 16 6 40 540 4.8376 181.54616 613.45580 576.57650 -0.03106 5.70962 2.96260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20686 0.19848 -1.00000 - 11963 2017 8 21 16 6 45 378 4.8376 181.54754 613.50690 576.62087 -0.03093 5.69873 2.96148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20651 0.19848 -1.00000 - 11964 2017 8 21 16 6 50 215 4.8376 181.54892 613.55747 576.66515 -0.03078 5.69003 2.96232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20616 0.19847 -1.00000 - 11965 2017 8 21 16 6 55 53 4.8376 181.55030 613.60814 576.70954 -0.03063 5.68357 2.96251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20580 0.19847 -1.00000 - 11966 2017 8 21 16 6 59 890 4.8376 181.55169 613.65932 576.75395 -0.03046 5.67935 2.96368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20545 0.19847 -1.00000 - 11967 2017 8 21 16 7 4 728 4.8376 181.55307 613.71020 576.79817 -0.03028 5.67740 2.96529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20510 0.19847 -1.00000 - 11968 2017 8 21 16 7 9 565 4.8376 181.55446 613.76106 576.84224 -0.03008 5.67766 2.96569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20475 0.19847 -1.00000 - 11969 2017 8 21 16 7 14 403 4.8376 181.55584 613.81174 576.88628 -0.02987 5.68006 2.96799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20440 0.19847 -1.00000 - 11970 2017 8 21 16 7 19 241 4.8376 181.55723 613.86271 576.93020 -0.02964 5.68452 2.96872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20405 0.19847 -1.00000 - 11971 2017 8 21 16 7 24 78 4.8376 181.55861 613.91396 576.97407 -0.02941 5.69096 2.96975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20369 0.19847 -1.00000 - 11972 2017 8 21 16 7 28 916 4.8376 181.56000 613.96145 577.01794 -0.02917 5.69932 2.97029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20334 0.19847 -1.00000 - 11973 2017 8 21 16 7 33 753 4.8376 181.56139 614.01127 577.06174 -0.02893 5.70951 2.96998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20299 0.19847 -1.00000 - 11974 2017 8 21 16 7 38 591 4.8376 181.56278 614.06233 577.10558 -0.02869 5.72150 2.97077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20264 0.19847 -1.00000 - 11975 2017 8 21 16 7 43 428 4.8376 181.56416 614.11756 577.14932 -0.02846 5.73519 2.97154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20229 0.19847 -1.00000 - 11976 2017 8 21 16 7 48 266 4.8376 181.56555 614.16871 577.19307 -0.02824 5.75054 2.97176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20193 0.19847 -1.00000 - 11977 2017 8 21 16 7 53 104 4.8376 181.56694 614.21562 577.23664 -0.02803 5.76754 2.97266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20158 0.19847 -1.00000 - 11978 2017 8 21 16 7 57 941 4.8376 181.56833 614.26456 577.28017 -0.02782 5.78640 2.97165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20123 0.19847 -1.00000 - 11979 2017 8 21 16 8 2 779 4.8375 181.56971 614.31608 577.32370 -0.02762 5.80610 2.97281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20088 0.19847 -1.00000 - 11980 2017 8 21 16 8 7 616 4.8375 181.57110 614.37121 577.36700 -0.02743 5.82345 2.97194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20053 0.19847 -1.00000 - 11981 2017 8 21 16 8 12 454 4.8375 181.57249 614.42655 577.41030 -0.02724 5.83976 2.97083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20018 0.19847 -1.00000 - 11982 2017 8 21 16 8 17 291 4.8375 181.57388 614.47627 577.45342 -0.02705 5.85605 2.97280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19982 0.19847 -1.00000 - 11983 2017 8 21 16 8 22 129 4.8375 181.57527 614.52101 577.49629 -0.02687 5.87128 2.96959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19947 0.19847 -1.00000 - 11984 2017 8 21 16 8 26 966 4.8375 181.57666 614.56939 577.53908 -0.02670 5.88620 2.96865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19912 0.19847 -1.00000 - 11985 2017 8 21 16 8 31 804 4.8375 181.57805 614.62117 577.58180 -0.02655 5.89789 2.96722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19877 0.19847 -1.00000 - 11986 2017 8 21 16 8 36 641 4.8375 181.57944 614.67599 577.62464 -0.02642 5.90815 2.96440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19842 0.19847 -1.00000 - 11987 2017 8 21 16 8 41 479 4.8375 181.58083 614.72421 577.66740 -0.02631 5.91774 2.95950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19806 0.19847 -1.00000 - 11988 2017 8 21 16 8 46 317 4.8375 181.58222 614.77179 577.71020 -0.02621 5.92549 2.95563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19771 0.19847 -1.00000 - 11989 2017 8 21 16 8 51 154 4.8375 181.58362 614.82008 577.75301 -0.02612 5.93231 2.95289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19736 0.19847 -1.00000 - 11990 2017 8 21 16 8 55 992 4.8375 181.58501 614.87036 577.79574 -0.02603 5.93531 2.94734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19701 0.19847 -1.00000 - 11991 2017 8 21 16 9 0 829 4.8375 181.58641 614.92447 577.83841 -0.02595 5.93539 2.94273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19666 0.19847 -1.00000 - 11992 2017 8 21 16 9 5 667 4.8375 181.58780 614.97270 577.88119 -0.02586 5.93523 2.93667 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19631 0.19846 -1.00000 - 11993 2017 8 21 16 9 10 504 4.8375 181.58920 615.02002 577.92411 -0.02578 5.89879 2.92993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19595 0.19846 -1.00000 - 11994 2017 8 21 16 9 15 342 4.8375 181.59060 615.06849 577.96702 -0.02572 5.89710 2.92305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19560 0.19846 -1.00000 - 11995 2017 8 21 16 9 20 179 4.8375 181.59199 615.11984 578.00985 -0.02568 5.90398 2.91715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19525 0.19846 -1.00000 - 11996 2017 8 21 16 9 25 17 4.8375 181.59339 615.17366 578.05270 -0.02566 5.90452 2.91100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19490 0.19846 -1.00000 - 11997 2017 8 21 16 9 29 854 4.8375 181.59479 615.22236 578.09565 -0.02566 5.89938 2.90471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19455 0.19846 -1.00000 - 11998 2017 8 21 16 9 34 692 4.8375 181.59618 615.26929 578.13854 -0.02567 5.89039 2.89879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19419 0.19846 -1.00000 - 11999 2017 8 21 16 9 39 529 4.8375 181.59758 615.31765 578.18145 -0.02569 5.87745 2.89189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19384 0.19846 -1.00000 - 12000 2017 8 21 16 9 44 367 4.8375 181.59898 615.36925 578.22434 -0.02570 5.86052 2.88621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19349 0.19846 -1.00000 - 12001 2017 8 21 16 9 49 204 4.8375 181.60038 615.42288 578.26726 -0.02571 5.83978 2.87918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19314 0.19846 -1.00000 - 12002 2017 8 21 16 9 54 42 4.8375 181.60179 615.47161 578.31029 -0.02571 5.81564 2.87445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19279 0.19846 -1.00000 - 12003 2017 8 21 16 9 58 879 4.8375 181.60319 615.51982 578.35325 -0.02571 5.78849 2.86879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19244 0.19846 -1.00000 - 12004 2017 8 21 16 10 3 717 4.8375 181.60459 615.56850 578.39631 -0.02571 5.75863 2.86296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19208 0.19846 -1.00000 - 12005 2017 8 21 16 10 8 554 4.8375 181.60600 615.61375 578.43921 -0.02572 5.72635 2.85905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19173 0.19846 -1.00000 - 12006 2017 8 21 16 10 13 392 4.8375 181.60740 615.66320 578.48206 -0.02573 5.69190 2.85193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19138 0.19846 -1.00000 - 12007 2017 8 21 16 10 18 229 4.8375 181.60881 615.71290 578.52490 -0.02575 5.65556 2.84934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19103 0.19846 -1.00000 - 12008 2017 8 21 16 10 23 67 4.8375 181.61022 615.76246 578.56764 -0.02575 5.61760 2.84601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19068 0.19846 -1.00000 - 12009 2017 8 21 16 10 27 904 4.8375 181.61163 615.81184 578.61039 -0.02573 5.57828 2.84154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19033 0.19846 -1.00000 - 12010 2017 8 21 16 10 32 742 4.8375 181.61304 615.86122 578.65310 -0.02568 5.53791 2.83933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18997 0.19846 -1.00000 - 12011 2017 8 21 16 10 37 579 4.8375 181.61445 615.91058 578.69571 -0.02561 5.49677 2.83504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18962 0.19846 -1.00000 - 12012 2017 8 21 16 10 42 417 4.8375 181.61586 615.95943 578.73808 -0.02553 5.45518 2.83410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18927 0.19846 -1.00000 - 12013 2017 8 21 16 10 47 254 4.8375 181.61728 616.00799 578.78032 -0.02544 5.41351 2.83154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18892 0.19846 -1.00000 - 12014 2017 8 21 16 10 52 92 4.8375 181.61869 616.05676 578.82256 -0.02536 5.37215 2.82996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18857 0.19846 -1.00000 - 12015 2017 8 21 16 10 56 929 4.8375 181.62011 616.10264 578.86475 -0.02528 5.33152 2.82891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18821 0.19846 -1.00000 - 12016 2017 8 21 16 11 1 766 4.8375 181.62153 616.15097 578.90686 -0.02520 5.29195 2.82633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18786 0.19846 -1.00000 - 12017 2017 8 21 16 11 6 604 4.8375 181.62294 616.19901 578.94891 -0.02511 5.26106 2.82676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18751 0.19846 -1.00000 - 12018 2017 8 21 16 11 11 441 4.8375 181.62436 616.25010 578.99082 -0.02500 5.23754 2.82435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18716 0.19846 -1.00000 - 12019 2017 8 21 16 11 16 279 4.8375 181.62578 616.30325 579.03273 -0.02487 5.22285 2.82125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18681 0.19846 -1.00000 - 12020 2017 8 21 16 11 21 116 4.8375 181.62720 616.35117 579.07473 -0.02470 5.21975 2.82002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18646 0.19845 -1.00000 - 12021 2017 8 21 16 11 25 954 4.8375 181.62862 616.39404 579.11655 -0.02451 5.21934 2.81623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18610 0.19845 -1.00000 - 12022 2017 8 21 16 11 30 791 4.8375 181.63004 616.44121 579.15843 -0.02429 5.21962 2.81223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18575 0.19845 -1.00000 - 12023 2017 8 21 16 11 35 629 4.8375 181.63146 616.48833 579.20044 -0.02406 5.17502 2.81113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18540 0.19845 -1.00000 - 12024 2017 8 21 16 11 40 466 4.8375 181.63288 616.54016 579.24248 -0.02382 5.20000 2.80544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18505 0.19845 -1.00000 - 12025 2017 8 21 16 11 45 304 4.8375 181.63431 616.59406 579.28459 -0.02358 5.21131 2.80061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18470 0.19845 -1.00000 - 12026 2017 8 21 16 11 50 141 4.8375 181.63573 616.64259 579.32670 -0.02334 5.22280 2.79864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18434 0.19845 -1.00000 - 12027 2017 8 21 16 11 54 979 4.8375 181.63715 616.69121 579.36877 -0.02311 5.22951 2.79353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18399 0.19845 -1.00000 - 12028 2017 8 21 16 11 59 816 4.8375 181.63857 616.73969 579.41080 -0.02287 5.18833 2.79272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18364 0.19845 -1.00000 - 12029 2017 8 21 16 12 4 654 4.8375 181.63999 616.78330 579.45280 -0.02263 5.17442 2.79052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18329 0.19845 -1.00000 - 12030 2017 8 21 16 12 9 491 4.8375 181.64142 616.83459 579.49462 -0.02237 5.18349 2.78694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18294 0.19845 -1.00000 - 12031 2017 8 21 16 12 14 329 4.8375 181.64284 616.88768 579.53652 -0.02208 5.18908 2.78803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18259 0.19845 -1.00000 - 12032 2017 8 21 16 12 19 166 4.8375 181.64427 616.93569 579.57838 -0.02178 5.21110 2.78715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18223 0.19845 -1.00000 - 12033 2017 8 21 16 12 24 3 4.8375 181.64569 616.98344 579.62018 -0.02146 5.23193 2.78329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18188 0.19845 -1.00000 - 12034 2017 8 21 16 12 28 841 4.8375 181.64712 617.03110 579.66195 -0.02115 5.24812 2.78621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18153 0.19845 -1.00000 - 12035 2017 8 21 16 12 33 678 4.8375 181.64855 617.07660 579.70357 -0.02087 5.26700 2.78537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18118 0.19845 -1.00000 - 12036 2017 8 21 16 12 38 516 4.8375 181.64998 617.12909 579.74509 -0.02063 5.29185 2.78286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18083 0.19845 -1.00000 - 12037 2017 8 21 16 12 43 353 4.8375 181.65141 617.17702 579.78656 -0.02044 5.32191 2.78614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18048 0.19845 -1.00000 - 12038 2017 8 21 16 12 48 191 4.8375 181.65283 617.22038 579.82777 -0.02028 5.35321 2.78409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18012 0.19845 -1.00000 - 12039 2017 8 21 16 12 53 28 4.8375 181.65426 617.26880 579.86899 -0.02014 5.38510 2.78551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17977 0.19845 -1.00000 - 12040 2017 8 21 16 12 57 866 4.8375 181.65569 617.31272 579.91018 -0.02000 5.41700 2.78443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17942 0.19845 -1.00000 - 12041 2017 8 21 16 13 2 703 4.8375 181.65712 617.36328 579.95127 -0.01984 5.44722 2.78284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17907 0.19845 -1.00000 - 12042 2017 8 21 16 13 7 541 4.8375 181.65855 617.41031 579.99241 -0.01964 5.44238 2.78393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17872 0.19845 -1.00000 - 12043 2017 8 21 16 13 12 378 4.8375 181.65998 617.45726 580.03344 -0.01942 5.44723 2.78286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17836 0.19845 -1.00000 - 12044 2017 8 21 16 13 17 215 4.8375 181.66141 617.50659 580.07437 -0.01922 5.48586 2.78160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17801 0.19845 -1.00000 - 12045 2017 8 21 16 13 22 53 4.8375 181.66284 617.55335 580.11512 -0.01909 5.52197 2.78483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17766 0.19845 -1.00000 - 12046 2017 8 21 16 13 26 890 4.8375 181.66428 617.59763 580.15571 -0.01897 5.55511 2.78347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17731 0.19845 -1.00000 - 12047 2017 8 21 16 13 31 728 4.8375 181.66571 617.64775 580.19631 -0.01889 5.58516 2.78186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17696 0.19845 -1.00000 - 12048 2017 8 21 16 13 36 565 4.8375 181.66714 617.69551 580.23678 -0.01891 5.61176 2.78427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17661 0.19844 -1.00000 - 12049 2017 8 21 16 13 41 403 4.8375 181.66858 617.74634 580.27708 -0.01897 5.63356 2.78163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17625 0.19844 -1.00000 - 12050 2017 8 21 16 13 46 240 4.8375 181.67001 617.78822 580.31734 -0.01901 5.64929 2.78015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17590 0.19844 -1.00000 - 12051 2017 8 21 16 13 51 78 4.8375 181.67145 617.83376 580.35769 -0.01899 5.65868 2.78003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17555 0.19844 -1.00000 - 12052 2017 8 21 16 13 55 915 4.8375 181.67288 617.87529 580.39792 -0.01893 5.66199 2.77788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17520 0.19844 -1.00000 - 12053 2017 8 21 16 14 0 753 4.8375 181.67432 617.92608 580.43808 -0.01890 5.65974 2.77590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17485 0.19844 -1.00000 - 12054 2017 8 21 16 14 5 590 4.8375 181.67576 617.96970 580.47827 -0.01879 5.65260 2.77693 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17449 0.19844 -1.00000 - 12055 2017 8 21 16 14 10 427 4.8375 181.67720 618.01366 580.51835 -0.01862 5.64125 2.77350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17414 0.19844 -1.00000 - 12056 2017 8 21 16 14 15 265 4.8375 181.67864 618.05735 580.55842 -0.01844 5.62653 2.77292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17379 0.19844 -1.00000 - 12057 2017 8 21 16 14 20 102 4.8375 181.68008 618.10365 580.59855 -0.01828 5.60934 2.77268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17344 0.19844 -1.00000 - 12058 2017 8 21 16 14 24 940 4.8375 181.68153 618.15206 580.63854 -0.01819 5.59050 2.76728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17309 0.19844 -1.00000 - 12059 2017 8 21 16 14 29 777 4.8375 181.68298 618.20165 580.67855 -0.01820 5.57074 2.76382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17274 0.19844 -1.00000 - 12060 2017 8 21 16 14 34 615 4.8375 181.68442 618.24554 580.71863 -0.01831 5.55067 2.76192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17238 0.19844 -1.00000 - 12061 2017 8 21 16 14 39 452 4.8375 181.68587 618.29010 580.75865 -0.01835 5.53083 2.75682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17203 0.19844 -1.00000 - 12062 2017 8 21 16 14 44 290 4.8375 181.68731 618.33649 580.79881 -0.01842 5.51159 2.75395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17168 0.19844 -1.00000 - 12063 2017 8 21 16 14 49 127 4.8375 181.68876 618.38265 580.83889 -0.01840 5.49273 2.75134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17133 0.19844 -1.00000 - 12064 2017 8 21 16 14 53 965 4.8375 181.69020 618.42722 580.87903 -0.01827 5.44733 2.74608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17098 0.19844 -1.00000 - 12065 2017 8 21 16 14 58 802 4.8375 181.69166 618.47773 580.91911 -0.01804 5.40712 2.74169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17062 0.19844 -1.00000 - 12066 2017 8 21 16 15 3 640 4.8375 181.69312 618.52055 580.95909 -0.01777 5.39233 2.73840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17027 0.19844 -1.00000 - 12067 2017 8 21 16 15 8 477 4.8375 181.69458 618.56950 580.99910 -0.01754 5.38234 2.73643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16992 0.19844 -1.00000 - 12068 2017 8 21 16 15 13 315 4.8375 181.69604 618.61557 581.03912 -0.01744 5.37325 2.73585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16957 0.19844 -1.00000 - 12069 2017 8 21 16 15 18 152 4.8375 181.69750 618.65978 581.07893 -0.01749 5.36357 2.73261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16922 0.19844 -1.00000 - 12070 2017 8 21 16 15 22 990 4.8375 181.69895 618.70902 581.11861 -0.01761 5.35173 2.73074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16887 0.19844 -1.00000 - 12071 2017 8 21 16 15 27 827 4.8375 181.70041 618.75374 581.15817 -0.01773 5.33856 2.73041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16851 0.19844 -1.00000 - 12072 2017 8 21 16 15 32 665 4.8375 181.70186 618.80079 581.19753 -0.01778 5.32525 2.72697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16816 0.19844 -1.00000 - 12073 2017 8 21 16 15 37 502 4.8375 181.70332 618.84611 581.23672 -0.01771 5.31254 2.72601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16781 0.19844 -1.00000 - 12074 2017 8 21 16 15 42 340 4.8375 181.70479 618.88984 581.27584 -0.01754 5.30085 2.72435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16746 0.19844 -1.00000 - 12075 2017 8 21 16 15 47 177 4.8375 181.70626 618.93432 581.31491 -0.01729 5.29333 2.72051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16711 0.19844 -1.00000 - 12076 2017 8 21 16 15 52 14 4.8375 181.70772 618.97826 581.35389 -0.01702 5.28706 2.71809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16676 0.19843 -1.00000 - 12077 2017 8 21 16 15 56 852 4.8375 181.70919 619.02350 581.39283 -0.01680 5.28087 2.71523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16640 0.19843 -1.00000 - 12078 2017 8 21 16 16 1 689 4.8375 181.71065 619.07301 581.43176 -0.01667 5.27473 2.71168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16605 0.19843 -1.00000 - 12079 2017 8 21 16 16 6 527 4.8375 181.71211 619.11768 581.47068 -0.01665 5.26869 2.70884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16570 0.19843 -1.00000 - 12080 2017 8 21 16 16 11 364 4.8375 181.71357 619.16096 581.50943 -0.01671 5.26288 2.70659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16535 0.19843 -1.00000 - 12081 2017 8 21 16 16 16 202 4.8375 181.71501 619.20320 581.54806 -0.01678 5.25742 2.70152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16500 0.19843 -1.00000 - 12082 2017 8 21 16 16 21 39 4.8375 181.71646 619.24799 581.58655 -0.01683 5.25422 2.70010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16464 0.19843 -1.00000 - 12083 2017 8 21 16 16 25 877 4.8375 181.71792 619.29570 581.62493 -0.01682 5.25054 2.69645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16429 0.19843 -1.00000 - 12084 2017 8 21 16 16 30 714 4.8375 181.71940 619.34451 581.66328 -0.01672 5.21274 2.69193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16394 0.19843 -1.00000 - 12085 2017 8 21 16 16 35 552 4.8375 181.72088 619.38827 581.70149 -0.01652 5.18705 2.69033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16359 0.19843 -1.00000 - 12086 2017 8 21 16 16 40 389 4.8375 181.72235 619.43361 581.73948 -0.01626 5.19976 2.68502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16324 0.19843 -1.00000 - 12087 2017 8 21 16 16 45 227 4.8375 181.72383 619.47313 581.77734 -0.01599 5.20604 2.68046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16289 0.19843 -1.00000 - 12088 2017 8 21 16 16 50 64 4.8375 181.72530 619.51555 581.81526 -0.01576 5.21185 2.67719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16253 0.19843 -1.00000 - 12089 2017 8 21 16 16 54 902 4.8375 181.72677 619.56128 581.85308 -0.01560 5.21316 2.67206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16218 0.19843 -1.00000 - 12090 2017 8 21 16 16 59 739 4.8375 181.72824 619.60982 581.89082 -0.01554 5.21033 2.66562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16183 0.19843 -1.00000 - 12091 2017 8 21 16 17 4 577 4.8375 181.72969 619.65369 581.92858 -0.01555 5.20738 2.66237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16148 0.19843 -1.00000 - 12092 2017 8 21 16 17 9 414 4.8375 181.73115 619.69266 581.96614 -0.01560 5.20516 2.65524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16113 0.19843 -1.00000 - 12093 2017 8 21 16 17 14 252 4.8375 181.73262 619.73432 582.00372 -0.01562 5.20402 2.65178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16077 0.19843 -1.00000 - 12094 2017 8 21 16 17 19 90 4.8375 181.73411 619.77618 582.04122 -0.01557 5.20310 2.64922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16042 0.19843 -1.00000 - 12095 2017 8 21 16 17 23 927 4.8375 181.73560 619.82408 582.07843 -0.01542 5.20139 2.64283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16007 0.19843 -1.00000 - 12096 2017 8 21 16 17 28 765 4.8375 181.73708 619.86773 582.11557 -0.01518 5.19846 2.63933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15972 0.19843 -1.00000 - 12097 2017 8 21 16 17 33 602 4.8375 181.73856 619.90419 582.15269 -0.01492 5.19419 2.63397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15937 0.19843 -1.00000 - 12098 2017 8 21 16 17 38 440 4.8375 181.74005 619.94650 582.18966 -0.01470 5.18869 2.62868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15902 0.19843 -1.00000 - 12099 2017 8 21 16 17 43 277 4.8375 181.74154 619.98767 582.22654 -0.01459 5.18219 2.62520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15866 0.19843 -1.00000 - 12100 2017 8 21 16 17 48 115 4.8375 181.74302 620.02985 582.26334 -0.01459 5.17478 2.62002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15831 0.19843 -1.00000 - 12101 2017 8 21 16 17 52 952 4.8375 181.74449 620.07180 582.30022 -0.01465 5.16656 2.61595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15796 0.19843 -1.00000 - 12102 2017 8 21 16 17 57 790 4.8375 181.74597 620.11267 582.33701 -0.01474 5.15762 2.61125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15761 0.19843 -1.00000 - 12103 2017 8 21 16 18 2 627 4.8375 181.74746 620.15222 582.37375 -0.01479 5.14799 2.60359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15726 0.19843 -1.00000 - 12104 2017 8 21 16 18 7 465 4.8376 181.74896 620.19406 582.41056 -0.01477 5.13828 2.60051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15691 0.19842 -1.00000 - 12105 2017 8 21 16 18 12 302 4.8376 181.75046 620.23832 582.44725 -0.01466 5.12787 2.59394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15655 0.19842 -1.00000 - 12106 2017 8 21 16 18 17 140 4.8376 181.75196 620.28398 582.48397 -0.01446 5.11567 2.58452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15620 0.19842 -1.00000 - 12107 2017 8 21 16 18 21 978 4.8376 181.75347 620.32593 582.52076 -0.01422 5.10194 2.57882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15585 0.19842 -1.00000 - 12108 2017 8 21 16 18 26 815 4.8376 181.75497 620.36209 582.55756 -0.01405 5.08737 2.56891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15550 0.19842 -1.00000 - 12109 2017 8 21 16 18 31 653 4.8376 181.75648 620.40527 582.59438 -0.01399 5.07221 2.55980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15515 0.19842 -1.00000 - 12110 2017 8 21 16 18 36 490 4.8376 181.75798 620.44713 582.63132 -0.01399 5.05407 2.55392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15479 0.19842 -1.00000 - 12111 2017 8 21 16 18 41 328 4.8376 181.75948 620.49212 582.66821 -0.01396 5.02959 2.54463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15444 0.19842 -1.00000 - 12112 2017 8 21 16 18 46 165 4.8376 181.76098 620.53464 582.70535 -0.01390 4.97627 2.53574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15409 0.19842 -1.00000 - 12113 2017 8 21 16 18 51 3 4.8376 181.76247 620.57678 582.74257 -0.01383 4.95386 2.52876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15374 0.19842 -1.00000 - 12114 2017 8 21 16 18 55 841 4.8376 181.76398 620.61509 582.77982 -0.01378 4.92551 2.51762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15339 0.19842 -1.00000 - 12115 2017 8 21 16 19 0 678 4.8376 181.76551 620.65982 582.81726 -0.01372 4.90330 2.51253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15304 0.19842 -1.00000 - 12116 2017 8 21 16 19 5 516 4.8376 181.76704 620.70296 582.85461 -0.01364 4.87838 2.50620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15268 0.19842 -1.00000 - 12117 2017 8 21 16 19 10 353 4.8376 181.76856 620.75072 582.89195 -0.01350 4.84995 2.49566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15233 0.19842 -1.00000 - 12118 2017 8 21 16 19 15 191 4.8376 181.77007 620.79324 582.92939 -0.01333 4.81996 2.49079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15198 0.19842 -1.00000 - 12119 2017 8 21 16 19 20 29 4.8376 181.77158 620.83494 582.96690 -0.01315 4.79286 2.48158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15163 0.19842 -1.00000 - 12120 2017 8 21 16 19 24 866 4.8376 181.77310 620.87355 583.00432 -0.01298 4.76730 2.47183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15128 0.19842 -1.00000 - 12121 2017 8 21 16 19 29 704 4.8376 181.77460 620.91877 583.04187 -0.01282 4.74313 2.46734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15092 0.19842 -1.00000 - 12122 2017 8 21 16 19 34 541 4.8376 181.77610 620.96223 583.07946 -0.01268 4.72074 2.45970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15057 0.19842 -1.00000 - 12123 2017 8 21 16 19 39 379 4.8376 181.77760 621.01055 583.11714 -0.01259 4.69789 2.45121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15022 0.19842 -1.00000 - 12124 2017 8 21 16 19 44 217 4.8376 181.77912 621.05296 583.15505 -0.01251 4.67543 2.44820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14987 0.19842 -1.00000 - 12125 2017 8 21 16 19 49 54 4.8376 181.78066 621.09167 583.19286 -0.01242 4.65686 2.43957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14952 0.19842 -1.00000 - 12126 2017 8 21 16 19 53 892 4.8376 181.78220 621.13415 583.23073 -0.01224 4.64089 2.43340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14917 0.19842 -1.00000 - 12127 2017 8 21 16 19 58 730 4.8376 181.78373 621.17832 583.26866 -0.01196 4.62629 2.43175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14881 0.19842 -1.00000 - 12128 2017 8 21 16 20 3 567 4.8376 181.78525 621.22562 583.30650 -0.01162 4.61337 2.42515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14846 0.19842 -1.00000 - 12129 2017 8 21 16 20 8 405 4.8376 181.78678 621.27457 583.34429 -0.01131 4.60266 2.41994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14811 0.19842 -1.00000 - 12130 2017 8 21 16 20 13 242 4.8376 181.78830 621.31804 583.38214 -0.01106 4.59283 2.41830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14776 0.19842 -1.00000 - 12131 2017 8 21 16 20 18 80 4.8376 181.78981 621.35700 583.41987 -0.01084 4.58305 2.41203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14741 0.19842 -1.00000 - 12132 2017 8 21 16 20 22 918 4.8377 181.79131 621.40013 583.45762 -0.01066 4.57109 2.40791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14705 0.19841 -1.00000 - 12133 2017 8 21 16 20 27 755 4.8377 181.79283 621.44450 583.49536 -0.01052 4.56577 2.40558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14670 0.19841 -1.00000 - 12134 2017 8 21 16 20 32 593 4.8377 181.79436 621.49196 583.53298 -0.01043 4.56158 2.40066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14635 0.19841 -1.00000 - 12135 2017 8 21 16 20 37 431 4.8377 181.79590 621.54070 583.57063 -0.01036 4.55644 2.39732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14600 0.19841 -1.00000 - 12136 2017 8 21 16 20 42 268 4.8377 181.79744 621.57968 583.60823 -0.01025 4.55100 2.39292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14565 0.19841 -1.00000 - 12137 2017 8 21 16 20 47 106 4.8377 181.79898 621.62185 583.64576 -0.01011 4.54829 2.38829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14530 0.19841 -1.00000 - 12138 2017 8 21 16 20 51 944 4.8377 181.80052 621.66687 583.68341 -0.00998 4.54941 2.38417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14494 0.19841 -1.00000 - 12139 2017 8 21 16 20 56 781 4.8377 181.80204 621.71269 583.72105 -0.00990 4.55203 2.37920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14459 0.19841 -1.00000 - 12140 2017 8 21 16 21 1 619 4.8377 181.80356 621.76063 583.75862 -0.00984 4.55341 2.37544 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14424 0.19841 -1.00000 - 12141 2017 8 21 16 21 6 457 4.8377 181.80508 621.80039 583.79614 -0.00975 4.55279 2.37067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14389 0.19841 -1.00000 - 12142 2017 8 21 16 21 11 295 4.8377 181.80661 621.84431 583.83347 -0.00960 4.55142 2.36614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14354 0.19841 -1.00000 - 12143 2017 8 21 16 21 16 132 4.8377 181.80815 621.89319 583.87084 -0.00946 4.55238 2.36184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14318 0.19841 -1.00000 - 12144 2017 8 21 16 21 20 970 4.8377 181.80968 621.93716 583.90815 -0.00940 4.55549 2.35878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14283 0.19841 -1.00000 - 12145 2017 8 21 16 21 25 808 4.8377 181.81121 621.98391 583.94523 -0.00945 4.55917 2.35444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14248 0.19841 -1.00000 - 12146 2017 8 21 16 21 30 645 4.8377 181.81276 622.02313 583.98225 -0.00959 4.56065 2.35012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14213 0.19841 -1.00000 - 12147 2017 8 21 16 21 35 483 4.8377 181.81431 622.06622 584.01917 -0.00974 4.52937 2.34783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14178 0.19841 -1.00000 - 12148 2017 8 21 16 21 40 321 4.8378 181.81585 622.11415 584.05591 -0.00985 4.52604 2.34409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14143 0.19841 -1.00000 - 12149 2017 8 21 16 21 45 159 4.8378 181.81739 622.15697 584.09235 -0.00988 4.53720 2.34240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14107 0.19841 -1.00000 - 12150 2017 8 21 16 21 49 996 4.8378 181.81891 622.19549 584.12866 -0.00980 4.54868 2.33961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14072 0.19841 -1.00000 - 12151 2017 8 21 16 21 54 834 4.8378 181.82044 622.24038 584.16492 -0.00967 4.55919 2.33764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14037 0.19841 -1.00000 - 12152 2017 8 21 16 21 59 672 4.8378 181.82196 622.28250 584.20088 -0.00954 4.56804 2.33716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14002 0.19841 -1.00000 - 12153 2017 8 21 16 22 4 510 4.8378 181.82349 622.32525 584.23655 -0.00950 4.57394 2.33552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13967 0.19841 -1.00000 - 12154 2017 8 21 16 22 9 348 4.8378 181.82502 622.37129 584.27209 -0.00957 4.57587 2.33556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13931 0.19841 -1.00000 - 12155 2017 8 21 16 22 14 185 4.8378 181.82656 622.41263 584.30733 -0.00973 4.57340 2.33493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13896 0.19841 -1.00000 - 12156 2017 8 21 16 22 19 23 4.8378 181.82810 622.44942 584.34216 -0.00990 4.56651 2.33361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13861 0.19841 -1.00000 - 12157 2017 8 21 16 22 23 861 4.8378 181.82965 622.48971 584.37681 -0.01000 4.55540 2.33166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13826 0.19841 -1.00000 - 12158 2017 8 21 16 22 28 699 4.8378 181.83120 622.52597 584.41141 -0.00999 4.54033 2.33079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13791 0.19841 -1.00000 - 12159 2017 8 21 16 22 33 537 4.8378 181.83273 622.56782 584.44581 -0.00987 4.52174 2.32779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13756 0.19841 -1.00000 - 12160 2017 8 21 16 22 38 374 4.8378 181.83426 622.61142 584.47991 -0.00968 4.50015 2.32601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13720 0.19840 -1.00000 - 12161 2017 8 21 16 22 43 212 4.8378 181.83577 622.64976 584.51397 -0.00947 4.47608 2.32569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13685 0.19840 -1.00000 - 12162 2017 8 21 16 22 48 50 4.8378 181.83730 622.68845 584.54792 -0.00932 4.45006 2.32426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13650 0.19840 -1.00000 - 12163 2017 8 21 16 22 52 888 4.8379 181.83884 622.72761 584.58152 -0.00924 4.42260 2.32143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13615 0.19840 -1.00000 - 12164 2017 8 21 16 22 57 726 4.8379 181.84038 622.76269 584.61504 -0.00922 4.39290 2.32020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13580 0.19840 -1.00000 - 12165 2017 8 21 16 23 2 564 4.8379 181.84192 622.80258 584.64859 -0.00923 4.33390 2.31943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13544 0.19840 -1.00000 - 12166 2017 8 21 16 23 7 402 4.8379 181.84345 622.84524 584.68195 -0.00924 4.28062 2.31496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13509 0.19840 -1.00000 - 12167 2017 8 21 16 23 12 240 4.8379 181.84499 622.88226 584.71515 -0.00923 4.25119 2.31328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13474 0.19840 -1.00000 - 12168 2017 8 21 16 23 17 77 4.8379 181.84654 622.92025 584.74824 -0.00916 4.21592 2.31138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13439 0.19840 -1.00000 - 12169 2017 8 21 16 23 21 915 4.8379 181.84807 622.95613 584.78118 -0.00906 4.20178 2.30887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13404 0.19840 -1.00000 - 12170 2017 8 21 16 23 26 753 4.8379 181.84959 622.99080 584.81407 -0.00892 4.16045 2.30863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13369 0.19840 -1.00000 - 12171 2017 8 21 16 23 31 591 4.8379 181.85112 623.02719 584.84685 -0.00876 4.14561 2.30885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13333 0.19840 -1.00000 - 12172 2017 8 21 16 23 36 429 4.8379 181.85267 623.06896 584.87945 -0.00860 4.12985 2.30731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13298 0.19840 -1.00000 - 12173 2017 8 21 16 23 41 267 4.8379 181.85422 623.10495 584.91212 -0.00844 4.13240 2.30785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13263 0.19840 -1.00000 - 12174 2017 8 21 16 23 46 105 4.8379 181.85576 623.14597 584.94471 -0.00831 4.14175 2.30538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13228 0.19840 -1.00000 - 12175 2017 8 21 16 23 50 943 4.8379 181.85729 623.17792 584.97721 -0.00821 4.14861 2.30460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13193 0.19840 -1.00000 - 12176 2017 8 21 16 23 55 781 4.8380 181.85883 623.21032 585.00968 -0.00816 4.12950 2.30595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13157 0.19840 -1.00000 - 12177 2017 8 21 16 24 0 619 4.8380 181.86037 623.25390 585.04210 -0.00813 4.14372 2.30589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13122 0.19840 -1.00000 - 12178 2017 8 21 16 24 5 457 4.8380 181.86191 623.28976 585.07449 -0.00810 4.16367 2.30802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13087 0.19840 -1.00000 - 12179 2017 8 21 16 24 10 295 4.8380 181.86346 623.32412 585.10682 -0.00804 4.18202 2.30879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13052 0.19840 -1.00000 - 12180 2017 8 21 16 24 15 133 4.8380 181.86500 623.35999 585.13896 -0.00792 4.19906 2.30980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13017 0.19840 -1.00000 - 12181 2017 8 21 16 24 19 971 4.8380 181.86655 623.39288 585.17095 -0.00775 4.21683 2.31443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12982 0.19840 -1.00000 - 12182 2017 8 21 16 24 24 809 4.8380 181.86810 623.42700 585.20292 -0.00754 4.23589 2.31826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12946 0.19840 -1.00000 - 12183 2017 8 21 16 24 29 647 4.8380 181.86965 623.46396 585.23476 -0.00733 4.25610 2.31915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12911 0.19840 -1.00000 - 12184 2017 8 21 16 24 34 485 4.8380 181.87120 623.49984 585.26651 -0.00716 4.27765 2.32452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12876 0.19840 -1.00000 - 12185 2017 8 21 16 24 39 323 4.8380 181.87275 623.53533 585.29811 -0.00705 4.30065 2.32605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12841 0.19840 -1.00000 - 12186 2017 8 21 16 24 44 161 4.8380 181.87429 623.57044 585.32959 -0.00700 4.32508 2.32855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12806 0.19840 -1.00000 - 12187 2017 8 21 16 24 48 999 4.8380 181.87584 623.60397 585.36101 -0.00697 4.35104 2.33221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12770 0.19840 -1.00000 - 12188 2017 8 21 16 24 53 837 4.8380 181.87740 623.64497 585.39237 -0.00693 4.37875 2.33476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12735 0.19839 -1.00000 - 12189 2017 8 21 16 24 58 675 4.8380 181.87896 623.67942 585.42370 -0.00684 4.40685 2.33844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12700 0.19839 -1.00000 - 12190 2017 8 21 16 25 3 513 4.8381 181.88052 623.71297 585.45490 -0.00669 4.43265 2.33971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12665 0.19839 -1.00000 - 12191 2017 8 21 16 25 8 351 4.8381 181.88207 623.74771 585.48602 -0.00650 4.45654 2.34186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12630 0.19839 -1.00000 - 12192 2017 8 21 16 25 13 189 4.8381 181.88363 623.78193 585.51704 -0.00630 4.44865 2.34515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12595 0.19839 -1.00000 - 12193 2017 8 21 16 25 18 27 4.8381 181.88519 623.81787 585.54796 -0.00612 4.48741 2.34580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12559 0.19839 -1.00000 - 12194 2017 8 21 16 25 22 865 4.8381 181.88676 623.85584 585.57877 -0.00597 4.49455 2.34498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12524 0.19839 -1.00000 - 12195 2017 8 21 16 25 27 703 4.8381 181.88832 623.88565 585.60958 -0.00587 4.53158 2.34562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12489 0.19839 -1.00000 - 12196 2017 8 21 16 25 32 541 4.8381 181.88988 623.92240 585.64035 -0.00581 4.56974 2.34205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12454 0.19839 -1.00000 - 12197 2017 8 21 16 25 37 379 4.8381 181.89145 623.95683 585.67115 -0.00577 4.61517 2.34481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12419 0.19839 -1.00000 - 12198 2017 8 21 16 25 42 218 4.8381 181.89302 623.98987 585.70180 -0.00573 4.65999 2.34198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12383 0.19839 -1.00000 - 12199 2017 8 21 16 25 47 56 4.8381 181.89459 624.02839 585.73258 -0.00568 4.70144 2.33970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12348 0.19839 -1.00000 - 12200 2017 8 21 16 25 51 894 4.8381 181.89616 624.05843 585.76330 -0.00560 4.73873 2.34055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12313 0.19839 -1.00000 - 12201 2017 8 21 16 25 56 732 4.8381 181.89774 624.09124 585.79391 -0.00549 4.77431 2.33649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12278 0.19839 -1.00000 - 12202 2017 8 21 16 26 1 570 4.8381 181.89932 624.12945 585.82451 -0.00534 4.81012 2.33549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12243 0.19839 -1.00000 - 12203 2017 8 21 16 26 6 408 4.8382 181.90089 624.16336 585.85500 -0.00520 4.84634 2.33428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12208 0.19839 -1.00000 - 12204 2017 8 21 16 26 11 246 4.8382 181.90246 624.19971 585.88548 -0.00509 4.88220 2.33149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12172 0.19839 -1.00000 - 12205 2017 8 21 16 26 16 85 4.8382 181.90404 624.23608 585.91596 -0.00504 4.91665 2.32918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12137 0.19839 -1.00000 - 12206 2017 8 21 16 26 20 923 4.8382 181.90562 624.26462 585.94640 -0.00506 4.94886 2.32486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12102 0.19839 -1.00000 - 12207 2017 8 21 16 26 25 761 4.8382 181.90722 624.29498 585.97669 -0.00513 4.97823 2.32151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12067 0.19839 -1.00000 - 12208 2017 8 21 16 26 30 599 4.8382 181.90881 624.32896 586.00712 -0.00520 5.00979 2.31847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12032 0.19839 -1.00000 - 12209 2017 8 21 16 26 35 437 4.8382 181.91040 624.36311 586.03754 -0.00522 5.04641 2.31513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11996 0.19839 -1.00000 - 12210 2017 8 21 16 26 40 276 4.8382 181.91198 624.39576 586.06786 -0.00517 5.07819 2.30913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11961 0.19839 -1.00000 - 12211 2017 8 21 16 26 45 114 4.8382 181.91356 624.43034 586.09833 -0.00507 5.10412 2.30520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11926 0.19839 -1.00000 - 12212 2017 8 21 16 26 49 952 4.8382 181.91516 624.46450 586.12875 -0.00497 5.12334 2.30178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11891 0.19839 -1.00000 - 12213 2017 8 21 16 26 54 790 4.8382 181.91677 624.49858 586.15909 -0.00489 5.13546 2.29446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11856 0.19839 -1.00000 - 12214 2017 8 21 16 26 59 629 4.8382 181.91837 624.53222 586.18945 -0.00487 5.14030 2.28966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11821 0.19839 -1.00000 - 12215 2017 8 21 16 27 4 467 4.8383 181.91997 624.56612 586.21984 -0.00489 5.13782 2.28383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11785 0.19839 -1.00000 - 12216 2017 8 21 16 27 9 305 4.8383 181.92156 624.59926 586.25018 -0.00491 5.12806 2.27409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11750 0.19838 -1.00000 - 12217 2017 8 21 16 27 14 143 4.8383 181.92316 624.63541 586.28060 -0.00490 5.11115 2.26498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11715 0.19838 -1.00000 - 12218 2017 8 21 16 27 18 982 4.8383 181.92476 624.66840 586.31107 -0.00486 5.08729 2.25556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11680 0.19838 -1.00000 - 12219 2017 8 21 16 27 23 820 4.8383 181.92638 624.70463 586.34151 -0.00479 5.05676 2.24495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11645 0.19838 -1.00000 - 12220 2017 8 21 16 27 28 658 4.8383 181.92799 624.73947 586.37199 -0.00469 5.01992 2.23494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11609 0.19838 -1.00000 - 12221 2017 8 21 16 27 33 497 4.8383 181.92960 624.77269 586.40260 -0.00457 4.97719 2.22264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11574 0.19838 -1.00000 - 12222 2017 8 21 16 27 38 335 4.8383 181.93121 624.80657 586.43325 -0.00443 4.92931 2.20825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11539 0.19838 -1.00000 - 12223 2017 8 21 16 27 43 173 4.8383 181.93282 624.84071 586.46399 -0.00429 4.87668 2.19635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11504 0.19838 -1.00000 - 12224 2017 8 21 16 27 48 12 4.8383 181.93443 624.87917 586.49477 -0.00415 4.81855 2.18078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11469 0.19838 -1.00000 - 12225 2017 8 21 16 27 52 850 4.8383 181.93605 624.91847 586.52566 -0.00405 4.75428 2.16490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11433 0.19838 -1.00000 - 12226 2017 8 21 16 27 57 688 4.8384 181.93768 624.95480 586.55669 -0.00398 4.68659 2.15217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11398 0.19838 -1.00000 - 12227 2017 8 21 16 28 2 527 4.8384 181.93931 624.98753 586.58771 -0.00392 4.61757 2.13643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11363 0.19838 -1.00000 - 12228 2017 8 21 16 28 7 365 4.8384 181.94093 625.02642 586.61865 -0.00384 4.54726 2.11876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11328 0.19838 -1.00000 - 12229 2017 8 21 16 28 12 203 4.8384 181.94255 625.06089 586.64965 -0.00371 4.47505 2.10613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11293 0.19838 -1.00000 - 12230 2017 8 21 16 28 17 42 4.8384 181.94416 625.10235 586.68052 -0.00354 4.39723 2.09063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11258 0.19838 -1.00000 - 12231 2017 8 21 16 28 21 880 4.8384 181.94579 625.13978 586.71141 -0.00337 4.31405 2.07489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11222 0.19838 -1.00000 - 12232 2017 8 21 16 28 26 719 4.8384 181.94744 625.17641 586.74216 -0.00323 4.22857 2.06071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11187 0.19838 -1.00000 - 12233 2017 8 21 16 28 31 557 4.8384 181.94908 625.20934 586.77287 -0.00315 4.14213 2.04334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11152 0.19838 -1.00000 - 12234 2017 8 21 16 28 36 395 4.8384 181.95071 625.24554 586.80365 -0.00308 4.03091 2.03089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11117 0.19838 -1.00000 - 12235 2017 8 21 16 28 41 234 4.8384 181.95233 625.28300 586.83425 -0.00301 3.92908 2.01506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11082 0.19838 -1.00000 - 12236 2017 8 21 16 28 46 72 4.8384 181.95395 625.32425 586.86475 -0.00292 3.85477 1.99880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11046 0.19838 -1.00000 - 12237 2017 8 21 16 28 50 911 4.8385 181.95559 625.36039 586.89531 -0.00280 3.77386 1.98700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11011 0.19838 -1.00000 - 12238 2017 8 21 16 28 55 749 4.8385 181.95724 625.39436 586.92572 -0.00267 3.69278 1.97195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10976 0.19838 -1.00000 - 12239 2017 8 21 16 29 0 588 4.8385 181.95890 625.42804 586.95599 -0.00256 3.65173 1.95538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10941 0.19838 -1.00000 - 12240 2017 8 21 16 29 5 426 4.8385 181.96055 625.46475 586.98616 -0.00246 3.60813 1.94356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10906 0.19838 -1.00000 - 12241 2017 8 21 16 29 10 265 4.8385 181.96218 625.50082 587.01618 -0.00235 3.56192 1.93109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10870 0.19838 -1.00000 - 12242 2017 8 21 16 29 15 103 4.8385 181.96380 625.54152 587.04604 -0.00222 3.51361 1.91475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10835 0.19838 -1.00000 - 12243 2017 8 21 16 29 19 942 4.8385 181.96544 625.57696 587.07583 -0.00209 3.47532 1.90482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10800 0.19838 -1.00000 - 12244 2017 8 21 16 29 24 780 4.8385 181.96710 625.61097 587.10532 -0.00198 3.38730 1.89071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10765 0.19837 -1.00000 - 12245 2017 8 21 16 29 29 619 4.8385 181.96877 625.64368 587.13474 -0.00189 3.34803 1.87599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10730 0.19837 -1.00000 - 12246 2017 8 21 16 29 34 457 4.8385 181.97044 625.67807 587.16409 -0.00180 3.30553 1.86701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10695 0.19837 -1.00000 - 12247 2017 8 21 16 29 39 296 4.8386 181.97208 625.71285 587.19312 -0.00169 3.27272 1.85401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10659 0.19837 -1.00000 - 12248 2017 8 21 16 29 44 134 4.8386 181.97371 625.75142 587.22216 -0.00154 3.24411 1.84221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10624 0.19837 -1.00000 - 12249 2017 8 21 16 29 48 973 4.8386 181.97535 625.78507 587.25115 -0.00138 3.21260 1.83427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10589 0.19837 -1.00000 - 12250 2017 8 21 16 29 53 812 4.8386 181.97701 625.81322 587.27980 -0.00124 3.16950 1.82092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10554 0.19837 -1.00000 - 12251 2017 8 21 16 29 58 650 4.8386 181.97870 625.85009 587.30846 -0.00115 3.14402 1.81115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10519 0.19837 -1.00000 - 12252 2017 8 21 16 30 3 489 4.8386 181.98039 625.88274 587.33707 -0.00109 3.10024 1.80372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10483 0.19837 -1.00000 - 12253 2017 8 21 16 30 8 327 4.8386 181.98205 625.91844 587.36541 -0.00102 3.06912 1.79155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10448 0.19837 -1.00000 - 12254 2017 8 21 16 30 13 166 4.8386 181.98369 625.95278 587.39361 -0.00089 3.03837 1.78309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10413 0.19837 -1.00000 - 12255 2017 8 21 16 30 18 5 4.8386 181.98533 625.98423 587.42161 -0.00072 3.01102 1.77533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10378 0.19837 -1.00000 - 12256 2017 8 21 16 30 22 843 4.8386 181.98699 626.01183 587.44950 -0.00056 2.98360 1.76471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10343 0.19837 -1.00000 - 12257 2017 8 21 16 30 27 682 4.8387 181.98869 626.04815 587.47728 -0.00047 2.96885 1.75621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10307 0.19837 -1.00000 - 12258 2017 8 21 16 30 32 521 4.8387 181.99039 626.07960 587.50491 -0.00047 2.95405 1.75089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10272 0.19837 -1.00000 - 12259 2017 8 21 16 30 37 359 4.8387 181.99208 626.11482 587.53248 -0.00050 2.92086 1.74387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10237 0.19837 -1.00000 - 12260 2017 8 21 16 30 42 198 4.8387 181.99374 626.14664 587.55996 -0.00050 2.91981 1.73730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10202 0.19837 -1.00000 - 12261 2017 8 21 16 30 47 37 4.8387 181.99539 626.17721 587.58723 -0.00042 2.90483 1.73189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10167 0.19837 -1.00000 - 12262 2017 8 21 16 30 51 875 4.8387 181.99705 626.20315 587.61431 -0.00030 2.87296 1.72790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10132 0.19837 -1.00000 - 12263 2017 8 21 16 30 56 714 4.8387 181.99875 626.23315 587.64131 -0.00021 2.87584 1.72403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10096 0.19837 -1.00000 - 12264 2017 8 21 16 31 1 553 4.8387 182.00046 626.26457 587.66819 -0.00019 2.88002 1.72024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10061 0.19837 -1.00000 - 12265 2017 8 21 16 31 6 391 4.8387 182.00217 626.29542 587.69490 -0.00024 2.88607 1.71823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10026 0.19837 -1.00000 - 12266 2017 8 21 16 31 11 230 4.8387 182.00385 626.32595 587.72146 -0.00028 2.89524 1.71756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09991 0.19837 -1.00000 - 12267 2017 8 21 16 31 16 69 4.8388 182.00551 626.35611 587.74769 -0.00026 2.90680 1.71681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09956 0.19837 -1.00000 - 12268 2017 8 21 16 31 20 908 4.8388 182.00717 626.38582 587.77376 -0.00017 2.91827 1.71738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09920 0.19837 -1.00000 - 12269 2017 8 21 16 31 25 747 4.8388 182.00887 626.41517 587.79963 -0.00007 2.92961 1.72003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09885 0.19837 -1.00000 - 12270 2017 8 21 16 31 30 585 4.8388 182.01060 626.44434 587.82527 -0.00002 2.94455 1.72055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09850 0.19837 -1.00000 - 12271 2017 8 21 16 31 35 424 4.8388 182.01232 626.47329 587.85071 -0.00002 2.96060 1.72321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09815 0.19837 -1.00000 - 12272 2017 8 21 16 31 40 263 4.8388 182.01402 626.50188 587.87593 -0.00004 2.97738 1.72576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09780 0.19836 -1.00000 - 12273 2017 8 21 16 31 45 102 4.8388 182.01569 626.52990 587.90083 0.00000 2.99437 1.72676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09744 0.19836 -1.00000 - 12274 2017 8 21 16 31 49 941 4.8388 182.01736 626.55697 587.92567 0.00013 3.01614 1.72874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09709 0.19836 -1.00000 - 12275 2017 8 21 16 31 54 779 4.8389 182.01906 626.58442 587.95043 0.00030 3.03876 1.73008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09674 0.19836 -1.00000 - 12276 2017 8 21 16 31 59 618 4.8389 182.02079 626.61149 587.97518 0.00044 3.05985 1.73234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09639 0.19836 -1.00000 - 12277 2017 8 21 16 32 4 457 4.8389 182.02252 626.64224 587.99991 0.00050 3.07721 1.73312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09604 0.19836 -1.00000 - 12278 2017 8 21 16 32 9 296 4.8389 182.02424 626.66388 588.02448 0.00053 3.09301 1.73167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09569 0.19836 -1.00000 - 12279 2017 8 21 16 32 14 135 4.8389 182.02593 626.69294 588.04905 0.00057 3.10078 1.73260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09533 0.19836 -1.00000 - 12280 2017 8 21 16 32 18 974 4.8389 182.02761 626.72330 588.07365 0.00068 3.12984 1.73398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09498 0.19836 -1.00000 - 12281 2017 8 21 16 32 23 813 4.8389 182.02930 626.75024 588.09812 0.00086 3.12405 1.73263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09463 0.19836 -1.00000 - 12282 2017 8 21 16 32 28 652 4.8389 182.03103 626.77934 588.12254 0.00103 3.15061 1.73156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09428 0.19836 -1.00000 - 12283 2017 8 21 16 32 33 491 4.8389 182.03278 626.80098 588.14698 0.00114 3.16915 1.73030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09393 0.19836 -1.00000 - 12284 2017 8 21 16 32 38 330 4.8389 182.03453 626.83013 588.17146 0.00121 3.20328 1.73105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09357 0.19836 -1.00000 - 12285 2017 8 21 16 32 43 169 4.8390 182.03624 626.86146 588.19590 0.00128 3.23471 1.73165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09322 0.19836 -1.00000 - 12286 2017 8 21 16 32 48 8 4.8390 182.03792 626.88805 588.22014 0.00141 3.22384 1.73140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09287 0.19836 -1.00000 - 12287 2017 8 21 16 32 52 847 4.8390 182.03962 626.92043 588.24440 0.00159 3.26504 1.73287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09252 0.19836 -1.00000 - 12288 2017 8 21 16 32 57 686 4.8390 182.04134 626.94230 588.26866 0.00176 3.30535 1.73363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09217 0.19836 -1.00000 - 12289 2017 8 21 16 33 2 525 4.8390 182.04310 626.96917 588.29277 0.00186 3.34579 1.73293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09181 0.19836 -1.00000 - 12290 2017 8 21 16 33 7 364 4.8390 182.04487 627.00006 588.31669 0.00191 3.38708 1.73421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09146 0.19836 -1.00000 - 12291 2017 8 21 16 33 12 203 4.8390 182.04661 627.02591 588.34062 0.00195 3.42813 1.73624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09111 0.19836 -1.00000 - 12292 2017 8 21 16 33 17 42 4.8390 182.04831 627.05257 588.36437 0.00204 3.46775 1.73559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09076 0.19836 -1.00000 - 12293 2017 8 21 16 33 21 881 4.8391 182.05000 627.07824 588.38793 0.00220 3.50431 1.73560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09041 0.19836 -1.00000 - 12294 2017 8 21 16 33 26 720 4.8391 182.05172 627.10070 588.41141 0.00236 3.50502 1.73550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09005 0.19836 -1.00000 - 12295 2017 8 21 16 33 31 559 4.8391 182.05348 627.12942 588.43483 0.00246 3.53930 1.73443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08970 0.19836 -1.00000 - 12296 2017 8 21 16 33 36 398 4.8391 182.05526 627.15937 588.45821 0.00247 3.58239 1.73347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08935 0.19836 -1.00000 - 12297 2017 8 21 16 33 41 237 4.8391 182.05702 627.18424 588.48138 0.00245 3.61982 1.73425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08900 0.19836 -1.00000 - 12298 2017 8 21 16 33 46 76 4.8391 182.05875 627.20696 588.50442 0.00249 3.65147 1.73125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08865 0.19836 -1.00000 - 12299 2017 8 21 16 33 50 915 4.8391 182.06044 627.23449 588.52751 0.00262 3.67877 1.73065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08830 0.19836 -1.00000 - 12300 2017 8 21 16 33 55 754 4.8391 182.06215 627.25944 588.55038 0.00279 3.70141 1.72995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08794 0.19835 -1.00000 - 12301 2017 8 21 16 34 0 594 4.8392 182.06392 627.28845 588.57312 0.00293 3.71912 1.72634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08759 0.19835 -1.00000 - 12302 2017 8 21 16 34 5 433 4.8392 182.06571 627.31460 588.59583 0.00297 3.73198 1.72574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08724 0.19835 -1.00000 - 12303 2017 8 21 16 34 10 272 4.8392 182.06749 627.33896 588.61840 0.00294 3.74031 1.72352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08689 0.19835 -1.00000 - 12304 2017 8 21 16 34 15 111 4.8392 182.06923 627.36017 588.64072 0.00293 3.74443 1.71987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08654 0.19835 -1.00000 - 12305 2017 8 21 16 34 19 950 4.8392 182.07093 627.38297 588.66298 0.00303 3.74461 1.71805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08618 0.19835 -1.00000 - 12306 2017 8 21 16 34 24 790 4.8392 182.07265 627.40766 588.68512 0.00321 3.74111 1.71455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08583 0.19835 -1.00000 - 12307 2017 8 21 16 34 29 629 4.8392 182.07443 627.43226 588.70720 0.00341 3.73408 1.71137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08548 0.19835 -1.00000 - 12308 2017 8 21 16 34 34 468 4.8392 182.07623 627.45721 588.72907 0.00353 3.72368 1.70959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08513 0.19835 -1.00000 - 12309 2017 8 21 16 34 39 307 4.8392 182.07803 627.48159 588.75080 0.00356 3.70998 1.70498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08478 0.19835 -1.00000 - 12310 2017 8 21 16 34 44 146 4.8393 182.07978 627.50580 588.77246 0.00357 3.69309 1.70240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08442 0.19835 -1.00000 - 12311 2017 8 21 16 34 48 986 4.8393 182.08150 627.52978 588.79388 0.00363 3.67309 1.69977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08407 0.19835 -1.00000 - 12312 2017 8 21 16 34 53 825 4.8393 182.08323 627.55347 588.81512 0.00378 3.65014 1.69632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08372 0.19835 -1.00000 - 12313 2017 8 21 16 34 58 664 4.8393 182.08501 627.57668 588.83619 0.00396 3.62442 1.69435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08337 0.19835 -1.00000 - 12314 2017 8 21 16 35 3 504 4.8393 182.08682 627.59980 588.85705 0.00409 3.59613 1.69032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08302 0.19835 -1.00000 - 12315 2017 8 21 16 35 8 343 4.8393 182.08862 627.62251 588.87770 0.00415 3.56549 1.68674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08266 0.19835 -1.00000 - 12316 2017 8 21 16 35 13 182 4.8393 182.09040 627.64521 588.89816 0.00416 3.53280 1.68247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08231 0.19835 -1.00000 - 12317 2017 8 21 16 35 18 22 4.8394 182.09214 627.66752 588.91841 0.00421 3.49840 1.67844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08196 0.19835 -1.00000 - 12318 2017 8 21 16 35 22 861 4.8394 182.09387 627.69002 588.93853 0.00432 3.46266 1.67202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08161 0.19835 -1.00000 - 12319 2017 8 21 16 35 27 700 4.8394 182.09565 627.71217 588.95852 0.00446 3.42599 1.66848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08126 0.19835 -1.00000 - 12320 2017 8 21 16 35 32 540 4.8394 182.09746 627.73078 588.97835 0.00457 3.38870 1.66077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08091 0.19835 -1.00000 - 12321 2017 8 21 16 35 37 379 4.8394 182.09928 627.75244 588.99815 0.00461 3.35106 1.65369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08055 0.19835 -1.00000 - 12322 2017 8 21 16 35 42 219 4.8394 182.10108 627.77632 589.01778 0.00461 3.31342 1.64555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08020 0.19835 -1.00000 - 12323 2017 8 21 16 35 47 58 4.8394 182.10285 627.80198 589.03743 0.00464 3.27611 1.63631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07985 0.19835 -1.00000 - 12324 2017 8 21 16 35 51 898 4.8394 182.10460 627.82165 589.05704 0.00476 3.23949 1.62656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07950 0.19835 -1.00000 - 12325 2017 8 21 16 35 56 737 4.8395 182.10637 627.84019 589.07671 0.00493 3.20402 1.61420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07915 0.19835 -1.00000 - 12326 2017 8 21 16 36 1 576 4.8395 182.10818 627.86204 589.09653 0.00507 3.16913 1.60274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07879 0.19835 -1.00000 - 12327 2017 8 21 16 36 6 416 4.8395 182.11001 627.88276 589.11637 0.00512 3.13296 1.59284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07844 0.19835 -1.00000 - 12328 2017 8 21 16 36 11 255 4.8395 182.11183 627.90687 589.13602 0.00510 3.09570 1.58241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07809 0.19834 -1.00000 - 12329 2017 8 21 16 36 16 95 4.8395 182.11363 627.93194 589.15583 0.00508 3.04157 1.57125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07774 0.19834 -1.00000 - 12330 2017 8 21 16 36 20 934 4.8395 182.11540 627.95422 589.17564 0.00514 3.01678 1.55998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07739 0.19834 -1.00000 - 12331 2017 8 21 16 36 25 774 4.8395 182.11717 627.97298 589.19535 0.00529 2.98856 1.54712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07703 0.19834 -1.00000 - 12332 2017 8 21 16 36 30 614 4.8396 182.11898 627.99539 589.21518 0.00544 2.95682 1.53628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07668 0.19834 -1.00000 - 12333 2017 8 21 16 36 35 453 4.8396 182.12081 628.01832 589.23500 0.00552 2.92403 1.52645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07633 0.19834 -1.00000 - 12334 2017 8 21 16 36 40 293 4.8396 182.12266 628.04430 589.25475 0.00553 2.89069 1.51176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07598 0.19834 -1.00000 - 12335 2017 8 21 16 36 45 132 4.8396 182.12448 628.06813 589.27454 0.00552 2.85588 1.50275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07563 0.19834 -1.00000 - 12336 2017 8 21 16 36 49 972 4.8396 182.12628 628.08702 589.29428 0.00558 2.82304 1.48938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07527 0.19834 -1.00000 - 12337 2017 8 21 16 36 54 811 4.8396 182.12805 628.10854 589.31418 0.00574 2.79082 1.47519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07492 0.19834 -1.00000 - 12338 2017 8 21 16 36 59 651 4.8396 182.12986 628.13162 589.33412 0.00595 2.76127 1.46382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07457 0.19834 -1.00000 - 12339 2017 8 21 16 37 4 491 4.8396 182.13170 628.15778 589.35403 0.00611 2.72260 1.45075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07422 0.19834 -1.00000 - 12340 2017 8 21 16 37 9 330 4.8397 182.13357 628.18317 589.37375 0.00616 2.66676 1.43762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07387 0.19834 -1.00000 - 12341 2017 8 21 16 37 14 170 4.8397 182.13542 628.20208 589.39357 0.00615 2.63982 1.42539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07351 0.19834 -1.00000 - 12342 2017 8 21 16 37 19 10 4.8397 182.13723 628.22218 589.41335 0.00617 2.61959 1.41338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07316 0.19834 -1.00000 - 12343 2017 8 21 16 37 23 849 4.8397 182.13902 628.24872 589.43310 0.00629 2.59832 1.40077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07281 0.19834 -1.00000 - 12344 2017 8 21 16 37 28 689 4.8397 182.14083 628.27152 589.45273 0.00648 2.57274 1.39139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07246 0.19834 -1.00000 - 12345 2017 8 21 16 37 33 529 4.8397 182.14268 628.29519 589.47230 0.00665 2.54516 1.37920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07211 0.19834 -1.00000 - 12346 2017 8 21 16 37 38 369 4.8397 182.14456 628.32162 589.49193 0.00675 2.51936 1.36827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07175 0.19834 -1.00000 - 12347 2017 8 21 16 37 43 208 4.8397 182.14644 628.34215 589.51143 0.00676 2.49572 1.35886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07140 0.19834 -1.00000 - 12348 2017 8 21 16 37 48 48 4.8398 182.14829 628.36023 589.53078 0.00676 2.47388 1.34733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07105 0.19834 -1.00000 - 12349 2017 8 21 16 37 52 888 4.8398 182.15010 628.38320 589.55018 0.00681 2.45353 1.33906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07070 0.19834 -1.00000 - 12350 2017 8 21 16 37 57 728 4.8398 182.15191 628.40620 589.56944 0.00694 2.43442 1.32928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07035 0.19834 -1.00000 - 12351 2017 8 21 16 38 2 568 4.8398 182.15376 628.42867 589.58845 0.00708 2.41628 1.32049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06999 0.19834 -1.00000 - 12352 2017 8 21 16 38 7 407 4.8398 182.15564 628.45075 589.60734 0.00716 2.39880 1.31225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06964 0.19834 -1.00000 - 12353 2017 8 21 16 38 12 247 4.8398 182.15754 628.47278 589.62618 0.00718 2.38167 1.30451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06929 0.19834 -1.00000 - 12354 2017 8 21 16 38 17 87 4.8398 182.15942 628.49466 589.64475 0.00716 2.36469 1.29597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06894 0.19834 -1.00000 - 12355 2017 8 21 16 38 21 927 4.8399 182.16126 628.51591 589.66306 0.00719 2.34797 1.28993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06859 0.19834 -1.00000 - 12356 2017 8 21 16 38 26 767 4.8399 182.16307 628.53675 589.68122 0.00727 2.33385 1.28284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06823 0.19833 -1.00000 - 12357 2017 8 21 16 38 31 607 4.8399 182.16491 628.55783 589.69920 0.00738 2.31979 1.27603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06788 0.19833 -1.00000 - 12358 2017 8 21 16 38 36 447 4.8399 182.16679 628.57598 589.71702 0.00744 2.30570 1.26900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06753 0.19833 -1.00000 - 12359 2017 8 21 16 38 41 287 4.8399 182.16871 628.59606 589.73469 0.00743 2.29147 1.26055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06718 0.19833 -1.00000 - 12360 2017 8 21 16 38 46 126 4.8399 182.17059 628.61579 589.75227 0.00742 2.27707 1.25536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06683 0.19833 -1.00000 - 12361 2017 8 21 16 38 50 966 4.8400 182.17243 628.63807 589.76965 0.00747 2.26250 1.24629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06648 0.19833 -1.00000 - 12362 2017 8 21 16 38 55 806 4.8400 182.17424 628.66143 589.78699 0.00762 2.24785 1.23832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06612 0.19833 -1.00000 - 12363 2017 8 21 16 39 0 646 4.8400 182.17608 628.68073 589.80433 0.00784 2.23324 1.23167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06577 0.19833 -1.00000 - 12364 2017 8 21 16 39 5 486 4.8400 182.17796 628.69593 589.82143 0.00801 2.21855 1.22168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06542 0.19833 -1.00000 - 12365 2017 8 21 16 39 10 326 4.8400 182.17988 628.71409 589.83847 0.00806 2.20259 1.21137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06507 0.19833 -1.00000 - 12366 2017 8 21 16 39 15 166 4.8400 182.18177 628.73080 589.85550 0.00803 2.18416 1.20493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06472 0.19833 -1.00000 - 12367 2017 8 21 16 39 20 6 4.8401 182.18363 628.75384 589.87235 0.00801 2.16998 1.19440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06436 0.19833 -1.00000 - 12368 2017 8 21 16 39 24 847 4.8401 182.18545 628.77626 589.88923 0.00809 2.15494 1.18468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06401 0.19833 -1.00000 - 12369 2017 8 21 16 39 29 687 4.8401 182.18728 628.79486 589.90600 0.00828 2.13909 1.17731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06366 0.19833 -1.00000 - 12370 2017 8 21 16 39 34 527 4.8401 182.18915 628.81207 589.92267 0.00852 2.12416 1.16632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06331 0.19833 -1.00000 - 12371 2017 8 21 16 39 39 367 4.8401 182.19105 628.82758 589.93932 0.00871 2.11020 1.15810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06296 0.19833 -1.00000 - 12372 2017 8 21 16 39 44 207 4.8401 182.19296 628.84912 589.95594 0.00879 2.09607 1.14912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06260 0.19833 -1.00000 - 12373 2017 8 21 16 39 49 47 4.8401 182.19485 628.86791 589.97241 0.00883 2.07849 1.14144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06225 0.19833 -1.00000 - 12374 2017 8 21 16 39 53 887 4.8402 182.19669 628.89002 589.98889 0.00890 2.05722 1.13377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06190 0.19833 -1.00000 - 12375 2017 8 21 16 39 58 727 4.8402 182.19851 628.90869 590.00543 0.00904 2.03425 1.12584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06155 0.19833 -1.00000 - 12376 2017 8 21 16 40 3 568 4.8402 182.20035 628.92568 590.02179 0.00920 2.01035 1.11886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06120 0.19833 -1.00000 - 12377 2017 8 21 16 40 8 408 4.8402 182.20225 628.93999 590.03801 0.00931 1.98048 1.10999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06084 0.19833 -1.00000 - 12378 2017 8 21 16 40 13 248 4.8402 182.20418 628.96156 590.05422 0.00934 1.96248 1.10296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06049 0.19833 -1.00000 - 12379 2017 8 21 16 40 18 88 4.8402 182.20609 628.97944 590.07032 0.00935 1.94057 1.09590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06014 0.19833 -1.00000 - 12380 2017 8 21 16 40 22 929 4.8403 182.20795 628.99549 590.08632 0.00942 1.91561 1.09129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05979 0.19833 -1.00000 - 12381 2017 8 21 16 40 27 769 4.8403 182.20978 629.01387 590.10216 0.00959 1.88954 1.08364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05944 0.19833 -1.00000 - 12382 2017 8 21 16 40 32 609 4.8403 182.21163 629.03501 590.11784 0.00981 1.86491 1.07821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05908 0.19833 -1.00000 - 12383 2017 8 21 16 40 37 450 4.8403 182.21353 629.04915 590.13332 0.00999 1.84219 1.07145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05873 0.19833 -1.00000 - 12384 2017 8 21 16 40 42 290 4.8403 182.21547 629.06998 590.14870 0.01004 1.83207 1.06596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05838 0.19832 -1.00000 - 12385 2017 8 21 16 40 47 130 4.8403 182.21741 629.08412 590.16405 0.01000 1.82522 1.06148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05803 0.19832 -1.00000 - 12386 2017 8 21 16 40 51 971 4.8404 182.21931 629.10150 590.17937 0.00997 1.82014 1.05638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05768 0.19832 -1.00000 - 12387 2017 8 21 16 40 56 811 4.8404 182.22116 629.11519 590.19446 0.01004 1.81571 1.05081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05732 0.19832 -1.00000 - 12388 2017 8 21 16 41 1 651 4.8404 182.22303 629.13124 590.20945 0.01020 1.81482 1.04641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05697 0.19832 -1.00000 - 12389 2017 8 21 16 41 6 492 4.8404 182.22494 629.14752 590.22437 0.01038 1.81758 1.04156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05662 0.19832 -1.00000 - 12390 2017 8 21 16 41 11 332 4.8404 182.22690 629.17024 590.23919 0.01047 1.81721 1.03487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05627 0.19832 -1.00000 - 12391 2017 8 21 16 41 16 173 4.8404 182.22887 629.18619 590.25394 0.01043 1.81540 1.03328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05592 0.19832 -1.00000 - 12392 2017 8 21 16 41 21 13 4.8405 182.23081 629.19894 590.26841 0.01034 1.77848 1.02524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05556 0.19832 -1.00000 - 12393 2017 8 21 16 41 25 854 4.8405 182.23271 629.21837 590.28283 0.01030 1.78612 1.01915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05521 0.19832 -1.00000 - 12394 2017 8 21 16 41 30 694 4.8405 182.23459 629.23094 590.29726 0.01036 1.76242 1.01382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05486 0.19832 -1.00000 - 12395 2017 8 21 16 41 35 535 4.8405 182.23652 629.24966 590.31152 0.01047 1.76704 1.00757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05451 0.19832 -1.00000 - 12396 2017 8 21 16 41 40 375 4.8405 182.23850 629.26624 590.32581 0.01055 1.76821 1.00378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05416 0.19832 -1.00000 - 12397 2017 8 21 16 41 45 216 4.8406 182.24050 629.27848 590.34009 0.01055 1.73570 0.99725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05380 0.19832 -1.00000 - 12398 2017 8 21 16 41 50 56 4.8406 182.24248 629.29706 590.35422 0.01048 1.73801 0.99158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05345 0.19832 -1.00000 - 12399 2017 8 21 16 41 54 897 4.8406 182.24441 629.31222 590.36824 0.01044 1.71300 0.98843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05310 0.19832 -1.00000 - 12400 2017 8 21 16 41 59 737 4.8406 182.24632 629.33026 590.38228 0.01049 1.71994 0.98395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05275 0.19832 -1.00000 - 12401 2017 8 21 16 42 4 578 4.8406 182.24827 629.34541 590.39630 0.01061 1.72483 0.98085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05240 0.19832 -1.00000 - 12402 2017 8 21 16 42 9 419 4.8406 182.25027 629.35849 590.40995 0.01072 1.72733 0.97763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05204 0.19832 -1.00000 - 12403 2017 8 21 16 42 14 259 4.8407 182.25229 629.37219 590.42349 0.01076 1.72851 0.97306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05169 0.19832 -1.00000 - 12404 2017 8 21 16 42 19 100 4.8407 182.25430 629.38998 590.43700 0.01074 1.72680 0.97095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05134 0.19832 -1.00000 - 12405 2017 8 21 16 42 23 941 4.8407 182.25626 629.40470 590.45031 0.01072 1.72346 0.96884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05099 0.19832 -1.00000 - 12406 2017 8 21 16 42 28 782 4.8407 182.25821 629.41605 590.46330 0.01077 1.72281 0.96578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05064 0.19832 -1.00000 - 12407 2017 8 21 16 42 33 622 4.8407 182.26018 629.43369 590.47624 0.01089 1.72282 0.96327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05028 0.19832 -1.00000 - 12408 2017 8 21 16 42 38 463 4.8408 182.26220 629.44733 590.48907 0.01103 1.72209 0.96315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04993 0.19832 -1.00000 - 12409 2017 8 21 16 42 43 304 4.8408 182.26424 629.46025 590.50157 0.01111 1.72059 0.95902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04958 0.19832 -1.00000 - 12410 2017 8 21 16 42 48 145 4.8408 182.26627 629.47655 590.51386 0.01113 1.71909 0.95734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04923 0.19832 -1.00000 - 12411 2017 8 21 16 42 52 985 4.8408 182.26828 629.48931 590.52607 0.01115 1.72510 0.95740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04887 0.19832 -1.00000 - 12412 2017 8 21 16 42 57 826 4.8408 182.27026 629.50029 590.53812 0.01122 1.73047 0.95448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04852 0.19831 -1.00000 - 12413 2017 8 21 16 43 2 667 4.8408 182.27226 629.51480 590.54999 0.01137 1.73296 0.95115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04817 0.19831 -1.00000 - 12414 2017 8 21 16 43 7 508 4.8409 182.27429 629.52683 590.56170 0.01154 1.73325 0.95126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04782 0.19831 -1.00000 - 12415 2017 8 21 16 43 12 349 4.8409 182.27635 629.53879 590.57324 0.01166 1.73456 0.94959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04747 0.19831 -1.00000 - 12416 2017 8 21 16 43 17 190 4.8409 182.27841 629.55399 590.58454 0.01171 1.73545 0.94441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04711 0.19831 -1.00000 - 12417 2017 8 21 16 43 22 31 4.8409 182.28046 629.56566 590.59563 0.01174 1.73460 0.94430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04676 0.19831 -1.00000 - 12418 2017 8 21 16 43 26 872 4.8409 182.28249 629.57355 590.60657 0.01181 1.73228 0.94031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04641 0.19831 -1.00000 - 12419 2017 8 21 16 43 31 712 4.8410 182.28451 629.58521 590.61747 0.01196 1.72649 0.93482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04606 0.19831 -1.00000 - 12420 2017 8 21 16 43 36 553 4.8410 182.28657 629.59682 590.62827 0.01216 1.71858 0.93245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04571 0.19831 -1.00000 - 12421 2017 8 21 16 43 41 394 4.8410 182.28864 629.61123 590.63881 0.01234 1.71183 0.92834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04535 0.19831 -1.00000 - 12422 2017 8 21 16 43 46 235 4.8410 182.29073 629.62209 590.64948 0.01245 1.70774 0.92374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04500 0.19831 -1.00000 - 12423 2017 8 21 16 43 51 76 4.8410 182.29282 629.63309 590.66011 0.01251 1.70321 0.91995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04465 0.19831 -1.00000 - 12424 2017 8 21 16 43 55 918 4.8410 182.29489 629.64098 590.67056 0.01259 1.69412 0.91445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04430 0.19831 -1.00000 - 12425 2017 8 21 16 44 0 759 4.8411 182.29696 629.65375 590.68104 0.01275 1.65746 0.91008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04395 0.19831 -1.00000 - 12426 2017 8 21 16 44 5 600 4.8411 182.29903 629.66734 590.69133 0.01296 1.65144 0.90595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04359 0.19831 -1.00000 - 12427 2017 8 21 16 44 10 441 4.8411 182.30112 629.67812 590.70143 0.01317 1.65312 0.90089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04324 0.19831 -1.00000 - 12428 2017 8 21 16 44 15 282 4.8411 182.30324 629.68823 590.71140 0.01331 1.65880 0.89811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04289 0.19831 -1.00000 - 12429 2017 8 21 16 44 20 123 4.8411 182.30536 629.69560 590.72122 0.01339 1.65861 0.89142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04254 0.19831 -1.00000 - 12430 2017 8 21 16 44 24 964 4.8411 182.30747 629.70779 590.73100 0.01346 1.62670 0.88783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04219 0.19831 -1.00000 - 12431 2017 8 21 16 44 29 805 4.8412 182.30956 629.71681 590.74061 0.01358 1.62293 0.88239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04183 0.19831 -1.00000 - 12432 2017 8 21 16 44 34 646 4.8412 182.31164 629.73028 590.75019 0.01375 1.62782 0.87669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04148 0.19831 -1.00000 - 12433 2017 8 21 16 44 39 488 4.8412 182.31374 629.73993 590.75978 0.01395 1.62829 0.87368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04113 0.19831 -1.00000 - 12434 2017 8 21 16 44 44 329 4.8412 182.31587 629.74601 590.76927 0.01412 1.62559 0.86792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04078 0.19831 -1.00000 - 12435 2017 8 21 16 44 49 170 4.8412 182.31802 629.75658 590.77874 0.01423 1.61970 0.86432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04043 0.19831 -1.00000 - 12436 2017 8 21 16 44 54 11 4.8413 182.32014 629.76340 590.78808 0.01430 1.61286 0.85915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04007 0.19831 -1.00000 - 12437 2017 8 21 16 44 58 853 4.8413 182.32223 629.77617 590.79722 0.01438 1.60567 0.85507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03972 0.19831 -1.00000 - 12438 2017 8 21 16 45 3 694 4.8413 182.32431 629.78555 590.80639 0.01449 1.60060 0.85195 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03937 0.19831 -1.00000 - 12439 2017 8 21 16 45 8 535 4.8413 182.32641 629.79430 590.81542 0.01463 1.59763 0.84905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03902 0.19831 -1.00000 - 12440 2017 8 21 16 45 13 377 4.8413 182.32854 629.80057 590.82425 0.01475 1.59422 0.84317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03867 0.19830 -1.00000 - 12441 2017 8 21 16 45 18 218 4.8413 182.33069 629.80947 590.83297 0.01482 1.59047 0.83938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03831 0.19830 -1.00000 - 12442 2017 8 21 16 45 23 59 4.8414 182.33281 629.81856 590.84160 0.01487 1.58551 0.83500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03796 0.19830 -1.00000 - 12443 2017 8 21 16 45 27 901 4.8414 182.33491 629.83071 590.85011 0.01492 1.57841 0.82895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03761 0.19830 -1.00000 - 12444 2017 8 21 16 45 32 742 4.8414 182.33700 629.83882 590.85850 0.01499 1.57022 0.82573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03726 0.19830 -1.00000 - 12445 2017 8 21 16 45 37 584 4.8414 182.33910 629.84381 590.86679 0.01507 1.56280 0.81918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03691 0.19830 -1.00000 - 12446 2017 8 21 16 45 42 425 4.8414 182.34123 629.85205 590.87513 0.01512 1.55618 0.81356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03655 0.19830 -1.00000 - 12447 2017 8 21 16 45 47 266 4.8415 182.34335 629.86086 590.88341 0.01513 1.55018 0.80818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03620 0.19830 -1.00000 - 12448 2017 8 21 16 45 52 108 4.8415 182.34547 629.86891 590.89158 0.01511 1.54424 0.80248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03585 0.19830 -1.00000 - 12449 2017 8 21 16 45 56 949 4.8415 182.34757 629.87979 590.89981 0.01510 1.53792 0.79573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03550 0.19830 -1.00000 - 12450 2017 8 21 16 46 1 791 4.8415 182.34967 629.88866 590.90813 0.01513 1.53110 0.79098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03514 0.19830 -1.00000 - 12451 2017 8 21 16 46 6 633 4.8415 182.35178 629.89596 590.91617 0.01519 1.52381 0.78379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03479 0.19830 -1.00000 - 12452 2017 8 21 16 46 11 474 4.8416 182.35390 629.90427 590.92423 0.01526 1.51633 0.77549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03444 0.19830 -1.00000 - 12453 2017 8 21 16 46 16 316 4.8416 182.35601 629.90947 590.93227 0.01529 1.50820 0.77142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03409 0.19830 -1.00000 - 12454 2017 8 21 16 46 21 157 4.8416 182.35810 629.92050 590.94012 0.01528 1.49617 0.76152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03374 0.19830 -1.00000 - 12455 2017 8 21 16 46 25 999 4.8416 182.36020 629.93160 590.94792 0.01526 1.47958 0.75419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03338 0.19830 -1.00000 - 12456 2017 8 21 16 46 30 841 4.8416 182.36231 629.93982 590.95572 0.01528 1.45825 0.74773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03303 0.19830 -1.00000 - 12457 2017 8 21 16 46 35 682 4.8417 182.36441 629.94624 590.96352 0.01534 1.44388 0.73987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03268 0.19830 -1.00000 - 12458 2017 8 21 16 46 40 524 4.8417 182.36651 629.95173 590.97123 0.01545 1.42855 0.73074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03233 0.19830 -1.00000 - 12459 2017 8 21 16 46 45 366 4.8417 182.36860 629.96015 590.97898 0.01555 1.41438 0.72497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03198 0.19830 -1.00000 - 12460 2017 8 21 16 46 50 207 4.8417 182.37069 629.97072 590.98660 0.01563 1.40075 0.71735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03162 0.19830 -1.00000 - 12461 2017 8 21 16 46 55 49 4.8417 182.37280 629.98203 590.99425 0.01570 1.38734 0.71050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03127 0.19830 -1.00000 - 12462 2017 8 21 16 46 59 891 4.8418 182.37491 629.98735 591.00180 0.01576 1.37799 0.70320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03092 0.19830 -1.00000 - 12463 2017 8 21 16 47 4 733 4.8418 182.37700 629.99546 591.00928 0.01585 1.36837 0.69401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03057 0.19830 -1.00000 - 12464 2017 8 21 16 47 9 574 4.8418 182.37908 630.00281 591.01669 0.01595 1.36012 0.69038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03022 0.19830 -1.00000 - 12465 2017 8 21 16 47 14 416 4.8418 182.38116 630.00823 591.02386 0.01606 1.35056 0.68069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02986 0.19830 -1.00000 - 12466 2017 8 21 16 47 19 258 4.8418 182.38326 630.01927 591.03092 0.01617 1.33716 0.67249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02951 0.19830 -1.00000 - 12467 2017 8 21 16 47 24 100 4.8419 182.38536 630.02506 591.03797 0.01628 1.32165 0.66635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02916 0.19830 -1.00000 - 12468 2017 8 21 16 47 28 942 4.8419 182.38746 630.03133 591.04485 0.01640 1.30407 0.65679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02881 0.19829 -1.00000 - 12469 2017 8 21 16 47 33 784 4.8419 182.38954 630.04111 591.05176 0.01652 1.28364 0.64859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02845 0.19829 -1.00000 - 12470 2017 8 21 16 47 38 626 4.8419 182.39161 630.04836 591.05861 0.01664 1.26223 0.64105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02810 0.19829 -1.00000 - 12471 2017 8 21 16 47 43 468 4.8419 182.39369 630.05225 591.06522 0.01676 1.23868 0.63225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02775 0.19829 -1.00000 - 12472 2017 8 21 16 47 48 310 4.8420 182.39579 630.06015 591.07185 0.01686 1.21129 0.62373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02740 0.19829 -1.00000 - 12473 2017 8 21 16 47 53 151 4.8420 182.39788 630.06529 591.07833 0.01696 1.18177 0.61679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02705 0.19829 -1.00000 - 12474 2017 8 21 16 47 57 993 4.8420 182.39996 630.07386 591.08469 0.01707 1.15302 0.60607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02669 0.19829 -1.00000 - 12475 2017 8 21 16 48 2 836 4.8420 182.40203 630.08272 591.09097 0.01718 1.12361 0.59696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02634 0.19829 -1.00000 - 12476 2017 8 21 16 48 7 678 4.8420 182.40411 630.09017 591.09722 0.01730 1.09293 0.58762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02599 0.19829 -1.00000 - 12477 2017 8 21 16 48 12 520 4.8421 182.40619 630.09630 591.10345 0.01743 1.06168 0.57691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02564 0.19829 -1.00000 - 12478 2017 8 21 16 48 17 362 4.8421 182.40828 630.09996 591.10953 0.01754 1.02866 0.56632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02529 0.19829 -1.00000 - 12479 2017 8 21 16 48 22 204 4.8421 182.41037 630.10709 591.11549 0.01766 0.99428 0.55567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02493 0.19829 -1.00000 - 12480 2017 8 21 16 48 27 46 4.8421 182.41245 630.11655 591.12146 0.01776 0.95896 0.54744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02458 0.19829 -1.00000 - 12481 2017 8 21 16 48 31 888 4.8421 182.41454 630.12051 591.12728 0.01786 0.92832 0.53638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02423 0.19829 -1.00000 - 12482 2017 8 21 16 48 36 730 4.8422 182.41662 630.12965 591.13300 0.01796 0.90275 0.52541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02388 0.19829 -1.00000 - 12483 2017 8 21 16 48 41 572 4.8422 182.41871 630.13577 591.13876 0.01806 0.87580 0.51806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02352 0.19829 -1.00000 - 12484 2017 8 21 16 48 46 415 4.8422 182.42079 630.13839 591.14434 0.01816 0.84798 0.50808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02317 0.19829 -1.00000 - 12485 2017 8 21 16 48 51 257 4.8422 182.42289 630.14350 591.14983 0.01824 0.81757 0.49716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02282 0.19829 -1.00000 - 12486 2017 8 21 16 48 56 99 4.8423 182.42498 630.14967 591.15527 0.01832 0.79177 0.49181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02247 0.19829 -1.00000 - 12487 2017 8 21 16 49 0 941 4.8423 182.42708 630.15565 591.16049 0.01840 0.77186 0.48113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02212 0.19829 -1.00000 - 12488 2017 8 21 16 49 5 784 4.8423 182.42918 630.16392 591.16568 0.01848 0.75820 0.47120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02176 0.19829 -1.00000 - 12489 2017 8 21 16 49 10 626 4.8423 182.43128 630.16984 591.17083 0.01855 0.75719 0.46427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02141 0.19829 -1.00000 - 12490 2017 8 21 16 49 15 468 4.8423 182.43337 630.17191 591.17577 0.01862 0.71582 0.45422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02106 0.19829 -1.00000 - 12491 2017 8 21 16 49 20 311 4.8424 182.43547 630.17901 591.18073 0.01867 0.71436 0.44633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02071 0.19829 -1.00000 - 12492 2017 8 21 16 49 25 153 4.8424 182.43758 630.18403 591.18550 0.01872 0.70960 0.43882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02036 0.19829 -1.00000 - 12493 2017 8 21 16 49 29 996 4.8424 182.43970 630.18602 591.18996 0.01877 0.70079 0.43023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02000 0.19829 -1.00000 - 12494 2017 8 21 16 49 34 838 4.8424 182.44182 630.19382 591.19443 0.01882 0.68437 0.42252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01965 0.19829 -1.00000 - 12495 2017 8 21 16 49 39 680 4.8425 182.44393 630.19638 591.19888 0.01888 0.67575 0.41634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01930 0.19829 -1.00000 - 12496 2017 8 21 16 49 44 523 4.8425 182.44604 630.20114 591.20306 0.01893 0.67313 0.40709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01895 0.19828 -1.00000 - 12497 2017 8 21 16 49 49 365 4.8425 182.44816 630.20768 591.20704 0.01895 0.67871 0.40048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01859 0.19828 -1.00000 - 12498 2017 8 21 16 49 54 208 4.8425 182.45029 630.21123 591.21099 0.01894 0.65661 0.39541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01824 0.19828 -1.00000 - 12499 2017 8 21 16 49 59 51 4.8426 182.45242 630.21279 591.21474 0.01891 0.65322 0.38767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01789 0.19828 -1.00000 - 12500 2017 8 21 16 50 3 893 4.8426 182.45456 630.21791 591.21849 0.01886 0.65114 0.38123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01754 0.19828 -1.00000 - 12501 2017 8 21 16 50 8 736 4.8426 182.45669 630.22025 591.22210 0.01883 0.64978 0.37475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01719 0.19828 -1.00000 - 12502 2017 8 21 16 50 13 578 4.8426 182.45882 630.22387 591.22546 0.01881 0.64742 0.36729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01683 0.19828 -1.00000 - 12503 2017 8 21 16 50 18 421 4.8426 182.46094 630.22971 591.22862 0.01880 0.62084 0.36080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01648 0.19828 -1.00000 - 12504 2017 8 21 16 50 23 264 4.8427 182.46308 630.22945 591.23178 0.01877 0.61043 0.35475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01613 0.19828 -1.00000 - 12505 2017 8 21 16 50 28 106 4.8427 182.46522 630.22950 591.23481 0.01872 0.61452 0.34725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01578 0.19828 -1.00000 - 12506 2017 8 21 16 50 32 949 4.8427 182.46737 630.23397 591.23767 0.01865 0.60090 0.33986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01543 0.19828 -1.00000 - 12507 2017 8 21 16 50 37 792 4.8427 182.46951 630.23503 591.24046 0.01861 0.56501 0.33298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01507 0.19828 -1.00000 - 12508 2017 8 21 16 50 42 635 4.8428 182.47165 630.23994 591.24323 0.01863 0.55262 0.32600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01472 0.19828 -1.00000 - 12509 2017 8 21 16 50 47 477 4.8428 182.47379 630.24216 591.24594 0.01871 0.57185 0.32098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01437 0.19828 -1.00000 - 12510 2017 8 21 16 50 52 320 4.8428 182.47595 630.24046 591.24840 0.01882 0.57143 0.31423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01402 0.19828 -1.00000 - 12511 2017 8 21 16 50 57 163 4.8428 182.47810 630.24372 591.25081 0.01892 0.52986 0.30592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01366 0.19828 -1.00000 - 12512 2017 8 21 16 51 2 6 4.8428 182.48025 630.24448 591.25322 0.01898 0.51864 0.30212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01331 0.19828 -1.00000 - 12513 2017 8 21 16 51 6 849 4.8429 182.48240 630.24799 591.25538 0.01901 0.53631 0.29506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01296 0.19828 -1.00000 - 12514 2017 8 21 16 51 11 692 4.8429 182.48455 630.25135 591.25748 0.01905 0.53061 0.28814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01261 0.19828 -1.00000 - 12515 2017 8 21 16 51 16 534 4.8429 182.48671 630.25135 591.25940 0.01913 0.51151 0.28484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01226 0.19828 -1.00000 - 12516 2017 8 21 16 51 21 377 4.8429 182.48886 630.24857 591.26116 0.01928 0.47870 0.27722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01190 0.19828 -1.00000 - 12517 2017 8 21 16 51 26 220 4.8430 182.49102 630.24933 591.26288 0.01946 0.49658 0.27343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01155 0.19828 -1.00000 - 12518 2017 8 21 16 51 31 63 4.8430 182.49320 630.25062 591.26448 0.01965 0.47764 0.26784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01120 0.19828 -1.00000 - 12519 2017 8 21 16 51 35 906 4.8430 182.49537 630.25351 591.26606 0.01980 0.45433 0.26168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01085 0.19828 -1.00000 - 12520 2017 8 21 16 51 40 749 4.8430 182.49754 630.25526 591.26768 0.01991 0.43826 0.25750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01049 0.19828 -1.00000 - 12521 2017 8 21 16 51 45 592 4.8430 182.49971 630.25514 591.26925 0.02001 0.43496 0.25259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01014 0.19828 -1.00000 - 12522 2017 8 21 16 51 50 435 4.8431 182.50187 630.25296 591.27069 0.02010 0.44631 0.24664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00979 0.19828 -1.00000 - 12523 2017 8 21 16 51 55 279 4.8431 182.50404 630.25031 591.27212 0.02022 0.40081 0.24148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00944 0.19828 -1.00000 - 12524 2017 8 21 16 52 0 122 4.8431 182.50622 630.25338 591.27364 0.02037 0.41335 0.23821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00909 0.19827 -1.00000 - 12525 2017 8 21 16 52 4 965 4.8431 182.50840 630.25658 591.27507 0.02053 0.41176 0.23358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00873 0.19827 -1.00000 - 12526 2017 8 21 16 52 9 808 4.8432 182.51058 630.25388 591.27628 0.02071 0.37855 0.22920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00838 0.19827 -1.00000 - 12527 2017 8 21 16 52 14 651 4.8432 182.51276 630.25504 591.27748 0.02087 0.35115 0.22505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00803 0.19827 -1.00000 - 12528 2017 8 21 16 52 19 494 4.8432 182.51494 630.25418 591.27859 0.02102 0.34049 0.22156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00768 0.19827 -1.00000 - 12529 2017 8 21 16 52 24 338 4.8432 182.51712 630.25526 591.27949 0.02114 0.36393 0.21555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00733 0.19827 -1.00000 - 12530 2017 8 21 16 52 29 181 4.8433 182.51931 630.25748 591.28039 0.02123 0.35914 0.21032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00697 0.19827 -1.00000 - 12531 2017 8 21 16 52 34 24 4.8433 182.52151 630.25763 591.28128 0.02132 0.34834 0.20660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00662 0.19827 -1.00000 - 12532 2017 8 21 16 52 38 867 4.8433 182.52371 630.25738 591.28207 0.02141 0.34003 0.20114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00627 0.19827 -1.00000 - 12533 2017 8 21 16 52 43 711 4.8433 182.52590 630.25612 591.28275 0.02154 0.30816 0.19481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00592 0.19827 -1.00000 - 12534 2017 8 21 16 52 48 554 4.8434 182.52810 630.25491 591.28344 0.02170 0.29161 0.19111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00556 0.19827 -1.00000 - 12535 2017 8 21 16 52 53 398 4.8434 182.53029 630.25586 591.28401 0.02187 0.31699 0.18759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00521 0.19827 -1.00000 - 12536 2017 8 21 16 52 58 241 4.8434 182.53248 630.25826 591.28444 0.02203 0.33963 0.18143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00486 0.19827 -1.00000 - 12537 2017 8 21 16 53 3 84 4.8434 182.53468 630.26059 591.28483 0.02216 0.32278 0.17657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00451 0.19827 -1.00000 - 12538 2017 8 21 16 53 7 928 4.8434 182.53689 630.25933 591.28507 0.02224 0.29561 0.17365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00416 0.19827 -1.00000 - 12539 2017 8 21 16 53 12 771 4.8435 182.53909 630.25567 591.28512 0.02230 0.28976 0.17021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00380 0.19827 -1.00000 - 12540 2017 8 21 16 53 17 615 4.8435 182.54128 630.25341 591.28488 0.02235 0.28011 0.16453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00345 0.19827 -1.00000 - 12541 2017 8 21 16 53 22 458 4.8435 182.54347 630.25274 591.28446 0.02240 0.29876 0.16247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00310 0.19827 -1.00000 - 12542 2017 8 21 16 53 27 302 4.8435 182.54566 630.25289 591.28389 0.02246 0.31880 0.15932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00275 0.19827 -1.00000 - 12543 2017 8 21 16 53 32 145 4.8436 182.54784 630.25363 591.28317 0.02252 0.30883 0.15435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00239 0.19827 -1.00000 - 12544 2017 8 21 16 53 36 989 4.8436 182.55002 630.24934 591.28233 -0.00191 0.25640 0.14965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00204 0.19827 -1.00000 - 12545 2017 8 21 16 53 41 833 4.8436 182.55220 630.24548 591.28137 0.00546 0.25492 0.14744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00169 0.19827 -1.00000 - 12546 2017 8 21 16 53 46 676 4.8436 182.55437 630.24362 591.28015 -0.00233 0.27860 0.14354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00134 0.19827 -1.00000 - 12547 2017 8 21 16 53 51 520 4.8437 182.55655 630.24366 591.27873 -0.00727 0.28485 0.13894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00098 0.19827 -1.00000 - 12548 2017 8 21 16 53 56 364 4.8437 182.55873 630.24041 591.27722 -0.03131 0.25980 0.13560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00063 0.19827 -1.00000 - 12549 2017 8 21 16 54 1 207 4.8437 182.56091 630.23515 591.27553 -0.01852 0.27060 0.13096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00028 0.19827 -1.00000 - 12550 2017 8 21 16 54 6 51 4.8437 182.56308 630.23336 591.27362 0.01691 0.22683 0.12792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99993 0.19827 -1.00000 - 12551 2017 8 21 16 54 10 895 4.8438 182.56526 630.22946 591.27150 -0.00929 0.23878 0.12304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99958 0.19827 -1.00000 - 12552 2017 8 21 16 54 15 739 4.8438 182.56744 630.22719 591.26910 -0.01608 0.24880 0.11861 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99922 0.19826 -1.00000 - 12553 2017 8 21 16 54 20 582 4.8438 182.56961 630.22399 591.26664 -0.00624 0.26952 0.11539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99887 0.19826 -1.00000 - 12554 2017 8 21 16 54 25 426 4.8438 182.57178 630.21648 591.26393 -0.02660 0.23819 0.10801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99852 0.19826 -1.00000 - 12555 2017 8 21 16 54 30 270 4.8439 182.57394 630.21319 591.26124 -0.03927 0.20589 0.10153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99817 0.19826 -1.00000 - 12556 2017 8 21 16 54 35 114 4.8439 182.57611 630.20598 591.25838 -0.06770 0.22512 0.09729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99781 0.19826 -1.00000 - 12557 2017 8 21 16 54 39 958 4.8439 182.57828 630.20228 591.25538 -0.04785 0.22579 0.09205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99746 0.19826 -1.00000 - 12558 2017 8 21 16 54 44 802 4.8439 182.58045 630.19922 591.25232 -0.05981 0.21270 0.08694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99711 0.19826 -1.00000 - 12559 2017 8 21 16 54 49 646 4.8439 182.58262 630.19313 591.24912 -0.05673 0.19995 0.08223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99676 0.19826 -1.00000 - 12560 2017 8 21 16 54 54 490 4.8440 182.58479 630.18640 591.24586 -0.08467 0.19842 0.07603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99641 0.19826 -1.00000 - 12561 2017 8 21 16 54 59 334 4.8440 182.58697 630.17772 591.24256 -0.09682 0.19831 0.07135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99605 0.19826 -1.00000 - 12562 2017 8 21 16 55 4 178 4.8440 182.58915 630.17226 591.23916 -0.07433 0.19526 0.06639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99570 0.19826 -1.00000 - 12563 2017 8 21 16 55 9 22 4.8440 182.59133 630.16623 591.23558 -0.05867 0.19371 0.06321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99535 0.19826 -1.00000 - 12564 2017 8 21 16 55 13 866 4.8441 182.59351 630.16006 591.23189 -0.06251 0.19231 0.05797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99500 0.19826 -1.00000 - 12565 2017 8 21 16 55 18 710 4.8441 182.59568 630.15384 591.22813 -0.08035 0.19090 0.05403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99464 0.19826 -1.00000 - 12566 2017 8 21 16 55 23 554 4.8441 182.59785 630.14763 591.22424 -0.08747 0.18948 0.05100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99429 0.19826 -1.00000 - 12567 2017 8 21 16 55 28 398 4.8441 182.60002 630.14118 591.22018 -0.07555 0.18804 0.04521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99394 0.19826 -1.00000 - 12568 2017 8 21 16 55 33 242 4.8442 182.60219 630.13456 591.21609 -0.09424 0.18660 0.04229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99359 0.19826 -1.00000 - 12569 2017 8 21 16 55 38 87 4.8442 182.60436 630.12802 591.21189 -0.10804 0.18514 0.03753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99324 0.19826 -1.00000 - 12570 2017 8 21 16 55 42 931 4.8442 182.60653 630.12030 591.20762 -0.12292 0.18367 0.03163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99288 0.19826 -1.00000 - 12571 2017 8 21 16 55 47 775 4.8442 182.60872 630.11350 591.20343 -0.14037 0.18219 0.02490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99253 0.19826 -1.00000 - 12572 2017 8 21 16 55 52 619 4.8443 182.61090 630.10617 591.19929 -0.15760 0.18071 0.01839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99218 0.19826 -1.00000 - 12573 2017 8 21 16 55 57 464 4.8443 182.61308 630.10200 591.19514 -0.17420 0.17927 0.01089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99183 0.19826 -1.00000 - 12574 2017 8 21 16 56 2 308 4.8443 182.61527 630.09621 591.19097 -0.19452 0.17787 0.00516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99147 0.19826 -1.00000 - 12575 2017 8 21 16 56 7 152 4.8443 182.61745 630.08917 591.18678 -0.22455 0.17654 -0.00260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99112 0.19826 -1.00000 - 12576 2017 8 21 16 56 11 997 4.8444 182.61963 630.08190 591.18268 -0.23454 0.17528 -0.01047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99077 0.19826 -1.00000 - 12577 2017 8 21 16 56 16 841 4.8444 182.62181 630.07504 591.17847 -0.27209 0.17407 -0.01815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99042 0.19826 -1.00000 - 12578 2017 8 21 16 56 21 685 4.8444 182.62399 630.07145 591.17421 -0.30701 0.17291 -0.02642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99006 0.19826 -1.00000 - 12579 2017 8 21 16 56 26 530 4.8444 182.62618 630.06641 591.16993 -0.31088 0.17177 -0.03219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98971 0.19826 -1.00000 - 12580 2017 8 21 16 56 31 374 4.8445 182.62837 630.06003 591.16555 -0.32362 0.17066 -0.04150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98936 0.19825 -1.00000 - 12581 2017 8 21 16 56 36 219 4.8445 182.63056 630.05302 591.16110 -0.34245 0.16957 -0.04791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98901 0.19825 -1.00000 - 12582 2017 8 21 16 56 41 63 4.8445 182.63275 630.04603 591.15656 -0.36173 0.16850 -0.05621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98866 0.19825 -1.00000 - 12583 2017 8 21 16 56 45 908 4.8446 182.63494 630.04224 591.15205 -0.37949 0.16744 -0.06336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98830 0.19825 -1.00000 - 12584 2017 8 21 16 56 50 753 4.8446 182.63714 630.03719 591.14750 -0.39576 0.16638 -0.06968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98795 0.19825 -1.00000 - 12585 2017 8 21 16 56 55 597 4.8446 182.63933 630.03084 591.14279 -0.41007 0.16534 -0.07618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98760 0.19825 -1.00000 - 12586 2017 8 21 16 57 0 442 4.8446 182.64153 630.02434 591.13788 -0.42214 0.16433 -0.08203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98725 0.19825 -1.00000 - 12587 2017 8 21 16 57 5 286 4.8447 182.64372 630.01655 591.13287 -0.43178 0.16357 -0.08863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98689 0.19825 -1.00000 - 12588 2017 8 21 16 57 10 131 4.8447 182.64590 630.00794 591.12774 -0.43891 0.16294 -0.09303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98654 0.19825 -1.00000 - 12589 2017 8 21 16 57 14 976 4.8447 182.64810 630.00134 591.12235 -0.44349 0.16227 -0.10004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98619 0.19825 -1.00000 - 12590 2017 8 21 16 57 19 821 4.8447 182.65030 629.99435 591.11687 -0.44566 0.16154 -0.10457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98584 0.19825 -1.00000 - 12591 2017 8 21 16 57 24 665 4.8448 182.65251 629.98720 591.11124 -0.44560 0.16075 -0.11044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98548 0.19825 -1.00000 - 12592 2017 8 21 16 57 29 510 4.8448 182.65471 629.97886 591.10553 -0.44358 0.15991 -0.11700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98513 0.19825 -1.00000 - 12593 2017 8 21 16 57 34 355 4.8448 182.65692 629.97089 591.09973 -0.43992 0.15906 -0.12152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98478 0.19825 -1.00000 - 12594 2017 8 21 16 57 39 200 4.8448 182.65912 629.96314 591.09371 -0.43497 0.15824 -0.12711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98443 0.19825 -1.00000 - 12595 2017 8 21 16 57 44 45 4.8449 182.66133 629.95531 591.08748 -0.42914 0.15747 -0.13127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98408 0.19825 -1.00000 - 12596 2017 8 21 16 57 48 889 4.8449 182.66354 629.94937 591.08114 -0.42274 0.15677 -0.13773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98372 0.19825 -1.00000 - 12597 2017 8 21 16 57 53 734 4.8449 182.66574 629.94044 591.07466 -0.45120 0.15613 -0.14464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98337 0.19825 -1.00000 - 12598 2017 8 21 16 57 58 579 4.8449 182.66794 629.93092 591.06813 -0.45487 0.15552 -0.15281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98302 0.19825 -1.00000 - 12599 2017 8 21 16 58 3 424 4.8450 182.67015 629.92184 591.06154 -0.48857 0.15490 -0.15992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98267 0.19825 -1.00000 - 12600 2017 8 21 16 58 8 269 4.8450 182.67236 629.91219 591.05485 -0.49414 0.15425 -0.16695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98231 0.19825 -1.00000 - 12601 2017 8 21 16 58 13 114 4.8450 182.67458 629.90180 591.04803 -0.51012 0.15356 -0.17522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98196 0.19825 -1.00000 - 12602 2017 8 21 16 58 17 959 4.8451 182.67680 629.89453 591.04113 -0.55154 0.15281 -0.18340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98161 0.19825 -1.00000 - 12603 2017 8 21 16 58 22 804 4.8451 182.67902 629.88260 591.03426 -0.55461 0.15204 -0.19238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98126 0.19825 -1.00000 - 12604 2017 8 21 16 58 27 650 4.8451 182.68124 629.87531 591.02728 -0.59409 0.15126 -0.20134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98090 0.19825 -1.00000 - 12605 2017 8 21 16 58 32 495 4.8451 182.68347 629.86730 591.02020 -0.59551 0.15052 -0.20937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98055 0.19825 -1.00000 - 12606 2017 8 21 16 58 37 340 4.8452 182.68570 629.85508 591.01298 -0.64542 0.14984 -0.21769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98020 0.19825 -1.00000 - 12607 2017 8 21 16 58 42 185 4.8452 182.68792 629.84758 591.00578 -0.68821 0.14922 -0.22762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97985 0.19825 -1.00000 - 12608 2017 8 21 16 58 47 30 4.8452 182.69013 629.83573 590.99858 -0.67896 0.14865 -0.23500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97949 0.19824 -1.00000 - 12609 2017 8 21 16 58 51 875 4.8452 182.69235 629.82618 590.99123 -0.69319 0.14808 -0.24490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97914 0.19824 -1.00000 - 12610 2017 8 21 16 58 56 721 4.8453 182.69457 629.81894 590.98393 -0.73264 0.14749 -0.25404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97879 0.19824 -1.00000 - 12611 2017 8 21 16 59 1 566 4.8453 182.69680 629.80871 590.97661 -0.77132 0.14687 -0.26122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97844 0.19824 -1.00000 - 12612 2017 8 21 16 59 6 411 4.8453 182.69904 629.79961 590.96909 -0.80689 0.14622 -0.27324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97809 0.19824 -1.00000 - 12613 2017 8 21 16 59 11 257 4.8453 182.70128 629.78623 590.96152 -0.80415 0.14555 -0.28155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97773 0.19824 -1.00000 - 12614 2017 8 21 16 59 16 102 4.8454 182.70352 629.77438 590.95385 -0.79775 0.14486 -0.29007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97738 0.19824 -1.00000 - 12615 2017 8 21 16 59 20 947 4.8454 182.70576 629.76459 590.94612 -0.81261 0.14415 -0.29883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97703 0.19824 -1.00000 - 12616 2017 8 21 16 59 25 793 4.8454 182.70800 629.75599 590.93831 -0.85256 0.14344 -0.30765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97668 0.19824 -1.00000 - 12617 2017 8 21 16 59 30 638 4.8455 182.71024 629.74595 590.93050 -0.85392 0.14272 -0.31730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97632 0.19824 -1.00000 - 12618 2017 8 21 16 59 35 484 4.8455 182.71248 629.73762 590.92264 -0.87676 0.14198 -0.32462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97597 0.19824 -1.00000 - 12619 2017 8 21 16 59 40 329 4.8455 182.71471 629.72426 590.91468 -0.88626 0.14120 -0.33502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97562 0.19824 -1.00000 - 12620 2017 8 21 16 59 45 175 4.8455 182.71694 629.71249 590.90667 -0.90360 0.14038 -0.34255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97527 0.19824 -1.00000 - 12621 2017 8 21 16 59 50 21 4.8456 182.71917 629.70441 590.89866 -0.93295 0.13951 -0.35065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97491 0.19824 -1.00000 - 12622 2017 8 21 16 59 54 866 4.8456 182.72142 629.69396 590.89063 -0.96459 0.13861 -0.35744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97456 0.19824 -1.00000 - 12623 2017 8 21 16 59 59 712 4.8456 182.72368 629.68130 590.88246 -0.99545 0.13772 -0.36563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97421 0.19824 -1.00000 - 12624 2017 8 21 17 0 4 557 4.8457 182.72594 629.67150 590.87427 -1.03396 0.13708 -0.37335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97386 0.19824 -1.00000 - 12625 2017 8 21 17 0 9 403 4.8457 182.72820 629.66084 590.86593 -1.05980 0.13644 -0.37883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97350 0.19824 -1.00000 - 12626 2017 8 21 17 0 14 249 4.8457 182.73045 629.65176 590.85748 -1.09146 0.13577 -0.38717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97315 0.19824 -1.00000 - 12627 2017 8 21 17 0 19 95 4.8457 182.73272 629.64305 590.84895 -1.12160 0.13508 -0.39463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97280 0.19824 -1.00000 - 12628 2017 8 21 17 0 23 940 4.8458 182.73498 629.62967 590.84040 -1.14975 0.13434 -0.40128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97245 0.19824 -1.00000 - 12629 2017 8 21 17 0 28 786 4.8458 182.73724 629.61664 590.83179 -1.17744 0.13356 -0.40907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97209 0.19824 -1.00000 - 12630 2017 8 21 17 0 33 632 4.8458 182.73948 629.60606 590.82305 -1.21361 0.13276 -0.41716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97174 0.19824 -1.00000 - 12631 2017 8 21 17 0 38 478 4.8459 182.74172 629.59513 590.81429 -1.24943 0.13195 -0.42304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97139 0.19824 -1.00000 - 12632 2017 8 21 17 0 43 324 4.8459 182.74398 629.58675 590.80545 -1.30315 0.13117 -0.43069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97104 0.19824 -1.00000 - 12633 2017 8 21 17 0 48 170 4.8459 182.74625 629.57528 590.79651 -1.34689 0.13041 -0.43803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97069 0.19824 -1.00000 - 12634 2017 8 21 17 0 53 15 4.8459 182.74851 629.56327 590.78743 -1.36470 0.12969 -0.44420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97033 0.19824 -1.00000 - 12635 2017 8 21 17 0 57 861 4.8460 182.75078 629.55134 590.77824 -1.38167 0.12899 -0.45211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96998 0.19824 -1.00000 - 12636 2017 8 21 17 1 2 707 4.8460 182.75306 629.53834 590.76897 -1.39422 0.12828 -0.45678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96963 0.19823 -1.00000 - 12637 2017 8 21 17 1 7 553 4.8460 182.75534 629.52909 590.75945 -1.40333 0.12756 -0.46463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96928 0.19823 -1.00000 - 12638 2017 8 21 17 1 12 400 4.8461 182.75762 629.51873 590.74986 -1.40731 0.12681 -0.46993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96892 0.19823 -1.00000 - 12639 2017 8 21 17 1 17 246 4.8461 182.75990 629.50640 590.74011 -1.40422 0.12603 -0.47478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96857 0.19823 -1.00000 - 12640 2017 8 21 17 1 22 92 4.8461 182.76216 629.49191 590.73021 -1.39401 0.12523 -0.48142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96822 0.19823 -1.00000 - 12641 2017 8 21 17 1 26 938 4.8461 182.76443 629.47932 590.72025 -1.37792 0.12444 -0.48559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96787 0.19823 -1.00000 - 12642 2017 8 21 17 1 31 784 4.8462 182.76670 629.46497 590.71007 -1.35866 0.12369 -0.49091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96751 0.19823 -1.00000 - 12643 2017 8 21 17 1 36 630 4.8462 182.76897 629.45434 590.69969 -1.33730 0.12299 -0.49580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96716 0.19823 -1.00000 - 12644 2017 8 21 17 1 41 476 4.8462 182.77125 629.44328 590.68925 -1.31421 0.12237 -0.49998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96681 0.19823 -1.00000 - 12645 2017 8 21 17 1 46 323 4.8463 182.77353 629.42725 590.67867 -1.30867 0.12181 -0.50444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96646 0.19823 -1.00000 - 12646 2017 8 21 17 1 51 169 4.8463 182.77581 629.41131 590.66796 -1.29657 0.12128 -0.51021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96610 0.19823 -1.00000 - 12647 2017 8 21 17 1 56 15 4.8463 182.77811 629.39767 590.65708 -1.26587 0.12075 -0.51334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96575 0.19823 -1.00000 - 12648 2017 8 21 17 2 0 862 4.8463 182.78041 629.38546 590.64601 -1.26189 0.12019 -0.51904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96540 0.19823 -1.00000 - 12649 2017 8 21 17 2 5 708 4.8464 182.78270 629.37141 590.63476 -1.24824 0.11961 -0.52366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96505 0.19823 -1.00000 - 12650 2017 8 21 17 2 10 554 4.8464 182.78499 629.35912 590.62342 -1.26683 0.11900 -0.52885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96469 0.19823 -1.00000 - 12651 2017 8 21 17 2 15 401 4.8464 182.78728 629.34215 590.61195 -1.28925 0.11838 -0.53464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96434 0.19823 -1.00000 - 12652 2017 8 21 17 2 20 247 4.8465 182.78956 629.32719 590.60035 -1.28152 0.11775 -0.53936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96399 0.19823 -1.00000 - 12653 2017 8 21 17 2 25 94 4.8465 182.79184 629.31053 590.58859 -1.28347 0.11712 -0.54493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96364 0.19823 -1.00000 - 12654 2017 8 21 17 2 29 940 4.8465 182.79413 629.29730 590.57671 -1.28621 0.11651 -0.55026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96328 0.19823 -1.00000 - 12655 2017 8 21 17 2 34 787 4.8466 182.79642 629.28136 590.56475 -1.28640 0.11594 -0.55362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96293 0.19823 -1.00000 - 12656 2017 8 21 17 2 39 633 4.8466 182.79871 629.26525 590.55258 -1.32290 0.11543 -0.55813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96258 0.19823 -1.00000 - 12657 2017 8 21 17 2 44 480 4.8466 182.80102 629.25144 590.54028 -1.34298 0.11500 -0.56380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96223 0.19823 -1.00000 - 12658 2017 8 21 17 2 49 327 4.8466 182.80333 629.23372 590.52782 -1.32612 0.11464 -0.56731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96187 0.19823 -1.00000 - 12659 2017 8 21 17 2 54 173 4.8467 182.80564 629.21856 590.51523 -1.33377 0.11432 -0.57226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96152 0.19823 -1.00000 - 12660 2017 8 21 17 2 59 20 4.8467 182.80795 629.20449 590.50251 -1.35053 0.11399 -0.57752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96117 0.19823 -1.00000 - 12661 2017 8 21 17 3 3 867 4.8467 182.81025 629.18528 590.48972 -1.32372 0.11361 -0.58044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96082 0.19823 -1.00000 - 12662 2017 8 21 17 3 8 714 4.8468 182.81255 629.16708 590.47673 -1.36070 0.11312 -0.58714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96046 0.19823 -1.00000 - 12663 2017 8 21 17 3 13 560 4.8468 182.81485 629.15202 590.46371 -1.38205 0.11249 -0.59218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96011 0.19823 -1.00000 - 12664 2017 8 21 17 3 18 407 4.8468 182.81715 629.13324 590.45054 -1.36672 0.11175 -0.59956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95976 0.19822 -1.00000 - 12665 2017 8 21 17 3 23 254 4.8469 182.81945 629.11784 590.43729 -1.38911 0.11095 -0.60431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95941 0.19822 -1.00000 - 12666 2017 8 21 17 3 28 101 4.8469 182.82175 629.10144 590.42398 -1.38386 0.11014 -0.60757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95905 0.19822 -1.00000 - 12667 2017 8 21 17 3 32 948 4.8469 182.82406 629.08170 590.41050 -1.39733 0.10940 -0.61347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95870 0.19822 -1.00000 - 12668 2017 8 21 17 3 37 795 4.8469 182.82638 629.06327 590.39690 -1.42499 0.10918 -0.61937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95835 0.19822 -1.00000 - 12669 2017 8 21 17 3 42 642 4.8470 182.82870 629.04520 590.38323 -1.42891 0.10900 -0.62285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95800 0.19822 -1.00000 - 12670 2017 8 21 17 3 47 489 4.8470 182.83102 629.02940 590.36946 -1.44541 0.10876 -0.62797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95764 0.19822 -1.00000 - 12671 2017 8 21 17 3 52 336 4.8470 182.83334 629.01373 590.35566 -1.46189 0.10841 -0.63348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95729 0.19822 -1.00000 - 12672 2017 8 21 17 3 57 183 4.8471 182.83566 628.99563 590.34175 -1.47824 0.10795 -0.63564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95694 0.19822 -1.00000 - 12673 2017 8 21 17 4 2 30 4.8471 182.83797 628.97512 590.32765 -1.49415 0.10741 -0.64254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95659 0.19822 -1.00000 - 12674 2017 8 21 17 4 6 877 4.8471 182.84028 628.95612 590.31350 -1.51156 0.10685 -0.64757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95623 0.19822 -1.00000 - 12675 2017 8 21 17 4 11 724 4.8472 182.84260 628.93684 590.29929 -1.53049 0.10632 -0.65253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95588 0.19822 -1.00000 - 12676 2017 8 21 17 4 16 572 4.8472 182.84491 628.92078 590.28493 -1.56580 0.10587 -0.65857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95553 0.19822 -1.00000 - 12677 2017 8 21 17 4 21 419 4.8472 182.84723 628.90334 590.27059 -1.60005 0.10553 -0.66366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95518 0.19822 -1.00000 - 12678 2017 8 21 17 4 26 266 4.8473 182.84956 628.88508 590.25616 -1.61280 0.10525 -0.66851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95482 0.19822 -1.00000 - 12679 2017 8 21 17 4 31 113 4.8473 182.85190 628.86460 590.24159 -1.62746 0.10499 -0.67448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95447 0.19822 -1.00000 - 12680 2017 8 21 17 4 35 961 4.8473 182.85424 628.84588 590.22701 -1.64069 0.10468 -0.68065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95412 0.19822 -1.00000 - 12681 2017 8 21 17 4 40 808 4.8474 182.85657 628.82612 590.21246 -1.66219 0.10427 -0.68508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95377 0.19822 -1.00000 - 12682 2017 8 21 17 4 45 655 4.8474 182.85890 628.80984 590.19777 -1.67120 0.10374 -0.69127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95341 0.19822 -1.00000 - 12683 2017 8 21 17 4 50 503 4.8474 182.86122 628.79273 590.18308 -1.68624 0.10312 -0.69604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95306 0.19822 -1.00000 - 12684 2017 8 21 17 4 55 350 4.8474 182.86354 628.77194 590.16833 -1.69853 0.10245 -0.70132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95271 0.19822 -1.00000 - 12685 2017 8 21 17 5 0 198 4.8475 182.86587 628.75287 590.15353 -1.70756 0.10181 -0.70575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95236 0.19822 -1.00000 - 12686 2017 8 21 17 5 5 45 4.8475 182.86820 628.73292 590.13857 -1.71359 0.10127 -0.71022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95200 0.19822 -1.00000 - 12687 2017 8 21 17 5 9 893 4.8475 182.87054 628.71587 590.12345 -1.71708 0.10086 -0.71467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95165 0.19822 -1.00000 - 12688 2017 8 21 17 5 14 740 4.8476 182.87288 628.69630 590.10833 -1.71824 0.10057 -0.71744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95130 0.19822 -1.00000 - 12689 2017 8 21 17 5 19 588 4.8476 182.87523 628.67585 590.09304 -1.71720 0.10035 -0.72156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95095 0.19822 -1.00000 - 12690 2017 8 21 17 5 24 436 4.8476 182.87759 628.65760 590.07763 -1.71391 0.10014 -0.72646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95059 0.19822 -1.00000 - 12691 2017 8 21 17 5 29 283 4.8477 182.87994 628.63776 590.06209 -1.70842 0.09985 -0.72866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95024 0.19822 -1.00000 - 12692 2017 8 21 17 5 34 131 4.8477 182.88229 628.61719 590.04639 -1.70155 0.09943 -0.73352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94989 0.19821 -1.00000 - 12693 2017 8 21 17 5 38 979 4.8477 182.88463 628.59952 590.03062 -1.69707 0.09887 -0.73846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94954 0.19821 -1.00000 - 12694 2017 8 21 17 5 43 827 4.8478 182.88696 628.57759 590.01480 -1.68976 0.09819 -0.74099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94918 0.19821 -1.00000 - 12695 2017 8 21 17 5 48 674 4.8478 182.88929 628.55742 589.99889 -1.68440 0.09748 -0.74627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94883 0.19821 -1.00000 - 12696 2017 8 21 17 5 53 522 4.8478 182.89163 628.53862 589.98294 -1.67783 0.09681 -0.75030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94848 0.19821 -1.00000 - 12697 2017 8 21 17 5 58 370 4.8479 182.89398 628.51684 589.96691 -1.66981 0.09626 -0.75582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94813 0.19821 -1.00000 - 12698 2017 8 21 17 6 3 218 4.8479 182.89634 628.49646 589.95078 -1.66120 0.09586 -0.75991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94777 0.19821 -1.00000 - 12699 2017 8 21 17 6 8 66 4.8479 182.89872 628.47745 589.93459 -1.65263 0.09561 -0.76532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94742 0.19821 -1.00000 - 12700 2017 8 21 17 6 12 914 4.8480 182.90111 628.45425 589.91839 -1.64443 0.09542 -0.77006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94707 0.19821 -1.00000 - 12701 2017 8 21 17 6 17 762 4.8480 182.90348 628.43439 589.90200 -1.63680 0.09522 -0.77597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94672 0.19821 -1.00000 - 12702 2017 8 21 17 6 22 610 4.8480 182.90585 628.41590 589.88550 -1.65357 0.09492 -0.78122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94636 0.19821 -1.00000 - 12703 2017 8 21 17 6 27 458 4.8481 182.90822 628.39485 589.86894 -1.65250 0.09445 -0.78724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94601 0.19821 -1.00000 - 12704 2017 8 21 17 6 32 306 4.8481 182.91058 628.37521 589.85233 -1.67475 0.09383 -0.79366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94566 0.19821 -1.00000 - 12705 2017 8 21 17 6 37 154 4.8481 182.91293 628.35160 589.83558 -1.66850 0.09311 -0.79869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94531 0.19821 -1.00000 - 12706 2017 8 21 17 6 42 2 4.8481 182.91528 628.33124 589.81879 -1.68758 0.09238 -0.80585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94495 0.19821 -1.00000 - 12707 2017 8 21 17 6 46 850 4.8482 182.91764 628.31204 589.80193 -1.71084 0.09174 -0.81106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94460 0.19821 -1.00000 - 12708 2017 8 21 17 6 51 699 4.8482 182.92003 628.29082 589.78491 -1.69396 0.09129 -0.81816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94425 0.19821 -1.00000 - 12709 2017 8 21 17 6 56 547 4.8482 182.92243 628.26878 589.76786 -1.71478 0.09103 -0.82301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94390 0.19821 -1.00000 - 12710 2017 8 21 17 7 1 395 4.8483 182.92484 628.24566 589.75069 -1.73809 0.09092 -0.83026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94354 0.19821 -1.00000 - 12711 2017 8 21 17 7 6 243 4.8483 182.92722 628.22423 589.73348 -1.73371 0.09087 -0.83701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94319 0.19821 -1.00000 - 12712 2017 8 21 17 7 11 92 4.8483 182.92960 628.20459 589.71622 -1.73881 0.09079 -0.84396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94284 0.19821 -1.00000 - 12713 2017 8 21 17 7 15 940 4.8484 182.93198 628.18460 589.69884 -1.76736 0.09059 -0.85252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94249 0.19821 -1.00000 - 12714 2017 8 21 17 7 20 789 4.8484 182.93437 628.16113 589.68135 -1.78158 0.09025 -0.85907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94213 0.19821 -1.00000 - 12715 2017 8 21 17 7 25 637 4.8484 182.93674 628.13911 589.66382 -1.80020 0.08977 -0.86784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94178 0.19821 -1.00000 - 12716 2017 8 21 17 7 30 485 4.8485 182.93910 628.11625 589.64623 -1.82099 0.08921 -0.87495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94143 0.19821 -1.00000 - 12717 2017 8 21 17 7 35 334 4.8485 182.94147 628.09616 589.62848 -1.84529 0.08864 -0.88430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94108 0.19821 -1.00000 - 12718 2017 8 21 17 7 40 182 4.8485 182.94389 628.07633 589.61079 -1.87147 0.08816 -0.89174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94072 0.19821 -1.00000 - 12719 2017 8 21 17 7 45 31 4.8486 182.94633 628.05216 589.59304 -1.91900 0.08783 -0.89859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94037 0.19821 -1.00000 - 12720 2017 8 21 17 7 49 880 4.8486 182.94875 628.03199 589.57517 -1.93284 0.08764 -0.90817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94002 0.19820 -1.00000 - 12721 2017 8 21 17 7 54 728 4.8486 182.95115 628.00721 589.55723 -1.95301 0.08755 -0.91507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93967 0.19820 -1.00000 - 12722 2017 8 21 17 7 59 577 4.8487 182.95354 627.98465 589.53920 -1.97333 0.08748 -0.92373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93931 0.19820 -1.00000 - 12723 2017 8 21 17 8 4 426 4.8487 182.95593 627.96371 589.52113 -1.99446 0.08736 -0.93163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93896 0.19820 -1.00000 - 12724 2017 8 21 17 8 9 274 4.8487 182.95833 627.94411 589.50295 -2.01719 0.08713 -0.93900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93861 0.19820 -1.00000 - 12725 2017 8 21 17 8 14 123 4.8488 182.96072 627.92088 589.48469 -2.06117 0.08676 -0.94857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93825 0.19820 -1.00000 - 12726 2017 8 21 17 8 18 972 4.8488 182.96310 627.89743 589.46633 -2.07861 0.08629 -0.95483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93790 0.19820 -1.00000 - 12727 2017 8 21 17 8 23 821 4.8488 182.96549 627.87242 589.44775 -2.10449 0.08577 -0.96422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93755 0.19820 -1.00000 - 12728 2017 8 21 17 8 28 669 4.8488 182.96793 627.84950 589.42911 -2.13093 0.08528 -0.97164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93720 0.19820 -1.00000 - 12729 2017 8 21 17 8 33 518 4.8489 182.97039 627.82670 589.41037 -2.15802 0.08487 -0.97947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93684 0.19820 -1.00000 - 12730 2017 8 21 17 8 38 367 4.8489 182.97283 627.80398 589.39153 -2.18558 0.08456 -0.98668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93649 0.19820 -1.00000 - 12731 2017 8 21 17 8 43 216 4.8489 182.97525 627.78108 589.37264 -2.21267 0.08432 -0.99249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93614 0.19820 -1.00000 - 12732 2017 8 21 17 8 48 65 4.8490 182.97765 627.75713 589.35360 -2.23890 0.08414 -1.00107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93579 0.19820 -1.00000 - 12733 2017 8 21 17 8 52 914 4.8490 182.98007 627.73355 589.33448 -2.26403 0.08397 -1.00778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93543 0.19820 -1.00000 - 12734 2017 8 21 17 8 57 763 4.8490 182.98250 627.70940 589.31531 -2.28785 0.08377 -1.01592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93508 0.19820 -1.00000 - 12735 2017 8 21 17 9 2 612 4.8491 182.98492 627.68741 589.29601 -2.31271 0.08352 -1.02402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93473 0.19820 -1.00000 - 12736 2017 8 21 17 9 7 461 4.8491 182.98731 627.66370 589.27669 -2.33961 0.08323 -1.03101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93438 0.19820 -1.00000 - 12737 2017 8 21 17 9 12 311 4.8491 182.98972 627.63949 589.25726 -2.36563 0.08287 -1.03954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93402 0.19820 -1.00000 - 12738 2017 8 21 17 9 17 160 4.8492 182.99217 627.61573 589.23770 -2.39142 0.08248 -1.04672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93367 0.19820 -1.00000 - 12739 2017 8 21 17 9 22 9 4.8492 182.99464 627.59179 589.21800 -2.41684 0.08205 -1.05407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93332 0.19820 -1.00000 - 12740 2017 8 21 17 9 26 858 4.8492 182.99710 627.56894 589.19824 -2.44142 0.08160 -1.06184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93297 0.19820 -1.00000 - 12741 2017 8 21 17 9 31 707 4.8493 182.99954 627.54482 589.17848 -2.48083 0.08111 -1.06758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93261 0.19820 -1.00000 - 12742 2017 8 21 17 9 36 557 4.8493 183.00198 627.51852 589.15850 -2.51283 0.08060 -1.07456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93226 0.19820 -1.00000 - 12743 2017 8 21 17 9 41 406 4.8493 183.00442 627.49375 589.13839 -2.52499 0.08007 -1.08291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93191 0.19820 -1.00000 - 12744 2017 8 21 17 9 46 255 4.8494 183.00686 627.46904 589.11825 -2.53921 0.07959 -1.08835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93155 0.19820 -1.00000 - 12745 2017 8 21 17 9 51 105 4.8494 183.00929 627.44454 589.09799 -2.55277 0.07918 -1.09581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93120 0.19820 -1.00000 - 12746 2017 8 21 17 9 55 954 4.8494 183.01171 627.42121 589.07770 -2.56570 0.07889 -1.10298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93085 0.19820 -1.00000 - 12747 2017 8 21 17 10 0 804 4.8495 183.01414 627.39587 589.05728 -2.57737 0.07873 -1.10833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93050 0.19819 -1.00000 - 12748 2017 8 21 17 10 5 653 4.8495 183.01660 627.36869 589.03672 -2.58749 0.07867 -1.11562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93014 0.19819 -1.00000 - 12749 2017 8 21 17 10 10 503 4.8495 183.01907 627.34432 589.01616 -2.59599 0.07859 -1.12155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92979 0.19819 -1.00000 - 12750 2017 8 21 17 10 15 352 4.8496 183.02155 627.31871 588.99544 -2.60301 0.07836 -1.12841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92944 0.19819 -1.00000 - 12751 2017 8 21 17 10 20 202 4.8496 183.02403 627.29124 588.97462 -2.60954 0.07789 -1.13440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92909 0.19819 -1.00000 - 12752 2017 8 21 17 10 25 52 4.8496 183.02649 627.26661 588.95371 -2.61657 0.07717 -1.13939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92873 0.19819 -1.00000 - 12753 2017 8 21 17 10 29 901 4.8497 183.02895 627.24039 588.93266 -2.62307 0.07627 -1.14353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92838 0.19819 -1.00000 - 12754 2017 8 21 17 10 34 751 4.8497 183.03139 627.21402 588.91140 -2.62795 0.07529 -1.14964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92803 0.19819 -1.00000 - 12755 2017 8 21 17 10 39 601 4.8497 183.03383 627.18905 588.89006 -2.63081 0.07523 -1.15438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92768 0.19819 -1.00000 - 12756 2017 8 21 17 10 44 450 4.8498 183.03627 627.16179 588.86865 -2.63137 0.07550 -1.15889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92732 0.19819 -1.00000 - 12757 2017 8 21 17 10 49 300 4.8498 183.03872 627.13431 588.84704 -2.62999 0.07554 -1.16437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92697 0.19819 -1.00000 - 12758 2017 8 21 17 10 54 150 4.8498 183.04119 627.10775 588.82537 -2.62718 0.07521 -1.16978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92662 0.19819 -1.00000 - 12759 2017 8 21 17 10 59 0 4.8499 183.04367 627.08000 588.80366 -2.62322 0.07454 -1.17467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92626 0.19819 -1.00000 - 12760 2017 8 21 17 11 3 850 4.8499 183.04616 627.05259 588.78182 -2.61837 0.07377 -1.18035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92591 0.19819 -1.00000 - 12761 2017 8 21 17 11 8 700 4.8499 183.04865 627.02704 588.75986 -2.61265 0.07347 -1.18640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92556 0.19819 -1.00000 - 12762 2017 8 21 17 11 13 550 4.8500 183.05112 626.99948 588.73787 -2.60622 0.07331 -1.19036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92521 0.19819 -1.00000 - 12763 2017 8 21 17 11 18 400 4.8500 183.05358 626.96984 588.71570 -2.60671 0.07286 -1.19627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92485 0.19819 -1.00000 - 12764 2017 8 21 17 11 23 250 4.8500 183.05602 626.94341 588.69343 -2.61981 0.07288 -1.20190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92450 0.19819 -1.00000 - 12765 2017 8 21 17 11 28 100 4.8501 183.05846 626.91473 588.67111 -2.61233 0.07302 -1.20660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92415 0.19819 -1.00000 - 12766 2017 8 21 17 11 32 950 4.8501 183.06092 626.88858 588.64862 -2.60973 0.07301 -1.21240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92380 0.19819 -1.00000 - 12767 2017 8 21 17 11 37 800 4.8501 183.06339 626.86077 588.62612 -2.60807 0.07275 -1.21736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92344 0.19819 -1.00000 - 12768 2017 8 21 17 11 42 650 4.8502 183.06588 626.83095 588.60347 -2.60809 0.07228 -1.22209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92309 0.19819 -1.00000 - 12769 2017 8 21 17 11 47 500 4.8502 183.06838 626.80357 588.58073 -2.60865 0.07171 -1.22786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92274 0.19819 -1.00000 - 12770 2017 8 21 17 11 52 351 4.8502 183.07087 626.77521 588.55794 -2.61004 0.07116 -1.23194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92238 0.19819 -1.00000 - 12771 2017 8 21 17 11 57 201 4.8503 183.07337 626.74563 588.53504 -2.61357 0.07071 -1.23718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92203 0.19819 -1.00000 - 12772 2017 8 21 17 12 2 51 4.8503 183.07585 626.71744 588.51207 -2.61792 0.07039 -1.24249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92168 0.19819 -1.00000 - 12773 2017 8 21 17 12 6 901 4.8503 183.07831 626.68844 588.48895 -2.62278 0.07020 -1.24639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92133 0.19819 -1.00000 - 12774 2017 8 21 17 12 11 752 4.8504 183.08075 626.65932 588.46580 -2.62793 0.07011 -1.25139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92097 0.19819 -1.00000 - 12775 2017 8 21 17 12 16 602 4.8504 183.08320 626.63053 588.44254 -2.63326 0.07013 -1.25602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92062 0.19818 -1.00000 - 12776 2017 8 21 17 12 21 453 4.8504 183.08568 626.60152 588.41913 -2.63859 0.07033 -1.26183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92027 0.19818 -1.00000 - 12777 2017 8 21 17 12 26 303 4.8505 183.08817 626.57379 588.39566 -2.64415 0.07065 -1.26782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91992 0.19818 -1.00000 - 12778 2017 8 21 17 12 31 154 4.8505 183.09068 626.54444 588.37222 -2.65135 0.07086 -1.27295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91956 0.19818 -1.00000 - 12779 2017 8 21 17 12 36 4 4.8505 183.09318 626.51440 588.34864 -2.65919 0.07088 -1.27932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91921 0.19818 -1.00000 - 12780 2017 8 21 17 12 40 855 4.8506 183.09567 626.48653 588.32498 -2.68353 0.07074 -1.28566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91886 0.19818 -1.00000 - 12781 2017 8 21 17 12 45 705 4.8506 183.09817 626.45708 588.30124 -2.70283 0.07046 -1.29085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91850 0.19818 -1.00000 - 12782 2017 8 21 17 12 50 556 4.8507 183.10065 626.42937 588.27736 -2.71663 0.07011 -1.29814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91815 0.19818 -1.00000 - 12783 2017 8 21 17 12 55 407 4.8507 183.10313 626.39963 588.25348 -2.71804 0.06971 -1.30404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91780 0.19818 -1.00000 - 12784 2017 8 21 17 13 0 257 4.8507 183.10560 626.36951 588.22947 -2.72723 0.06927 -1.31095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91745 0.19818 -1.00000 - 12785 2017 8 21 17 13 5 108 4.8507 183.10810 626.33998 588.20542 -2.73889 0.06880 -1.31716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91709 0.19818 -1.00000 - 12786 2017 8 21 17 13 9 959 4.8508 183.11061 626.31166 588.18128 -2.75230 0.06832 -1.32319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91674 0.19818 -1.00000 - 12787 2017 8 21 17 13 14 810 4.8508 183.11310 626.28157 588.15694 -2.76648 0.06787 -1.32945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91639 0.19818 -1.00000 - 12788 2017 8 21 17 13 19 661 4.8509 183.11559 626.25108 588.13245 -2.78157 0.06808 -1.33477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91604 0.19818 -1.00000 - 12789 2017 8 21 17 13 24 512 4.8509 183.11809 626.22086 588.10787 -2.79701 0.06822 -1.34103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91568 0.19818 -1.00000 - 12790 2017 8 21 17 13 29 362 4.8509 183.12058 626.19033 588.08317 -2.81260 0.06782 -1.34616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91533 0.19818 -1.00000 - 12791 2017 8 21 17 13 34 213 4.8510 183.12306 626.15868 588.05829 -2.82808 0.06827 -1.35250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91498 0.19818 -1.00000 - 12792 2017 8 21 17 13 39 64 4.8510 183.12555 626.12827 588.03339 -2.84329 0.06873 -1.35760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91462 0.19818 -1.00000 - 12793 2017 8 21 17 13 43 915 4.8510 183.12806 626.09854 588.00834 -2.85809 0.06893 -1.36250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91427 0.19818 -1.00000 - 12794 2017 8 21 17 13 48 767 4.8511 183.13057 626.06940 587.98313 -2.87221 0.06873 -1.37020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91392 0.19818 -1.00000 - 12795 2017 8 21 17 13 53 618 4.8511 183.13308 626.03812 587.95789 -2.88951 0.06817 -1.37485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91357 0.19818 -1.00000 - 12796 2017 8 21 17 13 58 469 4.8511 183.13558 626.00528 587.93253 -2.90765 0.06738 -1.38281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91321 0.19818 -1.00000 - 12797 2017 8 21 17 14 3 320 4.8512 183.13809 625.97554 587.90720 -2.94138 0.06651 -1.38921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91286 0.19818 -1.00000 - 12798 2017 8 21 17 14 8 171 4.8512 183.14060 625.94266 587.88167 -2.97007 0.06579 -1.39670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91251 0.19818 -1.00000 - 12799 2017 8 21 17 14 13 22 4.8513 183.14309 625.91142 587.85606 -2.98629 0.06547 -1.40378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91215 0.19818 -1.00000 - 12800 2017 8 21 17 14 17 874 4.8513 183.14557 625.88157 587.83041 -3.00286 0.06566 -1.40936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91180 0.19818 -1.00000 - 12801 2017 8 21 17 14 22 725 4.8513 183.14806 625.84844 587.80461 -3.02114 0.06627 -1.41803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91145 0.19818 -1.00000 - 12802 2017 8 21 17 14 27 576 4.8514 183.15059 625.81788 587.77878 -3.03895 0.06699 -1.42396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91110 0.19818 -1.00000 - 12803 2017 8 21 17 14 32 428 4.8514 183.15312 625.78589 587.75279 -3.05715 0.06745 -1.43132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91074 0.19817 -1.00000 - 12804 2017 8 21 17 14 37 279 4.8514 183.15563 625.75228 587.72672 -3.07585 0.06740 -1.43724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91039 0.19817 -1.00000 - 12805 2017 8 21 17 14 42 131 4.8515 183.15813 625.72089 587.70054 -3.09472 0.06685 -1.44458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91004 0.19817 -1.00000 - 12806 2017 8 21 17 14 46 982 4.8515 183.16065 625.68868 587.67434 -3.11370 0.06595 -1.45019 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90969 0.19817 -1.00000 - 12807 2017 8 21 17 14 51 834 4.8515 183.16317 625.65552 587.64800 -3.13268 0.06532 -1.45580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90933 0.19817 -1.00000 - 12808 2017 8 21 17 14 56 685 4.8516 183.16567 625.62271 587.62155 -3.15159 0.06541 -1.46324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90898 0.19817 -1.00000 - 12809 2017 8 21 17 15 1 537 4.8516 183.16817 625.59123 587.59509 -3.17017 0.06558 -1.46931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90863 0.19817 -1.00000 - 12810 2017 8 21 17 15 6 389 4.8516 183.17070 625.55841 587.56854 -3.18839 0.06579 -1.47518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90827 0.19817 -1.00000 - 12811 2017 8 21 17 15 11 240 4.8517 183.17325 625.52425 587.54189 -3.21871 0.06600 -1.48083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90792 0.19817 -1.00000 - 12812 2017 8 21 17 15 16 92 4.8517 183.17578 625.49170 587.51516 -3.24927 0.06618 -1.48770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90757 0.19817 -1.00000 - 12813 2017 8 21 17 15 20 944 4.8518 183.17828 625.45779 587.48834 -3.25975 0.06626 -1.49344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90722 0.19817 -1.00000 - 12814 2017 8 21 17 15 25 795 4.8518 183.18078 625.42579 587.46145 -3.27479 0.06624 -1.49939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90686 0.19817 -1.00000 - 12815 2017 8 21 17 15 30 647 4.8518 183.18328 625.39377 587.43450 -3.29106 0.06619 -1.50634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90651 0.19817 -1.00000 - 12816 2017 8 21 17 15 35 499 4.8519 183.18579 625.36135 587.40749 -3.31182 0.06617 -1.51106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90616 0.19817 -1.00000 - 12817 2017 8 21 17 15 40 351 4.8519 183.18831 625.32667 587.38041 -3.33188 0.06616 -1.51666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90580 0.19817 -1.00000 - 12818 2017 8 21 17 15 45 203 4.8519 183.19086 625.29346 587.35324 -3.35188 0.06617 -1.52291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90545 0.19817 -1.00000 - 12819 2017 8 21 17 15 50 55 4.8520 183.19342 625.25939 587.32605 -3.37237 0.06622 -1.52845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90510 0.19817 -1.00000 - 12820 2017 8 21 17 15 54 907 4.8520 183.19599 625.22596 587.29883 -3.40633 0.06638 -1.53357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90475 0.19817 -1.00000 - 12821 2017 8 21 17 15 59 759 4.8520 183.19852 625.19408 587.27156 -3.43469 0.06663 -1.53880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90439 0.19817 -1.00000 - 12822 2017 8 21 17 16 4 611 4.8521 183.20104 625.16054 587.24420 -3.44663 0.06686 -1.54182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90404 0.19817 -1.00000 - 12823 2017 8 21 17 16 9 463 4.8521 183.20356 625.12579 587.21666 -3.45918 0.06700 -1.54726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90369 0.19817 -1.00000 - 12824 2017 8 21 17 16 14 315 4.8521 183.20608 625.09259 587.18908 -3.46925 0.06705 -1.55176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90333 0.19817 -1.00000 - 12825 2017 8 21 17 16 19 168 4.8522 183.20860 625.05861 587.16138 -3.47770 0.06704 -1.55563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90298 0.19817 -1.00000 - 12826 2017 8 21 17 16 24 20 4.8522 183.21112 625.02447 587.13354 -3.48446 0.06699 -1.56095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90263 0.19817 -1.00000 - 12827 2017 8 21 17 16 28 872 4.8523 183.21368 624.99127 587.10563 -3.48903 0.06691 -1.56535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90228 0.19817 -1.00000 - 12828 2017 8 21 17 16 33 724 4.8523 183.21627 624.95682 587.07770 -3.50486 0.06687 -1.56911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90192 0.19817 -1.00000 - 12829 2017 8 21 17 16 38 577 4.8523 183.21886 624.92164 587.04962 -3.51370 0.06691 -1.57341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90157 0.19817 -1.00000 - 12830 2017 8 21 17 16 43 429 4.8524 183.22141 624.88860 587.02143 -3.50551 0.06708 -1.57903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90122 0.19817 -1.00000 - 12831 2017 8 21 17 16 48 281 4.8524 183.22394 624.85410 586.99320 -3.49867 0.06734 -1.58270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90086 0.19816 -1.00000 - 12832 2017 8 21 17 16 53 134 4.8524 183.22647 624.81875 586.96492 -3.49169 0.06759 -1.58677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90051 0.19816 -1.00000 - 12833 2017 8 21 17 16 57 986 4.8525 183.22901 624.78538 586.93655 -3.48591 0.06776 -1.59108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90016 0.19816 -1.00000 - 12834 2017 8 21 17 17 2 839 4.8525 183.23155 624.74933 586.90810 -3.48035 0.06782 -1.59454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89981 0.19816 -1.00000 - 12835 2017 8 21 17 17 7 691 4.8525 183.23409 624.71457 586.87950 -3.47422 0.06781 -1.59874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89945 0.19816 -1.00000 - 12836 2017 8 21 17 17 12 544 4.8526 183.23666 624.68082 586.85084 -3.46789 0.06774 -1.60295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89910 0.19816 -1.00000 - 12837 2017 8 21 17 17 17 397 4.8526 183.23925 624.64562 586.82204 -3.46193 0.06768 -1.60645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89875 0.19816 -1.00000 - 12838 2017 8 21 17 17 22 249 4.8527 183.24185 624.61079 586.79308 -3.45641 0.06767 -1.61036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89839 0.19816 -1.00000 - 12839 2017 8 21 17 17 27 102 4.8527 183.24442 624.57370 586.76410 -3.45089 0.06774 -1.61436 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89804 0.19816 -1.00000 - 12840 2017 8 21 17 17 31 955 4.8527 183.24698 624.53785 586.73509 -3.45813 0.06788 -1.61753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89769 0.19816 -1.00000 - 12841 2017 8 21 17 17 36 807 4.8528 183.24953 624.50210 586.70591 -3.44767 0.06806 -1.62099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89734 0.19816 -1.00000 - 12842 2017 8 21 17 17 41 660 4.8528 183.25208 624.46645 586.67668 -3.43960 0.06824 -1.62415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89698 0.19816 -1.00000 - 12843 2017 8 21 17 17 46 513 4.8528 183.25464 624.43089 586.64740 -3.43066 0.06838 -1.62659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89663 0.19816 -1.00000 - 12844 2017 8 21 17 17 51 366 4.8529 183.25719 624.39510 586.61797 -3.42101 0.06846 -1.62916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89628 0.19816 -1.00000 - 12845 2017 8 21 17 17 56 219 4.8529 183.25977 624.35910 586.58846 -3.41091 0.06847 -1.63251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89592 0.19816 -1.00000 - 12846 2017 8 21 17 18 1 72 4.8530 183.26236 624.32284 586.55891 -3.40074 0.06843 -1.63515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89557 0.19816 -1.00000 - 12847 2017 8 21 17 18 5 925 4.8530 183.26496 624.28648 586.52922 -3.39092 0.06842 -1.63831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89522 0.19816 -1.00000 - 12848 2017 8 21 17 18 10 778 4.8530 183.26755 624.25011 586.49942 -3.38181 0.06846 -1.64302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89486 0.19816 -1.00000 - 12849 2017 8 21 17 18 15 631 4.8531 183.27012 624.21444 586.46956 -3.37385 0.06855 -1.64724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89451 0.19816 -1.00000 - 12850 2017 8 21 17 18 20 484 4.8531 183.27269 624.17614 586.43966 -3.37398 0.06867 -1.65175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89416 0.19816 -1.00000 - 12851 2017 8 21 17 18 25 337 4.8531 183.27526 624.13995 586.40969 -3.38842 0.06881 -1.65606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89381 0.19816 -1.00000 - 12852 2017 8 21 17 18 30 190 4.8532 183.27783 624.10436 586.37961 -3.38272 0.06893 -1.66116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89345 0.19816 -1.00000 - 12853 2017 8 21 17 18 35 44 4.8532 183.28041 624.06719 586.34944 -3.39407 0.06901 -1.66650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89310 0.19816 -1.00000 - 12854 2017 8 21 17 18 39 897 4.8532 183.28299 624.03102 586.31929 -3.41448 0.06904 -1.67198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89275 0.19816 -1.00000 - 12855 2017 8 21 17 18 44 750 4.8533 183.28559 623.99267 586.28910 -3.41787 0.06904 -1.67701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89239 0.19816 -1.00000 - 12856 2017 8 21 17 18 49 603 4.8533 183.28819 623.95625 586.25883 -3.43607 0.06904 -1.68249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89204 0.19816 -1.00000 - 12857 2017 8 21 17 18 54 457 4.8534 183.29079 623.92038 586.22849 -3.43832 0.06908 -1.68691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89169 0.19816 -1.00000 - 12858 2017 8 21 17 18 59 310 4.8534 183.29338 623.88302 586.19806 -3.45222 0.06917 -1.69243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89134 0.19816 -1.00000 - 12859 2017 8 21 17 19 4 164 4.8534 183.29597 623.84668 586.16759 -3.46707 0.06931 -1.69799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89098 0.19815 -1.00000 - 12860 2017 8 21 17 19 9 17 4.8535 183.29856 623.80764 586.13700 -3.48221 0.06946 -1.70231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89063 0.19815 -1.00000 - 12861 2017 8 21 17 19 13 871 4.8535 183.30115 623.76954 586.10633 -3.49769 0.06957 -1.70798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89028 0.19815 -1.00000 - 12862 2017 8 21 17 19 18 724 4.8536 183.30374 623.73207 586.07559 -3.51359 0.06964 -1.71233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88992 0.19815 -1.00000 - 12863 2017 8 21 17 19 23 578 4.8536 183.30633 623.69465 586.04470 -3.52983 0.06965 -1.71830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88957 0.19815 -1.00000 - 12864 2017 8 21 17 19 28 431 4.8536 183.30893 623.65715 586.01378 -3.54634 0.06966 -1.72247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88922 0.19815 -1.00000 - 12865 2017 8 21 17 19 33 285 4.8537 183.31153 623.61937 585.98275 -3.56307 0.06968 -1.72724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88886 0.19815 -1.00000 - 12866 2017 8 21 17 19 38 139 4.8537 183.31413 623.58172 585.95168 -3.57995 0.06973 -1.73181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88851 0.19815 -1.00000 - 12867 2017 8 21 17 19 42 993 4.8537 183.31674 623.54376 585.92053 -3.59687 0.06981 -1.73602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88816 0.19815 -1.00000 - 12868 2017 8 21 17 19 47 846 4.8538 183.31935 623.50573 585.88931 -3.61373 0.06992 -1.74264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88781 0.19815 -1.00000 - 12869 2017 8 21 17 19 52 700 4.8538 183.32196 623.46748 585.85806 -3.63032 0.07007 -1.74764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88745 0.19815 -1.00000 - 12870 2017 8 21 17 19 57 554 4.8539 183.32456 623.42965 585.82678 -3.64625 0.07021 -1.75377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88710 0.19815 -1.00000 - 12871 2017 8 21 17 20 2 408 4.8539 183.32716 623.39111 585.79544 -3.66296 0.07032 -1.75886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88675 0.19815 -1.00000 - 12872 2017 8 21 17 20 7 262 4.8539 183.32976 623.35300 585.76397 -3.68434 0.07038 -1.76507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88639 0.19815 -1.00000 - 12873 2017 8 21 17 20 12 116 4.8540 183.33236 623.31535 585.73249 -3.71899 0.07039 -1.77192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88604 0.19815 -1.00000 - 12874 2017 8 21 17 20 16 970 4.8540 183.33497 623.27671 585.70099 -3.74840 0.07039 -1.77864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88569 0.19815 -1.00000 - 12875 2017 8 21 17 20 21 824 4.8540 183.33758 623.23826 585.66941 -3.76418 0.07041 -1.78510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88533 0.19815 -1.00000 - 12876 2017 8 21 17 20 26 678 4.8541 183.34020 623.19941 585.63774 -3.78227 0.07045 -1.79100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88498 0.19815 -1.00000 - 12877 2017 8 21 17 20 31 532 4.8541 183.34282 623.16128 585.60601 -3.79940 0.07054 -1.79695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88463 0.19815 -1.00000 - 12878 2017 8 21 17 20 36 386 4.8542 183.34545 623.12340 585.57417 -3.81603 0.07066 -1.80331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88428 0.19815 -1.00000 - 12879 2017 8 21 17 20 41 240 4.8542 183.34807 623.08454 585.54220 -3.83166 0.07081 -1.80937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88392 0.19815 -1.00000 - 12880 2017 8 21 17 20 46 95 4.8542 183.35068 623.04511 585.51014 -3.84581 0.07095 -1.81520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88357 0.19815 -1.00000 - 12881 2017 8 21 17 20 50 949 4.8543 183.35329 623.00576 585.47804 -3.85867 0.07105 -1.82138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88322 0.19815 -1.00000 - 12882 2017 8 21 17 20 55 803 4.8543 183.35590 622.96620 585.44584 -3.87033 0.07111 -1.82652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88286 0.19815 -1.00000 - 12883 2017 8 21 17 21 0 658 4.8543 183.35851 622.92758 585.41348 -3.88135 0.07113 -1.83401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88251 0.19815 -1.00000 - 12884 2017 8 21 17 21 5 512 4.8544 183.36113 622.88911 585.38110 -3.90463 0.07113 -1.84008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88216 0.19815 -1.00000 - 12885 2017 8 21 17 21 10 366 4.8544 183.36377 622.84873 585.34860 -3.92334 0.07114 -1.84706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88180 0.19815 -1.00000 - 12886 2017 8 21 17 21 15 221 4.8545 183.36640 622.80887 585.31601 -3.92975 0.07119 -1.85382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88145 0.19815 -1.00000 - 12887 2017 8 21 17 21 20 75 4.8545 183.36904 622.76845 585.28335 -3.93919 0.07128 -1.85910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88110 0.19814 -1.00000 - 12888 2017 8 21 17 21 24 930 4.8545 183.37167 622.72934 585.25057 -3.94887 0.07141 -1.86684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88075 0.19814 -1.00000 - 12889 2017 8 21 17 21 29 784 4.8546 183.37428 622.68981 585.21778 -3.95916 0.07155 -1.87226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88039 0.19814 -1.00000 - 12890 2017 8 21 17 21 34 639 4.8546 183.37690 622.64956 585.18485 -3.96962 0.07169 -1.87909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88004 0.19814 -1.00000 - 12891 2017 8 21 17 21 39 494 4.8547 183.37952 622.60910 585.15186 -3.97978 0.07178 -1.88537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87969 0.19814 -1.00000 - 12892 2017 8 21 17 21 44 348 4.8547 183.38215 622.56737 585.11881 -3.98969 0.07183 -1.89113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87933 0.19814 -1.00000 - 12893 2017 8 21 17 21 49 203 4.8547 183.38478 622.52726 585.08572 -3.99927 0.07183 -1.89717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87898 0.19814 -1.00000 - 12894 2017 8 21 17 21 54 58 4.8548 183.38743 622.48671 585.05255 -4.00840 0.07182 -1.90198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87863 0.19814 -1.00000 - 12895 2017 8 21 17 21 58 913 4.8548 183.39008 622.44622 585.01932 -4.01700 0.07183 -1.90843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87827 0.19814 -1.00000 - 12896 2017 8 21 17 22 3 768 4.8549 183.39273 622.40577 584.98604 -4.02504 0.07190 -1.91318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87792 0.19814 -1.00000 - 12897 2017 8 21 17 22 8 622 4.8549 183.39536 622.36520 584.95271 -4.03257 0.07202 -1.91898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87757 0.19814 -1.00000 - 12898 2017 8 21 17 22 13 477 4.8549 183.39799 622.32415 584.91934 -4.03967 0.07217 -1.92578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87722 0.19814 -1.00000 - 12899 2017 8 21 17 22 18 332 4.8550 183.40062 622.28404 584.88596 -4.04685 0.07232 -1.93125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87686 0.19814 -1.00000 - 12900 2017 8 21 17 22 23 187 4.8550 183.40325 622.24298 584.85252 -4.06647 0.07243 -1.93776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87651 0.19814 -1.00000 - 12901 2017 8 21 17 22 28 42 4.8550 183.40588 622.20211 584.81902 -4.08258 0.07249 -1.94301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87616 0.19814 -1.00000 - 12902 2017 8 21 17 22 32 898 4.8551 183.40853 622.16089 584.78544 -4.08875 0.07250 -1.94917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87580 0.19814 -1.00000 - 12903 2017 8 21 17 22 37 753 4.8551 183.41119 622.11999 584.75189 -4.09666 0.07248 -1.95581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87545 0.19814 -1.00000 - 12904 2017 8 21 17 22 42 608 4.8552 183.41385 622.07989 584.71835 -4.10678 0.07248 -1.96185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87510 0.19814 -1.00000 - 12905 2017 8 21 17 22 47 463 4.8552 183.41651 622.03917 584.68477 -4.11810 0.07253 -1.96779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87474 0.19814 -1.00000 - 12906 2017 8 21 17 22 52 318 4.8552 183.41916 621.99807 584.65115 -4.13038 0.07263 -1.97338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87439 0.19814 -1.00000 - 12907 2017 8 21 17 22 57 174 4.8553 183.42180 621.95685 584.61755 -4.14338 0.07278 -1.97785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87404 0.19814 -1.00000 - 12908 2017 8 21 17 23 2 29 4.8553 183.42444 621.91501 584.58388 -4.15706 0.07293 -1.98280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87368 0.19814 -1.00000 - 12909 2017 8 21 17 23 6 884 4.8554 183.42708 621.87421 584.55016 -4.17126 0.07307 -1.98769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87333 0.19814 -1.00000 - 12910 2017 8 21 17 23 11 740 4.8554 183.42973 621.83322 584.51643 -4.18567 0.07316 -1.99170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87298 0.19814 -1.00000 - 12911 2017 8 21 17 23 16 595 4.8554 183.43239 621.79217 584.48264 -4.20003 0.07318 -1.99632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87263 0.19814 -1.00000 - 12912 2017 8 21 17 23 21 451 4.8555 183.43506 621.75129 584.44882 -4.21409 0.07316 -2.00041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87227 0.19814 -1.00000 - 12913 2017 8 21 17 23 26 306 4.8555 183.43773 621.71016 584.41497 -4.22755 0.07315 -2.00511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87192 0.19814 -1.00000 - 12914 2017 8 21 17 23 31 162 4.8556 183.44039 621.66993 584.38115 -4.24061 0.07317 -2.01028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87157 0.19814 -1.00000 - 12915 2017 8 21 17 23 36 17 4.8556 183.44305 621.62828 584.34732 -4.26493 0.07326 -2.01426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87121 0.19813 -1.00000 - 12916 2017 8 21 17 23 40 873 4.8556 183.44571 621.58793 584.31339 -4.28495 0.07339 -2.02030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87086 0.19813 -1.00000 - 12917 2017 8 21 17 23 45 729 4.8557 183.44837 621.54590 584.27946 -4.29156 0.07354 -2.02389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87051 0.19813 -1.00000 - 12918 2017 8 21 17 23 50 584 4.8557 183.45102 621.50447 584.24553 -4.30016 0.07369 -2.02823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87015 0.19813 -1.00000 - 12919 2017 8 21 17 23 55 440 4.8558 183.45368 621.46424 584.21157 -4.30854 0.07380 -2.03283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86980 0.19813 -1.00000 - 12920 2017 8 21 17 24 0 296 4.8558 183.45636 621.42302 584.17759 -4.31719 0.07385 -2.03550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86945 0.19813 -1.00000 - 12921 2017 8 21 17 24 5 152 4.8558 183.45903 621.38239 584.14353 -4.32598 0.07386 -2.04079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86909 0.19813 -1.00000 - 12922 2017 8 21 17 24 10 8 4.8559 183.46171 621.34029 584.10951 -4.33446 0.07385 -2.04374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86874 0.19813 -1.00000 - 12923 2017 8 21 17 24 14 864 4.8559 183.46439 621.29765 584.07542 -4.34287 0.07387 -2.04790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86839 0.19813 -1.00000 - 12924 2017 8 21 17 24 19 719 4.8560 183.46706 621.25643 584.04136 -4.35145 0.07393 -2.05092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86803 0.19813 -1.00000 - 12925 2017 8 21 17 24 24 575 4.8560 183.46973 621.21497 584.00728 -4.36026 0.07404 -2.05315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86768 0.19813 -1.00000 - 12926 2017 8 21 17 24 29 432 4.8560 183.47240 621.17355 583.97315 -4.36936 0.07419 -2.05685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86733 0.19813 -1.00000 - 12927 2017 8 21 17 24 34 288 4.8561 183.47507 621.13211 583.93903 -4.37874 0.07434 -2.05786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86698 0.19813 -1.00000 - 12928 2017 8 21 17 24 39 144 4.8561 183.47774 621.09038 583.90481 -4.38833 0.07446 -2.06102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86662 0.19813 -1.00000 - 12929 2017 8 21 17 24 44 0 4.8562 183.48042 621.04874 583.87064 -4.39804 0.07454 -2.06343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86627 0.19813 -1.00000 - 12930 2017 8 21 17 24 48 856 4.8562 183.48311 621.00706 583.83651 -4.40766 0.07457 -2.06540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86592 0.19813 -1.00000 - 12931 2017 8 21 17 24 53 712 4.8562 183.48579 620.96609 583.80236 -4.41684 0.07458 -2.06821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86556 0.19813 -1.00000 - 12932 2017 8 21 17 24 58 569 4.8563 183.48848 620.92432 583.76821 -4.42526 0.07460 -2.06959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86521 0.19813 -1.00000 - 12933 2017 8 21 17 25 3 425 4.8563 183.49116 620.88268 583.73405 -4.43371 0.07465 -2.07244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86486 0.19813 -1.00000 - 12934 2017 8 21 17 25 8 281 4.8564 183.49385 620.84191 583.69994 -4.44280 0.07474 -2.07369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86450 0.19813 -1.00000 - 12935 2017 8 21 17 25 13 138 4.8564 183.49653 620.80035 583.66581 -4.45241 0.07486 -2.07497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86415 0.19813 -1.00000 - 12936 2017 8 21 17 25 17 994 4.8564 183.49922 620.75915 583.63173 -4.47221 0.07500 -2.07688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86380 0.19813 -1.00000 - 12937 2017 8 21 17 25 22 851 4.8565 183.50190 620.71755 583.59764 -4.47765 0.07512 -2.07696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86344 0.19813 -1.00000 - 12938 2017 8 21 17 25 27 707 4.8565 183.50459 620.67577 583.56356 -4.48436 0.07521 -2.07741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86309 0.19813 -1.00000 - 12939 2017 8 21 17 25 32 564 4.8566 183.50728 620.63460 583.52946 -4.48981 0.07526 -2.07744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86274 0.19813 -1.00000 - 12940 2017 8 21 17 25 37 420 4.8566 183.50998 620.59388 583.49533 -4.49435 0.07528 -2.07776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86238 0.19813 -1.00000 - 12941 2017 8 21 17 25 42 277 4.8566 183.51267 620.55233 583.46122 -4.49848 0.07529 -2.07709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86203 0.19813 -1.00000 - 12942 2017 8 21 17 25 47 134 4.8567 183.51537 620.51006 583.42712 -4.51237 0.07532 -2.07702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86168 0.19813 -1.00000 - 12943 2017 8 21 17 25 51 990 4.8567 183.51807 620.46882 583.39302 -4.52186 0.07538 -2.07626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86132 0.19812 -1.00000 - 12944 2017 8 21 17 25 56 847 4.8568 183.52077 620.42736 583.35886 -4.51886 0.07548 -2.07464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86097 0.19812 -1.00000 - 12945 2017 8 21 17 26 1 704 4.8568 183.52347 620.38620 583.32473 -4.51653 0.07561 -2.07377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86062 0.19812 -1.00000 - 12946 2017 8 21 17 26 6 561 4.8569 183.52616 620.34555 583.29065 -4.51279 0.07573 -2.07207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86026 0.19812 -1.00000 - 12947 2017 8 21 17 26 11 418 4.8569 183.52886 620.30420 583.25651 -4.50829 0.07583 -2.07020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85991 0.19812 -1.00000 - 12948 2017 8 21 17 26 16 275 4.8569 183.53156 620.26184 583.22239 -4.50405 0.07590 -2.06824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85956 0.19812 -1.00000 - 12949 2017 8 21 17 26 21 132 4.8570 183.53427 620.22011 583.18834 -4.51005 0.07593 -2.06681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85921 0.19812 -1.00000 - 12950 2017 8 21 17 26 25 989 4.8570 183.53698 620.17882 583.15429 -4.50884 0.07594 -2.06355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85885 0.19812 -1.00000 - 12951 2017 8 21 17 26 30 846 4.8571 183.53969 620.13819 583.12018 -4.49458 0.07595 -2.06197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85850 0.19812 -1.00000 - 12952 2017 8 21 17 26 35 703 4.8571 183.54241 620.09685 583.08616 -4.48104 0.07599 -2.05934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85815 0.19812 -1.00000 - 12953 2017 8 21 17 26 40 560 4.8571 183.54512 620.05619 583.05211 -4.46678 0.07608 -2.05628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85779 0.19812 -1.00000 - 12954 2017 8 21 17 26 45 417 4.8572 183.54783 620.01407 583.01803 -4.45301 0.07620 -2.05395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85744 0.19812 -1.00000 - 12955 2017 8 21 17 26 50 274 4.8572 183.55053 619.97245 582.98394 -4.43959 0.07633 -2.04981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85709 0.19812 -1.00000 - 12956 2017 8 21 17 26 55 132 4.8573 183.55324 619.93042 582.94985 -4.42548 0.07646 -2.04656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85673 0.19812 -1.00000 - 12957 2017 8 21 17 26 59 989 4.8573 183.55595 619.88963 582.91579 -4.41028 0.07655 -2.04260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85638 0.19812 -1.00000 - 12958 2017 8 21 17 27 4 846 4.8574 183.55867 619.84808 582.88166 -4.39360 0.07660 -2.03890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85603 0.19812 -1.00000 - 12959 2017 8 21 17 27 9 704 4.8574 183.56140 619.80640 582.84762 -4.37556 0.07662 -2.03379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85567 0.19812 -1.00000 - 12960 2017 8 21 17 27 14 561 4.8574 183.56413 619.76483 582.81354 -4.35643 0.07663 -2.02890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85532 0.19812 -1.00000 - 12961 2017 8 21 17 27 19 419 4.8575 183.56686 619.72341 582.77954 -4.33640 0.07667 -2.02380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85497 0.19812 -1.00000 - 12962 2017 8 21 17 27 24 276 4.8575 183.56959 619.68214 582.74554 -4.31565 0.07675 -2.01847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85461 0.19812 -1.00000 - 12963 2017 8 21 17 27 29 134 4.8576 183.57231 619.64139 582.71152 -4.29422 0.07686 -2.01454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85426 0.19812 -1.00000 - 12964 2017 8 21 17 27 33 991 4.8576 183.57502 619.59882 582.67754 -4.27232 0.07701 -2.00897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85391 0.19812 -1.00000 - 12965 2017 8 21 17 27 38 849 4.8576 183.57773 619.55705 582.64357 -4.25047 0.07716 -2.00440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85355 0.19812 -1.00000 - 12966 2017 8 21 17 27 43 707 4.8577 183.58045 619.51610 582.60967 -4.22979 0.07728 -1.99878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85320 0.19812 -1.00000 - 12967 2017 8 21 17 27 48 564 4.8577 183.58318 619.47518 582.57574 -4.21061 0.07735 -1.99340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85285 0.19812 -1.00000 - 12968 2017 8 21 17 27 53 422 4.8578 183.58592 619.43440 582.54182 -4.20234 0.07738 -1.98931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85249 0.19812 -1.00000 - 12969 2017 8 21 17 27 58 280 4.8578 183.58867 619.39276 582.50793 -4.19208 0.07739 -1.98285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85214 0.19812 -1.00000 - 12970 2017 8 21 17 28 3 138 4.8579 183.59141 619.35041 582.47400 -4.17224 0.07741 -1.97839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85179 0.19812 -1.00000 - 12971 2017 8 21 17 28 7 996 4.8579 183.59416 619.30897 582.44019 -4.15507 0.07746 -1.97180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85143 0.19811 -1.00000 - 12972 2017 8 21 17 28 12 854 4.8579 183.59689 619.26827 582.40634 -4.13811 0.07756 -1.96577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85108 0.19811 -1.00000 - 12973 2017 8 21 17 28 17 712 4.8580 183.59962 619.22744 582.37257 -4.12149 0.07771 -1.96087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85073 0.19811 -1.00000 - 12974 2017 8 21 17 28 22 570 4.8580 183.60233 619.18624 582.33887 -4.10587 0.07787 -1.95424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85037 0.19811 -1.00000 - 12975 2017 8 21 17 28 27 428 4.8581 183.60506 619.14443 582.30516 -4.09081 0.07802 -1.94843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85002 0.19811 -1.00000 - 12976 2017 8 21 17 28 32 286 4.8581 183.60780 619.10359 582.27148 -4.07590 0.07812 -1.94173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84967 0.19811 -1.00000 - 12977 2017 8 21 17 28 37 144 4.8582 183.61054 619.06202 582.23782 -4.06096 0.07816 -1.93579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84931 0.19811 -1.00000 - 12978 2017 8 21 17 28 42 2 4.8582 183.61330 619.02104 582.20422 -4.04583 0.07815 -1.92940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84896 0.19811 -1.00000 - 12979 2017 8 21 17 28 46 860 4.8582 183.61606 618.98003 582.17065 -4.03048 0.07814 -1.92307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84861 0.19811 -1.00000 - 12980 2017 8 21 17 28 51 719 4.8583 183.61882 618.93922 582.13710 -4.01495 0.07817 -1.91742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84825 0.19811 -1.00000 - 12981 2017 8 21 17 28 56 577 4.8583 183.62157 618.89820 582.10356 -3.99931 0.07823 -1.91103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84790 0.19811 -1.00000 - 12982 2017 8 21 17 29 1 435 4.8584 183.62432 618.85733 582.07006 -3.98369 0.07837 -1.90458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84755 0.19811 -1.00000 - 12983 2017 8 21 17 29 6 294 4.8584 183.62705 618.81636 582.03661 -3.96813 0.07854 -1.89775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84719 0.19811 -1.00000 - 12984 2017 8 21 17 29 11 152 4.8585 183.62978 618.77657 582.00314 -3.95252 0.07871 -1.89260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84684 0.19811 -1.00000 - 12985 2017 8 21 17 29 16 11 4.8585 183.63252 618.73564 581.96976 -3.93678 0.07883 -1.88531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84649 0.19811 -1.00000 - 12986 2017 8 21 17 29 20 869 4.8585 183.63528 618.69443 581.93641 -3.92680 0.07889 -1.87954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84613 0.19811 -1.00000 - 12987 2017 8 21 17 29 25 728 4.8586 183.63805 618.65454 581.90315 -3.90838 0.07890 -1.87401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84578 0.19811 -1.00000 - 12988 2017 8 21 17 29 30 587 4.8586 183.64081 618.61393 581.86990 -3.89615 0.07888 -1.86788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84543 0.19811 -1.00000 - 12989 2017 8 21 17 29 35 445 4.8587 183.64357 618.57270 581.83669 -3.89413 0.07886 -1.86316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84507 0.19811 -1.00000 - 12990 2017 8 21 17 29 40 304 4.8587 183.64635 618.53288 581.80357 -3.88454 0.07889 -1.85712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84472 0.19811 -1.00000 - 12991 2017 8 21 17 29 45 163 4.8588 183.64912 618.49216 581.77045 -3.87164 0.07899 -1.85196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84437 0.19811 -1.00000 - 12992 2017 8 21 17 29 50 21 4.8588 183.65187 618.45162 581.73736 -3.85773 0.07915 -1.84624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84401 0.19811 -1.00000 - 12993 2017 8 21 17 29 54 880 4.8588 183.65461 618.41152 581.70431 -3.84367 0.07932 -1.84023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84366 0.19811 -1.00000 - 12994 2017 8 21 17 29 59 739 4.8589 183.65737 618.37125 581.67128 -3.83022 0.07946 -1.83483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84331 0.19811 -1.00000 - 12995 2017 8 21 17 30 4 598 4.8589 183.66014 618.33111 581.63823 -3.81753 0.07954 -1.82913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84295 0.19811 -1.00000 - 12996 2017 8 21 17 30 9 457 4.8590 183.66291 618.29048 581.60524 -3.80527 0.07958 -1.82313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84260 0.19811 -1.00000 - 12997 2017 8 21 17 30 14 316 4.8590 183.66567 618.25045 581.57228 -3.79342 0.07957 -1.81805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84225 0.19811 -1.00000 - 12998 2017 8 21 17 30 19 175 4.8591 183.66844 618.20996 581.53948 -3.79137 0.07956 -1.81263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84189 0.19811 -1.00000 - 12999 2017 8 21 17 30 24 34 4.8591 183.67123 618.16976 581.50669 -3.78632 0.07958 -1.80701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84154 0.19810 -1.00000 - 13000 2017 8 21 17 30 28 893 4.8591 183.67402 618.13048 581.47389 -3.77095 0.07966 -1.80243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84119 0.19810 -1.00000 - 13001 2017 8 21 17 30 33 753 4.8592 183.67679 618.09108 581.44115 -3.75756 0.07979 -1.79671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84083 0.19810 -1.00000 - 13002 2017 8 21 17 30 38 612 4.8592 183.67956 618.05097 581.40844 -3.74469 0.07995 -1.79128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84048 0.19810 -1.00000 - 13003 2017 8 21 17 30 43 471 4.8593 183.68234 618.01043 581.37576 -3.73246 0.08010 -1.78590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84013 0.19810 -1.00000 - 13004 2017 8 21 17 30 48 330 4.8593 183.68512 617.97119 581.34304 -3.72027 0.08021 -1.77996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83977 0.19810 -1.00000 - 13005 2017 8 21 17 30 53 190 4.8594 183.68790 617.93055 581.31034 -3.70803 0.08028 -1.77541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83942 0.19810 -1.00000 - 13006 2017 8 21 17 30 58 49 4.8594 183.69067 617.89081 581.27771 -3.69569 0.08029 -1.76978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83907 0.19810 -1.00000 - 13007 2017 8 21 17 31 2 909 4.8594 183.69345 617.85104 581.24505 -3.68350 0.08030 -1.76516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83871 0.19810 -1.00000 - 13008 2017 8 21 17 31 7 768 4.8595 183.69624 617.81047 581.21245 -3.68160 0.08033 -1.76127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83836 0.19810 -1.00000 - 13009 2017 8 21 17 31 12 628 4.8595 183.69903 617.77171 581.17995 -3.67683 0.08040 -1.75670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83801 0.19810 -1.00000 - 13010 2017 8 21 17 31 17 487 4.8596 183.70183 617.73106 581.14755 -3.66184 0.08051 -1.75303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83765 0.19810 -1.00000 - 13011 2017 8 21 17 31 22 347 4.8596 183.70463 617.69203 581.11519 -3.64922 0.08065 -1.74996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83730 0.19810 -1.00000 - 13012 2017 8 21 17 31 27 207 4.8597 183.70743 617.65323 581.08292 -3.63759 0.08080 -1.74554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83695 0.19810 -1.00000 - 13013 2017 8 21 17 31 32 66 4.8597 183.71022 617.61263 581.05071 -3.62761 0.08092 -1.74232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83659 0.19810 -1.00000 - 13014 2017 8 21 17 31 36 926 4.8598 183.71300 617.57305 581.01862 -3.63000 0.08101 -1.73867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83624 0.19810 -1.00000 - 13015 2017 8 21 17 31 41 786 4.8598 183.71578 617.53373 580.98653 -3.61868 0.08107 -1.73484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83589 0.19810 -1.00000 - 13016 2017 8 21 17 31 46 646 4.8598 183.71857 617.49510 580.95450 -3.61057 0.08110 -1.73239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83553 0.19810 -1.00000 - 13017 2017 8 21 17 31 51 506 4.8599 183.72136 617.45661 580.92257 -3.60274 0.08113 -1.72833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83518 0.19810 -1.00000 - 13018 2017 8 21 17 31 56 365 4.8599 183.72417 617.41631 580.89068 -3.59590 0.08117 -1.72533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83483 0.19810 -1.00000 - 13019 2017 8 21 17 32 1 225 4.8600 183.72698 617.37782 580.85887 -3.58971 0.08124 -1.72208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83447 0.19810 -1.00000 - 13020 2017 8 21 17 32 6 85 4.8600 183.72979 617.33824 580.82715 -3.58349 0.08136 -1.71822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83412 0.19810 -1.00000 - 13021 2017 8 21 17 32 10 945 4.8601 183.73260 617.30001 580.79550 -3.57931 0.08149 -1.71653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83377 0.19810 -1.00000 - 13022 2017 8 21 17 32 15 806 4.8601 183.73542 617.26203 580.76398 -3.57589 0.08162 -1.71328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83341 0.19810 -1.00000 - 13023 2017 8 21 17 32 20 666 4.8601 183.73822 617.22342 580.73254 -3.57358 0.08172 -1.71047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83306 0.19810 -1.00000 - 13024 2017 8 21 17 32 25 526 4.8602 183.74101 617.18440 580.70124 -3.58148 0.08178 -1.70725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83271 0.19810 -1.00000 - 13025 2017 8 21 17 32 30 386 4.8602 183.74380 617.14685 580.66998 -3.58669 0.08182 -1.70382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83235 0.19810 -1.00000 - 13026 2017 8 21 17 32 35 246 4.8603 183.74660 617.10856 580.63879 -3.58186 0.08186 -1.70123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83200 0.19810 -1.00000 - 13027 2017 8 21 17 32 40 107 4.8603 183.74941 617.07012 580.60762 -3.57855 0.08189 -1.69772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83165 0.19809 -1.00000 - 13028 2017 8 21 17 32 44 967 4.8604 183.75224 617.03256 580.57653 -3.57478 0.08193 -1.69504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83129 0.19809 -1.00000 - 13029 2017 8 21 17 32 49 828 4.8604 183.75507 616.99462 580.54550 -3.57131 0.08201 -1.69250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83094 0.19809 -1.00000 - 13030 2017 8 21 17 32 54 688 4.8605 183.75790 616.95624 580.51457 -3.56826 0.08213 -1.69033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83058 0.19809 -1.00000 - 13031 2017 8 21 17 32 59 549 4.8605 183.76073 616.91929 580.48378 -3.56517 0.08225 -1.68808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83023 0.19809 -1.00000 - 13032 2017 8 21 17 33 4 409 4.8605 183.76355 616.88131 580.45301 -3.57125 0.08236 -1.68645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82988 0.19809 -1.00000 - 13033 2017 8 21 17 33 9 270 4.8606 183.76636 616.84393 580.42238 -3.57413 0.08243 -1.68362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82952 0.19809 -1.00000 - 13034 2017 8 21 17 33 14 130 4.8606 183.76916 616.80605 580.39183 -3.56674 0.08248 -1.68101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82917 0.19809 -1.00000 - 13035 2017 8 21 17 33 18 991 4.8607 183.77197 616.76957 580.36142 -3.56099 0.08252 -1.67980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82882 0.19809 -1.00000 - 13036 2017 8 21 17 33 23 852 4.8607 183.77479 616.73308 580.33113 -3.55498 0.08256 -1.67803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82846 0.19809 -1.00000 - 13037 2017 8 21 17 33 28 713 4.8608 183.77763 616.69586 580.30092 -3.54941 0.08259 -1.67669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82811 0.19809 -1.00000 - 13038 2017 8 21 17 33 33 573 4.8608 183.78047 616.65940 580.27083 -3.54427 0.08265 -1.67403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82776 0.19809 -1.00000 - 13039 2017 8 21 17 33 38 434 4.8609 183.78331 616.62171 580.24079 -3.53918 0.08275 -1.67175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82740 0.19809 -1.00000 - 13040 2017 8 21 17 33 43 295 4.8609 183.78615 616.58473 580.21081 -3.53434 0.08287 -1.66980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82705 0.19809 -1.00000 - 13041 2017 8 21 17 33 48 156 4.8610 183.78900 616.54823 580.18094 -3.52983 0.08301 -1.66692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82670 0.19809 -1.00000 - 13042 2017 8 21 17 33 53 17 4.8610 183.79183 616.51189 580.15113 -3.52563 0.08311 -1.66535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82634 0.19809 -1.00000 - 13043 2017 8 21 17 33 57 878 4.8610 183.79465 616.47571 580.12138 -3.52167 0.08318 -1.66361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82599 0.19809 -1.00000 - 13044 2017 8 21 17 34 2 739 4.8611 183.79747 616.43961 580.09172 -3.51785 0.08323 -1.66015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82564 0.19809 -1.00000 - 13045 2017 8 21 17 34 7 600 4.8611 183.80029 616.40351 580.06217 -3.51411 0.08326 -1.65710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82528 0.19809 -1.00000 - 13046 2017 8 21 17 34 12 461 4.8612 183.80313 616.36765 580.03269 -3.51037 0.08329 -1.65441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82493 0.19809 -1.00000 - 13047 2017 8 21 17 34 17 323 4.8612 183.80599 616.33178 580.00333 -3.50658 0.08333 -1.65090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82458 0.19809 -1.00000 - 13048 2017 8 21 17 34 22 184 4.8613 183.80885 616.29595 579.97403 -3.50269 0.08341 -1.64843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82422 0.19809 -1.00000 - 13049 2017 8 21 17 34 27 45 4.8613 183.81170 616.26021 579.94483 -3.49873 0.08353 -1.64477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82387 0.19809 -1.00000 - 13050 2017 8 21 17 34 31 907 4.8614 183.81456 616.22449 579.91566 -3.49471 0.08367 -1.64137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82352 0.19809 -1.00000 - 13051 2017 8 21 17 34 36 768 4.8614 183.81741 616.18892 579.88653 -3.49067 0.08381 -1.63924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82316 0.19809 -1.00000 - 13052 2017 8 21 17 34 41 629 4.8614 183.82025 616.15334 579.85750 -3.48668 0.08391 -1.63571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82281 0.19809 -1.00000 - 13053 2017 8 21 17 34 46 491 4.8615 183.82308 616.11784 579.82856 -3.48279 0.08398 -1.63407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82245 0.19809 -1.00000 - 13054 2017 8 21 17 34 51 352 4.8615 183.82592 616.08260 579.79974 -3.47905 0.08403 -1.63204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82210 0.19808 -1.00000 - 13055 2017 8 21 17 34 56 214 4.8616 183.82877 616.04685 579.77103 -3.47550 0.08406 -1.62987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82175 0.19808 -1.00000 - 13056 2017 8 21 17 35 1 76 4.8616 183.83163 616.01202 579.74239 -3.47218 0.08409 -1.62811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82139 0.19808 -1.00000 - 13057 2017 8 21 17 35 5 937 4.8617 183.83450 615.97730 579.71394 -3.46904 0.08414 -1.62564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82104 0.19808 -1.00000 - 13058 2017 8 21 17 35 10 799 4.8617 183.83737 615.94346 579.68562 -3.46616 0.08424 -1.62408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82069 0.19808 -1.00000 - 13059 2017 8 21 17 35 15 661 4.8618 183.84024 615.90909 579.65743 -3.46562 0.08435 -1.62264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82033 0.19808 -1.00000 - 13060 2017 8 21 17 35 20 523 4.8618 183.84311 615.87401 579.62939 -3.47298 0.08449 -1.61983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81998 0.19808 -1.00000 - 13061 2017 8 21 17 35 25 384 4.8619 183.84597 615.84002 579.60142 -3.47989 0.08462 -1.61728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81963 0.19808 -1.00000 - 13062 2017 8 21 17 35 30 246 4.8619 183.84882 615.80630 579.57352 -3.47698 0.08472 -1.61524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81927 0.19808 -1.00000 - 13063 2017 8 21 17 35 35 108 4.8619 183.85167 615.77308 579.54573 -3.47570 0.08479 -1.61225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81892 0.19808 -1.00000 - 13064 2017 8 21 17 35 39 970 4.8620 183.85452 615.73935 579.51803 -3.47398 0.08484 -1.61032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81857 0.19808 -1.00000 - 13065 2017 8 21 17 35 44 832 4.8620 183.85739 615.70584 579.49044 -3.47273 0.08486 -1.60692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81821 0.19808 -1.00000 - 13066 2017 8 21 17 35 49 694 4.8621 183.86027 615.67158 579.46290 -3.47216 0.08493 -1.60437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81786 0.19808 -1.00000 - 13067 2017 8 21 17 35 54 557 4.8621 183.86315 615.63859 579.43544 -3.47173 0.08501 -1.60185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81750 0.19808 -1.00000 - 13068 2017 8 21 17 35 59 419 4.8622 183.86604 615.60550 579.40809 -3.47135 0.08508 -1.59792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81715 0.19808 -1.00000 - 13069 2017 8 21 17 36 4 281 4.8622 183.86893 615.57184 579.38075 -3.47085 0.08516 -1.59421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81680 0.19808 -1.00000 - 13070 2017 8 21 17 36 9 143 4.8623 183.87181 615.53886 579.35349 -3.47005 0.08526 -1.59068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81644 0.19808 -1.00000 - 13071 2017 8 21 17 36 14 5 4.8623 183.87468 615.50599 579.32630 -3.46881 0.08536 -1.58742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81609 0.19808 -1.00000 - 13072 2017 8 21 17 36 18 868 4.8623 183.87754 615.47319 579.29924 -3.46703 0.08545 -1.58243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81574 0.19808 -1.00000 - 13073 2017 8 21 17 36 23 730 4.8624 183.88041 615.44050 579.27226 -3.46466 0.08551 -1.57798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81538 0.19808 -1.00000 - 13074 2017 8 21 17 36 28 593 4.8624 183.88328 615.40793 579.24536 -3.46167 0.08555 -1.57374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81503 0.19808 -1.00000 - 13075 2017 8 21 17 36 33 455 4.8625 183.88616 615.37538 579.21849 -3.45805 0.08563 -1.56900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81468 0.19808 -1.00000 - 13076 2017 8 21 17 36 38 318 4.8625 183.88905 615.34277 579.19164 -3.45380 0.08573 -1.56319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81432 0.19808 -1.00000 - 13077 2017 8 21 17 36 43 180 4.8626 183.89195 615.31012 579.16480 -3.44892 0.08581 -1.55726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81397 0.19808 -1.00000 - 13078 2017 8 21 17 36 48 43 4.8626 183.89486 615.27753 579.13798 -3.44341 0.08589 -1.55120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81361 0.19808 -1.00000 - 13079 2017 8 21 17 36 52 906 4.8627 183.89776 615.24491 579.11117 -3.43728 0.08596 -1.54421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81326 0.19808 -1.00000 - 13080 2017 8 21 17 36 57 768 4.8627 183.90065 615.21231 579.08432 -3.43052 0.08602 -1.53848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81291 0.19808 -1.00000 - 13081 2017 8 21 17 37 2 631 4.8628 183.90353 615.17963 579.05744 -3.42312 0.08609 -1.53126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81255 0.19808 -1.00000 - 13082 2017 8 21 17 37 7 494 4.8628 183.90641 615.14686 579.03064 -3.41506 0.08616 -1.52455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81220 0.19807 -1.00000 - 13083 2017 8 21 17 37 12 357 4.8629 183.90930 615.11430 579.00385 -3.40633 0.08623 -1.51784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81185 0.19807 -1.00000 - 13084 2017 8 21 17 37 17 220 4.8629 183.91219 615.08170 578.97713 -3.39689 0.08631 -1.51014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81149 0.19807 -1.00000 - 13085 2017 8 21 17 37 22 83 4.8629 183.91509 615.04904 578.95042 -3.38668 0.08640 -1.50371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81114 0.19807 -1.00000 - 13086 2017 8 21 17 37 26 946 4.8630 183.91799 615.01639 578.92375 -3.37568 0.08650 -1.49756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81079 0.19807 -1.00000 - 13087 2017 8 21 17 37 31 809 4.8630 183.92091 614.98347 578.89711 -3.36383 0.08658 -1.49022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81043 0.19807 -1.00000 - 13088 2017 8 21 17 37 36 672 4.8631 183.92382 614.95096 578.87049 -3.35111 0.08665 -1.48357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81008 0.19807 -1.00000 - 13089 2017 8 21 17 37 41 535 4.8631 183.92672 614.91836 578.84389 -3.33747 0.08672 -1.47765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80972 0.19807 -1.00000 - 13090 2017 8 21 17 37 46 398 4.8632 183.92962 614.88594 578.81734 -3.32311 0.08681 -1.47004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80937 0.19807 -1.00000 - 13091 2017 8 21 17 37 51 261 4.8632 183.93252 614.85315 578.79080 -3.31870 0.08689 -1.46428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80902 0.19807 -1.00000 - 13092 2017 8 21 17 37 56 124 4.8633 183.93542 614.82059 578.76432 -3.31120 0.08697 -1.45731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80866 0.19807 -1.00000 - 13093 2017 8 21 17 38 0 988 4.8633 183.93832 614.78736 578.73785 -3.29370 0.08704 -1.45081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80831 0.19807 -1.00000 - 13094 2017 8 21 17 38 5 851 4.8634 183.94124 614.75500 578.71153 -3.27712 0.08711 -1.44486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80796 0.19807 -1.00000 - 13095 2017 8 21 17 38 10 715 4.8634 183.94416 614.72281 578.68531 -3.25913 0.08717 -1.43730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80760 0.19807 -1.00000 - 13096 2017 8 21 17 38 15 578 4.8635 183.94708 614.69128 578.65914 -3.23985 0.08727 -1.43136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80725 0.19807 -1.00000 - 13097 2017 8 21 17 38 20 442 4.8635 183.95000 614.65883 578.63301 -3.22047 0.08753 -1.42496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80690 0.19807 -1.00000 - 13098 2017 8 21 17 38 25 305 4.8635 183.95292 614.62597 578.60698 -3.20139 0.08775 -1.41768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80654 0.19807 -1.00000 - 13099 2017 8 21 17 38 30 169 4.8636 183.95583 614.59340 578.58103 -3.18258 0.08796 -1.41064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80619 0.19807 -1.00000 - 13100 2017 8 21 17 38 35 32 4.8636 183.95874 614.56214 578.55516 -3.16357 0.08815 -1.40415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80583 0.19807 -1.00000 - 13101 2017 8 21 17 38 39 896 4.8637 183.96165 614.53009 578.52932 -3.14353 0.08835 -1.39674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80548 0.19807 -1.00000 - 13102 2017 8 21 17 38 44 760 4.8637 183.96458 614.49819 578.50354 -3.12249 0.08857 -1.38990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80513 0.19807 -1.00000 - 13103 2017 8 21 17 38 49 624 4.8638 183.96750 614.46621 578.47783 -3.10078 0.08882 -1.38253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80477 0.19807 -1.00000 - 13104 2017 8 21 17 38 54 487 4.8638 183.97043 614.43391 578.45215 -3.07969 0.08912 -1.37559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80442 0.19807 -1.00000 - 13105 2017 8 21 17 38 59 351 4.8639 183.97336 614.40150 578.42654 -3.05948 0.08944 -1.36839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80407 0.19807 -1.00000 - 13106 2017 8 21 17 39 4 215 4.8639 183.97629 614.37073 578.40102 -3.03970 0.08977 -1.36045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80371 0.19807 -1.00000 - 13107 2017 8 21 17 39 9 79 4.8640 183.97922 614.33830 578.37564 -3.02931 0.09008 -1.35294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80336 0.19807 -1.00000 - 13108 2017 8 21 17 39 13 943 4.8640 183.98215 614.30651 578.35024 -3.01608 0.09035 -1.34639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80300 0.19807 -1.00000 - 13109 2017 8 21 17 39 18 807 4.8641 183.98508 614.27507 578.32501 -2.99302 0.09057 -1.33807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80265 0.19807 -1.00000 - 13110 2017 8 21 17 39 23 671 4.8641 183.98801 614.24385 578.29987 -2.97202 0.09074 -1.32957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80230 0.19806 -1.00000 - 13111 2017 8 21 17 39 28 535 4.8642 183.99094 614.21317 578.27476 -2.95121 0.09086 -1.32268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80194 0.19806 -1.00000 - 13112 2017 8 21 17 39 33 400 4.8642 183.99388 614.18155 578.24975 -2.93157 0.09097 -1.31462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80159 0.19806 -1.00000 - 13113 2017 8 21 17 39 38 264 4.8642 183.99682 614.15059 578.22479 -2.91325 0.09112 -1.30666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80124 0.19806 -1.00000 - 13114 2017 8 21 17 39 43 128 4.8643 183.99976 614.11931 578.19992 -2.89555 0.09134 -1.29823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80088 0.19806 -1.00000 - 13115 2017 8 21 17 39 47 993 4.8643 184.00271 614.08807 578.17508 -2.87827 0.09166 -1.29043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80053 0.19806 -1.00000 - 13116 2017 8 21 17 39 52 857 4.8644 184.00565 614.05697 578.15027 -2.86122 0.09208 -1.28155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80017 0.19806 -1.00000 - 13117 2017 8 21 17 39 57 721 4.8644 184.00859 614.02580 578.12552 -2.84418 0.09255 -1.27350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79982 0.19806 -1.00000 - 13118 2017 8 21 17 40 2 586 4.8645 184.01153 613.99496 578.10087 -2.82696 0.09299 -1.26616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79947 0.19806 -1.00000 - 13119 2017 8 21 17 40 7 450 4.8645 184.01448 613.96518 578.07634 -2.80939 0.09334 -1.25776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79911 0.19806 -1.00000 - 13120 2017 8 21 17 40 12 315 4.8646 184.01742 613.93360 578.05186 -2.79129 0.09356 -1.25087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79876 0.19806 -1.00000 - 13121 2017 8 21 17 40 17 180 4.8646 184.02037 613.90312 578.02749 -2.77253 0.09366 -1.24345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79841 0.19806 -1.00000 - 13122 2017 8 21 17 40 22 44 4.8647 184.02332 613.87247 578.00323 -2.75324 0.09372 -1.23515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79805 0.19806 -1.00000 - 13123 2017 8 21 17 40 26 909 4.8647 184.02628 613.84205 577.97905 -2.74370 0.09408 -1.22815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79770 0.19806 -1.00000 - 13124 2017 8 21 17 40 31 774 4.8648 184.02923 613.81187 577.95502 -2.73058 0.09484 -1.22071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79734 0.19806 -1.00000 - 13125 2017 8 21 17 40 36 638 4.8648 184.03219 613.78177 577.93104 -2.70657 0.09542 -1.21323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79699 0.19806 -1.00000 - 13126 2017 8 21 17 40 41 503 4.8649 184.03515 613.75230 577.90715 -2.68368 0.09580 -1.20559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79664 0.19806 -1.00000 - 13127 2017 8 21 17 40 46 368 4.8649 184.03811 613.72253 577.88336 -2.65983 0.09607 -1.19758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79628 0.19806 -1.00000 - 13128 2017 8 21 17 40 51 233 4.8650 184.04107 613.69296 577.85962 -2.63626 0.09634 -1.18948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79593 0.19806 -1.00000 - 13129 2017 8 21 17 40 56 98 4.8650 184.04402 613.66277 577.83589 -2.61372 0.09671 -1.18178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79558 0.19806 -1.00000 - 13130 2017 8 21 17 41 0 963 4.8650 184.04698 613.63345 577.81219 -2.59097 0.09724 -1.17489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79522 0.19806 -1.00000 - 13131 2017 8 21 17 41 5 828 4.8651 184.04994 613.60384 577.78863 -2.56743 0.09788 -1.16717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79487 0.19806 -1.00000 - 13132 2017 8 21 17 41 10 693 4.8651 184.05290 613.57516 577.76516 -2.54282 0.09853 -1.16109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79451 0.19806 -1.00000 - 13133 2017 8 21 17 41 15 559 4.8652 184.05587 613.54592 577.74187 -2.51691 0.09909 -1.15337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79416 0.19806 -1.00000 - 13134 2017 8 21 17 41 20 424 4.8652 184.05885 613.51599 577.71867 -2.48999 0.09948 -1.14642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79381 0.19806 -1.00000 - 13135 2017 8 21 17 41 25 289 4.8653 184.06182 613.48677 577.69558 -2.46255 0.09976 -1.14061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79345 0.19806 -1.00000 - 13136 2017 8 21 17 41 30 154 4.8653 184.06479 613.45795 577.67259 -2.43501 0.09997 -1.13279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79310 0.19806 -1.00000 - 13137 2017 8 21 17 41 35 20 4.8654 184.06776 613.42949 577.64965 -2.40775 0.10020 -1.12658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79275 0.19806 -1.00000 - 13138 2017 8 21 17 41 39 885 4.8654 184.07074 613.40076 577.62677 -2.38116 0.10050 -1.12045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79239 0.19805 -1.00000 - 13139 2017 8 21 17 41 44 751 4.8655 184.07371 613.37200 577.60398 -2.35877 0.10089 -1.11315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79204 0.19805 -1.00000 - 13140 2017 8 21 17 41 49 616 4.8655 184.07668 613.34288 577.58125 -2.33850 0.10139 -1.10677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79168 0.19805 -1.00000 - 13141 2017 8 21 17 41 54 482 4.8656 184.07965 613.31448 577.55863 -2.31979 0.10195 -1.10013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79133 0.19805 -1.00000 - 13142 2017 8 21 17 41 59 347 4.8656 184.08263 613.28604 577.53601 -2.30518 0.10254 -1.09341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79098 0.19805 -1.00000 - 13143 2017 8 21 17 42 4 213 4.8657 184.08561 613.25757 577.51344 -2.29133 0.10310 -1.08735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79062 0.19805 -1.00000 - 13144 2017 8 21 17 42 9 79 4.8657 184.08859 613.22926 577.49100 -2.27804 0.10357 -1.08022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79027 0.19805 -1.00000 - 13145 2017 8 21 17 42 13 945 4.8658 184.09157 613.20096 577.46858 -2.26543 0.10395 -1.07362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78991 0.19805 -1.00000 - 13146 2017 8 21 17 42 18 810 4.8658 184.09454 613.17279 577.44630 -2.25364 0.10424 -1.06773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78956 0.19805 -1.00000 - 13147 2017 8 21 17 42 23 676 4.8658 184.09752 613.14479 577.42413 -2.24276 0.10447 -1.06084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78921 0.19805 -1.00000 - 13148 2017 8 21 17 42 28 542 4.8659 184.10049 613.11690 577.40198 -2.23292 0.10469 -1.05494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78885 0.19805 -1.00000 - 13149 2017 8 21 17 42 33 408 4.8659 184.10347 613.08895 577.37988 -2.22414 0.10496 -1.04891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78850 0.19805 -1.00000 - 13150 2017 8 21 17 42 38 274 4.8660 184.10646 613.06106 577.35790 -2.21691 0.10531 -1.04236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78815 0.19805 -1.00000 - 13151 2017 8 21 17 42 43 140 4.8660 184.10945 613.03332 577.33595 -2.21204 0.10574 -1.03647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78779 0.19805 -1.00000 - 13152 2017 8 21 17 42 48 6 4.8661 184.11245 613.00570 577.31411 -2.20836 0.10625 -1.03133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78744 0.19805 -1.00000 - 13153 2017 8 21 17 42 52 872 4.8661 184.11544 612.97826 577.29235 -2.20579 0.10677 -1.02500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78708 0.19805 -1.00000 - 13154 2017 8 21 17 42 57 738 4.8662 184.11843 612.95082 577.27061 -2.20422 0.10726 -1.02079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78673 0.19805 -1.00000 - 13155 2017 8 21 17 43 2 605 4.8662 184.12141 612.92349 577.24899 -2.20348 0.10767 -1.01661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78638 0.19805 -1.00000 - 13156 2017 8 21 17 43 7 471 4.8663 184.12440 612.89636 577.22757 -2.20337 0.10798 -1.01188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78602 0.19805 -1.00000 - 13157 2017 8 21 17 43 12 337 4.8663 184.12740 612.86864 577.20623 -2.20365 0.10822 -1.00910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78567 0.19805 -1.00000 - 13158 2017 8 21 17 43 17 204 4.8664 184.13041 612.84257 577.18512 -2.20408 0.10842 -1.00552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78531 0.19805 -1.00000 - 13159 2017 8 21 17 43 22 70 4.8664 184.13341 612.81611 577.16414 -2.20442 0.10866 -1.00148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78496 0.19805 -1.00000 - 13160 2017 8 21 17 43 26 936 4.8665 184.13642 612.79028 577.14322 -2.20461 0.10898 -0.99994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78461 0.19805 -1.00000 - 13161 2017 8 21 17 43 31 803 4.8665 184.13941 612.76410 577.12253 -2.20515 0.10940 -0.99620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78425 0.19805 -1.00000 - 13162 2017 8 21 17 43 36 670 4.8666 184.14241 612.73810 577.10195 -2.21875 0.10993 -0.99245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78390 0.19805 -1.00000 - 13163 2017 8 21 17 43 41 536 4.8666 184.14541 612.71188 577.08142 -2.22847 0.11051 -0.99071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78354 0.19805 -1.00000 - 13164 2017 8 21 17 43 46 403 4.8667 184.14841 612.68587 577.06103 -2.22411 0.11108 -0.98741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78319 0.19805 -1.00000 - 13165 2017 8 21 17 43 51 270 4.8667 184.15142 612.66036 577.04076 -2.22261 0.11158 -0.98338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78284 0.19805 -1.00000 - 13166 2017 8 21 17 43 56 136 4.8667 184.15443 612.63556 577.02057 -2.22248 0.11200 -0.98073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78248 0.19804 -1.00000 - 13167 2017 8 21 17 44 1 3 4.8668 184.15744 612.61040 577.00051 -2.22739 0.11233 -0.97720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78213 0.19804 -1.00000 - 13168 2017 8 21 17 44 5 870 4.8668 184.16045 612.58531 576.98061 -2.23122 0.11264 -0.97254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78178 0.19804 -1.00000 - 13169 2017 8 21 17 44 10 737 4.8669 184.16346 612.55976 576.96078 -2.23358 0.11297 -0.96967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78142 0.19804 -1.00000 - 13170 2017 8 21 17 44 15 604 4.8669 184.16646 612.53492 576.94107 -2.23429 0.11339 -0.96637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78107 0.19804 -1.00000 - 13171 2017 8 21 17 44 20 471 4.8670 184.16947 612.51009 576.92152 -2.23335 0.11388 -0.96213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78071 0.19804 -1.00000 - 13172 2017 8 21 17 44 25 338 4.8670 184.17249 612.48599 576.90202 -2.23097 0.11442 -0.95858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78036 0.19804 -1.00000 - 13173 2017 8 21 17 44 30 205 4.8671 184.17551 612.46250 576.88262 -2.22738 0.11497 -0.95574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78001 0.19804 -1.00000 - 13174 2017 8 21 17 44 35 72 4.8671 184.17853 612.43815 576.86337 -2.22278 0.11547 -0.95103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77965 0.19804 -1.00000 - 13175 2017 8 21 17 44 39 939 4.8672 184.18155 612.41282 576.84416 -2.21748 0.11590 -0.94855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77930 0.19804 -1.00000 - 13176 2017 8 21 17 44 44 806 4.8672 184.18457 612.38869 576.82510 -2.21212 0.11629 -0.94674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77894 0.19804 -1.00000 - 13177 2017 8 21 17 44 49 674 4.8673 184.18758 612.36490 576.80614 -2.20759 0.11667 -0.94265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77859 0.19804 -1.00000 - 13178 2017 8 21 17 44 54 541 4.8673 184.19059 612.34102 576.78722 -2.21376 0.11709 -0.94070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77824 0.19804 -1.00000 - 13179 2017 8 21 17 44 59 408 4.8674 184.19361 612.31825 576.76848 -2.21723 0.11758 -0.93849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77788 0.19804 -1.00000 - 13180 2017 8 21 17 45 4 276 4.8674 184.19664 612.29496 576.74988 -2.21012 0.11816 -0.93476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77753 0.19804 -1.00000 - 13181 2017 8 21 17 45 9 143 4.8675 184.19968 612.27079 576.73135 -2.20487 0.11881 -0.93329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77717 0.19804 -1.00000 - 13182 2017 8 21 17 45 14 11 4.8675 184.20271 612.24846 576.71298 -2.19915 0.11950 -0.93046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77682 0.19804 -1.00000 - 13183 2017 8 21 17 45 18 878 4.8676 184.20573 612.22549 576.69475 -2.19384 0.12026 -0.92628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77647 0.19804 -1.00000 - 13184 2017 8 21 17 45 23 746 4.8676 184.20876 612.20231 576.67657 -2.18918 0.12108 -0.92481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77611 0.19804 -1.00000 - 13185 2017 8 21 17 45 28 614 4.8677 184.21178 612.18041 576.65856 -2.18495 0.12194 -0.92155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77576 0.19804 -1.00000 - 13186 2017 8 21 17 45 33 481 4.8677 184.21481 612.15777 576.64061 -2.18039 0.12281 -0.91739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77540 0.19804 -1.00000 - 13187 2017 8 21 17 45 38 349 4.8678 184.21784 612.13427 576.62272 -2.17557 0.12364 -0.91516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77505 0.19804 -1.00000 - 13188 2017 8 21 17 45 43 217 4.8678 184.22088 612.11173 576.60494 -2.17029 0.12439 -0.91185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77470 0.19804 -1.00000 - 13189 2017 8 21 17 45 48 85 4.8679 184.22392 612.08923 576.58724 -2.16468 0.12504 -0.90758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77434 0.19804 -1.00000 - 13190 2017 8 21 17 45 52 953 4.8679 184.22696 612.06717 576.56967 -2.15899 0.12560 -0.90411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77399 0.19804 -1.00000 - 13191 2017 8 21 17 45 57 821 4.8679 184.22999 612.04521 576.55220 -2.15339 0.12609 -0.90053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77363 0.19804 -1.00000 - 13192 2017 8 21 17 46 2 689 4.8680 184.23302 612.02319 576.53479 -2.14794 0.12657 -0.89583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77328 0.19804 -1.00000 - 13193 2017 8 21 17 46 7 557 4.8680 184.23606 612.00117 576.51748 -2.14270 0.12708 -0.89103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77293 0.19804 -1.00000 - 13194 2017 8 21 17 46 12 425 4.8681 184.23910 611.97932 576.50025 -2.13766 0.12765 -0.88643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77257 0.19803 -1.00000 - 13195 2017 8 21 17 46 17 293 4.8681 184.24215 611.95753 576.48314 -2.13278 0.12830 -0.88083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77222 0.19803 -1.00000 - 13196 2017 8 21 17 46 22 161 4.8682 184.24520 611.93561 576.46604 -2.12796 0.12900 -0.87561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77186 0.19803 -1.00000 - 13197 2017 8 21 17 46 27 29 4.8682 184.24825 611.91480 576.44903 -2.12313 0.12971 -0.87111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77151 0.19803 -1.00000 - 13198 2017 8 21 17 46 31 898 4.8683 184.25129 611.89315 576.43213 -2.11814 0.13039 -0.86567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77116 0.19803 -1.00000 - 13199 2017 8 21 17 46 36 766 4.8683 184.25433 611.87135 576.41526 -2.11264 0.13104 -0.86062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77080 0.19803 -1.00000 - 13200 2017 8 21 17 46 41 634 4.8684 184.25737 611.84984 576.39848 -2.10644 0.13164 -0.85560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77045 0.19803 -1.00000 - 13201 2017 8 21 17 46 46 503 4.8684 184.26043 611.82852 576.38181 -2.10797 0.13222 -0.84951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77009 0.19803 -1.00000 - 13202 2017 8 21 17 46 51 371 4.8685 184.26349 611.80698 576.36514 -2.11020 0.13280 -0.84455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76974 0.19803 -1.00000 - 13203 2017 8 21 17 46 56 240 4.8685 184.26655 611.78652 576.34859 -2.09791 0.13339 -0.83923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76939 0.19803 -1.00000 - 13204 2017 8 21 17 47 1 108 4.8686 184.26961 611.76541 576.33211 -2.08851 0.13407 -0.83269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76903 0.19803 -1.00000 - 13205 2017 8 21 17 47 5 977 4.8686 184.27266 611.74423 576.31567 -2.07893 0.13490 -0.82746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76868 0.19803 -1.00000 - 13206 2017 8 21 17 47 10 846 4.8687 184.27572 611.72324 576.29932 -2.07037 0.13566 -0.82014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76832 0.19803 -1.00000 - 13207 2017 8 21 17 47 15 714 4.8687 184.27877 611.70205 576.28306 -2.06352 0.13637 -0.81230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76797 0.19803 -1.00000 - 13208 2017 8 21 17 47 20 583 4.8688 184.28183 611.68150 576.26680 -2.05640 0.13706 -0.80617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76762 0.19803 -1.00000 - 13209 2017 8 21 17 47 25 452 4.8688 184.28490 611.66055 576.25064 -2.04897 0.13775 -0.79814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76726 0.19803 -1.00000 - 13210 2017 8 21 17 47 30 321 4.8689 184.28797 611.63973 576.23450 -2.04112 0.13846 -0.79002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76691 0.19803 -1.00000 - 13211 2017 8 21 17 47 35 190 4.8689 184.29104 611.61867 576.21835 -2.03270 0.13919 -0.78300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76655 0.19803 -1.00000 - 13212 2017 8 21 17 47 40 59 4.8690 184.29410 611.59773 576.20231 -2.02353 0.13993 -0.77467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76620 0.19803 -1.00000 - 13213 2017 8 21 17 47 44 928 4.8690 184.29716 611.57679 576.18630 -2.01344 0.14068 -0.76617 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76584 0.19803 -1.00000 - 13214 2017 8 21 17 47 49 797 4.8691 184.30022 611.55585 576.17029 -2.00227 0.14143 -0.75936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76549 0.19803 -1.00000 - 13215 2017 8 21 17 47 54 666 4.8691 184.30329 611.53608 576.15435 -1.98983 0.14219 -0.75071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76514 0.19803 -1.00000 - 13216 2017 8 21 17 47 59 535 4.8692 184.30636 611.51514 576.13845 -1.97598 0.14294 -0.74248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76478 0.19803 -1.00000 - 13217 2017 8 21 17 48 4 404 4.8692 184.30944 611.49381 576.12262 -1.96041 0.14369 -0.73478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76443 0.19803 -1.00000 - 13218 2017 8 21 17 48 9 273 4.8693 184.31252 611.47341 576.10693 -1.94291 0.14443 -0.72578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76407 0.19803 -1.00000 - 13219 2017 8 21 17 48 14 143 4.8693 184.31559 611.45266 576.09128 -1.92365 0.14517 -0.71752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76372 0.19803 -1.00000 - 13220 2017 8 21 17 48 19 12 4.8694 184.31866 611.43240 576.07576 -1.90291 0.14589 -0.70954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76337 0.19803 -1.00000 - 13221 2017 8 21 17 48 23 881 4.8694 184.32173 611.41325 576.06040 -1.88083 0.14662 -0.70036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76301 0.19802 -1.00000 - 13222 2017 8 21 17 48 28 751 4.8695 184.32480 611.39281 576.04506 -1.85748 0.14734 -0.69222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76266 0.19802 -1.00000 - 13223 2017 8 21 17 48 33 620 4.8695 184.32787 611.37275 576.02985 -1.83286 0.14807 -0.68326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76230 0.19802 -1.00000 - 13224 2017 8 21 17 48 38 490 4.8695 184.33095 611.35268 576.01476 -1.80678 0.14880 -0.67342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76195 0.19802 -1.00000 - 13225 2017 8 21 17 48 43 360 4.8696 184.33403 611.33183 575.99970 -1.77957 0.14955 -0.66577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76160 0.19802 -1.00000 - 13226 2017 8 21 17 48 48 229 4.8696 184.33711 611.31192 575.98474 -1.75301 0.15032 -0.65709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76124 0.19802 -1.00000 - 13227 2017 8 21 17 48 53 99 4.8697 184.34018 611.29362 575.96989 -1.73661 0.15108 -0.64706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76089 0.19802 -1.00000 - 13228 2017 8 21 17 48 57 969 4.8697 184.34326 611.27395 575.95506 -1.71661 0.15186 -0.63827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76053 0.19802 -1.00000 - 13229 2017 8 21 17 49 2 838 4.8698 184.34634 611.25369 575.94030 -1.68543 0.15262 -0.62952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76018 0.19802 -1.00000 - 13230 2017 8 21 17 49 7 708 4.8698 184.34942 611.23441 575.92570 -1.65525 0.15338 -0.61892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75982 0.19802 -1.00000 - 13231 2017 8 21 17 49 12 578 4.8699 184.35251 611.21515 575.91112 -1.62408 0.15415 -0.60986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75947 0.19802 -1.00000 - 13232 2017 8 21 17 49 17 448 4.8699 184.35560 611.19582 575.89668 -1.59265 0.15493 -0.60076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75912 0.19802 -1.00000 - 13233 2017 8 21 17 49 22 318 4.8700 184.35869 611.17788 575.88235 -1.56166 0.15575 -0.59070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75876 0.19802 -1.00000 - 13234 2017 8 21 17 49 27 188 4.8700 184.36178 611.15865 575.86807 -1.53103 0.15661 -0.58043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75841 0.19802 -1.00000 - 13235 2017 8 21 17 49 32 58 4.8701 184.36487 611.13861 575.85384 -1.50062 0.15753 -0.57030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75805 0.19802 -1.00000 - 13236 2017 8 21 17 49 36 928 4.8701 184.36796 611.11955 575.83966 -1.47031 0.15849 -0.55946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75770 0.19802 -1.00000 - 13237 2017 8 21 17 49 41 799 4.8702 184.37106 611.10048 575.82551 -1.43999 0.15949 -0.54927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75735 0.19802 -1.00000 - 13238 2017 8 21 17 49 46 669 4.8702 184.37415 611.08156 575.81141 -1.40961 0.16049 -0.53906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75699 0.19802 -1.00000 - 13239 2017 8 21 17 49 51 539 4.8703 184.37725 611.06269 575.79736 -1.37918 0.16149 -0.52809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75664 0.19802 -1.00000 - 13240 2017 8 21 17 49 56 409 4.8703 184.38035 611.04387 575.78331 -1.34876 0.16244 -0.51843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75628 0.19802 -1.00000 - 13241 2017 8 21 17 50 1 280 4.8704 184.38345 611.02514 575.76935 -1.31845 0.16334 -0.50715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75593 0.19802 -1.00000 - 13242 2017 8 21 17 50 6 150 4.8704 184.38654 611.00609 575.75545 -1.28835 0.16420 -0.49720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75557 0.19802 -1.00000 - 13243 2017 8 21 17 50 11 21 4.8705 184.38964 610.98732 575.74164 -1.25860 0.16504 -0.48740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75522 0.19802 -1.00000 - 13244 2017 8 21 17 50 15 891 4.8705 184.39274 610.96875 575.72792 -1.22934 0.16591 -0.47604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75487 0.19802 -1.00000 - 13245 2017 8 21 17 50 20 762 4.8706 184.39584 610.95018 575.71420 -1.20143 0.16682 -0.46665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75451 0.19802 -1.00000 - 13246 2017 8 21 17 50 25 632 4.8706 184.39894 610.93175 575.70055 -1.17531 0.16792 -0.45664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75416 0.19802 -1.00000 - 13247 2017 8 21 17 50 30 503 4.8707 184.40204 610.91328 575.68696 -1.14961 0.16913 -0.44508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75380 0.19802 -1.00000 - 13248 2017 8 21 17 50 35 374 4.8707 184.40514 610.89403 575.67336 -1.12442 0.17032 -0.43612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75345 0.19802 -1.00000 - 13249 2017 8 21 17 50 40 245 4.8708 184.40824 610.87583 575.65982 -1.09976 0.17150 -0.42681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75310 0.19801 -1.00000 - 13250 2017 8 21 17 50 45 115 4.8708 184.41135 610.85727 575.64642 -1.07568 0.17269 -0.41689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75274 0.19801 -1.00000 - 13251 2017 8 21 17 50 49 986 4.8709 184.41446 610.83987 575.63308 -1.05208 0.17389 -0.40823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75239 0.19801 -1.00000 - 13252 2017 8 21 17 50 54 857 4.8709 184.41757 610.82181 575.61985 -1.02887 0.17509 -0.39962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75203 0.19801 -1.00000 - 13253 2017 8 21 17 50 59 728 4.8710 184.42068 610.80379 575.60670 -1.00765 0.17628 -0.38978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75168 0.19801 -1.00000 - 13254 2017 8 21 17 51 4 599 4.8710 184.42379 610.78506 575.59356 -0.98753 0.17742 -0.38189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75132 0.19801 -1.00000 - 13255 2017 8 21 17 51 9 470 4.8711 184.42689 610.76802 575.58059 -0.96820 0.17851 -0.37451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75097 0.19801 -1.00000 - 13256 2017 8 21 17 51 14 341 4.8711 184.43000 610.75017 575.56777 -0.94946 0.17960 -0.36573 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75062 0.19801 -1.00000 - 13257 2017 8 21 17 51 19 213 4.8712 184.43312 610.73230 575.55507 -0.93120 0.18130 -0.35899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75026 0.19801 -1.00000 - 13258 2017 8 21 17 51 24 84 4.8712 184.43624 610.71572 575.54256 -0.91368 0.18286 -0.35251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74991 0.19801 -1.00000 - 13259 2017 8 21 17 51 28 955 4.8713 184.43937 610.69851 575.53024 -0.90117 0.18427 -0.34428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74955 0.19801 -1.00000 - 13260 2017 8 21 17 51 33 826 4.8713 184.44248 610.68033 575.51800 -0.90281 0.18556 -0.33910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74920 0.19801 -1.00000 - 13261 2017 8 21 17 51 38 698 4.8714 184.44560 610.66409 575.50599 -0.87994 0.18676 -0.33339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74884 0.19801 -1.00000 - 13262 2017 8 21 17 51 43 569 4.8714 184.44871 610.64772 575.49415 -0.86309 0.18793 -0.32584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74849 0.19801 -1.00000 - 13263 2017 8 21 17 51 48 441 4.8715 184.45183 610.63117 575.48237 -0.85173 0.18911 -0.32176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74814 0.19801 -1.00000 - 13264 2017 8 21 17 51 53 312 4.8715 184.45495 610.61645 575.47083 -0.83985 0.19038 -0.31661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74778 0.19801 -1.00000 - 13265 2017 8 21 17 51 58 184 4.8716 184.45808 610.60063 575.45945 -0.83574 0.19175 -0.31055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74743 0.19801 -1.00000 - 13266 2017 8 21 17 52 3 55 4.8716 184.46122 610.58355 575.44814 -0.83321 0.19326 -0.30741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74707 0.19801 -1.00000 - 13267 2017 8 21 17 52 7 927 4.8717 184.46435 610.56908 575.43708 -0.82530 0.19490 -0.30316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74672 0.19801 -1.00000 - 13268 2017 8 21 17 52 12 799 4.8717 184.46748 610.55379 575.42617 -0.80765 0.19664 -0.29675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74636 0.19801 -1.00000 - 13269 2017 8 21 17 52 17 671 4.8718 184.47061 610.53854 575.41538 -0.80587 0.19846 -0.29361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74601 0.19801 -1.00000 - 13270 2017 8 21 17 52 22 542 4.8718 184.47372 610.52528 575.40486 -0.80998 0.20031 -0.28935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74566 0.19801 -1.00000 - 13271 2017 8 21 17 52 27 414 4.8719 184.47684 610.51079 575.39447 -0.79953 0.20215 -0.28394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74530 0.19801 -1.00000 - 13272 2017 8 21 17 52 32 286 4.8719 184.47997 610.49536 575.38416 -0.79800 0.20395 -0.28073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74495 0.19801 -1.00000 - 13273 2017 8 21 17 52 37 158 4.8718 184.48311 610.48120 575.37401 -0.80419 0.20569 -0.27647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74459 0.19801 -1.00000 - 13274 2017 8 21 17 52 42 30 4.8718 184.48626 610.46709 575.36400 -0.78920 0.20738 -0.27087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74424 0.19801 -1.00000 - 13275 2017 8 21 17 52 46 901 4.8717 184.48940 610.45378 575.35413 -0.78078 0.20903 -0.26650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74388 0.19801 -1.00000 - 13276 2017 8 21 17 52 51 773 4.8717 184.49253 610.44161 575.34442 -0.77657 0.21065 -0.26254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74353 0.19801 -1.00000 - 13277 2017 8 21 17 52 56 645 4.8717 184.49565 610.42814 575.33481 -0.77503 0.21225 -0.25651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74318 0.19800 -1.00000 - 13278 2017 8 21 17 53 1 516 4.8716 184.49877 610.41360 575.32523 -0.77385 0.21386 -0.25244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74282 0.19800 -1.00000 - 13279 2017 8 21 17 53 6 388 4.8716 184.50189 610.40005 575.31577 -0.77275 0.21545 -0.24765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74247 0.19800 -1.00000 - 13280 2017 8 21 17 53 11 260 4.8716 184.50503 610.38693 575.30646 -0.77149 0.21701 -0.24199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74211 0.19800 -1.00000 - 13281 2017 8 21 17 53 16 131 4.8715 184.50818 610.37407 575.29718 -0.76992 0.21853 -0.23716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74176 0.19800 -1.00000 - 13282 2017 8 21 17 53 21 3 4.8715 184.51134 610.36160 575.28805 -0.76798 0.22001 -0.23246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74140 0.19800 -1.00000 - 13283 2017 8 21 17 53 25 874 4.8714 184.51449 610.34922 575.27901 -0.76566 0.22144 -0.22700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74105 0.19800 -1.00000 - 13284 2017 8 21 17 53 30 745 4.8714 184.51763 610.33670 575.27003 -0.76294 0.22285 -0.22278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74070 0.19800 -1.00000 - 13285 2017 8 21 17 53 35 617 4.8714 184.52077 610.32429 575.26118 -0.75985 0.22455 -0.21767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74034 0.19800 -1.00000 - 13286 2017 8 21 17 53 40 488 4.8713 184.52390 610.31191 575.25244 -0.75642 0.22626 -0.21275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73999 0.19800 -1.00000 - 13287 2017 8 21 17 53 45 360 4.8713 184.52703 610.29978 575.24377 -0.75266 0.22784 -0.20819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73963 0.19800 -1.00000 - 13288 2017 8 21 17 53 50 231 4.8713 184.53017 610.28770 575.23516 -0.74854 0.22935 -0.20238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73928 0.19800 -1.00000 - 13289 2017 8 21 17 53 55 102 4.8712 184.53333 610.27556 575.22657 -0.74407 0.23083 -0.19758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73893 0.19800 -1.00000 - 13290 2017 8 21 17 53 59 973 4.8712 184.53650 610.26346 575.21807 -0.73922 0.23235 -0.19269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73857 0.19800 -1.00000 - 13291 2017 8 21 17 54 4 844 4.8712 184.53967 610.25147 575.20965 -0.73595 0.23393 -0.18677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73822 0.19800 -1.00000 - 13292 2017 8 21 17 54 9 715 4.8711 184.54283 610.23941 575.20132 -0.73278 0.23559 -0.18228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73786 0.19800 -1.00000 - 13293 2017 8 21 17 54 14 587 4.8711 184.54597 610.22905 575.19311 -0.72875 0.23730 -0.17800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73751 0.19800 -1.00000 - 13294 2017 8 21 17 54 19 458 4.8710 184.54911 610.21622 575.18505 -0.72376 0.23902 -0.17254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73715 0.19800 -1.00000 - 13295 2017 8 21 17 54 24 329 4.8710 184.55225 610.20486 575.17709 -0.71775 0.24072 -0.16881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73680 0.19800 -1.00000 - 13296 2017 8 21 17 54 29 200 4.8710 184.55540 610.19382 575.16928 -0.71069 0.24235 -0.16375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73645 0.19800 -1.00000 - 13297 2017 8 21 17 54 34 70 4.8709 184.55857 610.18259 575.16155 -0.70263 0.24392 -0.15867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73609 0.19800 -1.00000 - 13298 2017 8 21 17 54 38 941 4.8709 184.56175 610.17127 575.15391 -0.69364 0.24558 -0.15443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73574 0.19800 -1.00000 - 13299 2017 8 21 17 54 43 812 4.8709 184.56493 610.16157 575.14636 -0.68402 0.24778 -0.14923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73538 0.19800 -1.00000 - 13300 2017 8 21 17 54 48 683 4.8708 184.56810 610.14946 575.13894 -0.67412 0.24992 -0.14517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73503 0.19800 -1.00000 - 13301 2017 8 21 17 54 53 554 4.8708 184.57125 610.13880 575.13164 -0.66417 0.25196 -0.13993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73467 0.19800 -1.00000 - 13302 2017 8 21 17 54 58 425 4.8707 184.57439 610.12823 575.12445 -0.65433 0.25390 -0.13531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73432 0.19800 -1.00000 - 13303 2017 8 21 17 55 3 295 4.8707 184.57753 610.11795 575.11735 -0.64480 0.25575 -0.13137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73397 0.19800 -1.00000 - 13304 2017 8 21 17 55 8 166 4.8707 184.58068 610.10736 575.11044 -0.63574 0.25755 -0.12697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73361 0.19800 -1.00000 - 13305 2017 8 21 17 55 13 36 4.8706 184.58384 610.09694 575.10366 -0.62996 0.25934 -0.12251 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73326 0.19799 -1.00000 - 13306 2017 8 21 17 55 17 907 4.8706 184.58701 610.08680 575.09698 -0.62510 0.26116 -0.11815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73290 0.19799 -1.00000 - 13307 2017 8 21 17 55 22 778 4.8706 184.59019 610.07753 575.09049 -0.62020 0.26308 -0.11401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73255 0.19799 -1.00000 - 13308 2017 8 21 17 55 27 648 4.8705 184.59338 610.06903 575.08419 -0.61513 0.26511 -0.10986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73219 0.19799 -1.00000 - 13309 2017 8 21 17 55 32 519 4.8705 184.59655 610.05952 575.07805 -0.60976 0.26726 -0.10566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73184 0.19799 -1.00000 - 13310 2017 8 21 17 55 37 389 4.8704 184.59971 610.04977 575.07199 -0.61020 0.26950 -0.10264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73149 0.19799 -1.00000 - 13311 2017 8 21 17 55 42 259 4.8704 184.60286 610.04129 575.06607 -0.61703 0.27179 -0.09970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73113 0.19799 -1.00000 - 13312 2017 8 21 17 55 47 130 4.8704 184.60603 610.03253 575.06030 -0.61497 0.27411 -0.09528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73078 0.19799 -1.00000 - 13313 2017 8 21 17 55 52 0 4.8703 184.60920 610.02371 575.05461 -0.62338 0.27639 -0.09208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73042 0.19799 -1.00000 - 13314 2017 8 21 17 55 56 870 4.8703 184.61238 610.01637 575.04902 -0.61202 0.27861 -0.08827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73007 0.19799 -1.00000 - 13315 2017 8 21 17 56 1 741 4.8702 184.61556 610.00815 575.04353 -0.60598 0.28074 -0.08290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72972 0.19799 -1.00000 - 13316 2017 8 21 17 56 6 611 4.8702 184.61874 609.99948 575.03818 -0.60348 0.28279 -0.07901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72936 0.19799 -1.00000 - 13317 2017 8 21 17 56 11 481 4.8702 184.62191 609.99154 575.03288 -0.60254 0.28476 -0.07534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72901 0.19799 -1.00000 - 13318 2017 8 21 17 56 16 351 4.8701 184.62509 609.98326 575.02776 -0.59803 0.28671 -0.06869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72865 0.19799 -1.00000 - 13319 2017 8 21 17 56 21 221 4.8701 184.62826 609.97525 575.02270 -0.59787 0.28869 -0.06341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72830 0.19799 -1.00000 - 13320 2017 8 21 17 56 26 91 4.8701 184.63143 609.96900 575.01774 -0.59764 0.29074 -0.05922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72794 0.19799 -1.00000 - 13321 2017 8 21 17 56 30 961 4.8700 184.63459 609.96111 575.01288 -0.59414 0.29344 -0.05209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72759 0.19799 -1.00000 - 13322 2017 8 21 17 56 35 831 4.8700 184.63777 609.95202 575.00802 -0.58989 0.29628 -0.04663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72724 0.19799 -1.00000 - 13323 2017 8 21 17 56 40 701 4.8699 184.64094 609.94317 575.00330 -0.58581 0.29912 -0.04092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72688 0.19799 -1.00000 - 13324 2017 8 21 17 56 45 571 4.8699 184.64412 609.93583 574.99868 -0.58427 0.30191 -0.03398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72653 0.19799 -1.00000 - 13325 2017 8 21 17 56 50 441 4.8699 184.64730 609.92839 574.99402 -0.58144 0.30465 -0.02725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72617 0.19799 -1.00000 - 13326 2017 8 21 17 56 55 311 4.8698 184.65049 609.92099 574.98948 -0.57697 0.30734 -0.02004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72582 0.19799 -1.00000 - 13327 2017 8 21 17 57 0 181 4.8698 184.65368 609.91372 574.98500 -0.57051 0.31000 -0.01213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72547 0.19799 -1.00000 - 13328 2017 8 21 17 57 5 50 4.8698 184.65687 609.90636 574.98060 -0.56192 0.31266 -0.00533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72511 0.19799 -1.00000 - 13329 2017 8 21 17 57 9 920 4.8697 184.66005 609.89901 574.97633 -0.55117 0.31536 0.00384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72476 0.19799 -1.00000 - 13330 2017 8 21 17 57 14 790 4.8697 184.66324 609.89172 574.97210 -0.53824 0.31812 0.01345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72440 0.19799 -1.00000 - 13331 2017 8 21 17 57 19 659 4.8696 184.66643 609.88446 574.96792 -0.52318 0.32095 0.02205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72405 0.19799 -1.00000 - 13332 2017 8 21 17 57 24 529 4.8696 184.66963 609.87717 574.96380 -0.50607 0.32383 0.03200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72370 0.19799 -1.00000 - 13333 2017 8 21 17 57 29 399 4.8696 184.67282 609.86990 574.95969 -0.48701 0.32677 0.04207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72334 0.19798 -1.00000 - 13334 2017 8 21 17 57 34 268 4.8695 184.67600 609.86260 574.95560 -0.46610 0.32972 0.05219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72299 0.19798 -1.00000 - 13335 2017 8 21 17 57 39 138 4.8695 184.67920 609.85532 574.95156 -0.44347 0.33300 0.06291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72263 0.19798 -1.00000 - 13336 2017 8 21 17 57 44 7 4.8695 184.68240 609.84810 574.94754 -0.41926 0.33643 0.07410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72228 0.19798 -1.00000 - 13337 2017 8 21 17 57 48 877 4.8694 184.68559 609.84086 574.94351 -0.39357 0.33987 0.08432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72192 0.19798 -1.00000 - 13338 2017 8 21 17 57 53 746 4.8694 184.68877 609.83363 574.93953 -0.36652 0.34325 0.09495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72157 0.19798 -1.00000 - 13339 2017 8 21 17 57 58 615 4.8693 184.69195 609.82642 574.93562 -0.33819 0.34657 0.10572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72122 0.19798 -1.00000 - 13340 2017 8 21 17 58 3 485 4.8693 184.69513 609.81924 574.93173 -0.30871 0.34979 0.11568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72086 0.19798 -1.00000 - 13341 2017 8 21 17 58 8 354 4.8693 184.69832 609.81216 574.92800 -0.27822 0.35293 0.12606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72051 0.19798 -1.00000 - 13342 2017 8 21 17 58 13 223 4.8692 184.70152 609.80523 574.92440 -0.24685 0.35601 0.13672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72015 0.19798 -1.00000 - 13343 2017 8 21 17 58 18 92 4.8692 184.70473 609.79741 574.92090 -0.21471 0.35905 0.14529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71980 0.19798 -1.00000 - 13344 2017 8 21 17 58 22 961 4.8692 184.70794 609.79196 574.91762 -0.18192 0.36208 0.15524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71945 0.19798 -1.00000 - 13345 2017 8 21 17 58 27 830 4.8691 184.71114 609.78433 574.91446 -0.14858 0.36510 0.16547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71909 0.19798 -1.00000 - 13346 2017 8 21 17 58 32 700 4.8691 184.71433 609.77884 574.91141 -0.11480 0.36809 0.17360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71874 0.19798 -1.00000 - 13347 2017 8 21 17 58 37 569 4.8690 184.71753 609.77271 574.90855 -0.08067 0.37102 0.18396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71838 0.19798 -1.00000 - 13348 2017 8 21 17 58 42 438 4.8690 184.72074 609.76649 574.90577 -0.05081 0.37390 0.19315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71803 0.19798 -1.00000 - 13349 2017 8 21 17 58 47 307 4.8690 184.72397 609.76117 574.90310 -0.01424 0.37793 0.20124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71768 0.19798 -1.00000 - 13350 2017 8 21 17 58 52 175 4.8689 184.72718 609.75571 574.90063 0.00804 0.38191 0.21115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71732 0.19798 -1.00000 - 13351 2017 8 21 17 58 57 44 4.8689 184.73038 609.74944 574.89825 0.03153 0.38581 0.22044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71697 0.19798 -1.00000 - 13352 2017 8 21 17 59 1 913 4.8688 184.73357 609.74568 574.89600 0.05757 0.39015 0.22891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71661 0.19798 -1.00000 - 13353 2017 8 21 17 59 6 782 4.8688 184.73677 609.74072 574.89401 0.09000 0.39488 0.23832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71626 0.19798 -1.00000 - 13354 2017 8 21 17 59 11 651 4.8688 184.73998 609.73483 574.89216 0.09375 0.39955 0.24697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71591 0.19798 -1.00000 - 13355 2017 8 21 17 59 16 519 4.8687 184.74319 609.73183 574.89052 0.09372 0.40582 0.25622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71555 0.19798 -1.00000 - 13356 2017 8 21 17 59 21 388 4.8687 184.74639 609.72657 574.88898 0.09377 0.41210 0.26572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71520 0.19798 -1.00000 - 13357 2017 8 21 17 59 26 257 4.8687 184.74960 609.72292 574.88758 0.09391 0.41747 0.27464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71484 0.19798 -1.00000 - 13358 2017 8 21 17 59 31 125 4.8686 184.75282 609.71912 574.88636 0.09412 0.42285 0.28494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71449 0.19798 -1.00000 - 13359 2017 8 21 17 59 35 994 4.8686 184.75603 609.71554 574.88521 0.09432 0.43869 0.29491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71413 0.19798 -1.00000 - 13360 2017 8 21 17 59 40 863 4.8685 184.75922 609.71236 574.88414 0.09444 0.43837 0.30368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71378 0.19797 -1.00000 - 13361 2017 8 21 17 59 45 731 4.8685 184.76241 609.71141 574.88325 0.09445 0.44045 0.31299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71343 0.19797 -1.00000 - 13362 2017 8 21 17 59 50 600 4.8685 184.76562 609.70623 574.88247 0.09438 0.44473 0.32318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71307 0.19797 -1.00000 - 13363 2017 8 21 17 59 55 468 4.8684 184.76885 609.70153 574.88173 0.09431 0.45607 0.33154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71272 0.19797 -1.00000 - 13364 2017 8 21 18 0 0 336 4.8684 184.77209 609.69856 574.88109 0.09432 0.46329 0.34206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71236 0.19797 -1.00000 - 13365 2017 8 21 18 0 5 205 4.8683 184.77533 609.69573 574.88056 0.09446 0.45930 0.35225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71201 0.19797 -1.00000 - 13366 2017 8 21 18 0 10 73 4.8683 184.77856 609.69316 574.88007 0.09471 0.48319 0.36112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71166 0.19797 -1.00000 - 13367 2017 8 21 18 0 14 941 4.8683 184.78178 609.69051 574.87968 0.09500 0.48367 0.37109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71130 0.19797 -1.00000 - 13368 2017 8 21 18 0 19 809 4.8682 184.78498 609.68790 574.87936 0.09521 0.50662 0.38179 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71095 0.19797 -1.00000 - 13369 2017 8 21 18 0 24 678 4.8682 184.78819 609.68535 574.87909 0.09525 0.52969 0.39212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71059 0.19797 -1.00000 - 13370 2017 8 21 18 0 29 546 4.8682 184.79141 609.68290 574.87889 0.09512 0.55293 0.40237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71024 0.19797 -1.00000 - 13371 2017 8 21 18 0 34 414 4.8681 184.79463 609.68050 574.87871 0.09491 0.57640 0.41313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70989 0.19797 -1.00000 - 13372 2017 8 21 18 0 39 282 4.8681 184.79786 609.67812 574.87855 0.09474 0.60009 0.42340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70953 0.19797 -1.00000 - 13373 2017 8 21 18 0 44 150 4.8680 184.80108 609.67572 574.87837 0.09470 0.62396 0.43440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70918 0.19797 -1.00000 - 13374 2017 8 21 18 0 49 18 4.8680 184.80432 609.67331 574.87818 0.09479 0.64792 0.44542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70882 0.19797 -1.00000 - 13375 2017 8 21 18 0 53 886 4.8680 184.80755 609.67086 574.87795 0.09497 0.67185 0.45616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70847 0.19797 -1.00000 - 13376 2017 8 21 18 0 58 754 4.8679 184.81079 609.66837 574.87770 0.09518 0.69559 0.46671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70812 0.19797 -1.00000 - 13377 2017 8 21 18 1 3 622 4.8679 184.81402 609.66579 574.87740 0.09537 0.71897 0.47681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70776 0.19797 -1.00000 - 13378 2017 8 21 18 1 8 490 4.8678 184.81724 609.66316 574.87717 0.09553 0.74164 0.48625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70741 0.19797 -1.00000 - 13379 2017 8 21 18 1 13 357 4.8678 184.82047 609.66049 574.87695 0.09565 0.76328 0.49615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70705 0.19797 -1.00000 - 13380 2017 8 21 18 1 18 225 4.8678 184.82369 609.65775 574.87676 0.09575 0.78366 0.50457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70670 0.19797 -1.00000 - 13381 2017 8 21 18 1 23 93 4.8677 184.82693 609.65504 574.87667 0.09580 0.80257 0.51263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70635 0.19797 -1.00000 - 13382 2017 8 21 18 1 27 961 4.8677 184.83017 609.65237 574.87668 0.09582 0.81988 0.52085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70599 0.19797 -1.00000 - 13383 2017 8 21 18 1 32 828 4.8677 184.83340 609.64822 574.87675 0.09582 0.83548 0.52742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70564 0.19797 -1.00000 - 13384 2017 8 21 18 1 37 696 4.8676 184.83665 609.64740 574.87697 0.09585 0.84933 0.53430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70528 0.19797 -1.00000 - 13385 2017 8 21 18 1 42 563 4.8676 184.83989 609.64285 574.87734 0.09596 0.86144 0.54113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70493 0.19797 -1.00000 - 13386 2017 8 21 18 1 47 431 4.8675 184.84313 609.64166 574.87778 0.09615 0.87185 0.54592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70458 0.19797 -1.00000 - 13387 2017 8 21 18 1 52 299 4.8675 184.84637 609.64106 574.87846 0.09636 0.88064 0.55145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70422 0.19797 -1.00000 - 13388 2017 8 21 18 1 57 166 4.8675 184.84960 609.63869 574.87934 0.09653 0.88799 0.55760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70387 0.19796 -1.00000 - 13389 2017 8 21 18 2 2 33 4.8674 184.85284 609.63552 574.88029 0.09661 0.89418 0.56088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70351 0.19796 -1.00000 - 13390 2017 8 21 18 2 6 901 4.8674 184.85607 609.63443 574.88154 0.09661 0.89981 0.56562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70316 0.19796 -1.00000 - 13391 2017 8 21 18 2 11 768 4.8673 184.85931 609.63324 574.88297 0.09662 0.90499 0.57137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70281 0.19796 -1.00000 - 13392 2017 8 21 18 2 16 635 4.8673 184.86256 609.63260 574.88452 0.09669 0.90887 0.57384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70245 0.19796 -1.00000 - 13393 2017 8 21 18 2 21 503 4.8673 184.86581 609.63370 574.88633 0.09687 0.90986 0.57830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70210 0.19796 -1.00000 - 13394 2017 8 21 18 2 26 370 4.8672 184.86906 609.63319 574.88835 0.09711 0.89789 0.58357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70174 0.19796 -1.00000 - 13395 2017 8 21 18 2 31 237 4.8672 184.87231 609.63101 574.89047 0.09731 0.90033 0.58613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70139 0.19796 -1.00000 - 13396 2017 8 21 18 2 36 104 4.8672 184.87555 609.63190 574.89287 0.09742 0.90075 0.58955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70104 0.19796 -1.00000 - 13397 2017 8 21 18 2 40 971 4.8671 184.87879 609.63179 574.89545 0.09747 0.90152 0.59509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70068 0.19796 -1.00000 - 13398 2017 8 21 18 2 45 838 4.8671 184.88203 609.63282 574.89816 0.09749 0.90242 0.59769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70033 0.19796 -1.00000 - 13399 2017 8 21 18 2 50 705 4.8670 184.88528 609.63508 574.90111 0.09757 0.90286 0.60152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69997 0.19796 -1.00000 - 13400 2017 8 21 18 2 55 572 4.8670 184.88853 609.63640 574.90422 0.09768 0.90226 0.60662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69962 0.19796 -1.00000 - 13401 2017 8 21 18 3 0 439 4.8670 184.89178 609.63569 574.90744 0.09771 0.90168 0.61039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69927 0.19796 -1.00000 - 13402 2017 8 21 18 3 5 306 4.8669 184.89503 609.63846 574.91092 0.09775 0.90147 0.61446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69891 0.19796 -1.00000 - 13403 2017 8 21 18 3 10 173 4.8669 184.89828 609.63857 574.91457 0.09781 0.90182 0.61912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69856 0.19796 -1.00000 - 13404 2017 8 21 18 3 15 40 4.8668 184.90153 609.64081 574.91845 0.09788 0.90288 0.62349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69821 0.19796 -1.00000 - 13405 2017 8 21 18 3 19 907 4.8668 184.90479 609.64340 574.92253 0.09794 0.90615 0.62772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69785 0.19796 -1.00000 - 13406 2017 8 21 18 3 24 774 4.8668 184.90805 609.64606 574.92675 0.09799 0.91928 0.63290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69750 0.19796 -1.00000 - 13407 2017 8 21 18 3 29 640 4.8667 184.91130 609.64897 574.93112 0.09802 0.93244 0.63913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69714 0.19796 -1.00000 - 13408 2017 8 21 18 3 34 507 4.8667 184.91455 609.65202 574.93561 0.09805 0.94525 0.64503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69679 0.19796 -1.00000 - 13409 2017 8 21 18 3 39 374 4.8666 184.91779 609.65525 574.94024 0.09809 0.95758 0.65106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69644 0.19796 -1.00000 - 13410 2017 8 21 18 3 44 240 4.8666 184.92105 609.65863 574.94494 0.09815 0.96929 0.65775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69608 0.19796 -1.00000 - 13411 2017 8 21 18 3 49 107 4.8666 184.92431 609.66212 574.94973 0.09821 0.98041 0.66393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69573 0.19796 -1.00000 - 13412 2017 8 21 18 3 53 973 4.8665 184.92757 609.66570 574.95456 0.09827 0.99260 0.67108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69537 0.19796 -1.00000 - 13413 2017 8 21 18 3 58 840 4.8665 184.93084 609.66940 574.95945 0.09830 1.00439 0.67835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69502 0.19796 -1.00000 - 13414 2017 8 21 18 4 3 706 4.8665 184.93410 609.67319 574.96438 0.09831 1.01570 0.68555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69467 0.19796 -1.00000 - 13415 2017 8 21 18 4 8 573 4.8664 184.93735 609.67714 574.96942 0.09834 1.02696 0.69300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69431 0.19796 -1.00000 - 13416 2017 8 21 18 4 13 439 4.8664 184.94060 609.68117 574.97451 0.09838 1.03894 0.69994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69396 0.19795 -1.00000 - 13417 2017 8 21 18 4 18 305 4.8663 184.94386 609.68533 574.97973 0.09843 1.05058 0.70671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69360 0.19795 -1.00000 - 13418 2017 8 21 18 4 23 172 4.8663 184.94713 609.68960 574.98505 0.09850 1.06179 0.71435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69325 0.19795 -1.00000 - 13419 2017 8 21 18 4 28 38 4.8663 184.95040 609.69381 574.99042 0.09855 1.07244 0.72037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69290 0.19795 -1.00000 - 13420 2017 8 21 18 4 32 904 4.8662 184.95367 609.69816 574.99587 0.09858 1.08247 0.72638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69254 0.19795 -1.00000 - 13421 2017 8 21 18 4 37 770 4.8662 184.95693 609.70205 575.00147 0.09859 1.09192 0.73224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69219 0.19795 -1.00000 - 13422 2017 8 21 18 4 42 637 4.8661 184.96019 609.70608 575.00718 0.09860 1.10123 0.73726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69184 0.19795 -1.00000 - 13423 2017 8 21 18 4 47 503 4.8661 184.96345 609.71046 575.01303 0.09864 1.11608 0.74309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69148 0.19795 -1.00000 - 13424 2017 8 21 18 4 52 369 4.8661 184.96673 609.71582 575.01900 0.09869 1.13182 0.74766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69113 0.19795 -1.00000 - 13425 2017 8 21 18 4 57 235 4.8660 184.97000 609.72258 575.02516 0.09875 1.14930 0.75188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69077 0.19795 -1.00000 - 13426 2017 8 21 18 5 2 101 4.8660 184.97327 609.72798 575.03149 0.09880 1.16792 0.75735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69042 0.19795 -1.00000 - 13427 2017 8 21 18 5 6 967 4.8659 184.97654 609.73177 575.03798 0.09883 1.18659 0.76140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69007 0.19795 -1.00000 - 13428 2017 8 21 18 5 11 833 4.8659 184.97980 609.73898 575.04462 0.09886 1.20495 0.76468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68971 0.19795 -1.00000 - 13429 2017 8 21 18 5 16 698 4.8659 184.98307 609.74416 575.05146 0.09889 1.22658 0.77091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68936 0.19795 -1.00000 - 13430 2017 8 21 18 5 21 564 4.8658 184.98635 609.75093 575.05839 0.09894 1.24683 0.77500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68900 0.19795 -1.00000 - 13431 2017 8 21 18 5 26 430 4.8658 184.98963 609.75918 575.06552 0.09900 1.26441 0.77846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68865 0.19795 -1.00000 - 13432 2017 8 21 18 5 31 296 4.8658 184.99291 609.76560 575.07280 0.09907 1.27980 0.78516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68830 0.19795 -1.00000 - 13433 2017 8 21 18 5 36 162 4.8657 184.99619 609.76995 575.08012 0.09911 1.29386 0.78833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68794 0.19795 -1.00000 - 13434 2017 8 21 18 5 41 27 4.8657 184.99945 609.77683 575.08764 0.09915 1.30671 0.79305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68759 0.19795 -1.00000 - 13435 2017 8 21 18 5 45 893 4.8656 185.00272 609.78403 575.09530 0.09918 1.31849 0.79982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68723 0.19795 -1.00000 - 13436 2017 8 21 18 5 50 758 4.8656 185.00599 609.79167 575.10297 0.09923 1.32871 0.80356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68688 0.19795 -1.00000 - 13437 2017 8 21 18 5 55 624 4.8656 185.00927 609.80087 575.11085 0.09930 1.33697 0.80807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68653 0.19795 -1.00000 - 13438 2017 8 21 18 6 0 490 4.8655 185.01256 609.80840 575.11885 0.09937 1.34318 0.81440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68617 0.19795 -1.00000 - 13439 2017 8 21 18 6 5 355 4.8655 185.01584 609.81382 575.12690 0.09944 1.34741 0.81843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68582 0.19795 -1.00000 - 13440 2017 8 21 18 6 10 220 4.8654 185.01912 609.82191 575.13513 0.09949 1.34982 0.82420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68547 0.19795 -1.00000 - 13441 2017 8 21 18 6 15 86 4.8654 185.02239 609.82876 575.14353 0.09953 1.35060 0.83125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68511 0.19795 -1.00000 - 13442 2017 8 21 18 6 19 951 4.8654 185.02567 609.83655 575.15198 0.09956 1.34997 0.83604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68476 0.19795 -1.00000 - 13443 2017 8 21 18 6 24 817 4.8653 185.02895 609.84486 575.16055 0.09961 1.34815 0.84312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68440 0.19795 -1.00000 - 13444 2017 8 21 18 6 29 682 4.8653 185.03223 609.85309 575.16918 0.09968 1.34558 0.84961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68405 0.19794 -1.00000 - 13445 2017 8 21 18 6 34 547 4.8652 185.03552 609.86141 575.17785 0.09975 1.34264 0.85582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68370 0.19794 -1.00000 - 13446 2017 8 21 18 6 39 412 4.8652 185.03880 609.86961 575.18659 0.09982 1.33971 0.86296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68334 0.19794 -1.00000 - 13447 2017 8 21 18 6 44 277 4.8652 185.04208 609.87779 575.19536 0.09986 1.33708 0.87078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68299 0.19794 -1.00000 - 13448 2017 8 21 18 6 49 143 4.8651 185.04535 609.88603 575.20420 0.09989 1.33491 0.87819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68264 0.19794 -1.00000 - 13449 2017 8 21 18 6 54 8 4.8651 185.04863 609.89447 575.21316 0.09993 1.33332 0.88640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68228 0.19794 -1.00000 - 13450 2017 8 21 18 6 58 873 4.8650 185.05192 609.90296 575.22209 0.09998 1.33240 0.89533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68193 0.19794 -1.00000 - 13451 2017 8 21 18 7 3 738 4.8650 185.05521 609.91142 575.23102 0.10003 1.33225 0.90404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68157 0.19794 -1.00000 - 13452 2017 8 21 18 7 8 603 4.8650 185.05850 609.91989 575.24002 0.10009 1.33836 0.91360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68122 0.19794 -1.00000 - 13453 2017 8 21 18 7 13 468 4.8649 185.06178 609.92843 575.24902 0.10013 1.36110 0.92361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68087 0.19794 -1.00000 - 13454 2017 8 21 18 7 18 332 4.8649 185.06506 609.93696 575.25805 0.10016 1.38384 0.93304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68051 0.19794 -1.00000 - 13455 2017 8 21 18 7 23 197 4.8649 185.06835 609.94548 575.26713 0.10017 1.40654 0.94260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68016 0.19794 -1.00000 - 13456 2017 8 21 18 7 28 62 4.8648 185.07163 609.95397 575.27624 0.10019 1.42916 0.95244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67980 0.19794 -1.00000 - 13457 2017 8 21 18 7 32 927 4.8648 185.07492 609.96209 575.28539 0.10023 1.45168 0.96190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67945 0.19794 -1.00000 - 13458 2017 8 21 18 7 37 792 4.8647 185.07822 609.97042 575.29456 0.10027 1.47391 0.97231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67910 0.19794 -1.00000 - 13459 2017 8 21 18 7 42 656 4.8647 185.08151 609.97895 575.30376 0.10031 1.49584 0.98133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67874 0.19794 -1.00000 - 13460 2017 8 21 18 7 47 521 4.8647 185.08480 609.98753 575.31299 0.10033 1.51762 0.99078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67839 0.19794 -1.00000 - 13461 2017 8 21 18 7 52 386 4.8646 185.08809 609.99558 575.32231 0.10035 1.53929 0.99989 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67804 0.19794 -1.00000 - 13462 2017 8 21 18 7 57 250 4.8646 185.09138 610.00384 575.33177 0.10036 1.55997 1.00890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67768 0.19794 -1.00000 - 13463 2017 8 21 18 8 2 115 4.8645 185.09468 610.01267 575.34136 0.10038 1.57367 1.01762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67733 0.19794 -1.00000 - 13464 2017 8 21 18 8 6 979 4.8645 185.09797 610.02110 575.35107 0.10042 1.59505 1.02635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67697 0.19794 -1.00000 - 13465 2017 8 21 18 8 11 844 4.8645 185.10127 610.03151 575.36094 0.10047 1.61401 1.03426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67662 0.19794 -1.00000 - 13466 2017 8 21 18 8 16 708 4.8644 185.10457 610.04089 575.37104 0.10052 1.62232 1.04399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67627 0.19794 -1.00000 - 13467 2017 8 21 18 8 21 573 4.8644 185.10787 610.04969 575.38119 0.10055 1.62303 1.05197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67591 0.19794 -1.00000 - 13468 2017 8 21 18 8 26 437 4.8643 185.11116 610.05913 575.39156 0.10058 1.64006 1.06014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67556 0.19794 -1.00000 - 13469 2017 8 21 18 8 31 301 4.8643 185.11446 610.06716 575.40209 0.10060 1.66004 1.07035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67521 0.19794 -1.00000 - 13470 2017 8 21 18 8 36 165 4.8643 185.11776 610.07785 575.41270 0.10064 1.68074 1.07764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67485 0.19794 -1.00000 - 13471 2017 8 21 18 8 41 30 4.8642 185.12106 610.08992 575.42345 0.10069 1.70101 1.08620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67450 0.19794 -1.00000 - 13472 2017 8 21 18 8 45 894 4.8642 185.12436 610.09995 575.43435 0.10075 1.72232 1.09569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67414 0.19793 -1.00000 - 13473 2017 8 21 18 8 50 758 4.8641 185.12767 610.11023 575.44533 0.10081 1.74741 1.10382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67379 0.19793 -1.00000 - 13474 2017 8 21 18 8 55 622 4.8641 185.13097 610.12069 575.45651 0.10086 1.77236 1.11331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67344 0.19793 -1.00000 - 13475 2017 8 21 18 9 0 486 4.8641 185.13426 610.12973 575.46780 0.10090 1.80821 1.12278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67308 0.19793 -1.00000 - 13476 2017 8 21 18 9 5 350 4.8640 185.13756 610.14111 575.47923 0.10095 1.84210 1.13127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67273 0.19793 -1.00000 - 13477 2017 8 21 18 9 10 214 4.8640 185.14086 610.15438 575.49085 0.10100 1.87287 1.14128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67238 0.19793 -1.00000 - 13478 2017 8 21 18 9 15 78 4.8640 185.14417 610.16556 575.50256 0.10106 1.90206 1.15168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67202 0.19793 -1.00000 - 13479 2017 8 21 18 9 19 942 4.8639 185.14748 610.17669 575.51442 0.10112 1.93160 1.15918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67167 0.19793 -1.00000 - 13480 2017 8 21 18 9 24 806 4.8639 185.15078 610.18811 575.52647 0.10118 1.96086 1.16947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67132 0.19793 -1.00000 - 13481 2017 8 21 18 9 29 670 4.8638 185.15408 610.19801 575.53860 0.10124 1.98936 1.17829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67096 0.19793 -1.00000 - 13482 2017 8 21 18 9 34 534 4.8638 185.15739 610.21203 575.55089 0.10128 2.01736 1.18599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67061 0.19793 -1.00000 - 13483 2017 8 21 18 9 39 397 4.8638 185.16069 610.22522 575.56331 0.10133 2.04419 1.19606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67025 0.19793 -1.00000 - 13484 2017 8 21 18 9 44 261 4.8637 185.16399 610.23670 575.57581 0.10138 2.07737 1.20529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66990 0.19793 -1.00000 - 13485 2017 8 21 18 9 49 125 4.8637 185.16730 610.24683 575.58845 0.10144 2.09700 1.21423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66955 0.19793 -1.00000 - 13486 2017 8 21 18 9 53 988 4.8636 185.17060 610.25893 575.60128 0.10150 2.12204 1.22371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66919 0.19793 -1.00000 - 13487 2017 8 21 18 9 58 852 4.8636 185.17391 610.27199 575.61413 0.10156 2.15306 1.23253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66884 0.19793 -1.00000 - 13488 2017 8 21 18 10 3 715 4.8636 185.17721 610.28605 575.62713 0.10161 2.18431 1.24241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66849 0.19793 -1.00000 - 13489 2017 8 21 18 10 8 579 4.8635 185.18052 610.30015 575.64028 0.10165 2.21387 1.25241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66813 0.19793 -1.00000 - 13490 2017 8 21 18 10 13 442 4.8635 185.18382 610.31319 575.65350 0.10169 2.24055 1.26176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66778 0.19793 -1.00000 - 13491 2017 8 21 18 10 18 306 4.8634 185.18713 610.32433 575.66677 0.10173 2.26470 1.27141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66742 0.19793 -1.00000 - 13492 2017 8 21 18 10 23 169 4.8634 185.19044 610.33738 575.68019 0.10177 2.28742 1.28161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66707 0.19793 -1.00000 - 13493 2017 8 21 18 10 28 33 4.8634 185.19375 610.35096 575.69367 0.10182 2.30921 1.29073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66672 0.19793 -1.00000 - 13494 2017 8 21 18 10 32 896 4.8633 185.19705 610.36635 575.70723 0.10185 2.33042 1.29969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66636 0.19793 -1.00000 - 13495 2017 8 21 18 10 37 759 4.8633 185.20036 610.38205 575.72091 0.10188 2.35125 1.30967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66601 0.19793 -1.00000 - 13496 2017 8 21 18 10 42 623 4.8632 185.20366 610.39354 575.73461 0.10190 2.37185 1.31801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66566 0.19793 -1.00000 - 13497 2017 8 21 18 10 47 486 4.8632 185.20696 610.40595 575.74847 0.10192 2.39227 1.32763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66530 0.19793 -1.00000 - 13498 2017 8 21 18 10 52 349 4.8632 185.21027 610.42002 575.76245 0.10194 2.41251 1.33747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66495 0.19793 -1.00000 - 13499 2017 8 21 18 10 57 212 4.8631 185.21357 610.43480 575.77645 0.10197 2.43253 1.34504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66460 0.19793 -1.00000 - 13500 2017 8 21 18 11 2 75 4.8631 185.21687 610.44912 575.79054 0.10199 2.45226 1.35465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66424 0.19792 -1.00000 - 13501 2017 8 21 18 11 6 938 4.8630 185.22017 610.46374 575.80478 0.10201 2.47161 1.36374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66389 0.19792 -1.00000 - 13502 2017 8 21 18 11 11 801 4.8630 185.22347 610.47839 575.81906 0.10203 2.49047 1.37166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66353 0.19792 -1.00000 - 13503 2017 8 21 18 11 16 664 4.8630 185.22677 610.49296 575.83353 0.10205 2.50872 1.38161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66318 0.19792 -1.00000 - 13504 2017 8 21 18 11 21 527 4.8629 185.23006 610.50765 575.84804 0.10207 2.52626 1.39045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66283 0.19792 -1.00000 - 13505 2017 8 21 18 11 26 390 4.8629 185.23335 610.52250 575.86266 0.10209 2.54303 1.39890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66247 0.19792 -1.00000 - 13506 2017 8 21 18 11 31 253 4.8628 185.23664 610.53746 575.87733 0.10212 2.55897 1.40904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66212 0.19792 -1.00000 - 13507 2017 8 21 18 11 36 116 4.8628 185.23993 610.55249 575.89203 0.10215 2.57409 1.41763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66177 0.19792 -1.00000 - 13508 2017 8 21 18 11 40 978 4.8628 185.24322 610.56752 575.90677 0.10219 2.58839 1.42660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66141 0.19792 -1.00000 - 13509 2017 8 21 18 11 45 841 4.8627 185.24651 610.58259 575.92154 0.10222 2.60194 1.43614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66106 0.19792 -1.00000 - 13510 2017 8 21 18 11 50 704 4.8627 185.24980 610.59770 575.93631 0.10225 2.61479 1.44409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66071 0.19792 -1.00000 - 13511 2017 8 21 18 11 55 566 4.8626 185.25310 610.61278 575.95113 0.10228 2.62702 1.45261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66035 0.19792 -1.00000 - 13512 2017 8 21 18 12 0 429 4.8626 185.25640 610.62791 575.96597 0.10232 2.63873 1.46157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66000 0.19792 -1.00000 - 13513 2017 8 21 18 12 5 292 4.8626 185.25970 610.64301 575.98090 0.10236 2.64999 1.46904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65964 0.19792 -1.00000 - 13514 2017 8 21 18 12 10 154 4.8625 185.26300 610.65818 575.99594 0.10241 2.66087 1.47722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65929 0.19792 -1.00000 - 13515 2017 8 21 18 12 15 17 4.8625 185.26631 610.67305 576.01108 0.10245 2.67144 1.48526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65894 0.19792 -1.00000 - 13516 2017 8 21 18 12 19 879 4.8624 185.26961 610.68824 576.02627 0.10250 2.68173 1.49158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65858 0.19792 -1.00000 - 13517 2017 8 21 18 12 24 741 4.8624 185.27292 610.70402 576.04158 0.10255 2.69176 1.49939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65823 0.19792 -1.00000 - 13518 2017 8 21 18 12 29 604 4.8624 185.27623 610.71947 576.05700 0.10259 2.70153 1.50599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65788 0.19792 -1.00000 - 13519 2017 8 21 18 12 34 466 4.8623 185.27953 610.73558 576.07251 0.10264 2.71101 1.51178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65752 0.19792 -1.00000 - 13520 2017 8 21 18 12 39 328 4.8623 185.28284 610.75132 576.08819 0.10269 2.72019 1.51900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65717 0.19792 -1.00000 - 13521 2017 8 21 18 12 44 191 4.8622 185.28616 610.76647 576.10393 0.10275 2.72907 1.52439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65682 0.19792 -1.00000 - 13522 2017 8 21 18 12 49 53 4.8622 185.28947 610.78373 576.11980 0.10281 2.73767 1.52960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65646 0.19792 -1.00000 - 13523 2017 8 21 18 12 53 915 4.8621 185.29278 610.79958 576.13583 0.10286 2.74597 1.53668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65611 0.19792 -1.00000 - 13524 2017 8 21 18 12 58 777 4.8621 185.29609 610.81522 576.15193 0.10292 2.75392 1.54117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65575 0.19792 -1.00000 - 13525 2017 8 21 18 13 3 639 4.8621 185.29940 610.83306 576.16816 0.10297 2.76146 1.54554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65540 0.19792 -1.00000 - 13526 2017 8 21 18 13 8 501 4.8620 185.30271 610.84949 576.18467 0.10303 2.76857 1.55098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65505 0.19792 -1.00000 - 13527 2017 8 21 18 13 13 363 4.8620 185.30603 610.86464 576.20133 0.10308 2.77546 1.55407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65469 0.19791 -1.00000 - 13528 2017 8 21 18 13 18 225 4.8619 185.30935 610.88349 576.21820 0.10313 2.78214 1.55731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65434 0.19791 -1.00000 - 13529 2017 8 21 18 13 23 87 4.8619 185.31266 610.90045 576.23538 0.10317 2.78796 1.56261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65399 0.19791 -1.00000 - 13530 2017 8 21 18 13 27 949 4.8619 185.31598 610.91845 576.25275 0.10321 2.79206 1.56506 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65363 0.19791 -1.00000 - 13531 2017 8 21 18 13 32 811 4.8618 185.31930 610.93689 576.27040 0.10325 2.79550 1.56789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65328 0.19791 -1.00000 - 13532 2017 8 21 18 13 37 672 4.8618 185.32262 610.95533 576.28823 0.10329 2.79995 1.57349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65293 0.19791 -1.00000 - 13533 2017 8 21 18 13 42 534 4.8617 185.32594 610.97203 576.30620 0.10333 2.80536 1.57510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65257 0.19791 -1.00000 - 13534 2017 8 21 18 13 47 396 4.8617 185.32926 610.99305 576.32441 0.10336 2.81184 1.57783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65222 0.19791 -1.00000 - 13535 2017 8 21 18 13 52 257 4.8616 185.33257 611.01266 576.34285 0.10340 2.81881 1.58299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65187 0.19791 -1.00000 - 13536 2017 8 21 18 13 57 119 4.8616 185.33589 611.03254 576.36140 0.10343 2.82378 1.58537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65151 0.19791 -1.00000 - 13537 2017 8 21 18 14 1 980 4.8616 185.33921 611.05250 576.38021 0.10346 2.82696 1.58930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65116 0.19791 -1.00000 - 13538 2017 8 21 18 14 6 842 4.8615 185.34253 611.07277 576.39931 0.10348 2.82937 1.59447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65080 0.19791 -1.00000 - 13539 2017 8 21 18 14 11 703 4.8615 185.34585 611.09181 576.41856 0.10351 2.81871 1.59593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65045 0.19791 -1.00000 - 13540 2017 8 21 18 14 16 565 4.8614 185.34918 611.11466 576.43806 0.10353 2.82555 1.60053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65010 0.19791 -1.00000 - 13541 2017 8 21 18 14 21 426 4.8614 185.35250 611.13503 576.45778 0.10356 2.83067 1.60582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64974 0.19791 -1.00000 - 13542 2017 8 21 18 14 26 288 4.8614 185.35582 611.15774 576.47763 0.10358 2.83615 1.60784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64939 0.19791 -1.00000 - 13543 2017 8 21 18 14 31 149 4.8613 185.35915 611.17959 576.49770 0.10360 2.84137 1.61332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64904 0.19791 -1.00000 - 13544 2017 8 21 18 14 36 10 4.8613 185.36247 611.20159 576.51791 0.10362 2.84574 1.61808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64868 0.19791 -1.00000 - 13545 2017 8 21 18 14 40 871 4.8612 185.36580 611.22325 576.53820 0.10365 2.85359 1.62004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64833 0.19791 -1.00000 - 13546 2017 8 21 18 14 45 733 4.8612 185.36912 611.24747 576.55869 0.10367 2.86103 1.62400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64798 0.19791 -1.00000 - 13547 2017 8 21 18 14 50 594 4.8611 185.37245 611.26771 576.57935 0.10370 2.85487 1.62803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64762 0.19791 -1.00000 - 13548 2017 8 21 18 14 55 455 4.8611 185.37578 611.29232 576.60015 0.10373 2.86542 1.63042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64727 0.19791 -1.00000 - 13549 2017 8 21 18 15 0 316 4.8611 185.37910 611.31542 576.62112 0.10376 2.87486 1.63503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64692 0.19791 -1.00000 - 13550 2017 8 21 18 15 5 177 4.8610 185.38243 611.33707 576.64222 0.10380 2.88364 1.63949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64656 0.19791 -1.00000 - 13551 2017 8 21 18 15 10 38 4.8610 185.38576 611.36107 576.66348 0.10383 2.89250 1.64335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64621 0.19791 -1.00000 - 13552 2017 8 21 18 15 14 899 4.8609 185.38909 611.38730 576.68492 0.10387 2.90189 1.64854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64586 0.19791 -1.00000 - 13553 2017 8 21 18 15 19 760 4.8609 185.39242 611.40946 576.70644 0.10391 2.91198 1.65334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64550 0.19791 -1.00000 - 13554 2017 8 21 18 15 24 621 4.8609 185.39576 611.43468 576.72809 0.10395 2.92243 1.65765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64515 0.19791 -1.00000 - 13555 2017 8 21 18 15 29 481 4.8608 185.39909 611.45849 576.74993 0.10399 2.93293 1.66401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64480 0.19790 -1.00000 - 13556 2017 8 21 18 15 34 342 4.8608 185.40242 611.48052 576.77176 0.10404 2.94335 1.66922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64444 0.19790 -1.00000 - 13557 2017 8 21 18 15 39 203 4.8607 185.40576 611.50573 576.79370 0.10408 2.95369 1.67542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64409 0.19790 -1.00000 - 13558 2017 8 21 18 15 44 64 4.8607 185.40909 611.53246 576.81575 0.10413 2.96401 1.68293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64373 0.19790 -1.00000 - 13559 2017 8 21 18 15 48 924 4.8606 185.41243 611.55407 576.83777 0.10417 2.97443 1.68824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64338 0.19790 -1.00000 - 13560 2017 8 21 18 15 53 785 4.8606 185.41577 611.57703 576.85984 0.10422 2.98508 1.69509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64303 0.19790 -1.00000 - 13561 2017 8 21 18 15 58 645 4.8606 185.41911 611.60148 576.88197 0.10427 2.99607 1.70243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64267 0.19790 -1.00000 - 13562 2017 8 21 18 16 3 506 4.8605 185.42245 611.62584 576.90406 0.10432 3.00748 1.70920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64232 0.19790 -1.00000 - 13563 2017 8 21 18 16 8 366 4.8605 185.42579 611.65003 576.92624 0.10436 3.01938 1.71702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64197 0.19790 -1.00000 - 13564 2017 8 21 18 16 13 227 4.8604 185.42914 611.67420 576.94846 0.10441 3.03177 1.72561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64161 0.19790 -1.00000 - 13565 2017 8 21 18 16 18 87 4.8604 185.43248 611.69843 576.97076 0.10446 3.04461 1.73403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64126 0.19790 -1.00000 - 13566 2017 8 21 18 16 22 948 4.8604 185.43583 611.72271 576.99313 0.10450 3.05781 1.74285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64091 0.19790 -1.00000 - 13567 2017 8 21 18 16 27 808 4.8603 185.43918 611.74696 577.01550 0.10454 3.07128 1.75232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64055 0.19790 -1.00000 - 13568 2017 8 21 18 16 32 668 4.8603 185.44253 611.77119 577.03787 0.10458 3.08486 1.76177 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64020 0.19790 -1.00000 - 13569 2017 8 21 18 16 37 528 4.8602 185.44588 611.79537 577.06026 0.10462 3.09841 1.77204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63985 0.19790 -1.00000 - 13570 2017 8 21 18 16 42 389 4.8602 185.44923 611.81962 577.08264 0.10465 3.11179 1.78259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63949 0.19790 -1.00000 - 13571 2017 8 21 18 16 47 249 4.8601 185.45258 611.84387 577.10501 0.10469 3.12487 1.79274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63914 0.19790 -1.00000 - 13572 2017 8 21 18 16 52 109 4.8601 185.45593 611.86812 577.12738 0.10472 3.13756 1.80301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63879 0.19790 -1.00000 - 13573 2017 8 21 18 16 56 969 4.8601 185.45929 611.89229 577.14975 0.10475 3.14980 1.81312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63843 0.19790 -1.00000 - 13574 2017 8 21 18 17 1 829 4.8600 185.46264 611.91645 577.17212 0.10479 3.16158 1.82318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63808 0.19790 -1.00000 - 13575 2017 8 21 18 17 6 689 4.8600 185.46600 611.94061 577.19456 0.10482 3.17290 1.83361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63773 0.19790 -1.00000 - 13576 2017 8 21 18 17 11 549 4.8599 185.46936 611.96484 577.21700 0.10485 3.18384 1.84291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63737 0.19790 -1.00000 - 13577 2017 8 21 18 17 16 409 4.8599 185.47272 611.98904 577.23955 0.10488 3.19450 1.85255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63702 0.19790 -1.00000 - 13578 2017 8 21 18 17 21 269 4.8598 185.47608 612.01139 577.26227 0.10491 3.20500 1.86122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63667 0.19790 -1.00000 - 13579 2017 8 21 18 17 26 128 4.8598 185.47944 612.03568 577.28516 0.10493 3.21550 1.86971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63631 0.19790 -1.00000 - 13580 2017 8 21 18 17 30 988 4.8598 185.48281 612.06031 577.30825 0.10496 3.22620 1.87856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63596 0.19790 -1.00000 - 13581 2017 8 21 18 17 35 848 4.8597 185.48617 612.08564 577.33147 0.10499 3.23727 1.88647 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63561 0.19790 -1.00000 - 13582 2017 8 21 18 17 40 708 4.8597 185.48954 612.11257 577.35489 0.10502 3.24893 1.89379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63525 0.19790 -1.00000 - 13583 2017 8 21 18 17 45 567 4.8596 185.49290 612.13813 577.37848 0.10505 3.26304 1.90375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63490 0.19789 -1.00000 - 13584 2017 8 21 18 17 50 427 4.8596 185.49627 612.16129 577.40211 0.10508 3.27931 1.91143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63455 0.19789 -1.00000 - 13585 2017 8 21 18 17 55 286 4.8596 185.49964 612.18831 577.42597 0.10511 3.29712 1.91874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63419 0.19789 -1.00000 - 13586 2017 8 21 18 18 0 146 4.8595 185.50301 612.21430 577.45000 0.10514 3.31654 1.92959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63384 0.19789 -1.00000 - 13587 2017 8 21 18 18 5 5 4.8595 185.50638 612.24009 577.47413 0.10517 3.33683 1.93640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63349 0.19789 -1.00000 - 13588 2017 8 21 18 18 9 865 4.8594 185.50975 612.26934 577.49852 0.10520 3.35638 1.94363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63313 0.19789 -1.00000 - 13589 2017 8 21 18 18 14 724 4.8594 185.51313 612.29609 577.52310 0.10523 3.36043 1.95384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63278 0.19789 -1.00000 - 13590 2017 8 21 18 18 19 583 4.8593 185.51650 612.32060 577.54777 0.10526 3.36808 1.96096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63242 0.19789 -1.00000 - 13591 2017 8 21 18 18 24 443 4.8593 185.51988 612.34885 577.57265 0.10529 3.39803 1.96961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63207 0.19789 -1.00000 - 13592 2017 8 21 18 18 29 302 4.8593 185.52325 612.37639 577.59763 0.10532 3.42426 1.98001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63172 0.19789 -1.00000 - 13593 2017 8 21 18 18 34 161 4.8592 185.52663 612.40381 577.62262 0.10535 3.45163 1.98816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63136 0.19789 -1.00000 - 13594 2017 8 21 18 18 39 20 4.8592 185.53001 612.43353 577.64779 0.10538 3.47854 1.99688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63101 0.19789 -1.00000 - 13595 2017 8 21 18 18 43 880 4.8591 185.53339 612.46125 577.67304 0.10541 3.50436 2.00816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63066 0.19789 -1.00000 - 13596 2017 8 21 18 18 48 739 4.8591 185.53677 612.48613 577.69828 0.10544 3.53062 2.01594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63030 0.19789 -1.00000 - 13597 2017 8 21 18 18 53 598 4.8590 185.54015 612.51554 577.72365 0.10547 3.55854 2.02624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62995 0.19789 -1.00000 - 13598 2017 8 21 18 18 58 457 4.8590 185.54353 612.54335 577.74905 0.10551 3.58826 2.03716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62960 0.19789 -1.00000 - 13599 2017 8 21 18 19 3 316 4.8590 185.54691 612.57253 577.77444 0.10554 3.61970 2.04546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62924 0.19789 -1.00000 - 13600 2017 8 21 18 19 8 175 4.8589 185.55029 612.60236 577.80001 0.10558 3.65265 2.05508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62889 0.19789 -1.00000 - 13601 2017 8 21 18 19 13 33 4.8589 185.55368 612.62955 577.82564 0.10561 3.68690 2.06622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62854 0.19789 -1.00000 - 13602 2017 8 21 18 19 17 892 4.8588 185.55706 612.65468 577.85135 0.10565 3.72221 2.07604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62818 0.19789 -1.00000 - 13603 2017 8 21 18 19 22 751 4.8588 185.56045 612.68231 577.87722 0.10568 3.75837 2.08722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62783 0.19789 -1.00000 - 13604 2017 8 21 18 19 27 610 4.8588 185.56383 612.71048 577.90311 0.10572 3.79518 2.09869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62748 0.19789 -1.00000 - 13605 2017 8 21 18 19 32 469 4.8587 185.56722 612.73874 577.92901 0.10575 3.83242 2.10854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62712 0.19789 -1.00000 - 13606 2017 8 21 18 19 37 327 4.8587 185.57061 612.76680 577.95494 0.10579 3.86990 2.11994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62677 0.19789 -1.00000 - 13607 2017 8 21 18 19 42 186 4.8586 185.57399 612.79476 577.98091 0.10582 3.90741 2.13141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62642 0.19789 -1.00000 - 13608 2017 8 21 18 19 47 44 4.8586 185.57738 612.82267 578.00695 0.10586 3.94475 2.14306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62606 0.19789 -1.00000 - 13609 2017 8 21 18 19 51 903 4.8585 185.58077 612.85071 578.03305 0.10590 3.98170 2.15424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62571 0.19789 -1.00000 - 13610 2017 8 21 18 19 56 761 4.8585 185.58416 612.87868 578.05915 0.10594 4.01808 2.16623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62536 0.19789 -1.00000 - 13611 2017 8 21 18 20 1 620 4.8585 185.58754 612.90659 578.08527 0.10598 4.05781 2.17779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62500 0.19788 -1.00000 - 13612 2017 8 21 18 20 6 478 4.8584 185.59093 612.93463 578.11149 0.10602 4.09820 2.18992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62465 0.19788 -1.00000 - 13613 2017 8 21 18 20 11 337 4.8584 185.59432 612.96273 578.13774 0.10607 4.13759 2.20211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62430 0.19788 -1.00000 - 13614 2017 8 21 18 20 16 195 4.8583 185.59772 612.99088 578.16404 0.10611 4.17554 2.21425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62394 0.19788 -1.00000 - 13615 2017 8 21 18 20 21 53 4.8583 185.60111 613.01907 578.19038 0.10615 4.21164 2.22621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62359 0.19788 -1.00000 - 13616 2017 8 21 18 20 25 912 4.8582 185.60450 613.04736 578.21674 0.10619 4.24556 2.23798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62324 0.19788 -1.00000 - 13617 2017 8 21 18 20 30 770 4.8582 185.60789 613.07561 578.24313 0.10623 4.27698 2.24899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62288 0.19788 -1.00000 - 13618 2017 8 21 18 20 35 628 4.8582 185.61129 613.10391 578.26956 0.10627 4.30577 2.25988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62253 0.19788 -1.00000 - 13619 2017 8 21 18 20 40 486 4.8581 185.61468 613.13228 578.29604 0.10631 4.33190 2.27049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62218 0.19788 -1.00000 - 13620 2017 8 21 18 20 45 344 4.8581 185.61808 613.16069 578.32256 0.10635 4.35540 2.28001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62182 0.19788 -1.00000 - 13621 2017 8 21 18 20 50 202 4.8580 185.62146 613.18919 578.34917 0.10640 4.37632 2.28945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62147 0.19788 -1.00000 - 13622 2017 8 21 18 20 55 60 4.8580 185.62484 613.21793 578.37593 0.10643 4.39473 2.29824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62112 0.19788 -1.00000 - 13623 2017 8 21 18 20 59 918 4.8579 185.62822 613.24528 578.40277 0.10647 4.41077 2.30614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62077 0.19788 -1.00000 - 13624 2017 8 21 18 21 4 776 4.8579 185.63159 613.27336 578.42982 0.10650 4.42455 2.31285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62041 0.19788 -1.00000 - 13625 2017 8 21 18 21 9 634 4.8579 185.63496 613.30273 578.45714 0.10652 4.43626 2.31931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62006 0.19788 -1.00000 - 13626 2017 8 21 18 21 14 492 4.8578 185.63832 613.33215 578.48471 0.10654 4.44605 2.32541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61971 0.19788 -1.00000 - 13627 2017 8 21 18 21 19 349 4.8578 185.64168 613.36392 578.51260 0.10656 4.45413 2.33166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61935 0.19788 -1.00000 - 13628 2017 8 21 18 21 24 207 4.8577 185.64505 613.39411 578.54067 0.10659 4.46067 2.33779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61900 0.19788 -1.00000 - 13629 2017 8 21 18 21 29 65 4.8577 185.64841 613.42459 578.56893 0.10661 4.46591 2.34428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61865 0.19788 -1.00000 - 13630 2017 8 21 18 21 33 922 4.8576 185.65177 613.45527 578.59736 0.10663 4.47009 2.35023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61829 0.19788 -1.00000 - 13631 2017 8 21 18 21 38 780 4.8576 185.65513 613.48635 578.62604 0.10665 4.47354 2.35575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61794 0.19788 -1.00000 - 13632 2017 8 21 18 21 43 638 4.8576 185.65849 613.51758 578.65489 0.10667 4.47658 2.36175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61759 0.19788 -1.00000 - 13633 2017 8 21 18 21 48 495 4.8575 185.66186 613.55155 578.68389 0.10669 4.47973 2.36569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61723 0.19788 -1.00000 - 13634 2017 8 21 18 21 53 353 4.8575 185.66522 613.58367 578.71305 0.10672 4.48331 2.37161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61688 0.19788 -1.00000 - 13635 2017 8 21 18 21 58 210 4.8574 185.66858 613.61486 578.74239 0.10675 4.48673 2.37605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61653 0.19788 -1.00000 - 13636 2017 8 21 18 22 3 67 4.8574 185.67195 613.64978 578.77188 0.10678 4.48940 2.37920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61617 0.19788 -1.00000 - 13637 2017 8 21 18 22 7 925 4.8574 185.67531 613.68273 578.80166 0.10682 4.49251 2.38502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61582 0.19788 -1.00000 - 13638 2017 8 21 18 22 12 782 4.8573 185.67868 613.71455 578.83152 0.10685 4.49714 2.38784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61547 0.19788 -1.00000 - 13639 2017 8 21 18 22 17 639 4.8573 185.68204 613.75034 578.86167 0.10688 4.50335 2.38982 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61511 0.19787 -1.00000 - 13640 2017 8 21 18 22 22 497 4.8572 185.68540 613.78428 578.89208 0.10692 4.51113 2.39625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61476 0.19787 -1.00000 - 13641 2017 8 21 18 22 27 354 4.8572 185.68877 613.81571 578.92253 0.10696 4.51991 2.39825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61441 0.19787 -1.00000 - 13642 2017 8 21 18 22 32 211 4.8571 185.69213 613.85258 578.95324 0.10699 4.52866 2.40012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61405 0.19787 -1.00000 - 13643 2017 8 21 18 22 37 68 4.8571 185.69549 613.88691 578.98412 0.10703 4.53604 2.40682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61370 0.19787 -1.00000 - 13644 2017 8 21 18 22 41 925 4.8571 185.69885 613.91957 579.01506 0.10706 4.53402 2.40764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61335 0.19787 -1.00000 - 13645 2017 8 21 18 22 46 782 4.8570 185.70221 613.95671 579.04617 0.10709 4.54410 2.40927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61299 0.19787 -1.00000 - 13646 2017 8 21 18 22 51 639 4.8570 185.70557 613.99182 579.07748 0.10712 4.55355 2.41536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61264 0.19787 -1.00000 - 13647 2017 8 21 18 22 56 496 4.8569 185.70893 614.02435 579.10881 0.10715 4.56248 2.41690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61229 0.19787 -1.00000 - 13648 2017 8 21 18 23 1 353 4.8569 185.71229 614.06193 579.14033 0.10718 4.56970 2.41901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61193 0.19787 -1.00000 - 13649 2017 8 21 18 23 6 210 4.8569 185.71564 614.09697 579.17214 0.10721 4.57578 2.42445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61158 0.19787 -1.00000 - 13650 2017 8 21 18 23 11 67 4.8568 185.71900 614.12989 579.20398 0.10723 4.58272 2.42581 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61123 0.19787 -1.00000 - 13651 2017 8 21 18 23 15 923 4.8568 185.72235 614.16780 579.23599 0.10724 4.58922 2.42874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61087 0.19787 -1.00000 - 13652 2017 8 21 18 23 20 780 4.8567 185.72571 614.20327 579.26823 0.10725 4.60111 2.43458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61052 0.19787 -1.00000 - 13653 2017 8 21 18 23 25 637 4.8567 185.72906 614.23873 579.30047 0.10725 4.61407 2.43640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61017 0.19787 -1.00000 - 13654 2017 8 21 18 23 30 493 4.8566 185.73240 614.27745 579.33289 0.10725 4.62577 2.43929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60981 0.19787 -1.00000 - 13655 2017 8 21 18 23 35 350 4.8566 185.73574 614.31364 579.36547 0.10726 4.63489 2.44479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60946 0.19787 -1.00000 - 13656 2017 8 21 18 23 40 207 4.8566 185.73908 614.34821 579.39811 0.10727 4.62698 2.44689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60911 0.19787 -1.00000 - 13657 2017 8 21 18 23 45 63 4.8565 185.74240 614.38629 579.43087 0.10728 4.62164 2.44992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60876 0.19787 -1.00000 - 13658 2017 8 21 18 23 49 920 4.8565 185.74574 614.42281 579.46374 0.10730 4.63072 2.45568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60840 0.19787 -1.00000 - 13659 2017 8 21 18 23 54 776 4.8564 185.74907 614.45980 579.49661 0.10732 4.63567 2.45801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60805 0.19787 -1.00000 - 13660 2017 8 21 18 23 59 632 4.8564 185.75241 614.49959 579.52959 0.10734 4.63868 2.46115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60770 0.19787 -1.00000 - 13661 2017 8 21 18 24 4 489 4.8564 185.75575 614.53667 579.56267 0.10737 4.63843 2.46622 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60734 0.19787 -1.00000 - 13662 2017 8 21 18 24 9 345 4.8563 185.75910 614.57211 579.59584 0.10740 4.62032 2.46856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60699 0.19787 -1.00000 - 13663 2017 8 21 18 24 14 201 4.8563 185.76244 614.61071 579.62910 0.10743 4.60421 2.47186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60664 0.19787 -1.00000 - 13664 2017 8 21 18 24 19 58 4.8562 185.76578 614.64777 579.66251 0.10745 4.60204 2.47597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60628 0.19787 -1.00000 - 13665 2017 8 21 18 24 23 914 4.8562 185.76913 614.68627 579.69595 0.10748 4.59496 2.47840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60593 0.19787 -1.00000 - 13666 2017 8 21 18 24 28 770 4.8561 185.77247 614.72666 579.72953 0.10752 4.58540 2.48174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60558 0.19787 -1.00000 - 13667 2017 8 21 18 24 33 626 4.8561 185.77581 614.76447 579.76322 0.10756 4.57224 2.48566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60522 0.19786 -1.00000 - 13668 2017 8 21 18 24 38 482 4.8561 185.77916 614.80005 579.79697 0.10761 4.54109 2.48843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60487 0.19786 -1.00000 - 13669 2017 8 21 18 24 43 338 4.8560 185.78250 614.83804 579.83082 0.10766 4.51254 2.49212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60452 0.19786 -1.00000 - 13670 2017 8 21 18 24 48 194 4.8560 185.78584 614.87653 579.86476 0.10770 4.49891 2.49564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60416 0.19786 -1.00000 - 13671 2017 8 21 18 24 53 50 4.8559 185.78919 614.91647 579.89875 0.10775 4.48163 2.49927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60381 0.19786 -1.00000 - 13672 2017 8 21 18 24 57 906 4.8559 185.79254 614.95753 579.93281 0.10780 4.46349 2.50315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60346 0.19786 -1.00000 - 13673 2017 8 21 18 25 2 762 4.8559 185.79589 614.99331 579.96694 0.10785 4.44363 2.50685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60311 0.19786 -1.00000 - 13674 2017 8 21 18 25 7 618 4.8558 185.79923 615.03107 580.00120 0.10791 4.42476 2.51048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60275 0.19786 -1.00000 - 13675 2017 8 21 18 25 12 473 4.8558 185.80258 615.06933 580.03559 0.10796 4.41241 2.51403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60240 0.19786 -1.00000 - 13676 2017 8 21 18 25 17 329 4.8557 185.80592 615.10847 580.07010 0.10800 4.40205 2.51904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60205 0.19786 -1.00000 - 13677 2017 8 21 18 25 22 185 4.8557 185.80926 615.15030 580.10471 0.10804 4.39430 2.52398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60169 0.19786 -1.00000 - 13678 2017 8 21 18 25 27 40 4.8556 185.81260 615.18910 580.13941 0.10808 4.39357 2.52781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60134 0.19786 -1.00000 - 13679 2017 8 21 18 25 31 896 4.8556 185.81594 615.22576 580.17424 0.10812 4.40616 2.53395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60099 0.19786 -1.00000 - 13680 2017 8 21 18 25 36 752 4.8556 185.81928 615.26520 580.20912 0.10816 4.42057 2.54148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60063 0.19786 -1.00000 - 13681 2017 8 21 18 25 41 607 4.8555 185.82262 615.30480 580.24405 0.10820 4.43651 2.54732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60028 0.19786 -1.00000 - 13682 2017 8 21 18 25 46 463 4.8555 185.82596 615.34450 580.27903 0.10823 4.45362 2.55494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59993 0.19786 -1.00000 - 13683 2017 8 21 18 25 51 318 4.8554 185.82930 615.38364 580.31404 0.10825 4.47160 2.56276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59957 0.19786 -1.00000 - 13684 2017 8 21 18 25 56 173 4.8554 185.83263 615.42170 580.34907 0.10826 4.49016 2.56941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59922 0.19786 -1.00000 - 13685 2017 8 21 18 26 1 29 4.8553 185.83597 615.46088 580.38420 0.10828 4.50912 2.57717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59887 0.19786 -1.00000 - 13686 2017 8 21 18 26 5 884 4.8553 185.83931 615.50093 580.41947 0.10831 4.52834 2.58547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59851 0.19786 -1.00000 - 13687 2017 8 21 18 26 10 739 4.8553 185.84265 615.54322 580.45483 0.10834 4.54801 2.59269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59816 0.19786 -1.00000 - 13688 2017 8 21 18 26 15 594 4.8552 185.84598 615.58280 580.49032 0.10835 4.56818 2.60144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59781 0.19786 -1.00000 - 13689 2017 8 21 18 26 20 450 4.8552 185.84931 615.61978 580.52588 0.10836 4.58781 2.61021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59746 0.19786 -1.00000 - 13690 2017 8 21 18 26 25 305 4.8551 185.85265 615.65886 580.56152 0.10836 4.60543 2.61815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59710 0.19786 -1.00000 - 13691 2017 8 21 18 26 30 160 4.8551 185.85599 615.69909 580.59721 0.10836 4.63309 2.62891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59675 0.19786 -1.00000 - 13692 2017 8 21 18 26 35 15 4.8551 185.85933 615.74035 580.63293 0.10837 4.66819 2.63814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59640 0.19786 -1.00000 - 13693 2017 8 21 18 26 39 870 4.8550 185.86267 615.78298 580.66877 0.10838 4.70201 2.64671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59604 0.19786 -1.00000 - 13694 2017 8 21 18 26 44 725 4.8550 185.86600 615.82281 580.70476 0.10838 4.73559 2.65753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59569 0.19786 -1.00000 - 13695 2017 8 21 18 26 49 580 4.8549 185.86934 615.86008 580.74075 0.10839 4.74987 2.66609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59534 0.19785 -1.00000 - 13696 2017 8 21 18 26 54 435 4.8549 185.87267 615.89965 580.77684 0.10838 4.77236 2.67457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59498 0.19785 -1.00000 - 13697 2017 8 21 18 26 59 290 4.8549 185.87601 615.94066 580.81302 0.10838 4.81737 2.68634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59463 0.19785 -1.00000 - 13698 2017 8 21 18 27 4 144 4.8548 185.87935 615.98246 580.84920 0.10838 4.85471 2.69464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59428 0.19785 -1.00000 - 13699 2017 8 21 18 27 8 999 4.8548 185.88269 616.02576 580.88548 0.10838 4.89004 2.70367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59392 0.19785 -1.00000 - 13700 2017 8 21 18 27 13 854 4.8547 185.88603 616.06604 580.92193 0.10838 4.92297 2.71460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59357 0.19785 -1.00000 - 13701 2017 8 21 18 27 18 709 4.8547 185.88937 616.10433 580.95846 0.10839 4.95424 2.72320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59322 0.19785 -1.00000 - 13702 2017 8 21 18 27 23 563 4.8546 185.89271 616.14771 580.99519 0.10839 4.98497 2.73135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59287 0.19785 -1.00000 - 13703 2017 8 21 18 27 28 418 4.8546 185.89605 616.18796 581.03211 0.10839 5.01523 2.74180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59251 0.19785 -1.00000 - 13704 2017 8 21 18 27 33 272 4.8546 185.89939 616.23095 581.06915 0.10840 5.04515 2.74987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59216 0.19785 -1.00000 - 13705 2017 8 21 18 27 38 127 4.8545 185.90272 616.27387 581.10635 0.10842 5.08009 2.75898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59181 0.19785 -1.00000 - 13706 2017 8 21 18 27 42 981 4.8545 185.90606 616.31212 581.14364 0.10845 5.11950 2.76839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59145 0.19785 -1.00000 - 13707 2017 8 21 18 27 47 836 4.8544 185.90940 616.35264 581.18115 0.10847 5.15668 2.77734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59110 0.19785 -1.00000 - 13708 2017 8 21 18 27 52 690 4.8544 185.91274 616.39546 581.21882 0.10851 5.19140 2.78930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59075 0.19785 -1.00000 - 13709 2017 8 21 18 27 57 545 4.8544 185.91608 616.43772 581.25657 0.10854 5.22364 2.79894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59039 0.19785 -1.00000 - 13710 2017 8 21 18 28 2 399 4.8543 185.91942 616.48074 581.29438 0.10857 5.25361 2.80833 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59004 0.19785 -1.00000 - 13711 2017 8 21 18 28 7 253 4.8543 185.92276 616.52358 581.33236 0.10861 5.28173 2.81889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58969 0.19785 -1.00000 - 13712 2017 8 21 18 28 12 108 4.8542 185.92610 616.56667 581.37042 0.10865 5.30848 2.82993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58934 0.19785 -1.00000 - 13713 2017 8 21 18 28 16 962 4.8542 185.92943 616.60973 581.40859 0.10870 5.33439 2.83935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58898 0.19785 -1.00000 - 13714 2017 8 21 18 28 21 816 4.8541 185.93277 616.65228 581.44691 0.10874 5.35999 2.85044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58863 0.19785 -1.00000 - 13715 2017 8 21 18 28 26 670 4.8541 185.93611 616.69599 581.48531 0.10879 5.38574 2.86176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58828 0.19785 -1.00000 - 13716 2017 8 21 18 28 31 524 4.8541 185.93944 616.74186 581.52373 0.10883 5.41204 2.87084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58792 0.19785 -1.00000 - 13717 2017 8 21 18 28 36 378 4.8540 185.94278 616.78517 581.56220 0.10887 5.43915 2.88222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58757 0.19785 -1.00000 - 13718 2017 8 21 18 28 41 232 4.8540 185.94611 616.82670 581.60069 0.10891 5.46724 2.89307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58722 0.19785 -1.00000 - 13719 2017 8 21 18 28 46 86 4.8539 185.94945 616.87109 581.63925 0.10895 5.49637 2.90299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58686 0.19785 -1.00000 - 13720 2017 8 21 18 28 50 940 4.8539 185.95278 616.91464 581.67783 0.10900 5.52659 2.91477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58651 0.19785 -1.00000 - 13721 2017 8 21 18 28 55 794 4.8539 185.95612 616.95890 581.71633 0.10904 5.55789 2.92488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58616 0.19785 -1.00000 - 13722 2017 8 21 18 29 0 648 4.8538 185.95945 617.00558 581.75485 0.10908 5.59040 2.93339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58581 0.19785 -1.00000 - 13723 2017 8 21 18 29 5 501 4.8538 185.96278 617.04886 581.79344 0.10912 5.62399 2.94472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58545 0.19784 -1.00000 - 13724 2017 8 21 18 29 10 355 4.8537 185.96611 617.08962 581.83200 0.10915 5.65745 2.95329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58510 0.19784 -1.00000 - 13725 2017 8 21 18 29 15 209 4.8537 185.96945 617.13358 581.87060 0.10918 5.68919 2.96069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58475 0.19784 -1.00000 - 13726 2017 8 21 18 29 20 62 4.8536 185.97278 617.17714 581.90930 0.10921 5.72002 2.97120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58439 0.19784 -1.00000 - 13727 2017 8 21 18 29 24 916 4.8536 185.97612 617.22126 581.94804 0.10925 5.75120 2.97808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58404 0.19784 -1.00000 - 13728 2017 8 21 18 29 29 770 4.8536 185.97945 617.26695 581.98687 0.10928 5.78197 2.98412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58369 0.19784 -1.00000 - 13729 2017 8 21 18 29 34 623 4.8535 185.98278 617.31039 582.02585 0.10931 5.81216 2.99434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58333 0.19784 -1.00000 - 13730 2017 8 21 18 29 39 477 4.8535 185.98611 617.35121 582.06483 0.10933 5.84111 3.00000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58298 0.19784 -1.00000 - 13731 2017 8 21 18 29 44 330 4.8534 185.98944 617.39815 582.10399 0.10935 5.86823 3.00511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58263 0.19784 -1.00000 - 13732 2017 8 21 18 29 49 183 4.8534 185.99276 617.44202 582.14329 0.10937 5.89328 3.01494 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58228 0.19784 -1.00000 - 13733 2017 8 21 18 29 54 37 4.8534 185.99609 617.48389 582.18254 0.10939 5.91616 3.01943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58192 0.19784 -1.00000 - 13734 2017 8 21 18 29 58 890 4.8533 185.99942 617.53086 582.22197 0.10941 5.93690 3.02425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58157 0.19784 -1.00000 - 13735 2017 8 21 18 30 3 743 4.8533 186.00243 617.57555 582.26157 0.10943 5.95549 3.03252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58122 0.19784 -1.00000 - 13736 2017 8 21 18 30 8 597 4.8532 186.00322 617.61713 582.30117 0.10945 5.97112 3.03599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58086 0.19784 -1.00000 - 13737 2017 8 21 18 30 13 450 4.8532 186.00401 617.66441 582.34095 0.10946 5.98278 3.04116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58051 0.19784 -1.00000 - 13738 2017 8 21 18 30 18 303 4.8532 186.00480 617.70887 582.38097 0.10946 5.97458 3.04748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58016 0.19784 -1.00000 - 13739 2017 8 21 18 30 23 156 4.8531 186.00559 617.75195 582.42099 0.10947 5.96835 3.05016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57981 0.19784 -1.00000 - 13740 2017 8 21 18 30 28 9 4.8531 186.00638 617.79856 582.46118 0.10948 5.97680 3.05526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57945 0.19784 -1.00000 - 13741 2017 8 21 18 30 32 862 4.8530 186.00718 617.84590 582.50150 0.10949 5.97927 3.06132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57910 0.19784 -1.00000 - 13742 2017 8 21 18 30 37 715 4.8530 186.00798 617.89126 582.54182 0.10949 5.97898 3.06435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57875 0.19784 -1.00000 - 13743 2017 8 21 18 30 42 568 4.8529 186.00878 617.93700 582.58217 0.10949 5.97521 3.06878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57839 0.19784 -1.00000 - 13744 2017 8 21 18 30 47 421 4.8529 186.00958 617.98257 582.62265 0.10949 5.96781 3.07505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57804 0.19784 -1.00000 - 13745 2017 8 21 18 30 52 274 4.8529 186.01038 618.02594 582.66307 0.10949 5.95742 3.07796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57769 0.19784 -1.00000 - 13746 2017 8 21 18 30 57 127 4.8528 186.01119 618.07286 582.70359 0.10950 5.94622 3.08275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57733 0.19784 -1.00000 - 13747 2017 8 21 18 31 1 979 4.8528 186.01200 618.11775 582.74419 0.10951 5.93411 3.08854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57698 0.19784 -1.00000 - 13748 2017 8 21 18 31 6 832 4.8527 186.01281 618.16388 582.78483 0.10951 5.92142 3.09194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57663 0.19784 -1.00000 - 13749 2017 8 21 18 31 11 685 4.8527 186.01362 618.20981 582.82555 0.10952 5.90849 3.09666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57628 0.19784 -1.00000 - 13750 2017 8 21 18 31 16 538 4.8527 186.01444 618.25573 582.86633 0.10953 5.89565 3.10216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57592 0.19784 -1.00000 - 13751 2017 8 21 18 31 21 390 4.8526 186.01525 618.30018 582.90713 0.10955 5.88317 3.10580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57557 0.19783 -1.00000 - 13752 2017 8 21 18 31 26 243 4.8526 186.01607 618.34656 582.94802 0.10956 5.87135 3.11109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57522 0.19783 -1.00000 - 13753 2017 8 21 18 31 31 95 4.8525 186.01689 618.39290 582.98903 0.10958 5.86047 3.11677 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57486 0.19783 -1.00000 - 13754 2017 8 21 18 31 35 948 4.8525 186.01770 618.43910 583.03007 0.10960 5.85078 3.12092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57451 0.19783 -1.00000 - 13755 2017 8 21 18 31 40 800 4.8525 186.01853 618.48497 583.07119 0.10962 5.84253 3.12595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57416 0.19783 -1.00000 - 13756 2017 8 21 18 31 45 653 4.8524 186.01935 618.53086 583.11241 0.10964 5.83854 3.13145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57381 0.19783 -1.00000 - 13757 2017 8 21 18 31 50 505 4.8524 186.02017 618.57707 583.15365 0.10967 5.83971 3.13625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57345 0.19783 -1.00000 - 13758 2017 8 21 18 31 55 357 4.8523 186.02099 618.62341 583.19494 0.10970 5.84215 3.14216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57310 0.19783 -1.00000 - 13759 2017 8 21 18 32 0 210 4.8523 186.02182 618.66995 583.23634 0.10973 5.84600 3.14779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57275 0.19783 -1.00000 - 13760 2017 8 21 18 32 5 62 4.8522 186.02264 618.71667 583.27782 0.10976 5.85132 3.15320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57239 0.19783 -1.00000 - 13761 2017 8 21 18 32 9 914 4.8522 186.02347 618.76343 583.31937 0.10980 5.85817 3.15916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57204 0.19783 -1.00000 - 13762 2017 8 21 18 32 14 766 4.8522 186.02429 618.81028 583.36099 0.10983 5.86658 3.16515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57169 0.19783 -1.00000 - 13763 2017 8 21 18 32 19 618 4.8521 186.02512 618.85728 583.40272 0.10986 5.87658 3.17087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57134 0.19783 -1.00000 - 13764 2017 8 21 18 32 24 470 4.8521 186.02595 618.90442 583.44451 0.10989 5.88814 3.17704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57098 0.19783 -1.00000 - 13765 2017 8 21 18 32 29 322 4.8520 186.02677 618.95171 583.48639 0.10993 5.90127 3.18225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57063 0.19783 -1.00000 - 13766 2017 8 21 18 32 34 174 4.8520 186.02760 618.99923 583.52838 0.10996 5.91595 3.18725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57028 0.19783 -1.00000 - 13767 2017 8 21 18 32 39 26 4.8520 186.02843 619.04693 583.57053 0.10999 5.93212 3.19278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56992 0.19783 -1.00000 - 13768 2017 8 21 18 32 43 878 4.8519 186.02926 619.09227 583.61274 0.11002 5.94972 3.19650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56957 0.19783 -1.00000 - 13769 2017 8 21 18 32 48 730 4.8519 186.03009 619.14186 583.65516 0.11005 5.96866 3.20066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56922 0.19783 -1.00000 - 13770 2017 8 21 18 32 53 582 4.8518 186.03091 619.18813 583.69775 0.11008 5.98882 3.20480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56887 0.19783 -1.00000 - 13771 2017 8 21 18 32 58 434 4.8518 186.03174 619.23884 583.74048 0.11011 6.01007 3.20751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56851 0.19783 -1.00000 - 13772 2017 8 21 18 33 3 286 4.8517 186.03257 619.29055 583.78346 0.11014 6.03227 3.21098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56816 0.19783 -1.00000 - 13773 2017 8 21 18 33 8 137 4.8517 186.03341 619.33739 583.82664 0.11016 6.05531 3.21500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56781 0.19783 -1.00000 - 13774 2017 8 21 18 33 12 989 4.8517 186.03424 619.38376 583.86994 0.11018 6.07911 3.21595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56745 0.19783 -1.00000 - 13775 2017 8 21 18 33 17 841 4.8516 186.03508 619.43328 583.91353 0.11020 6.10379 3.21971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56710 0.19783 -1.00000 - 13776 2017 8 21 18 33 22 692 4.8516 186.03591 619.48370 583.95732 0.11021 6.12912 3.22196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56675 0.19783 -1.00000 - 13777 2017 8 21 18 33 27 544 4.8515 186.03675 619.53757 584.00128 0.11022 6.15364 3.22189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56640 0.19783 -1.00000 - 13778 2017 8 21 18 33 32 395 4.8515 186.03759 619.59014 584.04548 0.11023 6.17770 3.22403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56604 0.19782 -1.00000 - 13779 2017 8 21 18 33 37 247 4.8515 186.03843 619.63779 584.08986 0.11024 6.19555 3.22432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56569 0.19782 -1.00000 - 13780 2017 8 21 18 33 42 98 4.8514 186.03927 619.68938 584.13448 0.11025 6.21387 3.22446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56534 0.19782 -1.00000 - 13781 2017 8 21 18 33 46 949 4.8514 186.04011 619.74048 584.17936 0.11026 6.22995 3.22716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56499 0.19782 -1.00000 - 13782 2017 8 21 18 33 51 801 4.8513 186.04096 619.79374 584.22424 0.11026 6.25526 3.22685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56463 0.19782 -1.00000 - 13783 2017 8 21 18 33 56 652 4.8513 186.04180 619.84945 584.26929 0.11027 6.27998 3.22709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56428 0.19782 -1.00000 - 13784 2017 8 21 18 34 1 503 4.8513 186.04265 619.90247 584.31446 0.11028 6.30223 3.22962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56393 0.19782 -1.00000 - 13785 2017 8 21 18 34 6 355 4.8512 186.04350 619.95253 584.35971 0.11029 6.31930 3.22851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56357 0.19782 -1.00000 - 13786 2017 8 21 18 34 11 206 4.8512 186.04435 620.00599 584.40513 0.11030 6.31340 3.22809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56322 0.19782 -1.00000 - 13787 2017 8 21 18 34 16 57 4.8511 186.04520 620.05644 584.45071 0.11031 6.30822 3.23014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56287 0.19782 -1.00000 - 13788 2017 8 21 18 34 20 908 4.8511 186.04605 620.11179 584.49623 0.11032 6.31857 3.22918 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56252 0.19782 -1.00000 - 13789 2017 8 21 18 34 25 759 4.8511 186.04691 620.16813 584.54188 0.11034 6.32270 3.22901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56216 0.19782 -1.00000 - 13790 2017 8 21 18 34 30 610 4.8510 186.04776 620.22158 584.58759 0.11036 6.32406 3.23051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56181 0.19782 -1.00000 - 13791 2017 8 21 18 34 35 461 4.8510 186.04862 620.27342 584.63328 0.11038 6.32124 3.23012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56146 0.19782 -1.00000 - 13792 2017 8 21 18 34 40 312 4.8509 186.04947 620.32478 584.67903 0.11041 6.31432 3.22928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56110 0.19782 -1.00000 - 13793 2017 8 21 18 34 45 163 4.8509 186.05033 620.37696 584.72491 0.11044 6.30468 3.23078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56075 0.19782 -1.00000 - 13794 2017 8 21 18 34 50 14 4.8508 186.05119 620.43148 584.77071 0.11046 6.29310 3.22983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56040 0.19782 -1.00000 - 13795 2017 8 21 18 34 54 864 4.8508 186.05205 620.48766 584.81657 0.11049 6.28013 3.23081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56005 0.19782 -1.00000 - 13796 2017 8 21 18 34 59 715 4.8508 186.05291 620.53968 584.86244 0.11052 6.26617 3.23301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55969 0.19782 -1.00000 - 13797 2017 8 21 18 35 4 566 4.8507 186.05377 620.58902 584.90827 0.11055 6.25149 3.23273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55934 0.19782 -1.00000 - 13798 2017 8 21 18 35 9 417 4.8507 186.05463 620.64203 584.95428 0.11057 6.23625 3.23375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55899 0.19782 -1.00000 - 13799 2017 8 21 18 35 14 267 4.8506 186.05550 620.69486 585.00025 0.11059 6.22062 3.23574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55864 0.19782 -1.00000 - 13800 2017 8 21 18 35 19 118 4.8506 186.05636 620.74871 585.04624 0.11061 6.20473 3.23596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55828 0.19782 -1.00000 - 13801 2017 8 21 18 35 23 968 4.8506 186.05723 620.80458 585.09228 0.11063 6.18869 3.23706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55793 0.19782 -1.00000 - 13802 2017 8 21 18 35 28 819 4.8505 186.05809 620.85610 585.13844 0.11064 6.17258 3.23921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55758 0.19782 -1.00000 - 13803 2017 8 21 18 35 33 669 4.8505 186.05896 620.90602 585.18460 0.11065 6.15651 3.24120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55722 0.19782 -1.00000 - 13804 2017 8 21 18 35 38 520 4.8504 186.05983 620.95865 585.23086 0.11066 6.14059 3.24296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55687 0.19782 -1.00000 - 13805 2017 8 21 18 35 43 370 4.8504 186.06070 621.01124 585.27717 0.11067 6.12494 3.24671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55652 0.19782 -1.00000 - 13806 2017 8 21 18 35 48 221 4.8504 186.06157 621.06387 585.32346 0.11068 6.10970 3.24917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55617 0.19781 -1.00000 - 13807 2017 8 21 18 35 53 71 4.8503 186.06244 621.11656 585.36972 0.11069 6.09502 3.25258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55581 0.19781 -1.00000 - 13808 2017 8 21 18 35 57 921 4.8503 186.06331 621.16931 585.41607 0.11070 6.08104 3.25701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55546 0.19781 -1.00000 - 13809 2017 8 21 18 36 2 771 4.8502 186.06419 621.22231 585.46238 0.11071 6.06786 3.26137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55511 0.19781 -1.00000 - 13810 2017 8 21 18 36 7 622 4.8502 186.06506 621.27531 585.50875 0.11072 6.05561 3.26644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55476 0.19781 -1.00000 - 13811 2017 8 21 18 36 12 472 4.8502 186.06594 621.32840 585.55514 0.11073 6.04437 3.27168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55440 0.19781 -1.00000 - 13812 2017 8 21 18 36 17 322 4.8501 186.06682 621.38160 585.60158 0.11074 6.03417 3.27719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55405 0.19781 -1.00000 - 13813 2017 8 21 18 36 22 172 4.8501 186.06770 621.43482 585.64803 0.11076 6.02505 3.28323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55370 0.19781 -1.00000 - 13814 2017 8 21 18 36 27 22 4.8500 186.06858 621.48804 585.69450 0.11078 6.01703 3.28942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55334 0.19781 -1.00000 - 13815 2017 8 21 18 36 31 872 4.8500 186.06946 621.54137 585.74098 0.11079 6.01013 3.29604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55299 0.19781 -1.00000 - 13816 2017 8 21 18 36 36 722 4.8499 186.07035 621.59475 585.78746 0.11081 6.00438 3.30263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55264 0.19781 -1.00000 - 13817 2017 8 21 18 36 41 572 4.8499 186.07123 621.64814 585.83393 0.11083 5.99986 3.30904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55229 0.19781 -1.00000 - 13818 2017 8 21 18 36 46 422 4.8499 186.07212 621.70150 585.88040 0.11085 5.99664 3.31570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55193 0.19781 -1.00000 - 13819 2017 8 21 18 36 51 272 4.8498 186.07300 621.75491 585.92687 0.11086 5.99488 3.32265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55158 0.19781 -1.00000 - 13820 2017 8 21 18 36 56 121 4.8498 186.07389 621.80833 585.97336 0.11088 5.99472 3.32924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55123 0.19781 -1.00000 - 13821 2017 8 21 18 37 0 971 4.8497 186.07477 621.86207 586.01988 0.11090 5.99637 3.33530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55088 0.19781 -1.00000 - 13822 2017 8 21 18 37 5 821 4.8497 186.07566 621.91425 586.06649 0.11092 6.00101 3.34255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55052 0.19781 -1.00000 - 13823 2017 8 21 18 37 10 670 4.8497 186.07655 621.96658 586.11320 0.11094 6.01176 3.34815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55017 0.19781 -1.00000 - 13824 2017 8 21 18 37 15 520 4.8496 186.07744 622.02040 586.16004 0.11096 6.02538 3.35603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54982 0.19781 -1.00000 - 13825 2017 8 21 18 37 20 370 4.8496 186.07834 622.07638 586.20693 0.11098 6.04205 3.36232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54946 0.19781 -1.00000 - 13826 2017 8 21 18 37 25 219 4.8495 186.07923 622.13351 586.25396 0.11100 6.06197 3.36809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54911 0.19781 -1.00000 - 13827 2017 8 21 18 37 30 69 4.8495 186.08012 622.18640 586.30109 0.11102 6.08536 3.37464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54876 0.19781 -1.00000 - 13828 2017 8 21 18 37 34 918 4.8495 186.08102 622.24139 586.34840 0.11104 6.11243 3.37981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54841 0.19781 -1.00000 - 13829 2017 8 21 18 37 39 768 4.8494 186.08191 622.29500 586.39590 0.11105 6.14318 3.38632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54805 0.19781 -1.00000 - 13830 2017 8 21 18 37 44 617 4.8494 186.08280 622.34907 586.44350 0.11107 6.17674 3.39120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54770 0.19781 -1.00000 - 13831 2017 8 21 18 37 49 466 4.8493 186.08370 622.40715 586.49119 0.11109 6.21130 3.39608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54735 0.19781 -1.00000 - 13832 2017 8 21 18 37 54 316 4.8493 186.08459 622.46182 586.53905 0.11111 6.24755 3.40212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54700 0.19781 -1.00000 - 13833 2017 8 21 18 37 59 165 4.8493 186.08549 622.51713 586.58700 0.11113 6.26115 3.40680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54664 0.19781 -1.00000 - 13834 2017 8 21 18 38 4 14 4.8492 186.08639 622.57206 586.63502 0.11115 6.29245 3.41252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54629 0.19780 -1.00000 - 13835 2017 8 21 18 38 8 863 4.8492 186.08729 622.62462 586.68310 0.11117 6.33942 3.41949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54594 0.19780 -1.00000 - 13836 2017 8 21 18 38 13 712 4.8491 186.08819 622.68285 586.73128 0.11118 6.38627 3.42493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54559 0.19780 -1.00000 - 13837 2017 8 21 18 38 18 561 4.8491 186.08910 622.74216 586.77963 0.11120 6.43323 3.43136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54523 0.19780 -1.00000 - 13838 2017 8 21 18 38 23 410 4.8490 186.09000 622.79729 586.82797 0.11121 6.48128 3.43826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54488 0.19780 -1.00000 - 13839 2017 8 21 18 38 28 259 4.8490 186.09090 622.85265 586.87632 0.11122 6.52895 3.44375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54453 0.19780 -1.00000 - 13840 2017 8 21 18 38 33 108 4.8490 186.09181 622.90781 586.92478 0.11123 6.57642 3.45153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54417 0.19780 -1.00000 - 13841 2017 8 21 18 38 37 957 4.8489 186.09272 622.96410 586.97326 0.11124 6.62372 3.45840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54382 0.19780 -1.00000 - 13842 2017 8 21 18 38 42 806 4.8489 186.09363 623.02020 587.02173 0.11124 6.67042 3.46466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54347 0.19780 -1.00000 - 13843 2017 8 21 18 38 47 655 4.8488 186.09454 623.07556 587.07021 0.11125 6.71625 3.47286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54312 0.19780 -1.00000 - 13844 2017 8 21 18 38 52 504 4.8488 186.09545 623.13417 587.11871 0.11125 6.76086 3.47959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54276 0.19780 -1.00000 - 13845 2017 8 21 18 38 57 353 4.8488 186.09637 623.18854 587.16720 0.11124 6.80805 3.48601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54241 0.19780 -1.00000 - 13846 2017 8 21 18 39 2 201 4.8487 186.09728 623.24046 587.21567 0.11124 6.86555 3.49373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54206 0.19780 -1.00000 - 13847 2017 8 21 18 39 7 50 4.8487 186.09820 623.29410 587.26425 0.11124 6.92091 3.50139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54171 0.19780 -1.00000 - 13848 2017 8 21 18 39 11 899 4.8486 186.09912 623.34985 587.31287 0.11124 6.97286 3.50779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54135 0.19780 -1.00000 - 13849 2017 8 21 18 39 16 747 4.8486 186.10004 623.40521 587.36147 0.11124 7.02019 3.51528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54100 0.19780 -1.00000 - 13850 2017 8 21 18 39 21 596 4.8486 186.10096 623.46038 587.41009 0.11124 7.06221 3.52221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54065 0.19780 -1.00000 - 13851 2017 8 21 18 39 26 444 4.8485 186.10189 623.51565 587.45875 0.11124 7.09857 3.52964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54030 0.19780 -1.00000 - 13852 2017 8 21 18 39 31 293 4.8485 186.10281 623.57097 587.50747 0.11125 7.12905 3.53620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53994 0.19780 -1.00000 - 13853 2017 8 21 18 39 36 141 4.8484 186.10374 623.62625 587.55620 0.11125 7.15356 3.54345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53959 0.19780 -1.00000 - 13854 2017 8 21 18 39 40 990 4.8484 186.10467 623.68151 587.60493 0.11126 7.17210 3.55088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53924 0.19780 -1.00000 - 13855 2017 8 21 18 39 45 838 4.8484 186.10559 623.73694 587.65369 0.11127 7.18478 3.55708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53889 0.19780 -1.00000 - 13856 2017 8 21 18 39 50 686 4.8483 186.10652 623.79238 587.70250 0.11129 7.19175 3.56390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53853 0.19780 -1.00000 - 13857 2017 8 21 18 39 55 535 4.8483 186.10745 623.84791 587.75134 0.11131 7.19321 3.57122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53818 0.19780 -1.00000 - 13858 2017 8 21 18 40 0 383 4.8482 186.10838 623.90359 587.80020 0.11133 7.18950 3.57802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53783 0.19780 -1.00000 - 13859 2017 8 21 18 40 5 231 4.8482 186.10931 623.95941 587.84913 0.11136 7.18104 3.58448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53748 0.19780 -1.00000 - 13860 2017 8 21 18 40 10 79 4.8482 186.11025 624.01537 587.89807 0.11138 7.16826 3.59088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53712 0.19780 -1.00000 - 13861 2017 8 21 18 40 14 927 4.8481 186.11118 624.07135 587.94703 0.11141 7.15164 3.59629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53677 0.19780 -1.00000 - 13862 2017 8 21 18 40 19 775 4.8481 186.11212 624.12732 587.99605 0.11143 7.13165 3.60155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53642 0.19779 -1.00000 - 13863 2017 8 21 18 40 24 623 4.8480 186.11305 624.18340 588.04510 0.11146 7.10881 3.60724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53607 0.19779 -1.00000 - 13864 2017 8 21 18 40 29 471 4.8480 186.11398 624.23951 588.09417 0.11148 7.08383 3.61156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53571 0.19779 -1.00000 - 13865 2017 8 21 18 40 34 319 4.8480 186.11492 624.29577 588.14334 0.11151 7.05742 3.61629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53536 0.19779 -1.00000 - 13866 2017 8 21 18 40 39 167 4.8479 186.11585 624.35215 588.19258 0.11154 7.03028 3.62071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53501 0.19779 -1.00000 - 13867 2017 8 21 18 40 44 15 4.8479 186.11679 624.40594 588.24188 0.11156 7.00308 3.62302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53466 0.19779 -1.00000 - 13868 2017 8 21 18 40 48 863 4.8478 186.11773 624.46328 588.29142 0.11158 6.97648 3.62749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53430 0.19779 -1.00000 - 13869 2017 8 21 18 40 53 711 4.8478 186.11866 624.51878 588.34105 0.11160 6.95111 3.62927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53395 0.19779 -1.00000 - 13870 2017 8 21 18 40 58 559 4.8478 186.11960 624.57924 588.39084 0.11161 6.92744 3.63026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53360 0.19779 -1.00000 - 13871 2017 8 21 18 41 3 406 4.8477 186.12054 624.63904 588.44086 0.11162 6.90585 3.63378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53324 0.19779 -1.00000 - 13872 2017 8 21 18 41 8 254 4.8477 186.12148 624.69425 588.49110 0.11163 6.88673 3.63377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53289 0.19779 -1.00000 - 13873 2017 8 21 18 41 13 102 4.8476 186.12241 624.75181 588.54152 0.11165 6.87045 3.63429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53254 0.19779 -1.00000 - 13874 2017 8 21 18 41 17 949 4.8476 186.12336 624.80897 588.59222 0.11166 6.85796 3.63759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53219 0.19779 -1.00000 - 13875 2017 8 21 18 41 22 797 4.8476 186.12430 624.86727 588.64307 0.11167 6.86087 3.63743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53183 0.19779 -1.00000 - 13876 2017 8 21 18 41 27 644 4.8475 186.12525 624.92966 588.69408 0.11167 6.86462 3.63849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53148 0.19779 -1.00000 - 13877 2017 8 21 18 41 32 492 4.8475 186.12620 624.98792 588.74539 0.11166 6.84509 3.64115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53113 0.19779 -1.00000 - 13878 2017 8 21 18 41 37 339 4.8474 186.12714 625.04840 588.79679 0.11166 6.85203 3.63991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53078 0.19779 -1.00000 - 13879 2017 8 21 18 41 42 187 4.8474 186.12808 625.10703 588.84840 0.11166 6.86160 3.64239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53042 0.19779 -1.00000 - 13880 2017 8 21 18 41 47 34 4.8474 186.12903 625.16488 588.90016 0.11167 6.87321 3.64399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53007 0.19779 -1.00000 - 13881 2017 8 21 18 41 51 881 4.8473 186.12998 625.22853 588.95203 0.11168 6.89027 3.64387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52972 0.19779 -1.00000 - 13882 2017 8 21 18 41 56 728 4.8473 186.13093 625.28831 589.00406 0.11169 6.90734 3.64641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52937 0.19779 -1.00000 - 13883 2017 8 21 18 42 1 576 4.8472 186.13188 625.34990 589.05617 0.11169 6.92431 3.64754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52901 0.19779 -1.00000 - 13884 2017 8 21 18 42 6 423 4.8472 186.13284 625.40984 589.10852 0.11170 6.94226 3.64892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52866 0.19779 -1.00000 - 13885 2017 8 21 18 42 11 270 4.8472 186.13380 625.46805 589.16100 0.11171 6.96196 3.65104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52831 0.19779 -1.00000 - 13886 2017 8 21 18 42 16 117 4.8471 186.13475 625.52970 589.21360 0.11171 6.98261 3.65268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52796 0.19779 -1.00000 - 13887 2017 8 21 18 42 20 964 4.8471 186.13571 625.59409 589.26640 0.11172 7.00358 3.65540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52760 0.19779 -1.00000 - 13888 2017 8 21 18 42 25 811 4.8470 186.13667 625.65447 589.31930 0.11173 7.02448 3.65821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52725 0.19779 -1.00000 - 13889 2017 8 21 18 42 30 658 4.8470 186.13763 625.71789 589.37228 0.11175 7.04505 3.65938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52690 0.19779 -1.00000 - 13890 2017 8 21 18 42 35 505 4.8470 186.13859 625.77863 589.42545 0.11177 7.06504 3.66323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52655 0.19778 -1.00000 - 13891 2017 8 21 18 42 40 352 4.8469 186.13956 625.83820 589.47868 0.11178 7.09071 3.66658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52619 0.19778 -1.00000 - 13892 2017 8 21 18 42 45 199 4.8469 186.14053 625.89770 589.53200 0.11178 7.12194 3.66795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52584 0.19778 -1.00000 - 13893 2017 8 21 18 42 50 46 4.8468 186.14150 625.95952 589.58542 0.11176 7.15161 3.67264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52549 0.19778 -1.00000 - 13894 2017 8 21 18 42 54 893 4.8468 186.14246 626.02472 589.63888 0.11176 7.17881 3.67466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52514 0.19778 -1.00000 - 13895 2017 8 21 18 42 59 739 4.8468 186.14342 626.08948 589.69240 0.11178 7.20306 3.67641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52479 0.19778 -1.00000 - 13896 2017 8 21 18 43 4 586 4.8467 186.14439 626.15121 589.74600 0.11181 7.22347 3.68036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52443 0.19778 -1.00000 - 13897 2017 8 21 18 43 9 433 4.8467 186.14537 626.20979 589.79964 0.11183 7.23858 3.68241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52408 0.19778 -1.00000 - 13898 2017 8 21 18 43 14 279 4.8466 186.14635 626.27285 589.85341 0.11182 7.24897 3.68472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52373 0.19778 -1.00000 - 13899 2017 8 21 18 43 19 126 4.8466 186.14734 626.33552 589.90730 0.11180 7.25583 3.68986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52338 0.19778 -1.00000 - 13900 2017 8 21 18 43 23 973 4.8466 186.14831 626.39966 589.96109 0.11178 7.25889 3.69222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52302 0.19778 -1.00000 - 13901 2017 8 21 18 43 28 819 4.8465 186.14928 626.46598 590.01493 0.11178 7.25855 3.69460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52267 0.19778 -1.00000 - 13902 2017 8 21 18 43 33 665 4.8465 186.15026 626.52833 590.06890 0.11178 7.25504 3.70005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52232 0.19778 -1.00000 - 13903 2017 8 21 18 43 38 512 4.8464 186.15124 626.58733 590.12276 0.11180 7.24804 3.70292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52197 0.19778 -1.00000 - 13904 2017 8 21 18 43 43 358 4.8464 186.15222 626.65065 590.17670 0.11182 7.23751 3.70556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52161 0.19778 -1.00000 - 13905 2017 8 21 18 43 48 205 4.8464 186.15321 626.71372 590.23075 0.11184 7.22371 3.71132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52126 0.19778 -1.00000 - 13906 2017 8 21 18 43 53 51 4.8463 186.15420 626.77745 590.28470 0.11184 7.20712 3.71443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52091 0.19778 -1.00000 - 13907 2017 8 21 18 43 57 897 4.8463 186.15518 626.84407 590.33863 0.11184 7.18843 3.71777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52056 0.19778 -1.00000 - 13908 2017 8 21 18 44 2 743 4.8462 186.15617 626.90653 590.39264 0.11182 7.16832 3.72324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52020 0.19778 -1.00000 - 13909 2017 8 21 18 44 7 590 4.8462 186.15716 626.96621 590.44653 0.11181 7.14737 3.72752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51985 0.19778 -1.00000 - 13910 2017 8 21 18 44 12 436 4.8462 186.15814 627.02897 590.50044 0.11182 7.12612 3.73154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51950 0.19778 -1.00000 - 13911 2017 8 21 18 44 17 282 4.8461 186.15911 627.09166 590.55440 0.11185 7.10507 3.73792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51915 0.19778 -1.00000 - 13912 2017 8 21 18 44 22 128 4.8461 186.16010 627.15443 590.60827 0.11191 7.08464 3.74275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51879 0.19778 -1.00000 - 13913 2017 8 21 18 44 26 974 4.8460 186.16109 627.21703 590.66204 0.11197 7.06523 3.74790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51844 0.19778 -1.00000 - 13914 2017 8 21 18 44 31 820 4.8460 186.16210 627.27941 590.71583 0.11199 7.04721 3.75441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51809 0.19778 -1.00000 - 13915 2017 8 21 18 44 36 666 4.8460 186.16310 627.34204 590.76955 0.11199 7.03087 3.76095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51774 0.19778 -1.00000 - 13916 2017 8 21 18 44 41 512 4.8459 186.16409 627.40456 590.82323 0.11198 7.01649 3.76749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51738 0.19778 -1.00000 - 13917 2017 8 21 18 44 46 358 4.8459 186.16507 627.46697 590.87685 0.11198 7.00434 3.77492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51703 0.19778 -1.00000 - 13918 2017 8 21 18 44 51 204 4.8458 186.16605 627.52933 590.93039 0.11200 6.99464 3.78245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51668 0.19777 -1.00000 - 13919 2017 8 21 18 44 56 49 4.8458 186.16703 627.59152 590.98386 0.11205 6.98764 3.79043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51633 0.19777 -1.00000 - 13920 2017 8 21 18 45 0 895 4.8458 186.16802 627.65358 591.03724 0.11211 6.98358 3.79898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51597 0.19777 -1.00000 - 13921 2017 8 21 18 45 5 741 4.8457 186.16902 627.71555 591.09055 0.11215 6.98988 3.80723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51562 0.19777 -1.00000 - 13922 2017 8 21 18 45 10 587 4.8457 186.17002 627.77737 591.14378 0.11217 7.00107 3.81557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51527 0.19777 -1.00000 - 13923 2017 8 21 18 45 15 432 4.8456 186.17101 627.83909 591.19695 0.11216 7.01544 3.82380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51492 0.19777 -1.00000 - 13924 2017 8 21 18 45 20 278 4.8456 186.17200 627.90055 591.25003 0.11215 7.03296 3.83164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51456 0.19777 -1.00000 - 13925 2017 8 21 18 45 25 123 4.8456 186.17299 627.96163 591.30304 0.11215 7.05352 3.83971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51421 0.19777 -1.00000 - 13926 2017 8 21 18 45 29 969 4.8455 186.17398 628.02251 591.35606 0.11216 7.07694 3.84665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51386 0.19777 -1.00000 - 13927 2017 8 21 18 45 34 814 4.8455 186.17497 628.08300 591.40911 0.11217 7.10300 3.85396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51351 0.19777 -1.00000 - 13928 2017 8 21 18 45 39 660 4.8454 186.17596 628.14227 591.46215 0.11219 7.13147 3.86064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51316 0.19777 -1.00000 - 13929 2017 8 21 18 45 44 505 4.8454 186.17695 628.20294 591.51529 0.11221 7.16207 3.86666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51280 0.19777 -1.00000 - 13930 2017 8 21 18 45 49 350 4.8454 186.17795 628.26340 591.56853 0.11224 7.19448 3.87361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51245 0.19777 -1.00000 - 13931 2017 8 21 18 45 54 196 4.8453 186.17895 628.32692 591.62184 0.11226 7.22834 3.87910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51210 0.19777 -1.00000 - 13932 2017 8 21 18 45 59 41 4.8453 186.17996 628.38809 591.67527 0.11226 7.26341 3.88615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51175 0.19777 -1.00000 - 13933 2017 8 21 18 46 3 886 4.8452 186.18097 628.44853 591.72868 0.11224 7.29958 3.89157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51139 0.19777 -1.00000 - 13934 2017 8 21 18 46 8 731 4.8452 186.18196 628.51253 591.78222 0.11222 7.33696 3.89598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51104 0.19777 -1.00000 - 13935 2017 8 21 18 46 13 577 4.8452 186.18295 628.57260 591.83598 0.11221 7.37543 3.90322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51069 0.19777 -1.00000 - 13936 2017 8 21 18 46 18 422 4.8451 186.18395 628.63327 591.88978 0.11224 7.41335 3.90680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51034 0.19777 -1.00000 - 13937 2017 8 21 18 46 23 267 4.8451 186.18496 628.69877 591.94369 0.11226 7.44878 3.91102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50998 0.19777 -1.00000 - 13938 2017 8 21 18 46 28 112 4.8450 186.18598 628.76034 591.99781 0.11227 7.48301 3.91686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50963 0.19777 -1.00000 - 13939 2017 8 21 18 46 32 957 4.8450 186.18700 628.81838 592.05193 0.11225 7.51534 3.91902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50928 0.19777 -1.00000 - 13940 2017 8 21 18 46 37 802 4.8450 186.18802 628.88417 592.10620 0.11222 7.52114 3.92181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50893 0.19777 -1.00000 - 13941 2017 8 21 18 46 42 647 4.8449 186.18903 628.94705 592.16071 0.11219 7.56631 3.92732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50857 0.19777 -1.00000 - 13942 2017 8 21 18 46 47 492 4.8449 186.19004 629.00824 592.21521 0.11217 7.60916 3.92961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50822 0.19777 -1.00000 - 13943 2017 8 21 18 46 52 336 4.8448 186.19106 629.07509 592.26986 0.11216 7.64757 3.93263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50787 0.19777 -1.00000 - 13944 2017 8 21 18 46 57 181 4.8448 186.19208 629.13774 592.32463 0.11214 7.68141 3.93873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50752 0.19777 -1.00000 - 13945 2017 8 21 18 47 2 26 4.8448 186.19311 629.19671 592.37939 0.11213 7.71204 3.93909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50717 0.19777 -1.00000 - 13946 2017 8 21 18 47 6 871 4.8447 186.19414 629.26352 592.43432 0.11212 7.73999 3.94186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50681 0.19776 -1.00000 - 13947 2017 8 21 18 47 11 715 4.8447 186.19517 629.32735 592.48938 0.11212 7.76504 3.94633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50646 0.19776 -1.00000 - 13948 2017 8 21 18 47 16 560 4.8446 186.19621 629.39201 592.54451 0.11211 7.78702 3.94710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50611 0.19776 -1.00000 - 13949 2017 8 21 18 47 21 405 4.8446 186.19725 629.45568 592.59978 0.11209 7.80609 3.95052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50576 0.19776 -1.00000 - 13950 2017 8 21 18 47 26 249 4.8446 186.19829 629.51889 592.65519 0.11207 7.82255 3.95530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50540 0.19776 -1.00000 - 13951 2017 8 21 18 47 31 94 4.8445 186.19933 629.58077 592.71060 0.11205 7.83676 3.95565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50505 0.19776 -1.00000 - 13952 2017 8 21 18 47 35 938 4.8445 186.20037 629.64822 592.76616 0.11204 7.84908 3.95842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50470 0.19776 -1.00000 - 13953 2017 8 21 18 47 40 783 4.8445 186.20141 629.71293 592.82189 0.11204 7.85984 3.96372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50435 0.19776 -1.00000 - 13954 2017 8 21 18 47 45 627 4.8444 186.20246 629.77341 592.87752 0.11204 7.86931 3.96438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50399 0.19776 -1.00000 - 13955 2017 8 21 18 47 50 472 4.8444 186.20350 629.83655 592.93323 0.11206 7.87770 3.96674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50364 0.19776 -1.00000 - 13956 2017 8 21 18 47 55 316 4.8443 186.20455 629.90122 592.98910 0.11208 7.88517 3.97006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50329 0.19776 -1.00000 - 13957 2017 8 21 18 48 0 160 4.8443 186.20561 629.96608 593.04495 0.11210 7.89184 3.97164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50294 0.19776 -1.00000 - 13958 2017 8 21 18 48 5 4 4.8443 186.20667 630.03082 593.10091 0.11210 7.89779 3.97467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50259 0.19776 -1.00000 - 13959 2017 8 21 18 48 9 849 4.8442 186.20773 630.09570 593.15693 0.11209 7.90308 3.97786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50223 0.19776 -1.00000 - 13960 2017 8 21 18 48 14 693 4.8442 186.20877 630.16088 593.21299 0.11208 7.90773 3.98023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50188 0.19776 -1.00000 - 13961 2017 8 21 18 48 19 537 4.8441 186.20981 630.22615 593.26909 0.11210 7.91175 3.98320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50153 0.19776 -1.00000 - 13962 2017 8 21 18 48 24 381 4.8441 186.21085 630.29144 593.32517 0.11214 7.91511 3.98650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50118 0.19776 -1.00000 - 13963 2017 8 21 18 48 29 225 4.8441 186.21191 630.35676 593.38122 0.11220 7.91779 3.98935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50082 0.19776 -1.00000 - 13964 2017 8 21 18 48 34 69 4.8440 186.21298 630.42206 593.43725 0.11223 7.91974 3.99280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50047 0.19776 -1.00000 - 13965 2017 8 21 18 48 38 913 4.8440 186.21405 630.48744 593.49321 0.11223 7.92090 3.99625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50012 0.19776 -1.00000 - 13966 2017 8 21 18 48 43 757 4.8439 186.21510 630.55272 593.54912 0.11222 7.92121 3.99880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49977 0.19776 -1.00000 - 13967 2017 8 21 18 48 48 601 4.8439 186.21615 630.61789 593.60496 0.11222 7.92059 4.00132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49942 0.19776 -1.00000 - 13968 2017 8 21 18 48 53 445 4.8439 186.21720 630.68304 593.66073 0.11223 7.91898 4.00323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49906 0.19776 -1.00000 - 13969 2017 8 21 18 48 58 289 4.8438 186.21825 630.74802 593.71643 0.11225 7.91630 4.00475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49871 0.19776 -1.00000 - 13970 2017 8 21 18 49 3 132 4.8438 186.21931 630.81281 593.77202 0.11227 7.91251 4.00652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49836 0.19776 -1.00000 - 13971 2017 8 21 18 49 7 976 4.8437 186.22037 630.87746 593.82753 0.11229 7.90755 4.00664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49801 0.19776 -1.00000 - 13972 2017 8 21 18 49 12 820 4.8437 186.22143 630.94193 593.88302 0.11231 7.90141 4.00658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49765 0.19776 -1.00000 - 13973 2017 8 21 18 49 17 664 4.8437 186.22249 631.00640 593.93859 0.11233 7.89408 4.00659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49730 0.19776 -1.00000 - 13974 2017 8 21 18 49 22 507 4.8436 186.22356 631.06721 593.99416 0.11232 7.88559 4.00474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49695 0.19775 -1.00000 - 13975 2017 8 21 18 49 27 351 4.8436 186.22462 631.13202 594.04987 0.11230 7.87598 4.00164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49660 0.19775 -1.00000 - 13976 2017 8 21 18 49 32 194 4.8436 186.22568 631.19550 594.10569 0.11228 7.86533 4.00040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49624 0.19775 -1.00000 - 13977 2017 8 21 18 49 37 38 4.8435 186.22673 631.26059 594.16156 0.11228 7.85371 3.99580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49589 0.19775 -1.00000 - 13978 2017 8 21 18 49 41 881 4.8435 186.22778 631.32935 594.21772 0.11230 7.84124 3.99239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49554 0.19775 -1.00000 - 13979 2017 8 21 18 49 46 725 4.8434 186.22884 631.39378 594.27403 0.11233 7.82803 3.98967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49519 0.19775 -1.00000 - 13980 2017 8 21 18 49 51 568 4.8434 186.22992 631.45579 594.33038 0.11235 7.81428 3.98365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49484 0.19775 -1.00000 - 13981 2017 8 21 18 49 56 412 4.8434 186.23100 631.52107 594.38702 0.11234 7.80012 3.98014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49448 0.19775 -1.00000 - 13982 2017 8 21 18 50 1 255 4.8433 186.23207 631.58608 594.44379 0.11231 7.78525 3.97602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49413 0.19775 -1.00000 - 13983 2017 8 21 18 50 6 98 4.8433 186.23314 631.65346 594.50071 0.11228 7.74609 3.96960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49378 0.19775 -1.00000 - 13984 2017 8 21 18 50 10 941 4.8433 186.23420 631.72066 594.55782 0.11225 7.71218 3.96496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49343 0.19775 -1.00000 - 13985 2017 8 21 18 50 15 785 4.8432 186.23526 631.78666 594.61511 0.11224 7.70032 3.96138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49307 0.19775 -1.00000 - 13986 2017 8 21 18 50 20 628 4.8432 186.23633 631.85044 594.67257 0.11225 7.68390 3.95651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49272 0.19775 -1.00000 - 13987 2017 8 21 18 50 25 471 4.8431 186.23741 631.91706 594.73021 0.11227 7.66832 3.95317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49237 0.19775 -1.00000 - 13988 2017 8 21 18 50 30 314 4.8431 186.23849 631.98365 594.78796 0.11227 7.65392 3.95041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49202 0.19775 -1.00000 - 13989 2017 8 21 18 50 35 157 4.8431 186.23957 632.05155 594.84581 0.11227 7.64089 3.94600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49167 0.19775 -1.00000 - 13990 2017 8 21 18 50 40 0 4.8430 186.24066 632.12239 594.90379 0.11224 7.62879 3.94315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49131 0.19775 -1.00000 - 13991 2017 8 21 18 50 44 843 4.8430 186.24174 632.18903 594.96199 0.11221 7.61734 3.94094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49096 0.19775 -1.00000 - 13992 2017 8 21 18 50 49 686 4.8429 186.24281 632.25381 595.02032 0.11219 7.60635 3.93718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49061 0.19775 -1.00000 - 13993 2017 8 21 18 50 54 529 4.8429 186.24388 632.32174 595.07885 0.11218 7.59571 3.93464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49026 0.19775 -1.00000 - 13994 2017 8 21 18 50 59 372 4.8429 186.24496 632.38982 595.13754 0.11219 7.58538 3.93333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48991 0.19775 -1.00000 - 13995 2017 8 21 18 51 4 215 4.8428 186.24604 632.45867 595.19633 0.11220 7.57564 3.92911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48955 0.19775 -1.00000 - 13996 2017 8 21 18 51 9 57 4.8428 186.24713 632.53133 595.25526 0.11221 7.56643 3.92727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48920 0.19775 -1.00000 - 13997 2017 8 21 18 51 13 900 4.8428 186.24822 632.59962 595.31442 0.11222 7.55643 3.92613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48885 0.19775 -1.00000 - 13998 2017 8 21 18 51 18 743 4.8427 186.24932 632.66602 595.37368 0.11220 7.54500 3.92372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48850 0.19775 -1.00000 - 13999 2017 8 21 18 51 23 586 4.8427 186.25041 632.73567 595.43310 0.11216 7.53438 3.92326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48814 0.19775 -1.00000 - 14000 2017 8 21 18 51 28 428 4.8426 186.25149 632.80538 595.49267 0.11213 7.52375 3.92334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48779 0.19775 -1.00000 - 14001 2017 8 21 18 51 33 271 4.8426 186.25256 632.87604 595.55231 0.11211 7.51331 3.92172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48744 0.19775 -1.00000 - 14002 2017 8 21 18 51 38 113 4.8426 186.25364 632.95017 595.61205 0.11213 7.50272 3.92125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48709 0.19774 -1.00000 - 14003 2017 8 21 18 51 42 956 4.8425 186.25473 633.01960 595.67198 0.11216 7.49190 3.92248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48674 0.19774 -1.00000 - 14004 2017 8 21 18 51 47 798 4.8425 186.25583 633.08689 595.73191 0.11217 7.48085 3.92085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48638 0.19774 -1.00000 - 14005 2017 8 21 18 51 52 641 4.8425 186.25693 633.15912 595.79207 0.11216 7.46969 3.92005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48603 0.19774 -1.00000 - 14006 2017 8 21 18 51 57 483 4.8424 186.25802 633.23016 595.85240 0.11214 7.45867 3.92125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48568 0.19774 -1.00000 - 14007 2017 8 21 18 52 2 326 4.8424 186.25910 633.29990 595.91272 0.11212 7.44813 3.91893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48533 0.19774 -1.00000 - 14008 2017 8 21 18 52 7 168 4.8423 186.26018 633.37655 595.97335 0.11213 7.43866 3.91957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48497 0.19774 -1.00000 - 14009 2017 8 21 18 52 12 10 4.8423 186.26127 633.44795 596.03416 0.11214 7.43056 3.92160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48462 0.19774 -1.00000 - 14010 2017 8 21 18 52 16 853 4.8423 186.26236 633.51858 596.09499 0.11216 7.42289 3.91910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48427 0.19774 -1.00000 - 14011 2017 8 21 18 52 21 695 4.8422 186.26344 633.59126 596.15608 0.11218 7.41496 3.92071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48392 0.19774 -1.00000 - 14012 2017 8 21 18 52 26 537 4.8422 186.26453 633.66251 596.21728 0.11221 7.40847 3.92182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48357 0.19774 -1.00000 - 14013 2017 8 21 18 52 31 379 4.8422 186.26562 633.73450 596.27848 0.11223 7.40450 3.92157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48321 0.19774 -1.00000 - 14014 2017 8 21 18 52 36 221 4.8421 186.26672 633.81211 596.33992 0.11225 7.40313 3.92510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48286 0.19774 -1.00000 - 14015 2017 8 21 18 52 41 63 4.8421 186.26781 633.88533 596.40136 0.11224 7.40427 3.92802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48251 0.19774 -1.00000 - 14016 2017 8 21 18 52 45 905 4.8420 186.26889 633.95729 596.46282 0.11223 7.40734 3.92887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48216 0.19774 -1.00000 - 14017 2017 8 21 18 52 50 747 4.8420 186.26997 634.03113 596.52443 0.11223 7.41192 3.93354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48181 0.19774 -1.00000 - 14018 2017 8 21 18 52 55 589 4.8420 186.27104 634.10366 596.58602 0.11225 7.41786 3.93557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48145 0.19774 -1.00000 - 14019 2017 8 21 18 53 0 431 4.8419 186.27212 634.17795 596.64757 0.11229 7.42516 3.93756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48110 0.19774 -1.00000 - 14020 2017 8 21 18 53 5 273 4.8419 186.27321 634.25576 596.70922 0.11232 7.43398 3.94371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48075 0.19774 -1.00000 - 14021 2017 8 21 18 53 10 115 4.8419 186.27430 634.32830 596.77080 0.11235 7.44440 3.94679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48040 0.19774 -1.00000 - 14022 2017 8 21 18 53 14 957 4.8418 186.27539 634.40320 596.83235 0.11237 7.45458 3.94874 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48005 0.19774 -1.00000 - 14023 2017 8 21 18 53 19 799 4.8418 186.27649 634.47693 596.89407 0.11236 7.46279 3.95596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47969 0.19774 -1.00000 - 14024 2017 8 21 18 53 24 640 4.8417 186.27757 634.54694 596.95557 0.11233 7.47014 3.95969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47934 0.19774 -1.00000 - 14025 2017 8 21 18 53 29 482 4.8417 186.27864 634.61975 597.01699 0.11232 7.47761 3.96615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47899 0.19774 -1.00000 - 14026 2017 8 21 18 53 34 324 4.8417 186.27971 634.69308 597.07837 0.11234 7.48590 3.97564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47864 0.19774 -1.00000 - 14027 2017 8 21 18 53 39 165 4.8416 186.28079 634.76892 597.13946 0.11237 7.49547 3.98126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47828 0.19774 -1.00000 - 14028 2017 8 21 18 53 44 7 4.8416 186.28188 634.84554 597.20041 0.11240 7.50903 3.98887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47793 0.19774 -1.00000 - 14029 2017 8 21 18 53 48 849 4.8416 186.28298 634.91746 597.26127 0.11240 7.52228 3.99905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47758 0.19774 -1.00000 - 14030 2017 8 21 18 53 53 690 4.8415 186.28406 634.98551 597.32185 0.11239 7.53422 4.00674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47723 0.19773 -1.00000 - 14031 2017 8 21 18 53 58 532 4.8415 186.28514 635.05527 597.38223 0.11239 7.54737 4.01610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47688 0.19773 -1.00000 - 14032 2017 8 21 18 54 3 373 4.8414 186.28622 635.12638 597.44248 0.11240 7.56221 4.02725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47652 0.19773 -1.00000 - 14033 2017 8 21 18 54 8 214 4.8414 186.28731 635.19790 597.50246 0.11240 7.57673 4.03626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47617 0.19773 -1.00000 - 14034 2017 8 21 18 54 13 56 4.8414 186.28841 635.26913 597.56220 0.11238 7.59039 4.04597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47582 0.19773 -1.00000 - 14035 2017 8 21 18 54 17 897 4.8413 186.28949 635.33965 597.62179 0.11234 7.60273 4.05661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47547 0.19773 -1.00000 - 14036 2017 8 21 18 54 22 738 4.8413 186.29055 635.40793 597.68113 0.11234 7.61347 4.06664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47512 0.19773 -1.00000 - 14037 2017 8 21 18 54 27 580 4.8413 186.29162 635.47702 597.74034 0.11238 7.62252 4.07715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47476 0.19773 -1.00000 - 14038 2017 8 21 18 54 32 421 4.8412 186.29272 635.54590 597.79939 0.11242 7.63001 4.08858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47441 0.19773 -1.00000 - 14039 2017 8 21 18 54 37 262 4.8412 186.29383 635.61436 597.85814 0.11243 7.63627 4.09863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47406 0.19773 -1.00000 - 14040 2017 8 21 18 54 42 103 4.8411 186.29494 635.68258 597.91670 0.11240 7.64182 4.10906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47371 0.19773 -1.00000 - 14041 2017 8 21 18 54 46 944 4.8411 186.29602 635.75037 597.97516 0.11236 7.64728 4.12046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47336 0.19773 -1.00000 - 14042 2017 8 21 18 54 51 785 4.8411 186.29710 635.81704 598.03341 0.11235 7.65332 4.13062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47300 0.19773 -1.00000 - 14043 2017 8 21 18 54 56 626 4.8410 186.29819 635.88327 598.09158 0.11234 7.66687 4.14171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47265 0.19773 -1.00000 - 14044 2017 8 21 18 55 1 467 4.8410 186.29929 635.95005 598.14973 0.11233 7.68343 4.15294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47230 0.19773 -1.00000 - 14045 2017 8 21 18 55 6 308 4.8410 186.30038 636.01809 598.20770 0.11232 7.70182 4.16277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47195 0.19773 -1.00000 - 14046 2017 8 21 18 55 11 149 4.8409 186.30147 636.08797 598.26563 0.11232 7.72224 4.17357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47160 0.19773 -1.00000 - 14047 2017 8 21 18 55 15 990 4.8409 186.30258 636.15264 598.32358 0.11233 7.74484 4.18513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47124 0.19773 -1.00000 - 14048 2017 8 21 18 55 20 831 4.8408 186.30369 636.21450 598.38147 0.11231 7.76982 4.19438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47089 0.19773 -1.00000 - 14049 2017 8 21 18 55 25 672 4.8408 186.30480 636.28050 598.43941 0.11227 7.79745 4.20499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47054 0.19773 -1.00000 - 14050 2017 8 21 18 55 30 513 4.8408 186.30589 636.34648 598.49734 0.11223 7.82754 4.21536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47019 0.19773 -1.00000 - 14051 2017 8 21 18 55 35 353 4.8407 186.30699 636.41370 598.55516 0.11221 7.85845 4.22437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46984 0.19773 -1.00000 - 14052 2017 8 21 18 55 40 194 4.8407 186.30809 636.48301 598.61309 0.11220 7.88783 4.23458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46948 0.19773 -1.00000 - 14053 2017 8 21 18 55 45 35 4.8407 186.30921 636.54471 598.67107 0.11218 7.91703 4.24423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46913 0.19773 -1.00000 - 14054 2017 8 21 18 55 49 875 4.8406 186.31032 636.60868 598.72908 0.11214 7.94765 4.25219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46878 0.19773 -1.00000 - 14055 2017 8 21 18 55 54 716 4.8406 186.31141 636.67472 598.78724 0.11214 7.97928 4.26292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46843 0.19773 -1.00000 - 14056 2017 8 21 18 55 59 556 4.8405 186.31251 636.74085 598.84547 0.11218 8.01350 4.27242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46808 0.19773 -1.00000 - 14057 2017 8 21 18 56 4 397 4.8405 186.31364 636.80925 598.90372 0.11222 8.04894 4.27975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46772 0.19773 -1.00000 - 14058 2017 8 21 18 56 9 237 4.8405 186.31478 636.87901 598.96213 0.11218 8.08366 4.28876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46737 0.19772 -1.00000 - 14059 2017 8 21 18 56 14 78 4.8404 186.31591 636.94029 599.02069 0.11210 8.11966 4.29651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46702 0.19772 -1.00000 - 14060 2017 8 21 18 56 18 918 4.8404 186.31699 637.00578 599.07945 0.11205 8.15830 4.30407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46667 0.19772 -1.00000 - 14061 2017 8 21 18 56 23 759 4.8404 186.31807 637.07225 599.13844 0.11209 8.19892 4.31155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46632 0.19772 -1.00000 - 14062 2017 8 21 18 56 28 599 4.8403 186.31918 637.14049 599.19759 0.11216 8.24290 4.31840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46596 0.19772 -1.00000 - 14063 2017 8 21 18 56 33 439 4.8403 186.32033 637.21054 599.25700 0.11220 8.28908 4.32686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46561 0.19772 -1.00000 - 14064 2017 8 21 18 56 38 279 4.8403 186.32146 637.27817 599.31651 0.11218 8.33531 4.33354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46526 0.19772 -1.00000 - 14065 2017 8 21 18 56 43 120 4.8402 186.32256 637.34573 599.37615 0.11217 8.38259 4.33857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46491 0.19772 -1.00000 - 14066 2017 8 21 18 56 47 960 4.8402 186.32365 637.41367 599.43611 0.11220 8.43351 4.34705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46456 0.19772 -1.00000 - 14067 2017 8 21 18 56 52 800 4.8401 186.32477 637.47986 599.49616 0.11226 8.48678 4.34966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46420 0.19772 -1.00000 - 14068 2017 8 21 18 56 57 640 4.8401 186.32591 637.55312 599.55637 0.11227 8.54024 4.35320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46385 0.19772 -1.00000 - 14069 2017 8 21 18 57 2 480 4.8401 186.32704 637.62514 599.61683 0.11223 8.56363 4.36044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46350 0.19772 -1.00000 - 14070 2017 8 21 18 57 7 320 4.8400 186.32813 637.69263 599.67741 0.11220 8.59842 4.36238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46315 0.19772 -1.00000 - 14071 2017 8 21 18 57 12 160 4.8400 186.32921 637.76286 599.73810 0.11225 8.66323 4.36621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46280 0.19772 -1.00000 - 14072 2017 8 21 18 57 17 0 4.8400 186.33032 637.83247 599.79909 0.11233 8.71932 4.37316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46244 0.19772 -1.00000 - 14073 2017 8 21 18 57 21 840 4.8399 186.33145 637.90049 599.86004 0.11237 8.78076 4.37412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46209 0.19772 -1.00000 - 14074 2017 8 21 18 57 26 680 4.8399 186.33258 637.97565 599.92122 0.11238 8.84712 4.37733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46174 0.19772 -1.00000 - 14075 2017 8 21 18 57 31 520 4.8398 186.33369 638.04620 599.98257 0.11237 8.91304 4.38317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46139 0.19772 -1.00000 - 14076 2017 8 21 18 57 36 360 4.8398 186.33479 638.12127 600.04394 0.11238 8.97701 4.38358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46104 0.19772 -1.00000 - 14077 2017 8 21 18 57 41 199 4.8398 186.33590 638.19020 600.10551 0.11238 9.03744 4.38559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46068 0.19772 -1.00000 - 14078 2017 8 21 18 57 46 39 4.8397 186.33703 638.26070 600.16723 0.11236 9.09320 4.38950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46033 0.19772 -1.00000 - 14079 2017 8 21 18 57 50 879 4.8397 186.33813 638.33052 600.22900 0.11231 9.14387 4.38983 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45998 0.19772 -1.00000 - 14080 2017 8 21 18 57 55 718 4.8397 186.33921 638.40730 600.29081 0.11231 9.18930 4.39007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45963 0.19772 -1.00000 - 14081 2017 8 21 18 58 0 558 4.8396 186.34031 638.47896 600.35281 0.11236 9.22945 4.39357 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45928 0.19772 -1.00000 - 14082 2017 8 21 18 58 5 398 4.8396 186.34145 638.54815 600.41477 0.11238 9.26431 4.39240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45892 0.19772 -1.00000 - 14083 2017 8 21 18 58 10 237 4.8395 186.34260 638.62022 600.47683 0.11234 9.29386 4.39282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45857 0.19772 -1.00000 - 14084 2017 8 21 18 58 15 77 4.8395 186.34372 638.69233 600.53899 0.11226 9.31808 4.39419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45822 0.19772 -1.00000 - 14085 2017 8 21 18 58 19 916 4.8395 186.34480 638.76484 600.60117 0.11222 9.33684 4.39253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45787 0.19772 -1.00000 - 14086 2017 8 21 18 58 24 756 4.8394 186.34591 638.83733 600.66333 0.11224 9.35001 4.39149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45752 0.19771 -1.00000 - 14087 2017 8 21 18 58 29 595 4.8394 186.34705 638.90988 600.72550 0.11224 9.35741 4.39137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45716 0.19771 -1.00000 - 14088 2017 8 21 18 58 34 434 4.8394 186.34820 638.98260 600.78769 0.11217 9.35883 4.38879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45681 0.19771 -1.00000 - 14089 2017 8 21 18 58 39 274 4.8393 186.34932 639.05532 600.84997 0.11209 9.35408 4.38669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45646 0.19771 -1.00000 - 14090 2017 8 21 18 58 44 113 4.8393 186.35041 639.12821 600.91226 0.11208 9.34298 4.38468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45611 0.19771 -1.00000 - 14091 2017 8 21 18 58 48 952 4.8393 186.35152 639.20122 600.97452 0.11212 9.32543 4.38034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45576 0.19771 -1.00000 - 14092 2017 8 21 18 58 53 791 4.8392 186.35268 639.27415 601.03679 0.11214 9.30138 4.37645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45540 0.19771 -1.00000 - 14093 2017 8 21 18 58 58 631 4.8392 186.35385 639.34716 601.09910 0.11207 9.27085 4.37281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45505 0.19771 -1.00000 - 14094 2017 8 21 18 59 3 470 4.8391 186.35498 639.42013 601.16138 0.11198 9.23396 4.36705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45470 0.19771 -1.00000 - 14095 2017 8 21 18 59 8 309 4.8391 186.35607 639.49215 601.22374 0.11195 9.19088 4.36116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45435 0.19771 -1.00000 - 14096 2017 8 21 18 59 13 148 4.8391 186.35719 639.56572 601.28623 0.11198 9.14186 4.35509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45400 0.19771 -1.00000 - 14097 2017 8 21 18 59 17 987 4.8390 186.35834 639.64119 601.34876 0.11201 9.08725 4.34642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45364 0.19771 -1.00000 - 14098 2017 8 21 18 59 22 826 4.8390 186.35950 639.71416 601.41141 0.11198 9.02749 4.33993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45329 0.19771 -1.00000 - 14099 2017 8 21 18 59 27 665 4.8390 186.36063 639.78640 601.47411 0.11194 8.96315 4.33049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45294 0.19771 -1.00000 - 14100 2017 8 21 18 59 32 504 4.8389 186.36174 639.86333 601.53695 0.11197 8.89490 4.32015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45259 0.19771 -1.00000 - 14101 2017 8 21 18 59 37 343 4.8389 186.36287 639.93688 601.60001 0.11203 8.82343 4.31264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45224 0.19771 -1.00000 - 14102 2017 8 21 18 59 42 182 4.8389 186.36404 640.00817 601.66315 0.11205 8.74949 4.30079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45189 0.19771 -1.00000 - 14103 2017 8 21 18 59 47 20 4.8388 186.36520 640.08557 601.72651 0.11201 8.67407 4.28806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45153 0.19771 -1.00000 - 14104 2017 8 21 18 59 51 859 4.8388 186.36633 640.16037 601.79018 0.11196 8.59774 4.27999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45118 0.19771 -1.00000 - 14105 2017 8 21 18 59 56 698 4.8387 186.36743 640.23605 601.85392 0.11199 8.51976 4.26632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45083 0.19771 -1.00000 - 14106 2017 8 21 19 0 1 537 4.8387 186.36855 640.31200 601.91790 0.11205 8.43960 4.25392 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45048 0.19771 -1.00000 - 14107 2017 8 21 19 0 6 375 4.8387 186.36971 640.38714 601.98209 0.11209 8.35905 4.24610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45013 0.19771 -1.00000 - 14108 2017 8 21 19 0 11 214 4.8386 186.37087 640.45979 602.04638 0.11207 8.27996 4.23184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44977 0.19771 -1.00000 - 14109 2017 8 21 19 0 16 53 4.8386 186.37200 640.54308 602.11088 0.11205 8.20252 4.21985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44942 0.19771 -1.00000 - 14110 2017 8 21 19 0 20 891 4.8386 186.37311 640.61934 602.17563 0.11208 8.12645 4.21180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44907 0.19771 -1.00000 - 14111 2017 8 21 19 0 25 730 4.8385 186.37424 640.69703 602.24042 0.11213 8.04953 4.19940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44872 0.19771 -1.00000 - 14112 2017 8 21 19 0 30 568 4.8385 186.37541 640.77474 602.30542 0.11213 7.97189 4.18974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44837 0.19771 -1.00000 - 14113 2017 8 21 19 0 35 407 4.8385 186.37656 640.85096 602.37062 0.11208 7.89562 4.18208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44801 0.19771 -1.00000 - 14114 2017 8 21 19 0 40 245 4.8384 186.37768 640.92621 602.43588 0.11202 7.82154 4.17075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44766 0.19770 -1.00000 - 14115 2017 8 21 19 0 45 83 4.8384 186.37878 641.00926 602.50122 0.11204 7.75055 4.16462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44731 0.19770 -1.00000 - 14116 2017 8 21 19 0 49 922 4.8383 186.37991 641.08664 602.56666 0.11209 7.68337 4.15890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44696 0.19770 -1.00000 - 14117 2017 8 21 19 0 54 760 4.8383 186.38108 641.16850 602.63204 0.11209 7.62056 4.15009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44661 0.19770 -1.00000 - 14118 2017 8 21 19 0 59 598 4.8383 186.38224 641.24623 602.69748 0.11205 7.58367 4.14541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44626 0.19770 -1.00000 - 14119 2017 8 21 19 1 4 437 4.8382 186.38336 641.32003 602.76299 0.11200 7.55261 4.14057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44590 0.19770 -1.00000 - 14120 2017 8 21 19 1 9 275 4.8382 186.38448 641.39729 602.82846 0.11201 7.52493 4.13504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44555 0.19770 -1.00000 - 14121 2017 8 21 19 1 14 113 4.8382 186.38562 641.47576 602.89398 0.11203 7.50077 4.13403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44520 0.19770 -1.00000 - 14122 2017 8 21 19 1 18 951 4.8381 186.38680 641.55440 602.95944 0.11200 7.48020 4.13122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44485 0.19770 -1.00000 - 14123 2017 8 21 19 1 23 789 4.8381 186.38795 641.63310 603.02485 0.11192 7.46322 4.12898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44450 0.19770 -1.00000 - 14124 2017 8 21 19 1 28 627 4.8381 186.38907 641.71204 603.09021 0.11187 7.44982 4.13021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44414 0.19770 -1.00000 - 14125 2017 8 21 19 1 33 465 4.8380 186.39018 641.79080 603.15543 0.11189 7.43991 4.13007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44379 0.19770 -1.00000 - 14126 2017 8 21 19 1 38 303 4.8380 186.39134 641.86913 603.22048 0.11193 7.43330 4.13095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44344 0.19770 -1.00000 - 14127 2017 8 21 19 1 43 141 4.8380 186.39252 641.94707 603.28535 0.11191 7.42982 4.13449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44309 0.19770 -1.00000 - 14128 2017 8 21 19 1 47 979 4.8379 186.39368 642.02490 603.35003 0.11184 7.42939 4.13632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44274 0.19770 -1.00000 - 14129 2017 8 21 19 1 52 817 4.8379 186.39481 642.10243 603.41460 0.11179 7.43619 4.13947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44239 0.19770 -1.00000 - 14130 2017 8 21 19 1 57 655 4.8378 186.39593 642.17972 603.47901 0.11180 7.44821 4.14448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44203 0.19770 -1.00000 - 14131 2017 8 21 19 2 2 493 4.8378 186.39710 642.25678 603.54322 0.11182 7.46341 4.14899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44168 0.19770 -1.00000 - 14132 2017 8 21 19 2 7 330 4.8378 186.39828 642.33354 603.60724 0.11180 7.48156 4.15403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44133 0.19770 -1.00000 - 14133 2017 8 21 19 2 12 168 4.8377 186.39944 642.40994 603.67104 0.11174 7.50239 4.16047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44098 0.19770 -1.00000 - 14134 2017 8 21 19 2 17 6 4.8377 186.40056 642.48596 603.73460 0.11171 7.52551 4.16600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44063 0.19770 -1.00000 - 14135 2017 8 21 19 2 21 844 4.8377 186.40170 642.56150 603.79797 0.11175 7.55055 4.17246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44027 0.19770 -1.00000 - 14136 2017 8 21 19 2 26 681 4.8376 186.40287 642.63662 603.86117 0.11178 7.57719 4.17962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43992 0.19770 -1.00000 - 14137 2017 8 21 19 2 31 519 4.8376 186.40405 642.71142 603.92415 0.11176 7.60515 4.18623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43957 0.19770 -1.00000 - 14138 2017 8 21 19 2 36 356 4.8376 186.40522 642.78573 603.98690 0.11170 7.63423 4.19390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43922 0.19770 -1.00000 - 14139 2017 8 21 19 2 41 194 4.8375 186.40635 642.85954 604.04945 0.11168 7.66428 4.20085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43887 0.19770 -1.00000 - 14140 2017 8 21 19 2 46 31 4.8375 186.40749 642.93301 604.11180 0.11171 7.69522 4.20751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43852 0.19770 -1.00000 - 14141 2017 8 21 19 2 50 869 4.8375 186.40866 643.00585 604.17405 0.11174 7.72698 4.21519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43816 0.19770 -1.00000 - 14142 2017 8 21 19 2 55 706 4.8374 186.40984 643.07826 604.23617 0.11172 7.75952 4.22117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43781 0.19769 -1.00000 - 14143 2017 8 21 19 3 0 544 4.8374 186.41100 643.15046 604.29826 0.11167 7.79285 4.22797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43746 0.19769 -1.00000 - 14144 2017 8 21 19 3 5 381 4.8373 186.41213 643.22044 604.36026 0.11168 7.82699 4.23320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43711 0.19769 -1.00000 - 14145 2017 8 21 19 3 10 218 4.8373 186.41328 643.29597 604.42231 0.11172 7.86196 4.23710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43676 0.19769 -1.00000 - 14146 2017 8 21 19 3 15 55 4.8373 186.41446 643.36838 604.48448 0.11175 7.89786 4.24490 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43640 0.19769 -1.00000 - 14147 2017 8 21 19 3 19 893 4.8372 186.41565 643.44024 604.54655 0.11171 7.93488 4.24845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43605 0.19769 -1.00000 - 14148 2017 8 21 19 3 24 730 4.8372 186.41681 643.51216 604.60873 0.11164 7.97340 4.25216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43570 0.19769 -1.00000 - 14149 2017 8 21 19 3 29 567 4.8372 186.41793 643.58265 604.67100 0.11163 8.01252 4.26096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43535 0.19769 -1.00000 - 14150 2017 8 21 19 3 34 404 4.8371 186.41908 643.65265 604.73320 0.11167 8.05144 4.26264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43500 0.19769 -1.00000 - 14151 2017 8 21 19 3 39 241 4.8371 186.42026 643.73135 604.79547 0.11170 8.09429 4.26624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43465 0.19769 -1.00000 - 14152 2017 8 21 19 3 44 78 4.8371 186.42145 643.80267 604.85787 0.11168 8.13274 4.27469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43429 0.19769 -1.00000 - 14153 2017 8 21 19 3 48 915 4.8370 186.42261 643.87301 604.92025 0.11163 8.16753 4.27731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43394 0.19769 -1.00000 - 14154 2017 8 21 19 3 53 752 4.8370 186.42374 643.94497 604.98274 0.11163 8.20003 4.28167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43359 0.19769 -1.00000 - 14155 2017 8 21 19 3 58 589 4.8370 186.42490 644.01325 605.04547 0.11167 8.23134 4.28843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43324 0.19769 -1.00000 - 14156 2017 8 21 19 4 3 426 4.8369 186.42608 644.08698 605.10816 0.11168 8.26244 4.29163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43289 0.19769 -1.00000 - 14157 2017 8 21 19 4 8 263 4.8369 186.42727 644.16397 605.17096 0.11163 8.29350 4.29771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43254 0.19769 -1.00000 - 14158 2017 8 21 19 4 13 100 4.8368 186.42842 644.23584 605.23390 0.11158 8.32450 4.30513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43218 0.19769 -1.00000 - 14159 2017 8 21 19 4 17 937 4.8368 186.42955 644.30817 605.29684 0.11158 8.35539 4.30816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43183 0.19769 -1.00000 - 14160 2017 8 21 19 4 22 774 4.8368 186.43071 644.37991 605.35994 0.11161 8.38612 4.31481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43148 0.19769 -1.00000 - 14161 2017 8 21 19 4 27 610 4.8367 186.43190 644.44791 605.42320 0.11163 8.41674 4.32109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43113 0.19769 -1.00000 - 14162 2017 8 21 19 4 32 447 4.8367 186.43308 644.52289 605.48646 0.11160 8.44724 4.32508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43078 0.19769 -1.00000 - 14163 2017 8 21 19 4 37 284 4.8367 186.43424 644.59515 605.54988 0.11156 8.47765 4.33263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43042 0.19769 -1.00000 - 14164 2017 8 21 19 4 42 120 4.8366 186.43539 644.66722 605.61346 0.11157 8.50797 4.33850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43007 0.19769 -1.00000 - 14165 2017 8 21 19 4 46 957 4.8366 186.43655 644.74078 605.67710 0.11158 8.53825 4.34349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42972 0.19769 -1.00000 - 14166 2017 8 21 19 4 51 793 4.8366 186.43774 644.81404 605.74086 0.11158 8.56859 4.35169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42937 0.19769 -1.00000 - 14167 2017 8 21 19 4 56 630 4.8365 186.43893 644.88752 605.80463 0.11153 8.59904 4.35819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42902 0.19769 -1.00000 - 14168 2017 8 21 19 5 1 467 4.8365 186.44009 644.96145 605.86847 0.11148 8.62971 4.36415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42867 0.19769 -1.00000 - 14169 2017 8 21 19 5 6 303 4.8365 186.44124 645.03560 605.93231 0.11148 8.66070 4.37327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42831 0.19769 -1.00000 - 14170 2017 8 21 19 5 11 139 4.8364 186.44241 645.11007 605.99618 0.11149 8.69207 4.38037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42796 0.19768 -1.00000 - 14171 2017 8 21 19 5 15 976 4.8364 186.44360 645.18464 606.06004 0.11148 8.72390 4.38771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42761 0.19768 -1.00000 - 14172 2017 8 21 19 5 20 812 4.8364 186.44479 645.25922 606.12387 0.11144 8.75620 4.39562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42726 0.19768 -1.00000 - 14173 2017 8 21 19 5 25 648 4.8363 186.44595 645.33389 606.18764 0.11140 8.78893 4.40217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42691 0.19768 -1.00000 - 14174 2017 8 21 19 5 30 485 4.8363 186.44711 645.40857 606.25142 0.11140 8.82201 4.40887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42656 0.19768 -1.00000 - 14175 2017 8 21 19 5 35 321 4.8363 186.44830 645.48336 606.31511 0.11138 8.85529 4.41635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42620 0.19768 -1.00000 - 14176 2017 8 21 19 5 40 157 4.8362 186.44949 645.55790 606.37872 0.11134 8.88855 4.42166 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42585 0.19768 -1.00000 - 14177 2017 8 21 19 5 44 993 4.8362 186.45067 645.63223 606.44229 0.11127 8.92151 4.42727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42550 0.19768 -1.00000 - 14178 2017 8 21 19 5 49 830 4.8361 186.45183 645.70639 606.50587 0.11125 8.95385 4.43270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42515 0.19768 -1.00000 - 14179 2017 8 21 19 5 54 666 4.8361 186.45299 645.77977 606.56932 0.11125 8.98519 4.43578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42480 0.19768 -1.00000 - 14180 2017 8 21 19 5 59 502 4.8361 186.45419 645.85578 606.63279 0.11125 9.01510 4.43976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42445 0.19768 -1.00000 - 14181 2017 8 21 19 6 4 338 4.8360 186.45539 645.92943 606.69621 0.11121 9.04317 4.44223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42409 0.19768 -1.00000 - 14182 2017 8 21 19 6 9 174 4.8360 186.45657 646.00477 606.75960 0.11114 9.06896 4.44304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42374 0.19768 -1.00000 - 14183 2017 8 21 19 6 14 10 4.8360 186.45773 646.08227 606.82309 0.11112 9.09215 4.44423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42339 0.19768 -1.00000 - 14184 2017 8 21 19 6 18 846 4.8359 186.45890 646.15188 606.88657 0.11113 9.11258 4.44403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42304 0.19768 -1.00000 - 14185 2017 8 21 19 6 23 682 4.8359 186.46010 646.22871 606.95008 0.11113 9.13040 4.44153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42269 0.19768 -1.00000 - 14186 2017 8 21 19 6 28 518 4.8359 186.46130 646.30262 607.01374 0.11109 9.14564 4.44374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42234 0.19768 -1.00000 - 14187 2017 8 21 19 6 33 353 4.8358 186.46248 646.37757 607.07732 0.11104 9.15691 4.43934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42198 0.19768 -1.00000 - 14188 2017 8 21 19 6 38 189 4.8358 186.46364 646.45712 607.14110 0.11104 9.16268 4.43413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42163 0.19768 -1.00000 - 14189 2017 8 21 19 6 43 25 4.8358 186.46481 646.53178 607.20496 0.11107 9.16489 4.43428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42128 0.19768 -1.00000 - 14190 2017 8 21 19 6 47 861 4.8357 186.46601 646.60134 607.26867 0.11109 9.16532 4.42803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42093 0.19768 -1.00000 - 14191 2017 8 21 19 6 52 696 4.8357 186.46722 646.67719 607.33257 0.11107 9.16283 4.42344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42058 0.19768 -1.00000 - 14192 2017 8 21 19 6 57 532 4.8357 186.46840 646.75132 607.39672 0.11103 9.15716 4.42129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42023 0.19768 -1.00000 - 14193 2017 8 21 19 7 2 368 4.8356 186.46956 646.82898 607.46070 0.11102 9.14643 4.41375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41987 0.19768 -1.00000 - 14194 2017 8 21 19 7 7 203 4.8356 186.47073 646.90920 607.52490 0.11105 9.12830 4.40846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41952 0.19768 -1.00000 - 14195 2017 8 21 19 7 12 39 4.8356 186.47192 646.98475 607.58933 0.11107 9.07600 4.40488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41917 0.19768 -1.00000 - 14196 2017 8 21 19 7 16 874 4.8355 186.47311 647.05541 607.65367 0.11107 9.02884 4.39469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41882 0.19768 -1.00000 - 14197 2017 8 21 19 7 21 710 4.8355 186.47430 647.13323 607.71816 0.11106 9.00681 4.38783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41847 0.19768 -1.00000 - 14198 2017 8 21 19 7 26 545 4.8355 186.47546 647.20631 607.78285 0.11107 8.97289 4.38294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41812 0.19767 -1.00000 - 14199 2017 8 21 19 7 31 381 4.8354 186.47664 647.28590 607.84745 0.11108 8.93364 4.37190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41776 0.19767 -1.00000 - 14200 2017 8 21 19 7 36 216 4.8354 186.47782 647.36651 607.91220 0.11109 8.88681 4.36460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41741 0.19767 -1.00000 - 14201 2017 8 21 19 7 41 51 4.8354 186.47901 647.44273 607.97708 0.11109 8.83462 4.35838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41706 0.19767 -1.00000 - 14202 2017 8 21 19 7 45 887 4.8353 186.48019 647.51670 608.04196 0.11108 8.78130 4.34798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41671 0.19767 -1.00000 - 14203 2017 8 21 19 7 50 722 4.8353 186.48136 647.59263 608.10707 0.11108 8.72710 4.34010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41636 0.19767 -1.00000 - 14204 2017 8 21 19 7 55 557 4.8353 186.48254 647.66836 608.17227 0.11108 8.67261 4.33425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41601 0.19767 -1.00000 - 14205 2017 8 21 19 8 0 393 4.8352 186.48372 647.74873 608.23742 0.11108 8.61756 4.32386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41565 0.19767 -1.00000 - 14206 2017 8 21 19 8 5 228 4.8352 186.48490 647.83071 608.30275 0.11108 8.56173 4.31569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41530 0.19767 -1.00000 - 14207 2017 8 21 19 8 10 63 4.8351 186.48608 647.90729 608.36819 0.11107 8.50510 4.30868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41495 0.19767 -1.00000 - 14208 2017 8 21 19 8 14 898 4.8351 186.48726 647.98155 608.43365 0.11106 8.44779 4.30077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41460 0.19767 -1.00000 - 14209 2017 8 21 19 8 19 733 4.8351 186.48844 648.05594 608.49925 0.11103 8.39004 4.29375 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41425 0.19767 -1.00000 - 14210 2017 8 21 19 8 24 568 4.8350 186.48962 648.13408 608.56483 0.11100 8.33214 4.28796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41390 0.19767 -1.00000 - 14211 2017 8 21 19 8 29 403 4.8350 186.49080 648.21239 608.63047 0.11098 8.27445 4.28153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41354 0.19767 -1.00000 - 14212 2017 8 21 19 8 34 238 4.8350 186.49198 648.29096 608.69611 0.11095 8.21734 4.27502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41319 0.19767 -1.00000 - 14213 2017 8 21 19 8 39 73 4.8349 186.49316 648.36936 608.76178 0.11092 8.16124 4.27012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41284 0.19767 -1.00000 - 14214 2017 8 21 19 8 43 908 4.8349 186.49435 648.44751 608.82745 0.11088 8.10660 4.26654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41249 0.19767 -1.00000 - 14215 2017 8 21 19 8 48 743 4.8349 186.49553 648.52599 608.89316 0.11085 8.05385 4.26254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41214 0.19767 -1.00000 - 14216 2017 8 21 19 8 53 578 4.8348 186.49672 648.60441 608.95882 0.11081 8.00336 4.25979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41179 0.19767 -1.00000 - 14217 2017 8 21 19 8 58 413 4.8348 186.49791 648.68276 609.02436 0.11077 7.95551 4.25794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41144 0.19767 -1.00000 - 14218 2017 8 21 19 9 3 247 4.8348 186.49911 648.76110 609.08981 0.11072 7.91068 4.25571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41108 0.19767 -1.00000 - 14219 2017 8 21 19 9 8 82 4.8347 186.50030 648.83929 609.15517 0.11067 7.87443 4.25493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41073 0.19767 -1.00000 - 14220 2017 8 21 19 9 12 917 4.8347 186.50149 648.91739 609.22040 0.11063 7.85048 4.25530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41038 0.19767 -1.00000 - 14221 2017 8 21 19 9 17 751 4.8347 186.50268 648.99541 609.28552 0.11059 7.83618 4.25550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41003 0.19767 -1.00000 - 14222 2017 8 21 19 9 22 586 4.8346 186.50388 649.07328 609.35051 0.11056 7.82542 4.25620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40968 0.19767 -1.00000 - 14223 2017 8 21 19 9 27 421 4.8346 186.50508 649.15092 609.41532 0.11052 7.81815 4.25735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40933 0.19767 -1.00000 - 14224 2017 8 21 19 9 32 255 4.8346 186.50628 649.22831 609.47996 0.11049 7.81430 4.25808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40897 0.19767 -1.00000 - 14225 2017 8 21 19 9 37 90 4.8345 186.50748 649.30532 609.54442 0.11046 7.81375 4.25969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40862 0.19767 -1.00000 - 14226 2017 8 21 19 9 41 924 4.8345 186.50868 649.38194 609.60872 0.11044 7.81634 4.26101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40827 0.19766 -1.00000 - 14227 2017 8 21 19 9 46 759 4.8345 186.50988 649.45844 609.67292 0.11041 7.82191 4.26156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40792 0.19766 -1.00000 - 14228 2017 8 21 19 9 51 593 4.8344 186.51109 649.53483 609.73708 0.11038 7.83025 4.26353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40757 0.19766 -1.00000 - 14229 2017 8 21 19 9 56 428 4.8344 186.51229 649.60775 609.80118 0.11036 7.84102 4.26316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40722 0.19766 -1.00000 - 14230 2017 8 21 19 10 1 262 4.8344 186.51349 649.68370 609.86528 0.11035 7.85988 4.26193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40686 0.19766 -1.00000 - 14231 2017 8 21 19 10 6 96 4.8343 186.51469 649.75706 609.92952 0.11035 7.88325 4.26275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40651 0.19766 -1.00000 - 14232 2017 8 21 19 10 10 931 4.8343 186.51590 649.83658 609.99375 0.11035 7.90913 4.26034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40616 0.19766 -1.00000 - 14233 2017 8 21 19 10 15 765 4.8343 186.51711 649.91686 610.05806 0.11034 7.93713 4.26104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40581 0.19766 -1.00000 - 14234 2017 8 21 19 10 20 599 4.8342 186.51831 649.99009 610.12236 0.11033 7.96698 4.26266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40546 0.19766 -1.00000 - 14235 2017 8 21 19 10 25 433 4.8342 186.51951 650.06541 610.18673 0.11032 7.99842 4.25958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40511 0.19766 -1.00000 - 14236 2017 8 21 19 10 30 268 4.8342 186.52071 650.14122 610.25127 0.11032 8.02898 4.26076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40476 0.19766 -1.00000 - 14237 2017 8 21 19 10 35 102 4.8341 186.52191 650.21469 610.31580 0.11033 8.05468 4.26063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40440 0.19766 -1.00000 - 14238 2017 8 21 19 10 39 936 4.8341 186.52312 650.29495 610.38036 0.11033 8.04406 4.25803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40405 0.19766 -1.00000 - 14239 2017 8 21 19 10 44 770 4.8341 186.52432 650.37559 610.44508 0.11034 8.04859 4.25836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40370 0.19766 -1.00000 - 14240 2017 8 21 19 10 49 604 4.8340 186.52551 650.44711 610.50984 0.11034 8.09081 4.25757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40335 0.19766 -1.00000 - 14241 2017 8 21 19 10 54 438 4.8340 186.52671 650.52443 610.57459 0.11035 8.11989 4.25548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40300 0.19766 -1.00000 - 14242 2017 8 21 19 10 59 272 4.8340 186.52791 650.60063 610.63954 0.11036 8.14715 4.25659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40265 0.19766 -1.00000 - 14243 2017 8 21 19 11 4 106 4.8339 186.52911 650.67534 610.70452 0.11037 8.16927 4.25681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40229 0.19766 -1.00000 - 14244 2017 8 21 19 11 8 940 4.8339 186.53030 650.75680 610.76956 0.11037 8.20809 4.25661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40194 0.19766 -1.00000 - 14245 2017 8 21 19 11 13 774 4.8339 186.53149 650.83630 610.83456 0.11037 8.24450 4.25796 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40159 0.19766 -1.00000 - 14246 2017 8 21 19 11 18 608 4.8338 186.53268 650.91018 610.89957 0.11037 8.27682 4.25744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40124 0.19766 -1.00000 - 14247 2017 8 21 19 11 23 441 4.8338 186.53387 650.98622 610.96467 0.11037 8.30459 4.25804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40089 0.19766 -1.00000 - 14248 2017 8 21 19 11 28 275 4.8338 186.53506 651.06034 611.02991 0.11038 8.32808 4.25937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40054 0.19766 -1.00000 - 14249 2017 8 21 19 11 33 109 4.8337 186.53626 651.14110 611.09507 0.11037 8.34781 4.25919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40019 0.19766 -1.00000 - 14250 2017 8 21 19 11 37 943 4.8337 186.53745 651.21807 611.16031 0.11035 8.36418 4.26263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39983 0.19766 -1.00000 - 14251 2017 8 21 19 11 42 776 4.8337 186.53864 651.29445 611.22549 0.11033 8.37753 4.26545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39948 0.19766 -1.00000 - 14252 2017 8 21 19 11 47 610 4.8336 186.53982 651.37069 611.29056 0.11031 8.38819 4.26595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39913 0.19766 -1.00000 - 14253 2017 8 21 19 11 52 444 4.8336 186.54102 651.44709 611.35564 0.11029 8.39644 4.26961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39878 0.19766 -1.00000 - 14254 2017 8 21 19 11 57 277 4.8336 186.54221 651.52283 611.42069 0.11025 8.40254 4.27406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39843 0.19765 -1.00000 - 14255 2017 8 21 19 12 2 111 4.8335 186.54340 651.60002 611.48561 0.11021 8.40672 4.27502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39808 0.19765 -1.00000 - 14256 2017 8 21 19 12 6 944 4.8335 186.54459 651.67821 611.55050 0.11017 8.40921 4.27839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39772 0.19765 -1.00000 - 14257 2017 8 21 19 12 11 778 4.8335 186.54578 651.75484 611.61536 0.11013 8.41021 4.28350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39737 0.19765 -1.00000 - 14258 2017 8 21 19 12 16 611 4.8335 186.54698 651.83018 611.68006 0.11009 8.40993 4.28569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39702 0.19765 -1.00000 - 14259 2017 8 21 19 12 21 445 4.8334 186.54818 651.90628 611.74471 0.11004 8.40859 4.28869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39667 0.19765 -1.00000 - 14260 2017 8 21 19 12 26 278 4.8334 186.54938 651.98225 611.80934 0.10999 8.40646 4.29398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39632 0.19765 -1.00000 - 14261 2017 8 21 19 12 31 111 4.8334 186.55058 652.05886 611.87378 0.10993 8.40385 4.29500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39597 0.19765 -1.00000 - 14262 2017 8 21 19 12 35 945 4.8333 186.55178 652.13944 611.93814 0.10988 8.40107 4.29681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39562 0.19765 -1.00000 - 14263 2017 8 21 19 12 40 778 4.8333 186.55298 652.21470 612.00252 0.10984 8.39843 4.30129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39526 0.19765 -1.00000 - 14264 2017 8 21 19 12 45 611 4.8333 186.55419 652.28554 612.06671 0.10979 8.39626 4.30206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39491 0.19765 -1.00000 - 14265 2017 8 21 19 12 50 444 4.8332 186.55540 652.36188 612.13091 0.10975 8.39491 4.30346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39456 0.19765 -1.00000 - 14266 2017 8 21 19 12 55 278 4.8332 186.55660 652.43740 612.19514 0.10970 8.39471 4.30722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39421 0.19765 -1.00000 - 14267 2017 8 21 19 13 0 111 4.8332 186.55781 652.51318 612.25919 0.10967 8.39669 4.30746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39386 0.19765 -1.00000 - 14268 2017 8 21 19 13 4 944 4.8331 186.55902 652.59299 612.32327 0.10964 8.39951 4.30778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39351 0.19765 -1.00000 - 14269 2017 8 21 19 13 9 777 4.8331 186.56023 652.66779 612.38744 0.10962 8.40148 4.31077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39316 0.19765 -1.00000 - 14270 2017 8 21 19 13 14 610 4.8331 186.56145 652.73923 612.45142 0.10958 8.40263 4.31018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39280 0.19765 -1.00000 - 14271 2017 8 21 19 13 19 443 4.8330 186.56266 652.81545 612.51547 0.10955 8.40280 4.31112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39245 0.19765 -1.00000 - 14272 2017 8 21 19 13 24 276 4.8330 186.56386 652.89062 612.57961 0.10954 8.40378 4.31339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39210 0.19765 -1.00000 - 14273 2017 8 21 19 13 29 109 4.8330 186.56507 652.96537 612.64351 0.10953 8.40415 4.31182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39175 0.19765 -1.00000 - 14274 2017 8 21 19 13 33 942 4.8329 186.56628 653.04477 612.70757 0.10953 8.40237 4.31291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39140 0.19765 -1.00000 - 14275 2017 8 21 19 13 38 775 4.8329 186.56750 653.11931 612.77174 0.10952 8.40077 4.31521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39105 0.19765 -1.00000 - 14276 2017 8 21 19 13 43 608 4.8329 186.56871 653.18933 612.83573 0.10951 8.36395 4.31180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39070 0.19765 -1.00000 - 14277 2017 8 21 19 13 48 441 4.8328 186.56992 653.26682 612.89979 0.10950 8.36641 4.31225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39034 0.19765 -1.00000 - 14278 2017 8 21 19 13 53 273 4.8328 186.57112 653.34172 612.96391 0.10950 8.37500 4.31367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38999 0.19765 -1.00000 - 14279 2017 8 21 19 13 58 106 4.8328 186.57233 653.41660 613.02784 0.10951 8.38525 4.31002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38964 0.19765 -1.00000 - 14280 2017 8 21 19 14 2 939 4.8327 186.57355 653.49553 613.09195 0.10950 8.39556 4.31042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38929 0.19765 -1.00000 - 14281 2017 8 21 19 14 7 772 4.8327 186.57476 653.56994 613.15608 0.10949 8.40453 4.31111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38894 0.19765 -1.00000 - 14282 2017 8 21 19 14 12 604 4.8327 186.57596 653.64632 613.22017 0.10948 8.41213 4.30864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38859 0.19764 -1.00000 - 14283 2017 8 21 19 14 17 437 4.8326 186.57716 653.72136 613.28449 0.10948 8.41909 4.30935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38823 0.19764 -1.00000 - 14284 2017 8 21 19 14 22 270 4.8326 186.57836 653.79452 613.34878 0.10949 8.42552 4.30853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38788 0.19764 -1.00000 - 14285 2017 8 21 19 14 27 102 4.8326 186.57958 653.86737 613.41299 0.10949 8.43159 4.30609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38753 0.19764 -1.00000 - 14286 2017 8 21 19 14 31 935 4.8326 186.58079 653.94817 613.47738 0.10946 8.43739 4.30847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38718 0.19764 -1.00000 - 14287 2017 8 21 19 14 36 767 4.8325 186.58199 654.02354 613.54174 0.10944 8.44302 4.30716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38683 0.19764 -1.00000 - 14288 2017 8 21 19 14 41 600 4.8325 186.58318 654.09909 613.60614 0.10943 8.44852 4.30615 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38648 0.19764 -1.00000 - 14289 2017 8 21 19 14 46 432 4.8325 186.58438 654.17425 613.67070 0.10943 8.45392 4.30729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38613 0.19764 -1.00000 - 14290 2017 8 21 19 14 51 265 4.8324 186.58559 654.24545 613.73523 0.10943 8.45926 4.30428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38577 0.19764 -1.00000 - 14291 2017 8 21 19 14 56 97 4.8324 186.58680 654.32276 613.79981 0.10941 8.46481 4.30239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38542 0.19764 -1.00000 - 14292 2017 8 21 19 15 0 929 4.8324 186.58800 654.39785 613.86457 0.10938 8.46975 4.30442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38507 0.19764 -1.00000 - 14293 2017 8 21 19 15 5 762 4.8323 186.58919 654.47538 613.92923 0.10937 8.47230 4.30110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38472 0.19764 -1.00000 - 14294 2017 8 21 19 15 10 594 4.8323 186.59039 654.55607 613.99395 0.10936 8.47412 4.30082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38437 0.19764 -1.00000 - 14295 2017 8 21 19 15 15 426 4.8323 186.59159 654.63202 614.05875 0.10936 8.47654 4.30293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38402 0.19764 -1.00000 - 14296 2017 8 21 19 15 20 258 4.8322 186.59280 654.70412 614.12345 0.10934 8.47872 4.30108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38367 0.19764 -1.00000 - 14297 2017 8 21 19 15 25 91 4.8322 186.59401 654.78140 614.18818 0.10930 8.48080 4.30079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38332 0.19764 -1.00000 - 14298 2017 8 21 19 15 29 923 4.8322 186.59520 654.85763 614.25298 0.10927 8.48261 4.30344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38296 0.19764 -1.00000 - 14299 2017 8 21 19 15 34 755 4.8321 186.59640 654.93615 614.31764 0.10925 8.48355 4.30187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38261 0.19764 -1.00000 - 14300 2017 8 21 19 15 39 587 4.8321 186.59761 655.01725 614.38232 0.10924 8.48344 4.30094 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38226 0.19764 -1.00000 - 14301 2017 8 21 19 15 44 419 4.8321 186.59882 655.09355 614.44710 0.10920 8.48237 4.30222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38191 0.19764 -1.00000 - 14302 2017 8 21 19 15 49 251 4.8320 186.60003 655.16596 614.51177 0.10915 8.48063 4.30159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38156 0.19764 -1.00000 - 14303 2017 8 21 19 15 54 83 4.8320 186.60123 655.24206 614.57642 0.10910 8.47860 4.30176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38121 0.19764 -1.00000 - 14304 2017 8 21 19 15 58 915 4.8320 186.60243 655.31963 614.64116 0.10906 8.47662 4.30298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38086 0.19764 -1.00000 - 14305 2017 8 21 19 16 3 747 4.8320 186.60364 655.39666 614.70575 0.10903 8.47492 4.30309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38050 0.19764 -1.00000 - 14306 2017 8 21 19 16 8 579 4.8319 186.60486 655.47300 614.77028 0.10898 8.47369 4.30283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38015 0.19764 -1.00000 - 14307 2017 8 21 19 16 13 411 4.8319 186.60608 655.54954 614.83480 0.10892 8.47302 4.30361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37980 0.19764 -1.00000 - 14308 2017 8 21 19 16 18 243 4.8319 186.60729 655.62534 614.89925 0.10885 8.47289 4.30388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37945 0.19764 -1.00000 - 14309 2017 8 21 19 16 23 75 4.8318 186.60849 655.70124 614.96371 0.10880 8.47326 4.30477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37910 0.19764 -1.00000 - 14310 2017 8 21 19 16 27 906 4.8318 186.60970 655.77817 615.02813 0.10878 8.47403 4.30583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37875 0.19763 -1.00000 - 14311 2017 8 21 19 16 32 738 4.8318 186.61093 655.85482 615.09240 0.10875 8.47508 4.30605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37840 0.19763 -1.00000 - 14312 2017 8 21 19 16 37 570 4.8317 186.61216 655.93122 615.15662 0.10869 8.47628 4.30684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37804 0.19763 -1.00000 - 14313 2017 8 21 19 16 42 402 4.8317 186.61338 656.00769 615.22075 0.10863 8.47747 4.30788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37769 0.19763 -1.00000 - 14314 2017 8 21 19 16 47 233 4.8317 186.61458 656.08358 615.28478 0.10859 8.47855 4.30674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37734 0.19763 -1.00000 - 14315 2017 8 21 19 16 52 65 4.8316 186.61579 656.15822 615.34873 0.10858 8.47941 4.30771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37699 0.19763 -1.00000 - 14316 2017 8 21 19 16 56 897 4.8316 186.61702 656.23409 615.41270 0.10857 8.47998 4.30762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37664 0.19763 -1.00000 - 14317 2017 8 21 19 17 1 728 4.8316 186.61826 656.31057 615.47660 0.10854 8.48019 4.30570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37629 0.19763 -1.00000 - 14318 2017 8 21 19 17 6 560 4.8316 186.61948 656.38576 615.54049 0.10849 8.48001 4.30593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37594 0.19763 -1.00000 - 14319 2017 8 21 19 17 11 391 4.8315 186.62069 656.46117 615.60438 0.10846 8.47941 4.30314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37558 0.19763 -1.00000 - 14320 2017 8 21 19 17 16 223 4.8315 186.62190 656.54022 615.66828 0.10847 8.47839 4.30088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37523 0.19763 -1.00000 - 14321 2017 8 21 19 17 21 54 4.8315 186.62312 656.61513 615.73226 0.10848 8.47690 4.30055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37488 0.19763 -1.00000 - 14322 2017 8 21 19 17 25 886 4.8314 186.62436 656.68770 615.79615 0.10848 8.47468 4.29660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37453 0.19763 -1.00000 - 14323 2017 8 21 19 17 30 717 4.8314 186.62558 656.76613 615.86009 0.10844 8.47036 4.29327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37418 0.19763 -1.00000 - 14324 2017 8 21 19 17 35 548 4.8314 186.62679 656.84087 615.92417 0.10842 8.43079 4.29330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37383 0.19763 -1.00000 - 14325 2017 8 21 19 17 40 380 4.8313 186.62799 656.91503 615.98823 0.10843 8.41163 4.28871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37348 0.19763 -1.00000 - 14326 2017 8 21 19 17 45 211 4.8313 186.62921 656.99391 616.05228 0.10845 8.40274 4.28618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37313 0.19763 -1.00000 - 14327 2017 8 21 19 17 50 42 4.8313 186.63044 657.06929 616.11646 0.10846 8.39458 4.28633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37277 0.19763 -1.00000 - 14328 2017 8 21 19 17 54 874 4.8312 186.63166 657.14263 616.18056 0.10844 8.38621 4.28191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37242 0.19763 -1.00000 - 14329 2017 8 21 19 17 59 705 4.8312 186.63287 657.22135 616.24463 0.10842 8.37604 4.27856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37207 0.19763 -1.00000 - 14330 2017 8 21 19 18 4 536 4.8312 186.63407 657.29517 616.30889 0.10842 8.33514 4.27736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37172 0.19763 -1.00000 - 14331 2017 8 21 19 18 9 367 4.8312 186.63527 657.37084 616.37311 0.10844 8.31561 4.27228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37137 0.19763 -1.00000 - 14332 2017 8 21 19 18 14 198 4.8311 186.63649 657.45039 616.43734 0.10845 8.29493 4.26872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37102 0.19763 -1.00000 - 14333 2017 8 21 19 18 19 29 4.8311 186.63772 657.52573 616.50175 0.10843 8.28141 4.26621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37067 0.19763 -1.00000 - 14334 2017 8 21 19 18 23 860 4.8311 186.63892 657.59917 616.56610 0.10840 8.26929 4.26136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37031 0.19763 -1.00000 - 14335 2017 8 21 19 18 28 691 4.8310 186.64012 657.67859 616.63051 0.10837 8.25592 4.25789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36996 0.19763 -1.00000 - 14336 2017 8 21 19 18 33 522 4.8310 186.64132 657.75072 616.69514 0.10838 8.21421 4.25365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36961 0.19763 -1.00000 - 14337 2017 8 21 19 18 38 353 4.8310 186.64253 657.82847 616.75984 0.10838 8.19356 4.24882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36926 0.19763 -1.00000 - 14338 2017 8 21 19 18 43 184 4.8309 186.64376 657.90961 616.82462 0.10834 8.17280 4.24585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36891 0.19762 -1.00000 - 14339 2017 8 21 19 18 48 15 4.8309 186.64497 657.98224 616.88951 0.10829 8.15465 4.24162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36856 0.19762 -1.00000 - 14340 2017 8 21 19 18 52 846 4.8309 186.64617 658.06301 616.95445 0.10824 8.13771 4.23547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36821 0.19762 -1.00000 - 14341 2017 8 21 19 18 57 677 4.8309 186.64737 658.13618 617.01960 0.10822 8.12428 4.23192 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36786 0.19762 -1.00000 - 14342 2017 8 21 19 19 2 508 4.8308 186.64858 658.21459 617.08484 0.10820 8.10910 4.22730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36750 0.19762 -1.00000 - 14343 2017 8 21 19 19 7 339 4.8308 186.64980 658.29685 617.15027 0.10816 8.08917 4.22007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36715 0.19762 -1.00000 - 14344 2017 8 21 19 19 12 169 4.8308 186.65102 658.37526 617.21587 0.10810 8.07801 4.21810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36680 0.19762 -1.00000 - 14345 2017 8 21 19 19 17 0 4.8307 186.65223 658.45240 617.28140 0.10803 8.06585 4.21262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36645 0.19762 -1.00000 - 14346 2017 8 21 19 19 21 831 4.8307 186.65343 658.53307 617.34696 0.10799 8.05168 4.20537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36610 0.19762 -1.00000 - 14347 2017 8 21 19 19 26 661 4.8307 186.65464 658.61043 617.41261 0.10796 8.01459 4.20242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36575 0.19762 -1.00000 - 14348 2017 8 21 19 19 31 492 4.8306 186.65587 658.68660 617.47824 0.10793 8.00759 4.19759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36540 0.19762 -1.00000 - 14349 2017 8 21 19 19 36 323 4.8306 186.65710 658.77063 617.54394 0.10786 8.00180 4.19205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36504 0.19762 -1.00000 - 14350 2017 8 21 19 19 41 153 4.8306 186.65831 658.84965 617.60970 0.10779 7.99808 4.18967 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36469 0.19762 -1.00000 - 14351 2017 8 21 19 19 45 984 4.8306 186.65952 658.92642 617.67538 0.10774 7.99643 4.18555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36434 0.19762 -1.00000 - 14352 2017 8 21 19 19 50 814 4.8305 186.66073 659.00882 617.74117 0.10772 7.99705 4.18297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36399 0.19762 -1.00000 - 14353 2017 8 21 19 19 55 645 4.8305 186.66196 659.08386 617.80687 0.10769 7.99939 4.17968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36364 0.19762 -1.00000 - 14354 2017 8 21 19 20 0 475 4.8305 186.66320 659.16709 617.87253 0.10764 8.00306 4.17690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36329 0.19762 -1.00000 - 14355 2017 8 21 19 20 5 306 4.8304 186.66442 659.24554 617.93823 0.10758 8.00786 4.17640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36294 0.19762 -1.00000 - 14356 2017 8 21 19 20 10 136 4.8304 186.66563 659.32262 618.00381 0.10754 8.01364 4.17314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36259 0.19762 -1.00000 - 14357 2017 8 21 19 20 14 967 4.8304 186.66685 659.40033 618.06932 0.10753 8.01954 4.16907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36223 0.19762 -1.00000 - 14358 2017 8 21 19 20 19 797 4.8304 186.66808 659.48421 618.13488 0.10752 8.02324 4.16934 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36188 0.19762 -1.00000 - 14359 2017 8 21 19 20 24 627 4.8303 186.66932 659.55820 618.20027 0.10749 8.02401 4.16629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36153 0.19762 -1.00000 - 14360 2017 8 21 19 20 29 458 4.8303 186.67055 659.64111 618.26568 0.10745 7.99454 4.16244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36118 0.19762 -1.00000 - 14361 2017 8 21 19 20 34 288 4.8303 186.67176 659.71889 618.33105 0.10741 8.00861 4.16413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36083 0.19762 -1.00000 - 14362 2017 8 21 19 20 39 118 4.8302 186.67297 659.79463 618.39625 0.10741 8.01388 4.16167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36048 0.19762 -1.00000 - 14363 2017 8 21 19 20 43 948 4.8302 186.67420 659.87032 618.46135 0.10742 8.02099 4.15884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36013 0.19762 -1.00000 - 14364 2017 8 21 19 20 48 778 4.8302 186.67544 659.95330 618.52652 0.10741 8.02873 4.16021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35978 0.19762 -1.00000 - 14365 2017 8 21 19 20 53 609 4.8301 186.67667 660.02666 618.59151 0.10738 8.03578 4.15854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35942 0.19762 -1.00000 - 14366 2017 8 21 19 20 58 439 4.8301 186.67788 660.10843 618.65648 0.10734 8.04257 4.15732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35907 0.19761 -1.00000 - 14367 2017 8 21 19 21 3 269 4.8301 186.67909 660.18548 618.72153 0.10734 8.04942 4.15865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35872 0.19761 -1.00000 - 14368 2017 8 21 19 21 8 99 4.8301 186.68031 660.26004 618.78638 0.10735 8.05643 4.15826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35837 0.19761 -1.00000 - 14369 2017 8 21 19 21 12 929 4.8300 186.68154 660.33486 618.85119 0.10735 8.06363 4.15930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35802 0.19761 -1.00000 - 14370 2017 8 21 19 21 17 759 4.8300 186.68277 660.41697 618.91601 0.10732 8.07089 4.16237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35767 0.19761 -1.00000 - 14371 2017 8 21 19 21 22 589 4.8300 186.68399 660.48838 618.98064 0.10729 8.07810 4.16197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35732 0.19761 -1.00000 - 14372 2017 8 21 19 21 27 419 4.8299 186.68519 660.56310 619.04520 0.10727 8.08504 4.16372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35697 0.19761 -1.00000 - 14373 2017 8 21 19 21 32 249 4.8299 186.68640 660.63946 619.10977 0.10728 8.09149 4.16608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35661 0.19761 -1.00000 - 14374 2017 8 21 19 21 37 79 4.8299 186.68763 660.71555 619.17417 0.10728 8.09724 4.16752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35626 0.19761 -1.00000 - 14375 2017 8 21 19 21 41 908 4.8298 186.68886 660.79118 619.23852 0.10725 8.10214 4.17050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35591 0.19761 -1.00000 - 14376 2017 8 21 19 21 46 738 4.8298 186.69008 660.86665 619.30280 0.10720 8.10610 4.17456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35556 0.19761 -1.00000 - 14377 2017 8 21 19 21 51 568 4.8298 186.69128 660.94217 619.36704 0.10716 8.10914 4.17816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35521 0.19761 -1.00000 - 14378 2017 8 21 19 21 56 398 4.8298 186.69249 661.01781 619.43129 0.10715 8.11137 4.18234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35486 0.19761 -1.00000 - 14379 2017 8 21 19 22 1 227 4.8297 186.69371 661.09338 619.49539 0.10714 8.11298 4.18744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35451 0.19761 -1.00000 - 14380 2017 8 21 19 22 6 57 4.8297 186.69494 661.16887 619.55938 0.10711 8.11417 4.19202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35416 0.19761 -1.00000 - 14381 2017 8 21 19 22 10 887 4.8297 186.69616 661.24420 619.62327 0.10705 8.11514 4.19797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35380 0.19761 -1.00000 - 14382 2017 8 21 19 22 15 717 4.8296 186.69737 661.31954 619.68702 0.10700 8.11606 4.20434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35345 0.19761 -1.00000 - 14383 2017 8 21 19 22 20 546 4.8296 186.69858 661.39480 619.75063 0.10697 8.11712 4.20973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35310 0.19761 -1.00000 - 14384 2017 8 21 19 22 25 376 4.8296 186.69980 661.47000 619.81414 0.10695 8.11846 4.21522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35275 0.19761 -1.00000 - 14385 2017 8 21 19 22 30 205 4.8296 186.70103 661.54503 619.87757 0.10692 8.12025 4.22053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35240 0.19761 -1.00000 - 14386 2017 8 21 19 22 35 35 4.8295 186.70226 661.61996 619.94089 0.10686 8.12263 4.22536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35205 0.19761 -1.00000 - 14387 2017 8 21 19 22 39 864 4.8295 186.70347 661.69456 620.00404 0.10680 8.12581 4.23116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35170 0.19761 -1.00000 - 14388 2017 8 21 19 22 44 694 4.8295 186.70468 661.76898 620.06708 0.10676 8.12998 4.23508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35135 0.19761 -1.00000 - 14389 2017 8 21 19 22 49 523 4.8294 186.70590 661.84333 620.13008 0.10674 8.13532 4.23891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35100 0.19761 -1.00000 - 14390 2017 8 21 19 22 54 353 4.8294 186.70713 661.91544 620.19312 0.10671 8.14208 4.24201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35064 0.19761 -1.00000 - 14391 2017 8 21 19 22 59 182 4.8294 186.70836 661.98935 620.25618 0.10666 8.15052 4.24393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35029 0.19761 -1.00000 - 14392 2017 8 21 19 23 4 11 4.8294 186.70959 662.06352 620.31932 0.10660 8.16320 4.24628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34994 0.19761 -1.00000 - 14393 2017 8 21 19 23 8 841 4.8293 186.71080 662.13704 620.38250 0.10655 8.17987 4.24765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34959 0.19761 -1.00000 - 14394 2017 8 21 19 23 13 670 4.8293 186.71202 662.21529 620.44581 0.10653 8.19926 4.24718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34924 0.19760 -1.00000 - 14395 2017 8 21 19 23 18 499 4.8293 186.71325 662.29013 620.50924 0.10651 8.22171 4.25106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34889 0.19760 -1.00000 - 14396 2017 8 21 19 23 23 329 4.8293 186.71449 662.35994 620.57255 0.10647 8.24726 4.25088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34854 0.19760 -1.00000 - 14397 2017 8 21 19 23 28 158 4.8292 186.71571 662.43925 620.63606 0.10642 8.27504 4.24924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34819 0.19760 -1.00000 - 14398 2017 8 21 19 23 32 987 4.8292 186.71693 662.51403 620.69969 0.10637 8.30317 4.25457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34783 0.19760 -1.00000 - 14399 2017 8 21 19 23 37 816 4.8292 186.71815 662.58609 620.76322 0.10635 8.31031 4.25227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34748 0.19760 -1.00000 - 14400 2017 8 21 19 23 42 645 4.8291 186.71938 662.66574 620.82685 0.10635 8.33927 4.25077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34713 0.19760 -1.00000 - 14401 2017 8 21 19 23 47 474 4.8291 186.72061 662.74164 620.89066 0.10632 8.35234 4.25422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34678 0.19760 -1.00000 - 14402 2017 8 21 19 23 52 304 4.8291 186.72185 662.81233 620.95427 0.10627 8.38890 4.25212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34643 0.19760 -1.00000 - 14403 2017 8 21 19 23 57 133 4.8291 186.72307 662.89207 621.01807 0.10623 8.42447 4.25149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34608 0.19760 -1.00000 - 14404 2017 8 21 19 24 1 962 4.8290 186.72428 662.96750 621.08202 0.10621 8.45734 4.25464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34573 0.19760 -1.00000 - 14405 2017 8 21 19 24 6 791 4.8290 186.72550 663.04045 621.14576 0.10621 8.48993 4.25182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34538 0.19760 -1.00000 - 14406 2017 8 21 19 24 11 620 4.8290 186.72674 663.12003 621.20962 0.10620 8.52649 4.25109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34502 0.19760 -1.00000 - 14407 2017 8 21 19 24 16 449 4.8289 186.72798 663.19523 621.27350 0.10616 8.55927 4.25458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34467 0.19760 -1.00000 - 14408 2017 8 21 19 24 21 277 4.8289 186.72920 663.26609 621.33730 0.10611 8.55634 4.25097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34432 0.19760 -1.00000 - 14409 2017 8 21 19 24 26 106 4.8289 186.73041 663.34525 621.40123 0.10609 8.56294 4.24966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34397 0.19760 -1.00000 - 14410 2017 8 21 19 24 30 935 4.8289 186.73163 663.42013 621.46521 0.10608 8.60037 4.25098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34362 0.19760 -1.00000 - 14411 2017 8 21 19 24 35 764 4.8288 186.73286 663.49168 621.52910 0.10607 8.62375 4.24729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34327 0.19760 -1.00000 - 14412 2017 8 21 19 24 40 593 4.8288 186.73410 663.57159 621.59306 0.10604 8.64214 4.24569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34292 0.19760 -1.00000 - 14413 2017 8 21 19 24 45 422 4.8288 186.73532 663.64630 621.65707 0.10599 8.65319 4.24686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34257 0.19760 -1.00000 - 14414 2017 8 21 19 24 50 250 4.8287 186.73653 663.71894 621.72106 0.10596 8.62492 4.24345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34222 0.19760 -1.00000 - 14415 2017 8 21 19 24 55 79 4.8287 186.73775 663.79841 621.78514 0.10594 8.60452 4.24091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34186 0.19760 -1.00000 - 14416 2017 8 21 19 24 59 908 4.8287 186.73898 663.87370 621.84930 0.10593 8.61404 4.24154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34151 0.19760 -1.00000 - 14417 2017 8 21 19 25 4 736 4.8287 186.74021 663.94662 621.91341 0.10590 8.60822 4.23753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34116 0.19760 -1.00000 - 14418 2017 8 21 19 25 9 565 4.8286 186.74144 664.02669 621.97748 0.10585 8.59715 4.23527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34081 0.19760 -1.00000 - 14419 2017 8 21 19 25 14 394 4.8286 186.74265 664.10194 622.04168 0.10581 8.57919 4.23527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34046 0.19760 -1.00000 - 14420 2017 8 21 19 25 19 222 4.8286 186.74387 664.17561 622.10581 0.10578 8.52277 4.23143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34011 0.19760 -1.00000 - 14421 2017 8 21 19 25 24 51 4.8286 186.74509 664.25526 622.16999 0.10577 8.47603 4.22847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33976 0.19760 -1.00000 - 14422 2017 8 21 19 25 28 879 4.8285 186.74632 664.33122 622.23423 0.10575 8.46128 4.22705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33941 0.19759 -1.00000 - 14423 2017 8 21 19 25 33 708 4.8285 186.74755 664.40493 622.29844 0.10570 8.43293 4.22293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33906 0.19759 -1.00000 - 14424 2017 8 21 19 25 38 536 4.8285 186.74877 664.48530 622.36272 0.10564 8.40149 4.22001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33870 0.19759 -1.00000 - 14425 2017 8 21 19 25 43 365 4.8284 186.74998 664.55849 622.42701 0.10561 8.36552 4.21675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33835 0.19759 -1.00000 - 14426 2017 8 21 19 25 48 193 4.8284 186.75120 664.63525 622.49134 0.10559 8.29319 4.21113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33800 0.19759 -1.00000 - 14427 2017 8 21 19 25 53 22 4.8284 186.75243 664.71634 622.55585 0.10557 8.23328 4.20673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33765 0.19759 -1.00000 - 14428 2017 8 21 19 25 57 850 4.8284 186.75367 664.78979 622.62044 0.10552 8.20839 4.20267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33730 0.19759 -1.00000 - 14429 2017 8 21 19 26 2 678 4.8283 186.75489 664.86820 622.68502 0.10547 8.17242 4.19524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33695 0.19759 -1.00000 - 14430 2017 8 21 19 26 7 507 4.8283 186.75610 664.94399 622.74974 0.10543 8.13639 4.19152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33660 0.19759 -1.00000 - 14431 2017 8 21 19 26 12 335 4.8283 186.75732 665.02371 622.81459 0.10541 8.09882 4.18723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33625 0.19759 -1.00000 - 14432 2017 8 21 19 26 17 163 4.8283 186.75855 665.10463 622.87946 0.10540 8.06078 4.17927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33590 0.19759 -1.00000 - 14433 2017 8 21 19 26 21 991 4.8282 186.75978 665.18009 622.94457 0.10536 8.02533 4.17631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33554 0.19759 -1.00000 - 14434 2017 8 21 19 26 26 819 4.8282 186.76101 665.25766 623.00955 0.10532 7.99998 4.17191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33519 0.19759 -1.00000 - 14435 2017 8 21 19 26 31 648 4.8282 186.76222 665.33801 623.07453 0.10527 7.97518 4.16499 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33484 0.19759 -1.00000 - 14436 2017 8 21 19 26 36 476 4.8281 186.76344 665.41321 623.13957 0.10525 7.94992 4.16087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33449 0.19759 -1.00000 - 14437 2017 8 21 19 26 41 304 4.8281 186.76466 665.49274 623.20462 0.10524 7.92582 4.15712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33414 0.19759 -1.00000 - 14438 2017 8 21 19 26 46 132 4.8281 186.76589 665.57441 623.26981 0.10521 7.90700 4.15031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33379 0.19759 -1.00000 - 14439 2017 8 21 19 26 50 960 4.8281 186.76712 665.65279 623.33505 0.10516 7.89195 4.14678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33344 0.19759 -1.00000 - 14440 2017 8 21 19 26 55 788 4.8280 186.76834 665.72969 623.40015 0.10512 7.87866 4.14428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33309 0.19759 -1.00000 - 14441 2017 8 21 19 27 0 616 4.8280 186.76955 665.80830 623.46526 0.10509 7.86738 4.14017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33274 0.19759 -1.00000 - 14442 2017 8 21 19 27 5 444 4.8280 186.77077 665.88439 623.53035 0.10507 7.85647 4.13637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33238 0.19759 -1.00000 - 14443 2017 8 21 19 27 10 272 4.8280 186.77200 665.96330 623.59527 0.10504 7.84704 4.13489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33203 0.19759 -1.00000 - 14444 2017 8 21 19 27 15 100 4.8279 186.77323 666.04388 623.66021 0.10500 7.84242 4.13115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33168 0.19759 -1.00000 - 14445 2017 8 21 19 27 19 928 4.8279 186.77446 666.12417 623.72508 0.10495 7.84057 4.12736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33133 0.19759 -1.00000 - 14446 2017 8 21 19 27 24 756 4.8279 186.77567 666.20226 623.78980 0.10491 7.83807 4.12467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33098 0.19759 -1.00000 - 14447 2017 8 21 19 27 29 584 4.8279 186.77689 666.27590 623.85451 0.10488 7.83384 4.12250 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33063 0.19759 -1.00000 - 14448 2017 8 21 19 27 34 411 4.8278 186.77812 666.35324 623.91907 0.10486 7.79411 4.11948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33028 0.19759 -1.00000 - 14449 2017 8 21 19 27 39 239 4.8278 186.77935 666.43151 623.98361 0.10482 7.80396 4.11835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32993 0.19759 -1.00000 - 14450 2017 8 21 19 27 44 67 4.8278 186.78057 666.51177 624.04800 0.10477 7.81476 4.11765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32958 0.19758 -1.00000 - 14451 2017 8 21 19 27 48 895 4.8277 186.78179 666.58815 624.11225 0.10472 7.82667 4.11521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32922 0.19758 -1.00000 - 14452 2017 8 21 19 27 53 723 4.8277 186.78301 666.66489 624.17637 0.10469 7.83946 4.11518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32887 0.19758 -1.00000 - 14453 2017 8 21 19 27 58 550 4.8277 186.78423 666.74137 624.24036 0.10467 7.85356 4.11336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32852 0.19758 -1.00000 - 14454 2017 8 21 19 28 3 378 4.8277 186.78546 666.82213 624.30438 0.10464 7.86897 4.11269 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32817 0.19758 -1.00000 - 14455 2017 8 21 19 28 8 206 4.8276 186.78668 666.89757 624.36837 0.10460 7.88506 4.11335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32782 0.19758 -1.00000 - 14456 2017 8 21 19 28 13 33 4.8276 186.78790 666.97440 624.43221 0.10456 7.90120 4.11237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32747 0.19758 -1.00000 - 14457 2017 8 21 19 28 17 861 4.8276 186.78912 667.04896 624.49604 0.10453 7.91681 4.11278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32712 0.19758 -1.00000 - 14458 2017 8 21 19 28 22 688 4.8276 186.79034 667.12014 624.55976 0.10451 7.93153 4.11353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32677 0.19758 -1.00000 - 14459 2017 8 21 19 28 27 516 4.8275 186.79157 667.19389 624.62339 0.10448 7.94514 4.11245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32642 0.19758 -1.00000 - 14460 2017 8 21 19 28 32 343 4.8275 186.79280 667.26921 624.68705 0.10444 7.95750 4.11486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32606 0.19758 -1.00000 - 14461 2017 8 21 19 28 37 171 4.8275 186.79402 667.34458 624.75068 0.10440 7.96852 4.11653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32571 0.19758 -1.00000 - 14462 2017 8 21 19 28 41 998 4.8275 186.79523 667.41983 624.81416 0.10437 7.97822 4.11655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32536 0.19758 -1.00000 - 14463 2017 8 21 19 28 46 826 4.8274 186.79645 667.49458 624.87762 0.10434 7.98666 4.11907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32501 0.19758 -1.00000 - 14464 2017 8 21 19 28 51 653 4.8274 186.79768 667.56937 624.94105 0.10430 7.99392 4.12204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32466 0.19758 -1.00000 - 14465 2017 8 21 19 28 56 480 4.8274 186.79891 667.64428 625.00440 0.10426 8.00009 4.12404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32431 0.19758 -1.00000 - 14466 2017 8 21 19 29 1 308 4.8274 186.80014 667.71883 625.06770 0.10420 8.00531 4.12790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32396 0.19758 -1.00000 - 14467 2017 8 21 19 29 6 135 4.8273 186.80135 667.79336 625.13094 0.10415 8.00966 4.13208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32361 0.19758 -1.00000 - 14468 2017 8 21 19 29 10 962 4.8273 186.80257 667.86806 625.19410 0.10411 8.01328 4.13550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32326 0.19758 -1.00000 - 14469 2017 8 21 19 29 15 790 4.8273 186.80380 667.94265 625.25717 0.10407 8.01631 4.14052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32290 0.19758 -1.00000 - 14470 2017 8 21 19 29 20 617 4.8273 186.80503 668.01714 625.32010 0.10402 8.01889 4.14602 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32255 0.19758 -1.00000 - 14471 2017 8 21 19 29 25 444 4.8272 186.80626 668.09159 625.38289 0.10396 8.02117 4.15129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32220 0.19758 -1.00000 - 14472 2017 8 21 19 29 30 271 4.8272 186.80748 668.16591 625.44555 0.10390 8.02331 4.15651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32185 0.19758 -1.00000 - 14473 2017 8 21 19 29 35 99 4.8272 186.80870 668.24003 625.50803 0.10385 8.02548 4.16171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32150 0.19758 -1.00000 - 14474 2017 8 21 19 29 39 926 4.8272 186.80993 668.31392 625.57038 0.10382 8.02790 4.16576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32115 0.19758 -1.00000 - 14475 2017 8 21 19 29 44 753 4.8271 186.81116 668.38755 625.63262 0.10377 8.03078 4.17095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32080 0.19758 -1.00000 - 14476 2017 8 21 19 29 49 580 4.8271 186.81240 668.46103 625.69474 0.10372 8.03438 4.17518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32045 0.19758 -1.00000 - 14477 2017 8 21 19 29 54 407 4.8271 186.81362 668.53421 625.75673 0.10367 8.03897 4.17893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32010 0.19758 -1.00000 - 14478 2017 8 21 19 29 59 234 4.8271 186.81484 668.60718 625.81865 0.10363 8.04484 4.18352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31975 0.19757 -1.00000 - 14479 2017 8 21 19 30 4 61 4.8270 186.81607 668.68024 625.88042 0.10360 8.05233 4.18630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31939 0.19757 -1.00000 - 14480 2017 8 21 19 30 8 888 4.8270 186.81730 668.75258 625.94207 0.10358 8.06402 4.18871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31904 0.19757 -1.00000 - 14481 2017 8 21 19 30 13 715 4.8270 186.81853 668.82480 626.00379 0.10355 8.08038 4.19079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31869 0.19757 -1.00000 - 14482 2017 8 21 19 30 18 542 4.8269 186.81976 668.89745 626.06557 0.10351 8.09891 4.19253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31834 0.19757 -1.00000 - 14483 2017 8 21 19 30 23 369 4.8269 186.82098 668.96600 626.12742 0.10348 8.11963 4.19322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31799 0.19757 -1.00000 - 14484 2017 8 21 19 30 28 196 4.8269 186.82220 669.03806 626.18931 0.10346 8.14250 4.19470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31764 0.19757 -1.00000 - 14485 2017 8 21 19 30 33 23 4.8269 186.82342 669.11357 626.25126 0.10345 8.16754 4.19340 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31729 0.19757 -1.00000 - 14486 2017 8 21 19 30 37 850 4.8268 186.82465 669.18960 626.31334 0.10343 8.19514 4.19448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31694 0.19757 -1.00000 - 14487 2017 8 21 19 30 42 676 4.8268 186.82588 669.26313 626.37547 0.10341 8.22528 4.19446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31659 0.19757 -1.00000 - 14488 2017 8 21 19 30 47 503 4.8268 186.82710 669.33523 626.43767 0.10338 8.25547 4.19103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31624 0.19757 -1.00000 - 14489 2017 8 21 19 30 52 330 4.8268 186.82831 669.40361 626.50005 0.10336 8.28197 4.19001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31588 0.19757 -1.00000 - 14490 2017 8 21 19 30 57 157 4.8267 186.82953 669.47633 626.56250 0.10335 8.29274 4.18824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31553 0.19757 -1.00000 - 14491 2017 8 21 19 31 1 983 4.8267 186.83075 669.55434 626.62503 0.10334 8.28750 4.18626 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31518 0.19757 -1.00000 - 14492 2017 8 21 19 31 6 810 4.8267 186.83198 669.63059 626.68768 0.10331 8.31371 4.18268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31483 0.19757 -1.00000 - 14493 2017 8 21 19 31 11 637 4.8267 186.83319 669.70410 626.75033 0.10328 8.34422 4.18152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31448 0.19757 -1.00000 - 14494 2017 8 21 19 31 16 463 4.8266 186.83440 669.77294 626.81315 0.10325 8.37669 4.17903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31413 0.19757 -1.00000 - 14495 2017 8 21 19 31 21 290 4.8266 186.83561 669.84763 626.87622 0.10324 8.40980 4.17409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31378 0.19757 -1.00000 - 14496 2017 8 21 19 31 26 117 4.8266 186.83683 669.92198 626.93937 0.10321 8.44005 4.17140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31343 0.19757 -1.00000 - 14497 2017 8 21 19 31 30 943 4.8266 186.83805 669.99664 627.00253 0.10318 8.46673 4.16792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31308 0.19757 -1.00000 - 14498 2017 8 21 19 31 35 770 4.8265 186.83926 670.07420 627.06587 0.10314 8.48956 4.16284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31273 0.19757 -1.00000 - 14499 2017 8 21 19 31 40 596 4.8265 186.84047 670.15037 627.12933 0.10310 8.50791 4.16022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31237 0.19757 -1.00000 - 14500 2017 8 21 19 31 45 423 4.8265 186.84168 670.22249 627.19279 0.10306 8.52188 4.15816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31202 0.19757 -1.00000 - 14501 2017 8 21 19 31 50 249 4.8265 186.84290 670.29783 627.25637 0.10302 8.53162 4.15248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31167 0.19757 -1.00000 - 14502 2017 8 21 19 31 55 76 4.8264 186.84412 670.37191 627.32013 0.10298 8.53725 4.15019 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31132 0.19757 -1.00000 - 14503 2017 8 21 19 31 59 902 4.8264 186.84533 670.44303 627.38395 0.10292 8.53876 4.14719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31097 0.19757 -1.00000 - 14504 2017 8 21 19 32 4 729 4.8264 186.84655 670.51873 627.44775 0.10286 8.53611 4.14199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31062 0.19757 -1.00000 - 14505 2017 8 21 19 32 9 555 4.8264 186.84776 670.59473 627.51165 0.10281 8.52922 4.13935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31027 0.19757 -1.00000 - 14506 2017 8 21 19 32 14 381 4.8264 186.84897 670.67103 627.57566 0.10276 8.51800 4.13574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30992 0.19756 -1.00000 - 14507 2017 8 21 19 32 19 208 4.8263 186.85019 670.74741 627.63963 0.10270 8.50236 4.13109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30957 0.19756 -1.00000 - 14508 2017 8 21 19 32 24 34 4.8263 186.85141 670.82351 627.70367 0.10264 8.48229 4.12808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30922 0.19756 -1.00000 - 14509 2017 8 21 19 32 28 860 4.8263 186.85263 670.89979 627.76779 0.10257 8.45775 4.12568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30886 0.19756 -1.00000 - 14510 2017 8 21 19 32 33 686 4.8263 186.85385 670.97647 627.83195 0.10251 8.42883 4.12206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30851 0.19756 -1.00000 - 14511 2017 8 21 19 32 38 513 4.8262 186.85506 671.05330 627.89615 0.10245 8.39574 4.11941 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30816 0.19756 -1.00000 - 14512 2017 8 21 19 32 43 339 4.8262 186.85629 671.13024 627.96029 0.10240 8.35882 4.11720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30781 0.19756 -1.00000 - 14513 2017 8 21 19 32 48 165 4.8262 186.85751 671.20728 628.02436 0.10235 8.31851 4.11454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30746 0.19756 -1.00000 - 14514 2017 8 21 19 32 52 991 4.8262 186.85873 671.28429 628.08841 0.10229 8.27530 4.11278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30711 0.19756 -1.00000 - 14515 2017 8 21 19 32 57 817 4.8261 186.85995 671.36142 628.15234 0.10223 8.22980 4.11160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30676 0.19756 -1.00000 - 14516 2017 8 21 19 33 2 644 4.8261 186.86117 671.43853 628.21617 0.10219 8.18264 4.10919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30641 0.19756 -1.00000 - 14517 2017 8 21 19 33 7 470 4.8261 186.86239 671.51567 628.27994 0.10215 8.13450 4.10672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30606 0.19756 -1.00000 - 14518 2017 8 21 19 33 12 296 4.8261 186.86362 671.59277 628.34363 0.10211 8.08609 4.10443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30571 0.19756 -1.00000 - 14519 2017 8 21 19 33 17 122 4.8260 186.86484 671.66957 628.40724 0.10207 8.03812 4.10100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30535 0.19756 -1.00000 - 14520 2017 8 21 19 33 21 948 4.8260 186.86606 671.74634 628.47079 0.10204 7.99119 4.09893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30500 0.19756 -1.00000 - 14521 2017 8 21 19 33 26 774 4.8260 186.86728 671.82330 628.53422 0.10201 7.94587 4.09554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30465 0.19756 -1.00000 - 14522 2017 8 21 19 33 31 600 4.8260 186.86850 671.89882 628.59758 0.10199 7.90265 4.09159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30430 0.19756 -1.00000 - 14523 2017 8 21 19 33 36 426 4.8259 186.86972 671.97505 628.66095 0.10196 7.86200 4.08781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30395 0.19756 -1.00000 - 14524 2017 8 21 19 33 41 252 4.8259 186.87094 672.05115 628.72435 0.10193 7.82435 4.08402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30360 0.19756 -1.00000 - 14525 2017 8 21 19 33 46 77 4.8259 186.87216 672.12716 628.78774 0.10190 7.79007 4.07821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30325 0.19756 -1.00000 - 14526 2017 8 21 19 33 50 903 4.8259 186.87337 672.20749 628.85117 0.10188 7.76687 4.07360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30290 0.19756 -1.00000 - 14527 2017 8 21 19 33 55 729 4.8259 186.87459 672.28216 628.91465 0.10186 7.75176 4.06793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30255 0.19756 -1.00000 - 14528 2017 8 21 19 34 0 555 4.8258 186.87580 672.35762 628.97818 0.10183 7.73822 4.06169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30220 0.19756 -1.00000 - 14529 2017 8 21 19 34 5 381 4.8258 186.87702 672.43912 629.04176 0.10180 7.70736 4.05584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30185 0.19756 -1.00000 - 14530 2017 8 21 19 34 10 207 4.8258 186.87824 672.51498 629.10543 0.10177 7.67625 4.04953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30149 0.19756 -1.00000 - 14531 2017 8 21 19 34 15 32 4.8258 186.87945 672.59108 629.16910 0.10174 7.66498 4.04383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30114 0.19756 -1.00000 - 14532 2017 8 21 19 34 19 858 4.8257 186.88066 672.66704 629.23278 0.10170 7.66252 4.03865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30079 0.19756 -1.00000 - 14533 2017 8 21 19 34 24 684 4.8257 186.88187 672.74278 629.29654 0.10167 7.66033 4.03352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30044 0.19756 -1.00000 - 14534 2017 8 21 19 34 29 509 4.8257 186.88308 672.82454 629.36023 0.10164 7.65510 4.02745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30009 0.19755 -1.00000 - 14535 2017 8 21 19 34 34 335 4.8257 186.88429 672.90084 629.42396 0.10160 7.64938 4.02446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29974 0.19755 -1.00000 - 14536 2017 8 21 19 34 39 161 4.8256 186.88550 672.97736 629.48753 0.10155 7.64232 4.02023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29939 0.19755 -1.00000 - 14537 2017 8 21 19 34 43 986 4.8256 186.88671 673.05323 629.55111 0.10151 7.63238 4.01561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29904 0.19755 -1.00000 - 14538 2017 8 21 19 34 48 812 4.8256 186.88792 673.12836 629.61466 0.10147 7.62264 4.01428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29869 0.19755 -1.00000 - 14539 2017 8 21 19 34 53 638 4.8256 186.88913 673.20495 629.67810 0.10143 7.61287 4.00830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29834 0.19755 -1.00000 - 14540 2017 8 21 19 34 58 463 4.8255 186.89033 673.28563 629.74157 0.10139 7.60239 4.00639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29799 0.19755 -1.00000 - 14541 2017 8 21 19 35 3 289 4.8255 186.89154 673.36128 629.80497 0.10135 7.59277 4.00523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29763 0.19755 -1.00000 - 14542 2017 8 21 19 35 8 114 4.8255 186.89275 673.43253 629.86818 0.10131 7.59177 4.00145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29728 0.19755 -1.00000 - 14543 2017 8 21 19 35 12 940 4.8255 186.89395 673.50775 629.93139 0.10127 7.57192 4.00037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29693 0.19755 -1.00000 - 14544 2017 8 21 19 35 17 765 4.8255 186.89516 673.58538 629.99453 0.10123 7.56206 3.99735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29658 0.19755 -1.00000 - 14545 2017 8 21 19 35 22 591 4.8254 186.89636 673.66532 630.05746 0.10119 7.55161 3.99634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29623 0.19755 -1.00000 - 14546 2017 8 21 19 35 27 416 4.8254 186.89757 673.74040 630.12034 0.10115 7.54990 3.99618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29588 0.19755 -1.00000 - 14547 2017 8 21 19 35 32 241 4.8254 186.89878 673.81214 630.18313 0.10111 7.54990 3.99550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29553 0.19755 -1.00000 - 14548 2017 8 21 19 35 37 67 4.8254 186.89998 673.88516 630.24582 0.10107 7.54627 3.99522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29518 0.19755 -1.00000 - 14549 2017 8 21 19 35 41 892 4.8253 186.90119 673.96054 630.30848 0.10102 7.51586 3.99583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29483 0.19755 -1.00000 - 14550 2017 8 21 19 35 46 717 4.8253 186.90239 674.03802 630.37094 0.10098 7.51066 3.99655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29448 0.19755 -1.00000 - 14551 2017 8 21 19 35 51 543 4.8253 186.90360 674.11680 630.43326 0.10093 7.50589 3.99568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29412 0.19755 -1.00000 - 14552 2017 8 21 19 35 56 368 4.8253 186.90481 674.19032 630.49554 0.10088 7.50325 3.99762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29377 0.19755 -1.00000 - 14553 2017 8 21 19 36 1 193 4.8253 186.90601 674.25919 630.55772 0.10082 7.50074 3.99715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29342 0.19755 -1.00000 - 14554 2017 8 21 19 36 6 18 4.8252 186.90722 674.33099 630.61987 0.10077 7.49910 3.99772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29307 0.19755 -1.00000 - 14555 2017 8 21 19 36 10 844 4.8252 186.90843 674.40408 630.68201 0.10071 7.50197 3.99770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29272 0.19755 -1.00000 - 14556 2017 8 21 19 36 15 669 4.8252 186.90963 674.48018 630.74410 0.10065 7.50719 3.99616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29237 0.19755 -1.00000 - 14557 2017 8 21 19 36 20 494 4.8252 186.91084 674.56059 630.80631 0.10058 7.51392 3.99660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29202 0.19755 -1.00000 - 14558 2017 8 21 19 36 25 319 4.8251 186.91205 674.62782 630.86861 0.10052 7.52329 3.99480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29167 0.19755 -1.00000 - 14559 2017 8 21 19 36 30 144 4.8251 186.91326 674.69911 630.93084 0.10046 7.53295 3.99322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29132 0.19755 -1.00000 - 14560 2017 8 21 19 36 34 969 4.8251 186.91447 674.77491 630.99313 0.10040 7.54288 3.99355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29097 0.19755 -1.00000 - 14561 2017 8 21 19 36 39 794 4.8251 186.91568 674.84873 631.05548 0.10034 7.51194 3.99253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29062 0.19755 -1.00000 - 14562 2017 8 21 19 36 44 619 4.8251 186.91689 674.92649 631.11793 0.10028 7.52858 3.99084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29027 0.19754 -1.00000 - 14563 2017 8 21 19 36 49 444 4.8250 186.91810 674.99857 631.18040 0.10022 7.54789 3.99314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28991 0.19754 -1.00000 - 14564 2017 8 21 19 36 54 269 4.8250 186.91931 675.06800 631.24281 0.10016 7.57751 3.99386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28956 0.19754 -1.00000 - 14565 2017 8 21 19 36 59 94 4.8250 186.92052 675.14084 631.30528 0.10011 7.60890 3.99522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28921 0.19754 -1.00000 - 14566 2017 8 21 19 37 3 919 4.8250 186.92173 675.21596 631.36772 0.10007 7.63981 3.99749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28886 0.19754 -1.00000 - 14567 2017 8 21 19 37 8 744 4.8249 186.92294 675.28845 631.43015 0.10002 7.66854 3.99862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28851 0.19754 -1.00000 - 14568 2017 8 21 19 37 13 569 4.8249 186.92414 675.35862 631.49262 0.09998 7.69575 4.00198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28816 0.19754 -1.00000 - 14569 2017 8 21 19 37 18 394 4.8249 186.92535 675.43618 631.55512 0.09994 7.72282 4.00409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28781 0.19754 -1.00000 - 14570 2017 8 21 19 37 23 219 4.8249 186.92656 675.50885 631.61758 0.09991 7.75392 4.00654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28746 0.19754 -1.00000 - 14571 2017 8 21 19 37 28 44 4.8249 186.92776 675.58139 631.68000 0.09988 7.78879 4.01051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28711 0.19754 -1.00000 - 14572 2017 8 21 19 37 32 869 4.8248 186.92897 675.65273 631.74238 0.09985 7.82363 4.01414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28676 0.19754 -1.00000 - 14573 2017 8 21 19 37 37 694 4.8248 186.93017 675.72543 631.80481 0.09982 7.85820 4.01714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28641 0.19754 -1.00000 - 14574 2017 8 21 19 37 42 518 4.8248 186.93138 675.79803 631.86729 0.09980 7.89242 4.02320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28605 0.19754 -1.00000 - 14575 2017 8 21 19 37 47 343 4.8248 186.93258 675.87140 631.92960 0.09977 7.92624 4.02613 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28570 0.19754 -1.00000 - 14576 2017 8 21 19 37 52 168 4.8247 186.93378 675.94841 631.99190 0.09975 7.95966 4.02822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28535 0.19754 -1.00000 - 14577 2017 8 21 19 37 56 993 4.8247 186.93498 676.02094 632.05430 0.09973 7.99272 4.03292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28500 0.19754 -1.00000 - 14578 2017 8 21 19 38 1 817 4.8247 186.93618 676.09033 632.11667 0.09971 8.02587 4.03523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28465 0.19754 -1.00000 - 14579 2017 8 21 19 38 6 642 4.8247 186.93737 676.16404 632.17912 0.09969 8.05924 4.03724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28430 0.19754 -1.00000 - 14580 2017 8 21 19 38 11 467 4.8247 186.93857 676.23734 632.24168 0.09966 8.09089 4.04214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28395 0.19754 -1.00000 - 14581 2017 8 21 19 38 16 291 4.8246 186.93976 676.30921 632.30413 0.09964 8.11936 4.04206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28360 0.19754 -1.00000 - 14582 2017 8 21 19 38 21 116 4.8246 186.94095 676.38823 632.36668 0.09961 8.14677 4.04338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28325 0.19754 -1.00000 - 14583 2017 8 21 19 38 25 940 4.8246 186.94214 676.46157 632.42929 0.09958 8.17454 4.04712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28290 0.19754 -1.00000 - 14584 2017 8 21 19 38 30 765 4.8246 186.94333 676.53370 632.49190 0.09955 8.20198 4.04593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28255 0.19754 -1.00000 - 14585 2017 8 21 19 38 35 590 4.8246 186.94452 676.60796 632.55470 0.09952 8.22858 4.04741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28220 0.19754 -1.00000 - 14586 2017 8 21 19 38 40 414 4.8245 186.94571 676.68190 632.61766 0.09949 8.25322 4.05088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28184 0.19754 -1.00000 - 14587 2017 8 21 19 38 45 239 4.8245 186.94690 676.75442 632.68049 0.09945 8.27401 4.04786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28149 0.19754 -1.00000 - 14588 2017 8 21 19 38 50 63 4.8245 186.94808 676.83304 632.74355 0.09941 8.28870 4.04809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28114 0.19754 -1.00000 - 14589 2017 8 21 19 38 54 888 4.8245 186.94927 676.90854 632.80685 0.09937 8.26175 4.05030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28079 0.19754 -1.00000 - 14590 2017 8 21 19 38 59 712 4.8244 186.95045 676.98278 632.87007 0.09933 8.24722 4.04574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28044 0.19753 -1.00000 - 14591 2017 8 21 19 39 4 536 4.8244 186.95164 677.05865 632.93341 0.09929 8.26959 4.04637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28009 0.19753 -1.00000 - 14592 2017 8 21 19 39 9 361 4.8244 186.95282 677.13487 632.99688 0.09924 8.27709 4.04781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27974 0.19753 -1.00000 - 14593 2017 8 21 19 39 14 185 4.8244 186.95401 677.21033 633.06021 0.09919 8.28040 4.04265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27939 0.19753 -1.00000 - 14594 2017 8 21 19 39 19 10 4.8244 186.95519 677.29025 633.12366 0.09914 8.27666 4.04111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27904 0.19753 -1.00000 - 14595 2017 8 21 19 39 23 834 4.8243 186.95638 677.36426 633.18721 0.09908 8.26814 4.04203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27869 0.19753 -1.00000 - 14596 2017 8 21 19 39 28 658 4.8243 186.95757 677.44129 633.25069 0.09902 8.25882 4.03798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27834 0.19753 -1.00000 - 14597 2017 8 21 19 39 33 483 4.8243 186.95875 677.51807 633.31430 0.09896 8.24857 4.03832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27799 0.19753 -1.00000 - 14598 2017 8 21 19 39 38 307 4.8243 186.95994 677.59495 633.37782 0.09889 8.23734 4.03898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27763 0.19753 -1.00000 - 14599 2017 8 21 19 39 43 131 4.8243 186.96113 677.67202 633.44118 0.09882 8.22436 4.03484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27728 0.19753 -1.00000 - 14600 2017 8 21 19 39 47 955 4.8242 186.96232 677.75125 633.50456 0.09875 8.20907 4.03335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27693 0.19753 -1.00000 - 14601 2017 8 21 19 39 52 780 4.8242 186.96351 677.82211 633.56792 0.09868 8.19115 4.03216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27658 0.19753 -1.00000 - 14602 2017 8 21 19 39 57 604 4.8242 186.96470 677.89617 633.63129 0.09861 8.17044 4.02977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27623 0.19753 -1.00000 - 14603 2017 8 21 19 40 2 428 4.8242 186.96590 677.97306 633.69468 0.09853 8.14697 4.02768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27588 0.19753 -1.00000 - 14604 2017 8 21 19 40 7 252 4.8242 186.96709 678.04979 633.75802 0.09846 8.12087 4.02749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27553 0.19753 -1.00000 - 14605 2017 8 21 19 40 12 76 4.8241 186.96829 678.12647 633.82129 0.09839 8.09233 4.02754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27518 0.19753 -1.00000 - 14606 2017 8 21 19 40 16 900 4.8241 186.96948 678.20305 633.88435 0.09832 8.06162 4.02605 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27483 0.19753 -1.00000 - 14607 2017 8 21 19 40 21 725 4.8241 186.97068 678.27901 633.94729 0.09825 8.02911 4.02616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27448 0.19753 -1.00000 - 14608 2017 8 21 19 40 26 549 4.8241 186.97187 678.35473 634.01009 0.09818 7.99520 4.02777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27413 0.19753 -1.00000 - 14609 2017 8 21 19 40 31 373 4.8241 186.97307 678.43048 634.07277 0.09812 7.96036 4.02823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27378 0.19753 -1.00000 - 14610 2017 8 21 19 40 36 197 4.8240 186.97427 678.50611 634.13531 0.09806 7.92509 4.02953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27342 0.19753 -1.00000 - 14611 2017 8 21 19 40 41 21 4.8240 186.97547 678.58150 634.19761 0.09801 7.88992 4.03158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27307 0.19753 -1.00000 - 14612 2017 8 21 19 40 45 845 4.8240 186.97666 678.65662 634.25967 0.09796 7.85534 4.03334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27272 0.19753 -1.00000 - 14613 2017 8 21 19 40 50 669 4.8240 186.97786 678.73136 634.32156 0.09792 7.82182 4.03567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27237 0.19753 -1.00000 - 14614 2017 8 21 19 40 55 493 4.8240 186.97906 678.80581 634.38315 0.09788 7.78977 4.03880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27202 0.19753 -1.00000 - 14615 2017 8 21 19 41 0 317 4.8239 186.98026 678.87987 634.44452 0.09784 7.75954 4.04042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27167 0.19753 -1.00000 - 14616 2017 8 21 19 41 5 141 4.8239 186.98145 678.95362 634.50573 0.09781 7.73137 4.04215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27132 0.19753 -1.00000 - 14617 2017 8 21 19 41 9 964 4.8239 186.98265 679.02708 634.56673 0.09778 7.70546 4.04429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27097 0.19753 -1.00000 - 14618 2017 8 21 19 41 14 788 4.8239 186.98384 679.10017 634.62755 0.09775 7.68329 4.04454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27062 0.19752 -1.00000 - 14619 2017 8 21 19 41 19 612 4.8239 186.98503 679.17295 634.68821 0.09773 7.66794 4.04657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27027 0.19752 -1.00000 - 14620 2017 8 21 19 41 24 436 4.8238 186.98622 679.24539 634.74869 0.09771 7.65431 4.04700 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26992 0.19752 -1.00000 - 14621 2017 8 21 19 41 29 260 4.8238 186.98741 679.31555 634.80898 0.09769 7.64247 4.04657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26957 0.19752 -1.00000 - 14622 2017 8 21 19 41 34 84 4.8238 186.98860 679.38623 634.86933 0.09767 7.63251 4.04701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26921 0.19752 -1.00000 - 14623 2017 8 21 19 41 38 907 4.8238 186.98979 679.45783 634.92965 0.09765 7.62458 4.04510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26886 0.19752 -1.00000 - 14624 2017 8 21 19 41 43 731 4.8238 186.99097 679.52945 634.98998 0.09762 7.61894 4.04446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26851 0.19752 -1.00000 - 14625 2017 8 21 19 41 48 555 4.8237 186.99216 679.60012 635.05033 0.09760 7.61579 4.04286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26816 0.19752 -1.00000 - 14626 2017 8 21 19 41 53 379 4.8237 186.99334 679.67349 635.11066 0.09757 7.61531 4.03892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26781 0.19752 -1.00000 - 14627 2017 8 21 19 41 58 202 4.8237 186.99452 679.74164 635.17112 0.09754 7.61775 4.03564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26746 0.19752 -1.00000 - 14628 2017 8 21 19 42 3 26 4.8237 186.99570 679.81782 635.23169 0.09751 7.62278 4.03354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26711 0.19752 -1.00000 - 14629 2017 8 21 19 42 7 850 4.8237 186.99688 679.88946 635.29237 0.09747 7.62761 4.03196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26676 0.19752 -1.00000 - 14630 2017 8 21 19 42 12 673 4.8236 186.99806 679.95961 635.35296 0.09743 7.63027 4.02906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26641 0.19752 -1.00000 - 14631 2017 8 21 19 42 17 497 4.8236 186.99924 680.03154 635.41376 0.09739 7.61221 4.02551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26606 0.19752 -1.00000 - 14632 2017 8 21 19 42 22 321 4.8236 187.00042 680.09930 635.47471 0.09735 7.58640 4.02243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26571 0.19752 -1.00000 - 14633 2017 8 21 19 42 27 144 4.8236 187.00159 680.17226 635.53565 0.09730 7.61650 4.01930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26536 0.19752 -1.00000 - 14634 2017 8 21 19 42 31 968 4.8236 187.00277 680.24883 635.59663 0.09724 7.63012 4.01538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26501 0.19752 -1.00000 - 14635 2017 8 21 19 42 36 791 4.8235 187.00395 680.32101 635.65779 0.09719 7.64356 4.01409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26465 0.19752 -1.00000 - 14636 2017 8 21 19 42 41 615 4.8235 187.00512 680.39324 635.71897 0.09713 7.65295 4.01126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26430 0.19752 -1.00000 - 14637 2017 8 21 19 42 46 438 4.8235 187.00630 680.46656 635.78004 0.09707 7.65932 4.00731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26395 0.19752 -1.00000 - 14638 2017 8 21 19 42 51 262 4.8235 187.00748 680.53770 635.84127 0.09701 7.67336 4.00672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26360 0.19752 -1.00000 - 14639 2017 8 21 19 42 56 85 4.8235 187.00865 680.60828 635.90252 0.09695 7.68822 4.00556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26325 0.19752 -1.00000 - 14640 2017 8 21 19 43 0 909 4.8235 187.00983 680.68534 635.96379 0.09689 7.70260 4.00083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26290 0.19752 -1.00000 - 14641 2017 8 21 19 43 5 732 4.8234 187.01101 680.75723 636.02514 0.09683 7.71658 4.00187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26255 0.19752 -1.00000 - 14642 2017 8 21 19 43 10 556 4.8234 187.01219 680.82917 636.08646 0.09676 7.73011 4.00124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26220 0.19752 -1.00000 - 14643 2017 8 21 19 43 15 379 4.8234 187.01336 680.89717 636.14767 0.09670 7.74213 3.99766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26185 0.19752 -1.00000 - 14644 2017 8 21 19 43 20 202 4.8234 187.01454 680.96890 636.20909 0.09664 7.73750 3.99600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26150 0.19752 -1.00000 - 14645 2017 8 21 19 43 25 26 4.8234 187.01572 681.04167 636.27053 0.09657 7.75101 3.99697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26115 0.19752 -1.00000 - 14646 2017 8 21 19 43 29 849 4.8233 187.01690 681.11794 636.33188 0.09651 7.76272 3.99460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26080 0.19751 -1.00000 - 14647 2017 8 21 19 43 34 672 4.8233 187.01808 681.19536 636.39332 0.09645 7.77593 3.99329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26045 0.19751 -1.00000 - 14648 2017 8 21 19 43 39 496 4.8233 187.01926 681.26748 636.45483 0.09639 7.78985 3.99439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26009 0.19751 -1.00000 - 14649 2017 8 21 19 43 44 319 4.8233 187.02044 681.33538 636.51621 0.09634 7.80214 3.99127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25974 0.19751 -1.00000 - 14650 2017 8 21 19 43 49 142 4.8233 187.02162 681.40584 636.57750 0.09629 7.81348 3.99066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25939 0.19751 -1.00000 - 14651 2017 8 21 19 43 53 965 4.8232 187.02279 681.47907 636.63894 0.09623 7.82717 3.99197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25904 0.19751 -1.00000 - 14652 2017 8 21 19 43 58 789 4.8232 187.02397 681.55470 636.70020 0.09619 7.84071 3.98930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25869 0.19751 -1.00000 - 14653 2017 8 21 19 44 3 612 4.8232 187.02515 681.63184 636.76142 0.09614 7.85302 3.98767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25834 0.19751 -1.00000 - 14654 2017 8 21 19 44 8 435 4.8232 187.02633 681.70366 636.82280 0.09609 7.86530 3.98778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25799 0.19751 -1.00000 - 14655 2017 8 21 19 44 13 258 4.8232 187.02751 681.77122 636.88403 0.09605 7.87524 3.98483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25764 0.19751 -1.00000 - 14656 2017 8 21 19 44 18 81 4.8232 187.02868 681.84179 636.94522 0.09601 7.89273 3.98352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25729 0.19751 -1.00000 - 14657 2017 8 21 19 44 22 905 4.8231 187.02986 681.91480 637.00658 0.09597 7.89325 3.98329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25694 0.19751 -1.00000 - 14658 2017 8 21 19 44 27 728 4.8231 187.03104 681.98982 637.06775 0.09592 7.90176 3.98002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25659 0.19751 -1.00000 - 14659 2017 8 21 19 44 32 551 4.8231 187.03221 682.06675 637.12893 0.09588 7.90777 3.97673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25624 0.19751 -1.00000 - 14660 2017 8 21 19 44 37 374 4.8231 187.03339 682.13851 637.19028 0.09584 7.92347 3.97586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25589 0.19751 -1.00000 - 14661 2017 8 21 19 44 42 197 4.8231 187.03456 682.20544 637.25152 0.09579 7.94082 3.97008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25553 0.19751 -1.00000 - 14662 2017 8 21 19 44 47 20 4.8230 187.03574 682.27651 637.31289 0.09575 7.95299 3.96643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25518 0.19751 -1.00000 - 14663 2017 8 21 19 44 51 843 4.8230 187.03691 682.34794 637.37455 0.09570 7.92089 3.96489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25483 0.19751 -1.00000 - 14664 2017 8 21 19 44 56 666 4.8230 187.03808 682.42235 637.43612 0.09565 7.90906 3.95690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25448 0.19751 -1.00000 - 14665 2017 8 21 19 45 1 489 4.8230 187.03925 682.50029 637.49792 0.09560 7.92242 3.95099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25413 0.19751 -1.00000 - 14666 2017 8 21 19 45 6 312 4.8230 187.04043 682.57360 637.56004 0.09555 7.92576 3.94713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25378 0.19751 -1.00000 - 14667 2017 8 21 19 45 11 135 4.8230 187.04160 682.64326 637.62206 0.09550 7.92637 3.93797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25343 0.19751 -1.00000 - 14668 2017 8 21 19 45 15 958 4.8229 187.04277 682.71690 637.68428 0.09545 7.92255 3.93390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25308 0.19751 -1.00000 - 14669 2017 8 21 19 45 20 781 4.8229 187.04394 682.79045 637.74671 0.09540 7.91307 3.93127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25273 0.19751 -1.00000 - 14670 2017 8 21 19 45 25 604 4.8229 187.04511 682.86651 637.80908 0.09535 7.89788 3.92148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25238 0.19751 -1.00000 - 14671 2017 8 21 19 45 30 427 4.8229 187.04627 682.94561 637.87166 0.09530 7.88030 3.91656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25203 0.19751 -1.00000 - 14672 2017 8 21 19 45 35 249 4.8229 187.04744 683.02002 637.93433 0.09525 7.86264 3.91257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25168 0.19751 -1.00000 - 14673 2017 8 21 19 45 40 72 4.8228 187.04861 683.09040 637.99700 0.09520 7.84510 3.90440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25133 0.19751 -1.00000 - 14674 2017 8 21 19 45 44 895 4.8228 187.04978 683.16530 638.05989 0.09515 7.82720 3.89850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25098 0.19750 -1.00000 - 14675 2017 8 21 19 45 49 718 4.8228 187.05095 683.23930 638.12283 0.09510 7.80699 3.89465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25062 0.19750 -1.00000 - 14676 2017 8 21 19 45 54 541 4.8228 187.05211 683.31814 638.18580 0.09505 7.78441 3.88753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25027 0.19750 -1.00000 - 14677 2017 8 21 19 45 59 363 4.8228 187.05328 683.39864 638.24893 0.09500 7.76030 3.88266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24992 0.19750 -1.00000 - 14678 2017 8 21 19 46 4 186 4.8228 187.05445 683.46995 638.31216 0.09494 7.73517 3.87820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24957 0.19750 -1.00000 - 14679 2017 8 21 19 46 9 9 4.8227 187.05561 683.54454 638.37544 0.09489 7.70956 3.87413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24922 0.19750 -1.00000 - 14680 2017 8 21 19 46 13 832 4.8227 187.05678 683.62154 638.43882 0.09484 7.68433 3.87163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24887 0.19750 -1.00000 - 14681 2017 8 21 19 46 18 654 4.8227 187.05795 683.69869 638.50212 0.09478 7.65984 3.86891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24852 0.19750 -1.00000 - 14682 2017 8 21 19 46 23 477 4.8227 187.05911 683.77756 638.56532 0.09473 7.63483 3.86509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24817 0.19750 -1.00000 - 14683 2017 8 21 19 46 28 300 4.8227 187.06027 683.85680 638.62855 0.09468 7.60936 3.86337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24782 0.19750 -1.00000 - 14684 2017 8 21 19 46 33 122 4.8227 187.06144 683.92942 638.69165 0.09463 7.58529 3.86037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24747 0.19750 -1.00000 - 14685 2017 8 21 19 46 37 945 4.8226 187.06260 684.00584 638.75465 0.09458 7.56244 3.85891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24712 0.19750 -1.00000 - 14686 2017 8 21 19 46 42 768 4.8226 187.06376 684.08189 638.81763 0.09453 7.54092 3.85879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24677 0.19750 -1.00000 - 14687 2017 8 21 19 46 47 590 4.8226 187.06492 684.15845 638.88044 0.09448 7.52082 3.85711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24642 0.19750 -1.00000 - 14688 2017 8 21 19 46 52 413 4.8226 187.06608 684.23468 638.94310 0.09444 7.50222 3.85685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24607 0.19750 -1.00000 - 14689 2017 8 21 19 46 57 235 4.8226 187.06724 684.31087 639.00569 0.09440 7.48520 3.85656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24571 0.19750 -1.00000 - 14690 2017 8 21 19 47 2 58 4.8226 187.06840 684.38686 639.06803 0.09436 7.46977 3.85649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24536 0.19750 -1.00000 - 14691 2017 8 21 19 47 6 880 4.8225 187.06956 684.46238 639.13031 0.09432 7.45595 3.85670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24501 0.19750 -1.00000 - 14692 2017 8 21 19 47 11 703 4.8225 187.07072 684.53791 639.19245 0.09427 7.44375 3.85835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24466 0.19750 -1.00000 - 14693 2017 8 21 19 47 16 526 4.8225 187.07188 684.61315 639.25429 0.09423 7.43315 3.85872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24431 0.19750 -1.00000 - 14694 2017 8 21 19 47 21 348 4.8225 187.07304 684.68797 639.31594 0.09418 7.42413 3.85889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24396 0.19750 -1.00000 - 14695 2017 8 21 19 47 26 170 4.8225 187.07419 684.76242 639.37746 0.09413 7.41665 3.86036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24361 0.19750 -1.00000 - 14696 2017 8 21 19 47 30 993 4.8225 187.07535 684.83650 639.43868 0.09408 7.41065 3.86117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24326 0.19750 -1.00000 - 14697 2017 8 21 19 47 35 815 4.8224 187.07651 684.90924 639.49978 0.09402 7.40606 3.86194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24291 0.19750 -1.00000 - 14698 2017 8 21 19 47 40 638 4.8224 187.07767 684.98306 639.56084 0.09396 7.40281 3.86333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24256 0.19750 -1.00000 - 14699 2017 8 21 19 47 45 460 4.8224 187.07882 685.05483 639.62158 0.09390 7.40081 3.86133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24221 0.19750 -1.00000 - 14700 2017 8 21 19 47 50 283 4.8224 187.07998 685.12813 639.68235 0.09383 7.40002 3.86295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24186 0.19750 -1.00000 - 14701 2017 8 21 19 47 55 105 4.8224 187.08114 685.20145 639.74298 0.09376 7.40040 3.86065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24151 0.19750 -1.00000 - 14702 2017 8 21 19 47 59 927 4.8224 187.08229 685.27906 639.80359 0.09369 7.40224 3.85709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24116 0.19749 -1.00000 - 14703 2017 8 21 19 48 4 750 4.8223 187.08345 685.35135 639.86422 0.09362 7.40542 3.85762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24080 0.19749 -1.00000 - 14704 2017 8 21 19 48 9 572 4.8223 187.08461 685.41810 639.92471 0.09355 7.40762 3.85323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24045 0.19749 -1.00000 - 14705 2017 8 21 19 48 14 394 4.8223 187.08576 685.49118 639.98535 0.09348 7.40575 3.84959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24010 0.19749 -1.00000 - 14706 2017 8 21 19 48 19 217 4.8223 187.08692 685.56338 640.04594 0.09341 7.39963 3.85051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23975 0.19749 -1.00000 - 14707 2017 8 21 19 48 24 39 4.8223 187.08808 685.63610 640.10634 0.09334 7.39142 3.84733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23940 0.19749 -1.00000 - 14708 2017 8 21 19 48 28 861 4.8223 187.08923 685.71257 640.16690 0.09328 7.38274 3.84471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23905 0.19749 -1.00000 - 14709 2017 8 21 19 48 33 683 4.8222 187.09039 685.78423 640.22762 0.09322 7.37420 3.84597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23870 0.19749 -1.00000 - 14710 2017 8 21 19 48 38 505 4.8222 187.09155 685.85037 640.28813 0.09316 7.36563 3.84327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23835 0.19749 -1.00000 - 14711 2017 8 21 19 48 43 328 4.8222 187.09270 685.92236 640.34880 0.09310 7.35695 3.84315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23800 0.19749 -1.00000 - 14712 2017 8 21 19 48 48 150 4.8222 187.09386 685.99433 640.40953 0.09305 7.34832 3.84692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23765 0.19749 -1.00000 - 14713 2017 8 21 19 48 52 972 4.8222 187.09501 686.06348 640.47008 0.09300 7.34006 3.84491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23730 0.19749 -1.00000 - 14714 2017 8 21 19 48 57 794 4.8222 187.09616 686.13513 640.53066 0.09296 7.33254 3.84603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23695 0.19749 -1.00000 - 14715 2017 8 21 19 49 2 616 4.8221 187.09731 686.20651 640.59133 0.09291 7.32610 3.84797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23660 0.19749 -1.00000 - 14716 2017 8 21 19 49 7 438 4.8221 187.09846 686.27791 640.65193 0.09287 7.32109 3.84826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23625 0.19749 -1.00000 - 14717 2017 8 21 19 49 12 261 4.8221 187.09961 686.34899 640.71254 0.09284 7.31776 3.85043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23590 0.19749 -1.00000 - 14718 2017 8 21 19 49 17 83 4.8221 187.10076 686.42003 640.77315 0.09280 7.31777 3.85424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23554 0.19749 -1.00000 - 14719 2017 8 21 19 49 21 905 4.8221 187.10190 686.49130 640.83378 0.09276 7.32245 3.85769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23519 0.19749 -1.00000 - 14720 2017 8 21 19 49 26 727 4.8221 187.10305 686.56272 640.89443 0.09272 7.32839 3.86183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23484 0.19749 -1.00000 - 14721 2017 8 21 19 49 31 549 4.8220 187.10419 686.63419 640.95502 0.09269 7.33566 3.86683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23449 0.19749 -1.00000 - 14722 2017 8 21 19 49 36 371 4.8220 187.10533 686.70578 641.01558 0.09265 7.34437 3.87141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23414 0.19749 -1.00000 - 14723 2017 8 21 19 49 41 193 4.8220 187.10647 686.77737 641.07606 0.09261 7.35467 3.87758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23379 0.19749 -1.00000 - 14724 2017 8 21 19 49 46 15 4.8220 187.10761 686.84903 641.13647 0.09257 7.36675 3.88412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23344 0.19749 -1.00000 - 14725 2017 8 21 19 49 50 837 4.8220 187.10875 686.92071 641.19679 0.09253 7.38081 3.89062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23309 0.19749 -1.00000 - 14726 2017 8 21 19 49 55 659 4.8220 187.10988 686.99240 641.25699 0.09249 7.39705 3.89732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23274 0.19749 -1.00000 - 14727 2017 8 21 19 50 0 481 4.8220 187.11102 687.06395 641.31705 0.09245 7.41563 3.90350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23239 0.19749 -1.00000 - 14728 2017 8 21 19 50 5 303 4.8219 187.11215 687.13537 641.37700 0.09240 7.43668 3.90913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23204 0.19749 -1.00000 - 14729 2017 8 21 19 50 10 125 4.8219 187.11328 687.20660 641.43685 0.09235 7.46024 3.91561 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23169 0.19749 -1.00000 - 14730 2017 8 21 19 50 14 947 4.8219 187.11441 687.27792 641.49654 0.09230 7.48634 3.91960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23134 0.19748 -1.00000 - 14731 2017 8 21 19 50 19 768 4.8219 187.11554 687.34887 641.55613 0.09225 7.51492 3.92467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23099 0.19748 -1.00000 - 14732 2017 8 21 19 50 24 590 4.8219 187.11667 687.41796 641.61571 0.09220 7.54588 3.92737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23064 0.19748 -1.00000 - 14733 2017 8 21 19 50 29 412 4.8219 187.11780 687.48815 641.67538 0.09214 7.57906 3.93055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23028 0.19748 -1.00000 - 14734 2017 8 21 19 50 34 234 4.8218 187.11893 687.55817 641.73505 0.09208 7.61434 3.93143 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22993 0.19748 -1.00000 - 14735 2017 8 21 19 50 39 56 4.8218 187.12005 687.63223 641.79480 0.09202 7.65203 3.93229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22958 0.19748 -1.00000 - 14736 2017 8 21 19 50 43 878 4.8218 187.12118 687.70203 641.85461 0.09196 7.69190 3.93300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22923 0.19748 -1.00000 - 14737 2017 8 21 19 50 48 700 4.8218 187.12231 687.77290 641.91446 0.09190 7.73121 3.93377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22888 0.19748 -1.00000 - 14738 2017 8 21 19 50 53 521 4.8218 187.12343 687.84402 641.97423 0.09183 7.76599 3.93287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22853 0.19748 -1.00000 - 14739 2017 8 21 19 50 58 343 4.8218 187.12456 687.91492 642.03414 0.09176 7.78038 3.93319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22818 0.19748 -1.00000 - 14740 2017 8 21 19 51 3 165 4.8218 187.12569 687.98890 642.09424 0.09169 7.77807 3.93297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22783 0.19748 -1.00000 - 14741 2017 8 21 19 51 7 987 4.8217 187.12682 688.06276 642.15435 0.09162 7.81433 3.93022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22748 0.19748 -1.00000 - 14742 2017 8 21 19 51 12 808 4.8217 187.12794 688.13381 642.21456 0.09155 7.85077 3.93154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22713 0.19748 -1.00000 - 14743 2017 8 21 19 51 17 630 4.8217 187.12907 688.20050 642.27473 0.09147 7.89070 3.93037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22678 0.19748 -1.00000 - 14744 2017 8 21 19 51 22 452 4.8217 187.13020 688.27393 642.33487 0.09140 7.93042 3.92662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22643 0.19748 -1.00000 - 14745 2017 8 21 19 51 27 273 4.8217 187.13132 688.34533 642.39511 0.09133 7.96668 3.92856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22608 0.19748 -1.00000 - 14746 2017 8 21 19 51 32 95 4.8217 187.13245 688.41675 642.45534 0.09126 7.99867 3.92654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22573 0.19748 -1.00000 - 14747 2017 8 21 19 51 36 917 4.8217 187.13358 688.49263 642.51551 0.09119 8.02596 3.92321 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22538 0.19748 -1.00000 - 14748 2017 8 21 19 51 41 738 4.8216 187.13471 688.56425 642.57576 0.09112 8.04812 3.92427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22502 0.19748 -1.00000 - 14749 2017 8 21 19 51 46 560 4.8216 187.13584 688.63107 642.63597 0.09105 8.06532 3.92272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22467 0.19748 -1.00000 - 14750 2017 8 21 19 51 51 382 4.8216 187.13696 688.69867 642.69608 0.09099 8.07768 3.91825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22432 0.19748 -1.00000 - 14751 2017 8 21 19 51 56 203 4.8216 187.13809 688.77039 642.75627 0.09093 8.08524 3.91719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22397 0.19748 -1.00000 - 14752 2017 8 21 19 52 1 25 4.8216 187.13922 688.84208 642.81656 0.09087 8.08798 3.91620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22362 0.19748 -1.00000 - 14753 2017 8 21 19 52 5 846 4.8216 187.14034 688.91416 642.87669 0.09081 8.08584 3.91168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22327 0.19748 -1.00000 - 14754 2017 8 21 19 52 10 668 4.8216 187.14147 688.98576 642.93681 0.09076 8.07881 3.91006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22292 0.19748 -1.00000 - 14755 2017 8 21 19 52 15 489 4.8215 187.14259 689.05715 642.99696 0.09071 8.06688 3.90851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22257 0.19748 -1.00000 - 14756 2017 8 21 19 52 20 311 4.8215 187.14372 689.12867 643.05703 0.09067 8.05009 3.90530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22222 0.19748 -1.00000 - 14757 2017 8 21 19 52 25 133 4.8215 187.14484 689.19995 643.11708 0.09063 8.02856 3.90332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22187 0.19748 -1.00000 - 14758 2017 8 21 19 52 29 954 4.8215 187.14596 689.27109 643.17711 0.09058 8.00248 3.90234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22152 0.19747 -1.00000 - 14759 2017 8 21 19 52 34 776 4.8215 187.14708 689.34244 643.23713 0.09054 7.97214 3.90021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22117 0.19747 -1.00000 - 14760 2017 8 21 19 52 39 597 4.8215 187.14820 689.41392 643.29711 0.09050 7.93794 3.89898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22082 0.19747 -1.00000 - 14761 2017 8 21 19 52 44 418 4.8215 187.14932 689.48542 643.35696 0.09046 7.90031 3.89802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22047 0.19747 -1.00000 - 14762 2017 8 21 19 52 49 240 4.8214 187.15044 689.55685 643.41670 0.09042 7.85975 3.89653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22012 0.19747 -1.00000 - 14763 2017 8 21 19 52 54 61 4.8214 187.15155 689.62815 643.47633 0.09038 7.81677 3.89564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21977 0.19747 -1.00000 - 14764 2017 8 21 19 52 58 883 4.8214 187.15267 689.69929 643.53581 0.09034 7.77194 3.89414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21941 0.19747 -1.00000 - 14765 2017 8 21 19 53 3 704 4.8214 187.15378 689.77039 643.59523 0.09029 7.72583 3.89168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21906 0.19747 -1.00000 - 14766 2017 8 21 19 53 8 526 4.8214 187.15489 689.84150 643.65458 0.09025 7.67903 3.89032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21871 0.19747 -1.00000 - 14767 2017 8 21 19 53 13 347 4.8214 187.15600 689.91214 643.71378 0.09020 7.63218 3.88589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21836 0.19747 -1.00000 - 14768 2017 8 21 19 53 18 168 4.8214 187.15711 689.98236 643.77297 0.09015 7.58584 3.88157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21801 0.19747 -1.00000 - 14769 2017 8 21 19 53 22 990 4.8213 187.15822 690.05214 643.83219 0.09010 7.54051 3.87751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21766 0.19747 -1.00000 - 14770 2017 8 21 19 53 27 811 4.8213 187.15933 690.12230 643.89133 0.09004 7.49672 3.87085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21731 0.19747 -1.00000 - 14771 2017 8 21 19 53 32 632 4.8213 187.16044 690.19240 643.95058 0.08999 7.45499 3.86762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21696 0.19747 -1.00000 - 14772 2017 8 21 19 53 37 454 4.8213 187.16155 690.26419 644.00984 0.08993 7.41588 3.86020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21661 0.19747 -1.00000 - 14773 2017 8 21 19 53 42 275 4.8213 187.16265 690.33970 644.06920 0.08987 7.38001 3.85214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21626 0.19747 -1.00000 - 14774 2017 8 21 19 53 47 96 4.8213 187.16376 690.41028 644.12877 0.08980 7.34660 3.84686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21591 0.19747 -1.00000 - 14775 2017 8 21 19 53 51 917 4.8213 187.16486 690.47570 644.18841 0.08974 7.31385 3.83806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21556 0.19747 -1.00000 - 14776 2017 8 21 19 53 56 739 4.8213 187.16597 690.54722 644.24814 0.08968 7.28264 3.83034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21521 0.19747 -1.00000 - 14777 2017 8 21 19 54 1 560 4.8212 187.16708 690.61844 644.30808 0.08961 7.26178 3.82773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21486 0.19747 -1.00000 - 14778 2017 8 21 19 54 6 381 4.8212 187.16818 690.69208 644.36786 0.08954 7.25998 3.82054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21451 0.19747 -1.00000 - 14779 2017 8 21 19 54 11 202 4.8212 187.16929 690.76884 644.42781 0.08946 7.25474 3.81191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21416 0.19747 -1.00000 - 14780 2017 8 21 19 54 16 24 4.8212 187.17039 690.84006 644.48790 0.08939 7.24671 3.81052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21380 0.19747 -1.00000 - 14781 2017 8 21 19 54 20 845 4.8212 187.17149 690.90584 644.54785 0.08931 7.24625 3.80176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21345 0.19747 -1.00000 - 14782 2017 8 21 19 54 25 666 4.8212 187.17260 690.97711 644.60798 0.08924 7.24575 3.79536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21310 0.19747 -1.00000 - 14783 2017 8 21 19 54 30 487 4.8212 187.17370 691.04928 644.66822 0.08916 7.24671 3.79368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21275 0.19747 -1.00000 - 14784 2017 8 21 19 54 35 308 4.8212 187.17481 691.12323 644.72836 0.08908 7.24965 3.78652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21240 0.19747 -1.00000 - 14785 2017 8 21 19 54 40 129 4.8211 187.17591 691.19461 644.78864 0.08901 7.25487 3.78276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21205 0.19747 -1.00000 - 14786 2017 8 21 19 54 44 951 4.8211 187.17701 691.26614 644.84912 0.08894 7.26302 3.77906 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21170 0.19746 -1.00000 - 14787 2017 8 21 19 54 49 772 4.8211 187.17811 691.33492 644.90947 0.08887 7.27051 3.77270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21135 0.19746 -1.00000 - 14788 2017 8 21 19 54 54 593 4.8211 187.17922 691.40677 644.96993 0.08880 7.27382 3.76886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21100 0.19746 -1.00000 - 14789 2017 8 21 19 54 59 414 4.8211 187.18032 691.48050 645.03053 0.08873 7.27370 3.76703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21065 0.19746 -1.00000 - 14790 2017 8 21 19 55 4 235 4.8211 187.18142 691.55224 645.09098 0.08867 7.27239 3.76102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21030 0.19746 -1.00000 - 14791 2017 8 21 19 55 9 56 4.8211 187.18252 691.62915 645.15137 0.08860 7.27289 3.75795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20995 0.19746 -1.00000 - 14792 2017 8 21 19 55 13 877 4.8211 187.18362 691.70061 645.21192 0.08855 7.27644 3.75609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20960 0.19746 -1.00000 - 14793 2017 8 21 19 55 18 698 4.8210 187.18471 691.76839 645.27234 0.08849 7.27944 3.75104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20925 0.19746 -1.00000 - 14794 2017 8 21 19 55 23 519 4.8210 187.18581 691.84049 645.33272 0.08844 7.27816 3.74734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20890 0.19746 -1.00000 - 14795 2017 8 21 19 55 28 340 4.8210 187.18691 691.91420 645.39325 0.08840 7.27360 3.74570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20855 0.19746 -1.00000 - 14796 2017 8 21 19 55 33 161 4.8210 187.18800 691.98687 645.45369 0.08835 7.27849 3.74176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20820 0.19746 -1.00000 - 14797 2017 8 21 19 55 37 982 4.8210 187.18909 692.06393 645.51410 0.08831 7.29109 3.73806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20784 0.19746 -1.00000 - 14798 2017 8 21 19 55 42 803 4.8210 187.19018 692.13545 645.57461 0.08828 7.30076 3.73736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20749 0.19746 -1.00000 - 14799 2017 8 21 19 55 47 624 4.8210 187.19127 692.20261 645.63495 0.08824 7.30719 3.73388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20714 0.19746 -1.00000 - 14800 2017 8 21 19 55 52 445 4.8210 187.19235 692.27433 645.69527 0.08820 7.31035 3.73182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20679 0.19746 -1.00000 - 14801 2017 8 21 19 55 57 266 4.8209 187.19344 692.34522 645.75573 0.08817 7.31069 3.73172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20644 0.19746 -1.00000 - 14802 2017 8 21 19 56 2 87 4.8209 187.19452 692.41910 645.81601 0.08813 7.30866 3.72917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20609 0.19746 -1.00000 - 14803 2017 8 21 19 56 6 908 4.8209 187.19560 692.49371 645.87629 0.08809 7.30470 3.72660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20574 0.19746 -1.00000 - 14804 2017 8 21 19 56 11 729 4.8209 187.19668 692.56569 645.93666 0.08805 7.29924 3.72618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20539 0.19746 -1.00000 - 14805 2017 8 21 19 56 16 550 4.8209 187.19775 692.63440 645.99693 0.08801 7.29255 3.72217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20504 0.19746 -1.00000 - 14806 2017 8 21 19 56 21 371 4.8209 187.19883 692.70665 646.05726 0.08796 7.28355 3.71917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20469 0.19746 -1.00000 - 14807 2017 8 21 19 56 26 191 4.8209 187.19990 692.77823 646.11783 0.08790 7.25021 3.71707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20434 0.19746 -1.00000 - 14808 2017 8 21 19 56 31 12 4.8209 187.20098 692.85325 646.17826 0.08784 7.24238 3.71153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20399 0.19746 -1.00000 - 14809 2017 8 21 19 56 35 833 4.8208 187.20205 692.92652 646.23887 0.08778 7.23143 3.70866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20364 0.19746 -1.00000 - 14810 2017 8 21 19 56 40 654 4.8208 187.20312 692.99990 646.29958 0.08771 7.21858 3.70528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20329 0.19746 -1.00000 - 14811 2017 8 21 19 56 45 475 4.8208 187.20419 693.07438 646.36025 0.08763 7.20128 3.69851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20294 0.19746 -1.00000 - 14812 2017 8 21 19 56 50 296 4.8208 187.20526 693.14688 646.42112 0.08756 7.18794 3.69687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20259 0.19746 -1.00000 - 14813 2017 8 21 19 56 55 116 4.8208 187.20633 693.21531 646.48202 0.08748 7.17791 3.69211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20224 0.19746 -1.00000 - 14814 2017 8 21 19 56 59 937 4.8208 187.20740 693.29303 646.54293 0.08739 7.16594 3.68685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20188 0.19746 -1.00000 - 14815 2017 8 21 19 57 4 758 4.8208 187.20847 693.36711 646.60393 0.08731 7.15421 3.68788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20153 0.19745 -1.00000 - 14816 2017 8 21 19 57 9 579 4.8208 187.20954 693.44019 646.66494 0.08722 7.14280 3.68379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20118 0.19745 -1.00000 - 14817 2017 8 21 19 57 14 399 4.8208 187.21061 693.51451 646.72588 0.08714 7.13239 3.67887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20083 0.19745 -1.00000 - 14818 2017 8 21 19 57 19 220 4.8207 187.21167 693.58676 646.78698 0.08705 7.12306 3.68008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20048 0.19745 -1.00000 - 14819 2017 8 21 19 57 24 41 4.8207 187.21274 693.65412 646.84801 0.08697 7.11394 3.67715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20013 0.19745 -1.00000 - 14820 2017 8 21 19 57 28 862 4.8207 187.21381 693.73297 646.90908 0.08690 7.10493 3.67356 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19978 0.19745 -1.00000 - 14821 2017 8 21 19 57 33 682 4.8207 187.21487 693.80602 646.97040 0.08682 7.09651 3.67638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19943 0.19745 -1.00000 - 14822 2017 8 21 19 57 38 503 4.8207 187.21594 693.87949 647.03152 0.08675 7.08858 3.67280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19908 0.19745 -1.00000 - 14823 2017 8 21 19 57 43 324 4.8207 187.21700 693.95362 647.09267 0.08669 7.08168 3.67268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19873 0.19745 -1.00000 - 14824 2017 8 21 19 57 48 144 4.8207 187.21807 694.02717 647.15389 0.08662 7.07581 3.67657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19838 0.19745 -1.00000 - 14825 2017 8 21 19 57 52 965 4.8207 187.21913 694.10041 647.21490 0.08656 7.06918 3.67420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19803 0.19745 -1.00000 - 14826 2017 8 21 19 57 57 786 4.8207 187.22019 694.17745 647.27589 0.08650 7.06077 3.67360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19768 0.19745 -1.00000 - 14827 2017 8 21 19 58 2 606 4.8207 187.22125 694.24985 647.33693 0.08645 7.05273 3.67820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19733 0.19745 -1.00000 - 14828 2017 8 21 19 58 7 427 4.8206 187.22231 694.32279 647.39779 0.08639 7.04672 3.67734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19698 0.19745 -1.00000 - 14829 2017 8 21 19 58 12 248 4.8206 187.22337 694.39842 647.45856 0.08634 7.04274 3.67931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19663 0.19745 -1.00000 - 14830 2017 8 21 19 58 17 68 4.8206 187.22442 694.47152 647.51935 0.08629 7.04087 3.68332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19628 0.19745 -1.00000 - 14831 2017 8 21 19 58 21 889 4.8206 187.22547 694.54350 647.57991 0.08624 7.04042 3.68452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19593 0.19745 -1.00000 - 14832 2017 8 21 19 58 26 710 4.8206 187.22653 694.61907 647.64037 0.08619 7.04102 3.68843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19557 0.19745 -1.00000 - 14833 2017 8 21 19 58 31 530 4.8206 187.22757 694.69020 647.70079 0.08614 7.04259 3.69161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19522 0.19745 -1.00000 - 14834 2017 8 21 19 58 36 351 4.8206 187.22862 694.76314 647.76099 0.08610 7.04530 3.69507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19487 0.19745 -1.00000 - 14835 2017 8 21 19 58 41 171 4.8206 187.22967 694.83568 647.82114 0.08605 7.04936 3.70095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19452 0.19745 -1.00000 - 14836 2017 8 21 19 58 45 992 4.8206 187.23071 694.90821 647.88104 0.08601 7.05500 3.70519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19417 0.19745 -1.00000 - 14837 2017 8 21 19 58 50 812 4.8205 187.23175 694.97894 647.94076 0.08596 7.06241 3.70850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19382 0.19745 -1.00000 - 14838 2017 8 21 19 58 55 633 4.8205 187.23279 695.05097 648.00033 0.08592 7.07175 3.71413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19347 0.19745 -1.00000 - 14839 2017 8 21 19 59 0 453 4.8205 187.23383 695.12232 648.05968 0.08588 7.08311 3.71854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19312 0.19745 -1.00000 - 14840 2017 8 21 19 59 5 274 4.8205 187.23486 695.19371 648.11891 0.08583 7.09654 3.72124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19277 0.19745 -1.00000 - 14841 2017 8 21 19 59 10 94 4.8205 187.23590 695.26471 648.17806 0.08579 7.11365 3.72891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19242 0.19745 -1.00000 - 14842 2017 8 21 19 59 14 915 4.8205 187.23693 695.33087 648.23693 0.08574 7.13286 3.72945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19207 0.19745 -1.00000 - 14843 2017 8 21 19 59 19 735 4.8205 187.23796 695.40363 648.29568 0.08569 7.15321 3.73095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19172 0.19744 -1.00000 - 14844 2017 8 21 19 59 24 556 4.8205 187.23900 695.47305 648.35449 0.08563 7.17466 3.73726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19137 0.19744 -1.00000 - 14845 2017 8 21 19 59 29 376 4.8205 187.24003 695.54389 648.41305 0.08557 7.19706 3.73741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19102 0.19744 -1.00000 - 14846 2017 8 21 19 59 34 197 4.8205 187.24106 695.61862 648.47164 0.08551 7.21951 3.73880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19067 0.19744 -1.00000 - 14847 2017 8 21 19 59 39 17 4.8204 187.24209 695.68790 648.53039 0.08544 7.24635 3.74450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19032 0.19744 -1.00000 - 14848 2017 8 21 19 59 43 838 4.8204 187.24312 695.75178 648.58880 0.08536 7.27098 3.74256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18997 0.19744 -1.00000 - 14849 2017 8 21 19 59 48 658 4.8204 187.24414 695.82189 648.64727 0.08528 7.28988 3.74445 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18961 0.19744 -1.00000 - 14850 2017 8 21 19 59 53 479 4.8204 187.24517 695.89124 648.70585 0.08520 7.26398 3.75148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18926 0.19744 -1.00000 - 14851 2017 8 21 19 59 58 299 4.8204 187.24620 695.96221 648.76401 0.08512 7.29639 3.75007 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18891 0.19744 -1.00000 - 14852 2017 8 21 20 0 3 119 4.8204 187.24723 696.03626 648.82228 0.08504 7.31168 3.75122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18856 0.19744 -1.00000 - 14853 2017 8 21 20 0 7 940 4.8204 187.24826 696.10481 648.88063 0.08495 7.32617 3.75708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18821 0.19744 -1.00000 - 14854 2017 8 21 20 0 12 760 4.8204 187.24929 696.16780 648.93867 0.08486 7.33919 3.75554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18786 0.19744 -1.00000 - 14855 2017 8 21 20 0 17 580 4.8204 187.25032 696.23650 648.99681 0.08477 7.34905 3.75844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18751 0.19744 -1.00000 - 14856 2017 8 21 20 0 22 401 4.8204 187.25135 696.30433 649.05499 0.08469 7.35492 3.76427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18716 0.19744 -1.00000 - 14857 2017 8 21 20 0 27 221 4.8204 187.25238 696.37103 649.11294 0.08461 7.35832 3.76496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18681 0.19744 -1.00000 - 14858 2017 8 21 20 0 32 42 4.8203 187.25341 696.43971 649.17091 0.08453 7.35994 3.76845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18646 0.19744 -1.00000 - 14859 2017 8 21 20 0 36 862 4.8203 187.25444 696.50814 649.22884 0.08445 7.36056 3.77217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18611 0.19744 -1.00000 - 14860 2017 8 21 20 0 41 682 4.8203 187.25547 696.57533 649.28666 0.08437 7.36095 3.77369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18576 0.19744 -1.00000 - 14861 2017 8 21 20 0 46 503 4.8203 187.25650 696.64325 649.34449 0.08430 7.36175 3.77782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18541 0.19744 -1.00000 - 14862 2017 8 21 20 0 51 323 4.8203 187.25753 696.71091 649.40223 0.08424 7.36344 3.78295 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18506 0.19744 -1.00000 - 14863 2017 8 21 20 0 56 143 4.8203 187.25856 696.77849 649.45995 0.08418 7.36636 3.78678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18471 0.19744 -1.00000 - 14864 2017 8 21 20 1 0 963 4.8203 187.25959 696.84627 649.51771 0.08412 7.37070 3.79080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18436 0.19744 -1.00000 - 14865 2017 8 21 20 1 5 784 4.8203 187.26062 696.91420 649.57535 0.08406 7.37655 3.79654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18401 0.19744 -1.00000 - 14866 2017 8 21 20 1 10 604 4.8203 187.26165 696.98203 649.63285 0.08401 7.38400 3.80074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18366 0.19744 -1.00000 - 14867 2017 8 21 20 1 15 424 4.8203 187.26267 697.04955 649.69022 0.08396 7.39482 3.80625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18331 0.19744 -1.00000 - 14868 2017 8 21 20 1 20 245 4.8203 187.26370 697.11697 649.74750 0.08392 7.40699 3.81215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18295 0.19744 -1.00000 - 14869 2017 8 21 20 1 25 65 4.8203 187.26472 697.18436 649.80464 0.08387 7.41999 3.81744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18260 0.19744 -1.00000 - 14870 2017 8 21 20 1 29 885 4.8202 187.26574 697.25164 649.86171 0.08383 7.43399 3.82246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18225 0.19744 -1.00000 - 14871 2017 8 21 20 1 34 705 4.8202 187.26677 697.31885 649.91863 0.08379 7.44915 3.82837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18190 0.19743 -1.00000 - 14872 2017 8 21 20 1 39 525 4.8202 187.26779 697.38592 649.97541 0.08374 7.46566 3.83278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18155 0.19743 -1.00000 - 14873 2017 8 21 20 1 44 346 4.8202 187.26880 697.45265 650.03204 0.08370 7.48364 3.83749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18120 0.19743 -1.00000 - 14874 2017 8 21 20 1 49 166 4.8202 187.26982 697.51914 650.08852 0.08366 7.50315 3.84197 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18085 0.19743 -1.00000 - 14875 2017 8 21 20 1 53 986 4.8202 187.27084 697.58529 650.14485 0.08361 7.52419 3.84441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18050 0.19743 -1.00000 - 14876 2017 8 21 20 1 58 806 4.8202 187.27185 697.65122 650.20114 0.08357 7.54667 3.84764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18015 0.19743 -1.00000 - 14877 2017 8 21 20 2 3 626 4.8202 187.27287 697.71686 650.25743 0.08352 7.57042 3.84764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17980 0.19743 -1.00000 - 14878 2017 8 21 20 2 8 447 4.8202 187.27388 697.78177 650.31369 0.08347 7.59521 3.84558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17945 0.19743 -1.00000 - 14879 2017 8 21 20 2 13 267 4.8202 187.27489 697.84369 650.37015 0.08342 7.62082 3.84493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17910 0.19743 -1.00000 - 14880 2017 8 21 20 2 18 87 4.8202 187.27590 697.91310 650.42665 0.08337 7.64737 3.84100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17875 0.19743 -1.00000 - 14881 2017 8 21 20 2 22 907 4.8201 187.27691 697.97939 650.48329 0.08331 7.67471 3.83909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17840 0.19743 -1.00000 - 14882 2017 8 21 20 2 27 727 4.8201 187.27792 698.04559 650.53996 0.08325 7.69859 3.83516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17805 0.19743 -1.00000 - 14883 2017 8 21 20 2 32 547 4.8201 187.27893 698.11199 650.59682 0.08318 7.72644 3.82961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17770 0.19743 -1.00000 - 14884 2017 8 21 20 2 37 368 4.8201 187.27994 698.17548 650.65381 0.08312 7.75190 3.82831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17735 0.19743 -1.00000 - 14885 2017 8 21 20 2 42 188 4.8201 187.28095 698.24176 650.71100 0.08305 7.72998 3.82045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17700 0.19743 -1.00000 - 14886 2017 8 21 20 2 47 8 4.8201 187.28196 698.31425 650.76828 0.08298 7.72408 3.81481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17665 0.19743 -1.00000 - 14887 2017 8 21 20 2 51 828 4.8201 187.28297 698.38096 650.82572 0.08290 7.76193 3.81066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17629 0.19743 -1.00000 - 14888 2017 8 21 20 2 56 648 4.8201 187.28398 698.44896 650.88333 0.08282 7.78115 3.80293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17594 0.19743 -1.00000 - 14889 2017 8 21 20 3 1 468 4.8201 187.28499 698.51656 650.94114 0.08274 7.79711 3.79610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17559 0.19743 -1.00000 - 14890 2017 8 21 20 3 6 288 4.8201 187.28600 698.57996 650.99918 0.08266 7.80691 3.79242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17524 0.19743 -1.00000 - 14891 2017 8 21 20 3 11 108 4.8201 187.28701 698.64878 651.05721 0.08258 7.81018 3.78371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17489 0.19743 -1.00000 - 14892 2017 8 21 20 3 15 928 4.8201 187.28802 698.72257 651.11541 0.08250 7.80844 3.77675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17454 0.19743 -1.00000 - 14893 2017 8 21 20 3 20 748 4.8201 187.28903 698.79082 651.17374 0.08241 7.80248 3.77381 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17419 0.19743 -1.00000 - 14894 2017 8 21 20 3 25 568 4.8201 187.29004 698.85446 651.23210 0.08233 7.79288 3.76486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17384 0.19743 -1.00000 - 14895 2017 8 21 20 3 30 388 4.8200 187.29105 698.92188 651.29069 0.08225 7.78006 3.75786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17349 0.19743 -1.00000 - 14896 2017 8 21 20 3 35 208 4.8200 187.29206 698.99136 651.34948 0.08217 7.76431 3.75182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17314 0.19743 -1.00000 - 14897 2017 8 21 20 3 40 28 4.8200 187.29308 699.05896 651.40830 0.08210 7.74577 3.74257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17279 0.19743 -1.00000 - 14898 2017 8 21 20 3 44 848 4.8200 187.29409 699.12971 651.46737 0.08202 7.72451 3.73656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17244 0.19743 -1.00000 - 14899 2017 8 21 20 3 49 669 4.8200 187.29510 699.20067 651.52652 0.08195 7.70058 3.73049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17209 0.19742 -1.00000 - 14900 2017 8 21 20 3 54 489 4.8200 187.29611 699.27178 651.58573 0.08189 7.67405 3.72272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17174 0.19742 -1.00000 - 14901 2017 8 21 20 3 59 309 4.8200 187.29712 699.34271 651.64504 0.08182 7.64494 3.71749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17139 0.19742 -1.00000 - 14902 2017 8 21 20 4 4 129 4.8200 187.29813 699.41388 651.70441 0.08176 7.61327 3.71232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17104 0.19742 -1.00000 - 14903 2017 8 21 20 4 8 948 4.8200 187.29914 699.48543 651.76379 0.08171 7.57902 3.70550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17069 0.19742 -1.00000 - 14904 2017 8 21 20 4 13 768 4.8200 187.30015 699.55706 651.82319 0.08165 7.54225 3.70050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17034 0.19742 -1.00000 - 14905 2017 8 21 20 4 18 588 4.8200 187.30115 699.62887 651.88258 0.08160 7.50302 3.69596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16999 0.19742 -1.00000 - 14906 2017 8 21 20 4 23 408 4.8200 187.30216 699.70088 651.94191 0.08156 7.46147 3.69074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16963 0.19742 -1.00000 - 14907 2017 8 21 20 4 28 228 4.8200 187.30316 699.77297 652.00122 0.08151 7.41779 3.68586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16928 0.19742 -1.00000 - 14908 2017 8 21 20 4 33 48 4.8199 187.30417 699.84503 652.06043 0.08146 7.37228 3.68113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16893 0.19742 -1.00000 - 14909 2017 8 21 20 4 37 868 4.8199 187.30517 699.91712 652.11960 0.08142 7.32527 3.67491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16858 0.19742 -1.00000 - 14910 2017 8 21 20 4 42 688 4.8199 187.30617 699.98920 652.17871 0.08137 7.27721 3.67003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16823 0.19742 -1.00000 - 14911 2017 8 21 20 4 47 508 4.8199 187.30717 700.06088 652.23779 0.08133 7.22859 3.66206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16788 0.19742 -1.00000 - 14912 2017 8 21 20 4 52 328 4.8199 187.30817 700.13274 652.29691 0.08128 7.17991 3.65339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16753 0.19742 -1.00000 - 14913 2017 8 21 20 4 57 148 4.8199 187.30917 700.20418 652.35610 0.08123 7.13168 3.64706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16718 0.19742 -1.00000 - 14914 2017 8 21 20 5 1 968 4.8199 187.31016 700.27227 652.41525 0.08118 7.08440 3.63586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16683 0.19742 -1.00000 - 14915 2017 8 21 20 5 6 788 4.8199 187.31116 700.34557 652.47451 0.08112 7.03858 3.62726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16648 0.19742 -1.00000 - 14916 2017 8 21 20 5 11 608 4.8199 187.31215 700.41625 652.53396 0.08106 6.99472 3.61851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16613 0.19742 -1.00000 - 14917 2017 8 21 20 5 16 428 4.8199 187.31314 700.49415 652.59345 0.08100 6.95351 3.60710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16578 0.19742 -1.00000 - 14918 2017 8 21 20 5 21 247 4.8199 187.31413 700.56622 652.65313 0.08093 6.91406 3.59946 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16543 0.19742 -1.00000 - 14919 2017 8 21 20 5 26 67 4.8199 187.31512 700.63966 652.71288 0.08087 6.87444 3.59085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16508 0.19742 -1.00000 - 14920 2017 8 21 20 5 30 887 4.8199 187.31612 700.71131 652.77251 0.08080 6.83538 3.58204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16473 0.19742 -1.00000 - 14921 2017 8 21 20 5 35 707 4.8199 187.31711 700.78377 652.83225 0.08072 6.77315 3.57576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16438 0.19742 -1.00000 - 14922 2017 8 21 20 5 40 527 4.8199 187.31810 700.85586 652.89192 0.08065 6.75473 3.56935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16403 0.19742 -1.00000 - 14923 2017 8 21 20 5 45 347 4.8198 187.31908 700.93154 652.95163 0.08057 6.73794 3.56081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16368 0.19742 -1.00000 - 14924 2017 8 21 20 5 50 167 4.8198 187.32007 701.00403 653.01139 0.08049 6.72308 3.55579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16333 0.19742 -1.00000 - 14925 2017 8 21 20 5 54 986 4.8198 187.32106 701.07303 653.07108 0.08041 6.70762 3.54806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16297 0.19742 -1.00000 - 14926 2017 8 21 20 5 59 806 4.8198 187.32205 701.14990 653.13075 0.08033 6.68898 3.53932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16262 0.19742 -1.00000 - 14927 2017 8 21 20 6 4 626 4.8198 187.32304 701.22403 653.19065 0.08025 6.66917 3.53410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16227 0.19741 -1.00000 - 14928 2017 8 21 20 6 9 446 4.8198 187.32403 701.29589 653.25046 0.08017 6.64750 3.52562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16192 0.19741 -1.00000 - 14929 2017 8 21 20 6 14 266 4.8198 187.32502 701.36866 653.31040 0.08009 6.62438 3.52042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16157 0.19741 -1.00000 - 14930 2017 8 21 20 6 19 86 4.8198 187.32601 701.43802 653.37040 0.08001 6.60133 3.51565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16122 0.19741 -1.00000 - 14931 2017 8 21 20 6 23 905 4.8198 187.32699 701.51525 653.43033 0.07994 6.57690 3.50830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16087 0.19741 -1.00000 - 14932 2017 8 21 20 6 28 725 4.8198 187.32798 701.58723 653.49028 0.07987 6.55250 3.50649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16052 0.19741 -1.00000 - 14933 2017 8 21 20 6 33 545 4.8198 187.32897 701.65754 653.55003 0.07980 6.53070 3.50323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16017 0.19741 -1.00000 - 14934 2017 8 21 20 6 38 365 4.8198 187.32995 701.73649 653.60987 0.07973 6.51424 3.49690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15982 0.19741 -1.00000 - 14935 2017 8 21 20 6 43 184 4.8198 187.33094 701.80847 653.66981 0.07966 6.50047 3.49710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15947 0.19741 -1.00000 - 14936 2017 8 21 20 6 48 4 4.8198 187.33193 701.87605 653.72951 0.07960 6.48540 3.49386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15912 0.19741 -1.00000 - 14937 2017 8 21 20 6 52 824 4.8198 187.33291 701.95153 653.78918 0.07953 6.46946 3.48970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15877 0.19741 -1.00000 - 14938 2017 8 21 20 6 57 644 4.8198 187.33389 702.02354 653.84883 0.07947 6.45433 3.49188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15842 0.19741 -1.00000 - 14939 2017 8 21 20 7 2 464 4.8198 187.33488 702.09475 653.90836 0.07942 6.44429 3.48936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15807 0.19741 -1.00000 - 14940 2017 8 21 20 7 7 283 4.8198 187.33586 702.17151 653.96773 0.07936 6.43656 3.48679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15772 0.19741 -1.00000 - 14941 2017 8 21 20 7 12 103 4.8197 187.33684 702.24284 654.02711 0.07930 6.42967 3.48953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15737 0.19741 -1.00000 - 14942 2017 8 21 20 7 16 923 4.8197 187.33782 702.31220 654.08639 0.07925 6.42397 3.48891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15702 0.19741 -1.00000 - 14943 2017 8 21 20 7 21 742 4.8197 187.33880 702.38619 654.14553 0.07920 6.41723 3.48678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15667 0.19741 -1.00000 - 14944 2017 8 21 20 7 26 562 4.8197 187.33977 702.45725 654.20471 0.07915 6.41068 3.49063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15632 0.19741 -1.00000 - 14945 2017 8 21 20 7 31 382 4.8197 187.34075 702.52528 654.26381 0.07909 6.40999 3.48937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15596 0.19741 -1.00000 - 14946 2017 8 21 20 7 36 202 4.8197 187.34172 702.60209 654.32285 0.07904 6.41255 3.48629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15561 0.19741 -1.00000 - 14947 2017 8 21 20 7 41 21 4.8197 187.34270 702.67360 654.38188 0.07899 6.41651 3.48998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15526 0.19741 -1.00000 - 14948 2017 8 21 20 7 45 841 4.8197 187.34367 702.74470 654.44077 0.07893 6.42118 3.48804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15491 0.19741 -1.00000 - 14949 2017 8 21 20 7 50 661 4.8197 187.34464 702.81572 654.49964 0.07887 6.42341 3.48891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15456 0.19741 -1.00000 - 14950 2017 8 21 20 7 55 480 4.8197 187.34561 702.88589 654.55854 0.07881 6.39353 3.49252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15421 0.19741 -1.00000 - 14951 2017 8 21 20 8 0 300 4.8197 187.34658 702.95397 654.61717 0.07875 6.40403 3.49142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15386 0.19741 -1.00000 - 14952 2017 8 21 20 8 5 120 4.8197 187.34755 703.02858 654.67578 0.07868 6.41581 3.49432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15351 0.19741 -1.00000 - 14953 2017 8 21 20 8 9 940 4.8197 187.34852 703.09480 654.73438 0.07861 6.43813 3.49788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15316 0.19741 -1.00000 - 14954 2017 8 21 20 8 14 759 4.8197 187.34948 703.16854 654.79285 0.07854 6.46167 3.49827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15281 0.19741 -1.00000 - 14955 2017 8 21 20 8 19 579 4.8197 187.35045 703.23791 654.85125 0.07847 6.49286 3.50463 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15246 0.19740 -1.00000 - 14956 2017 8 21 20 8 24 399 4.8197 187.35142 703.30382 654.90955 0.07839 6.52514 3.51009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15211 0.19740 -1.00000 - 14957 2017 8 21 20 8 29 218 4.8197 187.35239 703.37091 654.96762 0.07830 6.55930 3.51304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15176 0.19740 -1.00000 - 14958 2017 8 21 20 8 34 38 4.8197 187.35335 703.44116 655.02560 0.07822 6.59569 3.52031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15141 0.19740 -1.00000 - 14959 2017 8 21 20 8 38 858 4.8197 187.35432 703.51012 655.08343 0.07813 6.63441 3.52823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15106 0.19740 -1.00000 - 14960 2017 8 21 20 8 43 677 4.8196 187.35528 703.57793 655.14105 0.07805 6.67524 3.53391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15071 0.19740 -1.00000 - 14961 2017 8 21 20 8 48 497 4.8196 187.35625 703.64547 655.19862 0.07796 6.71790 3.54186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15036 0.19740 -1.00000 - 14962 2017 8 21 20 8 53 316 4.8196 187.35722 703.71337 655.25607 0.07787 6.76196 3.55122 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15001 0.19740 -1.00000 - 14963 2017 8 21 20 8 58 136 4.8196 187.35818 703.78080 655.31333 0.07779 6.80695 3.55827 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14966 0.19740 -1.00000 - 14964 2017 8 21 20 9 2 956 4.8196 187.35915 703.84777 655.37040 0.07770 6.85241 3.56884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14931 0.19740 -1.00000 - 14965 2017 8 21 20 9 7 775 4.8196 187.36012 703.91450 655.42735 0.07762 6.89787 3.57826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14895 0.19740 -1.00000 - 14966 2017 8 21 20 9 12 595 4.8196 187.36108 703.98094 655.48406 0.07755 6.94294 3.58782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14860 0.19740 -1.00000 - 14967 2017 8 21 20 9 17 415 4.8196 187.36204 704.04693 655.54055 0.07747 6.98730 3.59926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14825 0.19740 -1.00000 - 14968 2017 8 21 20 9 22 234 4.8196 187.36301 704.11265 655.59683 0.07740 7.03170 3.60848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14790 0.19740 -1.00000 - 14969 2017 8 21 20 9 27 54 4.8196 187.36397 704.17799 655.65295 0.07733 7.08674 3.61816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14755 0.19740 -1.00000 - 14970 2017 8 21 20 9 31 873 4.8196 187.36494 704.24306 655.70893 0.07727 7.14051 3.62821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14720 0.19740 -1.00000 - 14971 2017 8 21 20 9 36 693 4.8196 187.36590 704.30805 655.76475 0.07721 7.19202 3.63632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14685 0.19740 -1.00000 - 14972 2017 8 21 20 9 41 513 4.8196 187.36686 704.37279 655.82048 0.07715 7.24048 3.64519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14650 0.19740 -1.00000 - 14973 2017 8 21 20 9 46 332 4.8196 187.36782 704.43392 655.87611 0.07710 7.28559 3.65205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14615 0.19740 -1.00000 - 14974 2017 8 21 20 9 51 152 4.8196 187.36878 704.49910 655.93174 0.07704 7.32726 3.65703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14580 0.19740 -1.00000 - 14975 2017 8 21 20 9 55 971 4.8196 187.36973 704.56296 655.98742 0.07699 7.36556 3.66205 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14545 0.19740 -1.00000 - 14976 2017 8 21 20 10 0 791 4.8196 187.37069 704.63164 656.04324 0.07694 7.40120 3.66589 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14510 0.19740 -1.00000 - 14977 2017 8 21 20 10 5 610 4.8196 187.37164 704.69850 656.09912 0.07690 7.43448 3.67089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14475 0.19740 -1.00000 - 14978 2017 8 21 20 10 10 430 4.8196 187.37259 704.76232 656.15494 0.07685 7.46362 3.67201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14440 0.19740 -1.00000 - 14979 2017 8 21 20 10 15 250 4.8196 187.37354 704.82321 656.21094 0.07681 7.48610 3.67243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14405 0.19740 -1.00000 - 14980 2017 8 21 20 10 20 69 4.8196 187.37449 704.88809 656.26708 0.07676 7.50249 3.67620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14370 0.19740 -1.00000 - 14981 2017 8 21 20 10 24 889 4.8196 187.37543 704.95579 656.32324 0.07672 7.51530 3.67800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14335 0.19740 -1.00000 - 14982 2017 8 21 20 10 29 708 4.8196 187.37637 705.02530 656.37939 0.07667 7.52621 3.67985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14300 0.19740 -1.00000 - 14983 2017 8 21 20 10 34 528 4.8195 187.37732 705.09356 656.43573 0.07662 7.53597 3.68171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14265 0.19739 -1.00000 - 14984 2017 8 21 20 10 39 347 4.8195 187.37826 705.15763 656.49218 0.07657 7.54461 3.68416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14230 0.19739 -1.00000 - 14985 2017 8 21 20 10 44 167 4.8195 187.37919 705.22095 656.54858 0.07652 7.55211 3.68428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14195 0.19739 -1.00000 - 14986 2017 8 21 20 10 48 986 4.8195 187.38013 705.28251 656.60510 0.07646 7.55847 3.68552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14159 0.19739 -1.00000 - 14987 2017 8 21 20 10 53 806 4.8195 187.38107 705.34940 656.66171 0.07640 7.56378 3.68897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14124 0.19739 -1.00000 - 14988 2017 8 21 20 10 58 626 4.8195 187.38201 705.41661 656.71833 0.07633 7.56814 3.69044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14089 0.19739 -1.00000 - 14989 2017 8 21 20 11 3 445 4.8195 187.38294 705.48362 656.77480 0.07626 7.57163 3.69132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14054 0.19739 -1.00000 - 14990 2017 8 21 20 11 8 265 4.8195 187.38388 705.55036 656.83132 0.07618 7.57433 3.69330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14019 0.19739 -1.00000 - 14991 2017 8 21 20 11 13 84 4.8195 187.38481 705.61732 656.88784 0.07610 7.57631 3.69607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13984 0.19739 -1.00000 - 14992 2017 8 21 20 11 17 904 4.8195 187.38574 705.68436 656.94427 0.07602 7.57761 3.69681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13949 0.19739 -1.00000 - 14993 2017 8 21 20 11 22 723 4.8195 187.38668 705.75094 657.00064 0.07593 7.57827 3.69977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13914 0.19739 -1.00000 - 14994 2017 8 21 20 11 27 543 4.8195 187.38761 705.81750 657.05697 0.07583 7.57825 3.70243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13879 0.19739 -1.00000 - 14995 2017 8 21 20 11 32 362 4.8195 187.38854 705.88425 657.11324 0.07574 7.57751 3.70416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13844 0.19739 -1.00000 - 14996 2017 8 21 20 11 37 182 4.8195 187.38948 705.95085 657.16935 0.07564 7.57597 3.70674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13809 0.19739 -1.00000 - 14997 2017 8 21 20 11 42 1 4.8195 187.39041 706.01736 657.22535 0.07554 7.57354 3.70896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13774 0.19739 -1.00000 - 14998 2017 8 21 20 11 46 821 4.8195 187.39134 706.08366 657.28122 0.07544 7.57011 3.71135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13739 0.19739 -1.00000 - 14999 2017 8 21 20 11 51 640 4.8195 187.39228 706.14991 657.33695 0.07534 7.56560 3.71350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13704 0.19739 -1.00000 - 15000 2017 8 21 20 11 56 460 4.8195 187.39321 706.21599 657.39258 0.07525 7.55991 3.71452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13669 0.19739 -1.00000 - 15001 2017 8 21 20 12 1 279 4.8195 187.39415 706.28210 657.44816 0.07515 7.55301 3.71462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13634 0.19739 -1.00000 - 15002 2017 8 21 20 12 6 99 4.8195 187.39508 706.34810 657.50366 0.07506 7.54484 3.71520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13599 0.19739 -1.00000 - 15003 2017 8 21 20 12 10 918 4.8195 187.39602 706.41411 657.55908 0.07498 7.53540 3.71259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13564 0.19739 -1.00000 - 15004 2017 8 21 20 12 15 738 4.8195 187.39695 706.48006 657.61443 0.07490 7.52467 3.71101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13529 0.19739 -1.00000 - 15005 2017 8 21 20 12 20 557 4.8195 187.39789 706.54226 657.66982 0.07482 7.51266 3.70694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13494 0.19739 -1.00000 - 15006 2017 8 21 20 12 25 377 4.8195 187.39882 706.60710 657.72531 0.07475 7.49936 3.70232 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13458 0.19739 -1.00000 - 15007 2017 8 21 20 12 30 196 4.8195 187.39975 706.67133 657.78084 0.07468 7.48489 3.69656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13423 0.19739 -1.00000 - 15008 2017 8 21 20 12 35 15 4.8195 187.40068 706.74167 657.83649 0.07462 7.46947 3.69002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13388 0.19739 -1.00000 - 15009 2017 8 21 20 12 39 835 4.8195 187.40161 706.81123 657.89237 0.07456 7.45355 3.68259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13353 0.19739 -1.00000 - 15010 2017 8 21 20 12 44 654 4.8195 187.40254 706.87728 657.94843 0.07451 7.43582 3.67307 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13318 0.19739 -1.00000 - 15011 2017 8 21 20 12 49 474 4.8195 187.40347 706.94269 658.00463 0.07446 7.41463 3.66440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13283 0.19738 -1.00000 - 15012 2017 8 21 20 12 54 293 4.8195 187.40439 707.00530 658.06100 0.07441 7.39084 3.65679 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13248 0.19738 -1.00000 - 15013 2017 8 21 20 12 59 113 4.8195 187.40532 707.07628 658.11748 0.07436 7.36372 3.64775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13213 0.19738 -1.00000 - 15014 2017 8 21 20 13 3 932 4.8195 187.40624 707.14868 658.17424 0.07432 7.28759 3.63914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13178 0.19738 -1.00000 - 15015 2017 8 21 20 13 8 752 4.8195 187.40716 707.21271 658.23105 0.07427 7.27657 3.63087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13143 0.19738 -1.00000 - 15016 2017 8 21 20 13 13 571 4.8195 187.40808 707.28515 658.28807 0.07422 7.24466 3.62077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13108 0.19738 -1.00000 - 15017 2017 8 21 20 13 18 391 4.8194 187.40899 707.34779 658.34523 0.07417 7.21116 3.61162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13073 0.19738 -1.00000 - 15018 2017 8 21 20 13 23 210 4.8194 187.40991 707.41267 658.40249 0.07412 7.17624 3.60282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13038 0.19738 -1.00000 - 15019 2017 8 21 20 13 28 29 4.8194 187.41082 707.48524 658.45983 0.07407 7.13892 3.59390 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13003 0.19738 -1.00000 - 15020 2017 8 21 20 13 32 849 4.8194 187.41173 707.55374 658.51722 0.07401 7.09727 3.58692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12968 0.19738 -1.00000 - 15021 2017 8 21 20 13 37 668 4.8194 187.41264 707.62644 658.57477 0.07395 7.00667 3.57669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12933 0.19738 -1.00000 - 15022 2017 8 21 20 13 42 488 4.8194 187.41355 707.69844 658.63252 0.07388 6.93757 3.56881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12898 0.19738 -1.00000 - 15023 2017 8 21 20 13 47 307 4.8194 187.41446 707.76343 658.69019 0.07381 6.91798 3.56079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12863 0.19738 -1.00000 - 15024 2017 8 21 20 13 52 127 4.8194 187.41536 707.83391 658.74800 0.07374 6.88061 3.55213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12828 0.19738 -1.00000 - 15025 2017 8 21 20 13 56 946 4.8194 187.41627 707.90711 658.80584 0.07367 6.84387 3.54706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12793 0.19738 -1.00000 - 15026 2017 8 21 20 14 1 766 4.8194 187.41717 707.97605 658.86360 0.07359 6.80595 3.53795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12758 0.19738 -1.00000 - 15027 2017 8 21 20 14 6 585 4.8194 187.41808 708.05110 658.92138 0.07351 6.76236 3.53056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12722 0.19738 -1.00000 - 15028 2017 8 21 20 14 11 404 4.8194 187.41898 708.12052 658.97917 0.07343 6.73374 3.52538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12687 0.19738 -1.00000 - 15029 2017 8 21 20 14 16 224 4.8194 187.41988 708.18711 659.03681 0.07335 6.70403 3.51735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12652 0.19738 -1.00000 - 15030 2017 8 21 20 14 21 43 4.8194 187.42078 708.25819 659.09446 0.07327 6.67433 3.50951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12617 0.19738 -1.00000 - 15031 2017 8 21 20 14 25 863 4.8194 187.42168 708.32767 659.15219 0.07318 6.64568 3.50528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12582 0.19738 -1.00000 - 15032 2017 8 21 20 14 30 682 4.8194 187.42259 708.39742 659.20981 0.07310 6.62080 3.49821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12547 0.19738 -1.00000 - 15033 2017 8 21 20 14 35 501 4.8194 187.42349 708.47208 659.26733 0.07302 6.60028 3.49046 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12512 0.19738 -1.00000 - 15034 2017 8 21 20 14 40 321 4.8194 187.42438 708.53940 659.32504 0.07294 6.58560 3.48525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12477 0.19738 -1.00000 - 15035 2017 8 21 20 14 45 140 4.8194 187.42528 708.60672 659.38273 0.07286 6.57271 3.47832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12442 0.19738 -1.00000 - 15036 2017 8 21 20 14 49 960 4.8194 187.42618 708.67684 659.44034 0.07278 6.55894 3.46928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12407 0.19738 -1.00000 - 15037 2017 8 21 20 14 54 779 4.8194 187.42708 708.74917 659.49811 0.07271 6.54417 3.46517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12372 0.19738 -1.00000 - 15038 2017 8 21 20 14 59 599 4.8194 187.42798 708.81334 659.55578 0.07263 6.52974 3.45723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12337 0.19738 -1.00000 - 15039 2017 8 21 20 15 4 418 4.8194 187.42887 708.88879 659.61365 0.07256 6.52155 3.44921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12302 0.19737 -1.00000 - 15040 2017 8 21 20 15 9 237 4.8194 187.42977 708.95769 659.67157 0.07249 6.51635 3.44452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12267 0.19737 -1.00000 - 15041 2017 8 21 20 15 14 57 4.8194 187.43066 709.02946 659.72944 0.07242 6.50860 3.43559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12232 0.19737 -1.00000 - 15042 2017 8 21 20 15 18 876 4.8194 187.43155 709.09937 659.78751 0.07235 6.44871 3.42963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12197 0.19737 -1.00000 - 15043 2017 8 21 20 15 23 696 4.8194 187.43244 709.16674 659.84565 0.07229 6.41659 3.42395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12162 0.19737 -1.00000 - 15044 2017 8 21 20 15 28 515 4.8194 187.43334 709.23364 659.90376 0.07222 6.43918 3.41588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12127 0.19737 -1.00000 - 15045 2017 8 21 20 15 33 334 4.8194 187.43423 709.30898 659.96186 0.07216 6.43883 3.41317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12092 0.19737 -1.00000 - 15046 2017 8 21 20 15 38 154 4.8194 187.43511 709.37732 660.02004 0.07209 6.44123 3.40907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12057 0.19737 -1.00000 - 15047 2017 8 21 20 15 42 973 4.8194 187.43600 709.45244 660.07814 0.07203 6.44214 3.40056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12022 0.19737 -1.00000 - 15048 2017 8 21 20 15 47 793 4.8194 187.43689 709.52207 660.13633 0.07196 6.43776 3.40018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11986 0.19737 -1.00000 - 15049 2017 8 21 20 15 52 612 4.8194 187.43777 709.58832 660.19440 0.07189 6.44658 3.39614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11951 0.19737 -1.00000 - 15050 2017 8 21 20 15 57 431 4.8194 187.43866 709.65714 660.25234 0.07182 6.45635 3.38962 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11916 0.19737 -1.00000 - 15051 2017 8 21 20 16 2 251 4.8194 187.43954 709.73284 660.31051 0.07175 6.42019 3.38805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11881 0.19737 -1.00000 - 15052 2017 8 21 20 16 7 70 4.8194 187.44042 709.79692 660.36864 0.07168 6.41772 3.38353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11846 0.19737 -1.00000 - 15053 2017 8 21 20 16 11 890 4.8194 187.44131 709.86503 660.42677 0.07161 6.42565 3.38115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11811 0.19737 -1.00000 - 15054 2017 8 21 20 16 16 709 4.8194 187.44219 709.93577 660.48509 0.07153 6.43285 3.38064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11776 0.19737 -1.00000 - 15055 2017 8 21 20 16 21 528 4.8194 187.44307 710.00898 660.54314 0.07145 6.43717 3.37757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11741 0.19737 -1.00000 - 15056 2017 8 21 20 16 26 348 4.8194 187.44395 710.07803 660.60119 0.07137 6.43648 3.37741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11706 0.19737 -1.00000 - 15057 2017 8 21 20 16 31 167 4.8194 187.44483 710.14816 660.65933 0.07129 6.38894 3.37744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11671 0.19737 -1.00000 - 15058 2017 8 21 20 16 35 987 4.8194 187.44571 710.22261 660.71735 0.07120 6.38628 3.37319 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11636 0.19737 -1.00000 - 15059 2017 8 21 20 16 40 806 4.8194 187.44658 710.28848 660.77538 0.07112 6.38347 3.37410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11601 0.19737 -1.00000 - 15060 2017 8 21 20 16 45 625 4.8194 187.44746 710.35535 660.83343 0.07103 6.38119 3.37351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11566 0.19737 -1.00000 - 15061 2017 8 21 20 16 50 445 4.8194 187.44834 710.42954 660.89142 0.07094 6.37791 3.37059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11531 0.19737 -1.00000 - 15062 2017 8 21 20 16 55 264 4.8194 187.44921 710.49554 660.94935 0.07086 6.37594 3.37073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11496 0.19737 -1.00000 - 15063 2017 8 21 20 17 0 84 4.8194 187.45009 710.57003 661.00742 0.07077 6.37968 3.36956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11461 0.19737 -1.00000 - 15064 2017 8 21 20 17 4 903 4.8194 187.45097 710.64151 661.06542 0.07069 6.38474 3.36809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11426 0.19737 -1.00000 - 15065 2017 8 21 20 17 9 722 4.8194 187.45184 710.71113 661.12335 0.07061 6.38572 3.37047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11391 0.19737 -1.00000 - 15066 2017 8 21 20 17 14 542 4.8194 187.45271 710.77767 661.18127 0.07053 6.34555 3.36952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11356 0.19737 -1.00000 - 15067 2017 8 21 20 17 19 361 4.8194 187.45359 710.84722 661.23922 0.07045 6.35458 3.36915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11321 0.19736 -1.00000 - 15068 2017 8 21 20 17 24 181 4.8194 187.45446 710.91549 661.29702 0.07038 6.36443 3.37350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11286 0.19736 -1.00000 - 15069 2017 8 21 20 17 29 0 4.8194 187.45533 710.99032 661.35482 0.07031 6.37688 3.37400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11250 0.19736 -1.00000 - 15070 2017 8 21 20 17 33 819 4.8194 187.45619 711.06071 661.41247 0.07025 6.39230 3.37578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11215 0.19736 -1.00000 - 15071 2017 8 21 20 17 38 639 4.8194 187.45706 711.12925 661.47011 0.07018 6.41452 3.38199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11180 0.19736 -1.00000 - 15072 2017 8 21 20 17 43 458 4.8194 187.45793 711.19289 661.52757 0.07013 6.43893 3.38342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11145 0.19736 -1.00000 - 15073 2017 8 21 20 17 48 278 4.8194 187.45879 711.26153 661.58501 0.07007 6.46329 3.38585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11110 0.19736 -1.00000 - 15074 2017 8 21 20 17 53 97 4.8194 187.45965 711.32902 661.64241 0.07002 6.48793 3.39342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11075 0.19736 -1.00000 - 15075 2017 8 21 20 17 57 916 4.8194 187.46051 711.39758 661.69970 0.06997 6.51305 3.39713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11040 0.19736 -1.00000 - 15076 2017 8 21 20 18 2 736 4.8194 187.46137 711.46589 661.75676 0.06992 6.53973 3.40168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11005 0.19736 -1.00000 - 15077 2017 8 21 20 18 7 555 4.8194 187.46223 711.53326 661.81384 0.06988 6.56958 3.40949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10970 0.19736 -1.00000 - 15078 2017 8 21 20 18 12 375 4.8194 187.46308 711.60162 661.87063 0.06982 6.59979 3.41483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10935 0.19736 -1.00000 - 15079 2017 8 21 20 18 17 194 4.8194 187.46394 711.66935 661.92729 0.06977 6.62993 3.42265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10900 0.19736 -1.00000 - 15080 2017 8 21 20 18 22 13 4.8194 187.46479 711.73686 661.98384 0.06971 6.65964 3.43063 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10865 0.19736 -1.00000 - 15081 2017 8 21 20 18 26 833 4.8194 187.46564 711.80421 662.04012 0.06965 6.68860 3.43678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10830 0.19736 -1.00000 - 15082 2017 8 21 20 18 31 652 4.8194 187.46649 711.87119 662.09636 0.06959 6.71655 3.44550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10795 0.19736 -1.00000 - 15083 2017 8 21 20 18 36 472 4.8194 187.46734 711.93826 662.15250 0.06951 6.74338 3.45220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10760 0.19736 -1.00000 - 15084 2017 8 21 20 18 41 291 4.8194 187.46818 712.00515 662.20849 0.06944 6.76904 3.45866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10725 0.19736 -1.00000 - 15085 2017 8 21 20 18 46 110 4.8194 187.46903 712.07165 662.26433 0.06936 6.79355 3.46893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10690 0.19736 -1.00000 - 15086 2017 8 21 20 18 50 930 4.8194 187.46988 712.13826 662.32001 0.06927 6.81697 3.47491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10655 0.19736 -1.00000 - 15087 2017 8 21 20 18 55 749 4.8194 187.47072 712.20488 662.37550 0.06918 6.83941 3.48161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10620 0.19736 -1.00000 - 15088 2017 8 21 20 19 0 569 4.8194 187.47157 712.26724 662.43094 0.06909 6.86099 3.48935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10585 0.19736 -1.00000 - 15089 2017 8 21 20 19 5 388 4.8194 187.47241 712.33295 662.48624 0.06899 6.88184 3.49432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10550 0.19736 -1.00000 - 15090 2017 8 21 20 19 10 208 4.8194 187.47325 712.39846 662.54134 0.06890 6.90217 3.50145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10514 0.19736 -1.00000 - 15091 2017 8 21 20 19 15 27 4.8194 187.47410 712.46630 662.59632 0.06880 6.92223 3.50715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10479 0.19736 -1.00000 - 15092 2017 8 21 20 19 19 846 4.8194 187.47494 712.53613 662.65121 0.06870 6.94258 3.51085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10444 0.19736 -1.00000 - 15093 2017 8 21 20 19 24 666 4.8194 187.47578 712.60062 662.70612 0.06861 6.96340 3.51746 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10409 0.19736 -1.00000 - 15094 2017 8 21 20 19 29 485 4.8194 187.47662 712.66037 662.76081 0.06851 6.98269 3.52099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10374 0.19736 -1.00000 - 15095 2017 8 21 20 19 34 305 4.8194 187.47747 712.72290 662.81539 0.06842 6.99917 3.52215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10339 0.19735 -1.00000 - 15096 2017 8 21 20 19 39 124 4.8194 187.47831 712.78751 662.86998 0.06833 7.01473 3.52948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10304 0.19735 -1.00000 - 15097 2017 8 21 20 19 43 943 4.8194 187.47915 712.85535 662.92450 0.06825 7.03117 3.53139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10269 0.19735 -1.00000 - 15098 2017 8 21 20 19 48 763 4.8194 187.47999 712.92291 662.97893 0.06816 7.04842 3.53213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10234 0.19735 -1.00000 - 15099 2017 8 21 20 19 53 582 4.8194 187.48083 712.98702 663.03344 0.06809 7.06641 3.53696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10199 0.19735 -1.00000 - 15100 2017 8 21 20 19 58 402 4.8194 187.48167 713.04718 663.08786 0.06801 7.08298 3.53682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10164 0.19735 -1.00000 - 15101 2017 8 21 20 20 3 221 4.8194 187.48251 713.11071 663.14226 0.06794 7.09481 3.53798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10129 0.19735 -1.00000 - 15102 2017 8 21 20 20 8 41 4.8194 187.48335 713.17315 663.19679 0.06787 7.10229 3.54198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10094 0.19735 -1.00000 - 15103 2017 8 21 20 20 12 860 4.8194 187.48419 713.23830 663.25123 0.06780 7.10738 3.54272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10059 0.19735 -1.00000 - 15104 2017 8 21 20 20 17 679 4.8194 187.48502 713.30446 663.30587 0.06774 7.06418 3.54353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10024 0.19735 -1.00000 - 15105 2017 8 21 20 20 22 499 4.8194 187.48585 713.36715 663.36043 0.06768 7.09048 3.54822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09989 0.19735 -1.00000 - 15106 2017 8 21 20 20 27 318 4.8194 187.48669 713.42941 663.41496 0.06762 7.09689 3.54738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09954 0.19735 -1.00000 - 15107 2017 8 21 20 20 32 138 4.8194 187.48752 713.49449 663.46957 0.06756 7.10248 3.54932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09919 0.19735 -1.00000 - 15108 2017 8 21 20 20 36 957 4.8194 187.48834 713.55831 663.52418 0.06750 7.10587 3.55352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09884 0.19735 -1.00000 - 15109 2017 8 21 20 20 41 777 4.8194 187.48917 713.62109 663.57879 0.06744 7.08658 3.55284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09849 0.19735 -1.00000 - 15110 2017 8 21 20 20 46 596 4.8194 187.49000 713.68926 663.63340 0.06739 7.09302 3.55378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09814 0.19735 -1.00000 - 15111 2017 8 21 20 20 51 416 4.8194 187.49082 713.75297 663.68799 0.06733 7.09680 3.55688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09778 0.19735 -1.00000 - 15112 2017 8 21 20 20 56 235 4.8194 187.49164 713.81462 663.74249 0.06726 7.09840 3.55596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09743 0.19735 -1.00000 - 15113 2017 8 21 20 21 1 54 4.8195 187.49246 713.88097 663.79699 0.06720 7.09565 3.55570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09708 0.19735 -1.00000 - 15114 2017 8 21 20 21 5 874 4.8195 187.49328 713.94444 663.85165 0.06714 7.09892 3.55754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09673 0.19735 -1.00000 - 15115 2017 8 21 20 21 10 693 4.8195 187.49410 714.00713 663.90632 0.06707 7.08697 3.55514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09638 0.19735 -1.00000 - 15116 2017 8 21 20 21 15 513 4.8195 187.49492 714.07557 663.96102 0.06700 7.08295 3.55182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09603 0.19735 -1.00000 - 15117 2017 8 21 20 21 20 332 4.8195 187.49573 714.13951 664.01590 0.06693 7.07667 3.55227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09568 0.19735 -1.00000 - 15118 2017 8 21 20 21 25 152 4.8195 187.49654 714.19930 664.07080 0.06686 7.07609 3.55061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09533 0.19735 -1.00000 - 15119 2017 8 21 20 21 29 971 4.8195 187.49736 714.26821 664.12571 0.06678 7.08243 3.54569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09498 0.19735 -1.00000 - 15120 2017 8 21 20 21 34 791 4.8195 187.49817 714.33275 664.18074 0.06671 7.08350 3.54603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09463 0.19735 -1.00000 - 15121 2017 8 21 20 21 39 610 4.8195 187.49898 714.39573 664.23588 0.06663 7.03605 3.54323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09428 0.19735 -1.00000 - 15122 2017 8 21 20 21 44 430 4.8195 187.49979 714.46355 664.29100 0.06654 7.02665 3.53601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09393 0.19735 -1.00000 - 15123 2017 8 21 20 21 49 249 4.8195 187.50060 714.52782 664.34627 0.06646 7.01668 3.53412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09358 0.19734 -1.00000 - 15124 2017 8 21 20 21 54 69 4.8195 187.50140 714.59172 664.40163 0.06638 7.01334 3.53001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09323 0.19734 -1.00000 - 15125 2017 8 21 20 21 58 888 4.8195 187.50221 714.66306 664.45706 0.06630 7.00899 3.52341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09288 0.19734 -1.00000 - 15126 2017 8 21 20 22 3 708 4.8195 187.50302 714.72950 664.51263 0.06621 7.00219 3.52118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09253 0.19734 -1.00000 - 15127 2017 8 21 20 22 8 527 4.8195 187.50382 714.79353 664.56814 0.06613 6.99154 3.51575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09218 0.19734 -1.00000 - 15128 2017 8 21 20 22 13 346 4.8195 187.50463 714.86389 664.62373 0.06604 6.97841 3.50888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09183 0.19734 -1.00000 - 15129 2017 8 21 20 22 18 166 4.8195 187.50543 714.92677 664.67937 0.06596 6.96551 3.50556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09148 0.19734 -1.00000 - 15130 2017 8 21 20 22 22 985 4.8195 187.50624 714.99369 664.73498 0.06587 6.95339 3.49857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09113 0.19734 -1.00000 - 15131 2017 8 21 20 22 27 805 4.8195 187.50704 715.06532 664.79082 0.06579 6.94242 3.49481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09078 0.19734 -1.00000 - 15132 2017 8 21 20 22 32 624 4.8195 187.50784 715.13188 664.84661 0.06571 6.93213 3.49140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09042 0.19734 -1.00000 - 15133 2017 8 21 20 22 37 444 4.8195 187.50865 715.19357 664.90232 0.06562 6.92044 3.48513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09007 0.19734 -1.00000 - 15134 2017 8 21 20 22 42 263 4.8195 187.50945 715.25775 664.95812 0.06554 6.90660 3.48041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08972 0.19734 -1.00000 - 15135 2017 8 21 20 22 47 83 4.8195 187.51025 715.32535 665.01396 0.06546 6.89267 3.47836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08937 0.19734 -1.00000 - 15136 2017 8 21 20 22 51 903 4.8195 187.51105 715.39673 665.06971 0.06538 6.88067 3.47235 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08902 0.19734 -1.00000 - 15137 2017 8 21 20 22 56 722 4.8195 187.51185 715.46842 665.12547 0.06530 6.87065 3.46895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08867 0.19734 -1.00000 - 15138 2017 8 21 20 23 1 542 4.8195 187.51265 715.53477 665.18130 0.06522 6.86271 3.46851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08832 0.19734 -1.00000 - 15139 2017 8 21 20 23 6 361 4.8195 187.51344 715.59688 665.23692 0.06514 6.85630 3.46344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08797 0.19734 -1.00000 - 15140 2017 8 21 20 23 11 181 4.8195 187.51424 715.66063 665.29248 0.06507 6.85087 3.46085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08762 0.19734 -1.00000 - 15141 2017 8 21 20 23 16 0 4.8195 187.51504 715.72817 665.34808 0.06500 6.84602 3.46123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08727 0.19734 -1.00000 - 15142 2017 8 21 20 23 20 820 4.8195 187.51583 715.79511 665.40348 0.06492 6.84156 3.45777 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08692 0.19734 -1.00000 - 15143 2017 8 21 20 23 25 639 4.8195 187.51662 715.86219 665.45879 0.06485 6.83740 3.45546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08657 0.19734 -1.00000 - 15144 2017 8 21 20 23 30 459 4.8195 187.51742 715.92903 665.51411 0.06478 6.83342 3.45433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08622 0.19734 -1.00000 - 15145 2017 8 21 20 23 35 278 4.8195 187.51821 715.99536 665.56928 0.06471 6.82948 3.45135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08587 0.19734 -1.00000 - 15146 2017 8 21 20 23 40 98 4.8196 187.51900 716.06158 665.62433 0.06464 6.82542 3.44984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08552 0.19734 -1.00000 - 15147 2017 8 21 20 23 44 917 4.8196 187.51978 716.12751 665.67936 0.06458 6.82103 3.44849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08517 0.19734 -1.00000 - 15148 2017 8 21 20 23 49 737 4.8196 187.52057 716.19334 665.73420 0.06451 6.81611 3.44600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08482 0.19734 -1.00000 - 15149 2017 8 21 20 23 54 557 4.8196 187.52136 716.25912 665.78904 0.06444 6.81044 3.44406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08447 0.19734 -1.00000 - 15150 2017 8 21 20 23 59 376 4.8196 187.52214 716.32491 665.84386 0.06437 6.80386 3.44255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08412 0.19734 -1.00000 - 15151 2017 8 21 20 24 4 196 4.8196 187.52293 716.38788 665.89849 0.06429 6.79624 3.43745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08377 0.19733 -1.00000 - 15152 2017 8 21 20 24 9 15 4.8196 187.52371 716.45176 665.95318 0.06422 6.78750 3.43457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08341 0.19733 -1.00000 - 15153 2017 8 21 20 24 13 835 4.8196 187.52449 716.51713 666.00793 0.06415 6.77769 3.43040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08306 0.19733 -1.00000 - 15154 2017 8 21 20 24 18 654 4.8196 187.52527 716.58726 666.06258 0.06407 6.76712 3.42324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08271 0.19733 -1.00000 - 15155 2017 8 21 20 24 23 474 4.8196 187.52605 716.65217 666.11740 0.06400 6.75621 3.42158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08236 0.19733 -1.00000 - 15156 2017 8 21 20 24 28 294 4.8196 187.52683 716.71267 666.17222 0.06392 6.74459 3.41393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08201 0.19733 -1.00000 - 15157 2017 8 21 20 24 33 113 4.8196 187.52760 716.77801 666.22705 0.06384 6.73214 3.40630 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08166 0.19733 -1.00000 - 15158 2017 8 21 20 24 37 933 4.8196 187.52838 716.83901 666.28208 0.06376 6.71896 3.40286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08131 0.19733 -1.00000 - 15159 2017 8 21 20 24 42 752 4.8196 187.52915 716.90991 666.33711 0.06369 6.70519 3.39408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08096 0.19733 -1.00000 - 15160 2017 8 21 20 24 47 572 4.8196 187.52993 716.97926 666.39229 0.06361 6.69126 3.38583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08061 0.19733 -1.00000 - 15161 2017 8 21 20 24 52 392 4.8196 187.53070 717.04519 666.44772 0.06353 6.67613 3.38288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08026 0.19733 -1.00000 - 15162 2017 8 21 20 24 57 211 4.8196 187.53147 717.10693 666.50303 0.06345 6.65541 3.37314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07991 0.19733 -1.00000 - 15163 2017 8 21 20 25 2 31 4.8196 187.53224 717.17292 666.55860 0.06337 6.58250 3.36569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07956 0.19733 -1.00000 - 15164 2017 8 21 20 25 6 850 4.8196 187.53301 717.23673 666.61435 0.06330 6.53098 3.36194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07921 0.19733 -1.00000 - 15165 2017 8 21 20 25 11 670 4.8196 187.53378 717.30931 666.67006 0.06322 6.52991 3.35296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07886 0.19733 -1.00000 - 15166 2017 8 21 20 25 16 490 4.8196 187.53455 717.37847 666.72598 0.06314 6.51065 3.34631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07851 0.19733 -1.00000 - 15167 2017 8 21 20 25 21 309 4.8196 187.53531 717.44578 666.78210 0.06306 6.49280 3.34161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07816 0.19733 -1.00000 - 15168 2017 8 21 20 25 26 129 4.8196 187.53608 717.50910 666.83815 0.06298 6.47347 3.33408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07781 0.19733 -1.00000 - 15169 2017 8 21 20 25 30 949 4.8196 187.53684 717.57590 666.89427 0.06291 6.45291 3.33159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07746 0.19733 -1.00000 - 15170 2017 8 21 20 25 35 768 4.8197 187.53761 717.64275 666.95049 0.06283 6.43295 3.32795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07711 0.19733 -1.00000 - 15171 2017 8 21 20 25 40 588 4.8197 187.53837 717.71540 667.00667 0.06275 6.41451 3.32080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07676 0.19733 -1.00000 - 15172 2017 8 21 20 25 45 408 4.8197 187.53913 717.78176 667.06307 0.06267 6.40580 3.32033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07640 0.19733 -1.00000 - 15173 2017 8 21 20 25 50 227 4.8197 187.53990 717.84523 667.11938 0.06259 6.40165 3.31466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07605 0.19733 -1.00000 - 15174 2017 8 21 20 25 55 47 4.8197 187.54066 717.91282 667.17564 0.06251 6.39798 3.30991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07570 0.19733 -1.00000 - 15175 2017 8 21 20 25 59 867 4.8197 187.54142 717.97976 667.23196 0.06242 6.39442 3.31023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07535 0.19733 -1.00000 - 15176 2017 8 21 20 26 4 686 4.8197 187.54218 718.04700 667.28817 0.06234 6.39082 3.30656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07500 0.19733 -1.00000 - 15177 2017 8 21 20 26 9 506 4.8197 187.54294 718.11444 667.34442 0.06226 6.38720 3.30387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07465 0.19733 -1.00000 - 15178 2017 8 21 20 26 14 326 4.8197 187.54369 718.18218 667.40078 0.06217 6.38363 3.30404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07430 0.19733 -1.00000 - 15179 2017 8 21 20 26 19 145 4.8197 187.54445 718.24985 667.45703 0.06209 6.38023 3.29966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07395 0.19732 -1.00000 - 15180 2017 8 21 20 26 23 965 4.8197 187.54521 718.31704 667.51329 0.06201 6.37722 3.29870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07360 0.19732 -1.00000 - 15181 2017 8 21 20 26 28 785 4.8197 187.54596 718.38434 667.56958 0.06193 6.37487 3.30014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07325 0.19732 -1.00000 - 15182 2017 8 21 20 26 33 605 4.8197 187.54672 718.45126 667.62572 0.06184 6.37351 3.29636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07290 0.19732 -1.00000 - 15183 2017 8 21 20 26 38 424 4.8197 187.54747 718.52268 667.68181 0.06176 6.37643 3.29519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07255 0.19732 -1.00000 - 15184 2017 8 21 20 26 43 244 4.8197 187.54822 718.58953 667.73794 0.06168 6.38088 3.29651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07220 0.19732 -1.00000 - 15185 2017 8 21 20 26 48 64 4.8197 187.54897 718.65435 667.79386 0.06161 6.38472 3.29350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07185 0.19732 -1.00000 - 15186 2017 8 21 20 26 52 883 4.8197 187.54972 718.72468 667.84977 0.06153 6.38620 3.29234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07150 0.19732 -1.00000 - 15187 2017 8 21 20 26 57 703 4.8197 187.55047 718.79152 667.90586 0.06146 6.37062 3.29301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07115 0.19732 -1.00000 - 15188 2017 8 21 20 27 2 523 4.8197 187.55122 718.85706 667.96177 0.06138 6.36658 3.29004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07080 0.19732 -1.00000 - 15189 2017 8 21 20 27 7 343 4.8198 187.55197 718.92948 668.01761 0.06132 6.36019 3.28865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07045 0.19732 -1.00000 - 15190 2017 8 21 20 27 12 162 4.8198 187.55271 718.99645 668.07357 0.06125 6.35407 3.28940 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07010 0.19732 -1.00000 - 15191 2017 8 21 20 27 16 982 4.8198 187.55345 719.06150 668.12923 0.06118 6.34634 3.28769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06975 0.19732 -1.00000 - 15192 2017 8 21 20 27 21 802 4.8198 187.55420 719.13056 668.18489 0.06111 6.33601 3.28766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06939 0.19732 -1.00000 - 15193 2017 8 21 20 27 26 622 4.8198 187.55494 719.19745 668.24073 0.06105 6.32749 3.28875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06904 0.19732 -1.00000 - 15194 2017 8 21 20 27 31 442 4.8198 187.55568 719.26345 668.29633 0.06098 6.31915 3.28712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06869 0.19732 -1.00000 - 15195 2017 8 21 20 27 36 261 4.8198 187.55641 719.33428 668.35185 0.06091 6.31015 3.28659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06834 0.19732 -1.00000 - 15196 2017 8 21 20 27 41 81 4.8198 187.55715 719.40076 668.40742 0.06085 6.30231 3.28742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06799 0.19732 -1.00000 - 15197 2017 8 21 20 27 45 901 4.8198 187.55789 719.46783 668.46277 0.06078 6.29317 3.28680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06764 0.19732 -1.00000 - 15198 2017 8 21 20 27 50 721 4.8198 187.55862 719.53427 668.51809 0.06071 6.28399 3.28771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06729 0.19732 -1.00000 - 15199 2017 8 21 20 27 55 541 4.8198 187.55935 719.60070 668.57352 0.06063 6.28005 3.28907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06694 0.19732 -1.00000 - 15200 2017 8 21 20 28 0 360 4.8198 187.56008 719.66622 668.62876 0.06056 6.27784 3.28695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06659 0.19732 -1.00000 - 15201 2017 8 21 20 28 5 180 4.8198 187.56081 719.73543 668.68401 0.06049 6.27610 3.28712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06624 0.19732 -1.00000 - 15202 2017 8 21 20 28 10 0 4.8198 187.56154 719.80024 668.73934 0.06041 6.27632 3.28840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06589 0.19732 -1.00000 - 15203 2017 8 21 20 28 14 820 4.8198 187.56227 719.86870 668.79449 0.06033 6.27562 3.28555 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06554 0.19732 -1.00000 - 15204 2017 8 21 20 28 19 640 4.8198 187.56299 719.93468 668.84964 0.06025 6.27498 3.28664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06519 0.19732 -1.00000 - 15205 2017 8 21 20 28 24 460 4.8198 187.56372 719.99585 668.90498 0.06016 6.27857 3.28514 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06484 0.19732 -1.00000 - 15206 2017 8 21 20 28 29 279 4.8199 187.56444 720.06362 668.96033 0.06008 6.28353 3.28125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06449 0.19732 -1.00000 - 15207 2017 8 21 20 28 34 99 4.8199 187.56517 720.13012 669.01574 0.06000 6.28816 3.28433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06414 0.19732 -1.00000 - 15208 2017 8 21 20 28 38 919 4.8199 187.56589 720.19764 669.07109 0.05991 6.29267 3.28209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06379 0.19731 -1.00000 - 15209 2017 8 21 20 28 43 739 4.8199 187.56661 720.26923 669.12650 0.05982 6.29333 3.27939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06344 0.19731 -1.00000 - 15210 2017 8 21 20 28 48 559 4.8199 187.56733 720.33546 669.18201 0.05973 6.27702 3.28109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06309 0.19731 -1.00000 - 15211 2017 8 21 20 28 53 379 4.8199 187.56805 720.39605 669.23742 0.05965 6.29056 3.27867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06274 0.19731 -1.00000 - 15212 2017 8 21 20 28 58 199 4.8199 187.56877 720.46405 669.29292 0.05956 6.30231 3.27901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06238 0.19731 -1.00000 - 15213 2017 8 21 20 29 3 19 4.8199 187.56949 720.53122 669.34841 0.05948 6.31398 3.28212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06203 0.19731 -1.00000 - 15214 2017 8 21 20 29 7 838 4.8199 187.57021 720.60234 669.40375 0.05939 6.32577 3.28051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06168 0.19731 -1.00000 - 15215 2017 8 21 20 29 12 658 4.8199 187.57093 720.66799 669.45912 0.05931 6.33752 3.28289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06133 0.19731 -1.00000 - 15216 2017 8 21 20 29 17 478 4.8199 187.57164 720.73096 669.51451 0.05923 6.34841 3.28528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06098 0.19731 -1.00000 - 15217 2017 8 21 20 29 22 298 4.8199 187.57236 720.79515 669.56977 0.05915 6.35789 3.28521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06063 0.19731 -1.00000 - 15218 2017 8 21 20 29 27 118 4.8199 187.57307 720.86122 669.62503 0.05908 6.36581 3.28914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06028 0.19731 -1.00000 - 15219 2017 8 21 20 29 31 938 4.8199 187.57378 720.92714 669.68018 0.05900 6.37224 3.29386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05993 0.19731 -1.00000 - 15220 2017 8 21 20 29 36 758 4.8199 187.57450 720.99338 669.73516 0.05893 6.37751 3.29618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05958 0.19731 -1.00000 - 15221 2017 8 21 20 29 41 578 4.8200 187.57521 721.05985 669.79006 0.05886 6.38207 3.30210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05923 0.19731 -1.00000 - 15222 2017 8 21 20 29 46 398 4.8200 187.57592 721.12606 669.84489 0.05879 6.38637 3.30791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05888 0.19731 -1.00000 - 15223 2017 8 21 20 29 51 218 4.8200 187.57662 721.19227 669.89948 0.05872 6.39090 3.31180 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05853 0.19731 -1.00000 - 15224 2017 8 21 20 29 56 38 4.8200 187.57733 721.25779 669.95387 0.05864 6.39611 3.31872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05818 0.19731 -1.00000 - 15225 2017 8 21 20 30 0 858 4.8200 187.57804 721.32304 670.00812 0.05857 6.40244 3.32585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05783 0.19731 -1.00000 - 15226 2017 8 21 20 30 5 678 4.8200 187.57874 721.38808 670.06215 0.05850 6.41028 3.33169 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05748 0.19731 -1.00000 - 15227 2017 8 21 20 30 10 498 4.8200 187.57945 721.45288 670.11600 0.05842 6.41995 3.33875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05713 0.19731 -1.00000 - 15228 2017 8 21 20 30 15 318 4.8200 187.58015 721.51735 670.16971 0.05835 6.43171 3.34579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05678 0.19731 -1.00000 - 15229 2017 8 21 20 30 20 138 4.8200 187.58085 721.58162 670.22316 0.05827 6.44577 3.35113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05643 0.19731 -1.00000 - 15230 2017 8 21 20 30 24 958 4.8200 187.58155 721.64521 670.27636 0.05818 6.46826 3.35870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05608 0.19731 -1.00000 - 15231 2017 8 21 20 30 29 778 4.8200 187.58225 721.70841 670.32942 0.05810 6.49309 3.36451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05572 0.19731 -1.00000 - 15232 2017 8 21 20 30 34 598 4.8200 187.58295 721.77160 670.38225 0.05802 6.51895 3.36932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05537 0.19731 -1.00000 - 15233 2017 8 21 20 30 39 418 4.8200 187.58365 721.83373 670.43504 0.05793 6.54562 3.37646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05502 0.19731 -1.00000 - 15234 2017 8 21 20 30 44 238 4.8201 187.58435 721.89555 670.48761 0.05784 6.57289 3.37966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05467 0.19731 -1.00000 - 15235 2017 8 21 20 30 49 58 4.8201 187.58504 721.95717 670.54010 0.05775 6.60063 3.38185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05432 0.19731 -1.00000 - 15236 2017 8 21 20 30 53 878 4.8201 187.58574 722.01797 670.59261 0.05766 6.62866 3.38695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05397 0.19730 -1.00000 - 15237 2017 8 21 20 30 58 698 4.8201 187.58644 722.08310 670.64501 0.05756 6.65530 3.38758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05362 0.19730 -1.00000 - 15238 2017 8 21 20 31 3 518 4.8201 187.58713 722.14474 670.69736 0.05747 6.68558 3.38933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05327 0.19730 -1.00000 - 15239 2017 8 21 20 31 8 338 4.8201 187.58783 722.20555 670.74966 0.05738 6.72035 3.39139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05292 0.19730 -1.00000 - 15240 2017 8 21 20 31 13 159 4.8201 187.58852 722.26864 670.80198 0.05729 6.75013 3.38863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05257 0.19730 -1.00000 - 15241 2017 8 21 20 31 17 979 4.8201 187.58921 722.32938 670.85424 0.05720 6.77467 3.39096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05222 0.19730 -1.00000 - 15242 2017 8 21 20 31 22 799 4.8201 187.58990 722.38454 670.90656 0.05712 6.79588 3.39108 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05187 0.19730 -1.00000 - 15243 2017 8 21 20 31 27 619 4.8201 187.59060 722.44998 670.95888 0.05703 6.81530 3.38895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05152 0.19730 -1.00000 - 15244 2017 8 21 20 31 32 439 4.8201 187.59129 722.51189 671.01133 0.05695 6.83343 3.39170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05117 0.19730 -1.00000 - 15245 2017 8 21 20 31 37 259 4.8201 187.59197 722.56970 671.06383 0.05687 6.84973 3.39120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05082 0.19730 -1.00000 - 15246 2017 8 21 20 31 42 79 4.8201 187.59266 722.62786 671.11635 0.05680 6.86380 3.38904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05047 0.19730 -1.00000 - 15247 2017 8 21 20 31 46 899 4.8202 187.59335 722.68936 671.16896 0.05673 6.87542 3.39262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05012 0.19730 -1.00000 - 15248 2017 8 21 20 31 51 720 4.8202 187.59403 722.74937 671.22147 0.05666 6.88453 3.39125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04977 0.19730 -1.00000 - 15249 2017 8 21 20 31 56 540 4.8202 187.59472 722.81159 671.27399 0.05659 6.89118 3.39039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04942 0.19730 -1.00000 - 15250 2017 8 21 20 32 1 360 4.8202 187.59540 722.87350 671.32660 0.05652 6.89541 3.39377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04906 0.19730 -1.00000 - 15251 2017 8 21 20 32 6 180 4.8202 187.59608 722.93521 671.37911 0.05645 6.89718 3.39049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04871 0.19730 -1.00000 - 15252 2017 8 21 20 32 11 0 4.8202 187.59676 722.99613 671.43161 0.05639 6.89657 3.38898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04836 0.19730 -1.00000 - 15253 2017 8 21 20 32 15 821 4.8202 187.59743 723.05681 671.48425 0.05633 6.89365 3.39129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04801 0.19730 -1.00000 - 15254 2017 8 21 20 32 20 641 4.8202 187.59811 723.11745 671.53682 0.05626 6.88858 3.38813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04766 0.19730 -1.00000 - 15255 2017 8 21 20 32 25 461 4.8202 187.59878 723.18298 671.58948 0.05620 6.88166 3.38609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04731 0.19730 -1.00000 - 15256 2017 8 21 20 32 30 281 4.8202 187.59945 723.24400 671.64231 0.05613 6.87303 3.38669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04696 0.19730 -1.00000 - 15257 2017 8 21 20 32 35 101 4.8202 187.60012 723.30552 671.69506 0.05607 6.86137 3.38301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04661 0.19730 -1.00000 - 15258 2017 8 21 20 32 39 922 4.8202 187.60079 723.36744 671.74793 0.05600 6.79317 3.38033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04626 0.19730 -1.00000 - 15259 2017 8 21 20 32 44 742 4.8203 187.60146 723.42934 671.80088 0.05593 6.74656 3.38126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04591 0.19730 -1.00000 - 15260 2017 8 21 20 32 49 562 4.8203 187.60212 723.49062 671.85370 0.05586 6.75087 3.37660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04556 0.19730 -1.00000 - 15261 2017 8 21 20 32 54 382 4.8203 187.60279 723.55803 671.90661 0.05579 6.73263 3.37279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04521 0.19730 -1.00000 - 15262 2017 8 21 20 32 59 203 4.8203 187.60345 723.62207 671.95962 0.05571 6.71472 3.37092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04486 0.19730 -1.00000 - 15263 2017 8 21 20 33 4 23 4.8203 187.60411 723.69005 672.01255 0.05563 6.69543 3.36597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04451 0.19730 -1.00000 - 15264 2017 8 21 20 33 8 843 4.8203 187.60477 723.75211 672.06554 0.05556 6.67620 3.36395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04416 0.19729 -1.00000 - 15265 2017 8 21 20 33 13 664 4.8203 187.60543 723.80948 672.11858 0.05548 6.66028 3.35939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04381 0.19729 -1.00000 - 15266 2017 8 21 20 33 18 484 4.8203 187.60609 723.86981 672.17152 0.05539 6.64635 3.35304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04346 0.19729 -1.00000 - 15267 2017 8 21 20 33 23 304 4.8203 187.60675 723.93886 672.22468 0.05531 6.63474 3.34922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04311 0.19729 -1.00000 - 15268 2017 8 21 20 33 28 125 4.8203 187.60740 723.99578 672.27786 0.05522 6.62595 3.34244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04276 0.19729 -1.00000 - 15269 2017 8 21 20 33 32 945 4.8203 187.60806 724.05869 672.33114 0.05513 6.61911 3.33753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04240 0.19729 -1.00000 - 15270 2017 8 21 20 33 37 765 4.8204 187.60872 724.12217 672.38451 0.05505 6.61332 3.33497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04205 0.19729 -1.00000 - 15271 2017 8 21 20 33 42 586 4.8204 187.60937 724.18553 672.43787 0.05496 6.60816 3.32916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04170 0.19729 -1.00000 - 15272 2017 8 21 20 33 47 406 4.8204 187.61003 724.24873 672.49127 0.05487 6.60332 3.32468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04135 0.19729 -1.00000 - 15273 2017 8 21 20 33 52 226 4.8204 187.61068 724.31203 672.54471 0.05477 6.59848 3.32198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04100 0.19729 -1.00000 - 15274 2017 8 21 20 33 57 47 4.8204 187.61134 724.37565 672.59809 0.05468 6.59344 3.31598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04065 0.19729 -1.00000 - 15275 2017 8 21 20 34 1 867 4.8204 187.61199 724.43915 672.65154 0.05459 6.58802 3.31226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04030 0.19729 -1.00000 - 15276 2017 8 21 20 34 6 688 4.8204 187.61264 724.49991 672.70514 0.05449 6.58536 3.30788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03995 0.19729 -1.00000 - 15277 2017 8 21 20 34 11 508 4.8204 187.61330 724.56341 672.75871 0.05440 6.58572 3.30175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03960 0.19729 -1.00000 - 15278 2017 8 21 20 34 16 329 4.8204 187.61395 724.62678 672.81233 0.05430 6.58545 3.29784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03925 0.19729 -1.00000 - 15279 2017 8 21 20 34 21 149 4.8204 187.61460 724.69307 672.86592 0.05421 6.58416 3.29282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03890 0.19729 -1.00000 - 15280 2017 8 21 20 34 25 969 4.8205 187.61526 724.76180 672.91962 0.05412 6.58198 3.28584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03855 0.19729 -1.00000 - 15281 2017 8 21 20 34 30 790 4.8205 187.61591 724.82521 672.97349 0.05403 6.57769 3.28258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03820 0.19729 -1.00000 - 15282 2017 8 21 20 34 35 610 4.8205 187.61656 724.88429 673.02731 0.05393 6.56964 3.27559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03785 0.19729 -1.00000 - 15283 2017 8 21 20 34 40 431 4.8205 187.61721 724.94784 673.08117 0.05384 6.55948 3.26933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03750 0.19729 -1.00000 - 15284 2017 8 21 20 34 45 251 4.8205 187.61786 725.01223 673.13508 0.05376 6.54875 3.26736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03715 0.19729 -1.00000 - 15285 2017 8 21 20 34 50 72 4.8205 187.61851 725.08018 673.18899 0.05367 6.53686 3.26034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03680 0.19729 -1.00000 - 15286 2017 8 21 20 34 54 892 4.8205 187.61916 725.14990 673.24288 0.05359 6.52403 3.25407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03645 0.19729 -1.00000 - 15287 2017 8 21 20 34 59 713 4.8205 187.61980 725.21407 673.29696 0.05351 6.51022 3.25064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03609 0.19729 -1.00000 - 15288 2017 8 21 20 35 4 533 4.8205 187.62045 725.27405 673.35099 0.05343 6.49464 3.24423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03574 0.19729 -1.00000 - 15289 2017 8 21 20 35 9 354 4.8205 187.62109 725.33682 673.40506 0.05335 6.47694 3.23637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03539 0.19729 -1.00000 - 15290 2017 8 21 20 35 14 174 4.8205 187.62174 725.40165 673.45935 0.05327 6.45709 3.23236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03504 0.19729 -1.00000 - 15291 2017 8 21 20 35 18 995 4.8206 187.62238 725.46686 673.51372 0.05320 6.43532 3.22661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03469 0.19729 -1.00000 - 15292 2017 8 21 20 35 23 816 4.8206 187.62302 725.53303 673.56803 0.05313 6.41204 3.21837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03434 0.19728 -1.00000 - 15293 2017 8 21 20 35 28 636 4.8206 187.62366 725.59918 673.62246 0.05306 6.38768 3.21378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03399 0.19728 -1.00000 - 15294 2017 8 21 20 35 33 457 4.8206 187.62430 725.66508 673.67701 0.05299 6.36265 3.20740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03364 0.19728 -1.00000 - 15295 2017 8 21 20 35 38 277 4.8206 187.62493 725.73089 673.73163 0.05292 6.33731 3.20023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03329 0.19728 -1.00000 - 15296 2017 8 21 20 35 43 98 4.8206 187.62557 725.79726 673.78637 0.05285 6.31201 3.19612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03294 0.19728 -1.00000 - 15297 2017 8 21 20 35 47 918 4.8206 187.62620 725.86203 673.84115 0.05278 6.28710 3.19058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03259 0.19728 -1.00000 - 15298 2017 8 21 20 35 52 739 4.8206 187.62683 725.93073 673.89605 0.05272 6.26286 3.18402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03224 0.19728 -1.00000 - 15299 2017 8 21 20 35 57 560 4.8206 187.62746 725.99694 673.95106 0.05265 6.23955 3.18109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03189 0.19728 -1.00000 - 15300 2017 8 21 20 36 2 380 4.8206 187.62809 726.06668 674.00602 0.05259 6.21557 3.17508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03154 0.19728 -1.00000 - 15301 2017 8 21 20 36 7 201 4.8206 187.62871 726.13387 674.06111 0.05252 6.14138 3.16990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03119 0.19728 -1.00000 - 15302 2017 8 21 20 36 12 22 4.8206 187.62933 726.19857 674.11619 0.05246 6.12323 3.16737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03084 0.19728 -1.00000 - 15303 2017 8 21 20 36 16 842 4.8207 187.62995 726.26757 674.17117 0.05239 6.10218 3.16266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03049 0.19728 -1.00000 - 15304 2017 8 21 20 36 21 663 4.8207 187.63057 726.33487 674.22613 0.05233 6.08034 3.15841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03014 0.19728 -1.00000 - 15305 2017 8 21 20 36 26 484 4.8207 187.63119 726.40634 674.28111 0.05226 6.05554 3.15415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02978 0.19728 -1.00000 - 15306 2017 8 21 20 36 31 304 4.8207 187.63181 726.47365 674.33603 0.05219 6.02974 3.15008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02943 0.19728 -1.00000 - 15307 2017 8 21 20 36 36 125 4.8207 187.63242 726.53851 674.39102 0.05212 6.00726 3.14395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02908 0.19728 -1.00000 - 15308 2017 8 21 20 36 40 946 4.8207 187.63303 726.60453 674.44604 0.05205 5.98536 3.13813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02873 0.19728 -1.00000 - 15309 2017 8 21 20 36 45 766 4.8207 187.63365 726.67089 674.50103 0.05197 5.96262 3.13224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02838 0.19728 -1.00000 - 15310 2017 8 21 20 36 50 587 4.8207 187.63426 726.74000 674.55612 0.05189 5.93992 3.12738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02803 0.19728 -1.00000 - 15311 2017 8 21 20 36 55 408 4.8207 187.63487 726.81262 674.61113 0.05181 5.91419 3.12079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02768 0.19728 -1.00000 - 15312 2017 8 21 20 37 0 229 4.8207 187.63548 726.88010 674.66613 0.05172 5.86120 3.11652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02733 0.19728 -1.00000 - 15313 2017 8 21 20 37 5 49 4.8207 187.63608 726.94237 674.72103 0.05163 5.84533 3.11265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02698 0.19728 -1.00000 - 15314 2017 8 21 20 37 9 870 4.8207 187.63669 727.01316 674.77596 0.05154 5.82904 3.10643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02663 0.19728 -1.00000 - 15315 2017 8 21 20 37 14 691 4.8208 187.63730 727.07991 674.83080 0.05144 5.81422 3.10492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02628 0.19728 -1.00000 - 15316 2017 8 21 20 37 19 512 4.8208 187.63791 727.14991 674.88557 0.05134 5.80128 3.10134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02593 0.19728 -1.00000 - 15317 2017 8 21 20 37 24 332 4.8208 187.63851 727.21602 674.94031 0.05124 5.79048 3.09820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02558 0.19728 -1.00000 - 15318 2017 8 21 20 37 29 153 4.8208 187.63912 727.27863 674.99503 0.05114 5.78143 3.09748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02523 0.19728 -1.00000 - 15319 2017 8 21 20 37 33 974 4.8208 187.63973 727.34238 675.04978 0.05103 5.77378 3.09578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02488 0.19728 -1.00000 - 15320 2017 8 21 20 37 38 795 4.8208 187.64033 727.40885 675.10443 0.05093 5.76746 3.09703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02453 0.19727 -1.00000 - 15321 2017 8 21 20 37 43 616 4.8208 187.64094 727.47509 675.15891 0.05082 5.76262 3.09748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02418 0.19727 -1.00000 - 15322 2017 8 21 20 37 48 436 4.8208 187.64155 727.54083 675.21329 0.05072 5.75949 3.09957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02382 0.19727 -1.00000 - 15323 2017 8 21 20 37 53 257 4.8208 187.64215 727.60712 675.26757 0.05062 5.76298 3.09996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02347 0.19727 -1.00000 - 15324 2017 8 21 20 37 58 78 4.8208 187.64276 727.67311 675.32178 0.05052 5.76941 3.10388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02312 0.19727 -1.00000 - 15325 2017 8 21 20 38 2 899 4.8208 187.64336 727.73853 675.37583 0.05042 5.77803 3.10687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02277 0.19727 -1.00000 - 15326 2017 8 21 20 38 7 720 4.8209 187.64396 727.80373 675.42973 0.05033 5.78860 3.10911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02242 0.19727 -1.00000 - 15327 2017 8 21 20 38 12 541 4.8209 187.64457 727.86840 675.48340 0.05024 5.80094 3.11585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02207 0.19727 -1.00000 - 15328 2017 8 21 20 38 17 361 4.8209 187.64517 727.93286 675.53689 0.05016 5.81488 3.11959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02172 0.19727 -1.00000 - 15329 2017 8 21 20 38 22 182 4.8209 187.64577 727.99710 675.59023 0.05008 5.83031 3.12450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02137 0.19727 -1.00000 - 15330 2017 8 21 20 38 27 3 4.8209 187.64637 728.06034 675.64351 0.05000 5.84713 3.13052 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02102 0.19727 -1.00000 - 15331 2017 8 21 20 38 31 824 4.8209 187.64697 728.12383 675.69661 0.04992 5.86536 3.13351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02067 0.19727 -1.00000 - 15332 2017 8 21 20 38 36 645 4.8209 187.64756 728.18687 675.74955 0.04985 5.88510 3.13914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02032 0.19727 -1.00000 - 15333 2017 8 21 20 38 41 466 4.8209 187.64816 728.25018 675.80229 0.04979 5.90624 3.14371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01997 0.19727 -1.00000 - 15334 2017 8 21 20 38 46 287 4.8209 187.64875 728.31757 675.85494 0.04973 5.92715 3.14665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01962 0.19727 -1.00000 - 15335 2017 8 21 20 38 51 108 4.8209 187.64935 728.37921 675.90760 0.04967 5.94646 3.15327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01927 0.19727 -1.00000 - 15336 2017 8 21 20 38 55 929 4.8209 187.64993 728.43605 675.96000 0.04961 5.96586 3.15639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01892 0.19727 -1.00000 - 15337 2017 8 21 20 39 0 750 4.8210 187.65052 728.49847 676.01232 0.04955 5.99234 3.15832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01857 0.19727 -1.00000 - 15338 2017 8 21 20 39 5 571 4.8210 187.65111 728.55996 676.06465 0.04949 6.01862 3.16642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01822 0.19727 -1.00000 - 15339 2017 8 21 20 39 10 392 4.8210 187.65169 728.62193 676.11684 0.04944 6.04650 3.17017 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01786 0.19727 -1.00000 - 15340 2017 8 21 20 39 15 213 4.8210 187.65227 728.68797 676.16886 0.04938 6.07591 3.17389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01751 0.19727 -1.00000 - 15341 2017 8 21 20 39 20 34 4.8210 187.65285 728.74830 676.22095 0.04931 6.10681 3.18153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01716 0.19727 -1.00000 - 15342 2017 8 21 20 39 24 855 4.8210 187.65343 728.80520 676.27297 0.04925 6.13854 3.18558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01681 0.19727 -1.00000 - 15343 2017 8 21 20 39 29 676 4.8210 187.65401 728.86613 676.32487 0.04918 6.17056 3.18719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01646 0.19727 -1.00000 - 15344 2017 8 21 20 39 34 497 4.8210 187.65458 728.92578 676.37686 0.04911 6.20263 3.19467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01611 0.19727 -1.00000 - 15345 2017 8 21 20 39 39 318 4.8210 187.65515 728.98614 676.42879 0.04903 6.23475 3.19604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01576 0.19727 -1.00000 - 15346 2017 8 21 20 39 44 139 4.8210 187.65572 729.05037 676.48074 0.04896 6.26735 3.19694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01541 0.19727 -1.00000 - 15347 2017 8 21 20 39 48 960 4.8211 187.65629 729.11129 676.53281 0.04887 6.30041 3.20302 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01506 0.19727 -1.00000 - 15348 2017 8 21 20 39 53 781 4.8211 187.65686 729.16878 676.58479 0.04879 6.33169 3.20342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01471 0.19726 -1.00000 - 15349 2017 8 21 20 39 58 602 4.8211 187.65743 729.22928 676.63688 0.04870 6.35862 3.20644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01436 0.19726 -1.00000 - 15350 2017 8 21 20 40 3 423 4.8211 187.65799 729.28971 676.68923 0.04861 6.35103 3.21220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01401 0.19726 -1.00000 - 15351 2017 8 21 20 40 8 244 4.8211 187.65856 729.34763 676.74141 0.04851 6.37745 3.21229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01366 0.19726 -1.00000 - 15352 2017 8 21 20 40 13 65 4.8211 187.65912 729.41140 676.79373 0.04842 6.40140 3.21558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01331 0.19726 -1.00000 - 15353 2017 8 21 20 40 17 886 4.8211 187.65969 729.47265 676.84617 0.04833 6.42439 3.21980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01296 0.19726 -1.00000 - 15354 2017 8 21 20 40 22 708 4.8211 187.66025 729.53884 676.89842 0.04823 6.44416 3.22016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01261 0.19726 -1.00000 - 15355 2017 8 21 20 40 27 529 4.8211 187.66081 729.59986 676.95074 0.04814 6.46219 3.22505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01226 0.19726 -1.00000 - 15356 2017 8 21 20 40 32 350 4.8212 187.66137 729.65785 677.00319 0.04804 6.48234 3.22917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01190 0.19726 -1.00000 - 15357 2017 8 21 20 40 37 171 4.8212 187.66193 729.71958 677.05556 0.04795 6.50175 3.22945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01155 0.19726 -1.00000 - 15358 2017 8 21 20 40 41 992 4.8212 187.66249 729.78196 677.10778 0.04786 6.51850 3.23456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01120 0.19726 -1.00000 - 15359 2017 8 21 20 40 46 813 4.8212 187.66305 729.84445 677.15998 0.04777 6.53297 3.23816 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01085 0.19726 -1.00000 - 15360 2017 8 21 20 40 51 635 4.8212 187.66361 729.91051 677.21201 0.04768 6.55465 3.23904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01050 0.19726 -1.00000 - 15361 2017 8 21 20 40 56 456 4.8212 187.66417 729.97156 677.26404 0.04760 6.58085 3.24234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01015 0.19726 -1.00000 - 15362 2017 8 21 20 41 1 277 4.8212 187.66472 730.02892 677.31615 0.04752 6.56124 3.24280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00980 0.19726 -1.00000 - 15363 2017 8 21 20 41 6 98 4.8212 187.66528 730.09063 677.36821 0.04743 6.57013 3.24320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00945 0.19726 -1.00000 - 15364 2017 8 21 20 41 10 919 4.8212 187.66583 730.15250 677.42025 0.04735 6.58356 3.24744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00910 0.19726 -1.00000 - 15365 2017 8 21 20 41 15 741 4.8212 187.66639 730.21539 677.47223 0.04727 6.60175 3.24701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00875 0.19726 -1.00000 - 15366 2017 8 21 20 41 20 562 4.8213 187.66694 730.28172 677.52410 0.04718 6.61568 3.24705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00840 0.19726 -1.00000 - 15367 2017 8 21 20 41 25 383 4.8213 187.66749 730.34273 677.57603 0.04710 6.62298 3.25025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00805 0.19726 -1.00000 - 15368 2017 8 21 20 41 30 204 4.8213 187.66804 730.39992 677.62793 0.04702 6.57384 3.24898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00770 0.19726 -1.00000 - 15369 2017 8 21 20 41 35 26 4.8213 187.66859 730.46234 677.67978 0.04693 6.57164 3.24612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00735 0.19726 -1.00000 - 15370 2017 8 21 20 41 39 847 4.8213 187.66914 730.52393 677.73180 0.04685 6.56706 3.24713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00700 0.19726 -1.00000 - 15371 2017 8 21 20 41 44 668 4.8213 187.66968 730.58678 677.78379 0.04676 6.56809 3.24464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00665 0.19726 -1.00000 - 15372 2017 8 21 20 41 49 490 4.8213 187.67023 730.65436 677.83580 0.04668 6.56758 3.23884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00629 0.19726 -1.00000 - 15373 2017 8 21 20 41 54 311 4.8213 187.67077 730.71632 677.88787 0.04659 6.56377 3.24001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00594 0.19726 -1.00000 - 15374 2017 8 21 20 41 59 132 4.8213 187.67132 730.77265 677.93984 0.04651 6.55487 3.23487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00559 0.19726 -1.00000 - 15375 2017 8 21 20 42 3 954 4.8214 187.67186 730.83595 677.99185 0.04643 6.54061 3.22841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00524 0.19726 -1.00000 - 15376 2017 8 21 20 42 8 775 4.8214 187.67239 730.89804 678.04393 0.04635 6.52449 3.22819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00489 0.19725 -1.00000 - 15377 2017 8 21 20 42 13 596 4.8214 187.67293 730.96117 678.09589 0.04627 6.50882 3.22413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00454 0.19725 -1.00000 - 15378 2017 8 21 20 42 18 418 4.8214 187.67347 731.02780 678.14794 0.04619 6.49385 3.21954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00419 0.19725 -1.00000 - 15379 2017 8 21 20 42 23 239 4.8214 187.67400 731.08899 678.20010 0.04611 6.47968 3.21878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00384 0.19725 -1.00000 - 15380 2017 8 21 20 42 28 61 4.8214 187.67454 731.14572 678.25217 0.04604 6.46564 3.21491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00349 0.19725 -1.00000 - 15381 2017 8 21 20 42 32 882 4.8214 187.67507 731.20746 678.30432 0.04596 6.45125 3.21200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00314 0.19725 -1.00000 - 15382 2017 8 21 20 42 37 704 4.8214 187.67560 731.26941 678.35644 0.04589 6.43636 3.21120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00279 0.19725 -1.00000 - 15383 2017 8 21 20 42 42 525 4.8215 187.67613 731.33299 678.40846 0.04582 6.42104 3.20689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00244 0.19725 -1.00000 - 15384 2017 8 21 20 42 47 346 4.8215 187.67665 731.39925 678.46052 0.04574 6.40588 3.20460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00209 0.19725 -1.00000 - 15385 2017 8 21 20 42 52 168 4.8215 187.67718 731.46086 678.51259 0.04566 6.39102 3.20306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00174 0.19725 -1.00000 - 15386 2017 8 21 20 42 56 989 4.8215 187.67771 731.51768 678.56458 0.04559 6.37454 3.19732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00139 0.19725 -1.00000 - 15387 2017 8 21 20 43 1 811 4.8215 187.67823 731.57906 678.61661 0.04551 6.35672 3.19426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00104 0.19725 -1.00000 - 15388 2017 8 21 20 43 6 632 4.8215 187.67875 731.63991 678.66867 0.04542 6.33953 3.19275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00068 0.19725 -1.00000 - 15389 2017 8 21 20 43 11 454 4.8215 187.67927 731.70455 678.72070 0.04534 6.32286 3.18841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00033 0.19725 -1.00000 - 15390 2017 8 21 20 43 16 275 4.8215 187.67979 731.76773 678.77269 0.04525 6.30708 3.18620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99998 0.19725 -1.00000 - 15391 2017 8 21 20 43 21 97 4.8215 187.68031 731.82959 678.82478 0.04517 6.29225 3.18584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99963 0.19725 -1.00000 - 15392 2017 8 21 20 43 25 919 4.8216 187.68083 731.88909 678.87677 0.04507 6.27829 3.18189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99928 0.19725 -1.00000 - 15393 2017 8 21 20 43 30 740 4.8216 187.68134 731.95083 678.92875 0.04498 6.26514 3.17843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99893 0.19725 -1.00000 - 15394 2017 8 21 20 43 35 562 4.8216 187.68186 732.01229 678.98087 0.04489 6.25287 3.17919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99858 0.19725 -1.00000 - 15395 2017 8 21 20 43 40 383 4.8216 187.68237 732.07582 679.03287 0.04479 6.24155 3.17541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99823 0.19725 -1.00000 - 15396 2017 8 21 20 43 45 205 4.8216 187.68289 732.14292 679.08490 0.04470 6.23162 3.17121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99788 0.19725 -1.00000 - 15397 2017 8 21 20 43 50 27 4.8216 187.68340 732.20439 679.13708 0.04460 6.22320 3.17154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99753 0.19725 -1.00000 - 15398 2017 8 21 20 43 54 848 4.8216 187.68391 732.26149 679.18911 0.04450 6.21427 3.16650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99718 0.19725 -1.00000 - 15399 2017 8 21 20 43 59 670 4.8216 187.68442 732.32316 679.24117 0.04441 6.20355 3.16214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99683 0.19725 -1.00000 - 15400 2017 8 21 20 44 4 492 4.8217 187.68493 732.38544 679.29337 0.04431 6.19317 3.16257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99648 0.19725 -1.00000 - 15401 2017 8 21 20 44 9 313 4.8217 187.68544 732.44978 679.34544 0.04422 6.18485 3.15892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99613 0.19725 -1.00000 - 15402 2017 8 21 20 44 14 135 4.8217 187.68594 732.51710 679.39753 0.04413 6.17842 3.15425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99578 0.19725 -1.00000 - 15403 2017 8 21 20 44 18 957 4.8217 187.68645 732.57889 679.44980 0.04405 6.17370 3.15453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99543 0.19725 -1.00000 - 15404 2017 8 21 20 44 23 778 4.8217 187.68695 732.63602 679.50199 0.04396 6.17009 3.14947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99507 0.19724 -1.00000 - 15405 2017 8 21 20 44 28 600 4.8217 187.68746 732.69880 679.55423 0.04389 6.16704 3.14428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99472 0.19724 -1.00000 - 15406 2017 8 21 20 44 33 422 4.8217 187.68796 732.76126 679.60667 0.04381 6.16419 3.14459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99437 0.19724 -1.00000 - 15407 2017 8 21 20 44 38 243 4.8217 187.68846 732.81962 679.65893 0.04373 6.16155 3.13908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99402 0.19724 -1.00000 - 15408 2017 8 21 20 44 43 65 4.8218 187.68896 732.88667 679.71128 0.04366 6.15925 3.13406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99367 0.19724 -1.00000 - 15409 2017 8 21 20 44 47 887 4.8218 187.68945 732.94849 679.76389 0.04359 6.15749 3.13466 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99332 0.19724 -1.00000 - 15410 2017 8 21 20 44 52 709 4.8218 187.68995 733.01282 679.81632 0.04352 6.15543 3.12775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99297 0.19724 -1.00000 - 15411 2017 8 21 20 44 57 531 4.8218 187.69044 733.07954 679.86882 0.04345 6.15102 3.12432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99262 0.19724 -1.00000 - 15412 2017 8 21 20 45 2 352 4.8218 187.69093 733.14229 679.92158 0.04337 6.12449 3.12426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99227 0.19724 -1.00000 - 15413 2017 8 21 20 45 7 174 4.8218 187.69142 733.20184 679.97414 0.04330 6.12163 3.11826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99192 0.19724 -1.00000 - 15414 2017 8 21 20 45 11 996 4.8218 187.69191 733.26712 680.02671 0.04322 6.11607 3.11521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99157 0.19724 -1.00000 - 15415 2017 8 21 20 45 16 818 4.8219 187.69240 733.33024 680.07939 0.04314 6.11119 3.11612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99122 0.19724 -1.00000 - 15416 2017 8 21 20 45 21 640 4.8219 187.69289 733.39500 680.13182 0.04306 6.10456 3.11131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99087 0.19724 -1.00000 - 15417 2017 8 21 20 45 26 462 4.8219 187.69337 733.46314 680.18419 0.04297 6.09388 3.10892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99052 0.19724 -1.00000 - 15418 2017 8 21 20 45 31 284 4.8219 187.69385 733.52589 680.23660 0.04288 6.08170 3.10870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99017 0.19724 -1.00000 - 15419 2017 8 21 20 45 36 105 4.8219 187.69434 733.58458 680.28895 0.04279 6.07254 3.10389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98981 0.19724 -1.00000 - 15420 2017 8 21 20 45 40 927 4.8219 187.69482 733.64959 680.34127 0.04270 6.06353 3.10153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98946 0.19724 -1.00000 - 15421 2017 8 21 20 45 45 749 4.8219 187.69530 733.71188 680.39364 0.04260 6.05309 3.10054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98911 0.19724 -1.00000 - 15422 2017 8 21 20 45 50 571 4.8219 187.69578 733.77671 680.44585 0.04250 6.04191 3.09691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98876 0.19724 -1.00000 - 15423 2017 8 21 20 45 55 393 4.8220 187.69626 733.84454 680.49798 0.04240 6.02776 3.09515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98841 0.19724 -1.00000 - 15424 2017 8 21 20 46 0 215 4.8220 187.69674 733.90696 680.55003 0.04230 6.01638 3.09270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98806 0.19724 -1.00000 - 15425 2017 8 21 20 46 5 37 4.8220 187.69721 733.96447 680.60206 0.04220 6.00203 3.08855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98771 0.19724 -1.00000 - 15426 2017 8 21 20 46 9 859 4.8220 187.69769 734.02781 680.65415 0.04209 5.99250 3.08541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98736 0.19724 -1.00000 - 15427 2017 8 21 20 46 14 681 4.8220 187.69816 734.08989 680.70612 0.04199 5.98209 3.08241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98701 0.19724 -1.00000 - 15428 2017 8 21 20 46 19 503 4.8220 187.69864 734.15458 680.75815 0.04189 5.97154 3.07721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98666 0.19724 -1.00000 - 15429 2017 8 21 20 46 24 325 4.8220 187.69911 734.22153 680.81025 0.04179 5.95841 3.07312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98631 0.19724 -1.00000 - 15430 2017 8 21 20 46 29 147 4.8221 187.69958 734.27828 680.86242 0.04170 5.94693 3.06901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98596 0.19724 -1.00000 - 15431 2017 8 21 20 46 33 969 4.8221 187.70006 734.33835 680.91464 0.04160 5.93556 3.06123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98561 0.19724 -1.00000 - 15432 2017 8 21 20 46 38 791 4.8221 187.70053 734.39870 680.96704 0.04151 5.92729 3.05595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98526 0.19723 -1.00000 - 15433 2017 8 21 20 46 43 613 4.8221 187.70099 734.46576 681.01954 0.04142 5.91520 3.05148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98491 0.19723 -1.00000 - 15434 2017 8 21 20 46 48 436 4.8221 187.70146 734.53275 681.07222 0.04134 5.89895 3.04642 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98455 0.19723 -1.00000 - 15435 2017 8 21 20 46 53 258 4.8221 187.70193 734.59535 681.12487 0.04126 5.87910 3.04128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98420 0.19723 -1.00000 - 15436 2017 8 21 20 46 58 80 4.8221 187.70240 734.65402 681.17759 0.04118 5.87089 3.03528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98385 0.19723 -1.00000 - 15437 2017 8 21 20 47 2 902 4.8221 187.70286 734.71493 681.23050 0.04110 5.86503 3.03244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98350 0.19723 -1.00000 - 15438 2017 8 21 20 47 7 724 4.8222 187.70332 734.77850 681.28332 0.04103 5.85853 3.02913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98315 0.19723 -1.00000 - 15439 2017 8 21 20 47 12 546 4.8222 187.70378 734.84503 681.33616 0.04096 5.85144 3.02451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98280 0.19723 -1.00000 - 15440 2017 8 21 20 47 17 369 4.8222 187.70424 734.90847 681.38920 0.04088 5.84435 3.02416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98245 0.19723 -1.00000 - 15441 2017 8 21 20 47 22 191 4.8222 187.70469 734.97220 681.44221 0.04082 5.83721 3.02253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98210 0.19723 -1.00000 - 15442 2017 8 21 20 47 27 13 4.8222 187.70515 735.03565 681.49511 0.04075 5.83001 3.01996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98175 0.19723 -1.00000 - 15443 2017 8 21 20 47 31 835 4.8222 187.70560 735.09941 681.54803 0.04068 5.82288 3.01939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98140 0.19723 -1.00000 - 15444 2017 8 21 20 47 36 657 4.8222 187.70605 735.16311 681.60089 0.04062 5.81603 3.02075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98105 0.19723 -1.00000 - 15445 2017 8 21 20 47 41 480 4.8223 187.70650 735.22702 681.65371 0.04055 5.80972 3.02127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98070 0.19723 -1.00000 - 15446 2017 8 21 20 47 46 302 4.8223 187.70695 735.29083 681.70643 0.04048 5.80427 3.02345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98035 0.19723 -1.00000 - 15447 2017 8 21 20 47 51 124 4.8223 187.70739 735.35457 681.75902 0.04040 5.79997 3.02619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98000 0.19723 -1.00000 - 15448 2017 8 21 20 47 55 947 4.8223 187.70784 735.41827 681.81146 0.04033 5.79710 3.02834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97965 0.19723 -1.00000 - 15449 2017 8 21 20 48 0 769 4.8223 187.70828 735.48176 681.86376 0.04025 5.79586 3.03182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97929 0.19723 -1.00000 - 15450 2017 8 21 20 48 5 591 4.8223 187.70872 735.54507 681.91587 0.04017 5.79644 3.03621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97894 0.19723 -1.00000 - 15451 2017 8 21 20 48 10 414 4.8224 187.70915 735.60812 681.96780 0.04009 5.79895 3.04020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97859 0.19723 -1.00000 - 15452 2017 8 21 20 48 15 236 4.8224 187.70959 735.67093 682.01954 0.04000 5.80768 3.04431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97824 0.19723 -1.00000 - 15453 2017 8 21 20 48 20 58 4.8224 187.71002 735.73341 682.07110 0.03990 5.81828 3.04842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97789 0.19723 -1.00000 - 15454 2017 8 21 20 48 24 881 4.8224 187.71046 735.79567 682.12243 0.03981 5.83014 3.05162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97754 0.19723 -1.00000 - 15455 2017 8 21 20 48 29 703 4.8224 187.71089 735.85735 682.17359 0.03971 5.84331 3.05571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97719 0.19723 -1.00000 - 15456 2017 8 21 20 48 34 526 4.8224 187.71132 735.91876 682.22457 0.03962 5.85782 3.05793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97684 0.19723 -1.00000 - 15457 2017 8 21 20 48 39 348 4.8224 187.71175 735.97973 682.27538 0.03952 5.87376 3.06036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97649 0.19723 -1.00000 - 15458 2017 8 21 20 48 44 170 4.8225 187.71218 736.03998 682.32615 0.03942 5.89115 3.06115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97614 0.19723 -1.00000 - 15459 2017 8 21 20 48 48 993 4.8225 187.71261 736.09994 682.37691 0.03931 5.91006 3.06069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97579 0.19723 -1.00000 - 15460 2017 8 21 20 48 53 815 4.8225 187.71304 736.15959 682.42769 0.03921 5.93047 3.06012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97544 0.19722 -1.00000 - 15461 2017 8 21 20 48 58 638 4.8225 187.71346 736.22070 682.47848 0.03911 5.95073 3.05895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97509 0.19722 -1.00000 - 15462 2017 8 21 20 49 3 460 4.8225 187.71389 736.27957 682.52934 0.03901 5.96980 3.05781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97474 0.19722 -1.00000 - 15463 2017 8 21 20 49 8 283 4.8225 187.71431 736.33764 682.58020 0.03891 5.98872 3.05535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97438 0.19722 -1.00000 - 15464 2017 8 21 20 49 13 105 4.8225 187.71474 736.40273 682.63104 0.03882 6.01072 3.05284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97403 0.19722 -1.00000 - 15465 2017 8 21 20 49 17 928 4.8226 187.71516 736.46291 682.68195 0.03872 6.02858 3.05328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97368 0.19722 -1.00000 - 15466 2017 8 21 20 49 22 751 4.8226 187.71557 736.51765 682.73286 0.03863 6.04443 3.05218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97333 0.19722 -1.00000 - 15467 2017 8 21 20 49 27 573 4.8226 187.71599 736.58236 682.78386 0.03854 6.05975 3.04916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97298 0.19722 -1.00000 - 15468 2017 8 21 20 49 32 396 4.8226 187.71641 736.64305 682.83497 0.03845 6.07478 3.05114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97263 0.19722 -1.00000 - 15469 2017 8 21 20 49 37 218 4.8226 187.71683 736.69805 682.88592 0.03837 6.08877 3.05027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97228 0.19722 -1.00000 - 15470 2017 8 21 20 49 42 41 4.8226 187.71725 736.75805 682.93696 0.03829 6.10093 3.04743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97193 0.19722 -1.00000 - 15471 2017 8 21 20 49 46 864 4.8227 187.71766 736.81832 682.98797 0.03822 6.11073 3.05127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97158 0.19722 -1.00000 - 15472 2017 8 21 20 49 51 686 4.8227 187.71807 736.87707 683.03896 0.03814 6.11789 3.04995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97123 0.19722 -1.00000 - 15473 2017 8 21 20 49 56 509 4.8227 187.71848 736.93746 683.08989 0.03807 6.12225 3.04913 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97088 0.19722 -1.00000 - 15474 2017 8 21 20 50 1 332 4.8227 187.71889 736.99750 683.14084 0.03799 6.12376 3.05100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97053 0.19722 -1.00000 - 15475 2017 8 21 20 50 6 154 4.8227 187.71930 737.05780 683.19182 0.03790 6.12244 3.05105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97018 0.19722 -1.00000 - 15476 2017 8 21 20 50 10 977 4.8227 187.71971 737.11833 683.24277 0.03782 6.11842 3.05278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96983 0.19722 -1.00000 - 15477 2017 8 21 20 50 15 800 4.8227 187.72011 737.17884 683.29372 0.03775 6.11191 3.05423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96948 0.19722 -1.00000 - 15478 2017 8 21 20 50 20 623 4.8228 187.72052 737.23929 683.34456 0.03768 6.10323 3.05702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96912 0.19722 -1.00000 - 15479 2017 8 21 20 50 25 445 4.8228 187.72092 737.29965 683.39532 0.03759 6.09279 3.05786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96877 0.19722 -1.00000 - 15480 2017 8 21 20 50 30 268 4.8228 187.72131 737.35991 683.44606 0.03750 6.08103 3.06069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96842 0.19722 -1.00000 - 15481 2017 8 21 20 50 35 91 4.8228 187.72171 737.42031 683.49673 0.03741 6.06845 3.06382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96807 0.19722 -1.00000 - 15482 2017 8 21 20 50 39 914 4.8228 187.72211 737.48076 683.54731 0.03732 6.05554 3.06628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96772 0.19722 -1.00000 - 15483 2017 8 21 20 50 44 737 4.8228 187.72251 737.54123 683.59785 0.03724 6.04278 3.06979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96737 0.19722 -1.00000 - 15484 2017 8 21 20 50 49 560 4.8229 187.72291 737.60167 683.64826 0.03715 6.03059 3.07317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96702 0.19722 -1.00000 - 15485 2017 8 21 20 50 54 382 4.8229 187.72330 737.66201 683.69856 0.03706 6.01937 3.07571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96667 0.19722 -1.00000 - 15486 2017 8 21 20 50 59 205 4.8229 187.72369 737.72221 683.74874 0.03695 6.00944 3.07859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96632 0.19722 -1.00000 - 15487 2017 8 21 20 51 4 28 4.8229 187.72408 737.78217 683.79880 0.03685 6.00110 3.08053 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96597 0.19722 -1.00000 - 15488 2017 8 21 20 51 8 851 4.8229 187.72447 737.84190 683.84876 0.03676 5.99459 3.08210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96562 0.19721 -1.00000 - 15489 2017 8 21 20 51 13 674 4.8229 187.72487 737.90155 683.89871 0.03667 5.99010 3.08407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96527 0.19721 -1.00000 - 15490 2017 8 21 20 51 18 497 4.8230 187.72526 737.96105 683.94855 0.03658 5.99438 3.08363 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96492 0.19721 -1.00000 - 15491 2017 8 21 20 51 23 320 4.8230 187.72565 738.01986 683.99836 0.03649 6.00071 3.08325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96456 0.19721 -1.00000 - 15492 2017 8 21 20 51 28 143 4.8230 187.72603 738.07817 684.04821 0.03640 6.00865 3.08097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96421 0.19721 -1.00000 - 15493 2017 8 21 20 51 32 966 4.8230 187.72641 738.14189 684.09814 0.03630 6.01651 3.07753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96386 0.19721 -1.00000 - 15494 2017 8 21 20 51 37 789 4.8230 187.72679 738.19913 684.14822 0.03621 6.00270 3.07453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96351 0.19721 -1.00000 - 15495 2017 8 21 20 51 42 612 4.8230 187.72718 738.25570 684.19839 0.03612 6.00971 3.06864 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96316 0.19721 -1.00000 - 15496 2017 8 21 20 51 47 435 4.8231 187.72756 738.31859 684.24861 0.03605 6.01674 3.06474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96281 0.19721 -1.00000 - 15497 2017 8 21 20 51 52 258 4.8231 187.72795 738.37724 684.29891 0.03597 6.02310 3.06293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96246 0.19721 -1.00000 - 15498 2017 8 21 20 51 57 81 4.8231 187.72833 738.43895 684.34927 0.03589 6.01278 3.05853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96211 0.19721 -1.00000 - 15499 2017 8 21 20 52 1 904 4.8231 187.72870 738.49779 684.39967 0.03580 6.02123 3.05600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96176 0.19721 -1.00000 - 15500 2017 8 21 20 52 6 727 4.8231 187.72907 738.55202 684.45012 0.03571 6.02702 3.05400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96141 0.19721 -1.00000 - 15501 2017 8 21 20 52 11 551 4.8231 187.72944 738.61039 684.50065 0.03564 6.03184 3.05054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96106 0.19721 -1.00000 - 15502 2017 8 21 20 52 16 374 4.8232 187.72982 738.67522 684.55119 0.03557 6.04079 3.04773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96071 0.19721 -1.00000 - 15503 2017 8 21 20 52 21 197 4.8232 187.73020 738.73958 684.60171 0.03549 6.05036 3.04287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96036 0.19721 -1.00000 - 15504 2017 8 21 20 52 26 20 4.8232 187.73058 738.79897 684.65237 0.03541 6.05554 3.04141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96001 0.19721 -1.00000 - 15505 2017 8 21 20 52 30 843 4.8232 187.73094 738.85399 684.70302 0.03532 6.02100 3.03821 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95965 0.19721 -1.00000 - 15506 2017 8 21 20 52 35 667 4.8232 187.73131 738.91396 684.75378 0.03523 6.01609 3.03209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95930 0.19721 -1.00000 - 15507 2017 8 21 20 52 40 490 4.8232 187.73167 738.97340 684.80450 0.03514 6.00811 3.03193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95895 0.19721 -1.00000 - 15508 2017 8 21 20 52 45 313 4.8233 187.73203 739.03908 684.85523 0.03505 6.00412 3.02761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95860 0.19721 -1.00000 - 15509 2017 8 21 20 52 50 136 4.8233 187.73240 739.10397 684.90599 0.03496 6.00562 3.02420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95825 0.19721 -1.00000 - 15510 2017 8 21 20 52 54 960 4.8233 187.73277 739.16373 684.95684 0.03489 6.00272 3.02440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95790 0.19721 -1.00000 - 15511 2017 8 21 20 52 59 783 4.8233 187.73313 739.21946 685.00774 0.03481 5.95172 3.01945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95755 0.19721 -1.00000 - 15512 2017 8 21 20 53 4 606 4.8233 187.73350 739.27881 685.05864 0.03472 5.93776 3.01502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95720 0.19721 -1.00000 - 15513 2017 8 21 20 53 9 430 4.8233 187.73385 739.34097 685.10960 0.03460 5.92432 3.01495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95685 0.19721 -1.00000 - 15514 2017 8 21 20 53 14 253 4.8234 187.73420 739.40508 685.16045 0.03449 5.91831 3.01115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95650 0.19721 -1.00000 - 15515 2017 8 21 20 53 19 76 4.8234 187.73455 739.47092 685.21126 0.03439 5.91019 3.00662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95615 0.19721 -1.00000 - 15516 2017 8 21 20 53 23 900 4.8234 187.73491 739.53141 685.26222 0.03433 5.89777 3.00692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95580 0.19720 -1.00000 - 15517 2017 8 21 20 53 28 723 4.8234 187.73527 739.58728 685.31316 0.03427 5.85600 3.00014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95545 0.19720 -1.00000 - 15518 2017 8 21 20 53 33 546 4.8234 187.73563 739.64609 685.36412 0.03419 5.84363 2.99405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95509 0.19720 -1.00000 - 15519 2017 8 21 20 53 38 370 4.8234 187.73598 739.70695 685.41526 0.03408 5.83083 2.99273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95474 0.19720 -1.00000 - 15520 2017 8 21 20 53 43 193 4.8235 187.73633 739.77428 685.46635 0.03397 5.81696 2.98599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95439 0.19720 -1.00000 - 15521 2017 8 21 20 53 48 17 4.8235 187.73666 739.83776 685.51747 0.03387 5.79859 2.98058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95404 0.19720 -1.00000 - 15522 2017 8 21 20 53 52 840 4.8235 187.73701 739.89921 685.56868 0.03380 5.77577 2.97997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95369 0.19720 -1.00000 - 15523 2017 8 21 20 53 57 664 4.8235 187.73736 739.95786 685.61971 0.03374 5.76481 2.97210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95334 0.19720 -1.00000 - 15524 2017 8 21 20 54 2 487 4.8235 187.73772 740.01844 685.67081 0.03368 5.75352 2.96724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95299 0.19720 -1.00000 - 15525 2017 8 21 20 54 7 311 4.8235 187.73806 740.07779 685.72205 0.03360 5.74407 2.96670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95264 0.19720 -1.00000 - 15526 2017 8 21 20 54 12 134 4.8236 187.73840 740.14466 685.77320 0.03351 5.73672 2.96050 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95229 0.19720 -1.00000 - 15527 2017 8 21 20 54 16 958 4.8236 187.73873 740.20531 685.82442 0.03343 5.73164 2.95791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95194 0.19720 -1.00000 - 15528 2017 8 21 20 54 21 782 4.8236 187.73906 740.26586 685.87574 0.03335 5.72832 2.95740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95159 0.19720 -1.00000 - 15529 2017 8 21 20 54 26 605 4.8236 187.73939 740.32470 685.92686 0.03329 5.72611 2.95247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95124 0.19720 -1.00000 - 15530 2017 8 21 20 54 31 429 4.8236 187.73973 740.38546 685.97808 0.03324 5.72451 2.95078 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95089 0.19720 -1.00000 - 15531 2017 8 21 20 54 36 253 4.8237 187.74008 740.44552 686.02931 0.03318 5.72324 2.95193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95053 0.19720 -1.00000 - 15532 2017 8 21 20 54 41 76 4.8237 187.74041 740.50687 686.08042 0.03310 5.72222 2.94823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95018 0.19720 -1.00000 - 15533 2017 8 21 20 54 45 900 4.8237 187.74074 740.57080 686.13146 0.03302 5.72184 2.94769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94983 0.19720 -1.00000 - 15534 2017 8 21 20 54 50 724 4.8237 187.74106 740.63151 686.18254 0.03293 5.72210 2.94850 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94948 0.19720 -1.00000 - 15535 2017 8 21 20 54 55 547 4.8237 187.74138 740.69003 686.23345 0.03282 5.72265 2.94586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94913 0.19720 -1.00000 - 15536 2017 8 21 20 55 0 371 4.8237 187.74170 740.75043 686.28437 0.03271 5.72336 2.94563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94878 0.19720 -1.00000 - 15537 2017 8 21 20 55 5 195 4.8238 187.74203 740.81075 686.33536 0.03263 5.72426 2.94594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94843 0.19720 -1.00000 - 15538 2017 8 21 20 55 10 19 4.8238 187.74236 740.87132 686.38627 0.03258 5.72551 2.94559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94808 0.19720 -1.00000 - 15539 2017 8 21 20 55 14 842 4.8238 187.74270 740.93197 686.43719 0.03251 5.72730 2.94712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94773 0.19720 -1.00000 - 15540 2017 8 21 20 55 19 666 4.8238 187.74302 740.99288 686.48810 0.03239 5.72979 2.94772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94738 0.19720 -1.00000 - 15541 2017 8 21 20 55 24 490 4.8238 187.74333 741.05391 686.53891 0.03222 5.73310 2.94834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94703 0.19720 -1.00000 - 15542 2017 8 21 20 55 29 314 4.8239 187.74363 741.11473 686.58955 0.03205 5.73730 2.95200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94668 0.19720 -1.00000 - 15543 2017 8 21 20 55 34 138 4.8239 187.74395 741.17545 686.64013 0.03195 5.74241 2.95260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94632 0.19720 -1.00000 - 15544 2017 8 21 20 55 38 962 4.8239 187.74428 741.23609 686.69064 0.03191 5.74843 2.95500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94597 0.19719 -1.00000 - 15545 2017 8 21 20 55 43 786 4.8239 187.74461 741.29681 686.74114 0.03187 5.75532 2.95863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94562 0.19719 -1.00000 - 15546 2017 8 21 20 55 48 610 4.8239 187.74494 741.35734 686.79141 0.03176 5.76304 2.95828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94527 0.19719 -1.00000 - 15547 2017 8 21 20 55 53 434 4.8239 187.74526 741.41623 686.84161 0.03160 5.77156 2.95955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94492 0.19719 -1.00000 - 15548 2017 8 21 20 55 58 257 4.8240 187.74557 741.47643 686.89185 0.03144 5.78089 2.96132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94457 0.19719 -1.00000 - 15549 2017 8 21 20 56 3 81 4.8240 187.74586 741.53907 686.94197 0.03131 5.79129 2.96009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94422 0.19719 -1.00000 - 15550 2017 8 21 20 56 7 905 4.8240 187.74617 741.59876 686.99219 0.03122 5.80292 2.96103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94387 0.19719 -1.00000 - 15551 2017 8 21 20 56 12 729 4.8240 187.74650 741.65645 687.04233 0.03117 5.81368 2.95993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94352 0.19719 -1.00000 - 15552 2017 8 21 20 56 17 553 4.8240 187.74683 741.71945 687.09239 0.03114 5.82208 2.95623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94317 0.19719 -1.00000 - 15553 2017 8 21 20 56 22 378 4.8241 187.74716 741.77871 687.14256 0.03107 5.83016 2.95971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94282 0.19719 -1.00000 - 15554 2017 8 21 20 56 27 202 4.8241 187.74747 741.83374 687.19271 0.03096 5.84005 2.95644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94247 0.19719 -1.00000 - 15555 2017 8 21 20 56 32 26 4.8241 187.74776 741.89774 687.24279 0.03083 5.85141 2.95327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94212 0.19719 -1.00000 - 15556 2017 8 21 20 56 36 850 4.8241 187.74805 741.95849 687.29301 0.03069 5.86390 2.95439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94176 0.19719 -1.00000 - 15557 2017 8 21 20 56 41 674 4.8241 187.74835 742.01970 687.34316 0.03063 5.87456 2.95021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94141 0.19719 -1.00000 - 15558 2017 8 21 20 56 46 498 4.8241 187.74867 742.07916 687.39330 0.03064 5.88020 2.94876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94106 0.19719 -1.00000 - 15559 2017 8 21 20 56 51 322 4.8242 187.74899 742.13808 687.44373 0.03065 5.82767 2.94948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94071 0.19719 -1.00000 - 15560 2017 8 21 20 56 56 146 4.8242 187.74930 742.19326 687.49402 0.03059 5.82018 2.94558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94036 0.19719 -1.00000 - 15561 2017 8 21 20 57 0 971 4.8242 187.74960 742.25563 687.54434 0.03048 5.82674 2.94407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94001 0.19719 -1.00000 - 15562 2017 8 21 20 57 5 795 4.8242 187.74988 742.31552 687.59476 0.03036 5.82778 2.94564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93966 0.19719 -1.00000 - 15563 2017 8 21 20 57 10 619 4.8242 187.75015 742.38109 687.64503 0.03027 5.82685 2.94231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93931 0.19719 -1.00000 - 15564 2017 8 21 20 57 15 443 4.8243 187.75044 742.44133 687.69533 0.03024 5.82196 2.94299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93896 0.19719 -1.00000 - 15565 2017 8 21 20 57 20 268 4.8243 187.75075 742.50160 687.74574 0.03024 5.79156 2.94462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93861 0.19719 -1.00000 - 15566 2017 8 21 20 57 25 92 4.8243 187.75105 742.55790 687.79599 0.03022 5.78486 2.94145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93826 0.19719 -1.00000 - 15567 2017 8 21 20 57 29 916 4.8243 187.75135 742.61882 687.84619 0.03015 5.77649 2.94112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93791 0.19719 -1.00000 - 15568 2017 8 21 20 57 34 741 4.8243 187.75163 742.68055 687.89643 0.03004 5.76848 2.94252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93755 0.19719 -1.00000 - 15569 2017 8 21 20 57 39 565 4.8244 187.75190 742.74582 687.94651 0.02991 5.75845 2.94015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93720 0.19719 -1.00000 - 15570 2017 8 21 20 57 44 389 4.8244 187.75216 742.80574 687.99647 0.02977 5.74797 2.94120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93685 0.19719 -1.00000 - 15571 2017 8 21 20 57 49 214 4.8244 187.75243 742.86528 688.04656 0.02968 5.74141 2.94244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93650 0.19719 -1.00000 - 15572 2017 8 21 20 57 54 38 4.8244 187.75273 742.92056 688.09648 0.02966 5.73518 2.93988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93615 0.19718 -1.00000 - 15573 2017 8 21 20 57 58 863 4.8244 187.75303 742.98029 688.14631 0.02964 5.72802 2.94018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93580 0.19718 -1.00000 - 15574 2017 8 21 20 58 3 687 4.8245 187.75332 743.04225 688.19625 0.02954 5.72157 2.93944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93545 0.19718 -1.00000 - 15575 2017 8 21 20 58 8 512 4.8245 187.75359 743.10704 688.24597 0.02938 5.71301 2.93839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93510 0.19718 -1.00000 - 15576 2017 8 21 20 58 13 336 4.8245 187.75385 743.16616 688.29569 0.02920 5.70344 2.93896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93475 0.19718 -1.00000 - 15577 2017 8 21 20 58 18 161 4.8245 187.75410 743.22085 688.34547 0.02905 5.69884 2.93726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93440 0.19718 -1.00000 - 15578 2017 8 21 20 58 22 985 4.8245 187.75437 743.27906 688.39518 0.02896 5.69576 2.93405 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93405 0.19718 -1.00000 - 15579 2017 8 21 20 58 27 810 4.8246 187.75466 743.33909 688.44503 0.02892 5.69200 2.93575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93370 0.19718 -1.00000 - 15580 2017 8 21 20 58 32 634 4.8246 187.75496 743.40035 688.49479 0.02886 5.68835 2.93219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93334 0.19718 -1.00000 - 15581 2017 8 21 20 58 37 459 4.8246 187.75524 743.46382 688.54451 0.02875 5.68134 2.92805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93299 0.19718 -1.00000 - 15582 2017 8 21 20 58 42 284 4.8246 187.75551 743.52352 688.59432 0.02862 5.67119 2.92822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93264 0.19718 -1.00000 - 15583 2017 8 21 20 58 47 108 4.8246 187.75576 743.57807 688.64402 0.02848 5.66686 2.92379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93229 0.19718 -1.00000 - 15584 2017 8 21 20 58 51 933 4.8247 187.75601 743.63984 688.69375 0.02833 5.66848 2.92006 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93194 0.19718 -1.00000 - 15585 2017 8 21 20 58 56 758 4.8247 187.75628 743.69814 688.74361 0.02822 5.66901 2.92047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93159 0.19718 -1.00000 - 15586 2017 8 21 20 59 1 582 4.8247 187.75657 743.75513 688.79337 0.02819 5.67052 2.91736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93124 0.19718 -1.00000 - 15587 2017 8 21 20 59 6 407 4.8247 187.75686 743.81914 688.84330 0.02817 5.67321 2.91625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93089 0.19718 -1.00000 - 15588 2017 8 21 20 59 11 232 4.8247 187.75714 743.87750 688.89326 0.02811 5.67713 2.91719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93054 0.19718 -1.00000 - 15589 2017 8 21 20 59 16 56 4.8248 187.75740 743.93309 688.94313 0.02801 5.68152 2.91467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93019 0.19718 -1.00000 - 15590 2017 8 21 20 59 20 881 4.8248 187.75764 743.99196 688.99303 0.02787 5.68582 2.91492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92984 0.19718 -1.00000 - 15591 2017 8 21 20 59 25 706 4.8248 187.75788 744.05078 689.04290 0.02774 5.68982 2.91697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92948 0.19718 -1.00000 - 15592 2017 8 21 20 59 30 531 4.8248 187.75814 744.10991 689.09271 0.02766 5.69363 2.91616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92913 0.19718 -1.00000 - 15593 2017 8 21 20 59 35 356 4.8248 187.75841 744.16893 689.14247 0.02765 5.69750 2.91785 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92878 0.19718 -1.00000 - 15594 2017 8 21 20 59 40 181 4.8249 187.75869 744.22786 689.19219 0.02765 5.70172 2.91926 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92843 0.19718 -1.00000 - 15595 2017 8 21 20 59 45 5 4.8249 187.75897 744.28662 689.24183 0.02760 5.70659 2.91867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92808 0.19718 -1.00000 - 15596 2017 8 21 20 59 49 830 4.8249 187.75922 744.34423 689.29155 0.02750 5.71241 2.91976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92773 0.19718 -1.00000 - 15597 2017 8 21 20 59 54 655 4.8249 187.75946 744.40343 689.34130 0.02739 5.71944 2.92170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92738 0.19718 -1.00000 - 15598 2017 8 21 20 59 59 480 4.8249 187.75969 744.46548 689.39098 0.02726 5.72807 2.92035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92703 0.19718 -1.00000 - 15599 2017 8 21 21 0 4 305 4.8250 187.75993 744.52394 689.44071 0.02715 5.73859 2.92219 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92668 0.19718 -1.00000 - 15600 2017 8 21 21 0 9 130 4.8250 187.76018 744.58049 689.49043 0.02712 5.74895 2.92304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92633 0.19717 -1.00000 - 15601 2017 8 21 21 0 13 955 4.8250 187.76045 744.63980 689.54008 0.02712 5.75907 2.92291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92598 0.19717 -1.00000 - 15602 2017 8 21 21 0 18 780 4.8250 187.76072 744.69856 689.58962 0.02707 5.77075 2.92624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92563 0.19717 -1.00000 - 15603 2017 8 21 21 0 23 605 4.8250 187.76096 744.75695 689.63913 0.02697 5.78360 2.92787 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92527 0.19717 -1.00000 - 15604 2017 8 21 21 0 28 430 4.8251 187.76119 744.82084 689.68859 0.02682 5.79776 2.92807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92492 0.19717 -1.00000 - 15605 2017 8 21 21 0 33 255 4.8251 187.76140 744.87914 689.73810 0.02667 5.81304 2.93174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92457 0.19717 -1.00000 - 15606 2017 8 21 21 0 38 80 4.8251 187.76163 744.93381 689.78746 0.02656 5.82841 2.93278 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92422 0.19717 -1.00000 - 15607 2017 8 21 21 0 42 906 4.8251 187.76188 744.99249 689.83676 0.02654 5.84313 2.93272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92387 0.19717 -1.00000 - 15608 2017 8 21 21 0 47 731 4.8252 187.76214 745.05081 689.88604 0.02652 5.85683 2.93756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92352 0.19717 -1.00000 - 15609 2017 8 21 21 0 52 556 4.8252 187.76240 745.10937 689.93519 0.02644 5.86940 2.93831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92317 0.19717 -1.00000 - 15610 2017 8 21 21 0 57 381 4.8252 187.76263 745.16790 689.98415 0.02632 5.88090 2.93930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92282 0.19717 -1.00000 - 15611 2017 8 21 21 1 2 206 4.8252 187.76285 745.22618 690.03313 0.02618 5.89140 2.94233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92247 0.19717 -1.00000 - 15612 2017 8 21 21 1 7 32 4.8252 187.76306 745.28475 690.08202 0.02604 5.90097 2.94292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92212 0.19717 -1.00000 - 15613 2017 8 21 21 1 11 857 4.8253 187.76328 745.34342 690.13088 0.02593 5.90968 2.94263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92177 0.19717 -1.00000 - 15614 2017 8 21 21 1 16 682 4.8253 187.76352 745.40171 690.17966 0.02587 5.91755 2.94611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92141 0.19717 -1.00000 - 15615 2017 8 21 21 1 21 507 4.8253 187.76377 745.45664 690.22836 0.02585 5.92461 2.94502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92106 0.19717 -1.00000 - 15616 2017 8 21 21 1 26 333 4.8253 187.76402 745.51408 690.27706 0.02580 5.93085 2.94350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92071 0.19717 -1.00000 - 15617 2017 8 21 21 1 31 158 4.8253 187.76424 745.57344 690.32579 0.02571 5.93623 2.94585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92036 0.19717 -1.00000 - 15618 2017 8 21 21 1 35 983 4.8254 187.76445 745.63649 690.37450 0.02558 5.93992 2.94234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92001 0.19717 -1.00000 - 15619 2017 8 21 21 1 40 809 4.8254 187.76466 745.69423 690.42317 0.02543 5.93995 2.94107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91966 0.19717 -1.00000 - 15620 2017 8 21 21 1 45 634 4.8254 187.76487 745.74706 690.47202 0.02531 5.88126 2.94116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91931 0.19717 -1.00000 - 15621 2017 8 21 21 1 50 460 4.8254 187.76510 745.80355 690.52090 0.02526 5.87994 2.93687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91896 0.19717 -1.00000 - 15622 2017 8 21 21 1 55 285 4.8254 187.76535 745.86256 690.56984 0.02525 5.87493 2.93703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91861 0.19717 -1.00000 - 15623 2017 8 21 21 2 0 111 4.8255 187.76558 745.92355 690.61871 0.02521 5.87035 2.93411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91826 0.19717 -1.00000 - 15624 2017 8 21 21 2 4 936 4.8255 187.76580 745.98707 690.66769 0.02512 5.86890 2.92931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91791 0.19717 -1.00000 - 15625 2017 8 21 21 2 9 762 4.8255 187.76601 746.04619 690.71674 0.02499 5.86284 2.92824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91755 0.19717 -1.00000 - 15626 2017 8 21 21 2 14 587 4.8255 187.76620 746.10125 690.76568 0.02484 5.85091 2.92373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91720 0.19717 -1.00000 - 15627 2017 8 21 21 2 19 413 4.8256 187.76640 746.15963 690.81469 0.02471 5.83637 2.92157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91685 0.19717 -1.00000 - 15628 2017 8 21 21 2 24 238 4.8256 187.76662 746.21847 690.86375 0.02465 5.82150 2.92065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91650 0.19716 -1.00000 - 15629 2017 8 21 21 2 29 64 4.8256 187.76686 746.28279 690.91282 0.02464 5.80682 2.91586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91615 0.19716 -1.00000 - 15630 2017 8 21 21 2 33 889 4.8256 187.76709 746.34099 690.96185 0.02461 5.79238 2.91412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91580 0.19716 -1.00000 - 15631 2017 8 21 21 2 38 715 4.8256 187.76731 746.39643 691.01081 0.02451 5.77757 2.91185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91545 0.19716 -1.00000 - 15632 2017 8 21 21 2 43 541 4.8257 187.76751 746.45287 691.05980 0.02438 5.76206 2.90714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91510 0.19716 -1.00000 - 15633 2017 8 21 21 2 48 366 4.8257 187.76769 746.50900 691.10881 0.02421 5.74588 2.90482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91475 0.19716 -1.00000 - 15634 2017 8 21 21 2 53 192 4.8257 187.76788 746.56983 691.15782 0.02406 5.72927 2.90318 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91440 0.19716 -1.00000 - 15635 2017 8 21 21 2 58 18 4.8257 187.76809 746.63120 691.20685 0.02398 5.71277 2.89754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91404 0.19716 -1.00000 - 15636 2017 8 21 21 3 2 844 4.8258 187.76832 746.69413 691.25586 0.02396 5.69541 2.89440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91369 0.19716 -1.00000 - 15637 2017 8 21 21 3 7 669 4.8258 187.76855 746.75270 691.30495 0.02393 5.67476 2.89093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91334 0.19716 -1.00000 - 15638 2017 8 21 21 3 12 495 4.8258 187.76876 746.80649 691.35395 0.02384 5.65188 2.88658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91299 0.19716 -1.00000 - 15639 2017 8 21 21 3 17 321 4.8258 187.76896 746.86554 691.40302 0.02371 5.60894 2.88348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91264 0.19716 -1.00000 - 15640 2017 8 21 21 3 22 147 4.8258 187.76914 746.92353 691.45229 0.02356 5.59701 2.88082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91229 0.19716 -1.00000 - 15641 2017 8 21 21 3 26 973 4.8259 187.76932 746.98388 691.50146 0.02340 5.58890 2.87735 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91194 0.19716 -1.00000 - 15642 2017 8 21 21 3 31 799 4.8259 187.76952 747.04597 691.55052 0.02331 5.57628 2.87351 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91159 0.19716 -1.00000 - 15643 2017 8 21 21 3 36 624 4.8259 187.76974 747.11000 691.59979 0.02328 5.56087 2.87125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91124 0.19716 -1.00000 - 15644 2017 8 21 21 3 41 450 4.8259 187.76996 747.16562 691.64890 0.02325 5.54486 2.86783 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91089 0.19716 -1.00000 - 15645 2017 8 21 21 3 46 276 4.8259 187.77017 747.22076 691.69801 0.02319 5.53168 2.86741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91054 0.19716 -1.00000 - 15646 2017 8 21 21 3 51 102 4.8260 187.77035 747.28055 691.74703 0.02309 5.52153 2.86722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91018 0.19716 -1.00000 - 15647 2017 8 21 21 3 55 928 4.8260 187.77052 747.33935 691.79589 0.02296 5.51487 2.86368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90983 0.19716 -1.00000 - 15648 2017 8 21 21 4 0 754 4.8260 187.77070 747.39831 691.84479 0.02283 5.50966 2.86361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90948 0.19716 -1.00000 - 15649 2017 8 21 21 4 5 580 4.8260 187.77090 747.45750 691.89357 0.02275 5.50521 2.86226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90913 0.19716 -1.00000 - 15650 2017 8 21 21 4 10 406 4.8261 187.77110 747.51446 691.94214 0.02273 5.50278 2.85933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90878 0.19716 -1.00000 - 15651 2017 8 21 21 4 15 232 4.8261 187.77131 747.57222 691.99074 0.02271 5.50245 2.86016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90843 0.19716 -1.00000 - 15652 2017 8 21 21 4 20 59 4.8261 187.77151 747.62994 692.03936 0.02267 5.50392 2.85801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90808 0.19716 -1.00000 - 15653 2017 8 21 21 4 24 885 4.8261 187.77168 747.68789 692.08779 0.02260 5.50686 2.85472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90773 0.19716 -1.00000 - 15654 2017 8 21 21 4 29 711 4.8262 187.77184 747.74513 692.13637 0.02248 5.51111 2.85639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90738 0.19716 -1.00000 - 15655 2017 8 21 21 4 34 537 4.8262 187.77201 747.79979 692.18480 0.02234 5.51661 2.85248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90703 0.19716 -1.00000 - 15656 2017 8 21 21 4 39 363 4.8262 187.77219 747.85648 692.23319 0.02225 5.52359 2.84891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90667 0.19715 -1.00000 - 15657 2017 8 21 21 4 44 189 4.8262 187.77238 747.91342 692.28175 0.02223 5.53013 2.84955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90632 0.19715 -1.00000 - 15658 2017 8 21 21 4 49 16 4.8262 187.77258 747.97529 692.33039 0.02222 5.53402 2.84478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90597 0.19715 -1.00000 - 15659 2017 8 21 21 4 53 842 4.8263 187.77276 748.03235 692.37910 0.02218 5.51333 2.84222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90562 0.19715 -1.00000 - 15660 2017 8 21 21 4 58 668 4.8263 187.77293 748.08983 692.42806 0.02210 5.46300 2.84081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90527 0.19715 -1.00000 - 15661 2017 8 21 21 5 3 495 4.8263 187.77308 748.15285 692.47695 0.02196 5.46047 2.83542 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90492 0.19715 -1.00000 - 15662 2017 8 21 21 5 8 321 4.8263 187.77324 748.20592 692.52594 0.02179 5.48505 2.83246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90457 0.19715 -1.00000 - 15663 2017 8 21 21 5 13 147 4.8264 187.77340 748.26836 692.57496 0.02166 5.49765 2.83015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90422 0.19715 -1.00000 - 15664 2017 8 21 21 5 17 974 4.8264 187.77357 748.32782 692.62401 0.02160 5.50585 2.82834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90387 0.19715 -1.00000 - 15665 2017 8 21 21 5 22 800 4.8264 187.77376 748.38157 692.67307 0.02159 5.51247 2.82715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90352 0.19715 -1.00000 - 15666 2017 8 21 21 5 27 627 4.8264 187.77395 748.43728 692.72218 0.02155 5.51968 2.82355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90317 0.19715 -1.00000 - 15667 2017 8 21 21 5 32 453 4.8265 187.77411 748.49603 692.77135 0.02145 5.52955 2.82213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90281 0.19715 -1.00000 - 15668 2017 8 21 21 5 37 279 4.8265 187.77426 748.55678 692.82043 0.02130 5.54097 2.81899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90246 0.19715 -1.00000 - 15669 2017 8 21 21 5 42 106 4.8265 187.77441 748.61523 692.86965 0.02112 5.55270 2.81590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90211 0.19715 -1.00000 - 15670 2017 8 21 21 5 46 932 4.8265 187.77456 748.67345 692.91891 0.02096 5.56407 2.81522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90176 0.19715 -1.00000 - 15671 2017 8 21 21 5 51 759 4.8265 187.77473 748.73208 692.96817 0.02088 5.57426 2.81322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90141 0.19715 -1.00000 - 15672 2017 8 21 21 5 56 586 4.8266 187.77491 748.79073 693.01740 0.02084 5.58260 2.81044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90106 0.19715 -1.00000 - 15673 2017 8 21 21 6 1 412 4.8266 187.77509 748.84914 693.06663 0.02080 5.58887 2.81115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90071 0.19715 -1.00000 - 15674 2017 8 21 21 6 6 239 4.8266 187.77525 748.90709 693.11578 0.02073 5.59303 2.80789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90036 0.19715 -1.00000 - 15675 2017 8 21 21 6 11 65 4.8266 187.77539 748.97006 693.16487 0.02061 5.59568 2.80407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90001 0.19715 -1.00000 - 15676 2017 8 21 21 6 15 892 4.8267 187.77553 749.02769 693.21423 0.02045 5.59636 2.80372 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89966 0.19715 -1.00000 - 15677 2017 8 21 21 6 20 719 4.8267 187.77568 749.08470 693.26362 0.02031 5.59344 2.80018 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89930 0.19715 -1.00000 - 15678 2017 8 21 21 6 25 545 4.8267 187.77584 749.14414 693.31295 0.02023 5.58833 2.79745 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89895 0.19715 -1.00000 - 15679 2017 8 21 21 6 30 372 4.8267 187.77602 749.20308 693.36226 0.02021 5.58290 2.79860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89860 0.19715 -1.00000 - 15680 2017 8 21 21 6 35 199 4.8268 187.77619 749.26155 693.41155 0.02019 5.57705 2.79582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89825 0.19715 -1.00000 - 15681 2017 8 21 21 6 40 26 4.8268 187.77634 749.32566 693.46085 0.02015 5.57146 2.79299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89790 0.19715 -1.00000 - 15682 2017 8 21 21 6 44 853 4.8268 187.77647 749.38439 693.51020 0.02006 5.56649 2.79563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89755 0.19715 -1.00000 - 15683 2017 8 21 21 6 49 679 4.8268 187.77660 749.44023 693.55946 0.01991 5.56162 2.79235 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89720 0.19715 -1.00000 - 15684 2017 8 21 21 6 54 506 4.8268 187.77674 749.49934 693.60861 0.01978 5.55663 2.78957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89685 0.19714 -1.00000 - 15685 2017 8 21 21 6 59 333 4.8269 187.77689 749.55778 693.65790 0.01971 5.55152 2.79128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89650 0.19714 -1.00000 - 15686 2017 8 21 21 7 4 160 4.8269 187.77705 749.61678 693.70712 0.01970 5.54650 2.78869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89614 0.19714 -1.00000 - 15687 2017 8 21 21 7 8 987 4.8269 187.77722 749.67632 693.75637 0.01969 5.54186 2.78534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89579 0.19714 -1.00000 - 15688 2017 8 21 21 7 13 814 4.8269 187.77736 749.73570 693.80564 0.01964 5.53780 2.78834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89544 0.19714 -1.00000 - 15689 2017 8 21 21 7 18 641 4.8270 187.77749 749.79236 693.85483 0.01954 5.53449 2.78472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89509 0.19714 -1.00000 - 15690 2017 8 21 21 7 23 468 4.8270 187.77761 749.85146 693.90399 0.01938 5.53201 2.78198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89474 0.19714 -1.00000 - 15691 2017 8 21 21 7 28 295 4.8270 187.77773 749.91134 693.95319 0.01922 5.53020 2.78110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89439 0.19714 -1.00000 - 15692 2017 8 21 21 7 33 122 4.8270 187.77787 749.97573 694.00237 0.01913 5.52759 2.77733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89404 0.19714 -1.00000 - 15693 2017 8 21 21 7 37 949 4.8271 187.77801 750.03429 694.05168 0.01910 5.52064 2.77627 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89369 0.19714 -1.00000 - 15694 2017 8 21 21 7 42 776 4.8271 187.77817 750.09381 694.10103 0.01908 5.50870 2.77428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89334 0.19714 -1.00000 - 15695 2017 8 21 21 7 47 603 4.8271 187.77832 750.14927 694.15035 0.01902 5.43990 2.77087 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89299 0.19714 -1.00000 - 15696 2017 8 21 21 7 52 430 4.8271 187.77845 750.20882 694.19972 0.01890 5.45420 2.77176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89263 0.19714 -1.00000 - 15697 2017 8 21 21 7 57 257 4.8272 187.77856 750.26924 694.24914 0.01873 5.44308 2.77061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89228 0.19714 -1.00000 - 15698 2017 8 21 21 8 2 85 4.8272 187.77867 750.33468 694.29849 0.01856 5.43223 2.76565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89193 0.19714 -1.00000 - 15699 2017 8 21 21 8 6 912 4.8272 187.77879 750.39581 694.34796 0.01844 5.42016 2.76689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89158 0.19714 -1.00000 - 15700 2017 8 21 21 8 11 739 4.8272 187.77893 750.45583 694.39734 0.01839 5.40436 2.76353 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89123 0.19714 -1.00000 - 15701 2017 8 21 21 8 16 566 4.8273 187.77908 750.51030 694.44655 0.01836 5.38502 2.75992 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89088 0.19714 -1.00000 - 15702 2017 8 21 21 8 21 394 4.8273 187.77922 750.56712 694.49586 0.01831 5.36349 2.76181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89053 0.19714 -1.00000 - 15703 2017 8 21 21 8 26 221 4.8273 187.77934 750.62662 694.54525 0.01821 5.31922 2.75939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89018 0.19714 -1.00000 - 15704 2017 8 21 21 8 31 48 4.8273 187.77944 750.68785 694.59451 0.01807 5.30437 2.75742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88983 0.19714 -1.00000 - 15705 2017 8 21 21 8 35 876 4.8274 187.77955 750.74828 694.64391 0.01791 5.28780 2.75919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88948 0.19714 -1.00000 - 15706 2017 8 21 21 8 40 703 4.8274 187.77967 750.81280 694.69315 0.01780 5.27140 2.75609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88912 0.19714 -1.00000 - 15707 2017 8 21 21 8 45 530 4.8274 187.77981 750.87695 694.74234 0.01774 5.25424 2.75695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88877 0.19714 -1.00000 - 15708 2017 8 21 21 8 50 358 4.8274 187.77995 750.93553 694.79151 0.01772 5.23825 2.76065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88842 0.19714 -1.00000 - 15709 2017 8 21 21 8 55 185 4.8275 187.78008 750.98992 694.84037 0.01770 5.22730 2.75843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88807 0.19714 -1.00000 - 15710 2017 8 21 21 9 0 13 4.8275 187.78019 751.04715 694.88931 0.01763 5.22331 2.75942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88772 0.19714 -1.00000 - 15711 2017 8 21 21 9 4 840 4.8275 187.78029 751.10769 694.93823 0.01750 5.23106 2.76184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88737 0.19714 -1.00000 - 15712 2017 8 21 21 9 9 668 4.8275 187.78039 751.16695 694.98694 0.01734 5.23792 2.76085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88702 0.19713 -1.00000 - 15713 2017 8 21 21 9 14 495 4.8276 187.78050 751.22612 695.03553 0.01723 5.24449 2.76360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88667 0.19713 -1.00000 - 15714 2017 8 21 21 9 19 323 4.8276 187.78063 751.28499 695.08407 0.01717 5.25170 2.76717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88632 0.19713 -1.00000 - 15715 2017 8 21 21 9 24 150 4.8276 187.78076 751.34223 695.13236 0.01715 5.25722 2.76612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88596 0.19713 -1.00000 - 15716 2017 8 21 21 9 28 978 4.8276 187.78088 751.40365 695.18066 0.01714 5.25907 2.76823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88561 0.19713 -1.00000 - 15717 2017 8 21 21 9 33 806 4.8277 187.78099 751.46104 695.22881 0.01707 5.27013 2.77298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88526 0.19713 -1.00000 - 15718 2017 8 21 21 9 38 633 4.8277 187.78108 751.51747 695.27676 0.01694 5.22121 2.77090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88491 0.19713 -1.00000 - 15719 2017 8 21 21 9 43 461 4.8277 187.78116 751.58058 695.32468 0.01678 5.23780 2.77113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88456 0.19713 -1.00000 - 15720 2017 8 21 21 9 48 289 4.8277 187.78126 751.63669 695.37259 0.01664 5.25465 2.77614 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88421 0.19713 -1.00000 - 15721 2017 8 21 21 9 53 117 4.8278 187.78137 751.68843 695.42021 0.01656 5.27359 2.77575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88386 0.19713 -1.00000 - 15722 2017 8 21 21 9 57 944 4.8278 187.78149 751.75205 695.46797 0.01655 5.29827 2.77634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88351 0.19713 -1.00000 - 15723 2017 8 21 21 10 2 772 4.8278 187.78161 751.80765 695.51572 0.01655 5.32174 2.78128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88316 0.19713 -1.00000 - 15724 2017 8 21 21 10 7 600 4.8278 187.78171 751.85997 695.56316 0.01650 5.34421 2.78075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88280 0.19713 -1.00000 - 15725 2017 8 21 21 10 12 428 4.8279 187.78179 751.91625 695.61065 0.01638 5.36763 2.78332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88245 0.19713 -1.00000 - 15726 2017 8 21 21 10 17 256 4.8279 187.78187 751.97225 695.65822 0.01623 5.39409 2.78842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88210 0.19713 -1.00000 - 15727 2017 8 21 21 10 22 84 4.8279 187.78195 752.02429 695.70550 0.01608 5.42092 2.78763 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88175 0.19713 -1.00000 - 15728 2017 8 21 21 10 26 912 4.8279 187.78205 752.07950 695.75281 0.01599 5.44801 2.78953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88140 0.19713 -1.00000 - 15729 2017 8 21 21 10 31 740 4.8280 187.78216 752.13471 695.80021 0.01596 5.47520 2.79368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88105 0.19713 -1.00000 - 15730 2017 8 21 21 10 36 568 4.8280 187.78227 752.19329 695.84736 0.01595 5.50204 2.79282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88070 0.19713 -1.00000 - 15731 2017 8 21 21 10 41 396 4.8280 187.78236 752.25331 695.89456 0.01591 5.52636 2.79511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88035 0.19713 -1.00000 - 15732 2017 8 21 21 10 46 224 4.8280 187.78243 752.30792 695.94193 0.01581 5.52581 2.79950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88000 0.19713 -1.00000 - 15733 2017 8 21 21 10 51 52 4.8281 187.78249 752.35845 695.98914 0.01566 5.54156 2.79877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87964 0.19713 -1.00000 - 15734 2017 8 21 21 10 55 880 4.8281 187.78257 752.41204 696.03626 0.01551 5.55355 2.80202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87929 0.19713 -1.00000 - 15735 2017 8 21 21 11 0 708 4.8281 187.78266 752.46802 696.08347 0.01542 5.56561 2.80637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87894 0.19713 -1.00000 - 15736 2017 8 21 21 11 5 536 4.8281 187.78277 752.52744 696.13041 0.01539 5.57550 2.80690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87859 0.19713 -1.00000 - 15737 2017 8 21 21 11 10 364 4.8282 187.78287 752.58723 696.17737 0.01537 5.58989 2.80947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87824 0.19713 -1.00000 - 15738 2017 8 21 21 11 15 192 4.8282 187.78295 752.64171 696.22431 0.01533 5.60538 2.81220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87789 0.19713 -1.00000 - 15739 2017 8 21 21 11 20 21 4.8282 187.78301 752.69136 696.27121 0.01523 5.59268 2.81238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87754 0.19713 -1.00000 - 15740 2017 8 21 21 11 24 849 4.8282 187.78307 752.74333 696.31813 0.01507 5.59996 2.81458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87719 0.19712 -1.00000 - 15741 2017 8 21 21 11 29 677 4.8283 187.78313 752.79917 696.36506 0.01490 5.60524 2.81600 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87684 0.19712 -1.00000 - 15742 2017 8 21 21 11 34 505 4.8283 187.78321 752.85909 696.41185 0.01480 5.60948 2.81660 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87648 0.19712 -1.00000 - 15743 2017 8 21 21 11 39 334 4.8283 187.78331 752.91846 696.45868 0.01476 5.61066 2.81843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87613 0.19712 -1.00000 - 15744 2017 8 21 21 11 44 162 4.8283 187.78341 752.97090 696.50542 0.01474 5.61966 2.81954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87578 0.19712 -1.00000 - 15745 2017 8 21 21 11 48 990 4.8284 187.78348 753.02053 696.55215 0.01469 5.61533 2.81939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87543 0.19712 -1.00000 - 15746 2017 8 21 21 11 53 819 4.8284 187.78354 753.07545 696.59914 0.01458 5.62034 2.82070 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87508 0.19712 -1.00000 - 15747 2017 8 21 21 11 58 647 4.8284 187.78359 753.13156 696.64600 0.01442 5.62351 2.82201 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87473 0.19712 -1.00000 - 15748 2017 8 21 21 12 3 476 4.8284 187.78365 753.19228 696.69283 0.01425 5.62595 2.82040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87438 0.19712 -1.00000 - 15749 2017 8 21 21 12 8 304 4.8285 187.78372 753.24869 696.73983 0.01413 5.62706 2.82165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87403 0.19712 -1.00000 - 15750 2017 8 21 21 12 13 133 4.8285 187.78381 753.29832 696.78676 0.01407 5.62980 2.81954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87368 0.19712 -1.00000 - 15751 2017 8 21 21 12 17 961 4.8285 187.78390 753.35212 696.83372 0.01404 5.63538 2.81669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87332 0.19712 -1.00000 - 15752 2017 8 21 21 12 22 790 4.8285 187.78398 753.40417 696.88090 0.01399 5.64398 2.81611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87297 0.19712 -1.00000 - 15753 2017 8 21 21 12 27 618 4.8286 187.78403 753.46487 696.92802 0.01390 5.65523 2.81248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87262 0.19712 -1.00000 - 15754 2017 8 21 21 12 32 447 4.8286 187.78407 753.51961 696.97531 0.01375 5.66802 2.81140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87227 0.19712 -1.00000 - 15755 2017 8 21 21 12 37 275 4.8286 187.78412 753.57340 697.02278 0.01358 5.67929 2.80898 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87192 0.19712 -1.00000 - 15756 2017 8 21 21 12 42 104 4.8287 187.78418 753.63262 697.07020 0.01346 5.68740 2.80419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87157 0.19712 -1.00000 - 15757 2017 8 21 21 12 46 933 4.8287 187.78427 753.68833 697.11775 0.01342 5.69449 2.80560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87122 0.19712 -1.00000 - 15758 2017 8 21 21 12 51 761 4.8287 187.78436 753.74275 697.16530 0.01339 5.70204 2.80489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87087 0.19712 -1.00000 - 15759 2017 8 21 21 12 56 590 4.8287 187.78443 753.80309 697.21282 0.01335 5.70969 2.80097 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87052 0.19712 -1.00000 - 15760 2017 8 21 21 13 1 419 4.8288 187.78447 753.85894 697.26035 0.01328 5.71691 2.80267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87016 0.19712 -1.00000 - 15761 2017 8 21 21 13 6 248 4.8288 187.78450 753.91371 697.30782 0.01314 5.72254 2.80044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86981 0.19712 -1.00000 - 15762 2017 8 21 21 13 11 77 4.8288 187.78454 753.97015 697.35526 0.01298 5.72581 2.79762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86946 0.19712 -1.00000 - 15763 2017 8 21 21 13 15 905 4.8288 187.78460 754.02633 697.40275 0.01287 5.72639 2.79938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86911 0.19712 -1.00000 - 15764 2017 8 21 21 13 20 734 4.8289 187.78468 754.08301 697.45014 0.01282 5.72425 2.79759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86876 0.19712 -1.00000 - 15765 2017 8 21 21 13 25 563 4.8289 187.78477 754.13977 697.49748 0.01281 5.71958 2.79633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86841 0.19712 -1.00000 - 15766 2017 8 21 21 13 30 392 4.8289 187.78483 754.19670 697.54483 0.01278 5.71264 2.79653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86806 0.19712 -1.00000 - 15767 2017 8 21 21 13 35 221 4.8289 187.78486 754.25360 697.59214 0.01271 5.70376 2.79360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86771 0.19712 -1.00000 - 15768 2017 8 21 21 13 40 50 4.8290 187.78488 754.31039 697.63940 0.01258 5.69330 2.79271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86736 0.19711 -1.00000 - 15769 2017 8 21 21 13 44 879 4.8290 187.78491 754.36656 697.68666 0.01242 5.68163 2.79257 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86700 0.19711 -1.00000 - 15770 2017 8 21 21 13 49 708 4.8290 187.78495 754.42356 697.73379 0.01230 5.66912 2.78820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86665 0.19711 -1.00000 - 15771 2017 8 21 21 13 54 537 4.8291 187.78502 754.48235 697.78101 0.01225 5.65647 2.78736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86630 0.19711 -1.00000 - 15772 2017 8 21 21 13 59 366 4.8291 187.78510 754.53768 697.82822 0.01223 5.64373 2.78484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86595 0.19711 -1.00000 - 15773 2017 8 21 21 14 4 195 4.8291 187.78515 754.59443 697.87533 0.01221 5.63075 2.78154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86560 0.19711 -1.00000 - 15774 2017 8 21 21 14 9 24 4.8291 187.78517 754.65026 697.92241 0.01216 5.61749 2.78236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86525 0.19711 -1.00000 - 15775 2017 8 21 21 14 13 854 4.8292 187.78519 754.70721 697.96938 0.01205 5.60403 2.77973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86490 0.19711 -1.00000 - 15776 2017 8 21 21 14 18 683 4.8292 187.78520 754.76395 698.01627 0.01189 5.59057 2.77738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86455 0.19711 -1.00000 - 15777 2017 8 21 21 14 23 512 4.8292 187.78523 754.82046 698.06317 0.01177 5.57726 2.77696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86419 0.19711 -1.00000 - 15778 2017 8 21 21 14 28 341 4.8292 187.78530 754.87682 698.10992 0.01170 5.56420 2.77369 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86384 0.19711 -1.00000 - 15779 2017 8 21 21 14 33 170 4.8293 187.78536 754.93215 698.15665 0.01168 5.55153 2.77004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86349 0.19711 -1.00000 - 15780 2017 8 21 21 14 38 0 4.8293 187.78540 754.98831 698.20353 0.01166 5.53934 2.76925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86314 0.19711 -1.00000 - 15781 2017 8 21 21 14 42 829 4.8293 187.78541 755.04413 698.25029 0.01161 5.52777 2.76402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86279 0.19711 -1.00000 - 15782 2017 8 21 21 14 47 658 4.8293 187.78541 755.10053 698.29701 0.01150 5.51697 2.76036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86244 0.19711 -1.00000 - 15783 2017 8 21 21 14 52 488 4.8294 187.78542 755.15715 698.34379 0.01135 5.50487 2.75711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86209 0.19711 -1.00000 - 15784 2017 8 21 21 14 57 317 4.8294 187.78544 755.21740 698.39051 0.01121 5.48977 2.75126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86174 0.19711 -1.00000 - 15785 2017 8 21 21 15 2 147 4.8294 187.78550 755.27300 698.43723 0.01114 5.47355 2.74582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86138 0.19711 -1.00000 - 15786 2017 8 21 21 15 6 976 4.8295 187.78555 755.32409 698.48414 0.01110 5.45947 2.74221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86103 0.19711 -1.00000 - 15787 2017 8 21 21 15 11 806 4.8295 187.78559 755.37801 698.53103 0.01108 5.44698 2.73559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86068 0.19711 -1.00000 - 15788 2017 8 21 21 15 16 635 4.8295 187.78559 755.43477 698.57805 0.01102 5.43543 2.73067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86033 0.19711 -1.00000 - 15789 2017 8 21 21 15 21 465 4.8295 187.78558 755.49240 698.62517 0.01090 5.42392 2.72532 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85998 0.19711 -1.00000 - 15790 2017 8 21 21 15 26 294 4.8296 187.78558 755.55340 698.67232 0.01073 5.41004 2.71792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85963 0.19711 -1.00000 - 15791 2017 8 21 21 15 31 124 4.8296 187.78560 755.60915 698.71967 0.01057 5.39085 2.71632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85928 0.19711 -1.00000 - 15792 2017 8 21 21 15 35 953 4.8296 187.78564 755.66085 698.76714 0.01049 5.30878 2.70902 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85893 0.19711 -1.00000 - 15793 2017 8 21 21 15 40 783 4.8297 187.78569 755.71701 698.81466 0.01045 5.28761 2.70068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85858 0.19711 -1.00000 - 15794 2017 8 21 21 15 45 613 4.8297 187.78572 755.77426 698.86229 0.01043 5.27000 2.69723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85822 0.19711 -1.00000 - 15795 2017 8 21 21 15 50 442 4.8297 187.78572 755.83360 698.90996 0.01037 5.25020 2.69076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85787 0.19711 -1.00000 - 15796 2017 8 21 21 15 55 272 4.8297 187.78570 755.89620 698.95774 0.01024 5.22715 2.68370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85752 0.19710 -1.00000 - 15797 2017 8 21 21 16 0 102 4.8298 187.78569 755.95328 699.00562 0.01006 5.20670 2.68264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85717 0.19710 -1.00000 - 15798 2017 8 21 21 16 4 932 4.8298 187.78570 756.00558 699.05345 0.00990 5.18462 2.67664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85682 0.19710 -1.00000 - 15799 2017 8 21 21 16 9 762 4.8298 187.78574 756.06287 699.10142 0.00981 5.17001 2.66947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85647 0.19710 -1.00000 - 15800 2017 8 21 21 16 14 591 4.8298 187.78579 756.12190 699.14952 0.00978 5.15761 2.66788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85612 0.19710 -1.00000 - 15801 2017 8 21 21 16 19 421 4.8299 187.78582 756.18138 699.19755 0.00976 5.14249 2.66168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85577 0.19710 -1.00000 - 15802 2017 8 21 21 16 24 251 4.8299 187.78581 756.24443 699.24572 0.00969 5.12598 2.65778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85541 0.19710 -1.00000 - 15803 2017 8 21 21 16 29 81 4.8299 187.78579 756.30198 699.29393 0.00957 5.10978 2.65715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85506 0.19710 -1.00000 - 15804 2017 8 21 21 16 33 911 4.8300 187.78577 756.35511 699.34199 0.00940 5.09727 2.65260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85471 0.19710 -1.00000 - 15805 2017 8 21 21 16 38 741 4.8300 187.78577 756.41278 699.39002 0.00925 5.08885 2.64985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85436 0.19710 -1.00000 - 15806 2017 8 21 21 16 43 571 4.8300 187.78581 756.47001 699.43812 0.00916 5.08630 2.64901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85401 0.19710 -1.00000 - 15807 2017 8 21 21 16 48 401 4.8300 187.78585 756.53056 699.48621 0.00913 5.08366 2.64370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85366 0.19710 -1.00000 - 15808 2017 8 21 21 16 53 231 4.8301 187.78588 756.59373 699.53421 0.00911 5.07619 2.64172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85331 0.19710 -1.00000 - 15809 2017 8 21 21 16 58 61 4.8301 187.78587 756.65355 699.58236 0.00906 5.06748 2.64217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85296 0.19710 -1.00000 - 15810 2017 8 21 21 17 2 891 4.8301 187.78584 756.70641 699.63030 0.00894 5.06188 2.63899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85260 0.19710 -1.00000 - 15811 2017 8 21 21 17 7 721 4.8301 187.78581 756.76301 699.67813 0.00878 5.06099 2.63751 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85225 0.19710 -1.00000 - 15812 2017 8 21 21 17 12 552 4.8302 187.78580 756.82053 699.72617 0.00865 5.06612 2.63731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85190 0.19710 -1.00000 - 15813 2017 8 21 21 17 17 382 4.8302 187.78582 756.87889 699.77406 0.00857 5.07230 2.63511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85155 0.19710 -1.00000 - 15814 2017 8 21 21 17 22 212 4.8302 187.78586 756.94082 699.82186 0.00854 5.07525 2.63237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85120 0.19710 -1.00000 - 15815 2017 8 21 21 17 27 42 4.8303 187.78588 757.00338 699.86980 0.00853 5.07553 2.63107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85085 0.19710 -1.00000 - 15816 2017 8 21 21 17 31 873 4.8303 187.78586 757.05514 699.91758 0.00850 5.07478 2.62824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85050 0.19710 -1.00000 - 15817 2017 8 21 21 17 36 703 4.8303 187.78582 757.11122 699.96533 0.00840 5.07747 2.62533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85015 0.19710 -1.00000 - 15818 2017 8 21 21 17 41 533 4.8303 187.78578 757.16511 700.01329 0.00827 5.08468 2.62193 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84979 0.19710 -1.00000 - 15819 2017 8 21 21 17 46 364 4.8304 187.78576 757.22703 700.06116 0.00814 5.09045 2.61834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84944 0.19710 -1.00000 - 15820 2017 8 21 21 17 51 194 4.8304 187.78577 757.28652 700.10920 0.00805 5.02195 2.61534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84909 0.19710 -1.00000 - 15821 2017 8 21 21 17 56 25 4.8304 187.78580 757.35023 700.15734 0.00802 5.03354 2.61172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84874 0.19710 -1.00000 - 15822 2017 8 21 21 18 0 855 4.8305 187.78581 757.40367 700.20539 0.00803 5.05017 2.60756 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84839 0.19710 -1.00000 - 15823 2017 8 21 21 18 5 685 4.8305 187.78578 757.45819 700.25347 0.00800 5.06425 2.60675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84804 0.19710 -1.00000 - 15824 2017 8 21 21 18 10 516 4.8305 187.78573 757.51935 700.30160 0.00790 5.07697 2.60559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84769 0.19709 -1.00000 - 15825 2017 8 21 21 18 15 347 4.8305 187.78568 757.57708 700.34967 0.00776 5.08883 2.60296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84733 0.19709 -1.00000 - 15826 2017 8 21 21 18 20 177 4.8306 187.78565 757.63307 700.39771 0.00761 5.09926 2.60441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84698 0.19709 -1.00000 - 15827 2017 8 21 21 18 25 8 4.8306 187.78565 757.69119 700.44569 0.00751 5.10793 2.60204 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84663 0.19709 -1.00000 - 15828 2017 8 21 21 18 29 838 4.8306 187.78567 757.74887 700.49357 0.00747 5.11478 2.60223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84628 0.19709 -1.00000 - 15829 2017 8 21 21 18 34 669 4.8307 187.78567 757.80602 700.54136 0.00745 5.11994 2.60252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84593 0.19709 -1.00000 - 15830 2017 8 21 21 18 39 500 4.8307 187.78563 757.86338 700.58909 0.00741 5.12364 2.60176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84558 0.19709 -1.00000 - 15831 2017 8 21 21 18 44 330 4.8307 187.78558 757.92102 700.63684 0.00729 5.12614 2.60433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84523 0.19709 -1.00000 - 15832 2017 8 21 21 18 49 161 4.8307 187.78552 757.97864 700.68453 0.00712 5.12773 2.60424 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84488 0.19709 -1.00000 - 15833 2017 8 21 21 18 53 992 4.8308 187.78548 758.03591 700.73221 0.00696 5.12869 2.60262 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84452 0.19709 -1.00000 - 15834 2017 8 21 21 18 58 823 4.8308 187.78548 758.08914 700.77991 0.00684 5.12937 2.60378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84417 0.19709 -1.00000 - 15835 2017 8 21 21 19 3 654 4.8308 187.78549 758.15021 700.82757 0.00679 5.13061 2.60484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84382 0.19709 -1.00000 - 15836 2017 8 21 21 19 8 484 4.8309 187.78548 758.20914 700.87512 0.00676 5.13252 2.60439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84347 0.19709 -1.00000 - 15837 2017 8 21 21 19 13 315 4.8309 187.78544 758.27160 700.92256 0.00671 5.13140 2.60671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84312 0.19709 -1.00000 - 15838 2017 8 21 21 19 18 146 4.8309 187.78538 758.32848 700.96988 0.00659 5.12404 2.60673 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84277 0.19709 -1.00000 - 15839 2017 8 21 21 19 22 977 4.8309 187.78531 758.38458 701.01723 0.00642 5.05751 2.60680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84242 0.19709 -1.00000 - 15840 2017 8 21 21 19 27 808 4.8310 187.78528 758.43725 701.06450 0.00627 5.07851 2.61039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84207 0.19709 -1.00000 - 15841 2017 8 21 21 19 32 639 4.8310 187.78527 758.49807 701.11172 0.00616 5.07435 2.61145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84171 0.19709 -1.00000 - 15842 2017 8 21 21 19 37 470 4.8310 187.78527 758.55520 701.15874 0.00612 5.07237 2.61491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84136 0.19709 -1.00000 - 15843 2017 8 21 21 19 42 301 4.8311 187.78526 758.61053 701.20570 0.00611 5.07242 2.61739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84101 0.19709 -1.00000 - 15844 2017 8 21 21 19 47 132 4.8311 187.78521 758.66702 701.25253 0.00607 5.07444 2.61836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84066 0.19709 -1.00000 - 15845 2017 8 21 21 19 51 964 4.8311 187.78514 758.72296 701.29926 0.00598 5.07847 2.62326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84031 0.19709 -1.00000 - 15846 2017 8 21 21 19 56 795 4.8312 187.78507 758.77865 701.34585 0.00584 5.08454 2.62537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83996 0.19709 -1.00000 - 15847 2017 8 21 21 20 1 626 4.8312 187.78502 758.83441 701.39231 0.00571 5.09323 2.62771 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83961 0.19709 -1.00000 - 15848 2017 8 21 21 20 6 457 4.8312 187.78501 758.88979 701.43871 0.00563 5.10543 2.63300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83925 0.19709 -1.00000 - 15849 2017 8 21 21 20 11 288 4.8312 187.78501 758.94471 701.48497 0.00560 5.11849 2.63391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83890 0.19709 -1.00000 - 15850 2017 8 21 21 20 16 120 4.8313 187.78499 758.99911 701.53105 0.00560 5.13239 2.63712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83855 0.19709 -1.00000 - 15851 2017 8 21 21 20 20 951 4.8313 187.78493 759.05271 701.57712 0.00557 5.14718 2.64141 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83820 0.19709 -1.00000 - 15852 2017 8 21 21 20 25 782 4.8313 187.78485 759.10663 701.62308 0.00548 5.16152 2.64306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83785 0.19708 -1.00000 - 15853 2017 8 21 21 20 30 614 4.8314 187.78476 759.16128 701.66893 0.00534 5.18004 2.64830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83750 0.19708 -1.00000 - 15854 2017 8 21 21 20 35 445 4.8314 187.78470 759.21521 701.71468 0.00521 5.19992 2.65159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83715 0.19708 -1.00000 - 15855 2017 8 21 21 20 40 276 4.8314 187.78468 759.26862 701.76033 0.00512 5.22003 2.65393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83680 0.19708 -1.00000 - 15856 2017 8 21 21 20 45 108 4.8315 187.78467 759.32086 701.80593 0.00509 5.23990 2.65909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83644 0.19708 -1.00000 - 15857 2017 8 21 21 20 49 939 4.8315 187.78464 759.37352 701.85144 0.00508 5.25925 2.66182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83609 0.19708 -1.00000 - 15858 2017 8 21 21 20 54 771 4.8315 187.78458 759.42743 701.89692 0.00503 5.27818 2.66480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83574 0.19708 -1.00000 - 15859 2017 8 21 21 20 59 602 4.8315 187.78448 759.48078 701.94233 0.00492 5.29649 2.67015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83539 0.19708 -1.00000 - 15860 2017 8 21 21 21 4 434 4.8316 187.78439 759.53362 701.98763 0.00476 5.31389 2.67243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83504 0.19708 -1.00000 - 15861 2017 8 21 21 21 9 266 4.8316 187.78432 759.58604 702.03285 0.00461 5.33021 2.67521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83469 0.19708 -1.00000 - 15862 2017 8 21 21 21 14 97 4.8316 187.78429 759.63864 702.07807 0.00451 5.34552 2.68033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83434 0.19708 -1.00000 - 15863 2017 8 21 21 21 18 929 4.8317 187.78427 759.69032 702.12317 0.00446 5.35993 2.68225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83398 0.19708 -1.00000 - 15864 2017 8 21 21 21 23 760 4.8317 187.78424 759.74609 702.16818 0.00443 5.37417 2.68576 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83363 0.19708 -1.00000 - 15865 2017 8 21 21 21 28 592 4.8317 187.78417 759.79542 702.21334 0.00437 5.38677 2.68802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83328 0.19708 -1.00000 - 15866 2017 8 21 21 21 33 424 4.8317 187.78407 759.85383 702.25838 0.00424 5.39618 2.68891 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83293 0.19708 -1.00000 - 15867 2017 8 21 21 21 38 256 4.8318 187.78397 759.90591 702.30348 0.00408 5.40398 2.69137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83258 0.19708 -1.00000 - 15868 2017 8 21 21 21 43 88 4.8318 187.78390 759.95610 702.34861 0.00392 5.41270 2.69326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83223 0.19708 -1.00000 - 15869 2017 8 21 21 21 47 919 4.8318 187.78386 760.01022 702.39377 0.00381 5.42252 2.69478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83188 0.19708 -1.00000 - 15870 2017 8 21 21 21 52 751 4.8319 187.78384 760.06285 702.43895 0.00376 5.43343 2.69781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83152 0.19708 -1.00000 - 15871 2017 8 21 21 21 57 583 4.8319 187.78381 760.11585 702.48399 0.00373 5.44519 2.69886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83117 0.19708 -1.00000 - 15872 2017 8 21 21 22 2 415 4.8319 187.78373 760.16814 702.52911 0.00367 5.45749 2.69971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83082 0.19708 -1.00000 - 15873 2017 8 21 21 22 7 247 4.8320 187.78363 760.22055 702.57432 0.00355 5.47022 2.70200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83047 0.19708 -1.00000 - 15874 2017 8 21 21 22 12 79 4.8320 187.78353 760.27146 702.61959 0.00340 5.48334 2.70277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83012 0.19708 -1.00000 - 15875 2017 8 21 21 22 16 911 4.8320 187.78345 760.32411 702.66478 0.00326 5.49691 2.70158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82977 0.19708 -1.00000 - 15876 2017 8 21 21 22 21 743 4.8320 187.78341 760.37647 702.71008 0.00317 5.51093 2.70393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82942 0.19708 -1.00000 - 15877 2017 8 21 21 22 26 575 4.8321 187.78338 760.43273 702.75540 0.00313 5.52502 2.70361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82907 0.19708 -1.00000 - 15878 2017 8 21 21 22 31 407 4.8321 187.78334 760.49123 702.80080 0.00312 5.53704 2.70042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82871 0.19708 -1.00000 - 15879 2017 8 21 21 22 36 239 4.8321 187.78326 760.54388 702.84635 0.00307 5.51673 2.70328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82836 0.19708 -1.00000 - 15880 2017 8 21 21 22 41 71 4.8322 187.78315 760.59202 702.89186 0.00298 5.52291 2.70214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82801 0.19707 -1.00000 - 15881 2017 8 21 21 22 45 904 4.8322 187.78304 760.64626 702.93734 0.00284 5.52486 2.70051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82766 0.19707 -1.00000 - 15882 2017 8 21 21 22 50 736 4.8322 187.78295 760.70064 702.98289 0.00272 5.52647 2.70276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82731 0.19707 -1.00000 - 15883 2017 8 21 21 22 55 568 4.8323 187.78290 760.75726 703.02835 0.00265 5.52505 2.70129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82696 0.19707 -1.00000 - 15884 2017 8 21 21 23 0 400 4.8323 187.78286 760.81629 703.07379 0.00263 5.52956 2.69932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82661 0.19707 -1.00000 - 15885 2017 8 21 21 23 5 233 4.8323 187.78281 760.86884 703.11931 0.00263 5.53427 2.70060 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82625 0.19707 -1.00000 - 15886 2017 8 21 21 23 10 65 4.8323 187.78272 760.91803 703.16485 0.00260 5.50220 2.69738 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82590 0.19707 -1.00000 - 15887 2017 8 21 21 23 14 897 4.8324 187.78259 760.97248 703.21041 0.00251 5.49398 2.69416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82555 0.19707 -1.00000 - 15888 2017 8 21 21 23 19 730 4.8324 187.78247 761.02755 703.25593 0.00239 5.48235 2.69662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82520 0.19707 -1.00000 - 15889 2017 8 21 21 23 24 562 4.8324 187.78237 761.08485 703.30139 0.00227 5.47285 2.69329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82485 0.19707 -1.00000 - 15890 2017 8 21 21 23 29 395 4.8325 187.78231 761.14459 703.34676 0.00220 5.47081 2.69080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82450 0.19707 -1.00000 - 15891 2017 8 21 21 23 34 227 4.8325 187.78226 761.19864 703.39216 0.00217 5.46289 2.69215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82415 0.19707 -1.00000 - 15892 2017 8 21 21 23 39 60 4.8325 187.78200 761.24831 703.43751 0.00216 5.41438 2.68772 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82379 0.19707 -1.00000 - 15893 2017 8 21 21 23 43 892 4.8326 187.77949 761.30311 703.48280 0.00212 5.39840 2.68350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82344 0.19707 -1.00000 - 15894 2017 8 21 21 23 48 725 4.8326 187.77700 761.35826 703.52821 0.00201 5.38042 2.68290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82309 0.19707 -1.00000 - 15895 2017 8 21 21 23 53 558 4.8326 187.77452 761.41570 703.57358 0.00187 5.36160 2.67865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82274 0.19707 -1.00000 - 15896 2017 8 21 21 23 58 390 4.8327 187.77207 761.47573 703.61881 0.00172 5.33996 2.67239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82239 0.19707 -1.00000 - 15897 2017 8 21 21 24 3 223 4.8327 187.76962 761.52841 703.66424 0.00163 5.32340 2.67057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82204 0.19707 -1.00000 - 15898 2017 8 21 21 24 8 56 4.8327 187.76715 761.57886 703.70964 0.00158 5.30016 2.66261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82169 0.19707 -1.00000 - 15899 2017 8 21 21 24 12 888 4.8327 187.76465 761.63422 703.75512 0.00155 5.28386 2.65556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82133 0.19707 -1.00000 - 15900 2017 8 21 21 24 17 721 4.8328 187.76213 761.68817 703.80076 0.00148 5.26677 2.65230 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82098 0.19707 -1.00000 - 15901 2017 8 21 21 24 22 554 4.8328 187.75961 761.74226 703.84632 0.00135 5.24791 2.64382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82063 0.19707 -1.00000 - 15902 2017 8 21 21 24 27 387 4.8328 187.75713 761.80237 703.89193 0.00118 5.22351 2.63795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82028 0.19707 -1.00000 - 15903 2017 8 21 21 24 32 220 4.8329 187.75467 761.85703 703.93772 0.00102 5.19002 2.63327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81993 0.19707 -1.00000 - 15904 2017 8 21 21 24 37 53 4.8329 187.75221 761.91323 703.98339 0.00091 5.17626 2.62334 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81958 0.19707 -1.00000 - 15905 2017 8 21 21 24 41 886 4.8329 187.74973 761.96724 704.02912 0.00086 5.16116 2.62022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81923 0.19707 -1.00000 - 15906 2017 8 21 21 24 46 719 4.8330 187.74721 762.01670 704.07493 0.00082 5.14689 2.61590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81887 0.19707 -1.00000 - 15907 2017 8 21 21 24 51 551 4.8330 187.74468 762.07502 704.12060 0.00075 5.13365 2.60618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81852 0.19707 -1.00000 - 15908 2017 8 21 21 24 56 385 4.8330 187.74216 762.13447 704.16652 0.00062 5.12013 2.60346 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81817 0.19706 -1.00000 - 15909 2017 8 21 21 25 1 218 4.8331 187.73966 762.18910 704.21246 0.00045 5.10328 2.59705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81782 0.19706 -1.00000 - 15910 2017 8 21 21 25 6 51 4.8331 187.73719 762.23842 704.25844 0.00030 5.03815 2.58786 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81747 0.19706 -1.00000 - 15911 2017 8 21 21 25 10 884 4.8331 187.73472 762.29126 704.30468 0.00021 5.02381 2.58362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81712 0.19706 -1.00000 - 15912 2017 8 21 21 25 15 717 4.8331 187.73222 762.34740 704.35090 0.00017 5.00816 2.57769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81676 0.19706 -1.00000 - 15913 2017 8 21 21 25 20 550 4.8332 187.72969 762.40627 704.39719 0.00015 4.99231 2.57110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81641 0.19706 -1.00000 - 15914 2017 8 21 21 25 25 383 4.8332 187.72715 762.46657 704.44372 0.00010 4.97448 2.56822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81606 0.19706 -1.00000 - 15915 2017 8 21 21 25 30 217 4.8332 187.72461 762.52188 704.49014 -0.00001 4.95706 2.56308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81571 0.19706 -1.00000 - 15916 2017 8 21 21 25 35 50 4.8333 187.72211 762.57217 704.53665 -0.00014 4.94468 2.55798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81536 0.19706 -1.00000 - 15917 2017 8 21 21 25 39 883 4.8333 187.71962 762.62777 704.58327 -0.00026 4.93416 2.55515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81501 0.19706 -1.00000 - 15918 2017 8 21 21 25 44 716 4.8333 187.71713 762.68462 704.62979 -0.00033 4.92361 2.54937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81466 0.19706 -1.00000 - 15919 2017 8 21 21 25 49 550 4.8334 187.71462 762.74380 704.67637 -0.00035 4.91359 2.54437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81430 0.19706 -1.00000 - 15920 2017 8 21 21 25 54 383 4.8334 187.71207 762.80450 704.72311 -0.00035 4.90186 2.54024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81395 0.19706 -1.00000 - 15921 2017 8 21 21 25 59 217 4.8334 187.70951 762.86000 704.76974 -0.00039 4.88994 2.53444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81360 0.19706 -1.00000 - 15922 2017 8 21 21 26 4 50 4.8335 187.70695 762.91187 704.81655 -0.00048 4.88432 2.53127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81325 0.19706 -1.00000 - 15923 2017 8 21 21 26 8 884 4.8335 187.70443 762.96603 704.86342 -0.00061 4.88139 2.52520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81290 0.19706 -1.00000 - 15924 2017 8 21 21 26 13 717 4.8335 187.70193 763.02578 704.91041 -0.00073 4.87707 2.52003 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81255 0.19706 -1.00000 - 15925 2017 8 21 21 26 18 551 4.8336 187.69942 763.08267 704.95744 -0.00080 4.87010 2.51790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81220 0.19706 -1.00000 - 15926 2017 8 21 21 26 23 384 4.8336 187.69689 763.14376 705.00446 -0.00082 4.81693 2.51128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81184 0.19706 -1.00000 - 15927 2017 8 21 21 26 28 218 4.8336 187.69432 763.20050 705.05140 -0.00083 4.82242 2.50584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81149 0.19706 -1.00000 - 15928 2017 8 21 21 26 33 52 4.8337 187.69174 763.25547 705.09839 -0.00087 4.82704 2.50586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81114 0.19706 -1.00000 - 15929 2017 8 21 21 26 37 885 4.8337 187.68917 763.30720 705.14527 -0.00098 4.83275 2.50085 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81079 0.19706 -1.00000 - 15930 2017 8 21 21 26 42 719 4.8337 187.68662 763.36934 705.19217 -0.00113 4.83987 2.49811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81044 0.19706 -1.00000 - 15931 2017 8 21 21 26 47 553 4.8337 187.68410 763.42382 705.23922 -0.00127 4.84862 2.49692 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81009 0.19706 -1.00000 - 15932 2017 8 21 21 26 52 386 4.8338 187.68158 763.48011 705.28611 -0.00135 4.85843 2.49367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80973 0.19706 -1.00000 - 15933 2017 8 21 21 26 57 220 4.8338 187.67903 763.53632 705.33297 -0.00139 4.86854 2.49210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80938 0.19706 -1.00000 - 15934 2017 8 21 21 27 2 54 4.8338 187.67645 763.59187 705.37991 -0.00142 4.87840 2.49276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80903 0.19706 -1.00000 - 15935 2017 8 21 21 27 6 888 4.8339 187.67386 763.64886 705.42666 -0.00147 4.88781 2.49111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80868 0.19706 -1.00000 - 15936 2017 8 21 21 27 11 722 4.8339 187.67127 763.70527 705.47343 -0.00159 4.89672 2.49376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80833 0.19705 -1.00000 - 15937 2017 8 21 21 27 16 556 4.8339 187.66871 763.76190 705.52006 -0.00174 4.90501 2.49400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80798 0.19705 -1.00000 - 15938 2017 8 21 21 27 21 390 4.8340 187.66617 763.81834 705.56648 -0.00188 4.91265 2.49480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80763 0.19705 -1.00000 - 15939 2017 8 21 21 27 26 224 4.8340 187.66363 763.87432 705.61276 -0.00197 4.91967 2.49873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80727 0.19705 -1.00000 - 15940 2017 8 21 21 27 31 58 4.8340 187.66107 763.93029 705.65891 -0.00202 4.92618 2.49904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80692 0.19705 -1.00000 - 15941 2017 8 21 21 27 35 892 4.8341 187.65848 763.98598 705.70493 -0.00205 4.93232 2.50062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80657 0.19705 -1.00000 - 15942 2017 8 21 21 27 40 726 4.8341 187.65587 764.04144 705.75093 -0.00211 4.93826 2.50418 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80622 0.19705 -1.00000 - 15943 2017 8 21 21 27 45 560 4.8341 187.65327 764.09656 705.79680 -0.00222 4.94421 2.50327 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80587 0.19705 -1.00000 - 15944 2017 8 21 21 27 50 394 4.8342 187.65070 764.15116 705.84254 -0.00237 4.95038 2.50449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80552 0.19705 -1.00000 - 15945 2017 8 21 21 27 55 228 4.8342 187.64815 764.20528 705.88829 -0.00250 4.95705 2.50657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80516 0.19705 -1.00000 - 15946 2017 8 21 21 28 0 63 4.8342 187.64559 764.25861 705.93387 -0.00259 4.96464 2.50606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80481 0.19705 -1.00000 - 15947 2017 8 21 21 28 4 897 4.8343 187.64302 764.31399 705.97944 -0.00264 4.97350 2.50974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80446 0.19705 -1.00000 - 15948 2017 8 21 21 28 9 731 4.8343 187.64041 764.36853 706.02498 -0.00266 4.98333 2.51074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80411 0.19705 -1.00000 - 15949 2017 8 21 21 28 14 566 4.8343 187.63779 764.42261 706.07046 -0.00272 4.99371 2.51153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80376 0.19705 -1.00000 - 15950 2017 8 21 21 28 19 400 4.8344 187.63517 764.47572 706.11594 -0.00283 5.00432 2.51646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80341 0.19705 -1.00000 - 15951 2017 8 21 21 28 24 234 4.8344 187.63259 764.53019 706.16131 -0.00299 5.01491 2.51711 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80306 0.19705 -1.00000 - 15952 2017 8 21 21 28 29 69 4.8344 187.63002 764.58415 706.20657 -0.00313 5.02537 2.51930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80270 0.19705 -1.00000 - 15953 2017 8 21 21 28 33 903 4.8345 187.62746 764.63790 706.25179 -0.00321 5.03543 2.52266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80235 0.19705 -1.00000 - 15954 2017 8 21 21 28 38 738 4.8345 187.62487 764.69155 706.29687 -0.00325 5.04482 2.52417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80200 0.19705 -1.00000 - 15955 2017 8 21 21 28 43 572 4.8345 187.62225 764.74497 706.34191 -0.00327 5.05328 2.52616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80165 0.19705 -1.00000 - 15956 2017 8 21 21 28 48 407 4.8345 187.61961 764.79836 706.38706 -0.00332 5.06066 2.52953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80130 0.19705 -1.00000 - 15957 2017 8 21 21 28 53 241 4.8346 187.61698 764.85213 706.43206 -0.00343 5.06689 2.53059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80095 0.19705 -1.00000 - 15958 2017 8 21 21 28 58 76 4.8346 187.61438 764.90548 706.47700 -0.00359 5.07199 2.53298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80059 0.19705 -1.00000 - 15959 2017 8 21 21 29 2 911 4.8346 187.61180 764.95872 706.52205 -0.00373 5.07603 2.53452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80024 0.19705 -1.00000 - 15960 2017 8 21 21 29 7 745 4.8347 187.60923 765.01261 706.56698 -0.00381 5.07916 2.53578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79989 0.19705 -1.00000 - 15961 2017 8 21 21 29 12 580 4.8347 187.60662 765.06383 706.61192 -0.00384 5.08162 2.53851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79954 0.19705 -1.00000 - 15962 2017 8 21 21 29 17 415 4.8347 187.60399 765.11693 706.65688 -0.00385 5.08424 2.53843 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79919 0.19705 -1.00000 - 15963 2017 8 21 21 29 22 249 4.8348 187.60133 765.17039 706.70186 -0.00389 5.08556 2.53916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79884 0.19705 -1.00000 - 15964 2017 8 21 21 29 27 84 4.8348 187.59869 765.22795 706.74684 -0.00399 5.08389 2.53868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79848 0.19704 -1.00000 - 15965 2017 8 21 21 29 31 919 4.8348 187.59607 765.28444 706.79184 -0.00413 5.08075 2.53770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79813 0.19704 -1.00000 - 15966 2017 8 21 21 29 36 754 4.8349 187.59348 765.33786 706.83691 -0.00425 5.07591 2.53809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79778 0.19704 -1.00000 - 15967 2017 8 21 21 29 41 589 4.8349 187.59088 765.38628 706.88215 -0.00432 5.00919 2.53675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79743 0.19704 -1.00000 - 15968 2017 8 21 21 29 46 424 4.8349 187.58826 765.43962 706.92739 -0.00435 5.03483 2.53526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79708 0.19704 -1.00000 - 15969 2017 8 21 21 29 51 259 4.8350 187.58561 765.49283 706.97273 -0.00436 5.03288 2.53645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79673 0.19704 -1.00000 - 15970 2017 8 21 21 29 56 94 4.8350 187.58294 765.54963 707.01798 -0.00439 5.03188 2.53570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79638 0.19704 -1.00000 - 15971 2017 8 21 21 30 0 929 4.8350 187.58028 765.60394 707.06326 -0.00448 5.03112 2.53587 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79602 0.19704 -1.00000 - 15972 2017 8 21 21 30 5 764 4.8351 187.57765 765.65784 707.10840 -0.00462 5.03042 2.53896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79567 0.19704 -1.00000 - 15973 2017 8 21 21 30 10 599 4.8351 187.57503 765.71124 707.15359 -0.00475 5.03039 2.53792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79532 0.19704 -1.00000 - 15974 2017 8 21 21 30 15 434 4.8351 187.57242 765.76519 707.19876 -0.00483 5.03126 2.54064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79497 0.19704 -1.00000 - 15975 2017 8 21 21 30 20 269 4.8352 187.56979 765.81903 707.24379 -0.00486 5.03314 2.54370 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79462 0.19704 -1.00000 - 15976 2017 8 21 21 30 25 104 4.8352 187.56712 765.87276 707.28877 -0.00489 5.03608 2.54500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79427 0.19704 -1.00000 - 15977 2017 8 21 21 30 29 940 4.8352 187.56443 765.92632 707.33365 -0.00494 5.04123 2.54889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79391 0.19704 -1.00000 - 15978 2017 8 21 21 30 34 775 4.8353 187.56175 765.97988 707.37849 -0.00505 5.04808 2.55242 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79356 0.19704 -1.00000 - 15979 2017 8 21 21 30 39 610 4.8353 187.55910 766.03338 707.42312 -0.00521 5.05521 2.55597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79321 0.19704 -1.00000 - 15980 2017 8 21 21 30 44 446 4.8353 187.55648 766.08664 707.46771 -0.00536 5.06261 2.55957 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79286 0.19704 -1.00000 - 15981 2017 8 21 21 30 49 281 4.8354 187.55386 766.13977 707.51213 -0.00545 5.07030 2.56497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79251 0.19704 -1.00000 - 15982 2017 8 21 21 30 54 116 4.8354 187.55121 766.19287 707.55646 -0.00550 5.07829 2.56875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79216 0.19704 -1.00000 - 15983 2017 8 21 21 30 58 952 4.8354 187.54854 766.24584 707.60069 -0.00553 5.08661 2.57335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79180 0.19704 -1.00000 - 15984 2017 8 21 21 31 3 787 4.8355 187.54584 766.29875 707.64481 -0.00558 5.09529 2.57834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79145 0.19704 -1.00000 - 15985 2017 8 21 21 31 8 623 4.8355 187.54314 766.35156 707.68874 -0.00569 5.10436 2.58080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79110 0.19704 -1.00000 - 15986 2017 8 21 21 31 13 458 4.8355 187.54048 766.40391 707.73254 -0.00586 5.11381 2.58471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79075 0.19704 -1.00000 - 15987 2017 8 21 21 31 18 294 4.8356 187.53784 766.45599 707.77631 -0.00601 5.12360 2.58681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79040 0.19704 -1.00000 - 15988 2017 8 21 21 31 23 129 4.8356 187.53521 766.50814 707.81994 -0.00611 5.13418 2.58764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79005 0.19704 -1.00000 - 15989 2017 8 21 21 31 27 965 4.8356 187.53255 766.55958 707.86361 -0.00615 5.14546 2.58984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78969 0.19704 -1.00000 - 15990 2017 8 21 21 31 32 801 4.8357 187.52986 766.61092 707.90726 -0.00618 5.15689 2.58873 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78934 0.19704 -1.00000 - 15991 2017 8 21 21 31 37 636 4.8357 187.52715 766.66187 707.95095 -0.00621 5.16826 2.58839 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78899 0.19704 -1.00000 - 15992 2017 8 21 21 31 42 472 4.8357 187.52445 766.71931 707.99461 -0.00631 5.17755 2.58722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78864 0.19703 -1.00000 - 15993 2017 8 21 21 31 47 308 4.8358 187.52177 766.76912 708.03847 -0.00645 5.17410 2.58393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78829 0.19703 -1.00000 - 15994 2017 8 21 21 31 52 144 4.8358 187.51911 766.81672 708.08243 -0.00659 5.10047 2.58153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78794 0.19703 -1.00000 - 15995 2017 8 21 21 31 56 980 4.8358 187.51647 766.87401 708.12646 -0.00667 5.12834 2.57727 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78758 0.19703 -1.00000 - 15996 2017 8 21 21 32 1 815 4.8359 187.51379 766.92668 708.17062 -0.00670 5.13413 2.57477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78723 0.19703 -1.00000 - 15997 2017 8 21 21 32 6 651 4.8359 187.51109 766.98212 708.21469 -0.00672 5.13814 2.57202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78688 0.19703 -1.00000 - 15998 2017 8 21 21 32 11 487 4.8359 187.50837 767.03415 708.25885 -0.00675 5.13811 2.56794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78653 0.19703 -1.00000 - 15999 2017 8 21 21 32 16 323 4.8360 187.50564 767.08288 708.30300 -0.00683 5.13536 2.56550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78618 0.19703 -1.00000 - 16000 2017 8 21 21 32 21 159 4.8360 187.50295 767.13219 708.34720 -0.00697 5.13075 2.56309 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78583 0.19703 -1.00000 - 16001 2017 8 21 21 32 25 995 4.8360 187.50028 767.18607 708.39144 -0.00710 5.12463 2.55959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78547 0.19703 -1.00000 - 16002 2017 8 21 21 32 30 831 4.8361 187.49762 767.23940 708.43561 -0.00718 5.11754 2.55714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78512 0.19703 -1.00000 - 16003 2017 8 21 21 32 35 668 4.8361 187.49493 767.29280 708.47990 -0.00721 5.10999 2.55408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78477 0.19703 -1.00000 - 16004 2017 8 21 21 32 40 504 4.8361 187.49221 767.34643 708.52418 -0.00722 5.10248 2.55268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78442 0.19703 -1.00000 - 16005 2017 8 21 21 32 45 340 4.8362 187.48947 767.39949 708.56843 -0.00725 5.09541 2.54892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78407 0.19703 -1.00000 - 16006 2017 8 21 21 32 50 176 4.8362 187.48673 767.45255 708.61269 -0.00733 5.08908 2.54832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78372 0.19703 -1.00000 - 16007 2017 8 21 21 32 55 12 4.8362 187.48401 767.50524 708.65688 -0.00748 5.08403 2.54569 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78336 0.19703 -1.00000 - 16008 2017 8 21 21 32 59 849 4.8363 187.48133 767.55824 708.70112 -0.00763 5.07983 2.54409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78301 0.19703 -1.00000 - 16009 2017 8 21 21 33 4 685 4.8363 187.47866 767.61028 708.74543 -0.00772 5.07563 2.54362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78266 0.19703 -1.00000 - 16010 2017 8 21 21 33 9 521 4.8363 187.47596 767.66250 708.78957 -0.00775 5.07301 2.53889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78231 0.19703 -1.00000 - 16011 2017 8 21 21 33 14 358 4.8364 187.47323 767.71565 708.83373 -0.00777 5.07149 2.53860 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78196 0.19703 -1.00000 - 16012 2017 8 21 21 33 19 194 4.8364 187.47047 767.77024 708.87784 -0.00781 5.06849 2.53546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78161 0.19703 -1.00000 - 16013 2017 8 21 21 33 24 30 4.8364 187.46771 767.82434 708.92189 -0.00789 5.06381 2.53210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78125 0.19703 -1.00000 - 16014 2017 8 21 21 33 28 867 4.8365 187.46498 767.87376 708.96598 -0.00804 5.05955 2.53167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78090 0.19703 -1.00000 - 16015 2017 8 21 21 33 33 703 4.8365 187.46228 767.92525 709.01001 -0.00821 5.05607 2.52857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78055 0.19703 -1.00000 - 16016 2017 8 21 21 33 38 540 4.8365 187.45960 767.97841 709.05398 -0.00831 5.05345 2.52668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78020 0.19703 -1.00000 - 16017 2017 8 21 21 33 43 377 4.8366 187.45689 768.03085 709.09801 -0.00836 5.05128 2.52583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77985 0.19703 -1.00000 - 16018 2017 8 21 21 33 48 213 4.8366 187.45414 768.08314 709.14190 -0.00839 5.04915 2.52249 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77949 0.19703 -1.00000 - 16019 2017 8 21 21 33 53 50 4.8366 187.45138 768.13493 709.18582 -0.00842 5.04683 2.51961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77914 0.19703 -1.00000 - 16020 2017 8 21 21 33 57 886 4.8367 187.44861 768.18753 709.22980 -0.00850 5.04428 2.51924 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77879 0.19702 -1.00000 - 16021 2017 8 21 21 34 2 723 4.8367 187.44586 768.23804 709.27368 -0.00866 5.04155 2.51434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77844 0.19702 -1.00000 - 16022 2017 8 21 21 34 7 560 4.8367 187.44314 768.29134 709.31758 -0.00883 5.03918 2.51092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77809 0.19702 -1.00000 - 16023 2017 8 21 21 34 12 397 4.8368 187.44045 768.34166 709.36159 -0.00893 5.03728 2.50903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77774 0.19702 -1.00000 - 16024 2017 8 21 21 34 17 234 4.8368 187.43773 768.39488 709.40552 -0.00897 5.03333 2.50343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77738 0.19702 -1.00000 - 16025 2017 8 21 21 34 22 70 4.8369 187.43498 768.45195 709.44959 -0.00900 5.02589 2.49959 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77703 0.19702 -1.00000 - 16026 2017 8 21 21 34 26 907 4.8369 187.43220 768.50414 709.49374 -0.00903 5.01697 2.49703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77668 0.19702 -1.00000 - 16027 2017 8 21 21 34 31 744 4.8369 187.42941 768.55168 709.53778 -0.00909 5.01033 2.49215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77633 0.19702 -1.00000 - 16028 2017 8 21 21 34 36 581 4.8370 187.42664 768.60374 709.58201 -0.00925 5.00570 2.48883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77598 0.19702 -1.00000 - 16029 2017 8 21 21 34 41 418 4.8370 187.42391 768.65660 709.62629 -0.00943 5.00220 2.48804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77563 0.19702 -1.00000 - 16030 2017 8 21 21 34 46 255 4.8370 187.42122 768.70986 709.67044 -0.00954 4.99898 2.48181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77527 0.19702 -1.00000 - 16031 2017 8 21 21 34 51 92 4.8371 187.41849 768.76242 709.71468 -0.00956 4.99540 2.47812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77492 0.19702 -1.00000 - 16032 2017 8 21 21 34 55 929 4.8371 187.41572 768.81478 709.75911 -0.00958 4.99111 2.47508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77457 0.19702 -1.00000 - 16033 2017 8 21 21 35 0 766 4.8371 187.41294 768.86349 709.80342 -0.00961 4.98611 2.46688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77422 0.19702 -1.00000 - 16034 2017 8 21 21 35 5 604 4.8372 187.41013 768.92177 709.84796 -0.00965 4.98115 2.46258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77387 0.19702 -1.00000 - 16035 2017 8 21 21 35 10 441 4.8372 187.40734 768.97317 709.89263 -0.00980 4.97619 2.45963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77352 0.19702 -1.00000 - 16036 2017 8 21 21 35 15 278 4.8372 187.40459 769.03031 709.93729 -0.01001 4.96717 2.45091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77316 0.19702 -1.00000 - 16037 2017 8 21 21 35 20 115 4.8373 187.40189 769.08382 709.98210 -0.01013 4.95099 2.44523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77281 0.19702 -1.00000 - 16038 2017 8 21 21 35 24 953 4.8373 187.39916 769.13570 710.02707 -0.01015 4.93164 2.44163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77246 0.19702 -1.00000 - 16039 2017 8 21 21 35 29 790 4.8373 187.39638 769.18476 710.07204 -0.01015 4.91285 2.43333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77211 0.19702 -1.00000 - 16040 2017 8 21 21 35 34 627 4.8374 187.39358 769.24413 710.11712 -0.01018 4.89563 2.42997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77176 0.19702 -1.00000 - 16041 2017 8 21 21 35 39 465 4.8374 187.39077 769.29743 710.16229 -0.01022 4.88050 2.42612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77140 0.19702 -1.00000 - 16042 2017 8 21 21 35 44 302 4.8374 187.38796 769.34955 710.20746 -0.01035 4.86697 2.42127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77105 0.19702 -1.00000 - 16043 2017 8 21 21 35 49 140 4.8375 187.38519 769.40446 710.25273 -0.01053 4.85463 2.41920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77070 0.19702 -1.00000 - 16044 2017 8 21 21 35 53 977 4.8375 187.38246 769.45916 710.29795 -0.01066 4.84656 2.41564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77035 0.19702 -1.00000 - 16045 2017 8 21 21 35 58 815 4.8375 187.37972 769.51383 710.34311 -0.01070 4.83948 2.41153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77000 0.19702 -1.00000 - 16046 2017 8 21 21 36 3 652 4.8376 187.37694 769.56824 710.38833 -0.01069 4.83155 2.41186 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76965 0.19702 -1.00000 - 16047 2017 8 21 21 36 8 490 4.8376 187.37413 769.62322 710.43342 -0.01071 4.82310 2.40859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76929 0.19702 -1.00000 - 16048 2017 8 21 21 36 13 327 4.8376 187.37130 769.67779 710.47842 -0.01076 4.81446 2.40808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76894 0.19701 -1.00000 - 16049 2017 8 21 21 36 18 165 4.8377 187.36848 769.73219 710.52335 -0.01088 4.80584 2.40793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76859 0.19701 -1.00000 - 16050 2017 8 21 21 36 23 3 4.8377 187.36570 769.78663 710.56812 -0.01106 4.79741 2.40580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76824 0.19701 -1.00000 - 16051 2017 8 21 21 36 27 841 4.8378 187.36295 769.84076 710.61282 -0.01119 4.79048 2.40582 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76789 0.19701 -1.00000 - 16052 2017 8 21 21 36 32 678 4.8378 187.36020 769.89476 710.65737 -0.01123 4.78487 2.40644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76753 0.19701 -1.00000 - 16053 2017 8 21 21 36 37 516 4.8378 187.35740 769.94874 710.70183 -0.01124 4.77915 2.40564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76718 0.19701 -1.00000 - 16054 2017 8 21 21 36 42 354 4.8379 187.35457 770.00270 710.74625 -0.01126 4.77321 2.40682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76683 0.19701 -1.00000 - 16055 2017 8 21 21 36 47 192 4.8379 187.35173 770.05656 710.79057 -0.01131 4.76698 2.40798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76648 0.19701 -1.00000 - 16056 2017 8 21 21 36 52 30 4.8379 187.34890 770.11036 710.83474 -0.01143 4.76045 2.40742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76613 0.19701 -1.00000 - 16057 2017 8 21 21 36 56 868 4.8380 187.34610 770.16375 710.87880 -0.01160 4.75368 2.40881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76578 0.19701 -1.00000 - 16058 2017 8 21 21 37 1 706 4.8380 187.34334 770.21696 710.92281 -0.01173 4.74675 2.40928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76542 0.19701 -1.00000 - 16059 2017 8 21 21 37 6 544 4.8380 187.34057 770.27010 710.96670 -0.01176 4.73977 2.40922 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76507 0.19701 -1.00000 - 16060 2017 8 21 21 37 11 382 4.8381 187.33775 770.32318 711.01048 -0.01177 4.73286 2.41081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76472 0.19701 -1.00000 - 16061 2017 8 21 21 37 16 220 4.8381 187.33492 770.37544 711.05413 -0.01180 4.72763 2.40973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76437 0.19701 -1.00000 - 16062 2017 8 21 21 37 21 58 4.8381 187.33206 770.42777 711.09775 -0.01184 4.72336 2.40900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76402 0.19701 -1.00000 - 16063 2017 8 21 21 37 25 896 4.8382 187.32922 770.47980 711.14140 -0.01195 4.71955 2.40960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76366 0.19701 -1.00000 - 16064 2017 8 21 21 37 30 735 4.8382 187.32641 770.53209 711.18496 -0.01212 4.71576 2.40762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76331 0.19701 -1.00000 - 16065 2017 8 21 21 37 35 573 4.8382 187.32364 770.58430 711.22862 -0.01223 4.71188 2.40641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76296 0.19701 -1.00000 - 16066 2017 8 21 21 37 40 411 4.8383 187.32085 770.63643 711.27226 -0.01227 4.70811 2.40314 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76261 0.19701 -1.00000 - 16067 2017 8 21 21 37 45 249 4.8383 187.31802 770.68855 711.31599 -0.01229 4.70514 2.39818 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76226 0.19701 -1.00000 - 16068 2017 8 21 21 37 50 88 4.8384 187.31517 770.73614 711.35990 -0.01232 4.70097 2.39702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76191 0.19701 -1.00000 - 16069 2017 8 21 21 37 54 926 4.8384 187.31230 770.79302 711.40386 -0.01237 4.69205 2.39073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76155 0.19701 -1.00000 - 16070 2017 8 21 21 37 59 765 4.8384 187.30943 770.84667 711.44794 -0.01250 4.67719 2.38675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76120 0.19701 -1.00000 - 16071 2017 8 21 21 38 4 603 4.8385 187.30661 770.90094 711.49223 -0.01269 4.60571 2.38374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76085 0.19701 -1.00000 - 16072 2017 8 21 21 38 9 442 4.8385 187.30383 770.95470 711.53658 -0.01282 4.60446 2.37706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76050 0.19701 -1.00000 - 16073 2017 8 21 21 38 14 280 4.8385 187.30103 771.00716 711.58101 -0.01287 4.60416 2.37450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76015 0.19701 -1.00000 - 16074 2017 8 21 21 38 19 119 4.8386 187.29819 771.05661 711.62565 -0.01291 4.60330 2.37181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75979 0.19701 -1.00000 - 16075 2017 8 21 21 38 23 957 4.8386 187.29533 771.11795 711.67027 -0.01295 4.59767 2.36689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75944 0.19701 -1.00000 - 16076 2017 8 21 21 38 28 796 4.8386 187.29246 771.17220 711.71494 -0.01299 4.58835 2.36580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75909 0.19700 -1.00000 - 16077 2017 8 21 21 38 33 635 4.8387 187.28958 771.22579 711.75975 -0.01312 4.57961 2.36438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75874 0.19700 -1.00000 - 16078 2017 8 21 21 38 38 473 4.8387 187.28674 771.27546 711.80446 -0.01332 4.57284 2.35949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75839 0.19700 -1.00000 - 16079 2017 8 21 21 38 43 312 4.8387 187.28394 771.33001 711.84933 -0.01347 4.56932 2.35975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75803 0.19700 -1.00000 - 16080 2017 8 21 21 38 48 151 4.8388 187.28114 771.38088 711.89415 -0.01353 4.56892 2.35852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75768 0.19700 -1.00000 - 16081 2017 8 21 21 38 52 990 4.8388 187.27830 771.43824 711.93887 -0.01357 4.56927 2.35553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75733 0.19700 -1.00000 - 16082 2017 8 21 21 38 57 828 4.8388 187.27544 771.49216 711.98364 -0.01360 4.56902 2.35760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75698 0.19700 -1.00000 - 16083 2017 8 21 21 39 2 667 4.8389 187.27255 771.54654 712.02846 -0.01363 4.56406 2.35474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75663 0.19700 -1.00000 - 16084 2017 8 21 21 39 7 506 4.8389 187.26966 771.60127 712.07313 -0.01373 4.56565 2.35277 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75628 0.19700 -1.00000 - 16085 2017 8 21 21 39 12 345 4.8390 187.26680 771.65567 712.11787 -0.01392 4.56819 2.35624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75592 0.19700 -1.00000 - 16086 2017 8 21 21 39 17 184 4.8390 187.26399 771.70886 712.16250 -0.01407 4.57150 2.35577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75557 0.19700 -1.00000 - 16087 2017 8 21 21 39 22 23 4.8390 187.26118 771.76346 712.20710 -0.01413 4.57576 2.35683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75522 0.19700 -1.00000 - 16088 2017 8 21 21 39 26 862 4.8391 187.25833 771.81774 712.25170 -0.01415 4.58092 2.36100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75487 0.19700 -1.00000 - 16089 2017 8 21 21 39 31 701 4.8391 187.25546 771.87225 712.29612 -0.01416 4.58723 2.36240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75452 0.19700 -1.00000 - 16090 2017 8 21 21 39 36 541 4.8391 187.25256 771.92639 712.34035 -0.01417 4.59499 2.36493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75416 0.19700 -1.00000 - 16091 2017 8 21 21 39 41 380 4.8392 187.24965 771.98008 712.38447 -0.01426 4.60287 2.37038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75381 0.19700 -1.00000 - 16092 2017 8 21 21 39 46 219 4.8392 187.24678 772.03385 712.42834 -0.01443 4.61097 2.37150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75346 0.19700 -1.00000 - 16093 2017 8 21 21 39 51 58 4.8392 187.24396 772.08716 712.47209 -0.01456 4.61944 2.37471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75311 0.19700 -1.00000 - 16094 2017 8 21 21 39 55 897 4.8393 187.24112 772.13992 712.51584 -0.01460 4.62855 2.37888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75276 0.19700 -1.00000 - 16095 2017 8 21 21 40 0 737 4.8393 187.23826 772.19337 712.55941 -0.01460 4.63877 2.37999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75240 0.19700 -1.00000 - 16096 2017 8 21 21 40 5 576 4.8394 187.23537 772.24643 712.60288 -0.01460 4.64953 2.38487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75205 0.19700 -1.00000 - 16097 2017 8 21 21 40 10 415 4.8394 187.23245 772.29632 712.64624 -0.01461 4.66089 2.38684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75170 0.19700 -1.00000 - 16098 2017 8 21 21 40 15 255 4.8394 187.22954 772.34940 712.68948 -0.01471 4.67338 2.38748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75135 0.19700 -1.00000 - 16099 2017 8 21 21 40 20 94 4.8395 187.22666 772.40056 712.73276 -0.01487 4.68713 2.39280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75100 0.19700 -1.00000 - 16100 2017 8 21 21 40 24 934 4.8395 187.22381 772.45367 712.77581 -0.01499 4.69951 2.39313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75064 0.19700 -1.00000 - 16101 2017 8 21 21 40 29 773 4.8395 187.22096 772.51020 712.81873 -0.01502 4.70900 2.39343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75029 0.19700 -1.00000 - 16102 2017 8 21 21 40 34 613 4.8396 187.21807 772.56112 712.86166 -0.01503 4.71758 2.39917 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74994 0.19700 -1.00000 - 16103 2017 8 21 21 40 39 453 4.8396 187.21516 772.60798 712.90442 -0.01505 4.72804 2.40001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74959 0.19700 -1.00000 - 16104 2017 8 21 21 40 44 292 4.8396 187.21224 772.65923 712.94704 -0.01509 4.73992 2.40115 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74924 0.19699 -1.00000 - 16105 2017 8 21 21 40 49 132 4.8397 187.20931 772.71073 712.98972 -0.01521 4.75284 2.40604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74888 0.19699 -1.00000 - 16106 2017 8 21 21 40 53 972 4.8397 187.20642 772.76195 713.03223 -0.01538 4.76575 2.40765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74853 0.19699 -1.00000 - 16107 2017 8 21 21 40 58 811 4.8398 187.20356 772.81253 713.07465 -0.01550 4.77777 2.40776 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74818 0.19699 -1.00000 - 16108 2017 8 21 21 41 3 651 4.8398 187.20069 772.86253 713.11712 -0.01554 4.78854 2.41276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74783 0.19699 -1.00000 - 16109 2017 8 21 21 41 8 491 4.8398 187.19778 772.91274 713.15942 -0.01558 4.79811 2.41229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74748 0.19699 -1.00000 - 16110 2017 8 21 21 41 13 331 4.8399 187.19486 772.96221 713.20166 -0.01563 4.80671 2.41323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74713 0.19699 -1.00000 - 16111 2017 8 21 21 41 18 171 4.8399 187.19193 773.01318 713.24386 -0.01569 4.81455 2.41465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74677 0.19699 -1.00000 - 16112 2017 8 21 21 41 23 11 4.8399 187.18899 773.06822 713.28609 -0.01584 4.81994 2.41415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74642 0.19699 -1.00000 - 16113 2017 8 21 21 41 27 851 4.8400 187.18610 773.11746 713.32838 -0.01602 4.82069 2.41859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74607 0.19699 -1.00000 - 16114 2017 8 21 21 41 32 691 4.8400 187.18323 773.16260 713.37076 -0.01613 4.78095 2.41855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74572 0.19699 -1.00000 - 16115 2017 8 21 21 41 37 531 4.8400 187.18035 773.21348 713.41308 -0.01618 4.79129 2.41779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74537 0.19699 -1.00000 - 16116 2017 8 21 21 41 42 371 4.8401 187.17743 773.26439 713.45539 -0.01621 4.80031 2.42210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74501 0.19699 -1.00000 - 16117 2017 8 21 21 41 47 211 4.8401 187.17449 773.31621 713.49760 -0.01627 4.80868 2.42222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74466 0.19699 -1.00000 - 16118 2017 8 21 21 41 52 51 4.8402 187.17155 773.37149 713.53974 -0.01636 4.81400 2.42175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74431 0.19699 -1.00000 - 16119 2017 8 21 21 41 56 891 4.8402 187.16862 773.42082 713.58185 -0.01652 4.81806 2.42653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74396 0.19699 -1.00000 - 16120 2017 8 21 21 42 1 731 4.8402 187.16572 773.46656 713.62391 -0.01669 4.82576 2.42517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74361 0.19699 -1.00000 - 16121 2017 8 21 21 42 6 572 4.8403 187.16285 773.51688 713.66589 -0.01677 4.83396 2.42454 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74325 0.19699 -1.00000 - 16122 2017 8 21 21 42 11 412 4.8403 187.15994 773.56709 713.70781 -0.01680 4.84055 2.42793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74290 0.19699 -1.00000 - 16123 2017 8 21 21 42 16 252 4.8403 187.15701 773.61793 713.74969 -0.01683 4.84619 2.42736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74255 0.19699 -1.00000 - 16124 2017 8 21 21 42 21 93 4.8404 187.15406 773.67229 713.79138 -0.01687 4.84809 2.42807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74220 0.19699 -1.00000 - 16125 2017 8 21 21 42 25 933 4.8404 187.15110 773.71612 713.83307 -0.01697 4.84765 2.42927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74185 0.19699 -1.00000 - 16126 2017 8 21 21 42 30 774 4.8404 187.14817 773.76516 713.87465 -0.01712 4.85045 2.42844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74149 0.19699 -1.00000 - 16127 2017 8 21 21 42 35 614 4.8405 187.14527 773.81407 713.91628 -0.01725 4.85830 2.42870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74114 0.19699 -1.00000 - 16128 2017 8 21 21 42 40 455 4.8405 187.14238 773.86242 713.95780 -0.01729 4.86418 2.42895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74079 0.19699 -1.00000 - 16129 2017 8 21 21 42 45 295 4.8406 187.13946 773.91392 713.99932 -0.01730 4.86855 2.42719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74044 0.19699 -1.00000 - 16130 2017 8 21 21 42 50 136 4.8406 187.13651 773.96573 714.04087 -0.01731 4.87034 2.42748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74009 0.19699 -1.00000 - 16131 2017 8 21 21 42 54 976 4.8406 187.13354 774.00942 714.08235 -0.01734 4.87150 2.42560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73973 0.19699 -1.00000 - 16132 2017 8 21 21 42 59 817 4.8407 187.13057 774.05795 714.12387 -0.01743 4.87738 2.42114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73938 0.19698 -1.00000 - 16133 2017 8 21 21 43 4 658 4.8407 187.12763 774.10802 714.16552 -0.01756 4.88337 2.42009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73903 0.19698 -1.00000 - 16134 2017 8 21 21 43 9 498 4.8407 187.12472 774.15489 714.20719 -0.01766 4.88435 2.41624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73868 0.19698 -1.00000 - 16135 2017 8 21 21 43 14 339 4.8408 187.12181 774.20798 714.24894 -0.01768 4.88037 2.41189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73833 0.19698 -1.00000 - 16136 2017 8 21 21 43 19 180 4.8408 187.11886 774.25225 714.29070 -0.01769 4.87221 2.40868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73797 0.19698 -1.00000 - 16137 2017 8 21 21 43 24 21 4.8409 187.11589 774.30176 714.33251 -0.01771 4.88262 2.40258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73762 0.19698 -1.00000 - 16138 2017 8 21 21 43 28 862 4.8409 187.11291 774.35493 714.37441 -0.01776 4.88970 2.39907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73727 0.19698 -1.00000 - 16139 2017 8 21 21 43 33 703 4.8409 187.10993 774.40297 714.41637 -0.01787 4.89371 2.39510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73692 0.19698 -1.00000 - 16140 2017 8 21 21 43 38 544 4.8410 187.10699 774.44699 714.45845 -0.01802 4.89663 2.39074 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73656 0.19698 -1.00000 - 16141 2017 8 21 21 43 43 385 4.8410 187.10406 774.49657 714.50061 -0.01812 4.89893 2.38668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73621 0.19698 -1.00000 - 16142 2017 8 21 21 43 48 226 4.8410 187.10113 774.54400 714.54282 -0.01815 4.90085 2.38300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73586 0.19698 -1.00000 - 16143 2017 8 21 21 43 53 67 4.8411 187.09816 774.59280 714.58511 -0.01818 4.90182 2.37704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73551 0.19698 -1.00000 - 16144 2017 8 21 21 43 57 908 4.8411 187.09517 774.64279 714.62756 -0.01824 4.90155 2.37480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73516 0.19698 -1.00000 - 16145 2017 8 21 21 44 2 749 4.8412 187.09217 774.69448 714.67008 -0.01834 4.89971 2.37025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73480 0.19698 -1.00000 - 16146 2017 8 21 21 44 7 590 4.8412 187.08919 774.74921 714.71263 -0.01851 4.89456 2.36394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73445 0.19698 -1.00000 - 16147 2017 8 21 21 44 12 431 4.8412 187.08625 774.79858 714.75540 -0.01869 4.88407 2.36149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73410 0.19698 -1.00000 - 16148 2017 8 21 21 44 17 273 4.8413 187.08332 774.84453 714.79834 -0.01878 4.81292 2.35585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73375 0.19698 -1.00000 - 16149 2017 8 21 21 44 22 114 4.8413 187.08037 774.89606 714.84134 -0.01882 4.80397 2.34969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73340 0.19698 -1.00000 - 16150 2017 8 21 21 44 26 955 4.8413 187.07737 774.94783 714.88447 -0.01886 4.79163 2.34825 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73304 0.19698 -1.00000 - 16151 2017 8 21 21 44 31 797 4.8414 187.07436 775.00118 714.92761 -0.01895 4.77709 2.34368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73269 0.19698 -1.00000 - 16152 2017 8 21 21 44 36 638 4.8414 187.07135 775.05796 714.97075 -0.01911 4.76061 2.33840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73234 0.19698 -1.00000 - 16153 2017 8 21 21 44 41 480 4.8414 187.06838 775.10925 715.01404 -0.01930 4.74809 2.33672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73199 0.19698 -1.00000 - 16154 2017 8 21 21 44 46 321 4.8415 187.06543 775.15621 715.05732 -0.01944 4.72369 2.33093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73164 0.19698 -1.00000 - 16155 2017 8 21 21 44 51 163 4.8415 187.06248 775.20881 715.10064 -0.01949 4.70892 2.32554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73128 0.19698 -1.00000 - 16156 2017 8 21 21 44 56 4 4.8416 187.05948 775.26155 715.14405 -0.01954 4.69324 2.32426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73093 0.19698 -1.00000 - 16157 2017 8 21 21 45 0 846 4.8416 187.05645 775.31600 715.18734 -0.01959 4.67745 2.31889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73058 0.19698 -1.00000 - 16158 2017 8 21 21 45 5 687 4.8416 187.05343 775.37341 715.23073 -0.01968 4.65936 2.31388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73023 0.19698 -1.00000 - 16159 2017 8 21 21 45 10 529 4.8417 187.05043 775.42543 715.27419 -0.01982 4.64082 2.31103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72988 0.19698 -1.00000 - 16160 2017 8 21 21 45 15 371 4.8417 187.04746 775.47316 715.31758 -0.01996 4.62722 2.30332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72952 0.19697 -1.00000 - 16161 2017 8 21 21 45 20 212 4.8417 187.04451 775.52633 715.36119 -0.02004 4.61497 2.29950 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72917 0.19697 -1.00000 - 16162 2017 8 21 21 45 25 54 4.8418 187.04153 775.57915 715.40493 -0.02008 4.60201 2.29643 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72882 0.19697 -1.00000 - 16163 2017 8 21 21 45 29 896 4.8418 187.03852 775.63170 715.44859 -0.02009 4.58755 2.28826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72847 0.19697 -1.00000 - 16164 2017 8 21 21 45 34 738 4.8419 187.03549 775.69051 715.49236 -0.02010 4.56777 2.28558 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72812 0.19697 -1.00000 - 16165 2017 8 21 21 45 39 580 4.8419 187.03247 775.74393 715.53612 -0.02016 4.55000 2.27896 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72776 0.19697 -1.00000 - 16166 2017 8 21 21 45 44 422 4.8419 187.02948 775.79882 715.57975 -0.02028 4.54273 2.27140 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72741 0.19697 -1.00000 - 16167 2017 8 21 21 45 49 264 4.8420 187.02651 775.85100 715.62353 -0.02036 4.53353 2.26973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72706 0.19697 -1.00000 - 16168 2017 8 21 21 45 54 106 4.8420 187.02354 775.89903 715.66724 -0.02041 4.52469 2.26489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72671 0.19697 -1.00000 - 16169 2017 8 21 21 45 58 948 4.8420 187.02053 775.95350 715.71091 -0.02041 4.51643 2.25927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72635 0.19697 -1.00000 - 16170 2017 8 21 21 46 3 790 4.8421 187.01749 776.00594 715.75483 -0.02039 4.50883 2.25923 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72600 0.19697 -1.00000 - 16171 2017 8 21 21 46 8 632 4.8421 187.01445 776.05928 715.79855 -0.02041 4.50111 2.25338 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72565 0.19697 -1.00000 - 16172 2017 8 21 21 46 13 474 4.8422 187.01143 776.11256 715.84228 -0.02052 4.49259 2.25113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72530 0.19697 -1.00000 - 16173 2017 8 21 21 46 18 316 4.8422 187.00844 776.16565 715.88608 -0.02063 4.48293 2.25211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72495 0.19697 -1.00000 - 16174 2017 8 21 21 46 23 158 4.8422 187.00545 776.21978 715.92965 -0.02069 4.47216 2.24892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72459 0.19697 -1.00000 - 16175 2017 8 21 21 46 28 1 4.8423 187.00246 776.27339 715.97313 -0.02073 4.46049 2.24759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72424 0.19697 -1.00000 - 16176 2017 8 21 21 46 32 843 4.8423 186.99942 776.32646 716.01663 -0.02074 4.44825 2.24885 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72389 0.19697 -1.00000 - 16177 2017 8 21 21 46 37 685 4.8423 186.99636 776.37977 716.05998 -0.02074 4.43576 2.24770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72354 0.19697 -1.00000 - 16178 2017 8 21 21 46 42 528 4.8424 186.99330 776.43283 716.10323 -0.02082 4.42338 2.24893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72319 0.19697 -1.00000 - 16179 2017 8 21 21 46 47 370 4.8424 186.99027 776.48567 716.14644 -0.02099 4.41145 2.25069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72283 0.19697 -1.00000 - 16180 2017 8 21 21 46 52 213 4.8425 186.98728 776.53862 716.18947 -0.02113 4.40024 2.24966 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72248 0.19697 -1.00000 - 16181 2017 8 21 21 46 57 55 4.8425 186.98430 776.59110 716.23247 -0.02121 4.39002 2.25170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72213 0.19697 -1.00000 - 16182 2017 8 21 21 47 1 898 4.8425 186.98128 776.64366 716.27541 -0.02127 4.38100 2.25170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72178 0.19697 -1.00000 - 16183 2017 8 21 21 47 6 740 4.8426 186.97822 776.69650 716.31824 -0.02128 4.37344 2.25113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72142 0.19697 -1.00000 - 16184 2017 8 21 21 47 11 583 4.8426 186.97515 776.74818 716.36107 -0.02133 4.36759 2.25503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72107 0.19697 -1.00000 - 16185 2017 8 21 21 47 16 425 4.8426 186.97209 776.79759 716.40371 -0.02145 4.36447 2.25412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72072 0.19697 -1.00000 - 16186 2017 8 21 21 47 21 268 4.8427 186.96906 776.84881 716.44628 -0.02165 4.36677 2.25362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72037 0.19697 -1.00000 - 16187 2017 8 21 21 47 26 111 4.8427 186.96608 776.90053 716.48891 -0.02180 4.36637 2.25710 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72002 0.19697 -1.00000 - 16188 2017 8 21 21 47 30 954 4.8428 186.96309 776.95427 716.53134 -0.02194 4.36453 2.25578 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71966 0.19696 -1.00000 - 16189 2017 8 21 21 47 35 796 4.8428 186.96006 777.01037 716.57373 -0.02199 4.36392 2.25419 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71931 0.19696 -1.00000 - 16190 2017 8 21 21 47 40 639 4.8428 186.95699 777.06109 716.61621 -0.02200 4.36449 2.25848 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71896 0.19696 -1.00000 - 16191 2017 8 21 21 47 45 482 4.8429 186.95390 777.10749 716.65853 -0.02205 4.36825 2.25736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71861 0.19696 -1.00000 - 16192 2017 8 21 21 47 50 325 4.8429 186.95085 777.15710 716.70080 -0.02217 4.37500 2.25695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71825 0.19696 -1.00000 - 16193 2017 8 21 21 47 55 168 4.8429 186.94783 777.20858 716.74313 -0.02235 4.38440 2.26031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71790 0.19696 -1.00000 - 16194 2017 8 21 21 48 0 11 4.8430 186.94484 777.25946 716.78529 -0.02253 4.39515 2.26062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71755 0.19696 -1.00000 - 16195 2017 8 21 21 48 4 854 4.8430 186.94183 777.30980 716.82747 -0.02263 4.40644 2.26128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71720 0.19696 -1.00000 - 16196 2017 8 21 21 48 9 697 4.8431 186.93878 777.36083 716.86978 -0.02264 4.41775 2.26373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71685 0.19696 -1.00000 - 16197 2017 8 21 21 48 14 540 4.8431 186.93570 777.40852 716.91194 -0.02262 4.42894 2.26213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71649 0.19696 -1.00000 - 16198 2017 8 21 21 48 19 383 4.8431 186.93261 777.45790 716.95430 -0.02265 4.44036 2.26368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71614 0.19696 -1.00000 - 16199 2017 8 21 21 48 24 226 4.8432 186.92956 777.51075 716.99663 -0.02277 4.45199 2.26472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71579 0.19696 -1.00000 - 16200 2017 8 21 21 48 29 70 4.8432 186.92655 777.56662 717.03893 -0.02293 4.46140 2.26226 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71544 0.19696 -1.00000 - 16201 2017 8 21 21 48 33 913 4.8433 186.92355 777.61634 717.08129 -0.02306 4.46616 2.26596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71509 0.19696 -1.00000 - 16202 2017 8 21 21 48 38 756 4.8433 186.92052 777.66226 717.12380 -0.02310 4.43820 2.26438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71473 0.19696 -1.00000 - 16203 2017 8 21 21 48 43 600 4.8433 186.91744 777.71410 717.16627 -0.02306 4.44578 2.26221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71438 0.19696 -1.00000 - 16204 2017 8 21 21 48 48 443 4.8434 186.91434 777.76575 717.20884 -0.02302 4.45234 2.26629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71403 0.19696 -1.00000 - 16205 2017 8 21 21 48 53 286 4.8434 186.91125 777.81777 717.25137 -0.02306 4.45863 2.26603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71368 0.19696 -1.00000 - 16206 2017 8 21 21 48 58 130 4.8434 186.90819 777.87423 717.29386 -0.02319 4.46222 2.26728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71332 0.19696 -1.00000 - 16207 2017 8 21 21 49 2 973 4.8435 186.90518 777.92519 717.33639 -0.02334 4.46494 2.27146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71297 0.19696 -1.00000 - 16208 2017 8 21 21 49 7 817 4.8435 186.90216 777.97303 717.37884 -0.02344 4.47171 2.27126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71262 0.19696 -1.00000 - 16209 2017 8 21 21 49 12 660 4.8436 186.89911 778.02559 717.42126 -0.02343 4.47928 2.27185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71227 0.19696 -1.00000 - 16210 2017 8 21 21 49 17 504 4.8436 186.89601 778.07734 717.46358 -0.02339 4.48560 2.27855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71192 0.19696 -1.00000 - 16211 2017 8 21 21 49 22 348 4.8436 186.89289 778.12957 717.50577 -0.02338 4.49127 2.27883 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71156 0.19696 -1.00000 - 16212 2017 8 21 21 49 27 191 4.8437 186.88978 778.18600 717.54772 -0.02348 4.49367 2.28128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71121 0.19696 -1.00000 - 16213 2017 8 21 21 49 32 35 4.8437 186.88673 778.23636 717.58961 -0.02364 4.49428 2.28671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71086 0.19696 -1.00000 - 16214 2017 8 21 21 49 36 879 4.8438 186.88371 778.28369 717.63130 -0.02379 4.50015 2.28672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71051 0.19696 -1.00000 - 16215 2017 8 21 21 49 41 722 4.8438 186.88068 778.33549 717.67285 -0.02387 4.50823 2.28806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71015 0.19696 -1.00000 - 16216 2017 8 21 21 49 46 566 4.8438 186.87760 778.38590 717.71440 -0.02386 4.51564 2.29238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70980 0.19695 -1.00000 - 16217 2017 8 21 21 49 51 410 4.8439 186.87447 778.43631 717.75576 -0.02384 4.52290 2.29300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70945 0.19695 -1.00000 - 16218 2017 8 21 21 49 56 254 4.8439 186.87134 778.49119 717.79699 -0.02389 4.52731 2.29291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70910 0.19695 -1.00000 - 16219 2017 8 21 21 50 1 98 4.8439 186.86824 778.53930 717.83821 -0.02404 4.53077 2.29570 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70874 0.19695 -1.00000 - 16220 2017 8 21 21 50 5 942 4.8440 186.86519 778.58547 717.87912 -0.02423 4.53811 2.29481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70839 0.19695 -1.00000 - 16221 2017 8 21 21 50 10 786 4.8440 186.86216 778.63429 717.92012 -0.02438 4.55098 2.29526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70804 0.19695 -1.00000 - 16222 2017 8 21 21 50 15 630 4.8441 186.85911 778.68429 717.96123 -0.02444 4.56456 2.29571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70769 0.19695 -1.00000 - 16223 2017 8 21 21 50 20 474 4.8441 186.85601 778.72901 718.00212 -0.02442 4.57241 2.29308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70734 0.19695 -1.00000 - 16224 2017 8 21 21 50 25 318 4.8441 186.85287 778.78283 718.04316 -0.02441 4.57373 2.29400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70698 0.19695 -1.00000 - 16225 2017 8 21 21 50 30 163 4.8442 186.84974 778.83114 718.08413 -0.02449 4.55992 2.29354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70663 0.19695 -1.00000 - 16226 2017 8 21 21 50 35 7 4.8442 186.84665 778.88257 718.12494 -0.02466 4.57624 2.28949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70628 0.19695 -1.00000 - 16227 2017 8 21 21 50 39 851 4.8443 186.84361 778.92964 718.16572 -0.02485 4.58998 2.29256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70593 0.19695 -1.00000 - 16228 2017 8 21 21 50 44 695 4.8443 186.84057 778.97146 718.20649 -0.02498 4.60313 2.29265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70557 0.19695 -1.00000 - 16229 2017 8 21 21 50 49 540 4.8443 186.83749 779.02006 718.24704 -0.02501 4.61598 2.28870 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70522 0.19695 -1.00000 - 16230 2017 8 21 21 50 54 384 4.8444 186.83437 779.07060 718.28780 -0.02496 4.62738 2.29191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70487 0.19695 -1.00000 - 16231 2017 8 21 21 50 59 228 4.8444 186.83123 779.11793 718.32841 -0.02495 4.63505 2.29081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70452 0.19695 -1.00000 - 16232 2017 8 21 21 51 4 73 4.8445 186.82810 779.16248 718.36900 -0.02505 4.63931 2.28964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70417 0.19695 -1.00000 - 16233 2017 8 21 21 51 8 917 4.8445 186.82503 779.20860 718.40974 -0.02522 4.64113 2.29252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70381 0.19695 -1.00000 - 16234 2017 8 21 21 51 13 762 4.8445 186.82198 779.25604 718.45038 -0.02541 4.64141 2.29104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70346 0.19695 -1.00000 - 16235 2017 8 21 21 51 18 606 4.8446 186.81893 779.30372 718.49103 -0.02549 4.64103 2.29069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70311 0.19695 -1.00000 - 16236 2017 8 21 21 51 23 451 4.8446 186.81583 779.35126 718.53179 -0.02546 4.64058 2.29298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70276 0.19695 -1.00000 - 16237 2017 8 21 21 51 28 296 4.8447 186.81269 779.39895 718.57241 -0.02539 4.64049 2.29187 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70240 0.19695 -1.00000 - 16238 2017 8 21 21 51 33 140 4.8447 186.80954 779.44613 718.61309 -0.02539 4.64112 2.29398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70205 0.19695 -1.00000 - 16239 2017 8 21 21 51 37 985 4.8447 186.80641 779.49353 718.65377 -0.02551 4.64268 2.29734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70170 0.19695 -1.00000 - 16240 2017 8 21 21 51 42 830 4.8448 186.80333 779.54114 718.69431 -0.02571 4.64530 2.29828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70135 0.19695 -1.00000 - 16241 2017 8 21 21 51 47 675 4.8448 186.80028 779.58867 718.73484 -0.02588 4.64897 2.30168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70099 0.19695 -1.00000 - 16242 2017 8 21 21 51 52 520 4.8448 186.79722 779.63625 718.77525 -0.02593 4.65362 2.30472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70064 0.19695 -1.00000 - 16243 2017 8 21 21 51 57 364 4.8449 186.79411 779.68385 718.81553 -0.02586 4.65907 2.30723 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70029 0.19695 -1.00000 - 16244 2017 8 21 21 52 2 209 4.8449 186.79095 779.73131 718.85573 -0.02579 4.66522 2.31068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69994 0.19694 -1.00000 - 16245 2017 8 21 21 52 7 54 4.8450 186.78778 779.77861 718.89579 -0.02581 4.67198 2.31380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69958 0.19694 -1.00000 - 16246 2017 8 21 21 52 11 899 4.8450 186.78464 779.82580 718.93575 -0.02599 4.67934 2.31583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69923 0.19694 -1.00000 - 16247 2017 8 21 21 52 16 744 4.8450 186.78156 779.87286 718.97558 -0.02623 4.68774 2.31855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69888 0.19694 -1.00000 - 16248 2017 8 21 21 52 21 590 4.8451 186.77851 779.91967 719.01529 -0.02641 4.69784 2.31890 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69853 0.19694 -1.00000 - 16249 2017 8 21 21 52 26 435 4.8451 186.77544 779.96635 719.05495 -0.02645 4.70867 2.31909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69818 0.19694 -1.00000 - 16250 2017 8 21 21 52 31 280 4.8452 186.77231 780.01294 719.09464 -0.02637 4.72026 2.31976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69782 0.19694 -1.00000 - 16251 2017 8 21 21 52 36 125 4.8452 186.76913 780.05626 719.13423 -0.02630 4.73242 2.31844 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69747 0.19694 -1.00000 - 16252 2017 8 21 21 52 40 970 4.8452 186.76595 780.10120 719.17383 -0.02636 4.74371 2.31664 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69712 0.19694 -1.00000 - 16253 2017 8 21 21 52 45 816 4.8453 186.76282 780.14745 719.21355 -0.02658 4.75496 2.31266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69677 0.19694 -1.00000 - 16254 2017 8 21 21 52 50 661 4.8453 186.75974 780.19729 719.25335 -0.02685 4.76830 2.30778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69641 0.19694 -1.00000 - 16255 2017 8 21 21 52 55 506 4.8454 186.75668 780.24710 719.29334 -0.02703 4.77822 2.30331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69606 0.19694 -1.00000 - 16256 2017 8 21 21 53 0 352 4.8454 186.75359 780.29163 719.33341 -0.02704 4.78361 2.29826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69571 0.19694 -1.00000 - 16257 2017 8 21 21 53 5 197 4.8454 186.75045 780.33285 719.37371 -0.02694 4.72879 2.29092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69536 0.19694 -1.00000 - 16258 2017 8 21 21 53 10 43 4.8455 186.74726 780.38144 719.41423 -0.02687 4.73458 2.28680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69500 0.19694 -1.00000 - 16259 2017 8 21 21 53 14 888 4.8455 186.74408 780.42910 719.45480 -0.02693 4.73709 2.28294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69465 0.19694 -1.00000 - 16260 2017 8 21 21 53 19 734 4.8456 186.74096 780.47932 719.49544 -0.02715 4.74586 2.27564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69430 0.19694 -1.00000 - 16261 2017 8 21 21 53 24 579 4.8456 186.73788 780.53161 719.53631 -0.02741 4.75143 2.27089 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69395 0.19694 -1.00000 - 16262 2017 8 21 21 53 29 425 4.8456 186.73481 780.57900 719.57730 -0.02755 4.75103 2.26744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69359 0.19694 -1.00000 - 16263 2017 8 21 21 53 34 271 4.8457 186.73170 780.62390 719.61838 -0.02753 4.69272 2.25947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69324 0.19694 -1.00000 - 16264 2017 8 21 21 53 39 116 4.8457 186.72853 780.67296 719.65971 -0.02740 4.68083 2.25326 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69289 0.19694 -1.00000 - 16265 2017 8 21 21 53 43 962 4.8458 186.72533 780.72280 719.70117 -0.02733 4.66907 2.25152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69254 0.19694 -1.00000 - 16266 2017 8 21 21 53 48 808 4.8458 186.72216 780.77284 719.74266 -0.02742 4.66400 2.24457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69219 0.19694 -1.00000 - 16267 2017 8 21 21 53 53 654 4.8459 186.71904 780.82780 719.78421 -0.02765 4.65594 2.23971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69183 0.19694 -1.00000 - 16268 2017 8 21 21 53 58 500 4.8459 186.71595 780.87731 719.82590 -0.02788 4.64248 2.23829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69148 0.19694 -1.00000 - 16269 2017 8 21 21 54 3 346 4.8459 186.71287 780.92455 719.86760 -0.02798 4.58149 2.23073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69113 0.19694 -1.00000 - 16270 2017 8 21 21 54 8 192 4.8460 186.70974 780.97611 719.90936 -0.02792 4.55974 2.22510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69078 0.19694 -1.00000 - 16271 2017 8 21 21 54 13 38 4.8460 186.70655 781.02722 719.95129 -0.02793 4.53499 2.22403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69042 0.19693 -1.00000 - 16272 2017 8 21 21 54 17 884 4.8461 186.70334 781.07877 719.99313 -0.02779 4.50997 2.21781 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69007 0.19693 -1.00000 - 16273 2017 8 21 21 54 22 730 4.8461 186.70016 781.13517 720.03495 -0.02802 4.49306 2.21175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68972 0.19693 -1.00000 - 16274 2017 8 21 21 54 27 576 4.8461 186.69703 781.18594 720.07690 -0.02819 4.47189 2.20949 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68937 0.19693 -1.00000 - 16275 2017 8 21 21 54 32 422 4.8462 186.69395 781.23439 720.11872 -0.02840 4.44697 2.20283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68901 0.19693 -1.00000 - 16276 2017 8 21 21 54 37 268 4.8462 186.69085 781.28584 720.16052 -0.02846 4.41986 2.19719 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68866 0.19693 -1.00000 - 16277 2017 8 21 21 54 42 115 4.8463 186.68770 781.33505 720.20266 -0.02840 4.36525 2.19247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68831 0.19693 -1.00000 - 16278 2017 8 21 21 54 46 961 4.8463 186.68449 781.38551 720.24464 -0.02833 4.35139 2.18611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68796 0.19693 -1.00000 - 16279 2017 8 21 21 54 51 807 4.8463 186.68126 781.44146 720.28679 -0.02836 4.32612 2.17971 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68760 0.19693 -1.00000 - 16280 2017 8 21 21 54 56 654 4.8464 186.67809 781.49778 720.32900 -0.02856 4.29769 2.17247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68725 0.19693 -1.00000 - 16281 2017 8 21 21 55 1 500 4.8464 186.67497 781.55182 720.37119 -0.02882 4.26410 2.16350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68690 0.19693 -1.00000 - 16282 2017 8 21 21 55 6 346 4.8465 186.67188 781.60334 720.41369 -0.02899 4.19002 2.15903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68655 0.19693 -1.00000 - 16283 2017 8 21 21 55 11 193 4.8465 186.66876 781.65034 720.45608 -0.02901 4.18006 2.15399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68619 0.19693 -1.00000 - 16284 2017 8 21 21 55 16 40 4.8465 186.66558 781.70427 720.49851 -0.02894 4.15321 2.14584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68584 0.19693 -1.00000 - 16285 2017 8 21 21 55 20 886 4.8466 186.66235 781.75947 720.54101 -0.02889 4.14040 2.14404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68549 0.19693 -1.00000 - 16286 2017 8 21 21 55 25 733 4.8466 186.65913 781.81280 720.58346 -0.02896 4.12654 2.13811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68514 0.19693 -1.00000 - 16287 2017 8 21 21 55 30 579 4.8467 186.65597 781.86197 720.62568 -0.02916 4.11298 2.13120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68478 0.19693 -1.00000 - 16288 2017 8 21 21 55 35 426 4.8467 186.65285 781.91456 720.66798 -0.02939 4.10099 2.12927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68443 0.19693 -1.00000 - 16289 2017 8 21 21 55 40 273 4.8467 186.64973 781.96669 720.71021 -0.02950 4.09112 2.12563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68408 0.19693 -1.00000 - 16290 2017 8 21 21 55 45 120 4.8468 186.64656 782.01864 720.75228 -0.02946 4.08061 2.11975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68373 0.19693 -1.00000 - 16291 2017 8 21 21 55 49 966 4.8468 186.64334 782.07515 720.79451 -0.02937 4.06720 2.11834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68337 0.19693 -1.00000 - 16292 2017 8 21 21 55 54 813 4.8469 186.64010 782.12638 720.83671 -0.02934 4.05433 2.11283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68302 0.19693 -1.00000 - 16293 2017 8 21 21 55 59 660 4.8469 186.63689 782.17512 720.87885 -0.02947 4.04292 2.10944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68267 0.19693 -1.00000 - 16294 2017 8 21 21 56 4 507 4.8470 186.63374 782.22765 720.92105 -0.02969 4.03142 2.10973 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68232 0.19693 -1.00000 - 16295 2017 8 21 21 56 9 354 4.8470 186.63061 782.28015 720.96311 -0.02986 4.02285 2.10588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68196 0.19693 -1.00000 - 16296 2017 8 21 21 56 14 201 4.8470 186.62746 782.33254 721.00500 -0.02989 4.01472 2.10191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68161 0.19693 -1.00000 - 16297 2017 8 21 21 56 19 48 4.8471 186.62427 782.38790 721.04700 -0.02981 4.00455 2.10032 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68126 0.19693 -1.00000 - 16298 2017 8 21 21 56 23 895 4.8471 186.62101 782.43762 721.08885 -0.02974 3.99470 2.09656 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68091 0.19693 -1.00000 - 16299 2017 8 21 21 56 28 743 4.8472 186.61775 782.48638 721.13080 -0.02977 3.99130 2.09524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68055 0.19692 -1.00000 - 16300 2017 8 21 21 56 33 590 4.8472 186.61454 782.53662 721.17282 -0.03001 3.99054 2.09228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68020 0.19692 -1.00000 - 16301 2017 8 21 21 56 38 437 4.8472 186.61138 782.58799 721.21484 -0.03023 3.98783 2.08961 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67985 0.19692 -1.00000 - 16302 2017 8 21 21 56 43 284 4.8473 186.60825 782.63641 721.25681 -0.03037 3.98198 2.08932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67950 0.19692 -1.00000 - 16303 2017 8 21 21 56 48 132 4.8473 186.60509 782.69241 721.29878 -0.03036 3.91709 2.08568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67914 0.19692 -1.00000 - 16304 2017 8 21 21 56 52 979 4.8474 186.60187 782.74460 721.34060 -0.03028 3.92419 2.08310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67879 0.19692 -1.00000 - 16305 2017 8 21 21 56 57 826 4.8474 186.59860 782.79432 721.38246 -0.03026 3.93091 2.08485 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67844 0.19692 -1.00000 - 16306 2017 8 21 21 57 2 674 4.8474 186.59533 782.83930 721.42426 -0.03035 3.93873 2.08299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67809 0.19692 -1.00000 - 16307 2017 8 21 21 57 7 521 4.8475 186.59212 782.88835 721.46606 -0.03060 3.94804 2.08118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67773 0.19692 -1.00000 - 16308 2017 8 21 21 57 12 369 4.8475 186.58896 782.93770 721.50792 -0.03087 3.95891 2.08481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67738 0.19692 -1.00000 - 16309 2017 8 21 21 57 17 216 4.8476 186.58582 782.98902 721.54969 -0.03100 3.97082 2.08497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67703 0.19692 -1.00000 - 16310 2017 8 21 21 57 22 64 4.8476 186.58265 783.03923 721.59127 -0.03096 3.98313 2.08597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67668 0.19692 -1.00000 - 16311 2017 8 21 21 57 26 912 4.8476 186.57942 783.08901 721.63300 -0.03087 3.99550 2.09047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67632 0.19692 -1.00000 - 16312 2017 8 21 21 57 31 759 4.8477 186.57614 783.13957 721.67448 -0.03085 4.00791 2.09228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67597 0.19692 -1.00000 - 16313 2017 8 21 21 57 36 607 4.8477 186.57287 783.18954 721.71593 -0.03098 4.02056 2.09750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67562 0.19692 -1.00000 - 16314 2017 8 21 21 57 41 455 4.8478 186.56966 783.23942 721.75732 -0.03124 4.03375 2.10215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67527 0.19692 -1.00000 - 16315 2017 8 21 21 57 46 303 4.8478 186.56649 783.28922 721.79848 -0.03149 4.04784 2.10638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67491 0.19692 -1.00000 - 16316 2017 8 21 21 57 51 150 4.8478 186.56334 783.33855 721.83950 -0.03159 4.06319 2.11332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67456 0.19692 -1.00000 - 16317 2017 8 21 21 57 55 998 4.8479 186.56015 783.38777 721.88049 -0.03153 4.08347 2.11858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67421 0.19692 -1.00000 - 16318 2017 8 21 21 58 0 846 4.8479 186.55690 783.43704 721.92132 -0.03141 4.10828 2.12260 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67386 0.19692 -1.00000 - 16319 2017 8 21 21 58 5 694 4.8480 186.55361 783.48591 721.96207 -0.03137 4.13462 2.13062 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67350 0.19692 -1.00000 - 16320 2017 8 21 21 58 10 542 4.8480 186.55035 783.53488 722.00264 -0.03149 4.16230 2.13456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67315 0.19692 -1.00000 - 16321 2017 8 21 21 58 15 390 4.8480 186.54714 783.58383 722.04304 -0.03173 4.19125 2.13938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67280 0.19692 -1.00000 - 16322 2017 8 21 21 58 20 238 4.8481 186.54398 783.63228 722.08336 -0.03195 4.22138 2.14729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67245 0.19692 -1.00000 - 16323 2017 8 21 21 58 25 86 4.8481 186.54081 783.67624 722.12345 -0.03202 4.25235 2.15067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67209 0.19692 -1.00000 - 16324 2017 8 21 21 58 29 935 4.8482 186.53760 783.72347 722.16337 -0.03193 4.28208 2.15524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67174 0.19692 -1.00000 - 16325 2017 8 21 21 58 34 783 4.8482 186.53433 783.77107 722.20332 -0.03190 4.30862 2.16241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67139 0.19692 -1.00000 - 16326 2017 8 21 21 58 39 631 4.8482 186.53103 783.82123 722.24301 -0.03182 4.32561 2.16540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67104 0.19692 -1.00000 - 16327 2017 8 21 21 58 44 479 4.8483 186.52777 783.87247 722.28258 -0.03200 4.35827 2.16935 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67068 0.19691 -1.00000 - 16328 2017 8 21 21 58 49 328 4.8483 186.52456 783.91854 722.32218 -0.03230 4.39035 2.17574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67033 0.19691 -1.00000 - 16329 2017 8 21 21 58 54 176 4.8484 186.52138 783.96034 722.36151 -0.03237 4.42430 2.17881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66998 0.19691 -1.00000 - 16330 2017 8 21 21 58 59 24 4.8484 186.51820 784.00514 722.40077 -0.03235 4.45944 2.18279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66963 0.19691 -1.00000 - 16331 2017 8 21 21 59 3 873 4.8485 186.51498 784.05184 722.44001 -0.03259 4.49521 2.18726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66927 0.19691 -1.00000 - 16332 2017 8 21 21 59 8 721 4.8485 186.51169 784.09773 722.47908 -0.03267 4.53036 2.19077 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66892 0.19691 -1.00000 - 16333 2017 8 21 21 59 13 570 4.8485 186.50838 784.14330 722.51820 -0.03250 4.56394 2.19592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66857 0.19691 -1.00000 - 16334 2017 8 21 21 59 18 419 4.8486 186.50511 784.18988 722.55728 -0.03270 4.59535 2.20019 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66822 0.19691 -1.00000 - 16335 2017 8 21 21 59 23 267 4.8486 186.50190 784.23567 722.59614 -0.03278 4.62432 2.20171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66786 0.19691 -1.00000 - 16336 2017 8 21 21 59 28 116 4.8487 186.49872 784.27974 722.63505 -0.03278 4.65070 2.20584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66751 0.19691 -1.00000 - 16337 2017 8 21 21 59 32 965 4.8487 186.49553 784.32553 722.67403 -0.03284 4.67428 2.20996 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66716 0.19691 -1.00000 - 16338 2017 8 21 21 59 37 813 4.8487 186.49229 784.37301 722.71283 -0.03309 4.69383 2.20960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66680 0.19691 -1.00000 - 16339 2017 8 21 21 59 42 662 4.8488 186.48898 784.41819 722.75159 -0.03307 4.70711 2.21483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66645 0.19691 -1.00000 - 16340 2017 8 21 21 59 47 511 4.8488 186.48567 784.46199 722.79040 -0.03320 4.64949 2.21530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66610 0.19691 -1.00000 - 16341 2017 8 21 21 59 52 360 4.8489 186.48241 784.50924 722.82922 -0.03320 4.63505 2.21462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66575 0.19691 -1.00000 - 16342 2017 8 21 21 59 57 209 4.8489 186.47920 784.55522 722.86807 -0.03325 4.65948 2.21972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66539 0.19691 -1.00000 - 16343 2017 8 21 22 0 2 58 4.8489 186.47601 784.60058 722.90689 -0.03343 4.66224 2.21981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66504 0.19691 -1.00000 - 16344 2017 8 21 22 0 6 907 4.8490 186.47279 784.65104 722.94564 -0.03347 4.66012 2.22027 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66469 0.19691 -1.00000 - 16345 2017 8 21 22 0 11 756 4.8490 186.46951 784.69658 722.98444 -0.03352 4.65104 2.22389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66434 0.19691 -1.00000 - 16346 2017 8 21 22 0 16 605 4.8491 186.46620 784.73982 723.02308 -0.03351 4.63619 2.22303 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66398 0.19691 -1.00000 - 16347 2017 8 21 22 0 21 454 4.8491 186.46292 784.78555 723.06163 -0.03373 4.61795 2.22281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66363 0.19691 -1.00000 - 16348 2017 8 21 22 0 26 303 4.8491 186.45970 784.83100 723.10034 -0.03375 4.56823 2.22394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66328 0.19691 -1.00000 - 16349 2017 8 21 22 0 31 152 4.8492 186.45650 784.87763 723.13903 -0.03386 4.55782 2.22355 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66293 0.19691 -1.00000 - 16350 2017 8 21 22 0 36 1 4.8492 186.45327 784.92561 723.17761 -0.03394 4.54406 2.22342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66257 0.19691 -1.00000 - 16351 2017 8 21 22 0 40 851 4.8493 186.44999 784.97649 723.21623 -0.03390 4.52726 2.22285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66222 0.19691 -1.00000 - 16352 2017 8 21 22 0 45 700 4.8493 186.44669 785.01702 723.25476 -0.03417 4.50992 2.22129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66187 0.19691 -1.00000 - 16353 2017 8 21 22 0 50 549 4.8493 186.44340 785.06317 723.29336 -0.03416 4.49756 2.21855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66152 0.19691 -1.00000 - 16354 2017 8 21 22 0 55 399 4.8494 186.44015 785.11237 723.33209 -0.03452 4.48660 2.21496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66116 0.19691 -1.00000 - 16355 2017 8 21 22 1 0 248 4.8494 186.43692 785.15696 723.37082 -0.03448 4.47263 2.21377 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66081 0.19690 -1.00000 - 16356 2017 8 21 22 1 5 98 4.8495 186.43371 785.20835 723.40959 -0.03419 4.45722 2.21012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66046 0.19690 -1.00000 - 16357 2017 8 21 22 1 9 947 4.8495 186.43046 785.24756 723.44826 -0.03417 4.44111 2.20435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66010 0.19690 -1.00000 - 16358 2017 8 21 22 1 14 797 4.8496 186.42716 785.29499 723.48703 -0.03433 4.39213 2.20061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65975 0.19690 -1.00000 - 16359 2017 8 21 22 1 19 646 4.8496 186.42383 785.34514 723.52582 -0.03467 4.38653 2.19779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65940 0.19690 -1.00000 - 16360 2017 8 21 22 1 24 496 4.8496 186.42052 785.39043 723.56456 -0.03458 4.37613 2.19366 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65905 0.19690 -1.00000 - 16361 2017 8 21 22 1 29 346 4.8497 186.41726 785.43479 723.60341 -0.03486 4.36654 2.19100 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65869 0.19690 -1.00000 - 16362 2017 8 21 22 1 34 195 4.8497 186.41404 785.47611 723.64220 -0.03481 4.35947 2.18766 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65834 0.19690 -1.00000 - 16363 2017 8 21 22 1 39 45 4.8498 186.41082 785.52128 723.68110 -0.03455 4.36433 2.18283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65799 0.19690 -1.00000 - 16364 2017 8 21 22 1 43 895 4.8498 186.40757 785.56718 723.72004 -0.03448 4.36756 2.17840 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65764 0.19690 -1.00000 - 16365 2017 8 21 22 1 48 745 4.8498 186.40425 785.61294 723.75906 -0.03444 4.36725 2.17431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65728 0.19690 -1.00000 - 16366 2017 8 21 22 1 53 595 4.8499 186.40089 785.66333 723.79822 -0.03464 4.36824 2.17075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65693 0.19690 -1.00000 - 16367 2017 8 21 22 1 58 444 4.8499 186.39757 785.70850 723.83741 -0.03482 4.36712 2.16591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65658 0.19690 -1.00000 - 16368 2017 8 21 22 2 3 294 4.8500 186.39431 785.75202 723.87675 -0.03514 4.35357 2.15965 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65623 0.19690 -1.00000 - 16369 2017 8 21 22 2 8 144 4.8500 186.39109 785.79977 723.91625 -0.03523 4.35137 2.15497 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65587 0.19690 -1.00000 - 16370 2017 8 21 22 2 12 994 4.8501 186.38786 785.84672 723.95589 -0.03511 4.34737 2.15261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65552 0.19690 -1.00000 - 16371 2017 8 21 22 2 17 845 4.8501 186.38459 785.89302 723.99555 -0.03503 4.34234 2.14641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65517 0.19690 -1.00000 - 16372 2017 8 21 22 2 22 695 4.8501 186.38126 785.94420 724.03518 -0.03499 4.33411 2.14348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65481 0.19690 -1.00000 - 16373 2017 8 21 22 2 27 545 4.8502 186.37790 785.99053 724.07486 -0.03505 4.32474 2.14163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65446 0.19690 -1.00000 - 16374 2017 8 21 22 2 32 395 4.8502 186.37458 786.03518 724.11462 -0.03526 4.31957 2.13525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65411 0.19690 -1.00000 - 16375 2017 8 21 22 2 37 245 4.8503 186.37132 786.08458 724.15446 -0.03553 4.31489 2.13065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65376 0.19690 -1.00000 - 16376 2017 8 21 22 2 42 96 4.8503 186.36810 786.13221 724.19444 -0.03579 4.30845 2.12976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65340 0.19690 -1.00000 - 16377 2017 8 21 22 2 46 946 4.8503 186.36486 786.17882 724.23441 -0.03576 4.30077 2.12425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65305 0.19690 -1.00000 - 16378 2017 8 21 22 2 51 796 4.8504 186.36157 786.23114 724.27431 -0.03565 4.28951 2.12037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65270 0.19690 -1.00000 - 16379 2017 8 21 22 2 56 647 4.8504 186.35823 786.27816 724.31434 -0.03556 4.27648 2.11991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65235 0.19690 -1.00000 - 16380 2017 8 21 22 3 1 497 4.8505 186.35488 786.32367 724.35433 -0.03559 4.26827 2.11367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65199 0.19690 -1.00000 - 16381 2017 8 21 22 3 6 348 4.8505 186.35157 786.37392 724.39432 -0.03585 4.26092 2.10994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65164 0.19690 -1.00000 - 16382 2017 8 21 22 3 11 198 4.8505 186.34831 786.42218 724.43452 -0.03628 4.25168 2.10939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65129 0.19690 -1.00000 - 16383 2017 8 21 22 3 16 49 4.8506 186.34507 786.46959 724.47458 -0.03654 4.24141 2.10477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65093 0.19689 -1.00000 - 16384 2017 8 21 22 3 20 900 4.8506 186.34181 786.52243 724.51458 -0.03648 4.22901 2.10112 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65058 0.19689 -1.00000 - 16385 2017 8 21 22 3 25 750 4.8507 186.33851 786.56896 724.55469 -0.03640 4.22870 2.09928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65023 0.19689 -1.00000 - 16386 2017 8 21 22 3 30 601 4.8507 186.33517 786.61629 724.59483 -0.03647 4.20421 2.09359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64988 0.19689 -1.00000 - 16387 2017 8 21 22 3 35 452 4.8508 186.33182 786.66724 724.63504 -0.03629 4.19625 2.09000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64952 0.19689 -1.00000 - 16388 2017 8 21 22 3 40 302 4.8508 186.32851 786.71629 724.67534 -0.03658 4.18659 2.08740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64917 0.19689 -1.00000 - 16389 2017 8 21 22 3 45 153 4.8508 186.32524 786.76410 724.71558 -0.03684 4.17604 2.08168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64882 0.19689 -1.00000 - 16390 2017 8 21 22 3 50 4 4.8509 186.32199 786.81693 724.75595 -0.03691 4.16244 2.07877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64847 0.19689 -1.00000 - 16391 2017 8 21 22 3 54 855 4.8509 186.31873 786.86294 724.79634 -0.03688 4.15011 2.07310 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64811 0.19689 -1.00000 - 16392 2017 8 21 22 3 59 706 4.8510 186.31542 786.91277 724.83683 -0.03720 4.13882 2.06500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64776 0.19689 -1.00000 - 16393 2017 8 21 22 4 4 557 4.8510 186.31207 786.96471 724.87758 -0.03703 4.13096 2.06127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64741 0.19689 -1.00000 - 16394 2017 8 21 22 4 9 408 4.8510 186.30871 787.01020 724.91834 -0.03705 4.11726 2.05378 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64705 0.19689 -1.00000 - 16395 2017 8 21 22 4 14 259 4.8511 186.30540 787.06446 724.95924 -0.03713 4.09794 2.04794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64670 0.19689 -1.00000 - 16396 2017 8 21 22 4 19 110 4.8511 186.30213 787.11443 725.00017 -0.03711 4.07370 2.04428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64635 0.19689 -1.00000 - 16397 2017 8 21 22 4 23 962 4.8512 186.29887 787.16877 725.04107 -0.03704 4.06758 2.03554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64600 0.19689 -1.00000 - 16398 2017 8 21 22 4 28 813 4.8512 186.29559 787.21824 725.08194 -0.03749 4.05970 2.03263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64564 0.19689 -1.00000 - 16399 2017 8 21 22 4 33 664 4.8513 186.29225 787.26294 725.12291 -0.03763 4.05317 2.02916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64529 0.19689 -1.00000 - 16400 2017 8 21 22 4 38 515 4.8513 186.28888 787.31291 725.16379 -0.03751 4.04868 2.02178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64494 0.19689 -1.00000 - 16401 2017 8 21 22 4 43 367 4.8513 186.28553 787.36961 725.20486 -0.03761 4.04484 2.01889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64458 0.19689 -1.00000 - 16402 2017 8 21 22 4 48 218 4.8514 186.28223 787.42021 725.24600 -0.03751 4.03811 2.01599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64423 0.19689 -1.00000 - 16403 2017 8 21 22 4 53 69 4.8514 186.27897 787.46556 725.28703 -0.03735 4.02831 2.00968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64388 0.19689 -1.00000 - 16404 2017 8 21 22 4 57 921 4.8515 186.27569 787.51607 725.32807 -0.03743 4.01696 2.00903 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64353 0.19689 -1.00000 - 16405 2017 8 21 22 5 2 772 4.8515 186.27236 787.56697 725.36927 -0.03800 3.95791 2.00623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64317 0.19689 -1.00000 - 16406 2017 8 21 22 5 7 624 4.8515 186.26899 787.62090 725.41029 -0.03812 3.95118 2.00105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64282 0.19689 -1.00000 - 16407 2017 8 21 22 5 12 476 4.8516 186.26563 787.67176 725.45129 -0.03811 3.93979 2.00315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64247 0.19689 -1.00000 - 16408 2017 8 21 22 5 17 327 4.8516 186.26231 787.72390 725.49222 -0.03821 3.92582 1.99869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64211 0.19689 -1.00000 - 16409 2017 8 21 22 5 22 179 4.8517 186.25904 787.77906 725.53296 -0.03808 3.91606 1.99623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64176 0.19689 -1.00000 - 16410 2017 8 21 22 5 27 31 4.8517 186.25576 787.82546 725.57365 -0.03788 3.90837 1.99685 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64141 0.19689 -1.00000 - 16411 2017 8 21 22 5 31 882 4.8518 186.25244 787.87441 725.61412 -0.03791 3.89825 1.99348 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64106 0.19688 -1.00000 - 16412 2017 8 21 22 5 36 734 4.8518 186.24907 787.92388 725.65485 -0.03849 3.86628 1.99304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64070 0.19688 -1.00000 - 16413 2017 8 21 22 5 41 586 4.8518 186.24570 787.97385 725.69537 -0.03868 3.86902 1.99203 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64035 0.19688 -1.00000 - 16414 2017 8 21 22 5 46 438 4.8519 186.24235 788.02405 725.73592 -0.03873 3.86048 1.99081 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64000 0.19688 -1.00000 - 16415 2017 8 21 22 5 51 290 4.8519 186.23906 788.07401 725.77635 -0.03888 3.85295 1.99221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63964 0.19688 -1.00000 - 16416 2017 8 21 22 5 56 142 4.8520 186.23579 788.12035 725.81668 -0.03875 3.85335 1.99248 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63929 0.19688 -1.00000 - 16417 2017 8 21 22 6 0 994 4.8520 186.23251 788.16973 725.85689 -0.03853 3.85192 1.99145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63894 0.19688 -1.00000 - 16418 2017 8 21 22 6 5 846 4.8520 186.22917 788.21906 725.89701 -0.03843 3.84959 1.99456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63859 0.19688 -1.00000 - 16419 2017 8 21 22 6 10 698 4.8521 186.22578 788.27256 725.93701 -0.03891 3.84839 1.99367 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63823 0.19688 -1.00000 - 16420 2017 8 21 22 6 15 550 4.8521 186.22240 788.32073 725.97682 -0.03911 3.84718 1.99459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63788 0.19688 -1.00000 - 16421 2017 8 21 22 6 20 402 4.8522 186.21905 788.36749 726.01666 -0.03929 3.84894 1.99999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63753 0.19688 -1.00000 - 16422 2017 8 21 22 6 25 254 4.8522 186.21576 788.41137 726.05637 -0.03946 3.85031 2.00051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63717 0.19688 -1.00000 - 16423 2017 8 21 22 6 30 107 4.8523 186.21248 788.45905 726.09595 -0.03934 3.85210 2.00225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63682 0.19688 -1.00000 - 16424 2017 8 21 22 6 34 959 4.8523 186.20920 788.50628 726.13556 -0.03911 3.86446 2.00829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63647 0.19688 -1.00000 - 16425 2017 8 21 22 6 39 811 4.8523 186.20587 788.55330 726.17496 -0.03898 3.87846 2.00977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63612 0.19688 -1.00000 - 16426 2017 8 21 22 6 44 664 4.8524 186.20247 788.60011 726.21416 -0.03928 3.89357 2.01288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63576 0.19688 -1.00000 - 16427 2017 8 21 22 6 49 516 4.8524 186.19906 788.64732 726.25338 -0.03939 3.90923 2.01690 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63541 0.19688 -1.00000 - 16428 2017 8 21 22 6 54 369 4.8525 186.19570 788.69426 726.29239 -0.03964 3.92520 2.02059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63506 0.19688 -1.00000 - 16429 2017 8 21 22 6 59 221 4.8525 186.19239 788.74045 726.33131 -0.03984 3.94157 2.02552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63470 0.19688 -1.00000 - 16430 2017 8 21 22 7 4 74 4.8526 186.18911 788.78645 726.37021 -0.03980 3.95852 2.03026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63435 0.19688 -1.00000 - 16431 2017 8 21 22 7 8 926 4.8526 186.18581 788.83233 726.40893 -0.03961 3.97630 2.03565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63400 0.19688 -1.00000 - 16432 2017 8 21 22 7 13 779 4.8526 186.18248 788.87797 726.44759 -0.03956 3.99517 2.04117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63365 0.19688 -1.00000 - 16433 2017 8 21 22 7 18 632 4.8527 186.17908 788.92361 726.48617 -0.03971 4.01763 2.04687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63329 0.19688 -1.00000 - 16434 2017 8 21 22 7 23 484 4.8527 186.17567 788.96905 726.52458 -0.03969 4.04482 2.05282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63294 0.19688 -1.00000 - 16435 2017 8 21 22 7 28 337 4.8528 186.17230 789.01425 726.56286 -0.03995 4.07342 2.05837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63259 0.19688 -1.00000 - 16436 2017 8 21 22 7 33 190 4.8528 186.16897 789.05909 726.60097 -0.04012 4.10296 2.06531 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63223 0.19688 -1.00000 - 16437 2017 8 21 22 7 38 43 4.8529 186.16568 789.10363 726.63895 -0.04015 4.13301 2.07067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63188 0.19688 -1.00000 - 16438 2017 8 21 22 7 42 896 4.8529 186.16237 789.14801 726.67683 -0.04010 4.16321 2.07609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63153 0.19688 -1.00000 - 16439 2017 8 21 22 7 47 749 4.8529 186.15902 789.19193 726.71467 -0.04016 4.19334 2.08132 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63118 0.19687 -1.00000 - 16440 2017 8 21 22 7 52 602 4.8530 186.15561 789.23555 726.75240 -0.04016 4.22364 2.08448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63082 0.19687 -1.00000 - 16441 2017 8 21 22 7 57 455 4.8530 186.15220 789.27894 726.79010 -0.04030 4.25412 2.09055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63047 0.19687 -1.00000 - 16442 2017 8 21 22 8 2 308 4.8531 186.14884 789.32080 726.82771 -0.04043 4.28148 2.09274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63012 0.19687 -1.00000 - 16443 2017 8 21 22 8 7 161 4.8531 186.14551 789.36793 726.86523 -0.04048 4.30294 2.09482 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62976 0.19687 -1.00000 - 16444 2017 8 21 22 8 12 14 4.8531 186.14221 789.40763 726.90297 -0.04048 4.32197 2.09804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62941 0.19687 -1.00000 - 16445 2017 8 21 22 8 16 867 4.8532 186.13888 789.45255 726.94069 -0.04056 4.34029 2.09809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62906 0.19687 -1.00000 - 16446 2017 8 21 22 8 21 720 4.8532 186.13550 789.49657 726.97842 -0.04072 4.35600 2.09936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62871 0.19687 -1.00000 - 16447 2017 8 21 22 8 26 574 4.8533 186.13209 789.53975 727.01625 -0.04071 4.36992 2.10151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62835 0.19687 -1.00000 - 16448 2017 8 21 22 8 31 427 4.8533 186.12869 789.58394 727.05405 -0.04086 4.37904 2.10096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62800 0.19687 -1.00000 - 16449 2017 8 21 22 8 36 280 4.8534 186.12535 789.62731 727.09186 -0.04088 4.38671 2.10196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62765 0.19687 -1.00000 - 16450 2017 8 21 22 8 41 134 4.8534 186.12204 789.66982 727.12986 -0.04079 4.33951 2.09981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62729 0.19687 -1.00000 - 16451 2017 8 21 22 8 45 987 4.8534 186.11873 789.71915 727.16789 -0.04069 4.38960 2.09767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62694 0.19687 -1.00000 - 16452 2017 8 21 22 8 50 841 4.8535 186.11536 789.76370 727.20607 -0.04100 4.40462 2.09876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62659 0.19687 -1.00000 - 16453 2017 8 21 22 8 55 694 4.8535 186.11195 789.80753 727.24427 -0.04118 4.41902 2.09752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62623 0.19687 -1.00000 - 16454 2017 8 21 22 9 0 548 4.8536 186.10854 789.85459 727.28258 -0.04128 4.43040 2.09478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62588 0.19687 -1.00000 - 16455 2017 8 21 22 9 5 401 4.8536 186.10517 789.89386 727.32102 -0.04147 4.43724 2.09236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62553 0.19687 -1.00000 - 16456 2017 8 21 22 9 10 255 4.8537 186.10185 789.93580 727.35955 -0.04141 4.44075 2.09279 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62518 0.19687 -1.00000 - 16457 2017 8 21 22 9 15 109 4.8537 186.09854 789.98268 727.39808 -0.04121 4.44164 2.09159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62482 0.19687 -1.00000 - 16458 2017 8 21 22 9 19 962 4.8537 186.09520 790.02848 727.43666 -0.04112 4.44003 2.09095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62447 0.19687 -1.00000 - 16459 2017 8 21 22 9 24 816 4.8538 186.09180 790.07487 727.47537 -0.04163 4.43610 2.09059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62412 0.19687 -1.00000 - 16460 2017 8 21 22 9 29 670 4.8538 186.08836 790.12159 727.51418 -0.04179 4.43009 2.08988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62376 0.19687 -1.00000 - 16461 2017 8 21 22 9 34 524 4.8539 186.08495 790.16849 727.55298 -0.04184 4.42220 2.08823 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62341 0.19687 -1.00000 - 16462 2017 8 21 22 9 39 378 4.8539 186.08159 790.21518 727.59181 -0.04200 4.41263 2.08875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62306 0.19687 -1.00000 - 16463 2017 8 21 22 9 44 232 4.8540 186.07828 790.26211 727.63064 -0.04192 4.40159 2.08968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62270 0.19687 -1.00000 - 16464 2017 8 21 22 9 49 86 4.8540 186.07497 790.30941 727.66948 -0.04176 4.38933 2.08942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62235 0.19687 -1.00000 - 16465 2017 8 21 22 9 53 940 4.8540 186.07161 790.35668 727.70828 -0.04195 4.37608 2.09142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62200 0.19687 -1.00000 - 16466 2017 8 21 22 9 58 794 4.8541 186.06817 790.40408 727.74703 -0.04229 4.36210 2.09210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62165 0.19687 -1.00000 - 16467 2017 8 21 22 10 3 648 4.8541 186.06471 790.45167 727.78573 -0.04232 4.34765 2.09365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62129 0.19686 -1.00000 - 16468 2017 8 21 22 10 8 502 4.8542 186.06130 790.49940 727.82429 -0.04239 4.33300 2.09566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62094 0.19686 -1.00000 - 16469 2017 8 21 22 10 13 356 4.8542 186.05795 790.54705 727.86270 -0.04248 4.31843 2.09717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62059 0.19686 -1.00000 - 16470 2017 8 21 22 10 18 211 4.8543 186.05464 790.59455 727.90099 -0.04245 4.30420 2.09942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62023 0.19686 -1.00000 - 16471 2017 8 21 22 10 23 65 4.8543 186.05132 790.64182 727.93909 -0.04241 4.29058 2.10137 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61988 0.19686 -1.00000 - 16472 2017 8 21 22 10 27 919 4.8543 186.04795 790.68895 727.97704 -0.04264 4.27785 2.10252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61953 0.19686 -1.00000 - 16473 2017 8 21 22 10 32 774 4.8544 186.04450 790.73587 728.01487 -0.04279 4.26629 2.10374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61917 0.19686 -1.00000 - 16474 2017 8 21 22 10 37 628 4.8544 186.04104 790.78285 728.05257 -0.04275 4.25615 2.10233 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61882 0.19686 -1.00000 - 16475 2017 8 21 22 10 42 482 4.8545 186.03764 790.82949 728.09025 -0.04288 4.24764 2.10342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61847 0.19686 -1.00000 - 16476 2017 8 21 22 10 47 337 4.8545 186.03429 790.87236 728.12772 -0.04293 4.24484 2.10092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61812 0.19686 -1.00000 - 16477 2017 8 21 22 10 52 192 4.8546 186.03096 790.91746 728.16516 -0.04294 4.24374 2.09716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61776 0.19686 -1.00000 - 16478 2017 8 21 22 10 57 46 4.8546 186.02763 790.96385 728.20259 -0.04296 4.23336 2.09607 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61741 0.19686 -1.00000 - 16479 2017 8 21 22 11 1 901 4.8546 186.02425 791.01018 728.23992 -0.04330 4.22968 2.08974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61706 0.19686 -1.00000 - 16480 2017 8 21 22 11 6 755 4.8547 186.02081 791.06339 728.27734 -0.04330 4.22301 2.08535 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61670 0.19686 -1.00000 - 16481 2017 8 21 22 11 11 610 4.8547 186.01737 791.10755 728.31480 -0.04340 4.21448 2.08288 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61635 0.19686 -1.00000 - 16482 2017 8 21 22 11 16 465 4.8548 186.01397 791.14701 728.35221 -0.04343 4.20698 2.07731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61600 0.19686 -1.00000 - 16483 2017 8 21 22 11 21 320 4.8548 186.01061 791.18764 728.38964 -0.04336 4.20085 2.07524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61564 0.19686 -1.00000 - 16484 2017 8 21 22 11 26 175 4.8548 186.00728 791.23353 728.42709 -0.04328 4.19616 2.07057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61529 0.19686 -1.00000 - 16485 2017 8 21 22 11 31 29 4.8549 186.00393 791.27933 728.46446 -0.04356 4.19227 2.06621 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61494 0.19686 -1.00000 - 16486 2017 8 21 22 11 35 884 4.8549 186.00053 791.32471 728.50194 -0.04398 4.18857 2.06243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61459 0.19686 -1.00000 - 16487 2017 8 21 22 11 40 739 4.8550 185.99709 791.37005 728.53948 -0.04385 4.18460 2.05980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61423 0.19686 -1.00000 - 16488 2017 8 21 22 11 45 594 4.8550 185.99365 791.41495 728.57689 -0.04401 4.18010 2.05470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61388 0.19686 -1.00000 - 16489 2017 8 21 22 11 50 449 4.8551 185.99027 791.45945 728.61447 -0.04392 4.17490 2.05200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61353 0.19686 -1.00000 - 16490 2017 8 21 22 11 55 305 4.8551 185.98693 791.50312 728.65203 -0.04366 4.16890 2.05123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61317 0.19686 -1.00000 - 16491 2017 8 21 22 12 0 160 4.8552 185.98360 791.54832 728.68949 -0.04347 4.16191 2.04543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61282 0.19686 -1.00000 - 16492 2017 8 21 22 12 5 15 4.8552 185.98020 791.59343 728.72699 -0.04403 4.15302 2.04364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61247 0.19686 -1.00000 - 16493 2017 8 21 22 12 9 870 4.8552 185.97674 791.63828 728.76445 -0.04436 4.14174 2.04236 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61211 0.19686 -1.00000 - 16494 2017 8 21 22 12 14 725 4.8553 185.97328 791.68294 728.80181 -0.04412 4.12884 2.03740 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61176 0.19685 -1.00000 - 16495 2017 8 21 22 12 19 581 4.8553 185.96987 791.72711 728.83922 -0.04422 4.11488 2.03442 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61141 0.19685 -1.00000 - 16496 2017 8 21 22 12 24 436 4.8554 185.96651 791.77120 728.87676 -0.04402 4.10029 2.03292 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61105 0.19685 -1.00000 - 16497 2017 8 21 22 12 29 291 4.8554 185.96317 791.81501 728.91416 -0.04371 4.08533 2.02761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61070 0.19685 -1.00000 - 16498 2017 8 21 22 12 34 147 4.8555 185.95981 791.86208 728.95169 -0.04364 4.06866 2.02403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61035 0.19685 -1.00000 - 16499 2017 8 21 22 12 39 2 4.8555 185.95637 791.90497 728.98947 -0.04417 4.04656 2.01869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61000 0.19685 -1.00000 - 16500 2017 8 21 22 12 43 858 4.8555 185.95288 791.95349 729.02726 -0.04431 4.03505 2.01241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60964 0.19685 -1.00000 - 16501 2017 8 21 22 12 48 714 4.8556 185.94942 791.99937 729.06517 -0.04425 4.02135 2.01099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60929 0.19685 -1.00000 - 16502 2017 8 21 22 12 53 569 4.8556 185.94601 792.04306 729.10311 -0.04436 4.00685 2.00534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60894 0.19685 -1.00000 - 16503 2017 8 21 22 12 58 425 4.8557 185.94266 792.09168 729.14099 -0.04423 3.98925 1.99981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60858 0.19685 -1.00000 - 16504 2017 8 21 22 13 3 281 4.8557 185.93933 792.13662 729.17902 -0.04404 3.97150 1.99769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60823 0.19685 -1.00000 - 16505 2017 8 21 22 13 8 136 4.8558 185.93595 792.18152 729.21708 -0.04407 3.95957 1.99139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60788 0.19685 -1.00000 - 16506 2017 8 21 22 13 12 992 4.8558 185.93249 792.23127 729.25522 -0.04453 3.95010 1.98298 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60752 0.19685 -1.00000 - 16507 2017 8 21 22 13 17 848 4.8558 185.92899 792.27757 729.29353 -0.04460 3.94025 1.98156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60717 0.19685 -1.00000 - 16508 2017 8 21 22 13 22 704 4.8559 185.92553 792.31935 729.33186 -0.04475 3.93110 1.97376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60682 0.19685 -1.00000 - 16509 2017 8 21 22 13 27 560 4.8559 185.92213 792.36731 729.37009 -0.04488 3.91957 1.96465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60646 0.19685 -1.00000 - 16510 2017 8 21 22 13 32 416 4.8560 185.91877 792.41437 729.40852 -0.04484 3.86356 1.96083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60611 0.19685 -1.00000 - 16511 2017 8 21 22 13 37 272 4.8560 185.91543 792.46316 729.44689 -0.04474 3.86775 1.95167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60576 0.19685 -1.00000 - 16512 2017 8 21 22 13 42 128 4.8561 185.91203 792.50847 729.48528 -0.04501 3.86710 1.94533 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60540 0.19685 -1.00000 - 16513 2017 8 21 22 13 46 984 4.8561 185.90857 792.55292 729.52393 -0.04541 3.86410 1.94272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60505 0.19685 -1.00000 - 16514 2017 8 21 22 13 51 840 4.8561 185.90508 792.59432 729.56238 -0.04535 3.85650 1.93530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60470 0.19685 -1.00000 - 16515 2017 8 21 22 13 56 696 4.8562 185.90163 792.63992 729.60098 -0.04555 3.86049 1.93023 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60435 0.19685 -1.00000 - 16516 2017 8 21 22 14 1 552 4.8562 185.89823 792.68581 729.63976 -0.04563 3.86863 1.92803 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60399 0.19685 -1.00000 - 16517 2017 8 21 22 14 6 409 4.8563 185.89488 792.73294 729.67845 -0.04559 3.87418 1.92142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60364 0.19685 -1.00000 - 16518 2017 8 21 22 14 11 265 4.8563 185.89152 792.78007 729.71715 -0.04561 3.87778 1.91853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60329 0.19685 -1.00000 - 16519 2017 8 21 22 14 16 121 4.8564 185.88811 792.82701 729.75594 -0.04621 3.88634 1.91795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60293 0.19685 -1.00000 - 16520 2017 8 21 22 14 20 978 4.8564 185.88463 792.87134 729.79452 -0.04640 3.89730 1.91245 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60258 0.19685 -1.00000 - 16521 2017 8 21 22 14 25 834 4.8564 185.88116 792.91748 729.83312 -0.04626 3.90698 1.90942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60223 0.19685 -1.00000 - 16522 2017 8 21 22 14 30 691 4.8565 185.87773 792.96333 729.87182 -0.04634 3.91511 1.90882 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60187 0.19684 -1.00000 - 16523 2017 8 21 22 14 35 547 4.8565 185.87434 793.00963 729.91037 -0.04625 3.92101 1.90435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60152 0.19684 -1.00000 - 16524 2017 8 21 22 14 40 404 4.8566 185.87098 793.05673 729.94891 -0.04621 3.92440 1.90268 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60117 0.19684 -1.00000 - 16525 2017 8 21 22 14 45 260 4.8566 185.86760 793.10361 729.98755 -0.04676 3.92531 1.90124 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60081 0.19684 -1.00000 - 16526 2017 8 21 22 14 50 117 4.8567 185.86416 793.14899 730.02611 -0.04710 3.92398 1.89795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60046 0.19684 -1.00000 - 16527 2017 8 21 22 14 54 974 4.8567 185.86069 793.19568 730.06471 -0.04702 3.92091 1.89770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60011 0.19684 -1.00000 - 16528 2017 8 21 22 14 59 831 4.8567 185.85723 793.24272 730.10333 -0.04694 3.91628 1.89668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59975 0.19684 -1.00000 - 16529 2017 8 21 22 15 4 687 4.8568 185.85382 793.28980 730.14183 -0.04682 3.91030 1.89546 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59940 0.19684 -1.00000 - 16530 2017 8 21 22 15 9 544 4.8568 185.85045 793.33684 730.18031 -0.04666 3.90314 1.89609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59905 0.19684 -1.00000 - 16531 2017 8 21 22 15 14 401 4.8569 185.84707 793.38405 730.21871 -0.04704 3.89499 1.89554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59869 0.19684 -1.00000 - 16532 2017 8 21 22 15 19 258 4.8569 185.84364 793.43104 730.25706 -0.04737 3.88609 1.89520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59834 0.19684 -1.00000 - 16533 2017 8 21 22 15 24 115 4.8570 185.84017 793.47798 730.29534 -0.04742 3.87664 1.89609 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59799 0.19684 -1.00000 - 16534 2017 8 21 22 15 28 972 4.8570 185.83670 793.52485 730.33351 -0.04722 3.86681 1.89594 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59763 0.19684 -1.00000 - 16535 2017 8 21 22 15 33 829 4.8571 185.83328 793.57166 730.37163 -0.04714 3.85680 1.89545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59728 0.19684 -1.00000 - 16536 2017 8 21 22 15 38 686 4.8571 185.82989 793.61848 730.40977 -0.04698 3.84680 1.89638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59693 0.19684 -1.00000 - 16537 2017 8 21 22 15 43 543 4.8571 185.82650 793.66527 730.44779 -0.04690 3.83706 1.89450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59657 0.19684 -1.00000 - 16538 2017 8 21 22 15 48 400 4.8572 185.82307 793.71168 730.48584 -0.04720 3.82780 1.89523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59622 0.19684 -1.00000 - 16539 2017 8 21 22 15 53 258 4.8572 185.81960 793.75783 730.52381 -0.04732 3.81924 1.89386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59587 0.19684 -1.00000 - 16540 2017 8 21 22 15 58 115 4.8573 185.81613 793.80404 730.56170 -0.04713 3.81158 1.89073 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59552 0.19684 -1.00000 - 16541 2017 8 21 22 16 2 972 4.8573 185.81269 793.84881 730.59975 -0.04718 3.80481 1.88938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59516 0.19684 -1.00000 - 16542 2017 8 21 22 16 7 830 4.8574 185.80928 793.89577 730.63787 -0.04705 3.79938 1.88550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59481 0.19684 -1.00000 - 16543 2017 8 21 22 16 12 687 4.8574 185.80588 793.94243 730.67590 -0.04682 3.79306 1.88080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59446 0.19684 -1.00000 - 16544 2017 8 21 22 16 17 544 4.8574 185.80246 793.99106 730.71400 -0.04663 3.78423 1.87812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59410 0.19684 -1.00000 - 16545 2017 8 21 22 16 22 402 4.8575 185.79900 794.03661 730.75219 -0.04703 3.77464 1.87513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59375 0.19684 -1.00000 - 16546 2017 8 21 22 16 27 259 4.8575 185.79552 794.08141 730.79046 -0.04713 3.76360 1.87241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59340 0.19684 -1.00000 - 16547 2017 8 21 22 16 32 117 4.8576 185.79205 794.12672 730.82879 -0.04706 3.70822 1.86817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59304 0.19684 -1.00000 - 16548 2017 8 21 22 16 36 975 4.8576 185.78860 794.17391 730.86714 -0.04717 3.70847 1.86634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59269 0.19684 -1.00000 - 16549 2017 8 21 22 16 41 832 4.8577 185.78519 794.22128 730.90561 -0.04703 3.70051 1.86597 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59234 0.19684 -1.00000 - 16550 2017 8 21 22 16 46 690 4.8577 185.78180 794.26792 730.94393 -0.04679 3.69302 1.86170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59198 0.19683 -1.00000 - 16551 2017 8 21 22 16 51 548 4.8578 185.77837 794.31950 730.98233 -0.04685 3.68389 1.86080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59163 0.19683 -1.00000 - 16552 2017 8 21 22 16 56 406 4.8578 185.77489 794.36544 731.02073 -0.04734 3.67213 1.86246 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59128 0.19683 -1.00000 - 16553 2017 8 21 22 17 1 263 4.8578 185.77138 794.41034 731.05918 -0.04743 3.66180 1.85790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59092 0.19683 -1.00000 - 16554 2017 8 21 22 17 6 121 4.8579 185.76789 794.45989 731.09770 -0.04761 3.65587 1.85736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59057 0.19683 -1.00000 - 16555 2017 8 21 22 17 10 979 4.8579 185.76446 794.50770 731.13622 -0.04769 3.64950 1.85948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59022 0.19683 -1.00000 - 16556 2017 8 21 22 17 15 837 4.8580 185.76106 794.55361 731.17465 -0.04754 3.64353 1.85778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58986 0.19683 -1.00000 - 16557 2017 8 21 22 17 20 695 4.8580 185.75767 794.60473 731.21295 -0.04740 3.63544 1.85879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58951 0.19683 -1.00000 - 16558 2017 8 21 22 17 25 553 4.8581 185.75422 794.65133 731.25118 -0.04790 3.62693 1.86099 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58916 0.19683 -1.00000 - 16559 2017 8 21 22 17 30 411 4.8581 185.75072 794.69640 731.28938 -0.04819 3.62398 1.85939 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58880 0.19683 -1.00000 - 16560 2017 8 21 22 17 35 270 4.8581 185.74720 794.74648 731.32755 -0.04816 3.62309 1.85990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58845 0.19683 -1.00000 - 16561 2017 8 21 22 17 40 128 4.8582 185.74372 794.79356 731.36572 -0.04836 3.62147 1.86394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58810 0.19683 -1.00000 - 16562 2017 8 21 22 17 44 986 4.8582 185.74029 794.83865 731.40378 -0.04836 3.62002 1.86289 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58774 0.19683 -1.00000 - 16563 2017 8 21 22 17 49 844 4.8583 185.73689 794.88835 731.44166 -0.04830 3.61596 1.86486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58739 0.19683 -1.00000 - 16564 2017 8 21 22 17 54 703 4.8583 185.73350 794.93400 731.47950 -0.04863 3.61221 1.86899 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58704 0.19683 -1.00000 - 16565 2017 8 21 22 17 59 561 4.8584 185.73004 794.97955 731.51723 -0.04895 3.61392 1.86799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58668 0.19683 -1.00000 - 16566 2017 8 21 22 18 4 419 4.8584 185.72653 795.02898 731.55494 -0.04902 3.61756 1.86849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58633 0.19683 -1.00000 - 16567 2017 8 21 22 18 9 278 4.8585 185.72302 795.07514 731.59270 -0.04906 3.62052 1.87164 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58598 0.19683 -1.00000 - 16568 2017 8 21 22 18 14 136 4.8585 185.71956 795.11911 731.63031 -0.04910 3.62340 1.87267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58562 0.19683 -1.00000 - 16569 2017 8 21 22 18 18 995 4.8585 185.71615 795.16697 731.66782 -0.04905 3.62326 1.87374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58527 0.19683 -1.00000 - 16570 2017 8 21 22 18 23 853 4.8586 185.71275 795.21087 731.70529 -0.04914 3.62391 1.87592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58492 0.19683 -1.00000 - 16571 2017 8 21 22 18 28 712 4.8586 185.70932 795.25647 731.74272 -0.04960 3.63029 1.87599 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58456 0.19683 -1.00000 - 16572 2017 8 21 22 18 33 571 4.8587 185.70584 795.30619 731.78012 -0.04984 3.63839 1.87858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58421 0.19683 -1.00000 - 16573 2017 8 21 22 18 38 429 4.8587 185.70235 795.34838 731.81743 -0.04973 3.64297 1.88025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58386 0.19683 -1.00000 - 16574 2017 8 21 22 18 43 288 4.8588 185.69889 795.39398 731.85466 -0.04964 3.64490 1.88030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58350 0.19683 -1.00000 - 16575 2017 8 21 22 18 48 147 4.8588 185.69545 795.43814 731.89188 -0.04955 3.64669 1.88336 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58315 0.19683 -1.00000 - 16576 2017 8 21 22 18 53 6 4.8588 185.69202 795.47982 731.92897 -0.04948 3.64982 1.88496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58280 0.19683 -1.00000 - 16577 2017 8 21 22 18 57 865 4.8589 185.68859 795.52931 731.96586 -0.04991 3.63448 1.88329 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58244 0.19683 -1.00000 - 16578 2017 8 21 22 19 2 724 4.8589 185.68513 795.57353 732.00284 -0.05027 3.65649 1.88758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58209 0.19682 -1.00000 - 16579 2017 8 21 22 19 7 583 4.8590 185.68165 795.61756 732.03973 -0.05034 3.67741 1.89000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58174 0.19682 -1.00000 - 16580 2017 8 21 22 19 12 442 4.8590 185.67817 795.65859 732.07641 -0.05014 3.69520 1.88978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58138 0.19682 -1.00000 - 16581 2017 8 21 22 19 17 301 4.8591 185.67473 795.70215 732.11311 -0.04993 3.70904 1.89231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58103 0.19682 -1.00000 - 16582 2017 8 21 22 19 22 160 4.8591 185.67130 795.74499 732.14974 -0.04985 3.72537 1.89652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58068 0.19682 -1.00000 - 16583 2017 8 21 22 19 27 19 4.8592 185.66786 795.78859 732.18624 -0.05003 3.74440 1.89878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58032 0.19682 -1.00000 - 16584 2017 8 21 22 19 31 878 4.8592 185.66438 795.83244 732.22266 -0.05030 3.77170 1.90148 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57997 0.19682 -1.00000 - 16585 2017 8 21 22 19 36 737 4.8592 185.66090 795.87590 732.25902 -0.05048 3.80009 1.90789 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57962 0.19682 -1.00000 - 16586 2017 8 21 22 19 41 597 4.8593 185.65742 795.91731 732.29516 -0.05043 3.82918 1.90970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57926 0.19682 -1.00000 - 16587 2017 8 21 22 19 46 456 4.8593 185.65396 795.95953 732.33124 -0.05021 3.85908 1.91450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57891 0.19682 -1.00000 - 16588 2017 8 21 22 19 51 315 4.8594 185.65051 796.00088 732.36724 -0.05002 3.88944 1.91995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57856 0.19682 -1.00000 - 16589 2017 8 21 22 19 56 175 4.8594 185.64706 796.04504 732.40299 -0.05001 3.91823 1.92224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57820 0.19682 -1.00000 - 16590 2017 8 21 22 20 1 34 4.8595 185.64360 796.08720 732.43871 -0.05014 3.94579 1.92806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57785 0.19682 -1.00000 - 16591 2017 8 21 22 20 5 894 4.8595 185.64011 796.12936 732.47430 -0.05025 3.97270 1.93214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57750 0.19682 -1.00000 - 16592 2017 8 21 22 20 10 753 4.8596 185.63662 796.16863 732.50969 -0.05024 3.99860 1.93492 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57714 0.19682 -1.00000 - 16593 2017 8 21 22 20 15 613 4.8596 185.63314 796.20953 732.54510 -0.05009 4.02380 1.94020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57679 0.19682 -1.00000 - 16594 2017 8 21 22 20 20 473 4.8596 185.62967 796.25056 732.58042 -0.05005 4.04804 1.94371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57644 0.19682 -1.00000 - 16595 2017 8 21 22 20 25 332 4.8597 185.62622 796.29151 732.61550 -0.04996 4.07076 1.94688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57608 0.19682 -1.00000 - 16596 2017 8 21 22 20 30 192 4.8597 185.62275 796.33217 732.65064 -0.05000 4.09168 1.95231 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57573 0.19682 -1.00000 - 16597 2017 8 21 22 20 35 52 4.8598 185.61926 796.37364 732.68561 -0.05012 4.11074 1.95509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57538 0.19682 -1.00000 - 16598 2017 8 21 22 20 39 912 4.8598 185.61576 796.41453 732.72043 -0.05012 4.12807 1.95905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57502 0.19682 -1.00000 - 16599 2017 8 21 22 20 44 771 4.8599 185.61227 796.45507 732.75526 -0.05013 4.14384 1.96360 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57467 0.19682 -1.00000 - 16600 2017 8 21 22 20 49 631 4.8599 185.60877 796.49577 732.78990 -0.05013 4.15824 1.96644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57432 0.19682 -1.00000 - 16601 2017 8 21 22 20 54 491 4.8600 185.60529 796.53646 732.82456 -0.05006 4.17151 1.96942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57396 0.19682 -1.00000 - 16602 2017 8 21 22 20 59 351 4.8600 185.60185 796.57723 732.85925 -0.05009 4.18389 1.97438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57361 0.19682 -1.00000 - 16603 2017 8 21 22 21 4 211 4.8600 185.59840 796.61588 732.89369 -0.05029 4.19561 1.97462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57326 0.19682 -1.00000 - 16604 2017 8 21 22 21 9 71 4.8601 185.59490 796.65518 732.92804 -0.05042 4.20712 1.97543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57290 0.19682 -1.00000 - 16605 2017 8 21 22 21 13 932 4.8601 185.59139 796.69563 732.96253 -0.05045 4.21746 1.97795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57255 0.19682 -1.00000 - 16606 2017 8 21 22 21 18 792 4.8602 185.58788 796.73873 732.99682 -0.05053 4.22480 1.97747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57220 0.19681 -1.00000 - 16607 2017 8 21 22 21 23 652 4.8602 185.58441 796.77870 733.03110 -0.05059 4.22998 1.97847 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57184 0.19681 -1.00000 - 16608 2017 8 21 22 21 28 512 4.8603 185.58096 796.81890 733.06543 -0.05069 4.23652 1.98134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57149 0.19681 -1.00000 - 16609 2017 8 21 22 21 33 373 4.8603 185.57750 796.85549 733.09962 -0.05101 4.24383 1.98009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57113 0.19681 -1.00000 - 16610 2017 8 21 22 21 38 233 4.8603 185.57403 796.89537 733.13381 -0.05137 4.25147 1.97980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57078 0.19681 -1.00000 - 16611 2017 8 21 22 21 43 93 4.8604 185.57053 796.93337 733.16807 -0.05163 4.25919 1.98107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57043 0.19681 -1.00000 - 16612 2017 8 21 22 21 47 954 4.8604 185.56703 796.97390 733.20218 -0.05174 4.26544 1.97932 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57007 0.19681 -1.00000 - 16613 2017 8 21 22 21 52 814 4.8605 185.56355 797.01308 733.23638 -0.05172 4.26908 1.97868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56972 0.19681 -1.00000 - 16614 2017 8 21 22 21 57 675 4.8605 185.56007 797.05390 733.27061 -0.05172 4.27032 1.97782 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56937 0.19681 -1.00000 - 16615 2017 8 21 22 22 2 535 4.8606 185.55660 797.09391 733.30468 -0.05186 4.26967 1.97443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56901 0.19681 -1.00000 - 16616 2017 8 21 22 22 7 396 4.8606 185.55313 797.13226 733.33892 -0.05218 4.26758 1.97413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56866 0.19681 -1.00000 - 16617 2017 8 21 22 22 12 257 4.8607 185.54966 797.17149 733.37317 -0.05252 4.26442 1.97160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56831 0.19681 -1.00000 - 16618 2017 8 21 22 22 17 117 4.8607 185.54617 797.21220 733.40746 -0.05271 4.25958 1.96731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56795 0.19681 -1.00000 - 16619 2017 8 21 22 22 21 978 4.8607 185.54269 797.25225 733.44174 -0.05266 4.25219 1.96808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56760 0.19681 -1.00000 - 16620 2017 8 21 22 22 26 839 4.8608 185.53921 797.29253 733.47608 -0.05251 4.18658 1.96256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56725 0.19681 -1.00000 - 16621 2017 8 21 22 22 31 700 4.8608 185.53573 797.33459 733.51059 -0.05248 4.18046 1.95765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56689 0.19681 -1.00000 - 16622 2017 8 21 22 22 36 561 4.8609 185.53224 797.37246 733.54520 -0.05269 4.18122 1.95653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56654 0.19681 -1.00000 - 16623 2017 8 21 22 22 41 421 4.8609 185.52875 797.41391 733.57981 -0.05303 4.17319 1.95084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56619 0.19681 -1.00000 - 16624 2017 8 21 22 22 46 282 4.8610 185.52527 797.45425 733.61442 -0.05323 4.16081 1.94801 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56583 0.19681 -1.00000 - 16625 2017 8 21 22 22 51 143 4.8610 185.52179 797.49520 733.64927 -0.05316 4.12075 1.94475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56548 0.19681 -1.00000 - 16626 2017 8 21 22 22 56 4 4.8611 185.51831 797.54051 733.68418 -0.05293 4.10243 1.93725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56513 0.19681 -1.00000 - 16627 2017 8 21 22 23 0 866 4.8611 185.51483 797.58210 733.71914 -0.05273 4.08043 1.93281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56477 0.19681 -1.00000 - 16628 2017 8 21 22 23 5 727 4.8611 185.51135 797.62047 733.75427 -0.05273 4.05716 1.92755 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56442 0.19681 -1.00000 - 16629 2017 8 21 22 23 10 588 4.8612 185.50786 797.66295 733.78940 -0.05288 4.03021 1.92036 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56406 0.19681 -1.00000 - 16630 2017 8 21 22 23 15 449 4.8612 185.50438 797.70424 733.82463 -0.05301 4.00715 1.91734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56371 0.19681 -1.00000 - 16631 2017 8 21 22 23 20 310 4.8613 185.50089 797.74647 733.86003 -0.05301 3.97730 1.90968 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56336 0.19681 -1.00000 - 16632 2017 8 21 22 23 25 172 4.8613 185.49739 797.79355 733.89552 -0.05289 3.95390 1.90181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56300 0.19681 -1.00000 - 16633 2017 8 21 22 23 30 33 4.8614 185.49390 797.83614 733.93118 -0.05282 3.92868 1.89955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56265 0.19680 -1.00000 - 16634 2017 8 21 22 23 34 895 4.8614 185.49042 797.87555 733.96691 -0.05286 3.90296 1.89207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56230 0.19680 -1.00000 - 16635 2017 8 21 22 23 39 756 4.8615 185.48694 797.92080 734.00263 -0.05295 3.87428 1.88547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56194 0.19680 -1.00000 - 16636 2017 8 21 22 23 44 618 4.8615 185.48346 797.96333 734.03850 -0.05297 3.84490 1.88191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56159 0.19680 -1.00000 - 16637 2017 8 21 22 23 49 479 4.8615 185.47996 798.00661 734.07446 -0.05290 3.82164 1.87281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56124 0.19680 -1.00000 - 16638 2017 8 21 22 23 54 341 4.8616 185.47646 798.05479 734.11054 -0.05283 3.80066 1.86451 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56088 0.19680 -1.00000 - 16639 2017 8 21 22 23 59 202 4.8616 185.47296 798.09878 734.14690 -0.05287 3.77891 1.85871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56053 0.19680 -1.00000 - 16640 2017 8 21 22 24 4 64 4.8617 185.46946 798.13857 734.18337 -0.05297 3.75728 1.85000 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56018 0.19680 -1.00000 - 16641 2017 8 21 22 24 8 926 4.8617 185.46597 798.18797 734.21995 -0.05302 3.73275 1.83969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55982 0.19680 -1.00000 - 16642 2017 8 21 22 24 13 787 4.8618 185.46247 798.22651 734.25673 -0.05298 3.70681 1.83175 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55947 0.19680 -1.00000 - 16643 2017 8 21 22 24 18 649 4.8618 185.45898 798.27556 734.29350 -0.05295 3.66801 1.82120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55912 0.19680 -1.00000 - 16644 2017 8 21 22 24 23 511 4.8619 185.45547 798.32234 734.33057 -0.05299 3.65205 1.81335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55876 0.19680 -1.00000 - 16645 2017 8 21 22 24 28 373 4.8619 185.45196 798.36276 734.36782 -0.05309 3.63658 1.80498 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55841 0.19680 -1.00000 - 16646 2017 8 21 22 24 33 235 4.8620 185.44846 798.40687 734.40518 -0.05317 3.62267 1.79593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55805 0.19680 -1.00000 - 16647 2017 8 21 22 24 38 97 4.8620 185.44495 798.45305 734.44272 -0.05318 3.61027 1.79021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55770 0.19680 -1.00000 - 16648 2017 8 21 22 24 42 959 4.8620 185.44144 798.49940 734.48031 -0.05319 3.59866 1.78444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55735 0.19680 -1.00000 - 16649 2017 8 21 22 24 47 821 4.8621 185.43793 798.54693 734.51791 -0.05325 3.58700 1.77606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55699 0.19680 -1.00000 - 16650 2017 8 21 22 24 52 683 4.8621 185.43443 798.59431 734.55557 -0.05334 3.57483 1.77274 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55664 0.19680 -1.00000 - 16651 2017 8 21 22 24 57 545 4.8622 185.43093 798.64150 734.59325 -0.05342 3.56202 1.76835 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55629 0.19680 -1.00000 - 16652 2017 8 21 22 25 2 408 4.8622 185.42743 798.68906 734.63098 -0.05347 3.54868 1.76220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55593 0.19680 -1.00000 - 16653 2017 8 21 22 25 7 270 4.8623 185.42393 798.73657 734.66863 -0.05355 3.53508 1.76048 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55558 0.19680 -1.00000 - 16654 2017 8 21 22 25 12 132 4.8623 185.42041 798.78428 734.70616 -0.05367 3.52152 1.75519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55523 0.19680 -1.00000 - 16655 2017 8 21 22 25 16 995 4.8624 185.41690 798.83195 734.74372 -0.05382 3.50834 1.75134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55487 0.19680 -1.00000 - 16656 2017 8 21 22 25 21 857 4.8624 185.41339 798.87731 734.78127 -0.05395 3.49582 1.74805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55452 0.19680 -1.00000 - 16657 2017 8 21 22 25 26 719 4.8624 185.40989 798.92413 734.81876 -0.05403 3.48440 1.74345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55417 0.19680 -1.00000 - 16658 2017 8 21 22 25 31 582 4.8625 185.40639 798.97256 734.85626 -0.05412 3.47355 1.73974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55381 0.19680 -1.00000 - 16659 2017 8 21 22 25 36 444 4.8625 185.40289 799.02245 734.89362 -0.05425 3.46120 1.73579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55346 0.19680 -1.00000 - 16660 2017 8 21 22 25 41 307 4.8626 185.39938 799.07070 734.93098 -0.05440 3.44737 1.73139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55310 0.19680 -1.00000 - 16661 2017 8 21 22 25 46 170 4.8626 185.39588 799.11724 734.96832 -0.05454 3.43541 1.72999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55275 0.19679 -1.00000 - 16662 2017 8 21 22 25 51 32 4.8627 185.39237 799.16095 735.00545 -0.05463 3.42527 1.72661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55240 0.19679 -1.00000 - 16663 2017 8 21 22 25 55 895 4.8627 185.38887 799.20817 735.04252 -0.05467 3.41662 1.72234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55204 0.19679 -1.00000 - 16664 2017 8 21 22 26 0 758 4.8628 185.38536 799.25513 735.07952 -0.05471 3.40903 1.72285 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55169 0.19679 -1.00000 - 16665 2017 8 21 22 26 5 621 4.8628 185.38185 799.30167 735.11638 -0.05480 3.40163 1.71969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55134 0.19679 -1.00000 - 16666 2017 8 21 22 26 10 483 4.8628 185.37835 799.34774 735.15300 -0.05493 3.39367 1.71784 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55098 0.19679 -1.00000 - 16667 2017 8 21 22 26 15 346 4.8629 185.37484 799.39354 735.18963 -0.05506 3.38481 1.71765 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55063 0.19679 -1.00000 - 16668 2017 8 21 22 26 20 209 4.8629 185.37134 799.43998 735.22613 -0.05515 3.37522 1.71651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55028 0.19679 -1.00000 - 16669 2017 8 21 22 26 25 72 4.8630 185.36783 799.48577 735.26247 -0.05521 3.36514 1.71455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54992 0.19679 -1.00000 - 16670 2017 8 21 22 26 29 935 4.8630 185.36432 799.53083 735.29876 -0.05527 3.35493 1.71508 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54957 0.19679 -1.00000 - 16671 2017 8 21 22 26 34 798 4.8631 185.36081 799.57557 735.33488 -0.05533 3.34531 1.71616 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54921 0.19679 -1.00000 - 16672 2017 8 21 22 26 39 661 4.8631 185.35731 799.62019 735.37090 -0.05542 3.33684 1.71434 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54886 0.19679 -1.00000 - 16673 2017 8 21 22 26 44 525 4.8632 185.35380 799.66444 735.40685 -0.05550 3.32990 1.71625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54851 0.19679 -1.00000 - 16674 2017 8 21 22 26 49 388 4.8632 185.35029 799.70690 735.44261 -0.05556 3.32474 1.71457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54815 0.19679 -1.00000 - 16675 2017 8 21 22 26 54 251 4.8632 185.34679 799.75075 735.47833 -0.05560 3.32153 1.71345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54780 0.19679 -1.00000 - 16676 2017 8 21 22 26 59 114 4.8633 185.34328 799.79234 735.51413 -0.05564 3.31999 1.71373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54745 0.19679 -1.00000 - 16677 2017 8 21 22 27 3 978 4.8633 185.33977 799.83396 735.54984 -0.05568 3.31819 1.71136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54709 0.19679 -1.00000 - 16678 2017 8 21 22 27 8 841 4.8634 185.33626 799.87678 735.58574 -0.05575 3.31385 1.71024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54674 0.19679 -1.00000 - 16679 2017 8 21 22 27 13 705 4.8634 185.33275 799.92180 735.62180 -0.05583 3.30829 1.71038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54639 0.19679 -1.00000 - 16680 2017 8 21 22 27 18 568 4.8635 185.32923 799.97148 735.65786 -0.05590 3.24686 1.70620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54603 0.19679 -1.00000 - 16681 2017 8 21 22 27 23 432 4.8635 185.32572 800.01751 735.69394 -0.05595 3.25872 1.70588 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54568 0.19679 -1.00000 - 16682 2017 8 21 22 27 28 295 4.8636 185.32220 800.05589 735.73011 -0.05597 3.23809 1.70638 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54532 0.19679 -1.00000 - 16683 2017 8 21 22 27 33 159 4.8636 185.31869 800.09891 735.76630 -0.05598 3.24446 1.70354 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54497 0.19679 -1.00000 - 16684 2017 8 21 22 27 38 22 4.8637 185.31517 800.14196 735.80238 -0.05599 3.24929 1.70524 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54462 0.19679 -1.00000 - 16685 2017 8 21 22 27 42 886 4.8637 185.31166 800.18162 735.83851 -0.05601 3.25347 1.70708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54426 0.19679 -1.00000 - 16686 2017 8 21 22 27 47 750 4.8637 185.30814 800.22603 735.87452 -0.05604 3.25898 1.70604 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54391 0.19679 -1.00000 - 16687 2017 8 21 22 27 52 614 4.8638 185.30462 800.26994 735.91063 -0.05607 3.27269 1.70680 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54356 0.19679 -1.00000 - 16688 2017 8 21 22 27 57 477 4.8638 185.30110 800.31373 735.94675 -0.05609 3.29010 1.71026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54320 0.19679 -1.00000 - 16689 2017 8 21 22 28 2 341 4.8639 185.29757 800.35580 735.98280 -0.05610 3.30637 1.71080 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54285 0.19678 -1.00000 - 16690 2017 8 21 22 28 7 205 4.8639 185.29405 800.39923 736.01883 -0.05610 3.32290 1.71328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54249 0.19678 -1.00000 - 16691 2017 8 21 22 28 12 69 4.8640 185.29053 800.44258 736.05481 -0.05612 3.34144 1.71879 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54214 0.19678 -1.00000 - 16692 2017 8 21 22 28 16 933 4.8640 185.28701 800.48625 736.09065 -0.05614 3.36523 1.71970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54179 0.19678 -1.00000 - 16693 2017 8 21 22 28 21 797 4.8641 185.28349 800.52951 736.12642 -0.05618 3.38666 1.72421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54143 0.19678 -1.00000 - 16694 2017 8 21 22 28 26 661 4.8641 185.27997 800.57130 736.16222 -0.05622 3.40152 1.72970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54108 0.19678 -1.00000 - 16695 2017 8 21 22 28 31 526 4.8642 185.27644 800.61419 736.19781 -0.05625 3.42406 1.73172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54073 0.19678 -1.00000 - 16696 2017 8 21 22 28 36 390 4.8642 185.27292 800.65594 736.23329 -0.05629 3.45004 1.73684 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54037 0.19678 -1.00000 - 16697 2017 8 21 22 28 41 254 4.8642 185.26940 800.69980 736.26869 -0.05632 3.46413 1.74172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54002 0.19678 -1.00000 - 16698 2017 8 21 22 28 46 118 4.8643 185.26587 800.74291 736.30400 -0.05638 3.48490 1.74543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53966 0.19678 -1.00000 - 16699 2017 8 21 22 28 50 983 4.8643 185.26235 800.78578 736.33909 -0.05644 3.51555 1.75271 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53931 0.19678 -1.00000 - 16700 2017 8 21 22 28 55 847 4.8644 185.25883 800.82616 736.37398 -0.05652 3.54740 1.75797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53896 0.19678 -1.00000 - 16701 2017 8 21 22 29 0 711 4.8644 185.25530 800.86817 736.40867 -0.05659 3.57786 1.76155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53860 0.19678 -1.00000 - 16702 2017 8 21 22 29 5 576 4.8645 185.25178 800.90972 736.44319 -0.05665 3.60523 1.76943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53825 0.19678 -1.00000 - 16703 2017 8 21 22 29 10 440 4.8645 185.24826 800.95201 736.47749 -0.05673 3.61686 1.77255 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53790 0.19678 -1.00000 - 16704 2017 8 21 22 29 15 305 4.8646 185.24474 800.99667 736.51161 -0.05681 3.65096 1.77610 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53754 0.19678 -1.00000 - 16705 2017 8 21 22 29 20 170 4.8646 185.24121 801.03684 736.54563 -0.05691 3.68430 1.78387 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53719 0.19678 -1.00000 - 16706 2017 8 21 22 29 25 34 4.8646 185.23769 801.07246 736.57942 -0.05701 3.71793 1.78639 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53683 0.19678 -1.00000 - 16707 2017 8 21 22 29 29 899 4.8647 185.23416 801.11215 736.61307 -0.05711 3.75154 1.79008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53648 0.19678 -1.00000 - 16708 2017 8 21 22 29 34 764 4.8647 185.23063 801.15148 736.64665 -0.05720 3.78474 1.79714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53613 0.19678 -1.00000 - 16709 2017 8 21 22 29 39 628 4.8648 185.22711 801.19064 736.67999 -0.05730 3.81629 1.79991 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53577 0.19678 -1.00000 - 16710 2017 8 21 22 29 44 493 4.8648 185.22358 801.23017 736.71315 -0.05740 3.84538 1.80339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53542 0.19678 -1.00000 - 16711 2017 8 21 22 29 49 358 4.8649 185.22006 801.26952 736.74632 -0.05751 3.87155 1.80732 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53507 0.19678 -1.00000 - 16712 2017 8 21 22 29 54 223 4.8649 185.21653 801.30864 736.77929 -0.05764 3.89468 1.81090 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53471 0.19678 -1.00000 - 16713 2017 8 21 22 29 59 88 4.8650 185.21300 801.34706 736.81211 -0.05777 3.91478 1.81487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53436 0.19678 -1.00000 - 16714 2017 8 21 22 30 3 953 4.8650 185.20948 801.38511 736.84494 -0.05788 3.93191 1.81930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53400 0.19678 -1.00000 - 16715 2017 8 21 22 30 8 818 4.8651 185.20595 801.42308 736.87760 -0.05796 3.94618 1.82331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53365 0.19678 -1.00000 - 16716 2017 8 21 22 30 13 683 4.8651 185.20242 801.46106 736.91020 -0.05804 3.95768 1.82678 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53330 0.19678 -1.00000 - 16717 2017 8 21 22 30 18 548 4.8651 185.19889 801.49733 736.94275 -0.05811 3.96651 1.83123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53294 0.19677 -1.00000 - 16718 2017 8 21 22 30 23 413 4.8652 185.19536 801.53345 736.97511 -0.05819 3.97294 1.83317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53259 0.19677 -1.00000 - 16719 2017 8 21 22 30 28 279 4.8652 185.19183 801.57075 737.00746 -0.05828 3.97744 1.83659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53224 0.19677 -1.00000 - 16720 2017 8 21 22 30 33 144 4.8653 185.18829 801.60782 737.03974 -0.05836 3.97949 1.83876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53188 0.19677 -1.00000 - 16721 2017 8 21 22 30 38 9 4.8653 185.18476 801.64533 737.07195 -0.05843 3.97882 1.83980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53153 0.19677 -1.00000 - 16722 2017 8 21 22 30 42 875 4.8654 185.18123 801.68308 737.10424 -0.05848 3.97541 1.84239 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53117 0.19677 -1.00000 - 16723 2017 8 21 22 30 47 740 4.8654 185.17770 801.71909 737.13650 -0.05851 3.96947 1.84171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53082 0.19677 -1.00000 - 16724 2017 8 21 22 30 52 606 4.8655 185.17418 801.75630 737.16878 -0.05854 3.96198 1.83863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53047 0.19677 -1.00000 - 16725 2017 8 21 22 30 57 471 4.8655 185.17065 801.79199 737.20130 -0.05857 3.95323 1.84054 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53011 0.19677 -1.00000 - 16726 2017 8 21 22 31 2 337 4.8656 185.16712 801.82799 737.23380 -0.05859 3.94016 1.83619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52976 0.19677 -1.00000 - 16727 2017 8 21 22 31 7 202 4.8656 185.16359 801.87320 737.26644 -0.05861 3.92009 1.83103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52940 0.19677 -1.00000 - 16728 2017 8 21 22 31 12 68 4.8656 185.16006 801.91014 737.29925 -0.05863 3.89543 1.83300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52905 0.19677 -1.00000 - 16729 2017 8 21 22 31 16 933 4.8657 185.15653 801.94273 737.33202 -0.05864 3.87078 1.82809 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52870 0.19677 -1.00000 - 16730 2017 8 21 22 31 21 799 4.8657 185.15299 801.97621 737.36499 -0.05865 3.84778 1.82426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52834 0.19677 -1.00000 - 16731 2017 8 21 22 31 26 665 4.8658 185.14946 802.01495 737.39823 -0.05865 3.82736 1.82457 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52799 0.19677 -1.00000 - 16732 2017 8 21 22 31 31 531 4.8658 185.14593 802.05426 737.43151 -0.05865 3.80952 1.82101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52764 0.19677 -1.00000 - 16733 2017 8 21 22 31 36 397 4.8659 185.14239 802.09390 737.46497 -0.05867 3.79389 1.81892 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52728 0.19677 -1.00000 - 16734 2017 8 21 22 31 41 263 4.8659 185.13886 802.13391 737.49856 -0.05869 3.78025 1.81767 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52693 0.19677 -1.00000 - 16735 2017 8 21 22 31 46 129 4.8660 185.13533 802.17390 737.53212 -0.05872 3.78240 1.81536 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52657 0.19677 -1.00000 - 16736 2017 8 21 22 31 50 995 4.8660 185.13179 802.21357 737.56581 -0.05874 3.78543 1.81452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52622 0.19677 -1.00000 - 16737 2017 8 21 22 31 55 861 4.8660 185.12825 802.25342 737.59957 -0.05877 3.78817 1.81480 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52587 0.19677 -1.00000 - 16738 2017 8 21 22 32 0 727 4.8661 185.12472 802.29370 737.63336 -0.05881 3.79066 1.81365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52551 0.19677 -1.00000 - 16739 2017 8 21 22 32 5 593 4.8661 185.12118 802.33405 737.66716 -0.05884 3.79291 1.81389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52516 0.19677 -1.00000 - 16740 2017 8 21 22 32 10 459 4.8662 185.11764 802.37449 737.70090 -0.05889 3.79490 1.81455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52480 0.19677 -1.00000 - 16741 2017 8 21 22 32 15 325 4.8662 185.11410 802.41507 737.73457 -0.05896 3.79657 1.81383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52445 0.19677 -1.00000 - 16742 2017 8 21 22 32 20 192 4.8663 185.11056 802.45557 737.76819 -0.05903 3.79787 1.81430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52410 0.19677 -1.00000 - 16743 2017 8 21 22 32 25 58 4.8663 185.10702 802.49602 737.80175 -0.05912 3.79876 1.81521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52374 0.19677 -1.00000 - 16744 2017 8 21 22 32 29 924 4.8664 185.10348 802.53660 737.83528 -0.05920 3.79922 1.81450 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52339 0.19677 -1.00000 - 16745 2017 8 21 22 32 34 791 4.8664 185.09993 802.57736 737.86879 -0.05928 3.79928 1.81484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52304 0.19676 -1.00000 - 16746 2017 8 21 22 32 39 657 4.8665 185.09639 802.61819 737.90222 -0.05935 3.79905 1.81402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52268 0.19676 -1.00000 - 16747 2017 8 21 22 32 44 524 4.8665 185.09285 802.65900 737.93561 -0.05942 3.79867 1.81216 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52233 0.19676 -1.00000 - 16748 2017 8 21 22 32 49 390 4.8666 185.08930 802.69958 737.96890 -0.05949 3.79826 1.81223 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52197 0.19676 -1.00000 - 16749 2017 8 21 22 32 54 257 4.8666 185.08576 802.74010 738.00212 -0.05956 3.80307 1.80931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52162 0.19676 -1.00000 - 16750 2017 8 21 22 32 59 123 4.8666 185.08222 802.78050 738.03527 -0.05964 3.80857 1.80636 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52127 0.19676 -1.00000 - 16751 2017 8 21 22 33 3 990 4.8667 185.07867 802.82046 738.06851 -0.05973 3.81227 1.80344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52091 0.19676 -1.00000 - 16752 2017 8 21 22 33 8 857 4.8667 185.07513 802.86062 738.10173 -0.05982 3.81391 1.79696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52056 0.19676 -1.00000 - 16753 2017 8 21 22 33 13 724 4.8668 185.07159 802.90086 738.13506 -0.05989 3.81342 1.79214 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52020 0.19676 -1.00000 - 16754 2017 8 21 22 33 18 590 4.8668 185.06805 802.93611 738.16850 -0.05995 3.81062 1.78523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51985 0.19676 -1.00000 - 16755 2017 8 21 22 33 23 457 4.8669 185.06451 802.98043 738.20203 -0.06001 3.80421 1.77577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51950 0.19676 -1.00000 - 16756 2017 8 21 22 33 28 324 4.8669 185.06097 803.02207 738.23570 -0.06007 3.79099 1.77024 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51914 0.19676 -1.00000 - 16757 2017 8 21 22 33 33 191 4.8670 185.05743 803.06673 738.26952 -0.06014 3.70456 1.76058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51879 0.19676 -1.00000 - 16758 2017 8 21 22 33 38 58 4.8670 185.05389 803.10870 738.30355 -0.06022 3.65336 1.75016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51843 0.19676 -1.00000 - 16759 2017 8 21 22 33 42 925 4.8670 185.05035 803.15008 738.33773 -0.06031 3.66293 1.74703 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51808 0.19676 -1.00000 - 16760 2017 8 21 22 33 47 792 4.8671 185.04681 803.18851 738.37196 -0.06040 3.64273 1.73628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51773 0.19676 -1.00000 - 16761 2017 8 21 22 33 52 659 4.8671 185.04327 803.23644 738.40618 -0.06049 3.62029 1.72742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51737 0.19676 -1.00000 - 16762 2017 8 21 22 33 57 527 4.8672 185.03974 803.27852 738.44053 -0.06056 3.59297 1.72286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51702 0.19676 -1.00000 - 16763 2017 8 21 22 34 2 394 4.8672 185.03620 803.31901 738.47480 -0.06062 3.56093 1.71282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51666 0.19676 -1.00000 - 16764 2017 8 21 22 34 7 261 4.8673 185.03266 803.36196 738.50918 -0.06067 3.52594 1.70557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51631 0.19676 -1.00000 - 16765 2017 8 21 22 34 12 128 4.8673 185.02912 803.40477 738.54377 -0.06072 3.48925 1.70041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51596 0.19676 -1.00000 - 16766 2017 8 21 22 34 16 996 4.8674 185.02558 803.44478 738.57820 -0.06078 3.45181 1.69055 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51560 0.19676 -1.00000 - 16767 2017 8 21 22 34 21 863 4.8674 185.02204 803.48795 738.61279 -0.06084 3.41496 1.68410 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51525 0.19676 -1.00000 - 16768 2017 8 21 22 34 26 731 4.8675 185.01850 803.53104 738.64747 -0.06090 3.37874 1.67993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51489 0.19676 -1.00000 - 16769 2017 8 21 22 34 31 598 4.8675 185.01495 803.57463 738.68206 -0.06094 3.34314 1.67084 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51454 0.19676 -1.00000 - 16770 2017 8 21 22 34 36 466 4.8676 185.01141 803.61816 738.71670 -0.06095 3.30825 1.66537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51419 0.19676 -1.00000 - 16771 2017 8 21 22 34 41 333 4.8676 185.00787 803.66164 738.75142 -0.06096 3.27424 1.66227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51383 0.19676 -1.00000 - 16772 2017 8 21 22 34 46 201 4.8676 185.00432 803.70441 738.78603 -0.06095 3.24714 1.65475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51348 0.19675 -1.00000 - 16773 2017 8 21 22 34 51 69 4.8677 185.00078 803.74753 738.82062 -0.06094 3.22586 1.64995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51312 0.19675 -1.00000 - 16774 2017 8 21 22 34 55 936 4.8677 184.99723 803.78945 738.85521 -0.06094 3.20486 1.64733 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51277 0.19675 -1.00000 - 16775 2017 8 21 22 35 0 804 4.8678 184.99368 803.83325 738.88975 -0.06095 3.18615 1.64151 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51242 0.19675 -1.00000 - 16776 2017 8 21 22 35 5 672 4.8678 184.99013 803.87605 738.92427 -0.06097 3.16820 1.63869 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51206 0.19675 -1.00000 - 16777 2017 8 21 22 35 10 540 4.8679 184.98658 803.91871 738.95887 -0.06099 3.15822 1.63659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51171 0.19675 -1.00000 - 16778 2017 8 21 22 35 15 408 4.8679 184.98303 803.96151 738.99333 -0.06100 3.15557 1.63218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51135 0.19675 -1.00000 - 16779 2017 8 21 22 35 20 276 4.8680 184.97948 804.00377 739.02775 -0.06099 3.15398 1.63083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51100 0.19675 -1.00000 - 16780 2017 8 21 22 35 25 144 4.8680 184.97592 804.04600 739.06217 -0.06098 3.15297 1.62951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51065 0.19675 -1.00000 - 16781 2017 8 21 22 35 30 12 4.8681 184.97237 804.08828 739.09645 -0.06098 3.14987 1.62672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51029 0.19675 -1.00000 - 16782 2017 8 21 22 35 34 880 4.8681 184.96881 804.13044 739.13070 -0.06101 3.14622 1.62619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50994 0.19675 -1.00000 - 16783 2017 8 21 22 35 39 748 4.8681 184.96526 804.17253 739.16488 -0.06106 3.14645 1.62518 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50958 0.19675 -1.00000 - 16784 2017 8 21 22 35 44 616 4.8682 184.96170 804.21389 739.19895 -0.06113 3.13459 1.62202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50923 0.19675 -1.00000 - 16785 2017 8 21 22 35 49 485 4.8682 184.95815 804.25466 739.23305 -0.06120 3.13053 1.62144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50888 0.19675 -1.00000 - 16786 2017 8 21 22 35 54 353 4.8683 184.95459 804.29623 739.26713 -0.06127 3.12343 1.61927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50852 0.19675 -1.00000 - 16787 2017 8 21 22 35 59 221 4.8683 184.95103 804.34001 739.30113 -0.06132 3.12262 1.61447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50817 0.19675 -1.00000 - 16788 2017 8 21 22 36 4 90 4.8684 184.94747 804.38079 739.33526 -0.06136 3.12635 1.61519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50781 0.19675 -1.00000 - 16789 2017 8 21 22 36 8 958 4.8684 184.94391 804.41921 739.36927 -0.06140 3.12961 1.61072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50746 0.19675 -1.00000 - 16790 2017 8 21 22 36 13 826 4.8685 184.94035 804.46017 739.40331 -0.06146 3.12870 1.60702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50711 0.19675 -1.00000 - 16791 2017 8 21 22 36 18 695 4.8685 184.93680 804.49561 739.43747 -0.06156 3.13990 1.60598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50675 0.19675 -1.00000 - 16792 2017 8 21 22 36 23 564 4.8686 184.93324 804.54159 739.47160 -0.06167 3.11020 1.60134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50640 0.19675 -1.00000 - 16793 2017 8 21 22 36 28 432 4.8686 184.92969 804.58221 739.50577 -0.06180 3.12223 1.59867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50604 0.19675 -1.00000 - 16794 2017 8 21 22 36 33 301 4.8687 184.92613 804.62353 739.54013 -0.06190 3.14803 1.59676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50569 0.19675 -1.00000 - 16795 2017 8 21 22 36 38 169 4.8687 184.92257 804.66632 739.57454 -0.06199 3.16477 1.59185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50534 0.19675 -1.00000 - 16796 2017 8 21 22 36 43 38 4.8687 184.91902 804.70848 739.60910 -0.06206 3.17919 1.59194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50498 0.19675 -1.00000 - 16797 2017 8 21 22 36 47 907 4.8688 184.91546 804.74839 739.64367 -0.06214 3.19137 1.58999 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50463 0.19675 -1.00000 - 16798 2017 8 21 22 36 52 776 4.8688 184.91191 804.79196 739.67827 -0.06223 3.19840 1.58731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50427 0.19675 -1.00000 - 16799 2017 8 21 22 36 57 645 4.8689 184.90835 804.83336 739.71288 -0.06235 3.20250 1.58964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50392 0.19675 -1.00000 - 16800 2017 8 21 22 37 2 514 4.8689 184.90480 804.87490 739.74754 -0.06250 3.21063 1.58713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50357 0.19674 -1.00000 - 16801 2017 8 21 22 37 7 383 4.8690 184.90125 804.92044 739.78217 -0.06265 3.21940 1.58476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50321 0.19674 -1.00000 - 16802 2017 8 21 22 37 12 252 4.8690 184.89770 804.96255 739.81684 -0.06278 3.22555 1.58791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50286 0.19674 -1.00000 - 16803 2017 8 21 22 37 17 121 4.8691 184.89415 805.00205 739.85143 -0.06287 3.22988 1.58650 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50250 0.19674 -1.00000 - 16804 2017 8 21 22 37 21 990 4.8691 184.89060 805.04660 739.88591 -0.06292 3.22929 1.58552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50215 0.19674 -1.00000 - 16805 2017 8 21 22 37 26 859 4.8692 184.88704 805.08766 739.92041 -0.06295 3.22663 1.58837 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50180 0.19674 -1.00000 - 16806 2017 8 21 22 37 31 728 4.8692 184.88349 805.12853 739.95486 -0.06299 3.22868 1.58585 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50144 0.19674 -1.00000 - 16807 2017 8 21 22 37 36 597 4.8692 184.87994 805.17367 739.98934 -0.06305 3.23231 1.58393 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50109 0.19674 -1.00000 - 16808 2017 8 21 22 37 41 467 4.8693 184.87639 805.21574 740.02389 -0.06313 3.23462 1.58461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50073 0.19674 -1.00000 - 16809 2017 8 21 22 37 46 336 4.8693 184.87284 805.25575 740.05843 -0.06322 3.23582 1.58403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50038 0.19674 -1.00000 - 16810 2017 8 21 22 37 51 205 4.8694 184.86929 805.30009 740.09285 -0.06327 3.23320 1.58335 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50002 0.19674 -1.00000 - 16811 2017 8 21 22 37 56 75 4.8694 184.86574 805.33598 740.12729 -0.06327 3.22904 1.58134 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49967 0.19674 -1.00000 - 16812 2017 8 21 22 38 0 944 4.8695 184.86219 805.37807 740.16180 -0.06321 3.22788 1.58188 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49932 0.19674 -1.00000 - 16813 2017 8 21 22 38 5 814 4.8695 184.85863 805.41996 740.19628 -0.06311 3.23775 1.58220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49896 0.19674 -1.00000 - 16814 2017 8 21 22 38 10 683 4.8696 184.85508 805.46450 740.23082 -0.06302 3.22946 1.57947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49861 0.19674 -1.00000 - 16815 2017 8 21 22 38 15 553 4.8696 184.85153 805.50620 740.26533 -0.06297 3.22700 1.58136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49825 0.19674 -1.00000 - 16816 2017 8 21 22 38 20 423 4.8697 184.84797 805.54615 740.29986 -0.06298 3.23195 1.58127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49790 0.19674 -1.00000 - 16817 2017 8 21 22 38 25 292 4.8697 184.84442 805.58937 740.33426 -0.06303 3.23721 1.58126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49755 0.19674 -1.00000 - 16818 2017 8 21 22 38 30 162 4.8698 184.84087 805.63113 740.36869 -0.06306 3.23732 1.58220 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49719 0.19674 -1.00000 - 16819 2017 8 21 22 38 35 32 4.8698 184.83732 805.67424 740.40320 -0.06304 3.20364 1.58286 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49684 0.19674 -1.00000 - 16820 2017 8 21 22 38 39 902 4.8698 184.83375 805.72125 740.43782 -0.06297 3.20003 1.58315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49648 0.19674 -1.00000 - 16821 2017 8 21 22 38 44 772 4.8699 184.83018 805.75924 740.47235 -0.06288 3.19065 1.58383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49613 0.19674 -1.00000 - 16822 2017 8 21 22 38 49 642 4.8699 184.82662 805.80301 740.50696 -0.06280 3.17773 1.58698 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49578 0.19674 -1.00000 - 16823 2017 8 21 22 38 54 512 4.8700 184.82306 805.84535 740.54132 -0.06279 3.16420 1.58764 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49542 0.19674 -1.00000 - 16824 2017 8 21 22 38 59 382 4.8700 184.81949 805.88759 740.57552 -0.06285 3.15521 1.59031 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49507 0.19674 -1.00000 - 16825 2017 8 21 22 39 4 252 4.8701 184.81592 805.93228 740.60991 -0.06299 3.15304 1.59380 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49471 0.19674 -1.00000 - 16826 2017 8 21 22 39 9 122 4.8701 184.81235 805.97930 740.64414 -0.06314 3.15213 1.59529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49436 0.19674 -1.00000 - 16827 2017 8 21 22 39 13 992 4.8702 184.80878 806.01691 740.67828 -0.06323 3.14749 1.59665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49400 0.19674 -1.00000 - 16828 2017 8 21 22 39 18 862 4.8702 184.80522 806.05985 740.71247 -0.06325 3.15780 1.59988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49365 0.19673 -1.00000 - 16829 2017 8 21 22 39 23 732 4.8703 184.80164 806.10146 740.74639 -0.06321 3.16874 1.60152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49330 0.19673 -1.00000 - 16830 2017 8 21 22 39 28 603 4.8703 184.79805 806.14324 740.78016 -0.06318 3.17473 1.60491 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49294 0.19673 -1.00000 - 16831 2017 8 21 22 39 33 473 4.8704 184.79446 806.18539 740.81413 -0.06321 3.15898 1.60741 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49259 0.19673 -1.00000 - 16832 2017 8 21 22 39 38 344 4.8704 184.79089 806.22986 740.84792 -0.06334 3.17455 1.60942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49223 0.19673 -1.00000 - 16833 2017 8 21 22 39 43 214 4.8704 184.78733 806.26676 740.88171 -0.06354 3.13978 1.61105 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49188 0.19673 -1.00000 - 16834 2017 8 21 22 39 48 84 4.8705 184.78376 806.31287 740.91541 -0.06376 3.16405 1.61114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49152 0.19673 -1.00000 - 16835 2017 8 21 22 39 52 955 4.8705 184.78017 806.35484 740.94901 -0.06393 3.17760 1.61258 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49117 0.19673 -1.00000 - 16836 2017 8 21 22 39 57 826 4.8706 184.77658 806.39414 740.98259 -0.06401 3.16814 1.61748 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49082 0.19673 -1.00000 - 16837 2017 8 21 22 40 2 696 4.8706 184.77302 806.43071 741.01609 -0.06398 3.18516 1.61802 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49046 0.19673 -1.00000 - 16838 2017 8 21 22 40 7 567 4.8707 184.76946 806.47172 741.04943 -0.06391 3.19811 1.62098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49011 0.19673 -1.00000 - 16839 2017 8 21 22 40 12 438 4.8707 184.76587 806.51167 741.08272 -0.06389 3.22451 1.62691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48975 0.19673 -1.00000 - 16840 2017 8 21 22 40 17 308 4.8708 184.76226 806.55216 741.11586 -0.06400 3.24966 1.62868 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48940 0.19673 -1.00000 - 16841 2017 8 21 22 40 22 179 4.8708 184.75868 806.59242 741.14880 -0.06424 3.27339 1.63430 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48905 0.19673 -1.00000 - 16842 2017 8 21 22 40 27 50 4.8709 184.75516 806.63183 741.18165 -0.06451 3.29585 1.64001 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48869 0.19673 -1.00000 - 16843 2017 8 21 22 40 31 921 4.8709 184.75162 806.67107 741.21426 -0.06471 3.31718 1.64399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48834 0.19673 -1.00000 - 16844 2017 8 21 22 40 36 792 4.8710 184.74800 806.70971 741.24674 -0.06477 3.33765 1.64956 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48798 0.19673 -1.00000 - 16845 2017 8 21 22 40 41 663 4.8710 184.74436 806.74831 741.27913 -0.06471 3.35753 1.65510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48763 0.19673 -1.00000 - 16846 2017 8 21 22 40 46 534 4.8711 184.74078 806.78722 741.31142 -0.06457 3.37730 1.65814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48727 0.19673 -1.00000 - 16847 2017 8 21 22 40 51 405 4.8711 184.73728 806.82556 741.34358 -0.06445 3.40079 1.66550 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48692 0.19673 -1.00000 - 16848 2017 8 21 22 40 56 276 4.8711 184.73373 806.86295 741.37558 -0.06447 3.42915 1.66979 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48657 0.19673 -1.00000 - 16849 2017 8 21 22 41 1 147 4.8712 184.73009 806.90034 741.40742 -0.06468 3.45684 1.67264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48621 0.19673 -1.00000 - 16850 2017 8 21 22 41 6 19 4.8712 184.72646 806.93841 741.43914 -0.06500 3.48255 1.67969 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48586 0.19673 -1.00000 - 16851 2017 8 21 22 41 10 890 4.8713 184.72292 806.97899 741.47070 -0.06524 3.50465 1.68227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48550 0.19673 -1.00000 - 16852 2017 8 21 22 41 15 761 4.8713 184.71942 807.01593 741.50205 -0.06523 3.52411 1.68689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48515 0.19673 -1.00000 - 16853 2017 8 21 22 41 20 633 4.8714 184.71584 807.05020 741.53338 -0.06497 3.54448 1.69349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48479 0.19673 -1.00000 - 16854 2017 8 21 22 41 25 504 4.8714 184.71215 807.08570 741.56459 -0.06460 3.56582 1.69619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48444 0.19673 -1.00000 - 16855 2017 8 21 22 41 30 376 4.8715 184.70849 807.12255 741.59567 -0.06436 3.58795 1.70139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48409 0.19673 -1.00000 - 16856 2017 8 21 22 41 35 247 4.8715 184.70495 807.15861 741.62665 -0.06437 3.60990 1.70682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48373 0.19672 -1.00000 - 16857 2017 8 21 22 41 40 119 4.8716 184.70144 807.19520 741.65751 -0.06461 3.63143 1.70953 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48338 0.19672 -1.00000 - 16858 2017 8 21 22 41 44 990 4.8716 184.69784 807.23168 741.68825 -0.06491 3.65235 1.71471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48302 0.19672 -1.00000 - 16859 2017 8 21 22 41 49 862 4.8717 184.69417 807.26627 741.71890 -0.06508 3.67256 1.71750 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48267 0.19672 -1.00000 - 16860 2017 8 21 22 41 54 734 4.8717 184.69054 807.30166 741.74943 -0.06503 3.69221 1.72021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48231 0.19672 -1.00000 - 16861 2017 8 21 22 41 59 606 4.8718 184.68699 807.33657 741.77987 -0.06476 3.71126 1.72462 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48196 0.19672 -1.00000 - 16862 2017 8 21 22 42 4 477 4.8718 184.68344 807.37200 741.81025 -0.06434 3.72950 1.72671 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48161 0.19672 -1.00000 - 16863 2017 8 21 22 42 9 349 4.8719 184.67981 807.40722 741.84054 -0.06401 3.74685 1.72994 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48125 0.19672 -1.00000 - 16864 2017 8 21 22 42 14 221 4.8719 184.67611 807.44070 741.87083 -0.06395 3.76327 1.73217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48090 0.19672 -1.00000 - 16865 2017 8 21 22 42 19 93 4.8720 184.67247 807.47546 741.90104 -0.06428 3.77933 1.73263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48054 0.19672 -1.00000 - 16866 2017 8 21 22 42 23 965 4.8720 184.66890 807.50997 741.93124 -0.06485 3.79506 1.73553 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48019 0.19672 -1.00000 - 16867 2017 8 21 22 42 28 837 4.8721 184.66534 807.54429 741.96139 -0.06527 3.80774 1.73504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47983 0.19672 -1.00000 - 16868 2017 8 21 22 42 33 709 4.8721 184.66173 807.58358 741.99158 -0.06529 3.81565 1.73428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47948 0.19672 -1.00000 - 16869 2017 8 21 22 42 38 581 4.8722 184.65806 807.61759 742.02184 -0.06495 3.82105 1.73510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47913 0.19672 -1.00000 - 16870 2017 8 21 22 42 43 454 4.8722 184.65442 807.64726 742.05206 -0.06453 3.82822 1.73453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47877 0.19672 -1.00000 - 16871 2017 8 21 22 42 48 326 4.8722 184.65082 807.68188 742.08230 -0.06430 3.83678 1.73083 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47842 0.19672 -1.00000 - 16872 2017 8 21 22 42 53 198 4.8723 184.64723 807.71635 742.11274 -0.06436 3.84532 1.73241 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47806 0.19672 -1.00000 - 16873 2017 8 21 22 42 58 70 4.8723 184.64361 807.74795 742.14319 -0.06470 3.85244 1.72832 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47771 0.19672 -1.00000 - 16874 2017 8 21 22 43 2 943 4.8724 184.63995 807.78640 742.17369 -0.06515 3.85512 1.72394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47735 0.19672 -1.00000 - 16875 2017 8 21 22 43 7 815 4.8724 184.63632 807.82076 742.20436 -0.06551 3.85059 1.72371 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47700 0.19672 -1.00000 - 16876 2017 8 21 22 43 12 688 4.8725 184.63275 807.85628 742.23503 -0.06566 3.83969 1.71893 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47665 0.19672 -1.00000 - 16877 2017 8 21 22 43 17 560 4.8725 184.62921 807.89127 742.26594 -0.06556 3.75912 1.71426 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47629 0.19672 -1.00000 - 16878 2017 8 21 22 43 22 433 4.8726 184.62560 807.92982 742.29710 -0.06530 3.75161 1.71264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47594 0.19672 -1.00000 - 16879 2017 8 21 22 43 27 306 4.8726 184.62192 807.96412 742.32826 -0.06507 3.74982 1.70665 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47558 0.19672 -1.00000 - 16880 2017 8 21 22 43 32 178 4.8727 184.61825 808.00399 742.35957 -0.06507 3.73393 1.70210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47523 0.19672 -1.00000 - 16881 2017 8 21 22 43 37 51 4.8727 184.61466 808.04101 742.39109 -0.06542 3.71404 1.69954 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47487 0.19672 -1.00000 - 16882 2017 8 21 22 43 41 924 4.8728 184.61112 808.07829 742.42268 -0.06601 3.67479 1.69125 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47452 0.19672 -1.00000 - 16883 2017 8 21 22 43 46 797 4.8728 184.60754 808.12038 742.45438 -0.06651 3.65484 1.68623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47417 0.19671 -1.00000 - 16884 2017 8 21 22 43 51 669 4.8729 184.60389 808.15914 742.48621 -0.06669 3.63293 1.68421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47381 0.19671 -1.00000 - 16885 2017 8 21 22 43 56 542 4.8729 184.60026 808.19550 742.51803 -0.06653 3.61012 1.67652 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47346 0.19671 -1.00000 - 16886 2017 8 21 22 44 1 415 4.8730 184.59672 808.23603 742.54979 -0.06622 3.58437 1.67162 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47310 0.19671 -1.00000 - 16887 2017 8 21 22 44 6 288 4.8730 184.59320 808.27398 742.58167 -0.06597 3.55766 1.66687 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47275 0.19671 -1.00000 - 16888 2017 8 21 22 44 11 161 4.8731 184.58956 808.31333 742.61360 -0.06595 3.53599 1.65854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47239 0.19671 -1.00000 - 16889 2017 8 21 22 44 16 34 4.8731 184.58586 808.35736 742.64570 -0.06620 3.51527 1.65244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47204 0.19671 -1.00000 - 16890 2017 8 21 22 44 20 908 4.8732 184.58223 808.39360 742.67792 -0.06667 3.49106 1.64608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47168 0.19671 -1.00000 - 16891 2017 8 21 22 44 25 781 4.8732 184.57872 808.43169 742.71015 -0.06716 3.46460 1.63888 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47133 0.19671 -1.00000 - 16892 2017 8 21 22 44 30 654 4.8732 184.57522 808.47289 742.74244 -0.06739 3.43582 1.63473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47098 0.19671 -1.00000 - 16893 2017 8 21 22 44 35 527 4.8733 184.57159 808.51311 742.77469 -0.06724 3.40946 1.62813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47062 0.19671 -1.00000 - 16894 2017 8 21 22 44 40 401 4.8733 184.56788 808.55457 742.80700 -0.06685 3.38930 1.62013 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47027 0.19671 -1.00000 - 16895 2017 8 21 22 44 45 274 4.8734 184.56423 808.59937 742.83940 -0.06647 3.37049 1.61632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46991 0.19671 -1.00000 - 16896 2017 8 21 22 44 50 148 4.8734 184.56070 808.63537 742.87176 -0.06632 3.34717 1.60919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46956 0.19671 -1.00000 - 16897 2017 8 21 22 44 55 21 4.8735 184.55718 808.67637 742.90404 -0.06642 3.32050 1.60272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46920 0.19671 -1.00000 - 16898 2017 8 21 22 44 59 895 4.8735 184.55353 808.71679 742.93643 -0.06670 3.29295 1.59826 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46885 0.19671 -1.00000 - 16899 2017 8 21 22 45 4 768 4.8736 184.54985 808.75742 742.96867 -0.06696 3.26903 1.59135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46850 0.19671 -1.00000 - 16900 2017 8 21 22 45 9 642 4.8736 184.54627 808.79734 743.00098 -0.06701 3.24964 1.58282 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46814 0.19671 -1.00000 - 16901 2017 8 21 22 45 14 515 4.8737 184.54279 808.83998 743.03352 -0.06680 3.23351 1.57775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46779 0.19671 -1.00000 - 16902 2017 8 21 22 45 19 389 4.8737 184.53926 808.87771 743.06610 -0.06638 3.21442 1.56762 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46743 0.19671 -1.00000 - 16903 2017 8 21 22 45 24 263 4.8738 184.53558 808.91897 743.09871 -0.06593 3.18842 1.55853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46708 0.19671 -1.00000 - 16904 2017 8 21 22 45 29 137 4.8738 184.53187 808.96113 743.13145 -0.06569 3.14976 1.55172 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46672 0.19671 -1.00000 - 16905 2017 8 21 22 45 34 11 4.8739 184.52824 809.00669 743.16423 -0.06584 3.07475 1.54029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46637 0.19671 -1.00000 - 16906 2017 8 21 22 45 38 885 4.8739 184.52472 809.04708 743.19714 -0.06632 3.06571 1.53200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46601 0.19671 -1.00000 - 16907 2017 8 21 22 45 43 758 4.8740 184.52119 809.08853 743.23032 -0.06683 3.05161 1.52598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46566 0.19671 -1.00000 - 16908 2017 8 21 22 45 48 632 4.8740 184.51754 809.12542 743.26341 -0.06701 3.04038 1.51552 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46531 0.19671 -1.00000 - 16909 2017 8 21 22 45 53 507 4.8740 184.51386 809.16824 743.29663 -0.06677 3.02383 1.50901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46495 0.19671 -1.00000 - 16910 2017 8 21 22 45 58 381 4.8740 184.51028 809.20598 743.32998 -0.06633 3.01224 1.50398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46460 0.19671 -1.00000 - 16911 2017 8 21 22 46 3 255 4.8740 184.50677 809.24736 743.36319 -0.06598 3.00014 1.49416 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46424 0.19670 -1.00000 - 16912 2017 8 21 22 46 8 129 4.8741 184.50320 809.28896 743.39653 -0.06586 2.98639 1.48963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46389 0.19670 -1.00000 - 16913 2017 8 21 22 46 13 3 4.8741 184.49951 809.33061 743.42997 -0.06601 2.97156 1.48425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46353 0.19670 -1.00000 - 16914 2017 8 21 22 46 17 877 4.8741 184.49582 809.37067 743.46332 -0.06638 2.95629 1.47547 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46318 0.19670 -1.00000 - 16915 2017 8 21 22 46 22 751 4.8741 184.49223 809.41151 743.49678 -0.06681 2.94147 1.46942 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46282 0.19670 -1.00000 - 16916 2017 8 21 22 46 27 625 4.8741 184.48874 809.45324 743.53039 -0.06712 2.92713 1.46612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46247 0.19670 -1.00000 - 16917 2017 8 21 22 46 32 499 4.8741 184.48519 809.49572 743.56396 -0.06716 2.91112 1.45931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46212 0.19670 -1.00000 - 16918 2017 8 21 22 46 37 373 4.8741 184.48150 809.54218 743.59762 -0.06697 2.89253 1.45352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46176 0.19670 -1.00000 - 16919 2017 8 21 22 46 42 247 4.8741 184.47779 809.58345 743.63140 -0.06675 2.87611 1.45316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46141 0.19670 -1.00000 - 16920 2017 8 21 22 46 47 121 4.8741 184.47419 809.62047 743.66509 -0.06669 2.86479 1.44774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46105 0.19670 -1.00000 - 16921 2017 8 21 22 46 51 996 4.8741 184.47068 809.66213 743.69874 -0.06689 2.85517 1.44459 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46070 0.19670 -1.00000 - 16922 2017 8 21 22 46 56 870 4.8741 184.46711 809.70390 743.73253 -0.06726 2.84950 1.44448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46034 0.19670 -1.00000 - 16923 2017 8 21 22 47 1 744 4.8741 184.46340 809.74588 743.76609 -0.06763 2.84663 1.44213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45999 0.19670 -1.00000 - 16924 2017 8 21 22 47 6 618 4.8741 184.45969 809.78777 743.79958 -0.06781 2.84590 1.44095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45963 0.19670 -1.00000 - 16925 2017 8 21 22 47 11 492 4.8742 184.45615 809.83019 743.83314 -0.06780 2.84690 1.44121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45928 0.19670 -1.00000 - 16926 2017 8 21 22 47 16 366 4.8742 184.45268 809.87211 743.86651 -0.06768 2.84931 1.44068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45893 0.19670 -1.00000 - 16927 2017 8 21 22 47 21 240 4.8742 184.44909 809.91361 743.89983 -0.06755 2.85920 1.44079 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45857 0.19670 -1.00000 - 16928 2017 8 21 22 47 26 115 4.8742 184.44532 809.95535 743.93308 -0.06751 2.86973 1.44138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45822 0.19670 -1.00000 - 16929 2017 8 21 22 47 30 989 4.8742 184.44157 809.99680 743.96615 -0.06766 2.88090 1.44261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45786 0.19670 -1.00000 - 16930 2017 8 21 22 47 35 863 4.8742 184.43801 810.03801 743.99913 -0.06801 2.89266 1.44437 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45751 0.19670 -1.00000 - 16931 2017 8 21 22 47 40 737 4.8742 184.43454 810.07930 744.03200 -0.06844 2.90498 1.44568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45715 0.19670 -1.00000 - 16932 2017 8 21 22 47 45 611 4.8742 184.43091 810.11874 744.06473 -0.06873 2.91777 1.44721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45680 0.19670 -1.00000 - 16933 2017 8 21 22 47 50 486 4.8742 184.42711 810.15907 744.09734 -0.06879 2.93024 1.45028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45644 0.19670 -1.00000 - 16934 2017 8 21 22 47 55 360 4.8742 184.42337 810.19946 744.12979 -0.06868 2.94184 1.45196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45609 0.19670 -1.00000 - 16935 2017 8 21 22 48 0 234 4.8742 184.41983 810.24019 744.16209 -0.06857 2.95293 1.45347 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45573 0.19670 -1.00000 - 16936 2017 8 21 22 48 5 108 4.8742 184.41632 810.28038 744.19437 -0.06856 2.96391 1.45668 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45538 0.19670 -1.00000 - 16937 2017 8 21 22 48 9 983 4.8743 184.41263 810.31925 744.22638 -0.06865 2.97607 1.45686 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45503 0.19670 -1.00000 - 16938 2017 8 21 22 48 14 857 4.8743 184.40878 810.35847 744.25828 -0.06882 2.99352 1.45820 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45467 0.19670 -1.00000 - 16939 2017 8 21 22 48 19 731 4.8743 184.40502 810.39756 744.29018 -0.06902 3.01087 1.45977 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45432 0.19669 -1.00000 - 16940 2017 8 21 22 48 24 605 4.8743 184.40148 810.43616 744.32186 -0.06923 3.02477 1.45988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45396 0.19669 -1.00000 - 16941 2017 8 21 22 48 29 480 4.8743 184.39794 810.47947 744.35352 -0.06935 3.03392 1.46202 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45361 0.19669 -1.00000 - 16942 2017 8 21 22 48 34 354 4.8743 184.39422 810.51433 744.38507 -0.06931 3.04041 1.46290 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45325 0.19669 -1.00000 - 16943 2017 8 21 22 48 39 228 4.8743 184.39034 810.55079 744.41655 -0.06918 3.04839 1.46237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45290 0.19669 -1.00000 - 16944 2017 8 21 22 48 44 103 4.8743 184.38656 810.58894 744.44812 -0.06913 3.05736 1.46571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45254 0.19669 -1.00000 - 16945 2017 8 21 22 48 48 977 4.8743 184.38297 810.62474 744.47962 -0.06925 3.06569 1.46730 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45219 0.19669 -1.00000 - 16946 2017 8 21 22 48 53 851 4.8743 184.37937 810.66432 744.51102 -0.06948 3.07146 1.46543 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45184 0.19669 -1.00000 - 16947 2017 8 21 22 48 58 726 4.8744 184.37559 810.70306 744.54247 -0.06968 3.07211 1.46944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45148 0.19669 -1.00000 - 16948 2017 8 21 22 49 3 600 4.8744 184.37169 810.74101 744.57384 -0.06973 3.06836 1.46945 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45113 0.19669 -1.00000 - 16949 2017 8 21 22 49 8 474 4.8744 184.36790 810.77758 744.60515 -0.06967 3.06240 1.46838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45077 0.19669 -1.00000 - 16950 2017 8 21 22 49 13 349 4.8744 184.36431 810.81504 744.63653 -0.06958 3.05577 1.47207 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45042 0.19669 -1.00000 - 16951 2017 8 21 22 49 18 223 4.8744 184.36068 810.85060 744.66777 -0.06950 3.04900 1.47114 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45006 0.19669 -1.00000 - 16952 2017 8 21 22 49 23 98 4.8744 184.35684 810.88903 744.69915 -0.06943 3.04082 1.47107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44971 0.19669 -1.00000 - 16953 2017 8 21 22 49 27 972 4.8744 184.35289 810.92825 744.73077 -0.06943 3.03322 1.47343 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44935 0.19669 -1.00000 - 16954 2017 8 21 22 49 32 846 4.8744 184.34908 810.96887 744.76233 -0.06953 3.03172 1.47051 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44900 0.19669 -1.00000 - 16955 2017 8 21 22 49 37 721 4.8744 184.34546 811.00788 744.79403 -0.06970 3.02566 1.47102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44865 0.19669 -1.00000 - 16956 2017 8 21 22 49 42 595 4.8744 184.34178 811.04264 744.82581 -0.06986 3.01575 1.47398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44829 0.19669 -1.00000 - 16957 2017 8 21 22 49 47 470 4.8745 184.33789 811.08159 744.85740 -0.06988 2.95108 1.47120 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44794 0.19669 -1.00000 - 16958 2017 8 21 22 49 52 344 4.8745 184.33393 811.12536 744.88909 -0.06980 2.94538 1.47306 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44758 0.19669 -1.00000 - 16959 2017 8 21 22 49 57 219 4.8745 184.33012 811.16384 744.92076 -0.06971 2.95487 1.47591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44723 0.19669 -1.00000 - 16960 2017 8 21 22 50 2 93 4.8745 184.32647 811.19966 744.95220 -0.06970 2.94857 1.47467 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44687 0.19669 -1.00000 - 16961 2017 8 21 22 50 6 968 4.8745 184.32273 811.23647 744.98375 -0.06974 2.95884 1.47649 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44652 0.19669 -1.00000 - 16962 2017 8 21 22 50 11 842 4.8745 184.31879 811.27498 745.01534 -0.06978 2.96519 1.48065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44616 0.19669 -1.00000 - 16963 2017 8 21 22 50 16 717 4.8745 184.31480 811.31296 745.04677 -0.06982 2.95514 1.47960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44581 0.19669 -1.00000 - 16964 2017 8 21 22 50 21 591 4.8745 184.31098 811.35093 745.07823 -0.06990 2.96832 1.48184 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44546 0.19669 -1.00000 - 16965 2017 8 21 22 50 26 466 4.8745 184.30731 811.39042 745.10975 -0.07002 2.97909 1.48423 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44510 0.19669 -1.00000 - 16966 2017 8 21 22 50 31 340 4.8746 184.30354 811.43209 745.14123 -0.07010 2.98843 1.48464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44475 0.19669 -1.00000 - 16967 2017 8 21 22 50 36 215 4.8746 184.29957 811.47165 745.17272 -0.07008 2.99569 1.48757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44439 0.19668 -1.00000 - 16968 2017 8 21 22 50 41 89 4.8746 184.29555 811.51107 745.20412 -0.07001 3.00511 1.49384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44404 0.19668 -1.00000 - 16969 2017 8 21 22 50 45 964 4.8746 184.29174 811.54704 745.23525 -0.07000 3.01629 1.49540 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44368 0.19668 -1.00000 - 16970 2017 8 21 22 50 50 839 4.8746 184.28807 811.58668 745.26630 -0.07010 3.02894 1.49846 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44333 0.19668 -1.00000 - 16971 2017 8 21 22 50 55 713 4.8746 184.28426 811.62529 745.29724 -0.07023 3.04075 1.50478 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44297 0.19668 -1.00000 - 16972 2017 8 21 22 51 0 588 4.8746 184.28024 811.66396 745.32799 -0.07033 3.05206 1.50623 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44262 0.19668 -1.00000 - 16973 2017 8 21 22 51 5 463 4.8746 184.27621 811.70637 745.35862 -0.07036 3.06900 1.50988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44226 0.19668 -1.00000 - 16974 2017 8 21 22 51 10 337 4.8746 184.27244 811.74449 745.38920 -0.07039 3.08439 1.51633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44191 0.19668 -1.00000 - 16975 2017 8 21 22 51 15 212 4.8747 184.26878 811.77876 745.41945 -0.07045 3.09922 1.51842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44156 0.19668 -1.00000 - 16976 2017 8 21 22 51 20 86 4.8747 184.26494 811.81636 745.44949 -0.07054 3.11028 1.52109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44120 0.19668 -1.00000 - 16977 2017 8 21 22 51 24 961 4.8747 184.26089 811.85324 745.47939 -0.07061 3.12067 1.52662 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44085 0.19668 -1.00000 - 16978 2017 8 21 22 51 29 836 4.8747 184.25687 811.88985 745.50915 -0.07070 3.13472 1.52815 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44049 0.19668 -1.00000 - 16979 2017 8 21 22 51 34 711 4.8747 184.25312 811.92932 745.53887 -0.07080 3.15051 1.53072 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44014 0.19668 -1.00000 - 16980 2017 8 21 22 51 39 585 4.8747 184.24946 811.96557 745.56848 -0.07087 3.16464 1.53559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43978 0.19668 -1.00000 - 16981 2017 8 21 22 51 44 460 4.8747 184.24558 811.99829 745.59781 -0.07089 3.17741 1.53563 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43943 0.19668 -1.00000 - 16982 2017 8 21 22 51 49 335 4.8747 184.24151 812.03388 745.62709 -0.07086 3.18570 1.53752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43907 0.19668 -1.00000 - 16983 2017 8 21 22 51 54 209 4.8747 184.23752 812.06859 745.65624 -0.07088 3.19303 1.54096 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43872 0.19668 -1.00000 - 16984 2017 8 21 22 51 59 84 4.8748 184.23380 812.10360 745.68527 -0.07094 3.20478 1.53880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43837 0.19668 -1.00000 - 16985 2017 8 21 22 52 3 959 4.8748 184.23011 812.14215 745.71436 -0.07098 3.21774 1.54123 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43801 0.19668 -1.00000 - 16986 2017 8 21 22 52 8 834 4.8748 184.22620 812.17623 745.74344 -0.07096 3.22833 1.54210 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43766 0.19668 -1.00000 - 16987 2017 8 21 22 52 13 709 4.8748 184.22213 812.20610 745.77239 -0.07088 3.23558 1.53909 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43730 0.19668 -1.00000 - 16988 2017 8 21 22 52 18 583 4.8748 184.21820 812.24019 745.80134 -0.07084 3.23575 1.54182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43695 0.19668 -1.00000 - 16989 2017 8 21 22 52 23 458 4.8748 184.21450 812.27406 745.83019 -0.07088 3.22663 1.53867 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43659 0.19668 -1.00000 - 16990 2017 8 21 22 52 28 333 4.8748 184.21080 812.31213 745.85899 -0.07091 3.24406 1.53682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43624 0.19668 -1.00000 - 16991 2017 8 21 22 52 33 208 4.8748 184.20687 812.34414 745.88797 -0.07085 3.25797 1.53895 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43588 0.19668 -1.00000 - 16992 2017 8 21 22 52 38 83 4.8748 184.20282 812.37205 745.91678 -0.07074 3.27045 1.53635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43553 0.19668 -1.00000 - 16993 2017 8 21 22 52 42 958 4.8749 184.19894 812.40390 745.94573 -0.07067 3.28190 1.53705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43517 0.19668 -1.00000 - 16994 2017 8 21 22 52 47 832 4.8749 184.19527 812.43726 745.97472 -0.07073 3.29248 1.53925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43482 0.19667 -1.00000 - 16995 2017 8 21 22 52 52 707 4.8749 184.19155 812.47074 746.00360 -0.07082 3.30134 1.53715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43447 0.19667 -1.00000 - 16996 2017 8 21 22 52 57 582 4.8749 184.18761 812.50407 746.03241 -0.07085 3.30808 1.53856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43411 0.19667 -1.00000 - 16997 2017 8 21 22 53 2 457 4.8749 184.18359 812.53769 746.06131 -0.07080 3.31274 1.54030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43376 0.19667 -1.00000 - 16998 2017 8 21 22 53 7 332 4.8749 184.17975 812.57147 746.09016 -0.07076 3.31566 1.53929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43340 0.19667 -1.00000 - 16999 2017 8 21 22 53 12 207 4.8749 184.17610 812.60494 746.11898 -0.07079 3.31732 1.54037 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43305 0.19667 -1.00000 - 17000 2017 8 21 22 53 17 82 4.8749 184.17236 812.63815 746.14782 -0.07086 3.31820 1.54185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43269 0.19667 -1.00000 - 17001 2017 8 21 22 53 21 957 4.8749 184.16840 812.67144 746.17662 -0.07090 3.31862 1.54103 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43234 0.19667 -1.00000 - 17002 2017 8 21 22 53 26 832 4.8750 184.16440 812.70488 746.20552 -0.07090 3.31893 1.54149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43198 0.19667 -1.00000 - 17003 2017 8 21 22 53 31 707 4.8750 184.16061 812.73696 746.23450 -0.07092 3.31968 1.54234 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43163 0.19667 -1.00000 - 17004 2017 8 21 22 53 36 582 4.8750 184.15698 812.77071 746.26345 -0.07100 3.32148 1.53988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43127 0.19667 -1.00000 - 17005 2017 8 21 22 53 41 457 4.8750 184.15323 812.80440 746.29247 -0.07107 3.32469 1.54167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43092 0.19667 -1.00000 - 17006 2017 8 21 22 53 46 332 4.8750 184.14926 812.83807 746.32147 -0.07110 3.32868 1.54126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43057 0.19667 -1.00000 - 17007 2017 8 21 22 53 51 207 4.8750 184.14528 812.87207 746.35044 -0.07108 3.33315 1.54071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43021 0.19667 -1.00000 - 17008 2017 8 21 22 53 56 82 4.8750 184.14154 812.90622 746.37945 -0.07111 3.33809 1.54324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42986 0.19667 -1.00000 - 17009 2017 8 21 22 54 0 957 4.8750 184.13792 812.94063 746.40836 -0.07120 3.34349 1.54211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42950 0.19667 -1.00000 - 17010 2017 8 21 22 54 5 832 4.8750 184.13415 812.97496 746.43725 -0.07130 3.34946 1.54110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42915 0.19667 -1.00000 - 17011 2017 8 21 22 54 10 707 4.8750 184.13017 813.00912 746.46615 -0.07135 3.35599 1.54185 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42879 0.19667 -1.00000 - 17012 2017 8 21 22 54 15 582 4.8751 184.12622 813.04337 746.49497 -0.07136 3.36294 1.53976 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42844 0.19667 -1.00000 - 17013 2017 8 21 22 54 20 457 4.8751 184.12252 813.07762 746.52383 -0.07139 3.37020 1.53761 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42808 0.19667 -1.00000 - 17014 2017 8 21 22 54 25 332 4.8751 184.11892 813.11202 746.55278 -0.07147 3.37757 1.53812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42773 0.19667 -1.00000 - 17015 2017 8 21 22 54 30 207 4.8751 184.11512 813.14662 746.58158 -0.07154 3.38481 1.53359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42738 0.19667 -1.00000 - 17016 2017 8 21 22 54 35 82 4.8751 184.11114 813.18013 746.61031 -0.07158 3.39206 1.53067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42702 0.19667 -1.00000 - 17017 2017 8 21 22 54 39 957 4.8751 184.10723 813.21489 746.63925 -0.07160 3.39772 1.52897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42667 0.19667 -1.00000 - 17018 2017 8 21 22 54 44 832 4.8751 184.10357 813.25169 746.66807 -0.07166 3.39964 1.52413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42631 0.19667 -1.00000 - 17019 2017 8 21 22 54 49 707 4.8751 184.09995 813.28624 746.69684 -0.07172 3.39891 1.52098 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42596 0.19667 -1.00000 - 17020 2017 8 21 22 54 54 583 4.8751 184.09612 813.31942 746.72579 -0.07175 3.39840 1.51915 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42560 0.19667 -1.00000 - 17021 2017 8 21 22 54 59 458 4.8752 184.09214 813.35363 746.75467 -0.07173 3.39730 1.51395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42525 0.19667 -1.00000 - 17022 2017 8 21 22 55 4 333 4.8752 184.08828 813.38850 746.78351 -0.07172 3.39529 1.50905 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42489 0.19666 -1.00000 - 17023 2017 8 21 22 55 9 208 4.8752 184.08465 813.42317 746.81249 -0.07177 3.39213 1.50701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42454 0.19666 -1.00000 - 17024 2017 8 21 22 55 14 83 4.8752 184.08101 813.45787 746.84132 -0.07185 3.38658 1.50222 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42418 0.19666 -1.00000 - 17025 2017 8 21 22 55 18 958 4.8752 184.07716 813.49245 746.87020 -0.07186 3.37805 1.49752 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42383 0.19666 -1.00000 - 17026 2017 8 21 22 55 23 834 4.8752 184.07320 813.52728 746.89919 -0.07181 3.36634 1.49468 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42348 0.19666 -1.00000 - 17027 2017 8 21 22 55 28 709 4.8752 184.06940 813.56243 746.92806 -0.07176 3.35158 1.48948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42312 0.19666 -1.00000 - 17028 2017 8 21 22 55 33 584 4.8752 184.06580 813.59742 746.95699 -0.07178 3.33407 1.48510 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42277 0.19666 -1.00000 - 17029 2017 8 21 22 55 38 459 4.8752 184.06214 813.63234 746.98597 -0.07185 3.31418 1.48158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42241 0.19666 -1.00000 - 17030 2017 8 21 22 55 43 335 4.8752 184.05825 813.66757 747.01493 -0.07188 3.29222 1.47632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42206 0.19666 -1.00000 - 17031 2017 8 21 22 55 48 210 4.8753 184.05431 813.70291 747.04395 -0.07186 3.26834 1.47316 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42170 0.19666 -1.00000 - 17032 2017 8 21 22 55 53 85 4.8753 184.05056 813.73843 747.07297 -0.07184 3.24276 1.46805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42135 0.19666 -1.00000 - 17033 2017 8 21 22 55 57 960 4.8753 184.04699 813.77408 747.10202 -0.07190 3.21573 1.46272 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42099 0.19666 -1.00000 - 17034 2017 8 21 22 56 2 836 4.8753 184.04330 813.80785 747.13116 -0.07198 3.18745 1.45872 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42064 0.19666 -1.00000 - 17035 2017 8 21 22 56 7 711 4.8753 184.03940 813.84308 747.16033 -0.07202 3.15641 1.45183 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42028 0.19666 -1.00000 - 17036 2017 8 21 22 56 12 586 4.8753 184.03547 813.87988 747.18971 -0.07200 3.05149 1.44511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41993 0.19666 -1.00000 - 17037 2017 8 21 22 56 17 462 4.8753 184.03179 813.92020 747.21929 -0.07199 3.02337 1.43910 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41958 0.19666 -1.00000 - 17038 2017 8 21 22 56 22 337 4.8753 184.02823 813.95753 747.24897 -0.07203 2.99261 1.43209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41922 0.19666 -1.00000 - 17039 2017 8 21 22 56 27 212 4.8753 184.02451 813.99171 747.27877 -0.07207 2.96203 1.42634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41887 0.19666 -1.00000 - 17040 2017 8 21 22 56 32 88 4.8753 184.02059 814.02845 747.30857 -0.07207 2.92898 1.41990 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41851 0.19666 -1.00000 - 17041 2017 8 21 22 56 36 963 4.8754 184.01670 814.06649 747.33845 -0.07205 2.89484 1.41413 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41816 0.19666 -1.00000 - 17042 2017 8 21 22 56 41 838 4.8754 184.01307 814.10501 747.36839 -0.07207 2.86602 1.40790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41780 0.19666 -1.00000 - 17043 2017 8 21 22 56 46 714 4.8754 184.00951 814.14765 747.39856 -0.07211 2.83896 1.40040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41745 0.19666 -1.00000 - 17044 2017 8 21 22 56 51 589 4.8754 184.00576 814.18615 747.42885 -0.07213 2.81237 1.39595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41709 0.19666 -1.00000 - 17045 2017 8 21 22 56 56 464 4.8754 184.00183 814.21994 747.45914 -0.07210 2.78944 1.38936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41674 0.19666 -1.00000 - 17046 2017 8 21 22 57 1 340 4.8754 183.99799 814.25671 747.48949 -0.07208 2.76963 1.38253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41638 0.19666 -1.00000 - 17047 2017 8 21 22 57 6 215 4.8754 183.99438 814.29594 747.51986 -0.07210 2.76684 1.37929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41603 0.19666 -1.00000 - 17048 2017 8 21 22 57 11 91 4.8754 183.99081 814.33656 747.55040 -0.07214 2.75342 1.37082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41568 0.19666 -1.00000 - 17049 2017 8 21 22 57 15 966 4.8754 183.98702 814.38010 747.58103 -0.07215 2.73637 1.36385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41532 0.19666 -1.00000 - 17050 2017 8 21 22 57 20 841 4.8754 183.98310 814.41923 747.61178 -0.07209 2.71782 1.35930 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41497 0.19665 -1.00000 - 17051 2017 8 21 22 57 25 717 4.8755 183.97930 814.45364 747.64264 -0.07203 2.65423 1.35212 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41461 0.19665 -1.00000 - 17052 2017 8 21 22 57 30 592 4.8755 183.97572 814.48928 747.67346 -0.07204 2.65788 1.34308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41426 0.19665 -1.00000 - 17053 2017 8 21 22 57 35 468 4.8755 183.97212 814.52814 747.70454 -0.07209 2.62059 1.33927 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41390 0.19665 -1.00000 - 17054 2017 8 21 22 57 40 343 4.8755 183.96830 814.57131 747.73546 -0.07212 2.61494 1.33091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41355 0.19665 -1.00000 - 17055 2017 8 21 22 57 45 219 4.8755 183.96439 814.61323 747.76641 -0.07209 2.60480 1.32273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41319 0.19665 -1.00000 - 17056 2017 8 21 22 57 50 94 4.8755 183.96064 814.64864 747.79758 -0.07206 2.58660 1.32066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41284 0.19665 -1.00000 - 17057 2017 8 21 22 57 54 970 4.8755 183.95707 814.68551 747.82869 -0.07211 2.52801 1.31165 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41248 0.19665 -1.00000 - 17058 2017 8 21 22 57 59 845 4.8755 183.95345 814.72300 747.85988 -0.07219 2.52858 1.30386 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41213 0.19665 -1.00000 - 17059 2017 8 21 22 58 4 721 4.8755 183.94961 814.76273 747.89119 -0.07225 2.52655 1.30281 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41178 0.19665 -1.00000 - 17060 2017 8 21 22 58 9 596 4.8755 183.94571 814.80222 747.92236 -0.07226 2.50511 1.29388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41142 0.19665 -1.00000 - 17061 2017 8 21 22 58 14 472 4.8756 183.94201 814.84622 747.95356 -0.07228 2.50534 1.28795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41107 0.19665 -1.00000 - 17062 2017 8 21 22 58 19 348 4.8756 183.93846 814.88465 747.98497 -0.07237 2.50198 1.28689 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41071 0.19665 -1.00000 - 17063 2017 8 21 22 58 24 223 4.8756 183.93481 814.92053 748.01612 -0.07249 2.50043 1.28102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41036 0.19665 -1.00000 - 17064 2017 8 21 22 58 29 99 4.8756 183.93096 814.95952 748.04745 -0.07256 2.50817 1.27829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41000 0.19665 -1.00000 - 17065 2017 8 21 22 58 33 974 4.8756 183.92708 814.99864 748.07880 -0.07258 2.51803 1.27836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40965 0.19665 -1.00000 - 17066 2017 8 21 22 58 38 850 4.8756 183.92343 815.03797 748.10994 -0.07263 2.52854 1.27408 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40929 0.19665 -1.00000 - 17067 2017 8 21 22 58 43 726 4.8756 183.91990 815.07673 748.14098 -0.07273 2.53718 1.27365 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40894 0.19665 -1.00000 - 17068 2017 8 21 22 58 48 601 4.8756 183.91623 815.11544 748.17203 -0.07284 2.54613 1.27495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40858 0.19665 -1.00000 - 17069 2017 8 21 22 58 53 477 4.8756 183.91236 815.15483 748.20292 -0.07289 2.55430 1.27330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40823 0.19665 -1.00000 - 17070 2017 8 21 22 58 58 352 4.8756 183.90851 815.19358 748.23362 -0.07292 2.56170 1.27385 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40788 0.19665 -1.00000 - 17071 2017 8 21 22 59 3 228 4.8756 183.90491 815.23172 748.26424 -0.07298 2.56838 1.27584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40752 0.19665 -1.00000 - 17072 2017 8 21 22 59 8 104 4.8757 183.90139 815.26973 748.29471 -0.07309 2.57447 1.27629 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40717 0.19665 -1.00000 - 17073 2017 8 21 22 59 12 979 4.8757 183.89768 815.30760 748.32510 -0.07317 2.58016 1.27812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40681 0.19665 -1.00000 - 17074 2017 8 21 22 59 17 855 4.8757 183.89380 815.34521 748.35538 -0.07318 2.58562 1.28129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40646 0.19665 -1.00000 - 17075 2017 8 21 22 59 22 731 4.8757 183.89000 815.38278 748.38548 -0.07317 2.59102 1.28227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40610 0.19665 -1.00000 - 17076 2017 8 21 22 59 27 606 4.8757 183.88645 815.41981 748.41539 -0.07320 2.59651 1.28584 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40575 0.19665 -1.00000 - 17077 2017 8 21 22 59 32 482 4.8757 183.88291 815.45661 748.44524 -0.07326 2.60214 1.28919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40539 0.19664 -1.00000 - 17078 2017 8 21 22 59 37 358 4.8757 183.87915 815.49362 748.47495 -0.07329 2.60797 1.29156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40504 0.19664 -1.00000 - 17079 2017 8 21 22 59 42 234 4.8757 183.87527 815.53046 748.50454 -0.07326 2.61407 1.29695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40468 0.19664 -1.00000 - 17080 2017 8 21 22 59 47 109 4.8757 183.87153 815.56608 748.53389 -0.07323 2.62051 1.29858 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40433 0.19664 -1.00000 - 17081 2017 8 21 22 59 51 985 4.8757 183.86800 815.60221 748.56313 -0.07324 2.62774 1.30044 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40397 0.19664 -1.00000 - 17082 2017 8 21 22 59 56 861 4.8758 183.86443 815.63797 748.59237 -0.07328 2.63579 1.30493 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40362 0.19664 -1.00000 - 17083 2017 8 21 23 0 1 737 4.8758 183.86063 815.67306 748.62140 -0.07327 2.64194 1.30503 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40327 0.19664 -1.00000 - 17084 2017 8 21 23 0 6 612 4.8758 183.85675 815.71067 748.65041 -0.07320 2.64540 1.30592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40291 0.19664 -1.00000 - 17085 2017 8 21 23 0 11 488 4.8758 183.85306 815.74583 748.67941 -0.07313 2.65038 1.31004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40256 0.19664 -1.00000 - 17086 2017 8 21 23 0 16 364 4.8758 183.84955 815.77881 748.70816 -0.07313 2.65748 1.30960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40220 0.19664 -1.00000 - 17087 2017 8 21 23 0 21 240 4.8758 183.84594 815.81344 748.73699 -0.07317 2.66677 1.31228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40185 0.19664 -1.00000 - 17088 2017 8 21 23 0 26 116 4.8758 183.84211 815.84372 748.76586 -0.07317 2.67796 1.31568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40149 0.19664 -1.00000 - 17089 2017 8 21 23 0 30 991 4.8758 183.83824 815.87977 748.79457 -0.07313 2.68936 1.31567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40114 0.19664 -1.00000 - 17090 2017 8 21 23 0 35 867 4.8758 183.83460 815.91355 748.82334 -0.07309 2.69654 1.31865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40078 0.19664 -1.00000 - 17091 2017 8 21 23 0 40 743 4.8759 183.83109 815.94896 748.85211 -0.07310 2.70030 1.32086 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40043 0.19664 -1.00000 - 17092 2017 8 21 23 0 45 619 4.8759 183.82744 815.98436 748.88091 -0.07313 2.68791 1.32065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40007 0.19664 -1.00000 - 17093 2017 8 21 23 0 50 495 4.8759 183.82357 816.02404 748.90975 -0.07313 2.70706 1.32525 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39972 0.19664 -1.00000 - 17094 2017 8 21 23 0 55 371 4.8759 183.81973 816.05807 748.93855 -0.07312 2.72267 1.32951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39937 0.19664 -1.00000 - 17095 2017 8 21 23 1 0 247 4.8759 183.81613 816.08999 748.96724 -0.07315 2.73608 1.33035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39901 0.19664 -1.00000 - 17096 2017 8 21 23 1 5 123 4.8759 183.81262 816.12647 748.99578 -0.07321 2.74558 1.33625 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39866 0.19664 -1.00000 - 17097 2017 8 21 23 1 9 999 4.8759 183.80892 816.16056 749.02413 -0.07324 2.75398 1.33849 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39830 0.19664 -1.00000 - 17098 2017 8 21 23 1 14 874 4.8759 183.80504 816.19643 749.05248 -0.07322 2.76717 1.33985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39795 0.19664 -1.00000 - 17099 2017 8 21 23 1 19 750 4.8759 183.80124 816.23551 749.08086 -0.07320 2.78123 1.34583 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39759 0.19664 -1.00000 - 17100 2017 8 21 23 1 24 626 4.8760 183.79768 816.26985 749.10905 -0.07323 2.79217 1.34875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39724 0.19664 -1.00000 - 17101 2017 8 21 23 1 29 502 4.8760 183.79416 816.29982 749.13708 -0.07330 2.80160 1.35138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39688 0.19664 -1.00000 - 17102 2017 8 21 23 1 34 378 4.8760 183.79041 816.33552 749.16509 -0.07335 2.80764 1.35596 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39653 0.19664 -1.00000 - 17103 2017 8 21 23 1 39 254 4.8760 183.78653 816.36846 749.19292 -0.07335 2.81554 1.35749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39617 0.19664 -1.00000 - 17104 2017 8 21 23 1 44 130 4.8760 183.78278 816.40297 749.22068 -0.07334 2.82745 1.35998 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39582 0.19664 -1.00000 - 17105 2017 8 21 23 1 49 6 4.8760 183.77925 816.44091 749.24853 -0.07340 2.84162 1.36325 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39546 0.19663 -1.00000 - 17106 2017 8 21 23 1 53 882 4.8760 183.77570 816.47455 749.27619 -0.07348 2.85385 1.36603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39511 0.19663 -1.00000 - 17107 2017 8 21 23 1 58 758 4.8760 183.77192 816.50335 749.30373 -0.07353 2.86548 1.36944 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39476 0.19663 -1.00000 - 17108 2017 8 21 23 2 3 634 4.8760 183.76805 816.53605 749.33126 -0.07352 2.87410 1.37109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39440 0.19663 -1.00000 - 17109 2017 8 21 23 2 8 510 4.8760 183.76435 816.56943 749.35859 -0.07352 2.88310 1.37368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39405 0.19663 -1.00000 - 17110 2017 8 21 23 2 13 386 4.8760 183.76084 816.60321 749.38595 -0.07359 2.89737 1.37624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39369 0.19663 -1.00000 - 17111 2017 8 21 23 2 18 262 4.8760 183.75726 816.64068 749.41335 -0.07370 2.91247 1.37736 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39334 0.19663 -1.00000 - 17112 2017 8 21 23 2 23 138 4.8761 183.75345 816.66862 749.44064 -0.07376 2.92203 1.37955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39298 0.19663 -1.00000 - 17113 2017 8 21 23 2 28 15 4.8761 183.74960 816.70079 749.46793 -0.07376 2.92689 1.38159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39263 0.19663 -1.00000 - 17114 2017 8 21 23 2 32 891 4.8761 183.74595 816.73379 749.49501 -0.07377 2.92947 1.38225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39227 0.19663 -1.00000 - 17115 2017 8 21 23 2 37 767 4.8761 183.74245 816.76531 749.52200 -0.07384 2.93472 1.38322 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39192 0.19663 -1.00000 - 17116 2017 8 21 23 2 42 643 4.8761 183.73884 816.79636 749.54910 -0.07394 2.94254 1.38439 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39156 0.19663 -1.00000 - 17117 2017 8 21 23 2 47 519 4.8761 183.73500 816.82783 749.57611 -0.07400 2.94981 1.38580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39121 0.19663 -1.00000 - 17118 2017 8 21 23 2 52 395 4.8761 183.73116 816.85925 749.60305 -0.07403 2.95678 1.38483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39086 0.19663 -1.00000 - 17119 2017 8 21 23 2 57 271 4.8761 183.72756 816.89019 749.63009 -0.07407 2.97299 1.38538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39050 0.19663 -1.00000 - 17120 2017 8 21 23 3 2 147 4.8761 183.72407 816.92144 749.65713 -0.07414 2.99058 1.38427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39015 0.19663 -1.00000 - 17121 2017 8 21 23 3 7 23 4.8761 183.72041 816.95651 749.68407 -0.07421 3.00320 1.38092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38979 0.19663 -1.00000 - 17122 2017 8 21 23 3 11 900 4.8762 183.71655 816.98630 749.71115 -0.07422 3.01283 1.38066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38944 0.19663 -1.00000 - 17123 2017 8 21 23 3 16 776 4.8762 183.71275 817.01207 749.73828 -0.07421 3.02083 1.37862 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38908 0.19663 -1.00000 - 17124 2017 8 21 23 3 21 652 4.8762 183.70920 817.04157 749.76552 -0.07424 3.02362 1.37709 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38873 0.19663 -1.00000 - 17125 2017 8 21 23 3 26 528 4.8762 183.70570 817.07856 749.79291 -0.07430 2.95271 1.37522 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38837 0.19663 -1.00000 - 17126 2017 8 21 23 3 31 404 4.8762 183.70198 817.11094 749.82030 -0.07434 2.98665 1.37368 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38802 0.19663 -1.00000 - 17127 2017 8 21 23 3 36 280 4.8762 183.69811 817.14401 749.84791 -0.07432 2.98374 1.37431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38766 0.19663 -1.00000 - 17128 2017 8 21 23 3 41 157 4.8762 183.69437 817.17685 749.87540 -0.07430 2.97966 1.37352 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38731 0.19663 -1.00000 - 17129 2017 8 21 23 3 46 33 4.8762 183.69085 817.20887 749.90283 -0.07432 2.97488 1.37064 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38695 0.19663 -1.00000 - 17130 2017 8 21 23 3 50 909 4.8762 183.68732 817.24189 749.93046 -0.07437 2.97012 1.37042 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38660 0.19663 -1.00000 - 17131 2017 8 21 23 3 55 785 4.8762 183.68355 817.27461 749.95808 -0.07438 2.96313 1.37020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38625 0.19663 -1.00000 - 17132 2017 8 21 23 4 0 662 4.8762 183.67969 817.31121 749.98559 -0.07432 2.95331 1.36681 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38589 0.19663 -1.00000 - 17133 2017 8 21 23 4 5 538 4.8762 183.67602 817.34417 750.01317 -0.07427 2.94572 1.36794 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38554 0.19662 -1.00000 - 17134 2017 8 21 23 4 10 414 4.8763 183.67253 817.37422 750.04077 -0.07429 2.94651 1.36914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38518 0.19662 -1.00000 - 17135 2017 8 21 23 4 15 290 4.8763 183.66896 817.40791 750.06826 -0.07434 2.94559 1.36697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38483 0.19662 -1.00000 - 17136 2017 8 21 23 4 20 167 4.8763 183.66517 817.44117 750.09561 -0.07433 2.94556 1.36876 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38447 0.19662 -1.00000 - 17137 2017 8 21 23 4 25 43 4.8763 183.66133 817.47368 750.12297 -0.07425 2.95134 1.37082 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38412 0.19662 -1.00000 - 17138 2017 8 21 23 4 29 919 4.8763 183.65772 817.50667 750.15017 -0.07418 2.95897 1.37009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38376 0.19662 -1.00000 - 17139 2017 8 21 23 4 34 795 4.8763 183.65425 817.53939 750.17734 -0.07417 2.96774 1.37221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38341 0.19662 -1.00000 - 17140 2017 8 21 23 4 39 672 4.8763 183.65064 817.57223 750.20446 -0.07419 2.97726 1.37331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38305 0.19662 -1.00000 - 17141 2017 8 21 23 4 44 548 4.8763 183.64682 817.60511 750.23143 -0.07418 2.98691 1.37330 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38270 0.19662 -1.00000 - 17142 2017 8 21 23 4 49 424 4.8763 183.64302 817.63745 750.25830 -0.07413 2.99616 1.37595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38234 0.19662 -1.00000 - 17143 2017 8 21 23 4 54 301 4.8763 183.63946 817.66984 750.28512 -0.07411 3.00460 1.37695 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38199 0.19662 -1.00000 - 17144 2017 8 21 23 4 59 177 4.8763 183.63600 817.70215 750.31185 -0.07413 3.01190 1.37817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38164 0.19662 -1.00000 - 17145 2017 8 21 23 5 4 53 4.8763 183.63235 817.73433 750.33846 -0.07414 3.01786 1.38067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38128 0.19662 -1.00000 - 17146 2017 8 21 23 5 8 930 4.8764 183.62852 817.76649 750.36494 -0.07410 3.02238 1.38110 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38093 0.19662 -1.00000 - 17147 2017 8 21 23 5 13 806 4.8764 183.62477 817.79838 750.39136 -0.07403 3.02546 1.38194 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38057 0.19662 -1.00000 - 17148 2017 8 21 23 5 18 682 4.8764 183.62127 817.83014 750.41766 -0.07401 3.02715 1.38364 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38022 0.19662 -1.00000 - 17149 2017 8 21 23 5 23 559 4.8764 183.61779 817.86189 750.44387 -0.07403 3.02755 1.38308 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37986 0.19662 -1.00000 - 17150 2017 8 21 23 5 28 435 4.8764 183.61409 817.89366 750.47006 -0.07404 3.02683 1.38275 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37951 0.19662 -1.00000 - 17151 2017 8 21 23 5 33 312 4.8764 183.61026 817.92439 750.49628 -0.07402 3.02520 1.38157 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37915 0.19662 -1.00000 - 17152 2017 8 21 23 5 38 188 4.8764 183.60657 817.95611 750.52250 -0.07400 3.02312 1.37618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37880 0.19662 -1.00000 - 17153 2017 8 21 23 5 43 65 4.8764 183.60310 817.98760 750.54888 -0.07404 3.02071 1.37720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37844 0.19662 -1.00000 - 17154 2017 8 21 23 5 47 941 4.8764 183.59959 818.01469 750.57522 -0.07411 3.01760 1.37091 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37809 0.19662 -1.00000 - 17155 2017 8 21 23 5 52 817 4.8764 183.59585 818.04822 750.60160 -0.07414 3.01157 1.36509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37773 0.19662 -1.00000 - 17156 2017 8 21 23 5 57 694 4.8764 183.59203 818.07996 750.62816 -0.07414 3.00018 1.36453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37738 0.19662 -1.00000 - 17157 2017 8 21 23 6 2 570 4.8765 183.58840 818.11287 750.65474 -0.07415 2.92432 1.35676 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37703 0.19662 -1.00000 - 17158 2017 8 21 23 6 7 447 4.8765 183.58494 818.15020 750.68152 -0.07423 2.91345 1.35061 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37667 0.19662 -1.00000 - 17159 2017 8 21 23 6 12 323 4.8765 183.58140 818.18322 750.70852 -0.07434 2.89940 1.34964 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37632 0.19662 -1.00000 - 17160 2017 8 21 23 6 17 200 4.8765 183.57764 818.21227 750.73547 -0.07441 2.88262 1.34293 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37596 0.19662 -1.00000 - 17161 2017 8 21 23 6 22 76 4.8765 183.57384 818.24393 750.76246 -0.07444 2.86696 1.33717 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37561 0.19661 -1.00000 - 17162 2017 8 21 23 6 26 953 4.8765 183.57026 818.27808 750.78964 -0.07447 2.85314 1.33556 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37525 0.19661 -1.00000 - 17163 2017 8 21 23 6 31 829 4.8765 183.56682 818.31446 750.81684 -0.07456 2.82312 1.32714 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37490 0.19661 -1.00000 - 17164 2017 8 21 23 6 36 706 4.8765 183.56324 818.35306 750.84414 -0.07466 2.80658 1.32224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37454 0.19661 -1.00000 - 17165 2017 8 21 23 6 41 582 4.8765 183.55945 818.38733 750.87156 -0.07473 2.78878 1.32133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37419 0.19661 -1.00000 - 17166 2017 8 21 23 6 46 459 4.8765 183.55569 818.41755 750.89888 -0.07477 2.77062 1.31448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37383 0.19661 -1.00000 - 17167 2017 8 21 23 6 51 335 4.8765 183.55217 818.45047 750.92610 -0.07484 2.74989 1.31009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37348 0.19661 -1.00000 - 17168 2017 8 21 23 6 56 212 4.8765 183.54874 818.48519 750.95345 -0.07494 2.72865 1.30810 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37312 0.19661 -1.00000 - 17169 2017 8 21 23 7 1 88 4.8766 183.54511 818.52199 750.98075 -0.07501 2.71314 1.30109 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37277 0.19661 -1.00000 - 17170 2017 8 21 23 7 5 965 4.8766 183.54131 818.56114 751.00809 -0.07501 2.69941 1.29593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37241 0.19661 -1.00000 - 17171 2017 8 21 23 7 10 841 4.8766 183.53761 818.59552 751.03564 -0.07498 2.68458 1.29317 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37206 0.19661 -1.00000 - 17172 2017 8 21 23 7 15 718 4.8766 183.53414 818.62561 751.06302 -0.07501 2.66961 1.28721 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37171 0.19661 -1.00000 - 17173 2017 8 21 23 7 20 595 4.8766 183.53069 818.65814 751.09040 -0.07508 2.65162 1.28213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37135 0.19661 -1.00000 - 17174 2017 8 21 23 7 25 471 4.8766 183.52701 818.69264 751.11785 -0.07512 2.63405 1.27729 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37100 0.19661 -1.00000 - 17175 2017 8 21 23 7 30 348 4.8766 183.52322 818.72974 751.14532 -0.07511 2.62201 1.27093 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37064 0.19661 -1.00000 - 17176 2017 8 21 23 7 35 224 4.8766 183.51960 818.76874 751.17298 -0.07509 2.61137 1.26725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37029 0.19661 -1.00000 - 17177 2017 8 21 23 7 40 101 4.8766 183.51617 818.79903 751.20065 -0.07513 2.59631 1.26142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36993 0.19661 -1.00000 - 17178 2017 8 21 23 7 44 978 4.8766 183.51268 818.82966 751.22831 -0.07519 2.57784 1.25412 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36958 0.19661 -1.00000 - 17179 2017 8 21 23 7 49 854 4.8766 183.50896 818.86381 751.25600 -0.07521 2.55868 1.25026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36922 0.19661 -1.00000 - 17180 2017 8 21 23 7 54 731 4.8766 183.50519 818.89901 751.28371 -0.07516 2.50861 1.24320 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36887 0.19661 -1.00000 - 17181 2017 8 21 23 7 59 608 4.8767 183.50163 818.93758 751.31139 -0.07513 2.50180 1.23476 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36851 0.19661 -1.00000 - 17182 2017 8 21 23 8 4 484 4.8767 183.49822 818.97073 751.33922 -0.07516 2.49419 1.23159 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36816 0.19661 -1.00000 - 17183 2017 8 21 23 8 9 361 4.8767 183.49468 819.00262 751.36705 -0.07524 2.48835 1.22461 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36780 0.19661 -1.00000 - 17184 2017 8 21 23 8 14 238 4.8767 183.49093 819.03682 751.39498 -0.07527 2.48428 1.21933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36745 0.19661 -1.00000 - 17185 2017 8 21 23 8 19 114 4.8767 183.48719 819.07036 751.42297 -0.07525 2.48209 1.21608 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36710 0.19661 -1.00000 - 17186 2017 8 21 23 8 23 991 4.8767 183.48369 819.10516 751.45111 -0.07523 2.47995 1.21071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36674 0.19661 -1.00000 - 17187 2017 8 21 23 8 28 868 4.8767 183.48028 819.13941 751.47928 -0.07525 2.47767 1.20829 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36639 0.19661 -1.00000 - 17188 2017 8 21 23 8 33 744 4.8767 183.47668 819.17386 751.50748 -0.07528 2.47566 1.20586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36603 0.19660 -1.00000 - 17189 2017 8 21 23 8 38 621 4.8767 183.47291 819.20828 751.53566 -0.07527 2.47363 1.20349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36568 0.19660 -1.00000 - 17190 2017 8 21 23 8 43 498 4.8767 183.46922 819.24277 751.56385 -0.07524 2.47168 1.20152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36532 0.19660 -1.00000 - 17191 2017 8 21 23 8 48 375 4.8767 183.46577 819.27720 751.59199 -0.07525 2.46990 1.20133 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36497 0.19660 -1.00000 - 17192 2017 8 21 23 8 53 251 4.8767 183.46234 819.31176 751.62011 -0.07528 2.46835 1.19813 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36461 0.19660 -1.00000 - 17193 2017 8 21 23 8 58 128 4.8768 183.45868 819.34611 751.64823 -0.07527 2.46714 1.19831 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36426 0.19660 -1.00000 - 17194 2017 8 21 23 9 3 5 4.8768 183.45490 819.38052 751.67636 -0.07520 2.46642 1.19929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36390 0.19660 -1.00000 - 17195 2017 8 21 23 9 7 882 4.8768 183.45128 819.41518 751.70430 -0.07514 2.46635 1.19598 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36355 0.19660 -1.00000 - 17196 2017 8 21 23 9 12 758 4.8768 183.44786 819.44935 751.73228 -0.07515 2.46736 1.19674 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36319 0.19660 -1.00000 - 17197 2017 8 21 23 9 17 635 4.8768 183.44438 819.48269 751.76021 -0.07519 2.46926 1.19661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36284 0.19660 -1.00000 - 17198 2017 8 21 23 9 22 512 4.8768 183.44068 819.51750 751.78808 -0.07517 2.47108 1.19528 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36248 0.19660 -1.00000 - 17199 2017 8 21 23 9 27 389 4.8768 183.43692 819.55172 751.81594 -0.07509 2.47301 1.19744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36213 0.19660 -1.00000 - 17200 2017 8 21 23 9 32 266 4.8768 183.43336 819.58591 751.84370 -0.07502 2.47602 1.19628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36178 0.19660 -1.00000 - 17201 2017 8 21 23 9 37 142 4.8768 183.42997 819.62001 751.87147 -0.07503 2.48045 1.19564 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36142 0.19660 -1.00000 - 17202 2017 8 21 23 9 42 19 4.8768 183.42645 819.65393 751.89922 -0.07507 2.48638 1.19857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36107 0.19660 -1.00000 - 17203 2017 8 21 23 9 46 896 4.8768 183.42272 819.68809 751.92685 -0.07506 2.49338 1.19753 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36071 0.19660 -1.00000 - 17204 2017 8 21 23 9 51 773 4.8768 183.41899 819.72204 751.95436 -0.07501 2.50122 1.19724 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36036 0.19660 -1.00000 - 17205 2017 8 21 23 9 56 650 4.8768 183.41549 819.75565 751.98195 -0.07498 2.50988 1.19929 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36000 0.19660 -1.00000 - 17206 2017 8 21 23 10 1 527 4.8769 183.41210 819.78952 752.00934 -0.07502 2.51928 1.19775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35965 0.19660 -1.00000 - 17207 2017 8 21 23 10 6 403 4.8769 183.40854 819.82325 752.03664 -0.07507 2.52976 1.19725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35929 0.19660 -1.00000 - 17208 2017 8 21 23 10 11 280 4.8769 183.40479 819.85617 752.06404 -0.07509 2.53915 1.19830 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35894 0.19660 -1.00000 - 17209 2017 8 21 23 10 16 157 4.8769 183.40111 819.89242 752.09128 -0.07508 2.54520 1.19658 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35858 0.19660 -1.00000 - 17210 2017 8 21 23 10 21 34 4.8769 183.39767 819.92544 752.11848 -0.07510 2.54933 1.19628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35823 0.19660 -1.00000 - 17211 2017 8 21 23 10 25 911 4.8769 183.39427 819.95398 752.14578 -0.07516 2.55436 1.19737 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35787 0.19660 -1.00000 - 17212 2017 8 21 23 10 30 788 4.8769 183.39065 819.98629 752.17300 -0.07521 2.56008 1.19519 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35752 0.19660 -1.00000 - 17213 2017 8 21 23 10 35 665 4.8769 183.38689 820.02021 752.20014 -0.07521 2.56614 1.19471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35717 0.19660 -1.00000 - 17214 2017 8 21 23 10 40 542 4.8769 183.38329 820.05333 752.22738 -0.07520 2.57184 1.19635 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35681 0.19660 -1.00000 - 17215 2017 8 21 23 10 45 419 4.8769 183.37989 820.08418 752.25450 -0.07525 2.57674 1.19484 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35646 0.19660 -1.00000 - 17216 2017 8 21 23 10 50 296 4.8769 183.37645 820.11771 752.28164 -0.07533 2.57921 1.19595 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35610 0.19659 -1.00000 - 17217 2017 8 21 23 10 55 173 4.8769 183.37278 820.15126 752.30879 -0.07537 2.57883 1.19866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35575 0.19659 -1.00000 - 17218 2017 8 21 23 11 0 50 4.8770 183.36904 820.18483 752.33584 -0.07534 2.57645 1.19799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35539 0.19659 -1.00000 - 17219 2017 8 21 23 11 4 926 4.8770 183.36550 820.21796 752.36290 -0.07531 2.57254 1.20095 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35504 0.19659 -1.00000 - 17220 2017 8 21 23 11 9 803 4.8770 183.36213 820.25111 752.38983 -0.07534 2.56768 1.20477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35468 0.19659 -1.00000 - 17221 2017 8 21 23 11 14 680 4.8770 183.35864 820.28444 752.41666 -0.07542 2.56240 1.20634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35433 0.19659 -1.00000 - 17222 2017 8 21 23 11 19 557 4.8770 183.35493 820.31758 752.44341 -0.07547 2.55722 1.21028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35397 0.19659 -1.00000 - 17223 2017 8 21 23 11 24 434 4.8770 183.35122 820.35063 752.47002 -0.07547 2.55256 1.21403 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35362 0.19659 -1.00000 - 17224 2017 8 21 23 11 29 311 4.8770 183.34774 820.38359 752.49650 -0.07547 2.55081 1.21739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35326 0.19659 -1.00000 - 17225 2017 8 21 23 11 34 188 4.8770 183.34437 820.41635 752.52289 -0.07551 2.55405 1.22170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35291 0.19659 -1.00000 - 17226 2017 8 21 23 11 39 65 4.8770 183.34083 820.44890 752.54912 -0.07556 2.55757 1.22651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35255 0.19659 -1.00000 - 17227 2017 8 21 23 11 43 942 4.8770 183.33710 820.48132 752.57521 -0.07561 2.56146 1.22985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35220 0.19659 -1.00000 - 17228 2017 8 21 23 11 48 820 4.8770 183.33343 820.51349 752.60114 -0.07565 2.56590 1.23432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35185 0.19659 -1.00000 - 17229 2017 8 21 23 11 53 697 4.8770 183.33001 820.54537 752.62696 -0.07574 2.57103 1.23701 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35149 0.19659 -1.00000 - 17230 2017 8 21 23 11 58 574 4.8770 183.32662 820.57717 752.65268 -0.07586 2.57733 1.23866 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35114 0.19659 -1.00000 - 17231 2017 8 21 23 12 3 451 4.8771 183.32301 820.60874 752.67842 -0.07593 2.58465 1.24211 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35078 0.19659 -1.00000 - 17232 2017 8 21 23 12 8 328 4.8771 183.31928 820.63563 752.70416 -0.07593 2.58995 1.24224 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35043 0.19659 -1.00000 - 17233 2017 8 21 23 12 13 205 4.8771 183.31568 820.66723 752.72975 -0.07594 2.58952 1.23985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35007 0.19659 -1.00000 - 17234 2017 8 21 23 12 18 82 4.8771 183.31230 820.69647 752.75555 -0.07602 2.57167 1.23985 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34972 0.19659 -1.00000 - 17235 2017 8 21 23 12 22 959 4.8771 183.30887 820.73265 752.78148 -0.07613 2.52915 1.23697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34936 0.19659 -1.00000 - 17236 2017 8 21 23 12 27 836 4.8771 183.30521 820.76724 752.80752 -0.07616 2.54512 1.23657 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34901 0.19659 -1.00000 - 17237 2017 8 21 23 12 32 713 4.8771 183.30149 820.79945 752.83362 -0.07612 2.55437 1.23817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34865 0.19659 -1.00000 - 17238 2017 8 21 23 12 37 590 4.8771 183.29797 820.82720 752.85967 -0.07607 2.56181 1.23504 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34830 0.19659 -1.00000 - 17239 2017 8 21 23 12 42 467 4.8771 183.29462 820.86102 752.88576 -0.07609 2.56403 1.23488 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34794 0.19659 -1.00000 - 17240 2017 8 21 23 12 47 345 4.8771 183.29114 820.88814 752.91179 -0.07613 2.56276 1.23575 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34759 0.19659 -1.00000 - 17241 2017 8 21 23 12 52 222 4.8771 183.28745 820.92113 752.93772 -0.07611 2.56323 1.23384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34723 0.19659 -1.00000 - 17242 2017 8 21 23 12 57 99 4.8772 183.28377 820.95308 752.96375 -0.07603 2.56598 1.23577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34688 0.19659 -1.00000 - 17243 2017 8 21 23 13 1 976 4.8772 183.28032 820.98510 752.98972 -0.07595 2.57078 1.23637 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34653 0.19659 -1.00000 - 17244 2017 8 21 23 13 6 853 4.8772 183.27696 821.01696 753.01571 -0.07594 2.57752 1.23624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34617 0.19658 -1.00000 - 17245 2017 8 21 23 13 11 730 4.8772 183.27341 821.04873 753.04163 -0.07595 2.58592 1.23633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34582 0.19658 -1.00000 - 17246 2017 8 21 23 13 16 608 4.8772 183.26970 821.08030 753.06742 -0.07592 2.59566 1.23900 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34546 0.19658 -1.00000 - 17247 2017 8 21 23 13 21 485 4.8772 183.26608 821.11178 753.09317 -0.07587 2.60648 1.24118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34511 0.19658 -1.00000 - 17248 2017 8 21 23 13 26 362 4.8772 183.26269 821.14352 753.11890 -0.07585 2.61809 1.24337 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34475 0.19658 -1.00000 - 17249 2017 8 21 23 13 31 239 4.8772 183.25931 821.17513 753.14446 -0.07588 2.63030 1.24720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34440 0.19658 -1.00000 - 17250 2017 8 21 23 13 36 116 4.8772 183.25569 821.20662 753.16989 -0.07588 2.64291 1.24938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34404 0.19658 -1.00000 - 17251 2017 8 21 23 13 40 994 4.8772 183.25198 821.23790 753.19516 -0.07584 2.65580 1.25342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34369 0.19658 -1.00000 - 17252 2017 8 21 23 13 45 871 4.8772 183.24844 821.26905 753.22028 -0.07580 2.66884 1.25731 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34333 0.19658 -1.00000 - 17253 2017 8 21 23 13 50 748 4.8772 183.24509 821.29999 753.24522 -0.07582 2.68194 1.26102 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34298 0.19658 -1.00000 - 17254 2017 8 21 23 13 55 625 4.8772 183.24164 821.33069 753.26998 -0.07588 2.69501 1.26526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34262 0.19658 -1.00000 - 17255 2017 8 21 23 14 0 502 4.8773 183.23798 821.36112 753.29453 -0.07591 2.71025 1.26853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34227 0.19658 -1.00000 - 17256 2017 8 21 23 14 5 380 4.8773 183.23428 821.39119 753.31893 -0.07588 2.72563 1.27135 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34191 0.19658 -1.00000 - 17257 2017 8 21 23 14 10 257 4.8773 183.23080 821.42088 753.34313 -0.07586 2.74022 1.27449 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34156 0.19658 -1.00000 - 17258 2017 8 21 23 14 15 134 4.8773 183.22746 821.45027 753.36720 -0.07589 2.75396 1.27505 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34120 0.19658 -1.00000 - 17259 2017 8 21 23 14 20 12 4.8773 183.22394 821.47934 753.39124 -0.07594 2.76684 1.27688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34085 0.19658 -1.00000 - 17260 2017 8 21 23 14 24 889 4.8773 183.22024 821.50807 753.41516 -0.07595 2.77885 1.27517 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34050 0.19658 -1.00000 - 17261 2017 8 21 23 14 29 766 4.8773 183.21659 821.53676 753.43903 -0.07590 2.79059 1.27167 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34014 0.19658 -1.00000 - 17262 2017 8 21 23 14 34 643 4.8773 183.21318 821.56270 753.46302 -0.07586 2.80005 1.26997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33979 0.19658 -1.00000 - 17263 2017 8 21 23 14 39 521 4.8773 183.20982 821.59491 753.48703 -0.07585 2.80424 1.26391 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33943 0.19658 -1.00000 - 17264 2017 8 21 23 14 44 398 4.8773 183.20624 821.62307 753.51115 -0.07581 2.80440 1.26358 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33908 0.19658 -1.00000 - 17265 2017 8 21 23 14 49 275 4.8773 183.20252 821.64642 753.53520 -0.07574 2.80192 1.25987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33872 0.19658 -1.00000 - 17266 2017 8 21 23 14 54 153 4.8773 183.19895 821.67434 753.55934 -0.07567 2.79808 1.25388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33837 0.19658 -1.00000 - 17267 2017 8 21 23 14 59 30 4.8774 183.19559 821.70338 753.58354 -0.07566 2.79346 1.25415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33801 0.19658 -1.00000 - 17268 2017 8 21 23 15 3 908 4.8774 183.19218 821.73211 753.60775 -0.07569 2.78763 1.25030 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33766 0.19658 -1.00000 - 17269 2017 8 21 23 15 8 785 4.8774 183.18854 821.76118 753.63189 -0.07568 2.78031 1.24603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33730 0.19658 -1.00000 - 17270 2017 8 21 23 15 13 662 4.8774 183.18484 821.78976 753.65616 -0.07564 2.77149 1.24420 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33695 0.19658 -1.00000 - 17271 2017 8 21 23 15 18 540 4.8774 183.18134 821.81873 753.68048 -0.07563 2.76136 1.24161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33659 0.19657 -1.00000 - 17272 2017 8 21 23 15 23 417 4.8774 183.17801 821.84779 753.70478 -0.07569 2.75029 1.23937 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33624 0.19657 -1.00000 - 17273 2017 8 21 23 15 28 294 4.8774 183.17455 821.87703 753.72912 -0.07579 2.73872 1.23683 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33588 0.19657 -1.00000 - 17274 2017 8 21 23 15 33 172 4.8774 183.17088 821.90614 753.75344 -0.07583 2.72705 1.23624 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33553 0.19657 -1.00000 - 17275 2017 8 21 23 15 38 49 4.8774 183.16721 821.93522 753.77771 -0.07582 2.71558 1.23315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33518 0.19657 -1.00000 - 17276 2017 8 21 23 15 42 927 4.8774 183.16378 821.96428 753.80206 -0.07582 2.70458 1.23190 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33482 0.19657 -1.00000 - 17277 2017 8 21 23 15 47 804 4.8774 183.16046 821.99350 753.82633 -0.07589 2.69435 1.23128 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33447 0.19657 -1.00000 - 17278 2017 8 21 23 15 52 682 4.8774 183.15694 822.02276 753.85054 -0.07600 2.68511 1.22916 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33411 0.19657 -1.00000 - 17279 2017 8 21 23 15 57 559 4.8774 183.15325 822.05192 753.87475 -0.07608 2.68043 1.22881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33376 0.19657 -1.00000 - 17280 2017 8 21 23 16 2 436 4.8775 183.14964 822.08108 753.89888 -0.07613 2.67891 1.22880 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33340 0.19657 -1.00000 - 17281 2017 8 21 23 16 7 314 4.8775 183.14628 822.11012 753.92292 -0.07622 2.67678 1.22702 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33305 0.19657 -1.00000 - 17282 2017 8 21 23 16 12 191 4.8775 183.14293 822.13896 753.94697 -0.07633 2.67360 1.22538 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33269 0.19657 -1.00000 - 17283 2017 8 21 23 16 17 69 4.8775 183.13934 822.16772 753.97098 -0.07642 2.66939 1.22398 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33234 0.19657 -1.00000 - 17284 2017 8 21 23 16 21 946 4.8775 183.13565 822.19640 753.99490 -0.07646 2.66438 1.22038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33198 0.19657 -1.00000 - 17285 2017 8 21 23 16 26 824 4.8775 183.13213 822.22492 754.01888 -0.07649 2.65913 1.21845 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33163 0.19657 -1.00000 - 17286 2017 8 21 23 16 31 701 4.8775 183.12881 822.25252 754.04292 -0.07659 2.65313 1.21446 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33127 0.19657 -1.00000 - 17287 2017 8 21 23 16 36 579 4.8775 183.12540 822.27782 754.06692 -0.07670 2.64496 1.20811 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33092 0.19657 -1.00000 - 17288 2017 8 21 23 16 41 456 4.8775 183.12176 822.30666 754.09115 -0.07675 2.63803 1.20568 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33056 0.19657 -1.00000 - 17289 2017 8 21 23 16 46 334 4.8775 183.11810 822.33958 754.11556 -0.07672 2.62393 1.19792 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33021 0.19657 -1.00000 - 17290 2017 8 21 23 16 51 211 4.8775 183.11467 822.37393 754.14007 -0.07668 2.61539 1.18842 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32985 0.19657 -1.00000 - 17291 2017 8 21 23 16 56 89 4.8775 183.11135 822.40027 754.16494 -0.07670 2.60201 1.18349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32950 0.19657 -1.00000 - 17292 2017 8 21 23 17 0 967 4.8775 183.10787 822.42649 754.18993 -0.07675 2.58452 1.17342 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32915 0.19657 -1.00000 - 17293 2017 8 21 23 17 5 844 4.8776 183.10420 822.45510 754.21506 -0.07675 2.53165 1.16440 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32879 0.19657 -1.00000 - 17294 2017 8 21 23 17 10 722 4.8776 183.10060 822.49140 754.24035 -0.07669 2.51935 1.15708 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32844 0.19657 -1.00000 - 17295 2017 8 21 23 17 15 599 4.8776 183.09724 822.52215 754.26574 -0.07662 2.50388 1.14854 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32808 0.19657 -1.00000 - 17296 2017 8 21 23 17 20 477 4.8776 183.09390 822.54781 754.29125 -0.07658 2.48818 1.14287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32773 0.19657 -1.00000 - 17297 2017 8 21 23 17 25 354 4.8776 183.09034 822.57964 754.31703 -0.07654 2.47287 1.13537 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32737 0.19657 -1.00000 - 17298 2017 8 21 23 17 30 232 4.8776 183.08667 822.61216 754.34275 -0.07646 2.45834 1.12853 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32702 0.19657 -1.00000 - 17299 2017 8 21 23 17 35 110 4.8776 183.08315 822.64406 754.36866 -0.07639 2.44424 1.12265 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32666 0.19656 -1.00000 - 17300 2017 8 21 23 17 39 987 4.8776 183.07983 822.67668 754.39465 -0.07636 2.43007 1.11632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32631 0.19656 -1.00000 - 17301 2017 8 21 23 17 44 865 4.8776 183.07644 822.70966 754.42075 -0.07636 2.41545 1.11107 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32595 0.19656 -1.00000 - 17302 2017 8 21 23 17 49 742 4.8776 183.07283 822.74297 754.44688 -0.07633 2.40027 1.10788 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32560 0.19656 -1.00000 - 17303 2017 8 21 23 17 54 620 4.8776 183.06917 822.77648 754.47302 -0.07624 2.38462 1.10332 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32524 0.19656 -1.00000 - 17304 2017 8 21 23 17 59 498 4.8776 183.06574 822.81026 754.49912 -0.07619 2.36870 1.09779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32489 0.19656 -1.00000 - 17305 2017 8 21 23 18 4 375 4.8777 183.06243 822.84384 754.52511 -0.07621 2.35278 1.09645 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32453 0.19656 -1.00000 - 17306 2017 8 21 23 18 9 253 4.8777 183.05896 822.87754 754.55108 -0.07628 2.33709 1.09280 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32418 0.19656 -1.00000 - 17307 2017 8 21 23 18 14 131 4.8777 183.05531 822.91136 754.57703 -0.07632 2.32184 1.08963 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32382 0.19656 -1.00000 - 17308 2017 8 21 23 18 19 8 4.8777 183.05171 822.94520 754.60289 -0.07630 2.30721 1.08834 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32347 0.19656 -1.00000 - 17309 2017 8 21 23 18 23 886 4.8777 183.04835 822.97890 754.62867 -0.07629 2.29338 1.08384 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32312 0.19656 -1.00000 - 17310 2017 8 21 23 18 28 764 4.8777 183.04502 823.01255 754.65442 -0.07632 2.28070 1.08069 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32276 0.19656 -1.00000 - 17311 2017 8 21 23 18 33 642 4.8777 183.04148 823.04574 754.68012 -0.07636 2.26906 1.07921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32241 0.19656 -1.00000 - 17312 2017 8 21 23 18 38 519 4.8777 183.03781 823.07926 754.70568 -0.07639 2.25821 1.07507 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32205 0.19656 -1.00000 - 17313 2017 8 21 23 18 43 397 4.8777 183.03429 823.11233 754.73120 -0.07642 2.24799 1.07244 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32170 0.19656 -1.00000 - 17314 2017 8 21 23 18 48 275 4.8777 183.03098 823.14531 754.75669 -0.07648 2.23834 1.07010 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32134 0.19656 -1.00000 - 17315 2017 8 21 23 18 53 152 4.8777 183.02760 823.17820 754.78199 -0.07656 2.22914 1.06509 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32099 0.19656 -1.00000 - 17316 2017 8 21 23 18 58 30 4.8777 183.02400 823.21061 754.80730 -0.07659 2.22064 1.06287 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32063 0.19656 -1.00000 - 17317 2017 8 21 23 19 2 908 4.8778 183.02036 823.24249 754.83261 -0.07656 2.21051 1.05804 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32028 0.19656 -1.00000 - 17318 2017 8 21 23 19 7 786 4.8778 183.01693 823.27808 754.85781 -0.07654 2.19678 1.05305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31992 0.19656 -1.00000 - 17319 2017 8 21 23 19 12 663 4.8778 183.01364 823.30947 754.88311 -0.07658 2.18372 1.05209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31957 0.19656 -1.00000 - 17320 2017 8 21 23 19 17 541 4.8778 183.01018 823.33916 754.90827 -0.07664 2.17291 1.04807 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31921 0.19656 -1.00000 - 17321 2017 8 21 23 19 22 419 4.8778 183.00655 823.37106 754.93346 -0.07665 2.16408 1.04312 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31886 0.19656 -1.00000 - 17322 2017 8 21 23 19 27 297 4.8778 183.00296 823.40267 754.95876 -0.07659 2.15690 1.04344 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31850 0.19656 -1.00000 - 17323 2017 8 21 23 19 32 175 4.8778 182.99962 823.43024 754.98395 -0.07654 2.15072 1.03943 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31815 0.19656 -1.00000 - 17324 2017 8 21 23 19 37 52 4.8778 182.99631 823.46264 755.00905 -0.07652 2.14335 1.03571 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31779 0.19656 -1.00000 - 17325 2017 8 21 23 19 41 930 4.8778 182.99278 823.49443 755.03429 -0.07650 2.13311 1.03511 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31744 0.19656 -1.00000 - 17326 2017 8 21 23 19 46 808 4.8778 182.98914 823.52642 755.05951 -0.07644 2.12157 1.03152 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31708 0.19656 -1.00000 - 17327 2017 8 21 23 19 51 686 4.8778 182.98564 823.55860 755.08470 -0.07637 2.10961 1.02984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31673 0.19655 -1.00000 - 17328 2017 8 21 23 19 56 564 4.8778 182.98235 823.58979 755.10986 -0.07636 2.09809 1.03015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31638 0.19655 -1.00000 - 17329 2017 8 21 23 20 1 442 4.8778 182.97898 823.62076 755.13495 -0.07641 2.08725 1.02865 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31602 0.19655 -1.00000 - 17330 2017 8 21 23 20 6 319 4.8779 182.97540 823.65230 755.16011 -0.07643 2.07708 1.02725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31567 0.19655 -1.00000 - 17331 2017 8 21 23 20 11 197 4.8779 182.97178 823.68397 755.18528 -0.07640 2.07792 1.02978 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31531 0.19655 -1.00000 - 17332 2017 8 21 23 20 16 75 4.8779 182.96838 823.71587 755.21029 -0.07637 2.08066 1.02688 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31496 0.19655 -1.00000 - 17333 2017 8 21 23 20 20 953 4.8779 182.96510 823.74748 755.23528 -0.07640 2.08513 1.02591 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31460 0.19655 -1.00000 - 17334 2017 8 21 23 20 25 831 4.8779 182.96166 823.77537 755.26036 -0.07647 2.08812 1.02838 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31425 0.19655 -1.00000 - 17335 2017 8 21 23 20 30 709 4.8779 182.95803 823.80682 755.28528 -0.07654 2.08792 1.02549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31389 0.19655 -1.00000 - 17336 2017 8 21 23 20 35 587 4.8779 182.95447 823.83915 755.31028 -0.07657 2.08871 1.02526 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31354 0.19655 -1.00000 - 17337 2017 8 21 23 20 40 465 4.8779 182.95115 823.87699 755.33536 -0.07661 2.09255 1.02646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31318 0.19655 -1.00000 - 17338 2017 8 21 23 20 45 342 4.8779 182.94784 823.90910 755.36036 -0.07667 2.10091 1.02486 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31283 0.19655 -1.00000 - 17339 2017 8 21 23 20 50 220 4.8779 182.94432 823.93639 755.38530 -0.07673 2.10768 1.02516 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31247 0.19655 -1.00000 - 17340 2017 8 21 23 20 55 98 4.8779 182.94069 823.96361 755.41024 -0.07674 2.07019 1.02541 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31212 0.19655 -1.00000 - 17341 2017 8 21 23 20 59 976 4.8779 182.93722 823.99546 755.43507 -0.07675 2.07148 1.02593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31176 0.19655 -1.00000 - 17342 2017 8 21 23 21 4 854 4.8779 182.93394 824.02663 755.45984 -0.07679 2.09682 1.02851 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31141 0.19655 -1.00000 - 17343 2017 8 21 23 21 9 732 4.8780 182.93057 824.05794 755.48456 -0.07686 2.10638 1.02790 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31105 0.19655 -1.00000 - 17344 2017 8 21 23 21 14 610 4.8780 182.92699 824.08920 755.50927 -0.07690 2.11317 1.02947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31070 0.19655 -1.00000 - 17345 2017 8 21 23 21 19 488 4.8780 182.92339 824.12022 755.53381 -0.07687 2.11895 1.03254 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31035 0.19655 -1.00000 - 17346 2017 8 21 23 21 24 366 4.8780 182.92001 824.15082 755.55827 -0.07683 2.12177 1.03209 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30999 0.19655 -1.00000 - 17347 2017 8 21 23 21 29 244 4.8780 182.91674 824.18101 755.58273 -0.07684 2.13413 1.03562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30964 0.19655 -1.00000 - 17348 2017 8 21 23 21 34 122 4.8780 182.91329 824.21113 755.60705 -0.07686 2.14458 1.03856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30928 0.19655 -1.00000 - 17349 2017 8 21 23 21 39 0 4.8780 182.90968 824.24113 755.63123 -0.07684 2.15355 1.04067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30893 0.19655 -1.00000 - 17350 2017 8 21 23 21 43 878 4.8780 182.90615 824.27063 755.65532 -0.07679 2.16166 1.04452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30857 0.19655 -1.00000 - 17351 2017 8 21 23 21 48 756 4.8780 182.90284 824.30003 755.67934 -0.07674 2.17496 1.04822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30822 0.19655 -1.00000 - 17352 2017 8 21 23 21 53 634 4.8780 182.89954 824.32932 755.70314 -0.07673 2.18968 1.05170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30786 0.19655 -1.00000 - 17353 2017 8 21 23 21 58 512 4.8780 182.89603 824.35823 755.72687 -0.07670 2.20418 1.05579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30751 0.19655 -1.00000 - 17354 2017 8 21 23 22 3 390 4.8780 182.89242 824.38707 755.75042 -0.07661 2.21831 1.06119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30715 0.19654 -1.00000 - 17355 2017 8 21 23 22 8 268 4.8781 182.88899 824.41580 755.77385 -0.07651 2.23200 1.06433 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30680 0.19654 -1.00000 - 17356 2017 8 21 23 22 13 146 4.8781 182.88573 824.44433 755.79717 -0.07647 2.24529 1.06894 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30644 0.19654 -1.00000 - 17357 2017 8 21 23 22 18 24 4.8781 182.88236 824.47275 755.82044 -0.07650 2.25829 1.07361 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30609 0.19654 -1.00000 - 17358 2017 8 21 23 22 22 902 4.8781 182.87879 824.50106 755.84346 -0.07653 2.27077 1.07474 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30573 0.19654 -1.00000 - 17359 2017 8 21 23 22 27 781 4.8781 182.87523 824.52877 755.86649 -0.07650 2.28114 1.07931 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30538 0.19654 -1.00000 - 17360 2017 8 21 23 22 32 659 4.8781 182.87188 824.55620 755.88946 -0.07648 2.28948 1.07970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30502 0.19654 -1.00000 - 17361 2017 8 21 23 22 37 537 4.8781 182.86861 824.58829 755.91227 -0.07650 2.30600 1.08041 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30467 0.19654 -1.00000 - 17362 2017 8 21 23 22 42 415 4.8781 182.86515 824.61266 755.93517 -0.07655 2.32041 1.08404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30431 0.19654 -1.00000 - 17363 2017 8 21 23 22 47 293 4.8781 182.86156 824.63945 755.95795 -0.07660 2.33619 1.08453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30396 0.19654 -1.00000 - 17364 2017 8 21 23 22 52 171 4.8781 182.85807 824.66710 755.98068 -0.07663 2.35339 1.08453 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30360 0.19654 -1.00000 - 17365 2017 8 21 23 22 57 49 4.8781 182.85479 824.69433 756.00351 -0.07668 2.37095 1.08797 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30325 0.19654 -1.00000 - 17366 2017 8 21 23 23 1 927 4.8781 182.85147 824.71733 756.02625 -0.07677 2.38738 1.08743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30290 0.19654 -1.00000 - 17367 2017 8 21 23 23 6 805 4.8781 182.84795 824.74464 756.04901 -0.07682 2.40036 1.08800 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30254 0.19654 -1.00000 - 17368 2017 8 21 23 23 11 684 4.8782 182.84437 824.77359 756.07174 -0.07680 2.40871 1.08987 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30219 0.19654 -1.00000 - 17369 2017 8 21 23 23 16 562 4.8782 182.84097 824.80135 756.09438 -0.07676 2.41396 1.08936 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30183 0.19654 -1.00000 - 17370 2017 8 21 23 23 21 440 4.8782 182.83771 824.82837 756.11706 -0.07677 2.41755 1.09008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30148 0.19654 -1.00000 - 17371 2017 8 21 23 23 26 318 4.8782 182.83432 824.85682 756.13974 -0.07683 2.42071 1.09261 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30112 0.19654 -1.00000 - 17372 2017 8 21 23 23 31 196 4.8782 182.83075 824.88232 756.16228 -0.07688 2.42375 1.09168 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30077 0.19654 -1.00000 - 17373 2017 8 21 23 23 36 74 4.8782 182.82722 824.90888 756.18482 -0.07689 2.42504 1.09155 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30041 0.19654 -1.00000 - 17374 2017 8 21 23 23 40 953 4.8782 182.82390 824.93748 756.20759 -0.07687 2.39705 1.09283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30006 0.19654 -1.00000 - 17375 2017 8 21 23 23 45 831 4.8782 182.82062 824.97044 756.23032 -0.07686 2.39892 1.09025 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29970 0.19654 -1.00000 - 17376 2017 8 21 23 23 50 709 4.8782 182.81713 824.99919 756.25299 -0.07683 2.39727 1.09163 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29935 0.19654 -1.00000 - 17377 2017 8 21 23 23 55 587 4.8782 182.81355 825.02644 756.27575 -0.07679 2.39590 1.09443 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29899 0.19654 -1.00000 - 17378 2017 8 21 23 24 0 466 4.8782 182.81012 825.05109 756.29824 -0.07675 2.39221 1.09264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29864 0.19654 -1.00000 - 17379 2017 8 21 23 24 5 344 4.8782 182.80685 825.07907 756.32059 -0.07668 2.38409 1.09324 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29828 0.19654 -1.00000 - 17380 2017 8 21 23 24 10 222 4.8782 182.80350 825.10844 756.34314 -0.07667 2.37717 1.09331 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29793 0.19654 -1.00000 - 17381 2017 8 21 23 24 15 100 4.8783 182.79997 825.14145 756.36555 -0.07663 2.37099 1.09101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29757 0.19654 -1.00000 - 17382 2017 8 21 23 24 19 979 4.8783 182.79643 825.16972 756.38797 -0.07652 2.36352 1.09173 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29722 0.19653 -1.00000 - 17383 2017 8 21 23 24 24 857 4.8783 182.79309 825.19340 756.41046 -0.07640 2.35634 1.09015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29686 0.19653 -1.00000 - 17384 2017 8 21 23 24 29 735 4.8783 182.78983 825.21979 756.43278 -0.07636 2.34619 1.08863 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29651 0.19653 -1.00000 - 17385 2017 8 21 23 24 34 613 4.8783 182.78639 825.24750 756.45507 -0.07639 2.33660 1.09009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29616 0.19653 -1.00000 - 17386 2017 8 21 23 24 39 492 4.8783 182.78283 825.27801 756.47737 -0.07645 2.33211 1.08691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29580 0.19653 -1.00000 - 17387 2017 8 21 23 24 44 370 4.8783 182.77937 825.31030 756.49967 -0.07650 2.32884 1.08432 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29545 0.19653 -1.00000 - 17388 2017 8 21 23 24 49 248 4.8783 182.77609 825.33793 756.52205 -0.07654 2.32406 1.08513 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29509 0.19653 -1.00000 - 17389 2017 8 21 23 24 54 127 4.8783 182.77278 825.36132 756.54436 -0.07659 2.31854 1.08305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29474 0.19653 -1.00000 - 17390 2017 8 21 23 24 59 5 4.8783 182.76928 825.38580 756.56649 -0.07662 2.30946 1.07928 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29438 0.19653 -1.00000 - 17391 2017 8 21 23 25 3 883 4.8783 182.76573 825.41273 756.58878 -0.07661 2.29883 1.07887 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29403 0.19653 -1.00000 - 17392 2017 8 21 23 25 8 762 4.8783 182.76236 825.44021 756.61100 -0.07667 2.25608 1.07601 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29367 0.19653 -1.00000 - 17393 2017 8 21 23 25 13 640 4.8783 182.75910 825.47150 756.63319 -0.07674 2.25835 1.06981 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29332 0.19653 -1.00000 - 17394 2017 8 21 23 25 18 518 4.8784 182.75571 825.49702 756.65539 -0.07682 2.25875 1.07009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29296 0.19653 -1.00000 - 17395 2017 8 21 23 25 23 397 4.8784 182.75217 825.52051 756.67758 -0.07690 2.25639 1.06697 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29261 0.19653 -1.00000 - 17396 2017 8 21 23 25 28 275 4.8784 182.74868 825.54727 756.69976 -0.07692 2.25979 1.06227 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29225 0.19653 -1.00000 - 17397 2017 8 21 23 25 33 153 4.8784 182.74539 825.57349 756.72200 -0.07697 2.26500 1.06111 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29190 0.19653 -1.00000 - 17398 2017 8 21 23 25 38 32 4.8784 182.74211 825.59933 756.74421 -0.07703 2.27094 1.05997 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29154 0.19653 -1.00000 - 17399 2017 8 21 23 25 42 910 4.8784 182.73864 825.62539 756.76646 -0.07710 2.27690 1.05791 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29119 0.19653 -1.00000 - 17400 2017 8 21 23 25 47 789 4.8784 182.73510 825.65177 756.78871 -0.07717 2.28236 1.05824 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29083 0.19653 -1.00000 - 17401 2017 8 21 23 25 52 667 4.8784 182.73170 825.67798 756.81092 -0.07721 2.28718 1.05744 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29048 0.19653 -1.00000 - 17402 2017 8 21 23 25 57 546 4.8784 182.72844 825.70431 756.83312 -0.07720 2.29171 1.05562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29012 0.19653 -1.00000 - 17403 2017 8 21 23 26 2 424 4.8784 182.72508 825.73041 756.85522 -0.07719 2.29610 1.05704 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28977 0.19653 -1.00000 - 17404 2017 8 21 23 26 7 302 4.8784 182.72157 825.75651 756.87732 -0.07719 2.30027 1.05646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28941 0.19653 -1.00000 - 17405 2017 8 21 23 26 12 181 4.8784 182.71808 825.78276 756.89938 -0.07719 2.30424 1.05661 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28906 0.19653 -1.00000 - 17406 2017 8 21 23 26 17 59 4.8785 182.71477 825.80911 756.92141 -0.07717 2.30839 1.05856 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28871 0.19653 -1.00000 - 17407 2017 8 21 23 26 21 938 4.8785 182.71149 825.83572 756.94331 -0.07713 2.31332 1.05814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28835 0.19653 -1.00000 - 17408 2017 8 21 23 26 26 816 4.8785 182.70805 825.86202 756.96515 -0.07707 2.32492 1.05779 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28800 0.19653 -1.00000 - 17409 2017 8 21 23 26 31 695 4.8785 182.70453 825.88810 756.98695 -0.07701 2.33614 1.05877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28764 0.19653 -1.00000 - 17410 2017 8 21 23 26 36 573 4.8785 182.70113 825.91409 757.00865 -0.07696 2.34574 1.05774 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28729 0.19652 -1.00000 - 17411 2017 8 21 23 26 41 452 4.8785 182.69787 825.93992 757.03039 -0.07691 2.35466 1.05632 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28693 0.19652 -1.00000 - 17412 2017 8 21 23 26 46 330 4.8785 182.69453 825.96580 757.05211 -0.07688 2.37010 1.05742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28658 0.19652 -1.00000 - 17413 2017 8 21 23 26 51 209 4.8785 182.69104 825.99165 757.07367 -0.07687 2.38463 1.05296 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28622 0.19652 -1.00000 - 17414 2017 8 21 23 26 56 87 4.8785 182.68756 826.01667 757.09535 -0.07686 2.39628 1.05138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28587 0.19652 -1.00000 - 17415 2017 8 21 23 27 0 966 4.8785 182.68423 826.03808 757.11708 -0.07683 2.40246 1.04793 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28551 0.19652 -1.00000 - 17416 2017 8 21 23 27 5 844 4.8785 182.68095 826.06615 757.13880 -0.07678 2.41425 1.04196 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28516 0.19652 -1.00000 - 17417 2017 8 21 23 27 10 723 4.8785 182.67754 826.09749 757.16068 -0.07674 2.41856 1.04039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28480 0.19652 -1.00000 - 17418 2017 8 21 23 27 15 601 4.8786 182.67405 826.12129 757.18269 -0.07671 2.35014 1.03441 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28445 0.19652 -1.00000 - 17419 2017 8 21 23 27 20 480 4.8786 182.67065 826.14591 757.20472 -0.07670 2.38654 1.02806 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28409 0.19652 -1.00000 - 17420 2017 8 21 23 27 25 358 4.8786 182.66737 826.17342 757.22703 -0.07670 2.38798 1.02814 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28374 0.19652 -1.00000 - 17421 2017 8 21 23 27 30 237 4.8786 182.66403 826.19706 757.24917 -0.07674 2.38816 1.02150 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28338 0.19652 -1.00000 - 17422 2017 8 21 23 27 35 116 4.8786 182.66056 826.22587 757.27137 -0.07677 2.38462 1.01572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28303 0.19652 -1.00000 - 17423 2017 8 21 23 27 39 994 4.8786 182.65710 826.25416 757.29370 -0.07679 2.37604 1.01586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28267 0.19652 -1.00000 - 17424 2017 8 21 23 27 44 873 4.8786 182.65376 826.28191 757.31597 -0.07677 2.36360 1.00886 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28232 0.19652 -1.00000 - 17425 2017 8 21 23 27 49 751 4.8786 182.65047 826.30870 757.33822 -0.07674 2.34842 1.00305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28196 0.19652 -1.00000 - 17426 2017 8 21 23 27 54 630 4.8786 182.64707 826.33499 757.36059 -0.07673 2.33153 1.00200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28161 0.19652 -1.00000 - 17427 2017 8 21 23 27 59 509 4.8786 182.64360 826.36227 757.38295 -0.07675 2.31340 0.99633 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28125 0.19652 -1.00000 - 17428 2017 8 21 23 28 4 387 4.8786 182.64020 826.38990 757.40541 -0.07679 2.29377 0.99206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28090 0.19652 -1.00000 - 17429 2017 8 21 23 28 9 266 4.8786 182.63690 826.41807 757.42803 -0.07685 2.27274 0.99075 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28055 0.19652 -1.00000 - 17430 2017 8 21 23 28 14 145 4.8786 182.63355 826.44685 757.45058 -0.07689 2.25089 0.98431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28019 0.19652 -1.00000 - 17431 2017 8 21 23 28 19 23 4.8787 182.63011 826.47560 757.47316 -0.07690 2.22862 0.98065 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27984 0.19652 -1.00000 - 17432 2017 8 21 23 28 23 902 4.8787 182.62668 826.50432 757.49585 -0.07688 2.20620 0.98014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27948 0.19652 -1.00000 - 17433 2017 8 21 23 28 28 781 4.8787 182.62334 826.53018 757.51843 -0.07686 2.18359 0.97374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27913 0.19652 -1.00000 - 17434 2017 8 21 23 28 33 659 4.8787 182.62003 826.55987 757.54106 -0.07685 2.14935 0.96980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27877 0.19652 -1.00000 - 17435 2017 8 21 23 28 38 538 4.8787 182.61664 826.58901 757.56399 -0.07686 2.10750 0.96757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27842 0.19652 -1.00000 - 17436 2017 8 21 23 28 43 417 4.8787 182.61320 826.62256 757.58685 -0.07691 2.04023 0.96005 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27806 0.19652 -1.00000 - 17437 2017 8 21 23 28 48 295 4.8787 182.60981 826.65572 757.60979 -0.07696 2.03604 0.95618 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27771 0.19651 -1.00000 - 17438 2017 8 21 23 28 53 174 4.8787 182.60649 826.68608 757.63297 -0.07701 2.00756 0.95481 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27735 0.19651 -1.00000 - 17439 2017 8 21 23 28 58 53 4.8787 182.60314 826.70968 757.65591 -0.07704 1.97064 0.94805 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27700 0.19651 -1.00000 - 17440 2017 8 21 23 29 2 932 4.8787 182.59974 826.74023 757.67888 -0.07706 1.95721 0.94350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27664 0.19651 -1.00000 - 17441 2017 8 21 23 29 7 810 4.8787 182.59634 826.77011 757.70207 -0.07708 1.93978 0.94071 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27629 0.19651 -1.00000 - 17442 2017 8 21 23 29 12 689 4.8787 182.59300 826.80047 757.72508 -0.07710 1.92229 0.93549 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27593 0.19651 -1.00000 - 17443 2017 8 21 23 29 17 568 4.8787 182.58967 826.83054 757.74817 -0.07712 1.91274 0.93276 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27558 0.19651 -1.00000 - 17444 2017 8 21 23 29 22 446 4.8788 182.58629 826.86093 757.77136 -0.07712 1.90754 0.93033 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27522 0.19651 -1.00000 - 17445 2017 8 21 23 29 27 325 4.8788 182.58289 826.89125 757.79441 -0.07714 1.90134 0.92586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27487 0.19651 -1.00000 - 17446 2017 8 21 23 29 32 204 4.8788 182.57953 826.92114 757.81751 -0.07716 1.89464 0.92447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27451 0.19651 -1.00000 - 17447 2017 8 21 23 29 37 83 4.8788 182.57619 826.95105 757.84065 -0.07721 1.89495 0.92341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27416 0.19651 -1.00000 - 17448 2017 8 21 23 29 41 962 4.8788 182.57284 826.98124 757.86368 -0.07727 1.89628 0.92088 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27380 0.19651 -1.00000 - 17449 2017 8 21 23 29 46 840 4.8788 182.56947 827.01094 757.88663 -0.07732 1.90049 0.92116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27345 0.19651 -1.00000 - 17450 2017 8 21 23 29 51 719 4.8788 182.56610 827.04044 757.90950 -0.07735 1.90328 0.92131 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27309 0.19651 -1.00000 - 17451 2017 8 21 23 29 56 598 4.8788 182.56275 827.07001 757.93228 -0.07732 1.90495 0.92146 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27274 0.19651 -1.00000 - 17452 2017 8 21 23 30 1 477 4.8788 182.55940 827.09945 757.95490 -0.07727 1.90588 0.92304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27238 0.19651 -1.00000 - 17453 2017 8 21 23 30 6 356 4.8788 182.55604 827.12862 757.97739 -0.07720 1.90808 0.92487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27203 0.19651 -1.00000 - 17454 2017 8 21 23 30 11 235 4.8788 182.55268 827.15749 757.99970 -0.07718 1.91061 0.92725 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27168 0.19651 -1.00000 - 17455 2017 8 21 23 30 16 113 4.8788 182.54933 827.18611 758.02183 -0.07720 1.91303 0.92947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27132 0.19651 -1.00000 - 17456 2017 8 21 23 30 20 992 4.8789 182.54598 827.21441 758.04382 -0.07726 1.91571 0.93113 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27097 0.19651 -1.00000 - 17457 2017 8 21 23 30 25 871 4.8789 182.54263 827.24247 758.06568 -0.07730 1.91894 0.93300 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27061 0.19651 -1.00000 - 17458 2017 8 21 23 30 30 750 4.8789 182.53927 827.27008 758.08735 -0.07728 1.92234 0.93435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27026 0.19651 -1.00000 - 17459 2017 8 21 23 30 35 629 4.8789 182.53592 827.29734 758.10897 -0.07716 1.92499 0.93470 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26990 0.19651 -1.00000 - 17460 2017 8 21 23 30 40 508 4.8789 182.53257 827.32437 758.13050 -0.07699 1.93515 0.93644 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26955 0.19651 -1.00000 - 17461 2017 8 21 23 30 45 387 4.8789 182.52922 827.35083 758.15188 -0.07685 1.94948 0.93460 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26919 0.19651 -1.00000 - 17462 2017 8 21 23 30 50 266 4.8789 182.52586 827.37630 758.17332 -0.07679 1.96172 0.93455 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26884 0.19651 -1.00000 - 17463 2017 8 21 23 30 55 144 4.8789 182.52251 827.40268 758.19472 -0.07682 1.94561 0.93171 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26848 0.19651 -1.00000 - 17464 2017 8 21 23 31 0 23 4.8789 182.51916 827.42818 758.21610 -0.07690 1.95027 0.92877 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26813 0.19651 -1.00000 - 17465 2017 8 21 23 31 4 902 4.8789 182.51581 827.45270 758.23758 -0.07696 1.96332 0.92715 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26777 0.19650 -1.00000 - 17466 2017 8 21 23 31 9 781 4.8789 182.51246 827.47347 758.25907 -0.07694 1.97809 0.92294 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26742 0.19650 -1.00000 - 17467 2017 8 21 23 31 14 660 4.8789 182.50911 827.49914 758.28073 -0.07682 1.98927 0.92217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26706 0.19650 -1.00000 - 17468 2017 8 21 23 31 19 539 4.8790 182.50577 827.53003 758.30248 -0.07666 1.96753 0.91871 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26671 0.19650 -1.00000 - 17469 2017 8 21 23 31 24 418 4.8790 182.50242 827.55640 758.32422 -0.07653 1.96981 0.91477 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26635 0.19650 -1.00000 - 17470 2017 8 21 23 31 29 297 4.8790 182.49907 827.58407 758.34618 -0.07646 1.97496 0.91523 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26600 0.19650 -1.00000 - 17471 2017 8 21 23 31 34 176 4.8790 182.49572 827.61033 758.36812 -0.07648 1.97939 0.91414 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26564 0.19650 -1.00000 - 17472 2017 8 21 23 31 39 55 4.8790 182.49237 827.63775 758.38995 -0.07656 1.98215 0.91136 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26529 0.19650 -1.00000 - 17473 2017 8 21 23 31 43 934 4.8790 182.48902 827.66478 758.41186 -0.07664 1.98343 0.91218 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26493 0.19650 -1.00000 - 17474 2017 8 21 23 31 48 813 4.8790 182.48568 827.69201 758.43376 -0.07667 1.98346 0.91304 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26458 0.19650 -1.00000 - 17475 2017 8 21 23 31 53 692 4.8790 182.48233 827.71951 758.45559 -0.07663 1.98232 0.91189 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26422 0.19650 -1.00000 - 17476 2017 8 21 23 31 58 571 4.8790 182.47900 827.74676 758.47741 -0.07653 1.98018 0.91422 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26387 0.19650 -1.00000 - 17477 2017 8 21 23 32 3 450 4.8790 182.47566 827.77414 758.49914 -0.07641 1.97730 0.91670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26351 0.19650 -1.00000 - 17478 2017 8 21 23 32 8 329 4.8790 182.47232 827.80169 758.52072 -0.07630 1.97403 0.91694 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26316 0.19650 -1.00000 - 17479 2017 8 21 23 32 13 208 4.8790 182.46897 827.82895 758.54222 -0.07626 1.97069 0.91955 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26281 0.19650 -1.00000 - 17480 2017 8 21 23 32 18 87 4.8791 182.46562 827.85600 758.56360 -0.07630 1.96760 0.92313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26245 0.19650 -1.00000 - 17481 2017 8 21 23 32 22 966 4.8791 182.46228 827.88304 758.58485 -0.07641 1.96505 0.92448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26210 0.19650 -1.00000 - 17482 2017 8 21 23 32 27 845 4.8791 182.45895 827.91004 758.60603 -0.07653 1.97255 0.92757 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26174 0.19650 -1.00000 - 17483 2017 8 21 23 32 32 724 4.8791 182.45562 827.93687 758.62711 -0.07662 1.98195 0.93067 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26139 0.19650 -1.00000 - 17484 2017 8 21 23 32 37 603 4.8791 182.45229 827.96354 758.64806 -0.07662 1.98986 0.93156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26103 0.19650 -1.00000 - 17485 2017 8 21 23 32 42 483 4.8791 182.44896 827.98992 758.66888 -0.07656 1.99632 0.93557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26068 0.19650 -1.00000 - 17486 2017 8 21 23 32 47 362 4.8791 182.44563 828.01597 758.68960 -0.07646 2.00355 0.93726 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26032 0.19650 -1.00000 - 17487 2017 8 21 23 32 52 241 4.8791 182.44229 828.04190 758.71018 -0.07640 2.01196 0.93878 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25997 0.19650 -1.00000 - 17488 2017 8 21 23 32 57 120 4.8791 182.43896 828.06749 758.73076 -0.07644 2.02128 0.94266 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25961 0.19650 -1.00000 - 17489 2017 8 21 23 33 1 999 4.8791 182.43563 828.09309 758.75115 -0.07658 2.02832 0.94247 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25926 0.19650 -1.00000 - 17490 2017 8 21 23 33 6 878 4.8791 182.43230 828.11749 758.77142 -0.07681 2.02987 0.94200 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25890 0.19650 -1.00000 - 17491 2017 8 21 23 33 11 757 4.8791 182.42897 828.14282 758.79175 -0.07703 2.03190 0.94464 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25855 0.19650 -1.00000 - 17492 2017 8 21 23 33 16 636 4.8791 182.42565 828.16656 758.81192 -0.07716 2.02931 0.94381 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25819 0.19650 -1.00000 - 17493 2017 8 21 23 33 21 516 4.8792 182.42233 828.19130 758.83200 -0.07716 2.03715 0.94315 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25784 0.19649 -1.00000 - 17494 2017 8 21 23 33 26 395 4.8792 182.41900 828.21549 758.85216 -0.07705 2.04347 0.94654 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25748 0.19649 -1.00000 - 17495 2017 8 21 23 33 31 274 4.8792 182.41568 828.23985 758.87215 -0.07691 2.05571 0.94409 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25713 0.19649 -1.00000 - 17496 2017 8 21 23 33 36 153 4.8792 182.41235 828.26389 758.89214 -0.07686 2.07074 0.94199 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25677 0.19649 -1.00000 - 17497 2017 8 21 23 33 41 32 4.8792 182.40902 828.28301 758.91230 -0.07693 2.08693 0.94395 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25642 0.19649 -1.00000 - 17498 2017 8 21 23 33 45 912 4.8792 182.40570 828.30425 758.93234 -0.07713 2.10143 0.94116 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25606 0.19649 -1.00000 - 17499 2017 8 21 23 33 50 791 4.8792 182.40238 828.32836 758.95235 -0.07735 2.11077 0.94012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25571 0.19649 -1.00000 - 17500 2017 8 21 23 33 55 670 4.8792 182.39906 828.35616 758.97263 -0.07749 2.09258 0.94174 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25535 0.19649 -1.00000 - 17501 2017 8 21 23 34 0 549 4.8792 182.39575 828.38539 758.99281 -0.07747 2.09705 0.93768 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25500 0.19649 -1.00000 - 17502 2017 8 21 23 34 5 428 4.8792 182.39244 828.41010 759.01308 -0.07728 2.09742 0.93857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25464 0.19649 -1.00000 - 17503 2017 8 21 23 34 10 308 4.8792 182.38913 828.43029 759.03339 -0.07703 2.09539 0.93914 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25429 0.19649 -1.00000 - 17504 2017 8 21 23 34 15 187 4.8792 182.38582 828.45400 759.05358 -0.07683 2.08907 0.93672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25393 0.19649 -1.00000 - 17505 2017 8 21 23 34 20 66 4.8793 182.38250 828.47948 759.07379 -0.07676 2.08042 0.93758 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25358 0.19649 -1.00000 - 17506 2017 8 21 23 34 24 945 4.8793 182.37918 828.50653 759.09409 -0.07685 2.07684 0.93655 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25322 0.19649 -1.00000 - 17507 2017 8 21 23 34 29 825 4.8793 182.37587 828.53649 759.11439 -0.07702 2.07414 0.93415 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25287 0.19649 -1.00000 - 17508 2017 8 21 23 34 34 704 4.8793 182.37256 828.56204 759.13465 -0.07717 2.06947 0.93606 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25252 0.19649 -1.00000 - 17509 2017 8 21 23 34 39 583 4.8793 182.36925 828.58267 759.15484 -0.07719 2.06404 0.93592 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25216 0.19649 -1.00000 - 17510 2017 8 21 23 34 44 463 4.8793 182.36596 828.60631 759.17492 -0.07705 2.05481 0.93406 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25181 0.19649 -1.00000 - 17511 2017 8 21 23 34 49 342 4.8793 182.36266 828.63208 759.19498 -0.07681 2.04601 0.93628 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25145 0.19649 -1.00000 - 17512 2017 8 21 23 34 54 221 4.8793 182.35936 828.65709 759.21501 -0.07656 2.04157 0.93465 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25110 0.19649 -1.00000 - 17513 2017 8 21 23 34 59 100 4.8793 182.35604 828.68674 759.23502 -0.07640 2.04057 0.93119 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25074 0.19649 -1.00000 - 17514 2017 8 21 23 35 3 980 4.8793 182.35273 828.71322 759.25520 -0.07638 2.03940 0.93237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25039 0.19649 -1.00000 - 17515 2017 8 21 23 35 8 859 4.8793 182.34942 828.73439 759.27533 -0.07650 2.03675 0.92974 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25003 0.19649 -1.00000 - 17516 2017 8 21 23 35 13 738 4.8793 182.34611 828.75809 759.29537 -0.07670 2.03119 0.92479 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24968 0.19649 -1.00000 - 17517 2017 8 21 23 35 18 618 4.8794 182.34281 828.78299 759.31545 -0.07684 2.02495 0.92548 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24932 0.19649 -1.00000 - 17518 2017 8 21 23 35 23 497 4.8794 182.33951 828.80967 759.33548 -0.07683 2.00498 0.92158 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24897 0.19649 -1.00000 - 17519 2017 8 21 23 35 28 377 4.8794 182.33622 828.83717 759.35559 -0.07666 2.01875 0.91438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24861 0.19649 -1.00000 - 17520 2017 8 21 23 35 33 256 4.8794 182.33292 828.86250 759.37576 -0.07638 2.02393 0.91515 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24826 0.19649 -1.00000 - 17521 2017 8 21 23 35 38 135 4.8794 182.32961 828.88306 759.39593 -0.07611 1.98930 0.91022 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24790 0.19648 -1.00000 - 17522 2017 8 21 23 35 43 15 4.8794 182.32629 828.90408 759.41613 -0.07594 1.99787 0.90534 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24755 0.19648 -1.00000 - 17523 2017 8 21 23 35 47 894 4.8794 182.32298 828.92957 759.43643 -0.07594 2.00065 0.90339 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24719 0.19648 -1.00000 - 17524 2017 8 21 23 35 52 774 4.8794 182.31968 828.95471 759.45667 -0.07610 2.00124 0.89972 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24684 0.19648 -1.00000 - 17525 2017 8 21 23 35 57 653 4.8794 182.31638 828.97974 759.47709 -0.07634 2.00575 0.89881 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24648 0.19648 -1.00000 - 17526 2017 8 21 23 36 2 532 4.8794 182.31308 829.00539 759.49743 -0.07650 2.01266 0.89619 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24613 0.19648 -1.00000 - 17527 2017 8 21 23 36 7 412 4.8794 182.30979 829.03065 759.51766 -0.07647 2.01826 0.89383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24577 0.19648 -1.00000 - 17528 2017 8 21 23 36 12 291 4.8794 182.30650 829.05549 759.53795 -0.07626 2.02260 0.89253 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24542 0.19648 -1.00000 - 17529 2017 8 21 23 36 17 171 4.8795 182.30320 829.08048 759.55824 -0.07593 2.02575 0.89213 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24506 0.19648 -1.00000 - 17530 2017 8 21 23 36 22 50 4.8795 182.29989 829.10583 759.57844 -0.07566 2.02780 0.89020 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24471 0.19648 -1.00000 - 17531 2017 8 21 23 36 26 930 4.8795 182.29658 829.13081 759.59857 -0.07556 2.02888 0.89092 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24435 0.19648 -1.00000 - 17532 2017 8 21 23 36 31 809 4.8795 182.29328 829.15578 759.61868 -0.07570 2.02914 0.89156 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24400 0.19648 -1.00000 - 17533 2017 8 21 23 36 36 689 4.8795 182.28999 829.18101 759.63870 -0.07605 2.02872 0.89160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24364 0.19648 -1.00000 - 17534 2017 8 21 23 36 41 568 4.8795 182.28669 829.20624 759.65861 -0.07643 2.02780 0.89299 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24329 0.19648 -1.00000 - 17535 2017 8 21 23 36 46 448 4.8795 182.28340 829.23134 759.67841 -0.07665 2.02654 0.89472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24293 0.19648 -1.00000 - 17536 2017 8 21 23 36 51 327 4.8795 182.28012 829.25635 759.69809 -0.07660 2.02508 0.89631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24258 0.19648 -1.00000 - 17537 2017 8 21 23 36 56 207 4.8795 182.27685 829.28130 759.71764 -0.07634 2.02355 0.89798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24222 0.19648 -1.00000 - 17538 2017 8 21 23 37 1 86 4.8795 182.27356 829.30603 759.73702 -0.07604 2.02204 0.89921 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24187 0.19648 -1.00000 - 17539 2017 8 21 23 37 5 966 4.8795 182.27026 829.33047 759.75630 -0.07588 2.02065 0.89948 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24152 0.19648 -1.00000 - 17540 2017 8 21 23 37 10 845 4.8795 182.26697 829.35454 759.77551 -0.07597 2.01947 0.90038 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24116 0.19648 -1.00000 - 17541 2017 8 21 23 37 15 725 4.8796 182.26368 829.37868 759.79459 -0.07634 2.01857 0.89889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24081 0.19648 -1.00000 - 17542 2017 8 21 23 37 20 604 4.8796 182.26040 829.40233 759.81362 -0.07683 2.01806 0.89911 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24045 0.19648 -1.00000 - 17543 2017 8 21 23 37 25 484 4.8796 182.25711 829.42556 759.83257 -0.07721 2.01799 0.89590 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24010 0.19648 -1.00000 - 17544 2017 8 21 23 37 30 364 4.8796 182.25384 829.44865 759.85157 -0.07731 2.01881 0.89154 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23974 0.19648 -1.00000 - 17545 2017 8 21 23 37 35 243 4.8796 182.25058 829.47159 759.87066 -0.07714 2.02055 0.88908 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23939 0.19648 -1.00000 - 17546 2017 8 21 23 37 40 123 4.8796 182.24732 829.49022 759.88984 -0.07682 2.02023 0.88313 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23903 0.19648 -1.00000 - 17547 2017 8 21 23 37 45 2 4.8796 182.24404 829.51757 759.90898 -0.07653 2.01541 0.87651 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23868 0.19648 -1.00000 - 17548 2017 8 21 23 37 49 882 4.8796 182.24075 829.54102 759.92834 -0.07643 2.00700 0.87472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23832 0.19647 -1.00000 - 17549 2017 8 21 23 37 54 762 4.8796 182.23747 829.55934 759.94777 -0.07658 1.99727 0.86919 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23797 0.19647 -1.00000 - 17550 2017 8 21 23 37 59 641 4.8796 182.23420 829.58206 759.96730 -0.07692 1.98768 0.86273 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23761 0.19647 -1.00000 - 17551 2017 8 21 23 38 4 521 4.8796 182.23093 829.60626 759.98702 -0.07728 1.97856 0.86256 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23726 0.19647 -1.00000 - 17552 2017 8 21 23 38 9 401 4.8796 182.22766 829.63041 760.00679 -0.07743 1.96962 0.85857 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23690 0.19647 -1.00000 - 17553 2017 8 21 23 38 14 280 4.8797 182.22440 829.65498 760.02649 -0.07730 1.96069 0.85305 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23655 0.19647 -1.00000 - 17554 2017 8 21 23 38 19 160 4.8797 182.22116 829.67906 760.04632 -0.07696 1.95162 0.85182 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23619 0.19647 -1.00000 - 17555 2017 8 21 23 38 24 40 4.8797 182.21791 829.70354 760.06620 -0.07652 1.94229 0.84897 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23584 0.19647 -1.00000 - 17556 2017 8 21 23 38 28 919 4.8797 182.21462 829.72818 760.08613 -0.07616 1.93269 0.84713 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23548 0.19647 -1.00000 - 17557 2017 8 21 23 38 33 799 4.8797 182.21134 829.75312 760.10610 -0.07602 1.92283 0.84530 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23513 0.19647 -1.00000 - 17558 2017 8 21 23 38 38 679 4.8797 182.20807 829.77809 760.12606 -0.07613 1.91281 0.84438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23477 0.19647 -1.00000 - 17559 2017 8 21 23 38 43 558 4.8797 182.20481 829.80317 760.14604 -0.07644 1.90276 0.84379 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23442 0.19647 -1.00000 - 17560 2017 8 21 23 38 48 438 4.8797 182.20154 829.82853 760.16601 -0.07672 1.89293 0.84284 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23406 0.19647 -1.00000 - 17561 2017 8 21 23 38 53 318 4.8797 182.19828 829.85396 760.18593 -0.07679 1.88360 0.84328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23371 0.19647 -1.00000 - 17562 2017 8 21 23 38 58 197 4.8797 182.19504 829.87947 760.20580 -0.07658 1.87500 0.84407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23335 0.19647 -1.00000 - 17563 2017 8 21 23 39 3 77 4.8797 182.19180 829.90508 760.22562 -0.07617 1.86719 0.84487 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23300 0.19647 -1.00000 - 17564 2017 8 21 23 39 7 957 4.8797 182.18853 829.93076 760.24535 -0.07570 1.86029 0.84566 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23264 0.19647 -1.00000 - 17565 2017 8 21 23 39 12 837 4.8798 182.18524 829.95638 760.26498 -0.07537 1.85799 0.84640 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23229 0.19647 -1.00000 - 17566 2017 8 21 23 39 17 716 4.8798 182.18196 829.98193 760.28453 -0.07531 1.85579 0.84659 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23193 0.19647 -1.00000 - 17567 2017 8 21 23 39 22 596 4.8798 182.17871 830.00726 760.30396 -0.07555 1.85360 0.84718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23158 0.19647 -1.00000 - 17568 2017 8 21 23 39 27 476 4.8798 182.17544 830.03249 760.32332 -0.07599 1.85145 0.84631 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23122 0.19647 -1.00000 - 17569 2017 8 21 23 39 32 356 4.8798 182.17217 830.05752 760.34259 -0.07636 1.84949 0.84620 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23087 0.19647 -1.00000 - 17570 2017 8 21 23 39 37 236 4.8798 182.16891 830.08209 760.36184 -0.07644 1.84773 0.84362 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23051 0.19647 -1.00000 - 17571 2017 8 21 23 39 42 115 4.8798 182.16567 830.10655 760.38109 -0.07618 1.84412 0.83933 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23016 0.19647 -1.00000 - 17572 2017 8 21 23 39 46 995 4.8798 182.16242 830.13094 760.40042 -0.07570 1.83635 0.83669 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22980 0.19647 -1.00000 - 17573 2017 8 21 23 39 51 875 4.8798 182.15914 830.15184 760.41985 -0.07521 1.83453 0.83117 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22945 0.19647 -1.00000 - 17574 2017 8 21 23 39 56 755 4.8798 182.15586 830.18054 760.43926 -0.07496 1.82823 0.82475 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22910 0.19647 -1.00000 - 17575 2017 8 21 23 40 1 635 4.8798 182.15260 830.20530 760.45879 -0.07506 1.81826 0.82328 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22874 0.19647 -1.00000 - 17576 2017 8 21 23 40 6 515 4.8799 182.14934 830.22501 760.47841 -0.07538 1.80705 0.81907 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22839 0.19646 -1.00000 - 17577 2017 8 21 23 40 11 394 4.8799 182.14608 830.24950 760.49806 -0.07593 1.79631 0.81283 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22803 0.19646 -1.00000 - 17578 2017 8 21 23 40 16 274 4.8799 182.14282 830.27520 760.51779 -0.07631 1.78650 0.80920 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22768 0.19646 -1.00000 - 17579 2017 8 21 23 40 21 154 4.8799 182.13958 830.30087 760.53761 -0.07629 1.77747 0.80760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22732 0.19646 -1.00000 - 17580 2017 8 21 23 40 26 34 4.8799 182.13635 830.32673 760.55748 -0.07591 1.76925 0.80456 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22697 0.19646 -1.00000 - 17581 2017 8 21 23 40 30 914 4.8799 182.13311 830.35271 760.57725 -0.07537 1.76180 0.80139 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22661 0.19646 -1.00000 - 17582 2017 8 21 23 40 35 794 4.8799 182.12985 830.37831 760.59707 -0.07510 1.75506 0.80028 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22626 0.19646 -1.00000 - 17583 2017 8 21 23 40 40 674 4.8799 182.12659 830.40410 760.61692 -0.07502 1.74878 0.79980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22590 0.19646 -1.00000 - 17584 2017 8 21 23 40 45 554 4.8799 182.12334 830.43020 760.63667 -0.07518 1.74266 0.79743 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22555 0.19646 -1.00000 - 17585 2017 8 21 23 40 50 434 4.8799 182.12010 830.45591 760.65631 -0.07555 1.73644 0.79812 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22519 0.19646 -1.00000 - 17586 2017 8 21 23 40 55 314 4.8799 182.11686 830.48156 760.67591 -0.07618 1.72998 0.79859 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22484 0.19646 -1.00000 - 17587 2017 8 21 23 41 0 194 4.8799 182.11361 830.50732 760.69541 -0.07655 1.72322 0.79884 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22448 0.19646 -1.00000 - 17588 2017 8 21 23 41 5 73 4.8800 182.11038 830.53305 760.71476 -0.07649 1.71626 0.80029 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22413 0.19646 -1.00000 - 17589 2017 8 21 23 41 9 953 4.8800 182.10717 830.55857 760.73397 -0.07611 1.70922 0.80206 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22377 0.19646 -1.00000 - 17590 2017 8 21 23 41 14 833 4.8800 182.10394 830.58384 760.75302 -0.07572 1.70233 0.80417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22342 0.19646 -1.00000 - 17591 2017 8 21 23 41 19 713 4.8800 182.10070 830.60895 760.77188 -0.07550 1.70033 0.80612 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22306 0.19646 -1.00000 - 17592 2017 8 21 23 41 24 593 4.8800 182.09745 830.63377 760.79061 -0.07546 1.70245 0.80754 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22271 0.19646 -1.00000 - 17593 2017 8 21 23 41 29 473 4.8800 182.09422 830.65835 760.80921 -0.07581 1.70527 0.80875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22235 0.19646 -1.00000 - 17594 2017 8 21 23 41 34 353 4.8800 182.09099 830.68251 760.82765 -0.07645 1.70895 0.81012 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22200 0.19646 -1.00000 - 17595 2017 8 21 23 41 39 233 4.8800 182.08776 830.70646 760.84600 -0.07697 1.71314 0.80995 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22164 0.19646 -1.00000 - 17596 2017 8 21 23 41 44 113 4.8800 182.08454 830.73004 760.86424 -0.07709 1.71839 0.81153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22129 0.19646 -1.00000 - 17597 2017 8 21 23 41 48 993 4.8800 182.08132 830.75300 760.88236 -0.07680 1.72134 0.80970 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22093 0.19646 -1.00000 - 17598 2017 8 21 23 41 53 873 4.8800 182.07810 830.77476 760.90046 -0.07631 1.71935 0.80769 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22058 0.19646 -1.00000 - 17599 2017 8 21 23 41 58 754 4.8800 182.07487 830.79788 760.91853 -0.07584 1.71726 0.80560 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22022 0.19646 -1.00000 - 17600 2017 8 21 23 42 3 634 4.8801 182.07163 830.82024 760.93664 -0.07558 1.69031 0.80228 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21987 0.19646 -1.00000 - 17601 2017 8 21 23 42 8 514 4.8801 182.06839 830.84094 760.95475 -0.07565 1.69241 0.80047 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21951 0.19646 -1.00000 - 17602 2017 8 21 23 42 13 394 4.8801 182.06516 830.85848 760.97299 -0.07604 1.69434 0.79747 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21916 0.19646 -1.00000 - 17603 2017 8 21 23 42 18 274 4.8801 182.06194 830.88293 760.99147 -0.07653 1.68711 0.79383 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21880 0.19646 -1.00000 - 17604 2017 8 21 23 42 23 154 4.8801 182.05871 830.90486 761.00997 -0.07676 1.69160 0.79217 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21845 0.19645 -1.00000 - 17605 2017 8 21 23 42 28 34 4.8801 182.05550 830.92802 761.02856 -0.07656 1.68832 0.79039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21809 0.19645 -1.00000 - 17606 2017 8 21 23 42 32 914 4.8801 182.05230 830.95079 761.04714 -0.07599 1.69256 0.78828 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21774 0.19645 -1.00000 - 17607 2017 8 21 23 42 37 794 4.8801 182.04910 830.97329 761.06575 -0.07528 1.69733 0.78739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21738 0.19645 -1.00000 - 17608 2017 8 21 23 42 42 674 4.8801 182.04586 830.99563 761.08431 -0.07471 1.70461 0.78739 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21703 0.19645 -1.00000 - 17609 2017 8 21 23 42 47 554 4.8801 182.04261 831.01781 761.10287 -0.07451 1.71388 0.78577 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21667 0.19645 -1.00000 - 17610 2017 8 21 23 42 52 435 4.8801 182.03938 831.03989 761.12146 -0.07463 1.72270 0.78646 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21632 0.19645 -1.00000 - 17611 2017 8 21 23 42 57 315 4.8802 182.03616 831.06193 761.14003 -0.07492 1.73118 0.78749 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21596 0.19645 -1.00000 - 17612 2017 8 21 23 43 2 195 4.8802 182.03294 831.08410 761.15862 -0.07543 1.73952 0.78773 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21561 0.19645 -1.00000 - 17613 2017 8 21 23 43 7 75 4.8802 182.02971 831.10629 761.17712 -0.07577 1.74789 0.78993 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21525 0.19645 -1.00000 - 17614 2017 8 21 23 43 11 955 4.8802 182.02651 831.12846 761.19557 -0.07567 1.75640 0.79056 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21490 0.19645 -1.00000 - 17615 2017 8 21 23 43 16 835 4.8802 182.02331 831.15051 761.21392 -0.07517 1.76514 0.79301 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21454 0.19645 -1.00000 - 17616 2017 8 21 23 43 21 716 4.8802 182.02010 831.17257 761.23220 -0.07453 1.77412 0.79565 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21419 0.19645 -1.00000 - 17617 2017 8 21 23 43 26 596 4.8802 182.01687 831.19466 761.25041 -0.07419 1.78337 0.79742 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21384 0.19645 -1.00000 - 17618 2017 8 21 23 43 31 476 4.8802 182.01363 831.21686 761.26854 -0.07414 1.79292 0.80021 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21348 0.19645 -1.00000 - 17619 2017 8 21 23 43 36 356 4.8802 182.01042 831.23892 761.28659 -0.07442 1.80274 0.80149 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21313 0.19645 -1.00000 - 17620 2017 8 21 23 43 41 237 4.8802 182.00721 831.26083 761.30463 -0.07486 1.81209 0.80178 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21277 0.19645 -1.00000 - 17621 2017 8 21 23 43 46 117 4.8802 182.00399 831.28186 761.32264 -0.07559 1.81989 0.80469 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21242 0.19645 -1.00000 - 17622 2017 8 21 23 43 50 997 4.8803 182.00077 831.30360 761.34053 -0.07601 1.82257 0.80297 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21206 0.19645 -1.00000 - 17623 2017 8 21 23 43 55 877 4.8803 181.99757 831.32612 761.35841 -0.07591 1.83126 0.80225 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21171 0.19645 -1.00000 - 17624 2017 8 21 23 44 0 758 4.8803 181.99436 831.34768 761.37636 -0.07543 1.84026 0.80129 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21135 0.19645 -1.00000 - 17625 2017 8 21 23 44 5 638 4.8803 181.99116 831.36959 761.39424 -0.07494 1.85058 0.79841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21100 0.19645 -1.00000 - 17626 2017 8 21 23 44 10 518 4.8803 181.98794 831.39082 761.41222 -0.07475 1.86169 0.79799 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21064 0.19645 -1.00000 - 17627 2017 8 21 23 44 15 398 4.8803 181.98472 831.40931 761.43027 -0.07480 1.87113 0.79421 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21029 0.19645 -1.00000 - 17628 2017 8 21 23 44 20 279 4.8803 181.98152 831.43396 761.44833 -0.07511 1.87613 0.78980 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20993 0.19645 -1.00000 - 17629 2017 8 21 23 44 25 159 4.8803 181.97832 831.45598 761.46666 -0.07585 1.82489 0.78951 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20958 0.19645 -1.00000 - 17630 2017 8 21 23 44 30 39 4.8803 181.97512 831.47803 761.48510 -0.07640 1.80779 0.78428 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20922 0.19645 -1.00000 - 17631 2017 8 21 23 44 34 920 4.8803 181.97192 831.50675 761.50365 -0.07642 1.81142 0.77795 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20887 0.19644 -1.00000 - 17632 2017 8 21 23 44 39 800 4.8803 181.96874 831.53082 761.52235 -0.07592 1.80760 0.77947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20851 0.19644 -1.00000 - 17633 2017 8 21 23 44 44 680 4.8803 181.96556 831.55002 761.54100 -0.07528 1.79515 0.77345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20816 0.19644 -1.00000 - 17634 2017 8 21 23 44 49 561 4.8803 181.96236 831.57806 761.55955 -0.07488 1.79276 0.76707 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20780 0.19644 -1.00000 - 17635 2017 8 21 23 44 54 441 4.8804 181.95916 831.60270 761.57820 -0.07468 1.78559 0.76841 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20745 0.19644 -1.00000 - 17636 2017 8 21 23 44 59 321 4.8804 181.95596 831.62189 761.59671 -0.07480 1.77595 0.76311 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20709 0.19644 -1.00000 - 17637 2017 8 21 23 45 4 202 4.8804 181.95277 831.64449 761.61527 -0.07511 1.76563 0.75938 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20674 0.19644 -1.00000 - 17638 2017 8 21 23 45 9 82 4.8804 181.94958 831.66893 761.63399 -0.07577 1.75537 0.75912 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20638 0.19644 -1.00000 - 17639 2017 8 21 23 45 13 963 4.8804 181.94639 831.69345 761.65252 -0.07620 1.74516 0.75579 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20603 0.19644 -1.00000 - 17640 2017 8 21 23 45 18 843 4.8804 181.94321 831.71750 761.67112 -0.07608 1.73502 0.75427 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20567 0.19644 -1.00000 - 17641 2017 8 21 23 45 23 723 4.8804 181.94004 831.74184 761.68970 -0.07551 1.72496 0.75359 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20532 0.19644 -1.00000 - 17642 2017 8 21 23 45 28 604 4.8804 181.93688 831.76618 761.70814 -0.07492 1.71506 0.75014 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20496 0.19644 -1.00000 - 17643 2017 8 21 23 45 33 484 4.8804 181.93370 831.79019 761.72662 -0.07452 1.70541 0.75101 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20461 0.19644 -1.00000 - 17644 2017 8 21 23 45 38 365 4.8804 181.93050 831.81421 761.74498 -0.07438 1.69613 0.75215 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20425 0.19644 -1.00000 - 17645 2017 8 21 23 45 43 245 4.8804 181.92730 831.83826 761.76319 -0.07458 1.68730 0.75106 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20390 0.19644 -1.00000 - 17646 2017 8 21 23 45 48 126 4.8805 181.92412 831.86195 761.78129 -0.07524 1.67956 0.75267 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20354 0.19644 -1.00000 - 17647 2017 8 21 23 45 53 6 4.8805 181.92095 831.88542 761.79922 -0.07594 1.67466 0.75402 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20319 0.19644 -1.00000 - 17648 2017 8 21 23 45 57 887 4.8805 181.91776 831.90874 761.81700 -0.07623 1.66986 0.75495 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20283 0.19644 -1.00000 - 17649 2017 8 21 23 46 2 767 4.8805 181.91458 831.93174 761.83470 -0.07599 1.66535 0.75672 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20248 0.19644 -1.00000 - 17650 2017 8 21 23 46 7 647 4.8805 181.91141 831.95447 761.85220 -0.07539 1.66158 0.75904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20212 0.19644 -1.00000 - 17651 2017 8 21 23 46 12 528 4.8805 181.90824 831.97687 761.86954 -0.07472 1.66078 0.76034 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20177 0.19644 -1.00000 - 17652 2017 8 21 23 46 17 408 4.8805 181.90504 831.99894 761.88677 -0.07430 1.66064 0.76170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20141 0.19644 -1.00000 - 17653 2017 8 21 23 46 22 289 4.8805 181.90184 832.02070 761.90387 -0.07423 1.66121 0.76323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20106 0.19644 -1.00000 - 17654 2017 8 21 23 46 27 170 4.8805 181.89865 832.04209 761.92083 -0.07453 1.66245 0.76417 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20070 0.19644 -1.00000 - 17655 2017 8 21 23 46 32 50 4.8805 181.89548 832.06325 761.93775 -0.07514 1.66405 0.76574 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20035 0.19644 -1.00000 - 17656 2017 8 21 23 46 36 931 4.8805 181.89230 832.08444 761.95457 -0.07562 1.66587 0.76634 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19999 0.19644 -1.00000 - 17657 2017 8 21 23 46 41 811 4.8806 181.88913 832.10496 761.97130 -0.07564 1.66645 0.76520 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19964 0.19644 -1.00000 - 17658 2017 8 21 23 46 46 692 4.8806 181.88597 832.12522 761.98814 -0.07514 1.67324 0.76567 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19928 0.19644 -1.00000 - 17659 2017 8 21 23 46 51 572 4.8806 181.88281 832.14551 762.00494 -0.07435 1.66657 0.76374 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19893 0.19643 -1.00000 - 17660 2017 8 21 23 46 56 453 4.8806 181.87963 832.16605 762.02172 -0.07366 1.66783 0.76008 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19857 0.19643 -1.00000 - 17661 2017 8 21 23 47 1 334 4.8806 181.87643 832.18255 762.03863 -0.07342 1.66846 0.75925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19822 0.19643 -1.00000 - 17662 2017 8 21 23 47 6 214 4.8806 181.87324 832.20291 762.05551 -0.07356 1.66697 0.75397 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19786 0.19643 -1.00000 - 17663 2017 8 21 23 47 11 95 4.8806 181.87007 832.22326 762.07272 -0.07397 1.66550 0.75026 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19751 0.19643 -1.00000 - 17664 2017 8 21 23 47 15 975 4.8806 181.86691 832.24843 762.09004 -0.07434 1.61724 0.74653 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19715 0.19643 -1.00000 - 17665 2017 8 21 23 47 20 856 4.8806 181.86373 832.26938 762.10752 -0.07490 1.62817 0.74208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19680 0.19643 -1.00000 - 17666 2017 8 21 23 47 25 737 4.8806 181.86057 832.28837 762.12515 -0.07498 1.63940 0.74066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19644 0.19643 -1.00000 - 17667 2017 8 21 23 47 30 617 4.8806 181.85742 832.30603 762.14277 -0.07451 1.60049 0.73593 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19609 0.19643 -1.00000 - 17668 2017 8 21 23 47 35 498 4.8807 181.85427 832.32838 762.16044 -0.07386 1.60362 0.73264 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19573 0.19643 -1.00000 - 17669 2017 8 21 23 47 40 379 4.8807 181.85110 832.35070 762.17817 -0.07352 1.60882 0.73049 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19538 0.19643 -1.00000 - 17670 2017 8 21 23 47 45 259 4.8807 181.84792 832.37318 762.19597 -0.07344 1.61594 0.72734 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19502 0.19643 -1.00000 - 17671 2017 8 21 23 47 50 140 4.8807 181.84475 832.39618 762.21385 -0.07367 1.62801 0.72527 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19467 0.19643 -1.00000 - 17672 2017 8 21 23 47 55 21 4.8807 181.84160 832.41907 762.23172 -0.07418 1.63741 0.72438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19431 0.19643 -1.00000 - 17673 2017 8 21 23 47 59 901 4.8807 181.83845 832.44184 762.24958 -0.07471 1.64434 0.72243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19396 0.19643 -1.00000 - 17674 2017 8 21 23 48 4 782 4.8807 181.83529 832.46472 762.26743 -0.07532 1.65306 0.72176 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19360 0.19643 -1.00000 - 17675 2017 8 21 23 48 9 663 4.8807 181.83213 832.48760 762.28517 -0.07536 1.66377 0.72160 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19325 0.19643 -1.00000 - 17676 2017 8 21 23 48 14 543 4.8807 181.82898 832.51037 762.30290 -0.07485 1.67369 0.72126 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19289 0.19643 -1.00000 - 17677 2017 8 21 23 48 19 424 4.8807 181.82583 832.53301 762.32056 -0.07427 1.68252 0.72238 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19254 0.19643 -1.00000 - 17678 2017 8 21 23 48 24 305 4.8807 181.82268 832.55580 762.33813 -0.07399 1.69014 0.72270 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19218 0.19643 -1.00000 - 17679 2017 8 21 23 48 29 186 4.8808 181.81952 832.57856 762.35559 -0.07394 1.69656 0.72396 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19183 0.19643 -1.00000 - 17680 2017 8 21 23 48 34 66 4.8808 181.81636 832.60124 762.37287 -0.07416 1.70192 0.72580 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19148 0.19643 -1.00000 - 17681 2017 8 21 23 48 38 947 4.8808 181.81321 832.62377 762.38997 -0.07479 1.70869 0.72696 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19112 0.19643 -1.00000 - 17682 2017 8 21 23 48 43 828 4.8808 181.81007 832.64603 762.40693 -0.07554 1.71930 0.72901 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19077 0.19643 -1.00000 - 17683 2017 8 21 23 48 48 709 4.8808 181.80693 832.66800 762.42369 -0.07574 1.72820 0.73127 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19041 0.19643 -1.00000 - 17684 2017 8 21 23 48 53 590 4.8808 181.80379 832.68976 762.44034 -0.07530 1.73529 0.73229 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19006 0.19643 -1.00000 - 17685 2017 8 21 23 48 58 470 4.8808 181.80065 832.71140 762.45681 -0.07455 1.74054 0.73411 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18970 0.19643 -1.00000 - 17686 2017 8 21 23 49 3 351 4.8808 181.79751 832.73269 762.47313 -0.07406 1.74405 0.73431 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18935 0.19643 -1.00000 - 17687 2017 8 21 23 49 8 232 4.8808 181.79436 832.75374 762.48938 -0.07374 1.74596 0.73444 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18899 0.19642 -1.00000 - 17688 2017 8 21 23 49 13 113 4.8808 181.79121 832.77454 762.50557 -0.07377 1.74641 0.73529 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18864 0.19642 -1.00000 - 17689 2017 8 21 23 49 17 994 4.8808 181.78805 832.79476 762.52163 -0.07409 1.74551 0.73388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18828 0.19642 -1.00000 - 17690 2017 8 21 23 49 22 875 4.8809 181.78492 832.81509 762.53757 -0.07481 1.74303 0.73404 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18793 0.19642 -1.00000 - 17691 2017 8 21 23 49 27 755 4.8809 181.78178 832.83521 762.55350 -0.07534 1.73903 0.73170 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18757 0.19642 -1.00000 - 17692 2017 8 21 23 49 32 636 4.8809 181.77864 832.85538 762.56942 -0.07527 1.73385 0.72904 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18722 0.19642 -1.00000 - 17693 2017 8 21 23 49 37 517 4.8809 181.77552 832.87215 762.58543 -0.07465 1.72745 0.72586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18686 0.19642 -1.00000 - 17694 2017 8 21 23 49 42 398 4.8809 181.77241 832.89250 762.60152 -0.07390 1.71807 0.72066 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18651 0.19642 -1.00000 - 17695 2017 8 21 23 49 47 279 4.8809 181.76929 832.91286 762.61779 -0.07337 1.67901 0.71496 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18615 0.19642 -1.00000 - 17696 2017 8 21 23 49 52 160 4.8809 181.76613 832.93794 762.63433 -0.07308 1.58290 0.71015 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18580 0.19642 -1.00000 - 17697 2017 8 21 23 49 57 41 4.8809 181.76297 832.95883 762.65087 -0.07322 1.60280 0.70452 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18544 0.19642 -1.00000 - 17698 2017 8 21 23 50 1 922 4.8809 181.75984 832.97735 762.66750 -0.07367 1.58636 0.69988 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18509 0.19642 -1.00000 - 17699 2017 8 21 23 50 6 803 4.8809 181.75672 832.99392 762.68426 -0.07440 1.57007 0.69670 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18473 0.19642 -1.00000 - 17700 2017 8 21 23 50 11 684 4.8809 181.75359 833.01642 762.70109 -0.07490 1.55156 0.69076 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18438 0.19642 -1.00000 - 17701 2017 8 21 23 50 16 564 4.8810 181.75045 833.03848 762.71803 -0.07486 1.53241 0.68720 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18402 0.19642 -1.00000 - 17702 2017 8 21 23 50 21 445 4.8810 181.74733 833.06063 762.73494 -0.07433 1.51328 0.68252 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18367 0.19642 -1.00000 - 17703 2017 8 21 23 50 26 326 4.8810 181.74422 833.08300 762.75191 -0.07363 1.50728 0.67889 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18331 0.19642 -1.00000 - 17704 2017 8 21 23 50 31 207 4.8810 181.74109 833.10506 762.76892 -0.07314 1.50501 0.67798 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18296 0.19642 -1.00000 - 17705 2017 8 21 23 50 36 88 4.8810 181.73794 833.12732 762.78599 -0.07301 1.50120 0.67389 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18260 0.19642 -1.00000 - 17706 2017 8 21 23 50 40 969 4.8810 181.73480 833.14958 762.80307 -0.07327 1.49656 0.67263 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18225 0.19642 -1.00000 - 17707 2017 8 21 23 50 45 850 4.8810 181.73168 833.17187 762.82013 -0.07393 1.49163 0.67144 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18189 0.19642 -1.00000 - 17708 2017 8 21 23 50 50 731 4.8810 181.72857 833.19428 762.83717 -0.07465 1.49111 0.66958 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18154 0.19642 -1.00000 - 17709 2017 8 21 23 50 55 612 4.8810 181.72545 833.21645 762.85413 -0.07497 1.49936 0.67002 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18118 0.19642 -1.00000 - 17710 2017 8 21 23 51 0 493 4.8810 181.72233 833.23868 762.87111 -0.07470 1.50524 0.66975 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18083 0.19642 -1.00000 - 17711 2017 8 21 23 51 5 374 4.8810 181.71922 833.26094 762.88794 -0.07402 1.50918 0.67040 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18047 0.19642 -1.00000 - 17712 2017 8 21 23 51 10 256 4.8811 181.71610 833.28310 762.90470 -0.07327 1.51147 0.67153 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18012 0.19642 -1.00000 - 17713 2017 8 21 23 51 15 137 4.8811 181.71297 833.30514 762.92131 -0.07287 1.51590 0.67349 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17976 0.19642 -1.00000 - 17714 2017 8 21 23 51 20 18 4.8811 181.70983 833.32709 762.93783 -0.07298 1.52184 0.67473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17941 0.19641 -1.00000 - 17715 2017 8 21 23 51 24 899 4.8811 181.70671 833.34885 762.95415 -0.07339 1.52637 0.67691 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17905 0.19641 -1.00000 - 17716 2017 8 21 23 51 29 780 4.8811 181.70360 833.37032 762.97034 -0.07388 1.52931 0.67808 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17870 0.19641 -1.00000 - 17717 2017 8 21 23 51 34 661 4.8811 181.70049 833.39153 762.98640 -0.07452 1.53110 0.67819 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17834 0.19641 -1.00000 - 17718 2017 8 21 23 51 39 542 4.8811 181.69738 833.41233 763.00237 -0.07465 1.53213 0.67947 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17799 0.19641 -1.00000 - 17719 2017 8 21 23 51 44 423 4.8811 181.69428 833.43307 763.01822 -0.07413 1.53114 0.67728 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17763 0.19641 -1.00000 - 17720 2017 8 21 23 51 49 304 4.8811 181.69119 833.45349 763.03403 -0.07324 1.53576 0.67682 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17728 0.19641 -1.00000 - 17721 2017 8 21 23 51 54 185 4.8811 181.68809 833.47350 763.04987 -0.07269 1.54938 0.67438 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17692 0.19641 -1.00000 - 17722 2017 8 21 23 51 59 67 4.8811 181.68497 833.49347 763.06558 -0.07254 1.56057 0.67058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17657 0.19641 -1.00000 - 17723 2017 8 21 23 52 3 948 4.8812 181.68184 833.51304 763.08140 -0.07261 1.56662 0.66875 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17621 0.19641 -1.00000 - 17724 2017 8 21 23 52 8 829 4.8812 181.67874 833.53067 763.09724 -0.07305 1.54482 0.66350 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17586 0.19641 -1.00000 - 17725 2017 8 21 23 52 13 710 4.8812 181.67565 833.55248 763.11309 -0.07346 1.55705 0.65775 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17550 0.19641 -1.00000 - 17726 2017 8 21 23 52 18 591 4.8812 181.67255 833.56618 763.12898 -0.07402 1.56609 0.65401 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17515 0.19641 -1.00000 - 17727 2017 8 21 23 52 23 472 4.8812 181.66944 833.58304 763.14496 -0.07408 1.57153 0.65043 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17479 0.19641 -1.00000 - 17728 2017 8 21 23 52 28 354 4.8812 181.66635 833.60543 763.16104 -0.07356 1.52738 0.64675 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17444 0.19641 -1.00000 - 17729 2017 8 21 23 52 33 235 4.8812 181.66327 833.62636 763.17703 -0.07292 1.56128 0.64388 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17408 0.19641 -1.00000 - 17730 2017 8 21 23 52 38 116 4.8812 181.66018 833.64740 763.19313 -0.07254 1.55866 0.64181 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17373 0.19641 -1.00000 - 17731 2017 8 21 23 52 42 997 4.8812 181.65707 833.66819 763.20914 -0.07237 1.55363 0.64121 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17337 0.19641 -1.00000 - 17732 2017 8 21 23 52 47 878 4.8812 181.65395 833.68890 763.22517 -0.07255 1.54654 0.63770 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17302 0.19641 -1.00000 - 17733 2017 8 21 23 52 52 760 4.8812 181.65086 833.70958 763.24125 -0.07297 1.53793 0.63706 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17266 0.19641 -1.00000 - 17734 2017 8 21 23 52 57 641 4.8813 181.64778 833.73031 763.25724 -0.07377 1.52806 0.63603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17231 0.19641 -1.00000 - 17735 2017 8 21 23 53 2 522 4.8813 181.64468 833.75099 763.27322 -0.07423 1.51725 0.63489 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17195 0.19641 -1.00000 - 17736 2017 8 21 23 53 7 404 4.8813 181.64159 833.77151 763.28915 -0.07405 1.50579 0.63554 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17160 0.19641 -1.00000 - 17737 2017 8 21 23 53 12 285 4.8813 181.63850 833.79211 763.30503 -0.07341 1.49394 0.63502 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17124 0.19641 -1.00000 - 17738 2017 8 21 23 53 17 166 4.8813 181.63541 833.81260 763.32079 -0.07282 1.48200 0.63586 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17089 0.19641 -1.00000 - 17739 2017 8 21 23 53 22 47 4.8813 181.63232 833.83298 763.33647 -0.07246 1.47015 0.63705 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17053 0.19641 -1.00000 - 17740 2017 8 21 23 53 26 929 4.8813 181.62921 833.85328 763.35205 -0.07242 1.45857 0.63822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17018 0.19641 -1.00000 - 17741 2017 8 21 23 53 31 810 4.8813 181.62611 833.87350 763.36756 -0.07277 1.45277 0.63960 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16982 0.19641 -1.00000 - 17742 2017 8 21 23 53 36 691 4.8813 181.62302 833.89355 763.38294 -0.07357 1.45378 0.64145 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16947 0.19640 -1.00000 - 17743 2017 8 21 23 53 41 573 4.8813 181.61995 833.91345 763.39826 -0.07421 1.45512 0.64243 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16911 0.19640 -1.00000 - 17744 2017 8 21 23 53 46 454 4.8814 181.61686 833.93326 763.41345 -0.07429 1.45692 0.64394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16876 0.19640 -1.00000 - 17745 2017 8 21 23 53 51 335 4.8814 181.61378 833.95268 763.42853 -0.07379 1.45924 0.64373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16840 0.19640 -1.00000 - 17746 2017 8 21 23 53 56 217 4.8814 181.61072 833.97186 763.44363 -0.07302 1.46140 0.64341 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16805 0.19640 -1.00000 - 17747 2017 8 21 23 54 1 98 4.8814 181.60765 833.99094 763.45866 -0.07240 1.46292 0.64345 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16769 0.19640 -1.00000 - 17748 2017 8 21 23 54 5 980 4.8814 181.60456 834.00889 763.47371 -0.07212 1.44687 0.64039 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16734 0.19640 -1.00000 - 17749 2017 8 21 23 54 10 861 4.8814 181.60146 834.02766 763.48883 -0.07226 1.44906 0.63986 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16698 0.19640 -1.00000 - 17750 2017 8 21 23 54 15 742 4.8814 181.59838 834.04608 763.50397 -0.07268 1.44314 0.63559 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16663 0.19640 -1.00000 - 17751 2017 8 21 23 54 20 624 4.8814 181.59532 834.06452 763.51911 -0.07332 1.44304 0.63068 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16627 0.19640 -1.00000 - 17752 2017 8 21 23 54 25 505 4.8814 181.59225 834.08220 763.53445 -0.07384 1.42627 0.62817 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16592 0.19640 -1.00000 - 17753 2017 8 21 23 54 30 387 4.8814 181.58919 834.09598 763.54989 -0.07383 1.41586 0.62333 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16556 0.19640 -1.00000 - 17754 2017 8 21 23 54 35 268 4.8814 181.58613 834.11636 763.56539 -0.07330 1.41585 0.61984 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16521 0.19640 -1.00000 - 17755 2017 8 21 23 54 40 149 4.8814 181.58309 834.13617 763.58098 -0.07253 1.41904 0.61759 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16485 0.19640 -1.00000 - 17756 2017 8 21 23 54 45 31 4.8815 181.58003 834.15617 763.59668 -0.07201 1.42203 0.61407 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16450 0.19640 -1.00000 - 17757 2017 8 21 23 54 49 912 4.8815 181.57694 834.17669 763.61249 -0.07179 1.42394 0.61142 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16414 0.19640 -1.00000 - 17758 2017 8 21 23 54 54 794 4.8815 181.57386 834.19709 763.62830 -0.07199 1.42456 0.61009 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16379 0.19640 -1.00000 - 17759 2017 8 21 23 54 59 675 4.8815 181.57081 834.21751 763.64413 -0.07246 1.42406 0.60716 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16343 0.19640 -1.00000 - 17760 2017 8 21 23 55 4 557 4.8815 181.56776 834.23797 763.65999 -0.07302 1.42271 0.60611 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16308 0.19640 -1.00000 - 17761 2017 8 21 23 55 9 438 4.8815 181.56470 834.25857 763.67577 -0.07351 1.42093 0.60572 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16272 0.19640 -1.00000 - 17762 2017 8 21 23 55 14 320 4.8815 181.56164 834.27923 763.69154 -0.07347 1.41913 0.60471 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16237 0.19640 -1.00000 - 17763 2017 8 21 23 55 19 201 4.8815 181.55858 834.29979 763.70729 -0.07293 1.41765 0.60545 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16201 0.19640 -1.00000 - 17764 2017 8 21 23 55 24 83 4.8815 181.55553 834.32055 763.72297 -0.07219 1.41676 0.60557 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16166 0.19640 -1.00000 - 17765 2017 8 21 23 55 28 964 4.8815 181.55247 834.34143 763.73858 -0.07172 1.41666 0.60641 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16130 0.19640 -1.00000 - 17766 2017 8 21 23 55 33 846 4.8816 181.54939 834.36231 763.75403 -0.07166 1.41744 0.60778 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16095 0.19640 -1.00000 - 17767 2017 8 21 23 55 38 728 4.8816 181.54632 834.38307 763.76933 -0.07195 1.41912 0.60855 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16059 0.19640 -1.00000 - 17768 2017 8 21 23 55 43 609 4.8816 181.54327 834.40360 763.78451 -0.07253 1.42159 0.61045 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16024 0.19640 -1.00000 - 17769 2017 8 21 23 55 48 491 4.8816 181.54023 834.42391 763.79953 -0.07325 1.42470 0.61208 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15988 0.19640 -1.00000 - 17770 2017 8 21 23 55 53 372 4.8816 181.53717 834.44404 763.81445 -0.07352 1.42821 0.61291 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15953 0.19639 -1.00000 - 17771 2017 8 21 23 55 58 254 4.8816 181.53412 834.46409 763.82922 -0.07317 1.43192 0.61473 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15917 0.19639 -1.00000 - 17772 2017 8 21 23 56 3 136 4.8816 181.53107 834.48383 763.84381 -0.07242 1.43569 0.61435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15882 0.19639 -1.00000 - 17773 2017 8 21 23 56 8 17 4.8816 181.52802 834.50326 763.85830 -0.07169 1.43963 0.61425 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15846 0.19639 -1.00000 - 17774 2017 8 21 23 56 12 899 4.8816 181.52495 834.52136 763.87279 -0.07148 1.44281 0.61448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15811 0.19639 -1.00000 - 17775 2017 8 21 23 56 17 780 4.8816 181.52188 834.53940 763.88710 -0.07164 1.44258 0.61198 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15775 0.19639 -1.00000 - 17776 2017 8 21 23 56 22 662 4.8816 181.51883 834.55816 763.90136 -0.07202 1.43843 0.61237 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15740 0.19639 -1.00000 - 17777 2017 8 21 23 56 27 544 4.8817 181.51578 834.57828 763.91568 -0.07268 1.42431 0.60836 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15704 0.19639 -1.00000 - 17778 2017 8 21 23 56 32 425 4.8817 181.51274 834.60444 763.93011 -0.07324 1.39009 0.60435 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15669 0.19639 -1.00000 - 17779 2017 8 21 23 56 37 307 4.8817 181.50969 834.61889 763.94461 -0.07321 1.41393 0.60191 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15633 0.19639 -1.00000 - 17780 2017 8 21 23 56 42 189 4.8817 181.50666 834.63396 763.95917 -0.07260 1.40151 0.59712 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15598 0.19639 -1.00000 - 17781 2017 8 21 23 56 47 71 4.8817 181.50364 834.65076 763.97367 -0.07177 1.38413 0.59161 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15562 0.19639 -1.00000 - 17782 2017 8 21 23 56 51 952 4.8817 181.50061 834.66962 763.98835 -0.07133 1.36359 0.59058 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15527 0.19639 -1.00000 - 17783 2017 8 21 23 56 56 834 4.8817 181.49756 834.68888 764.00289 -0.07115 1.35131 0.58521 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15491 0.19639 -1.00000 - 17784 2017 8 21 23 57 1 716 4.8817 181.49450 834.71203 764.01744 -0.07132 1.33570 0.57925 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15456 0.19639 -1.00000 - 17785 2017 8 21 23 57 6 597 4.8817 181.49146 834.72958 764.03215 -0.07172 1.31828 0.58035 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15420 0.19639 -1.00000 - 17786 2017 8 21 23 57 11 479 4.8817 181.48844 834.74651 764.04678 -0.07224 1.30310 0.57472 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15385 0.19639 -1.00000 - 17787 2017 8 21 23 57 16 361 4.8818 181.48542 834.76557 764.06148 -0.07270 1.29016 0.57057 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15349 0.19639 -1.00000 - 17788 2017 8 21 23 57 21 243 4.8818 181.48239 834.78418 764.07626 -0.07265 1.27928 0.57104 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15314 0.19639 -1.00000 - 17789 2017 8 21 23 57 26 124 4.8818 181.47937 834.80309 764.09092 -0.07216 1.27035 0.56760 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15278 0.19639 -1.00000 - 17790 2017 8 21 23 57 31 6 4.8818 181.47636 834.82161 764.10561 -0.07158 1.27014 0.56539 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15243 0.19639 -1.00000 - 17791 2017 8 21 23 57 35 888 4.8818 181.47333 834.84036 764.12042 -0.07120 1.27210 0.56603 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15207 0.19639 -1.00000 - 17792 2017 8 21 23 57 40 770 4.8818 181.47030 834.85924 764.13507 -0.07105 1.27254 0.56240 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15172 0.19639 -1.00000 - 17793 2017 8 21 23 57 45 652 4.8818 181.46726 834.87788 764.14972 -0.07123 1.26878 0.56016 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15136 0.19639 -1.00000 - 17794 2017 8 21 23 57 50 533 4.8818 181.46424 834.89633 764.16447 -0.07177 1.27029 0.56118 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15101 0.19639 -1.00000 - 17795 2017 8 21 23 57 55 415 4.8818 181.46123 834.91444 764.17915 -0.07244 1.27513 0.55666 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15065 0.19639 -1.00000 - 17796 2017 8 21 23 58 0 297 4.8818 181.45821 834.93399 764.19378 -0.07275 1.27395 0.55562 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15030 0.19639 -1.00000 - 17797 2017 8 21 23 58 5 179 4.8818 181.45519 834.95183 764.20846 -0.07254 1.27235 0.55722 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14994 0.19638 -1.00000 - 17798 2017 8 21 23 58 10 61 4.8819 181.45217 834.96988 764.22301 -0.07197 1.27526 0.55447 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14959 0.19638 -1.00000 - 17799 2017 8 21 23 58 14 943 4.8819 181.44915 834.98816 764.23751 -0.07135 1.27878 0.55376 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14923 0.19638 -1.00000 - 17800 2017 8 21 23 58 19 824 4.8819 181.44612 835.00596 764.25214 -0.07098 1.27689 0.55458 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14888 0.19638 -1.00000 - 17801 2017 8 21 23 58 24 706 4.8819 181.44309 835.02399 764.26669 -0.07098 1.27752 0.55373 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14852 0.19638 -1.00000 - 17802 2017 8 21 23 58 29 588 4.8819 181.44006 835.04198 764.28121 -0.07141 1.28396 0.55399 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14817 0.19638 -1.00000 - 17803 2017 8 21 23 58 34 470 4.8819 181.43704 835.06001 764.29575 -0.07206 1.29256 0.55500 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14781 0.19638 -1.00000 - 17804 2017 8 21 23 58 39 352 4.8819 181.43403 835.07813 764.31017 -0.07254 1.30134 0.55429 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14746 0.19638 -1.00000 - 17805 2017 8 21 23 58 44 234 4.8819 181.43102 835.09597 764.32453 -0.07252 1.31381 0.55663 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14710 0.19638 -1.00000 - 17806 2017 8 21 23 58 49 116 4.8819 181.42800 835.11394 764.33887 -0.07200 1.32702 0.55822 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14675 0.19638 -1.00000 - 17807 2017 8 21 23 58 53 998 4.8819 181.42500 835.13186 764.35306 -0.07122 1.33927 0.55952 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14639 0.19638 -1.00000 - 17808 2017 8 21 23 58 58 880 4.8820 181.42199 835.14973 764.36719 -0.07055 1.35062 0.56221 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14604 0.19638 -1.00000 - 17809 2017 8 21 23 59 3 762 4.8820 181.41897 835.16774 764.38120 -0.07035 1.36121 0.56400 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14568 0.19638 -1.00000 - 17810 2017 8 21 23 59 8 644 4.8820 181.41593 835.18564 764.39513 -0.07057 1.37114 0.56551 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14533 0.19638 -1.00000 - 17811 2017 8 21 23 59 13 526 4.8820 181.41292 835.20331 764.40891 -0.07094 1.38154 0.56852 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14497 0.19638 -1.00000 - 17812 2017 8 21 23 59 18 408 4.8820 181.40991 835.22082 764.42257 -0.07150 1.39512 0.57004 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14462 0.19638 -1.00000 - 17813 2017 8 21 23 59 23 290 4.8820 181.40691 835.23813 764.43618 -0.07192 1.40763 0.57138 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14426 0.19638 -1.00000 - 17814 2017 8 21 23 59 28 172 4.8820 181.40391 835.25552 764.44966 -0.07183 1.41893 0.57448 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14391 0.19638 -1.00000 - 17815 2017 8 21 23 59 33 54 4.8820 181.40092 835.27291 764.46295 -0.07129 1.42902 0.57323 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14355 0.19638 -1.00000 - 17816 2017 8 21 23 59 37 936 4.8820 181.39794 835.28988 764.47616 -0.07062 1.43798 0.57394 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14320 0.19638 -1.00000 - 17817 2017 8 21 23 59 42 818 4.8820 181.39494 835.30354 764.48949 -0.07028 1.44583 0.57382 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14284 0.19638 -1.00000 - 17818 2017 8 21 23 59 47 700 4.8820 181.39193 835.31867 764.50270 -0.07021 1.45115 0.57059 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14249 0.19638 -1.00000 - 17819 2017 8 21 23 59 52 582 4.8821 181.38892 835.33599 764.51599 -0.07043 1.45126 0.57259 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14213 0.19638 -1.00000 - 17820 2017 8 21 23 59 57 464 4.8821 181.38593 835.35649 764.52940 -0.07083 1.42729 0.56718 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14178 0.19638 -1.00000 - 17821 2017 8 22 0 0 0 0 2.5354 181.38436 835.37030 764.53674 -0.07109 1.40202 0.56483 80.0 80.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14159 0.19638 -1.00000 diff --git a/srcData/log00000004.1d.dat b/srcData/log00000004.1d.dat deleted file mode 100644 index d42671f6..00000000 --- a/srcData/log00000004.1d.dat +++ /dev/null @@ -1,8656 +0,0 @@ -GITM2 log file -## Inputs from UAM.in -# Resart= F -# Eddy coef: 300.000 Eddy P0: 0.005 Eddy P1: 0.001 -# Statistical Models Only: F Apex: F -# EUV Data: F -# AMIE: none -none -# Solar Heating: T Joule Heating: T Auroral Heating: T -# NO Cooling: T O Cooling: T -# Conduction: T Turbulent Conduction: T -# Pressure Grad: T Ion Drag: T Neutral Drag: T -# Viscosity: T Coriolis: T Gravity: T -# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T - -#START - iStep yyyy mm dd hh mm ss ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs SubsolarLon SubsolarLat SubsolarVTEC - 4 2002 3 18 0 0 14 381 4.7900 194.77798 932.45464 873.35801 -0.75426 0.38614 0.00317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14055 -0.01682 -1.00000 - 6 2002 3 18 0 0 23 953 4.7841 194.77409 932.43594 873.36742 -1.21665 0.52668 0.02083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13985 -0.01682 -1.00000 - 8 2002 3 18 0 0 33 514 4.7799 194.80839 932.42309 873.36971 -1.60311 0.65930 0.03854 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13916 -0.01682 -1.00000 - 10 2002 3 18 0 0 43 72 4.7788 194.83939 932.42342 873.36969 -2.01608 0.80940 0.05471 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13846 -0.01682 -1.00000 - 12 2002 3 18 0 0 52 630 4.7795 194.89747 932.43112 873.36904 -2.30655 0.95881 0.06853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13777 -0.01682 -1.00000 - 14 2002 3 18 0 1 2 193 4.7823 194.91680 932.44279 873.36819 -2.53213 1.10150 0.07913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13707 -0.01682 -1.00000 - 16 2002 3 18 0 1 11 761 4.7844 194.94571 932.45759 873.36723 -2.76775 1.23851 0.08594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13637 -0.01682 -1.00000 - 18 2002 3 18 0 1 21 334 4.7872 194.94301 932.47528 873.36587 -3.05831 1.37635 0.08848 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13568 -0.01682 -1.00000 - 20 2002 3 18 0 1 30 911 4.7891 194.94548 932.49647 873.36372 -3.61863 1.50945 0.08601 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13498 -0.01682 -1.00000 - 22 2002 3 18 0 1 40 493 4.7912 194.93082 932.52078 873.36004 -4.31414 1.65905 0.07860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13428 -0.01682 -1.00000 - 24 2002 3 18 0 1 50 77 4.7927 194.91204 932.54815 873.35390 -4.91960 1.81715 0.06671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13359 -0.01681 -1.00000 - 27 2002 3 18 0 2 4 459 4.7944 194.87538 932.59544 873.33762 -6.06640 2.05850 0.04086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13254 -0.01681 -1.00000 - 29 2002 3 18 0 2 14 47 4.7943 194.84745 932.63162 873.32046 -6.48357 2.21984 0.01972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13184 -0.01681 -1.00000 - 31 2002 3 18 0 2 23 636 4.7943 194.81612 932.67284 873.29687 -7.36363 2.35236 -0.00481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13115 -0.01681 -1.00000 - 33 2002 3 18 0 2 33 225 4.7946 194.78724 932.71612 873.26561 -8.42617 2.48101 -0.03287 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.13045 -0.01681 -1.00000 - 35 2002 3 18 0 2 42 814 4.7949 194.75434 932.75975 873.22562 -8.92930 2.59370 -0.06364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12975 -0.01681 -1.00000 - 37 2002 3 18 0 2 52 405 4.7955 194.72464 932.80099 873.17560 -9.82455 2.70656 -0.09902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12905 -0.01681 -1.00000 - 39 2002 3 18 0 3 1 997 4.7962 194.69948 932.83589 873.11438 -10.84540 2.79869 -0.13929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12836 -0.01681 -1.00000 - 41 2002 3 18 0 3 11 590 4.7968 194.67377 932.85928 873.04078 -11.55739 3.50293 -0.18517 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12766 -0.01681 -1.00000 - 43 2002 3 18 0 3 21 184 4.7964 194.64745 932.86472 872.95350 -12.40501 3.85335 -0.24011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12696 -0.01681 -1.00000 - 45 2002 3 18 0 3 30 776 4.7959 194.62664 932.84450 872.85142 -13.81170 4.97711 -0.30566 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12626 -0.01681 -1.00000 - 47 2002 3 18 0 3 40 366 4.7951 194.61239 932.78982 872.73348 -14.50711 5.58977 -0.38368 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12557 -0.01680 -1.00000 - 50 2002 3 18 0 3 54 749 4.7937 194.59522 932.62097 872.52488 -16.32952 7.04293 -0.52612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12452 -0.01680 -1.00000 - 52 2002 3 18 0 4 4 335 4.7930 194.58387 932.43403 872.36374 -17.41084 8.11162 -0.64312 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12382 -0.01680 -1.00000 - 54 2002 3 18 0 4 13 920 4.7924 194.57729 932.17353 872.18526 -18.86342 9.02109 -0.77806 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12313 -0.01680 -1.00000 - 56 2002 3 18 0 4 23 504 4.7919 194.57677 931.82793 871.99062 -19.20338 10.38389 -0.92945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12243 -0.01680 -1.00000 - 58 2002 3 18 0 4 33 87 4.7913 194.57800 931.94032 871.78192 -21.62304 11.94607 -1.10314 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12173 -0.01680 -1.00000 - 60 2002 3 18 0 4 42 669 4.7910 194.57471 932.65781 871.56357 -22.00846 12.73748 -1.29618 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12104 -0.01680 -1.00000 - 62 2002 3 18 0 4 52 251 4.7912 194.56734 932.60055 871.34164 -24.28158 14.23407 -1.50787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.12034 -0.01680 -1.00000 - 64 2002 3 18 0 5 1 834 4.7916 194.56477 933.18487 871.12404 -25.11931 16.94686 -1.73650 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11964 -0.01680 -1.00000 - 66 2002 3 18 0 5 11 418 4.7920 194.56397 932.83149 870.92123 -26.41840 17.28643 -1.98563 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11895 -0.01680 -1.00000 - 68 2002 3 18 0 5 21 3 4.7925 194.55766 933.10348 870.74457 -28.41508 19.78133 -2.24753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11825 -0.01680 -1.00000 - 70 2002 3 18 0 5 30 589 4.7930 194.54355 935.81031 870.60546 -28.85755 22.39581 -2.51700 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11755 -0.01680 -1.00000 - 72 2002 3 18 0 5 40 176 4.7937 194.53082 941.61559 870.51328 -31.07276 24.63804 -2.79770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11685 -0.01679 -1.00000 - 75 2002 3 18 0 5 54 559 4.7949 194.50794 945.47954 870.47628 -32.70965 27.40783 -3.22581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11581 -0.01679 -1.00000 - 77 2002 3 18 0 6 4 150 4.7954 194.49295 948.11373 870.51700 -33.93481 29.85863 -3.50835 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11511 -0.01679 -1.00000 - 79 2002 3 18 0 6 13 741 4.7958 194.47146 952.60682 870.59878 -35.00089 33.57655 -3.78666 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11441 -0.01679 -1.00000 - 81 2002 3 18 0 6 23 333 4.7960 194.45038 954.89172 870.70712 -35.07772 33.66544 -4.06536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11372 -0.01679 -1.00000 - 83 2002 3 18 0 6 32 926 4.7963 194.42834 956.97336 870.82322 -37.42172 37.68345 -4.33637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11302 -0.01679 -1.00000 - 85 2002 3 18 0 6 42 519 4.7965 194.41120 958.45655 870.93037 -36.32965 41.27584 -4.59872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11232 -0.01679 -1.00000 - 87 2002 3 18 0 6 52 112 4.7966 194.39220 962.17010 871.01957 -38.25378 44.53074 -4.85875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11162 -0.01679 -1.00000 - 89 2002 3 18 0 7 1 705 4.7964 194.37349 962.82201 871.09597 -36.16994 45.86570 -5.11355 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11093 -0.01679 -1.00000 - 91 2002 3 18 0 7 11 297 4.7960 194.35605 965.45326 871.18017 -38.93539 49.42906 -5.35697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.11023 -0.01679 -1.00000 - 93 2002 3 18 0 7 20 889 4.7959 194.33841 965.46042 871.31222 -36.05168 53.91518 -5.58041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10953 -0.01679 -1.00000 - 95 2002 3 18 0 7 30 480 4.7957 194.32687 968.97814 871.54654 -37.75412 56.85365 -5.78376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10883 -0.01678 -1.00000 - 97 2002 3 18 0 7 40 71 4.7956 194.31507 968.10629 871.94599 -35.38731 59.12317 -5.94598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10814 -0.01678 -1.00000 - 100 2002 3 18 0 7 54 457 4.7952 194.29765 970.19858 872.97606 -34.51581 62.61859 -6.07938 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10709 -0.01678 -1.00000 - 102 2002 3 18 0 8 4 47 4.7948 194.28976 971.92856 874.00024 -33.45954 69.69819 -6.06436 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10639 -0.01678 -1.00000 - 104 2002 3 18 0 8 13 636 4.7946 194.28008 970.89755 875.29132 -34.40447 68.46138 -5.95827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10569 -0.01678 -1.00000 - 106 2002 3 18 0 8 23 226 4.7946 194.26945 972.14707 876.80322 -36.08619 75.42765 -5.73136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10500 -0.01678 -1.00000 - 108 2002 3 18 0 8 32 815 4.7948 194.26074 970.94879 878.45078 -36.96037 75.07535 -5.38852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10430 -0.01678 -1.00000 - 110 2002 3 18 0 8 42 405 4.7950 194.25253 970.96994 880.12152 -37.56172 83.01333 -4.90961 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10360 -0.01678 -1.00000 - 112 2002 3 18 0 8 51 995 4.7951 194.24372 970.23381 881.68455 -38.00901 81.95181 -4.32603 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10290 -0.01678 -1.00000 - 114 2002 3 18 0 9 1 585 4.7952 194.23209 969.11360 883.01420 -39.04797 88.65947 -3.62285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10221 -0.01678 -1.00000 - 116 2002 3 18 0 9 11 176 4.7953 194.22003 968.65203 883.99633 -38.80534 88.17412 -2.82859 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10151 -0.01678 -1.00000 - 118 2002 3 18 0 9 20 767 4.7955 194.20691 968.44413 884.54944 -41.01047 95.59486 -1.93969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10081 -0.01678 -1.00000 - 120 2002 3 18 0 9 30 358 4.7959 194.19374 968.67973 884.62576 -42.84615 95.49609 -1.00476 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.10011 -0.01677 -1.00000 - 123 2002 3 18 0 9 44 747 4.7965 194.17404 969.54264 883.84004 -45.77399 102.94546 0.46505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09907 -0.01677 -1.00000 - 125 2002 3 18 0 9 54 341 4.7967 194.16025 969.77038 882.76470 -47.36497 103.32153 1.45669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09837 -0.01677 -1.00000 - 127 2002 3 18 0 10 3 934 4.7969 194.14272 968.39924 881.32099 -47.44615 110.13777 2.45195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09767 -0.01677 -1.00000 - 129 2002 3 18 0 10 13 528 4.7969 194.12705 965.55699 879.59186 -45.63109 109.13394 3.42473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09698 -0.01677 -1.00000 - 131 2002 3 18 0 10 23 122 4.7969 194.11353 961.44217 877.66796 -45.88817 117.07942 4.37288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09628 -0.01677 -1.00000 - 133 2002 3 18 0 10 32 716 4.7970 194.09810 956.29190 875.64230 -47.85447 115.88347 5.26646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09558 -0.01677 -1.00000 - 135 2002 3 18 0 10 42 310 4.7972 194.08312 950.37850 873.60519 -52.17845 124.65833 6.10789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09488 -0.01677 -1.00000 - 137 2002 3 18 0 10 51 905 4.7973 194.06756 943.99408 871.64616 -53.87900 123.22217 6.86387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09418 -0.01677 -1.00000 - 139 2002 3 18 0 11 1 499 4.7973 194.05391 939.95819 869.84420 -57.74711 130.71966 7.54085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09349 -0.01677 -1.00000 - 141 2002 3 18 0 11 11 94 4.7973 194.04059 941.35376 868.26759 -60.24540 130.05008 8.12684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09279 -0.01677 -1.00000 - 143 2002 3 18 0 11 20 688 4.7972 194.02678 942.47735 866.96899 -63.07165 134.66780 8.66568 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09209 -0.01676 -1.00000 - 145 2002 3 18 0 11 30 283 4.7971 194.01386 942.90623 865.98508 -66.36500 134.54996 9.17549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09139 -0.01676 -1.00000 - 148 2002 3 18 0 11 44 674 4.7969 193.99639 943.73342 865.12002 -70.71594 140.17284 9.99141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.09035 -0.01676 -1.00000 - 150 2002 3 18 0 11 54 268 4.7970 193.98393 944.74340 864.95307 -73.90217 140.36734 10.58858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08965 -0.01676 -1.00000 - 152 2002 3 18 0 12 3 862 4.7971 193.97247 945.04529 865.08003 -76.66201 148.36255 11.27231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08895 -0.01676 -1.00000 - 154 2002 3 18 0 12 13 456 4.7972 193.96107 944.85443 865.45920 -81.70735 155.45357 12.04622 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08825 -0.01676 -1.00000 - 156 2002 3 18 0 12 23 50 4.7972 193.94938 944.76161 866.01313 -83.97070 163.65472 12.81904 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08756 -0.01676 -1.00000 - 158 2002 3 18 0 12 32 645 4.7973 193.93732 944.52298 866.64252 -91.34429 168.60618 13.40260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08686 -0.01676 -1.00000 - 160 2002 3 18 0 12 42 240 4.7974 193.92539 944.35950 867.24373 -95.26648 183.84890 13.53284 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08616 -0.01676 -1.00000 - 162 2002 3 18 0 12 51 834 4.7974 193.91387 943.37070 867.74937 -100.71986 206.84517 12.93484 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08546 -0.01676 -1.00000 - 164 2002 3 18 0 13 1 429 4.7975 193.90141 942.84221 868.13914 -106.77909 231.46934 11.49127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08477 -0.01676 -1.00000 - 166 2002 3 18 0 13 11 25 4.7976 193.88895 941.55220 868.41815 -108.32908 254.94209 9.21128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08407 -0.01676 -1.00000 - 168 2002 3 18 0 13 20 620 4.7978 193.87626 940.40574 868.63204 -114.77422 258.36620 6.20897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08337 -0.01675 -1.00000 - 170 2002 3 18 0 13 30 216 4.7980 193.86358 938.89050 868.83977 -119.01166 244.44704 2.71260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08267 -0.01675 -1.00000 - 173 2002 3 18 0 13 44 611 4.7983 193.84334 936.03132 869.25023 -125.87173 199.18396 -2.98190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08163 -0.01675 -1.00000 - 175 2002 3 18 0 13 54 207 4.7984 193.82964 934.39093 869.59930 -131.11867 160.37996 -6.78472 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08093 -0.01675 -1.00000 - 177 2002 3 18 0 14 3 804 4.7984 193.81630 933.66880 870.00038 -130.23756 117.39412 -10.51190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.08023 -0.01675 -1.00000 - 179 2002 3 18 0 14 13 401 4.7984 193.80322 934.31546 870.44526 -134.10781 71.72417 -14.14942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07953 -0.01675 -1.00000 - 181 2002 3 18 0 14 22 998 4.7985 193.78947 934.71256 870.92526 -134.52690 24.41809 -17.68306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07883 -0.01675 -1.00000 - 183 2002 3 18 0 14 32 595 4.7986 193.77562 935.34761 871.42507 -127.94138 20.72382 -21.07179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07814 -0.01675 -1.00000 - 185 2002 3 18 0 14 42 192 4.7987 193.76230 935.69294 871.90120 -134.04053 24.81588 -24.26730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07744 -0.01675 -1.00000 - 187 2002 3 18 0 14 51 790 4.7988 193.74890 936.25218 872.37519 -155.40437 28.96907 -27.23644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07674 -0.01675 -1.00000 - 189 2002 3 18 0 15 1 388 4.7989 193.73587 936.68258 872.87655 -194.29533 29.87033 -29.91873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07604 -0.01675 -1.00000 - 191 2002 3 18 0 15 10 985 4.7988 193.72319 937.16216 873.43932 -230.62120 35.35370 -32.25912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07534 -0.01675 -1.00000 - 193 2002 3 18 0 15 20 583 4.7988 193.71035 937.64629 874.10601 -263.45639 48.15886 -34.24198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07465 -0.01674 -1.00000 - 195 2002 3 18 0 15 30 180 4.7988 193.69783 939.31281 874.92001 -292.52034 56.39524 -35.83079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07395 -0.01674 -1.00000 - 198 2002 3 18 0 15 44 577 4.7989 193.67952 943.69957 876.44604 -327.01092 53.96576 -37.36305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07290 -0.01674 -1.00000 - 200 2002 3 18 0 15 54 175 4.7990 193.66760 947.07993 877.63942 -341.58852 45.11965 -37.71120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07220 -0.01674 -1.00000 - 202 2002 3 18 0 16 3 773 4.7991 193.65561 950.67051 878.92351 -346.35659 32.20792 -37.39628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07151 -0.01674 -1.00000 - 204 2002 3 18 0 16 13 371 4.7992 193.64334 954.17374 880.21097 -355.24053 16.86403 -36.38426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07081 -0.01674 -1.00000 - 206 2002 3 18 0 16 22 970 4.7992 193.63103 957.34626 881.41742 -360.98984 6.59108 -34.63857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.07011 -0.01674 -1.00000 - 208 2002 3 18 0 16 32 568 4.7992 193.61867 960.05928 882.49152 -351.59826 6.70850 -32.02031 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06941 -0.01674 -1.00000 - 210 2002 3 18 0 16 42 167 4.7993 193.60629 962.15886 883.38211 -321.66752 10.16336 -28.43637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06871 -0.01674 -1.00000 - 212 2002 3 18 0 16 51 765 4.7994 193.59409 963.27110 883.99314 -270.25729 13.04775 -23.92636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06801 -0.01674 -1.00000 - 214 2002 3 18 0 17 1 364 4.7995 193.58166 963.16804 884.24496 -195.93129 16.48150 -18.66126 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06732 -0.01674 -1.00000 - 216 2002 3 18 0 17 10 963 4.7996 193.56886 961.84992 884.09717 -99.84098 20.36058 -12.95028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06662 -0.01673 -1.00000 - 218 2002 3 18 0 17 20 563 4.7998 193.55598 959.41190 883.52433 -68.61080 34.87115 -7.13856 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06592 -0.01673 -1.00000 - 220 2002 3 18 0 17 30 163 4.7999 193.54321 956.66454 882.59030 -71.27468 106.17827 -1.72072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06522 -0.01673 -1.00000 - 223 2002 3 18 0 17 44 562 4.8000 193.52396 953.03891 880.82464 -69.61777 208.83437 4.68237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06418 -0.01673 -1.00000 - 225 2002 3 18 0 17 54 162 4.8000 193.51084 950.36828 879.59332 -64.54484 236.87508 7.63811 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06348 -0.01673 -1.00000 - 227 2002 3 18 0 18 3 763 4.8001 193.49776 947.57302 878.43350 -56.40305 241.35942 9.81867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06278 -0.01673 -1.00000 - 229 2002 3 18 0 18 13 363 4.8002 193.48490 945.01020 877.37770 -45.58417 230.50122 11.49844 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06208 -0.01673 -1.00000 - 231 2002 3 18 0 18 22 963 4.8003 193.47201 942.49802 876.43115 -32.69065 211.59991 12.87311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06138 -0.01673 -1.00000 - 233 2002 3 18 0 18 32 564 4.8004 193.45907 940.40002 875.57980 -18.24650 188.87928 14.04064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.06068 -0.01673 -1.00000 - 235 2002 3 18 0 18 42 165 4.8005 193.44623 938.97998 874.81085 -17.94739 165.07404 15.04386 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05999 -0.01673 -1.00000 - 237 2002 3 18 0 18 51 766 4.8005 193.43359 938.48680 874.10660 -21.25557 142.30109 15.96809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05929 -0.01673 -1.00000 - 239 2002 3 18 0 19 1 367 4.8005 193.42113 938.60654 873.46420 -23.72309 122.24360 16.84175 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05859 -0.01673 -1.00000 - 241 2002 3 18 0 19 10 968 4.8005 193.40858 939.03547 872.88564 -25.30765 109.29166 17.64679 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05789 -0.01672 -1.00000 - 243 2002 3 18 0 19 20 569 4.8006 193.39613 939.33052 872.37181 -25.98554 110.47707 18.39505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05719 -0.01672 -1.00000 - 245 2002 3 18 0 19 30 170 4.8006 193.38397 939.76100 871.93124 -25.84379 117.57264 19.06018 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05650 -0.01672 -1.00000 - 248 2002 3 18 0 19 44 573 4.8008 193.36578 940.03288 871.41014 -24.60389 121.48570 19.91680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05545 -0.01672 -1.00000 - 250 2002 3 18 0 19 54 174 4.8008 193.35346 939.86759 871.14164 -22.69382 120.01625 20.40257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05475 -0.01672 -1.00000 - 252 2002 3 18 0 20 3 776 4.8009 193.34139 939.44160 870.90833 -19.92155 115.68950 20.78984 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05405 -0.01672 -1.00000 - 254 2002 3 18 0 20 13 378 4.8010 193.32950 938.79266 870.68113 -16.32587 109.44719 21.04394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05335 -0.01672 -1.00000 - 256 2002 3 18 0 20 22 980 4.8010 193.31743 938.32244 870.43641 -11.95718 102.55536 21.11868 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05266 -0.01672 -1.00000 - 258 2002 3 18 0 20 32 582 4.8010 193.30521 937.63849 870.16305 -9.06692 95.03818 20.96956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05196 -0.01672 -1.00000 - 260 2002 3 18 0 20 42 184 4.8011 193.29314 936.76169 869.85377 -7.65137 96.05290 20.56846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05126 -0.01672 -1.00000 - 262 2002 3 18 0 20 51 786 4.8012 193.28111 936.22146 869.51445 -7.98966 95.18428 19.93348 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.05056 -0.01672 -1.00000 - 264 2002 3 18 0 21 1 389 4.8013 193.26888 935.68538 869.15322 -8.13109 96.11751 19.08940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04986 -0.01671 -1.00000 - 266 2002 3 18 0 21 10 992 4.8015 193.25655 935.23805 868.78010 -8.08790 96.41425 18.03572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04916 -0.01671 -1.00000 - 268 2002 3 18 0 21 20 595 4.8015 193.24421 935.07645 868.40742 -7.85075 93.08287 16.78304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04847 -0.01671 -1.00000 - 270 2002 3 18 0 21 30 198 4.8016 193.23175 934.82690 868.05240 -7.61983 86.21509 15.37333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04777 -0.01671 -1.00000 - 273 2002 3 18 0 21 44 603 4.8017 193.21297 934.58837 867.58763 -6.83655 70.53589 13.04232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04672 -0.01671 -1.00000 - 275 2002 3 18 0 21 54 207 4.8018 193.20053 934.44862 867.33970 -6.00486 57.42919 11.39026 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04602 -0.01671 -1.00000 - 277 2002 3 18 0 22 3 810 4.8018 193.18813 934.19611 867.14958 -4.92876 43.15187 9.69395 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04532 -0.01671 -1.00000 - 279 2002 3 18 0 22 13 414 4.8019 193.17571 933.83253 867.01794 -3.99289 32.10812 7.97749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04462 -0.01671 -1.00000 - 281 2002 3 18 0 22 23 18 4.8020 193.16327 933.35041 866.94320 -3.22317 28.22354 6.26303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04393 -0.01671 -1.00000 - 283 2002 3 18 0 22 32 622 4.8021 193.15085 932.85569 866.92535 -4.47378 24.40158 4.56646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04323 -0.01671 -1.00000 - 285 2002 3 18 0 22 42 227 4.8022 193.13841 932.41649 866.95821 -15.14874 20.81951 2.89752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04253 -0.01671 -1.00000 - 287 2002 3 18 0 22 51 831 4.8022 193.12596 931.90139 867.03933 -25.55655 16.95945 1.26435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04183 -0.01671 -1.00000 - 289 2002 3 18 0 23 1 435 4.8023 193.11362 931.31171 867.16568 -36.82683 14.23039 -0.31536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04113 -0.01670 -1.00000 - 291 2002 3 18 0 23 11 40 4.8023 193.10139 930.65710 867.33200 -46.48750 12.62788 -1.81750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.04043 -0.01670 -1.00000 - 293 2002 3 18 0 23 20 645 4.8024 193.08912 929.95103 867.53403 -54.07252 11.15698 -3.22399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03973 -0.01670 -1.00000 - 295 2002 3 18 0 23 30 250 4.8025 193.07685 929.33717 867.76375 -59.45136 10.68978 -4.52656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03904 -0.01670 -1.00000 - 298 2002 3 18 0 23 44 658 4.8026 193.05849 928.55020 868.14215 -63.36171 9.80268 -6.25940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03799 -0.01670 -1.00000 - 300 2002 3 18 0 23 54 263 4.8026 193.04627 928.01611 868.40496 -63.42327 8.81508 -7.26424 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03729 -0.01670 -1.00000 - 302 2002 3 18 0 24 3 868 4.8027 193.03414 927.62783 868.66737 -61.75467 7.55647 -8.15304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03659 -0.01670 -1.00000 - 304 2002 3 18 0 24 13 474 4.8028 193.02199 928.16724 868.92339 -58.60820 6.10597 -8.93383 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03589 -0.01670 -1.00000 - 306 2002 3 18 0 24 23 79 4.8029 193.00982 928.63067 869.16719 -54.37484 5.01574 -9.61673 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03519 -0.01670 -1.00000 - 308 2002 3 18 0 24 32 685 4.8029 192.99770 929.01703 869.39667 -49.52658 4.07296 -10.21479 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03450 -0.01670 -1.00000 - 310 2002 3 18 0 24 42 291 4.8030 192.98552 929.45133 869.61200 -44.58987 3.05248 -10.74407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03380 -0.01670 -1.00000 - 312 2002 3 18 0 24 51 897 4.8031 192.97320 929.92667 869.81264 -41.12891 2.59584 -11.21594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03310 -0.01669 -1.00000 - 314 2002 3 18 0 25 1 504 4.8032 192.96087 930.37203 870.00221 -43.03640 2.16181 -11.63213 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03240 -0.01669 -1.00000 - 316 2002 3 18 0 25 11 110 4.8033 192.94862 930.80455 870.18280 -44.16668 2.03835 -11.99687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03170 -0.01669 -1.00000 - 318 2002 3 18 0 25 20 717 4.8033 192.93641 931.17776 870.35570 -44.55142 1.81294 -12.31132 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03100 -0.01669 -1.00000 - 320 2002 3 18 0 25 30 323 4.8034 192.92422 931.49721 870.52360 -44.28028 1.49389 -12.57734 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.03030 -0.01669 -1.00000 - 323 2002 3 18 0 25 44 734 4.8035 192.90604 931.91668 870.77080 -42.74778 0.95463 -12.89441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02926 -0.01669 -1.00000 - 325 2002 3 18 0 25 54 341 4.8035 192.89415 932.18614 870.93786 -41.23427 0.66317 -13.04719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02856 -0.01669 -1.00000 - 327 2002 3 18 0 26 3 948 4.8035 192.88250 932.42988 871.10933 -39.29944 0.32574 -13.14942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02786 -0.01669 -1.00000 - 329 2002 3 18 0 26 13 555 4.8035 192.87098 932.66616 871.28587 -37.00877 0.00000 -13.19578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02716 -0.01669 -1.00000 - 331 2002 3 18 0 26 23 162 4.8035 192.85960 932.94946 871.46659 -34.45717 0.00000 -13.18172 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02646 -0.01669 -1.00000 - 333 2002 3 18 0 26 32 769 4.8036 192.84840 933.21411 871.64967 -34.76722 0.00000 -13.10194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02576 -0.01669 -1.00000 - 335 2002 3 18 0 26 42 376 4.8036 192.83731 933.53034 871.83329 -35.58539 0.00000 -12.95371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02506 -0.01669 -1.00000 - 337 2002 3 18 0 26 51 983 4.8037 192.82620 933.82792 872.01431 -37.00254 0.00000 -12.73723 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02437 -0.01668 -1.00000 - 339 2002 3 18 0 27 1 591 4.8037 192.81493 934.08970 872.18871 -38.00716 0.00000 -12.44669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02367 -0.01668 -1.00000 - 341 2002 3 18 0 27 11 199 4.8039 192.80339 934.36293 872.35381 -38.31247 0.00000 -12.08300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02297 -0.01668 -1.00000 - 343 2002 3 18 0 27 20 806 4.8040 192.79153 934.56591 872.50594 -37.83903 0.00000 -11.64871 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02227 -0.01668 -1.00000 - 345 2002 3 18 0 27 30 415 4.8042 192.77929 934.69539 872.64174 -36.53640 0.00000 -11.14547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02157 -0.01668 -1.00000 - 347 2002 3 18 0 27 40 23 4.8044 192.76671 934.75093 872.75744 -34.45832 0.00000 -10.57770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.02087 -0.01668 -1.00000 - 350 2002 3 18 0 27 54 437 4.8046 192.74722 934.70050 872.88675 -30.01034 0.00000 -9.62132 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01982 -0.01668 -1.00000 - 352 2002 3 18 0 28 4 46 4.8047 192.73387 934.58493 872.93968 -26.30555 0.00000 -8.92678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01913 -0.01668 -1.00000 - 354 2002 3 18 0 28 13 656 4.8048 192.72058 934.41270 872.96430 -22.20864 0.00000 -8.20230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01843 -0.01668 -1.00000 - 356 2002 3 18 0 28 23 266 4.8049 192.70733 934.22903 872.96145 -17.97911 0.00000 -7.45955 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01773 -0.01668 -1.00000 - 358 2002 3 18 0 28 32 876 4.8050 192.69388 934.13648 872.93080 -13.78701 0.00000 -6.70985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01703 -0.01668 -1.00000 - 360 2002 3 18 0 28 42 486 4.8050 192.68082 933.99399 872.87444 -10.05584 0.00000 -5.96364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01633 -0.01667 -1.00000 - 362 2002 3 18 0 28 52 96 4.8051 192.66797 933.80379 872.79483 -9.49252 0.00000 -5.22458 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01563 -0.01667 -1.00000 - 364 2002 3 18 0 29 1 706 4.8051 192.65552 933.56895 872.69455 -9.18387 0.00000 -4.49581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01493 -0.01667 -1.00000 - 366 2002 3 18 0 29 11 316 4.8051 192.64340 933.29222 872.57627 -8.75139 1.06184 -3.78081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01423 -0.01667 -1.00000 - 368 2002 3 18 0 29 20 926 4.8051 192.63150 932.98259 872.44287 -8.20648 3.75024 -3.08403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01353 -0.01667 -1.00000 - 370 2002 3 18 0 29 30 536 4.8051 192.61994 932.64837 872.29791 -7.56620 6.26468 -2.41192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01284 -0.01667 -1.00000 - 372 2002 3 18 0 29 40 147 4.8050 192.60860 932.53332 872.14492 -6.84984 8.09525 -1.76875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01214 -0.01667 -1.00000 - 375 2002 3 18 0 29 54 562 4.8050 192.59215 932.34516 871.90990 -5.67659 9.96095 -0.85783 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01109 -0.01667 -1.00000 - 377 2002 3 18 0 30 4 172 4.8050 192.58157 932.25078 871.75369 -4.85526 10.69261 -0.28710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.01039 -0.01667 -1.00000 - 379 2002 3 18 0 30 13 782 4.8051 192.57106 932.13575 871.60069 -4.04838 11.28758 0.25637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00969 -0.01667 -1.00000 - 381 2002 3 18 0 30 23 392 4.8051 192.56070 932.00032 871.45190 -3.24301 11.77867 0.76980 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00899 -0.01667 -1.00000 - 383 2002 3 18 0 30 33 2 4.8051 192.55030 931.84899 871.30823 -2.74577 12.25941 1.25474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00829 -0.01667 -1.00000 - 385 2002 3 18 0 30 42 613 4.8052 192.53969 931.68540 871.17025 -2.73281 12.87845 1.70926 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00759 -0.01666 -1.00000 - 387 2002 3 18 0 30 52 223 4.8053 192.52905 931.54710 871.03805 -2.69620 13.70397 2.13183 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00690 -0.01666 -1.00000 - 389 2002 3 18 0 31 1 834 4.8054 192.51824 931.40063 870.91122 -2.62631 14.42953 2.52100 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00620 -0.01666 -1.00000 - 391 2002 3 18 0 31 11 445 4.8055 192.50703 931.27299 870.78927 -2.51637 14.99904 2.87602 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00550 -0.01666 -1.00000 - 393 2002 3 18 0 31 21 56 4.8056 192.49556 931.15672 870.67102 -2.36450 15.62457 3.19507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00480 -0.01666 -1.00000 - 395 2002 3 18 0 31 30 667 4.8057 192.48388 931.02545 870.55601 -2.17468 16.28779 3.47796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00410 -0.01666 -1.00000 - 397 2002 3 18 0 31 40 279 4.8059 192.47185 930.89044 870.44298 -1.95629 17.01344 3.72187 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00340 -0.01666 -1.00000 - 400 2002 3 18 0 31 54 697 4.8061 192.45331 930.61062 870.27402 -1.60416 18.04546 4.01248 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00235 -0.01666 -1.00000 - 402 2002 3 18 0 32 4 309 4.8062 192.44074 930.37012 870.15956 -1.46224 18.57339 4.15364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00165 -0.01666 -1.00000 - 404 2002 3 18 0 32 13 922 4.8063 192.42798 930.08760 870.04211 -1.31909 18.88844 4.25299 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00095 -0.01666 -1.00000 - 406 2002 3 18 0 32 23 535 4.8064 192.41489 929.79573 869.92076 -1.16632 18.99604 4.30913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.00025 -0.01666 -1.00000 - 408 2002 3 18 0 32 33 148 4.8065 192.40183 929.47508 869.79467 -0.99385 18.77526 4.32326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99956 -0.01665 -1.00000 - 410 2002 3 18 0 32 42 761 4.8066 192.38890 929.19741 869.66328 -0.79587 18.25546 4.29619 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99886 -0.01665 -1.00000 - 412 2002 3 18 0 32 52 374 4.8067 192.37600 929.01071 869.52675 -0.58062 17.43674 4.23044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99816 -0.01665 -1.00000 - 414 2002 3 18 0 33 1 988 4.8068 192.36316 928.86679 869.38508 -0.39220 16.30788 4.12776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99746 -0.01665 -1.00000 - 416 2002 3 18 0 33 11 602 4.8068 192.35048 928.74207 869.23905 -0.23725 14.89999 3.99136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99676 -0.01665 -1.00000 - 418 2002 3 18 0 33 21 215 4.8069 192.33811 928.62870 869.08987 -0.24552 13.24416 3.82273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99606 -0.01665 -1.00000 - 420 2002 3 18 0 33 30 829 4.8069 192.32595 928.50467 868.93856 -0.25633 11.39769 3.62657 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99536 -0.01665 -1.00000 - 422 2002 3 18 0 33 40 443 4.8069 192.31401 928.36515 868.78687 -0.26856 9.54258 3.41166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99466 -0.01665 -1.00000 - 424 2002 3 18 0 33 50 56 4.8069 192.30249 928.20621 868.63657 -0.28191 8.46977 3.18106 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99396 -0.01665 -1.00000 - 427 2002 3 18 0 34 4 477 4.8069 192.28555 927.93410 868.41762 -0.31601 8.21995 2.81003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99291 -0.01665 -1.00000 - 429 2002 3 18 0 34 14 91 4.8069 192.27465 927.73655 868.27851 -0.34831 8.18113 2.54851 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99221 -0.01665 -1.00000 - 431 2002 3 18 0 34 23 705 4.8069 192.26392 927.53177 868.14697 -0.38074 8.24281 2.27745 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99152 -0.01665 -1.00000 - 433 2002 3 18 0 34 33 318 4.8069 192.25315 927.32618 868.02499 -0.41489 8.02339 1.99780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99082 -0.01664 -1.00000 - 435 2002 3 18 0 34 42 932 4.8070 192.24243 927.12403 867.91350 -0.80758 7.64284 1.71160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.99012 -0.01664 -1.00000 - 437 2002 3 18 0 34 52 546 4.8070 192.23169 926.92730 867.81283 -1.76440 7.26056 1.42374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98942 -0.01664 -1.00000 - 439 2002 3 18 0 35 2 160 4.8071 192.22073 926.73807 867.72319 -2.34321 6.46242 1.13432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98872 -0.01664 -1.00000 - 441 2002 3 18 0 35 11 775 4.8072 192.20964 926.79175 867.64418 -2.53418 5.59801 0.84404 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98802 -0.01664 -1.00000 - 443 2002 3 18 0 35 21 389 4.8073 192.19836 926.86567 867.57524 -2.38811 4.54798 0.55332 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98732 -0.01664 -1.00000 - 445 2002 3 18 0 35 31 4 4.8075 192.18680 926.97962 867.51590 -1.93245 3.54958 0.25908 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98662 -0.01664 -1.00000 - 447 2002 3 18 0 35 40 619 4.8076 192.17503 927.09847 867.46635 -2.08274 2.59360 -0.03562 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98592 -0.01664 -1.00000 - 449 2002 3 18 0 35 50 235 4.8077 192.16308 927.19546 867.42633 -2.67648 1.68748 -0.33423 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98522 -0.01664 -1.00000 - 452 2002 3 18 0 36 4 658 4.8079 192.14484 927.37136 867.38472 -3.83277 1.59179 -0.79145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98417 -0.01664 -1.00000 - 454 2002 3 18 0 36 14 274 4.8079 192.13256 927.46971 867.36963 -4.80435 1.68653 -1.10351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98347 -0.01664 -1.00000 - 456 2002 3 18 0 36 23 890 4.8080 192.12027 927.60127 867.36416 -5.95798 2.39739 -1.42343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98278 -0.01663 -1.00000 - 458 2002 3 18 0 36 33 506 4.8081 192.10802 927.69834 867.36747 -7.05255 2.87994 -1.75231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98208 -0.01663 -1.00000 - 460 2002 3 18 0 36 43 122 4.8082 192.09586 927.80356 867.37881 -7.93549 3.17621 -2.09006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98138 -0.01663 -1.00000 - 462 2002 3 18 0 36 52 739 4.8082 192.08379 927.88056 867.39641 -8.90898 3.13010 -2.43818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.98068 -0.01663 -1.00000 - 464 2002 3 18 0 37 2 355 4.8082 192.07188 927.99167 867.41834 -9.81919 2.83634 -2.79309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97998 -0.01663 -1.00000 - 466 2002 3 18 0 37 11 972 4.8082 192.06020 928.07076 867.44177 -10.57616 2.19025 -3.15523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97928 -0.01663 -1.00000 - 468 2002 3 18 0 37 21 588 4.8083 192.04874 928.15330 867.46384 -11.02241 1.17323 -3.52125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97858 -0.01663 -1.00000 - 470 2002 3 18 0 37 31 205 4.8083 192.03747 928.19628 867.48141 -11.35474 0.27398 -3.88957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97788 -0.01663 -1.00000 - 472 2002 3 18 0 37 40 821 4.8083 192.02637 928.22097 867.49140 -11.61654 0.00000 -4.25939 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97718 -0.01663 -1.00000 - 474 2002 3 18 0 37 50 438 4.8083 192.01539 928.20818 867.49122 -11.65491 0.00000 -4.62489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97648 -0.01663 -1.00000 - 476 2002 3 18 0 38 0 55 4.8084 192.00451 928.16203 867.47730 -11.60386 0.00000 -4.98181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97578 -0.01663 -1.00000 - 479 2002 3 18 0 38 14 480 4.8084 191.98832 928.05922 867.42595 -12.54702 0.00000 -5.48578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97473 -0.01663 -1.00000 - 481 2002 3 18 0 38 24 97 4.8085 191.97748 927.98283 867.36876 -14.21432 0.00000 -5.79486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97403 -0.01662 -1.00000 - 483 2002 3 18 0 38 33 714 4.8086 191.96658 927.90148 867.29228 -15.75390 0.00000 -6.08061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97333 -0.01662 -1.00000 - 485 2002 3 18 0 38 43 331 4.8086 191.95560 927.84170 867.19700 -17.08126 0.00000 -6.34400 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97264 -0.01662 -1.00000 - 487 2002 3 18 0 38 52 949 4.8087 191.94449 927.71895 867.08507 -18.14666 0.00000 -6.58382 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97194 -0.01662 -1.00000 - 489 2002 3 18 0 39 2 566 4.8088 191.93326 927.51108 866.95992 -19.03493 0.00000 -6.80236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97124 -0.01662 -1.00000 - 491 2002 3 18 0 39 12 184 4.8089 191.92192 927.22126 866.82569 -20.38800 0.00000 -6.99666 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.97054 -0.01662 -1.00000 - 493 2002 3 18 0 39 21 802 4.8090 191.91044 926.85405 866.68656 -21.33637 0.00000 -7.16490 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96984 -0.01662 -1.00000 - 495 2002 3 18 0 39 31 420 4.8091 191.89884 926.41900 866.54780 -21.82375 0.00000 -7.30632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96914 -0.01662 -1.00000 - 497 2002 3 18 0 39 41 38 4.8092 191.88711 925.92802 866.41456 -21.85201 0.00000 -7.41787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96844 -0.01662 -1.00000 - 499 2002 3 18 0 39 50 657 4.8093 191.87530 925.44198 866.29206 -21.44967 0.00000 -7.49971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96774 -0.01662 -1.00000 - 501 2002 3 18 0 40 0 276 4.8094 191.86345 925.91623 866.18603 -20.66630 0.00000 -7.55243 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96704 -0.01662 -1.00000 - 504 2002 3 18 0 40 14 704 4.8095 191.84565 926.60667 866.06942 -18.89146 0.00000 -7.57757 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96599 -0.01661 -1.00000 - 506 2002 3 18 0 40 24 323 4.8095 191.83380 927.08792 866.02710 -17.38518 0.00000 -7.56189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96529 -0.01661 -1.00000 - 508 2002 3 18 0 40 33 942 4.8096 191.82202 927.57481 866.01762 -17.37301 0.00000 -7.52092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96459 -0.01661 -1.00000 - 510 2002 3 18 0 40 43 561 4.8096 191.81031 928.01613 866.04363 -18.09211 0.00000 -7.45610 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96389 -0.01661 -1.00000 - 512 2002 3 18 0 40 53 181 4.8097 191.79870 928.39734 866.10649 -18.63547 0.00000 -7.36802 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96319 -0.01661 -1.00000 - 514 2002 3 18 0 41 2 800 4.8097 191.78723 928.73800 866.20633 -19.59338 0.00000 -7.26039 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96249 -0.01661 -1.00000 - 516 2002 3 18 0 41 12 420 4.8098 191.77588 929.10897 866.34259 -20.47223 0.00000 -7.13804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96179 -0.01661 -1.00000 - 518 2002 3 18 0 41 22 39 4.8098 191.76463 929.40125 866.51268 -21.61984 0.00000 -7.00302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96109 -0.01661 -1.00000 - 520 2002 3 18 0 41 31 659 4.8098 191.75345 929.63923 866.71341 -22.53101 0.00000 -6.85640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.96039 -0.01661 -1.00000 - 522 2002 3 18 0 41 41 279 4.8099 191.74232 929.93090 866.93993 -23.75911 0.00000 -6.69966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95969 -0.01661 -1.00000 - 524 2002 3 18 0 41 50 898 4.8099 191.73123 930.13333 867.18681 -24.64184 0.97978 -6.53372 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95899 -0.01661 -1.00000 - 526 2002 3 18 0 42 0 518 4.8100 191.72019 930.41543 867.44772 -25.18555 2.40544 -6.36430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95830 -0.01661 -1.00000 - 528 2002 3 18 0 42 10 138 4.8100 191.70917 930.60820 867.71670 -25.97728 3.24419 -6.19367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95760 -0.01661 -1.00000 - 531 2002 3 18 0 42 24 569 4.8101 191.69263 930.96908 868.12174 -26.11977 3.31655 -5.93802 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95655 -0.01660 -1.00000 - 533 2002 3 18 0 42 34 189 4.8102 191.68155 931.14605 868.38350 -26.01480 2.47908 -5.76663 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95585 -0.01660 -1.00000 - 535 2002 3 18 0 42 43 810 4.8103 191.67040 931.34032 868.63151 -25.81920 2.29068 -5.59071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95515 -0.01660 -1.00000 - 537 2002 3 18 0 42 53 430 4.8104 191.65920 931.47428 868.85993 -25.15878 2.82191 -5.40734 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95445 -0.01660 -1.00000 - 539 2002 3 18 0 43 3 51 4.8104 191.64794 931.63175 869.06374 -24.35179 3.18164 -5.21317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95375 -0.01660 -1.00000 - 541 2002 3 18 0 43 12 672 4.8105 191.63662 931.77337 869.23905 -23.77529 3.74277 -5.00201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95305 -0.01660 -1.00000 - 543 2002 3 18 0 43 22 293 4.8106 191.62525 931.91761 869.38277 -22.63704 4.36959 -4.76758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95235 -0.01660 -1.00000 - 545 2002 3 18 0 43 31 915 4.8107 191.61385 932.11392 869.49125 -23.39952 5.09770 -4.50148 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95165 -0.01660 -1.00000 - 547 2002 3 18 0 43 41 536 4.8107 191.60240 932.38221 869.56304 -24.86137 5.97677 -4.19207 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95095 -0.01660 -1.00000 - 549 2002 3 18 0 43 51 157 4.8108 191.59094 932.71651 869.59727 -28.14156 7.28354 -3.82997 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.95025 -0.01660 -1.00000 - 551 2002 3 18 0 44 0 779 4.8109 191.57948 933.16567 869.59411 -30.95287 8.78570 -3.41801 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94955 -0.01660 -1.00000 - 553 2002 3 18 0 44 10 401 4.8109 191.56816 933.57667 869.55479 -33.18648 10.38101 -2.95328 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94885 -0.01659 -1.00000 - 555 2002 3 18 0 44 20 23 4.8110 191.55693 933.88493 869.48216 -35.55057 12.20652 -2.43366 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94815 -0.01659 -1.00000 - 558 2002 3 18 0 44 34 456 4.8111 191.54005 934.14877 869.31350 -39.11668 15.59435 -1.54636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94710 -0.01659 -1.00000 - 560 2002 3 18 0 44 44 78 4.8111 191.52880 934.19162 869.16429 -40.10811 17.35118 -0.87857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94640 -0.01659 -1.00000 - 562 2002 3 18 0 44 53 701 4.8112 191.51759 934.12541 868.98625 -39.74616 18.51991 -0.14881 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94570 -0.01659 -1.00000 - 564 2002 3 18 0 45 3 323 4.8113 191.50641 933.94645 868.77906 -37.90846 20.05075 0.63967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94500 -0.01659 -1.00000 - 566 2002 3 18 0 45 12 946 4.8113 191.49526 933.65237 868.54244 -34.54469 21.13498 1.48044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94430 -0.01659 -1.00000 - 568 2002 3 18 0 45 22 568 4.8114 191.48414 933.24094 868.27589 -29.61745 21.71235 2.36055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94360 -0.01659 -1.00000 - 570 2002 3 18 0 45 32 191 4.8114 191.47305 932.71106 867.97861 -23.12950 22.12242 3.26815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94290 -0.01659 -1.00000 - 572 2002 3 18 0 45 41 814 4.8115 191.46201 932.05995 867.64946 -15.19889 22.50358 4.18591 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94220 -0.01659 -1.00000 - 574 2002 3 18 0 45 51 437 4.8115 191.45096 931.28634 867.28749 -6.00512 22.22340 5.09194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94150 -0.01659 -1.00000 - 576 2002 3 18 0 46 1 60 4.8116 191.43990 930.38964 866.89203 -2.22425 22.64019 5.96099 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94080 -0.01659 -1.00000 - 578 2002 3 18 0 46 10 684 4.8116 191.42886 929.38408 866.46781 -2.40655 24.62684 6.76350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.94010 -0.01658 -1.00000 - 580 2002 3 18 0 46 20 307 4.8117 191.41782 928.29220 866.01695 -2.59484 30.95519 7.46342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93940 -0.01658 -1.00000 - 583 2002 3 18 0 46 34 742 4.8118 191.40123 926.51936 865.30285 -2.85884 42.11328 8.28773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93835 -0.01658 -1.00000 - 585 2002 3 18 0 46 44 366 4.8119 191.39016 925.27686 864.81049 -2.99476 48.21081 8.67286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93765 -0.01658 -1.00000 - 587 2002 3 18 0 46 53 990 4.8119 191.37908 924.02472 864.31219 -3.17513 55.70195 8.91404 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93695 -0.01658 -1.00000 - 589 2002 3 18 0 47 3 614 4.8120 191.36797 922.78109 863.81551 -3.33314 61.95371 8.99972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93625 -0.01658 -1.00000 - 591 2002 3 18 0 47 13 238 4.8121 191.35685 921.87894 863.32826 -3.51494 66.22906 8.92367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93555 -0.01658 -1.00000 - 593 2002 3 18 0 47 22 862 4.8121 191.34574 921.22995 862.86006 -3.63802 68.50895 8.69141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93485 -0.01658 -1.00000 - 595 2002 3 18 0 47 32 486 4.8122 191.33461 921.19107 862.41923 -3.76864 68.96931 8.31055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93415 -0.01658 -1.00000 - 597 2002 3 18 0 47 42 111 4.8122 191.32350 921.19892 862.01253 -4.09284 67.78621 7.78973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93345 -0.01658 -1.00000 - 599 2002 3 18 0 47 51 736 4.8123 191.31239 921.22971 861.64565 -4.50301 65.15945 7.14303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93275 -0.01658 -1.00000 - 601 2002 3 18 0 48 1 360 4.8124 191.30129 921.27311 861.32292 -5.35912 61.32367 6.38361 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93205 -0.01657 -1.00000 - 603 2002 3 18 0 48 10 985 4.8124 191.29019 921.32278 861.04746 -6.55330 56.43308 5.52519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93135 -0.01657 -1.00000 - 605 2002 3 18 0 48 20 610 4.8125 191.27911 921.37482 860.82192 -7.78577 50.75547 4.58563 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.93065 -0.01657 -1.00000 - 607 2002 3 18 0 48 30 235 4.8125 191.26805 921.42694 860.64768 -9.05598 44.45931 3.57832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92995 -0.01657 -1.00000 - 610 2002 3 18 0 48 44 673 4.8126 191.25152 921.51589 860.48188 -10.64564 34.26858 1.97477 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92890 -0.01657 -1.00000 - 612 2002 3 18 0 48 54 298 4.8127 191.24053 921.61172 860.43338 -11.44339 27.35596 0.86515 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92820 -0.01657 -1.00000 - 614 2002 3 18 0 49 3 924 4.8127 191.22956 921.70092 860.43250 -12.00877 20.53328 -0.26151 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92750 -0.01657 -1.00000 - 616 2002 3 18 0 49 13 549 4.8128 191.21862 921.78128 860.47637 -12.34141 13.96221 -1.39481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92680 -0.01657 -1.00000 - 618 2002 3 18 0 49 23 175 4.8128 191.20770 921.85152 860.56050 -12.57351 7.57574 -2.52592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92610 -0.01657 -1.00000 - 620 2002 3 18 0 49 32 801 4.8129 191.19679 921.91120 860.68111 -12.60181 1.36954 -3.64556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92540 -0.01657 -1.00000 - 622 2002 3 18 0 49 42 426 4.8130 191.18589 921.96066 860.83461 -12.41231 0.00000 -4.74731 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92470 -0.01657 -1.00000 - 624 2002 3 18 0 49 52 52 4.8130 191.17499 922.00083 861.01629 -12.03475 0.00000 -5.82466 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92400 -0.01657 -1.00000 - 626 2002 3 18 0 50 1 679 4.8131 191.16408 922.03305 861.22161 -16.47137 0.00000 -6.86586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92330 -0.01656 -1.00000 - 628 2002 3 18 0 50 11 305 4.8131 191.15316 922.05890 861.44668 -21.04115 0.00000 -7.86727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92260 -0.01656 -1.00000 - 630 2002 3 18 0 50 20 931 4.8132 191.14223 922.07993 861.68779 -25.64059 0.00000 -8.82195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92190 -0.01656 -1.00000 - 632 2002 3 18 0 50 30 558 4.8133 191.13128 922.09748 861.94071 -30.05023 0.00000 -9.72185 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92120 -0.01656 -1.00000 - 634 2002 3 18 0 50 40 184 4.8133 191.12031 922.11250 862.20185 -34.14024 0.00000 -10.56180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.92050 -0.01656 -1.00000 - 637 2002 3 18 0 50 54 624 4.8134 191.10381 922.13174 862.60326 -39.66268 0.00000 -11.69204 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91945 -0.01656 -1.00000 - 639 2002 3 18 0 51 4 251 4.8135 191.09278 922.14288 862.87376 -43.02162 0.00000 -12.35138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91875 -0.01656 -1.00000 - 641 2002 3 18 0 51 13 878 4.8135 191.08174 922.15255 863.14434 -46.17737 0.00000 -12.92837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91805 -0.01656 -1.00000 - 643 2002 3 18 0 51 23 506 4.8136 191.07069 922.58321 863.41329 -49.11438 0.00000 -13.41547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91735 -0.01656 -1.00000 - 645 2002 3 18 0 51 33 133 4.8137 191.05966 923.20090 863.67924 -51.80776 0.00000 -13.80940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91665 -0.01656 -1.00000 - 647 2002 3 18 0 51 42 760 4.8137 191.04865 923.82402 863.94033 -54.22389 0.00000 -14.10580 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91595 -0.01656 -1.00000 - 649 2002 3 18 0 51 52 388 4.8138 191.03763 924.42482 864.19499 -56.30194 0.00000 -14.29897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91525 -0.01655 -1.00000 - 651 2002 3 18 0 52 2 15 4.8138 191.02660 925.00916 864.44138 -57.97785 0.00000 -14.38743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91455 -0.01655 -1.00000 - 653 2002 3 18 0 52 11 643 4.8139 191.01556 925.57316 864.67760 -59.20839 0.00000 -14.36636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91385 -0.01655 -1.00000 - 655 2002 3 18 0 52 21 271 4.8140 191.00452 926.10390 864.90163 -59.94881 0.00000 -14.23521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91315 -0.01655 -1.00000 - 657 2002 3 18 0 52 30 899 4.8140 190.99348 926.62149 865.11162 -60.10169 0.00000 -13.99466 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91245 -0.01655 -1.00000 - 659 2002 3 18 0 52 40 527 4.8141 190.98246 927.11753 865.30522 -59.65462 0.00000 -13.64431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91175 -0.01655 -1.00000 - 661 2002 3 18 0 52 50 156 4.8142 190.97148 927.56289 865.48019 -58.56064 0.00000 -13.18593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91105 -0.01655 -1.00000 - 664 2002 3 18 0 53 4 598 4.8142 190.95506 928.12532 865.70303 -55.62795 0.00000 -12.30322 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.91000 -0.01655 -1.00000 - 666 2002 3 18 0 53 14 227 4.8143 190.94419 928.42349 865.82209 -52.78091 0.00000 -11.59417 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90930 -0.01655 -1.00000 - 668 2002 3 18 0 53 23 855 4.8143 190.93339 928.65610 865.91546 -49.22355 0.00000 -10.79868 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90860 -0.01655 -1.00000 - 670 2002 3 18 0 53 33 484 4.8144 190.92263 928.81960 865.98130 -44.98590 0.00000 -9.92528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90790 -0.01655 -1.00000 - 672 2002 3 18 0 53 43 113 4.8144 190.91189 928.91258 866.01811 -40.14637 0.00000 -8.98528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90720 -0.01655 -1.00000 - 674 2002 3 18 0 53 52 742 4.8145 190.90115 928.93254 866.02464 -34.76854 0.00000 -7.99102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90650 -0.01654 -1.00000 - 676 2002 3 18 0 54 2 371 4.8145 190.89041 928.88175 866.00078 -29.01478 0.00000 -6.95558 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90580 -0.01654 -1.00000 - 678 2002 3 18 0 54 12 0 4.8146 190.87965 928.76234 865.94668 -23.05971 0.00000 -5.89367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90510 -0.01654 -1.00000 - 680 2002 3 18 0 54 21 629 4.8147 190.86888 928.57927 865.86272 -17.07379 0.00000 -4.82111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90440 -0.01654 -1.00000 - 682 2002 3 18 0 54 31 259 4.8147 190.85810 928.33754 865.74963 -11.19156 0.00000 -3.75325 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90370 -0.01654 -1.00000 - 684 2002 3 18 0 54 40 888 4.8148 190.84732 928.04240 865.60900 -6.37865 0.00000 -2.70357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90300 -0.01654 -1.00000 - 686 2002 3 18 0 54 50 518 4.8148 190.83652 927.69802 865.44225 -4.32800 2.67165 -1.67931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90230 -0.01654 -1.00000 - 688 2002 3 18 0 55 0 148 4.8149 190.82570 927.30838 865.25099 -2.96389 6.97659 -0.68808 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90160 -0.01654 -1.00000 - 691 2002 3 18 0 55 14 592 4.8150 190.80945 926.64674 864.92205 -2.13476 12.83936 0.72501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.90055 -0.01654 -1.00000 - 693 2002 3 18 0 55 24 222 4.8150 190.79861 926.15987 864.67758 -2.14993 16.88375 1.60852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89985 -0.01654 -1.00000 - 695 2002 3 18 0 55 33 853 4.8151 190.78777 925.64117 864.41560 -2.19371 20.86246 2.43542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89915 -0.01654 -1.00000 - 697 2002 3 18 0 55 43 483 4.8152 190.77693 925.09761 864.13840 -2.24789 24.18278 3.19843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89845 -0.01653 -1.00000 - 699 2002 3 18 0 55 53 113 4.8152 190.76608 924.53934 863.84959 -2.29347 26.86446 3.89432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89775 -0.01653 -1.00000 - 701 2002 3 18 0 56 2 744 4.8153 190.75523 923.97088 863.55197 -2.32914 28.92871 4.51972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89705 -0.01653 -1.00000 - 703 2002 3 18 0 56 12 375 4.8153 190.74439 923.39760 863.24831 -2.36548 30.49864 5.07161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89635 -0.01653 -1.00000 - 705 2002 3 18 0 56 22 5 4.8154 190.73355 922.82551 862.94104 -2.41396 31.68617 5.54802 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89565 -0.01653 -1.00000 - 707 2002 3 18 0 56 31 636 4.8155 190.72271 922.33874 862.63176 -2.45256 32.51852 5.94921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89495 -0.01653 -1.00000 - 709 2002 3 18 0 56 41 267 4.8155 190.71187 921.90197 862.32246 -2.47796 33.14009 6.27575 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89425 -0.01653 -1.00000 - 711 2002 3 18 0 56 50 898 4.8156 190.70102 921.51826 862.01450 -2.49401 33.52500 6.52594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89355 -0.01653 -1.00000 - 713 2002 3 18 0 57 0 530 4.8156 190.69017 921.13186 861.70940 -2.49737 33.71269 6.69977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89284 -0.01653 -1.00000 - 715 2002 3 18 0 57 10 161 4.8157 190.67932 920.78195 861.40887 -2.48296 33.71451 6.79876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89214 -0.01653 -1.00000 - 718 2002 3 18 0 57 24 608 4.8158 190.66304 920.28523 860.96967 -2.44560 33.30798 6.80915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89109 -0.01653 -1.00000 - 720 2002 3 18 0 57 34 240 4.8158 190.65219 919.95812 860.68710 -2.40604 32.81208 6.72543 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.89039 -0.01653 -1.00000 - 722 2002 3 18 0 57 43 872 4.8159 190.64134 919.69378 860.41417 -2.35034 32.06591 6.57109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88969 -0.01652 -1.00000 - 724 2002 3 18 0 57 53 503 4.8160 190.63049 919.43941 860.15269 -2.27898 31.15452 6.35001 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88899 -0.01652 -1.00000 - 726 2002 3 18 0 58 3 136 4.8160 190.61965 919.19352 859.90384 -2.19803 30.02971 6.06525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88829 -0.01652 -1.00000 - 728 2002 3 18 0 58 12 768 4.8161 190.60883 918.95697 859.66904 -2.15168 28.67921 5.71892 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88759 -0.01652 -1.00000 - 730 2002 3 18 0 58 22 400 4.8161 190.59804 918.73494 859.44960 -2.09055 27.14815 5.31480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88689 -0.01652 -1.00000 - 732 2002 3 18 0 58 32 32 4.8162 190.58726 918.55750 859.24662 -2.01853 25.39765 4.85663 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88619 -0.01652 -1.00000 - 734 2002 3 18 0 58 41 665 4.8162 190.57653 918.38412 859.06119 -1.95532 23.46282 4.34858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88549 -0.01652 -1.00000 - 736 2002 3 18 0 58 51 297 4.8163 190.56582 918.21090 858.89446 -1.88234 21.35709 3.79520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88479 -0.01652 -1.00000 - 738 2002 3 18 0 59 0 930 4.8163 190.55513 918.03711 858.74684 -1.80326 19.05148 3.20181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88409 -0.01652 -1.00000 - 740 2002 3 18 0 59 10 563 4.8164 190.54447 917.86454 858.61910 -1.72418 16.61116 2.57539 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88339 -0.01652 -1.00000 - 742 2002 3 18 0 59 20 195 4.8164 190.53385 917.69569 858.51147 -1.65098 14.02234 1.91764 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88269 -0.01652 -1.00000 - 745 2002 3 18 0 59 34 645 4.8165 190.51797 917.45471 858.38788 -1.56097 9.90602 0.88719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88164 -0.01651 -1.00000 - 747 2002 3 18 0 59 44 278 4.8166 190.50740 917.30455 858.33038 -1.51678 7.01566 0.17987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88094 -0.01651 -1.00000 - 749 2002 3 18 0 59 53 911 4.8166 190.49686 917.16297 858.29250 -1.48532 4.11944 -0.53888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.88024 -0.01651 -1.00000 - 751 2002 3 18 1 0 3 545 4.8167 190.48631 917.02856 858.27329 -2.34610 1.18444 -1.26102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87954 -0.01651 -1.00000 - 753 2002 3 18 1 0 13 178 4.8167 190.47577 916.89912 858.27148 -4.21895 0.00000 -1.97975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87883 -0.01651 -1.00000 - 755 2002 3 18 1 0 22 812 4.8168 190.46521 916.77389 858.28605 -6.58939 0.00000 -2.68935 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87813 -0.01651 -1.00000 - 757 2002 3 18 1 0 32 445 4.8168 190.45464 916.69119 858.31580 -8.94619 0.00000 -3.38430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87743 -0.01651 -1.00000 - 759 2002 3 18 1 0 42 79 4.8169 190.44403 916.61960 858.35929 -11.57605 0.00000 -4.06163 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87673 -0.01651 -1.00000 - 761 2002 3 18 1 0 51 713 4.8170 190.43339 916.58128 858.41485 -14.08780 0.00000 -4.71598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87603 -0.01651 -1.00000 - 763 2002 3 18 1 1 1 347 4.8170 190.42271 916.65158 858.48088 -16.48795 0.00000 -5.34394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87533 -0.01651 -1.00000 - 765 2002 3 18 1 1 10 981 4.8171 190.41199 916.81498 858.55594 -18.75917 0.00000 -5.94226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87463 -0.01651 -1.00000 - 767 2002 3 18 1 1 20 615 4.8172 190.40123 917.01155 858.63877 -20.91118 0.00000 -6.50661 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87393 -0.01651 -1.00000 - 769 2002 3 18 1 1 30 250 4.8172 190.39043 917.23245 858.72773 -22.94703 0.00000 -7.03398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87323 -0.01650 -1.00000 - 772 2002 3 18 1 1 44 702 4.8173 190.37417 917.58431 858.86870 -26.03907 0.00000 -7.74567 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87218 -0.01650 -1.00000 - 774 2002 3 18 1 1 54 337 4.8174 190.36331 917.82514 858.96486 -27.78121 0.00000 -8.16216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87148 -0.01650 -1.00000 - 776 2002 3 18 1 2 3 971 4.8175 190.35245 918.06835 859.06084 -29.24765 0.00000 -8.52875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87078 -0.01650 -1.00000 - 778 2002 3 18 1 2 13 606 4.8175 190.34159 918.30424 859.15499 -30.43953 0.00000 -8.84282 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.87008 -0.01650 -1.00000 - 780 2002 3 18 1 2 23 242 4.8176 190.33076 918.52689 859.24595 -31.38116 0.00000 -9.10545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86938 -0.01650 -1.00000 - 782 2002 3 18 1 2 32 877 4.8176 190.31996 918.73984 859.33289 -32.04731 0.00000 -9.31302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86868 -0.01650 -1.00000 - 784 2002 3 18 1 2 42 512 4.8177 190.30921 918.93286 859.41474 -32.47997 0.00000 -9.46625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86798 -0.01650 -1.00000 - 786 2002 3 18 1 2 52 148 4.8177 190.29850 919.10510 859.49093 -32.70491 0.00000 -9.56476 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86727 -0.01650 -1.00000 - 788 2002 3 18 1 3 1 783 4.8178 190.28785 919.26164 859.56127 -32.68205 0.00000 -9.60739 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86657 -0.01650 -1.00000 - 790 2002 3 18 1 3 11 419 4.8178 190.27723 919.39510 859.62525 -32.41878 0.00000 -9.59618 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86587 -0.01650 -1.00000 - 792 2002 3 18 1 3 21 54 4.8179 190.26667 919.50461 859.68260 -31.92846 0.00000 -9.53089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86517 -0.01650 -1.00000 - 794 2002 3 18 1 3 30 690 4.8179 190.25613 919.59271 859.73327 -31.20584 0.00000 -9.41318 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86447 -0.01649 -1.00000 - 796 2002 3 18 1 3 40 326 4.8180 190.24564 919.66239 859.77713 -30.24794 0.00000 -9.24516 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86377 -0.01649 -1.00000 - 799 2002 3 18 1 3 54 780 4.8181 190.22993 919.73058 859.83003 -28.38489 0.00000 -8.90695 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86272 -0.01649 -1.00000 - 801 2002 3 18 1 4 4 416 4.8181 190.21946 919.75387 859.85678 -26.86874 0.00000 -8.62831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86202 -0.01649 -1.00000 - 803 2002 3 18 1 4 14 53 4.8182 190.20898 919.76217 859.87639 -25.18824 0.00000 -8.31099 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86132 -0.01649 -1.00000 - 805 2002 3 18 1 4 23 689 4.8182 190.19850 919.75699 859.88908 -23.30390 0.00000 -7.95656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.86062 -0.01649 -1.00000 - 807 2002 3 18 1 4 33 326 4.8183 190.18800 919.74700 859.89451 -21.28109 0.00000 -7.57049 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85992 -0.01649 -1.00000 - 809 2002 3 18 1 4 42 962 4.8183 190.17749 919.73652 859.89277 -19.16477 0.00000 -7.15822 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85922 -0.01649 -1.00000 - 811 2002 3 18 1 4 52 599 4.8184 190.16696 919.73548 859.88377 -16.98646 0.00000 -6.72279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85851 -0.01649 -1.00000 - 813 2002 3 18 1 5 2 236 4.8185 190.15641 919.74534 859.86738 -14.78311 0.00000 -6.27004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85781 -0.01649 -1.00000 - 815 2002 3 18 1 5 11 873 4.8185 190.14584 919.74645 859.84356 -12.62134 0.00000 -5.80616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85711 -0.01649 -1.00000 - 817 2002 3 18 1 5 21 510 4.8186 190.13525 919.74720 859.81210 -10.45332 0.00000 -5.33494 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85641 -0.01648 -1.00000 - 819 2002 3 18 1 5 31 147 4.8186 190.12465 919.73000 859.77267 -9.45683 0.00000 -4.86053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85571 -0.01648 -1.00000 - 821 2002 3 18 1 5 40 785 4.8187 190.11403 919.69303 859.72497 -8.82663 0.00000 -4.38419 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85501 -0.01648 -1.00000 - 823 2002 3 18 1 5 50 422 4.8188 190.10341 919.63519 859.66864 -8.13003 0.00000 -3.91060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85431 -0.01648 -1.00000 - 825 2002 3 18 1 6 0 60 4.8188 190.09279 919.55535 859.60328 -7.37049 0.00000 -3.44149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85361 -0.01648 -1.00000 - 828 2002 3 18 1 6 14 516 4.8189 190.07688 919.39279 859.48790 -6.17424 0.27861 -2.75431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85256 -0.01648 -1.00000 - 830 2002 3 18 1 6 24 154 4.8189 190.06629 919.25530 859.39903 -5.28892 1.90717 -2.31265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85186 -0.01648 -1.00000 - 832 2002 3 18 1 6 33 792 4.8190 190.05572 919.09429 859.30047 -4.40963 3.38407 -1.88515 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85116 -0.01648 -1.00000 - 834 2002 3 18 1 6 43 430 4.8191 190.04517 918.91058 859.19239 -3.46675 4.58250 -1.47702 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.85045 -0.01648 -1.00000 - 836 2002 3 18 1 6 53 68 4.8191 190.03464 918.70530 859.07541 -2.80691 5.53879 -1.08946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84975 -0.01648 -1.00000 - 838 2002 3 18 1 7 2 707 4.8192 190.02413 918.49245 858.95021 -2.76971 6.27191 -0.72437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84905 -0.01648 -1.00000 - 840 2002 3 18 1 7 12 345 4.8192 190.01364 918.26109 858.81696 -2.72951 6.76976 -0.38173 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84835 -0.01648 -1.00000 - 842 2002 3 18 1 7 21 984 4.8193 190.00316 918.03128 858.67640 -2.68455 7.12362 -0.06098 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84765 -0.01647 -1.00000 - 844 2002 3 18 1 7 31 622 4.8193 189.99269 917.83011 858.52902 -2.63331 7.33041 0.23592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84695 -0.01647 -1.00000 - 846 2002 3 18 1 7 41 261 4.8194 189.98223 917.63941 858.37546 -2.57434 7.39793 0.50826 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84625 -0.01647 -1.00000 - 848 2002 3 18 1 7 50 900 4.8194 189.97177 917.43900 858.21640 -2.50626 7.40935 0.75632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84555 -0.01647 -1.00000 - 850 2002 3 18 1 8 0 539 4.8195 189.96131 917.22705 858.05260 -2.42780 7.35174 0.98066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84485 -0.01647 -1.00000 - 852 2002 3 18 1 8 10 178 4.8195 189.95084 917.00240 857.88487 -2.35160 7.30678 1.18169 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84415 -0.01647 -1.00000 - 855 2002 3 18 1 8 24 637 4.8196 189.93512 916.64298 857.62798 -2.21730 7.42412 1.44130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84310 -0.01647 -1.00000 - 857 2002 3 18 1 8 34 276 4.8197 189.92463 916.38956 857.45447 -2.10860 7.78368 1.58479 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84239 -0.01647 -1.00000 - 859 2002 3 18 1 8 43 915 4.8197 189.91412 916.12718 857.28047 -1.98376 8.12783 1.70361 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84169 -0.01647 -1.00000 - 861 2002 3 18 1 8 53 555 4.8198 189.90361 915.85822 857.10709 -1.84655 8.37785 1.79703 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84099 -0.01647 -1.00000 - 863 2002 3 18 1 9 3 195 4.8199 189.89308 915.58384 856.93528 -1.73247 8.43912 1.86517 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.84029 -0.01647 -1.00000 - 865 2002 3 18 1 9 12 834 4.8199 189.88255 915.30761 856.76620 -1.60384 8.53389 1.90749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83959 -0.01646 -1.00000 - 867 2002 3 18 1 9 22 474 4.8200 189.87200 915.03096 856.60054 -1.46081 8.48906 1.92445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83889 -0.01646 -1.00000 - 869 2002 3 18 1 9 32 114 4.8200 189.86146 914.75619 856.43916 -1.30704 8.54493 1.91684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83819 -0.01646 -1.00000 - 871 2002 3 18 1 9 41 755 4.8201 189.85091 914.48712 856.28297 -1.14697 8.69485 1.88191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83749 -0.01646 -1.00000 - 873 2002 3 18 1 9 51 395 4.8202 189.84036 914.27186 856.13283 -0.99970 8.85869 1.82001 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83679 -0.01646 -1.00000 - 875 2002 3 18 1 10 1 35 4.8202 189.82982 914.15455 855.98968 -0.95081 9.10666 1.73077 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83608 -0.01646 -1.00000 - 877 2002 3 18 1 10 10 676 4.8203 189.81927 914.04108 855.85396 -0.95765 9.27106 1.61386 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83538 -0.01646 -1.00000 - 879 2002 3 18 1 10 20 316 4.8203 189.80874 913.92888 855.72606 -0.96876 9.35414 1.46982 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83468 -0.01646 -1.00000 - 882 2002 3 18 1 10 34 777 4.8204 189.79297 913.75661 855.54953 -0.99276 9.26940 1.20601 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83363 -0.01646 -1.00000 - 884 2002 3 18 1 10 44 418 4.8205 189.78247 913.65535 855.44202 -1.01861 9.01188 0.99862 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83293 -0.01646 -1.00000 - 886 2002 3 18 1 10 54 59 4.8205 189.77199 913.55954 855.34260 -1.04915 8.61532 0.76795 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83223 -0.01646 -1.00000 - 888 2002 3 18 1 11 3 700 4.8206 189.76153 913.46081 855.25078 -1.08189 8.04960 0.51485 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83153 -0.01646 -1.00000 - 890 2002 3 18 1 11 13 342 4.8206 189.75108 913.38548 855.16617 -1.37519 7.30607 0.24064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83083 -0.01645 -1.00000 - 892 2002 3 18 1 11 22 983 4.8207 189.74064 913.30687 855.08829 -1.86670 6.36788 -0.05326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.83013 -0.01645 -1.00000 - 894 2002 3 18 1 11 32 624 4.8207 189.73021 913.24850 855.01642 -2.34378 5.27007 -0.36456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82942 -0.01645 -1.00000 - 896 2002 3 18 1 11 42 266 4.8208 189.71979 913.18561 854.95001 -2.82977 4.06760 -0.68914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82872 -0.01645 -1.00000 - 898 2002 3 18 1 11 51 908 4.8208 189.70938 913.12952 854.88806 -3.26160 2.71270 -1.02463 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82802 -0.01645 -1.00000 - 900 2002 3 18 1 12 1 549 4.8209 189.69898 913.07635 854.82999 -3.73549 1.23287 -1.36890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82732 -0.01645 -1.00000 - 902 2002 3 18 1 12 11 191 4.8209 189.68857 913.01679 854.77504 -4.17937 0.00000 -1.71809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82662 -0.01645 -1.00000 - 904 2002 3 18 1 12 20 833 4.8210 189.67817 912.97025 854.72254 -4.75375 0.00000 -2.06997 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82592 -0.01645 -1.00000 - 906 2002 3 18 1 12 30 475 4.8211 189.66777 912.91710 854.67198 -5.40630 0.00000 -2.42066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82522 -0.01645 -1.00000 - 908 2002 3 18 1 12 40 117 4.8211 189.65737 912.87706 854.62283 -6.48507 0.00000 -2.76677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82452 -0.01645 -1.00000 - 911 2002 3 18 1 12 54 581 4.8212 189.64176 912.82235 854.55120 -8.46171 0.00000 -3.27295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82346 -0.01645 -1.00000 - 913 2002 3 18 1 13 4 223 4.8213 189.63136 912.79694 854.50478 -9.83881 0.00000 -3.59781 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82276 -0.01644 -1.00000 - 915 2002 3 18 1 13 13 866 4.8213 189.62095 912.77549 854.45924 -11.12405 0.00000 -3.91059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82206 -0.01644 -1.00000 - 917 2002 3 18 1 13 23 509 4.8214 189.61054 912.76305 854.41491 -12.29954 0.00000 -4.20850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82136 -0.01644 -1.00000 - 919 2002 3 18 1 13 33 151 4.8214 189.60014 912.75096 854.37221 -13.42833 0.00000 -4.48941 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.82066 -0.01644 -1.00000 - 921 2002 3 18 1 13 42 794 4.8215 189.58974 912.73172 854.33133 -14.66933 0.00000 -4.75263 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81996 -0.01644 -1.00000 - 923 2002 3 18 1 13 52 437 4.8215 189.57934 912.70441 854.29212 -15.72655 0.00000 -4.99620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81926 -0.01644 -1.00000 - 925 2002 3 18 1 14 2 81 4.8216 189.56895 912.67015 854.25501 -16.53338 0.00000 -5.21701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81856 -0.01644 -1.00000 - 927 2002 3 18 1 14 11 724 4.8216 189.55856 912.62762 854.21972 -17.09482 0.00000 -5.41340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81785 -0.01644 -1.00000 - 929 2002 3 18 1 14 21 367 4.8217 189.54818 912.57713 854.18615 -17.41214 0.00000 -5.58518 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81715 -0.01644 -1.00000 - 931 2002 3 18 1 14 31 11 4.8217 189.53781 912.51894 854.15429 -17.49572 0.00000 -5.73339 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81645 -0.01644 -1.00000 - 933 2002 3 18 1 14 40 654 4.8218 189.52744 912.45478 854.12425 -17.36368 0.00000 -5.85687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81575 -0.01644 -1.00000 - 935 2002 3 18 1 14 50 298 4.8219 189.51708 912.38495 854.09590 -17.03113 0.00000 -5.95593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81505 -0.01644 -1.00000 - 938 2002 3 18 1 15 4 764 4.8219 189.50155 912.27414 854.05651 -16.20625 0.00000 -6.06348 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81400 -0.01643 -1.00000 - 940 2002 3 18 1 15 14 408 4.8220 189.49120 912.19836 854.03231 -15.46129 0.00000 -6.10996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81330 -0.01643 -1.00000 - 942 2002 3 18 1 15 24 52 4.8220 189.48085 912.16923 854.00944 -14.64112 0.00000 -6.13907 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81259 -0.01643 -1.00000 - 944 2002 3 18 1 15 33 696 4.8221 189.47051 912.17650 853.98822 -13.71742 0.00000 -6.15034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81189 -0.01643 -1.00000 - 946 2002 3 18 1 15 43 340 4.8222 189.46017 912.19704 853.96859 -12.77288 0.00000 -6.14699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81119 -0.01643 -1.00000 - 948 2002 3 18 1 15 52 984 4.8222 189.44983 912.22299 853.95068 -11.88324 0.00000 -6.13162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.81049 -0.01643 -1.00000 - 950 2002 3 18 1 16 2 629 4.8223 189.43949 912.24942 853.93448 -11.99184 0.00000 -6.10582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80979 -0.01643 -1.00000 - 952 2002 3 18 1 16 12 274 4.8223 189.42916 912.27605 853.92009 -12.34950 0.00000 -6.07059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80909 -0.01643 -1.00000 - 954 2002 3 18 1 16 21 918 4.8224 189.41882 912.30806 853.90784 -12.48209 0.00000 -6.02447 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80839 -0.01643 -1.00000 - 956 2002 3 18 1 16 31 563 4.8224 189.40848 912.34313 853.89758 -12.58842 0.00000 -5.96839 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80768 -0.01643 -1.00000 - 958 2002 3 18 1 16 41 208 4.8225 189.39815 912.37814 853.88906 -12.63058 0.00000 -5.90443 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80698 -0.01643 -1.00000 - 960 2002 3 18 1 16 50 853 4.8225 189.38782 912.41293 853.88269 -12.52567 0.00000 -5.83204 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80628 -0.01643 -1.00000 - 962 2002 3 18 1 17 0 498 4.8226 189.37749 912.44728 853.87842 -12.44851 0.00000 -5.75192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80558 -0.01642 -1.00000 - 964 2002 3 18 1 17 10 144 4.8227 189.36716 912.48102 853.87643 -12.15420 0.00000 -5.66312 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80488 -0.01642 -1.00000 - 967 2002 3 18 1 17 24 612 4.8227 189.35167 912.52980 853.87757 -11.69267 0.00000 -5.51060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80383 -0.01642 -1.00000 - 969 2002 3 18 1 17 34 257 4.8228 189.34134 912.56032 853.88049 -11.28100 0.00000 -5.39624 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80313 -0.01642 -1.00000 - 971 2002 3 18 1 17 43 903 4.8229 189.33101 912.58829 853.88468 -10.99085 0.00000 -5.26968 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80242 -0.01642 -1.00000 - 973 2002 3 18 1 17 53 549 4.8229 189.32069 912.61271 853.88931 -10.54700 0.00000 -5.13131 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80172 -0.01642 -1.00000 - 975 2002 3 18 1 18 3 195 4.8230 189.31037 912.63243 853.89377 -10.46014 0.00000 -4.97879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80102 -0.01642 -1.00000 - 977 2002 3 18 1 18 12 841 4.8230 189.30005 912.64608 853.89708 -10.72149 0.00000 -4.80965 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.80032 -0.01642 -1.00000 - 979 2002 3 18 1 18 22 487 4.8231 189.28973 912.65232 853.89827 -10.92237 0.00000 -4.62600 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79962 -0.01642 -1.00000 - 981 2002 3 18 1 18 32 133 4.8231 189.27941 912.64977 853.89653 -11.03959 0.00000 -4.42557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79892 -0.01642 -1.00000 - 983 2002 3 18 1 18 41 779 4.8232 189.26910 912.63703 853.89091 -11.15453 0.00000 -4.21122 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79822 -0.01642 -1.00000 - 985 2002 3 18 1 18 51 426 4.8232 189.25879 912.62446 853.88029 -11.32336 0.00000 -3.98176 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79751 -0.01641 -1.00000 - 987 2002 3 18 1 19 1 72 4.8233 189.24848 912.61101 853.86371 -11.34599 0.00000 -3.73788 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79681 -0.01641 -1.00000 - 989 2002 3 18 1 19 10 719 4.8233 189.23817 912.61545 853.84017 -11.21925 0.00000 -3.48075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79611 -0.01641 -1.00000 - 991 2002 3 18 1 19 20 366 4.8234 189.22786 912.64862 853.80853 -10.92364 0.00000 -3.21134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79541 -0.01641 -1.00000 - 993 2002 3 18 1 19 30 13 4.8235 189.21756 912.69794 853.76796 -10.45079 0.00000 -2.92971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79471 -0.01641 -1.00000 - 996 2002 3 18 1 19 44 483 4.8235 189.20211 912.74250 853.68824 -9.48522 0.00000 -2.48816 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79366 -0.01641 -1.00000 - 998 2002 3 18 1 19 54 131 4.8236 189.19181 912.74624 853.62191 -8.66577 0.00000 -2.18399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79295 -0.01641 -1.00000 - 1000 2002 3 18 1 20 3 778 4.8237 189.18152 912.72650 853.54430 -7.73698 0.00000 -1.87493 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79225 -0.01641 -1.00000 - 1002 2002 3 18 1 20 13 425 4.8237 189.17122 912.68200 853.45538 -6.72003 0.17926 -1.56374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79155 -0.01641 -1.00000 - 1004 2002 3 18 1 20 23 73 4.8238 189.16092 912.61214 853.35505 -5.64806 0.62737 -1.25315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79085 -0.01641 -1.00000 - 1006 2002 3 18 1 20 32 720 4.8238 189.15062 912.51647 853.24354 -4.50287 1.01506 -0.94598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.79015 -0.01641 -1.00000 - 1008 2002 3 18 1 20 42 368 4.8239 189.14033 912.39494 853.12112 -3.35836 1.39652 -0.64542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78945 -0.01641 -1.00000 - 1010 2002 3 18 1 20 52 16 4.8239 189.13003 912.24831 852.98837 -2.15051 1.73948 -0.35295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78874 -0.01640 -1.00000 - 1012 2002 3 18 1 21 1 664 4.8240 189.11974 912.07687 852.84577 -1.33533 2.08275 -0.07225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78804 -0.01640 -1.00000 - 1014 2002 3 18 1 21 11 312 4.8240 189.10944 911.88069 852.69393 -1.34887 2.31818 0.19743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78734 -0.01640 -1.00000 - 1016 2002 3 18 1 21 20 960 4.8241 189.09915 911.66157 852.53353 -1.36587 2.70599 0.45152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78664 -0.01640 -1.00000 - 1018 2002 3 18 1 21 30 608 4.8242 189.08885 911.42019 852.36540 -1.38570 3.23921 0.68829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78594 -0.01640 -1.00000 - 1020 2002 3 18 1 21 40 257 4.8242 189.07857 911.15943 852.19069 -1.40863 4.09733 0.90357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78524 -0.01640 -1.00000 - 1023 2002 3 18 1 21 54 730 4.8243 189.06314 910.73495 851.91807 -1.44972 5.62016 1.18180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78418 -0.01640 -1.00000 - 1025 2002 3 18 1 22 4 378 4.8244 189.05287 910.43285 851.73092 -1.48569 6.57454 1.33574 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78348 -0.01640 -1.00000 - 1027 2002 3 18 1 22 14 27 4.8244 189.04260 910.11794 851.54060 -1.52662 7.57222 1.46267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78278 -0.01640 -1.00000 - 1029 2002 3 18 1 22 23 676 4.8245 189.03234 909.79209 851.34801 -1.57174 8.55489 1.56095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78208 -0.01640 -1.00000 - 1031 2002 3 18 1 22 33 325 4.8245 189.02209 909.45764 851.15426 -1.61980 9.49306 1.63025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78138 -0.01640 -1.00000 - 1033 2002 3 18 1 22 42 974 4.8246 189.01185 909.11640 850.96015 -1.67016 10.32100 1.66785 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.78067 -0.01639 -1.00000 - 1035 2002 3 18 1 22 52 623 4.8246 189.00162 908.77179 850.76693 -1.73603 11.05062 1.67186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77997 -0.01639 -1.00000 - 1037 2002 3 18 1 23 2 273 4.8247 188.99139 908.42712 850.57580 -1.81670 11.67136 1.64143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77927 -0.01639 -1.00000 - 1039 2002 3 18 1 23 11 922 4.8247 188.98117 908.08398 850.38760 -1.91887 12.12181 1.57620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77857 -0.01639 -1.00000 - 1041 2002 3 18 1 23 21 572 4.8248 188.97096 907.74591 850.20361 -2.02589 12.46923 1.47697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77787 -0.01639 -1.00000 - 1043 2002 3 18 1 23 31 221 4.8248 188.96075 907.41519 850.02469 -2.17793 12.65803 1.34252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77717 -0.01639 -1.00000 - 1045 2002 3 18 1 23 40 871 4.8249 188.95055 907.16165 849.85180 -2.35186 12.68014 1.17354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77646 -0.01639 -1.00000 - 1047 2002 3 18 1 23 50 521 4.8249 188.94035 906.97977 849.68580 -2.56360 12.51578 0.97103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77576 -0.01639 -1.00000 - 1049 2002 3 18 1 24 0 171 4.8250 188.93015 906.80537 849.52763 -2.80678 12.16667 0.73500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77506 -0.01639 -1.00000 - 1052 2002 3 18 1 24 14 646 4.8251 188.91485 906.58469 849.30710 -3.16066 11.35643 0.32252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77401 -0.01639 -1.00000 - 1054 2002 3 18 1 24 24 296 4.8251 188.90465 906.45091 849.17201 -3.38648 10.55100 0.01061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77331 -0.01639 -1.00000 - 1056 2002 3 18 1 24 33 947 4.8252 188.89444 906.32872 849.04731 -3.64999 9.60681 -0.32528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77260 -0.01639 -1.00000 - 1058 2002 3 18 1 24 43 597 4.8253 188.88424 906.21677 848.93352 -3.90871 8.48511 -0.68426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77190 -0.01638 -1.00000 - 1060 2002 3 18 1 24 53 248 4.8253 188.87403 906.11809 848.83105 -4.18743 7.19540 -1.06533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77120 -0.01638 -1.00000 - 1062 2002 3 18 1 25 2 898 4.8254 188.86381 906.03615 848.74034 -4.46043 5.74658 -1.46317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.77050 -0.01638 -1.00000 - 1064 2002 3 18 1 25 12 549 4.8254 188.85360 905.96337 848.66155 -4.72233 4.14108 -1.87437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76980 -0.01638 -1.00000 - 1066 2002 3 18 1 25 22 200 4.8255 188.84338 905.89971 848.59477 -5.07081 2.45858 -2.29524 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76910 -0.01638 -1.00000 - 1068 2002 3 18 1 25 31 851 4.8255 188.83316 905.84510 848.54012 -5.42908 0.69485 -2.72315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76839 -0.01638 -1.00000 - 1070 2002 3 18 1 25 41 502 4.8256 188.82294 905.79956 848.49728 -5.82131 0.00000 -3.15457 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76769 -0.01638 -1.00000 - 1072 2002 3 18 1 25 51 154 4.8256 188.81272 905.76304 848.46593 -6.27199 0.00000 -3.58503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76699 -0.01638 -1.00000 - 1074 2002 3 18 1 26 0 805 4.8257 188.80251 905.73548 848.44564 -6.91672 0.00000 -4.00971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76629 -0.01638 -1.00000 - 1076 2002 3 18 1 26 10 457 4.8258 188.79230 905.71676 848.43589 -8.07744 0.00000 -4.42551 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76559 -0.01638 -1.00000 - 1078 2002 3 18 1 26 20 108 4.8258 188.78209 905.71043 848.43608 -9.47042 0.00000 -4.82751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76488 -0.01638 -1.00000 - 1081 2002 3 18 1 26 34 586 4.8259 188.76678 905.73020 848.45370 -11.90493 0.00000 -5.40059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76383 -0.01637 -1.00000 - 1083 2002 3 18 1 26 44 238 4.8260 188.75659 905.75473 848.47590 -13.43571 0.00000 -5.75695 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76313 -0.01637 -1.00000 - 1085 2002 3 18 1 26 53 890 4.8260 188.74639 905.78741 848.50557 -14.89144 0.00000 -6.08967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76243 -0.01637 -1.00000 - 1087 2002 3 18 1 27 3 542 4.8261 188.73620 905.82936 848.54195 -16.25956 0.00000 -6.39749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76173 -0.01637 -1.00000 - 1089 2002 3 18 1 27 13 194 4.8261 188.72602 905.89610 848.58430 -17.53189 0.00000 -6.67695 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76102 -0.01637 -1.00000 - 1091 2002 3 18 1 27 22 846 4.8262 188.71584 905.96984 848.63196 -18.76422 0.00000 -6.92781 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.76032 -0.01637 -1.00000 - 1093 2002 3 18 1 27 32 499 4.8262 188.70567 906.06910 848.68388 -20.04517 0.00000 -7.14841 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75962 -0.01637 -1.00000 - 1095 2002 3 18 1 27 42 151 4.8263 188.69550 906.18082 848.73897 -21.15567 0.00000 -7.33491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75892 -0.01637 -1.00000 - 1097 2002 3 18 1 27 51 804 4.8263 188.68533 906.31031 848.79594 -22.08195 0.00000 -7.48515 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75822 -0.01637 -1.00000 - 1099 2002 3 18 1 28 1 457 4.8264 188.67517 906.45052 848.85375 -22.81995 0.00000 -7.59657 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75751 -0.01637 -1.00000 - 1101 2002 3 18 1 28 11 110 4.8264 188.66502 906.59796 848.91116 -23.37162 0.00000 -7.66799 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75681 -0.01637 -1.00000 - 1103 2002 3 18 1 28 20 762 4.8265 188.65487 906.74494 848.96713 -23.74581 0.00000 -7.70053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75611 -0.01637 -1.00000 - 1105 2002 3 18 1 28 30 416 4.8266 188.64472 906.89655 849.02048 -23.95184 0.00000 -7.69273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75541 -0.01636 -1.00000 - 1107 2002 3 18 1 28 40 69 4.8266 188.63457 907.04120 849.07033 -23.99913 0.00000 -7.64654 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75471 -0.01636 -1.00000 - 1110 2002 3 18 1 28 54 549 4.8267 188.61936 907.24311 849.13660 -23.82226 0.00000 -7.50692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75365 -0.01636 -1.00000 - 1112 2002 3 18 1 29 4 202 4.8268 188.60922 907.37117 849.17386 -23.50052 0.00000 -7.36576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75295 -0.01636 -1.00000 - 1114 2002 3 18 1 29 13 856 4.8268 188.59908 907.48614 849.20444 -23.03385 0.00000 -7.18757 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75225 -0.01636 -1.00000 - 1116 2002 3 18 1 29 23 510 4.8269 188.58894 907.58630 849.22757 -22.42348 0.00000 -6.97335 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75155 -0.01636 -1.00000 - 1118 2002 3 18 1 29 33 163 4.8269 188.57880 907.67427 849.24243 -21.67111 0.00000 -6.72535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75085 -0.01636 -1.00000 - 1120 2002 3 18 1 29 42 817 4.8270 188.56866 907.74533 849.24831 -20.77941 0.00000 -6.44534 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.75014 -0.01636 -1.00000 - 1122 2002 3 18 1 29 52 471 4.8270 188.55852 907.79874 849.24455 -19.75341 0.00000 -6.13602 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74944 -0.01636 -1.00000 - 1124 2002 3 18 1 30 2 125 4.8271 188.54837 907.83399 849.23060 -18.61680 0.00000 -5.80150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74874 -0.01636 -1.00000 - 1126 2002 3 18 1 30 11 780 4.8271 188.53822 907.85018 849.20604 -17.36998 0.00000 -5.44437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74804 -0.01636 -1.00000 - 1128 2002 3 18 1 30 21 434 4.8272 188.52807 907.84762 849.17055 -16.00160 0.00000 -5.06579 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74733 -0.01635 -1.00000 - 1130 2002 3 18 1 30 31 89 4.8273 188.51792 907.82812 849.12366 -14.54048 0.00000 -4.66910 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74663 -0.01635 -1.00000 - 1132 2002 3 18 1 30 40 743 4.8273 188.50777 907.78778 849.06521 -13.00048 0.00000 -4.25722 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74593 -0.01635 -1.00000 - 1134 2002 3 18 1 30 50 398 4.8274 188.49761 907.72326 848.99504 -11.39175 0.00000 -3.83409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74523 -0.01635 -1.00000 - 1136 2002 3 18 1 31 0 53 4.8274 188.48746 907.63469 848.91327 -9.72777 0.00000 -3.40319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74453 -0.01635 -1.00000 - 1139 2002 3 18 1 31 14 535 4.8275 188.47223 907.45631 848.76911 -7.16639 0.00000 -2.75250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74347 -0.01635 -1.00000 - 1141 2002 3 18 1 31 24 190 4.8276 188.46207 907.30808 848.65914 -5.47613 0.00000 -2.32258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74277 -0.01635 -1.00000 - 1143 2002 3 18 1 31 33 845 4.8276 188.45192 907.13741 848.53864 -3.76129 0.00000 -1.89790 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74207 -0.01635 -1.00000 - 1145 2002 3 18 1 31 43 501 4.8277 188.44177 906.94547 848.40831 -2.16692 0.00000 -1.48381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74137 -0.01635 -1.00000 - 1147 2002 3 18 1 31 53 156 4.8277 188.43163 906.73368 848.26862 -2.14385 0.25703 -1.08180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.74066 -0.01635 -1.00000 - 1149 2002 3 18 1 32 2 812 4.8278 188.42148 906.50263 848.12025 -2.13000 1.74535 -0.69512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73996 -0.01635 -1.00000 - 1151 2002 3 18 1 32 12 468 4.8278 188.41135 906.25343 847.96392 -2.11850 3.21140 -0.32743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73926 -0.01635 -1.00000 - 1153 2002 3 18 1 32 22 123 4.8279 188.40122 905.98802 847.80048 -2.10812 4.58019 0.01838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73856 -0.01634 -1.00000 - 1155 2002 3 18 1 32 31 779 4.8280 188.39110 905.70849 847.63087 -2.09795 5.91697 0.33984 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73786 -0.01634 -1.00000 - 1157 2002 3 18 1 32 41 435 4.8280 188.38098 905.41657 847.45600 -2.08759 7.23698 0.63552 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73715 -0.01634 -1.00000 - 1159 2002 3 18 1 32 51 91 4.8281 188.37087 905.11449 847.27687 -2.07708 8.59497 0.90303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73645 -0.01634 -1.00000 - 1161 2002 3 18 1 33 0 748 4.8281 188.36077 904.80339 847.09420 -2.06657 9.83145 1.13983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73575 -0.01634 -1.00000 - 1163 2002 3 18 1 33 10 404 4.8282 188.35067 904.48660 846.90924 -2.05626 10.91749 1.34454 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73505 -0.01634 -1.00000 - 1165 2002 3 18 1 33 20 60 4.8282 188.34057 904.16710 846.72317 -2.04657 11.84295 1.51595 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73434 -0.01634 -1.00000 - 1168 2002 3 18 1 33 34 545 4.8283 188.32543 903.68870 846.44431 -2.03397 12.92136 1.70585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73329 -0.01634 -1.00000 - 1170 2002 3 18 1 33 44 202 4.8284 188.31534 903.37372 846.26015 -2.02762 13.43552 1.78636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73259 -0.01634 -1.00000 - 1172 2002 3 18 1 33 53 859 4.8284 188.30526 903.06534 846.07847 -2.02359 13.76086 1.82818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73189 -0.01634 -1.00000 - 1174 2002 3 18 1 34 3 516 4.8285 188.29517 902.82511 845.90022 -2.02256 13.93545 1.83197 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73118 -0.01634 -1.00000 - 1176 2002 3 18 1 34 13 173 4.8285 188.28508 902.60856 845.72625 -2.02530 13.96480 1.79970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.73048 -0.01633 -1.00000 - 1178 2002 3 18 1 34 22 830 4.8286 188.27499 902.40567 845.55711 -2.03241 13.83615 1.73148 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72978 -0.01633 -1.00000 - 1180 2002 3 18 1 34 32 487 4.8287 188.26490 902.21184 845.39348 -2.04454 13.55218 1.62912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72908 -0.01633 -1.00000 - 1182 2002 3 18 1 34 42 145 4.8287 188.25481 902.02269 845.23581 -2.06234 13.08699 1.49157 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72838 -0.01633 -1.00000 - 1184 2002 3 18 1 34 51 802 4.8288 188.24472 901.83872 845.08489 -2.08631 12.51166 1.32176 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72767 -0.01633 -1.00000 - 1186 2002 3 18 1 35 1 460 4.8288 188.23463 901.66044 844.94097 -2.11686 11.78101 1.12052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72697 -0.01633 -1.00000 - 1188 2002 3 18 1 35 11 117 4.8289 188.22454 901.48843 844.80441 -2.15416 10.89278 0.88993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72627 -0.01633 -1.00000 - 1190 2002 3 18 1 35 20 775 4.8289 188.21445 901.32322 844.67553 -2.19814 9.88526 0.63306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72557 -0.01633 -1.00000 - 1192 2002 3 18 1 35 30 433 4.8290 188.20436 901.16538 844.55471 -2.24860 8.76635 0.35198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72486 -0.01633 -1.00000 - 1194 2002 3 18 1 35 40 91 4.8291 188.19427 901.01547 844.44194 -2.30498 7.53160 0.04917 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72416 -0.01633 -1.00000 - 1197 2002 3 18 1 35 54 579 4.8291 188.17914 900.80630 844.28813 -2.41775 5.51104 -0.43878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72311 -0.01633 -1.00000 - 1199 2002 3 18 1 36 4 237 4.8292 188.16906 900.67810 844.19579 -2.50652 4.05829 -0.78319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72241 -0.01633 -1.00000 - 1201 2002 3 18 1 36 13 896 4.8293 188.15898 900.55931 844.11167 -2.61888 2.56226 -1.14138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72170 -0.01632 -1.00000 - 1203 2002 3 18 1 36 23 554 4.8293 188.14891 900.45070 844.03565 -2.73671 1.04334 -1.50750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72100 -0.01632 -1.00000 - 1205 2002 3 18 1 36 33 213 4.8294 188.13884 900.35343 843.96755 -2.91190 0.00000 -1.88015 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.72030 -0.01632 -1.00000 - 1207 2002 3 18 1 36 42 872 4.8294 188.12878 900.26650 843.90700 -3.48685 0.00000 -2.25298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71960 -0.01632 -1.00000 - 1209 2002 3 18 1 36 52 531 4.8295 188.11871 900.19342 843.85365 -4.61926 0.00000 -2.62366 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71889 -0.01632 -1.00000 - 1211 2002 3 18 1 37 2 190 4.8295 188.10865 900.13652 843.80744 -5.85323 0.00000 -2.99026 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71819 -0.01632 -1.00000 - 1213 2002 3 18 1 37 11 849 4.8296 188.09859 900.09092 843.76816 -7.25765 0.00000 -3.35100 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71749 -0.01632 -1.00000 - 1215 2002 3 18 1 37 21 508 4.8296 188.08854 900.06411 843.73532 -8.59535 0.00000 -3.70358 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71679 -0.01632 -1.00000 - 1217 2002 3 18 1 37 31 167 4.8297 188.07848 900.05388 843.70865 -9.88528 0.00000 -4.04525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71608 -0.01632 -1.00000 - 1219 2002 3 18 1 37 40 827 4.8298 188.06843 900.06030 843.68807 -11.10507 0.00000 -4.37337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71538 -0.01632 -1.00000 - 1221 2002 3 18 1 37 50 486 4.8298 188.05837 900.08166 843.67314 -12.25130 0.00000 -4.68651 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71468 -0.01632 -1.00000 - 1223 2002 3 18 1 38 0 146 4.8299 188.04831 900.11387 843.66364 -13.32944 0.00000 -4.98032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71398 -0.01632 -1.00000 - 1226 2002 3 18 1 38 14 636 4.8300 188.03322 900.17948 843.65823 -15.02293 0.00000 -5.38425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71292 -0.01631 -1.00000 - 1228 2002 3 18 1 38 24 296 4.8300 188.02316 900.23414 843.65970 -15.99887 0.00000 -5.62620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71222 -0.01631 -1.00000 - 1230 2002 3 18 1 38 33 956 4.8301 188.01310 900.29428 843.66466 -16.80609 0.00000 -5.84301 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71152 -0.01631 -1.00000 - 1232 2002 3 18 1 38 43 616 4.8301 188.00304 900.35919 843.67231 -17.45878 0.00000 -6.03357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71082 -0.01631 -1.00000 - 1234 2002 3 18 1 38 53 277 4.8302 187.99299 900.42764 843.68193 -17.96440 0.00000 -6.19606 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.71011 -0.01631 -1.00000 - 1236 2002 3 18 1 39 2 937 4.8302 187.98293 900.49776 843.69287 -18.33434 0.00000 -6.33100 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70941 -0.01631 -1.00000 - 1238 2002 3 18 1 39 12 598 4.8303 187.97287 900.56889 843.70467 -18.58203 0.00000 -6.43762 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70871 -0.01631 -1.00000 - 1240 2002 3 18 1 39 22 258 4.8304 187.96282 900.64002 843.71668 -18.71684 0.00000 -6.51624 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70800 -0.01631 -1.00000 - 1242 2002 3 18 1 39 31 919 4.8304 187.95278 900.70953 843.72831 -18.75984 0.00000 -6.56716 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70730 -0.01631 -1.00000 - 1244 2002 3 18 1 39 41 580 4.8305 187.94274 900.77668 843.73909 -18.70081 0.00000 -6.59020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70660 -0.01631 -1.00000 - 1246 2002 3 18 1 39 51 241 4.8305 187.93270 900.84044 843.74847 -18.53020 0.00000 -6.58497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70590 -0.01631 -1.00000 - 1248 2002 3 18 1 40 0 902 4.8306 187.92267 900.89956 843.75577 -18.26990 0.00000 -6.55337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70519 -0.01630 -1.00000 - 1250 2002 3 18 1 40 10 564 4.8306 187.91264 900.95309 843.76039 -17.92631 0.00000 -6.49377 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70449 -0.01630 -1.00000 - 1252 2002 3 18 1 40 20 225 4.8307 187.90261 900.99939 843.76170 -17.50465 0.00000 -6.40877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70379 -0.01630 -1.00000 - 1255 2002 3 18 1 40 34 717 4.8308 187.88758 901.05375 843.75634 -16.74781 0.00000 -6.23496 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70274 -0.01630 -1.00000 - 1257 2002 3 18 1 40 44 379 4.8308 187.87756 901.07805 843.74719 -16.16848 0.00000 -6.09020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70203 -0.01630 -1.00000 - 1259 2002 3 18 1 40 54 41 4.8309 187.86755 901.09203 843.73311 -15.55066 0.00000 -5.92630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70133 -0.01630 -1.00000 - 1261 2002 3 18 1 41 3 702 4.8310 187.85753 901.09499 843.71365 -14.87620 0.00000 -5.74251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.70063 -0.01630 -1.00000 - 1263 2002 3 18 1 41 13 364 4.8310 187.84752 901.08617 843.68850 -14.17402 0.00000 -5.54043 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69993 -0.01630 -1.00000 - 1265 2002 3 18 1 41 23 27 4.8311 187.83751 901.06515 843.65734 -13.43335 0.00000 -5.32189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69922 -0.01630 -1.00000 - 1267 2002 3 18 1 41 32 689 4.8311 187.82750 901.03396 843.61998 -12.64413 0.00000 -5.08803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69852 -0.01630 -1.00000 - 1269 2002 3 18 1 41 42 351 4.8312 187.81749 900.99096 843.57598 -11.83021 0.00000 -4.84007 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69782 -0.01630 -1.00000 - 1271 2002 3 18 1 41 52 14 4.8312 187.80748 900.93513 843.52537 -10.99185 0.00000 -4.58042 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69711 -0.01630 -1.00000 - 1273 2002 3 18 1 42 1 676 4.8313 187.79748 900.86687 843.46802 -10.12555 0.00000 -4.31057 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69641 -0.01629 -1.00000 - 1275 2002 3 18 1 42 11 339 4.8314 187.78747 900.78801 843.40394 -9.24249 0.00000 -4.03421 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69571 -0.01629 -1.00000 - 1277 2002 3 18 1 42 21 2 4.8314 187.77746 900.69890 843.33305 -8.34592 0.00000 -3.75196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69501 -0.01629 -1.00000 - 1279 2002 3 18 1 42 30 665 4.8315 187.76746 900.59879 843.25557 -7.41282 0.00000 -3.46556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69430 -0.01629 -1.00000 - 1281 2002 3 18 1 42 40 328 4.8315 187.75745 900.49291 843.17154 -6.46548 0.00000 -3.17683 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69360 -0.01629 -1.00000 - 1284 2002 3 18 1 42 54 822 4.8316 187.74245 900.31451 843.03353 -5.03236 0.00000 -2.74363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69255 -0.01629 -1.00000 - 1286 2002 3 18 1 43 4 486 4.8317 187.73245 900.18023 842.93400 -4.07143 0.00000 -2.45815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69184 -0.01629 -1.00000 - 1288 2002 3 18 1 43 14 149 4.8317 187.72245 900.03494 842.82886 -3.21678 0.00000 -2.17692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69114 -0.01629 -1.00000 - 1290 2002 3 18 1 43 23 813 4.8318 187.71245 899.87926 842.71852 -3.04289 0.00000 -1.90374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.69044 -0.01629 -1.00000 - 1292 2002 3 18 1 43 33 476 4.8318 187.70245 899.71465 842.60340 -2.89722 0.00000 -1.64105 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68974 -0.01629 -1.00000 - 1294 2002 3 18 1 43 43 140 4.8319 187.69245 899.54134 842.48392 -2.77699 0.00000 -1.38935 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68903 -0.01629 -1.00000 - 1296 2002 3 18 1 43 52 804 4.8320 187.68245 899.35998 842.36041 -2.67220 0.75562 -1.14982 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68833 -0.01628 -1.00000 - 1298 2002 3 18 1 44 2 468 4.8320 187.67245 899.17141 842.23331 -2.57052 1.56339 -0.92360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68763 -0.01628 -1.00000 - 1300 2002 3 18 1 44 12 132 4.8321 187.66246 898.97662 842.10305 -2.47097 2.33193 -0.71132 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68692 -0.01628 -1.00000 - 1302 2002 3 18 1 44 21 796 4.8321 187.65246 898.77668 841.97020 -2.38037 3.13347 -0.51581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68622 -0.01628 -1.00000 - 1304 2002 3 18 1 44 31 460 4.8321 187.64247 898.57276 841.83510 -2.30482 3.90372 -0.33951 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68552 -0.01628 -1.00000 - 1306 2002 3 18 1 44 41 125 4.8321 187.63247 898.36560 841.69830 -2.23396 4.62219 -0.18215 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68482 -0.01628 -1.00000 - 1308 2002 3 18 1 44 50 789 4.8321 187.62248 898.15693 841.56030 -2.16698 5.23991 -0.04548 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68411 -0.01628 -1.00000 - 1310 2002 3 18 1 45 0 453 4.8322 187.61249 897.94748 841.42164 -2.11232 5.79223 0.06870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68341 -0.01628 -1.00000 - 1312 2002 3 18 1 45 10 118 4.8322 187.60249 897.73880 841.28289 -2.06338 6.22447 0.16070 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68271 -0.01628 -1.00000 - 1315 2002 3 18 1 45 24 614 4.8322 187.58751 897.43013 841.07570 -1.99917 6.69780 0.25691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68165 -0.01628 -1.00000 - 1317 2002 3 18 1 45 34 278 4.8322 187.57752 897.22840 840.93881 -1.96085 6.89115 0.29232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68095 -0.01628 -1.00000 - 1319 2002 3 18 1 45 43 943 4.8322 187.56753 897.03073 840.80348 -1.92643 6.97648 0.30440 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.68025 -0.01628 -1.00000 - 1321 2002 3 18 1 45 53 607 4.8322 187.55755 896.83803 840.67001 -1.89703 6.94296 0.29390 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67955 -0.01627 -1.00000 - 1323 2002 3 18 1 46 3 272 4.8323 187.54756 896.66495 840.53889 -1.87375 6.82780 0.26016 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67884 -0.01627 -1.00000 - 1325 2002 3 18 1 46 12 937 4.8323 187.53758 896.49834 840.41056 -1.85746 6.58819 0.20346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67814 -0.01627 -1.00000 - 1327 2002 3 18 1 46 22 601 4.8323 187.52760 896.33706 840.28533 -1.84875 6.27702 0.12612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67744 -0.01627 -1.00000 - 1329 2002 3 18 1 46 32 266 4.8323 187.51763 896.18283 840.16346 -1.84761 5.84372 0.02782 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67673 -0.01627 -1.00000 - 1331 2002 3 18 1 46 41 930 4.8323 187.50765 896.03477 840.04531 -1.85396 5.35014 -0.08824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67603 -0.01627 -1.00000 - 1333 2002 3 18 1 46 51 595 4.8324 187.49768 895.89258 839.93097 -1.86822 4.75268 -0.22297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67533 -0.01627 -1.00000 - 1335 2002 3 18 1 47 1 260 4.8324 187.48771 895.75649 839.82071 -1.90040 4.08776 -0.37475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67463 -0.01627 -1.00000 - 1337 2002 3 18 1 47 10 925 4.8324 187.47775 895.62653 839.71473 -1.94049 3.37388 -0.54109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67392 -0.01627 -1.00000 - 1339 2002 3 18 1 47 20 589 4.8324 187.46778 895.50284 839.61296 -1.99484 2.59935 -0.72057 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67322 -0.01627 -1.00000 - 1341 2002 3 18 1 47 30 254 4.8324 187.45782 895.38551 839.51550 -2.06188 1.81427 -0.91103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67252 -0.01627 -1.00000 - 1344 2002 3 18 1 47 44 752 4.8325 187.44287 895.22361 839.37732 -2.18626 0.56621 -1.21574 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67146 -0.01626 -1.00000 - 1346 2002 3 18 1 47 54 417 4.8325 187.43291 895.12417 839.29043 -2.30307 0.00000 -1.42898 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67076 -0.01626 -1.00000 - 1348 2002 3 18 1 48 4 82 4.8325 187.42295 895.03128 839.20779 -2.43045 0.00000 -1.64680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.67006 -0.01626 -1.00000 - 1350 2002 3 18 1 48 13 747 4.8325 187.41299 894.94600 839.12900 -2.67270 0.00000 -1.86956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66935 -0.01626 -1.00000 - 1352 2002 3 18 1 48 23 412 4.8325 187.40302 894.86908 839.05412 -3.32807 0.00000 -2.09280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66865 -0.01626 -1.00000 - 1354 2002 3 18 1 48 33 77 4.8325 187.39306 894.79857 838.98284 -4.07375 0.00000 -2.31660 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66795 -0.01626 -1.00000 - 1356 2002 3 18 1 48 42 742 4.8326 187.38310 894.73563 838.91518 -4.82492 0.00000 -2.54106 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66725 -0.01626 -1.00000 - 1358 2002 3 18 1 48 52 407 4.8326 187.37315 894.67820 838.85107 -5.55774 0.00000 -2.76333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66654 -0.01626 -1.00000 - 1360 2002 3 18 1 49 2 72 4.8326 187.36319 894.62529 838.79019 -6.26093 0.00000 -2.98281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66584 -0.01626 -1.00000 - 1362 2002 3 18 1 49 11 737 4.8326 187.35323 894.57702 838.73242 -6.94309 0.00000 -3.19766 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66514 -0.01626 -1.00000 - 1364 2002 3 18 1 49 21 403 4.8326 187.34328 894.53344 838.67765 -7.59000 0.00000 -3.40594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66443 -0.01626 -1.00000 - 1366 2002 3 18 1 49 31 68 4.8327 187.33333 894.49352 838.62580 -8.19951 0.00000 -3.60899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66373 -0.01626 -1.00000 - 1368 2002 3 18 1 49 40 733 4.8327 187.32338 894.45620 838.57667 -8.80807 0.00000 -3.80396 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66303 -0.01625 -1.00000 - 1370 2002 3 18 1 49 50 399 4.8327 187.31344 894.42278 838.53005 -9.39515 0.00000 -3.98950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66233 -0.01625 -1.00000 - 1372 2002 3 18 1 50 0 64 4.8327 187.30350 894.39187 838.48577 -9.95337 0.00000 -4.16545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66162 -0.01625 -1.00000 - 1375 2002 3 18 1 50 14 562 4.8327 187.28859 894.34853 838.42330 -10.65478 0.00000 -4.40645 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.66057 -0.01625 -1.00000 - 1377 2002 3 18 1 50 24 228 4.8328 187.27866 894.32268 838.38394 -11.04636 0.00000 -4.55194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65987 -0.01625 -1.00000 - 1379 2002 3 18 1 50 33 893 4.8328 187.26873 894.29911 838.34632 -11.37893 0.00000 -4.68320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65916 -0.01625 -1.00000 - 1381 2002 3 18 1 50 43 559 4.8328 187.25880 894.27643 838.31010 -11.65634 0.00000 -4.80191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65846 -0.01625 -1.00000 - 1383 2002 3 18 1 50 53 225 4.8328 187.24887 894.25506 838.27527 -11.91091 0.00000 -4.90734 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65776 -0.01625 -1.00000 - 1385 2002 3 18 1 51 2 890 4.8328 187.23895 894.23508 838.24172 -12.09027 0.00000 -4.99827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65705 -0.01625 -1.00000 - 1387 2002 3 18 1 51 12 556 4.8329 187.22902 894.21586 838.20914 -12.22135 0.00000 -5.07406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65635 -0.01625 -1.00000 - 1389 2002 3 18 1 51 22 222 4.8329 187.21910 894.19736 838.17742 -12.30605 0.00000 -5.13403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65565 -0.01625 -1.00000 - 1391 2002 3 18 1 51 31 888 4.8329 187.20918 894.17933 838.14634 -12.34414 0.00000 -5.17772 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65494 -0.01625 -1.00000 - 1393 2002 3 18 1 51 41 553 4.8329 187.19925 894.16342 838.11576 -12.33663 0.00000 -5.20696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65424 -0.01624 -1.00000 - 1395 2002 3 18 1 51 51 219 4.8329 187.18933 894.14787 838.08533 -12.28503 0.00000 -5.22098 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65354 -0.01624 -1.00000 - 1397 2002 3 18 1 52 0 885 4.8330 187.17942 894.13211 838.05502 -12.19286 0.00000 -5.22097 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65284 -0.01624 -1.00000 - 1399 2002 3 18 1 52 10 551 4.8330 187.16950 894.11521 838.02454 -12.08837 0.00000 -5.20676 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65213 -0.01624 -1.00000 - 1401 2002 3 18 1 52 20 217 4.8330 187.15958 894.09750 837.99373 -11.92121 0.00000 -5.17796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65143 -0.01624 -1.00000 - 1404 2002 3 18 1 52 34 716 4.8330 187.14471 894.06816 837.94626 -11.60688 0.00000 -5.10847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.65038 -0.01624 -1.00000 - 1406 2002 3 18 1 52 44 382 4.8330 187.13480 894.04625 837.91349 -11.36035 0.00000 -5.04417 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64967 -0.01624 -1.00000 - 1408 2002 3 18 1 52 54 48 4.8331 187.12489 894.02216 837.87942 -11.08680 0.00000 -4.96763 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64897 -0.01624 -1.00000 - 1410 2002 3 18 1 53 3 714 4.8331 187.11498 893.99500 837.84387 -10.81097 0.00000 -4.87876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64827 -0.01624 -1.00000 - 1412 2002 3 18 1 53 13 381 4.8331 187.10507 893.96505 837.80678 -10.49935 0.00000 -4.77915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64756 -0.01624 -1.00000 - 1414 2002 3 18 1 53 23 47 4.8331 187.09516 893.93165 837.76779 -10.17813 0.00000 -4.66923 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64686 -0.01624 -1.00000 - 1416 2002 3 18 1 53 32 713 4.8331 187.08525 893.89430 837.72668 -9.84106 0.00000 -4.54897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64616 -0.01623 -1.00000 - 1418 2002 3 18 1 53 42 379 4.8332 187.07535 893.85327 837.68338 -9.47751 0.00000 -4.41872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64546 -0.01623 -1.00000 - 1420 2002 3 18 1 53 52 46 4.8332 187.06544 893.80780 837.63754 -9.10546 0.00000 -4.28021 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64475 -0.01623 -1.00000 - 1422 2002 3 18 1 54 1 712 4.8332 187.05554 893.75795 837.58901 -8.72617 0.00000 -4.13279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64405 -0.01623 -1.00000 - 1424 2002 3 18 1 54 11 379 4.8332 187.04563 893.70359 837.53754 -8.34310 0.00000 -3.97834 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64335 -0.01623 -1.00000 - 1426 2002 3 18 1 54 21 45 4.8332 187.03573 893.64384 837.48305 -7.94368 0.00000 -3.81795 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64264 -0.01623 -1.00000 - 1428 2002 3 18 1 54 30 712 4.8333 187.02582 893.58202 837.42539 -7.53369 0.00000 -3.65197 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64194 -0.01623 -1.00000 - 1430 2002 3 18 1 54 40 378 4.8333 187.01592 893.51518 837.36433 -7.13882 0.00000 -3.48239 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64124 -0.01623 -1.00000 - 1432 2002 3 18 1 54 50 45 4.8333 187.00601 893.44305 837.29988 -6.71169 0.00000 -3.30951 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.64053 -0.01623 -1.00000 - 1435 2002 3 18 1 55 4 545 4.8333 186.99115 893.32763 837.19641 -6.05331 0.00000 -3.04371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63948 -0.01623 -1.00000 - 1437 2002 3 18 1 55 14 211 4.8334 186.98124 893.24564 837.12279 -5.60508 0.00000 -2.86464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63878 -0.01623 -1.00000 - 1439 2002 3 18 1 55 23 878 4.8334 186.97133 893.15959 837.04538 -5.14642 0.00000 -2.68416 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63807 -0.01623 -1.00000 - 1441 2002 3 18 1 55 33 545 4.8334 186.96143 893.06997 836.96410 -4.69181 0.00000 -2.50414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63737 -0.01622 -1.00000 - 1443 2002 3 18 1 55 43 212 4.8334 186.95152 892.97627 836.87905 -4.22600 0.00000 -2.32677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63667 -0.01622 -1.00000 - 1445 2002 3 18 1 55 52 879 4.8334 186.94161 892.88050 836.79036 -3.74157 0.00000 -2.15186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63597 -0.01622 -1.00000 - 1447 2002 3 18 1 56 2 546 4.8335 186.93171 892.77828 836.69791 -3.25424 0.00000 -1.98087 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63526 -0.01622 -1.00000 - 1449 2002 3 18 1 56 12 213 4.8335 186.92181 892.66915 836.60184 -2.76589 0.00000 -1.81340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63456 -0.01622 -1.00000 - 1451 2002 3 18 1 56 21 880 4.8335 186.91191 892.55326 836.50218 -2.27881 0.00000 -1.65210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63386 -0.01622 -1.00000 - 1453 2002 3 18 1 56 31 547 4.8335 186.90201 892.43055 836.39910 -2.09942 0.00000 -1.49832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63315 -0.01622 -1.00000 - 1455 2002 3 18 1 56 41 214 4.8335 186.89211 892.30228 836.29297 -2.01616 0.00000 -1.35260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63245 -0.01622 -1.00000 - 1457 2002 3 18 1 56 50 881 4.8336 186.88222 892.16786 836.18384 -1.95434 0.00000 -1.21620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63175 -0.01622 -1.00000 - 1459 2002 3 18 1 57 0 548 4.8336 186.87232 892.02758 836.07186 -1.90429 0.00000 -1.08887 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63104 -0.01622 -1.00000 - 1461 2002 3 18 1 57 10 215 4.8336 186.86243 891.88166 835.95731 -1.86874 0.03189 -0.97078 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.63034 -0.01622 -1.00000 - 1464 2002 3 18 1 57 24 716 4.8336 186.84760 891.65323 835.78120 -1.83096 0.66010 -0.81648 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62929 -0.01621 -1.00000 - 1466 2002 3 18 1 57 34 383 4.8337 186.83772 891.49503 835.66131 -1.81663 1.05277 -0.72944 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62858 -0.01621 -1.00000 - 1468 2002 3 18 1 57 44 51 4.8337 186.82783 891.33260 835.53977 -1.81047 1.41934 -0.65554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62788 -0.01621 -1.00000 - 1470 2002 3 18 1 57 53 718 4.8337 186.81795 891.16670 835.41685 -1.81355 1.74386 -0.59519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62718 -0.01621 -1.00000 - 1472 2002 3 18 1 58 3 386 4.8337 186.80808 890.99776 835.29295 -1.82543 2.03999 -0.54771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62647 -0.01621 -1.00000 - 1474 2002 3 18 1 58 13 53 4.8337 186.79820 890.82628 835.16836 -1.84419 2.29355 -0.51613 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62577 -0.01621 -1.00000 - 1476 2002 3 18 1 58 22 721 4.8338 186.78833 890.65280 835.04338 -1.86925 2.49943 -0.49956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62507 -0.01621 -1.00000 - 1478 2002 3 18 1 58 32 388 4.8338 186.77845 890.47815 834.91844 -1.90016 2.64267 -0.49824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62437 -0.01621 -1.00000 - 1480 2002 3 18 1 58 42 56 4.8338 186.76858 890.30309 834.79387 -1.93921 2.74257 -0.51316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62366 -0.01621 -1.00000 - 1482 2002 3 18 1 58 51 723 4.8338 186.75871 890.12828 834.67010 -1.98746 2.79558 -0.54373 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62296 -0.01621 -1.00000 - 1484 2002 3 18 1 59 1 391 4.8339 186.74884 889.95394 834.54731 -2.04187 2.79343 -0.58948 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62226 -0.01621 -1.00000 - 1486 2002 3 18 1 59 11 59 4.8339 186.73897 889.78095 834.42594 -2.10184 2.73440 -0.65013 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62155 -0.01621 -1.00000 - 1488 2002 3 18 1 59 20 727 4.8339 186.72910 889.60983 834.30629 -2.17195 2.61969 -0.72435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62085 -0.01620 -1.00000 - 1490 2002 3 18 1 59 30 394 4.8339 186.71923 889.44152 834.18873 -2.25775 2.45043 -0.81309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.62015 -0.01620 -1.00000 - 1492 2002 3 18 1 59 40 62 4.8339 186.70936 889.27606 834.07348 -2.34772 2.22805 -0.91590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61944 -0.01620 -1.00000 - 1495 2002 3 18 1 59 54 564 4.8340 186.69456 889.03552 833.90587 -2.51279 1.78126 -1.09618 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61839 -0.01620 -1.00000 - 1497 2002 3 18 2 0 4 232 4.8340 186.68469 888.88278 833.79803 -2.62857 1.41832 -1.23337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61769 -0.01620 -1.00000 - 1499 2002 3 18 2 0 13 900 4.8340 186.67483 888.74251 833.69375 -2.76536 1.01374 -1.38137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61698 -0.01620 -1.00000 - 1501 2002 3 18 2 0 23 568 4.8340 186.66496 888.61274 833.59312 -2.91350 0.56492 -1.53941 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61628 -0.01620 -1.00000 - 1503 2002 3 18 2 0 33 236 4.8341 186.65510 888.48983 833.49634 -3.08025 0.07133 -1.70639 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61558 -0.01620 -1.00000 - 1505 2002 3 18 2 0 42 905 4.8341 186.64524 888.37679 833.40356 -3.24949 0.00000 -1.88132 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61487 -0.01620 -1.00000 - 1507 2002 3 18 2 0 52 573 4.8341 186.63538 888.27084 833.31504 -3.44988 0.00000 -2.06356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61417 -0.01620 -1.00000 - 1509 2002 3 18 2 1 2 241 4.8341 186.62552 888.17179 833.23088 -3.65558 0.00000 -2.25217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61347 -0.01620 -1.00000 - 1511 2002 3 18 2 1 11 909 4.8342 186.61566 888.08014 833.15114 -3.91556 0.00000 -2.44592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61276 -0.01619 -1.00000 - 1513 2002 3 18 2 1 21 578 4.8342 186.60581 887.99741 833.07597 -4.17024 0.00000 -2.64156 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61206 -0.01619 -1.00000 - 1515 2002 3 18 2 1 31 246 4.8342 186.59596 887.92234 833.00539 -4.49107 0.00000 -2.83805 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61136 -0.01619 -1.00000 - 1517 2002 3 18 2 1 40 915 4.8342 186.58611 887.85428 832.93929 -4.93732 0.00000 -3.03481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.61066 -0.01619 -1.00000 - 1519 2002 3 18 2 1 50 583 4.8342 186.57627 887.79312 832.87770 -5.43783 0.00000 -3.22921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60995 -0.01619 -1.00000 - 1521 2002 3 18 2 2 0 252 4.8343 186.56643 887.73869 832.82050 -5.97529 0.00000 -3.42170 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60925 -0.01619 -1.00000 - 1524 2002 3 18 2 2 14 754 4.8343 186.55167 887.66949 832.74293 -6.83721 0.00000 -3.70177 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60819 -0.01619 -1.00000 - 1526 2002 3 18 2 2 24 423 4.8343 186.54183 887.63121 832.69633 -7.40037 0.00000 -3.88072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60749 -0.01619 -1.00000 - 1528 2002 3 18 2 2 34 92 4.8343 186.53199 887.59896 832.65357 -7.98625 0.00000 -4.05340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60679 -0.01619 -1.00000 - 1530 2002 3 18 2 2 43 760 4.8344 186.52215 887.57227 832.61460 -8.58539 0.00000 -4.21800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60608 -0.01619 -1.00000 - 1532 2002 3 18 2 2 53 429 4.8344 186.51232 887.55120 832.57914 -9.13184 0.00000 -4.37281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60538 -0.01619 -1.00000 - 1534 2002 3 18 2 3 3 98 4.8344 186.50248 887.53712 832.54692 -9.65937 0.00000 -4.51722 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60468 -0.01619 -1.00000 - 1536 2002 3 18 2 3 12 767 4.8344 186.49265 887.52765 832.51763 -10.16326 0.00000 -4.64900 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60398 -0.01618 -1.00000 - 1538 2002 3 18 2 3 22 436 4.8345 186.48282 887.52249 832.49099 -10.64094 0.00000 -4.76787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60327 -0.01618 -1.00000 - 1540 2002 3 18 2 3 32 105 4.8345 186.47298 887.52063 832.46669 -11.08510 0.00000 -4.87398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60257 -0.01618 -1.00000 - 1542 2002 3 18 2 3 41 774 4.8345 186.46315 887.52168 832.44433 -11.51474 0.00000 -4.96602 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60187 -0.01618 -1.00000 - 1544 2002 3 18 2 3 51 443 4.8345 186.45332 887.52487 832.42344 -11.96067 0.00000 -5.04450 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60116 -0.01618 -1.00000 - 1546 2002 3 18 2 4 1 112 4.8346 186.44348 887.52914 832.40363 -12.32917 0.00000 -5.10656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.60046 -0.01618 -1.00000 - 1548 2002 3 18 2 4 10 781 4.8346 186.43365 887.53582 832.38438 -12.63930 0.00000 -5.15217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59976 -0.01618 -1.00000 - 1550 2002 3 18 2 4 20 450 4.8346 186.42382 887.54464 832.36521 -12.88901 0.00000 -5.18129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59905 -0.01618 -1.00000 - 1552 2002 3 18 2 4 30 119 4.8346 186.41400 887.55287 832.34560 -13.07565 0.00000 -5.19217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59835 -0.01618 -1.00000 - 1555 2002 3 18 2 4 44 623 4.8347 186.39926 887.56139 832.31434 -13.25288 0.00000 -5.17539 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59730 -0.01618 -1.00000 - 1557 2002 3 18 2 4 54 293 4.8347 186.38944 887.56358 832.29180 -13.28839 0.00000 -5.14243 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59659 -0.01618 -1.00000 - 1559 2002 3 18 2 5 3 962 4.8347 186.37961 887.56428 832.26730 -13.27304 0.00000 -5.09295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59589 -0.01617 -1.00000 - 1561 2002 3 18 2 5 13 632 4.8347 186.36979 887.56267 832.24044 -13.19704 0.00000 -5.02725 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59519 -0.01617 -1.00000 - 1563 2002 3 18 2 5 23 301 4.8348 186.35997 887.55632 832.21089 -13.04775 0.00000 -4.94433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59448 -0.01617 -1.00000 - 1565 2002 3 18 2 5 32 971 4.8348 186.35015 887.54422 832.17819 -12.83931 0.00000 -4.84508 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59378 -0.01617 -1.00000 - 1567 2002 3 18 2 5 42 640 4.8348 186.34033 887.52749 832.14204 -12.56773 0.00000 -4.72917 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59308 -0.01617 -1.00000 - 1569 2002 3 18 2 5 52 310 4.8348 186.33052 887.50621 832.10204 -12.22770 0.00000 -4.59843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59237 -0.01617 -1.00000 - 1571 2002 3 18 2 6 1 980 4.8349 186.32070 887.47708 832.05797 -11.82569 0.00000 -4.45391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59167 -0.01617 -1.00000 - 1573 2002 3 18 2 6 11 649 4.8349 186.31088 887.44060 832.00953 -11.37432 0.00000 -4.29621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59097 -0.01617 -1.00000 - 1575 2002 3 18 2 6 21 319 4.8349 186.30107 887.39799 831.95656 -10.86212 0.00000 -4.12863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.59026 -0.01617 -1.00000 - 1577 2002 3 18 2 6 30 989 4.8349 186.29125 887.34484 831.89893 -10.28934 0.00000 -3.95057 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58956 -0.01617 -1.00000 - 1579 2002 3 18 2 6 40 659 4.8350 186.28144 887.28633 831.83646 -9.67182 0.00000 -3.76343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58886 -0.01617 -1.00000 - 1581 2002 3 18 2 6 50 329 4.8350 186.27162 887.21748 831.76912 -9.01258 0.00000 -3.56904 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58815 -0.01617 -1.00000 - 1584 2002 3 18 2 7 4 834 4.8350 186.25690 887.10168 831.65890 -7.95014 0.00000 -3.26666 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58710 -0.01616 -1.00000 - 1586 2002 3 18 2 7 14 504 4.8350 186.24709 887.01348 831.57926 -7.21216 0.00000 -3.06016 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58640 -0.01616 -1.00000 - 1588 2002 3 18 2 7 24 174 4.8351 186.23728 886.91545 831.49479 -6.45087 0.00000 -2.85191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58569 -0.01616 -1.00000 - 1590 2002 3 18 2 7 33 844 4.8351 186.22747 886.80788 831.40565 -5.66155 0.00000 -2.64234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58499 -0.01616 -1.00000 - 1592 2002 3 18 2 7 43 514 4.8351 186.21766 886.69082 831.31190 -4.86613 0.00000 -2.43402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58429 -0.01616 -1.00000 - 1594 2002 3 18 2 7 53 185 4.8351 186.20785 886.56452 831.21372 -4.07045 0.00000 -2.22854 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58358 -0.01616 -1.00000 - 1596 2002 3 18 2 8 2 855 4.8352 186.19805 886.42983 831.11137 -3.28005 0.00000 -2.02800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58288 -0.01616 -1.00000 - 1598 2002 3 18 2 8 12 525 4.8352 186.18824 886.28702 831.00516 -2.58292 0.00000 -1.83510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58218 -0.01616 -1.00000 - 1600 2002 3 18 2 8 22 196 4.8352 186.17844 886.13752 830.89546 -2.46879 0.00000 -1.65044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58147 -0.01616 -1.00000 - 1602 2002 3 18 2 8 31 866 4.8352 186.16864 885.98115 830.78248 -2.38949 0.00000 -1.47455 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58077 -0.01616 -1.00000 - 1604 2002 3 18 2 8 41 537 4.8353 186.15884 885.81851 830.66643 -2.32744 0.00000 -1.30930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.58007 -0.01616 -1.00000 - 1606 2002 3 18 2 8 51 207 4.8353 186.14904 885.65018 830.54773 -2.28223 0.42643 -1.15480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57936 -0.01616 -1.00000 - 1608 2002 3 18 2 9 0 878 4.8353 186.13924 885.47712 830.42665 -2.25174 1.08992 -1.01214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57866 -0.01615 -1.00000 - 1610 2002 3 18 2 9 10 549 4.8353 186.12944 885.29978 830.30357 -2.22933 1.71799 -0.88390 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57796 -0.01615 -1.00000 - 1612 2002 3 18 2 9 20 219 4.8354 186.11965 885.11874 830.17877 -2.21419 2.29906 -0.76961 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57725 -0.01615 -1.00000 - 1615 2002 3 18 2 9 34 725 4.8354 186.10496 884.84245 829.98927 -2.20455 3.03587 -0.62947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57620 -0.01615 -1.00000 - 1617 2002 3 18 2 9 44 396 4.8354 186.09517 884.65647 829.86206 -2.20479 3.44275 -0.55686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57550 -0.01615 -1.00000 - 1619 2002 3 18 2 9 54 67 4.8355 186.08538 884.47041 829.73462 -2.21137 3.74945 -0.50236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57479 -0.01615 -1.00000 - 1621 2002 3 18 2 10 3 738 4.8355 186.07559 884.28485 829.60742 -2.22422 3.98593 -0.46683 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57409 -0.01615 -1.00000 - 1623 2002 3 18 2 10 13 409 4.8355 186.06581 884.10061 829.48084 -2.24506 4.15035 -0.44894 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57339 -0.01615 -1.00000 - 1625 2002 3 18 2 10 23 80 4.8355 186.05603 883.91843 829.35526 -2.27033 4.23315 -0.44942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57268 -0.01615 -1.00000 - 1627 2002 3 18 2 10 32 751 4.8356 186.04624 883.73868 829.23103 -2.29983 4.23834 -0.46702 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57198 -0.01615 -1.00000 - 1629 2002 3 18 2 10 42 422 4.8356 186.03646 883.56235 829.10843 -2.33553 4.16782 -0.50193 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57128 -0.01615 -1.00000 - 1631 2002 3 18 2 10 52 94 4.8356 186.02668 883.39024 828.98789 -2.37858 4.02375 -0.55461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.57057 -0.01614 -1.00000 - 1633 2002 3 18 2 11 1 765 4.8356 186.01690 883.23052 828.86975 -2.42553 3.80443 -0.62516 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56987 -0.01614 -1.00000 - 1635 2002 3 18 2 11 11 436 4.8357 186.00713 883.07816 828.75426 -2.47675 3.48993 -0.71219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56917 -0.01614 -1.00000 - 1637 2002 3 18 2 11 21 107 4.8357 185.99735 882.93136 828.64182 -2.53100 3.13645 -0.81409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56846 -0.01614 -1.00000 - 1639 2002 3 18 2 11 30 779 4.8357 185.98758 882.79024 828.53261 -2.58835 2.71685 -0.92981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56776 -0.01614 -1.00000 - 1641 2002 3 18 2 11 40 450 4.8357 185.97780 882.65508 828.42680 -2.64883 2.23530 -1.05966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56706 -0.01614 -1.00000 - 1643 2002 3 18 2 11 50 122 4.8358 185.96803 882.52614 828.32470 -2.72065 1.69947 -1.20121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56635 -0.01614 -1.00000 - 1646 2002 3 18 2 12 4 629 4.8358 185.95338 882.34656 828.17875 -2.85252 0.80937 -1.43465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56530 -0.01614 -1.00000 - 1648 2002 3 18 2 12 14 301 4.8358 185.94361 882.23502 828.08652 -2.95144 0.18000 -1.60246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56459 -0.01614 -1.00000 - 1650 2002 3 18 2 12 23 973 4.8359 185.93384 882.13010 827.99840 -3.06483 0.00000 -1.77740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56389 -0.01614 -1.00000 - 1652 2002 3 18 2 12 33 644 4.8359 185.92408 882.03201 827.91442 -3.19501 0.00000 -1.95910 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56319 -0.01614 -1.00000 - 1654 2002 3 18 2 12 43 316 4.8359 185.91431 881.94067 827.83465 -3.34518 0.00000 -2.14547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56248 -0.01614 -1.00000 - 1656 2002 3 18 2 12 52 988 4.8359 185.90455 881.85599 827.75896 -3.55203 0.00000 -2.33447 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56178 -0.01613 -1.00000 - 1658 2002 3 18 2 13 2 660 4.8360 185.89479 881.77804 827.68733 -3.89671 0.00000 -2.52499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56108 -0.01613 -1.00000 - 1660 2002 3 18 2 13 12 332 4.8360 185.88502 881.70735 827.61969 -4.46896 0.00000 -2.71453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.56037 -0.01613 -1.00000 - 1662 2002 3 18 2 13 22 4 4.8360 185.87526 881.64428 827.55598 -5.06010 0.00000 -2.90292 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55967 -0.01613 -1.00000 - 1664 2002 3 18 2 13 31 676 4.8360 185.86550 881.58747 827.49613 -5.69150 0.00000 -3.09050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55897 -0.01613 -1.00000 - 1666 2002 3 18 2 13 41 348 4.8361 185.85574 881.53705 827.44001 -6.31679 0.00000 -3.27389 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55826 -0.01613 -1.00000 - 1668 2002 3 18 2 13 51 20 4.8361 185.84599 881.49260 827.38731 -6.92960 0.00000 -3.45254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55756 -0.01613 -1.00000 - 1670 2002 3 18 2 14 0 693 4.8361 185.83623 881.45337 827.33792 -7.53218 0.00000 -3.62481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55686 -0.01613 -1.00000 - 1672 2002 3 18 2 14 10 365 4.8362 185.82648 881.41946 827.29158 -8.10494 0.00000 -3.78956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55615 -0.01613 -1.00000 - 1674 2002 3 18 2 14 20 37 4.8362 185.81672 881.39015 827.24816 -8.65360 0.00000 -3.94630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55545 -0.01613 -1.00000 - 1677 2002 3 18 2 14 34 546 4.8362 185.80209 881.35740 827.18807 -9.43548 0.00000 -4.16473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55440 -0.01613 -1.00000 - 1679 2002 3 18 2 14 44 218 4.8363 185.79235 881.33994 827.15096 -9.91705 0.00000 -4.29773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55369 -0.01612 -1.00000 - 1681 2002 3 18 2 14 53 891 4.8363 185.78260 881.32575 827.11593 -10.40693 0.00000 -4.41877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55299 -0.01612 -1.00000 - 1683 2002 3 18 2 15 3 563 4.8363 185.77285 881.31417 827.08256 -10.85057 0.00000 -4.52715 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55228 -0.01612 -1.00000 - 1685 2002 3 18 2 15 13 236 4.8363 185.76311 881.30413 827.05045 -11.24128 0.00000 -4.62206 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55158 -0.01612 -1.00000 - 1687 2002 3 18 2 15 22 909 4.8364 185.75337 881.29556 827.01922 -11.57280 0.00000 -4.70211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55088 -0.01612 -1.00000 - 1689 2002 3 18 2 15 32 582 4.8364 185.74363 881.28717 826.98853 -11.84484 0.00000 -4.76751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.55017 -0.01612 -1.00000 - 1691 2002 3 18 2 15 42 254 4.8364 185.73389 881.27852 826.95795 -12.05923 0.00000 -4.81860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54947 -0.01612 -1.00000 - 1693 2002 3 18 2 15 51 927 4.8364 185.72416 881.26928 826.92726 -12.21908 0.00000 -4.85425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54877 -0.01612 -1.00000 - 1695 2002 3 18 2 16 1 600 4.8365 185.71442 881.25927 826.89603 -12.34897 0.00000 -4.87597 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54806 -0.01612 -1.00000 - 1697 2002 3 18 2 16 11 273 4.8365 185.70469 881.24846 826.86411 -12.40673 0.00000 -4.88164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54736 -0.01612 -1.00000 - 1699 2002 3 18 2 16 20 946 4.8365 185.69496 881.23504 826.83111 -12.41274 0.00000 -4.87210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54666 -0.01612 -1.00000 - 1701 2002 3 18 2 16 30 619 4.8366 185.68523 881.21871 826.79667 -12.36752 0.00000 -4.84671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54595 -0.01612 -1.00000 - 1703 2002 3 18 2 16 40 293 4.8366 185.67549 881.19915 826.76052 -12.26871 0.00000 -4.80533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54525 -0.01611 -1.00000 - 1706 2002 3 18 2 16 54 802 4.8366 185.66090 881.16214 826.70246 -12.01751 0.00000 -4.71583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54420 -0.01611 -1.00000 - 1708 2002 3 18 2 17 4 476 4.8367 185.65117 881.13201 826.66086 -11.78061 0.00000 -4.63911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54349 -0.01611 -1.00000 - 1710 2002 3 18 2 17 14 149 4.8367 185.64144 881.09676 826.61658 -11.50111 0.00000 -4.54960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54279 -0.01611 -1.00000 - 1712 2002 3 18 2 17 23 822 4.8367 185.63172 881.05705 826.56943 -11.17239 0.00000 -4.44852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54208 -0.01611 -1.00000 - 1714 2002 3 18 2 17 33 496 4.8367 185.62199 881.01310 826.51931 -10.78630 0.00000 -4.33520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54138 -0.01611 -1.00000 - 1716 2002 3 18 2 17 43 169 4.8368 185.61227 880.96234 826.46595 -10.35709 0.00000 -4.21077 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.54068 -0.01611 -1.00000 - 1718 2002 3 18 2 17 52 843 4.8368 185.60254 880.90473 826.40919 -9.88890 0.00000 -4.07639 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53997 -0.01611 -1.00000 - 1720 2002 3 18 2 18 2 517 4.8368 185.59282 880.84159 826.34891 -9.38394 0.00000 -3.93267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53927 -0.01611 -1.00000 - 1722 2002 3 18 2 18 12 190 4.8369 185.58310 880.77216 826.28502 -8.84621 0.00000 -3.78172 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53857 -0.01611 -1.00000 - 1724 2002 3 18 2 18 21 864 4.8369 185.57338 880.69608 826.21755 -8.28081 0.00000 -3.62499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53786 -0.01611 -1.00000 - 1726 2002 3 18 2 18 31 538 4.8369 185.56367 880.61406 826.14637 -7.70540 0.00000 -3.46363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53716 -0.01610 -1.00000 - 1728 2002 3 18 2 18 41 212 4.8369 185.55395 880.52491 826.07156 -7.11578 0.00000 -3.29914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53646 -0.01610 -1.00000 - 1730 2002 3 18 2 18 50 886 4.8370 185.54424 880.42968 825.99332 -6.50669 0.00000 -3.13173 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53575 -0.01610 -1.00000 - 1732 2002 3 18 2 19 0 560 4.8370 185.53452 880.32827 825.91148 -5.91020 0.00000 -2.96406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53505 -0.01610 -1.00000 - 1734 2002 3 18 2 19 10 234 4.8370 185.52481 880.22120 825.82623 -5.28914 0.00000 -2.79557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53435 -0.01610 -1.00000 - 1737 2002 3 18 2 19 24 745 4.8371 185.51025 880.05037 825.69212 -4.36471 0.00000 -2.54576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53329 -0.01610 -1.00000 - 1739 2002 3 18 2 19 34 419 4.8371 185.50054 879.93024 825.59881 -3.75862 0.00000 -2.38314 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53259 -0.01610 -1.00000 - 1741 2002 3 18 2 19 44 93 4.8371 185.49084 879.80467 825.50259 -3.30756 0.00000 -2.22500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53188 -0.01610 -1.00000 - 1743 2002 3 18 2 19 53 768 4.8372 185.48113 879.67410 825.40365 -3.08813 0.00000 -2.07371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53118 -0.01610 -1.00000 - 1745 2002 3 18 2 20 3 442 4.8372 185.47143 879.53905 825.30230 -2.94381 0.00000 -1.92852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.53048 -0.01610 -1.00000 - 1747 2002 3 18 2 20 13 117 4.8372 185.46173 879.39982 825.19868 -2.82718 0.00000 -1.79096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52977 -0.01610 -1.00000 - 1749 2002 3 18 2 20 22 791 4.8373 185.45203 879.25664 825.09297 -2.74930 0.00000 -1.66122 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52907 -0.01610 -1.00000 - 1751 2002 3 18 2 20 32 466 4.8373 185.44233 879.11016 824.98546 -2.68003 0.00000 -1.53972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52837 -0.01609 -1.00000 - 1753 2002 3 18 2 20 42 140 4.8373 185.43263 878.96066 824.87636 -2.61438 0.00000 -1.42809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52766 -0.01609 -1.00000 - 1755 2002 3 18 2 20 51 815 4.8373 185.42293 878.80874 824.76594 -2.55925 0.38385 -1.32782 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52696 -0.01609 -1.00000 - 1757 2002 3 18 2 21 1 490 4.8374 185.41323 878.65491 824.65449 -2.52019 0.76366 -1.23932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52626 -0.01609 -1.00000 - 1759 2002 3 18 2 21 11 164 4.8374 185.40353 878.50008 824.54226 -2.48655 1.07046 -1.16382 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52555 -0.01609 -1.00000 - 1761 2002 3 18 2 21 20 839 4.8374 185.39384 878.34459 824.42966 -2.45914 1.34759 -1.10062 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52485 -0.01609 -1.00000 - 1763 2002 3 18 2 21 30 514 4.8375 185.38414 878.18923 824.31692 -2.43801 1.56731 -1.05028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52414 -0.01609 -1.00000 - 1765 2002 3 18 2 21 40 189 4.8375 185.37445 878.03443 824.20427 -2.41959 1.73034 -1.01281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52344 -0.01609 -1.00000 - 1768 2002 3 18 2 21 54 702 4.8375 185.35991 877.80426 824.03613 -2.40228 1.87337 -0.98003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52239 -0.01609 -1.00000 - 1770 2002 3 18 2 22 4 377 4.8376 185.35022 877.65292 823.92490 -2.40002 1.90385 -0.97508 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52168 -0.01609 -1.00000 - 1772 2002 3 18 2 22 14 52 4.8376 185.34053 877.50368 823.81471 -2.40285 1.88449 -0.98375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52098 -0.01609 -1.00000 - 1774 2002 3 18 2 22 23 727 4.8376 185.33084 877.35778 823.70574 -2.41010 1.80187 -1.00612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.52028 -0.01608 -1.00000 - 1776 2002 3 18 2 22 33 403 4.8377 185.32116 877.21578 823.59818 -2.42124 1.67167 -1.04226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51957 -0.01608 -1.00000 - 1778 2002 3 18 2 22 43 78 4.8377 185.31147 877.07910 823.49235 -2.43698 1.49899 -1.09030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51887 -0.01608 -1.00000 - 1780 2002 3 18 2 22 52 754 4.8377 185.30179 876.94624 823.38832 -2.46394 1.27956 -1.14969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51816 -0.01608 -1.00000 - 1782 2002 3 18 2 23 2 429 4.8378 185.29211 876.81765 823.28627 -2.49483 1.01459 -1.22032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51746 -0.01608 -1.00000 - 1784 2002 3 18 2 23 12 105 4.8378 185.28244 876.69337 823.18631 -2.53159 0.70754 -1.30112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51676 -0.01608 -1.00000 - 1786 2002 3 18 2 23 21 780 4.8378 185.27276 876.57279 823.08864 -2.57078 0.36289 -1.39207 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51605 -0.01608 -1.00000 - 1788 2002 3 18 2 23 31 456 4.8379 185.26308 876.45667 822.99338 -2.63060 0.00000 -1.49305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51535 -0.01608 -1.00000 - 1790 2002 3 18 2 23 41 132 4.8379 185.25341 876.34480 822.90056 -2.69664 0.00000 -1.60277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51465 -0.01608 -1.00000 - 1792 2002 3 18 2 23 50 808 4.8379 185.24374 876.23706 822.81033 -2.78460 0.00000 -1.71959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51394 -0.01608 -1.00000 - 1794 2002 3 18 2 24 0 484 4.8380 185.23407 876.13413 822.72274 -2.87680 0.00000 -1.84285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51324 -0.01608 -1.00000 - 1796 2002 3 18 2 24 10 160 4.8380 185.22439 876.03546 822.63775 -2.99515 0.00000 -1.97188 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51254 -0.01608 -1.00000 - 1799 2002 3 18 2 24 24 674 4.8380 185.20989 875.89628 822.51523 -3.29187 0.00000 -2.17137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51148 -0.01607 -1.00000 - 1801 2002 3 18 2 24 34 350 4.8381 185.20022 875.80904 822.43676 -3.58968 0.00000 -2.30684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51078 -0.01607 -1.00000 - 1803 2002 3 18 2 24 44 26 4.8381 185.19055 875.72628 822.36092 -3.97408 0.00000 -2.44456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.51007 -0.01607 -1.00000 - 1805 2002 3 18 2 24 53 702 4.8381 185.18089 875.64796 822.28761 -4.38903 0.00000 -2.58265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50937 -0.01607 -1.00000 - 1807 2002 3 18 2 25 3 379 4.8382 185.17122 875.57356 822.21692 -4.83623 0.00000 -2.72129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50867 -0.01607 -1.00000 - 1809 2002 3 18 2 25 13 55 4.8382 185.16155 875.50345 822.14873 -5.25496 0.00000 -2.85827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50796 -0.01607 -1.00000 - 1811 2002 3 18 2 25 22 731 4.8382 185.15189 875.43748 822.08284 -5.69759 0.00000 -2.99267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50726 -0.01607 -1.00000 - 1813 2002 3 18 2 25 32 408 4.8383 185.14223 875.37491 822.01925 -6.13027 0.00000 -3.12445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50655 -0.01607 -1.00000 - 1815 2002 3 18 2 25 42 84 4.8383 185.13257 875.31623 821.95789 -6.55005 0.00000 -3.25258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50585 -0.01607 -1.00000 - 1817 2002 3 18 2 25 51 761 4.8383 185.12291 875.26095 821.89870 -6.95509 0.00000 -3.37654 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50515 -0.01607 -1.00000 - 1819 2002 3 18 2 26 1 438 4.8384 185.11326 875.20849 821.84151 -7.36013 0.00000 -3.49594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50444 -0.01607 -1.00000 - 1821 2002 3 18 2 26 11 115 4.8384 185.10361 875.15922 821.78620 -7.73483 0.00000 -3.60881 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50374 -0.01607 -1.00000 - 1823 2002 3 18 2 26 20 791 4.8384 185.09396 875.11233 821.73262 -8.07364 0.00000 -3.71461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50304 -0.01606 -1.00000 - 1825 2002 3 18 2 26 30 468 4.8385 185.08431 875.06782 821.68068 -8.39241 0.00000 -3.81327 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50233 -0.01606 -1.00000 - 1827 2002 3 18 2 26 40 145 4.8385 185.07467 875.02550 821.63004 -8.71080 0.00000 -3.90306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50163 -0.01606 -1.00000 - 1830 2002 3 18 2 26 54 661 4.8385 185.06020 874.96435 821.55615 -9.12658 0.00000 -4.02277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.50057 -0.01606 -1.00000 - 1832 2002 3 18 2 27 4 338 4.8386 185.05056 874.92518 821.50801 -9.35705 0.00000 -4.09009 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49987 -0.01606 -1.00000 - 1834 2002 3 18 2 27 14 15 4.8386 185.04093 874.88636 821.46048 -9.55942 0.00000 -4.14897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49916 -0.01606 -1.00000 - 1836 2002 3 18 2 27 23 692 4.8386 185.03129 874.84793 821.41340 -9.71925 0.00000 -4.19828 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49846 -0.01606 -1.00000 - 1838 2002 3 18 2 27 33 370 4.8387 185.02166 874.80971 821.36662 -9.83164 0.00000 -4.23671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49776 -0.01606 -1.00000 - 1840 2002 3 18 2 27 43 47 4.8387 185.01202 874.77079 821.31992 -9.90950 0.00000 -4.26460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49705 -0.01606 -1.00000 - 1842 2002 3 18 2 27 52 725 4.8387 185.00239 874.73196 821.27303 -9.95331 0.00000 -4.28192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49635 -0.01606 -1.00000 - 1844 2002 3 18 2 28 2 402 4.8388 184.99276 874.69192 821.22577 -9.96338 0.00000 -4.28762 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49565 -0.01606 -1.00000 - 1846 2002 3 18 2 28 12 80 4.8388 184.98313 874.65051 821.17800 -9.93953 0.00000 -4.28305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49494 -0.01605 -1.00000 - 1848 2002 3 18 2 28 21 757 4.8388 184.97350 874.60759 821.12954 -9.88182 0.00000 -4.26868 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49424 -0.01605 -1.00000 - 1850 2002 3 18 2 28 31 435 4.8389 184.96387 874.56304 821.08024 -9.80138 0.00000 -4.24489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49353 -0.01605 -1.00000 - 1852 2002 3 18 2 28 41 113 4.8389 184.95424 874.51657 821.02995 -9.69092 0.00000 -4.21245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49283 -0.01605 -1.00000 - 1854 2002 3 18 2 28 50 791 4.8389 184.94461 874.46741 820.97855 -9.54203 0.00000 -4.16916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49213 -0.01605 -1.00000 - 1856 2002 3 18 2 29 0 469 4.8390 184.93499 874.41619 820.92577 -9.36507 0.00000 -4.11662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49142 -0.01605 -1.00000 - 1858 2002 3 18 2 29 10 147 4.8390 184.92536 874.36248 820.87156 -9.16168 0.00000 -4.05508 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.49072 -0.01605 -1.00000 - 1861 2002 3 18 2 29 24 664 4.8391 184.91093 874.27578 820.78716 -8.80760 0.00000 -3.94579 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48966 -0.01605 -1.00000 - 1863 2002 3 18 2 29 34 342 4.8391 184.90131 874.21432 820.72864 -8.54047 0.00000 -3.86384 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48896 -0.01605 -1.00000 - 1865 2002 3 18 2 29 44 20 4.8391 184.89169 874.14928 820.66833 -8.25071 0.00000 -3.77513 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48826 -0.01605 -1.00000 - 1867 2002 3 18 2 29 53 699 4.8392 184.88207 874.08097 820.60604 -7.96323 0.00000 -3.68178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48755 -0.01605 -1.00000 - 1869 2002 3 18 2 30 3 377 4.8392 184.87246 874.00964 820.54184 -7.64251 0.00000 -3.58294 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48685 -0.01605 -1.00000 - 1871 2002 3 18 2 30 13 56 4.8392 184.86284 873.93466 820.47559 -7.30408 0.00000 -3.47902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48614 -0.01604 -1.00000 - 1873 2002 3 18 2 30 22 734 4.8393 184.85323 873.85609 820.40717 -6.95475 0.00000 -3.37083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48544 -0.01604 -1.00000 - 1875 2002 3 18 2 30 32 413 4.8393 184.84362 873.77539 820.33655 -6.59325 0.00000 -3.25832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48474 -0.01604 -1.00000 - 1877 2002 3 18 2 30 42 91 4.8393 184.83401 873.69019 820.26372 -6.22118 0.00000 -3.14351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48403 -0.01604 -1.00000 - 1879 2002 3 18 2 30 51 770 4.8394 184.82440 873.60113 820.18862 -5.84184 0.00000 -3.02795 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48333 -0.01604 -1.00000 - 1881 2002 3 18 2 31 1 449 4.8394 184.81480 873.50969 820.11131 -5.46876 0.00000 -2.91176 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48263 -0.01604 -1.00000 - 1883 2002 3 18 2 31 11 128 4.8395 184.80519 873.41431 820.03178 -5.10337 0.00000 -2.79582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48192 -0.01604 -1.00000 - 1885 2002 3 18 2 31 20 807 4.8395 184.79559 873.31467 819.95017 -4.72136 0.00000 -2.68058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48122 -0.01604 -1.00000 - 1887 2002 3 18 2 31 30 486 4.8395 184.78599 873.21355 819.86646 -4.34389 0.00000 -2.56636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.48051 -0.01604 -1.00000 - 1889 2002 3 18 2 31 40 165 4.8396 184.77638 873.10811 819.78067 -3.98242 0.00000 -2.45437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47981 -0.01604 -1.00000 - 1892 2002 3 18 2 31 54 684 4.8396 184.76199 872.94545 819.64832 -3.54247 0.00000 -2.29036 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47875 -0.01604 -1.00000 - 1894 2002 3 18 2 32 4 363 4.8396 184.75239 872.83215 819.55774 -3.30636 0.00000 -2.18612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47805 -0.01603 -1.00000 - 1896 2002 3 18 2 32 14 42 4.8397 184.74279 872.71766 819.46548 -3.12422 0.00000 -2.08736 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47735 -0.01603 -1.00000 - 1898 2002 3 18 2 32 23 722 4.8397 184.73320 872.59988 819.37160 -2.96510 0.00000 -1.99450 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47664 -0.01603 -1.00000 - 1900 2002 3 18 2 32 33 401 4.8398 184.72360 872.48089 819.27629 -2.85424 0.00000 -1.90744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47594 -0.01603 -1.00000 - 1902 2002 3 18 2 32 43 81 4.8398 184.71401 872.35951 819.17967 -2.75106 0.00000 -1.82619 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47523 -0.01603 -1.00000 - 1904 2002 3 18 2 32 52 761 4.8398 184.70442 872.23650 819.08179 -2.67482 0.00000 -1.75167 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47453 -0.01603 -1.00000 - 1906 2002 3 18 2 33 2 440 4.8399 184.69483 872.11138 818.98287 -2.61009 0.00000 -1.68405 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47383 -0.01603 -1.00000 - 1908 2002 3 18 2 33 12 120 4.8399 184.68524 871.98449 818.88296 -2.55906 0.00000 -1.62329 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47312 -0.01603 -1.00000 - 1910 2002 3 18 2 33 21 800 4.8399 184.67565 871.85624 818.78227 -2.51880 0.00000 -1.57066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47242 -0.01603 -1.00000 - 1912 2002 3 18 2 33 31 480 4.8400 184.66607 871.72681 818.68103 -2.48876 0.00000 -1.52708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47171 -0.01603 -1.00000 - 1914 2002 3 18 2 33 41 160 4.8400 184.65648 871.59673 818.57939 -2.46113 0.00000 -1.49276 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47101 -0.01603 -1.00000 - 1916 2002 3 18 2 33 50 840 4.8400 184.64690 871.46653 818.47756 -2.44633 0.00000 -1.46703 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.47031 -0.01603 -1.00000 - 1918 2002 3 18 2 34 0 520 4.8401 184.63732 871.33579 818.37567 -2.43719 0.00000 -1.44990 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46960 -0.01602 -1.00000 - 1920 2002 3 18 2 34 10 200 4.8401 184.62775 871.20515 818.27379 -2.43155 0.00000 -1.44161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46890 -0.01602 -1.00000 - 1923 2002 3 18 2 34 24 721 4.8402 184.61339 871.00936 818.12149 -2.44507 0.00000 -1.44557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46784 -0.01602 -1.00000 - 1925 2002 3 18 2 34 34 401 4.8402 184.60382 870.87965 818.02052 -2.45691 0.00000 -1.45947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46714 -0.01602 -1.00000 - 1927 2002 3 18 2 34 44 82 4.8403 184.59425 870.75104 817.92021 -2.48245 0.00000 -1.48267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46644 -0.01602 -1.00000 - 1929 2002 3 18 2 34 53 762 4.8403 184.58468 870.62351 817.82070 -2.51238 0.00000 -1.51331 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46573 -0.01602 -1.00000 - 1931 2002 3 18 2 35 3 443 4.8403 184.57511 870.49758 817.72206 -2.54829 0.00000 -1.55301 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46503 -0.01602 -1.00000 - 1933 2002 3 18 2 35 13 124 4.8404 184.56555 870.37394 817.62452 -2.59654 0.00000 -1.60112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46432 -0.01602 -1.00000 - 1935 2002 3 18 2 35 22 804 4.8404 184.55599 870.25279 817.52816 -2.64523 0.00000 -1.65685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46362 -0.01602 -1.00000 - 1937 2002 3 18 2 35 32 485 4.8404 184.54643 870.13312 817.43317 -2.71947 0.00000 -1.72040 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46292 -0.01602 -1.00000 - 1939 2002 3 18 2 35 42 166 4.8405 184.53687 870.01577 817.33966 -2.79252 0.00000 -1.78995 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46221 -0.01602 -1.00000 - 1941 2002 3 18 2 35 51 847 4.8405 184.52731 869.90141 817.24769 -2.87786 0.00000 -1.86526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46151 -0.01602 -1.00000 - 1943 2002 3 18 2 36 1 528 4.8406 184.51776 869.79043 817.15740 -2.97346 0.00000 -1.94677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46080 -0.01601 -1.00000 - 1945 2002 3 18 2 36 11 209 4.8406 184.50820 869.68279 817.06897 -3.11406 0.00000 -2.03354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.46010 -0.01601 -1.00000 - 1947 2002 3 18 2 36 20 891 4.8406 184.49865 869.57837 816.98233 -3.25152 0.00000 -2.12566 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45939 -0.01601 -1.00000 - 1949 2002 3 18 2 36 30 572 4.8407 184.48910 869.47737 816.89775 -3.39062 0.00000 -2.22191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45869 -0.01601 -1.00000 - 1951 2002 3 18 2 36 40 253 4.8407 184.47955 869.37940 816.81517 -3.57260 0.00000 -2.32064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45799 -0.01601 -1.00000 - 1954 2002 3 18 2 36 54 776 4.8408 184.46523 869.24062 816.69520 -3.94711 0.00000 -2.47260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45693 -0.01601 -1.00000 - 1956 2002 3 18 2 37 4 457 4.8408 184.45568 869.15285 816.61782 -4.18389 0.00000 -2.57506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45623 -0.01601 -1.00000 - 1958 2002 3 18 2 37 14 139 4.8408 184.44614 869.06830 816.54256 -4.45383 0.00000 -2.67865 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45552 -0.01601 -1.00000 - 1960 2002 3 18 2 37 23 821 4.8409 184.43660 868.98749 816.46944 -4.74472 0.00000 -2.78245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45482 -0.01601 -1.00000 - 1962 2002 3 18 2 37 33 502 4.8409 184.42706 868.91024 816.39843 -5.04879 0.00000 -2.88661 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45411 -0.01601 -1.00000 - 1964 2002 3 18 2 37 43 184 4.8410 184.41752 868.83616 816.32956 -5.34541 0.00000 -2.98960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45341 -0.01601 -1.00000 - 1966 2002 3 18 2 37 52 866 4.8410 184.40815 868.76572 816.26268 -5.62162 0.00000 -3.08998 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45271 -0.01600 -1.00000 - 1968 2002 3 18 2 38 2 548 4.8410 184.39883 868.69834 816.19776 -5.92785 0.00000 -3.18806 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45200 -0.01600 -1.00000 - 1970 2002 3 18 2 38 12 230 4.8411 184.38941 868.63400 816.13475 -6.20325 0.00000 -3.28267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45130 -0.01600 -1.00000 - 1972 2002 3 18 2 38 21 913 4.8411 184.37995 868.57280 816.07351 -6.49775 0.00000 -3.37347 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.45059 -0.01600 -1.00000 - 1974 2002 3 18 2 38 31 595 4.8412 184.37041 868.51393 816.01394 -6.78344 0.00000 -3.46081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44989 -0.01600 -1.00000 - 1976 2002 3 18 2 38 41 277 4.8412 184.36086 868.45766 815.95605 -7.07729 0.00000 -3.54377 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44919 -0.01600 -1.00000 - 1978 2002 3 18 2 38 50 960 4.8413 184.35125 868.40392 815.89970 -7.33420 0.00000 -3.62070 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44848 -0.01600 -1.00000 - 1980 2002 3 18 2 39 0 643 4.8413 184.34165 868.35198 815.84468 -7.57879 0.00000 -3.69222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44778 -0.01600 -1.00000 - 1982 2002 3 18 2 39 10 325 4.8414 184.33202 868.30222 815.79091 -7.81088 0.00000 -3.75680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44707 -0.01600 -1.00000 - 1984 2002 3 18 2 39 20 8 4.8414 184.32241 868.25383 815.73809 -8.02786 0.00000 -3.81356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44637 -0.01600 -1.00000 - 1987 2002 3 18 2 39 34 533 4.8415 184.30799 868.18347 815.66045 -8.32164 0.00000 -3.88694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44531 -0.01600 -1.00000 - 1989 2002 3 18 2 39 44 216 4.8415 184.29841 868.13769 815.60947 -8.50669 0.00000 -3.92648 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44461 -0.01599 -1.00000 - 1991 2002 3 18 2 39 53 899 4.8415 184.28884 868.09213 815.55885 -8.67152 0.00000 -3.95809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44390 -0.01599 -1.00000 - 1993 2002 3 18 2 40 3 582 4.8416 184.27930 868.04706 815.50854 -8.80147 0.00000 -3.98083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44320 -0.01599 -1.00000 - 1995 2002 3 18 2 40 13 265 4.8416 184.26978 868.00158 815.45818 -8.90607 0.00000 -3.99486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44250 -0.01599 -1.00000 - 1997 2002 3 18 2 40 22 948 4.8417 184.26030 867.95571 815.40765 -8.98247 0.00000 -4.00013 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44179 -0.01599 -1.00000 - 1999 2002 3 18 2 40 32 632 4.8417 184.25082 867.90938 815.35673 -9.02915 0.00000 -3.99607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44109 -0.01599 -1.00000 - 2001 2002 3 18 2 40 42 315 4.8417 184.24136 867.86161 815.30528 -9.04481 0.00000 -3.98356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.44038 -0.01599 -1.00000 - 2003 2002 3 18 2 40 51 999 4.8418 184.23192 867.81278 815.25311 -9.02971 0.00000 -3.96305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43968 -0.01599 -1.00000 - 2005 2002 3 18 2 41 1 682 4.8418 184.22248 867.76309 815.20007 -8.99349 0.00000 -3.93407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43898 -0.01599 -1.00000 - 2007 2002 3 18 2 41 11 366 4.8418 184.21304 867.71238 815.14596 -8.92705 0.00000 -3.89678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43827 -0.01599 -1.00000 - 2009 2002 3 18 2 41 21 50 4.8419 184.20361 867.65925 815.09074 -8.82237 0.00000 -3.85082 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43757 -0.01599 -1.00000 - 2011 2002 3 18 2 41 30 733 4.8419 184.19417 867.60414 815.03408 -8.68918 0.00000 -3.79676 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43686 -0.01599 -1.00000 - 2013 2002 3 18 2 41 40 417 4.8420 184.18472 867.54667 814.97595 -8.52755 0.00000 -3.73504 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43616 -0.01598 -1.00000 - 2015 2002 3 18 2 41 50 101 4.8420 184.17527 867.48583 814.91614 -8.33684 0.00000 -3.66525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43545 -0.01598 -1.00000 - 2018 2002 3 18 2 42 4 628 4.8421 184.16106 867.38925 814.82302 -7.99616 0.00000 -3.54816 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43440 -0.01598 -1.00000 - 2020 2002 3 18 2 42 14 312 4.8421 184.15157 867.32187 814.75860 -7.74328 0.00000 -3.46336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43369 -0.01598 -1.00000 - 2022 2002 3 18 2 42 23 996 4.8422 184.14208 867.25134 814.69215 -7.46637 0.00000 -3.37441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43299 -0.01598 -1.00000 - 2024 2002 3 18 2 42 33 681 4.8422 184.13258 867.17587 814.62373 -7.16268 0.00000 -3.28067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43228 -0.01598 -1.00000 - 2026 2002 3 18 2 42 43 365 4.8423 184.12308 867.09792 814.55312 -6.83801 0.00000 -3.18311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43158 -0.01598 -1.00000 - 2028 2002 3 18 2 42 53 50 4.8423 184.11358 867.01664 814.48032 -6.50190 0.00000 -3.08222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43088 -0.01598 -1.00000 - 2030 2002 3 18 2 43 2 734 4.8423 184.10408 866.93048 814.40532 -6.14868 0.00000 -2.97838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.43017 -0.01598 -1.00000 - 2032 2002 3 18 2 43 12 419 4.8424 184.09458 866.84132 814.32813 -5.79088 0.00000 -2.87287 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42947 -0.01598 -1.00000 - 2034 2002 3 18 2 43 22 104 4.8424 184.08509 866.74865 814.24880 -5.42630 0.00000 -2.76831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42876 -0.01598 -1.00000 - 2036 2002 3 18 2 43 31 789 4.8425 184.07560 866.65201 814.16737 -5.04697 0.00000 -2.66253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42806 -0.01598 -1.00000 - 2038 2002 3 18 2 43 41 474 4.8425 184.06613 866.55067 814.08381 -4.66901 0.00000 -2.55759 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42735 -0.01597 -1.00000 - 2040 2002 3 18 2 43 51 159 4.8425 184.05666 866.44747 813.99827 -4.29577 0.00000 -2.45403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42665 -0.01597 -1.00000 - 2042 2002 3 18 2 44 0 844 4.8426 184.04721 866.34001 813.91088 -3.93139 0.00000 -2.35243 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42595 -0.01597 -1.00000 - 2044 2002 3 18 2 44 10 529 4.8426 184.03776 866.22965 813.82181 -3.59566 0.00000 -2.25461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42524 -0.01597 -1.00000 - 2046 2002 3 18 2 44 20 215 4.8427 184.02832 866.11724 813.73129 -3.31194 0.00000 -2.16095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42454 -0.01597 -1.00000 - 2049 2002 3 18 2 44 34 743 4.8427 184.01417 865.94427 813.59307 -3.05992 0.00000 -2.02843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42348 -0.01597 -1.00000 - 2051 2002 3 18 2 44 44 428 4.8428 184.00475 865.82770 813.49956 -2.94599 0.00000 -1.94703 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42278 -0.01597 -1.00000 - 2053 2002 3 18 2 44 54 114 4.8428 183.99532 865.70945 813.40497 -2.83083 0.00000 -1.87013 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42207 -0.01597 -1.00000 - 2055 2002 3 18 2 45 3 799 4.8429 183.98590 865.59100 813.30939 -2.76026 0.00000 -1.80013 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42137 -0.01597 -1.00000 - 2057 2002 3 18 2 45 13 485 4.8429 183.97648 865.47140 813.21283 -2.69825 0.00000 -1.73635 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.42066 -0.01597 -1.00000 - 2059 2002 3 18 2 45 23 171 4.8429 183.96706 865.35030 813.11523 -2.66378 0.00000 -1.68066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41996 -0.01597 -1.00000 - 2061 2002 3 18 2 45 32 857 4.8430 183.95763 865.22848 813.01650 -2.62012 0.00000 -1.63345 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41925 -0.01596 -1.00000 - 2063 2002 3 18 2 45 42 543 4.8430 183.94821 865.10406 812.91662 -2.58283 0.00000 -1.59309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41855 -0.01596 -1.00000 - 2065 2002 3 18 2 45 52 229 4.8431 183.93878 864.97769 812.81554 -2.55582 0.00000 -1.56130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41785 -0.01596 -1.00000 - 2067 2002 3 18 2 46 1 915 4.8431 183.92935 864.84844 812.71331 -2.52643 0.00000 -1.53785 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41714 -0.01596 -1.00000 - 2069 2002 3 18 2 46 11 602 4.8432 183.91992 864.71597 812.61003 -2.50835 0.00000 -1.52232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41644 -0.01596 -1.00000 - 2071 2002 3 18 2 46 21 288 4.8432 183.91049 864.58032 812.50596 -2.50865 0.00000 -1.51621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41573 -0.01596 -1.00000 - 2073 2002 3 18 2 46 30 975 4.8433 183.90106 864.44164 812.40143 -2.57754 0.00000 -1.51964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41503 -0.01596 -1.00000 - 2075 2002 3 18 2 46 40 661 4.8433 183.89163 864.30061 812.29684 -2.64135 0.00000 -1.53282 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41432 -0.01596 -1.00000 - 2077 2002 3 18 2 46 50 348 4.8433 183.88221 864.15830 812.19269 -2.69789 0.00000 -1.55615 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41362 -0.01596 -1.00000 - 2079 2002 3 18 2 47 0 35 4.8434 183.87279 864.01538 812.08946 -2.77827 0.00000 -1.58735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41292 -0.01596 -1.00000 - 2082 2002 3 18 2 47 14 565 4.8435 183.85867 863.80261 811.93723 -2.88253 0.00000 -1.65034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41186 -0.01596 -1.00000 - 2084 2002 3 18 2 47 24 252 4.8435 183.84926 863.66434 811.83822 -2.96057 0.00000 -1.70124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41115 -0.01596 -1.00000 - 2086 2002 3 18 2 47 33 939 4.8435 183.83985 863.53051 811.74164 -3.04880 0.00000 -1.75952 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.41045 -0.01595 -1.00000 - 2088 2002 3 18 2 47 43 626 4.8436 183.83045 863.40352 811.64775 -3.11985 0.00000 -1.82569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40975 -0.01595 -1.00000 - 2090 2002 3 18 2 47 53 313 4.8436 183.82105 863.28632 811.55691 -3.21649 0.00000 -1.89872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40904 -0.01595 -1.00000 - 2092 2002 3 18 2 48 3 1 4.8437 183.81166 863.18467 811.46914 -3.31210 0.00000 -1.97872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40834 -0.01595 -1.00000 - 2094 2002 3 18 2 48 12 688 4.8437 183.80227 863.09523 811.38453 -3.41328 0.00000 -2.06397 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40763 -0.01595 -1.00000 - 2096 2002 3 18 2 48 22 376 4.8438 183.79288 863.01340 811.30292 -3.53616 0.00000 -2.15272 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40693 -0.01595 -1.00000 - 2098 2002 3 18 2 48 32 63 4.8438 183.78350 862.93475 811.22419 -3.65091 0.00000 -2.24499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40622 -0.01595 -1.00000 - 2100 2002 3 18 2 48 41 751 4.8438 183.77412 862.85842 811.14812 -3.79433 0.00000 -2.33876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40552 -0.01595 -1.00000 - 2102 2002 3 18 2 48 51 439 4.8439 183.76474 862.78347 811.07448 -3.95298 0.00000 -2.43524 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40481 -0.01595 -1.00000 - 2104 2002 3 18 2 49 1 126 4.8439 183.75536 862.70917 811.00298 -4.12949 0.00000 -2.53343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40411 -0.01595 -1.00000 - 2106 2002 3 18 2 49 10 814 4.8440 183.74598 862.63711 810.93339 -4.32656 0.00000 -2.63164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40340 -0.01595 -1.00000 - 2108 2002 3 18 2 49 20 502 4.8440 183.73660 862.56776 810.86545 -4.59497 0.00000 -2.73021 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40270 -0.01595 -1.00000 - 2110 2002 3 18 2 49 30 191 4.8441 183.72723 862.49853 810.79895 -4.80861 0.00000 -2.82840 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40200 -0.01594 -1.00000 - 2113 2002 3 18 2 49 44 723 4.8441 183.71317 862.39523 810.70129 -5.24179 0.00000 -2.97261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40094 -0.01594 -1.00000 - 2115 2002 3 18 2 49 54 411 4.8442 183.70379 862.32613 810.63745 -5.52941 0.00000 -3.06682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.40023 -0.01594 -1.00000 - 2117 2002 3 18 2 50 4 100 4.8442 183.69442 862.26103 810.57445 -5.84650 0.00000 -3.15973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39953 -0.01594 -1.00000 - 2119 2002 3 18 2 50 13 788 4.8443 183.68506 862.19592 810.51232 -6.14856 0.00000 -3.25035 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39882 -0.01594 -1.00000 - 2121 2002 3 18 2 50 23 477 4.8443 183.67569 862.13154 810.45101 -6.49496 0.00000 -3.33877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39812 -0.01594 -1.00000 - 2123 2002 3 18 2 50 33 166 4.8444 183.66633 862.06799 810.39060 -6.78172 0.00000 -3.42252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39742 -0.01594 -1.00000 - 2125 2002 3 18 2 50 42 854 4.8444 183.65697 862.00537 810.33105 -7.13602 0.00000 -3.50253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39671 -0.01594 -1.00000 - 2127 2002 3 18 2 50 52 543 4.8445 183.64761 861.94454 810.27246 -7.44628 0.00000 -3.57720 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39601 -0.01594 -1.00000 - 2129 2002 3 18 2 51 2 232 4.8445 183.63826 861.88519 810.21480 -7.75537 0.00000 -3.64584 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39530 -0.01594 -1.00000 - 2131 2002 3 18 2 51 11 921 4.8446 183.62890 861.82797 810.15819 -8.03397 0.00000 -3.70937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39460 -0.01594 -1.00000 - 2133 2002 3 18 2 51 21 611 4.8446 183.61956 861.77326 810.10263 -8.28770 0.00000 -3.76538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39389 -0.01593 -1.00000 - 2135 2002 3 18 2 51 31 300 4.8446 183.61021 861.72036 810.04803 -8.57599 0.00000 -3.81481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39319 -0.01593 -1.00000 - 2137 2002 3 18 2 51 40 989 4.8447 183.60087 861.66970 809.99444 -8.91480 0.00000 -3.85568 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39248 -0.01593 -1.00000 - 2139 2002 3 18 2 51 50 679 4.8447 183.59153 861.62118 809.94165 -9.20229 0.00000 -3.88674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39178 -0.01593 -1.00000 - 2141 2002 3 18 2 52 0 368 4.8448 183.58219 861.57400 809.88951 -9.43024 0.00000 -3.90842 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39107 -0.01593 -1.00000 - 2143 2002 3 18 2 52 10 58 4.8448 183.57286 861.52879 809.83786 -9.65693 0.00000 -3.91906 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.39037 -0.01593 -1.00000 - 2146 2002 3 18 2 52 24 593 4.8449 183.55886 861.46166 809.76023 -9.95775 0.00000 -3.91354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38931 -0.01593 -1.00000 - 2148 2002 3 18 2 52 34 282 4.8450 183.54953 861.41670 809.70789 -10.04042 0.00000 -3.89644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38861 -0.01593 -1.00000 - 2150 2002 3 18 2 52 43 972 4.8450 183.54020 861.37018 809.65460 -9.99360 0.00000 -3.86877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38790 -0.01593 -1.00000 - 2152 2002 3 18 2 52 53 662 4.8450 183.53088 861.32124 809.59995 -9.84013 0.00000 -3.83085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38720 -0.01593 -1.00000 - 2154 2002 3 18 2 53 3 353 4.8451 183.52155 861.26944 809.54364 -9.57760 0.00000 -3.78253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38649 -0.01593 -1.00000 - 2156 2002 3 18 2 53 13 43 4.8451 183.51223 861.21420 809.48535 -9.22970 0.00000 -3.72575 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38579 -0.01592 -1.00000 - 2158 2002 3 18 2 53 22 733 4.8452 183.50291 861.15495 809.42491 -8.81683 0.00000 -3.66086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38508 -0.01592 -1.00000 - 2160 2002 3 18 2 53 32 424 4.8452 183.49359 861.09139 809.36219 -8.36212 0.00000 -3.58878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38438 -0.01592 -1.00000 - 2162 2002 3 18 2 53 42 114 4.8453 183.48427 861.02445 809.29719 -7.89060 0.00000 -3.51127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38368 -0.01592 -1.00000 - 2164 2002 3 18 2 53 51 805 4.8453 183.47496 860.95086 809.22999 -7.41906 0.00000 -3.42968 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38297 -0.01592 -1.00000 - 2166 2002 3 18 2 54 1 496 4.8454 183.46565 860.87394 809.16063 -6.95812 0.00000 -3.34526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38227 -0.01592 -1.00000 - 2168 2002 3 18 2 54 11 186 4.8454 183.45634 860.79329 809.08922 -6.58757 0.00000 -3.25950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38156 -0.01592 -1.00000 - 2170 2002 3 18 2 54 20 877 4.8455 183.44703 860.70922 809.01588 -6.33892 0.00000 -3.17134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38086 -0.01592 -1.00000 - 2172 2002 3 18 2 54 30 568 4.8455 183.43773 860.62053 808.94074 -6.07421 0.00000 -3.08212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.38015 -0.01592 -1.00000 - 2174 2002 3 18 2 54 40 259 4.8456 183.42843 860.52859 808.86396 -5.82053 0.00000 -2.99234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37945 -0.01592 -1.00000 - 2177 2002 3 18 2 54 54 796 4.8456 183.41448 860.38623 808.74575 -5.36851 0.00000 -2.85634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37839 -0.01592 -1.00000 - 2179 2002 3 18 2 55 4 488 4.8457 183.40519 860.28805 808.66510 -5.10290 0.00000 -2.76668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37768 -0.01592 -1.00000 - 2181 2002 3 18 2 55 14 179 4.8457 183.39590 860.18826 808.58312 -4.77532 0.00000 -2.67733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37698 -0.01591 -1.00000 - 2183 2002 3 18 2 55 23 871 4.8458 183.38661 860.08533 808.49984 -4.47225 0.00000 -2.58921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37628 -0.01591 -1.00000 - 2185 2002 3 18 2 55 33 562 4.8458 183.37733 859.97974 808.41540 -4.16714 0.00000 -2.50252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37557 -0.01591 -1.00000 - 2187 2002 3 18 2 55 43 254 4.8459 183.36805 859.87370 808.32983 -3.91235 0.00000 -2.41776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37487 -0.01591 -1.00000 - 2189 2002 3 18 2 55 52 946 4.8459 183.35877 859.76591 808.24310 -3.67737 0.00000 -2.33520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37416 -0.01591 -1.00000 - 2191 2002 3 18 2 56 2 638 4.8460 183.34949 859.65548 808.15519 -3.49240 0.00000 -2.25441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37346 -0.01591 -1.00000 - 2193 2002 3 18 2 56 12 330 4.8460 183.34021 859.54341 808.06620 -3.36630 0.00000 -2.17717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37275 -0.01591 -1.00000 - 2195 2002 3 18 2 56 22 22 4.8461 183.33094 859.43050 807.97612 -3.27231 0.00000 -2.10399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37205 -0.01591 -1.00000 - 2197 2002 3 18 2 56 31 714 4.8461 183.32167 859.31617 807.88498 -3.19128 0.00000 -2.03546 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37134 -0.01591 -1.00000 - 2199 2002 3 18 2 56 41 407 4.8462 183.31240 859.19929 807.79284 -3.11532 0.00000 -1.97192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.37064 -0.01591 -1.00000 - 2201 2002 3 18 2 56 51 99 4.8462 183.30314 859.08187 807.69980 -3.03097 0.00000 -1.91349 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36993 -0.01591 -1.00000 - 2203 2002 3 18 2 57 0 792 4.8463 183.29387 858.96326 807.60592 -2.96752 0.00000 -1.86089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36923 -0.01591 -1.00000 - 2205 2002 3 18 2 57 10 484 4.8463 183.28461 858.84242 807.51130 -2.91086 0.00000 -1.81508 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36852 -0.01590 -1.00000 - 2207 2002 3 18 2 57 20 177 4.8464 183.27535 858.72132 807.41615 -2.86085 0.00000 -1.77560 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36782 -0.01590 -1.00000 - 2210 2002 3 18 2 57 34 716 4.8465 183.26147 858.53802 807.27261 -2.80871 0.00000 -1.72866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36676 -0.01590 -1.00000 - 2212 2002 3 18 2 57 44 409 4.8465 183.25221 858.41540 807.17660 -2.78873 0.00000 -1.70659 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36605 -0.01590 -1.00000 - 2214 2002 3 18 2 57 54 102 4.8466 183.24296 858.29289 807.08056 -2.76840 0.00000 -1.69192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36535 -0.01590 -1.00000 - 2216 2002 3 18 2 58 3 795 4.8466 183.23372 858.17010 806.98469 -2.75821 0.00000 -1.68661 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36465 -0.01590 -1.00000 - 2218 2002 3 18 2 58 13 489 4.8467 183.22447 858.04967 806.88924 -2.75680 0.00000 -1.68957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36394 -0.01590 -1.00000 - 2220 2002 3 18 2 58 23 182 4.8467 183.21523 857.92938 806.79435 -2.75429 0.00000 -1.70038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36324 -0.01590 -1.00000 - 2222 2002 3 18 2 58 32 876 4.8468 183.20599 857.81085 806.70030 -2.76170 0.00000 -1.71882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36253 -0.01590 -1.00000 - 2224 2002 3 18 2 58 42 569 4.8468 183.19675 857.69452 806.60713 -2.77729 0.00000 -1.74407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36183 -0.01590 -1.00000 - 2226 2002 3 18 2 58 52 263 4.8469 183.18752 857.58051 806.51502 -2.81435 0.00000 -1.77747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36112 -0.01590 -1.00000 - 2228 2002 3 18 2 59 1 957 4.8469 183.17829 857.46915 806.42415 -2.86722 0.00000 -1.81691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.36042 -0.01589 -1.00000 - 2230 2002 3 18 2 59 11 651 4.8470 183.16906 857.35990 806.33454 -2.93006 0.00000 -1.86197 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35971 -0.01589 -1.00000 - 2232 2002 3 18 2 59 21 344 4.8470 183.15984 857.25290 806.24623 -2.99262 0.00000 -1.91334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35901 -0.01589 -1.00000 - 2234 2002 3 18 2 59 31 39 4.8471 183.15062 857.14915 806.15937 -3.10743 0.00000 -1.96973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35830 -0.01589 -1.00000 - 2236 2002 3 18 2 59 40 733 4.8471 183.14140 857.04796 806.07389 -3.17083 0.00000 -2.03089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35760 -0.01589 -1.00000 - 2238 2002 3 18 2 59 50 427 4.8472 183.13219 856.94941 805.98994 -3.29327 0.00000 -2.09624 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35689 -0.01589 -1.00000 - 2240 2002 3 18 3 0 0 121 4.8472 183.12298 856.85376 805.90743 -3.36884 0.00000 -2.16438 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35619 -0.01589 -1.00000 - 2243 2002 3 18 3 0 14 663 4.8473 183.10916 856.71440 805.78644 -3.56424 0.00000 -2.27245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35513 -0.01589 -1.00000 - 2245 2002 3 18 3 0 24 358 4.8473 183.09996 856.62489 805.70766 -3.70554 0.00000 -2.34719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35442 -0.01589 -1.00000 - 2247 2002 3 18 3 0 34 53 4.8474 183.09076 856.53746 805.63030 -3.92637 0.00000 -2.42390 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35372 -0.01589 -1.00000 - 2249 2002 3 18 3 0 43 747 4.8474 183.08156 856.45249 805.55438 -4.15018 0.00000 -2.50165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35301 -0.01589 -1.00000 - 2251 2002 3 18 3 0 53 442 4.8475 183.07236 856.37005 805.47983 -4.39768 0.00000 -2.57970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35231 -0.01589 -1.00000 - 2253 2002 3 18 3 1 3 137 4.8475 183.06316 856.28951 805.40669 -4.63729 0.00000 -2.65790 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35160 -0.01588 -1.00000 - 2255 2002 3 18 3 1 12 833 4.8476 183.05397 856.21152 805.33490 -4.86542 0.00000 -2.73574 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35090 -0.01588 -1.00000 - 2257 2002 3 18 3 1 22 528 4.8476 183.04478 856.13563 805.26439 -5.11041 0.00000 -2.81234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.35019 -0.01588 -1.00000 - 2259 2002 3 18 3 1 32 223 4.8477 183.03560 856.06164 805.19516 -5.33651 0.00000 -2.88825 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34949 -0.01588 -1.00000 - 2261 2002 3 18 3 1 41 919 4.8478 183.02641 855.98994 805.12717 -5.54998 0.00000 -2.96246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34878 -0.01588 -1.00000 - 2263 2002 3 18 3 1 51 614 4.8478 183.01724 855.91976 805.06035 -5.79104 0.00000 -3.03413 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34808 -0.01588 -1.00000 - 2265 2002 3 18 3 2 1 310 4.8479 183.00806 855.85154 804.99471 -6.01521 0.00000 -3.10350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34737 -0.01588 -1.00000 - 2267 2002 3 18 3 2 11 6 4.8479 182.99889 855.78529 804.93015 -6.24027 0.00000 -3.16871 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34667 -0.01588 -1.00000 - 2269 2002 3 18 3 2 20 702 4.8480 182.98972 855.72021 804.86660 -6.45707 0.00000 -3.23083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34596 -0.01588 -1.00000 - 2271 2002 3 18 3 2 30 398 4.8480 182.98055 855.65668 804.80402 -6.66494 0.00000 -3.28846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34526 -0.01588 -1.00000 - 2273 2002 3 18 3 2 40 94 4.8481 182.97139 855.59455 804.74221 -6.86232 0.00000 -3.34196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34455 -0.01588 -1.00000 - 2276 2002 3 18 3 2 54 638 4.8481 182.95765 855.50265 804.65080 -7.14750 0.00000 -3.41380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34349 -0.01587 -1.00000 - 2278 2002 3 18 3 3 4 334 4.8482 182.94850 855.44266 804.59066 -7.30148 0.00000 -3.45464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34279 -0.01587 -1.00000 - 2280 2002 3 18 3 3 14 31 4.8482 182.93935 855.38278 804.53087 -7.43757 0.00000 -3.48995 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34208 -0.01587 -1.00000 - 2282 2002 3 18 3 3 23 728 4.8483 182.93020 855.32322 804.47136 -7.56227 0.00000 -3.51949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34138 -0.01587 -1.00000 - 2284 2002 3 18 3 3 33 424 4.8484 182.92106 855.26390 804.41194 -7.67496 0.00000 -3.54241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.34067 -0.01587 -1.00000 - 2286 2002 3 18 3 3 43 121 4.8484 182.91192 855.20396 804.35252 -7.77160 0.00000 -3.55919 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33997 -0.01587 -1.00000 - 2288 2002 3 18 3 3 52 818 4.8485 182.90278 855.14386 804.29300 -7.83227 0.00000 -3.57055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33926 -0.01587 -1.00000 - 2290 2002 3 18 3 4 2 515 4.8485 182.89365 855.08296 804.23323 -7.86465 0.00000 -3.57494 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33856 -0.01587 -1.00000 - 2292 2002 3 18 3 4 12 212 4.8486 182.88452 855.02169 804.17310 -7.86962 0.00000 -3.57323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33785 -0.01587 -1.00000 - 2294 2002 3 18 3 4 21 909 4.8486 182.87539 854.95927 804.11249 -7.84698 0.00000 -3.56405 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33715 -0.01587 -1.00000 - 2296 2002 3 18 3 4 31 607 4.8487 182.86626 854.89625 804.05121 -7.79822 0.00000 -3.54863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33644 -0.01587 -1.00000 - 2298 2002 3 18 3 4 41 304 4.8487 182.85714 854.83210 803.98922 -7.72526 0.00000 -3.52731 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33574 -0.01587 -1.00000 - 2300 2002 3 18 3 4 51 2 4.8488 182.84801 854.76570 803.92647 -7.63033 0.00000 -3.50079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33503 -0.01586 -1.00000 - 2302 2002 3 18 3 5 0 699 4.8488 182.83889 854.69801 803.86290 -7.53036 0.00000 -3.46941 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33433 -0.01586 -1.00000 - 2304 2002 3 18 3 5 10 397 4.8489 182.82977 854.62905 803.79843 -7.39973 0.00000 -3.43283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33362 -0.01586 -1.00000 - 2306 2002 3 18 3 5 20 95 4.8489 182.82065 854.55849 803.73301 -7.25149 0.00000 -3.39064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33292 -0.01586 -1.00000 - 2309 2002 3 18 3 5 34 642 4.8490 182.80698 854.44890 803.63288 -7.00168 0.00000 -3.31807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33186 -0.01586 -1.00000 - 2311 2002 3 18 3 5 44 340 4.8491 182.79787 854.37294 803.56472 -6.81584 0.00000 -3.26412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33115 -0.01586 -1.00000 - 2313 2002 3 18 3 5 54 38 4.8491 182.78876 854.29527 803.49540 -6.61555 0.00000 -3.20654 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.33045 -0.01586 -1.00000 - 2315 2002 3 18 3 6 3 737 4.8492 182.77965 854.21580 803.42492 -6.40379 0.00000 -3.14672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32974 -0.01586 -1.00000 - 2317 2002 3 18 3 6 13 435 4.8492 182.77055 854.13434 803.35323 -6.19012 0.00000 -3.08398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32904 -0.01586 -1.00000 - 2319 2002 3 18 3 6 23 134 4.8493 182.76146 854.05062 803.28033 -5.97063 0.00000 -3.01925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32833 -0.01586 -1.00000 - 2321 2002 3 18 3 6 32 832 4.8494 182.75237 853.96457 803.20625 -5.73791 0.00000 -2.95212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32763 -0.01586 -1.00000 - 2323 2002 3 18 3 6 42 531 4.8494 182.74328 853.87690 803.13089 -5.50366 0.00000 -2.88369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32692 -0.01585 -1.00000 - 2325 2002 3 18 3 6 52 230 4.8495 182.73421 853.78736 803.05436 -5.27430 0.00000 -2.81446 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32622 -0.01585 -1.00000 - 2327 2002 3 18 3 7 1 929 4.8495 182.72513 853.69526 802.97660 -5.04040 0.00000 -2.74563 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32551 -0.01585 -1.00000 - 2329 2002 3 18 3 7 11 628 4.8496 182.71606 853.60231 802.89769 -4.80053 0.00000 -2.67698 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32481 -0.01585 -1.00000 - 2331 2002 3 18 3 7 21 327 4.8496 182.70700 853.50648 802.81761 -4.56562 0.00000 -2.60940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32410 -0.01585 -1.00000 - 2333 2002 3 18 3 7 31 27 4.8497 182.69793 853.40874 802.73644 -4.34403 0.00000 -2.54224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32339 -0.01585 -1.00000 - 2335 2002 3 18 3 7 40 726 4.8497 182.68888 853.31004 802.65415 -4.13140 0.00000 -2.47717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32269 -0.01585 -1.00000 - 2337 2002 3 18 3 7 50 426 4.8498 182.67982 853.20981 802.57083 -3.93007 0.00000 -2.41380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32198 -0.01585 -1.00000 - 2339 2002 3 18 3 8 0 125 4.8498 182.67079 853.10715 802.48650 -3.74781 0.00000 -2.35215 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32128 -0.01585 -1.00000 - 2342 2002 3 18 3 8 14 675 4.8499 182.65733 852.95073 802.35830 -3.55715 0.00000 -2.26590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.32022 -0.01585 -1.00000 - 2344 2002 3 18 3 8 24 375 4.8500 182.64842 852.84420 802.27180 -3.43265 0.00000 -2.21303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31952 -0.01585 -1.00000 - 2346 2002 3 18 3 8 34 75 4.8500 182.63955 852.73733 802.18460 -3.34487 0.00000 -2.16488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31881 -0.01585 -1.00000 - 2348 2002 3 18 3 8 43 775 4.8501 182.63065 852.63000 802.09676 -3.24130 0.00000 -2.12065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31810 -0.01584 -1.00000 - 2350 2002 3 18 3 8 53 475 4.8502 182.62172 852.52081 802.00838 -3.19264 0.00000 -2.08046 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31740 -0.01584 -1.00000 - 2352 2002 3 18 3 9 3 176 4.8502 182.61277 852.41068 801.91953 -3.15714 0.00000 -2.04510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31669 -0.01584 -1.00000 - 2354 2002 3 18 3 9 12 876 4.8503 182.60380 852.30166 801.83030 -3.08001 0.00000 -2.01324 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31599 -0.01584 -1.00000 - 2356 2002 3 18 3 9 22 577 4.8503 182.59482 852.19150 801.74072 -3.03329 0.00000 -1.98730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31528 -0.01584 -1.00000 - 2358 2002 3 18 3 9 32 278 4.8504 182.58584 852.07973 801.65100 -3.02572 0.00000 -1.96640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31458 -0.01584 -1.00000 - 2360 2002 3 18 3 9 41 979 4.8504 182.57685 851.96879 801.56113 -2.98332 0.00000 -1.95013 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31387 -0.01584 -1.00000 - 2362 2002 3 18 3 9 51 680 4.8505 182.56787 851.85914 801.47131 -2.96780 0.00000 -1.93897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31317 -0.01584 -1.00000 - 2364 2002 3 18 3 10 1 381 4.8506 182.55888 851.74810 801.38158 -2.98062 0.00000 -1.93304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31246 -0.01584 -1.00000 - 2366 2002 3 18 3 10 11 82 4.8506 182.54990 851.63755 801.29203 -2.96530 0.00000 -1.93218 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31176 -0.01584 -1.00000 - 2368 2002 3 18 3 10 20 783 4.8507 182.54093 851.52812 801.20279 -2.99784 0.00000 -1.93719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31105 -0.01584 -1.00000 - 2370 2002 3 18 3 10 30 485 4.8507 182.53195 851.41975 801.11391 -3.01753 0.00000 -1.94737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.31034 -0.01584 -1.00000 - 2372 2002 3 18 3 10 40 186 4.8508 182.52298 851.31175 801.02548 -3.01572 0.00000 -1.96165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30964 -0.01583 -1.00000 - 2375 2002 3 18 3 10 54 739 4.8509 182.50952 851.15185 800.89394 -3.08308 0.00000 -1.99295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30858 -0.01583 -1.00000 - 2377 2002 3 18 3 11 4 440 4.8509 182.50054 851.04709 800.80706 -3.11179 0.00000 -2.01929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30787 -0.01583 -1.00000 - 2379 2002 3 18 3 11 14 142 4.8510 182.49159 850.94314 800.72093 -3.19558 0.00000 -2.05053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30717 -0.01583 -1.00000 - 2381 2002 3 18 3 11 23 844 4.8510 182.48264 850.84039 800.63564 -3.22504 0.00000 -2.08631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30646 -0.01583 -1.00000 - 2383 2002 3 18 3 11 33 546 4.8511 182.47370 850.73983 800.55120 -3.31956 0.00000 -2.12544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30576 -0.01583 -1.00000 - 2385 2002 3 18 3 11 43 249 4.8511 182.46477 850.64077 800.46774 -3.39719 0.00000 -2.16846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30505 -0.01583 -1.00000 - 2387 2002 3 18 3 11 52 951 4.8512 182.45583 850.54327 800.38527 -3.46588 0.00000 -2.21375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30435 -0.01583 -1.00000 - 2389 2002 3 18 3 12 2 653 4.8512 182.44689 850.44786 800.30381 -3.59755 0.00000 -2.26261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30364 -0.01583 -1.00000 - 2391 2002 3 18 3 12 12 356 4.8513 182.43795 850.35443 800.22345 -3.70784 0.00000 -2.31396 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30294 -0.01583 -1.00000 - 2393 2002 3 18 3 12 22 59 4.8514 182.42901 850.26305 800.14417 -3.83136 0.00000 -2.36707 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30223 -0.01583 -1.00000 - 2395 2002 3 18 3 12 31 762 4.8514 182.42007 850.17332 800.06603 -3.95037 0.00000 -2.42180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30152 -0.01582 -1.00000 - 2397 2002 3 18 3 12 41 464 4.8515 182.41113 850.08572 799.98899 -4.12057 0.00000 -2.47800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30082 -0.01582 -1.00000 - 2399 2002 3 18 3 12 51 167 4.8515 182.40218 849.99988 799.91306 -4.28554 0.00000 -2.53454 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.30011 -0.01582 -1.00000 - 2401 2002 3 18 3 13 0 871 4.8516 182.39323 849.91577 799.83828 -4.45613 0.00000 -2.59301 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29941 -0.01582 -1.00000 - 2403 2002 3 18 3 13 10 574 4.8516 182.38428 849.83363 799.76465 -4.61908 0.00000 -2.65126 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29870 -0.01582 -1.00000 - 2405 2002 3 18 3 13 20 277 4.8517 182.37533 849.75322 799.69208 -4.78939 0.00000 -2.70912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29800 -0.01582 -1.00000 - 2408 2002 3 18 3 13 34 833 4.8518 182.36191 849.63627 799.58521 -5.03198 0.00000 -2.79491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29694 -0.01582 -1.00000 - 2410 2002 3 18 3 13 44 536 4.8519 182.35296 849.56019 799.51525 -5.20961 0.00000 -2.85075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29623 -0.01582 -1.00000 - 2412 2002 3 18 3 13 54 240 4.8519 182.34401 849.48577 799.44629 -5.37378 0.00000 -2.90617 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29553 -0.01582 -1.00000 - 2414 2002 3 18 3 14 3 944 4.8520 182.33506 849.41318 799.37836 -5.54886 0.00000 -2.95897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29482 -0.01582 -1.00000 - 2416 2002 3 18 3 14 13 648 4.8520 182.32612 849.34172 799.31129 -5.72047 0.00000 -3.00956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29412 -0.01582 -1.00000 - 2418 2002 3 18 3 14 23 352 4.8521 182.31717 849.27163 799.24505 -5.88568 0.00000 -3.05770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29341 -0.01582 -1.00000 - 2420 2002 3 18 3 14 33 56 4.8521 182.30822 849.20293 799.17952 -6.04246 0.00000 -3.10214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29270 -0.01581 -1.00000 - 2422 2002 3 18 3 14 42 761 4.8522 182.29926 849.13489 799.11461 -6.19090 0.00000 -3.14317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29200 -0.01581 -1.00000 - 2424 2002 3 18 3 14 52 465 4.8523 182.29029 849.06791 799.05028 -6.33137 0.00000 -3.18156 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29129 -0.01581 -1.00000 - 2426 2002 3 18 3 15 2 170 4.8523 182.28132 849.00141 798.98643 -6.45972 0.00000 -3.21623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.29059 -0.01581 -1.00000 - 2428 2002 3 18 3 15 11 875 4.8524 182.27235 848.93548 798.92296 -6.59419 0.00000 -3.24793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28988 -0.01581 -1.00000 - 2430 2002 3 18 3 15 21 579 4.8524 182.26336 848.87008 798.85980 -6.69371 0.00000 -3.27467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28918 -0.01581 -1.00000 - 2432 2002 3 18 3 15 31 284 4.8525 182.25438 848.80440 798.79671 -6.78153 0.00000 -3.29685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28847 -0.01581 -1.00000 - 2434 2002 3 18 3 15 40 989 4.8526 182.24538 848.73861 798.73366 -6.85550 0.00000 -3.31473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28776 -0.01581 -1.00000 - 2436 2002 3 18 3 15 50 695 4.8526 182.23638 848.67264 798.67049 -6.91339 0.00000 -3.32720 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28706 -0.01581 -1.00000 - 2438 2002 3 18 3 16 0 400 4.8527 182.22736 848.60572 798.60712 -6.95641 0.00000 -3.33520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28635 -0.01581 -1.00000 - 2440 2002 3 18 3 16 10 105 4.8527 182.21835 848.53822 798.54352 -7.00255 0.00000 -3.33909 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28565 -0.01581 -1.00000 - 2443 2002 3 18 3 16 24 664 4.8528 182.20481 848.43512 798.44741 -7.03600 0.00000 -3.33650 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28459 -0.01580 -1.00000 - 2445 2002 3 18 3 16 34 369 4.8529 182.19577 848.36612 798.38281 -7.03182 0.00000 -3.32908 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28388 -0.01580 -1.00000 - 2447 2002 3 18 3 16 44 75 4.8529 182.18673 848.29538 798.31766 -7.00838 0.00000 -3.31603 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28318 -0.01580 -1.00000 - 2449 2002 3 18 3 16 53 781 4.8530 182.17768 848.22372 798.25192 -6.96591 0.00000 -3.29831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28247 -0.01580 -1.00000 - 2451 2002 3 18 3 17 3 487 4.8531 182.16863 848.15140 798.18558 -6.90498 0.00000 -3.27665 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28176 -0.01580 -1.00000 - 2453 2002 3 18 3 17 13 194 4.8531 182.15957 848.07737 798.11861 -6.83296 0.00000 -3.25123 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28106 -0.01580 -1.00000 - 2455 2002 3 18 3 17 22 900 4.8532 182.15051 848.00204 798.05099 -6.74628 0.00000 -3.22230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.28035 -0.01580 -1.00000 - 2457 2002 3 18 3 17 32 606 4.8532 182.14144 847.92599 797.98278 -6.63860 0.00000 -3.18890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27965 -0.01580 -1.00000 - 2459 2002 3 18 3 17 42 313 4.8533 182.13237 847.84904 797.91389 -6.51800 0.00000 -3.15157 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27894 -0.01580 -1.00000 - 2461 2002 3 18 3 17 52 20 4.8534 182.12329 847.77104 797.84434 -6.38483 0.00000 -3.11129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27823 -0.01580 -1.00000 - 2463 2002 3 18 3 18 1 726 4.8534 182.11421 847.69186 797.77408 -6.23845 0.00000 -3.06712 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27753 -0.01580 -1.00000 - 2465 2002 3 18 3 18 11 433 4.8535 182.10513 847.61188 797.70310 -6.07884 0.00000 -3.02005 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27682 -0.01580 -1.00000 - 2467 2002 3 18 3 18 21 140 4.8535 182.09604 847.53105 797.63142 -5.90686 0.00000 -2.97092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27612 -0.01579 -1.00000 - 2469 2002 3 18 3 18 30 848 4.8536 182.08695 847.44950 797.55899 -5.73150 0.00000 -2.92038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27541 -0.01579 -1.00000 - 2471 2002 3 18 3 18 40 555 4.8537 182.07786 847.36665 797.48576 -5.55213 0.00000 -2.86916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27471 -0.01579 -1.00000 - 2473 2002 3 18 3 18 50 262 4.8537 182.06876 847.28236 797.41175 -5.36080 0.00000 -2.81616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27400 -0.01579 -1.00000 - 2476 2002 3 18 3 19 4 824 4.8538 182.05516 847.15422 797.29900 -5.07045 0.00000 -2.73545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27294 -0.01579 -1.00000 - 2478 2002 3 18 3 19 14 531 4.8539 182.04614 847.06693 797.22270 -4.87677 0.00000 -2.68041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27223 -0.01579 -1.00000 - 2480 2002 3 18 3 19 24 239 4.8539 182.03718 846.97815 797.14540 -4.68335 0.00000 -2.62567 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27153 -0.01579 -1.00000 - 2482 2002 3 18 3 19 33 947 4.8540 182.02826 846.88778 797.06709 -4.50245 0.00000 -2.57221 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27082 -0.01579 -1.00000 - 2484 2002 3 18 3 19 43 655 4.8541 182.01937 846.79522 796.98781 -4.34847 0.00000 -2.52020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.27012 -0.01579 -1.00000 - 2486 2002 3 18 3 19 53 364 4.8541 182.01051 846.70096 796.90754 -4.17739 0.00000 -2.47014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26941 -0.01579 -1.00000 - 2488 2002 3 18 3 20 3 72 4.8542 182.00167 846.60541 796.82633 -4.03012 0.00000 -2.42222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26870 -0.01579 -1.00000 - 2490 2002 3 18 3 20 12 780 4.8543 181.99285 846.50785 796.74415 -3.91206 0.00000 -2.37592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26800 -0.01578 -1.00000 - 2492 2002 3 18 3 20 22 489 4.8543 181.98404 846.40821 796.66104 -3.81242 0.00000 -2.33202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26729 -0.01578 -1.00000 - 2494 2002 3 18 3 20 32 198 4.8544 181.97525 846.30773 796.57711 -3.71529 0.00000 -2.29008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26659 -0.01578 -1.00000 - 2496 2002 3 18 3 20 41 907 4.8544 181.96646 846.20512 796.49231 -3.62192 0.00000 -2.25130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26588 -0.01578 -1.00000 - 2498 2002 3 18 3 20 51 615 4.8545 181.95769 846.10076 796.40684 -3.54835 0.00000 -2.21641 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26517 -0.01578 -1.00000 - 2500 2002 3 18 3 21 1 325 4.8546 181.94878 845.99666 796.32080 -3.47436 0.00000 -2.18503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26447 -0.01578 -1.00000 - 2502 2002 3 18 3 21 11 34 4.8546 181.93974 845.89114 796.23428 -3.38875 0.00000 -2.15751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26376 -0.01578 -1.00000 - 2504 2002 3 18 3 21 20 743 4.8547 181.93088 845.78355 796.14741 -3.34692 0.00000 -2.13406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26306 -0.01578 -1.00000 - 2506 2002 3 18 3 21 30 453 4.8547 181.92206 845.67638 796.06025 -3.27676 0.00000 -2.11397 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26235 -0.01578 -1.00000 - 2508 2002 3 18 3 21 40 162 4.8548 181.91337 845.56935 795.97291 -3.22115 0.00000 -2.09779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26164 -0.01578 -1.00000 - 2511 2002 3 18 3 21 54 727 4.8549 181.90038 845.40781 795.84186 -3.16331 0.00000 -2.07989 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.26058 -0.01578 -1.00000 - 2513 2002 3 18 3 22 4 436 4.8549 181.89181 845.30091 795.75454 -3.12302 0.00000 -2.07246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25988 -0.01578 -1.00000 - 2515 2002 3 18 3 22 14 146 4.8550 181.88326 845.19403 795.66743 -3.10676 0.00000 -2.06959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25917 -0.01577 -1.00000 - 2517 2002 3 18 3 22 23 856 4.8550 181.87472 845.08701 795.58062 -3.11223 0.00000 -2.07096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25847 -0.01577 -1.00000 - 2519 2002 3 18 3 22 33 567 4.8551 181.86612 844.98160 795.49417 -3.14532 0.00000 -2.07692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25776 -0.01577 -1.00000 - 2521 2002 3 18 3 22 43 277 4.8552 181.85753 844.87724 795.40815 -3.15743 0.00000 -2.08592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25705 -0.01577 -1.00000 - 2523 2002 3 18 3 22 52 987 4.8552 181.84893 844.77346 795.32255 -3.18499 0.00000 -2.09824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25635 -0.01577 -1.00000 - 2525 2002 3 18 3 23 2 698 4.8553 181.84033 844.67120 795.23744 -3.24461 0.00000 -2.11444 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25564 -0.01577 -1.00000 - 2527 2002 3 18 3 23 12 408 4.8554 181.83171 844.56930 795.15283 -3.26180 0.00000 -2.13354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25494 -0.01577 -1.00000 - 2529 2002 3 18 3 23 22 119 4.8554 181.82305 844.46854 795.06880 -3.33392 0.00000 -2.15630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25423 -0.01577 -1.00000 - 2531 2002 3 18 3 23 31 830 4.8555 181.81438 844.36905 794.98543 -3.38097 0.00000 -2.18313 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25352 -0.01577 -1.00000 - 2533 2002 3 18 3 23 41 541 4.8556 181.80571 844.27118 794.90274 -3.48357 0.00000 -2.21256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25282 -0.01577 -1.00000 - 2535 2002 3 18 3 23 51 253 4.8556 181.79701 844.17481 794.82079 -3.55073 0.00000 -2.24533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25211 -0.01577 -1.00000 - 2537 2002 3 18 3 24 0 964 4.8557 181.78830 844.07993 794.73962 -3.63304 0.00000 -2.28022 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25140 -0.01577 -1.00000 - 2539 2002 3 18 3 24 10 675 4.8558 181.77960 843.98611 794.65923 -3.75118 0.00000 -2.31789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.25070 -0.01576 -1.00000 - 2541 2002 3 18 3 24 20 387 4.8558 181.77091 843.89380 794.57971 -3.83047 0.00000 -2.35841 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24999 -0.01576 -1.00000 - 2543 2002 3 18 3 24 30 99 4.8559 181.76222 843.80319 794.50112 -3.96248 0.00000 -2.40213 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24929 -0.01576 -1.00000 - 2546 2002 3 18 3 24 44 667 4.8560 181.74922 843.66989 794.38505 -4.14269 0.00000 -2.47185 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24823 -0.01576 -1.00000 - 2548 2002 3 18 3 24 54 379 4.8560 181.74057 843.58341 794.30899 -4.26236 0.00000 -2.51999 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24752 -0.01576 -1.00000 - 2550 2002 3 18 3 25 4 91 4.8561 181.73194 843.49835 794.23392 -4.37040 0.00000 -2.56911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24681 -0.01576 -1.00000 - 2552 2002 3 18 3 25 13 803 4.8562 181.72332 843.41512 794.15991 -4.52640 0.00000 -2.61933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24611 -0.01576 -1.00000 - 2554 2002 3 18 3 25 23 516 4.8562 181.71473 843.33388 794.08691 -4.63069 0.00000 -2.66899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24540 -0.01576 -1.00000 - 2556 2002 3 18 3 25 33 228 4.8563 181.70615 843.25400 794.01489 -4.78610 0.00000 -2.71833 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24469 -0.01576 -1.00000 - 2558 2002 3 18 3 25 42 941 4.8564 181.69758 843.17603 793.94389 -4.93646 0.00000 -2.76809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24399 -0.01576 -1.00000 - 2560 2002 3 18 3 25 52 654 4.8564 181.68902 843.09951 793.87384 -5.11375 0.00000 -2.81684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24328 -0.01576 -1.00000 - 2562 2002 3 18 3 26 2 367 4.8565 181.68046 843.02467 793.80474 -5.25138 0.00000 -2.86488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24258 -0.01575 -1.00000 - 2564 2002 3 18 3 26 12 80 4.8565 181.67192 842.95163 793.73656 -5.40431 0.00000 -2.91061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24187 -0.01575 -1.00000 - 2566 2002 3 18 3 26 21 793 4.8566 181.66338 842.87972 793.66913 -5.56305 0.00000 -2.95416 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24116 -0.01575 -1.00000 - 2568 2002 3 18 3 26 31 506 4.8567 181.65483 842.80919 793.60243 -5.72767 0.00000 -2.99561 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.24046 -0.01575 -1.00000 - 2570 2002 3 18 3 26 41 220 4.8567 181.64628 842.74001 793.53635 -5.88195 0.00000 -3.03376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23975 -0.01575 -1.00000 - 2572 2002 3 18 3 26 50 933 4.8568 181.63774 842.67130 793.47079 -6.02560 0.00000 -3.06863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23904 -0.01575 -1.00000 - 2574 2002 3 18 3 27 0 647 4.8569 181.62918 842.60326 793.40556 -6.15532 0.00000 -3.10092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23834 -0.01575 -1.00000 - 2576 2002 3 18 3 27 10 361 4.8569 181.62062 842.53494 793.34053 -6.28082 0.00000 -3.12994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23763 -0.01575 -1.00000 - 2578 2002 3 18 3 27 20 75 4.8570 181.61207 842.46596 793.27550 -6.38054 0.00000 -3.15556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23692 -0.01575 -1.00000 - 2581 2002 3 18 3 27 34 646 4.8571 181.59922 842.36002 793.17741 -6.50384 0.00000 -3.18564 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23587 -0.01575 -1.00000 - 2583 2002 3 18 3 27 44 360 4.8572 181.59065 842.28682 793.11148 -6.56844 0.00000 -3.20104 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23516 -0.01575 -1.00000 - 2585 2002 3 18 3 27 54 75 4.8572 181.58210 842.21155 793.04504 -6.63414 0.00014 -3.21336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23445 -0.01574 -1.00000 - 2587 2002 3 18 3 28 3 789 4.8573 181.57354 842.13592 792.97814 -6.66851 0.00028 -3.22106 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23375 -0.01574 -1.00000 - 2589 2002 3 18 3 28 13 504 4.8574 181.56499 842.05801 792.91081 -6.69404 0.00042 -3.22525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23304 -0.01574 -1.00000 - 2591 2002 3 18 3 28 23 219 4.8574 181.55644 841.97873 792.84333 -6.70768 0.00056 -3.22483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23233 -0.01574 -1.00000 - 2593 2002 3 18 3 28 32 934 4.8575 181.54791 841.89992 792.77588 -6.70866 0.00069 -3.21998 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23163 -0.01574 -1.00000 - 2595 2002 3 18 3 28 42 649 4.8576 181.53938 841.82194 792.70875 -6.70854 0.00082 -3.21218 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23092 -0.01574 -1.00000 - 2597 2002 3 18 3 28 52 364 4.8576 181.53086 841.74499 792.64223 -6.68158 0.00095 -3.19939 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.23021 -0.01574 -1.00000 - 2599 2002 3 18 3 29 2 80 4.8577 181.52234 841.67128 792.57638 -6.63877 0.00107 -3.18348 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22951 -0.01574 -1.00000 - 2601 2002 3 18 3 29 11 795 4.8578 181.51383 841.60177 792.51135 -6.58229 0.00120 -3.16336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22880 -0.01574 -1.00000 - 2603 2002 3 18 3 29 21 511 4.8578 181.50534 841.53699 792.44704 -6.51254 0.00135 -3.13887 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22809 -0.01574 -1.00000 - 2605 2002 3 18 3 29 31 227 4.8579 181.49685 841.47518 792.38332 -6.42861 0.00149 -3.11044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22739 -0.01574 -1.00000 - 2607 2002 3 18 3 29 40 942 4.8580 181.48836 841.41591 792.31987 -6.33006 0.00162 -3.07843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22668 -0.01574 -1.00000 - 2609 2002 3 18 3 29 50 658 4.8580 181.47987 841.35934 792.25634 -6.21854 0.00179 -3.04234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22597 -0.01573 -1.00000 - 2611 2002 3 18 3 30 0 375 4.8581 181.47140 841.30124 792.19232 -6.10043 0.00197 -3.00388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22527 -0.01573 -1.00000 - 2613 2002 3 18 3 30 10 91 4.8581 181.46292 841.24032 792.12736 -5.96421 0.00212 -2.96269 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22456 -0.01573 -1.00000 - 2616 2002 3 18 3 30 24 665 4.8582 181.45020 841.14268 792.02713 -5.74811 0.00239 -2.89627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22350 -0.01573 -1.00000 - 2618 2002 3 18 3 30 34 382 4.8583 181.44174 841.07251 791.95795 -5.58180 0.00258 -2.84902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22279 -0.01573 -1.00000 - 2620 2002 3 18 3 30 44 99 4.8584 181.43327 840.99621 791.88649 -5.40660 0.00273 -2.80019 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22209 -0.01573 -1.00000 - 2622 2002 3 18 3 30 53 815 4.8584 181.42480 840.91433 791.81263 -5.22438 0.00291 -2.75065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22138 -0.01573 -1.00000 - 2624 2002 3 18 3 31 3 532 4.8585 181.41634 840.82836 791.73631 -5.03574 0.00311 -2.70010 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.22067 -0.01573 -1.00000 - 2626 2002 3 18 3 31 13 249 4.8585 181.40788 840.73619 791.65757 -4.84273 0.00326 -2.64952 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21997 -0.01573 -1.00000 - 2628 2002 3 18 3 31 22 966 4.8586 181.39941 840.63977 791.57662 -4.64825 0.00342 -2.59999 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21926 -0.01573 -1.00000 - 2630 2002 3 18 3 31 32 684 4.8587 181.39096 840.53806 791.49371 -4.48129 0.00360 -2.55189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21855 -0.01573 -1.00000 - 2632 2002 3 18 3 31 42 401 4.8587 181.38251 840.43239 791.40914 -4.41462 0.00376 -2.50634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21785 -0.01573 -1.00000 - 2634 2002 3 18 3 31 52 119 4.8588 181.37405 840.32385 791.32327 -4.35012 0.00389 -2.46234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21714 -0.01572 -1.00000 - 2636 2002 3 18 3 32 1 836 4.8588 181.36561 840.21198 791.23641 -4.26816 0.00406 -2.42043 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21643 -0.01572 -1.00000 - 2638 2002 3 18 3 32 11 554 4.8589 181.35718 840.09921 791.14897 -4.22381 0.00422 -2.38144 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21573 -0.01572 -1.00000 - 2640 2002 3 18 3 32 21 272 4.8590 181.34874 839.98443 791.06122 -4.11270 0.00434 -2.34439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21502 -0.01572 -1.00000 - 2642 2002 3 18 3 32 30 990 4.8590 181.34030 839.86992 790.97350 -4.04462 0.00450 -2.31021 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21431 -0.01572 -1.00000 - 2644 2002 3 18 3 32 40 708 4.8591 181.33189 839.75593 790.88609 -3.95486 0.00467 -2.27974 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21361 -0.01572 -1.00000 - 2646 2002 3 18 3 32 50 426 4.8591 181.32347 839.64336 790.79922 -3.87592 0.00478 -2.25211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21290 -0.01572 -1.00000 - 2648 2002 3 18 3 33 0 145 4.8592 181.31505 839.53334 790.71304 -3.80509 0.00493 -2.22768 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21219 -0.01572 -1.00000 - 2651 2002 3 18 3 33 14 722 4.8592 181.30245 839.37260 790.58525 -3.66941 0.00519 -2.19549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21113 -0.01572 -1.00000 - 2653 2002 3 18 3 33 24 441 4.8593 181.29404 839.26916 790.50106 -3.61040 0.00530 -2.17686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.21043 -0.01572 -1.00000 - 2655 2002 3 18 3 33 34 159 4.8593 181.28563 839.16925 790.41762 -3.60074 0.00546 -2.15983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20972 -0.01572 -1.00000 - 2657 2002 3 18 3 33 43 878 4.8593 181.27725 839.07298 790.33476 -3.56551 0.00565 -2.14434 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20901 -0.01571 -1.00000 - 2659 2002 3 18 3 33 53 597 4.8594 181.26886 838.97888 790.25242 -3.49300 0.00577 -2.13139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20831 -0.01571 -1.00000 - 2661 2002 3 18 3 34 3 316 4.8594 181.26047 838.88553 790.17042 -3.43714 0.00591 -2.12020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20760 -0.01571 -1.00000 - 2663 2002 3 18 3 34 13 35 4.8595 181.25209 838.79171 790.08841 -3.44636 0.00611 -2.11172 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20689 -0.01571 -1.00000 - 2665 2002 3 18 3 34 22 754 4.8595 181.24372 838.69733 790.00636 -3.50742 0.00625 -2.10606 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20619 -0.01571 -1.00000 - 2667 2002 3 18 3 34 32 473 4.8596 181.23534 838.60236 789.92405 -3.54351 0.00637 -2.10329 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20548 -0.01571 -1.00000 - 2669 2002 3 18 3 34 42 192 4.8596 181.22697 838.50602 789.84136 -3.58243 0.00657 -2.10448 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20477 -0.01571 -1.00000 - 2671 2002 3 18 3 34 51 911 4.8597 181.21862 838.40878 789.75827 -3.63944 0.00674 -2.11044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20407 -0.01571 -1.00000 - 2673 2002 3 18 3 35 1 631 4.8597 181.21025 838.31014 789.67491 -3.71188 0.00684 -2.12090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20336 -0.01571 -1.00000 - 2675 2002 3 18 3 35 11 350 4.8598 181.20189 838.21069 789.59147 -3.78358 0.00702 -2.13811 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20265 -0.01571 -1.00000 - 2677 2002 3 18 3 35 21 70 4.8598 181.19355 838.11103 789.50816 -3.83613 0.00721 -2.16080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20195 -0.01571 -1.00000 - 2679 2002 3 18 3 35 30 789 4.8598 181.18520 838.01110 789.42508 -3.95608 0.00731 -2.18945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20124 -0.01571 -1.00000 - 2681 2002 3 18 3 35 40 509 4.8599 181.17684 837.91182 789.34261 -4.05836 0.00746 -2.22449 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.20053 -0.01570 -1.00000 - 2683 2002 3 18 3 35 50 229 4.8599 181.16852 837.81396 789.26098 -4.19654 0.00766 -2.26510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19983 -0.01570 -1.00000 - 2686 2002 3 18 3 36 4 809 4.8600 181.15601 837.67029 789.14078 -4.31602 0.00781 -2.33651 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19877 -0.01570 -1.00000 - 2688 2002 3 18 3 36 14 529 4.8600 181.14768 837.57793 789.06248 -4.38826 0.00798 -2.38913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19806 -0.01570 -1.00000 - 2690 2002 3 18 3 36 24 249 4.8601 181.13938 837.48813 788.98575 -4.42090 0.00818 -2.44427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19735 -0.01570 -1.00000 - 2692 2002 3 18 3 36 33 969 4.8601 181.13106 837.40150 788.91062 -4.47071 0.00826 -2.50102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19664 -0.01570 -1.00000 - 2694 2002 3 18 3 36 43 690 4.8602 181.12274 837.31852 788.83711 -4.49986 0.00839 -2.55673 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19594 -0.01570 -1.00000 - 2696 2002 3 18 3 36 53 410 4.8602 181.11445 837.23802 788.76502 -4.69497 0.00861 -2.61118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19523 -0.01570 -1.00000 - 2698 2002 3 18 3 37 3 131 4.8603 181.10616 837.15984 788.69422 -5.02309 0.00871 -2.66404 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19452 -0.01570 -1.00000 - 2700 2002 3 18 3 37 12 851 4.8603 181.09785 837.08384 788.62451 -5.31765 0.00881 -2.71527 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19382 -0.01570 -1.00000 - 2702 2002 3 18 3 37 22 572 4.8604 181.08957 837.00916 788.55580 -5.58914 0.00904 -2.76455 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19311 -0.01570 -1.00000 - 2704 2002 3 18 3 37 32 293 4.8604 181.08131 836.93581 788.48797 -5.79894 0.00918 -2.81075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19240 -0.01569 -1.00000 - 2706 2002 3 18 3 37 42 14 4.8605 181.07301 836.86381 788.42091 -5.99290 0.00924 -2.85340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19170 -0.01569 -1.00000 - 2708 2002 3 18 3 37 51 735 4.8605 181.06473 836.79319 788.35429 -6.21375 0.00945 -2.89236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19099 -0.01569 -1.00000 - 2710 2002 3 18 3 38 1 456 4.8606 181.05650 836.72306 788.28795 -6.36394 0.00965 -2.92685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.19028 -0.01569 -1.00000 - 2712 2002 3 18 3 38 11 177 4.8606 181.04822 836.65287 788.22163 -6.43793 0.00970 -2.95742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18958 -0.01569 -1.00000 - 2714 2002 3 18 3 38 20 898 4.8606 181.03994 836.58275 788.15522 -6.44775 0.00987 -2.98424 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18887 -0.01569 -1.00000 - 2716 2002 3 18 3 38 30 620 4.8607 181.03172 836.51175 788.08857 -6.40456 0.01011 -3.00799 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18816 -0.01569 -1.00000 - 2718 2002 3 18 3 38 40 341 4.8607 181.02348 836.44033 788.02163 -6.32509 0.01018 -3.02836 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18745 -0.01569 -1.00000 - 2720 2002 3 18 3 38 50 63 4.8608 181.01520 836.36841 787.95435 -6.23152 0.01029 -3.04573 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18675 -0.01569 -1.00000 - 2723 2002 3 18 3 39 4 645 4.8609 181.00289 836.25982 787.85298 -6.21082 0.01063 -3.06636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18569 -0.01569 -1.00000 - 2725 2002 3 18 3 39 14 367 4.8609 180.99464 836.18644 787.78513 -6.20355 0.01066 -3.07662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18498 -0.01569 -1.00000 - 2727 2002 3 18 3 39 24 89 4.8610 180.98639 836.11313 787.71715 -6.22249 0.01082 -3.08435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18427 -0.01569 -1.00000 - 2729 2002 3 18 3 39 33 811 4.8610 180.97821 836.03999 787.64909 -6.22518 0.01108 -3.08951 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18357 -0.01568 -1.00000 - 2731 2002 3 18 3 39 43 533 4.8610 180.97000 835.96582 787.58095 -6.22038 0.01113 -3.09127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18286 -0.01568 -1.00000 - 2733 2002 3 18 3 39 53 255 4.8611 180.96176 835.89148 787.51271 -6.20104 0.01122 -3.09032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18215 -0.01568 -1.00000 - 2735 2002 3 18 3 40 2 977 4.8611 180.95358 835.81706 787.44445 -6.17017 0.01149 -3.08626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18145 -0.01568 -1.00000 - 2737 2002 3 18 3 40 12 700 4.8612 180.94541 835.74262 787.37613 -6.14739 0.01159 -3.07977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18074 -0.01568 -1.00000 - 2739 2002 3 18 3 40 22 422 4.8612 180.93718 835.66800 787.30771 -6.13058 0.01163 -3.07061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.18003 -0.01568 -1.00000 - 2741 2002 3 18 3 40 32 145 4.8613 180.92900 835.59328 787.23918 -6.12478 0.01188 -3.05803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17932 -0.01568 -1.00000 - 2743 2002 3 18 3 40 41 867 4.8613 180.92086 835.51785 787.17051 -6.10614 0.01205 -3.04219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17862 -0.01568 -1.00000 - 2745 2002 3 18 3 40 51 590 4.8614 180.91265 835.44202 787.10164 -6.07428 0.01205 -3.02336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17791 -0.01568 -1.00000 - 2747 2002 3 18 3 41 1 313 4.8614 180.90447 835.36559 787.03247 -6.02344 0.01226 -3.00095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17720 -0.01568 -1.00000 - 2749 2002 3 18 3 41 11 36 4.8615 180.89636 835.28828 786.96294 -5.95789 0.01249 -2.97616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17650 -0.01568 -1.00000 - 2751 2002 3 18 3 41 20 759 4.8615 180.88819 835.21025 786.89300 -5.89175 0.01249 -2.94856 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17579 -0.01568 -1.00000 - 2753 2002 3 18 3 41 30 482 4.8616 180.88000 835.13080 786.82248 -5.81431 0.01264 -2.91864 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17508 -0.01567 -1.00000 - 2755 2002 3 18 3 41 40 205 4.8616 180.87190 835.05039 786.75141 -5.70702 0.01292 -2.88688 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17437 -0.01567 -1.00000 - 2758 2002 3 18 3 41 54 790 4.8617 180.85967 834.92750 786.64353 -5.50771 0.01296 -2.83536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17331 -0.01567 -1.00000 - 2760 2002 3 18 3 42 4 514 4.8617 180.85152 834.84396 786.57074 -5.35502 0.01318 -2.79893 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17261 -0.01567 -1.00000 - 2762 2002 3 18 3 42 14 237 4.8618 180.84345 834.75930 786.49721 -5.19143 0.01342 -2.76124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17190 -0.01567 -1.00000 - 2764 2002 3 18 3 42 23 961 4.8618 180.83531 834.67302 786.42290 -5.02288 0.01342 -2.72246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17119 -0.01567 -1.00000 - 2766 2002 3 18 3 42 33 685 4.8619 180.82716 834.58566 786.34788 -4.86435 0.01357 -2.68360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.17049 -0.01567 -1.00000 - 2768 2002 3 18 3 42 43 408 4.8619 180.81909 834.49731 786.27217 -4.73534 0.01385 -2.64556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16978 -0.01567 -1.00000 - 2770 2002 3 18 3 42 53 132 4.8620 180.81100 834.40765 786.19582 -4.60657 0.01388 -2.60861 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16907 -0.01567 -1.00000 - 2772 2002 3 18 3 43 2 857 4.8620 180.80285 834.31746 786.11888 -4.51082 0.01395 -2.57245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16836 -0.01567 -1.00000 - 2774 2002 3 18 3 43 12 581 4.8621 180.79478 834.22665 786.04134 -4.41044 0.01425 -2.53652 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16766 -0.01567 -1.00000 - 2776 2002 3 18 3 43 22 305 4.8621 180.78673 834.13473 785.96322 -4.30631 0.01434 -2.50223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16695 -0.01566 -1.00000 - 2778 2002 3 18 3 43 32 29 4.8622 180.77860 834.04147 785.88458 -4.20795 0.01435 -2.46954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16624 -0.01566 -1.00000 - 2780 2002 3 18 3 43 41 754 4.8622 180.77053 833.94800 785.80550 -4.12850 0.01463 -2.43826 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16554 -0.01566 -1.00000 - 2782 2002 3 18 3 43 51 478 4.8623 180.76251 833.85413 785.72599 -4.04526 0.01479 -2.40924 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16483 -0.01566 -1.00000 - 2784 2002 3 18 3 44 1 203 4.8623 180.75440 833.75964 785.64612 -3.96655 0.01476 -2.38189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16412 -0.01566 -1.00000 - 2786 2002 3 18 3 44 10 928 4.8624 180.74632 833.66447 785.56591 -3.89049 0.01498 -2.35620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16341 -0.01566 -1.00000 - 2788 2002 3 18 3 44 20 653 4.8624 180.73833 833.56872 785.48547 -3.80835 0.01522 -2.33226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16271 -0.01566 -1.00000 - 2790 2002 3 18 3 44 30 378 4.8625 180.73027 833.47303 785.40469 -3.75866 0.01519 -2.31104 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16200 -0.01566 -1.00000 - 2792 2002 3 18 3 44 40 103 4.8625 180.72218 833.37732 785.32377 -3.69983 0.01535 -2.29231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16129 -0.01566 -1.00000 - 2795 2002 3 18 3 44 54 690 4.8626 180.71021 833.23258 785.20206 -3.62224 0.01567 -2.26770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.16023 -0.01566 -1.00000 - 2797 2002 3 18 3 45 4 416 4.8627 180.70214 833.13627 785.12081 -3.59794 0.01563 -2.25460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15952 -0.01566 -1.00000 - 2799 2002 3 18 3 45 14 141 4.8627 180.69409 833.03901 785.03944 -3.57903 0.01587 -2.24370 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15882 -0.01565 -1.00000 - 2801 2002 3 18 3 45 23 867 4.8628 180.68614 832.94252 784.95799 -3.53896 0.01610 -2.23470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15811 -0.01565 -1.00000 - 2803 2002 3 18 3 45 33 592 4.8628 180.67811 832.84654 784.87652 -3.51387 0.01606 -2.22865 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15740 -0.01565 -1.00000 - 2805 2002 3 18 3 45 43 318 4.8629 180.67006 832.74911 784.79507 -3.51648 0.01623 -2.22532 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15669 -0.01565 -1.00000 - 2807 2002 3 18 3 45 53 44 4.8629 180.66212 832.65241 784.71364 -3.51761 0.01652 -2.22490 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15599 -0.01565 -1.00000 - 2809 2002 3 18 3 46 2 770 4.8630 180.65414 832.55621 784.63229 -3.55127 0.01651 -2.22814 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15528 -0.01565 -1.00000 - 2811 2002 3 18 3 46 12 496 4.8630 180.64609 832.46028 784.55114 -3.55572 0.01660 -2.23341 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15457 -0.01565 -1.00000 - 2813 2002 3 18 3 46 22 222 4.8631 180.63814 832.36438 784.47017 -3.57136 0.01692 -2.24120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15387 -0.01565 -1.00000 - 2815 2002 3 18 3 46 31 948 4.8631 180.63020 832.26954 784.38949 -3.63447 0.01697 -2.25153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15316 -0.01565 -1.00000 - 2817 2002 3 18 3 46 41 675 4.8632 180.62217 832.17491 784.30909 -3.65266 0.01699 -2.26376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15245 -0.01565 -1.00000 - 2819 2002 3 18 3 46 51 401 4.8632 180.61422 832.08116 784.22907 -3.70533 0.01730 -2.27872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15174 -0.01565 -1.00000 - 2821 2002 3 18 3 47 1 128 4.8633 180.60631 831.98840 784.14945 -3.74732 0.01743 -2.29579 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15104 -0.01565 -1.00000 - 2823 2002 3 18 3 47 10 854 4.8633 180.59830 831.89598 784.07027 -3.78143 0.01739 -2.31548 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.15033 -0.01564 -1.00000 - 2825 2002 3 18 3 47 20 581 4.8634 180.59034 831.80460 783.99157 -3.86175 0.01765 -2.33747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14962 -0.01564 -1.00000 - 2827 2002 3 18 3 47 30 308 4.8634 180.58247 831.71429 783.91341 -3.90152 0.01785 -2.36130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14891 -0.01564 -1.00000 - 2829 2002 3 18 3 47 40 35 4.8635 180.57450 831.62467 783.83573 -3.97683 0.01779 -2.38684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14821 -0.01564 -1.00000 - 2832 2002 3 18 3 47 54 625 4.8636 180.56259 831.49245 783.72038 -4.07925 0.01813 -2.42685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14715 -0.01564 -1.00000 - 2834 2002 3 18 3 48 4 353 4.8636 180.55473 831.40540 783.64422 -4.16455 0.01822 -2.45514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14644 -0.01564 -1.00000 - 2836 2002 3 18 3 48 14 80 4.8637 180.54676 831.31950 783.56864 -4.24448 0.01817 -2.48470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14573 -0.01564 -1.00000 - 2838 2002 3 18 3 48 23 807 4.8637 180.53885 831.23453 783.49365 -4.32876 0.01843 -2.51444 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14502 -0.01564 -1.00000 - 2840 2002 3 18 3 48 33 535 4.8638 180.53103 831.15046 783.41922 -4.41719 0.01861 -2.54514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14432 -0.01564 -1.00000 - 2842 2002 3 18 3 48 43 263 4.8638 180.52310 831.06758 783.34538 -4.52244 0.01854 -2.57626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14361 -0.01564 -1.00000 - 2844 2002 3 18 3 48 52 990 4.8639 180.51518 830.98511 783.27210 -4.61789 0.01874 -2.60665 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14290 -0.01564 -1.00000 - 2846 2002 3 18 3 49 2 718 4.8639 180.50738 830.90367 783.19931 -4.70240 0.01900 -2.63751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14219 -0.01564 -1.00000 - 2848 2002 3 18 3 49 12 446 4.8640 180.49950 830.82318 783.12701 -4.79203 0.01896 -2.66748 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14149 -0.01563 -1.00000 - 2850 2002 3 18 3 49 22 174 4.8640 180.49157 830.74305 783.05520 -4.88228 0.01910 -2.69687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14078 -0.01563 -1.00000 - 2852 2002 3 18 3 49 31 902 4.8641 180.48377 830.66373 782.98383 -4.96675 0.01943 -2.72620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.14007 -0.01563 -1.00000 - 2854 2002 3 18 3 49 41 631 4.8642 180.47594 830.58500 782.91290 -5.06699 0.01945 -2.75433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13936 -0.01563 -1.00000 - 2856 2002 3 18 3 49 51 359 4.8642 180.46801 830.50685 782.84240 -5.16462 0.01951 -2.78138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13866 -0.01563 -1.00000 - 2858 2002 3 18 3 50 1 87 4.8643 180.46019 830.42939 782.77228 -5.25398 0.01985 -2.80734 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13795 -0.01563 -1.00000 - 2860 2002 3 18 3 50 10 816 4.8643 180.45241 830.35216 782.70245 -5.34047 0.01994 -2.83167 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13724 -0.01563 -1.00000 - 2862 2002 3 18 3 50 20 545 4.8644 180.44449 830.27544 782.63293 -5.42159 0.01993 -2.85408 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13653 -0.01563 -1.00000 - 2864 2002 3 18 3 50 30 274 4.8644 180.43665 830.19926 782.56366 -5.49638 0.02024 -2.87422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13583 -0.01563 -1.00000 - 2866 2002 3 18 3 50 40 3 4.8645 180.42890 830.12307 782.49458 -5.57096 0.02040 -2.89237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13512 -0.01563 -1.00000 - 2869 2002 3 18 3 50 54 596 4.8646 180.41708 830.00949 782.39132 -5.66379 0.02041 -2.91646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13406 -0.01563 -1.00000 - 2871 2002 3 18 3 51 4 325 4.8646 180.40930 829.93388 782.32267 -5.71311 0.02071 -2.92968 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13335 -0.01562 -1.00000 - 2873 2002 3 18 3 51 14 55 4.8647 180.40155 829.85852 782.25412 -5.75568 0.02074 -2.94038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13264 -0.01562 -1.00000 - 2875 2002 3 18 3 51 23 784 4.8647 180.39367 829.78307 782.18563 -5.79109 0.02071 -2.94773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13194 -0.01562 -1.00000 - 2877 2002 3 18 3 51 33 514 4.8648 180.38589 829.70764 782.11713 -5.81623 0.02099 -2.95309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13123 -0.01562 -1.00000 - 2879 2002 3 18 3 51 43 243 4.8648 180.37819 829.63233 782.04860 -5.83255 0.02110 -2.95629 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.13052 -0.01562 -1.00000 - 2881 2002 3 18 3 51 52 973 4.8649 180.37035 829.55656 781.98001 -5.84149 0.02102 -2.95669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12981 -0.01562 -1.00000 - 2883 2002 3 18 3 52 2 703 4.8649 180.36257 829.48069 781.91129 -5.84629 0.02125 -2.95501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12911 -0.01562 -1.00000 - 2885 2002 3 18 3 52 12 433 4.8650 180.35489 829.40468 781.84244 -5.83444 0.02144 -2.95048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12840 -0.01562 -1.00000 - 2887 2002 3 18 3 52 22 163 4.8650 180.34711 829.32820 781.77337 -5.81303 0.02136 -2.94351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12769 -0.01562 -1.00000 - 2889 2002 3 18 3 52 31 893 4.8651 180.33932 829.25158 781.70413 -5.78297 0.02154 -2.93406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12698 -0.01562 -1.00000 - 2891 2002 3 18 3 52 41 623 4.8651 180.33166 829.17414 781.63460 -5.74554 0.02181 -2.92189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12627 -0.01562 -1.00000 - 2893 2002 3 18 3 52 51 354 4.8652 180.32392 829.09643 781.56479 -5.69819 0.02177 -2.90778 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12557 -0.01562 -1.00000 - 2895 2002 3 18 3 53 1 84 4.8653 180.31613 829.01844 781.49465 -5.64341 0.02188 -2.89194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12486 -0.01561 -1.00000 - 2897 2002 3 18 3 53 10 815 4.8653 180.30846 828.93955 781.42420 -5.58230 0.02221 -2.87378 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12415 -0.01561 -1.00000 - 2899 2002 3 18 3 53 20 545 4.8654 180.30077 828.86008 781.35335 -5.52643 0.02222 -2.85433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12344 -0.01561 -1.00000 - 2901 2002 3 18 3 53 30 276 4.8654 180.29298 828.78007 781.28212 -5.44853 0.02226 -2.83270 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12274 -0.01561 -1.00000 - 2903 2002 3 18 3 53 40 7 4.8655 180.28528 828.69930 781.21045 -5.36672 0.02259 -2.80964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12203 -0.01561 -1.00000 - 2906 2002 3 18 3 53 54 604 4.8656 180.27373 828.57696 781.10215 -5.23711 0.02263 -2.77217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12097 -0.01561 -1.00000 - 2908 2002 3 18 3 54 4 335 4.8656 180.26595 828.49436 781.02936 -5.14683 0.02278 -2.74530 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.12026 -0.01561 -1.00000 - 2910 2002 3 18 3 54 14 66 4.8657 180.25830 828.41102 780.95609 -5.05364 0.02308 -2.71772 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11955 -0.01561 -1.00000 - 2912 2002 3 18 3 54 23 798 4.8657 180.25060 828.32679 780.88232 -4.95796 0.02306 -2.68958 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11884 -0.01561 -1.00000 - 2914 2002 3 18 3 54 33 529 4.8658 180.24282 828.24178 780.80808 -4.87359 0.02311 -2.66155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11814 -0.01561 -1.00000 - 2916 2002 3 18 3 54 43 261 4.8658 180.23514 828.15590 780.73335 -4.78303 0.02343 -2.63360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11743 -0.01561 -1.00000 - 2918 2002 3 18 3 54 52 993 4.8659 180.22748 828.06906 780.65814 -4.68851 0.02345 -2.60590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11672 -0.01560 -1.00000 - 2920 2002 3 18 3 55 2 725 4.8660 180.21971 827.98159 780.58248 -4.61231 0.02339 -2.57848 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11601 -0.01560 -1.00000 - 2922 2002 3 18 3 55 12 457 4.8660 180.21202 827.89350 780.50635 -4.52862 0.02366 -2.55140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11531 -0.01560 -1.00000 - 2924 2002 3 18 3 55 22 189 4.8661 180.20441 827.80438 780.42973 -4.43602 0.02377 -2.52467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11460 -0.01560 -1.00000 - 2926 2002 3 18 3 55 31 921 4.8661 180.19670 827.71478 780.35276 -4.35955 0.02371 -2.49884 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11389 -0.01560 -1.00000 - 2928 2002 3 18 3 55 41 653 4.8662 180.18902 827.62427 780.27533 -4.28779 0.02396 -2.47406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11318 -0.01560 -1.00000 - 2930 2002 3 18 3 55 51 386 4.8662 180.18145 827.53367 780.19755 -4.21120 0.02415 -2.45008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11247 -0.01560 -1.00000 - 2932 2002 3 18 3 56 1 118 4.8663 180.17379 827.44191 780.11941 -4.14171 0.02409 -2.42744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11177 -0.01560 -1.00000 - 2934 2002 3 18 3 56 10 851 4.8663 180.16613 827.34966 780.04096 -4.08686 0.02428 -2.40620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11106 -0.01560 -1.00000 - 2936 2002 3 18 3 56 20 584 4.8664 180.15858 827.25705 779.96220 -4.02359 0.02454 -2.38668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.11035 -0.01560 -1.00000 - 2938 2002 3 18 3 56 30 316 4.8665 180.15098 827.16427 779.88318 -3.96671 0.02449 -2.36807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10964 -0.01560 -1.00000 - 2940 2002 3 18 3 56 40 49 4.8665 180.14333 827.07086 779.80393 -3.91490 0.02462 -2.35145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10894 -0.01560 -1.00000 - 2943 2002 3 18 3 56 54 649 4.8666 180.13203 826.92982 779.68469 -3.85863 0.02495 -2.33084 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10787 -0.01559 -1.00000 - 2945 2002 3 18 3 57 4 382 4.8667 180.12442 826.83514 779.60507 -3.82635 0.02490 -2.31920 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10717 -0.01559 -1.00000 - 2947 2002 3 18 3 57 14 116 4.8667 180.11681 826.74091 779.52535 -3.78793 0.02512 -2.30981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10646 -0.01559 -1.00000 - 2949 2002 3 18 3 57 23 849 4.8668 180.10928 826.64686 779.44560 -3.77774 0.02533 -2.30234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10575 -0.01559 -1.00000 - 2951 2002 3 18 3 57 33 583 4.8668 180.10168 826.55214 779.36591 -3.75580 0.02527 -2.29717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10504 -0.01559 -1.00000 - 2953 2002 3 18 3 57 43 317 4.8669 180.09404 826.45806 779.28627 -3.74248 0.02542 -2.29409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10433 -0.01559 -1.00000 - 2955 2002 3 18 3 57 53 51 4.8669 180.08647 826.36409 779.20677 -3.73049 0.02566 -2.29248 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10363 -0.01559 -1.00000 - 2957 2002 3 18 3 58 2 785 4.8670 180.07887 826.27076 779.12745 -3.73093 0.02561 -2.29336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10292 -0.01559 -1.00000 - 2959 2002 3 18 3 58 12 519 4.8671 180.07118 826.17823 779.04836 -3.73932 0.02566 -2.29699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10221 -0.01559 -1.00000 - 2961 2002 3 18 3 58 22 253 4.8671 180.06357 826.08599 778.96955 -3.75613 0.02592 -2.30267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10150 -0.01559 -1.00000 - 2963 2002 3 18 3 58 31 987 4.8672 180.05596 825.99453 778.89109 -3.78793 0.02593 -2.31060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10080 -0.01559 -1.00000 - 2965 2002 3 18 3 58 41 722 4.8672 180.04827 825.90392 778.81298 -3.80495 0.02594 -2.32005 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.10009 -0.01559 -1.00000 - 2967 2002 3 18 3 58 51 456 4.8673 180.04062 825.81406 778.73526 -3.83969 0.02620 -2.33136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09938 -0.01558 -1.00000 - 2969 2002 3 18 3 59 1 191 4.8674 180.03301 825.72521 778.65793 -3.87349 0.02626 -2.34433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09867 -0.01558 -1.00000 - 2971 2002 3 18 3 59 10 926 4.8674 180.02531 825.63687 778.58099 -3.90125 0.02624 -2.35846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09796 -0.01558 -1.00000 - 2973 2002 3 18 3 59 20 661 4.8675 180.01763 825.54947 778.50444 -3.93805 0.02648 -2.37460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09726 -0.01558 -1.00000 - 2975 2002 3 18 3 59 30 396 4.8675 180.00999 825.46300 778.42829 -3.99504 0.02661 -2.39265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09655 -0.01558 -1.00000 - 2977 2002 3 18 3 59 40 131 4.8676 180.00228 825.37690 778.35251 -4.05521 0.02656 -2.41217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09584 -0.01558 -1.00000 - 2980 2002 3 18 3 59 54 734 4.8677 179.99072 825.24908 778.23958 -4.14345 0.02688 -2.44394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09478 -0.01558 -1.00000 - 2982 2002 3 18 4 0 4 469 4.8677 179.98304 825.16420 778.16469 -4.21828 0.02692 -2.46609 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09407 -0.01558 -1.00000 - 2984 2002 3 18 4 0 14 205 4.8678 179.97527 825.07985 778.09017 -4.28293 0.02693 -2.48906 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09336 -0.01558 -1.00000 - 2986 2002 3 18 4 0 23 940 4.8678 179.96752 824.99606 778.01589 -4.35107 0.02717 -2.51254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09265 -0.01558 -1.00000 - 2988 2002 3 18 4 0 33 676 4.8679 179.95980 824.91228 777.94190 -4.43951 0.02726 -2.53665 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09195 -0.01558 -1.00000 - 2990 2002 3 18 4 0 43 412 4.8680 179.95199 824.82870 777.86813 -4.50621 0.02723 -2.56152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09124 -0.01557 -1.00000 - 2992 2002 3 18 4 0 53 148 4.8680 179.94419 824.74519 777.79461 -4.59005 0.02742 -2.58632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.09053 -0.01557 -1.00000 - 2994 2002 3 18 4 1 2 884 4.8681 179.93644 824.66189 777.72131 -4.66783 0.02756 -2.61110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08982 -0.01557 -1.00000 - 2996 2002 3 18 4 1 12 620 4.8681 179.92863 824.57910 777.64832 -4.73958 0.02753 -2.63585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08911 -0.01557 -1.00000 - 2998 2002 3 18 4 1 22 357 4.8682 179.92081 824.49604 777.57556 -4.81326 0.02769 -2.65937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08841 -0.01557 -1.00000 - 3000 2002 3 18 4 1 32 93 4.8682 179.91306 824.41363 777.50310 -4.88710 0.02788 -2.68294 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08770 -0.01557 -1.00000 - 3002 2002 3 18 4 1 41 830 4.8683 179.90529 824.33196 777.43099 -4.96897 0.02787 -2.70571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08699 -0.01557 -1.00000 - 3004 2002 3 18 4 1 51 566 4.8683 179.89749 824.25032 777.35920 -5.04898 0.02798 -2.72779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08628 -0.01557 -1.00000 - 3006 2002 3 18 4 2 1 303 4.8684 179.88976 824.16945 777.28777 -5.13191 0.02821 -2.74898 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08557 -0.01557 -1.00000 - 3008 2002 3 18 4 2 11 40 4.8685 179.88205 824.08949 777.21669 -5.20403 0.02823 -2.76883 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08487 -0.01557 -1.00000 - 3010 2002 3 18 4 2 20 777 4.8685 179.87429 824.01000 777.14597 -5.27494 0.02830 -2.78677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08416 -0.01557 -1.00000 - 3012 2002 3 18 4 2 30 514 4.8686 179.86660 823.93148 777.07561 -5.34054 0.02853 -2.80332 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08345 -0.01557 -1.00000 - 3014 2002 3 18 4 2 40 251 4.8686 179.85893 823.85337 777.00561 -5.39716 0.02860 -2.81769 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08274 -0.01556 -1.00000 - 3017 2002 3 18 4 2 54 857 4.8687 179.84740 823.73784 776.90113 -5.47685 0.02873 -2.83664 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08168 -0.01556 -1.00000 - 3019 2002 3 18 4 3 4 595 4.8688 179.83978 823.66144 776.83182 -5.50947 0.02893 -2.84668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08097 -0.01556 -1.00000 - 3021 2002 3 18 4 3 14 333 4.8688 179.83217 823.58551 776.76269 -5.53469 0.02895 -2.85460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.08026 -0.01556 -1.00000 - 3023 2002 3 18 4 3 24 70 4.8689 179.82454 823.51015 776.69375 -5.55021 0.02905 -2.86014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07955 -0.01556 -1.00000 - 3025 2002 3 18 4 3 33 808 4.8690 179.81697 823.43446 776.62481 -5.55726 0.02926 -2.86411 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07885 -0.01556 -1.00000 - 3027 2002 3 18 4 3 43 546 4.8690 179.80943 823.35899 776.55589 -5.55618 0.02931 -2.86570 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07814 -0.01556 -1.00000 - 3029 2002 3 18 4 3 53 284 4.8691 179.80186 823.28358 776.48690 -5.54542 0.02936 -2.86492 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07743 -0.01556 -1.00000 - 3031 2002 3 18 4 4 3 23 4.8691 179.79434 823.20767 776.41781 -5.52414 0.02957 -2.86167 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07672 -0.01556 -1.00000 - 3033 2002 3 18 4 4 12 761 4.8692 179.78686 823.13140 776.34853 -5.49463 0.02966 -2.85671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07601 -0.01556 -1.00000 - 3035 2002 3 18 4 4 22 500 4.8693 179.77936 823.05460 776.27902 -5.45801 0.02968 -2.84982 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07531 -0.01556 -1.00000 - 3037 2002 3 18 4 4 32 238 4.8693 179.77188 822.97726 776.20926 -5.42797 0.02987 -2.84158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07460 -0.01555 -1.00000 - 3039 2002 3 18 4 4 41 977 4.8694 179.76445 822.89928 776.13920 -5.38294 0.03000 -2.83205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07389 -0.01555 -1.00000 - 3041 2002 3 18 4 4 51 716 4.8694 179.75699 822.82047 776.06884 -5.33843 0.03001 -2.82129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07318 -0.01555 -1.00000 - 3043 2002 3 18 4 5 1 455 4.8695 179.74953 822.74119 775.99819 -5.30624 0.03016 -2.80923 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07247 -0.01555 -1.00000 - 3045 2002 3 18 4 5 11 194 4.8696 179.74210 822.66153 775.92721 -5.25891 0.03031 -2.79591 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07176 -0.01555 -1.00000 - 3047 2002 3 18 4 5 20 933 4.8696 179.73466 822.58101 775.85589 -5.21365 0.03033 -2.78111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07106 -0.01555 -1.00000 - 3049 2002 3 18 4 5 30 672 4.8697 179.72719 822.50017 775.78432 -5.18409 0.03043 -2.76536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.07035 -0.01555 -1.00000 - 3051 2002 3 18 4 5 40 412 4.8697 179.71975 822.41861 775.71240 -5.14283 0.03060 -2.74889 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06964 -0.01555 -1.00000 - 3053 2002 3 18 4 5 50 152 4.8698 179.71230 822.33665 775.64022 -5.09268 0.03063 -2.73107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06893 -0.01555 -1.00000 - 3056 2002 3 18 4 6 4 761 4.8699 179.70109 822.21295 775.53136 -5.03287 0.03078 -2.70257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06787 -0.01555 -1.00000 - 3058 2002 3 18 4 6 14 501 4.8700 179.69364 822.12989 775.45842 -4.98076 0.03091 -2.68319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06716 -0.01555 -1.00000 - 3060 2002 3 18 4 6 24 241 4.8700 179.68618 822.04665 775.38516 -4.93306 0.03094 -2.66252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06645 -0.01555 -1.00000 - 3062 2002 3 18 4 6 33 981 4.8701 179.67870 821.96252 775.31155 -4.88635 0.03104 -2.64162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06574 -0.01554 -1.00000 - 3064 2002 3 18 4 6 43 721 4.8701 179.67125 821.87786 775.23761 -4.84734 0.03119 -2.62058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06504 -0.01554 -1.00000 - 3066 2002 3 18 4 6 53 462 4.8702 179.66380 821.79280 775.16330 -4.79057 0.03124 -2.59897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06433 -0.01554 -1.00000 - 3068 2002 3 18 4 7 3 202 4.8703 179.65633 821.70707 775.08863 -4.72906 0.03132 -2.57668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06362 -0.01554 -1.00000 - 3070 2002 3 18 4 7 12 943 4.8703 179.64888 821.62072 775.01358 -4.66217 0.03147 -2.55438 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06291 -0.01554 -1.00000 - 3072 2002 3 18 4 7 22 684 4.8704 179.64144 821.53348 774.93813 -4.58928 0.03155 -2.53174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06220 -0.01554 -1.00000 - 3074 2002 3 18 4 7 32 424 4.8704 179.63399 821.44569 774.86225 -4.51205 0.03160 -2.50941 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06149 -0.01554 -1.00000 - 3076 2002 3 18 4 7 42 165 4.8705 179.62655 821.35743 774.78599 -4.43923 0.03174 -2.48779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06079 -0.01554 -1.00000 - 3078 2002 3 18 4 7 51 906 4.8706 179.61913 821.26794 774.70934 -4.35236 0.03184 -2.46638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.06008 -0.01554 -1.00000 - 3080 2002 3 18 4 8 1 648 4.8706 179.61171 821.17864 774.63231 -4.26734 0.03189 -2.44615 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05937 -0.01554 -1.00000 - 3082 2002 3 18 4 8 11 389 4.8707 179.60429 821.08804 774.55496 -4.19200 0.03201 -2.42631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05866 -0.01554 -1.00000 - 3084 2002 3 18 4 8 21 130 4.8707 179.59689 820.99701 774.47728 -4.13536 0.03215 -2.40820 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05795 -0.01554 -1.00000 - 3086 2002 3 18 4 8 30 872 4.8708 179.58950 820.90604 774.39934 -4.07214 0.03222 -2.39162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05724 -0.01553 -1.00000 - 3088 2002 3 18 4 8 40 614 4.8709 179.58210 820.81409 774.32116 -4.01757 0.03232 -2.37606 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05653 -0.01553 -1.00000 - 3090 2002 3 18 4 8 50 355 4.8709 179.57471 820.72209 774.24279 -3.97318 0.03245 -2.36180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05583 -0.01553 -1.00000 - 3092 2002 3 18 4 9 0 97 4.8710 179.56733 820.63010 774.16431 -3.93588 0.03251 -2.35048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05512 -0.01553 -1.00000 - 3095 2002 3 18 4 9 14 711 4.8711 179.55625 820.49162 774.04642 -3.89187 0.03265 -2.33645 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05406 -0.01553 -1.00000 - 3097 2002 3 18 4 9 24 453 4.8711 179.54889 820.39931 773.96780 -3.88630 0.03276 -2.33000 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05335 -0.01553 -1.00000 - 3099 2002 3 18 4 9 34 195 4.8712 179.54152 820.30714 773.88922 -3.85844 0.03282 -2.32521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05264 -0.01553 -1.00000 - 3101 2002 3 18 4 9 43 938 4.8713 179.53415 820.21512 773.81069 -3.85163 0.03291 -2.32228 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05193 -0.01553 -1.00000 - 3103 2002 3 18 4 9 53 680 4.8713 179.52679 820.12352 773.73231 -3.83290 0.03302 -2.32125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05122 -0.01553 -1.00000 - 3105 2002 3 18 4 10 3 423 4.8714 179.51943 820.03170 773.65404 -3.82357 0.03309 -2.32175 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.05051 -0.01553 -1.00000 - 3107 2002 3 18 4 10 13 166 4.8714 179.51207 819.94044 773.57595 -3.82944 0.03317 -2.32437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04980 -0.01553 -1.00000 - 3109 2002 3 18 4 10 22 909 4.8715 179.50472 819.84984 773.49808 -3.83643 0.03328 -2.32888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04910 -0.01552 -1.00000 - 3111 2002 3 18 4 10 32 652 4.8716 179.49741 819.75920 773.42047 -3.85094 0.03336 -2.33538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04839 -0.01552 -1.00000 - 3113 2002 3 18 4 10 42 395 4.8716 179.49012 819.66912 773.34310 -3.87436 0.03343 -2.34402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04768 -0.01552 -1.00000 - 3115 2002 3 18 4 10 52 138 4.8717 179.48286 819.57965 773.26604 -3.90458 0.03356 -2.35430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04697 -0.01552 -1.00000 - 3117 2002 3 18 4 11 1 882 4.8717 179.47563 819.49071 773.18931 -3.92536 0.03367 -2.36582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04626 -0.01552 -1.00000 - 3119 2002 3 18 4 11 11 626 4.8718 179.46841 819.40256 773.11295 -3.96215 0.03375 -2.37904 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04555 -0.01552 -1.00000 - 3121 2002 3 18 4 11 21 369 4.8719 179.46121 819.31460 773.03690 -4.00456 0.03386 -2.39340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04484 -0.01552 -1.00000 - 3123 2002 3 18 4 11 31 113 4.8719 179.45404 819.22753 772.96123 -4.04754 0.03398 -2.40923 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04414 -0.01552 -1.00000 - 3125 2002 3 18 4 11 40 857 4.8720 179.44688 819.14134 772.88594 -4.08759 0.03407 -2.42578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04343 -0.01552 -1.00000 - 3127 2002 3 18 4 11 50 601 4.8721 179.43973 819.05550 772.81102 -4.13836 0.03417 -2.44300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04272 -0.01552 -1.00000 - 3129 2002 3 18 4 12 0 345 4.8721 179.43260 818.97042 772.73647 -4.19662 0.03429 -2.46173 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04201 -0.01552 -1.00000 - 3131 2002 3 18 4 12 10 90 4.8722 179.42549 818.88596 772.66235 -4.27706 0.03437 -2.48197 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04130 -0.01552 -1.00000 - 3134 2002 3 18 4 12 24 706 4.8723 179.41484 818.76053 772.55190 -4.36677 0.03451 -2.51313 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.04024 -0.01551 -1.00000 - 3136 2002 3 18 4 12 34 451 4.8723 179.40776 818.67790 772.47876 -4.44210 0.03462 -2.53442 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03953 -0.01551 -1.00000 - 3138 2002 3 18 4 12 44 196 4.8724 179.40070 818.59578 772.40600 -4.51046 0.03469 -2.55585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03882 -0.01551 -1.00000 - 3140 2002 3 18 4 12 53 941 4.8725 179.39364 818.51447 772.33364 -4.57242 0.03478 -2.57780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03811 -0.01551 -1.00000 - 3142 2002 3 18 4 13 3 686 4.8725 179.38659 818.43339 772.26163 -4.64772 0.03488 -2.59882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03740 -0.01551 -1.00000 - 3144 2002 3 18 4 13 13 431 4.8726 179.37956 818.35315 772.18999 -4.71342 0.03496 -2.61994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03670 -0.01551 -1.00000 - 3146 2002 3 18 4 13 23 176 4.8727 179.37254 818.27379 772.11871 -4.77530 0.03504 -2.64065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03599 -0.01551 -1.00000 - 3148 2002 3 18 4 13 32 922 4.8727 179.36553 818.19440 772.04773 -4.85547 0.03514 -2.66102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03528 -0.01551 -1.00000 - 3150 2002 3 18 4 13 42 667 4.8728 179.35853 818.11571 771.97711 -4.91091 0.03521 -2.68041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03457 -0.01551 -1.00000 - 3152 2002 3 18 4 13 52 413 4.8729 179.35154 818.03772 771.90675 -4.97790 0.03528 -2.69888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03386 -0.01551 -1.00000 - 3154 2002 3 18 4 14 2 159 4.8729 179.34456 817.96001 771.83665 -5.04711 0.03537 -2.71635 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03315 -0.01551 -1.00000 - 3156 2002 3 18 4 14 11 905 4.8730 179.33759 817.88261 771.76677 -5.11508 0.03546 -2.73251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03244 -0.01550 -1.00000 - 3158 2002 3 18 4 14 21 651 4.8730 179.33063 817.80544 771.69709 -5.17367 0.03554 -2.74697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03173 -0.01550 -1.00000 - 3160 2002 3 18 4 14 31 397 4.8731 179.32368 817.72863 771.62754 -5.22607 0.03563 -2.76018 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03103 -0.01550 -1.00000 - 3162 2002 3 18 4 14 41 143 4.8732 179.31674 817.65211 771.55813 -5.27182 0.03572 -2.77186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.03032 -0.01550 -1.00000 - 3164 2002 3 18 4 14 50 890 4.8732 179.30980 817.57536 771.48877 -5.31202 0.03580 -2.78163 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02961 -0.01550 -1.00000 - 3166 2002 3 18 4 15 0 636 4.8733 179.30287 817.49882 771.41948 -5.34872 0.03589 -2.78997 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02890 -0.01550 -1.00000 - 3168 2002 3 18 4 15 10 383 4.8734 179.29596 817.42248 771.35021 -5.37683 0.03599 -2.79668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02819 -0.01550 -1.00000 - 3170 2002 3 18 4 15 20 130 4.8734 179.28905 817.34587 771.28088 -5.39825 0.03607 -2.80129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02748 -0.01550 -1.00000 - 3173 2002 3 18 4 15 34 750 4.8735 179.27869 817.23053 771.17669 -5.41735 0.03620 -2.80470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02642 -0.01550 -1.00000 - 3175 2002 3 18 4 15 44 497 4.8736 179.27180 817.15308 771.10707 -5.42634 0.03630 -2.80492 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02571 -0.01550 -1.00000 - 3177 2002 3 18 4 15 54 245 4.8737 179.26492 817.07540 771.03725 -5.42668 0.03638 -2.80369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02500 -0.01550 -1.00000 - 3179 2002 3 18 4 16 3 992 4.8737 179.25804 816.99735 770.96725 -5.41526 0.03646 -2.80021 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02429 -0.01549 -1.00000 - 3181 2002 3 18 4 16 13 740 4.8738 179.25117 816.91890 770.89707 -5.39841 0.03655 -2.79479 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02358 -0.01549 -1.00000 - 3183 2002 3 18 4 16 23 487 4.8738 179.24431 816.84019 770.82665 -5.37589 0.03663 -2.78793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02287 -0.01549 -1.00000 - 3185 2002 3 18 4 16 33 235 4.8739 179.23746 816.76075 770.75598 -5.34705 0.03671 -2.77911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02216 -0.01549 -1.00000 - 3187 2002 3 18 4 16 42 983 4.8740 179.23061 816.68101 770.68508 -5.31025 0.03680 -2.76918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02146 -0.01549 -1.00000 - 3189 2002 3 18 4 16 52 731 4.8740 179.22376 816.60096 770.61394 -5.26936 0.03688 -2.75805 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02075 -0.01549 -1.00000 - 3191 2002 3 18 4 17 2 479 4.8741 179.21692 816.52036 770.54253 -5.23018 0.03696 -2.74531 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.02004 -0.01549 -1.00000 - 3193 2002 3 18 4 17 12 228 4.8742 179.21008 816.43959 770.47091 -5.18341 0.03704 -2.73147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01933 -0.01549 -1.00000 - 3195 2002 3 18 4 17 21 976 4.8742 179.20325 816.35799 770.39896 -5.12776 0.03712 -2.71663 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01862 -0.01549 -1.00000 - 3197 2002 3 18 4 17 31 725 4.8743 179.19641 816.27616 770.32680 -5.07022 0.03719 -2.70053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01791 -0.01549 -1.00000 - 3199 2002 3 18 4 17 41 473 4.8744 179.18957 816.19408 770.25434 -5.01012 0.03727 -2.68342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01720 -0.01549 -1.00000 - 3201 2002 3 18 4 17 51 222 4.8744 179.18273 816.11143 770.18164 -4.94809 0.03733 -2.66554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01649 -0.01549 -1.00000 - 3203 2002 3 18 4 18 0 971 4.8745 179.17589 816.02850 770.10864 -4.88230 0.03738 -2.64732 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01578 -0.01548 -1.00000 - 3205 2002 3 18 4 18 10 720 4.8746 179.16904 815.94486 770.03539 -4.81455 0.03745 -2.62820 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01508 -0.01548 -1.00000 - 3207 2002 3 18 4 18 20 469 4.8746 179.16220 815.86090 769.96181 -4.75022 0.03752 -2.60885 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01437 -0.01548 -1.00000 - 3209 2002 3 18 4 18 30 219 4.8747 179.15535 815.77670 769.88795 -4.68674 0.03760 -2.58983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01366 -0.01548 -1.00000 - 3212 2002 3 18 4 18 44 843 4.8748 179.14507 815.64876 769.77658 -4.58077 0.03770 -2.56032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01259 -0.01548 -1.00000 - 3214 2002 3 18 4 18 54 592 4.8748 179.13822 815.56288 769.70191 -4.51274 0.03779 -2.54090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01189 -0.01548 -1.00000 - 3216 2002 3 18 4 19 4 342 4.8749 179.13137 815.47618 769.62698 -4.46690 0.03787 -2.52228 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01118 -0.01548 -1.00000 - 3218 2002 3 18 4 19 14 92 4.8750 179.12451 815.38914 769.55170 -4.40118 0.03795 -2.50429 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.01047 -0.01548 -1.00000 - 3220 2002 3 18 4 19 23 842 4.8750 179.11765 815.30176 769.47615 -4.34199 0.03803 -2.48663 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00976 -0.01548 -1.00000 - 3222 2002 3 18 4 19 33 592 4.8751 179.11079 815.21353 769.40033 -4.30327 0.03811 -2.46984 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00905 -0.01548 -1.00000 - 3224 2002 3 18 4 19 43 343 4.8751 179.10392 815.12495 769.32426 -4.24598 0.03818 -2.45426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00834 -0.01548 -1.00000 - 3226 2002 3 18 4 19 53 93 4.8752 179.09705 815.03609 769.24800 -4.19619 0.03826 -2.43949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00763 -0.01548 -1.00000 - 3228 2002 3 18 4 20 2 843 4.8753 179.09019 814.94687 769.17153 -4.15267 0.03834 -2.42553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00692 -0.01547 -1.00000 - 3230 2002 3 18 4 20 12 594 4.8753 179.08331 814.85763 769.09495 -4.11343 0.03841 -2.41332 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00621 -0.01547 -1.00000 - 3232 2002 3 18 4 20 22 345 4.8754 179.07644 814.76771 769.01824 -4.09354 0.03849 -2.40232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00550 -0.01547 -1.00000 - 3234 2002 3 18 4 20 32 96 4.8755 179.06957 814.67802 768.94142 -4.05751 0.03856 -2.39276 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00479 -0.01547 -1.00000 - 3236 2002 3 18 4 20 41 847 4.8755 179.06269 814.58851 768.86455 -4.02785 0.03862 -2.38529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00409 -0.01547 -1.00000 - 3238 2002 3 18 4 20 51 598 4.8756 179.05582 814.49865 768.78766 -4.02063 0.03868 -2.37882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00338 -0.01547 -1.00000 - 3240 2002 3 18 4 21 1 349 4.8756 179.04895 814.40900 768.71078 -3.99833 0.03873 -2.37406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00267 -0.01547 -1.00000 - 3242 2002 3 18 4 21 11 101 4.8757 179.04208 814.31964 768.63395 -3.98429 0.03879 -2.37037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00196 -0.01547 -1.00000 - 3244 2002 3 18 4 21 20 852 4.8758 179.03522 814.23043 768.55715 -3.97486 0.03887 -2.36787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00125 -0.01547 -1.00000 - 3246 2002 3 18 4 21 30 604 4.8758 179.02837 814.14179 768.48046 -3.97192 0.03895 -2.36716 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 2.00054 -0.01547 -1.00000 - 3248 2002 3 18 4 21 40 355 4.8759 179.02152 814.05285 768.40388 -3.98561 0.03904 -2.36786 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99983 -0.01547 -1.00000 - 3250 2002 3 18 4 21 50 107 4.8760 179.01469 813.96452 768.32741 -3.98350 0.03914 -2.37027 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99912 -0.01547 -1.00000 - 3253 2002 3 18 4 22 4 735 4.8761 179.00448 813.83260 768.21294 -4.00709 0.03925 -2.37678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99806 -0.01546 -1.00000 - 3255 2002 3 18 4 22 14 488 4.8761 178.99771 813.74506 768.13681 -4.01268 0.03926 -2.38247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99735 -0.01546 -1.00000 - 3257 2002 3 18 4 22 24 240 4.8762 178.99094 813.65803 768.06082 -4.02473 0.03925 -2.38963 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99664 -0.01546 -1.00000 - 3259 2002 3 18 4 22 33 992 4.8762 178.98419 813.57097 767.98498 -4.05013 0.03926 -2.39786 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99593 -0.01546 -1.00000 - 3261 2002 3 18 4 22 43 745 4.8763 178.97747 813.48437 767.90929 -4.07200 0.03934 -2.40773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99522 -0.01546 -1.00000 - 3263 2002 3 18 4 22 53 498 4.8764 178.97077 813.39806 767.83376 -4.09732 0.03943 -2.41840 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99451 -0.01546 -1.00000 - 3265 2002 3 18 4 23 3 251 4.8764 178.96408 813.31188 767.75833 -4.13369 0.03952 -2.43024 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99380 -0.01546 -1.00000 - 3267 2002 3 18 4 23 13 4 4.8765 178.95740 813.22606 767.68304 -4.16483 0.03962 -2.44388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99309 -0.01546 -1.00000 - 3269 2002 3 18 4 23 22 757 4.8766 178.95072 813.13957 767.60780 -4.21486 0.03978 -2.45775 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99238 -0.01546 -1.00000 - 3271 2002 3 18 4 23 32 510 4.8766 178.94405 813.05322 767.53262 -4.25465 0.04001 -2.47268 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99167 -0.01546 -1.00000 - 3273 2002 3 18 4 23 42 263 4.8767 178.93738 812.96689 767.45749 -4.29314 0.04025 -2.48812 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99097 -0.01546 -1.00000 - 3275 2002 3 18 4 23 52 17 4.8768 178.93072 812.87953 767.38239 -4.34068 0.04042 -2.50438 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.99026 -0.01545 -1.00000 - 3277 2002 3 18 4 24 1 770 4.8768 178.92406 812.79203 767.30740 -4.38803 0.04051 -2.52154 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98955 -0.01545 -1.00000 - 3279 2002 3 18 4 24 11 524 4.8769 178.91741 812.70456 767.23252 -4.43732 0.04056 -2.53937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98884 -0.01545 -1.00000 - 3281 2002 3 18 4 24 21 278 4.8770 178.91078 812.61685 767.15784 -4.50188 0.04062 -2.55721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98813 -0.01545 -1.00000 - 3283 2002 3 18 4 24 31 32 4.8770 178.90415 812.52923 767.08343 -4.54886 0.04065 -2.57550 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98742 -0.01545 -1.00000 - 3285 2002 3 18 4 24 40 786 4.8771 178.89754 812.44207 767.00945 -4.60682 0.04065 -2.59403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98671 -0.01545 -1.00000 - 3287 2002 3 18 4 24 50 540 4.8771 178.89094 812.35593 766.93596 -4.66085 0.04062 -2.61246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98600 -0.01545 -1.00000 - 3289 2002 3 18 4 25 0 295 4.8772 178.88437 812.27137 766.86315 -4.70749 0.04056 -2.63059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98529 -0.01545 -1.00000 - 3291 2002 3 18 4 25 10 49 4.8773 178.87784 812.18772 766.79105 -4.76368 0.04043 -2.64789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98458 -0.01545 -1.00000 - 3294 2002 3 18 4 25 24 681 4.8774 178.86811 812.06748 766.68435 -4.83166 0.04021 -2.67306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98352 -0.01545 -1.00000 - 3296 2002 3 18 4 25 34 436 4.8774 178.86163 811.99019 766.61424 -4.88349 0.04017 -2.68854 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98281 -0.01545 -1.00000 - 3298 2002 3 18 4 25 44 191 4.8775 178.85515 811.91444 766.54486 -4.93898 0.04031 -2.70300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98210 -0.01544 -1.00000 - 3300 2002 3 18 4 25 53 946 4.8776 178.84867 811.84029 766.47621 -4.98914 0.04067 -2.71717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98139 -0.01544 -1.00000 - 3302 2002 3 18 4 26 3 702 4.8776 178.84218 811.76748 766.40812 -5.03079 0.04110 -2.72955 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.98068 -0.01544 -1.00000 - 3304 2002 3 18 4 26 13 457 4.8777 178.83569 811.69504 766.34044 -5.06879 0.04140 -2.74041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97997 -0.01544 -1.00000 - 3306 2002 3 18 4 26 23 212 4.8777 178.82920 811.62290 766.27305 -5.10189 0.04150 -2.74991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97926 -0.01544 -1.00000 - 3308 2002 3 18 4 26 32 968 4.8778 178.82271 811.55082 766.20583 -5.12981 0.04143 -2.75762 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97855 -0.01544 -1.00000 - 3310 2002 3 18 4 26 42 724 4.8779 178.81623 811.47810 766.13866 -5.15653 0.04133 -2.76432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97784 -0.01544 -1.00000 - 3312 2002 3 18 4 26 52 479 4.8779 178.80975 811.40516 766.07149 -5.17474 0.04132 -2.76958 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97713 -0.01544 -1.00000 - 3314 2002 3 18 4 27 2 235 4.8780 178.80328 811.33162 766.00424 -5.19218 0.04144 -2.77305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97642 -0.01544 -1.00000 - 3316 2002 3 18 4 27 11 991 4.8780 178.79682 811.25768 765.93697 -5.19872 0.04163 -2.77521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97571 -0.01544 -1.00000 - 3318 2002 3 18 4 27 21 748 4.8781 178.79037 811.18360 765.86954 -5.20147 0.04178 -2.77557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97500 -0.01544 -1.00000 - 3320 2002 3 18 4 27 31 504 4.8782 178.78394 811.10902 765.80200 -5.20024 0.04186 -2.77441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97429 -0.01544 -1.00000 - 3322 2002 3 18 4 27 41 260 4.8782 178.77753 811.03450 765.73434 -5.19458 0.04188 -2.77123 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97358 -0.01543 -1.00000 - 3324 2002 3 18 4 27 51 17 4.8783 178.77112 810.95977 765.66651 -5.19296 0.04186 -2.76606 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97288 -0.01543 -1.00000 - 3326 2002 3 18 4 28 0 774 4.8784 178.76471 810.88492 765.59855 -5.19237 0.04186 -2.75999 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97217 -0.01543 -1.00000 - 3328 2002 3 18 4 28 10 530 4.8784 178.75831 810.81028 765.53043 -5.21439 0.04188 -2.75278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97146 -0.01543 -1.00000 - 3330 2002 3 18 4 28 20 287 4.8785 178.75193 810.73567 765.46209 -5.21659 0.04190 -2.74453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97075 -0.01543 -1.00000 - 3332 2002 3 18 4 28 30 45 4.8786 178.74556 810.66110 765.39350 -5.22940 0.04191 -2.73512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.97004 -0.01543 -1.00000 - 3335 2002 3 18 4 28 44 680 4.8787 178.73605 810.54791 765.29003 -5.23247 0.04192 -2.71845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96897 -0.01543 -1.00000 - 3337 2002 3 18 4 28 54 438 4.8787 178.72972 810.47213 765.22060 -5.22752 0.04195 -2.70613 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96826 -0.01543 -1.00000 - 3339 2002 3 18 4 29 4 195 4.8788 178.72340 810.39530 765.15070 -5.21933 0.04203 -2.69254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96755 -0.01543 -1.00000 - 3341 2002 3 18 4 29 13 953 4.8788 178.71708 810.31791 765.08034 -5.22529 0.04212 -2.67743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96684 -0.01543 -1.00000 - 3343 2002 3 18 4 29 23 711 4.8789 178.71078 810.23974 765.00945 -5.21293 0.04221 -2.66080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96613 -0.01543 -1.00000 - 3345 2002 3 18 4 29 33 469 4.8790 178.70447 810.16031 764.93792 -5.21202 0.04229 -2.64227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96542 -0.01542 -1.00000 - 3347 2002 3 18 4 29 43 227 4.8790 178.69817 810.07996 764.86585 -5.19942 0.04239 -2.62248 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96472 -0.01542 -1.00000 - 3349 2002 3 18 4 29 52 985 4.8791 178.69188 809.99800 764.79306 -5.16957 0.04247 -2.60160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96401 -0.01542 -1.00000 - 3351 2002 3 18 4 30 2 743 4.8792 178.68559 809.91569 764.71963 -5.13125 0.04254 -2.57943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96330 -0.01542 -1.00000 - 3353 2002 3 18 4 30 12 502 4.8792 178.67930 809.83163 764.64546 -5.06395 0.04263 -2.55582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96259 -0.01542 -1.00000 - 3355 2002 3 18 4 30 22 260 4.8793 178.67303 809.74627 764.57052 -4.99774 0.04272 -2.53120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96188 -0.01542 -1.00000 - 3357 2002 3 18 4 30 32 19 4.8794 178.66675 809.65951 764.49479 -4.91695 0.04279 -2.50575 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96117 -0.01542 -1.00000 - 3359 2002 3 18 4 30 41 778 4.8794 178.66049 809.57133 764.41820 -4.81142 0.04286 -2.47934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.96046 -0.01542 -1.00000 - 3361 2002 3 18 4 30 51 537 4.8795 178.65423 809.48098 764.34071 -4.68087 0.04292 -2.45326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95975 -0.01542 -1.00000 - 3363 2002 3 18 4 31 1 296 4.8795 178.64798 809.38801 764.26238 -4.52789 0.04297 -2.42753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95904 -0.01542 -1.00000 - 3365 2002 3 18 4 31 11 55 4.8796 178.64174 809.29415 764.18322 -4.36712 0.04301 -2.40256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95833 -0.01542 -1.00000 - 3367 2002 3 18 4 31 20 814 4.8797 178.63550 809.19860 764.10340 -4.19882 0.04307 -2.37896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95762 -0.01542 -1.00000 - 3369 2002 3 18 4 31 30 574 4.8797 178.62928 809.10057 764.02296 -4.08993 0.04311 -2.35731 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95691 -0.01541 -1.00000 - 3371 2002 3 18 4 31 40 333 4.8798 178.62307 809.00187 763.94210 -4.00554 0.04315 -2.33742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95620 -0.01541 -1.00000 - 3373 2002 3 18 4 31 50 93 4.8799 178.61686 808.90264 763.86100 -3.94104 0.04319 -2.32008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95549 -0.01541 -1.00000 - 3376 2002 3 18 4 32 4 733 4.8800 178.60757 808.75289 763.73932 -3.86471 0.04325 -2.29792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95442 -0.01541 -1.00000 - 3378 2002 3 18 4 32 14 493 4.8800 178.60139 808.65376 763.65840 -3.79089 0.04331 -2.28634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95371 -0.01541 -1.00000 - 3380 2002 3 18 4 32 24 253 4.8801 178.59522 808.55531 763.57787 -3.72082 0.04336 -2.27707 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95301 -0.01541 -1.00000 - 3382 2002 3 18 4 32 34 13 4.8802 178.58905 808.45888 763.49784 -3.67445 0.04341 -2.27068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95230 -0.01541 -1.00000 - 3384 2002 3 18 4 32 43 774 4.8802 178.58289 808.36416 763.41836 -3.63959 0.04347 -2.26688 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95159 -0.01541 -1.00000 - 3386 2002 3 18 4 32 53 534 4.8803 178.57674 808.27041 763.33954 -3.62139 0.04353 -2.26568 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95088 -0.01541 -1.00000 - 3388 2002 3 18 4 33 3 295 4.8804 178.57060 808.17960 763.26139 -3.62208 0.04359 -2.26687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.95017 -0.01541 -1.00000 - 3390 2002 3 18 4 33 13 56 4.8804 178.56445 808.09010 763.18384 -3.62933 0.04365 -2.27031 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94946 -0.01541 -1.00000 - 3392 2002 3 18 4 33 22 817 4.8805 178.55832 808.00142 763.10688 -3.68335 0.04372 -2.27621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94875 -0.01541 -1.00000 - 3394 2002 3 18 4 33 32 578 4.8806 178.55218 807.91318 763.03042 -3.70711 0.04378 -2.28462 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94804 -0.01540 -1.00000 - 3396 2002 3 18 4 33 42 339 4.8806 178.54605 807.82573 762.95449 -3.73588 0.04384 -2.29563 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94733 -0.01540 -1.00000 - 3398 2002 3 18 4 33 52 100 4.8807 178.53993 807.73852 762.87904 -3.79504 0.04389 -2.30898 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94662 -0.01540 -1.00000 - 3400 2002 3 18 4 34 1 862 4.8808 178.53380 807.65197 762.80415 -3.82614 0.04395 -2.32483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94591 -0.01540 -1.00000 - 3402 2002 3 18 4 34 11 623 4.8808 178.52769 807.56635 762.72981 -3.88376 0.04400 -2.34253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94520 -0.01540 -1.00000 - 3404 2002 3 18 4 34 21 385 4.8809 178.52157 807.48131 762.65608 -3.94331 0.04405 -2.36286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94449 -0.01540 -1.00000 - 3406 2002 3 18 4 34 31 147 4.8810 178.51546 807.39740 762.58302 -3.98248 0.04410 -2.38544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94378 -0.01540 -1.00000 - 3408 2002 3 18 4 34 40 909 4.8810 178.50935 807.31490 762.51066 -4.08141 0.04415 -2.41018 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94307 -0.01540 -1.00000 - 3410 2002 3 18 4 34 50 671 4.8811 178.50324 807.23349 762.43910 -4.13081 0.04419 -2.43646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94236 -0.01540 -1.00000 - 3412 2002 3 18 4 35 0 433 4.8811 178.49714 807.15385 762.36829 -4.23158 0.04424 -2.46435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94165 -0.01540 -1.00000 - 3414 2002 3 18 4 35 10 196 4.8812 178.49104 807.07606 762.29830 -4.30352 0.04428 -2.49316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.94094 -0.01540 -1.00000 - 3417 2002 3 18 4 35 24 840 4.8813 178.48190 806.96213 762.19476 -4.46888 0.04435 -2.53805 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93987 -0.01539 -1.00000 - 3419 2002 3 18 4 35 34 602 4.8814 178.47581 806.88807 762.12663 -4.56080 0.04440 -2.56824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93916 -0.01539 -1.00000 - 3421 2002 3 18 4 35 44 365 4.8814 178.46972 806.81515 762.05917 -4.64844 0.04445 -2.59842 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93845 -0.01539 -1.00000 - 3423 2002 3 18 4 35 54 128 4.8815 178.46364 806.74348 761.99230 -4.75921 0.04449 -2.62820 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93774 -0.01539 -1.00000 - 3425 2002 3 18 4 36 3 891 4.8816 178.45756 806.67301 761.92585 -4.90181 0.04454 -2.65719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93703 -0.01539 -1.00000 - 3427 2002 3 18 4 36 13 655 4.8816 178.45148 806.60298 761.85977 -5.03082 0.04459 -2.68524 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93632 -0.01539 -1.00000 - 3429 2002 3 18 4 36 23 418 4.8817 178.44542 806.53341 761.79389 -5.16683 0.04464 -2.71153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93561 -0.01539 -1.00000 - 3431 2002 3 18 4 36 33 181 4.8818 178.43935 806.46357 761.72806 -5.27296 0.04469 -2.73581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93490 -0.01539 -1.00000 - 3433 2002 3 18 4 36 42 945 4.8818 178.43329 806.39340 761.66217 -5.41530 0.04474 -2.75798 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93419 -0.01539 -1.00000 - 3435 2002 3 18 4 36 52 709 4.8819 178.42723 806.32276 761.59608 -5.55891 0.04479 -2.77770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93348 -0.01539 -1.00000 - 3437 2002 3 18 4 37 2 473 4.8820 178.42118 806.25097 761.52974 -5.68811 0.04484 -2.79489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93277 -0.01539 -1.00000 - 3439 2002 3 18 4 37 12 237 4.8820 178.41514 806.17962 761.46307 -5.79902 0.04489 -2.80906 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93206 -0.01539 -1.00000 - 3441 2002 3 18 4 37 22 1 4.8821 178.40910 806.10750 761.39590 -5.88782 0.04494 -2.81982 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93135 -0.01538 -1.00000 - 3443 2002 3 18 4 37 31 765 4.8822 178.40307 806.03413 761.32822 -5.95340 0.04499 -2.82764 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.93064 -0.01538 -1.00000 - 3445 2002 3 18 4 37 41 530 4.8822 178.39704 805.95914 761.25994 -6.00705 0.04504 -2.83208 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92993 -0.01538 -1.00000 - 3447 2002 3 18 4 37 51 294 4.8823 178.39101 805.88334 761.19102 -6.04583 0.04509 -2.83316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92922 -0.01538 -1.00000 - 3449 2002 3 18 4 38 1 59 4.8824 178.38500 805.80601 761.12145 -6.05166 0.04513 -2.83128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92851 -0.01538 -1.00000 - 3451 2002 3 18 4 38 10 824 4.8824 178.37899 805.72801 761.05128 -6.03363 0.04518 -2.82618 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92780 -0.01538 -1.00000 - 3453 2002 3 18 4 38 20 589 4.8825 178.37298 805.64908 760.98048 -5.98403 0.04522 -2.81837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92709 -0.01538 -1.00000 - 3455 2002 3 18 4 38 30 354 4.8826 178.36699 805.56752 760.90911 -5.91221 0.04527 -2.80820 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92638 -0.01538 -1.00000 - 3457 2002 3 18 4 38 40 119 4.8826 178.36100 805.48532 760.83723 -5.82571 0.04532 -2.79512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92567 -0.01538 -1.00000 - 3460 2002 3 18 4 38 54 767 4.8827 178.35202 805.36061 760.72862 -5.67959 0.04538 -2.77146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92461 -0.01538 -1.00000 - 3462 2002 3 18 4 39 4 533 4.8828 178.34605 805.27649 760.65579 -5.59204 0.04543 -2.75309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92390 -0.01538 -1.00000 - 3464 2002 3 18 4 39 14 299 4.8829 178.34008 805.19213 760.58277 -5.51107 0.04547 -2.73353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92319 -0.01537 -1.00000 - 3466 2002 3 18 4 39 24 64 4.8829 178.33411 805.10756 760.50952 -5.41319 0.04552 -2.71174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92248 -0.01537 -1.00000 - 3468 2002 3 18 4 39 33 830 4.8830 178.32816 805.02219 760.43607 -5.30750 0.04556 -2.68843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92177 -0.01537 -1.00000 - 3470 2002 3 18 4 39 43 596 4.8831 178.32221 804.93651 760.36251 -5.19187 0.04560 -2.66392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92106 -0.01537 -1.00000 - 3472 2002 3 18 4 39 53 363 4.8831 178.31627 804.85138 760.28880 -5.06652 0.04565 -2.63793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.92034 -0.01537 -1.00000 - 3474 2002 3 18 4 40 3 129 4.8832 178.31033 804.76641 760.21494 -4.93124 0.04569 -2.61137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91963 -0.01537 -1.00000 - 3476 2002 3 18 4 40 12 895 4.8833 178.30440 804.68171 760.14111 -4.78408 0.04573 -2.58381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91892 -0.01537 -1.00000 - 3478 2002 3 18 4 40 22 662 4.8833 178.29848 804.59618 760.06704 -4.62869 0.04577 -2.55628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91821 -0.01537 -1.00000 - 3480 2002 3 18 4 40 32 429 4.8834 178.29256 804.51051 759.99282 -4.47305 0.04582 -2.52870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91750 -0.01537 -1.00000 - 3482 2002 3 18 4 40 42 196 4.8835 178.28665 804.42471 759.91842 -4.31196 0.04586 -2.50162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91679 -0.01537 -1.00000 - 3484 2002 3 18 4 40 51 963 4.8835 178.28076 804.33846 759.84385 -4.16395 0.04590 -2.47529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91608 -0.01537 -1.00000 - 3486 2002 3 18 4 41 1 730 4.8836 178.27486 804.25239 759.76913 -4.08422 0.04594 -2.45045 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91537 -0.01537 -1.00000 - 3488 2002 3 18 4 41 11 497 4.8837 178.26898 804.16629 759.69442 -4.06377 0.04599 -2.42733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91466 -0.01536 -1.00000 - 3490 2002 3 18 4 41 21 265 4.8837 178.26311 804.07960 759.61950 -4.04320 0.04603 -2.40592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91395 -0.01536 -1.00000 - 3492 2002 3 18 4 41 31 32 4.8838 178.25724 803.99269 759.54451 -4.02629 0.04607 -2.38724 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91324 -0.01536 -1.00000 - 3494 2002 3 18 4 41 40 800 4.8839 178.25139 803.90578 759.46949 -4.02111 0.04613 -2.37100 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91253 -0.01536 -1.00000 - 3496 2002 3 18 4 41 50 568 4.8839 178.24554 803.81842 759.39444 -3.99727 0.04619 -2.35721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91182 -0.01536 -1.00000 - 3498 2002 3 18 4 42 0 336 4.8840 178.23971 803.73107 759.31942 -4.00155 0.04625 -2.34647 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91111 -0.01536 -1.00000 - 3500 2002 3 18 4 42 10 104 4.8841 178.23388 803.64397 759.24463 -3.98124 0.04629 -2.33804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.91040 -0.01536 -1.00000 - 3503 2002 3 18 4 42 24 756 4.8842 178.22516 803.51328 759.13253 -3.97441 0.04635 -2.33033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90934 -0.01536 -1.00000 - 3505 2002 3 18 4 42 34 525 4.8842 178.21935 803.42671 759.05800 -3.95087 0.04640 -2.32848 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90862 -0.01536 -1.00000 - 3507 2002 3 18 4 42 44 293 4.8843 178.21355 803.34022 758.98368 -3.93507 0.04644 -2.32937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90791 -0.01536 -1.00000 - 3509 2002 3 18 4 42 54 62 4.8844 178.20776 803.25435 758.90963 -3.93358 0.04647 -2.33259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90720 -0.01536 -1.00000 - 3511 2002 3 18 4 43 3 831 4.8844 178.20198 803.16884 758.83583 -3.91759 0.04651 -2.33775 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90649 -0.01535 -1.00000 - 3513 2002 3 18 4 43 13 600 4.8845 178.19621 803.08381 758.76253 -3.94163 0.04654 -2.34469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90578 -0.01535 -1.00000 - 3515 2002 3 18 4 43 23 369 4.8846 178.19044 802.99949 758.68935 -3.93372 0.04658 -2.35264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90507 -0.01535 -1.00000 - 3517 2002 3 18 4 43 33 138 4.8846 178.18468 802.91537 758.61635 -3.95596 0.04661 -2.36174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90436 -0.01535 -1.00000 - 3519 2002 3 18 4 43 42 907 4.8847 178.17893 802.83173 758.54353 -4.00522 0.04664 -2.37162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90365 -0.01535 -1.00000 - 3521 2002 3 18 4 43 52 677 4.8848 178.17319 802.74856 758.47082 -4.06503 0.04668 -2.38233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90294 -0.01535 -1.00000 - 3523 2002 3 18 4 44 2 447 4.8848 178.16745 802.66539 758.39827 -4.11914 0.04671 -2.39390 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90223 -0.01535 -1.00000 - 3525 2002 3 18 4 44 12 216 4.8849 178.16171 802.58273 758.32604 -4.19488 0.04674 -2.40581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90152 -0.01535 -1.00000 - 3527 2002 3 18 4 44 21 986 4.8850 178.15599 802.50037 758.25383 -4.26867 0.04677 -2.41787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90081 -0.01535 -1.00000 - 3529 2002 3 18 4 44 31 756 4.8851 178.15027 802.41818 758.18168 -4.33679 0.04681 -2.43015 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.90010 -0.01535 -1.00000 - 3531 2002 3 18 4 44 41 527 4.8851 178.14455 802.33668 758.10961 -4.39944 0.04684 -2.44184 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89939 -0.01535 -1.00000 - 3533 2002 3 18 4 44 51 297 4.8852 178.13884 802.25555 758.03753 -4.45442 0.04688 -2.45364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89868 -0.01535 -1.00000 - 3535 2002 3 18 4 45 1 67 4.8853 178.13314 802.17476 757.96548 -4.50248 0.04692 -2.46553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89797 -0.01534 -1.00000 - 3537 2002 3 18 4 45 10 838 4.8853 178.12744 802.09369 757.89371 -4.54579 0.04695 -2.47713 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89726 -0.01534 -1.00000 - 3539 2002 3 18 4 45 20 609 4.8854 178.12175 802.01297 757.82181 -4.58819 0.04699 -2.48897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89655 -0.01534 -1.00000 - 3541 2002 3 18 4 45 30 380 4.8855 178.11606 801.93239 757.74990 -4.62142 0.04703 -2.50034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89584 -0.01534 -1.00000 - 3543 2002 3 18 4 45 40 151 4.8855 178.11037 801.85183 757.67797 -4.65275 0.04707 -2.51116 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89513 -0.01534 -1.00000 - 3546 2002 3 18 4 45 54 808 4.8856 178.10186 801.73112 757.57009 -4.69964 0.04713 -2.52720 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89406 -0.01534 -1.00000 - 3548 2002 3 18 4 46 4 579 4.8857 178.09619 801.65052 757.49815 -4.72531 0.04717 -2.53707 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89335 -0.01534 -1.00000 - 3550 2002 3 18 4 46 14 350 4.8858 178.09052 801.57040 757.42657 -4.74552 0.04721 -2.54625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89264 -0.01534 -1.00000 - 3552 2002 3 18 4 46 24 122 4.8858 178.08486 801.49003 757.35489 -4.76050 0.04725 -2.55475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89193 -0.01534 -1.00000 - 3554 2002 3 18 4 46 33 894 4.8859 178.07920 801.40992 757.28323 -4.77610 0.04728 -2.56316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89122 -0.01534 -1.00000 - 3556 2002 3 18 4 46 43 666 4.8860 178.07355 801.33014 757.21162 -4.78761 0.04732 -2.57081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.89051 -0.01534 -1.00000 - 3558 2002 3 18 4 46 53 438 4.8860 178.06790 801.25007 757.14007 -4.79218 0.04735 -2.57775 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88980 -0.01534 -1.00000 - 3560 2002 3 18 4 47 3 210 4.8861 178.06226 801.17010 757.06857 -4.79991 0.04738 -2.58393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88909 -0.01533 -1.00000 - 3562 2002 3 18 4 47 12 982 4.8862 178.05662 801.09014 756.99747 -4.80130 0.04741 -2.58916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88837 -0.01533 -1.00000 - 3564 2002 3 18 4 47 22 755 4.8863 178.05099 801.01041 756.92625 -4.80049 0.04744 -2.59429 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88766 -0.01533 -1.00000 - 3566 2002 3 18 4 47 32 527 4.8863 178.04536 800.93094 756.85509 -4.79902 0.04747 -2.59863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88695 -0.01533 -1.00000 - 3568 2002 3 18 4 47 42 300 4.8864 178.03974 800.85093 756.78395 -4.78960 0.04750 -2.60226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88624 -0.01533 -1.00000 - 3570 2002 3 18 4 47 52 73 4.8865 178.03412 800.77101 756.71287 -4.77733 0.04753 -2.60526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88553 -0.01533 -1.00000 - 3572 2002 3 18 4 48 1 846 4.8865 178.02851 800.69127 756.64182 -4.77454 0.04756 -2.60768 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88482 -0.01533 -1.00000 - 3574 2002 3 18 4 48 11 619 4.8866 178.02290 800.61145 756.57111 -4.75892 0.04759 -2.60925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88411 -0.01533 -1.00000 - 3576 2002 3 18 4 48 21 393 4.8867 178.01729 800.53178 756.50031 -4.74303 0.04762 -2.61066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88340 -0.01533 -1.00000 - 3578 2002 3 18 4 48 31 166 4.8867 178.01169 800.45160 756.42949 -4.73278 0.04765 -2.61078 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88269 -0.01533 -1.00000 - 3580 2002 3 18 4 48 40 940 4.8868 178.00610 800.37153 756.35862 -4.72171 0.04768 -2.61029 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88198 -0.01533 -1.00000 - 3582 2002 3 18 4 48 50 713 4.8869 178.00051 800.29152 756.28772 -4.71314 0.04771 -2.60955 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88127 -0.01532 -1.00000 - 3584 2002 3 18 4 49 0 487 4.8870 177.99492 800.21074 756.21684 -4.70798 0.04775 -2.60890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.88056 -0.01532 -1.00000 - 3586 2002 3 18 4 49 10 261 4.8870 177.98934 800.13025 756.14628 -4.69431 0.04778 -2.60827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87985 -0.01532 -1.00000 - 3588 2002 3 18 4 49 20 35 4.8871 177.98376 800.04994 756.07561 -4.69496 0.04781 -2.60747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87914 -0.01532 -1.00000 - 3591 2002 3 18 4 49 34 697 4.8872 177.97540 799.92915 755.96958 -4.67368 0.04786 -2.60552 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87807 -0.01532 -1.00000 - 3593 2002 3 18 4 49 44 471 4.8873 177.96984 799.84883 755.89889 -4.67673 0.04789 -2.60402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87736 -0.01532 -1.00000 - 3595 2002 3 18 4 49 54 246 4.8873 177.96427 799.76829 755.82820 -4.66292 0.04792 -2.60195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87665 -0.01532 -1.00000 - 3597 2002 3 18 4 50 4 21 4.8874 177.95871 799.68809 755.75758 -4.65351 0.04795 -2.59956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87594 -0.01532 -1.00000 - 3599 2002 3 18 4 50 13 796 4.8875 177.95316 799.60776 755.68733 -4.64698 0.04798 -2.59686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87523 -0.01532 -1.00000 - 3601 2002 3 18 4 50 23 571 4.8875 177.94761 799.52795 755.61702 -4.63836 0.04801 -2.59398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87451 -0.01532 -1.00000 - 3603 2002 3 18 4 50 33 346 4.8876 177.94206 799.44845 755.54668 -4.64263 0.04804 -2.59111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87380 -0.01532 -1.00000 - 3605 2002 3 18 4 50 43 121 4.8877 177.93652 799.36893 755.47634 -4.63527 0.04806 -2.58760 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87309 -0.01532 -1.00000 - 3607 2002 3 18 4 50 52 897 4.8878 177.93098 799.28937 755.40599 -4.62384 0.04809 -2.58395 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87238 -0.01531 -1.00000 - 3609 2002 3 18 4 51 2 672 4.8878 177.92545 799.20978 755.33567 -4.62636 0.04811 -2.57971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87167 -0.01531 -1.00000 - 3611 2002 3 18 4 51 12 448 4.8879 177.91992 799.13068 755.26565 -4.61173 0.04814 -2.57507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87096 -0.01531 -1.00000 - 3613 2002 3 18 4 51 22 224 4.8880 177.91439 799.05200 755.19551 -4.60012 0.04816 -2.57013 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.87025 -0.01531 -1.00000 - 3615 2002 3 18 4 51 32 0 4.8880 177.90887 798.97281 755.12522 -4.59064 0.04818 -2.56503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86954 -0.01531 -1.00000 - 3617 2002 3 18 4 51 41 776 4.8881 177.90335 798.89367 755.05486 -4.57587 0.04821 -2.55945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86883 -0.01531 -1.00000 - 3619 2002 3 18 4 51 51 553 4.8882 177.89784 798.81463 754.98439 -4.56854 0.04823 -2.55352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86812 -0.01531 -1.00000 - 3621 2002 3 18 4 52 1 329 4.8882 177.89234 798.73528 754.91378 -4.55682 0.04825 -2.54727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86741 -0.01531 -1.00000 - 3623 2002 3 18 4 52 11 106 4.8883 177.88683 798.65628 754.84345 -4.54449 0.04828 -2.54133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86669 -0.01531 -1.00000 - 3625 2002 3 18 4 52 20 882 4.8884 177.88134 798.57664 754.77287 -4.53630 0.04830 -2.53495 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86598 -0.01531 -1.00000 - 3627 2002 3 18 4 52 30 659 4.8885 177.87584 798.49705 754.70207 -4.51819 0.04833 -2.52834 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86527 -0.01531 -1.00000 - 3629 2002 3 18 4 52 40 436 4.8885 177.87035 798.41753 754.63109 -4.50172 0.04835 -2.52192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86456 -0.01531 -1.00000 - 3631 2002 3 18 4 52 50 213 4.8886 177.86486 798.33692 754.55990 -4.48554 0.04838 -2.51507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86385 -0.01530 -1.00000 - 3634 2002 3 18 4 53 4 879 4.8887 177.85664 798.21602 754.45281 -4.46389 0.04842 -2.50509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86278 -0.01530 -1.00000 - 3636 2002 3 18 4 53 14 657 4.8888 177.85117 798.13519 754.38167 -4.46293 0.04845 -2.49883 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86207 -0.01530 -1.00000 - 3638 2002 3 18 4 53 24 435 4.8888 177.84569 798.05484 754.31025 -4.44341 0.04847 -2.49251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86136 -0.01530 -1.00000 - 3640 2002 3 18 4 53 34 212 4.8889 177.84023 797.97385 754.23863 -4.42771 0.04850 -2.48615 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.86065 -0.01530 -1.00000 - 3642 2002 3 18 4 53 43 990 4.8890 177.83476 797.89242 754.16683 -4.41724 0.04853 -2.47962 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85994 -0.01530 -1.00000 - 3644 2002 3 18 4 53 53 768 4.8891 177.82930 797.81071 754.09491 -4.40263 0.04855 -2.47375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85923 -0.01530 -1.00000 - 3646 2002 3 18 4 54 3 547 4.8891 177.82384 797.72926 754.02287 -4.39323 0.04858 -2.46771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85852 -0.01530 -1.00000 - 3648 2002 3 18 4 54 13 325 4.8892 177.81839 797.64874 753.95120 -4.37905 0.04860 -2.46216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85781 -0.01530 -1.00000 - 3650 2002 3 18 4 54 23 103 4.8893 177.81294 797.56674 753.87940 -4.37084 0.04862 -2.45717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85710 -0.01530 -1.00000 - 3652 2002 3 18 4 54 32 882 4.8893 177.80749 797.48560 753.80751 -4.35932 0.04864 -2.45224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85638 -0.01530 -1.00000 - 3654 2002 3 18 4 54 42 661 4.8894 177.80205 797.40424 753.73555 -4.34030 0.04867 -2.44740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85567 -0.01529 -1.00000 - 3656 2002 3 18 4 54 52 440 4.8895 177.79662 797.32233 753.66356 -4.32136 0.04869 -2.44253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85496 -0.01529 -1.00000 - 3658 2002 3 18 4 55 2 219 4.8896 177.79118 797.24072 753.59157 -4.30233 0.04871 -2.43755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85425 -0.01529 -1.00000 - 3660 2002 3 18 4 55 11 998 4.8896 177.78576 797.16038 753.52002 -4.28839 0.04873 -2.43358 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85354 -0.01529 -1.00000 - 3662 2002 3 18 4 55 21 777 4.8897 177.78033 797.07997 753.44846 -4.28211 0.04875 -2.42997 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85283 -0.01529 -1.00000 - 3664 2002 3 18 4 55 31 557 4.8898 177.77491 796.99891 753.37683 -4.26298 0.04877 -2.42686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85212 -0.01529 -1.00000 - 3666 2002 3 18 4 55 41 337 4.8898 177.76950 796.91803 753.30522 -4.25261 0.04879 -2.42417 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85141 -0.01529 -1.00000 - 3668 2002 3 18 4 55 51 116 4.8899 177.76408 796.83748 753.23360 -4.24078 0.04881 -2.42166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.85070 -0.01529 -1.00000 - 3670 2002 3 18 4 56 0 896 4.8900 177.75868 796.75627 753.16201 -4.22394 0.04883 -2.41956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84998 -0.01529 -1.00000 - 3672 2002 3 18 4 56 10 676 4.8900 177.75327 796.67730 753.09095 -4.20945 0.04886 -2.41754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84927 -0.01529 -1.00000 - 3674 2002 3 18 4 56 20 456 4.8901 177.74787 796.59773 753.01986 -4.19699 0.04888 -2.41575 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84856 -0.01529 -1.00000 - 3676 2002 3 18 4 56 30 237 4.8902 177.74247 796.51761 752.94872 -4.18913 0.04890 -2.41520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84785 -0.01529 -1.00000 - 3678 2002 3 18 4 56 40 17 4.8903 177.73708 796.43807 752.87761 -4.19780 0.04892 -2.41528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84714 -0.01528 -1.00000 - 3681 2002 3 18 4 56 54 688 4.8904 177.72900 796.31785 752.77099 -4.18923 0.04895 -2.41669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84607 -0.01528 -1.00000 - 3683 2002 3 18 4 57 4 469 4.8904 177.72361 796.23830 752.69998 -4.20069 0.04897 -2.41817 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84536 -0.01528 -1.00000 - 3685 2002 3 18 4 57 14 250 4.8905 177.71823 796.16013 752.62956 -4.19788 0.04899 -2.42015 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84465 -0.01528 -1.00000 - 3687 2002 3 18 4 57 24 31 4.8906 177.71286 796.08178 752.55915 -4.19895 0.04901 -2.42274 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84394 -0.01528 -1.00000 - 3689 2002 3 18 4 57 33 813 4.8907 177.70748 796.00369 752.48876 -4.20646 0.04903 -2.42587 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84323 -0.01528 -1.00000 - 3691 2002 3 18 4 57 43 594 4.8907 177.70212 795.92455 752.41839 -4.21720 0.04905 -2.42915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84252 -0.01528 -1.00000 - 3693 2002 3 18 4 57 53 375 4.8908 177.69675 795.84618 752.34810 -4.23506 0.04906 -2.43337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84180 -0.01528 -1.00000 - 3695 2002 3 18 4 58 3 157 4.8909 177.69139 795.76820 752.27787 -4.25444 0.04908 -2.43803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84109 -0.01528 -1.00000 - 3697 2002 3 18 4 58 12 939 4.8909 177.68604 795.69132 752.20825 -4.26916 0.04909 -2.44363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.84038 -0.01528 -1.00000 - 3699 2002 3 18 4 58 22 721 4.8910 177.68069 795.61466 752.13872 -4.29368 0.04911 -2.44932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83967 -0.01528 -1.00000 - 3701 2002 3 18 4 58 32 503 4.8911 177.67534 795.53719 752.06917 -4.31612 0.04912 -2.45529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83896 -0.01527 -1.00000 - 3703 2002 3 18 4 58 42 285 4.8912 177.67000 795.46034 751.99968 -4.33268 0.04913 -2.46141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83825 -0.01527 -1.00000 - 3705 2002 3 18 4 58 52 68 4.8912 177.66466 795.38395 751.93025 -4.35019 0.04915 -2.46727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83754 -0.01527 -1.00000 - 3707 2002 3 18 4 59 1 850 4.8913 177.65932 795.30651 751.86089 -4.36930 0.04916 -2.47333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83682 -0.01527 -1.00000 - 3709 2002 3 18 4 59 11 633 4.8914 177.65399 795.23176 751.79216 -4.39428 0.04918 -2.47962 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83611 -0.01527 -1.00000 - 3711 2002 3 18 4 59 21 416 4.8914 177.64866 795.15687 751.72353 -4.41776 0.04919 -2.48548 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83540 -0.01527 -1.00000 - 3713 2002 3 18 4 59 31 199 4.8915 177.64334 795.08087 751.65490 -4.43270 0.04921 -2.49155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83469 -0.01527 -1.00000 - 3715 2002 3 18 4 59 40 982 4.8916 177.63802 795.00556 751.58628 -4.44747 0.04923 -2.49664 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83398 -0.01527 -1.00000 - 3717 2002 3 18 4 59 50 765 4.8917 177.63271 794.92957 751.51765 -4.46102 0.04924 -2.50119 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83327 -0.01527 -1.00000 - 3719 2002 3 18 5 0 0 549 4.8917 177.62739 794.85396 751.44902 -4.47611 0.04926 -2.50535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83256 -0.01527 -1.00000 - 3721 2002 3 18 5 0 10 332 4.8918 177.62209 794.78069 751.38100 -4.48973 0.04928 -2.50924 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83184 -0.01527 -1.00000 - 3723 2002 3 18 5 0 20 116 4.8919 177.61678 794.70577 751.31304 -4.50072 0.04930 -2.51308 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83113 -0.01527 -1.00000 - 3726 2002 3 18 5 0 34 792 4.8920 177.60883 794.59441 751.21111 -4.52140 0.04932 -2.51832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.83007 -0.01526 -1.00000 - 3728 2002 3 18 5 0 44 576 4.8920 177.60354 794.51946 751.14324 -4.52432 0.04934 -2.52179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82935 -0.01526 -1.00000 - 3730 2002 3 18 5 0 54 360 4.8921 177.59824 794.44540 751.07544 -4.53280 0.04935 -2.52452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82864 -0.01526 -1.00000 - 3732 2002 3 18 5 1 4 144 4.8922 177.59296 794.37125 751.00774 -4.53883 0.04937 -2.52650 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82793 -0.01526 -1.00000 - 3734 2002 3 18 5 1 13 929 4.8923 177.58767 794.29831 750.94076 -4.53720 0.04938 -2.52815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82722 -0.01526 -1.00000 - 3736 2002 3 18 5 1 23 713 4.8923 177.58239 794.22574 750.87395 -4.53485 0.04940 -2.52885 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82651 -0.01526 -1.00000 - 3738 2002 3 18 5 1 33 498 4.8924 177.57711 794.15322 750.80718 -4.53122 0.04941 -2.52853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82580 -0.01526 -1.00000 - 3740 2002 3 18 5 1 43 283 4.8925 177.57184 794.08026 750.74047 -4.52602 0.04942 -2.52763 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82508 -0.01526 -1.00000 - 3742 2002 3 18 5 1 53 68 4.8925 177.56657 794.00746 750.67378 -4.51906 0.04944 -2.52563 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82437 -0.01526 -1.00000 - 3744 2002 3 18 5 2 2 853 4.8926 177.56130 793.93480 750.60718 -4.51004 0.04945 -2.52346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82366 -0.01526 -1.00000 - 3746 2002 3 18 5 2 12 639 4.8927 177.55604 793.86394 750.54127 -4.49996 0.04946 -2.52131 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82295 -0.01526 -1.00000 - 3748 2002 3 18 5 2 22 424 4.8928 177.55078 793.79386 750.47553 -4.50170 0.04947 -2.51905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82224 -0.01525 -1.00000 - 3750 2002 3 18 5 2 32 210 4.8928 177.54553 793.72224 750.40984 -4.48682 0.04948 -2.51640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82153 -0.01525 -1.00000 - 3752 2002 3 18 5 2 41 996 4.8929 177.54028 793.65143 750.34423 -4.47397 0.04949 -2.51319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82082 -0.01525 -1.00000 - 3754 2002 3 18 5 2 51 782 4.8930 177.53503 793.58127 750.27869 -4.46499 0.04950 -2.50951 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.82010 -0.01525 -1.00000 - 3756 2002 3 18 5 3 1 568 4.8931 177.52979 793.51051 750.21320 -4.44983 0.04952 -2.50567 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81939 -0.01525 -1.00000 - 3758 2002 3 18 5 3 11 354 4.8931 177.52455 793.44244 750.14839 -4.43931 0.04953 -2.50099 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81868 -0.01525 -1.00000 - 3760 2002 3 18 5 3 21 140 4.8932 177.51932 793.37326 750.08371 -4.42467 0.04954 -2.49609 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81797 -0.01525 -1.00000 - 3762 2002 3 18 5 3 30 927 4.8933 177.51409 793.30440 750.01905 -4.40898 0.04956 -2.49062 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81726 -0.01525 -1.00000 - 3764 2002 3 18 5 3 40 713 4.8933 177.50887 793.23653 749.95440 -4.39339 0.04957 -2.48468 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81654 -0.01525 -1.00000 - 3766 2002 3 18 5 3 50 500 4.8934 177.50365 793.16719 749.88974 -4.37707 0.04958 -2.47840 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81583 -0.01525 -1.00000 - 3768 2002 3 18 5 4 0 287 4.8935 177.49843 793.09855 749.82507 -4.36321 0.04959 -2.47158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81512 -0.01525 -1.00000 - 3770 2002 3 18 5 4 10 74 4.8936 177.49322 793.03220 749.76098 -4.35541 0.04961 -2.46500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81441 -0.01525 -1.00000 - 3773 2002 3 18 5 4 24 755 4.8937 177.48542 792.93035 749.66491 -4.33170 0.04962 -2.45433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81334 -0.01524 -1.00000 - 3775 2002 3 18 5 4 34 543 4.8937 177.48022 792.86382 749.60079 -4.31927 0.04963 -2.44656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81263 -0.01524 -1.00000 - 3777 2002 3 18 5 4 44 330 4.8938 177.47502 792.79579 749.53655 -4.30516 0.04964 -2.43834 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81192 -0.01524 -1.00000 - 3779 2002 3 18 5 4 54 118 4.8939 177.46983 792.72796 749.47219 -4.28672 0.04965 -2.42970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81121 -0.01524 -1.00000 - 3781 2002 3 18 5 5 3 906 4.8940 177.46465 792.66019 749.40767 -4.26890 0.04966 -2.42014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.81050 -0.01524 -1.00000 - 3783 2002 3 18 5 5 13 694 4.8940 177.45947 792.59350 749.34366 -4.25125 0.04967 -2.41032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80978 -0.01524 -1.00000 - 3785 2002 3 18 5 5 23 482 4.8941 177.45429 792.52639 749.27963 -4.23261 0.04968 -2.40046 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80907 -0.01524 -1.00000 - 3787 2002 3 18 5 5 33 270 4.8942 177.44912 792.45952 749.21541 -4.21218 0.04969 -2.39025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80836 -0.01524 -1.00000 - 3789 2002 3 18 5 5 43 59 4.8942 177.44395 792.39164 749.15105 -4.19158 0.04969 -2.38025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80765 -0.01524 -1.00000 - 3791 2002 3 18 5 5 52 847 4.8943 177.43878 792.32373 749.08650 -4.17433 0.04970 -2.37056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80694 -0.01524 -1.00000 - 3793 2002 3 18 5 6 2 636 4.8944 177.43362 792.25572 749.02180 -4.15484 0.04971 -2.36147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80622 -0.01524 -1.00000 - 3795 2002 3 18 5 6 12 425 4.8945 177.42847 792.18841 748.95760 -4.13085 0.04972 -2.35244 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80551 -0.01523 -1.00000 - 3797 2002 3 18 5 6 22 214 4.8945 177.42331 792.12256 748.89337 -4.12054 0.04972 -2.34353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80480 -0.01523 -1.00000 - 3799 2002 3 18 5 6 32 3 4.8946 177.41817 792.05420 748.82901 -4.09130 0.04973 -2.33422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80409 -0.01523 -1.00000 - 3801 2002 3 18 5 6 41 792 4.8947 177.41302 791.98645 748.76452 -4.06249 0.04974 -2.32489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80338 -0.01523 -1.00000 - 3803 2002 3 18 5 6 51 582 4.8948 177.40788 791.91898 748.69987 -4.03571 0.04975 -2.31533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80266 -0.01523 -1.00000 - 3805 2002 3 18 5 7 1 372 4.8948 177.40274 791.84953 748.63507 -4.00707 0.04975 -2.30546 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80195 -0.01523 -1.00000 - 3807 2002 3 18 5 7 11 161 4.8949 177.39761 791.78180 748.57074 -3.97644 0.04976 -2.29544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80124 -0.01523 -1.00000 - 3809 2002 3 18 5 7 20 951 4.8950 177.39248 791.71362 748.50639 -3.94531 0.04977 -2.28484 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.80053 -0.01523 -1.00000 - 3811 2002 3 18 5 7 30 741 4.8951 177.38735 791.64519 748.44194 -3.91377 0.04977 -2.27468 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79982 -0.01523 -1.00000 - 3813 2002 3 18 5 7 40 532 4.8951 177.38223 791.57648 748.37744 -3.88171 0.04978 -2.26486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79910 -0.01523 -1.00000 - 3815 2002 3 18 5 7 50 322 4.8952 177.37711 791.50791 748.31286 -3.84953 0.04979 -2.25594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79839 -0.01523 -1.00000 - 3817 2002 3 18 5 8 0 112 4.8953 177.37200 791.43864 748.24829 -3.82569 0.04979 -2.24824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79768 -0.01523 -1.00000 - 3820 2002 3 18 5 8 14 798 4.8954 177.36433 791.33714 748.15253 -3.78198 0.04980 -2.23803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79661 -0.01522 -1.00000 - 3822 2002 3 18 5 8 24 589 4.8955 177.35923 791.26933 748.08893 -3.75206 0.04981 -2.23225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79590 -0.01522 -1.00000 - 3824 2002 3 18 5 8 34 380 4.8955 177.35412 791.20328 748.02550 -3.73847 0.04981 -2.22728 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79519 -0.01522 -1.00000 - 3826 2002 3 18 5 8 44 171 4.8956 177.34902 791.13509 747.96224 -3.71077 0.04982 -2.22271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79448 -0.01522 -1.00000 - 3828 2002 3 18 5 8 53 963 4.8957 177.34393 791.06845 747.89918 -3.68649 0.04983 -2.21886 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79376 -0.01522 -1.00000 - 3830 2002 3 18 5 9 3 754 4.8957 177.33883 791.00214 747.83629 -3.66463 0.04983 -2.21554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79305 -0.01522 -1.00000 - 3832 2002 3 18 5 9 13 546 4.8958 177.33374 790.93613 747.77428 -3.64807 0.04984 -2.21340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79234 -0.01522 -1.00000 - 3834 2002 3 18 5 9 23 338 4.8959 177.32866 790.87242 747.71274 -3.64118 0.04984 -2.21167 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79163 -0.01522 -1.00000 - 3836 2002 3 18 5 9 33 130 4.8960 177.32357 790.80833 747.65156 -3.62930 0.04984 -2.21110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79092 -0.01522 -1.00000 - 3838 2002 3 18 5 9 42 922 4.8960 177.31849 790.74441 747.59070 -3.61950 0.04985 -2.21111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.79020 -0.01522 -1.00000 - 3840 2002 3 18 5 9 52 714 4.8961 177.31342 790.68179 747.53018 -3.61263 0.04985 -2.21115 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78949 -0.01522 -1.00000 - 3842 2002 3 18 5 10 2 506 4.8962 177.30834 790.61958 747.46995 -3.61079 0.04985 -2.21199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78878 -0.01521 -1.00000 - 3844 2002 3 18 5 10 12 299 4.8963 177.30327 790.55830 747.41069 -3.61368 0.04986 -2.21350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78807 -0.01521 -1.00000 - 3846 2002 3 18 5 10 22 91 4.8963 177.29820 790.49894 747.35193 -3.61833 0.04986 -2.21514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78736 -0.01521 -1.00000 - 3848 2002 3 18 5 10 31 884 4.8964 177.29314 790.44017 747.29357 -3.62693 0.04986 -2.21723 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78664 -0.01521 -1.00000 - 3850 2002 3 18 5 10 41 677 4.8965 177.28808 790.38187 747.23561 -3.63765 0.04986 -2.22028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78593 -0.01521 -1.00000 - 3852 2002 3 18 5 10 51 470 4.8966 177.28302 790.32395 747.17799 -3.65207 0.04986 -2.22367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78522 -0.01521 -1.00000 - 3854 2002 3 18 5 11 1 263 4.8966 177.27797 790.26718 747.12067 -3.66968 0.04987 -2.22733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78451 -0.01521 -1.00000 - 3856 2002 3 18 5 11 11 57 4.8967 177.27292 790.21190 747.06431 -3.68785 0.04987 -2.23111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78380 -0.01521 -1.00000 - 3858 2002 3 18 5 11 20 850 4.8968 177.26787 790.15687 747.00842 -3.70728 0.04987 -2.23484 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78308 -0.01521 -1.00000 - 3860 2002 3 18 5 11 30 644 4.8969 177.26282 790.10322 746.95290 -3.72826 0.04987 -2.23875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78237 -0.01521 -1.00000 - 3862 2002 3 18 5 11 40 438 4.8969 177.25778 790.04974 746.89776 -3.75886 0.04987 -2.24302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78166 -0.01521 -1.00000 - 3864 2002 3 18 5 11 50 232 4.8970 177.25274 789.99695 746.84291 -3.78732 0.04987 -2.24807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78095 -0.01521 -1.00000 - 3866 2002 3 18 5 12 0 26 4.8971 177.24770 789.94457 746.78836 -3.81092 0.04988 -2.25341 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.78023 -0.01520 -1.00000 - 3869 2002 3 18 5 12 14 717 4.8972 177.24015 789.86911 746.70803 -3.85954 0.04988 -2.26043 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77917 -0.01520 -1.00000 - 3871 2002 3 18 5 12 24 512 4.8973 177.23512 789.81909 746.65502 -3.88092 0.04988 -2.26470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77845 -0.01520 -1.00000 - 3873 2002 3 18 5 12 34 306 4.8973 177.23010 789.76969 746.60238 -3.90290 0.04988 -2.26776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77774 -0.01520 -1.00000 - 3875 2002 3 18 5 12 44 101 4.8974 177.22507 789.72283 746.55003 -3.92364 0.04989 -2.26996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77703 -0.01520 -1.00000 - 3877 2002 3 18 5 12 53 896 4.8975 177.22005 789.67322 746.49785 -3.94248 0.04989 -2.27118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77632 -0.01520 -1.00000 - 3879 2002 3 18 5 13 3 691 4.8976 177.21503 789.62499 746.44585 -3.95738 0.04989 -2.27065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77560 -0.01520 -1.00000 - 3881 2002 3 18 5 13 13 486 4.8976 177.21001 789.57792 746.39454 -3.96899 0.04989 -2.26902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77489 -0.01520 -1.00000 - 3883 2002 3 18 5 13 23 282 4.8977 177.20500 789.53096 746.34353 -3.97859 0.04989 -2.26646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77418 -0.01520 -1.00000 - 3885 2002 3 18 5 13 33 77 4.8978 177.19999 789.48457 746.29280 -3.98527 0.04989 -2.26316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77347 -0.01520 -1.00000 - 3887 2002 3 18 5 13 42 873 4.8978 177.19498 789.43940 746.24224 -3.99029 0.04989 -2.25886 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77275 -0.01520 -1.00000 - 3889 2002 3 18 5 13 52 669 4.8979 177.18998 789.39309 746.19184 -3.98925 0.04989 -2.25363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77204 -0.01519 -1.00000 - 3891 2002 3 18 5 14 2 464 4.8980 177.18497 789.34740 746.14152 -3.98921 0.04988 -2.24674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77133 -0.01519 -1.00000 - 3893 2002 3 18 5 14 12 261 4.8981 177.17997 789.30287 746.09183 -3.98402 0.04988 -2.23884 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.77062 -0.01519 -1.00000 - 3895 2002 3 18 5 14 22 57 4.8981 177.17498 789.25813 746.04238 -3.96554 0.04988 -2.22932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76991 -0.01519 -1.00000 - 3897 2002 3 18 5 14 31 853 4.8982 177.16998 789.21419 745.99309 -3.94124 0.04987 -2.21806 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76919 -0.01519 -1.00000 - 3899 2002 3 18 5 14 41 650 4.8983 177.16499 789.16991 745.94390 -3.91068 0.04987 -2.20627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76848 -0.01519 -1.00000 - 3901 2002 3 18 5 14 51 446 4.8984 177.16000 789.12657 745.89479 -3.87281 0.04987 -2.19357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76777 -0.01519 -1.00000 - 3903 2002 3 18 5 15 1 243 4.8984 177.15501 789.08242 745.84569 -3.83118 0.04986 -2.17946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76706 -0.01519 -1.00000 - 3905 2002 3 18 5 15 11 40 4.8985 177.15003 789.03867 745.79719 -3.78871 0.04986 -2.16457 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76634 -0.01519 -1.00000 - 3907 2002 3 18 5 15 20 837 4.8986 177.14505 788.99655 745.74918 -3.73336 0.04986 -2.14804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76563 -0.01519 -1.00000 - 3909 2002 3 18 5 15 30 635 4.8987 177.14007 788.95527 745.70182 -3.68198 0.04986 -2.12976 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76492 -0.01519 -1.00000 - 3911 2002 3 18 5 15 40 432 4.8987 177.13510 788.91475 745.65520 -3.62349 0.04985 -2.11059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76421 -0.01519 -1.00000 - 3913 2002 3 18 5 15 50 230 4.8988 177.13012 788.87552 745.60930 -3.55786 0.04985 -2.09018 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76349 -0.01518 -1.00000 - 3915 2002 3 18 5 16 0 28 4.8989 177.12515 788.83764 745.56403 -3.48976 0.04985 -2.06922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76278 -0.01518 -1.00000 - 3918 2002 3 18 5 16 14 724 4.8990 177.11770 788.78316 745.49817 -3.38925 0.04985 -2.03640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76171 -0.01518 -1.00000 - 3920 2002 3 18 5 16 24 523 4.8991 177.11273 788.74850 745.45509 -3.32057 0.04985 -2.01384 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76100 -0.01518 -1.00000 - 3922 2002 3 18 5 16 34 321 4.8991 177.10777 788.71452 745.41256 -3.25055 0.04984 -1.99075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.76029 -0.01518 -1.00000 - 3924 2002 3 18 5 16 44 119 4.8992 177.10281 788.68137 745.37043 -3.17977 0.04984 -1.96728 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75957 -0.01518 -1.00000 - 3926 2002 3 18 5 16 53 918 4.8993 177.09785 788.64884 745.32855 -3.10867 0.04984 -1.94370 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75886 -0.01518 -1.00000 - 3928 2002 3 18 5 17 3 716 4.8994 177.09289 788.61604 745.28680 -3.03762 0.04983 -1.92006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75815 -0.01518 -1.00000 - 3930 2002 3 18 5 17 13 515 4.8994 177.08794 788.58395 745.24574 -2.96697 0.04983 -1.89612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75744 -0.01518 -1.00000 - 3932 2002 3 18 5 17 23 314 4.8995 177.08299 788.55238 745.20494 -2.89823 0.04982 -1.87232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75672 -0.01518 -1.00000 - 3934 2002 3 18 5 17 33 114 4.8996 177.07804 788.52088 745.16435 -2.84247 0.04982 -1.84879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75601 -0.01518 -1.00000 - 3936 2002 3 18 5 17 42 913 4.8997 177.07309 788.48937 745.12387 -2.78782 0.04981 -1.82552 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75530 -0.01518 -1.00000 - 3938 2002 3 18 5 17 52 712 4.8997 177.06815 788.45804 745.08351 -2.73479 0.04981 -1.80295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75459 -0.01517 -1.00000 - 3940 2002 3 18 5 18 2 512 4.8998 177.06321 788.42685 745.04320 -2.68254 0.04980 -1.78091 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75387 -0.01517 -1.00000 - 3942 2002 3 18 5 18 12 312 4.8999 177.05827 788.39633 745.00350 -2.63423 0.04980 -1.75970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75316 -0.01517 -1.00000 - 3944 2002 3 18 5 18 22 112 4.9000 177.05333 788.36594 744.96406 -2.58534 0.04979 -1.73919 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75245 -0.01517 -1.00000 - 3946 2002 3 18 5 18 31 912 4.9000 177.04840 788.33680 744.92491 -2.54686 0.04979 -1.71948 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75174 -0.01517 -1.00000 - 3948 2002 3 18 5 18 41 712 4.9001 177.04346 788.30697 744.88600 -2.50493 0.04978 -1.70093 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75102 -0.01517 -1.00000 - 3950 2002 3 18 5 18 51 512 4.9002 177.03853 788.27784 744.84730 -2.47763 0.04978 -1.68330 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.75031 -0.01517 -1.00000 - 3952 2002 3 18 5 19 1 313 4.9003 177.03360 788.24955 744.80877 -2.44328 0.04977 -1.66648 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74960 -0.01517 -1.00000 - 3954 2002 3 18 5 19 11 113 4.9003 177.02868 788.22117 744.77098 -2.40654 0.04977 -1.65085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74888 -0.01517 -1.00000 - 3956 2002 3 18 5 19 20 914 4.9004 177.02375 788.19393 744.73354 -2.38188 0.04976 -1.63577 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74817 -0.01517 -1.00000 - 3958 2002 3 18 5 19 30 715 4.9005 177.01883 788.16739 744.69651 -2.35163 0.04975 -1.62139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74746 -0.01517 -1.00000 - 3960 2002 3 18 5 19 40 516 4.9006 177.01391 788.14048 744.65982 -2.32171 0.04974 -1.60783 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74675 -0.01516 -1.00000 - 3962 2002 3 18 5 19 50 317 4.9006 177.00900 788.11467 744.62341 -2.29394 0.04973 -1.59473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74603 -0.01516 -1.00000 - 3964 2002 3 18 5 20 0 119 4.9007 177.00408 788.08904 744.58716 -2.26860 0.04972 -1.58250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74532 -0.01516 -1.00000 - 3967 2002 3 18 5 20 14 821 4.9008 176.99671 788.05182 744.53409 -2.23931 0.04971 -1.56621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74425 -0.01516 -1.00000 - 3969 2002 3 18 5 20 24 623 4.9009 176.99180 788.02839 744.49928 -2.21988 0.04970 -1.55692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74354 -0.01516 -1.00000 - 3971 2002 3 18 5 20 34 425 4.9010 176.98690 788.00501 744.46498 -2.21653 0.04969 -1.54913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74283 -0.01516 -1.00000 - 3973 2002 3 18 5 20 44 227 4.9011 176.98199 787.98452 744.43117 -2.20480 0.04968 -1.54278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74211 -0.01516 -1.00000 - 3975 2002 3 18 5 20 54 29 4.9011 176.97709 787.96222 744.39779 -2.20180 0.04968 -1.53777 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74140 -0.01516 -1.00000 - 3977 2002 3 18 5 21 3 831 4.9012 176.97219 787.94143 744.36478 -2.21342 0.04967 -1.53370 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.74069 -0.01516 -1.00000 - 3979 2002 3 18 5 21 13 634 4.9013 176.96729 787.92345 744.33280 -2.19118 0.04966 -1.53025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73997 -0.01516 -1.00000 - 3981 2002 3 18 5 21 23 437 4.9014 176.96240 787.90405 744.30142 -2.19035 0.04966 -1.52766 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73926 -0.01516 -1.00000 - 3983 2002 3 18 5 21 33 239 4.9014 176.95750 787.88697 744.27068 -2.19564 0.04965 -1.52520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73855 -0.01516 -1.00000 - 3985 2002 3 18 5 21 43 42 4.9015 176.95261 787.87096 744.24054 -2.19265 0.04964 -1.52297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73784 -0.01515 -1.00000 - 3987 2002 3 18 5 21 52 846 4.9016 176.94772 787.85416 744.21092 -2.19664 0.04963 -1.52095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73712 -0.01515 -1.00000 - 3989 2002 3 18 5 22 2 649 4.9017 176.94283 787.84020 744.18174 -2.18883 0.04962 -1.51852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73641 -0.01515 -1.00000 - 3991 2002 3 18 5 22 12 452 4.9017 176.93794 787.82603 744.15350 -2.17200 0.04961 -1.51607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73570 -0.01515 -1.00000 - 3993 2002 3 18 5 22 22 256 4.9018 176.93306 787.81226 744.12585 -2.16526 0.04960 -1.51310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73498 -0.01515 -1.00000 - 3995 2002 3 18 5 22 32 60 4.9019 176.92818 787.79965 744.09882 -2.16277 0.04959 -1.50945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73427 -0.01515 -1.00000 - 3997 2002 3 18 5 22 41 863 4.9020 176.92330 787.78767 744.07223 -2.16004 0.04959 -1.50556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73356 -0.01515 -1.00000 - 3999 2002 3 18 5 22 51 667 4.9020 176.91842 787.77620 744.04607 -2.15664 0.04958 -1.50165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73285 -0.01515 -1.00000 - 4001 2002 3 18 5 23 1 472 4.9021 176.91354 787.76565 744.02025 -2.15213 0.04958 -1.49771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73213 -0.01515 -1.00000 - 4003 2002 3 18 5 23 11 276 4.9022 176.90866 787.75555 743.99528 -2.14637 0.04958 -1.49367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73142 -0.01515 -1.00000 - 4005 2002 3 18 5 23 21 80 4.9023 176.90379 787.74649 743.97088 -2.13988 0.04957 -1.48929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.73071 -0.01515 -1.00000 - 4007 2002 3 18 5 23 30 885 4.9023 176.89891 787.73852 743.94704 -2.13365 0.04956 -1.48451 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72999 -0.01514 -1.00000 - 4009 2002 3 18 5 23 40 690 4.9024 176.89404 787.73081 743.92372 -2.12769 0.04955 -1.47960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72928 -0.01514 -1.00000 - 4011 2002 3 18 5 23 50 495 4.9025 176.88917 787.72396 743.90084 -2.12276 0.04954 -1.47425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72857 -0.01514 -1.00000 - 4013 2002 3 18 5 24 0 300 4.9026 176.88430 787.71817 743.87833 -2.12663 0.04952 -1.46902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72785 -0.01514 -1.00000 - 4015 2002 3 18 5 24 10 105 4.9026 176.87944 787.71257 743.85678 -2.11390 0.04950 -1.46415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72714 -0.01514 -1.00000 - 4018 2002 3 18 5 24 24 813 4.9027 176.87214 787.70725 743.82557 -2.12465 0.04948 -1.45656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72607 -0.01514 -1.00000 - 4020 2002 3 18 5 24 34 619 4.9028 176.86728 787.70370 743.80558 -2.10278 0.04946 -1.45091 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72536 -0.01514 -1.00000 - 4022 2002 3 18 5 24 44 424 4.9029 176.86243 787.70398 743.78620 -2.10155 0.04944 -1.44468 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72465 -0.01514 -1.00000 - 4024 2002 3 18 5 24 54 230 4.9030 176.85757 787.70192 743.76725 -2.08801 0.04942 -1.43800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72393 -0.01514 -1.00000 - 4026 2002 3 18 5 25 4 36 4.9030 176.85272 787.70082 743.74873 -2.06353 0.04941 -1.43089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72322 -0.01514 -1.00000 - 4028 2002 3 18 5 25 13 843 4.9031 176.84787 787.70301 743.73108 -2.05806 0.04939 -1.42255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72251 -0.01514 -1.00000 - 4030 2002 3 18 5 25 23 649 4.9032 176.84302 787.70274 743.71400 -2.03105 0.04938 -1.41265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72179 -0.01514 -1.00000 - 4032 2002 3 18 5 25 33 455 4.9033 176.83817 787.70450 743.69756 -2.00053 0.04937 -1.40231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72108 -0.01513 -1.00000 - 4034 2002 3 18 5 25 43 262 4.9033 176.83333 787.70789 743.68159 -1.96942 0.04936 -1.39082 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.72037 -0.01513 -1.00000 - 4036 2002 3 18 5 25 53 69 4.9034 176.82848 787.71032 743.66609 -1.95843 0.04936 -1.37887 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71965 -0.01513 -1.00000 - 4038 2002 3 18 5 26 2 876 4.9035 176.82364 787.71388 743.65093 -1.92033 0.04935 -1.36635 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71894 -0.01513 -1.00000 - 4040 2002 3 18 5 26 12 683 4.9036 176.81880 787.72089 743.63665 -1.88776 0.04934 -1.35312 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71823 -0.01513 -1.00000 - 4042 2002 3 18 5 26 22 490 4.9036 176.81396 787.72396 743.62290 -1.86231 0.04933 -1.33924 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71751 -0.01513 -1.00000 - 4044 2002 3 18 5 26 32 298 4.9037 176.80912 787.73004 743.60970 -1.83012 0.04932 -1.32380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71680 -0.01513 -1.00000 - 4046 2002 3 18 5 26 42 105 4.9038 176.80428 787.73680 743.59691 -1.78984 0.04931 -1.30739 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71609 -0.01513 -1.00000 - 4048 2002 3 18 5 26 51 913 4.9039 176.79945 787.74425 743.58446 -1.74931 0.04930 -1.28982 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71537 -0.01513 -1.00000 - 4050 2002 3 18 5 27 1 721 4.9039 176.79461 787.75072 743.57225 -1.70781 0.04929 -1.27139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71466 -0.01513 -1.00000 - 4052 2002 3 18 5 27 11 529 4.9040 176.78978 787.75921 743.56070 -1.66348 0.04927 -1.25145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71395 -0.01513 -1.00000 - 4054 2002 3 18 5 27 21 337 4.9041 176.78494 787.76733 743.54950 -1.61972 0.04926 -1.23041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71323 -0.01513 -1.00000 - 4056 2002 3 18 5 27 31 145 4.9042 176.78011 787.77550 743.53866 -1.57515 0.04924 -1.20878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71252 -0.01512 -1.00000 - 4058 2002 3 18 5 27 40 954 4.9042 176.77529 787.78462 743.52808 -1.52964 0.04922 -1.18653 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71181 -0.01512 -1.00000 - 4060 2002 3 18 5 27 50 762 4.9043 176.77046 787.79391 743.51768 -1.49843 0.04921 -1.16391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71109 -0.01512 -1.00000 - 4062 2002 3 18 5 28 0 571 4.9044 176.76563 787.80262 743.50742 -1.48900 0.04919 -1.14110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.71038 -0.01512 -1.00000 - 4064 2002 3 18 5 28 10 380 4.9045 176.76081 787.81278 743.49773 -1.48080 0.04917 -1.11787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70967 -0.01512 -1.00000 - 4066 2002 3 18 5 28 20 189 4.9045 176.75599 787.82303 743.48842 -1.47197 0.04916 -1.09435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70895 -0.01512 -1.00000 - 4069 2002 3 18 5 28 34 903 4.9047 176.74876 787.83912 743.47514 -1.45753 0.04913 -1.05891 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70788 -0.01512 -1.00000 - 4071 2002 3 18 5 28 44 712 4.9047 176.74394 787.85025 743.46670 -1.44749 0.04912 -1.03555 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70717 -0.01512 -1.00000 - 4073 2002 3 18 5 28 54 522 4.9048 176.73913 787.86167 743.45848 -1.43739 0.04910 -1.01324 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70646 -0.01512 -1.00000 - 4075 2002 3 18 5 29 4 331 4.9049 176.73431 787.87513 743.45057 -1.42736 0.04909 -0.99192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70574 -0.01512 -1.00000 - 4077 2002 3 18 5 29 14 141 4.9050 176.72950 787.88708 743.44338 -1.41749 0.04907 -0.97060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70503 -0.01512 -1.00000 - 4079 2002 3 18 5 29 23 951 4.9050 176.72469 787.90223 743.43677 -1.40725 0.04906 -0.94960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70432 -0.01511 -1.00000 - 4081 2002 3 18 5 29 33 762 4.9051 176.71988 787.91635 743.43076 -1.39639 0.04904 -0.92891 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70360 -0.01511 -1.00000 - 4083 2002 3 18 5 29 43 572 4.9052 176.71507 787.93028 743.42523 -1.38478 0.04903 -0.90751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70289 -0.01511 -1.00000 - 4085 2002 3 18 5 29 53 382 4.9053 176.71026 787.94855 743.42017 -1.37256 0.04901 -0.88641 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70218 -0.01511 -1.00000 - 4087 2002 3 18 5 30 3 193 4.9053 176.70545 787.96319 743.41539 -1.36015 0.04900 -0.86496 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70146 -0.01511 -1.00000 - 4089 2002 3 18 5 30 13 4 4.9054 176.70065 787.97992 743.41144 -1.34934 0.04899 -0.84271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70075 -0.01511 -1.00000 - 4091 2002 3 18 5 30 22 815 4.9055 176.69584 787.99888 743.40856 -1.34138 0.04897 -0.81950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.70004 -0.01511 -1.00000 - 4093 2002 3 18 5 30 32 626 4.9056 176.69104 788.01979 743.40716 -1.33343 0.04896 -0.79577 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69932 -0.01511 -1.00000 - 4095 2002 3 18 5 30 42 437 4.9056 176.68624 788.04260 743.40728 -1.32541 0.04894 -0.77201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69861 -0.01511 -1.00000 - 4097 2002 3 18 5 30 52 249 4.9057 176.68143 788.06756 743.40884 -1.31722 0.04893 -0.74794 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69790 -0.01511 -1.00000 - 4099 2002 3 18 5 31 2 60 4.9058 176.67663 788.09474 743.41165 -1.30882 0.04891 -0.72399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69718 -0.01511 -1.00000 - 4101 2002 3 18 5 31 11 872 4.9059 176.67183 788.12415 743.41609 -1.30021 0.04889 -0.69993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69647 -0.01511 -1.00000 - 4103 2002 3 18 5 31 21 684 4.9059 176.66704 788.15532 743.42174 -1.29117 0.04888 -0.67569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69576 -0.01510 -1.00000 - 4105 2002 3 18 5 31 31 496 4.9060 176.66224 788.18840 743.42851 -1.28169 0.04885 -0.65146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69504 -0.01510 -1.00000 - 4107 2002 3 18 5 31 41 308 4.9061 176.65745 788.22298 743.43617 -1.27256 0.04883 -0.62705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69433 -0.01510 -1.00000 - 4109 2002 3 18 5 31 51 120 4.9062 176.65265 788.25883 743.44453 -1.26437 0.05405 -0.60270 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69362 -0.01510 -1.00000 - 4111 2002 3 18 5 32 0 933 4.9062 176.64786 788.29542 743.45343 -1.25836 0.10666 -0.57831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69290 -0.01510 -1.00000 - 4113 2002 3 18 5 32 10 745 4.9063 176.64307 788.33362 743.46321 -1.25270 0.15995 -0.55391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69219 -0.01510 -1.00000 - 4115 2002 3 18 5 32 20 558 4.9064 176.63828 788.37217 743.47356 -1.24691 0.21391 -0.52957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69147 -0.01510 -1.00000 - 4117 2002 3 18 5 32 30 371 4.9065 176.63350 788.41114 743.48442 -1.24083 0.26838 -0.50517 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69076 -0.01510 -1.00000 - 4119 2002 3 18 5 32 40 184 4.9065 176.62871 788.45068 743.49555 -1.23444 0.32311 -0.48072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.69005 -0.01510 -1.00000 - 4122 2002 3 18 5 32 54 904 4.9067 176.62153 788.50992 743.51252 -1.22426 0.40485 -0.44457 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68898 -0.01510 -1.00000 - 4124 2002 3 18 5 33 4 717 4.9067 176.61675 788.55008 743.52390 -1.21710 0.45853 -0.42095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68826 -0.01510 -1.00000 - 4126 2002 3 18 5 33 14 531 4.9068 176.61197 788.58960 743.53574 -1.20974 0.51102 -0.39776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68755 -0.01509 -1.00000 - 4128 2002 3 18 5 33 24 345 4.9069 176.60719 788.62922 743.54786 -1.20240 0.56188 -0.37498 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68684 -0.01509 -1.00000 - 4130 2002 3 18 5 33 34 158 4.9070 176.60241 788.66920 743.56026 -1.19492 0.61067 -0.35250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68612 -0.01509 -1.00000 - 4132 2002 3 18 5 33 43 972 4.9070 176.59763 788.70883 743.57284 -1.18750 0.65681 -0.33048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68541 -0.01509 -1.00000 - 4134 2002 3 18 5 33 53 787 4.9071 176.59285 788.74841 743.58556 -1.18058 0.69963 -0.30910 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68469 -0.01509 -1.00000 - 4136 2002 3 18 5 34 3 601 4.9072 176.58807 788.78853 743.59836 -1.17436 0.73879 -0.28816 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68398 -0.01509 -1.00000 - 4138 2002 3 18 5 34 13 415 4.9073 176.58329 788.82821 743.61170 -1.16867 0.77460 -0.26800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68327 -0.01509 -1.00000 - 4140 2002 3 18 5 34 23 230 4.9073 176.57851 788.86849 743.62548 -1.16313 0.80786 -0.24834 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68255 -0.01509 -1.00000 - 4142 2002 3 18 5 34 33 45 4.9074 176.57374 788.90954 743.63968 -1.15725 0.83967 -0.22926 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68184 -0.01509 -1.00000 - 4144 2002 3 18 5 34 42 860 4.9075 176.56896 788.94993 743.65425 -1.15101 0.87123 -0.21089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68113 -0.01509 -1.00000 - 4146 2002 3 18 5 34 52 675 4.9076 176.56419 788.99171 743.66916 -1.14461 0.90336 -0.19310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.68041 -0.01509 -1.00000 - 4148 2002 3 18 5 35 2 490 4.9076 176.55942 789.03370 743.68437 -1.13834 0.93636 -0.17620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67970 -0.01509 -1.00000 - 4150 2002 3 18 5 35 12 306 4.9077 176.55464 789.07573 743.70036 -1.13237 0.97023 -0.16017 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67898 -0.01508 -1.00000 - 4152 2002 3 18 5 35 22 121 4.9078 176.54988 789.11945 743.71694 -1.12654 1.00486 -0.14470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67827 -0.01508 -1.00000 - 4154 2002 3 18 5 35 31 937 4.9079 176.54511 789.16327 743.73420 -1.12055 1.04006 -0.12983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67756 -0.01508 -1.00000 - 4156 2002 3 18 5 35 41 753 4.9079 176.54034 789.20759 743.75201 -1.11425 1.07582 -0.11596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67684 -0.01508 -1.00000 - 4158 2002 3 18 5 35 51 569 4.9080 176.53558 789.25389 743.77031 -1.10760 1.11211 -0.10234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67613 -0.01508 -1.00000 - 4160 2002 3 18 5 36 1 385 4.9081 176.53081 789.29985 743.78909 -1.10185 1.14857 -0.08945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67542 -0.01508 -1.00000 - 4162 2002 3 18 5 36 11 201 4.9082 176.52605 789.34729 743.80872 -1.09647 1.18494 -0.07694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67470 -0.01508 -1.00000 - 4164 2002 3 18 5 36 21 18 4.9083 176.52129 789.39521 743.82903 -1.09110 1.22110 -0.06444 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67399 -0.01508 -1.00000 - 4166 2002 3 18 5 36 30 834 4.9083 176.51653 789.44384 743.84997 -1.08557 1.25692 -0.05265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67327 -0.01508 -1.00000 - 4168 2002 3 18 5 36 40 651 4.9084 176.51177 789.49327 743.87147 -1.07995 1.29226 -0.04160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67256 -0.01508 -1.00000 - 4170 2002 3 18 5 36 50 468 4.9085 176.50701 789.54379 743.89344 -1.07428 1.32694 -0.03134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67185 -0.01508 -1.00000 - 4172 2002 3 18 5 37 0 285 4.9086 176.50225 789.59446 743.91584 -1.06863 1.36053 -0.02212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67113 -0.01507 -1.00000 - 4174 2002 3 18 5 37 10 102 4.9086 176.49749 789.64761 743.93912 -1.06302 1.39214 -0.01453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.67042 -0.01507 -1.00000 - 4177 2002 3 18 5 37 24 828 4.9087 176.49034 789.72660 743.97558 -1.05497 1.43371 -0.00635 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66935 -0.01507 -1.00000 - 4179 2002 3 18 5 37 34 646 4.9088 176.48558 789.78572 744.00090 -1.04990 1.45554 -0.00315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66863 -0.01507 -1.00000 - 4181 2002 3 18 5 37 44 464 4.9089 176.48082 789.83908 744.02692 -1.04511 1.46919 -0.00069 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66792 -0.01507 -1.00000 - 4183 2002 3 18 5 37 54 282 4.9090 176.47606 789.89608 744.05363 -1.04070 1.46911 0.00117 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66721 -0.01507 -1.00000 - 4185 2002 3 18 5 38 4 100 4.9090 176.47130 789.95636 744.08085 -1.03672 1.46608 0.00298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66649 -0.01507 -1.00000 - 4187 2002 3 18 5 38 13 918 4.9091 176.46654 790.01397 744.10909 -1.03301 1.45569 0.00460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66578 -0.01507 -1.00000 - 4189 2002 3 18 5 38 23 736 4.9092 176.46179 790.07460 744.13809 -1.02938 1.43128 0.00616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66506 -0.01507 -1.00000 - 4191 2002 3 18 5 38 33 555 4.9093 176.45703 790.13611 744.16792 -1.02545 1.40050 0.00810 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66435 -0.01507 -1.00000 - 4193 2002 3 18 5 38 43 373 4.9093 176.45228 790.19662 744.19839 -1.02126 1.37135 0.00949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66364 -0.01507 -1.00000 - 4195 2002 3 18 5 38 53 192 4.9094 176.44753 790.26006 744.22933 -1.01698 1.33094 0.01198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66292 -0.01507 -1.00000 - 4197 2002 3 18 5 39 3 11 4.9095 176.44278 790.32351 744.26075 -1.01281 1.28625 0.01459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66221 -0.01506 -1.00000 - 4199 2002 3 18 5 39 12 830 4.9096 176.43803 790.38601 744.29292 -1.00885 1.24559 0.01683 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66149 -0.01506 -1.00000 - 4201 2002 3 18 5 39 22 650 4.9097 176.43328 790.45223 744.32583 -1.00503 1.19689 0.01976 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66078 -0.01506 -1.00000 - 4203 2002 3 18 5 39 32 469 4.9097 176.42854 790.51808 744.35942 -1.00101 1.14858 0.02315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.66006 -0.01506 -1.00000 - 4205 2002 3 18 5 39 42 289 4.9098 176.42379 790.58275 744.39351 -0.99668 1.11076 0.02682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65935 -0.01506 -1.00000 - 4207 2002 3 18 5 39 52 108 4.9099 176.41904 790.65104 744.42805 -0.99198 1.07072 0.03229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65864 -0.01506 -1.00000 - 4209 2002 3 18 5 40 1 928 4.9100 176.41430 790.71925 744.46297 -0.98693 1.03621 0.03844 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65792 -0.01506 -1.00000 - 4211 2002 3 18 5 40 11 748 4.9100 176.40955 790.78542 744.49855 -0.98161 1.01642 0.04518 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65721 -0.01506 -1.00000 - 4213 2002 3 18 5 40 21 568 4.9101 176.40481 790.85540 744.53471 -0.97592 1.00336 0.05421 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65649 -0.01506 -1.00000 - 4215 2002 3 18 5 40 31 389 4.9102 176.40006 790.92539 744.57139 -0.97063 0.98995 0.06425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65578 -0.01506 -1.00000 - 4217 2002 3 18 5 40 41 209 4.9103 176.39531 790.99297 744.60843 -0.96602 0.99857 0.07498 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65507 -0.01506 -1.00000 - 4219 2002 3 18 5 40 51 30 4.9103 176.39057 791.06399 744.64570 -0.96131 1.01256 0.08840 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65435 -0.01505 -1.00000 - 4221 2002 3 18 5 41 0 851 4.9104 176.38582 791.13485 744.68319 -0.95651 1.03496 0.10307 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65364 -0.01505 -1.00000 - 4223 2002 3 18 5 41 10 671 4.9105 176.38108 791.20361 744.72117 -0.95160 1.06386 0.11809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65292 -0.01505 -1.00000 - 4225 2002 3 18 5 41 20 493 4.9106 176.37633 791.27583 744.75962 -0.94667 1.09679 0.13488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65221 -0.01505 -1.00000 - 4227 2002 3 18 5 41 30 314 4.9106 176.37159 791.34777 744.79847 -0.94158 1.13705 0.15298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65149 -0.01505 -1.00000 - 4229 2002 3 18 5 41 40 135 4.9107 176.36684 791.41745 744.83758 -0.93638 1.18466 0.17182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.65078 -0.01505 -1.00000 - 4232 2002 3 18 5 41 54 868 4.9108 176.35973 791.52817 744.89660 -0.92871 1.26672 0.20321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64971 -0.01505 -1.00000 - 4234 2002 3 18 5 42 4 689 4.9109 176.35499 791.59823 744.93606 -0.92405 1.32755 0.22525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64900 -0.01505 -1.00000 - 4236 2002 3 18 5 42 14 511 4.9110 176.35024 791.67009 744.97607 -0.91993 1.39100 0.24830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64828 -0.01505 -1.00000 - 4238 2002 3 18 5 42 24 333 4.9111 176.34550 791.74359 745.01640 -0.91627 1.45759 0.27250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64757 -0.01505 -1.00000 - 4240 2002 3 18 5 42 34 155 4.9111 176.34076 791.81500 745.05703 -0.91242 1.52565 0.29738 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64685 -0.01505 -1.00000 - 4242 2002 3 18 5 42 43 978 4.9112 176.33602 791.88802 745.09790 -0.90802 1.59521 0.32293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64614 -0.01505 -1.00000 - 4244 2002 3 18 5 42 53 800 4.9113 176.33128 791.96210 745.13897 -0.90292 1.66758 0.34845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64542 -0.01504 -1.00000 - 4246 2002 3 18 5 43 3 623 4.9114 176.32655 792.03349 745.18014 -0.89724 1.74007 0.37353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64471 -0.01504 -1.00000 - 4248 2002 3 18 5 43 13 446 4.9114 176.32181 792.10879 745.22190 -0.89122 1.81171 0.39921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64399 -0.01504 -1.00000 - 4250 2002 3 18 5 43 23 269 4.9115 176.31707 792.18330 745.26416 -0.88512 1.89754 0.42392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64328 -0.01504 -1.00000 - 4252 2002 3 18 5 43 33 92 4.9116 176.31233 792.25596 745.30677 -0.87893 1.98595 0.44915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64257 -0.01504 -1.00000 - 4254 2002 3 18 5 43 42 915 4.9117 176.30760 792.33279 745.34976 -0.87272 2.07478 0.47535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64185 -0.01504 -1.00000 - 4256 2002 3 18 5 43 52 739 4.9117 176.30286 792.40772 745.39298 -0.86653 2.16327 0.50179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64114 -0.01504 -1.00000 - 4258 2002 3 18 5 44 2 562 4.9118 176.29813 792.48168 745.43643 -0.86040 2.25119 0.52828 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.64042 -0.01504 -1.00000 - 4260 2002 3 18 5 44 12 386 4.9119 176.29339 792.56043 745.48036 -0.85423 2.33790 0.55551 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63971 -0.01504 -1.00000 - 4262 2002 3 18 5 44 22 210 4.9120 176.28866 792.63378 745.52472 -0.84793 2.42149 0.58342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63899 -0.01504 -1.00000 - 4264 2002 3 18 5 44 32 34 4.9120 176.28393 792.70932 745.56944 -0.84134 2.50060 0.61138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63828 -0.01504 -1.00000 - 4266 2002 3 18 5 44 41 858 4.9121 176.27919 792.78533 745.61439 -0.83479 2.57469 0.63976 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63757 -0.01504 -1.00000 - 4268 2002 3 18 5 44 51 682 4.9122 176.27446 792.86120 745.65945 -0.83020 2.64381 0.66815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63685 -0.01503 -1.00000 - 4270 2002 3 18 5 45 1 507 4.9123 176.26972 792.93692 745.70461 -0.82570 2.70831 0.69578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63614 -0.01503 -1.00000 - 4272 2002 3 18 5 45 11 332 4.9123 176.26499 793.01334 745.75016 -0.82130 2.76873 0.72260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63542 -0.01503 -1.00000 - 4274 2002 3 18 5 45 21 156 4.9124 176.26025 793.09029 745.79622 -0.81778 2.82561 0.74956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63471 -0.01503 -1.00000 - 4276 2002 3 18 5 45 30 981 4.9125 176.25552 793.16848 745.84316 -0.81460 2.87952 0.77642 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63399 -0.01503 -1.00000 - 4278 2002 3 18 5 45 40 806 4.9126 176.25078 793.24851 745.89110 -0.81168 2.93100 0.80307 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63328 -0.01503 -1.00000 - 4280 2002 3 18 5 45 50 632 4.9126 176.24605 793.33005 745.94000 -0.80890 2.98053 0.82920 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63256 -0.01503 -1.00000 - 4282 2002 3 18 5 46 0 457 4.9127 176.24132 793.41339 745.98980 -0.80611 3.02846 0.85465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63185 -0.01503 -1.00000 - 4284 2002 3 18 5 46 10 283 4.9128 176.23658 793.49813 746.04077 -0.80327 3.07498 0.87946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63114 -0.01503 -1.00000 - 4286 2002 3 18 5 46 20 108 4.9129 176.23185 793.58419 746.09277 -0.80057 3.12015 0.90354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.63042 -0.01503 -1.00000 - 4289 2002 3 18 5 46 34 847 4.9130 176.22475 793.71561 746.17237 -0.79643 3.18513 0.93852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62935 -0.01503 -1.00000 - 4291 2002 3 18 5 46 44 673 4.9131 176.22002 793.80451 746.22625 -0.79375 3.22630 0.96093 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62863 -0.01502 -1.00000 - 4293 2002 3 18 5 46 54 499 4.9131 176.21529 793.89424 746.28062 -0.79116 3.26547 0.98262 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62792 -0.01502 -1.00000 - 4295 2002 3 18 5 47 4 326 4.9132 176.21055 793.98487 746.33538 -0.78847 3.30241 1.00351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62720 -0.01502 -1.00000 - 4297 2002 3 18 5 47 14 152 4.9133 176.20582 794.07563 746.39087 -0.78546 3.33696 1.02371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62649 -0.01502 -1.00000 - 4299 2002 3 18 5 47 23 979 4.9134 176.20109 794.16718 746.44697 -0.78210 3.36915 1.04323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62578 -0.01502 -1.00000 - 4301 2002 3 18 5 47 33 806 4.9134 176.19636 794.25896 746.50359 -0.77825 3.39922 1.06206 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62506 -0.01502 -1.00000 - 4303 2002 3 18 5 47 43 633 4.9135 176.19163 794.35138 746.56061 -0.77413 3.42756 1.08007 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62435 -0.01502 -1.00000 - 4305 2002 3 18 5 47 53 460 4.9136 176.18690 794.44423 746.61795 -0.76992 3.45466 1.09751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62363 -0.01502 -1.00000 - 4307 2002 3 18 5 48 3 287 4.9137 176.18217 794.53692 746.67556 -0.76570 3.48105 1.11425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62292 -0.01502 -1.00000 - 4309 2002 3 18 5 48 13 115 4.9137 176.17744 794.63006 746.73376 -0.76145 3.50716 1.13034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62220 -0.01502 -1.00000 - 4311 2002 3 18 5 48 22 942 4.9138 176.17271 794.72391 746.79249 -0.75718 3.53327 1.14588 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62149 -0.01502 -1.00000 - 4313 2002 3 18 5 48 32 770 4.9139 176.16797 794.81749 746.85171 -0.75268 3.55936 1.16076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62077 -0.01502 -1.00000 - 4315 2002 3 18 5 48 42 598 4.9140 176.16324 794.91223 746.91134 -0.74801 3.58520 1.17501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.62006 -0.01501 -1.00000 - 4317 2002 3 18 5 48 52 426 4.9140 176.15851 795.00714 746.97130 -0.74324 3.61032 1.18862 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61934 -0.01501 -1.00000 - 4319 2002 3 18 5 49 2 254 4.9141 176.15378 795.10210 747.03164 -0.73835 3.63416 1.20128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61863 -0.01501 -1.00000 - 4321 2002 3 18 5 49 12 83 4.9142 176.14905 795.19871 747.09266 -0.73334 3.65629 1.21322 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61791 -0.01501 -1.00000 - 4323 2002 3 18 5 49 21 911 4.9143 176.14431 795.29440 747.15438 -0.72827 3.67649 1.22458 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61720 -0.01501 -1.00000 - 4325 2002 3 18 5 49 31 740 4.9143 176.13958 795.39256 747.21679 -0.72299 3.69488 1.23512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61648 -0.01501 -1.00000 - 4327 2002 3 18 5 49 41 569 4.9144 176.13485 795.49077 747.27976 -0.71760 3.71177 1.24499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61577 -0.01501 -1.00000 - 4329 2002 3 18 5 49 51 398 4.9145 176.13012 795.58884 747.34328 -0.71216 3.72747 1.25452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61506 -0.01501 -1.00000 - 4331 2002 3 18 5 50 1 227 4.9146 176.12539 795.68907 747.40737 -0.70675 3.74292 1.26378 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61434 -0.01501 -1.00000 - 4333 2002 3 18 5 50 11 56 4.9147 176.12066 795.78950 747.47220 -0.70227 3.75787 1.27258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61363 -0.01501 -1.00000 - 4335 2002 3 18 5 50 20 885 4.9147 176.11593 795.89167 747.53780 -0.69822 3.77184 1.28081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61291 -0.01501 -1.00000 - 4337 2002 3 18 5 50 30 715 4.9148 176.11120 795.99456 747.60413 -0.69418 3.78614 1.28838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61220 -0.01500 -1.00000 - 4339 2002 3 18 5 50 40 545 4.9149 176.10647 796.09664 747.67106 -0.69023 3.79987 1.29472 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61148 -0.01500 -1.00000 - 4341 2002 3 18 5 50 50 375 4.9150 176.10174 796.20175 747.73864 -0.68637 3.81379 1.30146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61077 -0.01500 -1.00000 - 4343 2002 3 18 5 51 0 205 4.9150 176.09700 796.31016 747.80680 -0.68256 3.82988 1.30693 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.61005 -0.01500 -1.00000 - 4345 2002 3 18 5 51 10 35 4.9151 176.09227 796.41285 747.87579 -0.67872 3.84760 1.31160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60934 -0.01500 -1.00000 - 4348 2002 3 18 5 51 24 780 4.9152 176.08517 796.57570 747.98086 -0.67304 3.85613 1.31917 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60826 -0.01500 -1.00000 - 4350 2002 3 18 5 51 34 611 4.9153 176.08044 796.68468 748.05177 -0.66931 3.87125 1.32528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60755 -0.01500 -1.00000 - 4352 2002 3 18 5 51 44 442 4.9154 176.07571 796.79170 748.12322 -0.66578 3.88673 1.33123 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60683 -0.01500 -1.00000 - 4354 2002 3 18 5 51 54 272 4.9154 176.07097 796.90227 748.19508 -0.66239 3.88723 1.33796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60612 -0.01500 -1.00000 - 4356 2002 3 18 5 52 4 103 4.9155 176.06624 797.01228 748.26727 -0.65905 3.90155 1.34630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60540 -0.01500 -1.00000 - 4358 2002 3 18 5 52 13 935 4.9156 176.06150 797.12215 748.34000 -0.65590 3.91325 1.35462 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60469 -0.01500 -1.00000 - 4360 2002 3 18 5 52 23 766 4.9157 176.05677 797.23305 748.41329 -0.65323 3.90496 1.36282 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60397 -0.01500 -1.00000 - 4362 2002 3 18 5 52 33 597 4.9157 176.05203 797.34357 748.48708 -0.65083 3.90594 1.37161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60326 -0.01499 -1.00000 - 4364 2002 3 18 5 52 43 429 4.9158 176.04729 797.45501 748.56125 -0.64856 3.90380 1.38105 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60254 -0.01499 -1.00000 - 4366 2002 3 18 5 52 53 261 4.9159 176.04256 797.56689 748.63571 -0.64624 3.89848 1.39079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60183 -0.01499 -1.00000 - 4368 2002 3 18 5 53 3 93 4.9160 176.03783 797.67871 748.71044 -0.64377 3.89107 1.40081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60111 -0.01499 -1.00000 - 4370 2002 3 18 5 53 12 925 4.9160 176.03309 797.79188 748.78577 -0.64117 3.88261 1.41103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.60040 -0.01499 -1.00000 - 4372 2002 3 18 5 53 22 757 4.9161 176.02836 797.90541 748.86167 -0.63868 3.87401 1.42199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59968 -0.01499 -1.00000 - 4374 2002 3 18 5 53 32 589 4.9162 176.02363 798.01845 748.93806 -0.63623 3.86612 1.43315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59897 -0.01499 -1.00000 - 4376 2002 3 18 5 53 42 422 4.9163 176.01890 798.13379 749.01485 -0.63392 3.85977 1.44465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59825 -0.01499 -1.00000 - 4378 2002 3 18 5 53 52 254 4.9164 176.01417 798.24876 749.09197 -0.63167 3.85598 1.45658 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59754 -0.01499 -1.00000 - 4380 2002 3 18 5 54 2 87 4.9164 176.00944 798.36593 749.16947 -0.62941 3.84806 1.46780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59682 -0.01499 -1.00000 - 4382 2002 3 18 5 54 11 920 4.9165 176.00471 798.48395 749.24767 -0.62702 3.84397 1.47867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59611 -0.01499 -1.00000 - 4384 2002 3 18 5 54 21 753 4.9166 175.99998 798.59825 749.32657 -0.62452 3.85306 1.48965 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59539 -0.01498 -1.00000 - 4386 2002 3 18 5 54 31 587 4.9167 175.99524 798.71792 749.40604 -0.62176 3.86494 1.50234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59468 -0.01498 -1.00000 - 4388 2002 3 18 5 54 41 420 4.9167 175.99051 798.83685 749.48592 -0.61884 3.87083 1.51622 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59396 -0.01498 -1.00000 - 4390 2002 3 18 5 54 51 254 4.9168 175.98578 798.95447 749.56609 -0.61583 3.88119 1.53041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59325 -0.01498 -1.00000 - 4392 2002 3 18 5 55 1 87 4.9169 175.98105 799.07481 749.64659 -0.61270 3.90568 1.54676 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59253 -0.01498 -1.00000 - 4394 2002 3 18 5 55 10 921 4.9170 175.97631 799.19481 749.72765 -0.60936 3.93360 1.56399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59182 -0.01498 -1.00000 - 4396 2002 3 18 5 55 20 755 4.9170 175.97158 799.31511 749.80915 -0.60579 3.96683 1.58158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59110 -0.01498 -1.00000 - 4398 2002 3 18 5 55 30 589 4.9171 175.96684 799.43578 749.89100 -0.60179 4.00658 1.60214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.59039 -0.01498 -1.00000 - 4400 2002 3 18 5 55 40 424 4.9172 175.96211 799.55506 749.97309 -0.59738 4.05320 1.62419 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58967 -0.01498 -1.00000 - 4402 2002 3 18 5 55 50 258 4.9173 175.95737 799.67466 750.05526 -0.59261 4.10634 1.64762 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58896 -0.01498 -1.00000 - 4404 2002 3 18 5 56 0 93 4.9173 175.95263 799.79483 750.13746 -0.58769 4.16509 1.67299 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58824 -0.01498 -1.00000 - 4407 2002 3 18 5 56 14 845 4.9174 175.94552 799.97444 750.26111 -0.58204 4.26188 1.71333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58717 -0.01498 -1.00000 - 4409 2002 3 18 5 56 24 680 4.9175 175.94078 800.09377 750.34375 -0.57809 4.33084 1.74096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58645 -0.01497 -1.00000 - 4411 2002 3 18 5 56 34 515 4.9176 175.93603 800.21211 750.42643 -0.57398 4.40245 1.76899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58574 -0.01497 -1.00000 - 4413 2002 3 18 5 56 44 350 4.9177 175.93129 800.33076 750.50912 -0.56971 4.47603 1.79758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58502 -0.01497 -1.00000 - 4415 2002 3 18 5 56 54 186 4.9177 175.92655 800.44989 750.59181 -0.56522 4.55065 1.82643 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58431 -0.01497 -1.00000 - 4417 2002 3 18 5 57 4 22 4.9178 175.92181 800.56779 750.67446 -0.56051 4.62507 1.85546 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58359 -0.01497 -1.00000 - 4419 2002 3 18 5 57 13 857 4.9179 175.91707 800.68644 750.75744 -0.55567 4.69884 1.88455 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58288 -0.01497 -1.00000 - 4421 2002 3 18 5 57 23 693 4.9180 175.91233 800.80478 750.84078 -0.55102 4.77229 1.91364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58216 -0.01497 -1.00000 - 4423 2002 3 18 5 57 33 529 4.9181 175.90759 800.92296 750.92445 -0.54668 4.84623 1.94220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58145 -0.01497 -1.00000 - 4425 2002 3 18 5 57 43 365 4.9181 175.90285 801.04208 751.00834 -0.54274 4.92157 1.97020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58073 -0.01497 -1.00000 - 4427 2002 3 18 5 57 53 202 4.9182 175.89811 801.16059 751.09259 -0.53901 4.99898 1.99672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.58002 -0.01497 -1.00000 - 4429 2002 3 18 5 58 3 38 4.9183 175.89336 801.28145 751.17721 -0.53555 5.07078 2.02141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57930 -0.01497 -1.00000 - 4431 2002 3 18 5 58 12 875 4.9184 175.88862 801.40320 751.26255 -0.53275 5.14366 2.04406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57859 -0.01496 -1.00000 - 4433 2002 3 18 5 58 22 712 4.9184 175.88387 801.52159 751.34860 -0.53075 5.22263 2.06649 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57787 -0.01496 -1.00000 - 4435 2002 3 18 5 58 32 549 4.9185 175.87912 801.64766 751.43532 -0.52911 5.29587 2.08853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57716 -0.01496 -1.00000 - 4437 2002 3 18 5 58 42 386 4.9186 175.87437 801.76782 751.52257 -0.52740 5.36397 2.11011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57644 -0.01496 -1.00000 - 4439 2002 3 18 5 58 52 223 4.9187 175.86963 801.89071 751.61035 -0.52537 5.42701 2.13216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57573 -0.01496 -1.00000 - 4441 2002 3 18 5 59 2 61 4.9187 175.86487 802.01715 751.69860 -0.52304 5.48591 2.15363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57501 -0.01496 -1.00000 - 4443 2002 3 18 5 59 11 898 4.9188 175.86012 802.14005 751.78754 -0.52064 5.54100 2.17532 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57429 -0.01496 -1.00000 - 4445 2002 3 18 5 59 21 736 4.9189 175.85537 802.26528 751.87720 -0.51846 5.59226 2.19656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57358 -0.01496 -1.00000 - 4447 2002 3 18 5 59 31 574 4.9190 175.85062 802.39136 751.96744 -0.51647 5.63955 2.21805 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57286 -0.01496 -1.00000 - 4449 2002 3 18 5 59 41 412 4.9190 175.84586 802.51777 752.05813 -0.51460 5.68273 2.23954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57215 -0.01496 -1.00000 - 4451 2002 3 18 5 59 51 250 4.9191 175.84110 802.64479 752.14916 -0.51269 5.72184 2.26006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57143 -0.01496 -1.00000 - 4453 2002 3 18 6 0 1 88 4.9192 175.83635 802.77247 752.24052 -0.51063 5.75706 2.27981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57072 -0.01496 -1.00000 - 4455 2002 3 18 6 0 10 927 4.9193 175.83159 802.90002 752.33233 -0.50837 5.78860 2.29844 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.57000 -0.01495 -1.00000 - 4457 2002 3 18 6 0 20 765 4.9193 175.82683 803.02908 752.42455 -0.50670 5.81657 2.31723 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56929 -0.01495 -1.00000 - 4459 2002 3 18 6 0 30 604 4.9194 175.82207 803.15939 752.51750 -0.50483 5.84093 2.33604 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56857 -0.01495 -1.00000 - 4461 2002 3 18 6 0 40 443 4.9195 175.81732 803.29144 752.61135 -0.50278 5.86160 2.35463 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56786 -0.01495 -1.00000 - 4463 2002 3 18 6 0 50 282 4.9196 175.81256 803.42522 752.70612 -0.50050 5.87860 2.37255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56714 -0.01495 -1.00000 - 4465 2002 3 18 6 1 0 121 4.9196 175.80780 803.56062 752.80176 -0.49795 5.89218 2.38982 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56642 -0.01495 -1.00000 - 4468 2002 3 18 6 1 14 881 4.9197 175.80066 803.76619 752.94717 -0.49374 5.90731 2.41467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56535 -0.01495 -1.00000 - 4470 2002 3 18 6 1 24 720 4.9198 175.79590 803.90455 753.04528 -0.49078 5.91498 2.43062 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56464 -0.01495 -1.00000 - 4472 2002 3 18 6 1 34 560 4.9199 175.79114 804.04350 753.14408 -0.48782 5.92158 2.44607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56392 -0.01495 -1.00000 - 4474 2002 3 18 6 1 44 400 4.9200 175.78638 804.18348 753.24347 -0.48490 5.92764 2.46125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56320 -0.01495 -1.00000 - 4476 2002 3 18 6 1 54 240 4.9200 175.78161 804.32382 753.34332 -0.48197 5.93339 2.47619 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56249 -0.01495 -1.00000 - 4478 2002 3 18 6 2 4 80 4.9201 175.77685 804.46435 753.44357 -0.47892 5.93881 2.49070 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56177 -0.01494 -1.00000 - 4480 2002 3 18 6 2 13 920 4.9202 175.77210 804.60549 753.54454 -0.47571 5.94381 2.50500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56106 -0.01494 -1.00000 - 4482 2002 3 18 6 2 23 761 4.9203 175.76735 804.74705 753.64631 -0.47237 5.94843 2.51923 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.56034 -0.01494 -1.00000 - 4484 2002 3 18 6 2 33 602 4.9203 175.76260 804.88871 753.74872 -0.47027 5.95304 2.53342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55963 -0.01494 -1.00000 - 4486 2002 3 18 6 2 43 442 4.9204 175.75785 805.03106 753.85164 -0.46817 5.95838 2.54773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55891 -0.01494 -1.00000 - 4488 2002 3 18 6 2 53 283 4.9205 175.75310 805.17335 753.95499 -0.46598 5.96548 2.56228 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55819 -0.01494 -1.00000 - 4490 2002 3 18 6 3 3 124 4.9206 175.74834 805.31624 754.05877 -0.46362 5.97550 2.57685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55748 -0.01494 -1.00000 - 4492 2002 3 18 6 3 12 966 4.9206 175.74359 805.45941 754.16319 -0.46101 5.98961 2.59165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55676 -0.01494 -1.00000 - 4494 2002 3 18 6 3 22 807 4.9207 175.73883 805.60272 754.26834 -0.45813 6.00876 2.60668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55605 -0.01494 -1.00000 - 4496 2002 3 18 6 3 32 649 4.9208 175.73408 805.74666 754.37415 -0.45497 6.03345 2.62193 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55533 -0.01494 -1.00000 - 4498 2002 3 18 6 3 42 490 4.9209 175.72932 805.89100 754.48054 -0.45150 6.06359 2.63753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55462 -0.01494 -1.00000 - 4500 2002 3 18 6 3 52 332 4.9209 175.72456 806.03635 754.58750 -0.44774 6.09885 2.65296 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55390 -0.01494 -1.00000 - 4502 2002 3 18 6 4 2 174 4.9210 175.71979 806.18209 754.69506 -0.44383 6.13860 2.66886 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55318 -0.01493 -1.00000 - 4504 2002 3 18 6 4 12 16 4.9211 175.71503 806.32861 754.80350 -0.43999 6.18181 2.68479 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55247 -0.01493 -1.00000 - 4506 2002 3 18 6 4 21 859 4.9212 175.71027 806.47706 754.91284 -0.43620 6.22756 2.70084 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55175 -0.01493 -1.00000 - 4508 2002 3 18 6 4 31 701 4.9212 175.70550 806.62569 755.02304 -0.43218 6.27524 2.71748 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55104 -0.01493 -1.00000 - 4510 2002 3 18 6 4 41 544 4.9213 175.70074 806.77534 755.13404 -0.42804 6.32450 2.73415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.55032 -0.01493 -1.00000 - 4512 2002 3 18 6 4 51 386 4.9214 175.69598 806.92756 755.24578 -0.42439 6.37551 2.75064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54961 -0.01493 -1.00000 - 4514 2002 3 18 6 5 1 229 4.9215 175.69122 807.07954 755.35819 -0.42153 6.42842 2.76752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54889 -0.01493 -1.00000 - 4516 2002 3 18 6 5 11 72 4.9215 175.68645 807.23379 755.47154 -0.41914 6.48148 2.78386 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54817 -0.01493 -1.00000 - 4518 2002 3 18 6 5 20 916 4.9216 175.68169 807.38988 755.58588 -0.41670 6.53441 2.79934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54746 -0.01493 -1.00000 - 4520 2002 3 18 6 5 30 759 4.9217 175.67693 807.54421 755.70112 -0.41393 6.58687 2.81375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54674 -0.01493 -1.00000 - 4522 2002 3 18 6 5 40 602 4.9218 175.67217 807.70334 755.81710 -0.41094 6.63619 2.82852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54603 -0.01493 -1.00000 - 4524 2002 3 18 6 5 50 446 4.9218 175.66742 807.86368 755.93392 -0.40804 6.68445 2.84221 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54531 -0.01493 -1.00000 - 4526 2002 3 18 6 6 0 290 4.9219 175.66266 808.02079 756.05142 -0.40545 6.72940 2.85545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54460 -0.01492 -1.00000 - 4528 2002 3 18 6 6 10 134 4.9220 175.65790 808.18564 756.16984 -0.40313 6.75641 2.86922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54388 -0.01492 -1.00000 - 4531 2002 3 18 6 6 24 900 4.9221 175.65076 808.42818 756.34920 -0.39974 6.79032 2.89043 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54281 -0.01492 -1.00000 - 4533 2002 3 18 6 6 34 744 4.9222 175.64599 808.59219 756.46958 -0.39740 6.81328 2.90475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54209 -0.01492 -1.00000 - 4535 2002 3 18 6 6 44 589 4.9223 175.64123 808.75621 756.59040 -0.39508 6.81110 2.92027 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54137 -0.01492 -1.00000 - 4537 2002 3 18 6 6 54 434 4.9223 175.63646 808.92198 756.71168 -0.39292 6.82235 2.93820 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.54066 -0.01492 -1.00000 - 4539 2002 3 18 6 7 4 278 4.9224 175.63169 809.08738 756.83310 -0.39099 6.82745 2.95634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53994 -0.01492 -1.00000 - 4541 2002 3 18 6 7 14 123 4.9225 175.62691 809.25302 756.95495 -0.38925 6.80629 2.97513 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53923 -0.01492 -1.00000 - 4543 2002 3 18 6 7 23 968 4.9226 175.62214 809.41819 757.07721 -0.38757 6.80006 2.99454 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53851 -0.01492 -1.00000 - 4545 2002 3 18 6 7 33 814 4.9226 175.61736 809.58364 757.19973 -0.38584 6.79427 3.01459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53779 -0.01492 -1.00000 - 4547 2002 3 18 6 7 43 659 4.9227 175.61258 809.74993 757.32240 -0.38404 6.78930 3.03514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53708 -0.01492 -1.00000 - 4549 2002 3 18 6 7 53 504 4.9228 175.60780 809.91555 757.44511 -0.38265 6.78610 3.05619 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53636 -0.01491 -1.00000 - 4551 2002 3 18 6 8 3 350 4.9229 175.60302 810.08146 757.56789 -0.38144 6.78522 3.07779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53565 -0.01491 -1.00000 - 4553 2002 3 18 6 8 13 196 4.9229 175.59824 810.24686 757.69088 -0.38015 6.78719 3.10004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53493 -0.01491 -1.00000 - 4555 2002 3 18 6 8 23 42 4.9230 175.59346 810.41295 757.81418 -0.37873 6.79308 3.12239 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53421 -0.01491 -1.00000 - 4557 2002 3 18 6 8 32 888 4.9231 175.58868 810.57900 757.93774 -0.37724 6.80481 3.14491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53350 -0.01491 -1.00000 - 4559 2002 3 18 6 8 42 734 4.9232 175.58390 810.74552 758.06147 -0.37568 6.82455 3.16690 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53278 -0.01491 -1.00000 - 4561 2002 3 18 6 8 52 581 4.9232 175.57913 810.91341 758.18547 -0.37405 6.85270 3.18738 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53207 -0.01491 -1.00000 - 4563 2002 3 18 6 9 2 427 4.9233 175.57435 811.07817 758.30970 -0.37235 6.86932 3.20821 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53135 -0.01491 -1.00000 - 4565 2002 3 18 6 9 12 274 4.9234 175.56958 811.24692 758.43438 -0.37055 6.91127 3.22969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.53063 -0.01491 -1.00000 - 4567 2002 3 18 6 9 22 121 4.9235 175.56481 811.41466 758.55960 -0.36867 6.96176 3.25261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52992 -0.01491 -1.00000 - 4569 2002 3 18 6 9 31 968 4.9235 175.56003 811.57825 758.68525 -0.36678 7.02180 3.27702 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52920 -0.01491 -1.00000 - 4571 2002 3 18 6 9 41 815 4.9236 175.55526 811.74932 758.81120 -0.36493 7.09176 3.30300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52849 -0.01491 -1.00000 - 4573 2002 3 18 6 9 51 662 4.9237 175.55048 811.91377 758.93740 -0.36313 7.17023 3.32991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52777 -0.01490 -1.00000 - 4575 2002 3 18 6 10 1 510 4.9238 175.54570 812.07850 759.06383 -0.36140 7.25616 3.35833 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52705 -0.01490 -1.00000 - 4577 2002 3 18 6 10 11 358 4.9238 175.54092 812.24561 759.19065 -0.35968 7.34863 3.38746 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52634 -0.01490 -1.00000 - 4579 2002 3 18 6 10 21 205 4.9239 175.53613 812.41212 759.31790 -0.35791 7.44663 3.41817 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52562 -0.01490 -1.00000 - 4581 2002 3 18 6 10 31 53 4.9240 175.53134 812.57846 759.44550 -0.35604 7.54881 3.45011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52490 -0.01490 -1.00000 - 4583 2002 3 18 6 10 40 901 4.9241 175.52655 812.74479 759.57324 -0.35405 7.65355 3.48228 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52419 -0.01490 -1.00000 - 4585 2002 3 18 6 10 50 750 4.9241 175.52175 812.91112 759.70117 -0.35196 7.77050 3.51413 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52347 -0.01490 -1.00000 - 4587 2002 3 18 6 11 0 598 4.9242 175.51696 813.07735 759.82926 -0.34983 7.88792 3.54541 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52276 -0.01490 -1.00000 - 4589 2002 3 18 6 11 10 446 4.9243 175.51216 813.24382 759.95780 -0.34764 8.00134 3.57610 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52204 -0.01490 -1.00000 - 4591 2002 3 18 6 11 20 295 4.9244 175.50736 813.41002 760.08690 -0.34533 8.10810 3.60585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52132 -0.01490 -1.00000 - 4593 2002 3 18 6 11 30 144 4.9244 175.50256 813.57700 760.21651 -0.34285 8.20709 3.63460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.52061 -0.01490 -1.00000 - 4596 2002 3 18 6 11 44 917 4.9245 175.49536 813.82862 760.41185 -0.33873 8.34159 3.67556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51953 -0.01489 -1.00000 - 4598 2002 3 18 6 11 54 767 4.9246 175.49056 813.99738 760.54266 -0.33574 8.42267 3.70109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51882 -0.01489 -1.00000 - 4600 2002 3 18 6 12 4 616 4.9247 175.48576 814.16749 760.67402 -0.33303 8.49739 3.72492 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51810 -0.01489 -1.00000 - 4602 2002 3 18 6 12 14 465 4.9248 175.48095 814.33690 760.80613 -0.33080 8.56604 3.74704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51738 -0.01489 -1.00000 - 4604 2002 3 18 6 12 24 315 4.9248 175.47615 814.50994 760.93917 -0.32868 8.62875 3.76692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51667 -0.01489 -1.00000 - 4606 2002 3 18 6 12 34 165 4.9249 175.47135 814.68388 761.07312 -0.32619 8.68627 3.78332 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51595 -0.01489 -1.00000 - 4608 2002 3 18 6 12 44 15 4.9250 175.46654 814.85561 761.20801 -0.32317 8.73501 3.79679 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51524 -0.01489 -1.00000 - 4610 2002 3 18 6 12 53 865 4.9251 175.46174 815.03472 761.34374 -0.31999 8.76395 3.80802 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51452 -0.01489 -1.00000 - 4612 2002 3 18 6 13 3 715 4.9251 175.45693 815.21215 761.48041 -0.31721 8.78014 3.81824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51380 -0.01489 -1.00000 - 4614 2002 3 18 6 13 13 566 4.9252 175.45213 815.38861 761.61814 -0.31517 8.79572 3.82704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51309 -0.01489 -1.00000 - 4616 2002 3 18 6 13 23 416 4.9253 175.44732 815.57086 761.75695 -0.31376 8.78724 3.83427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51237 -0.01489 -1.00000 - 4618 2002 3 18 6 13 33 267 4.9254 175.44251 815.75146 761.89668 -0.31265 8.77708 3.84210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51165 -0.01489 -1.00000 - 4620 2002 3 18 6 13 43 118 4.9254 175.43770 815.93446 762.03724 -0.31152 8.75715 3.84951 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51094 -0.01488 -1.00000 - 4622 2002 3 18 6 13 52 969 4.9255 175.43288 816.12202 762.17860 -0.31032 8.70688 3.85572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.51022 -0.01488 -1.00000 - 4624 2002 3 18 6 14 2 820 4.9256 175.42807 816.30246 762.32072 -0.30916 8.66986 3.86202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50950 -0.01488 -1.00000 - 4626 2002 3 18 6 14 12 671 4.9257 175.42326 816.48784 762.46370 -0.30819 8.62703 3.86812 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50879 -0.01488 -1.00000 - 4628 2002 3 18 6 14 22 522 4.9257 175.41844 816.67520 762.60760 -0.30737 8.55922 3.87469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50807 -0.01488 -1.00000 - 4630 2002 3 18 6 14 32 374 4.9258 175.41362 816.86498 762.75227 -0.30657 8.51118 3.88236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50736 -0.01488 -1.00000 - 4632 2002 3 18 6 14 42 226 4.9259 175.40880 817.05240 762.89738 -0.30562 8.46300 3.89049 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50664 -0.01488 -1.00000 - 4634 2002 3 18 6 14 52 78 4.9259 175.40398 817.24173 763.04303 -0.30441 8.39395 3.89857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50592 -0.01488 -1.00000 - 4636 2002 3 18 6 15 1 930 4.9260 175.39915 817.43364 763.18912 -0.30296 8.34817 3.90700 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50521 -0.01488 -1.00000 - 4638 2002 3 18 6 15 11 782 4.9261 175.39432 817.62230 763.33577 -0.30134 8.30491 3.91630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50449 -0.01488 -1.00000 - 4640 2002 3 18 6 15 21 634 4.9262 175.38949 817.81538 763.48296 -0.29964 8.25628 3.92721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50377 -0.01488 -1.00000 - 4642 2002 3 18 6 15 31 486 4.9262 175.38467 818.00966 763.63110 -0.29784 8.21641 3.93998 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50306 -0.01488 -1.00000 - 4644 2002 3 18 6 15 41 339 4.9263 175.37984 818.20263 763.78018 -0.29594 8.19860 3.95385 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50234 -0.01487 -1.00000 - 4646 2002 3 18 6 15 51 192 4.9264 175.37501 818.39960 763.93019 -0.29391 8.18686 3.96989 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50162 -0.01487 -1.00000 - 4648 2002 3 18 6 16 1 45 4.9265 175.37018 818.59804 764.08116 -0.29180 8.18748 3.98746 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50091 -0.01487 -1.00000 - 4650 2002 3 18 6 16 10 898 4.9265 175.36536 818.79908 764.23307 -0.28999 8.20442 4.00640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.50019 -0.01487 -1.00000 - 4652 2002 3 18 6 16 20 751 4.9266 175.36053 818.99828 764.38584 -0.28859 8.22911 4.02658 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49947 -0.01487 -1.00000 - 4654 2002 3 18 6 16 30 604 4.9267 175.35571 819.19962 764.53929 -0.28725 8.26038 4.04903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49876 -0.01487 -1.00000 - 4656 2002 3 18 6 16 40 458 4.9268 175.35088 819.40132 764.69316 -0.28596 8.30465 4.07370 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49804 -0.01487 -1.00000 - 4658 2002 3 18 6 16 50 311 4.9268 175.34605 819.60250 764.84729 -0.28468 8.36187 4.09981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49732 -0.01487 -1.00000 - 4660 2002 3 18 6 17 0 165 4.9269 175.34123 819.80440 765.00160 -0.28341 8.43078 4.12710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49661 -0.01487 -1.00000 - 4662 2002 3 18 6 17 10 19 4.9270 175.33640 820.00557 765.15623 -0.28213 8.50972 4.15559 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49589 -0.01487 -1.00000 - 4665 2002 3 18 6 17 24 800 4.9271 175.32915 820.30739 765.38881 -0.28021 8.64362 4.19999 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49482 -0.01487 -1.00000 - 4667 2002 3 18 6 17 34 655 4.9272 175.32431 820.50738 765.54408 -0.27890 8.74164 4.23096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49410 -0.01486 -1.00000 - 4669 2002 3 18 6 17 44 509 4.9272 175.31948 820.70817 765.69952 -0.27751 8.84742 4.26236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49338 -0.01486 -1.00000 - 4671 2002 3 18 6 17 54 364 4.9273 175.31464 820.90755 765.85508 -0.27599 8.96219 4.29356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49267 -0.01486 -1.00000 - 4673 2002 3 18 6 18 4 218 4.9274 175.30980 821.10665 766.01085 -0.27435 9.08130 4.32536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49195 -0.01486 -1.00000 - 4675 2002 3 18 6 18 14 73 4.9275 175.30496 821.30596 766.16703 -0.27263 9.20307 4.35745 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49123 -0.01486 -1.00000 - 4677 2002 3 18 6 18 23 928 4.9275 175.30011 821.50558 766.32377 -0.27091 9.32521 4.39061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.49052 -0.01486 -1.00000 - 4679 2002 3 18 6 18 33 783 4.9276 175.29527 821.70469 766.48091 -0.26918 9.44507 4.42466 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48980 -0.01486 -1.00000 - 4681 2002 3 18 6 18 43 639 4.9277 175.29042 821.90384 766.63842 -0.26737 9.56009 4.45847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48908 -0.01486 -1.00000 - 4683 2002 3 18 6 18 53 494 4.9278 175.28557 822.10289 766.79630 -0.26535 9.66851 4.49187 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48837 -0.01486 -1.00000 - 4685 2002 3 18 6 19 3 350 4.9278 175.28072 822.30204 766.95458 -0.26303 9.76966 4.52461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48765 -0.01486 -1.00000 - 4687 2002 3 18 6 19 13 206 4.9279 175.27587 822.50247 767.11353 -0.26044 9.86375 4.55628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48693 -0.01486 -1.00000 - 4689 2002 3 18 6 19 23 62 4.9280 175.27103 822.70271 767.27325 -0.25771 9.95152 4.58695 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48622 -0.01485 -1.00000 - 4691 2002 3 18 6 19 32 918 4.9280 175.26618 822.90703 767.43380 -0.25508 10.03399 4.61541 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48550 -0.01485 -1.00000 - 4693 2002 3 18 6 19 42 774 4.9281 175.26134 823.10778 767.59524 -0.25275 10.11296 4.64058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48478 -0.01485 -1.00000 - 4695 2002 3 18 6 19 52 630 4.9282 175.25649 823.31406 767.75766 -0.25064 10.18812 4.66297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48407 -0.01485 -1.00000 - 4697 2002 3 18 6 20 2 487 4.9283 175.25165 823.52208 767.92098 -0.24847 10.23189 4.68462 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48335 -0.01485 -1.00000 - 4699 2002 3 18 6 20 12 343 4.9283 175.24681 823.72793 768.08547 -0.24607 10.28370 4.70506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48263 -0.01485 -1.00000 - 4701 2002 3 18 6 20 22 200 4.9284 175.24197 823.93982 768.25107 -0.24355 10.34337 4.72391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48192 -0.01485 -1.00000 - 4703 2002 3 18 6 20 32 57 4.9285 175.23712 824.15038 768.41758 -0.24147 10.38451 4.74280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48120 -0.01485 -1.00000 - 4705 2002 3 18 6 20 41 914 4.9286 175.23228 824.36246 768.58498 -0.24035 10.43253 4.76178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.48048 -0.01485 -1.00000 - 4707 2002 3 18 6 20 51 771 4.9286 175.22743 824.57836 768.75319 -0.23990 10.46206 4.78009 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47976 -0.01485 -1.00000 - 4709 2002 3 18 6 21 1 629 4.9287 175.22258 824.79180 768.92216 -0.23941 10.48800 4.79584 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47905 -0.01485 -1.00000 - 4711 2002 3 18 6 21 11 486 4.9288 175.21773 825.01036 769.09206 -0.23842 10.52516 4.80986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47833 -0.01485 -1.00000 - 4713 2002 3 18 6 21 21 344 4.9288 175.21288 825.22955 769.26287 -0.23704 10.55099 4.82536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47761 -0.01484 -1.00000 - 4715 2002 3 18 6 21 31 202 4.9289 175.20802 825.44621 769.43462 -0.23575 10.54867 4.83813 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47690 -0.01484 -1.00000 - 4717 2002 3 18 6 21 41 60 4.9290 175.20316 825.66718 769.60696 -0.23486 10.56644 4.85162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47618 -0.01484 -1.00000 - 4719 2002 3 18 6 21 50 918 4.9291 175.19830 825.88861 769.77995 -0.23432 10.57976 4.86582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47546 -0.01484 -1.00000 - 4721 2002 3 18 6 22 0 776 4.9291 175.19344 826.10913 769.95341 -0.23381 10.56131 4.87943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47475 -0.01484 -1.00000 - 4723 2002 3 18 6 22 10 634 4.9292 175.18858 826.33277 770.12738 -0.23308 10.56065 4.89399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47403 -0.01484 -1.00000 - 4725 2002 3 18 6 22 20 493 4.9293 175.18372 826.55559 770.30198 -0.23211 10.55162 4.90754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47331 -0.01484 -1.00000 - 4727 2002 3 18 6 22 30 352 4.9294 175.17885 826.77808 770.47710 -0.23106 10.50724 4.92056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47260 -0.01484 -1.00000 - 4729 2002 3 18 6 22 40 210 4.9294 175.17398 827.00204 770.65261 -0.23006 10.47980 4.93401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47188 -0.01484 -1.00000 - 4731 2002 3 18 6 22 50 69 4.9295 175.16912 827.22766 770.82853 -0.22912 10.44930 4.94772 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47116 -0.01484 -1.00000 - 4734 2002 3 18 6 23 4 858 4.9296 175.16182 827.56504 771.09291 -0.22767 10.39934 4.96867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.47009 -0.01484 -1.00000 - 4736 2002 3 18 6 23 14 717 4.9297 175.15695 827.79175 771.26973 -0.22662 10.36579 4.98295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46937 -0.01483 -1.00000 - 4738 2002 3 18 6 23 24 577 4.9298 175.15208 828.01761 771.44703 -0.22554 10.33457 4.99773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46865 -0.01483 -1.00000 - 4740 2002 3 18 6 23 34 437 4.9298 175.14721 828.24463 771.62474 -0.22453 10.30808 5.01300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46794 -0.01483 -1.00000 - 4742 2002 3 18 6 23 44 296 4.9299 175.14235 828.47132 771.80270 -0.22362 10.28879 5.02826 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46722 -0.01483 -1.00000 - 4744 2002 3 18 6 23 54 156 4.9300 175.13748 828.69989 771.98100 -0.22278 10.28108 5.04355 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46650 -0.01483 -1.00000 - 4746 2002 3 18 6 24 4 16 4.9300 175.13262 828.92769 772.15958 -0.22199 10.28811 5.05770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46578 -0.01483 -1.00000 - 4748 2002 3 18 6 24 13 876 4.9301 175.12776 829.15555 772.33873 -0.22123 10.28964 5.07162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46507 -0.01483 -1.00000 - 4750 2002 3 18 6 24 23 737 4.9302 175.12289 829.38566 772.51851 -0.22052 10.30605 5.08477 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46435 -0.01483 -1.00000 - 4752 2002 3 18 6 24 33 597 4.9303 175.11803 829.61481 772.69889 -0.21986 10.33424 5.09808 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46363 -0.01483 -1.00000 - 4754 2002 3 18 6 24 43 458 4.9303 175.11316 829.84423 772.87972 -0.21922 10.35764 5.11258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46292 -0.01483 -1.00000 - 4756 2002 3 18 6 24 53 319 4.9304 175.10829 830.07473 773.06093 -0.21850 10.40768 5.12858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46220 -0.01483 -1.00000 - 4758 2002 3 18 6 25 3 180 4.9305 175.10342 830.30187 773.24262 -0.21763 10.45955 5.14536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46148 -0.01483 -1.00000 - 4760 2002 3 18 6 25 13 41 4.9305 175.09854 830.53517 773.42483 -0.21656 10.50194 5.16274 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46076 -0.01482 -1.00000 - 4762 2002 3 18 6 25 22 902 4.9306 175.09367 830.76556 773.60756 -0.21530 10.57102 5.18178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.46005 -0.01482 -1.00000 - 4764 2002 3 18 6 25 32 763 4.9307 175.08879 830.99283 773.79087 -0.21387 10.64497 5.20293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45933 -0.01482 -1.00000 - 4766 2002 3 18 6 25 42 625 4.9308 175.08390 831.22293 773.97458 -0.21228 10.72166 5.22439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45861 -0.01482 -1.00000 - 4768 2002 3 18 6 25 52 486 4.9308 175.07901 831.45325 774.15860 -0.21047 10.79978 5.24747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45790 -0.01482 -1.00000 - 4770 2002 3 18 6 26 2 348 4.9309 175.07413 831.68354 774.34298 -0.20838 10.87847 5.27241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45718 -0.01482 -1.00000 - 4772 2002 3 18 6 26 12 210 4.9310 175.06924 831.91418 774.52780 -0.20600 10.95699 5.29846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45646 -0.01482 -1.00000 - 4774 2002 3 18 6 26 22 72 4.9310 175.06435 832.14518 774.71312 -0.20355 11.03832 5.32431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45574 -0.01482 -1.00000 - 4776 2002 3 18 6 26 31 934 4.9311 175.05946 832.37637 774.89887 -0.20187 11.12075 5.35000 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45503 -0.01482 -1.00000 - 4778 2002 3 18 6 26 41 797 4.9312 175.05457 832.60800 775.08505 -0.20021 11.20083 5.37527 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45431 -0.01482 -1.00000 - 4780 2002 3 18 6 26 51 659 4.9313 175.04968 832.83971 775.27165 -0.19841 11.27781 5.40032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45359 -0.01482 -1.00000 - 4782 2002 3 18 6 27 1 522 4.9313 175.04478 833.07241 775.45868 -0.19637 11.35127 5.42506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45288 -0.01482 -1.00000 - 4784 2002 3 18 6 27 11 385 4.9314 175.03990 833.30589 775.64629 -0.19414 11.42129 5.44930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45216 -0.01481 -1.00000 - 4786 2002 3 18 6 27 21 247 4.9315 175.03501 833.53920 775.83459 -0.19192 11.48846 5.47281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45144 -0.01481 -1.00000 - 4788 2002 3 18 6 27 31 110 4.9315 175.03011 833.77351 776.02344 -0.18988 11.55356 5.49596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45072 -0.01481 -1.00000 - 4790 2002 3 18 6 27 40 974 4.9316 175.02522 834.00972 776.21284 -0.18807 11.61731 5.51804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.45001 -0.01481 -1.00000 - 4792 2002 3 18 6 27 50 837 4.9317 175.02034 834.24474 776.40272 -0.18641 11.68004 5.53853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44929 -0.01481 -1.00000 - 4794 2002 3 18 6 28 0 701 4.9318 175.01544 834.48346 776.59316 -0.18482 11.74133 5.55666 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44857 -0.01481 -1.00000 - 4796 2002 3 18 6 28 10 564 4.9318 175.01053 834.72126 776.78452 -0.18329 11.77702 5.57166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44785 -0.01481 -1.00000 - 4798 2002 3 18 6 28 20 428 4.9319 175.00565 834.96137 776.97687 -0.18187 11.82943 5.58466 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44714 -0.01481 -1.00000 - 4800 2002 3 18 6 28 30 292 4.9320 175.00076 835.20430 777.17012 -0.18069 11.85968 5.59588 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44642 -0.01481 -1.00000 - 4802 2002 3 18 6 28 40 156 4.9320 174.99584 835.44334 777.36414 -0.17976 11.88030 5.60638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44570 -0.01481 -1.00000 - 4804 2002 3 18 6 28 50 20 4.9321 174.99093 835.68951 777.55898 -0.17900 11.90971 5.61779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44499 -0.01481 -1.00000 - 4807 2002 3 18 6 29 4 817 4.9322 174.98360 836.05420 777.85242 -0.17804 11.91466 5.63391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44391 -0.01480 -1.00000 - 4809 2002 3 18 6 29 14 681 4.9323 174.97867 836.29999 778.04907 -0.17748 11.91277 5.64499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44319 -0.01480 -1.00000 - 4811 2002 3 18 6 29 24 546 4.9324 174.97375 836.54921 778.24673 -0.17692 11.89910 5.65529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44247 -0.01480 -1.00000 - 4813 2002 3 18 6 29 34 411 4.9324 174.96887 836.79510 778.44523 -0.17636 11.86398 5.66413 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44176 -0.01480 -1.00000 - 4815 2002 3 18 6 29 44 276 4.9325 174.96395 837.04799 778.64460 -0.17576 11.83976 5.67449 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44104 -0.01480 -1.00000 - 4817 2002 3 18 6 29 54 141 4.9326 174.95900 837.29775 778.84466 -0.17512 11.81453 5.68519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.44032 -0.01480 -1.00000 - 4819 2002 3 18 6 30 4 6 4.9326 174.95408 837.54728 779.04537 -0.17444 11.78996 5.69741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43961 -0.01480 -1.00000 - 4821 2002 3 18 6 30 13 871 4.9327 174.94921 837.80031 779.24673 -0.17371 11.76733 5.71023 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43889 -0.01480 -1.00000 - 4823 2002 3 18 6 30 23 737 4.9328 174.94428 838.05393 779.44873 -0.17291 11.74757 5.72517 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43817 -0.01480 -1.00000 - 4825 2002 3 18 6 30 33 602 4.9328 174.93932 838.30896 779.65163 -0.17204 11.73143 5.74233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43745 -0.01480 -1.00000 - 4827 2002 3 18 6 30 43 468 4.9329 174.93443 838.56574 779.85535 -0.17106 11.71977 5.76128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43674 -0.01480 -1.00000 - 4829 2002 3 18 6 30 53 334 4.9330 174.92954 838.82406 780.05981 -0.16999 11.71368 5.78087 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43602 -0.01480 -1.00000 - 4831 2002 3 18 6 31 3 200 4.9331 174.92459 839.08354 780.26488 -0.16916 11.71443 5.80142 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43530 -0.01479 -1.00000 - 4833 2002 3 18 6 31 13 66 4.9331 174.91965 839.34399 780.47063 -0.16884 11.72337 5.82275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43458 -0.01479 -1.00000 - 4835 2002 3 18 6 31 22 933 4.9332 174.91477 839.60504 780.67698 -0.16873 11.74191 5.84525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43387 -0.01479 -1.00000 - 4837 2002 3 18 6 31 32 799 4.9333 174.90985 839.86641 780.88374 -0.16838 11.77490 5.86866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43315 -0.01479 -1.00000 - 4839 2002 3 18 6 31 42 666 4.9333 174.90489 840.12779 781.09075 -0.16761 11.82002 5.89298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43243 -0.01479 -1.00000 - 4841 2002 3 18 6 31 52 533 4.9334 174.89998 840.38893 781.29793 -0.16665 11.87478 5.91813 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43171 -0.01479 -1.00000 - 4843 2002 3 18 6 32 2 400 4.9335 174.89508 840.64981 781.50518 -0.16579 11.93843 5.94400 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43100 -0.01479 -1.00000 - 4845 2002 3 18 6 32 12 267 4.9335 174.89013 840.91093 781.71259 -0.16514 12.01010 5.97033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.43028 -0.01479 -1.00000 - 4847 2002 3 18 6 32 22 134 4.9336 174.88518 841.17117 781.92030 -0.16454 12.08874 5.99732 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42956 -0.01479 -1.00000 - 4849 2002 3 18 6 32 32 1 4.9337 174.88028 841.43069 782.12809 -0.16379 12.17299 6.02474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42884 -0.01479 -1.00000 - 4851 2002 3 18 6 32 41 869 4.9337 174.87536 841.68999 782.33598 -0.16278 12.26105 6.05234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42813 -0.01479 -1.00000 - 4853 2002 3 18 6 32 51 736 4.9338 174.87041 841.94984 782.54395 -0.16160 12.35563 6.07977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42741 -0.01479 -1.00000 - 4855 2002 3 18 6 33 1 604 4.9339 174.86547 842.20797 782.75203 -0.16045 12.45784 6.10702 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42669 -0.01478 -1.00000 - 4857 2002 3 18 6 33 11 472 4.9340 174.86054 842.46543 782.96043 -0.15941 12.56001 6.13360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42597 -0.01478 -1.00000 - 4859 2002 3 18 6 33 21 340 4.9340 174.85560 842.72573 783.16942 -0.15843 12.65859 6.15913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42525 -0.01478 -1.00000 - 4861 2002 3 18 6 33 31 208 4.9341 174.85064 842.98230 783.37911 -0.15740 12.75040 6.18268 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42454 -0.01478 -1.00000 - 4863 2002 3 18 6 33 41 76 4.9342 174.84569 843.24282 783.58960 -0.15627 12.83356 6.20440 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42382 -0.01478 -1.00000 - 4865 2002 3 18 6 33 50 945 4.9342 174.84074 843.50397 783.80088 -0.15510 12.90227 6.22364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42310 -0.01478 -1.00000 - 4867 2002 3 18 6 34 0 813 4.9343 174.83576 843.76284 784.01308 -0.15401 12.92875 6.24184 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42238 -0.01478 -1.00000 - 4869 2002 3 18 6 34 10 682 4.9344 174.83080 844.02839 784.22622 -0.15303 12.97648 6.26057 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42167 -0.01478 -1.00000 - 4871 2002 3 18 6 34 20 551 4.9344 174.82585 844.29096 784.44037 -0.15211 13.02108 6.27939 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42095 -0.01478 -1.00000 - 4873 2002 3 18 6 34 30 420 4.9345 174.82086 844.55477 784.65558 -0.15119 13.03293 6.29705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.42023 -0.01478 -1.00000 - 4875 2002 3 18 6 34 40 289 4.9346 174.81585 844.82542 784.87178 -0.15026 13.07027 6.31426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41951 -0.01478 -1.00000 - 4877 2002 3 18 6 34 50 158 4.9347 174.81089 845.09087 785.08880 -0.14936 13.11077 6.33035 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41880 -0.01477 -1.00000 - 4879 2002 3 18 6 35 0 28 4.9347 174.80591 845.35857 785.30672 -0.14854 13.15112 6.34902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41808 -0.01477 -1.00000 - 4882 2002 3 18 6 35 14 832 4.9348 174.79830 845.76723 785.63518 -0.14736 13.21652 6.37685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41700 -0.01477 -1.00000 - 4884 2002 3 18 6 35 24 702 4.9349 174.79328 846.03693 785.85522 -0.14654 13.26472 6.39650 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41628 -0.01477 -1.00000 - 4886 2002 3 18 6 35 34 572 4.9350 174.78825 846.31051 786.07586 -0.14570 13.31697 6.41743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41557 -0.01477 -1.00000 - 4888 2002 3 18 6 35 44 442 4.9351 174.78310 846.58492 786.29708 -0.14484 13.37193 6.43825 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41485 -0.01477 -1.00000 - 4890 2002 3 18 6 35 54 312 4.9351 174.77795 846.85983 786.51872 -0.14394 13.42704 6.45927 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41413 -0.01477 -1.00000 - 4892 2002 3 18 6 36 4 182 4.9352 174.77285 847.13534 786.74065 -0.14298 13.47935 6.48036 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41341 -0.01477 -1.00000 - 4894 2002 3 18 6 36 14 53 4.9353 174.76764 847.41136 786.96298 -0.14194 13.52630 6.50048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41269 -0.01477 -1.00000 - 4896 2002 3 18 6 36 23 924 4.9354 174.76235 847.68771 787.18582 -0.14082 13.56628 6.51979 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41198 -0.01477 -1.00000 - 4898 2002 3 18 6 36 33 794 4.9354 174.75710 847.96445 787.40903 -0.13968 13.59882 6.53831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41126 -0.01477 -1.00000 - 4900 2002 3 18 6 36 43 665 4.9355 174.75179 848.24210 787.63252 -0.13858 13.62406 6.55590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.41054 -0.01476 -1.00000 - 4902 2002 3 18 6 36 53 536 4.9356 174.74640 848.51999 787.85635 -0.13764 13.64245 6.57277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40982 -0.01476 -1.00000 - 4904 2002 3 18 6 37 3 408 4.9356 174.74100 848.79878 788.08039 -0.13692 13.65450 6.58827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40911 -0.01476 -1.00000 - 4906 2002 3 18 6 37 13 279 4.9357 174.73555 849.07687 788.30494 -0.13613 13.66072 6.60297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40839 -0.01476 -1.00000 - 4908 2002 3 18 6 37 23 151 4.9358 174.73004 849.35715 788.52996 -0.13540 13.66156 6.61697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40767 -0.01476 -1.00000 - 4910 2002 3 18 6 37 33 22 4.9358 174.72451 849.63719 788.75541 -0.13474 13.65710 6.63013 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40695 -0.01476 -1.00000 - 4912 2002 3 18 6 37 42 894 4.9359 174.71893 849.91628 788.98127 -0.13407 13.64746 6.64187 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40623 -0.01476 -1.00000 - 4914 2002 3 18 6 37 52 766 4.9360 174.71328 850.20039 789.20761 -0.13337 13.63224 6.65277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40552 -0.01476 -1.00000 - 4916 2002 3 18 6 38 2 638 4.9361 174.70764 850.48029 789.43435 -0.13271 13.61054 6.66298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40480 -0.01476 -1.00000 - 4918 2002 3 18 6 38 12 510 4.9361 174.70199 850.76236 789.66166 -0.13203 13.58445 6.67323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40408 -0.01476 -1.00000 - 4920 2002 3 18 6 38 22 383 4.9362 174.69625 851.04908 789.88962 -0.13125 13.55071 6.68188 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40336 -0.01476 -1.00000 - 4922 2002 3 18 6 38 32 255 4.9363 174.69045 851.33053 790.11801 -0.13045 13.48668 6.69143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40264 -0.01476 -1.00000 - 4924 2002 3 18 6 38 42 128 4.9363 174.68473 851.61535 790.34700 -0.12974 13.46022 6.70247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40193 -0.01475 -1.00000 - 4926 2002 3 18 6 38 52 0 4.9364 174.67899 851.90205 790.57643 -0.12918 13.43934 6.71224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40121 -0.01475 -1.00000 - 4928 2002 3 18 6 39 1 873 4.9364 174.67312 852.18647 790.80622 -0.12873 13.42112 6.72187 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.40049 -0.01475 -1.00000 - 4930 2002 3 18 6 39 11 746 4.9365 174.66731 852.47080 791.03652 -0.12831 13.41987 6.73487 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39977 -0.01475 -1.00000 - 4932 2002 3 18 6 39 21 619 4.9366 174.66155 852.75536 791.26739 -0.12785 13.43887 6.74888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39905 -0.01475 -1.00000 - 4934 2002 3 18 6 39 31 493 4.9366 174.65570 853.04049 791.49851 -0.12739 13.46639 6.76541 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39834 -0.01475 -1.00000 - 4936 2002 3 18 6 39 41 366 4.9367 174.64981 853.32591 791.72989 -0.12706 13.50222 6.78389 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39762 -0.01475 -1.00000 - 4938 2002 3 18 6 39 51 240 4.9368 174.64401 853.61121 791.96145 -0.12693 13.54718 6.80273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39690 -0.01475 -1.00000 - 4940 2002 3 18 6 40 1 113 4.9368 174.63817 853.89622 792.19317 -0.12685 13.60146 6.82211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39618 -0.01475 -1.00000 - 4942 2002 3 18 6 40 10 987 4.9369 174.63232 854.18080 792.42512 -0.12649 13.66407 6.84156 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39546 -0.01475 -1.00000 - 4944 2002 3 18 6 40 20 861 4.9370 174.62650 854.46527 792.65752 -0.12560 13.73329 6.86082 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39475 -0.01475 -1.00000 - 4946 2002 3 18 6 40 30 735 4.9370 174.62068 854.75010 792.89030 -0.12428 13.80740 6.88009 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39403 -0.01475 -1.00000 - 4948 2002 3 18 6 40 40 609 4.9371 174.61487 855.03371 793.12338 -0.12287 13.88489 6.89874 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39331 -0.01474 -1.00000 - 4950 2002 3 18 6 40 50 484 4.9372 174.60904 855.31946 793.35686 -0.12152 13.96448 6.91760 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39259 -0.01474 -1.00000 - 4952 2002 3 18 6 41 0 358 4.9372 174.60325 855.60630 793.59078 -0.12004 14.04609 6.93538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39187 -0.01474 -1.00000 - 4954 2002 3 18 6 41 10 233 4.9373 174.59746 855.88843 793.82528 -0.11819 14.12297 6.94896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39116 -0.01474 -1.00000 - 4956 2002 3 18 6 41 20 107 4.9374 174.59167 856.17800 794.06085 -0.11596 14.19152 6.96259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.39044 -0.01474 -1.00000 - 4959 2002 3 18 6 41 34 920 4.9375 174.58304 856.61172 794.41570 -0.11238 14.26672 6.97809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38936 -0.01474 -1.00000 - 4961 2002 3 18 6 41 44 795 4.9375 174.57727 856.89775 794.65342 -0.11023 14.33618 6.98672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38864 -0.01474 -1.00000 - 4963 2002 3 18 6 41 54 670 4.9376 174.57150 857.19303 794.89193 -0.10864 14.39502 6.99615 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38792 -0.01474 -1.00000 - 4965 2002 3 18 6 42 4 545 4.9377 174.56580 857.48585 795.13135 -0.10777 14.43852 7.00640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38721 -0.01474 -1.00000 - 4967 2002 3 18 6 42 14 420 4.9377 174.56008 857.77629 795.37170 -0.10722 14.46818 7.01509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38649 -0.01474 -1.00000 - 4969 2002 3 18 6 42 24 296 4.9378 174.55434 858.07371 795.61314 -0.10646 14.48703 7.02502 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38577 -0.01474 -1.00000 - 4971 2002 3 18 6 42 34 172 4.9379 174.54861 858.37227 795.85559 -0.10549 14.49090 7.03478 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38505 -0.01473 -1.00000 - 4973 2002 3 18 6 42 44 48 4.9379 174.54292 858.66702 796.09877 -0.10466 14.48871 7.04442 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38433 -0.01473 -1.00000 - 4975 2002 3 18 6 42 53 923 4.9380 174.53722 858.96854 796.34260 -0.10446 14.48530 7.05686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38362 -0.01473 -1.00000 - 4977 2002 3 18 6 43 3 800 4.9380 174.53152 859.27062 796.58709 -0.10481 14.48069 7.06932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38290 -0.01473 -1.00000 - 4979 2002 3 18 6 43 13 676 4.9381 174.52585 859.56860 796.83211 -0.10510 14.47538 7.08088 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38218 -0.01473 -1.00000 - 4981 2002 3 18 6 43 23 552 4.9382 174.52020 859.87163 797.07793 -0.10493 14.46994 7.09325 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38146 -0.01473 -1.00000 - 4983 2002 3 18 6 43 33 429 4.9382 174.51452 860.17497 797.32428 -0.10442 14.46419 7.10654 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38074 -0.01473 -1.00000 - 4985 2002 3 18 6 43 43 305 4.9383 174.50886 860.47850 797.57101 -0.10396 14.45753 7.12087 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.38002 -0.01473 -1.00000 - 4987 2002 3 18 6 43 53 182 4.9384 174.50322 860.78282 797.81803 -0.10375 14.44978 7.13586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37931 -0.01473 -1.00000 - 4989 2002 3 18 6 44 3 59 4.9384 174.49757 861.08765 798.06528 -0.10368 14.44167 7.15096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37859 -0.01473 -1.00000 - 4991 2002 3 18 6 44 12 936 4.9385 174.49193 861.39288 798.31289 -0.10346 14.43480 7.16599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37787 -0.01473 -1.00000 - 4993 2002 3 18 6 44 22 813 4.9386 174.48630 861.69732 798.56090 -0.10291 14.43112 7.18064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37715 -0.01473 -1.00000 - 4995 2002 3 18 6 44 32 690 4.9386 174.48067 862.00341 798.80929 -0.10212 14.43225 7.19574 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37643 -0.01472 -1.00000 - 4997 2002 3 18 6 44 42 567 4.9387 174.47506 862.30960 799.05800 -0.10144 14.44241 7.21088 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37571 -0.01472 -1.00000 - 4999 2002 3 18 6 44 52 445 4.9388 174.46944 862.61503 799.30705 -0.10110 14.45693 7.22562 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37500 -0.01472 -1.00000 - 5001 2002 3 18 6 45 2 322 4.9388 174.46384 862.92530 799.55660 -0.10109 14.47271 7.23953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37428 -0.01472 -1.00000 - 5003 2002 3 18 6 45 12 200 4.9389 174.45828 863.23325 799.80663 -0.10111 14.48840 7.25179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37356 -0.01472 -1.00000 - 5005 2002 3 18 6 45 22 78 4.9390 174.45271 863.54069 800.05759 -0.10084 14.49846 7.26226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37284 -0.01472 -1.00000 - 5007 2002 3 18 6 45 31 956 4.9390 174.44712 863.85300 800.30949 -0.10022 14.50083 7.27238 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37212 -0.01472 -1.00000 - 5009 2002 3 18 6 45 41 834 4.9391 174.44156 864.16604 800.56234 -0.09942 14.51098 7.28391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37140 -0.01472 -1.00000 - 5011 2002 3 18 6 45 51 713 4.9392 174.43601 864.48024 800.81600 -0.09878 14.50706 7.29726 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.37069 -0.01472 -1.00000 - 5013 2002 3 18 6 46 1 591 4.9392 174.43047 864.79660 801.07038 -0.09846 14.52576 7.31268 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36997 -0.01472 -1.00000 - 5015 2002 3 18 6 46 11 469 4.9393 174.42495 865.11294 801.32558 -0.09835 14.54544 7.32728 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36925 -0.01472 -1.00000 - 5017 2002 3 18 6 46 21 348 4.9393 174.41944 865.42946 801.58148 -0.09811 14.56743 7.34305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36853 -0.01471 -1.00000 - 5019 2002 3 18 6 46 31 227 4.9394 174.41392 865.74881 801.83794 -0.09759 14.59322 7.36181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36781 -0.01471 -1.00000 - 5021 2002 3 18 6 46 41 106 4.9395 174.40838 866.06736 802.09454 -0.09693 14.62824 7.38251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36709 -0.01471 -1.00000 - 5023 2002 3 18 6 46 50 985 4.9395 174.40283 866.38528 802.35114 -0.09645 14.67263 7.40639 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36638 -0.01471 -1.00000 - 5025 2002 3 18 6 47 0 864 4.9396 174.39731 866.70273 802.60755 -0.09625 14.72569 7.43192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36566 -0.01471 -1.00000 - 5027 2002 3 18 6 47 10 743 4.9397 174.39182 867.01947 802.86387 -0.09604 14.78658 7.45791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36494 -0.01471 -1.00000 - 5029 2002 3 18 6 47 20 623 4.9397 174.38632 867.33517 803.12013 -0.09534 14.85454 7.48414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36422 -0.01471 -1.00000 - 5031 2002 3 18 6 47 30 502 4.9398 174.38081 867.64999 803.37631 -0.09394 14.92880 7.51061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36350 -0.01471 -1.00000 - 5033 2002 3 18 6 47 40 382 4.9398 174.37531 867.96344 803.63246 -0.09212 15.00849 7.53676 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36278 -0.01471 -1.00000 - 5035 2002 3 18 6 47 50 262 4.9399 174.36980 868.27575 803.88853 -0.09051 15.09254 7.56246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36206 -0.01471 -1.00000 - 5037 2002 3 18 6 48 0 142 4.9400 174.36428 868.58799 804.14474 -0.08953 15.17982 7.58737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36135 -0.01471 -1.00000 - 5039 2002 3 18 6 48 10 22 4.9400 174.35880 868.90190 804.40130 -0.08904 15.26727 7.61048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.36063 -0.01471 -1.00000 - 5042 2002 3 18 6 48 24 842 4.9401 174.35062 869.36871 804.78727 -0.08784 15.39204 7.64111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35955 -0.01470 -1.00000 - 5044 2002 3 18 6 48 34 722 4.9402 174.34514 869.68377 805.04536 -0.08612 15.47474 7.65943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35883 -0.01470 -1.00000 - 5046 2002 3 18 6 48 44 603 4.9403 174.33968 870.00004 805.30421 -0.08401 15.56031 7.67674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35811 -0.01470 -1.00000 - 5048 2002 3 18 6 48 54 483 4.9403 174.33422 870.31194 805.56379 -0.08230 15.61934 7.69166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35739 -0.01470 -1.00000 - 5050 2002 3 18 6 49 4 364 4.9404 174.32876 870.63098 805.82409 -0.08162 15.68431 7.70807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35668 -0.01470 -1.00000 - 5052 2002 3 18 6 49 14 245 4.9404 174.32332 870.95007 806.08531 -0.08182 15.73363 7.72315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35596 -0.01470 -1.00000 - 5054 2002 3 18 6 49 24 126 4.9405 174.31790 871.26546 806.34731 -0.08214 15.77329 7.73837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35524 -0.01470 -1.00000 - 5056 2002 3 18 6 49 34 7 4.9406 174.31249 871.58693 806.61030 -0.08184 15.80795 7.75481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35452 -0.01470 -1.00000 - 5058 2002 3 18 6 49 43 888 4.9406 174.30706 871.90920 806.87388 -0.08085 15.84017 7.77004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35380 -0.01470 -1.00000 - 5060 2002 3 18 6 49 53 770 4.9407 174.30163 872.23142 807.13791 -0.07979 15.86961 7.78758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35308 -0.01470 -1.00000 - 5062 2002 3 18 6 50 3 651 4.9407 174.29621 872.55456 807.40251 -0.07933 15.89823 7.80612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35236 -0.01470 -1.00000 - 5064 2002 3 18 6 50 13 533 4.9408 174.29079 872.87850 807.66752 -0.07959 15.92811 7.82427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35165 -0.01469 -1.00000 - 5066 2002 3 18 6 50 23 414 4.9409 174.28539 873.20303 807.93301 -0.08016 15.96061 7.84222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35093 -0.01469 -1.00000 - 5068 2002 3 18 6 50 33 296 4.9409 174.27998 873.52791 808.19889 -0.08039 15.99611 7.85964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.35021 -0.01469 -1.00000 - 5070 2002 3 18 6 50 43 178 4.9410 174.27458 873.85288 808.46500 -0.07984 16.03416 7.87627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34949 -0.01469 -1.00000 - 5072 2002 3 18 6 50 53 60 4.9411 174.26917 874.17820 808.73143 -0.07868 16.07369 7.89181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34877 -0.01469 -1.00000 - 5074 2002 3 18 6 51 2 942 4.9411 174.26375 874.50368 808.99810 -0.07752 16.11317 7.90654 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34805 -0.01469 -1.00000 - 5076 2002 3 18 6 51 12 825 4.9412 174.25835 874.82957 809.26521 -0.07679 16.15062 7.92014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34733 -0.01469 -1.00000 - 5078 2002 3 18 6 51 22 707 4.9412 174.25295 875.15596 809.53279 -0.07645 16.18376 7.93277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34662 -0.01469 -1.00000 - 5080 2002 3 18 6 51 32 590 4.9413 174.24756 875.48367 809.80084 -0.07610 16.20992 7.94419 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34590 -0.01469 -1.00000 - 5082 2002 3 18 6 51 42 472 4.9414 174.24218 875.81086 810.06932 -0.07531 16.22634 7.95360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34518 -0.01469 -1.00000 - 5084 2002 3 18 6 51 52 355 4.9414 174.23679 876.14313 810.33847 -0.07393 16.23174 7.96059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34446 -0.01469 -1.00000 - 5086 2002 3 18 6 52 2 238 4.9415 174.23140 876.47107 810.60826 -0.07290 16.22372 7.96599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34374 -0.01469 -1.00000 - 5088 2002 3 18 6 52 12 121 4.9415 174.22603 876.80209 810.87901 -0.07236 16.17710 7.96796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34302 -0.01468 -1.00000 - 5090 2002 3 18 6 52 22 4 4.9416 174.22066 877.13930 811.15076 -0.07159 16.11229 7.96723 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34230 -0.01468 -1.00000 - 5092 2002 3 18 6 52 31 888 4.9417 174.21530 877.47254 811.42348 -0.07063 16.05700 7.96863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34158 -0.01468 -1.00000 - 5094 2002 3 18 6 52 41 771 4.9417 174.20995 877.80954 811.69702 -0.06980 15.99948 7.96836 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34087 -0.01468 -1.00000 - 5096 2002 3 18 6 52 51 655 4.9418 174.20460 878.15194 811.97164 -0.06938 15.93776 7.96906 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.34015 -0.01468 -1.00000 - 5098 2002 3 18 6 53 1 538 4.9418 174.19924 878.48722 812.24706 -0.06926 15.87928 7.97124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33943 -0.01468 -1.00000 - 5100 2002 3 18 6 53 11 422 4.9419 174.19389 878.82751 812.52309 -0.06905 15.82952 7.97604 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33871 -0.01468 -1.00000 - 5102 2002 3 18 6 53 21 306 4.9420 174.18854 879.16942 812.79974 -0.06839 15.78887 7.98316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33799 -0.01468 -1.00000 - 5104 2002 3 18 6 53 31 190 4.9420 174.18320 879.51056 813.07669 -0.06734 15.76597 7.99294 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33727 -0.01468 -1.00000 - 5106 2002 3 18 6 53 41 74 4.9421 174.17786 879.85143 813.35377 -0.06633 15.76644 8.00581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33655 -0.01468 -1.00000 - 5108 2002 3 18 6 53 50 958 4.9421 174.17252 880.19191 813.63070 -0.06578 15.77968 8.01969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33583 -0.01468 -1.00000 - 5110 2002 3 18 6 54 0 843 4.9422 174.16718 880.53154 813.90749 -0.06568 15.80290 8.03399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33512 -0.01468 -1.00000 - 5112 2002 3 18 6 54 10 727 4.9423 174.16183 880.87033 814.18427 -0.06560 15.83347 8.04875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33440 -0.01467 -1.00000 - 5114 2002 3 18 6 54 20 612 4.9423 174.15649 881.20757 814.46115 -0.06510 15.86950 8.06351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33368 -0.01467 -1.00000 - 5116 2002 3 18 6 54 30 497 4.9424 174.15116 881.54461 814.73808 -0.06411 15.91040 8.07916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33296 -0.01467 -1.00000 - 5118 2002 3 18 6 54 40 382 4.9424 174.14583 881.88124 815.01512 -0.06304 15.95673 8.09472 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33224 -0.01467 -1.00000 - 5120 2002 3 18 6 54 50 267 4.9425 174.14050 882.21694 815.29236 -0.06236 16.00825 8.11048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33152 -0.01467 -1.00000 - 5122 2002 3 18 6 55 0 152 4.9426 174.13518 882.55288 815.56986 -0.06214 16.06377 8.12676 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33080 -0.01467 -1.00000 - 5124 2002 3 18 6 55 10 37 4.9426 174.12985 882.88956 815.84787 -0.06207 16.12212 8.14181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.33008 -0.01467 -1.00000 - 5127 2002 3 18 6 55 24 865 4.9427 174.12187 883.39643 816.26616 -0.06164 16.21898 8.16239 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32901 -0.01467 -1.00000 - 5129 2002 3 18 6 55 34 750 4.9428 174.11655 883.73465 816.54599 -0.06106 16.28602 8.17441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32829 -0.01467 -1.00000 - 5131 2002 3 18 6 55 44 636 4.9428 174.11123 884.07606 816.82656 -0.06027 16.32232 8.18633 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32757 -0.01467 -1.00000 - 5133 2002 3 18 6 55 54 522 4.9429 174.10593 884.41761 817.10793 -0.05929 16.37423 8.19935 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32685 -0.01467 -1.00000 - 5135 2002 3 18 6 56 4 408 4.9429 174.10062 884.75953 817.38996 -0.05824 16.41028 8.21242 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32613 -0.01466 -1.00000 - 5137 2002 3 18 6 56 14 294 4.9430 174.09532 885.10631 817.67285 -0.05734 16.39907 8.22482 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32541 -0.01466 -1.00000 - 5139 2002 3 18 6 56 24 180 4.9431 174.09001 885.45264 817.95656 -0.05666 16.43611 8.23945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32469 -0.01466 -1.00000 - 5141 2002 3 18 6 56 34 66 4.9431 174.08470 885.79627 818.24099 -0.05599 16.47953 8.25287 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32397 -0.01466 -1.00000 - 5143 2002 3 18 6 56 43 952 4.9432 174.07940 886.14627 818.52582 -0.05498 16.52449 8.26808 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32325 -0.01466 -1.00000 - 5145 2002 3 18 6 56 53 839 4.9432 174.07411 886.49531 818.81106 -0.05460 16.57209 8.28474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32253 -0.01466 -1.00000 - 5147 2002 3 18 6 57 3 725 4.9433 174.06883 886.84425 819.09645 -0.05500 16.62256 8.30296 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32182 -0.01466 -1.00000 - 5149 2002 3 18 6 57 13 612 4.9434 174.06355 887.19314 819.38201 -0.05440 16.67635 8.32312 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32110 -0.01466 -1.00000 - 5151 2002 3 18 6 57 23 499 4.9434 174.05826 887.54223 819.66758 -0.05203 16.73374 8.34454 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.32038 -0.01466 -1.00000 - 5153 2002 3 18 6 57 33 386 4.9435 174.05295 887.89103 819.95306 -0.05048 16.79435 8.36518 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31966 -0.01466 -1.00000 - 5155 2002 3 18 6 57 43 273 4.9435 174.04766 888.23875 820.23837 -0.05237 16.85692 8.38503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31894 -0.01466 -1.00000 - 5157 2002 3 18 6 57 53 160 4.9436 174.04240 888.58567 820.52357 -0.05203 16.91930 8.40330 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31822 -0.01466 -1.00000 - 5159 2002 3 18 6 58 3 47 4.9436 174.03714 888.93378 820.80876 -0.05411 16.97864 8.42031 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31750 -0.01465 -1.00000 - 5161 2002 3 18 6 58 12 934 4.9437 174.03184 889.28118 821.09416 -0.05320 17.03211 8.43508 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31678 -0.01465 -1.00000 - 5163 2002 3 18 6 58 22 822 4.9437 174.02655 889.62553 821.38001 -0.05010 17.03487 8.44519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31606 -0.01465 -1.00000 - 5165 2002 3 18 6 58 32 709 4.9438 174.02128 889.97579 821.66630 -0.04853 17.06716 8.45577 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31534 -0.01465 -1.00000 - 5167 2002 3 18 6 58 42 597 4.9439 174.01600 890.32292 821.95304 -0.05015 17.06282 8.46681 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31463 -0.01465 -1.00000 - 5169 2002 3 18 6 58 52 485 4.9439 174.01072 890.67166 822.24018 -0.05098 17.05807 8.47531 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31391 -0.01465 -1.00000 - 5171 2002 3 18 6 59 2 373 4.9440 174.00543 891.02375 822.52810 -0.05186 17.00336 8.48237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31319 -0.01465 -1.00000 - 5173 2002 3 18 6 59 12 261 4.9440 174.00011 891.37104 822.81669 -0.05191 16.99078 8.48900 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31247 -0.01465 -1.00000 - 5175 2002 3 18 6 59 22 149 4.9441 173.99483 891.72715 823.10623 -0.05117 16.96670 8.49356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31175 -0.01465 -1.00000 - 5177 2002 3 18 6 59 32 37 4.9442 173.98960 892.08054 823.39659 -0.05066 16.91281 8.49838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31103 -0.01465 -1.00000 - 5179 2002 3 18 6 59 41 926 4.9442 173.98435 892.43170 823.68771 -0.05023 16.86626 8.50405 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.31031 -0.01465 -1.00000 - 5181 2002 3 18 6 59 51 814 4.9443 173.97908 892.79002 823.97952 -0.05157 16.85453 8.50992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30959 -0.01464 -1.00000 - 5183 2002 3 18 7 0 1 703 4.9443 173.97383 893.14771 824.27187 -0.05190 16.84888 8.51733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30887 -0.01464 -1.00000 - 5185 2002 3 18 7 0 11 592 4.9444 173.96861 893.50119 824.56486 -0.05095 16.85010 8.52648 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30815 -0.01464 -1.00000 - 5187 2002 3 18 7 0 21 480 4.9444 173.96335 893.85982 824.85831 -0.05008 16.87296 8.53656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30743 -0.01464 -1.00000 - 5189 2002 3 18 7 0 31 369 4.9445 173.95812 894.21887 825.15220 -0.04948 16.91807 8.54867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30672 -0.01464 -1.00000 - 5191 2002 3 18 7 0 41 258 4.9445 173.95291 894.57805 825.44636 -0.04818 16.97470 8.56254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30600 -0.01464 -1.00000 - 5193 2002 3 18 7 0 51 148 4.9446 173.94769 894.93723 825.74055 -0.04641 17.03785 8.57872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30528 -0.01464 -1.00000 - 5195 2002 3 18 7 1 1 37 4.9447 173.94245 895.29644 826.03455 -0.04576 17.10389 8.59596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30456 -0.01464 -1.00000 - 5197 2002 3 18 7 1 10 926 4.9447 173.93719 895.65535 826.32846 -0.04664 17.17103 8.61238 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30384 -0.01464 -1.00000 - 5199 2002 3 18 7 1 20 816 4.9448 173.93197 896.01370 826.62232 -0.04802 17.24016 8.62791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30312 -0.01464 -1.00000 - 5201 2002 3 18 7 1 30 705 4.9448 173.92672 896.37028 826.91618 -0.04858 17.32634 8.64126 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30240 -0.01464 -1.00000 - 5203 2002 3 18 7 1 40 595 4.9449 173.92145 896.72742 827.21017 -0.04791 17.41012 8.65333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30168 -0.01464 -1.00000 - 5205 2002 3 18 7 1 50 485 4.9449 173.91622 897.08535 827.50439 -0.04659 17.48725 8.66330 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30096 -0.01463 -1.00000 - 5207 2002 3 18 7 2 0 375 4.9450 173.91101 897.44263 827.79894 -0.04548 17.50694 8.66964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.30024 -0.01463 -1.00000 - 5209 2002 3 18 7 2 10 265 4.9450 173.90574 897.80161 828.09405 -0.04518 17.53779 8.67495 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29952 -0.01463 -1.00000 - 5211 2002 3 18 7 2 20 155 4.9451 173.90046 898.16132 828.38976 -0.04533 17.57631 8.68084 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29880 -0.01463 -1.00000 - 5213 2002 3 18 7 2 30 45 4.9451 173.89526 898.52097 828.68599 -0.04479 17.59464 8.68504 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29809 -0.01463 -1.00000 - 5216 2002 3 18 7 2 44 881 4.9452 173.88745 899.05946 829.13152 -0.04156 17.58549 8.69086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29701 -0.01463 -1.00000 - 5218 2002 3 18 7 2 54 771 4.9453 173.88216 899.42140 829.42937 -0.03928 17.56470 8.69427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29629 -0.01463 -1.00000 - 5220 2002 3 18 7 3 4 662 4.9453 173.87693 899.78386 829.72777 -0.03811 17.53848 8.69847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29557 -0.01463 -1.00000 - 5222 2002 3 18 7 3 14 553 4.9454 173.87179 900.14708 830.02679 -0.03778 17.51076 8.70469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29485 -0.01463 -1.00000 - 5224 2002 3 18 7 3 24 444 4.9455 173.86661 900.51098 830.32650 -0.03769 17.48430 8.71306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29413 -0.01463 -1.00000 - 5226 2002 3 18 7 3 34 335 4.9455 173.86131 900.87613 830.62654 -0.03799 17.46056 8.72126 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29341 -0.01463 -1.00000 - 5228 2002 3 18 7 3 44 226 4.9456 173.85609 901.24163 830.92694 -0.03870 17.44032 8.72886 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29269 -0.01462 -1.00000 - 5230 2002 3 18 7 3 54 117 4.9456 173.85100 901.60599 831.22768 -0.03903 17.42426 8.73566 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29197 -0.01462 -1.00000 - 5232 2002 3 18 7 4 4 8 4.9457 173.84580 901.97260 831.52896 -0.03826 17.41335 8.73994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29125 -0.01462 -1.00000 - 5234 2002 3 18 7 4 13 900 4.9457 173.84050 902.34408 831.83100 -0.03722 17.40874 8.74141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.29053 -0.01462 -1.00000 - 5236 2002 3 18 7 4 23 791 4.9458 173.83529 902.71257 832.13388 -0.03732 17.40407 8.74086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28981 -0.01462 -1.00000 - 5238 2002 3 18 7 4 33 683 4.9458 173.83020 903.08039 832.43759 -0.03836 17.40192 8.74235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28909 -0.01462 -1.00000 - 5240 2002 3 18 7 4 43 575 4.9459 173.82504 903.45374 832.74193 -0.03871 17.40326 8.74390 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28837 -0.01462 -1.00000 - 5242 2002 3 18 7 4 53 467 4.9459 173.81971 903.82590 833.04675 -0.03779 17.40078 8.74569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28766 -0.01462 -1.00000 - 5244 2002 3 18 7 5 3 358 4.9460 173.81447 904.19542 833.35231 -0.03690 17.38049 8.74965 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28694 -0.01462 -1.00000 - 5246 2002 3 18 7 5 13 251 4.9460 173.80938 904.57111 833.65863 -0.03682 17.37840 8.75400 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28622 -0.01462 -1.00000 - 5248 2002 3 18 7 5 23 143 4.9461 173.80421 904.94768 833.96543 -0.03651 17.36869 8.76052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28550 -0.01462 -1.00000 - 5250 2002 3 18 7 5 33 35 4.9462 173.79890 905.32289 834.27263 -0.03516 17.36165 8.76689 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28478 -0.01462 -1.00000 - 5252 2002 3 18 7 5 42 927 4.9462 173.79372 905.69926 834.58020 -0.03394 17.35971 8.77548 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28406 -0.01461 -1.00000 - 5254 2002 3 18 7 5 52 820 4.9463 173.78860 906.07843 834.88788 -0.03408 17.37008 8.78465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28334 -0.01461 -1.00000 - 5256 2002 3 18 7 6 2 712 4.9463 173.78340 906.45508 835.19571 -0.03452 17.33197 8.79365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28262 -0.01461 -1.00000 - 5258 2002 3 18 7 6 12 605 4.9464 173.77818 906.83316 835.50400 -0.03355 17.33743 8.80259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28190 -0.01461 -1.00000 - 5260 2002 3 18 7 6 22 498 4.9464 173.77300 907.21504 835.81268 -0.03172 17.34028 8.81041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28118 -0.01461 -1.00000 - 5262 2002 3 18 7 6 32 391 4.9465 173.76785 907.59289 836.12165 -0.03093 17.33103 8.81705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.28046 -0.01461 -1.00000 - 5264 2002 3 18 7 6 42 284 4.9465 173.76269 907.96974 836.43117 -0.03068 17.31680 8.82470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27974 -0.01461 -1.00000 - 5266 2002 3 18 7 6 52 177 4.9466 173.75752 908.35061 836.74083 -0.03040 17.32932 8.83477 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27902 -0.01461 -1.00000 - 5268 2002 3 18 7 7 2 70 4.9466 173.75234 908.73211 837.05062 -0.03087 17.34546 8.84470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27830 -0.01461 -1.00000 - 5270 2002 3 18 7 7 11 964 4.9467 173.74711 909.10795 837.36076 -0.03089 17.36774 8.85668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27758 -0.01461 -1.00000 - 5272 2002 3 18 7 7 21 857 4.9467 173.74199 909.49072 837.67106 -0.02915 17.38887 8.87114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27686 -0.01461 -1.00000 - 5274 2002 3 18 7 7 31 751 4.9468 173.73684 909.87032 837.98148 -0.02780 17.40603 8.88637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27614 -0.01461 -1.00000 - 5276 2002 3 18 7 7 41 644 4.9468 173.73166 910.25052 838.29199 -0.02796 17.43442 8.90311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27543 -0.01460 -1.00000 - 5278 2002 3 18 7 7 51 538 4.9469 173.72642 910.63006 838.60264 -0.02841 17.46272 8.92229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27471 -0.01460 -1.00000 - 5280 2002 3 18 7 8 1 432 4.9469 173.72131 911.01073 838.91334 -0.02735 17.50477 8.94199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27399 -0.01460 -1.00000 - 5282 2002 3 18 7 8 11 326 4.9470 173.71619 911.38868 839.22407 -0.02573 17.55971 8.96202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27327 -0.01460 -1.00000 - 5284 2002 3 18 7 8 21 220 4.9471 173.71102 911.76646 839.53477 -0.02532 17.62015 8.98343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27255 -0.01460 -1.00000 - 5286 2002 3 18 7 8 31 114 4.9471 173.70581 912.14423 839.84516 -0.02552 17.68556 9.00550 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27183 -0.01460 -1.00000 - 5288 2002 3 18 7 8 41 8 4.9471 173.70069 912.51788 840.15521 -0.02468 17.75946 9.02662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27111 -0.01460 -1.00000 - 5290 2002 3 18 7 8 50 903 4.9472 173.69556 912.89415 840.46518 -0.02369 17.83323 9.04772 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.27039 -0.01460 -1.00000 - 5292 2002 3 18 7 9 0 797 4.9473 173.69039 913.27012 840.77499 -0.02403 17.89049 9.06733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26967 -0.01460 -1.00000 - 5294 2002 3 18 7 9 10 692 4.9473 173.68519 913.63883 841.08482 -0.02458 17.97129 9.08351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26895 -0.01460 -1.00000 - 5296 2002 3 18 7 9 20 586 4.9473 173.68004 914.01443 841.39509 -0.02357 18.00521 9.10109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26823 -0.01460 -1.00000 - 5298 2002 3 18 7 9 30 481 4.9474 173.67495 914.38754 841.70574 -0.02237 18.10182 9.11698 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26751 -0.01459 -1.00000 - 5300 2002 3 18 7 9 40 376 4.9475 173.66975 914.75797 842.01658 -0.02315 18.18543 9.13339 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26679 -0.01459 -1.00000 - 5302 2002 3 18 7 9 50 271 4.9475 173.66455 915.13085 842.32785 -0.02453 18.25717 9.15053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26607 -0.01459 -1.00000 - 5304 2002 3 18 7 10 0 166 4.9476 173.65944 915.50363 842.63944 -0.02364 18.29834 9.16922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26535 -0.01459 -1.00000 - 5306 2002 3 18 7 10 10 61 4.9476 173.65438 915.87718 842.95188 -0.02164 18.37208 9.18626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26463 -0.01459 -1.00000 - 5309 2002 3 18 7 10 24 904 4.9477 173.64658 916.44161 843.42158 -0.02385 18.42086 9.21083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26355 -0.01459 -1.00000 - 5311 2002 3 18 7 10 34 800 4.9478 173.64146 916.81855 843.73562 -0.02473 18.48218 9.22505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26283 -0.01459 -1.00000 - 5313 2002 3 18 7 10 44 695 4.9478 173.63641 917.19901 844.05022 -0.02146 18.54075 9.23870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26211 -0.01459 -1.00000 - 5315 2002 3 18 7 10 54 591 4.9478 173.63128 917.57877 844.36549 -0.02106 18.53544 9.25081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26139 -0.01459 -1.00000 - 5317 2002 3 18 7 11 4 487 4.9479 173.62609 917.96158 844.68140 -0.02003 18.58256 9.26065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.26067 -0.01459 -1.00000 - 5319 2002 3 18 7 11 14 383 4.9480 173.62099 918.34522 844.99782 -0.02202 18.58735 9.27121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25995 -0.01459 -1.00000 - 5321 2002 3 18 7 11 24 279 4.9480 173.61585 918.73118 845.31483 -0.01964 18.59446 9.28128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25923 -0.01458 -1.00000 - 5323 2002 3 18 7 11 34 175 4.9480 173.61076 919.11852 845.63212 -0.02061 18.62198 9.29043 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25852 -0.01458 -1.00000 - 5325 2002 3 18 7 11 44 71 4.9481 173.60564 919.50475 845.94969 -0.01840 18.58923 9.29710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25780 -0.01458 -1.00000 - 5327 2002 3 18 7 11 53 967 4.9482 173.60055 919.89377 846.26769 -0.01793 18.61085 9.30248 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25708 -0.01458 -1.00000 - 5329 2002 3 18 7 12 3 864 4.9482 173.59538 920.28665 846.58576 -0.01805 18.63076 9.30707 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25636 -0.01458 -1.00000 - 5331 2002 3 18 7 12 13 760 4.9482 173.59034 920.67138 846.90405 -0.01708 18.64349 9.31030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25564 -0.01458 -1.00000 - 5333 2002 3 18 7 12 23 657 4.9483 173.58522 921.05835 847.22257 -0.01698 18.65216 9.31459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25492 -0.01458 -1.00000 - 5335 2002 3 18 7 12 33 553 4.9484 173.58010 921.44701 847.54125 -0.01438 18.65707 9.31988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25420 -0.01458 -1.00000 - 5337 2002 3 18 7 12 43 450 4.9484 173.57492 921.83493 847.85993 -0.01408 18.65742 9.32583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25348 -0.01458 -1.00000 - 5339 2002 3 18 7 12 53 347 4.9484 173.56988 922.22222 848.17865 -0.01463 18.65270 9.33329 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25276 -0.01458 -1.00000 - 5341 2002 3 18 7 13 3 244 4.9485 173.56476 922.60938 848.49731 -0.01571 18.64170 9.34153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25204 -0.01458 -1.00000 - 5343 2002 3 18 7 13 13 141 4.9486 173.55962 922.99627 848.81593 -0.01499 18.62312 9.34882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25132 -0.01458 -1.00000 - 5345 2002 3 18 7 13 23 38 4.9486 173.55447 923.38244 849.13470 -0.01418 18.59631 9.35516 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.25060 -0.01457 -1.00000 - 5347 2002 3 18 7 13 32 935 4.9486 173.54942 923.76890 849.45359 -0.01408 18.56185 9.35997 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24988 -0.01457 -1.00000 - 5349 2002 3 18 7 13 42 833 4.9487 173.54432 924.15514 849.77276 -0.01385 18.52164 9.36304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24916 -0.01457 -1.00000 - 5351 2002 3 18 7 13 52 730 4.9488 173.53917 924.54447 850.09226 -0.01344 18.47942 9.36410 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24844 -0.01457 -1.00000 - 5353 2002 3 18 7 14 2 628 4.9488 173.53402 924.92851 850.41240 -0.01384 18.43527 9.36129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24772 -0.01457 -1.00000 - 5355 2002 3 18 7 14 12 526 4.9488 173.52897 925.32005 850.73315 -0.01536 18.35980 9.35853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24700 -0.01457 -1.00000 - 5357 2002 3 18 7 14 22 423 4.9489 173.52393 925.70994 851.05464 -0.01673 18.31044 9.35567 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24628 -0.01457 -1.00000 - 5359 2002 3 18 7 14 32 321 4.9490 173.51876 926.10009 851.37695 -0.01574 18.28702 9.35374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24556 -0.01457 -1.00000 - 5361 2002 3 18 7 14 42 219 4.9490 173.51367 926.49020 851.69974 -0.01285 18.26896 9.35532 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24484 -0.01457 -1.00000 - 5363 2002 3 18 7 14 52 117 4.9491 173.50860 926.88133 852.02300 -0.01196 18.27200 9.35671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24412 -0.01457 -1.00000 - 5365 2002 3 18 7 15 2 15 4.9491 173.50357 927.27307 852.34652 -0.01350 18.29637 9.36003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24340 -0.01457 -1.00000 - 5367 2002 3 18 7 15 11 914 4.9492 173.49843 927.66803 852.67068 -0.01657 18.32462 9.36438 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24268 -0.01457 -1.00000 - 5369 2002 3 18 7 15 21 812 4.9492 173.49334 928.05742 852.99480 -0.01676 18.35558 9.36754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24196 -0.01456 -1.00000 - 5371 2002 3 18 7 15 31 711 4.9493 173.48833 928.45105 853.31910 -0.01463 18.40152 9.36945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24124 -0.01456 -1.00000 - 5373 2002 3 18 7 15 41 609 4.9493 173.48325 928.84835 853.64356 -0.01242 18.44535 9.36877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.24052 -0.01456 -1.00000 - 5375 2002 3 18 7 15 51 508 4.9493 173.47813 929.23724 853.96773 -0.01073 18.48352 9.36705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23980 -0.01456 -1.00000 - 5377 2002 3 18 7 16 1 407 4.9494 173.47303 929.63189 854.29189 -0.01262 18.52974 9.36638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23908 -0.01456 -1.00000 - 5379 2002 3 18 7 16 11 305 4.9494 173.46801 930.02754 854.61623 -0.01428 18.52868 9.36277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23836 -0.01456 -1.00000 - 5381 2002 3 18 7 16 21 204 4.9495 173.46293 930.41964 854.94074 -0.01708 18.55702 9.35737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23764 -0.01456 -1.00000 - 5383 2002 3 18 7 16 31 103 4.9495 173.45778 930.81473 855.26527 -0.01522 18.61484 9.35401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23692 -0.01456 -1.00000 - 5385 2002 3 18 7 16 41 3 4.9496 173.45271 931.20627 855.58990 -0.01015 18.66067 9.35334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23620 -0.01456 -1.00000 - 5387 2002 3 18 7 16 50 902 4.9496 173.44763 931.59705 855.91451 -0.00734 18.68679 9.35193 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23548 -0.01456 -1.00000 - 5389 2002 3 18 7 17 0 801 4.9497 173.44254 931.99154 856.23925 -0.00876 18.69051 9.35115 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23476 -0.01456 -1.00000 - 5391 2002 3 18 7 17 10 701 4.9497 173.43747 932.38440 856.56433 -0.01136 18.67586 9.35136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23404 -0.01456 -1.00000 - 5393 2002 3 18 7 17 20 600 4.9498 173.43244 932.77657 856.88979 -0.01190 18.64778 9.35056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23332 -0.01455 -1.00000 - 5395 2002 3 18 7 17 30 500 4.9498 173.42739 933.17494 857.21565 -0.01065 18.61225 9.34883 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23260 -0.01455 -1.00000 - 5397 2002 3 18 7 17 40 400 4.9499 173.42229 933.56712 857.54176 -0.00832 18.57614 9.34784 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23188 -0.01455 -1.00000 - 5399 2002 3 18 7 17 50 300 4.9499 173.41723 933.96138 857.86835 -0.00628 18.53946 9.34606 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23116 -0.01455 -1.00000 - 5401 2002 3 18 7 18 0 199 4.9500 173.41218 934.36175 858.19527 -0.00621 18.50615 9.34147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.23044 -0.01455 -1.00000 - 5403 2002 3 18 7 18 10 100 4.9500 173.40711 934.75549 858.52269 -0.00754 18.47745 9.33796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22972 -0.01455 -1.00000 - 5405 2002 3 18 7 18 20 0 4.9501 173.40206 935.15349 858.85077 -0.00803 18.44103 9.33356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22900 -0.01455 -1.00000 - 5408 2002 3 18 7 18 34 850 4.9502 173.39450 935.75300 859.34396 -0.00658 18.36101 9.32700 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22792 -0.01455 -1.00000 - 5410 2002 3 18 7 18 44 750 4.9502 173.38945 936.15193 859.67347 -0.00621 18.33631 9.32246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22720 -0.01455 -1.00000 - 5412 2002 3 18 7 18 54 651 4.9503 173.38439 936.55050 860.00330 -0.00656 18.30663 9.32139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22648 -0.01455 -1.00000 - 5414 2002 3 18 7 19 4 552 4.9503 173.37936 936.95156 860.33354 -0.00675 18.28404 9.32138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22576 -0.01455 -1.00000 - 5416 2002 3 18 7 19 14 452 4.9504 173.37435 937.35453 860.66421 -0.00630 18.26663 9.32216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22504 -0.01454 -1.00000 - 5418 2002 3 18 7 19 24 353 4.9504 173.36929 937.75432 860.99499 -0.00555 18.24783 9.32599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22432 -0.01454 -1.00000 - 5420 2002 3 18 7 19 34 254 4.9504 173.36423 938.15518 861.32615 -0.00481 18.23560 9.32913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22360 -0.01454 -1.00000 - 5422 2002 3 18 7 19 44 155 4.9505 173.35920 938.56023 861.65761 -0.00442 18.22731 9.33227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22288 -0.01454 -1.00000 - 5424 2002 3 18 7 19 54 56 4.9505 173.35418 938.96067 861.98923 -0.00461 18.21823 9.33709 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22216 -0.01454 -1.00000 - 5426 2002 3 18 7 20 3 957 4.9505 173.34912 939.36076 862.32120 -0.00523 18.21730 9.34094 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22144 -0.01454 -1.00000 - 5428 2002 3 18 7 20 13 858 4.9506 173.34408 939.76870 862.65361 -0.00561 18.22142 9.34481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22072 -0.01454 -1.00000 - 5430 2002 3 18 7 20 23 759 4.9506 173.33910 940.16990 862.98635 -0.00525 18.18745 9.35031 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.22000 -0.01454 -1.00000 - 5432 2002 3 18 7 20 33 661 4.9507 173.33407 940.57352 863.31951 -0.00447 18.18035 9.35422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21928 -0.01454 -1.00000 - 5434 2002 3 18 7 20 43 562 4.9507 173.32900 940.98319 863.65322 -0.00391 18.21380 9.35947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21856 -0.01454 -1.00000 - 5436 2002 3 18 7 20 53 463 4.9507 173.32399 941.38590 863.98706 -0.00393 18.23250 9.36650 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21784 -0.01454 -1.00000 - 5438 2002 3 18 7 21 3 365 4.9508 173.31899 941.79104 864.32113 -0.00440 18.26227 9.37710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21712 -0.01453 -1.00000 - 5440 2002 3 18 7 21 13 266 4.9508 173.31396 942.19742 864.65540 -0.00497 18.29865 9.38947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21640 -0.01453 -1.00000 - 5442 2002 3 18 7 21 23 168 4.9508 173.30893 942.60368 864.98976 -0.00507 18.33529 9.40475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21568 -0.01453 -1.00000 - 5444 2002 3 18 7 21 33 70 4.9509 173.30395 943.00983 865.32464 -0.00447 18.37275 9.42367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21496 -0.01453 -1.00000 - 5446 2002 3 18 7 21 42 972 4.9509 173.29896 943.41609 865.65942 -0.00376 18.41241 9.44494 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21424 -0.01453 -1.00000 - 5448 2002 3 18 7 21 52 874 4.9509 173.29391 943.82244 865.99395 -0.00360 18.45566 9.46649 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21352 -0.01453 -1.00000 - 5450 2002 3 18 7 22 2 775 4.9510 173.28890 944.22831 866.32814 -0.00393 18.50341 9.48829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21280 -0.01453 -1.00000 - 5452 2002 3 18 7 22 12 677 4.9510 173.28391 944.63268 866.66205 -0.00399 18.55593 9.50925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21208 -0.01453 -1.00000 - 5454 2002 3 18 7 22 22 580 4.9511 173.27891 945.03752 866.99586 -0.00343 18.61303 9.52942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21136 -0.01453 -1.00000 - 5456 2002 3 18 7 22 32 482 4.9511 173.27389 945.44191 867.32938 -0.00244 18.67530 9.54825 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.21064 -0.01453 -1.00000 - 5458 2002 3 18 7 22 42 384 4.9511 173.26890 945.84507 867.66284 -0.00144 18.73644 9.56458 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20992 -0.01453 -1.00000 - 5460 2002 3 18 7 22 52 286 4.9512 173.26393 946.25110 867.99606 -0.00103 18.75953 9.58109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20920 -0.01453 -1.00000 - 5462 2002 3 18 7 23 2 189 4.9512 173.25892 946.65293 868.32919 -0.00108 18.79941 9.59651 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20848 -0.01452 -1.00000 - 5464 2002 3 18 7 23 12 91 4.9512 173.25390 947.05762 868.66249 -0.00079 18.84919 9.61291 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20776 -0.01452 -1.00000 - 5466 2002 3 18 7 23 21 994 4.9513 173.24891 947.45900 868.99563 0.00011 18.89879 9.63149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20704 -0.01452 -1.00000 - 5468 2002 3 18 7 23 31 896 4.9513 173.24393 947.85863 869.32865 0.00071 18.92821 9.64821 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20632 -0.01452 -1.00000 - 5470 2002 3 18 7 23 41 799 4.9514 173.23892 948.26381 869.66152 0.00038 18.96477 9.66665 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20560 -0.01452 -1.00000 - 5472 2002 3 18 7 23 51 702 4.9514 173.23392 948.66147 869.99426 -0.00010 18.99558 9.68644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20488 -0.01452 -1.00000 - 5474 2002 3 18 7 24 1 605 4.9514 173.22893 949.05957 870.32697 0.00038 19.02937 9.70351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20416 -0.01452 -1.00000 - 5476 2002 3 18 7 24 11 508 4.9515 173.22395 949.46574 870.65998 0.00172 19.06548 9.71748 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20344 -0.01452 -1.00000 - 5478 2002 3 18 7 24 21 411 4.9515 173.21894 949.86239 870.99310 0.00295 19.11496 9.73240 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20272 -0.01452 -1.00000 - 5480 2002 3 18 7 24 31 314 4.9515 173.21394 950.26206 871.32673 0.00371 19.12128 9.74545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20200 -0.01452 -1.00000 - 5482 2002 3 18 7 24 41 217 4.9516 173.20896 950.66581 871.66062 0.00428 19.15274 9.75708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20128 -0.01452 -1.00000 - 5484 2002 3 18 7 24 51 120 4.9516 173.20399 951.06879 871.99491 0.00483 19.20399 9.77011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.20056 -0.01452 -1.00000 - 5486 2002 3 18 7 25 1 23 4.9517 173.19899 951.46764 872.32937 0.00538 19.25512 9.78441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19984 -0.01451 -1.00000 - 5488 2002 3 18 7 25 10 927 4.9517 173.19400 951.87124 872.66401 0.00590 19.30563 9.79717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19912 -0.01451 -1.00000 - 5490 2002 3 18 7 25 20 830 4.9517 173.18904 952.27401 872.99872 0.00629 19.35689 9.81143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19840 -0.01451 -1.00000 - 5492 2002 3 18 7 25 30 734 4.9518 173.18407 952.67663 873.33358 0.00629 19.40735 9.82719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19768 -0.01451 -1.00000 - 5494 2002 3 18 7 25 40 637 4.9518 173.17909 953.07935 873.66835 0.00595 19.45702 9.84279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19696 -0.01451 -1.00000 - 5496 2002 3 18 7 25 50 541 4.9518 173.17411 953.48214 874.00290 0.00577 19.50726 9.85819 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19624 -0.01451 -1.00000 - 5498 2002 3 18 7 26 0 445 4.9519 173.16915 953.88452 874.33731 0.00601 19.55907 9.87321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19552 -0.01451 -1.00000 - 5500 2002 3 18 7 26 10 348 4.9519 173.16420 954.28644 874.67149 0.00624 19.61256 9.88678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19480 -0.01451 -1.00000 - 5502 2002 3 18 7 26 20 252 4.9520 173.15923 954.68654 875.00556 0.00603 19.66666 9.89787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19408 -0.01451 -1.00000 - 5504 2002 3 18 7 26 30 156 4.9520 173.15425 955.08769 875.33957 0.00559 19.71972 9.90634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19336 -0.01451 -1.00000 - 5506 2002 3 18 7 26 40 60 4.9520 173.14929 955.48776 875.67359 0.00530 19.77022 9.91201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19264 -0.01451 -1.00000 - 5509 2002 3 18 7 26 54 917 4.9521 173.14183 956.09107 876.17509 0.00511 19.78457 9.91206 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19156 -0.01450 -1.00000 - 5511 2002 3 18 7 27 4 821 4.9521 173.13687 956.48976 876.50983 0.00492 19.78013 9.90879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19084 -0.01450 -1.00000 - 5513 2002 3 18 7 27 14 725 4.9522 173.13190 956.89539 876.84531 0.00479 19.79488 9.90507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.19012 -0.01450 -1.00000 - 5515 2002 3 18 7 27 24 629 4.9522 173.12693 957.29638 877.18123 0.00469 19.79001 9.90222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18940 -0.01450 -1.00000 - 5517 2002 3 18 7 27 34 534 4.9522 173.12198 957.69808 877.51761 0.00437 19.76703 9.89812 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18868 -0.01450 -1.00000 - 5519 2002 3 18 7 27 44 438 4.9523 173.11703 958.10181 877.85438 0.00396 19.67066 9.89336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18796 -0.01450 -1.00000 - 5521 2002 3 18 7 27 54 343 4.9523 173.11209 958.51119 878.19169 0.00406 19.64288 9.88922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18724 -0.01450 -1.00000 - 5523 2002 3 18 7 28 4 248 4.9523 173.10715 958.91269 878.52942 0.00495 19.59440 9.88309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18651 -0.01450 -1.00000 - 5525 2002 3 18 7 28 14 152 4.9524 173.10223 959.31953 878.86782 0.00606 19.47813 9.87512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18579 -0.01450 -1.00000 - 5527 2002 3 18 7 28 24 57 4.9524 173.09731 959.73336 879.20700 0.00659 19.43003 9.86507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18507 -0.01450 -1.00000 - 5529 2002 3 18 7 28 33 962 4.9524 173.09238 960.13715 879.54676 0.00638 19.37679 9.85488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18435 -0.01450 -1.00000 - 5531 2002 3 18 7 28 43 867 4.9525 173.08745 960.54684 879.88717 0.00603 19.30050 9.84560 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18363 -0.01450 -1.00000 - 5533 2002 3 18 7 28 53 772 4.9525 173.08253 960.96085 880.22816 0.00604 19.25951 9.83420 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18291 -0.01449 -1.00000 - 5535 2002 3 18 7 29 3 677 4.9525 173.07760 961.37099 880.56979 0.00630 19.21592 9.82259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18219 -0.01449 -1.00000 - 5537 2002 3 18 7 29 13 582 4.9526 173.07267 961.78172 880.91191 0.00639 19.18577 9.81188 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18147 -0.01449 -1.00000 - 5539 2002 3 18 7 29 23 487 4.9526 173.06774 962.19888 881.25472 0.00625 19.11843 9.79913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18075 -0.01449 -1.00000 - 5541 2002 3 18 7 29 33 393 4.9527 173.06281 962.61176 881.59824 0.00623 19.11039 9.78603 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.18003 -0.01449 -1.00000 - 5543 2002 3 18 7 29 43 298 4.9527 173.05789 963.02644 881.94218 0.00662 19.07875 9.77270 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17931 -0.01449 -1.00000 - 5545 2002 3 18 7 29 53 203 4.9527 173.05297 963.44447 882.28689 0.00736 19.07336 9.76215 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17859 -0.01449 -1.00000 - 5547 2002 3 18 7 30 3 109 4.9528 173.04804 963.85652 882.63180 0.00818 19.07584 9.75237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17787 -0.01449 -1.00000 - 5549 2002 3 18 7 30 13 15 4.9528 173.04313 964.27410 882.97702 0.00884 19.08670 9.74217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17715 -0.01449 -1.00000 - 5551 2002 3 18 7 30 22 920 4.9528 173.03822 964.68822 883.32253 0.00932 19.09560 9.73401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17643 -0.01449 -1.00000 - 5553 2002 3 18 7 30 32 826 4.9529 173.03331 965.10411 883.66783 0.00971 19.09576 9.72692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17571 -0.01449 -1.00000 - 5555 2002 3 18 7 30 42 732 4.9529 173.02841 965.52067 884.01269 0.01015 19.08721 9.72138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17499 -0.01448 -1.00000 - 5557 2002 3 18 7 30 52 638 4.9529 173.02350 965.93702 884.35713 0.01062 19.07103 9.71702 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17427 -0.01448 -1.00000 - 5559 2002 3 18 7 31 2 543 4.9530 173.01859 966.35217 884.70122 0.01095 19.05041 9.71362 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17355 -0.01448 -1.00000 - 5561 2002 3 18 7 31 12 449 4.9530 173.01369 966.76872 885.04509 0.01102 19.02902 9.70941 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17283 -0.01448 -1.00000 - 5563 2002 3 18 7 31 22 355 4.9530 173.00880 967.18397 885.38889 0.01096 19.00961 9.70416 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17211 -0.01448 -1.00000 - 5565 2002 3 18 7 31 32 262 4.9531 173.00390 967.59830 885.73261 0.01102 18.99238 9.69931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17139 -0.01448 -1.00000 - 5567 2002 3 18 7 31 42 168 4.9531 172.99901 968.01261 886.07640 0.01134 18.97907 9.69413 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.17067 -0.01448 -1.00000 - 5569 2002 3 18 7 31 52 74 4.9531 172.99412 968.42714 886.42028 0.01174 18.96330 9.68587 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16995 -0.01448 -1.00000 - 5571 2002 3 18 7 32 1 980 4.9532 172.98923 968.84300 886.76465 0.01200 18.90972 9.67857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16923 -0.01448 -1.00000 - 5573 2002 3 18 7 32 11 887 4.9532 172.98435 969.25599 887.10947 0.01215 18.90017 9.67069 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16851 -0.01448 -1.00000 - 5575 2002 3 18 7 32 21 793 4.9532 172.97946 969.67669 887.45479 0.01234 18.87794 9.66410 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16779 -0.01448 -1.00000 - 5577 2002 3 18 7 32 31 700 4.9533 172.97459 970.09194 887.80057 0.01263 18.81228 9.65987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16707 -0.01448 -1.00000 - 5579 2002 3 18 7 32 41 606 4.9533 172.96971 970.50746 888.14674 0.01296 18.79094 9.65594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16634 -0.01447 -1.00000 - 5581 2002 3 18 7 32 51 513 4.9533 172.96483 970.93069 888.49345 0.01328 18.77133 9.65394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16562 -0.01447 -1.00000 - 5583 2002 3 18 7 33 1 420 4.9534 172.95995 971.34710 888.84027 0.01358 18.74814 9.65484 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16490 -0.01447 -1.00000 - 5585 2002 3 18 7 33 11 327 4.9534 172.95508 971.76498 889.18755 0.01379 18.73045 9.65456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16418 -0.01447 -1.00000 - 5587 2002 3 18 7 33 21 234 4.9534 172.95021 972.19200 889.53534 0.01388 18.71724 9.65290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16346 -0.01447 -1.00000 - 5589 2002 3 18 7 33 31 140 4.9535 172.94533 972.61120 889.88327 0.01397 18.68913 9.65365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16274 -0.01447 -1.00000 - 5591 2002 3 18 7 33 41 47 4.9535 172.94046 973.03222 890.23162 0.01425 18.65354 9.65344 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16202 -0.01447 -1.00000 - 5593 2002 3 18 7 33 50 955 4.9535 172.93560 973.45774 890.58008 0.01468 18.66227 9.65360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16130 -0.01447 -1.00000 - 5595 2002 3 18 7 34 0 862 4.9536 172.93073 973.88311 890.92893 0.01504 18.67380 9.65741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.16058 -0.01447 -1.00000 - 5597 2002 3 18 7 34 10 769 4.9536 172.92587 974.30340 891.27770 0.01520 18.69419 9.66392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15986 -0.01447 -1.00000 - 5599 2002 3 18 7 34 20 676 4.9536 172.92101 974.72829 891.62632 0.01527 18.71293 9.67146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15914 -0.01447 -1.00000 - 5601 2002 3 18 7 34 30 584 4.9537 172.91616 975.15207 891.97480 0.01546 18.73193 9.68193 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15842 -0.01447 -1.00000 - 5603 2002 3 18 7 34 40 491 4.9537 172.91131 975.57450 892.32311 0.01575 18.75160 9.69556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15770 -0.01446 -1.00000 - 5605 2002 3 18 7 34 50 398 4.9537 172.90647 975.99793 892.67107 0.01593 18.77362 9.70992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15698 -0.01446 -1.00000 - 5607 2002 3 18 7 35 0 306 4.9538 172.90162 976.42030 893.01896 0.01590 18.79999 9.72613 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15626 -0.01446 -1.00000 - 5609 2002 3 18 7 35 10 214 4.9538 172.89678 976.84078 893.36663 0.01573 18.83084 9.74295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15554 -0.01446 -1.00000 - 5611 2002 3 18 7 35 20 121 4.9538 172.89194 977.26009 893.71393 0.01558 18.86640 9.75847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15482 -0.01446 -1.00000 - 5613 2002 3 18 7 35 30 29 4.9539 172.88711 977.68284 894.06096 0.01552 18.90687 9.77346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15410 -0.01446 -1.00000 - 5616 2002 3 18 7 35 44 891 4.9539 172.87986 978.30784 894.58088 0.01563 18.92943 9.79356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15302 -0.01446 -1.00000 - 5618 2002 3 18 7 35 54 799 4.9540 172.87503 978.72960 894.92750 0.01578 18.94016 9.80484 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15230 -0.01446 -1.00000 - 5620 2002 3 18 7 36 4 707 4.9540 172.87020 979.15100 895.27394 0.01592 18.97929 9.81823 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15157 -0.01446 -1.00000 - 5622 2002 3 18 7 36 14 615 4.9540 172.86537 979.56473 895.62013 0.01600 18.98501 9.83033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15085 -0.01446 -1.00000 - 5624 2002 3 18 7 36 24 523 4.9541 172.86056 979.98542 895.96613 0.01606 19.03046 9.84539 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.15013 -0.01446 -1.00000 - 5626 2002 3 18 7 36 34 431 4.9541 172.85574 980.40235 896.31179 0.01612 19.07741 9.86350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14941 -0.01445 -1.00000 - 5628 2002 3 18 7 36 44 339 4.9541 172.85093 980.81326 896.65706 0.01610 19.10736 9.87944 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14869 -0.01445 -1.00000 - 5630 2002 3 18 7 36 54 247 4.9542 172.84611 981.23068 897.00211 0.01596 19.15641 9.89872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14797 -0.01445 -1.00000 - 5632 2002 3 18 7 37 4 156 4.9542 172.84130 981.64501 897.34680 0.01581 19.20483 9.91855 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14725 -0.01445 -1.00000 - 5634 2002 3 18 7 37 14 64 4.9542 172.83649 982.05212 897.69114 0.01593 19.26125 9.93474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14653 -0.01445 -1.00000 - 5636 2002 3 18 7 37 23 973 4.9543 172.83169 982.46568 898.03564 0.01650 19.32493 9.95216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14581 -0.01445 -1.00000 - 5638 2002 3 18 7 37 33 881 4.9543 172.82688 982.87830 898.37992 0.01727 19.38501 9.96828 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14509 -0.01445 -1.00000 - 5640 2002 3 18 7 37 43 790 4.9543 172.82208 983.28226 898.72404 0.01824 19.44312 9.98334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14437 -0.01445 -1.00000 - 5642 2002 3 18 7 37 53 699 4.9544 172.81729 983.69143 899.06833 0.01929 19.51837 9.99803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14365 -0.01445 -1.00000 - 5644 2002 3 18 7 38 3 607 4.9544 172.81249 984.10526 899.41281 0.02016 19.58658 10.01182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14293 -0.01445 -1.00000 - 5646 2002 3 18 7 38 13 516 4.9544 172.80770 984.50958 899.75733 0.02035 19.65632 10.02625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14221 -0.01445 -1.00000 - 5648 2002 3 18 7 38 23 425 4.9544 172.80291 984.91719 900.10202 0.02035 19.71566 10.03905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14149 -0.01444 -1.00000 - 5650 2002 3 18 7 38 33 334 4.9545 172.79813 985.33430 900.44721 0.02042 19.78080 10.04933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14077 -0.01444 -1.00000 - 5652 2002 3 18 7 38 43 243 4.9545 172.79335 985.74041 900.79267 0.02053 19.82048 10.05671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.14005 -0.01444 -1.00000 - 5654 2002 3 18 7 38 53 152 4.9545 172.78857 986.15288 901.13838 0.02066 19.86940 10.06341 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13933 -0.01444 -1.00000 - 5656 2002 3 18 7 39 3 61 4.9546 172.78379 986.56915 901.48455 0.02077 19.93551 10.06942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13860 -0.01444 -1.00000 - 5658 2002 3 18 7 39 12 970 4.9546 172.77901 986.97899 901.83099 0.02084 19.97523 10.07498 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13788 -0.01444 -1.00000 - 5660 2002 3 18 7 39 22 880 4.9546 172.77424 987.39336 902.17785 0.02083 19.96115 10.07739 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13716 -0.01444 -1.00000 - 5662 2002 3 18 7 39 32 789 4.9547 172.76946 987.80937 902.52500 0.02079 19.99429 10.08241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13644 -0.01444 -1.00000 - 5664 2002 3 18 7 39 42 698 4.9547 172.76469 988.22455 902.87240 0.02076 20.00543 10.08807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13572 -0.01444 -1.00000 - 5666 2002 3 18 7 39 52 608 4.9547 172.75993 988.64135 903.21974 0.02080 20.01336 10.09205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13500 -0.01444 -1.00000 - 5668 2002 3 18 7 40 2 517 4.9548 172.75516 989.05783 903.56712 0.02091 20.01694 10.09613 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13428 -0.01444 -1.00000 - 5670 2002 3 18 7 40 12 427 4.9548 172.75039 989.47287 903.91464 0.02107 20.01473 10.09903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13356 -0.01444 -1.00000 - 5672 2002 3 18 7 40 22 337 4.9548 172.74562 989.88853 904.26230 0.02116 20.00680 10.09829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13284 -0.01443 -1.00000 - 5674 2002 3 18 7 40 32 246 4.9549 172.74086 990.30704 904.61024 0.02109 19.99392 10.09647 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13212 -0.01443 -1.00000 - 5676 2002 3 18 7 40 42 156 4.9549 172.73610 990.72305 904.95840 0.02088 19.97072 10.09459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13140 -0.01443 -1.00000 - 5678 2002 3 18 7 40 52 66 4.9549 172.73137 991.13836 905.30691 0.02065 19.93455 10.09044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.13068 -0.01443 -1.00000 - 5680 2002 3 18 7 41 1 976 4.9550 172.72664 991.55870 905.65565 0.02053 19.88899 10.08656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12996 -0.01443 -1.00000 - 5682 2002 3 18 7 41 11 886 4.9550 172.72191 991.97827 906.00498 0.02058 19.78999 10.08159 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12924 -0.01443 -1.00000 - 5684 2002 3 18 7 41 21 796 4.9550 172.71719 992.39525 906.35477 0.02071 19.70521 10.07408 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12852 -0.01443 -1.00000 - 5686 2002 3 18 7 41 31 706 4.9551 172.71248 992.82215 906.70540 0.02077 19.64997 10.06529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12779 -0.01443 -1.00000 - 5688 2002 3 18 7 41 41 616 4.9551 172.70776 993.24182 907.05655 0.02071 19.54583 10.05535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12707 -0.01443 -1.00000 - 5690 2002 3 18 7 41 51 526 4.9551 172.70304 993.66561 907.40839 0.02070 19.49423 10.04447 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12635 -0.01443 -1.00000 - 5692 2002 3 18 7 42 1 437 4.9551 172.69832 994.09347 907.76090 0.02084 19.44056 10.03221 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12563 -0.01443 -1.00000 - 5694 2002 3 18 7 42 11 347 4.9552 172.69360 994.51422 908.11383 0.02103 19.38836 10.02152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12491 -0.01443 -1.00000 - 5696 2002 3 18 7 42 21 257 4.9552 172.68888 994.94127 908.46736 0.02117 19.34601 10.01438 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12419 -0.01442 -1.00000 - 5698 2002 3 18 7 42 31 168 4.9553 172.68417 995.36847 908.82120 0.02119 19.31951 10.00842 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12347 -0.01442 -1.00000 - 5700 2002 3 18 7 42 41 78 4.9553 172.67946 995.79534 909.17527 0.02114 19.30890 10.00425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12275 -0.01442 -1.00000 - 5702 2002 3 18 7 42 50 989 4.9553 172.67475 996.22219 909.52943 0.02111 19.30645 10.00285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12203 -0.01442 -1.00000 - 5704 2002 3 18 7 43 0 900 4.9553 172.67004 996.64896 909.88343 0.02117 19.31177 10.00165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12131 -0.01442 -1.00000 - 5706 2002 3 18 7 43 10 810 4.9554 172.66533 997.07486 910.23745 0.02136 19.32420 10.00012 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.12059 -0.01442 -1.00000 - 5708 2002 3 18 7 43 20 721 4.9554 172.66063 997.49964 910.59140 0.02147 19.34671 9.99780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11987 -0.01442 -1.00000 - 5710 2002 3 18 7 43 30 632 4.9554 172.65593 997.92440 910.94546 0.02133 19.37860 9.99432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11915 -0.01442 -1.00000 - 5712 2002 3 18 7 43 40 543 4.9555 172.65124 998.35348 911.29967 0.02115 19.40904 9.98763 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11843 -0.01442 -1.00000 - 5714 2002 3 18 7 43 50 454 4.9555 172.64656 998.77573 911.65417 0.02107 19.35908 9.97852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11770 -0.01442 -1.00000 - 5716 2002 3 18 7 44 0 365 4.9555 172.64187 999.20411 912.00930 0.02119 19.38040 9.97084 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11698 -0.01442 -1.00000 - 5718 2002 3 18 7 44 10 276 4.9556 172.63718 999.63479 912.36484 0.02138 19.34694 9.96212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11626 -0.01441 -1.00000 - 5720 2002 3 18 7 44 20 187 4.9556 172.63250 1000.05739 912.72065 0.02144 19.32361 9.95242 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11554 -0.01441 -1.00000 - 5722 2002 3 18 7 44 30 99 4.9556 172.62783 1000.49105 913.07723 0.02139 19.32495 9.94519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11482 -0.01441 -1.00000 - 5724 2002 3 18 7 44 40 10 4.9557 172.62317 1000.92028 913.43399 0.02123 19.31428 9.94112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11410 -0.01441 -1.00000 - 5727 2002 3 18 7 44 54 877 4.9557 172.61617 1001.56045 913.96956 0.02110 19.23395 9.93591 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11302 -0.01441 -1.00000 - 5729 2002 3 18 7 45 4 788 4.9557 172.61151 1001.99217 914.32695 0.02122 19.20866 9.93316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11230 -0.01441 -1.00000 - 5731 2002 3 18 7 45 14 700 4.9558 172.60686 1002.42275 914.68475 0.02143 19.18548 9.93199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11158 -0.01441 -1.00000 - 5733 2002 3 18 7 45 24 612 4.9558 172.60219 1002.85079 915.04245 0.02156 19.17636 9.93142 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11086 -0.01441 -1.00000 - 5735 2002 3 18 7 45 34 523 4.9558 172.59754 1003.28019 915.39976 0.02152 19.16045 9.92899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.11014 -0.01441 -1.00000 - 5737 2002 3 18 7 45 44 435 4.9559 172.59292 1003.71529 915.75696 0.02145 19.15054 9.92576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10942 -0.01441 -1.00000 - 5739 2002 3 18 7 45 54 347 4.9559 172.58826 1004.14056 916.11383 0.02127 19.13518 9.92283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10870 -0.01441 -1.00000 - 5741 2002 3 18 7 46 4 258 4.9559 172.58359 1004.57303 916.47047 0.02136 19.11468 9.91870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10797 -0.01441 -1.00000 - 5743 2002 3 18 7 46 14 170 4.9560 172.57893 1005.00513 916.82737 0.02185 19.12134 9.91584 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10725 -0.01440 -1.00000 - 5745 2002 3 18 7 46 24 82 4.9560 172.57431 1005.43373 917.18418 0.02207 19.09108 9.91305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10653 -0.01440 -1.00000 - 5747 2002 3 18 7 46 33 994 4.9560 172.56971 1005.86294 917.54088 0.02188 19.11448 9.91050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10581 -0.01440 -1.00000 - 5749 2002 3 18 7 46 43 906 4.9560 172.56502 1006.29704 917.89762 0.02143 19.13946 9.91030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10509 -0.01440 -1.00000 - 5751 2002 3 18 7 46 53 819 4.9561 172.56038 1006.72081 918.25419 0.02134 19.17501 9.91113 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10437 -0.01440 -1.00000 - 5753 2002 3 18 7 47 3 731 4.9561 172.55577 1007.15077 918.61061 0.02178 19.16675 9.91308 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10365 -0.01440 -1.00000 - 5755 2002 3 18 7 47 13 643 4.9561 172.55116 1007.58130 918.96697 0.02193 19.19177 9.91690 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10293 -0.01440 -1.00000 - 5757 2002 3 18 7 47 23 555 4.9562 172.54652 1008.00882 919.32334 0.02187 19.22809 9.92197 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10221 -0.01440 -1.00000 - 5759 2002 3 18 7 47 33 468 4.9562 172.54190 1008.43512 919.67957 0.02181 19.22546 9.92542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10149 -0.01440 -1.00000 - 5761 2002 3 18 7 47 43 380 4.9562 172.53733 1008.86779 920.03589 0.02159 19.22001 9.92699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10077 -0.01440 -1.00000 - 5763 2002 3 18 7 47 53 293 4.9563 172.53271 1009.29713 920.39251 0.02145 19.21999 9.92927 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.10005 -0.01440 -1.00000 - 5765 2002 3 18 7 48 3 205 4.9563 172.52807 1009.72271 920.74911 0.02168 19.22795 9.92977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09932 -0.01439 -1.00000 - 5767 2002 3 18 7 48 13 118 4.9563 172.52348 1010.15947 921.10621 0.02208 19.26431 9.92844 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09860 -0.01439 -1.00000 - 5769 2002 3 18 7 48 23 31 4.9564 172.51891 1010.58600 921.46344 0.02210 19.24074 9.92970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09788 -0.01439 -1.00000 - 5771 2002 3 18 7 48 32 943 4.9564 172.51429 1011.01621 921.82088 0.02175 19.23834 9.93284 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09716 -0.01439 -1.00000 - 5773 2002 3 18 7 48 42 856 4.9564 172.50969 1011.45492 922.17857 0.02165 19.26351 9.93471 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09644 -0.01439 -1.00000 - 5775 2002 3 18 7 48 52 769 4.9564 172.50512 1011.88333 922.53617 0.02179 19.22953 9.93857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09572 -0.01439 -1.00000 - 5777 2002 3 18 7 49 2 682 4.9565 172.50055 1012.31430 922.89367 0.02198 19.21892 9.94428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09500 -0.01439 -1.00000 - 5779 2002 3 18 7 49 12 595 4.9565 172.49593 1012.75224 923.25135 0.02214 19.23867 9.94905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09428 -0.01439 -1.00000 - 5781 2002 3 18 7 49 22 508 4.9566 172.49136 1013.18108 923.60918 0.02221 19.23145 9.95486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09356 -0.01439 -1.00000 - 5783 2002 3 18 7 49 32 421 4.9566 172.48681 1013.61183 923.96703 0.02202 19.18719 9.96047 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09284 -0.01439 -1.00000 - 5785 2002 3 18 7 49 42 335 4.9566 172.48222 1014.05061 924.32485 0.02180 19.18424 9.96346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09212 -0.01439 -1.00000 - 5787 2002 3 18 7 49 52 248 4.9566 172.47762 1014.48244 924.68274 0.02202 19.20005 9.96779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09139 -0.01439 -1.00000 - 5789 2002 3 18 7 50 2 161 4.9567 172.47306 1014.91243 925.04037 0.02242 19.20488 9.97433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.09067 -0.01438 -1.00000 - 5791 2002 3 18 7 50 12 75 4.9567 172.46853 1015.34474 925.39779 0.02235 19.21955 9.98292 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08995 -0.01438 -1.00000 - 5793 2002 3 18 7 50 21 988 4.9567 172.46395 1015.77400 925.75481 0.02203 19.24071 9.99321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08923 -0.01438 -1.00000 - 5795 2002 3 18 7 50 31 901 4.9568 172.45937 1016.20211 926.11142 0.02196 19.25893 10.00604 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08851 -0.01438 -1.00000 - 5797 2002 3 18 7 50 41 815 4.9568 172.45486 1016.62981 926.46752 0.02226 19.30593 10.01999 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08779 -0.01438 -1.00000 - 5799 2002 3 18 7 50 51 729 4.9568 172.45033 1017.05626 926.82314 0.02239 19.35165 10.03229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08707 -0.01438 -1.00000 - 5801 2002 3 18 7 51 1 642 4.9569 172.44575 1017.48009 927.17842 0.02224 19.40043 10.04464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08635 -0.01438 -1.00000 - 5803 2002 3 18 7 51 11 556 4.9569 172.44118 1017.90303 927.53348 0.02233 19.44966 10.05604 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08563 -0.01438 -1.00000 - 5805 2002 3 18 7 51 21 470 4.9569 172.43667 1018.32857 927.88853 0.02247 19.49471 10.06524 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08491 -0.01438 -1.00000 - 5807 2002 3 18 7 51 31 384 4.9569 172.43216 1018.75060 928.24346 0.02236 19.53884 10.07361 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08419 -0.01438 -1.00000 - 5809 2002 3 18 7 51 41 298 4.9570 172.42759 1019.16980 928.59851 0.02228 19.57131 10.08205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08346 -0.01438 -1.00000 - 5811 2002 3 18 7 51 51 212 4.9570 172.42306 1019.59525 928.95379 0.02238 19.60831 10.08947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08274 -0.01438 -1.00000 - 5813 2002 3 18 7 52 1 126 4.9570 172.41858 1020.01576 929.30906 0.02242 19.64611 10.09763 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08202 -0.01437 -1.00000 - 5815 2002 3 18 7 52 11 40 4.9571 172.41406 1020.43858 929.66450 0.02221 19.68577 10.10724 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08130 -0.01437 -1.00000 - 5817 2002 3 18 7 52 20 954 4.9571 172.40952 1020.86102 930.01999 0.02214 19.72734 10.11840 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.08058 -0.01437 -1.00000 - 5819 2002 3 18 7 52 30 868 4.9571 172.40503 1021.28396 930.37546 0.02232 19.76843 10.12956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07986 -0.01437 -1.00000 - 5821 2002 3 18 7 52 40 783 4.9572 172.40055 1021.70718 930.73093 0.02241 19.80801 10.14121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07914 -0.01437 -1.00000 - 5823 2002 3 18 7 52 50 697 4.9572 172.39603 1022.13055 931.08623 0.02249 19.84571 10.15190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07842 -0.01437 -1.00000 - 5825 2002 3 18 7 53 0 611 4.9572 172.39150 1022.55305 931.44149 0.02261 19.88191 10.16024 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07770 -0.01437 -1.00000 - 5827 2002 3 18 7 53 10 526 4.9573 172.38702 1022.97607 931.79680 0.02271 19.91721 10.16742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07698 -0.01437 -1.00000 - 5829 2002 3 18 7 53 20 440 4.9573 172.38254 1023.40008 932.15223 0.02263 19.94749 10.17256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07625 -0.01437 -1.00000 - 5831 2002 3 18 7 53 30 355 4.9573 172.37805 1023.82410 932.50786 0.02253 19.91902 10.17410 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07553 -0.01437 -1.00000 - 5833 2002 3 18 7 53 40 270 4.9573 172.37357 1024.25251 932.86387 0.02276 19.95223 10.17443 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07481 -0.01437 -1.00000 - 5835 2002 3 18 7 53 50 184 4.9574 172.36910 1024.67586 933.21996 0.02285 19.88477 10.17309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07409 -0.01436 -1.00000 - 5837 2002 3 18 7 54 0 99 4.9574 172.36459 1025.10782 933.57663 0.02283 19.89354 10.17032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07337 -0.01436 -1.00000 - 5839 2002 3 18 7 54 10 14 4.9574 172.36007 1025.53624 933.93358 0.02298 19.88823 10.16687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07265 -0.01436 -1.00000 - 5842 2002 3 18 7 54 24 886 4.9575 172.35339 1026.17717 934.46981 0.02332 19.82238 10.15854 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07157 -0.01436 -1.00000 - 5844 2002 3 18 7 54 34 802 4.9575 172.34890 1026.60922 934.82772 0.02318 19.79590 10.15243 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07085 -0.01436 -1.00000 - 5846 2002 3 18 7 54 44 717 4.9575 172.34441 1027.03742 935.18592 0.02286 19.68068 10.14530 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.07013 -0.01436 -1.00000 - 5848 2002 3 18 7 54 54 632 4.9576 172.33996 1027.47105 935.54473 0.02276 19.65895 10.13996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06940 -0.01436 -1.00000 - 5850 2002 3 18 7 55 4 547 4.9576 172.33553 1027.90384 935.90393 0.02279 19.57330 10.13291 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06868 -0.01436 -1.00000 - 5852 2002 3 18 7 55 14 462 4.9576 172.33108 1028.33710 936.26353 0.02288 19.51699 10.12464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06796 -0.01436 -1.00000 - 5854 2002 3 18 7 55 24 377 4.9577 172.32663 1028.77243 936.62388 0.02298 19.49470 10.11771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06724 -0.01436 -1.00000 - 5856 2002 3 18 7 55 34 293 4.9577 172.32222 1029.20501 936.98434 0.02292 19.42464 10.11055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06652 -0.01436 -1.00000 - 5858 2002 3 18 7 55 44 208 4.9577 172.31778 1029.64371 937.34544 0.02272 19.38264 10.10457 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06580 -0.01435 -1.00000 - 5860 2002 3 18 7 55 54 124 4.9577 172.31332 1030.07960 937.70684 0.02281 19.37794 10.09761 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06508 -0.01435 -1.00000 - 5862 2002 3 18 7 56 4 39 4.9578 172.30889 1030.51066 938.06844 0.02318 19.34266 10.09113 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06436 -0.01435 -1.00000 - 5864 2002 3 18 7 56 13 955 4.9578 172.30450 1030.94919 938.43061 0.02343 19.33871 10.08495 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06364 -0.01435 -1.00000 - 5866 2002 3 18 7 56 23 871 4.9578 172.30006 1031.38323 938.79285 0.02315 19.33927 10.08086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06291 -0.01435 -1.00000 - 5868 2002 3 18 7 56 33 786 4.9579 172.29561 1031.81821 939.15529 0.02282 19.33998 10.07938 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06219 -0.01435 -1.00000 - 5870 2002 3 18 7 56 43 702 4.9579 172.29120 1032.25375 939.51782 0.02298 19.34536 10.07928 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06147 -0.01435 -1.00000 - 5872 2002 3 18 7 56 53 618 4.9579 172.28684 1032.68900 939.88039 0.02338 19.35820 10.08028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06075 -0.01435 -1.00000 - 5874 2002 3 18 7 57 3 534 4.9580 172.28242 1033.12349 940.24291 0.02344 19.37946 10.08293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.06003 -0.01435 -1.00000 - 5876 2002 3 18 7 57 13 450 4.9580 172.27796 1033.55736 940.60531 0.02323 19.40835 10.08621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05931 -0.01435 -1.00000 - 5878 2002 3 18 7 57 23 366 4.9580 172.27355 1033.98922 940.96764 0.02325 19.44326 10.08810 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05859 -0.01435 -1.00000 - 5880 2002 3 18 7 57 33 282 4.9581 172.26915 1034.42139 941.32998 0.02374 19.48168 10.09003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05787 -0.01435 -1.00000 - 5882 2002 3 18 7 57 43 198 4.9581 172.26488 1034.85469 941.69228 0.02494 19.51721 10.09122 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05715 -0.01434 -1.00000 - 5884 2002 3 18 7 57 53 114 4.9582 172.26064 1035.28611 942.05460 0.02587 19.54236 10.09186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05642 -0.01434 -1.00000 - 5886 2002 3 18 7 58 3 31 4.9582 172.25606 1035.71868 942.41713 0.02492 19.55756 10.09189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05570 -0.01434 -1.00000 - 5888 2002 3 18 7 58 12 947 4.9582 172.25148 1036.15132 942.77991 0.02413 19.51143 10.09124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05498 -0.01434 -1.00000 - 5890 2002 3 18 7 58 22 864 4.9582 172.24703 1036.58641 943.14313 0.02418 19.49317 10.08949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05426 -0.01434 -1.00000 - 5892 2002 3 18 7 58 32 780 4.9583 172.24259 1037.02430 943.50710 0.02426 19.49719 10.08716 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05354 -0.01434 -1.00000 - 5894 2002 3 18 7 58 42 697 4.9583 172.23815 1037.45728 943.87133 0.02448 19.41823 10.08310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05282 -0.01434 -1.00000 - 5896 2002 3 18 7 58 52 613 4.9583 172.23374 1037.89733 944.23636 0.02450 19.41507 10.08143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05210 -0.01434 -1.00000 - 5898 2002 3 18 7 59 2 530 4.9583 172.22947 1038.33623 944.60177 0.02298 19.41623 10.07966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05138 -0.01434 -1.00000 - 5900 2002 3 18 7 59 12 447 4.9583 172.22527 1038.77461 944.96759 0.02169 19.34394 10.07734 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.05066 -0.01434 -1.00000 - 5902 2002 3 18 7 59 22 363 4.9584 172.22104 1039.21874 945.33438 0.02131 19.33836 10.07721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04993 -0.01434 -1.00000 - 5904 2002 3 18 7 59 32 280 4.9584 172.21674 1039.66344 945.70146 0.02174 19.34560 10.07778 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04921 -0.01434 -1.00000 - 5906 2002 3 18 7 59 42 197 4.9584 172.21243 1040.10801 946.06898 0.02149 19.32430 10.07735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04849 -0.01433 -1.00000 - 5908 2002 3 18 7 59 52 114 4.9585 172.20820 1040.55843 946.43689 0.02184 19.28214 10.07637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04777 -0.01433 -1.00000 - 5910 2002 3 18 8 0 2 31 4.9585 172.20394 1041.00892 946.80498 0.02214 19.26894 10.07538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04705 -0.01433 -1.00000 - 5912 2002 3 18 8 0 11 948 4.9585 172.19957 1041.46678 947.17323 0.02304 19.25963 10.07570 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04633 -0.01433 -1.00000 - 5914 2002 3 18 8 0 21 865 4.9586 172.19532 1041.92313 947.54099 0.02420 19.28580 10.07589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04561 -0.01433 -1.00000 - 5916 2002 3 18 8 0 31 782 4.9586 172.19101 1042.37304 947.90774 0.02483 19.25816 10.07521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04489 -0.01433 -1.00000 - 5918 2002 3 18 8 0 41 699 4.9586 172.18667 1042.82942 948.27365 0.02434 19.26006 10.07696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04417 -0.01433 -1.00000 - 5920 2002 3 18 8 0 51 617 4.9586 172.18227 1043.28023 948.63794 0.02429 19.29873 10.07744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04344 -0.01433 -1.00000 - 5922 2002 3 18 8 1 1 534 4.9587 172.17796 1043.72542 949.00071 0.02508 19.33207 10.07974 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04272 -0.01433 -1.00000 - 5924 2002 3 18 8 1 11 451 4.9587 172.17363 1044.16854 949.36194 0.02614 19.36384 10.08444 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04200 -0.01433 -1.00000 - 5926 2002 3 18 8 1 21 369 4.9588 172.16927 1044.60714 949.72164 0.02647 19.39581 10.08992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04128 -0.01433 -1.00000 - 5928 2002 3 18 8 1 31 287 4.9588 172.16497 1045.04035 950.07986 0.02553 19.42933 10.09722 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.04056 -0.01432 -1.00000 - 5930 2002 3 18 8 1 41 204 4.9588 172.16064 1045.46845 950.43662 0.02452 19.46523 10.10495 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03984 -0.01432 -1.00000 - 5932 2002 3 18 8 1 51 122 4.9588 172.15632 1045.89020 950.79213 0.02453 19.50418 10.11083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03912 -0.01432 -1.00000 - 5934 2002 3 18 8 2 1 40 4.9589 172.15201 1046.30935 951.14678 0.02514 19.54507 10.11507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03840 -0.01432 -1.00000 - 5936 2002 3 18 8 2 10 957 4.9589 172.14771 1046.72256 951.50108 0.02576 19.52742 10.11631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03767 -0.01432 -1.00000 - 5938 2002 3 18 8 2 20 875 4.9590 172.14348 1047.13477 951.85532 0.02511 19.54525 10.11549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03695 -0.01432 -1.00000 - 5940 2002 3 18 8 2 30 793 4.9590 172.13920 1047.54957 952.21030 0.02368 19.58732 10.11159 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03623 -0.01432 -1.00000 - 5942 2002 3 18 8 2 40 711 4.9590 172.13491 1047.95429 952.56532 0.02302 19.61495 10.10882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03551 -0.01432 -1.00000 - 5944 2002 3 18 8 2 50 629 4.9590 172.13069 1048.36375 952.92107 0.02361 19.63254 10.10858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03479 -0.01432 -1.00000 - 5946 2002 3 18 8 3 0 547 4.9590 172.12647 1048.77250 953.27745 0.02460 19.64843 10.10815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03407 -0.01432 -1.00000 - 5948 2002 3 18 8 3 10 465 4.9591 172.12229 1049.18118 953.63475 0.02445 19.66803 10.10903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03335 -0.01432 -1.00000 - 5950 2002 3 18 8 3 20 384 4.9591 172.11806 1049.59034 953.99299 0.02331 19.69739 10.11169 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03263 -0.01432 -1.00000 - 5952 2002 3 18 8 3 30 302 4.9591 172.11378 1050.00160 954.35199 0.02254 19.74032 10.11335 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03190 -0.01431 -1.00000 - 5954 2002 3 18 8 3 40 220 4.9591 172.10958 1050.41353 954.71197 0.02359 19.80124 10.11382 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03118 -0.01431 -1.00000 - 5956 2002 3 18 8 3 50 138 4.9592 172.10543 1050.82597 955.07290 0.02506 19.86915 10.11287 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.03046 -0.01431 -1.00000 - 5958 2002 3 18 8 4 0 57 4.9592 172.10134 1051.24208 955.43490 0.02537 19.94545 10.11021 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02974 -0.01431 -1.00000 - 5961 2002 3 18 8 4 14 935 4.9593 172.09479 1051.87585 955.98038 0.02416 19.99438 10.09844 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02866 -0.01431 -1.00000 - 5963 2002 3 18 8 4 24 853 4.9593 172.09062 1052.30287 956.34613 0.02404 20.07196 10.08942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02794 -0.01431 -1.00000 - 5965 2002 3 18 8 4 34 772 4.9593 172.08638 1052.72855 956.71320 0.02536 20.11950 10.07890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02722 -0.01431 -1.00000 - 5967 2002 3 18 8 4 44 691 4.9594 172.08227 1053.16632 957.08159 0.02663 20.14552 10.06705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02649 -0.01431 -1.00000 - 5969 2002 3 18 8 4 54 609 4.9594 172.07803 1053.60671 957.45105 0.02639 20.13264 10.05589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02577 -0.01431 -1.00000 - 5971 2002 3 18 8 5 4 528 4.9594 172.07371 1054.05355 957.82178 0.02514 20.07985 10.04545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02505 -0.01431 -1.00000 - 5973 2002 3 18 8 5 14 447 4.9594 172.06955 1054.50604 958.19360 0.02442 19.98671 10.03566 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02433 -0.01431 -1.00000 - 5975 2002 3 18 8 5 24 366 4.9595 172.06537 1054.96375 958.56648 0.02494 19.85306 10.02610 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02361 -0.01430 -1.00000 - 5977 2002 3 18 8 5 34 285 4.9595 172.06123 1055.42570 958.94023 0.02643 19.68436 10.01736 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02289 -0.01430 -1.00000 - 5979 2002 3 18 8 5 44 204 4.9596 172.05706 1055.89093 959.31466 0.02626 19.48983 10.00888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02217 -0.01430 -1.00000 - 5981 2002 3 18 8 5 54 123 4.9596 172.05276 1056.36156 959.68975 0.02523 19.27987 10.00027 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02144 -0.01430 -1.00000 - 5983 2002 3 18 8 6 4 43 4.9596 172.04860 1056.83589 960.06533 0.02417 19.06461 9.99256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02072 -0.01430 -1.00000 - 5985 2002 3 18 8 6 13 962 4.9596 172.04452 1057.31196 960.44131 0.02436 18.84993 9.98620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.02000 -0.01430 -1.00000 - 5987 2002 3 18 8 6 23 881 4.9597 172.04040 1057.78883 960.81760 0.02588 18.54305 9.97880 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01928 -0.01430 -1.00000 - 5989 2002 3 18 8 6 33 800 4.9597 172.03625 1058.27398 961.19433 0.02565 18.38174 9.97365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01856 -0.01430 -1.00000 - 5991 2002 3 18 8 6 43 720 4.9597 172.03206 1058.75388 961.57092 0.02526 18.26896 9.97008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01784 -0.01430 -1.00000 - 5993 2002 3 18 8 6 53 639 4.9597 172.02791 1059.23553 961.94701 0.02385 18.18460 9.97065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01712 -0.01430 -1.00000 - 5995 2002 3 18 8 7 3 559 4.9597 172.02383 1059.71528 962.32219 0.02406 18.14147 9.97508 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01640 -0.01430 -1.00000 - 5997 2002 3 18 8 7 13 478 4.9598 172.01975 1060.18995 962.69623 0.02572 18.12686 9.98320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01567 -0.01430 -1.00000 - 5999 2002 3 18 8 7 23 398 4.9599 172.01559 1060.66251 963.06872 0.02568 18.13139 9.99687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01495 -0.01429 -1.00000 - 6001 2002 3 18 8 7 33 318 4.9599 172.01144 1061.12988 963.43937 0.02585 18.17847 10.01285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01423 -0.01429 -1.00000 - 6003 2002 3 18 8 7 43 238 4.9599 172.00732 1061.59018 963.80803 0.02423 18.25083 10.03025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01351 -0.01429 -1.00000 - 6005 2002 3 18 8 7 53 157 4.9599 172.00327 1062.04312 964.17459 0.02421 18.34706 10.04851 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01279 -0.01429 -1.00000 - 6007 2002 3 18 8 8 3 77 4.9599 171.99924 1062.48968 964.53913 0.02601 18.46086 10.06705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01207 -0.01429 -1.00000 - 6009 2002 3 18 8 8 12 997 4.9600 171.99509 1062.92912 964.90174 0.02648 18.52848 10.08516 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01135 -0.01429 -1.00000 - 6011 2002 3 18 8 8 22 917 4.9600 171.99088 1063.36167 965.26291 0.02666 18.71469 10.10091 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.01062 -0.01429 -1.00000 - 6013 2002 3 18 8 8 32 837 4.9600 171.98678 1063.78847 965.62269 0.02522 18.87738 10.11818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00990 -0.01429 -1.00000 - 6015 2002 3 18 8 8 42 758 4.9601 171.98274 1064.21253 965.98153 0.02447 18.95497 10.13480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00918 -0.01429 -1.00000 - 6017 2002 3 18 8 8 52 678 4.9601 171.97869 1064.62305 966.33898 0.02602 19.18159 10.15011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00846 -0.01429 -1.00000 - 6019 2002 3 18 8 9 2 598 4.9602 171.97458 1065.03120 966.69561 0.02714 19.36302 10.16473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00774 -0.01429 -1.00000 - 6021 2002 3 18 8 9 12 518 4.9602 171.97040 1065.43784 967.05213 0.02722 19.52238 10.17811 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00702 -0.01428 -1.00000 - 6023 2002 3 18 8 9 22 439 4.9602 171.96631 1065.83638 967.40791 0.02560 19.68791 10.19258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00630 -0.01428 -1.00000 - 6025 2002 3 18 8 9 32 359 4.9602 171.96233 1066.23497 967.76353 0.02440 19.82718 10.20729 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00557 -0.01428 -1.00000 - 6027 2002 3 18 8 9 42 280 4.9602 171.95831 1066.63179 968.11916 0.02537 20.00888 10.22176 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00485 -0.01428 -1.00000 - 6029 2002 3 18 8 9 52 200 4.9603 171.95424 1067.02741 968.47502 0.02677 20.21070 10.23438 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00413 -0.01428 -1.00000 - 6031 2002 3 18 8 10 2 121 4.9603 171.95011 1067.42424 968.83131 0.02685 20.38746 10.24601 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00341 -0.01428 -1.00000 - 6033 2002 3 18 8 10 12 41 4.9604 171.94606 1067.82474 969.18829 0.02576 20.52805 10.25402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00269 -0.01428 -1.00000 - 6035 2002 3 18 8 10 21 962 4.9603 171.94208 1068.22830 969.54624 0.02443 20.62624 10.25895 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00197 -0.01428 -1.00000 - 6037 2002 3 18 8 10 31 883 4.9604 171.93810 1068.63659 969.90542 0.02515 20.63613 10.25972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00125 -0.01428 -1.00000 - 6039 2002 3 18 8 10 41 804 4.9604 171.93406 1069.04885 970.26589 0.02684 20.66722 10.25626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 1.00052 -0.01428 -1.00000 - 6041 2002 3 18 8 10 51 725 4.9605 171.92997 1069.47208 970.62802 0.02695 20.68374 10.25004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99980 -0.01428 -1.00000 - 6043 2002 3 18 8 11 1 646 4.9605 171.92593 1069.89818 970.99128 0.02621 20.67949 10.24112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99908 -0.01428 -1.00000 - 6045 2002 3 18 8 11 11 567 4.9605 171.92197 1070.32496 971.35556 0.02483 20.55371 10.22807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99836 -0.01427 -1.00000 - 6047 2002 3 18 8 11 21 488 4.9605 171.91803 1070.76190 971.72127 0.02534 20.54317 10.21583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99764 -0.01427 -1.00000 - 6049 2002 3 18 8 11 31 409 4.9606 171.91401 1071.20277 972.08774 0.02697 20.49612 10.20093 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99692 -0.01427 -1.00000 - 6051 2002 3 18 8 11 41 330 4.9606 171.90992 1071.64211 972.45478 0.02737 20.41333 10.18601 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99620 -0.01427 -1.00000 - 6053 2002 3 18 8 11 51 251 4.9607 171.90590 1072.08688 972.82255 0.02679 20.23889 10.16875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99547 -0.01427 -1.00000 - 6055 2002 3 18 8 12 1 173 4.9607 171.90198 1072.53594 973.19107 0.02541 20.09157 10.14892 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99475 -0.01427 -1.00000 - 6057 2002 3 18 8 12 11 94 4.9607 171.89808 1072.98781 973.56094 0.02554 19.93630 10.12800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99403 -0.01427 -1.00000 - 6059 2002 3 18 8 12 21 15 4.9607 171.89404 1073.44203 973.93164 0.02705 19.65922 10.10486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99331 -0.01427 -1.00000 - 6061 2002 3 18 8 12 30 937 4.9608 171.88998 1073.90430 974.30359 0.02745 19.48750 10.07932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99259 -0.01427 -1.00000 - 6063 2002 3 18 8 12 40 858 4.9608 171.88598 1074.36040 974.67674 0.02702 19.21477 10.05436 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99187 -0.01427 -1.00000 - 6065 2002 3 18 8 12 50 780 4.9608 171.88210 1074.82956 975.05103 0.02580 19.02290 10.03007 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99114 -0.01427 -1.00000 - 6067 2002 3 18 8 13 0 702 4.9608 171.87824 1075.29112 975.42618 0.02585 18.81379 10.00806 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.99042 -0.01427 -1.00000 - 6069 2002 3 18 8 13 10 623 4.9609 171.87422 1075.75668 975.80227 0.02704 18.57639 9.98933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98970 -0.01426 -1.00000 - 6071 2002 3 18 8 13 20 545 4.9609 171.87018 1076.22463 976.17921 0.02724 18.42835 9.97610 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98898 -0.01426 -1.00000 - 6073 2002 3 18 8 13 30 467 4.9609 171.86623 1076.69434 976.55659 0.02695 18.33541 9.96635 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98826 -0.01426 -1.00000 - 6075 2002 3 18 8 13 40 389 4.9610 171.86238 1077.16173 976.93402 0.02603 18.29996 9.96082 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98754 -0.01426 -1.00000 - 6077 2002 3 18 8 13 50 311 4.9610 171.85854 1077.62799 977.31133 0.02625 18.28862 9.95792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98682 -0.01426 -1.00000 - 6079 2002 3 18 8 14 0 233 4.9610 171.85454 1078.09167 977.68844 0.02724 18.29480 9.95676 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98609 -0.01426 -1.00000 - 6081 2002 3 18 8 14 10 155 4.9611 171.85054 1078.55380 978.06518 0.02724 18.32519 9.95775 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98537 -0.01426 -1.00000 - 6083 2002 3 18 8 14 20 77 4.9611 171.84662 1079.01459 978.44145 0.02684 18.39355 9.95986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98465 -0.01426 -1.00000 - 6086 2002 3 18 8 14 34 960 4.9611 171.84092 1079.70133 979.00468 0.02640 18.44516 9.96521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98357 -0.01426 -1.00000 - 6088 2002 3 18 8 14 44 883 4.9611 171.83700 1080.15421 979.37914 0.02724 18.59776 9.97068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98285 -0.01426 -1.00000 - 6090 2002 3 18 8 14 54 805 4.9612 171.83300 1080.60421 979.75273 0.02745 18.70675 9.97710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98213 -0.01426 -1.00000 - 6092 2002 3 18 8 15 4 727 4.9612 171.82906 1081.05178 980.12539 0.02736 18.78302 9.98422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98140 -0.01425 -1.00000 - 6094 2002 3 18 8 15 14 650 4.9612 171.82523 1081.49754 980.49717 0.02652 18.88541 9.99205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.98068 -0.01425 -1.00000 - 6096 2002 3 18 8 15 24 572 4.9613 171.82148 1081.93826 980.86807 0.02672 18.95431 9.99824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97996 -0.01425 -1.00000 - 6098 2002 3 18 8 15 34 495 4.9613 171.81757 1082.38463 981.23864 0.02770 19.00488 10.00359 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97924 -0.01425 -1.00000 - 6100 2002 3 18 8 15 44 418 4.9613 171.81358 1082.82180 981.60867 0.02770 19.05603 10.00691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97852 -0.01425 -1.00000 - 6102 2002 3 18 8 15 54 340 4.9614 171.80970 1083.26574 981.97815 0.02735 19.13439 10.00994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97780 -0.01425 -1.00000 - 6104 2002 3 18 8 16 4 263 4.9614 171.80591 1083.70781 982.34805 0.02655 19.21321 10.01251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97707 -0.01425 -1.00000 - 6106 2002 3 18 8 16 14 186 4.9614 171.80218 1084.14521 982.71755 0.02695 19.14959 10.01442 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97635 -0.01425 -1.00000 - 6108 2002 3 18 8 16 24 109 4.9614 171.79826 1084.58907 983.08752 0.02798 19.20353 10.01973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97563 -0.01425 -1.00000 - 6110 2002 3 18 8 16 34 32 4.9615 171.79431 1085.03090 983.45742 0.02786 19.22292 10.02483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97491 -0.01425 -1.00000 - 6112 2002 3 18 8 16 43 955 4.9615 171.79047 1085.47185 983.82728 0.02727 19.22352 10.03253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97419 -0.01425 -1.00000 - 6114 2002 3 18 8 16 53 878 4.9615 171.78674 1085.91164 984.19714 0.02655 19.16416 10.04005 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97347 -0.01425 -1.00000 - 6116 2002 3 18 8 17 3 801 4.9615 171.78301 1086.35401 984.56721 0.02717 19.17858 10.04737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97274 -0.01424 -1.00000 - 6118 2002 3 18 8 17 13 724 4.9616 171.77909 1086.79867 984.93743 0.02799 19.19190 10.05550 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97202 -0.01424 -1.00000 - 6120 2002 3 18 8 17 23 647 4.9616 171.77520 1087.24099 985.30744 0.02802 19.22780 10.06368 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97130 -0.01424 -1.00000 - 6122 2002 3 18 8 17 33 571 4.9617 171.77141 1087.67884 985.67725 0.02717 19.24002 10.07149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.97058 -0.01424 -1.00000 - 6124 2002 3 18 8 17 43 494 4.9617 171.76773 1088.12639 986.04700 0.02660 19.29988 10.08063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96986 -0.01424 -1.00000 - 6126 2002 3 18 8 17 53 417 4.9617 171.76398 1088.56501 986.41662 0.02747 19.29838 10.08956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96914 -0.01424 -1.00000 - 6128 2002 3 18 8 18 3 341 4.9617 171.76008 1089.00485 986.78584 0.02818 19.36075 10.09688 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96841 -0.01424 -1.00000 - 6130 2002 3 18 8 18 13 264 4.9618 171.75624 1089.44915 987.15530 0.02830 19.41146 10.10368 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96769 -0.01424 -1.00000 - 6132 2002 3 18 8 18 23 188 4.9618 171.75249 1089.88880 987.52430 0.02718 19.48111 10.11205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96697 -0.01424 -1.00000 - 6134 2002 3 18 8 18 33 111 4.9618 171.74885 1090.32803 987.89294 0.02687 19.54495 10.12120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96625 -0.01424 -1.00000 - 6136 2002 3 18 8 18 43 35 4.9618 171.74509 1090.76898 988.26118 0.02793 19.60117 10.12922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96553 -0.01424 -1.00000 - 6138 2002 3 18 8 18 52 959 4.9619 171.74122 1091.20561 988.62906 0.02854 19.64853 10.13741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96481 -0.01423 -1.00000 - 6140 2002 3 18 8 19 2 883 4.9619 171.73741 1091.64459 988.99658 0.02863 19.68682 10.14511 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96408 -0.01423 -1.00000 - 6142 2002 3 18 8 19 12 807 4.9619 171.73369 1092.08571 989.36398 0.02733 19.71016 10.15064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96336 -0.01423 -1.00000 - 6144 2002 3 18 8 19 22 731 4.9620 171.73008 1092.52089 989.73121 0.02726 19.72247 10.15575 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96264 -0.01423 -1.00000 - 6146 2002 3 18 8 19 32 654 4.9620 171.72633 1092.96087 990.09829 0.02840 19.72514 10.16063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96192 -0.01423 -1.00000 - 6148 2002 3 18 8 19 42 579 4.9620 171.72247 1093.40033 990.46540 0.02881 19.71542 10.16435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96120 -0.01423 -1.00000 - 6150 2002 3 18 8 19 52 503 4.9621 171.71870 1093.83738 990.83247 0.02863 19.69723 10.16663 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.96048 -0.01423 -1.00000 - 6152 2002 3 18 8 20 2 427 4.9621 171.71503 1094.27744 991.19954 0.02739 19.67125 10.16884 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95975 -0.01423 -1.00000 - 6154 2002 3 18 8 20 12 351 4.9621 171.71146 1094.71821 991.56683 0.02747 19.64035 10.16989 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95903 -0.01423 -1.00000 - 6156 2002 3 18 8 20 22 275 4.9621 171.70768 1095.15723 991.93424 0.02874 19.60456 10.17030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95831 -0.01423 -1.00000 - 6158 2002 3 18 8 20 32 200 4.9622 171.70388 1095.59748 992.30187 0.02884 19.56889 10.17069 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95759 -0.01423 -1.00000 - 6160 2002 3 18 8 20 42 124 4.9622 171.70016 1096.03888 992.66962 0.02840 19.53618 10.17033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95687 -0.01423 -1.00000 - 6162 2002 3 18 8 20 52 49 4.9622 171.69655 1096.47905 993.03761 0.02732 19.45013 10.16878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95615 -0.01422 -1.00000 - 6164 2002 3 18 8 21 1 973 4.9622 171.69299 1096.92493 993.40597 0.02771 19.45122 10.16453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95542 -0.01422 -1.00000 - 6166 2002 3 18 8 21 11 898 4.9623 171.68922 1097.36314 993.77496 0.02892 19.38546 10.15793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95470 -0.01422 -1.00000 - 6168 2002 3 18 8 21 21 822 4.9623 171.68546 1097.80887 994.14428 0.02896 19.34028 10.15059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95398 -0.01422 -1.00000 - 6170 2002 3 18 8 21 31 747 4.9624 171.68178 1098.25544 994.51445 0.02827 19.35008 10.14230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95326 -0.01422 -1.00000 - 6172 2002 3 18 8 21 41 672 4.9624 171.67824 1098.69662 994.88457 0.02747 19.33116 10.13416 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95254 -0.01422 -1.00000 - 6174 2002 3 18 8 21 51 596 4.9624 171.67467 1099.14351 995.25524 0.02813 19.29665 10.12991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95182 -0.01422 -1.00000 - 6176 2002 3 18 8 22 1 521 4.9624 171.67092 1099.58847 995.62589 0.02915 19.32848 10.12512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95109 -0.01422 -1.00000 - 6178 2002 3 18 8 22 11 446 4.9625 171.66719 1100.03151 995.99658 0.02927 19.30222 10.11837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.95037 -0.01422 -1.00000 - 6180 2002 3 18 8 22 21 371 4.9625 171.66355 1100.48044 996.36779 0.02840 19.30738 10.11231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94965 -0.01422 -1.00000 - 6182 2002 3 18 8 22 31 296 4.9625 171.66007 1100.92236 996.73924 0.02777 19.34383 10.10533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94893 -0.01422 -1.00000 - 6184 2002 3 18 8 22 41 221 4.9625 171.65648 1101.36694 997.11079 0.02851 19.27549 10.09565 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94821 -0.01421 -1.00000 - 6186 2002 3 18 8 22 51 147 4.9626 171.65275 1101.81483 997.48293 0.02947 19.32130 10.08684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94748 -0.01421 -1.00000 - 6188 2002 3 18 8 23 1 72 4.9626 171.64906 1102.26062 997.85528 0.02957 19.25263 10.07890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94676 -0.01421 -1.00000 - 6190 2002 3 18 8 23 10 997 4.9627 171.64546 1102.70957 998.22780 0.02848 19.22649 10.07060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94604 -0.01421 -1.00000 - 6192 2002 3 18 8 23 20 922 4.9627 171.64202 1103.16170 998.60130 0.02803 19.22529 10.06242 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94532 -0.01421 -1.00000 - 6194 2002 3 18 8 23 30 848 4.9627 171.63843 1103.61033 998.97489 0.02875 19.14360 10.05432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94460 -0.01421 -1.00000 - 6196 2002 3 18 8 23 40 773 4.9627 171.63474 1104.06113 999.34872 0.02959 19.15709 10.04805 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94388 -0.01421 -1.00000 - 6198 2002 3 18 8 23 50 699 4.9628 171.63109 1104.51321 999.72279 0.02959 19.15084 10.04120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94315 -0.01421 -1.00000 - 6200 2002 3 18 8 24 0 624 4.9628 171.62754 1104.96458 1000.09699 0.02849 19.04643 10.03468 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94243 -0.01421 -1.00000 - 6202 2002 3 18 8 24 10 550 4.9628 171.62412 1105.42110 1000.47169 0.02828 19.03462 10.02749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94171 -0.01421 -1.00000 - 6204 2002 3 18 8 24 20 476 4.9628 171.62058 1105.87194 1000.84710 0.02909 18.97262 10.01917 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94099 -0.01421 -1.00000 - 6206 2002 3 18 8 24 30 401 4.9629 171.61692 1106.33023 1001.22256 0.02986 18.93097 10.01028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.94027 -0.01421 -1.00000 - 6208 2002 3 18 8 24 40 327 4.9629 171.61330 1106.78809 1001.59879 0.02977 18.94058 10.00172 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93955 -0.01420 -1.00000 - 6210 2002 3 18 8 24 50 253 4.9629 171.60979 1107.24010 1001.97476 0.02882 18.87873 9.99380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93882 -0.01420 -1.00000 - 6212 2002 3 18 8 25 0 179 4.9630 171.60640 1107.69794 1002.35113 0.02868 18.86926 9.99036 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93810 -0.01420 -1.00000 - 6214 2002 3 18 8 25 10 105 4.9630 171.60285 1108.15315 1002.72742 0.02952 18.89516 9.98728 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93738 -0.01420 -1.00000 - 6216 2002 3 18 8 25 20 31 4.9630 171.59922 1108.60746 1003.10346 0.03018 18.87608 9.98547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93666 -0.01420 -1.00000 - 6219 2002 3 18 8 25 34 920 4.9631 171.59387 1109.29060 1003.66760 0.02957 18.91852 9.98510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93557 -0.01420 -1.00000 - 6221 2002 3 18 8 25 44 847 4.9631 171.59051 1109.74282 1004.04323 0.02896 18.94511 9.98644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93485 -0.01420 -1.00000 - 6223 2002 3 18 8 25 54 773 4.9631 171.58703 1110.19417 1004.41857 0.02938 18.97177 9.98900 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93413 -0.01420 -1.00000 - 6225 2002 3 18 8 26 4 699 4.9632 171.58345 1110.64693 1004.79354 0.03018 18.99958 9.99140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93341 -0.01420 -1.00000 - 6227 2002 3 18 8 26 14 626 4.9632 171.57988 1111.09742 1005.16829 0.03028 18.94067 9.99204 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93269 -0.01420 -1.00000 - 6229 2002 3 18 8 26 24 552 4.9632 171.57640 1111.55339 1005.54346 0.02957 18.97182 9.99335 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93197 -0.01420 -1.00000 - 6231 2002 3 18 8 26 34 478 4.9632 171.57304 1112.00073 1005.91843 0.02919 19.01552 9.99401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93124 -0.01419 -1.00000 - 6233 2002 3 18 8 26 44 405 4.9633 171.56955 1112.45247 1006.29311 0.02958 19.04839 9.99573 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.93052 -0.01419 -1.00000 - 6235 2002 3 18 8 26 54 332 4.9633 171.56604 1112.90050 1006.66743 0.03012 19.06675 9.99882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92980 -0.01419 -1.00000 - 6237 2002 3 18 8 27 4 258 4.9633 171.56252 1113.35071 1007.04160 0.03005 19.06249 10.00407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92908 -0.01419 -1.00000 - 6239 2002 3 18 8 27 14 185 4.9634 171.55910 1113.79987 1007.41556 0.02953 19.04480 10.00838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92836 -0.01419 -1.00000 - 6241 2002 3 18 8 27 24 112 4.9634 171.55574 1114.25078 1007.78973 0.02937 19.08358 10.01112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92763 -0.01419 -1.00000 - 6243 2002 3 18 8 27 34 39 4.9634 171.55230 1114.69983 1008.16390 0.02971 19.06128 10.01223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92691 -0.01419 -1.00000 - 6245 2002 3 18 8 27 43 965 4.9635 171.54884 1115.15568 1008.53818 0.03008 19.07769 10.01222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92619 -0.01419 -1.00000 - 6247 2002 3 18 8 27 53 892 4.9635 171.54537 1115.60203 1008.91251 0.03002 19.03754 10.01291 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92547 -0.01419 -1.00000 - 6249 2002 3 18 8 28 3 819 4.9635 171.54199 1116.05269 1009.28664 0.02974 19.05694 10.01470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92475 -0.01419 -1.00000 - 6251 2002 3 18 8 28 13 746 4.9635 171.53863 1116.50372 1009.66117 0.02972 19.09758 10.01704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92402 -0.01419 -1.00000 - 6253 2002 3 18 8 28 23 674 4.9636 171.53523 1116.95330 1010.03523 0.03000 19.13612 10.02227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92330 -0.01419 -1.00000 - 6255 2002 3 18 8 28 33 601 4.9636 171.53179 1117.40292 1010.40898 0.03023 19.16547 10.02798 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92258 -0.01418 -1.00000 - 6257 2002 3 18 8 28 43 528 4.9636 171.52839 1117.85064 1010.78254 0.03022 19.11153 10.03329 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92186 -0.01418 -1.00000 - 6259 2002 3 18 8 28 53 455 4.9637 171.52503 1118.30306 1011.15600 0.03014 19.18101 10.03749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92114 -0.01418 -1.00000 - 6261 2002 3 18 8 29 3 383 4.9637 171.52168 1118.75222 1011.52943 0.03017 19.14515 10.04076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.92042 -0.01418 -1.00000 - 6263 2002 3 18 8 29 13 310 4.9637 171.51829 1119.20302 1011.90267 0.03034 19.16580 10.04353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91969 -0.01418 -1.00000 - 6265 2002 3 18 8 29 23 238 4.9637 171.51490 1119.65159 1012.27631 0.03047 19.18790 10.04550 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91897 -0.01418 -1.00000 - 6267 2002 3 18 8 29 33 165 4.9638 171.51153 1120.10453 1012.64965 0.03049 19.11193 10.04326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91825 -0.01418 -1.00000 - 6269 2002 3 18 8 29 43 93 4.9638 171.50819 1120.55683 1013.02354 0.03049 19.18464 10.04196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91753 -0.01418 -1.00000 - 6271 2002 3 18 8 29 53 20 4.9638 171.50484 1121.00204 1013.39723 0.03053 19.21819 10.04130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91681 -0.01418 -1.00000 - 6273 2002 3 18 8 30 2 948 4.9639 171.50148 1121.45327 1013.77085 0.03059 19.23334 10.04315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91608 -0.01418 -1.00000 - 6275 2002 3 18 8 30 12 876 4.9639 171.49814 1121.90258 1014.14431 0.03061 19.24067 10.04660 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91536 -0.01418 -1.00000 - 6277 2002 3 18 8 30 22 804 4.9639 171.49482 1122.34978 1014.51757 0.03060 19.24582 10.05134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91464 -0.01418 -1.00000 - 6279 2002 3 18 8 30 32 732 4.9640 171.49149 1122.79811 1014.89058 0.03063 19.25352 10.05646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91392 -0.01417 -1.00000 - 6281 2002 3 18 8 30 42 660 4.9640 171.48817 1123.24553 1015.26343 0.03068 19.26388 10.06086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91320 -0.01417 -1.00000 - 6283 2002 3 18 8 30 52 588 4.9640 171.48486 1123.69119 1015.63618 0.03068 19.24380 10.06304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91247 -0.01417 -1.00000 - 6285 2002 3 18 8 31 2 516 4.9641 171.48156 1124.14277 1016.00932 0.03064 19.26222 10.06240 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91175 -0.01417 -1.00000 - 6287 2002 3 18 8 31 12 444 4.9641 171.47827 1124.58879 1016.38259 0.03065 19.18313 10.05922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91103 -0.01417 -1.00000 - 6289 2002 3 18 8 31 22 372 4.9641 171.47497 1125.03746 1016.75634 0.03073 19.19869 10.05843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.91031 -0.01417 -1.00000 - 6291 2002 3 18 8 31 32 300 4.9641 171.47169 1125.48686 1017.13038 0.03081 19.22185 10.05741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90959 -0.01417 -1.00000 - 6293 2002 3 18 8 31 42 229 4.9642 171.46842 1125.93446 1017.50445 0.03082 19.15186 10.05374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90886 -0.01417 -1.00000 - 6295 2002 3 18 8 31 52 157 4.9642 171.46516 1126.38636 1017.87925 0.03080 19.15845 10.05224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90814 -0.01417 -1.00000 - 6297 2002 3 18 8 32 2 86 4.9642 171.46190 1126.83512 1018.25418 0.03085 19.12597 10.05041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90742 -0.01417 -1.00000 - 6299 2002 3 18 8 32 12 14 4.9643 171.45864 1127.28549 1018.62915 0.03097 19.11090 10.04839 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90670 -0.01417 -1.00000 - 6301 2002 3 18 8 32 21 943 4.9643 171.45539 1127.73980 1019.00492 0.03107 19.14315 10.04672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90598 -0.01416 -1.00000 - 6303 2002 3 18 8 32 31 871 4.9643 171.45215 1128.19005 1019.38045 0.03110 19.10270 10.04484 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90525 -0.01416 -1.00000 - 6305 2002 3 18 8 32 41 800 4.9643 171.44893 1128.64408 1019.75613 0.03113 19.12463 10.04269 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90453 -0.01416 -1.00000 - 6307 2002 3 18 8 32 51 729 4.9644 171.44570 1129.09710 1020.13240 0.03119 19.15359 10.03959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90381 -0.01416 -1.00000 - 6309 2002 3 18 8 33 1 657 4.9644 171.44248 1129.54997 1020.50867 0.03129 19.07083 10.03415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90309 -0.01416 -1.00000 - 6311 2002 3 18 8 33 11 586 4.9644 171.43926 1130.00918 1020.88573 0.03135 19.09057 10.03028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90237 -0.01416 -1.00000 - 6313 2002 3 18 8 33 21 515 4.9645 171.43606 1130.46354 1021.26290 0.03137 19.03344 10.02741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90164 -0.01416 -1.00000 - 6315 2002 3 18 8 33 31 444 4.9645 171.43286 1130.91933 1021.64000 0.03140 19.03192 10.02482 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90092 -0.01416 -1.00000 - 6317 2002 3 18 8 33 41 373 4.9645 171.42967 1131.38100 1022.01775 0.03144 19.05176 10.02290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.90020 -0.01416 -1.00000 - 6319 2002 3 18 8 33 51 302 4.9646 171.42649 1131.83742 1022.39515 0.03147 18.98991 10.02081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89948 -0.01416 -1.00000 - 6321 2002 3 18 8 34 1 231 4.9646 171.42332 1132.29948 1022.77260 0.03149 19.00175 10.01850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89875 -0.01416 -1.00000 - 6323 2002 3 18 8 34 11 161 4.9646 171.42015 1132.75897 1023.15055 0.03149 19.01735 10.01531 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89803 -0.01416 -1.00000 - 6325 2002 3 18 8 34 21 90 4.9646 171.41700 1133.21822 1023.52838 0.03152 18.91996 10.00986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89731 -0.01415 -1.00000 - 6327 2002 3 18 8 34 31 19 4.9647 171.41385 1133.68370 1023.90677 0.03157 18.93039 10.00656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89659 -0.01415 -1.00000 - 6329 2002 3 18 8 34 40 949 4.9647 171.41071 1134.14371 1024.28502 0.03162 18.87477 10.00452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89587 -0.01415 -1.00000 - 6331 2002 3 18 8 34 50 878 4.9647 171.40757 1134.60540 1024.66291 0.03163 18.85733 10.00334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89514 -0.01415 -1.00000 - 6333 2002 3 18 8 35 0 808 4.9647 171.40444 1135.06992 1025.04113 0.03165 18.88247 10.00300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89442 -0.01415 -1.00000 - 6335 2002 3 18 8 35 10 737 4.9648 171.40131 1135.53016 1025.41869 0.03168 18.85475 10.00282 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89370 -0.01415 -1.00000 - 6337 2002 3 18 8 35 20 667 4.9648 171.39819 1135.99266 1025.79595 0.03173 18.85899 10.00255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89298 -0.01415 -1.00000 - 6339 2002 3 18 8 35 30 596 4.9648 171.39508 1136.45219 1026.17331 0.03179 18.89685 10.00154 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89226 -0.01415 -1.00000 - 6341 2002 3 18 8 35 40 526 4.9649 171.39197 1136.91109 1026.55010 0.03182 18.84753 9.99832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89153 -0.01415 -1.00000 - 6343 2002 3 18 8 35 50 456 4.9649 171.38886 1137.37220 1026.92706 0.03185 18.86524 9.99731 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89081 -0.01415 -1.00000 - 6345 2002 3 18 8 36 0 386 4.9649 171.38577 1137.82734 1027.30354 0.03188 18.86134 9.99754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.89009 -0.01415 -1.00000 - 6347 2002 3 18 8 36 10 315 4.9649 171.38267 1138.28413 1027.67935 0.03193 18.86850 9.99840 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88937 -0.01415 -1.00000 - 6349 2002 3 18 8 36 20 245 4.9650 171.37958 1138.73935 1028.05527 0.03198 18.92419 9.99983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88865 -0.01414 -1.00000 - 6351 2002 3 18 8 36 30 175 4.9650 171.37650 1139.19144 1028.43028 0.03204 18.93504 10.00123 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88792 -0.01414 -1.00000 - 6353 2002 3 18 8 36 40 105 4.9650 171.37342 1139.64248 1028.80483 0.03210 18.97184 10.00217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88720 -0.01414 -1.00000 - 6355 2002 3 18 8 36 50 36 4.9651 171.37035 1140.09101 1029.17941 0.03214 19.03936 10.00225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88648 -0.01414 -1.00000 - 6358 2002 3 18 8 37 4 931 4.9651 171.36575 1140.76276 1029.74049 0.03222 19.01886 9.99936 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88540 -0.01414 -1.00000 - 6360 2002 3 18 8 37 14 861 4.9651 171.36268 1141.21128 1030.11500 0.03227 19.08119 9.99802 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88467 -0.01414 -1.00000 - 6362 2002 3 18 8 37 24 791 4.9652 171.35963 1141.65715 1030.48899 0.03232 19.05283 9.99706 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88395 -0.01414 -1.00000 - 6364 2002 3 18 8 37 34 722 4.9652 171.35657 1142.10221 1030.86314 0.03236 19.09513 9.99813 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88323 -0.01414 -1.00000 - 6366 2002 3 18 8 37 44 652 4.9652 171.35353 1142.54590 1031.23716 0.03240 19.15440 9.99869 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88251 -0.01414 -1.00000 - 6368 2002 3 18 8 37 54 583 4.9653 171.35048 1142.99048 1031.61080 0.03242 19.10820 9.99722 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88179 -0.01414 -1.00000 - 6370 2002 3 18 8 38 4 513 4.9653 171.34745 1143.43617 1031.98501 0.03244 19.18860 9.99589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88106 -0.01414 -1.00000 - 6372 2002 3 18 8 38 14 444 4.9653 171.34441 1143.88054 1032.35920 0.03246 19.14483 9.99305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.88034 -0.01413 -1.00000 - 6374 2002 3 18 8 38 24 374 4.9653 171.34138 1144.32566 1032.73353 0.03250 19.16430 9.98993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87962 -0.01413 -1.00000 - 6376 2002 3 18 8 38 34 305 4.9654 171.33836 1144.77380 1033.10874 0.03254 19.20656 9.98598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87890 -0.01413 -1.00000 - 6378 2002 3 18 8 38 44 236 4.9654 171.33534 1145.22041 1033.48389 0.03256 19.13210 9.98047 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87817 -0.01413 -1.00000 - 6380 2002 3 18 8 38 54 167 4.9654 171.33233 1145.66974 1033.85971 0.03258 19.16378 9.97708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87745 -0.01413 -1.00000 - 6382 2002 3 18 8 39 4 98 4.9655 171.32932 1146.11991 1034.23583 0.03261 19.10044 9.97245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87673 -0.01413 -1.00000 - 6384 2002 3 18 8 39 14 29 4.9655 171.32632 1146.57139 1034.61200 0.03266 19.10045 9.96737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87601 -0.01413 -1.00000 - 6386 2002 3 18 8 39 23 960 4.9655 171.32332 1147.02607 1034.98927 0.03271 19.12353 9.96170 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87529 -0.01413 -1.00000 - 6388 2002 3 18 8 39 33 891 4.9656 171.32034 1147.47967 1035.36655 0.03277 19.04968 9.95612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87456 -0.01413 -1.00000 - 6390 2002 3 18 8 39 43 822 4.9656 171.31736 1147.93406 1035.74406 0.03282 19.08814 9.95148 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87384 -0.01413 -1.00000 - 6392 2002 3 18 8 39 53 753 4.9656 171.31439 1148.39180 1036.12196 0.03287 19.07102 9.94724 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87312 -0.01413 -1.00000 - 6394 2002 3 18 8 40 3 685 4.9656 171.31143 1148.84716 1036.49983 0.03292 19.04616 9.94398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87240 -0.01412 -1.00000 - 6396 2002 3 18 8 40 13 616 4.9657 171.30847 1149.30577 1036.87796 0.03298 19.01531 9.94163 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87167 -0.01412 -1.00000 - 6398 2002 3 18 8 40 23 547 4.9657 171.30553 1149.76515 1037.25615 0.03304 18.98115 9.93914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87095 -0.01412 -1.00000 - 6400 2002 3 18 8 40 33 479 4.9657 171.30259 1150.22795 1037.63455 0.03309 18.82628 9.93449 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.87023 -0.01412 -1.00000 - 6402 2002 3 18 8 40 43 410 4.9658 171.29967 1150.69454 1038.01376 0.03313 18.83200 9.92846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86951 -0.01412 -1.00000 - 6404 2002 3 18 8 40 53 342 4.9658 171.29675 1151.15430 1038.39330 0.03317 18.72817 9.92109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86879 -0.01412 -1.00000 - 6406 2002 3 18 8 41 3 273 4.9658 171.29384 1151.62075 1038.77295 0.03320 18.67175 9.91423 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86806 -0.01412 -1.00000 - 6408 2002 3 18 8 41 13 205 4.9659 171.29094 1152.08850 1039.15349 0.03324 18.66476 9.90903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86734 -0.01412 -1.00000 - 6410 2002 3 18 8 41 23 137 4.9659 171.28805 1152.55472 1039.53367 0.03328 18.60580 9.90646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86662 -0.01412 -1.00000 - 6412 2002 3 18 8 41 33 69 4.9659 171.28517 1153.02131 1039.91380 0.03332 18.54680 9.90400 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86590 -0.01412 -1.00000 - 6414 2002 3 18 8 41 43 1 4.9660 171.28230 1153.48658 1040.29433 0.03335 18.56553 9.90095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86517 -0.01412 -1.00000 - 6416 2002 3 18 8 41 52 933 4.9660 171.27944 1153.95214 1040.67448 0.03337 18.53305 9.89893 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86445 -0.01412 -1.00000 - 6418 2002 3 18 8 42 2 865 4.9660 171.27659 1154.41828 1041.05455 0.03341 18.56056 9.89764 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86373 -0.01411 -1.00000 - 6420 2002 3 18 8 42 12 797 4.9660 171.27375 1154.88415 1041.43455 0.03345 18.51004 9.89691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86301 -0.01411 -1.00000 - 6422 2002 3 18 8 42 22 729 4.9661 171.27092 1155.34863 1041.81422 0.03350 18.49938 9.89755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86229 -0.01411 -1.00000 - 6424 2002 3 18 8 42 32 661 4.9661 171.26810 1155.81353 1042.19439 0.03355 18.54829 9.89759 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86156 -0.01411 -1.00000 - 6426 2002 3 18 8 42 42 593 4.9661 171.26528 1156.27688 1042.57365 0.03360 18.56416 9.89872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86084 -0.01411 -1.00000 - 6428 2002 3 18 8 42 52 526 4.9662 171.26248 1156.73613 1042.95243 0.03364 18.59233 9.90201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.86012 -0.01411 -1.00000 - 6430 2002 3 18 8 43 2 458 4.9662 171.25969 1157.19566 1043.33098 0.03368 18.65937 9.90558 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85940 -0.01411 -1.00000 - 6432 2002 3 18 8 43 12 390 4.9662 171.25690 1157.65635 1043.70886 0.03372 18.64191 9.90700 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85867 -0.01411 -1.00000 - 6434 2002 3 18 8 43 22 323 4.9662 171.25412 1158.11529 1044.08689 0.03375 18.67972 9.91019 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85795 -0.01411 -1.00000 - 6436 2002 3 18 8 43 32 255 4.9663 171.25136 1158.57086 1044.46439 0.03380 18.67587 9.91314 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85723 -0.01411 -1.00000 - 6438 2002 3 18 8 43 42 188 4.9663 171.24860 1159.02882 1044.84131 0.03387 18.65555 9.91452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85651 -0.01411 -1.00000 - 6440 2002 3 18 8 43 52 121 4.9663 171.24585 1159.48618 1045.21865 0.03393 18.76082 9.91697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85578 -0.01411 -1.00000 - 6442 2002 3 18 8 44 2 53 4.9664 171.24311 1159.94264 1045.59537 0.03401 18.73089 9.91855 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85506 -0.01410 -1.00000 - 6444 2002 3 18 8 44 11 986 4.9664 171.24036 1160.39792 1045.97169 0.03406 18.80895 9.92168 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85434 -0.01410 -1.00000 - 6446 2002 3 18 8 44 21 919 4.9664 171.23762 1160.85002 1046.34783 0.03411 18.85696 9.92651 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85362 -0.01410 -1.00000 - 6448 2002 3 18 8 44 31 852 4.9665 171.23489 1161.30291 1046.72333 0.03416 18.89848 9.93219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85289 -0.01410 -1.00000 - 6450 2002 3 18 8 44 41 785 4.9665 171.23216 1161.75358 1047.09837 0.03420 18.93516 9.93806 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85217 -0.01410 -1.00000 - 6452 2002 3 18 8 44 51 718 4.9665 171.22945 1162.20206 1047.47292 0.03423 18.96761 9.94391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85145 -0.01410 -1.00000 - 6454 2002 3 18 8 45 1 651 4.9665 171.22674 1162.65609 1047.84702 0.03425 18.88087 9.94565 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85073 -0.01410 -1.00000 - 6456 2002 3 18 8 45 11 584 4.9666 171.22404 1163.10594 1048.22181 0.03426 18.92921 9.94742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.85001 -0.01410 -1.00000 - 6458 2002 3 18 8 45 21 517 4.9666 171.22135 1163.55439 1048.59638 0.03427 18.97250 9.94833 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84928 -0.01410 -1.00000 - 6460 2002 3 18 8 45 31 450 4.9666 171.21867 1164.00450 1048.97096 0.03428 19.00241 9.94959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84856 -0.01410 -1.00000 - 6462 2002 3 18 8 45 41 384 4.9667 171.21599 1164.45206 1049.34545 0.03430 19.02666 9.95278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84784 -0.01410 -1.00000 - 6464 2002 3 18 8 45 51 317 4.9667 171.21332 1164.89986 1049.71995 0.03432 19.04411 9.95720 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84712 -0.01409 -1.00000 - 6466 2002 3 18 8 46 1 251 4.9667 171.21066 1165.34824 1050.09432 0.03436 19.05613 9.96071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84639 -0.01409 -1.00000 - 6468 2002 3 18 8 46 11 184 4.9667 171.20801 1165.79676 1050.46878 0.03441 18.99297 9.96152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84567 -0.01409 -1.00000 - 6470 2002 3 18 8 46 21 118 4.9668 171.20536 1166.24586 1050.84360 0.03446 19.03562 9.96091 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84495 -0.01409 -1.00000 - 6472 2002 3 18 8 46 31 51 4.9668 171.20272 1166.69974 1051.21867 0.03452 18.99474 9.96032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84423 -0.01409 -1.00000 - 6474 2002 3 18 8 46 40 985 4.9668 171.20008 1167.14716 1051.59364 0.03458 19.01659 9.95796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84350 -0.01409 -1.00000 - 6476 2002 3 18 8 46 50 918 4.9669 171.19746 1167.60088 1051.96923 0.03464 19.03804 9.95493 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84278 -0.01409 -1.00000 - 6478 2002 3 18 8 47 0 852 4.9669 171.19484 1168.05566 1052.34472 0.03470 18.95684 9.95174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84206 -0.01409 -1.00000 - 6480 2002 3 18 8 47 10 786 4.9669 171.19224 1168.50360 1052.72032 0.03477 18.95812 9.94612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84134 -0.01409 -1.00000 - 6482 2002 3 18 8 47 20 720 4.9670 171.18965 1168.96005 1053.09690 0.03483 18.97277 9.94167 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.84061 -0.01409 -1.00000 - 6484 2002 3 18 8 47 30 654 4.9670 171.18707 1169.41891 1053.47351 0.03490 18.89340 9.93521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83989 -0.01409 -1.00000 - 6486 2002 3 18 8 47 40 588 4.9670 171.18450 1169.87203 1053.85060 0.03495 18.89408 9.92769 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83917 -0.01409 -1.00000 - 6488 2002 3 18 8 47 50 522 4.9670 171.18194 1170.33086 1054.22807 0.03499 18.80562 9.92047 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83845 -0.01408 -1.00000 - 6490 2002 3 18 8 48 0 456 4.9671 171.17939 1170.79213 1054.60576 0.03503 18.75918 9.91220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83772 -0.01408 -1.00000 - 6492 2002 3 18 8 48 10 390 4.9671 171.17684 1171.25088 1054.98446 0.03507 18.77715 9.90334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83700 -0.01408 -1.00000 - 6494 2002 3 18 8 48 20 325 4.9671 171.17432 1171.71633 1055.36320 0.03511 18.68635 9.89297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83628 -0.01408 -1.00000 - 6496 2002 3 18 8 48 30 259 4.9672 171.17180 1172.17873 1055.74263 0.03514 18.66216 9.88542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83556 -0.01408 -1.00000 - 6498 2002 3 18 8 48 40 193 4.9672 171.16929 1172.64000 1056.12203 0.03517 18.66987 9.88000 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83484 -0.01408 -1.00000 - 6500 2002 3 18 8 48 50 128 4.9672 171.16679 1173.10519 1056.50122 0.03519 18.59132 9.87279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83411 -0.01408 -1.00000 - 6502 2002 3 18 8 49 0 62 4.9673 171.16430 1173.56609 1056.88090 0.03521 18.60128 9.86742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83339 -0.01408 -1.00000 - 6505 2002 3 18 8 49 14 964 4.9673 171.16058 1174.26446 1057.45021 0.03526 18.50508 9.85686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83231 -0.01408 -1.00000 - 6507 2002 3 18 8 49 24 899 4.9673 171.15812 1174.72789 1057.83046 0.03530 18.52864 9.85001 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83158 -0.01408 -1.00000 - 6509 2002 3 18 8 49 34 833 4.9674 171.15566 1175.18966 1058.21057 0.03533 18.47293 9.84364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83086 -0.01408 -1.00000 - 6511 2002 3 18 8 49 44 768 4.9674 171.15321 1175.65362 1058.59051 0.03536 18.47888 9.83672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.83014 -0.01407 -1.00000 - 6513 2002 3 18 8 49 54 703 4.9674 171.15078 1176.11654 1058.97106 0.03539 18.50485 9.83211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82942 -0.01407 -1.00000 - 6515 2002 3 18 8 50 4 638 4.9674 171.14835 1176.58113 1059.35113 0.03544 18.46271 9.82793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82869 -0.01407 -1.00000 - 6517 2002 3 18 8 50 14 573 4.9675 171.14593 1177.04332 1059.73116 0.03549 18.48661 9.82477 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82797 -0.01407 -1.00000 - 6519 2002 3 18 8 50 24 508 4.9675 171.14351 1177.50387 1060.11117 0.03554 18.51647 9.82300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82725 -0.01407 -1.00000 - 6521 2002 3 18 8 50 34 443 4.9675 171.14110 1177.96426 1060.49077 0.03560 18.53164 9.82205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82653 -0.01407 -1.00000 - 6523 2002 3 18 8 50 44 378 4.9676 171.13867 1178.42401 1060.87020 0.03563 18.55091 9.82142 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82580 -0.01407 -1.00000 - 6525 2002 3 18 8 50 54 313 4.9676 171.13621 1178.88426 1061.24936 0.03564 18.50011 9.82119 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82508 -0.01407 -1.00000 - 6527 2002 3 18 8 51 4 248 4.9676 171.13373 1179.34414 1061.62829 0.03563 18.49167 9.81929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82436 -0.01407 -1.00000 - 6529 2002 3 18 8 51 14 184 4.9677 171.13121 1179.80456 1062.00815 0.03563 18.52590 9.81661 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82364 -0.01407 -1.00000 - 6531 2002 3 18 8 51 24 119 4.9677 171.12866 1180.26430 1062.38746 0.03561 18.55539 9.81583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82291 -0.01407 -1.00000 - 6533 2002 3 18 8 51 34 54 4.9677 171.12606 1180.72228 1062.76641 0.03553 18.57763 9.81677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82219 -0.01407 -1.00000 - 6535 2002 3 18 8 51 43 990 4.9677 171.12342 1181.18043 1063.14496 0.03542 18.59670 9.81964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82147 -0.01406 -1.00000 - 6537 2002 3 18 8 51 53 925 4.9678 171.12072 1181.63619 1063.52308 0.03527 18.61400 9.82231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82075 -0.01406 -1.00000 - 6539 2002 3 18 8 52 3 861 4.9678 171.11803 1182.09378 1063.90087 0.03509 18.62830 9.82420 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.82002 -0.01406 -1.00000 - 6541 2002 3 18 8 52 13 797 4.9678 171.11541 1182.54940 1064.27843 0.03491 18.64034 9.82637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81930 -0.01406 -1.00000 - 6543 2002 3 18 8 52 23 732 4.9678 171.11285 1183.00404 1064.65573 0.03478 18.64696 9.82819 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81858 -0.01406 -1.00000 - 6545 2002 3 18 8 52 33 668 4.9679 171.11033 1183.46211 1065.03296 0.03472 18.65123 9.83051 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81786 -0.01406 -1.00000 - 6547 2002 3 18 8 52 43 604 4.9679 171.10785 1183.91699 1065.40986 0.03463 18.65717 9.83264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81713 -0.01406 -1.00000 - 6549 2002 3 18 8 52 53 540 4.9679 171.10541 1184.37282 1065.78651 0.03458 18.66128 9.83454 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81641 -0.01406 -1.00000 - 6551 2002 3 18 8 53 3 476 4.9680 171.10298 1184.82792 1066.16299 0.03460 18.66586 9.83656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81569 -0.01406 -1.00000 - 6553 2002 3 18 8 53 13 411 4.9680 171.10058 1185.28340 1066.53930 0.03469 18.61660 9.83727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81497 -0.01406 -1.00000 - 6555 2002 3 18 8 53 23 347 4.9680 171.09819 1185.74074 1066.91572 0.03482 18.64393 9.83721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81424 -0.01406 -1.00000 - 6557 2002 3 18 8 53 33 284 4.9680 171.09583 1186.20042 1067.29216 0.03497 18.58075 9.83555 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81352 -0.01405 -1.00000 - 6559 2002 3 18 8 53 43 220 4.9681 171.09348 1186.65813 1067.66842 0.03514 18.54974 9.83342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81280 -0.01405 -1.00000 - 6561 2002 3 18 8 53 53 156 4.9681 171.09116 1187.11578 1068.04547 0.03537 18.57738 9.83083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81208 -0.01405 -1.00000 - 6563 2002 3 18 8 54 3 92 4.9681 171.08887 1187.57394 1068.42185 0.03565 18.59828 9.83000 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81135 -0.01405 -1.00000 - 6565 2002 3 18 8 54 13 28 4.9682 171.08656 1188.03078 1068.79803 0.03587 18.61085 9.83009 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.81063 -0.01405 -1.00000 - 6567 2002 3 18 8 54 22 965 4.9682 171.08426 1188.48615 1069.17395 0.03604 18.61894 9.83118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80991 -0.01405 -1.00000 - 6569 2002 3 18 8 54 32 901 4.9682 171.08195 1188.94098 1069.54951 0.03619 18.62219 9.83204 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80919 -0.01405 -1.00000 - 6571 2002 3 18 8 54 42 838 4.9683 171.07965 1189.39702 1069.92488 0.03636 18.62369 9.83198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80846 -0.01405 -1.00000 - 6573 2002 3 18 8 54 52 774 4.9683 171.07736 1189.85274 1070.29999 0.03653 18.56988 9.83079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80774 -0.01405 -1.00000 - 6575 2002 3 18 8 55 2 711 4.9683 171.07508 1190.30879 1070.67505 0.03661 18.55936 9.82770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80702 -0.01405 -1.00000 - 6577 2002 3 18 8 55 12 648 4.9684 171.07283 1190.76529 1071.05071 0.03668 18.57588 9.82332 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80629 -0.01405 -1.00000 - 6579 2002 3 18 8 55 22 585 4.9684 171.07058 1191.22521 1071.42606 0.03673 18.51530 9.81618 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80557 -0.01405 -1.00000 - 6581 2002 3 18 8 55 32 521 4.9684 171.06835 1191.68169 1071.80183 0.03677 18.50611 9.81203 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80485 -0.01404 -1.00000 - 6583 2002 3 18 8 55 42 458 4.9685 171.06614 1192.13633 1072.17745 0.03678 18.53639 9.80884 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80413 -0.01404 -1.00000 - 6585 2002 3 18 8 55 52 395 4.9685 171.06395 1192.59089 1072.55265 0.03674 18.55400 9.80590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80340 -0.01404 -1.00000 - 6587 2002 3 18 8 56 2 332 4.9685 171.06177 1193.04402 1072.92765 0.03671 18.56415 9.80363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80268 -0.01404 -1.00000 - 6589 2002 3 18 8 56 12 269 4.9686 171.05962 1193.49791 1073.30248 0.03671 18.49200 9.80060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80196 -0.01404 -1.00000 - 6591 2002 3 18 8 56 22 207 4.9686 171.05751 1193.95207 1073.67742 0.03672 18.49128 9.79518 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80124 -0.01404 -1.00000 - 6593 2002 3 18 8 56 32 144 4.9686 171.05545 1194.40713 1074.05309 0.03671 18.50611 9.78879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.80051 -0.01404 -1.00000 - 6595 2002 3 18 8 56 42 81 4.9686 171.05343 1194.86133 1074.42838 0.03671 18.46724 9.78309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79979 -0.01404 -1.00000 - 6597 2002 3 18 8 56 52 18 4.9687 171.05144 1195.31468 1074.80371 0.03673 18.50652 9.77880 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79907 -0.01404 -1.00000 - 6599 2002 3 18 8 57 1 956 4.9687 171.04949 1195.76777 1075.17903 0.03682 18.51066 9.77542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79835 -0.01404 -1.00000 - 6601 2002 3 18 8 57 11 893 4.9687 171.04757 1196.22002 1075.55425 0.03695 18.50757 9.77179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79762 -0.01404 -1.00000 - 6603 2002 3 18 8 57 21 831 4.9688 171.04569 1196.67337 1075.92949 0.03710 18.50887 9.76762 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79690 -0.01404 -1.00000 - 6605 2002 3 18 8 57 31 768 4.9688 171.04384 1197.12638 1076.30462 0.03725 18.44451 9.76331 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79618 -0.01403 -1.00000 - 6607 2002 3 18 8 57 41 706 4.9688 171.04203 1197.57921 1076.67990 0.03740 18.46027 9.75759 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79546 -0.01403 -1.00000 - 6609 2002 3 18 8 57 51 644 4.9689 171.04024 1198.03288 1077.05570 0.03756 18.46254 9.75086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79473 -0.01403 -1.00000 - 6611 2002 3 18 8 58 1 582 4.9689 171.03848 1198.49184 1077.43145 0.03772 18.38326 9.74059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79401 -0.01403 -1.00000 - 6613 2002 3 18 8 58 11 519 4.9689 171.03675 1198.94888 1077.80797 0.03786 18.36225 9.73323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79329 -0.01403 -1.00000 - 6615 2002 3 18 8 58 21 457 4.9690 171.03505 1199.40351 1078.18454 0.03797 18.38343 9.72722 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79256 -0.01403 -1.00000 - 6617 2002 3 18 8 58 31 395 4.9690 171.03337 1199.85926 1078.56087 0.03807 18.38975 9.72169 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79184 -0.01403 -1.00000 - 6619 2002 3 18 8 58 41 333 4.9690 171.03173 1200.31248 1078.93716 0.03815 18.38631 9.71742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79112 -0.01403 -1.00000 - 6621 2002 3 18 8 58 51 271 4.9691 171.03012 1200.76710 1079.31343 0.03818 18.31400 9.71281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.79040 -0.01403 -1.00000 - 6623 2002 3 18 8 59 1 210 4.9691 171.02854 1201.22347 1079.68984 0.03819 18.23471 9.70512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78967 -0.01403 -1.00000 - 6625 2002 3 18 8 59 11 148 4.9691 171.02698 1201.68123 1080.06741 0.03820 18.26558 9.69739 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78895 -0.01403 -1.00000 - 6627 2002 3 18 8 59 21 86 4.9692 171.02546 1202.14188 1080.44496 0.03821 18.19718 9.68905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78823 -0.01402 -1.00000 - 6629 2002 3 18 8 59 31 24 4.9692 171.02396 1202.59979 1080.82292 0.03822 18.15649 9.68198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78751 -0.01402 -1.00000 - 6631 2002 3 18 8 59 40 963 4.9692 171.02250 1203.05901 1081.20179 0.03821 18.16731 9.67501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78678 -0.01402 -1.00000 - 6633 2002 3 18 8 59 50 901 4.9693 171.02106 1203.52462 1081.58059 0.03819 18.09799 9.66551 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78606 -0.01402 -1.00000 - 6635 2002 3 18 9 0 0 840 4.9693 171.01965 1203.98763 1081.96026 0.03820 18.06958 9.65931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78534 -0.01402 -1.00000 - 6637 2002 3 18 9 0 10 779 4.9693 171.01826 1204.45072 1082.33998 0.03824 18.08902 9.65473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78461 -0.01402 -1.00000 - 6639 2002 3 18 9 0 20 717 4.9693 171.01690 1204.91472 1082.71993 0.03829 18.05792 9.64987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78389 -0.01402 -1.00000 - 6641 2002 3 18 9 0 30 656 4.9694 171.01556 1205.38228 1083.10067 0.03835 18.06532 9.64701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78317 -0.01402 -1.00000 - 6643 2002 3 18 9 0 40 595 4.9694 171.01425 1205.84969 1083.48155 0.03841 17.99606 9.64455 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78245 -0.01402 -1.00000 - 6645 2002 3 18 9 0 50 534 4.9694 171.01296 1206.31708 1083.86286 0.03847 18.02690 9.64253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78172 -0.01402 -1.00000 - 6647 2002 3 18 9 1 0 473 4.9695 171.01168 1206.78710 1084.24479 0.03856 18.04382 9.64003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78100 -0.01402 -1.00000 - 6649 2002 3 18 9 1 10 412 4.9695 171.01043 1207.26221 1084.62655 0.03865 17.99268 9.63532 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.78028 -0.01402 -1.00000 - 6651 2002 3 18 9 1 20 351 4.9695 171.00919 1207.73547 1085.00893 0.03874 17.97131 9.63409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77955 -0.01401 -1.00000 - 6653 2002 3 18 9 1 30 290 4.9696 171.00798 1208.20721 1085.39094 0.03883 18.01146 9.63474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77883 -0.01401 -1.00000 - 6655 2002 3 18 9 1 40 229 4.9696 171.00687 1208.67815 1085.77229 0.03889 18.04152 9.63673 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77811 -0.01401 -1.00000 - 6657 2002 3 18 9 1 50 168 4.9696 171.00584 1209.14781 1086.15302 0.03895 18.06457 9.64044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77739 -0.01401 -1.00000 - 6659 2002 3 18 9 2 0 108 4.9697 171.00464 1209.61531 1086.53303 0.03909 18.08118 9.64515 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77666 -0.01401 -1.00000 - 6661 2002 3 18 9 2 10 47 4.9697 171.00326 1210.08092 1086.91241 0.03918 18.09083 9.64973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77594 -0.01401 -1.00000 - 6664 2002 3 18 9 2 24 956 4.9698 171.00097 1210.78038 1087.48055 0.03908 18.04642 9.65600 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77486 -0.01401 -1.00000 - 6666 2002 3 18 9 2 34 896 4.9698 170.99935 1211.24508 1087.85873 0.03922 18.03086 9.65879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77413 -0.01401 -1.00000 - 6668 2002 3 18 9 2 44 836 4.9698 170.99775 1211.70933 1088.23723 0.03912 18.06311 9.66124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77341 -0.01401 -1.00000 - 6670 2002 3 18 9 2 54 775 4.9699 170.99615 1212.17168 1088.61486 0.03891 18.05572 9.66428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77269 -0.01401 -1.00000 - 6672 2002 3 18 9 3 4 715 4.9699 170.99456 1212.62842 1088.99199 0.03872 18.09437 9.66970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77197 -0.01401 -1.00000 - 6674 2002 3 18 9 3 14 655 4.9699 170.99296 1213.08539 1089.36889 0.03863 18.13803 9.67524 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77124 -0.01400 -1.00000 - 6676 2002 3 18 9 3 24 595 4.9700 170.99138 1213.54377 1089.74512 0.03864 18.15040 9.67762 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.77052 -0.01400 -1.00000 - 6678 2002 3 18 9 3 34 535 4.9700 170.98980 1213.99770 1090.12176 0.03870 18.14296 9.68179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76980 -0.01400 -1.00000 - 6680 2002 3 18 9 3 44 475 4.9700 170.98823 1214.45094 1090.49775 0.03874 18.20214 9.68583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76907 -0.01400 -1.00000 - 6682 2002 3 18 9 3 54 415 4.9701 170.98668 1214.90213 1090.87326 0.03880 18.22124 9.68894 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76835 -0.01400 -1.00000 - 6684 2002 3 18 9 4 4 355 4.9701 170.98514 1215.35215 1091.24889 0.03891 18.31129 9.69249 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76763 -0.01400 -1.00000 - 6686 2002 3 18 9 4 14 295 4.9701 170.98359 1215.80352 1091.62397 0.03910 18.31035 9.69362 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76691 -0.01400 -1.00000 - 6688 2002 3 18 9 4 24 236 4.9702 170.98206 1216.25335 1091.99911 0.03930 18.38009 9.69598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76618 -0.01400 -1.00000 - 6690 2002 3 18 9 4 34 176 4.9702 170.98053 1216.70066 1092.37403 0.03947 18.45696 9.69933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76546 -0.01400 -1.00000 - 6692 2002 3 18 9 4 44 116 4.9702 170.97900 1217.15414 1092.74849 0.03963 18.42303 9.69845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76474 -0.01400 -1.00000 - 6694 2002 3 18 9 4 54 57 4.9703 170.97747 1217.60302 1093.12351 0.03978 18.46430 9.69952 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76401 -0.01400 -1.00000 - 6696 2002 3 18 9 5 3 997 4.9703 170.97588 1218.05433 1093.49839 0.03991 18.48801 9.70070 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76329 -0.01400 -1.00000 - 6698 2002 3 18 9 5 13 938 4.9703 170.97419 1218.50550 1093.87298 0.04000 18.51552 9.70016 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76257 -0.01399 -1.00000 - 6700 2002 3 18 9 5 23 879 4.9704 170.97233 1218.95765 1094.24777 0.04000 18.54243 9.69974 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76185 -0.01399 -1.00000 - 6702 2002 3 18 9 5 33 820 4.9704 170.97039 1219.41471 1094.62242 0.03995 18.39287 9.69583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76112 -0.01399 -1.00000 - 6704 2002 3 18 9 5 43 760 4.9704 170.96850 1219.87194 1094.99771 0.03981 18.44737 9.69285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.76040 -0.01399 -1.00000 - 6706 2002 3 18 9 5 53 701 4.9704 170.96666 1220.32753 1095.37308 0.03964 18.44325 9.69038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75968 -0.01399 -1.00000 - 6708 2002 3 18 9 6 3 642 4.9705 170.96488 1220.79096 1095.74843 0.03948 18.29904 9.68394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75895 -0.01399 -1.00000 - 6710 2002 3 18 9 6 13 583 4.9705 170.96312 1221.25109 1096.12476 0.03928 18.29233 9.68001 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75823 -0.01399 -1.00000 - 6712 2002 3 18 9 6 23 524 4.9705 170.96139 1221.71348 1096.50112 0.03918 18.20194 9.67593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75751 -0.01399 -1.00000 - 6714 2002 3 18 9 6 33 465 4.9706 170.95968 1222.17543 1096.87754 0.03912 18.18942 9.67068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75678 -0.01399 -1.00000 - 6716 2002 3 18 9 6 43 407 4.9706 170.95799 1222.63745 1097.25459 0.03910 18.18286 9.66614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75606 -0.01399 -1.00000 - 6718 2002 3 18 9 6 53 348 4.9706 170.95631 1223.10263 1097.63152 0.03910 18.08901 9.65914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75534 -0.01399 -1.00000 - 6720 2002 3 18 9 7 3 289 4.9707 170.95466 1223.56682 1098.00916 0.03915 18.04762 9.65265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75462 -0.01398 -1.00000 - 6722 2002 3 18 9 7 13 230 4.9707 170.95300 1224.02960 1098.38729 0.03925 18.06267 9.64739 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75389 -0.01398 -1.00000 - 6724 2002 3 18 9 7 23 172 4.9707 170.95136 1224.49758 1098.76511 0.03938 18.01797 9.63911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75317 -0.01398 -1.00000 - 6726 2002 3 18 9 7 33 113 4.9708 170.94972 1224.96217 1099.14364 0.03953 17.98139 9.63453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75245 -0.01398 -1.00000 - 6728 2002 3 18 9 7 43 55 4.9708 170.94809 1225.42485 1099.52177 0.03966 17.99703 9.63141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75172 -0.01398 -1.00000 - 6730 2002 3 18 9 7 52 997 4.9708 170.94647 1225.88580 1099.89950 0.03978 18.01509 9.62727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75100 -0.01398 -1.00000 - 6732 2002 3 18 9 8 2 938 4.9709 170.94484 1226.34753 1100.27727 0.03987 18.06059 9.62434 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.75028 -0.01398 -1.00000 - 6734 2002 3 18 9 8 12 880 4.9709 170.94323 1226.81069 1100.65475 0.03997 18.00997 9.61914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74955 -0.01398 -1.00000 - 6736 2002 3 18 9 8 22 822 4.9709 170.94162 1227.27425 1101.03240 0.04006 17.99153 9.61363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74883 -0.01398 -1.00000 - 6738 2002 3 18 9 8 32 764 4.9710 170.94002 1227.73529 1101.41048 0.04015 18.04732 9.60827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74811 -0.01398 -1.00000 - 6740 2002 3 18 9 8 42 706 4.9710 170.93842 1228.20154 1101.78798 0.04026 17.99556 9.60126 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74739 -0.01398 -1.00000 - 6742 2002 3 18 9 8 52 648 4.9710 170.93683 1228.66494 1102.16568 0.04032 18.02323 9.59784 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74666 -0.01398 -1.00000 - 6744 2002 3 18 9 9 2 590 4.9711 170.93523 1229.12769 1102.54290 0.04031 18.05803 9.59532 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74594 -0.01397 -1.00000 - 6746 2002 3 18 9 9 12 532 4.9711 170.93366 1229.58942 1102.91967 0.04028 18.03555 9.59133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74522 -0.01397 -1.00000 - 6748 2002 3 18 9 9 22 474 4.9711 170.93210 1230.05216 1103.29640 0.04023 18.04800 9.58826 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74449 -0.01397 -1.00000 - 6750 2002 3 18 9 9 32 417 4.9712 170.93056 1230.51713 1103.67288 0.04021 17.94734 9.58293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74377 -0.01397 -1.00000 - 6752 2002 3 18 9 9 42 359 4.9712 170.92904 1230.98191 1104.04955 0.04021 17.91506 9.57746 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74305 -0.01397 -1.00000 - 6754 2002 3 18 9 9 52 302 4.9712 170.92752 1231.44390 1104.42666 0.04023 17.94636 9.57202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74232 -0.01397 -1.00000 - 6756 2002 3 18 9 10 2 244 4.9713 170.92601 1231.91146 1104.80310 0.04027 17.88642 9.56417 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74160 -0.01397 -1.00000 - 6758 2002 3 18 9 10 12 187 4.9713 170.92451 1232.37326 1105.17999 0.04031 17.86792 9.56137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74088 -0.01397 -1.00000 - 6760 2002 3 18 9 10 22 129 4.9713 170.92302 1232.83268 1105.55640 0.04035 17.90547 9.55924 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.74016 -0.01397 -1.00000 - 6762 2002 3 18 9 10 32 72 4.9714 170.92154 1233.28872 1105.93217 0.04040 17.93144 9.55761 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73943 -0.01397 -1.00000 - 6764 2002 3 18 9 10 42 15 4.9714 170.92007 1233.74463 1106.30751 0.04046 17.95182 9.55757 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73871 -0.01397 -1.00000 - 6766 2002 3 18 9 10 51 958 4.9714 170.91861 1234.19883 1106.68235 0.04053 17.90744 9.55641 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73799 -0.01396 -1.00000 - 6768 2002 3 18 9 11 1 901 4.9715 170.91715 1234.65303 1107.05725 0.04061 17.93292 9.55433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73726 -0.01396 -1.00000 - 6770 2002 3 18 9 11 11 844 4.9715 170.91571 1235.10849 1107.43239 0.04068 17.96955 9.55137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73654 -0.01396 -1.00000 - 6772 2002 3 18 9 11 21 787 4.9715 170.91427 1235.56284 1107.80712 0.04074 17.94605 9.54776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73582 -0.01396 -1.00000 - 6774 2002 3 18 9 11 31 730 4.9716 170.91284 1236.01732 1108.18197 0.04079 17.98232 9.54510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73509 -0.01396 -1.00000 - 6776 2002 3 18 9 11 41 673 4.9716 170.91143 1236.47251 1108.55662 0.04083 17.94039 9.54153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73437 -0.01396 -1.00000 - 6778 2002 3 18 9 11 51 616 4.9716 170.91002 1236.92766 1108.93091 0.04085 17.95655 9.53750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73365 -0.01396 -1.00000 - 6780 2002 3 18 9 12 1 560 4.9717 170.90862 1237.38327 1109.30577 0.04089 18.00869 9.53371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73292 -0.01396 -1.00000 - 6782 2002 3 18 9 12 11 503 4.9717 170.90724 1237.84028 1109.67996 0.04092 17.96656 9.52896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73220 -0.01396 -1.00000 - 6784 2002 3 18 9 12 21 447 4.9717 170.90587 1238.29359 1110.05389 0.04095 17.95695 9.52460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73148 -0.01396 -1.00000 - 6786 2002 3 18 9 12 31 390 4.9718 170.90451 1238.74799 1110.42835 0.04097 18.00451 9.51994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73076 -0.01396 -1.00000 - 6788 2002 3 18 9 12 41 334 4.9718 170.90316 1239.20341 1110.80220 0.04098 17.93705 9.51449 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.73003 -0.01396 -1.00000 - 6790 2002 3 18 9 12 51 277 4.9718 170.90183 1239.65644 1111.17618 0.04100 17.99181 9.51029 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72931 -0.01395 -1.00000 - 6792 2002 3 18 9 13 1 221 4.9719 170.90051 1240.11157 1111.55016 0.04103 17.88297 9.50397 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72859 -0.01395 -1.00000 - 6794 2002 3 18 9 13 11 165 4.9719 170.89920 1240.56697 1111.92425 0.04108 17.88201 9.49789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72786 -0.01395 -1.00000 - 6796 2002 3 18 9 13 21 109 4.9719 170.89790 1241.02311 1112.29939 0.04113 17.88798 9.49214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72714 -0.01395 -1.00000 - 6798 2002 3 18 9 13 31 53 4.9720 170.89661 1241.48109 1112.67430 0.04118 17.77939 9.48589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72642 -0.01395 -1.00000 - 6800 2002 3 18 9 13 40 997 4.9720 170.89533 1241.93682 1113.04959 0.04123 17.74944 9.48049 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72569 -0.01395 -1.00000 - 6802 2002 3 18 9 13 50 941 4.9720 170.89406 1242.39441 1113.42590 0.04127 17.75972 9.47528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72497 -0.01395 -1.00000 - 6804 2002 3 18 9 14 0 885 4.9721 170.89281 1242.85351 1113.80201 0.04131 17.70536 9.47030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72425 -0.01395 -1.00000 - 6806 2002 3 18 9 14 10 829 4.9721 170.89156 1243.31165 1114.17852 0.04136 17.72103 9.46689 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72352 -0.01395 -1.00000 - 6808 2002 3 18 9 14 20 773 4.9721 170.89033 1243.77435 1114.55530 0.04141 17.64555 9.46149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72280 -0.01395 -1.00000 - 6810 2002 3 18 9 14 30 718 4.9722 170.88910 1244.23657 1114.93216 0.04146 17.61816 9.45737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72208 -0.01395 -1.00000 - 6812 2002 3 18 9 14 40 662 4.9722 170.88789 1244.69984 1115.30988 0.04151 17.65878 9.45364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72135 -0.01395 -1.00000 - 6814 2002 3 18 9 14 50 607 4.9722 170.88669 1245.16341 1115.68691 0.04155 17.64847 9.45080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.72063 -0.01394 -1.00000 - 6816 2002 3 18 9 15 0 551 4.9723 170.88550 1245.62511 1116.06382 0.04159 17.64907 9.44820 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71991 -0.01394 -1.00000 - 6818 2002 3 18 9 15 10 496 4.9723 170.88432 1246.08874 1116.44098 0.04164 17.69656 9.44499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71919 -0.01394 -1.00000 - 6820 2002 3 18 9 15 20 440 4.9723 170.88316 1246.55448 1116.81785 0.04169 17.63736 9.44107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71846 -0.01394 -1.00000 - 6822 2002 3 18 9 15 30 385 4.9724 170.88200 1247.01852 1117.19535 0.04173 17.66830 9.43897 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71774 -0.01394 -1.00000 - 6824 2002 3 18 9 15 40 330 4.9724 170.88086 1247.48299 1117.57343 0.04176 17.69960 9.43780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71702 -0.01394 -1.00000 - 6826 2002 3 18 9 15 50 275 4.9724 170.87972 1247.95389 1117.95151 0.04179 17.61042 9.43349 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71629 -0.01394 -1.00000 - 6828 2002 3 18 9 16 0 220 4.9725 170.87860 1248.42154 1118.33057 0.04182 17.60796 9.43230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71557 -0.01394 -1.00000 - 6830 2002 3 18 9 16 10 165 4.9725 170.87750 1248.89172 1118.70967 0.04184 17.53746 9.43138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71485 -0.01394 -1.00000 - 6832 2002 3 18 9 16 20 110 4.9725 170.87640 1249.36077 1119.08882 0.04187 17.54913 9.43047 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71412 -0.01394 -1.00000 - 6834 2002 3 18 9 16 30 55 4.9726 170.87531 1249.83001 1119.46851 0.04190 17.55868 9.43033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71340 -0.01394 -1.00000 - 6836 2002 3 18 9 16 40 0 4.9726 170.87424 1250.30233 1119.84800 0.04193 17.46527 9.42873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71268 -0.01393 -1.00000 - 6839 2002 3 18 9 16 54 918 4.9726 170.87265 1251.01038 1120.41841 0.04197 17.45358 9.42876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71159 -0.01393 -1.00000 - 6841 2002 3 18 9 17 4 863 4.9727 170.87161 1251.48394 1120.79858 0.04200 17.43533 9.42908 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71087 -0.01393 -1.00000 - 6843 2002 3 18 9 17 14 808 4.9727 170.87058 1251.95470 1121.17854 0.04204 17.39413 9.43140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.71014 -0.01393 -1.00000 - 6845 2002 3 18 9 17 24 754 4.9727 170.86956 1252.42317 1121.55890 0.04209 17.46563 9.43482 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70942 -0.01393 -1.00000 - 6847 2002 3 18 9 17 34 699 4.9728 170.86855 1252.88835 1121.93801 0.04213 17.51839 9.44016 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70870 -0.01393 -1.00000 - 6849 2002 3 18 9 17 44 645 4.9728 170.86755 1253.35134 1122.31636 0.04217 17.58142 9.44706 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70797 -0.01393 -1.00000 - 6851 2002 3 18 9 17 54 591 4.9728 170.86656 1253.81051 1122.69380 0.04221 17.65349 9.45463 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70725 -0.01393 -1.00000 - 6853 2002 3 18 9 18 4 536 4.9729 170.86558 1254.27165 1123.07037 0.04226 17.65837 9.45889 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70653 -0.01393 -1.00000 - 6855 2002 3 18 9 18 14 482 4.9729 170.86462 1254.73037 1123.44711 0.04230 17.72438 9.46428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70581 -0.01393 -1.00000 - 6857 2002 3 18 9 18 24 428 4.9729 170.86366 1255.18864 1123.82293 0.04235 17.75037 9.46988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70508 -0.01393 -1.00000 - 6859 2002 3 18 9 18 34 374 4.9730 170.86272 1255.64424 1124.19809 0.04240 17.82921 9.47553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70436 -0.01392 -1.00000 - 6861 2002 3 18 9 18 44 320 4.9730 170.86178 1256.09996 1124.57296 0.04244 17.90440 9.48046 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70364 -0.01392 -1.00000 - 6863 2002 3 18 9 18 54 266 4.9730 170.86086 1256.55983 1124.94715 0.04248 17.83271 9.48195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70291 -0.01392 -1.00000 - 6865 2002 3 18 9 19 4 212 4.9730 170.85995 1257.01813 1125.32151 0.04251 17.89459 9.48619 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70219 -0.01392 -1.00000 - 6867 2002 3 18 9 19 14 158 4.9731 170.85905 1257.47322 1125.69532 0.04254 17.94587 9.49053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70147 -0.01392 -1.00000 - 6869 2002 3 18 9 19 24 104 4.9731 170.85816 1257.93218 1126.06860 0.04257 17.86230 9.49233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70074 -0.01392 -1.00000 - 6871 2002 3 18 9 19 34 50 4.9731 170.85729 1258.38963 1126.44213 0.04260 17.91009 9.49497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.70002 -0.01392 -1.00000 - 6873 2002 3 18 9 19 43 997 4.9732 170.85643 1258.84817 1126.81531 0.04262 17.83478 9.49696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69930 -0.01392 -1.00000 - 6875 2002 3 18 9 19 53 943 4.9732 170.85557 1259.30733 1127.18814 0.04264 17.79323 9.49664 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69857 -0.01392 -1.00000 - 6877 2002 3 18 9 20 3 890 4.9732 170.85473 1259.76651 1127.56161 0.04266 17.86144 9.49721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69785 -0.01392 -1.00000 - 6879 2002 3 18 9 20 13 836 4.9733 170.85391 1260.22763 1127.93455 0.04268 17.80679 9.49651 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69713 -0.01392 -1.00000 - 6881 2002 3 18 9 20 23 783 4.9733 170.85309 1260.68540 1128.30732 0.04271 17.77578 9.49614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69640 -0.01392 -1.00000 - 6883 2002 3 18 9 20 33 729 4.9733 170.85229 1261.14299 1128.68049 0.04273 17.82410 9.49573 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69568 -0.01391 -1.00000 - 6885 2002 3 18 9 20 43 676 4.9734 170.85149 1261.60227 1129.05307 0.04276 17.81758 9.49272 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69496 -0.01391 -1.00000 - 6887 2002 3 18 9 20 53 623 4.9734 170.85071 1262.05884 1129.42587 0.04278 17.81415 9.49194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69423 -0.01391 -1.00000 - 6889 2002 3 18 9 21 3 570 4.9734 170.84993 1262.51090 1129.79801 0.04281 17.87506 9.49117 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69351 -0.01391 -1.00000 - 6891 2002 3 18 9 21 13 517 4.9735 170.84917 1262.96008 1130.16943 0.04285 17.90982 9.49098 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69279 -0.01391 -1.00000 - 6893 2002 3 18 9 21 23 464 4.9735 170.84841 1263.40926 1130.54039 0.04290 17.94462 9.49100 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69206 -0.01391 -1.00000 - 6895 2002 3 18 9 21 33 411 4.9735 170.84767 1263.85795 1130.91085 0.04294 17.88898 9.48845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69134 -0.01391 -1.00000 - 6897 2002 3 18 9 21 43 358 4.9736 170.84693 1264.30672 1131.28139 0.04299 17.89281 9.48466 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.69062 -0.01391 -1.00000 - 6899 2002 3 18 9 21 53 305 4.9736 170.84621 1264.75703 1131.65250 0.04303 17.93358 9.48003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68989 -0.01391 -1.00000 - 6901 2002 3 18 9 22 3 252 4.9736 170.84549 1265.20562 1132.02303 0.04307 17.87544 9.47575 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68917 -0.01391 -1.00000 - 6903 2002 3 18 9 22 13 199 4.9737 170.84478 1265.65352 1132.39353 0.04311 17.94928 9.47190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68845 -0.01391 -1.00000 - 6905 2002 3 18 9 22 23 147 4.9737 170.84409 1266.10257 1132.76402 0.04316 17.85545 9.46624 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68772 -0.01391 -1.00000 - 6907 2002 3 18 9 22 33 94 4.9737 170.84340 1266.55445 1133.13461 0.04320 17.78430 9.45830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68700 -0.01390 -1.00000 - 6909 2002 3 18 9 22 43 42 4.9738 170.84272 1267.00783 1133.50633 0.04323 17.84328 9.44994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68627 -0.01390 -1.00000 - 6911 2002 3 18 9 22 52 989 4.9738 170.84206 1267.46405 1133.87802 0.04326 17.74571 9.44051 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68555 -0.01390 -1.00000 - 6913 2002 3 18 9 23 2 937 4.9738 170.84140 1267.91935 1134.24999 0.04329 17.69740 9.43089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68483 -0.01390 -1.00000 - 6915 2002 3 18 9 23 12 885 4.9739 170.84076 1268.37623 1134.62300 0.04332 17.70999 9.42147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68410 -0.01390 -1.00000 - 6917 2002 3 18 9 23 22 832 4.9739 170.84012 1268.83322 1134.99575 0.04335 17.63473 9.41196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68338 -0.01390 -1.00000 - 6919 2002 3 18 9 23 32 780 4.9739 170.83950 1269.28990 1135.36877 0.04336 17.65951 9.40320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68266 -0.01390 -1.00000 - 6921 2002 3 18 9 23 42 728 4.9740 170.83890 1269.74924 1135.74201 0.04336 17.53565 9.39235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68193 -0.01390 -1.00000 - 6923 2002 3 18 9 23 52 676 4.9740 170.83830 1270.20907 1136.11551 0.04336 17.51631 9.38185 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68121 -0.01390 -1.00000 - 6925 2002 3 18 9 24 2 624 4.9740 170.83772 1270.67084 1136.49006 0.04339 17.52346 9.37138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.68049 -0.01390 -1.00000 - 6927 2002 3 18 9 24 12 572 4.9741 170.83714 1271.13243 1136.86427 0.04344 17.44770 9.36137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67976 -0.01390 -1.00000 - 6929 2002 3 18 9 24 22 520 4.9741 170.83657 1271.59203 1137.23874 0.04349 17.42414 9.35146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67904 -0.01389 -1.00000 - 6931 2002 3 18 9 24 32 469 4.9741 170.83602 1272.05437 1137.61392 0.04353 17.43492 9.34118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67832 -0.01389 -1.00000 - 6933 2002 3 18 9 24 42 417 4.9742 170.83548 1272.52083 1137.98894 0.04357 17.34780 9.32839 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67759 -0.01389 -1.00000 - 6935 2002 3 18 9 24 52 365 4.9742 170.83496 1272.98667 1138.36472 0.04362 17.32221 9.31883 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67687 -0.01389 -1.00000 - 6937 2002 3 18 9 25 2 314 4.9742 170.83444 1273.44967 1138.74039 0.04369 17.34428 9.31041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67615 -0.01389 -1.00000 - 6939 2002 3 18 9 25 12 262 4.9743 170.83394 1273.91031 1139.11558 0.04376 17.35195 9.30399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67542 -0.01389 -1.00000 - 6941 2002 3 18 9 25 22 211 4.9743 170.83344 1274.37147 1139.49047 0.04382 17.34972 9.29819 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67470 -0.01389 -1.00000 - 6943 2002 3 18 9 25 32 160 4.9743 170.83295 1274.83221 1139.86507 0.04384 17.26713 9.29136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67398 -0.01389 -1.00000 - 6945 2002 3 18 9 25 42 108 4.9744 170.83248 1275.29560 1140.23997 0.04384 17.25213 9.28375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67325 -0.01389 -1.00000 - 6947 2002 3 18 9 25 52 57 4.9744 170.83202 1275.76029 1140.61538 0.04383 17.25895 9.27589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67253 -0.01389 -1.00000 - 6949 2002 3 18 9 26 2 6 4.9744 170.83157 1276.22265 1140.99029 0.04383 17.20109 9.27014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67181 -0.01389 -1.00000 - 6951 2002 3 18 9 26 11 955 4.9745 170.83115 1276.68396 1141.36504 0.04386 17.24375 9.26590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67108 -0.01389 -1.00000 - 6953 2002 3 18 9 26 21 904 4.9745 170.83073 1277.14563 1141.73959 0.04391 17.18405 9.26129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.67036 -0.01388 -1.00000 - 6955 2002 3 18 9 26 31 853 4.9745 170.83032 1277.61069 1142.11393 0.04396 17.13333 9.25419 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66964 -0.01388 -1.00000 - 6957 2002 3 18 9 26 41 802 4.9746 170.82992 1278.07428 1142.48914 0.04399 17.14911 9.24794 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66891 -0.01388 -1.00000 - 6959 2002 3 18 9 26 51 751 4.9746 170.82954 1278.53833 1142.86383 0.04403 17.12942 9.24265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66819 -0.01388 -1.00000 - 6961 2002 3 18 9 27 1 700 4.9746 170.82917 1278.99954 1143.23832 0.04406 17.11355 9.23803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66746 -0.01388 -1.00000 - 6963 2002 3 18 9 27 11 650 4.9747 170.82881 1279.46121 1143.61300 0.04410 17.14950 9.23325 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66674 -0.01388 -1.00000 - 6965 2002 3 18 9 27 21 599 4.9747 170.82846 1279.92459 1143.98725 0.04415 17.10063 9.22708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66602 -0.01388 -1.00000 - 6967 2002 3 18 9 27 31 549 4.9747 170.82813 1280.38725 1144.36186 0.04419 17.07235 9.22243 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66529 -0.01388 -1.00000 - 6969 2002 3 18 9 27 41 498 4.9748 170.82781 1280.84946 1144.73661 0.04422 17.12064 9.21856 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66457 -0.01388 -1.00000 - 6971 2002 3 18 9 27 51 448 4.9748 170.82750 1281.31303 1145.11063 0.04425 17.08379 9.21231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66385 -0.01388 -1.00000 - 6973 2002 3 18 9 28 1 397 4.9748 170.82720 1281.77447 1145.48516 0.04428 17.07194 9.21021 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66312 -0.01388 -1.00000 - 6975 2002 3 18 9 28 11 347 4.9749 170.82691 1282.23331 1145.85902 0.04432 17.13377 9.20946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66240 -0.01388 -1.00000 - 6977 2002 3 18 9 28 21 297 4.9749 170.82664 1282.68765 1146.23205 0.04436 17.17004 9.20952 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66168 -0.01387 -1.00000 - 6979 2002 3 18 9 28 31 247 4.9749 170.82638 1283.14243 1146.60447 0.04439 17.21022 9.21011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66095 -0.01387 -1.00000 - 6981 2002 3 18 9 28 41 197 4.9750 170.82613 1283.59820 1146.97644 0.04442 17.14684 9.20847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.66023 -0.01387 -1.00000 - 6983 2002 3 18 9 28 51 147 4.9750 170.82589 1284.05418 1147.34860 0.04444 17.14977 9.20742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65951 -0.01387 -1.00000 - 6985 2002 3 18 9 29 1 97 4.9750 170.82566 1284.51067 1147.72098 0.04447 17.19580 9.20638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65878 -0.01387 -1.00000 - 6987 2002 3 18 9 29 11 47 4.9751 170.82545 1284.96732 1148.09284 0.04450 17.15695 9.20509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65806 -0.01387 -1.00000 - 6989 2002 3 18 9 29 20 997 4.9751 170.82525 1285.42322 1148.46475 0.04453 17.18614 9.20497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65733 -0.01387 -1.00000 - 6991 2002 3 18 9 29 30 947 4.9751 170.82506 1285.88090 1148.83642 0.04456 17.12212 9.20331 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65661 -0.01387 -1.00000 - 6993 2002 3 18 9 29 40 898 4.9752 170.82489 1286.33805 1149.20782 0.04459 17.11366 9.20228 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65589 -0.01387 -1.00000 - 6995 2002 3 18 9 29 50 848 4.9752 170.82472 1286.79595 1149.57979 0.04461 17.16872 9.20162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65516 -0.01387 -1.00000 - 6997 2002 3 18 9 30 0 799 4.9752 170.82457 1287.25384 1149.95102 0.04463 17.13135 9.20064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65444 -0.01387 -1.00000 - 6999 2002 3 18 9 30 10 749 4.9753 170.82444 1287.70966 1150.32202 0.04466 17.10197 9.19988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65372 -0.01386 -1.00000 - 7001 2002 3 18 9 30 20 700 4.9753 170.82431 1288.16574 1150.69396 0.04469 17.15817 9.19994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65299 -0.01386 -1.00000 - 7003 2002 3 18 9 30 30 650 4.9753 170.82420 1288.61981 1151.06566 0.04473 17.14512 9.20189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65227 -0.01386 -1.00000 - 7005 2002 3 18 9 30 40 601 4.9754 170.82410 1289.07260 1151.43754 0.04475 17.22100 9.20458 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65155 -0.01386 -1.00000 - 7007 2002 3 18 9 30 50 552 4.9754 170.82402 1289.52615 1151.80970 0.04478 17.14474 9.20654 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65082 -0.01386 -1.00000 - 7009 2002 3 18 9 31 0 503 4.9754 170.82394 1289.98326 1152.18221 0.04481 17.07923 9.20637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.65010 -0.01386 -1.00000 - 7011 2002 3 18 9 31 10 454 4.9755 170.82388 1290.44260 1152.55608 0.04484 17.18130 9.20684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64937 -0.01386 -1.00000 - 7013 2002 3 18 9 31 20 405 4.9755 170.82383 1290.90361 1152.92984 0.04488 17.15127 9.20718 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64865 -0.01386 -1.00000 - 7015 2002 3 18 9 31 30 356 4.9755 170.82380 1291.36247 1153.30373 0.04492 17.12605 9.20822 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64793 -0.01386 -1.00000 - 7017 2002 3 18 9 31 40 307 4.9756 170.82377 1291.82361 1153.67833 0.04496 17.18060 9.20981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64720 -0.01386 -1.00000 - 7019 2002 3 18 9 31 50 258 4.9756 170.82376 1292.28266 1154.05226 0.04499 17.15295 9.21259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64648 -0.01386 -1.00000 - 7021 2002 3 18 9 32 0 210 4.9756 170.82376 1292.74067 1154.42593 0.04502 17.23151 9.21592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64576 -0.01386 -1.00000 - 7023 2002 3 18 9 32 10 161 4.9757 170.82378 1293.19948 1154.79940 0.04506 17.16207 9.21865 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64503 -0.01385 -1.00000 - 7025 2002 3 18 9 32 20 112 4.9757 170.82380 1293.66265 1155.17276 0.04510 17.09411 9.21914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64431 -0.01385 -1.00000 - 7027 2002 3 18 9 32 30 64 4.9757 170.82384 1294.12639 1155.54706 0.04514 17.18741 9.22025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64359 -0.01385 -1.00000 - 7029 2002 3 18 9 32 40 15 4.9758 170.82390 1294.59091 1155.92082 0.04517 17.15183 9.22167 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64286 -0.01385 -1.00000 - 7032 2002 3 18 9 32 54 943 4.9758 170.82400 1295.28648 1156.48144 0.04521 17.17045 9.22396 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64178 -0.01385 -1.00000 - 7034 2002 3 18 9 33 4 895 4.9759 170.82409 1295.74954 1156.85485 0.04522 17.21114 9.22701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64105 -0.01385 -1.00000 - 7036 2002 3 18 9 33 14 846 4.9759 170.82419 1296.21208 1157.22760 0.04524 17.11233 9.22850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.64033 -0.01385 -1.00000 - 7038 2002 3 18 9 33 24 798 4.9759 170.82430 1296.67554 1157.60062 0.04525 17.20161 9.23079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63961 -0.01385 -1.00000 - 7040 2002 3 18 9 33 34 750 4.9760 170.82442 1297.13957 1157.97301 0.04526 17.16542 9.23190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63888 -0.01385 -1.00000 - 7042 2002 3 18 9 33 44 702 4.9760 170.82456 1297.60261 1158.34511 0.04527 17.13040 9.23289 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63816 -0.01385 -1.00000 - 7044 2002 3 18 9 33 54 654 4.9760 170.82471 1298.06524 1158.71761 0.04529 17.18507 9.23437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63743 -0.01385 -1.00000 - 7046 2002 3 18 9 34 4 606 4.9761 170.82488 1298.52452 1159.08903 0.04531 17.23107 9.23809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63671 -0.01384 -1.00000 - 7048 2002 3 18 9 34 14 558 4.9761 170.82506 1298.98115 1159.45960 0.04532 17.26533 9.24224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63599 -0.01384 -1.00000 - 7050 2002 3 18 9 34 24 511 4.9761 170.82525 1299.43529 1159.82938 0.04534 17.29341 9.24631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63526 -0.01384 -1.00000 - 7052 2002 3 18 9 34 34 463 4.9762 170.82545 1299.89209 1160.19878 0.04535 17.20113 9.24744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63454 -0.01384 -1.00000 - 7054 2002 3 18 9 34 44 415 4.9762 170.82566 1300.34846 1160.56837 0.04537 17.26773 9.24776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63382 -0.01384 -1.00000 - 7056 2002 3 18 9 34 54 368 4.9762 170.82589 1300.80281 1160.93743 0.04539 17.29994 9.24948 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63309 -0.01384 -1.00000 - 7058 2002 3 18 9 35 4 320 4.9763 170.82613 1301.25723 1161.30592 0.04541 17.24294 9.24972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63237 -0.01384 -1.00000 - 7060 2002 3 18 9 35 14 273 4.9763 170.82638 1301.71109 1161.67452 0.04543 17.30297 9.24984 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63164 -0.01384 -1.00000 - 7062 2002 3 18 9 35 24 226 4.9763 170.82665 1302.16400 1162.04258 0.04544 17.28363 9.24821 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63092 -0.01384 -1.00000 - 7064 2002 3 18 9 35 34 178 4.9764 170.82692 1302.61744 1162.41042 0.04545 17.22935 9.24563 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.63020 -0.01384 -1.00000 - 7066 2002 3 18 9 35 44 131 4.9764 170.82721 1303.07065 1162.77874 0.04546 17.29025 9.24316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62947 -0.01384 -1.00000 - 7068 2002 3 18 9 35 54 84 4.9764 170.82751 1303.51892 1163.14606 0.04548 17.34051 9.24261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62875 -0.01383 -1.00000 - 7070 2002 3 18 9 36 4 37 4.9765 170.82783 1303.96381 1163.51264 0.04550 17.37507 9.24219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62802 -0.01383 -1.00000 - 7072 2002 3 18 9 36 13 990 4.9765 170.82815 1304.40740 1163.87865 0.04551 17.39809 9.24116 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62730 -0.01383 -1.00000 - 7074 2002 3 18 9 36 23 943 4.9765 170.82849 1304.85491 1164.24455 0.04553 17.26703 9.23679 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62658 -0.01383 -1.00000 - 7076 2002 3 18 9 36 33 896 4.9766 170.82884 1305.30298 1164.61100 0.04554 17.34537 9.23136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62585 -0.01383 -1.00000 - 7078 2002 3 18 9 36 43 849 4.9766 170.82920 1305.74982 1164.97727 0.04555 17.29394 9.22644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62513 -0.01383 -1.00000 - 7080 2002 3 18 9 36 53 802 4.9766 170.82958 1306.19918 1165.34355 0.04557 17.29035 9.22046 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62441 -0.01383 -1.00000 - 7082 2002 3 18 9 37 3 756 4.9767 170.82996 1306.64817 1165.71030 0.04558 17.30286 9.21358 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62368 -0.01383 -1.00000 - 7084 2002 3 18 9 37 13 709 4.9767 170.83036 1307.09800 1166.07686 0.04560 17.22933 9.20506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62296 -0.01383 -1.00000 - 7086 2002 3 18 9 37 23 663 4.9767 170.83077 1307.54960 1166.44381 0.04561 17.17941 9.19627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62223 -0.01383 -1.00000 - 7088 2002 3 18 9 37 33 616 4.9768 170.83120 1308.00309 1166.81153 0.04562 17.20550 9.18712 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62151 -0.01383 -1.00000 - 7090 2002 3 18 9 37 43 570 4.9768 170.83163 1308.45247 1167.17868 0.04563 17.18780 9.17975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62079 -0.01383 -1.00000 - 7092 2002 3 18 9 37 53 523 4.9768 170.83208 1308.90012 1167.54563 0.04565 17.20465 9.17250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.62006 -0.01382 -1.00000 - 7094 2002 3 18 9 38 3 477 4.9769 170.83254 1309.34825 1167.91247 0.04566 17.15281 9.16459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61934 -0.01382 -1.00000 - 7096 2002 3 18 9 38 13 431 4.9769 170.83302 1309.80036 1168.27953 0.04568 17.02651 9.15364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61862 -0.01382 -1.00000 - 7098 2002 3 18 9 38 23 385 4.9769 170.83350 1310.25602 1168.64767 0.04569 17.07444 9.14267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61789 -0.01382 -1.00000 - 7100 2002 3 18 9 38 33 339 4.9770 170.83400 1310.70945 1169.01569 0.04570 16.99863 9.13179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61717 -0.01382 -1.00000 - 7102 2002 3 18 9 38 43 293 4.9770 170.83451 1311.16608 1169.38402 0.04571 16.97400 9.12064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61644 -0.01382 -1.00000 - 7104 2002 3 18 9 38 53 247 4.9770 170.83503 1311.62221 1169.75299 0.04572 16.97763 9.10881 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61572 -0.01382 -1.00000 - 7106 2002 3 18 9 39 3 201 4.9771 170.83557 1312.07776 1170.12183 0.04573 16.88691 9.09656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61500 -0.01382 -1.00000 - 7108 2002 3 18 9 39 13 155 4.9771 170.83612 1312.53423 1170.49118 0.04574 16.86169 9.08563 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61427 -0.01382 -1.00000 - 7110 2002 3 18 9 39 23 110 4.9771 170.83668 1312.99134 1170.86099 0.04574 16.87095 9.07465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61355 -0.01382 -1.00000 - 7112 2002 3 18 9 39 33 64 4.9772 170.83725 1313.45056 1171.23055 0.04575 16.78287 9.06337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61282 -0.01382 -1.00000 - 7114 2002 3 18 9 39 43 18 4.9772 170.83784 1313.90738 1171.60047 0.04576 16.80333 9.05286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61210 -0.01382 -1.00000 - 7116 2002 3 18 9 39 52 973 4.9772 170.83844 1314.36553 1171.97040 0.04577 16.72060 9.04251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61138 -0.01381 -1.00000 - 7118 2002 3 18 9 40 2 927 4.9773 170.83905 1314.82289 1172.34034 0.04578 16.62544 9.03110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.61065 -0.01381 -1.00000 - 7120 2002 3 18 9 40 12 882 4.9773 170.83967 1315.28541 1172.71140 0.04580 16.68335 9.02099 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60993 -0.01381 -1.00000 - 7122 2002 3 18 9 40 22 837 4.9773 170.84031 1315.74324 1173.08205 0.04580 16.64113 9.01159 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60920 -0.01381 -1.00000 - 7124 2002 3 18 9 40 32 791 4.9774 170.84096 1316.20412 1173.45281 0.04581 16.61410 9.00257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60848 -0.01381 -1.00000 - 7126 2002 3 18 9 40 42 746 4.9774 170.84162 1316.66449 1173.82405 0.04583 16.63514 8.99362 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60776 -0.01381 -1.00000 - 7128 2002 3 18 9 40 52 701 4.9774 170.84230 1317.12173 1174.19480 0.04585 16.57017 8.98501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60703 -0.01381 -1.00000 - 7130 2002 3 18 9 41 2 656 4.9775 170.84299 1317.57997 1174.56575 0.04588 16.55710 8.97819 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60631 -0.01381 -1.00000 - 7132 2002 3 18 9 41 12 611 4.9775 170.84371 1318.03912 1174.93704 0.04592 16.58443 8.97180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60558 -0.01381 -1.00000 - 7134 2002 3 18 9 41 22 566 4.9776 170.84443 1318.49922 1175.30790 0.04597 16.52054 8.96567 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60486 -0.01381 -1.00000 - 7136 2002 3 18 9 41 32 521 4.9776 170.84517 1318.95663 1175.67888 0.04600 16.55961 8.96054 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60414 -0.01381 -1.00000 - 7138 2002 3 18 9 41 42 476 4.9776 170.84591 1319.41491 1176.04969 0.04598 16.52080 8.95611 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60341 -0.01380 -1.00000 - 7140 2002 3 18 9 41 52 432 4.9777 170.84667 1319.87229 1176.42030 0.04594 16.43114 8.94986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60269 -0.01380 -1.00000 - 7142 2002 3 18 9 42 2 387 4.9777 170.84745 1320.33469 1176.79184 0.04600 16.49019 8.94523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60196 -0.01380 -1.00000 - 7144 2002 3 18 9 42 12 343 4.9778 170.84822 1320.79195 1177.16282 0.04629 16.46687 8.94205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60124 -0.01380 -1.00000 - 7146 2002 3 18 9 42 22 298 4.9778 170.84894 1321.25255 1177.53365 0.04682 16.47731 8.93962 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.60052 -0.01380 -1.00000 - 7148 2002 3 18 9 42 32 254 4.9778 170.84969 1321.70881 1177.90451 0.04732 16.50691 8.93708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59979 -0.01380 -1.00000 - 7150 2002 3 18 9 42 42 210 4.9778 170.85044 1322.16732 1178.27499 0.04740 16.45374 8.93381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59907 -0.01380 -1.00000 - 7152 2002 3 18 9 42 52 165 4.9779 170.85124 1322.62810 1178.64581 0.04691 16.42295 8.93194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59834 -0.01380 -1.00000 - 7154 2002 3 18 9 43 2 121 4.9779 170.85203 1323.08781 1179.01680 0.04612 16.46812 8.93090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59762 -0.01380 -1.00000 - 7156 2002 3 18 9 43 12 77 4.9779 170.85290 1323.54910 1179.38720 0.04541 16.42145 8.92973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59690 -0.01380 -1.00000 - 7158 2002 3 18 9 43 22 33 4.9780 170.85377 1324.00716 1179.75769 0.04509 16.45999 8.92987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59617 -0.01380 -1.00000 - 7160 2002 3 18 9 43 31 989 4.9780 170.85468 1324.46542 1180.12779 0.04508 16.40705 8.93054 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59545 -0.01380 -1.00000 - 7162 2002 3 18 9 43 41 945 4.9780 170.85562 1324.92172 1180.49751 0.04502 16.34930 8.92972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59472 -0.01379 -1.00000 - 7164 2002 3 18 9 43 51 901 4.9780 170.85657 1325.38411 1180.86804 0.04510 16.43952 8.93042 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59400 -0.01379 -1.00000 - 7166 2002 3 18 9 44 1 857 4.9781 170.85754 1325.84050 1181.23779 0.04520 16.42996 8.93230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59328 -0.01379 -1.00000 - 7168 2002 3 18 9 44 11 813 4.9781 170.85848 1326.30044 1181.60733 0.04534 16.44267 8.93467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59255 -0.01379 -1.00000 - 7170 2002 3 18 9 44 21 769 4.9781 170.85947 1326.75742 1181.97694 0.04561 16.49287 8.93689 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59183 -0.01379 -1.00000 - 7172 2002 3 18 9 44 31 726 4.9782 170.86041 1327.21531 1182.34592 0.04588 16.45660 8.93873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59110 -0.01379 -1.00000 - 7174 2002 3 18 9 44 41 682 4.9782 170.86138 1327.67742 1182.71500 0.04612 16.44889 8.94195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.59038 -0.01379 -1.00000 - 7176 2002 3 18 9 44 51 639 4.9783 170.86235 1328.13983 1183.08404 0.04628 16.51009 8.94565 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58966 -0.01379 -1.00000 - 7178 2002 3 18 9 45 1 595 4.9783 170.86332 1328.60501 1183.45217 0.04639 16.47530 8.94915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58893 -0.01379 -1.00000 - 7180 2002 3 18 9 45 11 552 4.9783 170.86428 1329.06894 1183.81996 0.04652 16.53688 8.95351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58821 -0.01379 -1.00000 - 7182 2002 3 18 9 45 21 509 4.9784 170.86528 1329.53466 1184.18735 0.04663 16.52240 8.95832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58748 -0.01379 -1.00000 - 7184 2002 3 18 9 45 31 465 4.9784 170.86625 1330.00049 1184.55455 0.04667 16.46928 8.96088 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58676 -0.01379 -1.00000 - 7186 2002 3 18 9 45 41 422 4.9784 170.86726 1330.47306 1184.92267 0.04663 16.55724 8.96479 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58604 -0.01378 -1.00000 - 7188 2002 3 18 9 45 51 379 4.9785 170.86827 1330.93954 1185.28989 0.04656 16.56790 8.96992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58531 -0.01378 -1.00000 - 7190 2002 3 18 9 46 1 336 4.9785 170.86931 1331.40843 1185.65638 0.04646 16.61740 8.97532 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58459 -0.01378 -1.00000 - 7192 2002 3 18 9 46 11 293 4.9785 170.87036 1331.87126 1186.02225 0.04638 16.67698 8.97993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58386 -0.01378 -1.00000 - 7194 2002 3 18 9 46 21 250 4.9786 170.87143 1332.33135 1186.38695 0.04627 16.66014 8.98304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58314 -0.01378 -1.00000 - 7196 2002 3 18 9 46 31 208 4.9786 170.87253 1332.79328 1186.75121 0.04616 16.65062 8.98647 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58242 -0.01378 -1.00000 - 7198 2002 3 18 9 46 41 165 4.9786 170.87364 1333.24952 1187.11497 0.04604 16.72598 8.98978 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58169 -0.01378 -1.00000 - 7200 2002 3 18 9 46 51 122 4.9787 170.87477 1333.69982 1187.47726 0.04596 16.72281 8.99345 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58097 -0.01378 -1.00000 - 7202 2002 3 18 9 47 1 80 4.9787 170.87591 1334.14182 1187.83867 0.04591 16.80527 8.99715 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.58024 -0.01378 -1.00000 - 7204 2002 3 18 9 47 11 37 4.9787 170.87708 1334.57923 1188.19919 0.04588 16.81723 9.00045 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57952 -0.01378 -1.00000 - 7206 2002 3 18 9 47 20 995 4.9788 170.87825 1335.01026 1188.55897 0.04586 16.79080 9.00005 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57880 -0.01378 -1.00000 - 7208 2002 3 18 9 47 30 952 4.9788 170.87945 1335.44333 1188.91933 0.04588 16.86761 9.00048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57807 -0.01377 -1.00000 - 7210 2002 3 18 9 47 40 910 4.9788 170.88065 1335.86510 1189.27884 0.04593 16.93007 9.00184 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57735 -0.01377 -1.00000 - 7212 2002 3 18 9 47 50 868 4.9789 170.88187 1336.28438 1189.63775 0.04599 16.99987 9.00300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57662 -0.01377 -1.00000 - 7214 2002 3 18 9 48 0 825 4.9789 170.88309 1336.69615 1189.99648 0.04606 17.08921 9.00270 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57590 -0.01377 -1.00000 - 7216 2002 3 18 9 48 10 783 4.9789 170.88433 1337.10427 1190.35487 0.04614 17.11266 9.00020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57517 -0.01377 -1.00000 - 7218 2002 3 18 9 48 20 741 4.9790 170.88557 1337.51724 1190.71385 0.04621 17.12845 8.99675 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57445 -0.01377 -1.00000 - 7220 2002 3 18 9 48 30 699 4.9790 170.88683 1337.92808 1191.07362 0.04627 17.21981 8.99226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57373 -0.01377 -1.00000 - 7222 2002 3 18 9 48 40 657 4.9790 170.88809 1338.34112 1191.43349 0.04631 17.14378 8.98662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57300 -0.01377 -1.00000 - 7224 2002 3 18 9 48 50 615 4.9791 170.88937 1338.75493 1191.79424 0.04635 17.26014 8.98056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57228 -0.01377 -1.00000 - 7226 2002 3 18 9 49 0 574 4.9791 170.89066 1339.17403 1192.15588 0.04638 17.19295 8.97309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57155 -0.01377 -1.00000 - 7228 2002 3 18 9 49 10 532 4.9792 170.89197 1339.60128 1192.51876 0.04638 17.00536 8.96153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57083 -0.01377 -1.00000 - 7230 2002 3 18 9 49 20 490 4.9792 170.89329 1340.04067 1192.88429 0.04637 17.07102 8.95077 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.57011 -0.01377 -1.00000 - 7232 2002 3 18 9 49 30 449 4.9792 170.89463 1340.48613 1193.25089 0.04635 16.98261 8.94141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56938 -0.01376 -1.00000 - 7234 2002 3 18 9 49 40 407 4.9793 170.89599 1340.93951 1193.61877 0.04633 16.89489 8.93246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56866 -0.01376 -1.00000 - 7236 2002 3 18 9 49 50 366 4.9793 170.89737 1341.40158 1193.98815 0.04630 16.78760 8.92286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56793 -0.01376 -1.00000 - 7238 2002 3 18 9 50 0 324 4.9793 170.89877 1341.87341 1194.35875 0.04627 16.50888 8.91250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56721 -0.01376 -1.00000 - 7240 2002 3 18 9 50 10 283 4.9794 170.90019 1342.35707 1194.73130 0.04623 16.44092 8.90227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56648 -0.01376 -1.00000 - 7242 2002 3 18 9 50 20 242 4.9794 170.90163 1342.84716 1195.10542 0.04621 16.33833 8.89247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56576 -0.01376 -1.00000 - 7244 2002 3 18 9 50 30 201 4.9794 170.90309 1343.34256 1195.48017 0.04619 16.14680 8.88254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56504 -0.01376 -1.00000 - 7246 2002 3 18 9 50 40 160 4.9795 170.90457 1343.84408 1195.85590 0.04618 16.05565 8.87499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56431 -0.01376 -1.00000 - 7248 2002 3 18 9 50 50 119 4.9795 170.90608 1344.34432 1196.23199 0.04617 15.99796 8.86902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56359 -0.01376 -1.00000 - 7250 2002 3 18 9 51 0 78 4.9795 170.90761 1344.84703 1196.60787 0.04615 15.89643 8.86152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56286 -0.01376 -1.00000 - 7252 2002 3 18 9 51 10 37 4.9796 170.90913 1345.35116 1196.98420 0.04619 15.82423 8.85618 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56214 -0.01376 -1.00000 - 7255 2002 3 18 9 51 24 976 4.9796 170.91147 1346.09744 1197.54709 0.04629 15.84607 8.85101 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56105 -0.01375 -1.00000 - 7257 2002 3 18 9 51 34 935 4.9797 170.91302 1346.59604 1197.92141 0.04630 15.76289 8.84955 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.56033 -0.01375 -1.00000 - 7259 2002 3 18 9 51 44 894 4.9797 170.91458 1347.08777 1198.29469 0.04628 15.82346 8.84911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55960 -0.01375 -1.00000 - 7261 2002 3 18 9 51 54 854 4.9797 170.91615 1347.57570 1198.66645 0.04629 15.85588 8.84628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55888 -0.01375 -1.00000 - 7263 2002 3 18 9 52 4 813 4.9798 170.91771 1348.06278 1199.03747 0.04629 15.82301 8.84669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55816 -0.01375 -1.00000 - 7265 2002 3 18 9 52 14 773 4.9798 170.91929 1348.53981 1199.40649 0.04629 15.97209 8.84919 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55743 -0.01375 -1.00000 - 7267 2002 3 18 9 52 24 733 4.9798 170.92087 1349.00750 1199.77301 0.04627 16.02475 8.85367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55671 -0.01375 -1.00000 - 7269 2002 3 18 9 52 34 692 4.9799 170.92245 1349.46474 1200.13723 0.04626 16.14249 8.85792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55598 -0.01375 -1.00000 - 7271 2002 3 18 9 52 44 652 4.9799 170.92404 1349.91237 1200.49908 0.04625 16.23195 8.86184 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55526 -0.01375 -1.00000 - 7273 2002 3 18 9 52 54 612 4.9799 170.92563 1350.35627 1200.85921 0.04623 16.25215 8.86381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55453 -0.01375 -1.00000 - 7275 2002 3 18 9 53 4 572 4.9800 170.92723 1350.79434 1201.21826 0.04622 16.42007 8.86607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55381 -0.01375 -1.00000 - 7277 2002 3 18 9 53 14 532 4.9800 170.92885 1351.21882 1201.57519 0.04620 16.48150 8.86861 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55309 -0.01374 -1.00000 - 7279 2002 3 18 9 53 24 492 4.9800 170.93046 1351.64185 1201.93091 0.04619 16.57615 8.86953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55236 -0.01374 -1.00000 - 7281 2002 3 18 9 53 34 452 4.9801 170.93209 1352.05885 1202.28604 0.04619 16.69018 8.86940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55164 -0.01374 -1.00000 - 7283 2002 3 18 9 53 44 412 4.9801 170.93374 1352.46586 1202.63987 0.04618 16.66768 8.86909 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55091 -0.01374 -1.00000 - 7285 2002 3 18 9 53 54 372 4.9801 170.93541 1352.87658 1202.99356 0.04618 16.77279 8.86804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.55019 -0.01374 -1.00000 - 7287 2002 3 18 9 54 4 333 4.9802 170.93711 1353.28226 1203.34732 0.04619 16.84469 8.86580 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54946 -0.01374 -1.00000 - 7289 2002 3 18 9 54 14 293 4.9802 170.93883 1353.69055 1203.70115 0.04620 16.76678 8.85968 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54874 -0.01374 -1.00000 - 7291 2002 3 18 9 54 24 254 4.9802 170.94058 1354.10158 1204.05593 0.04620 16.82836 8.85478 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54801 -0.01374 -1.00000 - 7293 2002 3 18 9 54 34 214 4.9803 170.94238 1354.50902 1204.41092 0.04620 16.89003 8.85018 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54729 -0.01374 -1.00000 - 7295 2002 3 18 9 54 44 175 4.9803 170.94421 1354.92151 1204.76601 0.04622 16.79698 8.84378 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54657 -0.01374 -1.00000 - 7297 2002 3 18 9 54 54 135 4.9803 170.94608 1355.33556 1205.12197 0.04626 16.90168 8.83608 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54584 -0.01374 -1.00000 - 7299 2002 3 18 9 55 4 96 4.9804 170.94799 1355.75120 1205.47828 0.04628 16.85375 8.82834 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54512 -0.01374 -1.00000 - 7301 2002 3 18 9 55 14 57 4.9804 170.94992 1356.17611 1205.83541 0.04629 16.75017 8.81763 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54439 -0.01373 -1.00000 - 7303 2002 3 18 9 55 24 18 4.9804 170.95189 1356.61027 1206.19415 0.04630 16.79435 8.80674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54367 -0.01373 -1.00000 - 7305 2002 3 18 9 55 33 979 4.9805 170.95389 1357.04813 1206.55348 0.04630 16.59810 8.79445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54294 -0.01373 -1.00000 - 7307 2002 3 18 9 55 43 940 4.9805 170.95591 1357.49343 1206.91404 0.04631 16.56013 8.78070 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54222 -0.01373 -1.00000 - 7309 2002 3 18 9 55 53 901 4.9805 170.95797 1357.95232 1207.27642 0.04632 16.50465 8.76745 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54150 -0.01373 -1.00000 - 7311 2002 3 18 9 56 3 862 4.9806 170.96006 1358.41113 1207.63904 0.04632 16.36896 8.75620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54077 -0.01373 -1.00000 - 7313 2002 3 18 9 56 13 823 4.9806 170.96218 1358.87361 1208.00224 0.04632 16.31585 8.74512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.54005 -0.01373 -1.00000 - 7315 2002 3 18 9 56 23 784 4.9806 170.96434 1359.33825 1208.36602 0.04632 16.20197 8.73426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53932 -0.01373 -1.00000 - 7317 2002 3 18 9 56 33 745 4.9807 170.96653 1359.81321 1208.73066 0.04632 15.93309 8.72099 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53860 -0.01373 -1.00000 - 7319 2002 3 18 9 56 43 707 4.9807 170.96875 1360.29344 1209.09668 0.04633 15.91079 8.70944 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53787 -0.01373 -1.00000 - 7321 2002 3 18 9 56 53 668 4.9807 170.97101 1360.76961 1209.46312 0.04633 15.83867 8.69963 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53715 -0.01373 -1.00000 - 7323 2002 3 18 9 57 3 630 4.9808 170.97332 1361.24933 1209.82975 0.04634 15.71614 8.68801 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53642 -0.01373 -1.00000 - 7325 2002 3 18 9 57 13 591 4.9808 170.97565 1361.72796 1210.19717 0.04635 15.64862 8.67834 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53570 -0.01372 -1.00000 - 7327 2002 3 18 9 57 23 553 4.9808 170.97803 1362.19872 1210.56424 0.04636 15.67264 8.67122 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53498 -0.01372 -1.00000 - 7329 2002 3 18 9 57 33 515 4.9809 170.98046 1362.66733 1210.93076 0.04637 15.62578 8.66288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53425 -0.01372 -1.00000 - 7331 2002 3 18 9 57 43 476 4.9809 170.98292 1363.13365 1211.29747 0.04638 15.60667 8.65615 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53353 -0.01372 -1.00000 - 7333 2002 3 18 9 57 53 438 4.9809 170.98541 1363.59291 1211.66330 0.04640 15.69609 8.65018 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53280 -0.01372 -1.00000 - 7335 2002 3 18 9 58 3 400 4.9810 170.98793 1364.04643 1212.02867 0.04640 15.58301 8.64304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53208 -0.01372 -1.00000 - 7337 2002 3 18 9 58 13 362 4.9810 170.99046 1364.50266 1212.39430 0.04639 15.67473 8.63779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53135 -0.01372 -1.00000 - 7339 2002 3 18 9 58 23 324 4.9810 170.99301 1364.94612 1212.75848 0.04637 15.75294 8.63467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.53063 -0.01372 -1.00000 - 7341 2002 3 18 9 58 33 286 4.9811 170.99557 1365.39187 1213.12199 0.04634 15.78468 8.63169 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52990 -0.01372 -1.00000 - 7343 2002 3 18 9 58 43 248 4.9811 170.99813 1365.83346 1213.48510 0.04632 15.87386 8.62892 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52918 -0.01372 -1.00000 - 7345 2002 3 18 9 58 53 211 4.9811 171.00069 1366.26972 1213.84712 0.04630 15.82222 8.62710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52846 -0.01372 -1.00000 - 7347 2002 3 18 9 59 3 173 4.9812 171.00325 1366.71437 1214.20919 0.04629 15.89776 8.62501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52773 -0.01371 -1.00000 - 7349 2002 3 18 9 59 13 135 4.9812 171.00582 1367.15912 1214.57145 0.04628 15.94526 8.62290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52701 -0.01371 -1.00000 - 7351 2002 3 18 9 59 23 98 4.9812 171.00838 1367.59944 1214.93297 0.04626 15.85569 8.62166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52628 -0.01371 -1.00000 - 7353 2002 3 18 9 59 33 60 4.9813 171.01093 1368.04994 1215.29475 0.04626 15.89920 8.62061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52556 -0.01371 -1.00000 - 7355 2002 3 18 9 59 43 23 4.9813 171.01348 1368.49805 1215.65670 0.04625 15.92547 8.61965 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52483 -0.01371 -1.00000 - 7357 2002 3 18 9 59 52 986 4.9813 171.01602 1368.94794 1216.01834 0.04624 15.81373 8.61685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52411 -0.01371 -1.00000 - 7359 2002 3 18 10 0 2 948 4.9814 171.01855 1369.40640 1216.38057 0.04625 15.81341 8.61583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52338 -0.01371 -1.00000 - 7361 2002 3 18 10 0 12 911 4.9814 171.02108 1369.85989 1216.74275 0.04624 15.84608 8.61621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52266 -0.01371 -1.00000 - 7363 2002 3 18 10 0 22 874 4.9814 171.02360 1370.31404 1217.10481 0.04625 15.75276 8.61587 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52194 -0.01371 -1.00000 - 7365 2002 3 18 10 0 32 837 4.9815 171.02610 1370.77065 1217.46797 0.04625 15.80259 8.61695 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52121 -0.01371 -1.00000 - 7367 2002 3 18 10 0 42 800 4.9815 171.02862 1371.22311 1217.83164 0.04621 15.83234 8.61949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.52049 -0.01371 -1.00000 - 7369 2002 3 18 10 0 52 763 4.9815 171.03110 1371.68051 1218.19575 0.04624 15.75223 8.61957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51976 -0.01371 -1.00000 - 7371 2002 3 18 10 1 2 726 4.9816 171.03361 1372.14029 1218.56086 0.04623 15.78334 8.62207 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51904 -0.01370 -1.00000 - 7373 2002 3 18 10 1 12 689 4.9816 171.03609 1372.59458 1218.92591 0.04623 15.83881 8.62661 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51831 -0.01370 -1.00000 - 7375 2002 3 18 10 1 22 652 4.9816 171.03855 1373.05092 1219.29048 0.04626 15.77980 8.62950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51759 -0.01370 -1.00000 - 7377 2002 3 18 10 1 32 616 4.9817 171.04107 1373.50758 1219.65536 0.04622 15.86978 8.63359 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51686 -0.01370 -1.00000 - 7379 2002 3 18 10 1 42 579 4.9817 171.04349 1373.96104 1220.01957 0.04625 15.86852 8.63807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51614 -0.01370 -1.00000 - 7381 2002 3 18 10 1 52 543 4.9817 171.04597 1374.41302 1220.38344 0.04627 15.78824 8.64057 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51541 -0.01370 -1.00000 - 7383 2002 3 18 10 2 2 506 4.9818 171.04848 1374.87114 1220.74785 0.04622 15.93352 8.64495 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51469 -0.01370 -1.00000 - 7385 2002 3 18 10 2 12 470 4.9818 171.05089 1375.31995 1221.11103 0.04627 15.92502 8.65052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51397 -0.01370 -1.00000 - 7387 2002 3 18 10 2 22 433 4.9818 171.05345 1375.77332 1221.47367 0.04626 15.94928 8.65488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51324 -0.01370 -1.00000 - 7389 2002 3 18 10 2 32 397 4.9819 171.05596 1376.22655 1221.83623 0.04619 16.03529 8.65954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51252 -0.01370 -1.00000 - 7391 2002 3 18 10 2 42 361 4.9819 171.05844 1376.67574 1222.19774 0.04620 15.98037 8.66455 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51179 -0.01370 -1.00000 - 7393 2002 3 18 10 2 52 325 4.9819 171.06107 1377.12761 1222.55900 0.04617 15.97764 8.66789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51107 -0.01369 -1.00000 - 7395 2002 3 18 10 3 2 289 4.9820 171.06358 1377.58386 1222.92053 0.04611 16.06120 8.67211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.51034 -0.01369 -1.00000 - 7397 2002 3 18 10 3 12 253 4.9820 171.06617 1378.03071 1223.28082 0.04608 16.03078 8.67655 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50962 -0.01369 -1.00000 - 7399 2002 3 18 10 3 22 217 4.9820 171.06883 1378.48450 1223.64079 0.04602 16.06553 8.68069 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50889 -0.01369 -1.00000 - 7401 2002 3 18 10 3 32 181 4.9820 171.07138 1378.93275 1224.00041 0.04596 16.12432 8.68439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50817 -0.01369 -1.00000 - 7403 2002 3 18 10 3 42 145 4.9821 171.07408 1379.37894 1224.35911 0.04596 16.05591 8.68608 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50744 -0.01369 -1.00000 - 7405 2002 3 18 10 3 52 109 4.9821 171.07674 1379.83227 1224.71787 0.04590 16.08858 8.68883 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50672 -0.01369 -1.00000 - 7407 2002 3 18 10 4 2 73 4.9821 171.07938 1380.27813 1225.07618 0.04587 16.15280 8.69184 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50599 -0.01369 -1.00000 - 7409 2002 3 18 10 4 12 38 4.9822 171.08215 1380.72183 1225.43363 0.04590 16.07684 8.69164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50527 -0.01369 -1.00000 - 7411 2002 3 18 10 4 22 2 4.9822 171.08482 1381.17227 1225.79123 0.04583 16.11666 8.69258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50455 -0.01369 -1.00000 - 7413 2002 3 18 10 4 31 966 4.9822 171.08757 1381.61439 1226.14831 0.04582 16.18283 8.69412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50382 -0.01369 -1.00000 - 7415 2002 3 18 10 4 41 931 4.9823 171.09037 1382.05501 1226.50457 0.04584 16.09326 8.69211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50310 -0.01369 -1.00000 - 7417 2002 3 18 10 4 51 896 4.9823 171.09309 1382.50157 1226.86109 0.04579 16.14943 8.69121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50237 -0.01368 -1.00000 - 7419 2002 3 18 10 5 1 860 4.9823 171.09592 1382.94016 1227.21711 0.04580 16.20951 8.69102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50165 -0.01368 -1.00000 - 7421 2002 3 18 10 5 11 825 4.9824 171.09874 1383.37933 1227.57252 0.04588 16.09091 8.68683 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50092 -0.01368 -1.00000 - 7423 2002 3 18 10 5 21 790 4.9824 171.10152 1383.82150 1227.92833 0.04592 16.17640 8.68436 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.50020 -0.01368 -1.00000 - 7425 2002 3 18 10 5 31 754 4.9824 171.10442 1384.25656 1228.28352 0.04596 16.22515 8.68274 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49947 -0.01368 -1.00000 - 7427 2002 3 18 10 5 41 719 4.9824 171.10725 1384.69308 1228.63817 0.04603 16.07790 8.67761 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49875 -0.01368 -1.00000 - 7429 2002 3 18 10 5 51 684 4.9825 171.11012 1385.13283 1228.99337 0.04597 16.19072 8.67323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49802 -0.01368 -1.00000 - 7431 2002 3 18 10 6 1 649 4.9825 171.11306 1385.56864 1229.34813 0.04597 16.10027 8.66823 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49730 -0.01368 -1.00000 - 7433 2002 3 18 10 6 11 614 4.9825 171.11591 1386.00444 1229.70295 0.04597 15.99692 8.66005 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49657 -0.01368 -1.00000 - 7435 2002 3 18 10 6 21 580 4.9826 171.11888 1386.44793 1230.05884 0.04589 16.12420 8.65336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49585 -0.01368 -1.00000 - 7437 2002 3 18 10 6 31 545 4.9826 171.12180 1386.88364 1230.41411 0.04591 16.03332 8.64691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49512 -0.01368 -1.00000 - 7439 2002 3 18 10 6 41 510 4.9826 171.12465 1387.32215 1230.76948 0.04589 15.95390 8.63748 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49440 -0.01368 -1.00000 - 7441 2002 3 18 10 6 51 475 4.9827 171.12759 1387.76628 1231.12583 0.04582 16.05673 8.62921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49368 -0.01367 -1.00000 - 7443 2002 3 18 10 7 1 441 4.9827 171.13042 1388.20532 1231.48180 0.04581 15.94103 8.62083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49295 -0.01367 -1.00000 - 7445 2002 3 18 10 7 11 406 4.9827 171.13325 1388.64658 1231.83813 0.04579 15.84552 8.60964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49223 -0.01367 -1.00000 - 7447 2002 3 18 10 7 21 372 4.9828 171.13616 1389.09568 1232.19564 0.04573 15.94339 8.60006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49150 -0.01367 -1.00000 - 7449 2002 3 18 10 7 31 337 4.9828 171.13893 1389.53939 1232.55278 0.04574 15.84045 8.59038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49078 -0.01367 -1.00000 - 7451 2002 3 18 10 7 41 303 4.9828 171.14178 1389.98363 1232.91023 0.04572 15.74009 8.57822 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.49005 -0.01367 -1.00000 - 7453 2002 3 18 10 7 51 269 4.9829 171.14466 1390.43627 1233.26886 0.04565 15.82593 8.56786 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48933 -0.01367 -1.00000 - 7455 2002 3 18 10 8 1 235 4.9829 171.14738 1390.88022 1233.62694 0.04570 15.72674 8.55752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48860 -0.01367 -1.00000 - 7457 2002 3 18 10 8 11 200 4.9829 171.15028 1391.32935 1233.98544 0.04566 15.71609 8.54652 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48788 -0.01367 -1.00000 - 7459 2002 3 18 10 8 21 166 4.9830 171.15311 1391.78173 1234.34466 0.04563 15.73554 8.53629 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48715 -0.01367 -1.00000 - 7461 2002 3 18 10 8 31 132 4.9830 171.15585 1392.22511 1234.70322 0.04565 15.63024 8.52649 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48643 -0.01367 -1.00000 - 7463 2002 3 18 10 8 41 98 4.9830 171.15880 1392.67872 1235.06231 0.04561 15.63684 8.51680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48570 -0.01366 -1.00000 - 7465 2002 3 18 10 8 51 65 4.9831 171.16156 1393.12833 1235.42176 0.04560 15.64952 8.50725 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48498 -0.01366 -1.00000 - 7467 2002 3 18 10 9 1 31 4.9831 171.16437 1393.57622 1235.78091 0.04558 15.52634 8.49646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48425 -0.01366 -1.00000 - 7469 2002 3 18 10 9 10 997 4.9831 171.16731 1394.03388 1236.14081 0.04556 15.52702 8.48737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48353 -0.01366 -1.00000 - 7471 2002 3 18 10 9 20 963 4.9832 171.17005 1394.48548 1236.50085 0.04551 15.55202 8.47914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48280 -0.01366 -1.00000 - 7473 2002 3 18 10 9 30 930 4.9832 171.17295 1394.93503 1236.86042 0.04547 15.44673 8.46914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48208 -0.01366 -1.00000 - 7475 2002 3 18 10 9 40 896 4.9832 171.17584 1395.39341 1237.22057 0.04546 15.45127 8.46103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48135 -0.01366 -1.00000 - 7477 2002 3 18 10 9 50 863 4.9832 171.17864 1395.84432 1237.58063 0.04540 15.48644 8.45418 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.48063 -0.01366 -1.00000 - 7479 2002 3 18 10 10 0 829 4.9833 171.18156 1396.29393 1237.94014 0.04535 15.38044 8.44511 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47991 -0.01366 -1.00000 - 7481 2002 3 18 10 10 10 796 4.9833 171.18445 1396.75254 1238.30022 0.04534 15.39851 8.43815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47918 -0.01366 -1.00000 - 7483 2002 3 18 10 10 20 762 4.9833 171.18731 1397.20284 1238.66004 0.04528 15.44264 8.43262 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47846 -0.01366 -1.00000 - 7485 2002 3 18 10 10 30 729 4.9834 171.19025 1397.65203 1239.01923 0.04526 15.33819 8.42448 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47773 -0.01366 -1.00000 - 7487 2002 3 18 10 10 40 696 4.9834 171.19316 1398.11064 1239.37894 0.04525 15.36077 8.41865 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47701 -0.01365 -1.00000 - 7489 2002 3 18 10 10 50 663 4.9834 171.19607 1398.56054 1239.73829 0.04522 15.41331 8.41445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47628 -0.01365 -1.00000 - 7491 2002 3 18 10 11 0 630 4.9835 171.19903 1399.00915 1240.09695 0.04522 15.30996 8.40713 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47556 -0.01365 -1.00000 - 7493 2002 3 18 10 11 10 597 4.9835 171.20196 1399.46775 1240.45612 0.04521 15.33373 8.40233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47483 -0.01365 -1.00000 - 7495 2002 3 18 10 11 20 564 4.9835 171.20492 1399.91730 1240.81483 0.04519 15.39337 8.39934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47411 -0.01365 -1.00000 - 7497 2002 3 18 10 11 30 531 4.9836 171.20789 1400.36511 1241.17274 0.04520 15.28970 8.39303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47338 -0.01365 -1.00000 - 7499 2002 3 18 10 11 40 498 4.9836 171.21086 1400.82203 1241.53103 0.04521 15.32955 8.38955 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47266 -0.01365 -1.00000 - 7501 2002 3 18 10 11 50 465 4.9836 171.21385 1401.26965 1241.88867 0.04520 15.39383 8.38791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47193 -0.01365 -1.00000 - 7503 2002 3 18 10 12 0 432 4.9837 171.21684 1401.71593 1242.24543 0.04520 15.28861 8.38280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47121 -0.01365 -1.00000 - 7505 2002 3 18 10 12 10 400 4.9837 171.21984 1402.16877 1242.60245 0.04520 15.35494 8.38080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.47048 -0.01365 -1.00000 - 7507 2002 3 18 10 12 20 367 4.9837 171.22286 1402.61211 1242.95858 0.04518 15.42041 8.38051 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46976 -0.01365 -1.00000 - 7509 2002 3 18 10 12 30 335 4.9837 171.22588 1403.05613 1243.31379 0.04516 15.30971 8.37706 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46903 -0.01364 -1.00000 - 7511 2002 3 18 10 12 40 302 4.9838 171.22892 1403.50255 1243.66909 0.04513 15.40978 8.37613 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46831 -0.01364 -1.00000 - 7513 2002 3 18 10 12 50 270 4.9838 171.23197 1403.93994 1244.02337 0.04510 15.45395 8.37655 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46758 -0.01364 -1.00000 - 7515 2002 3 18 10 13 0 237 4.9838 171.23503 1404.37975 1244.37688 0.04506 15.34515 8.37393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46686 -0.01364 -1.00000 - 7517 2002 3 18 10 13 10 205 4.9839 171.23810 1404.82201 1244.73065 0.04502 15.45322 8.37344 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46613 -0.01364 -1.00000 - 7519 2002 3 18 10 13 20 173 4.9839 171.24118 1405.25509 1245.08341 0.04498 15.43616 8.37352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46541 -0.01364 -1.00000 - 7521 2002 3 18 10 13 30 141 4.9839 171.24428 1405.69069 1245.43564 0.04493 15.35870 8.37103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46468 -0.01364 -1.00000 - 7523 2002 3 18 10 13 40 109 4.9840 171.24739 1406.12917 1245.78827 0.04490 15.48361 8.37054 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46396 -0.01364 -1.00000 - 7525 2002 3 18 10 13 50 77 4.9840 171.25051 1406.55935 1246.13997 0.04486 15.41995 8.36995 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46323 -0.01364 -1.00000 - 7527 2002 3 18 10 14 0 45 4.9840 171.25364 1406.99065 1246.49142 0.04483 15.34751 8.36669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46251 -0.01364 -1.00000 - 7529 2002 3 18 10 14 10 13 4.9841 171.25679 1407.42710 1246.84360 0.04480 15.48946 8.36569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46178 -0.01364 -1.00000 - 7532 2002 3 18 10 14 24 965 4.9841 171.26154 1408.06479 1247.37023 0.04477 15.41664 8.36310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.46070 -0.01364 -1.00000 - 7534 2002 3 18 10 14 34 933 4.9841 171.26472 1408.49988 1247.72175 0.04476 15.47681 8.36168 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45997 -0.01363 -1.00000 - 7536 2002 3 18 10 14 44 902 4.9842 171.26791 1408.92708 1248.07315 0.04475 15.52588 8.36081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45925 -0.01363 -1.00000 - 7538 2002 3 18 10 14 54 870 4.9842 171.27111 1409.35421 1248.42420 0.04474 15.39748 8.35686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45852 -0.01363 -1.00000 - 7540 2002 3 18 10 15 4 838 4.9842 171.27433 1409.79281 1248.77618 0.04472 15.43941 8.35474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45780 -0.01363 -1.00000 - 7542 2002 3 18 10 15 14 807 4.9843 171.27757 1410.22368 1249.12822 0.04470 15.48414 8.35352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45707 -0.01363 -1.00000 - 7544 2002 3 18 10 15 24 775 4.9843 171.28081 1410.65468 1249.48049 0.04469 15.34701 8.34964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45635 -0.01363 -1.00000 - 7546 2002 3 18 10 15 34 744 4.9843 171.28406 1411.09855 1249.83478 0.04472 15.39294 8.34766 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45562 -0.01363 -1.00000 - 7548 2002 3 18 10 15 44 713 4.9843 171.28734 1411.53673 1250.19022 0.04472 15.42793 8.34675 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45490 -0.01363 -1.00000 - 7550 2002 3 18 10 15 54 681 4.9844 171.29062 1411.97715 1250.54632 0.04469 15.27902 8.34340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45417 -0.01363 -1.00000 - 7552 2002 3 18 10 16 4 650 4.9844 171.29391 1412.43159 1250.90422 0.04466 15.31925 8.34210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45345 -0.01363 -1.00000 - 7554 2002 3 18 10 16 14 619 4.9844 171.29722 1412.88079 1251.26281 0.04462 15.34763 8.34198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45272 -0.01363 -1.00000 - 7556 2002 3 18 10 16 24 588 4.9845 171.30054 1413.33167 1251.62154 0.04457 15.20536 8.33975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45200 -0.01362 -1.00000 - 7558 2002 3 18 10 16 34 557 4.9845 171.30387 1413.79559 1251.98150 0.04453 15.23693 8.33960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45127 -0.01362 -1.00000 - 7560 2002 3 18 10 16 44 526 4.9845 171.30721 1414.25334 1252.34167 0.04448 15.26796 8.34066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.45055 -0.01362 -1.00000 - 7562 2002 3 18 10 16 54 495 4.9846 171.31056 1414.71106 1252.70147 0.04444 15.14779 8.33990 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44982 -0.01362 -1.00000 - 7564 2002 3 18 10 17 4 464 4.9846 171.31393 1415.18012 1253.06200 0.04440 15.17463 8.34118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44910 -0.01362 -1.00000 - 7566 2002 3 18 10 17 14 433 4.9846 171.31730 1415.64167 1253.42234 0.04435 15.21772 8.34366 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44837 -0.01362 -1.00000 - 7568 2002 3 18 10 17 24 403 4.9846 171.32069 1416.10168 1253.78190 0.04432 15.12795 8.34419 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44765 -0.01362 -1.00000 - 7570 2002 3 18 10 17 34 372 4.9847 171.32408 1416.57141 1254.14178 0.04428 15.15238 8.34680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44692 -0.01362 -1.00000 - 7572 2002 3 18 10 17 44 341 4.9847 171.32749 1417.03179 1254.50108 0.04426 15.21496 8.35058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44620 -0.01362 -1.00000 - 7574 2002 3 18 10 17 54 311 4.9847 171.33090 1417.48907 1254.85923 0.04424 15.15298 8.35220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44547 -0.01362 -1.00000 - 7576 2002 3 18 10 18 4 280 4.9848 171.33433 1417.95475 1255.21740 0.04423 15.18732 8.35578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44475 -0.01362 -1.00000 - 7578 2002 3 18 10 18 14 250 4.9848 171.33776 1418.40979 1255.57471 0.04421 15.26806 8.36036 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44402 -0.01362 -1.00000 - 7580 2002 3 18 10 18 24 219 4.9848 171.34120 1418.86078 1255.93061 0.04419 15.21881 8.36252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44330 -0.01361 -1.00000 - 7582 2002 3 18 10 18 34 189 4.9848 171.34466 1419.31951 1256.28635 0.04418 15.26913 8.36644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44257 -0.01361 -1.00000 - 7584 2002 3 18 10 18 44 159 4.9849 171.34812 1419.76684 1256.64106 0.04416 15.36188 8.37114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44185 -0.01361 -1.00000 - 7586 2002 3 18 10 18 54 129 4.9849 171.35159 1420.20964 1256.99427 0.04414 15.30929 8.37318 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44112 -0.01361 -1.00000 - 7588 2002 3 18 10 19 4 98 4.9849 171.35507 1420.66008 1257.34728 0.04411 15.37694 8.37671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.44040 -0.01361 -1.00000 - 7590 2002 3 18 10 19 14 68 4.9850 171.35856 1421.09921 1257.69930 0.04409 15.47171 8.38075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43967 -0.01361 -1.00000 - 7592 2002 3 18 10 19 24 38 4.9850 171.36206 1421.53394 1258.04988 0.04405 15.40413 8.38186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43895 -0.01361 -1.00000 - 7594 2002 3 18 10 19 34 8 4.9850 171.36557 1421.97678 1258.40037 0.04401 15.48213 8.38423 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43822 -0.01361 -1.00000 - 7596 2002 3 18 10 19 43 978 4.9850 171.36910 1422.40855 1258.75000 0.04397 15.57051 8.38686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43750 -0.01361 -1.00000 - 7598 2002 3 18 10 19 53 948 4.9851 171.37263 1422.83645 1259.09837 0.04393 15.48398 8.38633 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43677 -0.01361 -1.00000 - 7600 2002 3 18 10 20 3 919 4.9851 171.37618 1423.27318 1259.44690 0.04389 15.56383 8.38690 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43605 -0.01361 -1.00000 - 7602 2002 3 18 10 20 13 889 4.9851 171.37974 1423.69943 1259.79478 0.04385 15.64128 8.38753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43532 -0.01360 -1.00000 - 7604 2002 3 18 10 20 23 859 4.9851 171.38331 1424.12257 1260.14166 0.04381 15.53398 8.38484 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43460 -0.01360 -1.00000 - 7606 2002 3 18 10 20 33 829 4.9852 171.38690 1424.55549 1260.48895 0.04376 15.61024 8.38315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43387 -0.01360 -1.00000 - 7608 2002 3 18 10 20 43 800 4.9852 171.39050 1424.97858 1260.83583 0.04373 15.67419 8.38143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43315 -0.01360 -1.00000 - 7610 2002 3 18 10 20 53 770 4.9852 171.39412 1425.39951 1261.18196 0.04369 15.54443 8.37633 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43242 -0.01360 -1.00000 - 7612 2002 3 18 10 21 3 741 4.9853 171.39774 1425.83138 1261.52881 0.04367 15.61443 8.37219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43170 -0.01360 -1.00000 - 7614 2002 3 18 10 21 13 711 4.9853 171.40139 1426.25443 1261.87549 0.04366 15.66261 8.36802 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43097 -0.01360 -1.00000 - 7616 2002 3 18 10 21 23 682 4.9853 171.40505 1426.67642 1262.22168 0.04363 15.51003 8.36045 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.43025 -0.01360 -1.00000 - 7618 2002 3 18 10 21 33 653 4.9853 171.40873 1427.11051 1262.56882 0.04360 15.57030 8.35393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42952 -0.01360 -1.00000 - 7620 2002 3 18 10 21 43 623 4.9854 171.41241 1427.53657 1262.91597 0.04358 15.60255 8.34746 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42880 -0.01360 -1.00000 - 7622 2002 3 18 10 21 53 594 4.9854 171.41612 1427.96239 1263.26282 0.04355 15.43197 8.33771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42807 -0.01360 -1.00000 - 7624 2002 3 18 10 22 3 565 4.9854 171.41983 1428.40112 1263.61080 0.04353 15.48056 8.32915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42735 -0.01360 -1.00000 - 7626 2002 3 18 10 22 13 536 4.9855 171.42357 1428.83234 1263.95893 0.04350 15.49945 8.32079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42662 -0.01359 -1.00000 - 7628 2002 3 18 10 22 23 507 4.9855 171.42731 1429.26366 1264.30685 0.04347 15.32023 8.30929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42590 -0.01359 -1.00000 - 7630 2002 3 18 10 22 33 478 4.9855 171.43107 1429.70807 1264.65596 0.04343 15.35533 8.29920 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42517 -0.01359 -1.00000 - 7632 2002 3 18 10 22 43 449 4.9856 171.43485 1430.14468 1265.00523 0.04339 15.36717 8.28953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42445 -0.01359 -1.00000 - 7634 2002 3 18 10 22 53 420 4.9856 171.43864 1430.58100 1265.35428 0.04335 15.19194 8.27694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42372 -0.01359 -1.00000 - 7636 2002 3 18 10 23 3 391 4.9856 171.44244 1431.02988 1265.70450 0.04331 15.21581 8.26598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42300 -0.01359 -1.00000 - 7638 2002 3 18 10 23 13 363 4.9856 171.44626 1431.47031 1266.05485 0.04327 15.22809 8.25567 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42227 -0.01359 -1.00000 - 7640 2002 3 18 10 23 23 334 4.9857 171.45009 1431.90970 1266.40492 0.04323 15.06619 8.24259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42155 -0.01359 -1.00000 - 7642 2002 3 18 10 23 33 305 4.9857 171.45394 1432.36081 1266.75604 0.04319 15.08256 8.23140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42082 -0.01359 -1.00000 - 7644 2002 3 18 10 23 43 277 4.9857 171.45780 1432.80250 1267.10721 0.04315 15.10247 8.22108 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.42010 -0.01359 -1.00000 - 7646 2002 3 18 10 23 53 248 4.9858 171.46168 1433.24223 1267.45798 0.04311 14.95820 8.20818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41937 -0.01359 -1.00000 - 7648 2002 3 18 10 24 3 220 4.9858 171.46557 1433.69300 1267.80972 0.04307 14.97460 8.19735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41864 -0.01359 -1.00000 - 7650 2002 3 18 10 24 13 192 4.9858 171.46948 1434.13383 1268.16143 0.04303 15.00505 8.18755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41792 -0.01358 -1.00000 - 7652 2002 3 18 10 24 23 163 4.9858 171.47341 1434.57233 1268.51264 0.04300 14.87424 8.17526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41719 -0.01358 -1.00000 - 7654 2002 3 18 10 24 33 135 4.9859 171.47734 1435.02177 1268.86474 0.04296 14.89543 8.16520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41647 -0.01358 -1.00000 - 7656 2002 3 18 10 24 43 107 4.9859 171.48129 1435.46109 1269.21673 0.04294 14.93555 8.15629 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41574 -0.01358 -1.00000 - 7658 2002 3 18 10 24 53 79 4.9859 171.48526 1435.89811 1269.56816 0.04291 14.81026 8.14500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41502 -0.01358 -1.00000 - 7660 2002 3 18 10 25 3 51 4.9860 171.48923 1436.34647 1269.92042 0.04288 14.84070 8.13601 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41429 -0.01358 -1.00000 - 7662 2002 3 18 10 25 13 22 4.9860 171.49322 1436.78509 1270.27254 0.04285 14.88565 8.12824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41357 -0.01358 -1.00000 - 7664 2002 3 18 10 25 22 995 4.9860 171.49722 1437.22194 1270.62405 0.04281 14.75647 8.11809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41284 -0.01358 -1.00000 - 7666 2002 3 18 10 25 32 967 4.9861 171.50123 1437.67079 1270.97637 0.04277 14.79431 8.11034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41212 -0.01358 -1.00000 - 7668 2002 3 18 10 25 42 939 4.9861 171.50525 1438.11021 1271.32849 0.04273 14.83968 8.10386 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41139 -0.01358 -1.00000 - 7670 2002 3 18 10 25 52 911 4.9861 171.50928 1438.54817 1271.67996 0.04269 14.70531 8.09506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.41067 -0.01358 -1.00000 - 7672 2002 3 18 10 26 2 883 4.9861 171.51332 1438.99851 1272.03222 0.04264 14.74742 8.08870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40994 -0.01357 -1.00000 - 7674 2002 3 18 10 26 12 856 4.9862 171.51736 1439.43954 1272.38424 0.04260 14.79156 8.08365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40922 -0.01357 -1.00000 - 7676 2002 3 18 10 26 22 828 4.9862 171.52141 1439.87912 1272.73556 0.04255 14.65734 8.07629 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40849 -0.01357 -1.00000 - 7678 2002 3 18 10 26 32 800 4.9862 171.52547 1440.33096 1273.08760 0.04250 14.69878 8.07143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40777 -0.01357 -1.00000 - 7680 2002 3 18 10 26 42 773 4.9863 171.52954 1440.77298 1273.43932 0.04246 14.74531 8.06791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40704 -0.01357 -1.00000 - 7682 2002 3 18 10 26 52 746 4.9863 171.53361 1441.21299 1273.79024 0.04242 14.62149 8.06212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40632 -0.01357 -1.00000 - 7684 2002 3 18 10 27 2 718 4.9863 171.53769 1441.66467 1274.14179 0.04238 14.66184 8.05883 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40559 -0.01357 -1.00000 - 7686 2002 3 18 10 27 12 691 4.9863 171.54177 1442.10589 1274.49293 0.04234 14.71598 8.05689 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40487 -0.01357 -1.00000 - 7688 2002 3 18 10 27 22 664 4.9864 171.54586 1442.54440 1274.84315 0.04230 14.60712 8.05263 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40414 -0.01357 -1.00000 - 7690 2002 3 18 10 27 32 636 4.9864 171.54995 1442.99401 1275.19387 0.04226 14.64959 8.05085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40342 -0.01357 -1.00000 - 7692 2002 3 18 10 27 42 609 4.9864 171.55405 1443.43249 1275.54407 0.04222 14.71408 8.05038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40269 -0.01357 -1.00000 - 7694 2002 3 18 10 27 52 582 4.9865 171.55815 1443.86779 1275.89325 0.04218 14.61577 8.04750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40197 -0.01357 -1.00000 - 7696 2002 3 18 10 28 2 555 4.9865 171.56226 1444.31405 1276.24287 0.04214 14.66564 8.04703 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40124 -0.01356 -1.00000 - 7698 2002 3 18 10 28 12 528 4.9865 171.56637 1444.74909 1276.59190 0.04210 14.73787 8.04777 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.40051 -0.01356 -1.00000 - 7700 2002 3 18 10 28 22 501 4.9865 171.57049 1445.18100 1276.93986 0.04205 14.63903 8.04597 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39979 -0.01356 -1.00000 - 7702 2002 3 18 10 28 32 474 4.9866 171.57461 1445.62423 1277.28822 0.04201 14.69866 8.04647 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39906 -0.01356 -1.00000 - 7704 2002 3 18 10 28 42 447 4.9866 171.57874 1446.05642 1277.63598 0.04196 14.77267 8.04806 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39834 -0.01356 -1.00000 - 7706 2002 3 18 10 28 52 421 4.9866 171.58288 1446.48588 1277.98268 0.04192 14.66493 8.04698 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39761 -0.01356 -1.00000 - 7708 2002 3 18 10 29 2 394 4.9867 171.58702 1446.92724 1278.32984 0.04187 14.73167 8.04810 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39689 -0.01356 -1.00000 - 7710 2002 3 18 10 29 12 367 4.9867 171.59116 1447.35796 1278.67643 0.04182 14.80247 8.05019 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39616 -0.01356 -1.00000 - 7712 2002 3 18 10 29 22 341 4.9867 171.59531 1447.78630 1279.02199 0.04177 14.68515 8.04950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39544 -0.01356 -1.00000 - 7714 2002 3 18 10 29 32 314 4.9867 171.59947 1448.22696 1279.36806 0.04172 14.75357 8.05091 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39471 -0.01356 -1.00000 - 7716 2002 3 18 10 29 42 288 4.9868 171.60363 1448.65698 1279.71357 0.04167 14.82015 8.05319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39399 -0.01356 -1.00000 - 7718 2002 3 18 10 29 52 261 4.9868 171.60781 1449.08464 1280.05810 0.04162 14.69851 8.05265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39326 -0.01355 -1.00000 - 7720 2002 3 18 10 30 2 235 4.9868 171.61198 1449.52464 1280.40317 0.04157 14.76566 8.05411 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39254 -0.01355 -1.00000 - 7722 2002 3 18 10 30 12 208 4.9868 171.61617 1449.95392 1280.74773 0.04152 14.82983 8.05634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39181 -0.01355 -1.00000 - 7724 2002 3 18 10 30 22 182 4.9869 171.62036 1450.38103 1281.09195 0.04146 14.71081 8.05589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39109 -0.01355 -1.00000 - 7726 2002 3 18 10 30 32 156 4.9869 171.62456 1450.82136 1281.43784 0.04141 14.77611 8.05751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.39036 -0.01355 -1.00000 - 7728 2002 3 18 10 30 42 130 4.9869 171.62876 1451.25224 1281.78435 0.04136 14.84043 8.05999 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38964 -0.01355 -1.00000 - 7730 2002 3 18 10 30 52 104 4.9869 171.63298 1451.68209 1282.13090 0.04132 14.72571 8.05989 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38891 -0.01355 -1.00000 - 7732 2002 3 18 10 31 2 78 4.9870 171.63721 1452.12551 1282.47881 0.04127 14.79191 8.06178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38818 -0.01355 -1.00000 - 7734 2002 3 18 10 31 12 52 4.9870 171.64145 1452.55939 1282.82689 0.04123 14.85728 8.06448 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38746 -0.01355 -1.00000 - 7736 2002 3 18 10 31 22 26 4.9870 171.64570 1452.99195 1283.17451 0.04119 14.74198 8.06459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38673 -0.01355 -1.00000 - 7738 2002 3 18 10 31 32 0 4.9871 171.64996 1453.43771 1283.52308 0.04115 14.81135 8.06660 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38601 -0.01355 -1.00000 - 7740 2002 3 18 10 31 41 974 4.9871 171.65423 1453.87336 1283.87142 0.04112 14.87665 8.06934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38528 -0.01355 -1.00000 - 7742 2002 3 18 10 31 51 948 4.9871 171.65852 1454.30721 1284.21903 0.04108 14.75776 8.06945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38456 -0.01354 -1.00000 - 7744 2002 3 18 10 32 1 922 4.9871 171.66282 1454.75402 1284.56735 0.04104 14.83006 8.07136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38383 -0.01354 -1.00000 - 7746 2002 3 18 10 32 11 897 4.9872 171.66713 1455.19045 1284.91529 0.04100 14.89349 8.07392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38311 -0.01354 -1.00000 - 7748 2002 3 18 10 32 21 871 4.9872 171.67146 1455.62473 1285.26232 0.04095 14.76990 8.07381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38238 -0.01354 -1.00000 - 7750 2002 3 18 10 32 31 845 4.9872 171.67580 1456.07180 1285.60995 0.04091 14.84362 8.07539 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38166 -0.01354 -1.00000 - 7752 2002 3 18 10 32 41 820 4.9873 171.68015 1456.50811 1285.95710 0.04086 14.90442 8.07752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38093 -0.01354 -1.00000 - 7754 2002 3 18 10 32 51 795 4.9873 171.68452 1456.94192 1286.30329 0.04081 14.77818 8.07697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.38021 -0.01354 -1.00000 - 7756 2002 3 18 10 33 1 769 4.9873 171.68889 1457.38827 1286.65003 0.04076 14.85153 8.07801 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37948 -0.01354 -1.00000 - 7758 2002 3 18 10 33 11 744 4.9873 171.69328 1457.82357 1286.99628 0.04071 14.91058 8.07950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37876 -0.01354 -1.00000 - 7760 2002 3 18 10 33 21 719 4.9874 171.69768 1458.25591 1287.34152 0.04065 14.78433 8.07830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37803 -0.01354 -1.00000 - 7762 2002 3 18 10 33 31 693 4.9874 171.70209 1458.70050 1287.68730 0.04059 14.85694 8.07859 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37730 -0.01354 -1.00000 - 7764 2002 3 18 10 33 41 668 4.9874 171.70651 1459.13365 1288.03256 0.04054 14.91541 8.07927 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37658 -0.01353 -1.00000 - 7766 2002 3 18 10 33 51 643 4.9874 171.71094 1459.56351 1288.37683 0.04048 14.78968 8.07726 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37585 -0.01353 -1.00000 - 7768 2002 3 18 10 34 1 618 4.9875 171.71539 1460.00547 1288.72165 0.04043 14.86265 8.07663 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37513 -0.01353 -1.00000 - 7770 2002 3 18 10 34 11 593 4.9875 171.71984 1460.43602 1289.06601 0.04038 14.92029 8.07632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37440 -0.01353 -1.00000 - 7772 2002 3 18 10 34 21 568 4.9875 171.72430 1460.86319 1289.40938 0.04032 14.79219 8.07333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37368 -0.01353 -1.00000 - 7774 2002 3 18 10 34 31 543 4.9876 171.72877 1461.30262 1289.75335 0.04027 14.86667 8.07164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37295 -0.01353 -1.00000 - 7776 2002 3 18 10 34 41 518 4.9876 171.73324 1461.73084 1290.09690 0.04022 14.92147 8.07020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37223 -0.01353 -1.00000 - 7778 2002 3 18 10 34 51 493 4.9876 171.73773 1462.15593 1290.43963 0.04017 14.78641 8.06612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37150 -0.01353 -1.00000 - 7780 2002 3 18 10 35 1 469 4.9876 171.74222 1462.59372 1290.78301 0.04012 14.86229 8.06326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37078 -0.01353 -1.00000 - 7782 2002 3 18 10 35 11 444 4.9877 171.74672 1463.02084 1291.12604 0.04007 14.91135 8.06062 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.37005 -0.01353 -1.00000 - 7784 2002 3 18 10 35 21 419 4.9877 171.75123 1463.44523 1291.46822 0.04001 14.76617 8.05540 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36932 -0.01353 -1.00000 - 7786 2002 3 18 10 35 31 395 4.9877 171.75575 1463.88283 1291.81114 0.03996 14.84158 8.05134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36860 -0.01353 -1.00000 - 7788 2002 3 18 10 35 41 370 4.9877 171.76027 1464.31015 1292.15378 0.03990 14.88294 8.04749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36787 -0.01352 -1.00000 - 7790 2002 3 18 10 35 51 346 4.9878 171.76480 1464.73507 1292.49566 0.03985 14.72893 8.04116 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36715 -0.01352 -1.00000 - 7792 2002 3 18 10 36 1 321 4.9878 171.76934 1465.17347 1292.83835 0.03980 14.80131 8.03596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36642 -0.01352 -1.00000 - 7794 2002 3 18 10 36 11 297 4.9878 171.77389 1465.60189 1293.18084 0.03974 14.83572 8.03101 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36570 -0.01352 -1.00000 - 7796 2002 3 18 10 36 21 273 4.9879 171.77844 1466.02802 1293.52260 0.03968 14.67830 8.02376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36497 -0.01352 -1.00000 - 7798 2002 3 18 10 36 31 248 4.9879 171.78300 1466.46721 1293.86517 0.03962 14.73728 8.01751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36425 -0.01352 -1.00000 - 7800 2002 3 18 10 36 41 224 4.9879 171.78756 1466.89677 1294.20757 0.03957 14.77617 8.01162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36352 -0.01352 -1.00000 - 7802 2002 3 18 10 36 51 200 4.9879 171.79214 1467.32375 1294.54927 0.03952 14.62058 8.00387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36280 -0.01352 -1.00000 - 7804 2002 3 18 10 37 1 176 4.9880 171.79672 1467.76242 1294.89165 0.03947 14.65033 7.99656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36207 -0.01352 -1.00000 - 7806 2002 3 18 10 37 11 152 4.9880 171.80131 1468.19246 1295.23398 0.03941 14.70483 7.98984 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36134 -0.01352 -1.00000 - 7808 2002 3 18 10 37 21 128 4.9880 171.80591 1468.61990 1295.57564 0.03934 14.55939 7.98172 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.36062 -0.01352 -1.00000 - 7810 2002 3 18 10 37 31 104 4.9880 171.81051 1469.05693 1295.91780 0.03926 14.61526 7.97422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35989 -0.01352 -1.00000 - 7812 2002 3 18 10 37 41 80 4.9881 171.81512 1469.48454 1296.25972 0.03921 14.63406 7.96708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35917 -0.01351 -1.00000 - 7814 2002 3 18 10 37 51 56 4.9881 171.81974 1469.91258 1296.60115 0.03918 14.51292 7.95857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35844 -0.01351 -1.00000 - 7816 2002 3 18 10 38 1 33 4.9881 171.82436 1470.34717 1296.94305 0.03918 14.56925 7.95075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35772 -0.01351 -1.00000 - 7818 2002 3 18 10 38 11 9 4.9881 171.82899 1470.77500 1297.28472 0.03916 14.53481 7.94260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35699 -0.01351 -1.00000 - 7820 2002 3 18 10 38 20 985 4.9882 171.83363 1471.20484 1297.62618 0.03910 14.44903 7.93371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35627 -0.01351 -1.00000 - 7822 2002 3 18 10 38 30 962 4.9882 171.83828 1471.63683 1297.96791 0.03903 14.49746 7.92528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35554 -0.01351 -1.00000 - 7824 2002 3 18 10 38 40 938 4.9882 171.84293 1472.06535 1298.30946 0.03894 14.45684 7.91649 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35482 -0.01351 -1.00000 - 7826 2002 3 18 10 38 50 914 4.9882 171.84759 1472.49509 1298.65097 0.03887 14.41454 7.90743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35409 -0.01351 -1.00000 - 7828 2002 3 18 10 39 0 891 4.9883 171.85225 1472.92575 1298.99262 0.03880 14.41187 7.89838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35336 -0.01351 -1.00000 - 7830 2002 3 18 10 39 10 868 4.9883 171.85693 1473.35555 1299.33429 0.03873 14.38332 7.88918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35264 -0.01351 -1.00000 - 7832 2002 3 18 10 39 20 844 4.9883 171.86161 1473.78569 1299.67599 0.03866 14.35229 7.87987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35191 -0.01351 -1.00000 - 7834 2002 3 18 10 39 30 821 4.9883 171.86630 1474.21642 1300.01780 0.03858 14.33288 7.87053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35119 -0.01350 -1.00000 - 7836 2002 3 18 10 39 40 798 4.9884 171.87100 1474.64694 1300.35968 0.03851 14.31052 7.86121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.35046 -0.01350 -1.00000 - 7838 2002 3 18 10 39 50 774 4.9884 171.87570 1475.07745 1300.70163 0.03845 14.28554 7.85194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34974 -0.01350 -1.00000 - 7840 2002 3 18 10 40 0 751 4.9884 171.88041 1475.50814 1301.04366 0.03839 14.26330 7.84274 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34901 -0.01350 -1.00000 - 7842 2002 3 18 10 40 10 728 4.9885 171.88513 1475.93892 1301.38578 0.03833 14.24144 7.83366 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34829 -0.01350 -1.00000 - 7844 2002 3 18 10 40 20 705 4.9885 171.88986 1476.36974 1301.72796 0.03827 14.21876 7.82472 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34756 -0.01350 -1.00000 - 7846 2002 3 18 10 40 30 682 4.9885 171.89459 1476.80067 1302.07021 0.03822 14.19684 7.81596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34683 -0.01350 -1.00000 - 7848 2002 3 18 10 40 40 659 4.9885 171.89933 1477.23171 1302.41254 0.03816 14.17548 7.80740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34611 -0.01350 -1.00000 - 7850 2002 3 18 10 40 50 636 4.9886 171.90408 1477.66286 1302.75494 0.03811 14.15408 7.79907 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34538 -0.01350 -1.00000 - 7852 2002 3 18 10 41 0 613 4.9886 171.90883 1478.09418 1303.09742 0.03806 14.13306 7.79100 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34466 -0.01350 -1.00000 - 7854 2002 3 18 10 41 10 591 4.9886 171.91359 1478.52577 1303.43999 0.03801 14.11254 7.78323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34393 -0.01350 -1.00000 - 7856 2002 3 18 10 41 20 568 4.9886 171.91836 1478.95759 1303.78262 0.03795 14.09236 7.77577 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34321 -0.01350 -1.00000 - 7858 2002 3 18 10 41 30 545 4.9887 171.92313 1479.38970 1304.12530 0.03789 14.07267 7.76866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34248 -0.01349 -1.00000 - 7860 2002 3 18 10 41 40 522 4.9887 171.92791 1479.82213 1304.46804 0.03784 14.05364 7.76191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34176 -0.01349 -1.00000 - 7862 2002 3 18 10 41 50 500 4.9887 171.93270 1480.25491 1304.81081 0.03778 14.03536 7.75554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34103 -0.01349 -1.00000 - 7864 2002 3 18 10 42 0 477 4.9887 171.93749 1480.68805 1305.15362 0.03771 14.01796 7.74958 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.34030 -0.01349 -1.00000 - 7866 2002 3 18 10 42 10 455 4.9888 171.94229 1481.12162 1305.49643 0.03765 14.00162 7.74403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33958 -0.01349 -1.00000 - 7868 2002 3 18 10 42 20 432 4.9888 171.94709 1481.55553 1305.83922 0.03758 13.98644 7.73891 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33885 -0.01349 -1.00000 - 7870 2002 3 18 10 42 30 410 4.9888 171.95191 1481.98975 1306.18194 0.03751 13.97248 7.73422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33813 -0.01349 -1.00000 - 7872 2002 3 18 10 42 40 387 4.9888 171.95673 1482.42423 1306.52459 0.03744 13.95980 7.72997 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33740 -0.01349 -1.00000 - 7874 2002 3 18 10 42 50 365 4.9888 171.96155 1482.85891 1306.86714 0.03737 13.94839 7.72615 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33668 -0.01349 -1.00000 - 7876 2002 3 18 10 43 0 343 4.9889 171.96639 1483.29373 1307.20956 0.03730 13.93827 7.72277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33595 -0.01349 -1.00000 - 7878 2002 3 18 10 43 10 321 4.9889 171.97123 1483.72866 1307.55182 0.03723 13.92946 7.71982 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33523 -0.01349 -1.00000 - 7880 2002 3 18 10 43 20 298 4.9889 171.97607 1484.16354 1307.89388 0.03716 13.92203 7.71730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33450 -0.01348 -1.00000 - 7882 2002 3 18 10 43 30 276 4.9889 171.98093 1484.59825 1308.23571 0.03709 13.91608 7.71519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33377 -0.01348 -1.00000 - 7884 2002 3 18 10 43 40 254 4.9890 171.98579 1485.03267 1308.57729 0.03703 13.91175 7.71349 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33305 -0.01348 -1.00000 - 7886 2002 3 18 10 43 50 232 4.9890 171.99066 1485.46666 1308.91859 0.03696 13.90922 7.71218 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33232 -0.01348 -1.00000 - 7888 2002 3 18 10 44 0 210 4.9890 171.99553 1485.90008 1309.25959 0.03690 13.90861 7.71124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33160 -0.01348 -1.00000 - 7890 2002 3 18 10 44 10 188 4.9890 172.00041 1486.33283 1309.60027 0.03684 13.91004 7.71065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33087 -0.01348 -1.00000 - 7892 2002 3 18 10 44 20 166 4.9891 172.00530 1486.76473 1309.94058 0.03677 13.91351 7.71037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.33015 -0.01348 -1.00000 - 7894 2002 3 18 10 44 30 145 4.9891 172.01019 1487.19566 1310.28051 0.03671 13.91892 7.71039 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32942 -0.01348 -1.00000 - 7896 2002 3 18 10 44 40 123 4.9891 172.01509 1487.62555 1310.62003 0.03664 13.92606 7.71066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32869 -0.01348 -1.00000 - 7898 2002 3 18 10 44 50 101 4.9891 172.02000 1488.05439 1310.95914 0.03658 13.93463 7.71115 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32797 -0.01348 -1.00000 - 7900 2002 3 18 10 45 0 79 4.9892 172.02491 1488.48217 1311.29783 0.03651 13.94426 7.71183 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32724 -0.01348 -1.00000 - 7902 2002 3 18 10 45 10 58 4.9892 172.02983 1488.90900 1311.63613 0.03644 13.95452 7.71265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32652 -0.01348 -1.00000 - 7904 2002 3 18 10 45 20 36 4.9892 172.03475 1489.33537 1311.97466 0.03636 13.96752 7.71375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32579 -0.01347 -1.00000 - 7906 2002 3 18 10 45 30 15 4.9892 172.03968 1489.76209 1312.31394 0.03629 13.97988 7.71511 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32507 -0.01347 -1.00000 - 7909 2002 3 18 10 45 44 982 4.9893 172.04709 1490.40402 1312.82406 0.03619 13.99755 7.71768 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32398 -0.01347 -1.00000 - 7911 2002 3 18 10 45 54 961 4.9893 172.05203 1490.83352 1313.16500 0.03612 14.00873 7.71964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32325 -0.01347 -1.00000 - 7913 2002 3 18 10 46 4 939 4.9893 172.05698 1491.26423 1313.50631 0.03606 14.01906 7.72179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32253 -0.01347 -1.00000 - 7915 2002 3 18 10 46 14 918 4.9893 172.06194 1491.69614 1313.84785 0.03599 14.02867 7.72411 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32180 -0.01347 -1.00000 - 7917 2002 3 18 10 46 24 897 4.9893 172.06690 1492.12899 1314.18946 0.03592 14.03761 7.72656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32108 -0.01347 -1.00000 - 7919 2002 3 18 10 46 34 876 4.9894 172.07187 1492.56261 1314.53104 0.03585 14.04591 7.72911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.32035 -0.01347 -1.00000 - 7921 2002 3 18 10 46 44 854 4.9894 172.07685 1492.99682 1314.87252 0.03578 14.05374 7.73173 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31962 -0.01347 -1.00000 - 7923 2002 3 18 10 46 54 833 4.9894 172.08184 1493.43144 1315.21381 0.03571 14.06123 7.73439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31890 -0.01347 -1.00000 - 7925 2002 3 18 10 47 4 812 4.9894 172.08683 1493.86632 1315.55486 0.03564 14.06852 7.73704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31817 -0.01347 -1.00000 - 7927 2002 3 18 10 47 14 791 4.9895 172.09182 1494.30136 1315.89563 0.03557 14.07574 7.73966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31745 -0.01346 -1.00000 - 7929 2002 3 18 10 47 24 770 4.9895 172.09683 1494.73634 1316.23605 0.03549 14.08303 7.74220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31672 -0.01346 -1.00000 - 7931 2002 3 18 10 47 34 749 4.9895 172.10184 1495.17112 1316.57609 0.03542 14.09049 7.74463 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31600 -0.01346 -1.00000 - 7933 2002 3 18 10 47 44 728 4.9895 172.10686 1495.60553 1316.91573 0.03535 14.09822 7.74691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31527 -0.01346 -1.00000 - 7935 2002 3 18 10 47 54 707 4.9896 172.11188 1496.03945 1317.25494 0.03528 14.10625 7.74900 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31454 -0.01346 -1.00000 - 7937 2002 3 18 10 48 4 686 4.9896 172.11692 1496.47270 1317.59371 0.03520 14.11458 7.75085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31382 -0.01346 -1.00000 - 7939 2002 3 18 10 48 14 665 4.9896 172.12196 1496.90522 1317.93202 0.03513 14.12311 7.75244 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31309 -0.01346 -1.00000 - 7941 2002 3 18 10 48 24 645 4.9896 172.12700 1497.33680 1318.26985 0.03505 14.13171 7.75372 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31237 -0.01346 -1.00000 - 7943 2002 3 18 10 48 34 624 4.9896 172.13206 1497.76733 1318.60719 0.03498 14.14016 7.75465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31164 -0.01346 -1.00000 - 7945 2002 3 18 10 48 44 603 4.9897 172.13712 1498.19672 1318.94406 0.03490 14.14825 7.75521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31092 -0.01346 -1.00000 - 7947 2002 3 18 10 48 54 582 4.9897 172.14218 1498.62492 1319.28048 0.03483 14.15575 7.75535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.31019 -0.01346 -1.00000 - 7949 2002 3 18 10 49 4 562 4.9897 172.14726 1499.05188 1319.61646 0.03476 14.16244 7.75504 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30946 -0.01346 -1.00000 - 7951 2002 3 18 10 49 14 541 4.9897 172.15234 1499.47765 1319.95203 0.03468 14.16816 7.75428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30874 -0.01345 -1.00000 - 7953 2002 3 18 10 49 24 521 4.9897 172.15743 1499.90217 1320.28721 0.03461 14.17278 7.75302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30801 -0.01345 -1.00000 - 7955 2002 3 18 10 49 34 500 4.9898 172.16253 1500.32549 1320.62203 0.03453 14.17619 7.75125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30729 -0.01345 -1.00000 - 7957 2002 3 18 10 49 44 480 4.9898 172.16763 1500.74766 1320.95654 0.03446 14.17826 7.74896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30656 -0.01345 -1.00000 - 7959 2002 3 18 10 49 54 459 4.9898 172.17274 1501.16877 1321.29078 0.03439 14.17883 7.74614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30584 -0.01345 -1.00000 - 7961 2002 3 18 10 50 4 439 4.9898 172.17786 1501.58897 1321.62479 0.03432 14.17769 7.74278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30511 -0.01345 -1.00000 - 7963 2002 3 18 10 50 14 419 4.9899 172.18298 1502.00848 1321.95862 0.03424 14.17460 7.73887 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30438 -0.01345 -1.00000 - 7965 2002 3 18 10 50 24 399 4.9899 172.18811 1502.42743 1322.29230 0.03417 14.16925 7.73442 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30366 -0.01345 -1.00000 - 7967 2002 3 18 10 50 34 378 4.9899 172.19325 1502.84605 1322.62587 0.03409 14.16136 7.72944 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30293 -0.01345 -1.00000 - 7969 2002 3 18 10 50 44 358 4.9899 172.19839 1503.26458 1322.95940 0.03401 14.15068 7.72393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30221 -0.01345 -1.00000 - 7971 2002 3 18 10 50 54 338 4.9899 172.20354 1503.68328 1323.29294 0.03394 14.13701 7.71792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30148 -0.01345 -1.00000 - 7973 2002 3 18 10 51 4 318 4.9900 172.20870 1504.10238 1323.62652 0.03386 14.12028 7.71142 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30076 -0.01344 -1.00000 - 7975 2002 3 18 10 51 14 298 4.9900 172.21386 1504.52216 1323.96020 0.03378 14.10052 7.70447 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.30003 -0.01344 -1.00000 - 7977 2002 3 18 10 51 24 278 4.9900 172.21903 1504.94274 1324.29400 0.03370 14.07792 7.69711 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29930 -0.01344 -1.00000 - 7979 2002 3 18 10 51 34 258 4.9900 172.22421 1505.36423 1324.62794 0.03363 14.05277 7.68936 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29858 -0.01344 -1.00000 - 7981 2002 3 18 10 51 44 238 4.9900 172.22939 1505.78671 1324.96205 0.03355 14.02547 7.68127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29785 -0.01344 -1.00000 - 7983 2002 3 18 10 51 54 218 4.9901 172.23458 1506.21020 1325.29636 0.03347 13.99649 7.67288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29713 -0.01344 -1.00000 - 7985 2002 3 18 10 52 4 198 4.9901 172.23978 1506.63469 1325.63086 0.03340 13.96635 7.66422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29640 -0.01344 -1.00000 - 7987 2002 3 18 10 52 14 178 4.9901 172.24498 1507.06015 1325.96558 0.03332 13.93554 7.65535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29567 -0.01344 -1.00000 - 7989 2002 3 18 10 52 24 159 4.9901 172.25019 1507.48641 1326.30047 0.03324 13.90457 7.64631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29495 -0.01344 -1.00000 - 7991 2002 3 18 10 52 34 139 4.9901 172.25541 1507.91335 1326.63553 0.03316 13.87388 7.63713 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29422 -0.01344 -1.00000 - 7993 2002 3 18 10 52 44 119 4.9902 172.26063 1508.34083 1326.97075 0.03309 13.84387 7.62786 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29350 -0.01344 -1.00000 - 7995 2002 3 18 10 52 54 100 4.9902 172.26586 1508.76870 1327.30612 0.03301 13.81484 7.61853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29277 -0.01344 -1.00000 - 7997 2002 3 18 10 53 4 80 4.9902 172.27109 1509.19684 1327.64162 0.03293 13.78704 7.60918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29205 -0.01343 -1.00000 - 7999 2002 3 18 10 53 14 60 4.9902 172.27633 1509.62517 1327.97722 0.03285 13.76064 7.59985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29132 -0.01343 -1.00000 - 8001 2002 3 18 10 53 24 41 4.9902 172.28158 1510.05352 1328.31289 0.03277 13.73571 7.59056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.29059 -0.01343 -1.00000 - 8003 2002 3 18 10 53 34 21 4.9903 172.28683 1510.48179 1328.64860 0.03268 13.71228 7.58134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28987 -0.01343 -1.00000 - 8005 2002 3 18 10 53 44 2 4.9903 172.29209 1510.90993 1328.98435 0.03260 13.69029 7.57221 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28914 -0.01343 -1.00000 - 8007 2002 3 18 10 53 53 983 4.9903 172.29736 1511.33787 1329.32010 0.03252 13.66966 7.56321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28842 -0.01343 -1.00000 - 8009 2002 3 18 10 54 3 963 4.9903 172.30263 1511.76559 1329.65586 0.03244 13.65026 7.55436 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28769 -0.01343 -1.00000 - 8011 2002 3 18 10 54 13 944 4.9903 172.30791 1512.19313 1329.99161 0.03235 13.63198 7.54567 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28697 -0.01343 -1.00000 - 8013 2002 3 18 10 54 23 925 4.9904 172.31319 1512.62042 1330.32731 0.03227 13.61467 7.53718 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28624 -0.01343 -1.00000 - 8015 2002 3 18 10 54 33 905 4.9904 172.31848 1513.04747 1330.66296 0.03218 13.59819 7.52888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28551 -0.01343 -1.00000 - 8017 2002 3 18 10 54 43 886 4.9904 172.32377 1513.47430 1330.99855 0.03210 13.58243 7.52081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28479 -0.01343 -1.00000 - 8019 2002 3 18 10 54 53 867 4.9904 172.32907 1513.90093 1331.33407 0.03202 13.56731 7.51298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28406 -0.01342 -1.00000 - 8021 2002 3 18 10 55 3 848 4.9904 172.33438 1514.32737 1331.66952 0.03193 13.55278 7.50540 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28334 -0.01342 -1.00000 - 8023 2002 3 18 10 55 13 829 4.9905 172.33969 1514.75368 1332.00490 0.03185 13.53884 7.49809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28261 -0.01342 -1.00000 - 8025 2002 3 18 10 55 23 810 4.9905 172.34501 1515.17982 1332.34018 0.03176 13.52553 7.49105 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28188 -0.01342 -1.00000 - 8027 2002 3 18 10 55 33 791 4.9905 172.35034 1515.60576 1332.67534 0.03168 13.51288 7.48430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28116 -0.01342 -1.00000 - 8029 2002 3 18 10 55 43 772 4.9905 172.35566 1516.03151 1333.01039 0.03160 13.50095 7.47784 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.28043 -0.01342 -1.00000 - 8031 2002 3 18 10 55 53 753 4.9905 172.36100 1516.45704 1333.34531 0.03152 13.48976 7.47169 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27971 -0.01342 -1.00000 - 8033 2002 3 18 10 56 3 734 4.9906 172.36634 1516.88234 1333.68011 0.03143 13.47934 7.46583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27898 -0.01342 -1.00000 - 8035 2002 3 18 10 56 13 715 4.9906 172.37169 1517.30746 1334.01477 0.03135 13.46967 7.46028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27826 -0.01342 -1.00000 - 8037 2002 3 18 10 56 23 696 4.9906 172.37704 1517.73230 1334.34925 0.03126 13.46075 7.45503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27753 -0.01342 -1.00000 - 8039 2002 3 18 10 56 33 677 4.9906 172.38239 1518.15686 1334.68356 0.03118 13.45252 7.45009 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27680 -0.01342 -1.00000 - 8041 2002 3 18 10 56 43 659 4.9906 172.38775 1518.58113 1335.01770 0.03109 13.44494 7.44544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27608 -0.01342 -1.00000 - 8043 2002 3 18 10 56 53 640 4.9906 172.39312 1519.00511 1335.35165 0.03100 13.43796 7.44110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27535 -0.01341 -1.00000 - 8045 2002 3 18 10 57 3 621 4.9907 172.39850 1519.42878 1335.68541 0.03092 13.43154 7.43705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27463 -0.01341 -1.00000 - 8047 2002 3 18 10 57 13 603 4.9907 172.40387 1519.85220 1336.01898 0.03083 13.42563 7.43328 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27390 -0.01341 -1.00000 - 8049 2002 3 18 10 57 23 584 4.9907 172.40926 1520.27529 1336.35234 0.03075 13.42023 7.42980 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27317 -0.01341 -1.00000 - 8051 2002 3 18 10 57 33 565 4.9907 172.41465 1520.69804 1336.68547 0.03066 13.41531 7.42659 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27245 -0.01341 -1.00000 - 8053 2002 3 18 10 57 43 547 4.9907 172.42004 1521.12044 1337.01839 0.03057 13.41086 7.42364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27172 -0.01341 -1.00000 - 8055 2002 3 18 10 57 53 528 4.9908 172.42544 1521.54247 1337.35109 0.03049 13.40687 7.42094 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27100 -0.01341 -1.00000 - 8057 2002 3 18 10 58 3 510 4.9908 172.43085 1521.96412 1337.68357 0.03040 13.40332 7.41849 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.27027 -0.01341 -1.00000 - 8059 2002 3 18 10 58 13 491 4.9908 172.43626 1522.38543 1338.01583 0.03031 13.40019 7.41626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26954 -0.01341 -1.00000 - 8061 2002 3 18 10 58 23 473 4.9908 172.44168 1522.80633 1338.34785 0.03023 13.39743 7.41426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26882 -0.01341 -1.00000 - 8063 2002 3 18 10 58 33 455 4.9908 172.44710 1523.22682 1338.67963 0.03014 13.39499 7.41247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26809 -0.01341 -1.00000 - 8065 2002 3 18 10 58 43 436 4.9908 172.45252 1523.64692 1339.01119 0.03005 13.39283 7.41086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26737 -0.01341 -1.00000 - 8067 2002 3 18 10 58 53 418 4.9909 172.45795 1524.06663 1339.34251 0.02996 13.39089 7.40944 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26664 -0.01340 -1.00000 - 8069 2002 3 18 10 59 3 400 4.9909 172.46339 1524.48599 1339.67362 0.02987 13.38909 7.40818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26592 -0.01340 -1.00000 - 8071 2002 3 18 10 59 13 382 4.9909 172.46883 1524.90506 1340.00451 0.02978 13.38740 7.40708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26519 -0.01340 -1.00000 - 8073 2002 3 18 10 59 23 363 4.9909 172.47428 1525.32382 1340.33517 0.02969 13.38575 7.40611 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26446 -0.01340 -1.00000 - 8075 2002 3 18 10 59 33 345 4.9909 172.47973 1525.74232 1340.66559 0.02960 13.38410 7.40527 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26374 -0.01340 -1.00000 - 8077 2002 3 18 10 59 43 327 4.9909 172.48519 1526.16057 1340.99580 0.02951 13.38240 7.40453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26301 -0.01340 -1.00000 - 8079 2002 3 18 10 59 53 309 4.9910 172.49065 1526.57863 1341.32579 0.02941 13.38062 7.40389 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26229 -0.01340 -1.00000 - 8081 2002 3 18 11 0 3 291 4.9910 172.49611 1526.99653 1341.65558 0.02932 13.37874 7.40334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26156 -0.01340 -1.00000 - 8083 2002 3 18 11 0 13 273 4.9910 172.50159 1527.41437 1341.98517 0.02923 13.37674 7.40285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26083 -0.01340 -1.00000 - 8085 2002 3 18 11 0 23 255 4.9910 172.50706 1527.83262 1342.31517 0.02914 13.37701 7.40257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.26011 -0.01340 -1.00000 - 8087 2002 3 18 11 0 33 237 4.9910 172.51254 1528.25209 1342.64619 0.02905 13.37679 7.40251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25938 -0.01340 -1.00000 - 8089 2002 3 18 11 0 43 219 4.9911 172.51803 1528.67326 1342.97818 0.02896 13.37646 7.40268 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25866 -0.01339 -1.00000 - 8091 2002 3 18 11 0 53 201 4.9911 172.52352 1529.09627 1343.31096 0.02886 13.37645 7.40307 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25793 -0.01339 -1.00000 - 8093 2002 3 18 11 1 3 184 4.9911 172.52901 1529.52101 1343.64434 0.02877 13.37669 7.40369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25720 -0.01339 -1.00000 - 8095 2002 3 18 11 1 13 166 4.9911 172.53451 1529.94735 1343.97813 0.02868 13.37730 7.40451 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25648 -0.01339 -1.00000 - 8097 2002 3 18 11 1 23 148 4.9911 172.54001 1530.37495 1344.31214 0.02859 13.37847 7.40553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25575 -0.01339 -1.00000 - 8099 2002 3 18 11 1 33 130 4.9911 172.54552 1530.80353 1344.64623 0.02849 13.38033 7.40671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25503 -0.01339 -1.00000 - 8101 2002 3 18 11 1 43 113 4.9912 172.55103 1531.23281 1344.98029 0.02840 13.38297 7.40804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25430 -0.01339 -1.00000 - 8103 2002 3 18 11 1 53 95 4.9912 172.55655 1531.66254 1345.31423 0.02831 13.38649 7.40949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25357 -0.01339 -1.00000 - 8105 2002 3 18 11 2 3 77 4.9912 172.56207 1532.09247 1345.64797 0.02822 13.39096 7.41103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25285 -0.01339 -1.00000 - 8107 2002 3 18 11 2 13 60 4.9912 172.56759 1532.52244 1345.98143 0.02813 13.39640 7.41263 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25212 -0.01339 -1.00000 - 8109 2002 3 18 11 2 23 42 4.9912 172.57312 1532.95218 1346.31453 0.02803 13.40279 7.41425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25140 -0.01339 -1.00000 - 8111 2002 3 18 11 2 33 24 4.9912 172.57865 1533.38150 1346.64724 0.02794 13.41011 7.41586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.25067 -0.01339 -1.00000 - 8113 2002 3 18 11 2 43 7 4.9913 172.58419 1533.81025 1346.97951 0.02784 13.41830 7.41741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24995 -0.01338 -1.00000 - 8115 2002 3 18 11 2 52 990 4.9913 172.58973 1534.23824 1347.31133 0.02775 13.42725 7.41886 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24922 -0.01338 -1.00000 - 8117 2002 3 18 11 3 2 972 4.9913 172.59528 1534.66534 1347.64265 0.02765 13.43686 7.42019 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24849 -0.01338 -1.00000 - 8119 2002 3 18 11 3 12 955 4.9913 172.60083 1535.09146 1347.97348 0.02755 13.44698 7.42135 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24777 -0.01338 -1.00000 - 8121 2002 3 18 11 3 22 937 4.9913 172.60638 1535.51642 1348.30377 0.02745 13.45747 7.42229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24704 -0.01338 -1.00000 - 8123 2002 3 18 11 3 32 920 4.9913 172.61193 1535.94011 1348.63352 0.02736 13.46814 7.42298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24632 -0.01338 -1.00000 - 8125 2002 3 18 11 3 42 903 4.9913 172.61749 1536.36247 1348.96275 0.02726 13.47880 7.42337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24559 -0.01338 -1.00000 - 8127 2002 3 18 11 3 52 885 4.9914 172.62306 1536.78344 1349.29146 0.02717 13.48922 7.42344 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24486 -0.01338 -1.00000 - 8129 2002 3 18 11 4 2 868 4.9914 172.62863 1537.20300 1349.61968 0.02707 13.49917 7.42314 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24414 -0.01338 -1.00000 - 8131 2002 3 18 11 4 12 851 4.9914 172.63420 1537.62120 1349.94742 0.02698 13.50839 7.42244 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24341 -0.01338 -1.00000 - 8133 2002 3 18 11 4 22 834 4.9914 172.63977 1538.03803 1350.27469 0.02688 13.51659 7.42132 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24269 -0.01338 -1.00000 - 8135 2002 3 18 11 4 32 817 4.9914 172.64535 1538.45355 1350.60152 0.02678 13.52349 7.41975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24196 -0.01337 -1.00000 - 8137 2002 3 18 11 4 42 799 4.9914 172.65093 1538.86788 1350.92797 0.02668 13.52878 7.41769 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24123 -0.01337 -1.00000 - 8139 2002 3 18 11 4 52 782 4.9915 172.65652 1539.28114 1351.25407 0.02658 13.53216 7.41514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.24051 -0.01337 -1.00000 - 8141 2002 3 18 11 5 2 765 4.9915 172.66211 1539.69351 1351.57987 0.02648 13.53336 7.41208 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23978 -0.01337 -1.00000 - 8143 2002 3 18 11 5 12 748 4.9915 172.66770 1540.10521 1351.90543 0.02637 13.53215 7.40851 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23906 -0.01337 -1.00000 - 8145 2002 3 18 11 5 22 731 4.9915 172.67329 1540.51637 1352.23076 0.02627 13.52838 7.40441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23833 -0.01337 -1.00000 - 8147 2002 3 18 11 5 32 714 4.9915 172.67889 1540.92718 1352.55593 0.02617 13.52193 7.39980 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23760 -0.01337 -1.00000 - 8149 2002 3 18 11 5 42 697 4.9915 172.68450 1541.33783 1352.88097 0.02607 13.51274 7.39467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23688 -0.01337 -1.00000 - 8151 2002 3 18 11 5 52 680 4.9915 172.69010 1541.74849 1353.20596 0.02596 13.50081 7.38905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23615 -0.01337 -1.00000 - 8153 2002 3 18 11 6 2 663 4.9916 172.69571 1542.15931 1353.53092 0.02586 13.48622 7.38295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23543 -0.01337 -1.00000 - 8155 2002 3 18 11 6 12 647 4.9916 172.70132 1542.57050 1353.85591 0.02576 13.46909 7.37640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23470 -0.01337 -1.00000 - 8157 2002 3 18 11 6 22 630 4.9916 172.70694 1542.98209 1354.18093 0.02566 13.44965 7.36941 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23397 -0.01337 -1.00000 - 8159 2002 3 18 11 6 32 613 4.9916 172.71255 1543.39417 1354.50603 0.02556 13.42813 7.36202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23325 -0.01336 -1.00000 - 8161 2002 3 18 11 6 42 596 4.9916 172.71818 1543.80679 1354.83123 0.02547 13.40483 7.35426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23252 -0.01336 -1.00000 - 8163 2002 3 18 11 6 52 579 4.9916 172.72380 1544.21998 1355.15656 0.02537 13.38006 7.34616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23180 -0.01336 -1.00000 - 8165 2002 3 18 11 7 2 563 4.9916 172.72942 1544.63374 1355.48204 0.02527 13.35412 7.33776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23107 -0.01336 -1.00000 - 8167 2002 3 18 11 7 12 546 4.9917 172.73505 1545.04812 1355.80769 0.02518 13.32733 7.32910 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.23034 -0.01336 -1.00000 - 8169 2002 3 18 11 7 22 529 4.9917 172.74069 1545.46302 1356.13348 0.02508 13.29996 7.32022 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22962 -0.01336 -1.00000 - 8171 2002 3 18 11 7 32 513 4.9917 172.74632 1545.87841 1356.45943 0.02497 13.27229 7.31115 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22889 -0.01336 -1.00000 - 8173 2002 3 18 11 7 42 496 4.9917 172.75196 1546.29426 1356.78554 0.02487 13.24455 7.30193 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22817 -0.01336 -1.00000 - 8175 2002 3 18 11 7 52 480 4.9917 172.75760 1546.71051 1357.11182 0.02477 13.21693 7.29261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22744 -0.01336 -1.00000 - 8177 2002 3 18 11 8 2 463 4.9917 172.76324 1547.12713 1357.43827 0.02467 13.18960 7.28321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22671 -0.01336 -1.00000 - 8179 2002 3 18 11 8 12 447 4.9917 172.76889 1547.54413 1357.76487 0.02456 13.16268 7.27378 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22599 -0.01336 -1.00000 - 8181 2002 3 18 11 8 22 430 4.9918 172.77453 1547.96140 1358.09159 0.02446 13.13627 7.26435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22526 -0.01335 -1.00000 - 8183 2002 3 18 11 8 32 414 4.9918 172.78018 1548.37893 1358.41844 0.02435 13.11044 7.25497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22454 -0.01335 -1.00000 - 8185 2002 3 18 11 8 42 397 4.9918 172.78584 1548.79668 1358.74540 0.02424 13.08525 7.24565 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22381 -0.01335 -1.00000 - 8187 2002 3 18 11 8 52 381 4.9918 172.79149 1549.21463 1359.07247 0.02413 13.06074 7.23644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22308 -0.01335 -1.00000 - 8189 2002 3 18 11 9 2 364 4.9918 172.79715 1549.63276 1359.39965 0.02403 13.03696 7.22737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22236 -0.01335 -1.00000 - 8191 2002 3 18 11 9 12 348 4.9918 172.80281 1550.05109 1359.72691 0.02392 13.01398 7.21847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22163 -0.01335 -1.00000 - 8193 2002 3 18 11 9 22 332 4.9918 172.80847 1550.46953 1360.05422 0.02381 12.99187 7.20977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22091 -0.01335 -1.00000 - 8195 2002 3 18 11 9 32 315 4.9918 172.81413 1550.88805 1360.38158 0.02370 12.97071 7.20130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.22018 -0.01335 -1.00000 - 8197 2002 3 18 11 9 42 299 4.9919 172.81980 1551.30663 1360.70896 0.02359 12.95056 7.19307 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21945 -0.01335 -1.00000 - 8199 2002 3 18 11 9 52 283 4.9919 172.82547 1551.72522 1361.03637 0.02349 12.93147 7.18512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21873 -0.01335 -1.00000 - 8201 2002 3 18 11 10 2 267 4.9919 172.83114 1552.14379 1361.36378 0.02338 12.91349 7.17746 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21800 -0.01335 -1.00000 - 8203 2002 3 18 11 10 12 250 4.9919 172.83681 1552.56237 1361.69118 0.02328 12.89664 7.17012 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21728 -0.01335 -1.00000 - 8205 2002 3 18 11 10 22 234 4.9919 172.84249 1552.98086 1362.01853 0.02317 12.88096 7.16310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21655 -0.01334 -1.00000 - 8207 2002 3 18 11 10 32 218 4.9919 172.84817 1553.39924 1362.34581 0.02306 12.86644 7.15642 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21582 -0.01334 -1.00000 - 8209 2002 3 18 11 10 42 202 4.9919 172.85385 1553.81749 1362.67301 0.02296 12.85309 7.15010 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21510 -0.01334 -1.00000 - 8211 2002 3 18 11 10 52 186 4.9919 172.85953 1554.23560 1363.00012 0.02285 12.84087 7.14413 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21437 -0.01334 -1.00000 - 8213 2002 3 18 11 11 2 170 4.9920 172.86521 1554.65354 1363.32712 0.02274 12.82976 7.13853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21365 -0.01334 -1.00000 - 8215 2002 3 18 11 11 12 154 4.9920 172.87089 1555.07136 1363.65401 0.02264 12.81974 7.13329 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21292 -0.01334 -1.00000 - 8217 2002 3 18 11 11 22 138 4.9920 172.87658 1555.48898 1363.98072 0.02253 12.81078 7.12842 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21219 -0.01334 -1.00000 - 8219 2002 3 18 11 11 32 122 4.9920 172.88227 1555.90641 1364.30726 0.02242 12.80284 7.12392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21147 -0.01334 -1.00000 - 8221 2002 3 18 11 11 42 106 4.9920 172.88796 1556.32361 1364.63361 0.02231 12.79590 7.11978 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21074 -0.01334 -1.00000 - 8223 2002 3 18 11 11 52 90 4.9920 172.89365 1556.74058 1364.95977 0.02220 12.78994 7.11600 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.21001 -0.01334 -1.00000 - 8225 2002 3 18 11 12 2 74 4.9920 172.89934 1557.15729 1365.28571 0.02210 12.78494 7.11256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20929 -0.01334 -1.00000 - 8227 2002 3 18 11 12 12 58 4.9920 172.90504 1557.57376 1365.61142 0.02199 12.78087 7.10946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20856 -0.01334 -1.00000 - 8229 2002 3 18 11 12 22 42 4.9921 172.91073 1557.98990 1365.93686 0.02187 12.77773 7.10668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20784 -0.01333 -1.00000 - 8231 2002 3 18 11 12 32 26 4.9921 172.91643 1558.40566 1366.26202 0.02176 12.77548 7.10422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20711 -0.01333 -1.00000 - 8233 2002 3 18 11 12 42 10 4.9921 172.92213 1558.82101 1366.58690 0.02165 12.77410 7.10204 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20638 -0.01333 -1.00000 - 8235 2002 3 18 11 12 51 994 4.9921 172.92783 1559.23590 1366.91149 0.02154 12.77355 7.10014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20566 -0.01333 -1.00000 - 8237 2002 3 18 11 13 1 978 4.9921 172.93353 1559.65029 1367.23577 0.02143 12.77381 7.09850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20493 -0.01333 -1.00000 - 8239 2002 3 18 11 13 11 963 4.9921 172.93924 1560.06417 1367.55974 0.02132 12.77481 7.09709 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20421 -0.01333 -1.00000 - 8241 2002 3 18 11 13 21 947 4.9921 172.94494 1560.47745 1367.88336 0.02120 12.77652 7.09589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20348 -0.01333 -1.00000 - 8243 2002 3 18 11 13 31 931 4.9921 172.95064 1560.89009 1368.20664 0.02109 12.77885 7.09489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20275 -0.01333 -1.00000 - 8245 2002 3 18 11 13 41 915 4.9921 172.95635 1561.30206 1368.52957 0.02098 12.78173 7.09404 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20203 -0.01333 -1.00000 - 8247 2002 3 18 11 13 51 900 4.9922 172.96205 1561.71333 1368.85216 0.02087 12.78505 7.09334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20130 -0.01333 -1.00000 - 8249 2002 3 18 11 14 1 884 4.9922 172.96776 1562.12391 1369.17440 0.02075 12.78869 7.09276 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.20058 -0.01333 -1.00000 - 8251 2002 3 18 11 14 11 868 4.9922 172.97347 1562.53382 1369.49631 0.02064 12.79252 7.09227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19985 -0.01332 -1.00000 - 8253 2002 3 18 11 14 21 853 4.9922 172.97918 1562.94302 1369.81786 0.02052 12.79639 7.09185 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19912 -0.01332 -1.00000 - 8255 2002 3 18 11 14 31 837 4.9922 172.98489 1563.35154 1370.13906 0.02041 12.80017 7.09147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19840 -0.01332 -1.00000 - 8257 2002 3 18 11 14 41 822 4.9922 172.99060 1563.75941 1370.45992 0.02029 12.80371 7.09111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19767 -0.01332 -1.00000 - 8259 2002 3 18 11 14 51 806 4.9922 172.99631 1564.16666 1370.78048 0.02018 12.80686 7.09074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19695 -0.01332 -1.00000 - 8261 2002 3 18 11 15 1 790 4.9922 173.00202 1564.57333 1371.10074 0.02007 12.80953 7.09035 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19622 -0.01332 -1.00000 - 8263 2002 3 18 11 15 11 775 4.9922 173.00773 1564.97955 1371.42072 0.01995 12.81161 7.08992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19549 -0.01332 -1.00000 - 8265 2002 3 18 11 15 21 759 4.9922 173.01345 1565.38589 1371.74107 0.01984 12.81528 7.08956 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19477 -0.01332 -1.00000 - 8267 2002 3 18 11 15 31 744 4.9922 173.01916 1565.79324 1372.06233 0.01972 12.81795 7.08929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19404 -0.01332 -1.00000 - 8269 2002 3 18 11 15 41 728 4.9923 173.02488 1566.20210 1372.38449 0.01961 12.81983 7.08911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19331 -0.01332 -1.00000 - 8271 2002 3 18 11 15 51 713 4.9923 173.03059 1566.61266 1372.70740 0.01950 12.82123 7.08901 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19259 -0.01332 -1.00000 - 8273 2002 3 18 11 16 1 697 4.9923 173.03631 1567.02483 1373.03087 0.01938 12.82209 7.08899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19186 -0.01332 -1.00000 - 8275 2002 3 18 11 16 11 682 4.9923 173.04203 1567.43849 1373.35475 0.01927 12.82247 7.08905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19114 -0.01331 -1.00000 - 8277 2002 3 18 11 16 21 667 4.9923 173.04775 1567.85338 1373.67885 0.01915 12.82248 7.08915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.19041 -0.01331 -1.00000 - 8279 2002 3 18 11 16 31 651 4.9923 173.05346 1568.26928 1374.00307 0.01904 12.82222 7.08930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18968 -0.01331 -1.00000 - 8281 2002 3 18 11 16 41 636 4.9923 173.05918 1568.68597 1374.32731 0.01892 12.82177 7.08947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18896 -0.01331 -1.00000 - 8283 2002 3 18 11 16 51 620 4.9923 173.06490 1569.10329 1374.65151 0.01881 12.82122 7.08966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18823 -0.01331 -1.00000 - 8285 2002 3 18 11 17 1 605 4.9923 173.07062 1569.52105 1374.97560 0.01869 12.82065 7.08983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18751 -0.01331 -1.00000 - 8287 2002 3 18 11 17 11 590 4.9923 173.07634 1569.93916 1375.29952 0.01858 12.82017 7.08998 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18678 -0.01331 -1.00000 - 8289 2002 3 18 11 17 21 574 4.9923 173.08207 1570.35741 1375.62321 0.01846 12.81985 7.09008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18605 -0.01331 -1.00000 - 8291 2002 3 18 11 17 31 559 4.9924 173.08779 1570.77566 1375.94663 0.01834 12.81977 7.09011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18533 -0.01331 -1.00000 - 8293 2002 3 18 11 17 41 544 4.9924 173.09351 1571.19376 1376.26977 0.01822 12.82001 7.09005 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18460 -0.01331 -1.00000 - 8295 2002 3 18 11 17 51 529 4.9924 173.09923 1571.61156 1376.59260 0.01810 12.82063 7.08988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18388 -0.01331 -1.00000 - 8297 2002 3 18 11 18 1 513 4.9924 173.10495 1572.02893 1376.91511 0.01799 12.82168 7.08957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18315 -0.01330 -1.00000 - 8299 2002 3 18 11 18 11 498 4.9924 173.11067 1572.44577 1377.23727 0.01787 12.82318 7.08912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18242 -0.01330 -1.00000 - 8301 2002 3 18 11 18 21 483 4.9924 173.11640 1572.86188 1377.55904 0.01775 12.82514 7.08848 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18170 -0.01330 -1.00000 - 8303 2002 3 18 11 18 31 468 4.9924 173.12212 1573.27713 1377.88042 0.01763 12.82750 7.08764 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18097 -0.01330 -1.00000 - 8305 2002 3 18 11 18 41 453 4.9924 173.12784 1573.69141 1378.20141 0.01751 12.83020 7.08657 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.18025 -0.01330 -1.00000 - 8307 2002 3 18 11 18 51 437 4.9924 173.13356 1574.10465 1378.52202 0.01739 12.83311 7.08525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17952 -0.01330 -1.00000 - 8309 2002 3 18 11 19 1 422 4.9924 173.13928 1574.51676 1378.84225 0.01727 12.83607 7.08367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17879 -0.01330 -1.00000 - 8311 2002 3 18 11 19 11 407 4.9924 173.14501 1574.92780 1379.16211 0.01715 12.83886 7.08179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17807 -0.01330 -1.00000 - 8313 2002 3 18 11 19 21 392 4.9924 173.15073 1575.33769 1379.48160 0.01703 12.84126 7.07961 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17734 -0.01330 -1.00000 - 8315 2002 3 18 11 19 31 377 4.9924 173.15645 1575.74649 1379.80072 0.01691 12.84300 7.07710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17661 -0.01330 -1.00000 - 8317 2002 3 18 11 19 41 362 4.9925 173.16217 1576.15427 1380.11953 0.01679 12.84380 7.07426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17589 -0.01330 -1.00000 - 8319 2002 3 18 11 19 51 347 4.9925 173.16789 1576.56115 1380.43804 0.01667 12.84340 7.07106 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17516 -0.01330 -1.00000 - 8321 2002 3 18 11 20 1 332 4.9925 173.17361 1576.96725 1380.75630 0.01654 12.84155 7.06750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17444 -0.01329 -1.00000 - 8323 2002 3 18 11 20 11 317 4.9925 173.17933 1577.37278 1381.07433 0.01642 12.83804 7.06358 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17371 -0.01329 -1.00000 - 8325 2002 3 18 11 20 21 301 4.9925 173.18505 1577.77782 1381.39215 0.01630 12.83270 7.05929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17298 -0.01329 -1.00000 - 8327 2002 3 18 11 20 31 286 4.9925 173.19077 1578.18254 1381.70979 0.01617 12.82542 7.05464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17226 -0.01329 -1.00000 - 8329 2002 3 18 11 20 41 271 4.9925 173.19649 1578.58709 1382.02730 0.01605 12.81618 7.04963 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17153 -0.01329 -1.00000 - 8331 2002 3 18 11 20 51 256 4.9925 173.20221 1578.99160 1382.34472 0.01593 12.80503 7.04427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17081 -0.01329 -1.00000 - 8333 2002 3 18 11 21 1 241 4.9925 173.20793 1579.39618 1382.66207 0.01581 12.79206 7.03857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.17008 -0.01329 -1.00000 - 8335 2002 3 18 11 21 11 226 4.9925 173.21365 1579.80097 1382.97939 0.01568 12.77741 7.03255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16935 -0.01329 -1.00000 - 8337 2002 3 18 11 21 21 211 4.9925 173.21936 1580.20598 1383.29667 0.01556 12.76126 7.02623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16863 -0.01329 -1.00000 - 8339 2002 3 18 11 21 31 197 4.9925 173.22508 1580.61126 1383.61394 0.01544 12.74380 7.01963 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16790 -0.01329 -1.00000 - 8341 2002 3 18 11 21 41 182 4.9925 173.23079 1581.01682 1383.93122 0.01531 12.72525 7.01276 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16717 -0.01329 -1.00000 - 8343 2002 3 18 11 21 51 167 4.9925 173.23651 1581.42268 1384.24854 0.01519 12.70583 7.00564 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16645 -0.01328 -1.00000 - 8345 2002 3 18 11 22 1 152 4.9925 173.24222 1581.82882 1384.56589 0.01507 12.68576 6.99832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16572 -0.01328 -1.00000 - 8347 2002 3 18 11 22 11 137 4.9925 173.24794 1582.23525 1384.88330 0.01495 12.66524 6.99080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16500 -0.01328 -1.00000 - 8349 2002 3 18 11 22 21 122 4.9925 173.25365 1582.64189 1385.20073 0.01483 12.64446 6.98311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16427 -0.01328 -1.00000 - 8351 2002 3 18 11 22 31 107 4.9926 173.25936 1583.04869 1385.51820 0.01470 12.62357 6.97528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16354 -0.01328 -1.00000 - 8353 2002 3 18 11 22 41 92 4.9926 173.26507 1583.45562 1385.83571 0.01458 12.60269 6.96732 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16282 -0.01328 -1.00000 - 8355 2002 3 18 11 22 51 77 4.9926 173.27078 1583.86263 1386.15326 0.01446 12.58195 6.95928 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16209 -0.01328 -1.00000 - 8357 2002 3 18 11 23 1 62 4.9926 173.27648 1584.26968 1386.47087 0.01433 12.56143 6.95117 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16137 -0.01328 -1.00000 - 8359 2002 3 18 11 23 11 48 4.9926 173.28219 1584.67678 1386.78851 0.01421 12.54119 6.94302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.16064 -0.01328 -1.00000 - 8361 2002 3 18 11 23 21 33 4.9926 173.28789 1585.08384 1387.10617 0.01408 12.52127 6.93485 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15991 -0.01328 -1.00000 - 8363 2002 3 18 11 23 31 18 4.9926 173.29360 1585.49085 1387.42385 0.01395 12.50167 6.92670 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15919 -0.01328 -1.00000 - 8365 2002 3 18 11 23 41 3 4.9926 173.29930 1585.89779 1387.74155 0.01382 12.48242 6.91857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15846 -0.01328 -1.00000 - 8367 2002 3 18 11 23 50 988 4.9926 173.30500 1586.30467 1388.05927 0.01369 12.46351 6.91050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15773 -0.01327 -1.00000 - 8369 2002 3 18 11 24 0 973 4.9926 173.31069 1586.71146 1388.37703 0.01356 12.44495 6.90252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15701 -0.01327 -1.00000 - 8371 2002 3 18 11 24 10 959 4.9926 173.31639 1587.11824 1388.69480 0.01343 12.42674 6.89464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15628 -0.01327 -1.00000 - 8373 2002 3 18 11 24 20 944 4.9926 173.32208 1587.52495 1389.01256 0.01330 12.40890 6.88688 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15556 -0.01327 -1.00000 - 8375 2002 3 18 11 24 30 929 4.9926 173.32778 1587.93161 1389.33032 0.01317 12.39143 6.87927 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15483 -0.01327 -1.00000 - 8377 2002 3 18 11 24 40 914 4.9926 173.33347 1588.33822 1389.64808 0.01304 12.37436 6.87183 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15410 -0.01327 -1.00000 - 8379 2002 3 18 11 24 50 899 4.9926 173.33916 1588.74480 1389.96584 0.01291 12.35770 6.86457 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15338 -0.01327 -1.00000 - 8381 2002 3 18 11 25 0 885 4.9926 173.34484 1589.15138 1390.28360 0.01278 12.34146 6.85751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15265 -0.01327 -1.00000 - 8383 2002 3 18 11 25 10 870 4.9926 173.35053 1589.55800 1390.60134 0.01265 12.32567 6.85067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15193 -0.01327 -1.00000 - 8385 2002 3 18 11 25 20 855 4.9926 173.35621 1589.96464 1390.91905 0.01252 12.31035 6.84407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15120 -0.01327 -1.00000 - 8387 2002 3 18 11 25 30 840 4.9926 173.36189 1590.37130 1391.23672 0.01239 12.29554 6.83771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.15047 -0.01327 -1.00000 - 8389 2002 3 18 11 25 40 826 4.9926 173.36757 1590.77801 1391.55434 0.01226 12.28128 6.83162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14975 -0.01327 -1.00000 - 8391 2002 3 18 11 25 50 811 4.9926 173.37325 1591.18477 1391.87192 0.01213 12.26761 6.82579 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14902 -0.01326 -1.00000 - 8393 2002 3 18 11 26 0 796 4.9926 173.37892 1591.59157 1392.18944 0.01201 12.25459 6.82025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14830 -0.01326 -1.00000 - 8395 2002 3 18 11 26 10 781 4.9926 173.38460 1591.99847 1392.50689 0.01188 12.24226 6.81500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14757 -0.01326 -1.00000 - 8397 2002 3 18 11 26 20 767 4.9926 173.39027 1592.40540 1392.82424 0.01175 12.23069 6.81004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14684 -0.01326 -1.00000 - 8399 2002 3 18 11 26 30 752 4.9926 173.39594 1592.81234 1393.14146 0.01162 12.21993 6.80538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14612 -0.01326 -1.00000 - 8401 2002 3 18 11 26 40 737 4.9926 173.40160 1593.21927 1393.45859 0.01149 12.21003 6.80102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14539 -0.01326 -1.00000 - 8403 2002 3 18 11 26 50 723 4.9926 173.40727 1593.62615 1393.77559 0.01136 12.20104 6.79696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14466 -0.01326 -1.00000 - 8405 2002 3 18 11 27 0 708 4.9926 173.41293 1594.03294 1394.09243 0.01123 12.19299 6.79320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14394 -0.01326 -1.00000 - 8407 2002 3 18 11 27 10 693 4.9926 173.41859 1594.43964 1394.40909 0.01109 12.18591 6.78973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14321 -0.01326 -1.00000 - 8409 2002 3 18 11 27 20 679 4.9927 173.42425 1594.84615 1394.72553 0.01096 12.17982 6.78655 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14249 -0.01326 -1.00000 - 8411 2002 3 18 11 27 30 664 4.9927 173.42990 1595.25241 1395.04175 0.01083 12.17473 6.78365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14176 -0.01326 -1.00000 - 8413 2002 3 18 11 27 40 649 4.9927 173.43556 1595.65836 1395.35773 0.01070 12.17066 6.78101 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14103 -0.01325 -1.00000 - 8415 2002 3 18 11 27 50 634 4.9927 173.44121 1596.06393 1395.67347 0.01057 12.16761 6.77864 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.14031 -0.01325 -1.00000 - 8417 2002 3 18 11 28 0 620 4.9927 173.44686 1596.46906 1395.98895 0.01044 12.16558 6.77650 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13958 -0.01325 -1.00000 - 8419 2002 3 18 11 28 10 605 4.9927 173.45250 1596.87374 1396.30415 0.01030 12.16454 6.77459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13886 -0.01325 -1.00000 - 8421 2002 3 18 11 28 20 590 4.9927 173.45815 1597.27784 1396.61904 0.01017 12.16440 6.77289 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13813 -0.01325 -1.00000 - 8423 2002 3 18 11 28 30 576 4.9927 173.46379 1597.68134 1396.93360 0.01004 12.16506 6.77138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13740 -0.01325 -1.00000 - 8425 2002 3 18 11 28 40 561 4.9927 173.46943 1598.08420 1397.24785 0.00990 12.16639 6.77004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13668 -0.01325 -1.00000 - 8427 2002 3 18 11 28 50 546 4.9927 173.47506 1598.48639 1397.56179 0.00976 12.16827 6.76885 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13595 -0.01325 -1.00000 - 8429 2002 3 18 11 29 0 532 4.9927 173.48070 1598.88792 1397.87540 0.00962 12.17054 6.76779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13522 -0.01325 -1.00000 - 8431 2002 3 18 11 29 10 517 4.9927 173.48633 1599.28882 1398.18869 0.00947 12.17308 6.76683 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13450 -0.01325 -1.00000 - 8433 2002 3 18 11 29 20 502 4.9927 173.49195 1599.68905 1398.50164 0.00933 12.17572 6.76596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13377 -0.01325 -1.00000 - 8435 2002 3 18 11 29 30 488 4.9927 173.49757 1600.08865 1398.81425 0.00921 12.17835 6.76514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13305 -0.01325 -1.00000 - 8437 2002 3 18 11 29 40 473 4.9927 173.50320 1600.48763 1399.12654 0.00909 12.18083 6.76436 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13232 -0.01324 -1.00000 - 8439 2002 3 18 11 29 50 458 4.9927 173.50882 1600.88603 1399.43853 0.00897 12.18306 6.76360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13159 -0.01324 -1.00000 - 8441 2002 3 18 11 30 0 444 4.9927 173.51444 1601.28389 1399.75022 0.00884 12.18495 6.76284 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13087 -0.01324 -1.00000 - 8443 2002 3 18 11 30 10 429 4.9927 173.52005 1601.68130 1400.06165 0.00869 12.18645 6.76205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.13014 -0.01324 -1.00000 - 8445 2002 3 18 11 30 20 414 4.9927 173.52566 1602.07889 1400.37342 0.00855 12.18964 6.76135 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12942 -0.01324 -1.00000 - 8447 2002 3 18 11 30 30 400 4.9927 173.53126 1602.47759 1400.68608 0.00841 12.19208 6.76074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12869 -0.01324 -1.00000 - 8449 2002 3 18 11 30 40 385 4.9927 173.53687 1602.87788 1400.99958 0.00827 12.19390 6.76022 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12796 -0.01324 -1.00000 - 8451 2002 3 18 11 30 50 370 4.9927 173.54247 1603.27987 1401.31378 0.00812 12.19537 6.75978 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12724 -0.01324 -1.00000 - 8453 2002 3 18 11 31 0 355 4.9927 173.54807 1603.68345 1401.62850 0.00798 12.19644 6.75943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12651 -0.01324 -1.00000 - 8455 2002 3 18 11 31 10 341 4.9927 173.55366 1604.08845 1401.94355 0.00784 12.19718 6.75914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12578 -0.01324 -1.00000 - 8457 2002 3 18 11 31 20 326 4.9927 173.55925 1604.49457 1402.25878 0.00770 12.19766 6.75890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12506 -0.01324 -1.00000 - 8459 2002 3 18 11 31 30 311 4.9927 173.56484 1604.90157 1402.57406 0.00756 12.19800 6.75869 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12433 -0.01323 -1.00000 - 8461 2002 3 18 11 31 40 297 4.9927 173.57042 1605.30922 1402.88931 0.00742 12.19826 6.75850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12361 -0.01323 -1.00000 - 8463 2002 3 18 11 31 50 282 4.9926 173.57600 1605.71734 1403.20446 0.00729 12.19853 6.75830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12288 -0.01323 -1.00000 - 8465 2002 3 18 11 32 0 267 4.9926 173.58158 1606.12575 1403.51946 0.00715 12.19889 6.75809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12215 -0.01323 -1.00000 - 8467 2002 3 18 11 32 10 253 4.9926 173.58716 1606.53433 1403.83424 0.00701 12.19940 6.75783 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12143 -0.01323 -1.00000 - 8469 2002 3 18 11 32 20 238 4.9926 173.59273 1606.94288 1404.14874 0.00688 12.20010 6.75751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.12070 -0.01323 -1.00000 - 8471 2002 3 18 11 32 30 223 4.9926 173.59829 1607.35125 1404.46293 0.00674 12.20104 6.75710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11998 -0.01323 -1.00000 - 8473 2002 3 18 11 32 40 208 4.9926 173.60386 1607.75930 1404.77681 0.00661 12.20223 6.75658 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11925 -0.01323 -1.00000 - 8475 2002 3 18 11 32 50 194 4.9926 173.60942 1608.16687 1405.09034 0.00647 12.20369 6.75593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11852 -0.01323 -1.00000 - 8477 2002 3 18 11 33 0 179 4.9926 173.61497 1608.57383 1405.40353 0.00633 12.20540 6.75513 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11780 -0.01323 -1.00000 - 8479 2002 3 18 11 33 10 164 4.9926 173.62053 1608.98009 1405.71634 0.00619 12.20736 6.75415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11707 -0.01323 -1.00000 - 8481 2002 3 18 11 33 20 150 4.9926 173.62607 1609.38546 1406.02876 0.00605 12.20952 6.75297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11634 -0.01323 -1.00000 - 8483 2002 3 18 11 33 30 135 4.9926 173.63162 1609.78983 1406.34078 0.00591 12.21185 6.75157 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11562 -0.01322 -1.00000 - 8485 2002 3 18 11 33 40 120 4.9926 173.63716 1610.19313 1406.65241 0.00577 12.21425 6.74994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11489 -0.01322 -1.00000 - 8487 2002 3 18 11 33 50 105 4.9926 173.64270 1610.59528 1406.96368 0.00563 12.21660 6.74804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11417 -0.01322 -1.00000 - 8489 2002 3 18 11 34 0 91 4.9926 173.64823 1610.99627 1407.27459 0.00548 12.21872 6.74587 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11344 -0.01322 -1.00000 - 8491 2002 3 18 11 34 10 76 4.9926 173.65376 1611.39613 1407.58515 0.00534 12.22039 6.74341 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11271 -0.01322 -1.00000 - 8493 2002 3 18 11 34 20 61 4.9926 173.65929 1611.79487 1407.89537 0.00519 12.22137 6.74064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11199 -0.01322 -1.00000 - 8495 2002 3 18 11 34 30 46 4.9926 173.66481 1612.19258 1408.20526 0.00505 12.22133 6.73756 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11126 -0.01322 -1.00000 - 8497 2002 3 18 11 34 40 31 4.9926 173.67033 1612.58939 1408.51488 0.00491 12.21999 6.73414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.11054 -0.01322 -1.00000 - 8499 2002 3 18 11 34 50 17 4.9926 173.67584 1612.98545 1408.82427 0.00476 12.21704 6.73040 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10981 -0.01322 -1.00000 - 8501 2002 3 18 11 35 0 2 4.9926 173.68135 1613.38094 1409.13347 0.00462 12.21225 6.72632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10908 -0.01322 -1.00000 - 8504 2002 3 18 11 35 14 980 4.9926 173.68961 1613.97360 1409.59736 0.00441 12.20128 6.71950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10799 -0.01322 -1.00000 - 8506 2002 3 18 11 35 24 965 4.9926 173.69511 1614.36851 1409.90618 0.00427 12.19138 6.71461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10727 -0.01321 -1.00000 - 8508 2002 3 18 11 35 34 950 4.9926 173.70061 1614.76345 1410.21492 0.00412 12.17949 6.70942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10654 -0.01321 -1.00000 - 8510 2002 3 18 11 35 44 935 4.9926 173.70610 1615.15854 1410.52361 0.00398 12.16575 6.70392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10582 -0.01321 -1.00000 - 8512 2002 3 18 11 35 54 920 4.9926 173.71159 1615.55387 1410.83229 0.00384 12.15039 6.69815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10509 -0.01321 -1.00000 - 8514 2002 3 18 11 36 4 905 4.9926 173.71707 1615.94951 1411.14097 0.00370 12.13364 6.69211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10436 -0.01321 -1.00000 - 8516 2002 3 18 11 36 14 890 4.9926 173.72255 1616.34552 1411.44969 0.00355 12.11576 6.68584 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10364 -0.01321 -1.00000 - 8518 2002 3 18 11 36 24 876 4.9926 173.72803 1616.74186 1411.75841 0.00341 12.09699 6.67934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10291 -0.01321 -1.00000 - 8520 2002 3 18 11 36 34 861 4.9926 173.73350 1617.13854 1412.06716 0.00327 12.07756 6.67265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10218 -0.01321 -1.00000 - 8522 2002 3 18 11 36 44 846 4.9925 173.73896 1617.53554 1412.37597 0.00313 12.05768 6.66578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10146 -0.01321 -1.00000 - 8524 2002 3 18 11 36 54 831 4.9925 173.74443 1617.93284 1412.68483 0.00298 12.03753 6.65876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10073 -0.01321 -1.00000 - 8526 2002 3 18 11 37 4 816 4.9925 173.74989 1618.33041 1412.99375 0.00284 12.01730 6.65161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.10001 -0.01321 -1.00000 - 8528 2002 3 18 11 37 14 801 4.9925 173.75535 1618.72827 1413.30272 0.00269 11.99713 6.64437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09928 -0.01321 -1.00000 - 8530 2002 3 18 11 37 24 786 4.9925 173.76081 1619.12634 1413.61171 0.00254 11.97715 6.63705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09855 -0.01320 -1.00000 - 8532 2002 3 18 11 37 34 771 4.9925 173.76626 1619.52457 1413.92074 0.00240 11.95748 6.62968 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09783 -0.01320 -1.00000 - 8534 2002 3 18 11 37 44 756 4.9925 173.77171 1619.92292 1414.22978 0.00227 11.93820 6.62228 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09710 -0.01320 -1.00000 - 8536 2002 3 18 11 37 54 741 4.9925 173.77716 1620.32136 1414.53886 0.00214 11.91939 6.61487 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09638 -0.01320 -1.00000 - 8538 2002 3 18 11 38 4 726 4.9925 173.78260 1620.71984 1414.84795 0.00200 11.90109 6.60748 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09565 -0.01320 -1.00000 - 8540 2002 3 18 11 38 14 711 4.9925 173.78805 1621.11835 1415.15704 0.00186 11.88333 6.60012 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09492 -0.01320 -1.00000 - 8542 2002 3 18 11 38 24 696 4.9925 173.79349 1621.51680 1415.46609 0.00171 11.86614 6.59282 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09420 -0.01320 -1.00000 - 8544 2002 3 18 11 38 34 681 4.9925 173.79893 1621.91515 1415.77512 0.00156 11.84953 6.58559 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09347 -0.01320 -1.00000 - 8546 2002 3 18 11 38 44 666 4.9925 173.80437 1622.31336 1416.08411 0.00141 11.83354 6.57845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09274 -0.01320 -1.00000 - 8548 2002 3 18 11 38 54 651 4.9925 173.80981 1622.71141 1416.39306 0.00126 11.81820 6.57142 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09202 -0.01320 -1.00000 - 8550 2002 3 18 11 39 4 636 4.9925 173.81526 1623.10925 1416.70198 0.00111 11.80354 6.56451 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09129 -0.01320 -1.00000 - 8552 2002 3 18 11 39 14 621 4.9924 173.82070 1623.50692 1417.01083 0.00097 11.78958 6.55775 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.09057 -0.01319 -1.00000 - 8554 2002 3 18 11 39 24 606 4.9924 173.82615 1623.90434 1417.31959 0.00082 11.77634 6.55113 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08984 -0.01319 -1.00000 - 8556 2002 3 18 11 39 34 590 4.9924 173.83160 1624.30150 1417.62826 0.00068 11.76381 6.54468 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08911 -0.01319 -1.00000 - 8558 2002 3 18 11 39 44 575 4.9924 173.83704 1624.69841 1417.93684 0.00053 11.75194 6.53840 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08839 -0.01319 -1.00000 - 8560 2002 3 18 11 39 54 560 4.9924 173.84249 1625.09507 1418.24532 0.00039 11.74065 6.53229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08766 -0.01319 -1.00000 - 8562 2002 3 18 11 40 4 545 4.9924 173.84794 1625.49151 1418.55370 0.00025 11.72985 6.52638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08694 -0.01319 -1.00000 - 8564 2002 3 18 11 40 14 530 4.9924 173.85338 1625.88780 1418.86197 0.00010 11.71947 6.52065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08621 -0.01319 -1.00000 - 8566 2002 3 18 11 40 24 515 4.9924 173.85883 1626.28391 1419.17009 -0.00004 11.70942 6.51513 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08548 -0.01319 -1.00000 - 8568 2002 3 18 11 40 34 499 4.9924 173.86428 1626.67987 1419.47807 -0.00018 11.69966 6.50981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08476 -0.01319 -1.00000 - 8570 2002 3 18 11 40 44 484 4.9924 173.86973 1627.07569 1419.78592 -0.00032 11.69022 6.50469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08403 -0.01319 -1.00000 - 8572 2002 3 18 11 40 54 469 4.9924 173.87517 1627.47137 1420.09363 -0.00047 11.68111 6.49977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08331 -0.01319 -1.00000 - 8574 2002 3 18 11 41 4 454 4.9924 173.88062 1627.86687 1420.40120 -0.00061 11.67242 6.49507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08258 -0.01319 -1.00000 - 8576 2002 3 18 11 41 14 438 4.9924 173.88607 1628.26222 1420.70861 -0.00075 11.66422 6.49058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08185 -0.01318 -1.00000 - 8578 2002 3 18 11 41 24 423 4.9923 173.89152 1628.65733 1421.01584 -0.00090 11.65659 6.48630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08113 -0.01318 -1.00000 - 8580 2002 3 18 11 41 34 408 4.9923 173.89696 1629.05214 1421.32288 -0.00104 11.64959 6.48223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.08040 -0.01318 -1.00000 - 8582 2002 3 18 11 41 44 392 4.9923 173.90241 1629.44664 1421.62974 -0.00119 11.64324 6.47836 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07967 -0.01318 -1.00000 - 8584 2002 3 18 11 41 54 377 4.9923 173.90786 1629.84078 1421.93641 -0.00133 11.63753 6.47469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07895 -0.01318 -1.00000 - 8586 2002 3 18 11 42 4 362 4.9923 173.91330 1630.23456 1422.24289 -0.00148 11.63245 6.47121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07822 -0.01318 -1.00000 - 8588 2002 3 18 11 42 14 346 4.9923 173.91875 1630.62800 1422.54916 -0.00163 11.62792 6.46792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07750 -0.01318 -1.00000 - 8590 2002 3 18 11 42 24 331 4.9923 173.92420 1631.02107 1422.85519 -0.00177 11.62386 6.46480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07677 -0.01318 -1.00000 - 8592 2002 3 18 11 42 34 315 4.9923 173.92965 1631.41377 1423.16099 -0.00192 11.62018 6.46186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07604 -0.01318 -1.00000 - 8594 2002 3 18 11 42 44 300 4.9923 173.93510 1631.80613 1423.46657 -0.00207 11.61677 6.45907 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07532 -0.01318 -1.00000 - 8596 2002 3 18 11 42 54 284 4.9923 173.94055 1632.19818 1423.77193 -0.00221 11.61355 6.45644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07459 -0.01318 -1.00000 - 8598 2002 3 18 11 43 4 269 4.9922 173.94601 1632.58993 1424.07706 -0.00236 11.61045 6.45395 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07387 -0.01317 -1.00000 - 8600 2002 3 18 11 43 14 253 4.9922 173.95146 1632.98145 1424.38196 -0.00250 11.60741 6.45158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07314 -0.01317 -1.00000 - 8602 2002 3 18 11 43 24 238 4.9922 173.95691 1633.37268 1424.68661 -0.00265 11.60443 6.44934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07241 -0.01317 -1.00000 - 8604 2002 3 18 11 43 34 222 4.9922 173.96237 1633.76363 1424.99102 -0.00280 11.60154 6.44721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07169 -0.01317 -1.00000 - 8606 2002 3 18 11 43 44 207 4.9922 173.96782 1634.15426 1425.29519 -0.00295 11.59876 6.44517 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07096 -0.01317 -1.00000 - 8608 2002 3 18 11 43 54 191 4.9922 173.97328 1634.54455 1425.59913 -0.00309 11.59616 6.44321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.07024 -0.01317 -1.00000 - 8610 2002 3 18 11 44 4 175 4.9922 173.97874 1634.93447 1425.90284 -0.00324 11.59378 6.44133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06951 -0.01317 -1.00000 - 8612 2002 3 18 11 44 14 160 4.9922 173.98420 1635.32400 1426.20631 -0.00339 11.59163 6.43952 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06878 -0.01317 -1.00000 - 8614 2002 3 18 11 44 24 144 4.9922 173.98966 1635.71306 1426.50951 -0.00354 11.58972 6.43775 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06806 -0.01317 -1.00000 - 8616 2002 3 18 11 44 34 128 4.9922 173.99512 1636.10163 1426.81247 -0.00369 11.58800 6.43603 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06733 -0.01317 -1.00000 - 8618 2002 3 18 11 44 44 113 4.9921 174.00058 1636.48971 1427.11519 -0.00384 11.58640 6.43432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06661 -0.01317 -1.00000 - 8620 2002 3 18 11 44 54 97 4.9921 174.00605 1636.87729 1427.41767 -0.00398 11.58484 6.43263 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06588 -0.01317 -1.00000 - 8622 2002 3 18 11 45 4 81 4.9921 174.01152 1637.26440 1427.71994 -0.00413 11.58321 6.43095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06515 -0.01316 -1.00000 - 8624 2002 3 18 11 45 14 65 4.9921 174.01698 1637.65114 1428.02198 -0.00428 11.58140 6.42925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06443 -0.01316 -1.00000 - 8626 2002 3 18 11 45 24 50 4.9921 174.02246 1638.03821 1428.32441 -0.00443 11.58139 6.42765 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06370 -0.01316 -1.00000 - 8628 2002 3 18 11 45 34 34 4.9921 174.02793 1638.42659 1428.62773 -0.00458 11.58085 6.42614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06297 -0.01316 -1.00000 - 8630 2002 3 18 11 45 44 18 4.9921 174.03340 1638.81675 1428.93192 -0.00473 11.57987 6.42474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06225 -0.01316 -1.00000 - 8632 2002 3 18 11 45 54 2 4.9921 174.03888 1639.20878 1429.23682 -0.00488 11.57867 6.42345 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06152 -0.01316 -1.00000 - 8634 2002 3 18 11 46 3 986 4.9920 174.04436 1639.60255 1429.54224 -0.00503 11.57726 6.42225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06080 -0.01316 -1.00000 - 8636 2002 3 18 11 46 13 970 4.9920 174.04984 1639.99784 1429.84799 -0.00518 11.57570 6.42116 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.06007 -0.01316 -1.00000 - 8638 2002 3 18 11 46 23 954 4.9920 174.05532 1640.39433 1430.15391 -0.00533 11.57410 6.42014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05934 -0.01316 -1.00000 - 8640 2002 3 18 11 46 33 938 4.9920 174.06080 1640.79174 1430.45988 -0.00548 11.57257 6.41920 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05862 -0.01316 -1.00000 - 8642 2002 3 18 11 46 43 922 4.9920 174.06629 1641.18981 1430.76582 -0.00562 11.57123 6.41831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05789 -0.01316 -1.00000 - 8644 2002 3 18 11 46 53 906 4.9920 174.07177 1641.58832 1431.07165 -0.00577 11.57019 6.41746 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05717 -0.01315 -1.00000 - 8646 2002 3 18 11 47 3 890 4.9920 174.07726 1641.98704 1431.37732 -0.00592 11.56957 6.41664 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05644 -0.01315 -1.00000 - 8648 2002 3 18 11 47 13 874 4.9920 174.08275 1642.38581 1431.68276 -0.00607 11.56947 6.41582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05571 -0.01315 -1.00000 - 8650 2002 3 18 11 47 23 858 4.9919 174.08824 1642.78441 1431.98790 -0.00622 11.56997 6.41499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05499 -0.01315 -1.00000 - 8652 2002 3 18 11 47 33 842 4.9919 174.09373 1643.18265 1432.29272 -0.00637 11.57113 6.41412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05426 -0.01315 -1.00000 - 8654 2002 3 18 11 47 43 826 4.9919 174.09922 1643.58038 1432.59720 -0.00652 11.57295 6.41320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05354 -0.01315 -1.00000 - 8656 2002 3 18 11 47 53 810 4.9919 174.10472 1643.97742 1432.90132 -0.00667 11.57541 6.41219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05281 -0.01315 -1.00000 - 8658 2002 3 18 11 48 3 793 4.9919 174.11021 1644.37365 1433.20506 -0.00682 11.57842 6.41107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05208 -0.01315 -1.00000 - 8660 2002 3 18 11 48 13 777 4.9919 174.11571 1644.76899 1433.50841 -0.00698 11.58185 6.40983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05136 -0.01315 -1.00000 - 8662 2002 3 18 11 48 23 761 4.9919 174.12121 1645.16330 1433.81132 -0.00713 11.58554 6.40843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.05063 -0.01315 -1.00000 - 8664 2002 3 18 11 48 33 745 4.9918 174.12671 1645.55649 1434.11382 -0.00729 11.58931 6.40686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04991 -0.01315 -1.00000 - 8666 2002 3 18 11 48 43 728 4.9918 174.13221 1645.94855 1434.41591 -0.00745 11.59296 6.40509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04918 -0.01315 -1.00000 - 8668 2002 3 18 11 48 53 712 4.9918 174.13771 1646.33943 1434.71761 -0.00760 11.59628 6.40311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04845 -0.01314 -1.00000 - 8670 2002 3 18 11 49 3 695 4.9918 174.14321 1646.72917 1435.01895 -0.00776 11.59907 6.40090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04773 -0.01314 -1.00000 - 8672 2002 3 18 11 49 13 679 4.9918 174.14872 1647.11784 1435.31992 -0.00791 11.60112 6.39844 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04700 -0.01314 -1.00000 - 8674 2002 3 18 11 49 23 663 4.9918 174.15422 1647.50546 1435.62054 -0.00806 11.60222 6.39571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04628 -0.01314 -1.00000 - 8676 2002 3 18 11 49 33 646 4.9918 174.15973 1647.89212 1435.92083 -0.00822 11.60218 6.39271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04555 -0.01314 -1.00000 - 8678 2002 3 18 11 49 43 630 4.9917 174.16524 1648.27794 1436.22085 -0.00837 11.60081 6.38943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04482 -0.01314 -1.00000 - 8680 2002 3 18 11 49 53 613 4.9917 174.17074 1648.66306 1436.52063 -0.00852 11.59791 6.38586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04410 -0.01314 -1.00000 - 8682 2002 3 18 11 50 3 597 4.9917 174.17625 1649.04762 1436.82020 -0.00867 11.59336 6.38200 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04337 -0.01314 -1.00000 - 8684 2002 3 18 11 50 13 580 4.9917 174.18176 1649.43183 1437.11960 -0.00883 11.58706 6.37785 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04265 -0.01314 -1.00000 - 8686 2002 3 18 11 50 23 563 4.9917 174.18728 1649.81578 1437.41883 -0.00898 11.57898 6.37342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04192 -0.01314 -1.00000 - 8688 2002 3 18 11 50 33 547 4.9917 174.19279 1650.19962 1437.71794 -0.00914 11.56917 6.36871 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04119 -0.01314 -1.00000 - 8690 2002 3 18 11 50 43 530 4.9916 174.19830 1650.58349 1438.01696 -0.00929 11.55770 6.36373 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.04047 -0.01314 -1.00000 - 8692 2002 3 18 11 50 53 513 4.9916 174.20382 1650.96750 1438.31594 -0.00945 11.54469 6.35850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03974 -0.01313 -1.00000 - 8694 2002 3 18 11 51 3 496 4.9916 174.20933 1651.35172 1438.61490 -0.00960 11.53030 6.35303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03902 -0.01313 -1.00000 - 8696 2002 3 18 11 51 13 480 4.9916 174.21485 1651.73628 1438.91385 -0.00976 11.51473 6.34735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03829 -0.01313 -1.00000 - 8698 2002 3 18 11 51 23 463 4.9916 174.22037 1652.12116 1439.21277 -0.00991 11.49818 6.34145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03756 -0.01313 -1.00000 - 8700 2002 3 18 11 51 33 446 4.9916 174.22589 1652.50637 1439.51171 -0.01007 11.48087 6.33537 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03684 -0.01313 -1.00000 - 8702 2002 3 18 11 51 43 429 4.9915 174.23141 1652.89192 1439.81066 -0.01022 11.46302 6.32913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03611 -0.01313 -1.00000 - 8704 2002 3 18 11 51 53 412 4.9915 174.23693 1653.27778 1440.10965 -0.01037 11.44481 6.32273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03539 -0.01313 -1.00000 - 8706 2002 3 18 11 52 3 395 4.9915 174.24245 1653.66391 1440.40867 -0.01053 11.42642 6.31621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03466 -0.01313 -1.00000 - 8708 2002 3 18 11 52 13 378 4.9915 174.24797 1654.05031 1440.70772 -0.01068 11.40802 6.30959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03393 -0.01313 -1.00000 - 8710 2002 3 18 11 52 23 361 4.9915 174.25349 1654.43687 1441.00677 -0.01084 11.38974 6.30288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03321 -0.01313 -1.00000 - 8712 2002 3 18 11 52 33 344 4.9915 174.25901 1654.82353 1441.30582 -0.01099 11.37170 6.29610 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03248 -0.01313 -1.00000 - 8714 2002 3 18 11 52 43 327 4.9914 174.26454 1655.21024 1441.60488 -0.01115 11.35400 6.28927 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03176 -0.01312 -1.00000 - 8716 2002 3 18 11 52 53 310 4.9914 174.27006 1655.59694 1441.90395 -0.01130 11.33672 6.28242 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03103 -0.01312 -1.00000 - 8718 2002 3 18 11 53 3 293 4.9914 174.27559 1655.98356 1442.20303 -0.01146 11.31992 6.27555 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.03030 -0.01312 -1.00000 - 8720 2002 3 18 11 53 13 275 4.9914 174.28111 1656.37009 1442.50209 -0.01161 11.30364 6.26870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02958 -0.01312 -1.00000 - 8722 2002 3 18 11 53 23 258 4.9914 174.28664 1656.75646 1442.80110 -0.01177 11.28791 6.26188 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02885 -0.01312 -1.00000 - 8724 2002 3 18 11 53 33 241 4.9914 174.29217 1657.14262 1443.10008 -0.01193 11.27272 6.25510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02813 -0.01312 -1.00000 - 8726 2002 3 18 11 53 43 224 4.9913 174.29769 1657.52857 1443.39902 -0.01208 11.25802 6.24838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02740 -0.01312 -1.00000 - 8728 2002 3 18 11 53 53 206 4.9913 174.30322 1657.91429 1443.69792 -0.01224 11.24376 6.24173 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02667 -0.01312 -1.00000 - 8730 2002 3 18 11 54 3 189 4.9913 174.30875 1658.29980 1443.99679 -0.01240 11.22990 6.23518 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02595 -0.01312 -1.00000 - 8732 2002 3 18 11 54 13 171 4.9913 174.31428 1658.68516 1444.29561 -0.01256 11.21639 6.22873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02522 -0.01312 -1.00000 - 8734 2002 3 18 11 54 23 154 4.9913 174.31981 1659.07034 1444.59434 -0.01272 11.20318 6.22241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02450 -0.01312 -1.00000 - 8736 2002 3 18 11 54 33 136 4.9912 174.32534 1659.45538 1444.89301 -0.01288 11.19026 6.21621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02377 -0.01312 -1.00000 - 8738 2002 3 18 11 54 43 119 4.9912 174.33087 1659.84030 1445.19161 -0.01304 11.17763 6.21015 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02304 -0.01311 -1.00000 - 8740 2002 3 18 11 54 53 101 4.9912 174.33640 1660.22513 1445.49016 -0.01320 11.16529 6.20425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02232 -0.01311 -1.00000 - 8742 2002 3 18 11 55 3 84 4.9912 174.34193 1660.60989 1445.78863 -0.01336 11.15326 6.19851 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02159 -0.01311 -1.00000 - 8744 2002 3 18 11 55 13 66 4.9912 174.34746 1660.99464 1446.08703 -0.01352 11.14158 6.19295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02087 -0.01311 -1.00000 - 8746 2002 3 18 11 55 23 48 4.9911 174.35299 1661.37934 1446.38532 -0.01368 11.13028 6.18756 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.02014 -0.01311 -1.00000 - 8748 2002 3 18 11 55 33 30 4.9911 174.35852 1661.76399 1446.68350 -0.01384 11.11940 6.18236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01941 -0.01311 -1.00000 - 8750 2002 3 18 11 55 43 13 4.9911 174.36405 1662.14861 1446.98158 -0.01400 11.10900 6.17735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01869 -0.01311 -1.00000 - 8752 2002 3 18 11 55 52 995 4.9911 174.36959 1662.53317 1447.27955 -0.01416 11.09911 6.17253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01796 -0.01311 -1.00000 - 8754 2002 3 18 11 56 2 977 4.9911 174.37512 1662.91767 1447.57740 -0.01431 11.08979 6.16791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01724 -0.01311 -1.00000 - 8756 2002 3 18 11 56 12 959 4.9910 174.38065 1663.30211 1447.87511 -0.01447 11.08108 6.16349 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01651 -0.01311 -1.00000 - 8758 2002 3 18 11 56 22 941 4.9910 174.38618 1663.68643 1448.17265 -0.01463 11.07302 6.15926 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01578 -0.01311 -1.00000 - 8760 2002 3 18 11 56 32 923 4.9910 174.39171 1664.07060 1448.47001 -0.01479 11.06562 6.15523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01506 -0.01310 -1.00000 - 8762 2002 3 18 11 56 42 905 4.9910 174.39725 1664.45458 1448.76719 -0.01495 11.05892 6.15138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01433 -0.01310 -1.00000 - 8764 2002 3 18 11 56 52 887 4.9910 174.40278 1664.83833 1449.06419 -0.01511 11.05292 6.14773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01361 -0.01310 -1.00000 - 8766 2002 3 18 11 57 2 869 4.9909 174.40831 1665.22182 1449.36099 -0.01527 11.04763 6.14425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01288 -0.01310 -1.00000 - 8768 2002 3 18 11 57 12 851 4.9909 174.41384 1665.60505 1449.65757 -0.01543 11.04302 6.14095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01216 -0.01310 -1.00000 - 8770 2002 3 18 11 57 22 833 4.9909 174.41937 1665.98792 1449.95390 -0.01559 11.03907 6.13781 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01143 -0.01310 -1.00000 - 8772 2002 3 18 11 57 32 814 4.9909 174.42490 1666.37040 1450.24997 -0.01575 11.03576 6.13482 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.01070 -0.01310 -1.00000 - 8774 2002 3 18 11 57 42 796 4.9908 174.43043 1666.75245 1450.54579 -0.01591 11.03303 6.13198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00998 -0.01310 -1.00000 - 8776 2002 3 18 11 57 52 778 4.9908 174.43596 1667.13403 1450.84136 -0.01607 11.03084 6.12927 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00925 -0.01310 -1.00000 - 8778 2002 3 18 11 58 2 759 4.9908 174.44149 1667.51511 1451.13666 -0.01623 11.02910 6.12667 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00853 -0.01310 -1.00000 - 8780 2002 3 18 11 58 12 741 4.9908 174.44702 1667.89568 1451.43169 -0.01639 11.02777 6.12418 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00780 -0.01310 -1.00000 - 8782 2002 3 18 11 58 22 722 4.9908 174.45255 1668.27569 1451.72642 -0.01655 11.02674 6.12178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00707 -0.01310 -1.00000 - 8784 2002 3 18 11 58 32 704 4.9907 174.45808 1668.65511 1452.02086 -0.01671 11.02596 6.11946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00635 -0.01309 -1.00000 - 8786 2002 3 18 11 58 42 685 4.9907 174.46361 1669.03392 1452.31502 -0.01687 11.02533 6.11721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00562 -0.01309 -1.00000 - 8788 2002 3 18 11 58 52 667 4.9907 174.46914 1669.41213 1452.60891 -0.01704 11.02477 6.11500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00490 -0.01309 -1.00000 - 8790 2002 3 18 11 59 2 648 4.9907 174.47467 1669.78973 1452.90253 -0.01720 11.02421 6.11283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00417 -0.01309 -1.00000 - 8792 2002 3 18 11 59 12 629 4.9906 174.48020 1670.16678 1453.19588 -0.01736 11.02354 6.11069 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00344 -0.01309 -1.00000 - 8794 2002 3 18 11 59 22 611 4.9906 174.48572 1670.54325 1453.48895 -0.01752 11.02269 6.10856 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00272 -0.01309 -1.00000 - 8796 2002 3 18 11 59 32 592 4.9906 174.49125 1670.91918 1453.78176 -0.01769 11.02156 6.10643 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00199 -0.01309 -1.00000 - 8798 2002 3 18 11 59 42 573 4.9906 174.49678 1671.29461 1454.07432 -0.01785 11.02005 6.10428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00127 -0.01309 -1.00000 - 8800 2002 3 18 11 59 52 554 4.9906 174.50230 1671.66959 1454.36667 -0.01801 11.01810 6.10212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 0.00054 -0.01309 -1.00000 - 8802 2002 3 18 12 0 2 535 4.9905 174.50783 1672.04419 1454.65880 -0.01817 11.01562 6.09993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28300 -0.01309 -1.00000 - 8804 2002 3 18 12 0 12 516 4.9905 174.51335 1672.41850 1454.95074 -0.01834 11.01257 6.09770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28228 -0.01309 -1.00000 - 8806 2002 3 18 12 0 22 497 4.9905 174.51888 1672.79330 1455.24311 -0.01850 11.01089 6.09552 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28155 -0.01309 -1.00000 - 8808 2002 3 18 12 0 32 478 4.9905 174.52440 1673.16958 1455.53636 -0.01866 11.00846 6.09340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28082 -0.01308 -1.00000 - 8810 2002 3 18 12 0 42 459 4.9904 174.52992 1673.54776 1455.83047 -0.01882 11.00543 6.09136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.28010 -0.01308 -1.00000 - 8812 2002 3 18 12 0 52 440 4.9904 174.53544 1673.92789 1456.12529 -0.01898 11.00204 6.08940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27937 -0.01308 -1.00000 - 8814 2002 3 18 12 1 2 421 4.9904 174.54096 1674.30977 1456.42062 -0.01915 10.99837 6.08752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27865 -0.01308 -1.00000 - 8816 2002 3 18 12 1 12 401 4.9904 174.54648 1674.69314 1456.71629 -0.01931 10.99452 6.08571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27792 -0.01308 -1.00000 - 8818 2002 3 18 12 1 22 382 4.9903 174.55200 1675.07766 1457.01213 -0.01947 10.99062 6.08398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27719 -0.01308 -1.00000 - 8820 2002 3 18 12 1 32 363 4.9903 174.55752 1675.46304 1457.30805 -0.01963 10.98680 6.08230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27647 -0.01308 -1.00000 - 8822 2002 3 18 12 1 42 343 4.9903 174.56303 1675.84902 1457.60396 -0.01979 10.98315 6.08067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27574 -0.01308 -1.00000 - 8824 2002 3 18 12 1 52 324 4.9903 174.56855 1676.23538 1457.89980 -0.01996 10.97977 6.07908 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27502 -0.01308 -1.00000 - 8826 2002 3 18 12 2 2 304 4.9902 174.57406 1676.62193 1458.19551 -0.02012 10.97674 6.07753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27429 -0.01308 -1.00000 - 8828 2002 3 18 12 2 12 285 4.9902 174.57957 1677.00853 1458.49105 -0.02028 10.97411 6.07599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27357 -0.01308 -1.00000 - 8830 2002 3 18 12 2 22 265 4.9902 174.58509 1677.39500 1458.78633 -0.02045 10.97194 6.07446 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27284 -0.01307 -1.00000 - 8832 2002 3 18 12 2 32 245 4.9902 174.59060 1677.78121 1459.08136 -0.02061 10.97025 6.07292 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27211 -0.01307 -1.00000 - 8834 2002 3 18 12 2 42 225 4.9901 174.59611 1678.16704 1459.37612 -0.02077 10.96904 6.07135 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27139 -0.01307 -1.00000 - 8836 2002 3 18 12 2 52 206 4.9901 174.60162 1678.55237 1459.67059 -0.02094 10.96830 6.06974 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.27066 -0.01307 -1.00000 - 8838 2002 3 18 12 3 2 186 4.9901 174.60712 1678.93712 1459.96475 -0.02110 10.96797 6.06807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26994 -0.01307 -1.00000 - 8840 2002 3 18 12 3 12 166 4.9900 174.61263 1679.32123 1460.25859 -0.02127 10.96801 6.06633 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26921 -0.01307 -1.00000 - 8842 2002 3 18 12 3 22 146 4.9900 174.61813 1679.70459 1460.55208 -0.02144 10.96833 6.06450 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26848 -0.01307 -1.00000 - 8844 2002 3 18 12 3 32 126 4.9900 174.62364 1680.08715 1460.84521 -0.02160 10.96882 6.06257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26776 -0.01307 -1.00000 - 8846 2002 3 18 12 3 42 106 4.9900 174.62914 1680.46886 1461.13801 -0.02177 10.96937 6.06051 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26703 -0.01307 -1.00000 - 8848 2002 3 18 12 3 52 86 4.9899 174.63464 1680.84970 1461.43048 -0.02193 10.96984 6.05832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26631 -0.01307 -1.00000 - 8850 2002 3 18 12 4 2 66 4.9899 174.64014 1681.22968 1461.72263 -0.02210 10.97010 6.05597 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26558 -0.01307 -1.00000 - 8852 2002 3 18 12 4 12 45 4.9899 174.64564 1681.60884 1462.01445 -0.02226 10.96998 6.05346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26486 -0.01307 -1.00000 - 8854 2002 3 18 12 4 22 25 4.9899 174.65114 1681.98718 1462.30594 -0.02243 10.96934 6.05078 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26413 -0.01306 -1.00000 - 8856 2002 3 18 12 4 32 5 4.9898 174.65663 1682.36474 1462.59713 -0.02260 10.96806 6.04791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26340 -0.01306 -1.00000 - 8858 2002 3 18 12 4 41 984 4.9898 174.66213 1682.74159 1462.88804 -0.02276 10.96603 6.04485 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26268 -0.01306 -1.00000 - 8860 2002 3 18 12 4 51 964 4.9898 174.66762 1683.11780 1463.17869 -0.02293 10.96313 6.04158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26195 -0.01306 -1.00000 - 8862 2002 3 18 12 5 1 944 4.9897 174.67311 1683.49344 1463.46912 -0.02309 10.95929 6.03811 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26123 -0.01306 -1.00000 - 8864 2002 3 18 12 5 11 923 4.9897 174.67860 1683.86864 1463.75933 -0.02326 10.95444 6.03444 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.26050 -0.01306 -1.00000 - 8866 2002 3 18 12 5 21 902 4.9897 174.68409 1684.24344 1464.04931 -0.02342 10.94856 6.03056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25978 -0.01306 -1.00000 - 8868 2002 3 18 12 5 31 882 4.9897 174.68957 1684.61791 1464.33911 -0.02359 10.94164 6.02647 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25905 -0.01306 -1.00000 - 8870 2002 3 18 12 5 41 861 4.9896 174.69506 1684.99213 1464.62875 -0.02376 10.93370 6.02218 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25832 -0.01306 -1.00000 - 8872 2002 3 18 12 5 51 840 4.9896 174.70054 1685.36617 1464.91826 -0.02392 10.92478 6.01768 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25760 -0.01306 -1.00000 - 8874 2002 3 18 12 6 1 819 4.9896 174.70602 1685.74008 1465.20765 -0.02409 10.91495 6.01300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25687 -0.01306 -1.00000 - 8876 2002 3 18 12 6 11 798 4.9895 174.71150 1686.11394 1465.49694 -0.02426 10.90429 6.00813 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25615 -0.01305 -1.00000 - 8878 2002 3 18 12 6 21 778 4.9895 174.71698 1686.48775 1465.78611 -0.02442 10.89288 6.00309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25542 -0.01305 -1.00000 - 8880 2002 3 18 12 6 31 757 4.9895 174.72246 1686.86153 1466.07518 -0.02459 10.88082 5.99788 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25470 -0.01305 -1.00000 - 8882 2002 3 18 12 6 41 735 4.9895 174.72793 1687.23530 1466.36419 -0.02476 10.86820 5.99251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25397 -0.01305 -1.00000 - 8884 2002 3 18 12 6 51 714 4.9894 174.73340 1687.60906 1466.65314 -0.02492 10.85511 5.98699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25324 -0.01305 -1.00000 - 8886 2002 3 18 12 7 1 693 4.9894 174.73887 1687.98282 1466.94204 -0.02509 10.84165 5.98134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25252 -0.01305 -1.00000 - 8888 2002 3 18 12 7 11 672 4.9894 174.74434 1688.35660 1467.23089 -0.02525 10.82789 5.97557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25179 -0.01305 -1.00000 - 8890 2002 3 18 12 7 21 651 4.9893 174.74981 1688.73036 1467.51966 -0.02542 10.81392 5.96969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25107 -0.01305 -1.00000 - 8892 2002 3 18 12 7 31 629 4.9893 174.75527 1689.10408 1467.80838 -0.02559 10.79981 5.96372 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.25034 -0.01305 -1.00000 - 8894 2002 3 18 12 7 41 608 4.9893 174.76073 1689.47774 1468.09706 -0.02575 10.78560 5.95766 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24962 -0.01305 -1.00000 - 8896 2002 3 18 12 7 51 586 4.9892 174.76619 1689.85133 1468.38570 -0.02592 10.77137 5.95154 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24889 -0.01305 -1.00000 - 8898 2002 3 18 12 8 1 565 4.9892 174.77165 1690.22483 1468.67431 -0.02608 10.75715 5.94537 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24816 -0.01305 -1.00000 - 8900 2002 3 18 12 8 11 543 4.9892 174.77711 1690.59826 1468.96288 -0.02625 10.74297 5.93916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24744 -0.01304 -1.00000 - 8902 2002 3 18 12 8 21 521 4.9892 174.78256 1690.97157 1469.25138 -0.02642 10.72887 5.93293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24671 -0.01304 -1.00000 - 8904 2002 3 18 12 8 31 500 4.9891 174.78801 1691.34474 1469.53983 -0.02659 10.71488 5.92668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24599 -0.01304 -1.00000 - 8906 2002 3 18 12 8 41 478 4.9891 174.79346 1691.71778 1469.82824 -0.02676 10.70099 5.92044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24526 -0.01304 -1.00000 - 8908 2002 3 18 12 8 51 456 4.9891 174.79891 1692.09068 1470.11661 -0.02692 10.68723 5.91422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24454 -0.01304 -1.00000 - 8910 2002 3 18 12 9 1 434 4.9890 174.80435 1692.46344 1470.40495 -0.02709 10.67361 5.90803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24381 -0.01304 -1.00000 - 8912 2002 3 18 12 9 11 412 4.9890 174.80980 1692.83611 1470.69324 -0.02726 10.66012 5.90189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24309 -0.01304 -1.00000 - 8914 2002 3 18 12 9 21 390 4.9890 174.81524 1693.20866 1470.98146 -0.02743 10.64679 5.89581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24236 -0.01304 -1.00000 - 8916 2002 3 18 12 9 31 368 4.9889 174.82067 1693.58109 1471.26962 -0.02760 10.63361 5.88980 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24163 -0.01304 -1.00000 - 8918 2002 3 18 12 9 41 346 4.9889 174.82611 1693.95344 1471.55773 -0.02777 10.62060 5.88387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24091 -0.01304 -1.00000 - 8920 2002 3 18 12 9 51 323 4.9889 174.83154 1694.32572 1471.84580 -0.02794 10.60778 5.87804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.24018 -0.01304 -1.00000 - 8922 2002 3 18 12 10 1 301 4.9888 174.83698 1694.69794 1472.13382 -0.02811 10.59516 5.87231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23946 -0.01303 -1.00000 - 8924 2002 3 18 12 10 11 279 4.9888 174.84241 1695.07016 1472.42178 -0.02828 10.58277 5.86670 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23873 -0.01303 -1.00000 - 8926 2002 3 18 12 10 21 256 4.9888 174.84783 1695.44236 1472.70965 -0.02845 10.57065 5.86122 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23801 -0.01303 -1.00000 - 8928 2002 3 18 12 10 31 234 4.9887 174.85326 1695.81454 1472.99744 -0.02862 10.55883 5.85588 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23728 -0.01303 -1.00000 - 8930 2002 3 18 12 10 41 211 4.9887 174.85868 1696.18672 1473.28516 -0.02879 10.54734 5.85067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23656 -0.01303 -1.00000 - 8932 2002 3 18 12 10 51 188 4.9887 174.86410 1696.55890 1473.57280 -0.02896 10.53625 5.84561 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23583 -0.01303 -1.00000 - 8934 2002 3 18 12 11 1 166 4.9886 174.86951 1696.93108 1473.86035 -0.02912 10.52558 5.84071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23510 -0.01303 -1.00000 - 8936 2002 3 18 12 11 11 143 4.9886 174.87493 1697.30327 1474.14780 -0.02929 10.51539 5.83597 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23438 -0.01303 -1.00000 - 8938 2002 3 18 12 11 21 120 4.9886 174.88034 1697.67544 1474.43511 -0.02946 10.50572 5.83138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23365 -0.01303 -1.00000 - 8940 2002 3 18 12 11 31 97 4.9885 174.88574 1698.04755 1474.72228 -0.02963 10.49662 5.82696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23293 -0.01303 -1.00000 - 8942 2002 3 18 12 11 41 74 4.9885 174.89115 1698.41957 1475.00932 -0.02980 10.48813 5.82271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23220 -0.01303 -1.00000 - 8944 2002 3 18 12 11 51 51 4.9885 174.89655 1698.79148 1475.29621 -0.02997 10.48027 5.81861 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23148 -0.01303 -1.00000 - 8946 2002 3 18 12 12 1 28 4.9884 174.90195 1699.16323 1475.58294 -0.03014 10.47307 5.81467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23075 -0.01302 -1.00000 - 8948 2002 3 18 12 12 11 5 4.9884 174.90735 1699.53480 1475.86949 -0.03031 10.46654 5.81089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.23003 -0.01302 -1.00000 - 8950 2002 3 18 12 12 20 982 4.9884 174.91274 1699.90611 1476.15582 -0.03047 10.46068 5.80726 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22930 -0.01302 -1.00000 - 8952 2002 3 18 12 12 30 958 4.9883 174.91813 1700.27711 1476.44193 -0.03064 10.45549 5.80377 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22857 -0.01302 -1.00000 - 8954 2002 3 18 12 12 40 935 4.9883 174.92352 1700.64774 1476.72783 -0.03081 10.45095 5.80042 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22785 -0.01302 -1.00000 - 8956 2002 3 18 12 12 50 911 4.9883 174.92891 1701.01795 1477.01351 -0.03098 10.44704 5.79720 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22712 -0.01302 -1.00000 - 8958 2002 3 18 12 13 0 888 4.9882 174.93429 1701.38771 1477.29896 -0.03115 10.44369 5.79409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22640 -0.01302 -1.00000 - 8960 2002 3 18 12 13 10 864 4.9882 174.93967 1701.75699 1477.58416 -0.03132 10.44086 5.79110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22567 -0.01302 -1.00000 - 8962 2002 3 18 12 13 20 840 4.9881 174.94505 1702.12572 1477.86908 -0.03149 10.43848 5.78822 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22495 -0.01302 -1.00000 - 8964 2002 3 18 12 13 30 817 4.9881 174.95042 1702.49389 1478.15373 -0.03166 10.43646 5.78542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22422 -0.01302 -1.00000 - 8966 2002 3 18 12 13 40 793 4.9881 174.95579 1702.86148 1478.43813 -0.03183 10.43470 5.78270 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22350 -0.01302 -1.00000 - 8968 2002 3 18 12 13 50 769 4.9880 174.96116 1703.22848 1478.72227 -0.03200 10.43312 5.78004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22277 -0.01302 -1.00000 - 8970 2002 3 18 12 14 0 745 4.9880 174.96652 1703.59491 1479.00616 -0.03218 10.43160 5.77745 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22204 -0.01301 -1.00000 - 8972 2002 3 18 12 14 10 721 4.9880 174.97189 1703.96080 1479.28980 -0.03235 10.43007 5.77491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22132 -0.01301 -1.00000 - 8974 2002 3 18 12 14 20 697 4.9879 174.97724 1704.32616 1479.57316 -0.03252 10.42843 5.77240 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.22059 -0.01301 -1.00000 - 8976 2002 3 18 12 14 30 673 4.9879 174.98260 1704.69101 1479.85627 -0.03269 10.42660 5.76992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21987 -0.01301 -1.00000 - 8978 2002 3 18 12 14 40 648 4.9879 174.98795 1705.05539 1480.13915 -0.03286 10.42451 5.76746 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21914 -0.01301 -1.00000 - 8980 2002 3 18 12 14 50 624 4.9878 174.99330 1705.41936 1480.42180 -0.03303 10.42210 5.76501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21842 -0.01301 -1.00000 - 8982 2002 3 18 12 15 0 600 4.9878 174.99865 1705.78295 1480.70425 -0.03320 10.41934 5.76256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21769 -0.01301 -1.00000 - 8984 2002 3 18 12 15 10 575 4.9877 175.00399 1706.14627 1480.98650 -0.03337 10.41618 5.76011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21697 -0.01301 -1.00000 - 8986 2002 3 18 12 15 20 551 4.9877 175.00933 1706.51010 1481.26914 -0.03354 10.41451 5.75773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21624 -0.01301 -1.00000 - 8988 2002 3 18 12 15 30 526 4.9877 175.01467 1706.87543 1481.55263 -0.03371 10.41230 5.75544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21552 -0.01301 -1.00000 - 8990 2002 3 18 12 15 40 501 4.9876 175.02000 1707.24265 1481.83692 -0.03388 10.40967 5.75324 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21479 -0.01301 -1.00000 - 8992 2002 3 18 12 15 50 476 4.9876 175.02533 1707.61174 1482.12185 -0.03405 10.40681 5.75113 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21406 -0.01300 -1.00000 - 8994 2002 3 18 12 16 0 452 4.9876 175.03065 1707.98248 1482.40723 -0.03422 10.40381 5.74911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21334 -0.01300 -1.00000 - 8996 2002 3 18 12 16 10 427 4.9875 175.03598 1708.35456 1482.69288 -0.03439 10.40073 5.74718 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21261 -0.01300 -1.00000 - 8998 2002 3 18 12 16 20 402 4.9875 175.04129 1708.72764 1482.97865 -0.03456 10.39770 5.74533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21189 -0.01300 -1.00000 - 9000 2002 3 18 12 16 30 376 4.9874 175.04661 1709.10141 1483.26444 -0.03473 10.39480 5.74355 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21116 -0.01300 -1.00000 - 9002 2002 3 18 12 16 40 351 4.9874 175.05192 1709.47562 1483.55017 -0.03490 10.39212 5.74182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.21044 -0.01300 -1.00000 - 9004 2002 3 18 12 16 50 326 4.9874 175.05723 1709.85005 1483.83580 -0.03508 10.38972 5.74014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20971 -0.01300 -1.00000 - 9006 2002 3 18 12 17 0 301 4.9873 175.06253 1710.22452 1484.12127 -0.03525 10.38767 5.73849 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20899 -0.01300 -1.00000 - 9008 2002 3 18 12 17 10 275 4.9873 175.06783 1710.59890 1484.40652 -0.03542 10.38598 5.73687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20826 -0.01300 -1.00000 - 9010 2002 3 18 12 17 20 250 4.9872 175.07313 1710.97301 1484.69151 -0.03559 10.38466 5.73525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20754 -0.01300 -1.00000 - 9012 2002 3 18 12 17 30 224 4.9872 175.07842 1711.34676 1484.97621 -0.03576 10.38373 5.73362 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20681 -0.01300 -1.00000 - 9014 2002 3 18 12 17 40 199 4.9872 175.08371 1711.72003 1485.26062 -0.03593 10.38314 5.73196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20609 -0.01300 -1.00000 - 9016 2002 3 18 12 17 50 173 4.9871 175.08900 1712.09274 1485.54474 -0.03610 10.38287 5.73027 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20536 -0.01299 -1.00000 - 9018 2002 3 18 12 18 0 147 4.9871 175.09428 1712.46480 1485.82855 -0.03628 10.38285 5.72852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20463 -0.01299 -1.00000 - 9020 2002 3 18 12 18 10 121 4.9870 175.09956 1712.83620 1486.11204 -0.03645 10.38302 5.72670 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20391 -0.01299 -1.00000 - 9022 2002 3 18 12 18 20 95 4.9870 175.10483 1713.20683 1486.39517 -0.03662 10.38330 5.72480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20318 -0.01299 -1.00000 - 9024 2002 3 18 12 18 30 69 4.9870 175.11010 1713.57666 1486.67795 -0.03679 10.38357 5.72280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20246 -0.01299 -1.00000 - 9026 2002 3 18 12 18 40 43 4.9869 175.11537 1713.94568 1486.96042 -0.03696 10.38374 5.72068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20173 -0.01299 -1.00000 - 9028 2002 3 18 12 18 50 17 4.9869 175.12063 1714.31387 1487.24257 -0.03714 10.38368 5.71843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.20101 -0.01299 -1.00000 - 9031 2002 3 18 12 19 4 977 4.9868 175.12852 1714.86466 1487.66484 -0.03739 10.38291 5.71490 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19992 -0.01299 -1.00000 - 9033 2002 3 18 12 19 14 951 4.9868 175.13377 1715.23093 1487.94625 -0.03757 10.38177 5.71229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19919 -0.01299 -1.00000 - 9035 2002 3 18 12 19 24 924 4.9867 175.13902 1715.59648 1488.22735 -0.03774 10.37998 5.70953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19847 -0.01299 -1.00000 - 9037 2002 3 18 12 19 34 898 4.9867 175.14427 1715.96139 1488.50817 -0.03791 10.37746 5.70659 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19774 -0.01299 -1.00000 - 9039 2002 3 18 12 19 44 871 4.9867 175.14951 1716.32572 1488.78875 -0.03808 10.37413 5.70348 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19702 -0.01298 -1.00000 - 9041 2002 3 18 12 19 54 844 4.9866 175.15474 1716.68954 1489.06911 -0.03826 10.36991 5.70020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19629 -0.01298 -1.00000 - 9043 2002 3 18 12 20 4 818 4.9866 175.15998 1717.05295 1489.34927 -0.03843 10.36479 5.69673 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19557 -0.01298 -1.00000 - 9045 2002 3 18 12 20 14 791 4.9865 175.16521 1717.41605 1489.62924 -0.03860 10.35874 5.69310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19484 -0.01298 -1.00000 - 9047 2002 3 18 12 20 24 764 4.9865 175.17043 1717.77886 1489.90901 -0.03877 10.35179 5.68928 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19412 -0.01298 -1.00000 - 9049 2002 3 18 12 20 34 737 4.9864 175.17565 1718.14147 1490.18861 -0.03895 10.34397 5.68529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19339 -0.01298 -1.00000 - 9051 2002 3 18 12 20 44 709 4.9864 175.18087 1718.50391 1490.46808 -0.03912 10.33534 5.68113 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19267 -0.01298 -1.00000 - 9053 2002 3 18 12 20 54 682 4.9864 175.18608 1718.86625 1490.74743 -0.03929 10.32597 5.67680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19194 -0.01298 -1.00000 - 9055 2002 3 18 12 21 4 655 4.9863 175.19129 1719.22851 1491.02668 -0.03947 10.31594 5.67232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19122 -0.01298 -1.00000 - 9057 2002 3 18 12 21 14 627 4.9863 175.19649 1719.59075 1491.30583 -0.03964 10.30533 5.66769 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.19049 -0.01298 -1.00000 - 9059 2002 3 18 12 21 24 600 4.9862 175.20169 1719.95296 1491.58485 -0.03981 10.29424 5.66291 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18977 -0.01298 -1.00000 - 9061 2002 3 18 12 21 34 572 4.9862 175.20689 1720.31513 1491.86378 -0.03998 10.28276 5.65800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18904 -0.01297 -1.00000 - 9063 2002 3 18 12 21 44 545 4.9861 175.21208 1720.67727 1492.14262 -0.04016 10.27096 5.65296 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18832 -0.01297 -1.00000 - 9065 2002 3 18 12 21 54 517 4.9861 175.21726 1721.03938 1492.42140 -0.04033 10.25893 5.64780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18759 -0.01297 -1.00000 - 9067 2002 3 18 12 22 4 489 4.9861 175.22245 1721.40144 1492.70011 -0.04050 10.24674 5.64254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18687 -0.01297 -1.00000 - 9069 2002 3 18 12 22 14 461 4.9860 175.22762 1721.76347 1492.97874 -0.04067 10.23445 5.63718 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18614 -0.01297 -1.00000 - 9071 2002 3 18 12 22 24 433 4.9860 175.23280 1722.12541 1493.25728 -0.04084 10.22213 5.63174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18542 -0.01297 -1.00000 - 9073 2002 3 18 12 22 34 405 4.9859 175.23797 1722.48724 1493.53572 -0.04101 10.20981 5.62622 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18469 -0.01297 -1.00000 - 9075 2002 3 18 12 22 44 377 4.9859 175.24313 1722.84895 1493.81410 -0.04118 10.19754 5.62063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18397 -0.01297 -1.00000 - 9077 2002 3 18 12 22 54 348 4.9858 175.24829 1723.21050 1494.09240 -0.04136 10.18535 5.61499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18324 -0.01297 -1.00000 - 9079 2002 3 18 12 23 4 320 4.9858 175.25344 1723.57189 1494.37064 -0.04153 10.17325 5.60930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18251 -0.01297 -1.00000 - 9081 2002 3 18 12 23 14 291 4.9857 175.25860 1723.93312 1494.64879 -0.04170 10.16127 5.60359 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18179 -0.01297 -1.00000 - 9083 2002 3 18 12 23 24 263 4.9857 175.26374 1724.29413 1494.92684 -0.04187 10.14942 5.59785 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18106 -0.01297 -1.00000 - 9085 2002 3 18 12 23 34 234 4.9857 175.26888 1724.65493 1495.20479 -0.04205 10.13770 5.59210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.18034 -0.01296 -1.00000 - 9087 2002 3 18 12 23 44 205 4.9856 175.27402 1725.01550 1495.48266 -0.04222 10.12610 5.58635 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17961 -0.01296 -1.00000 - 9089 2002 3 18 12 23 54 177 4.9856 175.27915 1725.37584 1495.76046 -0.04239 10.11464 5.58060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17889 -0.01296 -1.00000 - 9091 2002 3 18 12 24 4 148 4.9855 175.28428 1725.73596 1496.03818 -0.04257 10.10329 5.57488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17816 -0.01296 -1.00000 - 9093 2002 3 18 12 24 14 119 4.9855 175.28940 1726.09588 1496.31581 -0.04274 10.09204 5.56918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17744 -0.01296 -1.00000 - 9095 2002 3 18 12 24 24 90 4.9854 175.29452 1726.45559 1496.59333 -0.04291 10.08090 5.56352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17671 -0.01296 -1.00000 - 9097 2002 3 18 12 24 34 60 4.9854 175.29964 1726.81511 1496.87075 -0.04309 10.06985 5.55791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17599 -0.01296 -1.00000 - 9099 2002 3 18 12 24 44 31 4.9853 175.30475 1727.17445 1497.14808 -0.04326 10.05889 5.55236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17526 -0.01296 -1.00000 - 9101 2002 3 18 12 24 54 2 4.9853 175.30985 1727.53364 1497.42533 -0.04344 10.04802 5.54686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17454 -0.01296 -1.00000 - 9103 2002 3 18 12 25 3 972 4.9852 175.31495 1727.89269 1497.70250 -0.04361 10.03725 5.54145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17381 -0.01296 -1.00000 - 9105 2002 3 18 12 25 13 943 4.9852 175.32005 1728.25166 1497.97958 -0.04379 10.02660 5.53611 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17309 -0.01296 -1.00000 - 9107 2002 3 18 12 25 23 913 4.9852 175.32514 1728.61053 1498.25654 -0.04396 10.01610 5.53087 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17236 -0.01296 -1.00000 - 9109 2002 3 18 12 25 33 883 4.9851 175.33022 1728.96931 1498.53338 -0.04413 10.00576 5.52572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17164 -0.01295 -1.00000 - 9111 2002 3 18 12 25 43 853 4.9851 175.33530 1729.32802 1498.81013 -0.04431 9.99563 5.52067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17091 -0.01295 -1.00000 - 9113 2002 3 18 12 25 53 823 4.9850 175.34038 1729.68664 1499.08678 -0.04448 9.98573 5.51573 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.17019 -0.01295 -1.00000 - 9115 2002 3 18 12 26 3 793 4.9850 175.34545 1730.04519 1499.36333 -0.04465 9.97612 5.51089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16946 -0.01295 -1.00000 - 9117 2002 3 18 12 26 13 763 4.9849 175.35052 1730.40367 1499.63976 -0.04483 9.96683 5.50618 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16874 -0.01295 -1.00000 - 9119 2002 3 18 12 26 23 733 4.9849 175.35558 1730.76205 1499.91604 -0.04500 9.95789 5.50158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16801 -0.01295 -1.00000 - 9121 2002 3 18 12 26 33 703 4.9848 175.36064 1731.12030 1500.19217 -0.04517 9.94934 5.49711 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16729 -0.01295 -1.00000 - 9123 2002 3 18 12 26 43 672 4.9848 175.36569 1731.47839 1500.46816 -0.04534 9.94120 5.49275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16656 -0.01295 -1.00000 - 9125 2002 3 18 12 26 53 642 4.9847 175.37073 1731.83632 1500.74401 -0.04551 9.93349 5.48851 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16584 -0.01295 -1.00000 - 9127 2002 3 18 12 27 3 611 4.9847 175.37578 1732.19403 1501.01971 -0.04568 9.92624 5.48439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16511 -0.01295 -1.00000 - 9129 2002 3 18 12 27 13 580 4.9846 175.38081 1732.55155 1501.29525 -0.04586 9.91943 5.48040 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16439 -0.01295 -1.00000 - 9131 2002 3 18 12 27 23 549 4.9846 175.38584 1732.90879 1501.57058 -0.04603 9.91306 5.47652 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16366 -0.01294 -1.00000 - 9133 2002 3 18 12 27 33 519 4.9845 175.39087 1733.26574 1501.84572 -0.04620 9.90713 5.47275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16294 -0.01294 -1.00000 - 9135 2002 3 18 12 27 43 488 4.9845 175.39589 1733.62237 1502.12067 -0.04637 9.90160 5.46909 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16221 -0.01294 -1.00000 - 9137 2002 3 18 12 27 53 456 4.9844 175.40091 1733.97865 1502.39543 -0.04654 9.89644 5.46554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16149 -0.01294 -1.00000 - 9139 2002 3 18 12 28 3 425 4.9844 175.40592 1734.33456 1502.67001 -0.04671 9.89163 5.46209 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16076 -0.01294 -1.00000 - 9141 2002 3 18 12 28 13 394 4.9843 175.41093 1734.69012 1502.94438 -0.04689 9.88712 5.45873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.16004 -0.01294 -1.00000 - 9143 2002 3 18 12 28 23 363 4.9843 175.41593 1735.04529 1503.21851 -0.04706 9.88288 5.45547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15931 -0.01294 -1.00000 - 9145 2002 3 18 12 28 33 331 4.9842 175.42093 1735.40004 1503.49242 -0.04723 9.87884 5.45229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15859 -0.01294 -1.00000 - 9147 2002 3 18 12 28 43 299 4.9842 175.42592 1735.75439 1503.76611 -0.04741 9.87497 5.44919 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15786 -0.01294 -1.00000 - 9149 2002 3 18 12 28 53 268 4.9841 175.43091 1736.10832 1504.03961 -0.04758 9.87123 5.44616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15714 -0.01294 -1.00000 - 9151 2002 3 18 12 29 3 236 4.9841 175.43589 1736.46185 1504.31290 -0.04776 9.86755 5.44319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15641 -0.01294 -1.00000 - 9153 2002 3 18 12 29 13 204 4.9840 175.44086 1736.81502 1504.58598 -0.04793 9.86390 5.44029 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15569 -0.01294 -1.00000 - 9155 2002 3 18 12 29 23 172 4.9840 175.44583 1737.16781 1504.85883 -0.04810 9.86024 5.43744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15496 -0.01293 -1.00000 - 9157 2002 3 18 12 29 33 140 4.9839 175.45080 1737.52023 1505.13146 -0.04827 9.85653 5.43464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15424 -0.01293 -1.00000 - 9159 2002 3 18 12 29 43 108 4.9839 175.45576 1737.87231 1505.40389 -0.04845 9.85272 5.43192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15351 -0.01293 -1.00000 - 9161 2002 3 18 12 29 53 75 4.9838 175.46072 1738.22408 1505.67612 -0.04862 9.84880 5.42969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15279 -0.01293 -1.00000 - 9163 2002 3 18 12 30 3 43 4.9838 175.46567 1738.57555 1505.94818 -0.04879 9.84475 5.42753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15206 -0.01293 -1.00000 - 9165 2002 3 18 12 30 13 10 4.9837 175.47061 1738.92680 1506.22005 -0.04897 9.84053 5.42540 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15134 -0.01293 -1.00000 - 9167 2002 3 18 12 30 22 978 4.9837 175.47555 1739.27863 1506.49224 -0.04914 9.83795 5.42338 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.15061 -0.01293 -1.00000 - 9169 2002 3 18 12 30 32 945 4.9836 175.48048 1739.63200 1506.76543 -0.04931 9.83509 5.42145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14989 -0.01293 -1.00000 - 9171 2002 3 18 12 30 42 912 4.9836 175.48540 1739.98725 1507.03932 -0.04950 9.83204 5.41965 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14916 -0.01293 -1.00000 - 9173 2002 3 18 12 30 52 879 4.9835 175.49031 1740.34429 1507.31384 -0.04970 9.82897 5.41797 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14844 -0.01293 -1.00000 - 9175 2002 3 18 12 31 2 846 4.9835 175.49521 1740.70287 1507.58876 -0.04990 9.82594 5.41641 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14772 -0.01293 -1.00000 - 9177 2002 3 18 12 31 12 813 4.9834 175.50012 1741.06265 1507.86393 -0.05007 9.82303 5.41496 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14699 -0.01292 -1.00000 - 9179 2002 3 18 12 31 22 780 4.9834 175.50503 1741.42328 1508.13920 -0.05030 9.82029 5.41362 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14627 -0.01292 -1.00000 - 9181 2002 3 18 12 31 32 747 4.9833 175.50992 1741.78446 1508.41447 -0.05058 9.81781 5.41237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14554 -0.01292 -1.00000 - 9183 2002 3 18 12 31 42 713 4.9833 175.51473 1742.14595 1508.68968 -0.05079 9.81562 5.41120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14482 -0.01292 -1.00000 - 9185 2002 3 18 12 31 52 680 4.9832 175.51952 1742.50753 1508.96479 -0.05063 9.81376 5.41010 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14409 -0.01292 -1.00000 - 9187 2002 3 18 12 32 2 646 4.9832 175.52433 1742.86904 1509.23975 -0.05010 9.81223 5.40905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14337 -0.01292 -1.00000 - 9189 2002 3 18 12 32 12 612 4.9831 175.52925 1743.23037 1509.51451 -0.04982 9.81105 5.40803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14264 -0.01292 -1.00000 - 9191 2002 3 18 12 32 22 578 4.9831 175.53413 1743.59138 1509.78901 -0.05028 9.81019 5.40704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14192 -0.01292 -1.00000 - 9193 2002 3 18 12 32 32 545 4.9830 175.53900 1743.95196 1510.06324 -0.05119 9.80965 5.40605 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14119 -0.01292 -1.00000 - 9195 2002 3 18 12 32 42 510 4.9830 175.54386 1744.31203 1510.33720 -0.05193 9.80938 5.40505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.14047 -0.01292 -1.00000 - 9197 2002 3 18 12 32 52 476 4.9829 175.54861 1744.67153 1510.61089 -0.05258 9.80935 5.40401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13974 -0.01292 -1.00000 - 9199 2002 3 18 12 33 2 442 4.9828 175.55354 1745.03038 1510.88429 -0.05260 9.80950 5.40292 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13902 -0.01292 -1.00000 - 9201 2002 3 18 12 33 12 408 4.9828 175.55842 1745.38856 1511.15739 -0.05277 9.80976 5.40177 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13829 -0.01291 -1.00000 - 9203 2002 3 18 12 33 22 373 4.9827 175.56338 1745.74602 1511.43015 -0.05302 9.81004 5.40055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13757 -0.01291 -1.00000 - 9205 2002 3 18 12 33 32 338 4.9827 175.56821 1746.10271 1511.70259 -0.05308 9.81026 5.39923 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13684 -0.01291 -1.00000 - 9207 2002 3 18 12 33 42 304 4.9826 175.57305 1746.45862 1511.97473 -0.05317 9.81030 5.39780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13612 -0.01291 -1.00000 - 9209 2002 3 18 12 33 52 269 4.9825 175.57792 1746.81373 1512.24658 -0.05300 9.81006 5.39626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13539 -0.01291 -1.00000 - 9211 2002 3 18 12 34 2 234 4.9825 175.58277 1747.16804 1512.51817 -0.05291 9.80943 5.39459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13467 -0.01291 -1.00000 - 9213 2002 3 18 12 34 12 199 4.9824 175.58760 1747.52163 1512.78948 -0.05300 9.80830 5.39280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13395 -0.01291 -1.00000 - 9215 2002 3 18 12 34 22 163 4.9824 175.59240 1747.87456 1513.06052 -0.05300 9.80656 5.39087 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13322 -0.01291 -1.00000 - 9217 2002 3 18 12 34 32 128 4.9824 175.59713 1748.22705 1513.33131 -0.05315 9.80416 5.38880 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13250 -0.01291 -1.00000 - 9219 2002 3 18 12 34 42 93 4.9823 175.60193 1748.57948 1513.60191 -0.05322 9.80105 5.38658 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13177 -0.01291 -1.00000 - 9221 2002 3 18 12 34 52 57 4.9822 175.60666 1748.93234 1513.87231 -0.05339 9.79723 5.38422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13105 -0.01291 -1.00000 - 9223 2002 3 18 12 35 2 22 4.9822 175.61144 1749.28628 1514.14253 -0.05357 9.79279 5.38170 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.13032 -0.01291 -1.00000 - 9225 2002 3 18 12 35 11 986 4.9821 175.61619 1749.64201 1514.41252 -0.05377 9.78783 5.37900 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12960 -0.01290 -1.00000 - 9227 2002 3 18 12 35 21 950 4.9821 175.62093 1750.00011 1514.68221 -0.05408 9.78254 5.37610 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12887 -0.01290 -1.00000 - 9229 2002 3 18 12 35 31 914 4.9820 175.62570 1750.36100 1514.95157 -0.05426 9.77710 5.37297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12815 -0.01290 -1.00000 - 9231 2002 3 18 12 35 41 878 4.9820 175.63042 1750.72477 1515.22054 -0.05457 9.77177 5.36957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12742 -0.01290 -1.00000 - 9233 2002 3 18 12 35 51 842 4.9819 175.63521 1751.09112 1515.48903 -0.05477 9.76687 5.36585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12670 -0.01290 -1.00000 - 9235 2002 3 18 12 36 1 806 4.9818 175.63992 1751.45927 1515.75697 -0.05505 9.76286 5.36177 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12597 -0.01290 -1.00000 - 9237 2002 3 18 12 36 11 769 4.9818 175.64471 1751.82803 1516.02425 -0.05529 9.76046 5.35729 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12525 -0.01290 -1.00000 - 9239 2002 3 18 12 36 21 733 4.9817 175.64943 1752.19574 1516.29080 -0.05547 9.76064 5.35237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12453 -0.01290 -1.00000 - 9241 2002 3 18 12 36 31 696 4.9817 175.65416 1752.56048 1516.55654 -0.05574 9.76460 5.34697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12380 -0.01290 -1.00000 - 9243 2002 3 18 12 36 41 660 4.9816 175.65894 1752.92019 1516.82147 -0.05580 9.77353 5.34107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12308 -0.01290 -1.00000 - 9245 2002 3 18 12 36 51 623 4.9816 175.66360 1753.27286 1517.08555 -0.05611 9.78831 5.33464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12235 -0.01290 -1.00000 - 9247 2002 3 18 12 37 1 586 4.9815 175.66840 1753.61672 1517.34878 -0.05616 9.80916 5.32765 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12163 -0.01289 -1.00000 - 9249 2002 3 18 12 37 11 549 4.9814 175.67304 1753.95062 1517.61116 -0.05632 9.83513 5.32009 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12090 -0.01289 -1.00000 - 9251 2002 3 18 12 37 21 511 4.9814 175.67778 1754.27411 1517.87274 -0.05654 9.86374 5.31195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.12018 -0.01289 -1.00000 - 9253 2002 3 18 12 37 31 474 4.9813 175.68249 1754.58778 1518.13366 -0.05649 9.89102 5.30322 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11945 -0.01289 -1.00000 - 9255 2002 3 18 12 37 41 437 4.9813 175.68712 1754.89327 1518.39414 -0.05684 9.91210 5.29394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11873 -0.01289 -1.00000 - 9257 2002 3 18 12 37 51 399 4.9812 175.69189 1755.19304 1518.65445 -0.05679 9.92215 5.28415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11800 -0.01289 -1.00000 - 9259 2002 3 18 12 38 1 361 4.9812 175.69645 1755.49017 1518.91495 -0.05703 9.91724 5.27393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11728 -0.01289 -1.00000 - 9261 2002 3 18 12 38 11 324 4.9811 175.70119 1755.78793 1519.17595 -0.05721 9.89489 5.26340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11656 -0.01289 -1.00000 - 9263 2002 3 18 12 38 21 286 4.9810 175.70581 1756.08937 1519.43778 -0.05722 9.85441 5.25268 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11583 -0.01289 -1.00000 - 9265 2002 3 18 12 38 31 248 4.9810 175.71043 1756.39712 1519.70078 -0.05761 9.79702 5.24189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11511 -0.01289 -1.00000 - 9267 2002 3 18 12 38 41 210 4.9809 175.71514 1756.71310 1519.96522 -0.05757 9.72557 5.23120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11438 -0.01289 -1.00000 - 9269 2002 3 18 12 38 51 171 4.9809 175.71968 1757.03849 1520.23128 -0.05789 9.64394 5.22072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11366 -0.01289 -1.00000 - 9271 2002 3 18 12 39 1 133 4.9808 175.72440 1757.37375 1520.49905 -0.05804 9.55645 5.21058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11293 -0.01288 -1.00000 - 9273 2002 3 18 12 39 11 94 4.9807 175.72896 1757.71879 1520.76851 -0.05817 9.46713 5.20089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11221 -0.01288 -1.00000 - 9275 2002 3 18 12 39 21 56 4.9807 175.73359 1758.07322 1521.03955 -0.05848 9.37891 5.19174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11148 -0.01288 -1.00000 - 9277 2002 3 18 12 39 31 17 4.9806 175.73824 1758.43650 1521.31206 -0.05849 9.29464 5.18320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11076 -0.01288 -1.00000 - 9279 2002 3 18 12 39 40 978 4.9806 175.74278 1758.80776 1521.58587 -0.05884 9.21699 5.17530 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.11004 -0.01288 -1.00000 - 9281 2002 3 18 12 39 50 939 4.9805 175.74746 1759.18584 1521.86075 -0.05890 9.14810 5.16810 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10931 -0.01288 -1.00000 - 9283 2002 3 18 12 40 0 900 4.9804 175.75198 1759.56939 1522.13645 -0.05913 9.08938 5.16160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10859 -0.01288 -1.00000 - 9285 2002 3 18 12 40 10 861 4.9804 175.75660 1759.95701 1522.41266 -0.05937 9.04174 5.15584 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10786 -0.01288 -1.00000 - 9287 2002 3 18 12 40 20 822 4.9803 175.76118 1760.34718 1522.68907 -0.05939 9.00572 5.15081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10714 -0.01288 -1.00000 - 9289 2002 3 18 12 40 30 782 4.9803 175.76570 1760.73842 1522.96544 -0.05975 8.98146 5.14655 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10641 -0.01288 -1.00000 - 9291 2002 3 18 12 40 40 743 4.9802 175.77031 1761.12934 1523.24152 -0.05978 8.96929 5.14303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10569 -0.01288 -1.00000 - 9293 2002 3 18 12 40 50 703 4.9801 175.77480 1761.51859 1523.51707 -0.05998 8.97140 5.14027 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10497 -0.01287 -1.00000 - 9295 2002 3 18 12 41 0 663 4.9801 175.77936 1761.90490 1523.79186 -0.06023 8.98619 5.13821 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10424 -0.01287 -1.00000 - 9297 2002 3 18 12 41 10 623 4.9800 175.78386 1762.28721 1524.06565 -0.06026 9.01153 5.13681 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10352 -0.01287 -1.00000 - 9299 2002 3 18 12 41 20 583 4.9800 175.78835 1762.66452 1524.33823 -0.06053 9.04554 5.13598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10279 -0.01287 -1.00000 - 9301 2002 3 18 12 41 30 543 4.9799 175.79282 1763.03603 1524.60941 -0.06075 9.08590 5.13564 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10207 -0.01287 -1.00000 - 9303 2002 3 18 12 41 40 503 4.9799 175.79725 1763.40118 1524.87906 -0.06093 9.13703 5.13572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10134 -0.01287 -1.00000 - 9305 2002 3 18 12 41 50 463 4.9798 175.80168 1763.75971 1525.14710 -0.06118 9.19562 5.13611 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.10062 -0.01287 -1.00000 - 9307 2002 3 18 12 42 0 422 4.9798 175.80603 1764.11173 1525.41348 -0.06144 9.25547 5.13669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09989 -0.01287 -1.00000 - 9309 2002 3 18 12 42 10 382 4.9797 175.81041 1764.45786 1525.67823 -0.06165 9.31219 5.13733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09917 -0.01287 -1.00000 - 9311 2002 3 18 12 42 20 341 4.9797 175.81473 1764.79867 1525.94145 -0.06188 9.36317 5.13792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09845 -0.01287 -1.00000 - 9313 2002 3 18 12 42 30 300 4.9796 175.81904 1765.13458 1526.20331 -0.06213 9.40806 5.13839 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09772 -0.01287 -1.00000 - 9315 2002 3 18 12 42 40 260 4.9796 175.82332 1765.46563 1526.46397 -0.06232 9.44751 5.13867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09700 -0.01287 -1.00000 - 9317 2002 3 18 12 42 50 219 4.9795 175.82759 1765.79162 1526.72361 -0.06248 9.48256 5.13870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09627 -0.01286 -1.00000 - 9319 2002 3 18 12 43 0 178 4.9795 175.83184 1766.11237 1526.98237 -0.06264 9.51402 5.13845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09555 -0.01286 -1.00000 - 9321 2002 3 18 12 43 10 136 4.9794 175.83606 1766.42790 1527.24040 -0.06280 9.54206 5.13788 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09483 -0.01286 -1.00000 - 9323 2002 3 18 12 43 20 95 4.9794 175.84026 1766.73862 1527.49782 -0.06293 9.56604 5.13697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09410 -0.01286 -1.00000 - 9325 2002 3 18 12 43 30 54 4.9793 175.84443 1767.04550 1527.75481 -0.06305 9.58454 5.13571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09338 -0.01286 -1.00000 - 9327 2002 3 18 12 43 40 12 4.9792 175.84859 1767.35003 1528.01158 -0.06318 9.59561 5.13408 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09265 -0.01286 -1.00000 - 9330 2002 3 18 12 43 54 950 4.9792 175.85479 1767.80685 1528.39720 -0.06336 9.59392 5.13089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09157 -0.01286 -1.00000 - 9332 2002 3 18 12 44 4 908 4.9791 175.85890 1768.11468 1528.65431 -0.06350 9.57852 5.12846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09084 -0.01286 -1.00000 - 9334 2002 3 18 12 44 14 866 4.9791 175.86299 1768.42772 1528.91189 -0.06364 9.55126 5.12578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.09012 -0.01286 -1.00000 - 9336 2002 3 18 12 44 24 824 4.9790 175.86708 1768.74767 1529.17005 -0.06379 9.51316 5.12290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08939 -0.01286 -1.00000 - 9338 2002 3 18 12 44 34 782 4.9789 175.87115 1769.07566 1529.42895 -0.06397 9.46644 5.11986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08867 -0.01286 -1.00000 - 9340 2002 3 18 12 44 44 740 4.9789 175.87521 1769.41205 1529.68863 -0.06414 9.41422 5.11672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08795 -0.01285 -1.00000 - 9342 2002 3 18 12 44 54 698 4.9788 175.87927 1769.75644 1529.94909 -0.06431 9.36017 5.11352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08722 -0.01285 -1.00000 - 9344 2002 3 18 12 45 4 655 4.9788 175.88332 1770.10770 1530.21025 -0.06450 9.30794 5.11028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08650 -0.01285 -1.00000 - 9346 2002 3 18 12 45 14 613 4.9787 175.88736 1770.46431 1530.47196 -0.06469 9.26029 5.10701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08577 -0.01285 -1.00000 - 9348 2002 3 18 12 45 24 570 4.9786 175.89141 1770.82533 1530.73457 -0.06487 9.22127 5.10376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08505 -0.01285 -1.00000 - 9350 2002 3 18 12 45 34 527 4.9786 175.89545 1771.18971 1530.99837 -0.06505 9.19109 5.10053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08432 -0.01285 -1.00000 - 9352 2002 3 18 12 45 44 484 4.9785 175.89949 1771.55561 1531.26306 -0.06523 9.17113 5.09733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08360 -0.01285 -1.00000 - 9354 2002 3 18 12 45 54 441 4.9785 175.90352 1771.92088 1531.52827 -0.06540 9.16180 5.09413 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08288 -0.01285 -1.00000 - 9356 2002 3 18 12 46 4 398 4.9784 175.90755 1772.28373 1531.79367 -0.06557 9.16232 5.09096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08215 -0.01285 -1.00000 - 9358 2002 3 18 12 46 14 355 4.9783 175.91157 1772.64290 1532.05894 -0.06575 9.17111 5.08781 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08143 -0.01285 -1.00000 - 9360 2002 3 18 12 46 24 311 4.9783 175.91559 1772.99764 1532.32386 -0.06592 9.18565 5.08467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.08070 -0.01285 -1.00000 - 9362 2002 3 18 12 46 34 268 4.9782 175.91960 1773.34786 1532.58834 -0.06609 9.20288 5.08154 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07998 -0.01285 -1.00000 - 9364 2002 3 18 12 46 44 224 4.9781 175.92361 1773.69396 1532.85233 -0.06626 9.22010 5.07839 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07926 -0.01284 -1.00000 - 9366 2002 3 18 12 46 54 180 4.9781 175.92762 1774.03666 1533.11587 -0.06643 9.23558 5.07521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07853 -0.01284 -1.00000 - 9368 2002 3 18 12 47 4 136 4.9780 175.93162 1774.37678 1533.37899 -0.06660 9.24811 5.07199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07781 -0.01284 -1.00000 - 9370 2002 3 18 12 47 14 92 4.9779 175.93562 1774.71521 1533.64174 -0.06676 9.25684 5.06872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07708 -0.01284 -1.00000 - 9372 2002 3 18 12 47 24 48 4.9779 175.93961 1775.05280 1533.90417 -0.06693 9.26133 5.06541 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07636 -0.01284 -1.00000 - 9374 2002 3 18 12 47 34 3 4.9778 175.94361 1775.39034 1534.16636 -0.06709 9.26146 5.06205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07564 -0.01284 -1.00000 - 9376 2002 3 18 12 47 43 959 4.9777 175.94760 1775.72854 1534.42838 -0.06726 9.25739 5.05865 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07491 -0.01284 -1.00000 - 9378 2002 3 18 12 47 53 914 4.9777 175.95158 1776.06793 1534.69032 -0.06743 9.24956 5.05522 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07419 -0.01284 -1.00000 - 9380 2002 3 18 12 48 3 870 4.9776 175.95557 1776.40885 1534.95220 -0.06760 9.23868 5.05175 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07346 -0.01284 -1.00000 - 9382 2002 3 18 12 48 13 825 4.9776 175.95955 1776.75145 1535.21403 -0.06777 9.22566 5.04827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07274 -0.01284 -1.00000 - 9384 2002 3 18 12 48 23 780 4.9775 175.96352 1777.09562 1535.47579 -0.06793 9.21150 5.04475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07202 -0.01284 -1.00000 - 9386 2002 3 18 12 48 33 735 4.9774 175.96749 1777.44109 1535.73749 -0.06810 9.19720 5.04121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07129 -0.01283 -1.00000 - 9388 2002 3 18 12 48 43 689 4.9774 175.97146 1777.78744 1535.99912 -0.06826 9.18359 5.03763 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.07057 -0.01283 -1.00000 - 9390 2002 3 18 12 48 53 644 4.9773 175.97543 1778.13420 1536.26065 -0.06842 9.17133 5.03402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06984 -0.01283 -1.00000 - 9392 2002 3 18 12 49 3 599 4.9772 175.97939 1778.48083 1536.52205 -0.06857 9.16079 5.03036 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06912 -0.01283 -1.00000 - 9394 2002 3 18 12 49 13 553 4.9772 175.98335 1778.82689 1536.78326 -0.06871 9.15213 5.02666 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06840 -0.01283 -1.00000 - 9396 2002 3 18 12 49 23 507 4.9771 175.98730 1779.17194 1537.04424 -0.06885 9.14525 5.02290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06767 -0.01283 -1.00000 - 9398 2002 3 18 12 49 33 461 4.9770 175.99125 1779.51567 1537.30497 -0.06898 9.13988 5.01909 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06695 -0.01283 -1.00000 - 9400 2002 3 18 12 49 43 415 4.9770 175.99519 1779.85792 1537.56546 -0.06912 9.13561 5.01521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06623 -0.01283 -1.00000 - 9402 2002 3 18 12 49 53 369 4.9769 175.99913 1780.19867 1537.82573 -0.06925 9.13195 5.01128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06550 -0.01283 -1.00000 - 9404 2002 3 18 12 50 3 323 4.9768 176.00306 1780.53804 1538.08578 -0.06940 9.12840 5.00730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06478 -0.01283 -1.00000 - 9406 2002 3 18 12 50 13 276 4.9768 176.00699 1780.87634 1538.34561 -0.06955 9.12447 5.00326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06405 -0.01283 -1.00000 - 9408 2002 3 18 12 50 23 230 4.9767 176.01091 1781.21390 1538.60523 -0.06970 9.11973 4.99918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06333 -0.01283 -1.00000 - 9410 2002 3 18 12 50 33 183 4.9766 176.01483 1781.55118 1538.86466 -0.06987 9.11383 4.99505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06261 -0.01282 -1.00000 - 9412 2002 3 18 12 50 43 136 4.9765 176.01874 1781.88866 1539.12396 -0.07004 9.10655 4.99089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06188 -0.01282 -1.00000 - 9414 2002 3 18 12 50 53 89 4.9765 176.02265 1782.22681 1539.38314 -0.07022 9.09782 4.98669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06116 -0.01282 -1.00000 - 9416 2002 3 18 12 51 3 42 4.9764 176.02655 1782.56598 1539.64223 -0.07041 9.08769 4.98245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.06043 -0.01282 -1.00000 - 9418 2002 3 18 12 51 12 994 4.9763 176.03045 1782.90646 1539.90120 -0.07060 9.07642 4.97818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05971 -0.01282 -1.00000 - 9420 2002 3 18 12 51 22 947 4.9763 176.03435 1783.24827 1540.16002 -0.07080 9.06440 4.97388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05899 -0.01282 -1.00000 - 9422 2002 3 18 12 51 32 899 4.9762 176.03824 1783.59129 1540.41870 -0.07099 9.05220 4.96953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05826 -0.01282 -1.00000 - 9424 2002 3 18 12 51 42 852 4.9761 176.04213 1783.93517 1540.67723 -0.07119 9.04048 4.96514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05754 -0.01282 -1.00000 - 9426 2002 3 18 12 51 52 804 4.9761 176.04602 1784.27940 1540.93558 -0.07138 9.02993 4.96070 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05682 -0.01282 -1.00000 - 9428 2002 3 18 12 52 2 756 4.9760 176.04990 1784.62334 1541.19372 -0.07156 9.02119 4.95619 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05609 -0.01282 -1.00000 - 9430 2002 3 18 12 52 12 708 4.9759 176.05378 1784.96628 1541.45159 -0.07175 9.01475 4.95162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05537 -0.01282 -1.00000 - 9432 2002 3 18 12 52 22 659 4.9758 176.05765 1785.30752 1541.70912 -0.07192 9.01083 4.94697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05464 -0.01282 -1.00000 - 9434 2002 3 18 12 52 32 611 4.9758 176.06152 1785.64647 1541.96633 -0.07209 9.00937 4.94223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05392 -0.01281 -1.00000 - 9436 2002 3 18 12 52 42 562 4.9757 176.06539 1785.98273 1542.22319 -0.07225 9.01000 4.93739 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05320 -0.01281 -1.00000 - 9438 2002 3 18 12 52 52 514 4.9756 176.06926 1786.31615 1542.47971 -0.07240 9.01192 4.93246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05247 -0.01281 -1.00000 - 9440 2002 3 18 12 53 2 465 4.9756 176.07311 1786.64687 1542.73592 -0.07254 9.01406 4.92743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05175 -0.01281 -1.00000 - 9442 2002 3 18 12 53 12 416 4.9755 176.07697 1786.97534 1542.99184 -0.07268 9.01519 4.92231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05103 -0.01281 -1.00000 - 9444 2002 3 18 12 53 22 367 4.9754 176.08081 1787.30218 1543.24748 -0.07281 9.01416 4.91711 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.05030 -0.01281 -1.00000 - 9446 2002 3 18 12 53 32 317 4.9753 176.08466 1787.62818 1543.50293 -0.07295 9.01009 4.91182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04958 -0.01281 -1.00000 - 9448 2002 3 18 12 53 42 268 4.9753 176.08849 1787.95416 1543.75828 -0.07308 9.00244 4.90648 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04886 -0.01281 -1.00000 - 9450 2002 3 18 12 53 52 218 4.9752 176.09232 1788.28090 1544.01361 -0.07321 8.99105 4.90110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04813 -0.01281 -1.00000 - 9452 2002 3 18 12 54 2 169 4.9751 176.09614 1788.60903 1544.26897 -0.07335 8.97617 4.89571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04741 -0.01281 -1.00000 - 9454 2002 3 18 12 54 12 119 4.9750 176.09996 1788.93902 1544.52439 -0.07349 8.95839 4.89031 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04668 -0.01281 -1.00000 - 9456 2002 3 18 12 54 22 69 4.9750 176.10377 1789.27103 1544.77988 -0.07364 8.93857 4.88494 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04596 -0.01280 -1.00000 - 9458 2002 3 18 12 54 32 19 4.9749 176.10757 1789.60506 1545.03545 -0.07379 8.91772 4.87960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04524 -0.01280 -1.00000 - 9460 2002 3 18 12 54 41 968 4.9748 176.11137 1789.94086 1545.29111 -0.07395 8.89691 4.87430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04451 -0.01280 -1.00000 - 9462 2002 3 18 12 54 51 918 4.9748 176.11516 1790.27803 1545.54684 -0.07411 8.87709 4.86906 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04379 -0.01280 -1.00000 - 9464 2002 3 18 12 55 1 867 4.9747 176.11894 1790.61605 1545.80261 -0.07427 8.85905 4.86388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04307 -0.01280 -1.00000 - 9466 2002 3 18 12 55 11 816 4.9746 176.12272 1790.95439 1546.05834 -0.07443 8.84330 4.85876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04234 -0.01280 -1.00000 - 9468 2002 3 18 12 55 21 766 4.9745 176.12650 1791.29247 1546.31397 -0.07460 8.83008 4.85371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04162 -0.01280 -1.00000 - 9470 2002 3 18 12 55 31 715 4.9745 176.13026 1791.62980 1546.56947 -0.07477 8.81936 4.84872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04090 -0.01280 -1.00000 - 9472 2002 3 18 12 55 41 663 4.9744 176.13402 1791.96597 1546.82481 -0.07494 8.81090 4.84379 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.04017 -0.01280 -1.00000 - 9474 2002 3 18 12 55 51 612 4.9743 176.13778 1792.30072 1547.07997 -0.07511 8.80430 4.83893 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03945 -0.01280 -1.00000 - 9476 2002 3 18 12 56 1 561 4.9742 176.14153 1792.63388 1547.33495 -0.07529 8.79904 4.83415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03873 -0.01280 -1.00000 - 9478 2002 3 18 12 56 11 509 4.9742 176.14527 1792.96544 1547.58973 -0.07546 8.79450 4.82944 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03800 -0.01280 -1.00000 - 9480 2002 3 18 12 56 21 457 4.9741 176.14901 1793.29547 1547.84428 -0.07563 8.79007 4.82481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03728 -0.01279 -1.00000 - 9482 2002 3 18 12 56 31 405 4.9740 176.15275 1793.62415 1548.09864 -0.07581 8.78521 4.82027 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03656 -0.01279 -1.00000 - 9484 2002 3 18 12 56 41 353 4.9739 176.15647 1793.95173 1548.35288 -0.07598 8.77950 4.81583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03583 -0.01279 -1.00000 - 9486 2002 3 18 12 56 51 301 4.9739 176.16020 1794.27849 1548.60701 -0.07615 8.77268 4.81150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03511 -0.01279 -1.00000 - 9488 2002 3 18 12 57 1 248 4.9738 176.16392 1794.60474 1548.86109 -0.07632 8.76456 4.80730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03439 -0.01279 -1.00000 - 9490 2002 3 18 12 57 11 196 4.9737 176.16763 1794.93083 1549.11514 -0.07649 8.75507 4.80323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03366 -0.01279 -1.00000 - 9492 2002 3 18 12 57 21 143 4.9736 176.17134 1795.25704 1549.36914 -0.07665 8.74423 4.79932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03294 -0.01279 -1.00000 - 9494 2002 3 18 12 57 31 90 4.9735 176.17504 1795.58366 1549.62315 -0.07681 8.73212 4.79557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03221 -0.01279 -1.00000 - 9496 2002 3 18 12 57 41 37 4.9735 176.17874 1795.91096 1549.87722 -0.07696 8.71891 4.79199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03149 -0.01279 -1.00000 - 9498 2002 3 18 12 57 50 984 4.9734 176.18243 1796.23916 1550.13135 -0.07711 8.70487 4.78861 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03077 -0.01279 -1.00000 - 9500 2002 3 18 12 58 0 931 4.9733 176.18611 1796.56844 1550.38556 -0.07725 8.69031 4.78542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.03004 -0.01279 -1.00000 - 9502 2002 3 18 12 58 10 877 4.9732 176.18979 1796.89892 1550.63983 -0.07739 8.67561 4.78245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02932 -0.01278 -1.00000 - 9504 2002 3 18 12 58 20 824 4.9732 176.19346 1797.23066 1550.89411 -0.07753 8.66117 4.77969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02860 -0.01278 -1.00000 - 9506 2002 3 18 12 58 30 770 4.9731 176.19713 1797.56363 1551.14840 -0.07767 8.64743 4.77715 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02787 -0.01278 -1.00000 - 9508 2002 3 18 12 58 40 716 4.9730 176.20078 1797.89781 1551.40269 -0.07780 8.63477 4.77483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02715 -0.01278 -1.00000 - 9510 2002 3 18 12 58 50 662 4.9729 176.20443 1798.23309 1551.65693 -0.07794 8.62357 4.77272 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02643 -0.01278 -1.00000 - 9512 2002 3 18 12 59 0 608 4.9729 176.20807 1798.56934 1551.91109 -0.07809 8.61415 4.77080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02571 -0.01278 -1.00000 - 9514 2002 3 18 12 59 10 553 4.9728 176.21171 1798.90641 1552.16509 -0.07824 8.60678 4.76909 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02498 -0.01278 -1.00000 - 9516 2002 3 18 12 59 20 499 4.9727 176.21534 1799.24408 1552.41884 -0.07839 8.60170 4.76754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02426 -0.01278 -1.00000 - 9518 2002 3 18 12 59 30 444 4.9726 176.21896 1799.58212 1552.67230 -0.07855 8.59908 4.76614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02354 -0.01278 -1.00000 - 9520 2002 3 18 12 59 40 389 4.9725 176.22257 1799.92026 1552.92541 -0.07871 8.59901 4.76487 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02281 -0.01278 -1.00000 - 9522 2002 3 18 12 59 50 334 4.9725 176.22618 1800.25823 1553.17813 -0.07888 8.60148 4.76369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02209 -0.01278 -1.00000 - 9524 2002 3 18 13 0 0 279 4.9724 176.22978 1800.59573 1553.43038 -0.07905 8.60643 4.76257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02137 -0.01278 -1.00000 - 9526 2002 3 18 13 0 10 223 4.9723 176.23338 1800.93248 1553.68212 -0.07922 8.61377 4.76149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.02064 -0.01277 -1.00000 - 9528 2002 3 18 13 0 20 168 4.9722 176.23697 1801.26896 1553.93380 -0.07939 8.62495 4.76044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01992 -0.01277 -1.00000 - 9530 2002 3 18 13 0 30 112 4.9721 176.24055 1801.60572 1554.18575 -0.07957 8.63804 4.75941 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01920 -0.01277 -1.00000 - 9532 2002 3 18 13 0 40 56 4.9721 176.24413 1801.94264 1554.43786 -0.07974 8.65283 4.75835 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01847 -0.01277 -1.00000 - 9534 2002 3 18 13 0 50 0 4.9720 176.24770 1802.27923 1554.68994 -0.07990 8.66909 4.75724 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01775 -0.01277 -1.00000 - 9537 2002 3 18 13 1 4 916 4.9719 176.25304 1802.78210 1555.06722 -0.08014 8.69541 4.75549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01667 -0.01277 -1.00000 - 9539 2002 3 18 13 1 14 860 4.9718 176.25660 1803.11516 1555.31849 -0.08030 8.71352 4.75407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01594 -0.01277 -1.00000 - 9541 2002 3 18 13 1 24 803 4.9717 176.26014 1803.44591 1555.56922 -0.08045 8.73143 4.75247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01522 -0.01277 -1.00000 - 9543 2002 3 18 13 1 34 747 4.9716 176.26368 1803.77406 1555.81938 -0.08060 8.74847 4.75064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01450 -0.01277 -1.00000 - 9545 2002 3 18 13 1 44 690 4.9715 176.26722 1804.09947 1556.06901 -0.08075 8.76396 4.74856 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01377 -0.01277 -1.00000 - 9547 2002 3 18 13 1 54 633 4.9715 176.27074 1804.42218 1556.31813 -0.08089 8.77721 4.74621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01305 -0.01277 -1.00000 - 9549 2002 3 18 13 2 4 575 4.9714 176.27426 1804.74236 1556.56681 -0.08104 8.78756 4.74358 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01233 -0.01276 -1.00000 - 9551 2002 3 18 13 2 14 518 4.9713 176.27778 1805.06036 1556.81511 -0.08118 8.79448 4.74066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01160 -0.01276 -1.00000 - 9553 2002 3 18 13 2 24 461 4.9712 176.28128 1805.37655 1557.06307 -0.08132 8.79753 4.73745 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01088 -0.01276 -1.00000 - 9555 2002 3 18 13 2 34 403 4.9711 176.28478 1805.69143 1557.31081 -0.08146 8.79638 4.73396 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.01016 -0.01276 -1.00000 - 9557 2002 3 18 13 2 44 345 4.9711 176.28827 1806.00558 1557.55846 -0.08161 8.79080 4.73021 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00943 -0.01276 -1.00000 - 9559 2002 3 18 13 2 54 287 4.9710 176.29175 1806.31962 1557.80611 -0.08176 8.78072 4.72620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00871 -0.01276 -1.00000 - 9561 2002 3 18 13 3 4 229 4.9709 176.29523 1806.63417 1558.05387 -0.08191 8.76621 4.72198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00799 -0.01276 -1.00000 - 9563 2002 3 18 13 3 14 171 4.9708 176.29870 1806.94984 1558.30179 -0.08207 8.74751 4.71758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00727 -0.01276 -1.00000 - 9565 2002 3 18 13 3 24 112 4.9707 176.30216 1807.26717 1558.54993 -0.08222 8.72506 4.71301 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00654 -0.01276 -1.00000 - 9567 2002 3 18 13 3 34 53 4.9707 176.30562 1807.58661 1558.79835 -0.08238 8.69945 4.70832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00582 -0.01276 -1.00000 - 9569 2002 3 18 13 3 43 995 4.9706 176.30907 1807.90851 1559.04712 -0.08255 8.67138 4.70354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00510 -0.01276 -1.00000 - 9571 2002 3 18 13 3 53 936 4.9705 176.31251 1808.23308 1559.29627 -0.08271 8.64168 4.69870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00437 -0.01276 -1.00000 - 9573 2002 3 18 13 4 3 877 4.9704 176.31594 1808.56040 1559.54578 -0.08287 8.61122 4.69383 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00365 -0.01275 -1.00000 - 9575 2002 3 18 13 4 13 817 4.9703 176.31937 1808.89043 1559.79564 -0.08303 8.58089 4.68896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00293 -0.01275 -1.00000 - 9577 2002 3 18 13 4 23 758 4.9702 176.32279 1809.22296 1560.04577 -0.08319 8.55155 4.68411 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00220 -0.01275 -1.00000 - 9579 2002 3 18 13 4 33 698 4.9702 176.32620 1809.55767 1560.29613 -0.08335 8.52400 4.67930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00148 -0.01275 -1.00000 - 9581 2002 3 18 13 4 43 638 4.9701 176.32960 1809.89416 1560.54667 -0.08350 8.49890 4.67454 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00076 -0.01275 -1.00000 - 9583 2002 3 18 13 4 53 578 4.9700 176.33300 1810.23195 1560.79734 -0.08365 8.47680 4.66985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 6.00004 -0.01275 -1.00000 - 9585 2002 3 18 13 5 3 518 4.9699 176.33639 1810.57052 1561.04806 -0.08380 8.45807 4.66523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99931 -0.01275 -1.00000 - 9587 2002 3 18 13 5 13 458 4.9698 176.33977 1810.90936 1561.29871 -0.08395 8.44294 4.66068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99859 -0.01275 -1.00000 - 9589 2002 3 18 13 5 23 397 4.9697 176.34315 1811.24790 1561.54919 -0.08409 8.43157 4.65620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99787 -0.01275 -1.00000 - 9591 2002 3 18 13 5 33 337 4.9697 176.34652 1811.58563 1561.79943 -0.08423 8.42387 4.65179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99714 -0.01275 -1.00000 - 9593 2002 3 18 13 5 43 276 4.9696 176.34988 1811.92210 1562.04940 -0.08438 8.41955 4.64744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99642 -0.01275 -1.00000 - 9595 2002 3 18 13 5 53 215 4.9695 176.35323 1812.25696 1562.29903 -0.08452 8.41818 4.64314 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99570 -0.01274 -1.00000 - 9597 2002 3 18 13 6 3 154 4.9694 176.35657 1812.58993 1562.54829 -0.08467 8.41921 4.63888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99498 -0.01274 -1.00000 - 9599 2002 3 18 13 6 13 93 4.9693 176.35991 1812.92086 1562.79712 -0.08482 8.42203 4.63467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99425 -0.01274 -1.00000 - 9601 2002 3 18 13 6 23 31 4.9692 176.36324 1813.24965 1563.04549 -0.08497 8.42601 4.63047 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99353 -0.01274 -1.00000 - 9603 2002 3 18 13 6 32 969 4.9692 176.36656 1813.57629 1563.29339 -0.08512 8.43055 4.62628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99281 -0.01274 -1.00000 - 9605 2002 3 18 13 6 42 908 4.9691 176.36988 1813.90087 1563.54087 -0.08528 8.43507 4.62210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99209 -0.01274 -1.00000 - 9607 2002 3 18 13 6 52 846 4.9690 176.37319 1814.22352 1563.78795 -0.08543 8.43906 4.61790 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99136 -0.01274 -1.00000 - 9609 2002 3 18 13 7 2 784 4.9689 176.37649 1814.54443 1564.03466 -0.08559 8.44204 4.61369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.99064 -0.01274 -1.00000 - 9611 2002 3 18 13 7 12 721 4.9688 176.37979 1814.86389 1564.28103 -0.08573 8.44364 4.60946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98992 -0.01274 -1.00000 - 9613 2002 3 18 13 7 22 659 4.9687 176.38307 1815.18214 1564.52707 -0.08589 8.44357 4.60520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98919 -0.01274 -1.00000 - 9615 2002 3 18 13 7 32 596 4.9686 176.38636 1815.49949 1564.77284 -0.08603 8.44162 4.60092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98847 -0.01274 -1.00000 - 9617 2002 3 18 13 7 42 533 4.9686 176.38963 1815.81625 1565.01840 -0.08617 8.43772 4.59662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98775 -0.01274 -1.00000 - 9619 2002 3 18 13 7 52 470 4.9685 176.39290 1816.13274 1565.26382 -0.08632 8.43188 4.59230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98703 -0.01273 -1.00000 - 9621 2002 3 18 13 8 2 407 4.9684 176.39616 1816.44925 1565.50913 -0.08646 8.42417 4.58797 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98630 -0.01273 -1.00000 - 9623 2002 3 18 13 8 12 344 4.9683 176.39941 1816.76608 1565.75435 -0.08659 8.41471 4.58363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98558 -0.01273 -1.00000 - 9625 2002 3 18 13 8 22 280 4.9682 176.40265 1817.08345 1565.99948 -0.08673 8.40371 4.57930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98486 -0.01273 -1.00000 - 9627 2002 3 18 13 8 32 216 4.9681 176.40590 1817.40158 1566.24455 -0.08687 8.39143 4.57497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98414 -0.01273 -1.00000 - 9629 2002 3 18 13 8 42 153 4.9680 176.40912 1817.72058 1566.48962 -0.08700 8.37819 4.57067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98341 -0.01273 -1.00000 - 9631 2002 3 18 13 8 52 89 4.9680 176.41234 1818.04055 1566.73468 -0.08715 8.36435 4.56638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98269 -0.01273 -1.00000 - 9633 2002 3 18 13 9 2 24 4.9679 176.41556 1818.36148 1566.97974 -0.08729 8.35029 4.56212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98197 -0.01273 -1.00000 - 9635 2002 3 18 13 9 11 960 4.9678 176.41877 1818.68334 1567.22478 -0.08742 8.33640 4.55790 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98125 -0.01273 -1.00000 - 9637 2002 3 18 13 9 21 895 4.9677 176.42196 1819.00596 1567.46973 -0.08757 8.32303 4.55372 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.98052 -0.01273 -1.00000 - 9639 2002 3 18 13 9 31 831 4.9676 176.42516 1819.32917 1567.71460 -0.08771 8.31050 4.54957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97980 -0.01273 -1.00000 - 9641 2002 3 18 13 9 41 766 4.9675 176.42834 1819.65273 1567.95938 -0.08785 8.29908 4.54545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97908 -0.01273 -1.00000 - 9643 2002 3 18 13 9 51 701 4.9674 176.43151 1819.97639 1568.20405 -0.08802 8.28895 4.54137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97836 -0.01272 -1.00000 - 9645 2002 3 18 13 10 1 635 4.9674 176.43470 1820.29987 1568.44858 -0.08815 8.28027 4.53732 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97763 -0.01272 -1.00000 - 9647 2002 3 18 13 10 11 570 4.9673 176.43785 1820.62293 1568.69292 -0.08829 8.27308 4.53330 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97691 -0.01272 -1.00000 - 9649 2002 3 18 13 10 21 504 4.9672 176.44100 1820.94530 1568.93702 -0.08847 8.26730 4.52931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97619 -0.01272 -1.00000 - 9651 2002 3 18 13 10 31 439 4.9671 176.44419 1821.26678 1569.18086 -0.08858 8.26278 4.52534 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97547 -0.01272 -1.00000 - 9653 2002 3 18 13 10 41 373 4.9670 176.44729 1821.58723 1569.42446 -0.08873 8.25925 4.52139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97474 -0.01272 -1.00000 - 9655 2002 3 18 13 10 51 307 4.9669 176.45043 1821.90656 1569.66781 -0.08891 8.25640 4.51745 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97402 -0.01272 -1.00000 - 9657 2002 3 18 13 11 1 240 4.9668 176.45360 1822.22477 1569.91093 -0.08898 8.25393 4.51352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97330 -0.01272 -1.00000 - 9659 2002 3 18 13 11 11 174 4.9667 176.45667 1822.54192 1570.15378 -0.08917 8.25149 4.50960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97258 -0.01272 -1.00000 - 9661 2002 3 18 13 11 21 107 4.9667 176.45982 1822.85807 1570.39635 -0.08933 8.24878 4.50569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97185 -0.01272 -1.00000 - 9663 2002 3 18 13 11 31 40 4.9666 176.46295 1823.17335 1570.63869 -0.08939 8.24556 4.50178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97113 -0.01272 -1.00000 - 9665 2002 3 18 13 11 40 973 4.9665 176.46599 1823.48793 1570.88082 -0.08960 8.24161 4.49788 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.97041 -0.01271 -1.00000 - 9667 2002 3 18 13 11 50 906 4.9664 176.46913 1823.80200 1571.12277 -0.08974 8.23678 4.49398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96969 -0.01271 -1.00000 - 9669 2002 3 18 13 12 0 839 4.9663 176.47222 1824.11573 1571.36458 -0.08981 8.23099 4.49009 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96897 -0.01271 -1.00000 - 9671 2002 3 18 13 12 10 771 4.9662 176.47525 1824.42933 1571.60624 -0.09004 8.22424 4.48621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96824 -0.01271 -1.00000 - 9673 2002 3 18 13 12 20 703 4.9661 176.47837 1824.74293 1571.84775 -0.09015 8.21657 4.48235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96752 -0.01271 -1.00000 - 9675 2002 3 18 13 12 30 636 4.9660 176.48141 1825.05666 1572.08913 -0.09025 8.20811 4.47850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96680 -0.01271 -1.00000 - 9677 2002 3 18 13 12 40 567 4.9659 176.48445 1825.37062 1572.33041 -0.09046 8.19901 4.47466 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96608 -0.01271 -1.00000 - 9679 2002 3 18 13 12 50 499 4.9658 176.48754 1825.68488 1572.57162 -0.09054 8.18942 4.47085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96535 -0.01271 -1.00000 - 9681 2002 3 18 13 13 0 431 4.9658 176.49054 1825.99945 1572.81276 -0.09068 8.17953 4.46706 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96463 -0.01271 -1.00000 - 9683 2002 3 18 13 13 10 362 4.9657 176.49359 1826.31433 1573.05381 -0.09086 8.16954 4.46331 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96391 -0.01271 -1.00000 - 9685 2002 3 18 13 13 20 293 4.9656 176.49664 1826.62945 1573.29473 -0.09092 8.15963 4.45958 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96319 -0.01271 -1.00000 - 9687 2002 3 18 13 13 30 224 4.9655 176.49960 1826.94473 1573.53554 -0.09110 8.14999 4.45588 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96246 -0.01271 -1.00000 - 9689 2002 3 18 13 13 40 155 4.9654 176.50267 1827.26005 1573.77625 -0.09124 8.14077 4.45221 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96174 -0.01270 -1.00000 - 9691 2002 3 18 13 13 50 86 4.9653 176.50566 1827.57530 1574.01686 -0.09130 8.13208 4.44858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96102 -0.01270 -1.00000 - 9693 2002 3 18 13 14 0 16 4.9652 176.50860 1827.89034 1574.25735 -0.09151 8.12400 4.44498 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.96030 -0.01270 -1.00000 - 9696 2002 3 18 13 14 14 912 4.9651 176.51316 1828.36230 1574.61818 -0.09163 8.11298 4.43955 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95921 -0.01270 -1.00000 - 9698 2002 3 18 13 14 24 842 4.9650 176.51605 1828.67641 1574.85826 -0.09181 8.10630 4.43604 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95849 -0.01270 -1.00000 - 9700 2002 3 18 13 14 34 772 4.9649 176.51907 1828.99002 1575.09818 -0.09198 8.10004 4.43257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95777 -0.01270 -1.00000 - 9702 2002 3 18 13 14 44 701 4.9648 176.52205 1829.30314 1575.33795 -0.09202 8.09406 4.42912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95705 -0.01270 -1.00000 - 9704 2002 3 18 13 14 54 631 4.9647 176.52492 1829.61578 1575.57757 -0.09224 8.08825 4.42572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95633 -0.01270 -1.00000 - 9706 2002 3 18 13 15 4 560 4.9646 176.52794 1829.92799 1575.81705 -0.09237 8.08246 4.42235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95560 -0.01270 -1.00000 - 9708 2002 3 18 13 15 14 489 4.9645 176.53087 1830.23990 1576.05640 -0.09243 8.07657 4.41902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95488 -0.01270 -1.00000 - 9710 2002 3 18 13 15 24 418 4.9644 176.53373 1830.55239 1576.29608 -0.09267 8.07203 4.41576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95416 -0.01270 -1.00000 - 9712 2002 3 18 13 15 34 347 4.9644 176.53675 1830.86644 1576.53647 -0.09276 8.06715 4.41260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95344 -0.01269 -1.00000 - 9714 2002 3 18 13 15 44 276 4.9643 176.53961 1831.18231 1576.77749 -0.09286 8.06197 4.40954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95272 -0.01269 -1.00000 - 9716 2002 3 18 13 15 54 204 4.9642 176.54249 1831.49989 1577.01899 -0.09311 8.05663 4.40657 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95199 -0.01269 -1.00000 - 9718 2002 3 18 13 16 4 132 4.9641 176.54547 1831.81890 1577.26081 -0.09316 8.05127 4.40372 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95127 -0.01269 -1.00000 - 9720 2002 3 18 13 16 14 60 4.9640 176.54828 1832.13901 1577.50278 -0.09331 8.04600 4.40096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.95055 -0.01269 -1.00000 - 9722 2002 3 18 13 16 23 988 4.9639 176.55119 1832.45988 1577.74476 -0.09353 8.04100 4.39830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94983 -0.01269 -1.00000 - 9724 2002 3 18 13 16 33 916 4.9638 176.55412 1832.78121 1577.98669 -0.09357 8.03639 4.39572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94911 -0.01269 -1.00000 - 9726 2002 3 18 13 16 43 843 4.9637 176.55690 1833.10275 1578.22852 -0.09376 8.03228 4.39323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94838 -0.01269 -1.00000 - 9728 2002 3 18 13 16 53 770 4.9636 176.55983 1833.42429 1578.47021 -0.09393 8.02875 4.39080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94766 -0.01269 -1.00000 - 9730 2002 3 18 13 17 3 698 4.9635 176.56269 1833.74566 1578.71171 -0.09397 8.02583 4.38843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94694 -0.01269 -1.00000 - 9732 2002 3 18 13 17 13 624 4.9634 176.56545 1834.06673 1578.95297 -0.09420 8.02351 4.38612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94622 -0.01269 -1.00000 - 9734 2002 3 18 13 17 23 551 4.9633 176.56839 1834.38739 1579.19394 -0.09431 8.02176 4.38385 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94550 -0.01269 -1.00000 - 9736 2002 3 18 13 17 33 478 4.9632 176.57118 1834.70756 1579.43461 -0.09438 8.02050 4.38160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94477 -0.01268 -1.00000 - 9738 2002 3 18 13 17 43 404 4.9632 176.57394 1835.02720 1579.67498 -0.09461 8.01965 4.37936 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94405 -0.01268 -1.00000 - 9740 2002 3 18 13 17 53 330 4.9631 176.57687 1835.34629 1579.91506 -0.09467 8.01911 4.37712 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94333 -0.01268 -1.00000 - 9742 2002 3 18 13 18 3 256 4.9630 176.57961 1835.66483 1580.15483 -0.09478 8.01879 4.37486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94261 -0.01268 -1.00000 - 9744 2002 3 18 13 18 13 182 4.9629 176.58237 1835.98285 1580.39426 -0.09501 8.01859 4.37258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94189 -0.01268 -1.00000 - 9746 2002 3 18 13 18 23 108 4.9628 176.58527 1836.30033 1580.63332 -0.09503 8.01844 4.37026 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94117 -0.01268 -1.00000 - 9748 2002 3 18 13 18 33 33 4.9627 176.58796 1836.61728 1580.87203 -0.09518 8.01828 4.36787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.94044 -0.01268 -1.00000 - 9750 2002 3 18 13 18 42 958 4.9626 176.59075 1836.93371 1581.11040 -0.09538 8.01805 4.36541 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93972 -0.01268 -1.00000 - 9752 2002 3 18 13 18 52 883 4.9625 176.59358 1837.24958 1581.34845 -0.09539 8.01773 4.36286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93900 -0.01268 -1.00000 - 9754 2002 3 18 13 19 2 808 4.9624 176.59624 1837.56487 1581.58617 -0.09557 8.01728 4.36020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93828 -0.01268 -1.00000 - 9756 2002 3 18 13 19 12 733 4.9623 176.59905 1837.87954 1581.82354 -0.09574 8.01670 4.35743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93756 -0.01268 -1.00000 - 9758 2002 3 18 13 19 22 657 4.9622 176.60181 1838.19348 1582.06053 -0.09576 8.01595 4.35454 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93684 -0.01267 -1.00000 - 9760 2002 3 18 13 19 32 582 4.9621 176.60446 1838.50661 1582.29719 -0.09599 8.01502 4.35150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93611 -0.01267 -1.00000 - 9762 2002 3 18 13 19 42 506 4.9620 176.60727 1838.81885 1582.53352 -0.09611 8.01384 4.34830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93539 -0.01267 -1.00000 - 9764 2002 3 18 13 19 52 430 4.9619 176.60997 1839.13012 1582.76955 -0.09616 8.01235 4.34495 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93467 -0.01267 -1.00000 - 9766 2002 3 18 13 20 2 354 4.9618 176.61262 1839.44034 1583.00531 -0.09640 8.01041 4.34143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93395 -0.01267 -1.00000 - 9768 2002 3 18 13 20 12 277 4.9618 176.61542 1839.74953 1583.24077 -0.09648 8.00790 4.33774 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93323 -0.01267 -1.00000 - 9770 2002 3 18 13 20 22 200 4.9617 176.61805 1840.05765 1583.47594 -0.09658 8.00464 4.33388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93250 -0.01267 -1.00000 - 9772 2002 3 18 13 20 32 124 4.9616 176.62072 1840.36476 1583.71087 -0.09681 8.00042 4.32985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93178 -0.01267 -1.00000 - 9774 2002 3 18 13 20 42 47 4.9615 176.62349 1840.67096 1583.94561 -0.09685 7.99506 4.32564 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93106 -0.01267 -1.00000 - 9776 2002 3 18 13 20 51 969 4.9614 176.62607 1840.97638 1584.18019 -0.09700 7.98837 4.32127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.93034 -0.01267 -1.00000 - 9778 2002 3 18 13 21 1 892 4.9613 176.62875 1841.28119 1584.41466 -0.09720 7.98022 4.31674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92962 -0.01267 -1.00000 - 9780 2002 3 18 13 21 11 814 4.9612 176.63148 1841.58560 1584.64904 -0.09723 7.97049 4.31207 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92890 -0.01267 -1.00000 - 9782 2002 3 18 13 21 21 737 4.9611 176.63403 1841.88979 1584.88332 -0.09742 7.95917 4.30727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92818 -0.01266 -1.00000 - 9784 2002 3 18 13 21 31 659 4.9610 176.63672 1842.19395 1585.11758 -0.09758 7.94629 4.30235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92745 -0.01266 -1.00000 - 9786 2002 3 18 13 21 41 580 4.9609 176.63939 1842.49826 1585.35186 -0.09759 7.93195 4.29733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92673 -0.01266 -1.00000 - 9788 2002 3 18 13 21 51 502 4.9608 176.64192 1842.80288 1585.58621 -0.09782 7.91631 4.29223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92601 -0.01266 -1.00000 - 9790 2002 3 18 13 22 1 424 4.9607 176.64462 1843.10794 1585.82064 -0.09794 7.89958 4.28707 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92529 -0.01266 -1.00000 - 9792 2002 3 18 13 22 11 345 4.9606 176.64723 1843.41356 1586.05515 -0.09797 7.88201 4.28188 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92457 -0.01266 -1.00000 - 9794 2002 3 18 13 22 21 266 4.9605 176.64976 1843.71981 1586.28973 -0.09820 7.86385 4.27667 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92385 -0.01266 -1.00000 - 9796 2002 3 18 13 22 31 187 4.9604 176.65245 1844.02671 1586.52441 -0.09828 7.84538 4.27145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92312 -0.01266 -1.00000 - 9798 2002 3 18 13 22 41 107 4.9603 176.65499 1844.33432 1586.75919 -0.09835 7.82685 4.26626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92240 -0.01266 -1.00000 - 9800 2002 3 18 13 22 51 28 4.9602 176.65753 1844.64263 1586.99410 -0.09857 7.80852 4.26111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92168 -0.01266 -1.00000 - 9802 2002 3 18 13 23 0 948 4.9601 176.66020 1844.95164 1587.22911 -0.09859 7.79061 4.25603 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92096 -0.01266 -1.00000 - 9804 2002 3 18 13 23 10 868 4.9600 176.66268 1845.26135 1587.46418 -0.09872 7.77334 4.25102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.92024 -0.01266 -1.00000 - 9806 2002 3 18 13 23 20 788 4.9599 176.66524 1845.57170 1587.69927 -0.09893 7.75689 4.24610 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91952 -0.01265 -1.00000 - 9808 2002 3 18 13 23 30 708 4.9598 176.66785 1845.88263 1587.93437 -0.09894 7.74142 4.24129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91880 -0.01265 -1.00000 - 9810 2002 3 18 13 23 40 627 4.9597 176.67030 1846.19407 1588.16947 -0.09911 7.72710 4.23659 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91807 -0.01265 -1.00000 - 9812 2002 3 18 13 23 50 547 4.9596 176.67287 1846.50593 1588.40454 -0.09928 7.71406 4.23201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91735 -0.01265 -1.00000 - 9814 2002 3 18 13 24 0 466 4.9595 176.67544 1846.81809 1588.63956 -0.09929 7.70242 4.22755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91663 -0.01265 -1.00000 - 9816 2002 3 18 13 24 10 385 4.9594 176.67786 1847.13043 1588.87446 -0.09950 7.69228 4.22323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91591 -0.01265 -1.00000 - 9818 2002 3 18 13 24 20 304 4.9593 176.68044 1847.44276 1589.10918 -0.09964 7.68373 4.21904 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91519 -0.01265 -1.00000 - 9820 2002 3 18 13 24 30 222 4.9593 176.68294 1847.75488 1589.34369 -0.09967 7.67689 4.21497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91447 -0.01265 -1.00000 - 9822 2002 3 18 13 24 40 140 4.9591 176.68536 1848.06660 1589.57798 -0.09988 7.67185 4.21102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91375 -0.01265 -1.00000 - 9824 2002 3 18 13 24 50 59 4.9591 176.68793 1848.37771 1589.81202 -0.09998 7.66855 4.20719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91303 -0.01265 -1.00000 - 9827 2002 3 18 13 25 4 935 4.9589 176.69156 1848.84283 1590.16217 -0.10017 7.66644 4.20175 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91194 -0.01265 -1.00000 - 9829 2002 3 18 13 25 14 853 4.9588 176.69407 1849.15170 1590.39543 -0.10033 7.66657 4.19818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91122 -0.01264 -1.00000 - 9831 2002 3 18 13 25 24 771 4.9587 176.69657 1849.45947 1590.62830 -0.10034 7.66760 4.19469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.91050 -0.01264 -1.00000 - 9833 2002 3 18 13 25 34 688 4.9586 176.69893 1849.76608 1590.86077 -0.10056 7.66925 4.19127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90978 -0.01264 -1.00000 - 9835 2002 3 18 13 25 44 605 4.9585 176.70144 1850.07150 1591.09288 -0.10068 7.67124 4.18789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90906 -0.01264 -1.00000 - 9837 2002 3 18 13 25 54 522 4.9584 176.70388 1850.37572 1591.32464 -0.10071 7.67329 4.18456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90834 -0.01264 -1.00000 - 9839 2002 3 18 13 26 4 438 4.9583 176.70623 1850.67878 1591.55605 -0.10092 7.67513 4.18124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90762 -0.01264 -1.00000 - 9841 2002 3 18 13 26 14 355 4.9582 176.70874 1850.98075 1591.78712 -0.10100 7.67651 4.17794 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90690 -0.01264 -1.00000 - 9843 2002 3 18 13 26 24 271 4.9581 176.71112 1851.28172 1592.01782 -0.10107 7.67718 4.17463 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90617 -0.01264 -1.00000 - 9845 2002 3 18 13 26 34 187 4.9580 176.71347 1851.58180 1592.24820 -0.10129 7.67699 4.17131 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90545 -0.01264 -1.00000 - 9847 2002 3 18 13 26 44 103 4.9579 176.71597 1851.88112 1592.47831 -0.10132 7.67583 4.16797 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90473 -0.01264 -1.00000 - 9849 2002 3 18 13 26 54 19 4.9578 176.71829 1852.17981 1592.70817 -0.10142 7.67361 4.16460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90401 -0.01264 -1.00000 - 9851 2002 3 18 13 27 3 934 4.9577 176.72065 1852.47801 1592.93784 -0.10162 7.67026 4.16120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90329 -0.01263 -1.00000 - 9853 2002 3 18 13 27 13 850 4.9576 176.72310 1852.77590 1593.16729 -0.10165 7.66574 4.15778 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90257 -0.01263 -1.00000 - 9855 2002 3 18 13 27 23 765 4.9575 176.72539 1853.07359 1593.39654 -0.10179 7.66007 4.15432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90185 -0.01263 -1.00000 - 9857 2002 3 18 13 27 33 680 4.9574 176.72775 1853.37122 1593.62563 -0.10196 7.65332 4.15082 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90113 -0.01263 -1.00000 - 9859 2002 3 18 13 27 43 594 4.9573 176.73017 1853.66890 1593.85460 -0.10197 7.64561 4.14730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.90041 -0.01263 -1.00000 - 9861 2002 3 18 13 27 53 509 4.9572 176.73242 1853.96672 1594.08347 -0.10216 7.63707 4.14374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89968 -0.01263 -1.00000 - 9863 2002 3 18 13 28 3 423 4.9571 176.73480 1854.26476 1594.31227 -0.10230 7.62787 4.14016 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89896 -0.01263 -1.00000 - 9865 2002 3 18 13 28 13 337 4.9570 176.73716 1854.56307 1594.54098 -0.10231 7.61819 4.13656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89824 -0.01263 -1.00000 - 9867 2002 3 18 13 28 23 251 4.9569 176.73939 1854.86168 1594.76959 -0.10252 7.60817 4.13294 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89752 -0.01263 -1.00000 - 9869 2002 3 18 13 28 33 165 4.9568 176.74177 1855.16058 1594.99809 -0.10263 7.59796 4.12930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89680 -0.01263 -1.00000 - 9871 2002 3 18 13 28 43 78 4.9567 176.74407 1855.45978 1595.22653 -0.10268 7.58771 4.12565 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89608 -0.01263 -1.00000 - 9873 2002 3 18 13 28 52 992 4.9566 176.74629 1855.75923 1595.45491 -0.10288 7.57754 4.12199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89536 -0.01263 -1.00000 - 9875 2002 3 18 13 29 2 905 4.9565 176.74867 1856.05890 1595.68321 -0.10295 7.56757 4.11832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89464 -0.01262 -1.00000 - 9877 2002 3 18 13 29 12 818 4.9564 176.75091 1856.35872 1595.91142 -0.10303 7.55794 4.11465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89392 -0.01262 -1.00000 - 9879 2002 3 18 13 29 22 730 4.9563 176.75313 1856.65858 1596.13949 -0.10324 7.54874 4.11098 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89320 -0.01262 -1.00000 - 9881 2002 3 18 13 29 32 643 4.9562 176.75549 1856.95838 1596.36743 -0.10327 7.54008 4.10730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89248 -0.01262 -1.00000 - 9883 2002 3 18 13 29 42 555 4.9561 176.75768 1857.25801 1596.59524 -0.10337 7.53200 4.10363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89175 -0.01262 -1.00000 - 9885 2002 3 18 13 29 52 467 4.9560 176.75991 1857.55734 1596.82293 -0.10356 7.52459 4.09996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89103 -0.01262 -1.00000 - 9887 2002 3 18 13 30 2 379 4.9559 176.76223 1857.85626 1597.05048 -0.10359 7.51784 4.09629 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.89031 -0.01262 -1.00000 - 9889 2002 3 18 13 30 12 291 4.9558 176.76439 1858.15473 1597.27789 -0.10373 7.51168 4.09264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88959 -0.01262 -1.00000 - 9891 2002 3 18 13 30 22 202 4.9557 176.76663 1858.45348 1597.50551 -0.10388 7.50742 4.08905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88887 -0.01262 -1.00000 - 9893 2002 3 18 13 30 32 114 4.9556 176.76890 1858.75332 1597.73395 -0.10390 7.50331 4.08549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88815 -0.01262 -1.00000 - 9895 2002 3 18 13 30 42 25 4.9555 176.77103 1859.05443 1597.96287 -0.10407 7.49920 4.08201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88743 -0.01262 -1.00000 - 9897 2002 3 18 13 30 51 936 4.9554 176.77328 1859.35663 1598.19221 -0.10420 7.49508 4.07860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88671 -0.01262 -1.00000 - 9899 2002 3 18 13 31 1 846 4.9553 176.77550 1859.65963 1598.42178 -0.10423 7.49090 4.07526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88599 -0.01261 -1.00000 - 9901 2002 3 18 13 31 11 757 4.9552 176.77760 1859.96315 1598.65145 -0.10441 7.48664 4.07200 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88527 -0.01261 -1.00000 - 9903 2002 3 18 13 31 21 667 4.9551 176.77985 1860.26692 1598.88110 -0.10451 7.48230 4.06882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88455 -0.01261 -1.00000 - 9905 2002 3 18 13 31 31 577 4.9550 176.78202 1860.57075 1599.11067 -0.10457 7.47783 4.06570 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88383 -0.01261 -1.00000 - 9907 2002 3 18 13 31 41 487 4.9549 176.78411 1860.87453 1599.34016 -0.10475 7.47322 4.06264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88311 -0.01261 -1.00000 - 9909 2002 3 18 13 31 51 397 4.9548 176.78635 1861.17820 1599.56953 -0.10480 7.46845 4.05966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88239 -0.01261 -1.00000 - 9911 2002 3 18 13 32 1 306 4.9547 176.78847 1861.48174 1599.79877 -0.10489 7.46352 4.05673 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88166 -0.01261 -1.00000 - 9913 2002 3 18 13 32 11 215 4.9546 176.79055 1861.78514 1600.02784 -0.10508 7.45844 4.05387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88094 -0.01261 -1.00000 - 9915 2002 3 18 13 32 21 124 4.9545 176.79278 1862.08842 1600.25670 -0.10511 7.45327 4.05106 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.88022 -0.01261 -1.00000 - 9917 2002 3 18 13 32 31 33 4.9544 176.79485 1862.39157 1600.48536 -0.10521 7.44805 4.04830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87950 -0.01261 -1.00000 - 9919 2002 3 18 13 32 40 942 4.9543 176.79694 1862.69462 1600.71385 -0.10539 7.44284 4.04559 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87878 -0.01261 -1.00000 - 9921 2002 3 18 13 32 50 850 4.9542 176.79913 1862.99756 1600.94214 -0.10542 7.43772 4.04293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87806 -0.01260 -1.00000 - 9923 2002 3 18 13 33 0 759 4.9541 176.80116 1863.30039 1601.17026 -0.10555 7.43274 4.04030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87734 -0.01260 -1.00000 - 9925 2002 3 18 13 33 10 667 4.9540 176.80325 1863.60308 1601.39815 -0.10569 7.42798 4.03771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87662 -0.01260 -1.00000 - 9927 2002 3 18 13 33 20 574 4.9539 176.80541 1863.90560 1601.62579 -0.10572 7.42352 4.03514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87590 -0.01260 -1.00000 - 9929 2002 3 18 13 33 30 482 4.9538 176.80740 1864.20787 1601.85317 -0.10587 7.41943 4.03259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87518 -0.01260 -1.00000 - 9931 2002 3 18 13 33 40 389 4.9537 176.80951 1864.50985 1602.08032 -0.10599 7.41576 4.03006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87446 -0.01260 -1.00000 - 9933 2002 3 18 13 33 50 297 4.9536 176.81161 1864.81145 1602.30723 -0.10601 7.41253 4.02752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87374 -0.01260 -1.00000 - 9935 2002 3 18 13 34 0 204 4.9535 176.81358 1865.11260 1602.53389 -0.10618 7.40972 4.02499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87302 -0.01260 -1.00000 - 9937 2002 3 18 13 34 10 110 4.9534 176.81568 1865.41326 1602.76028 -0.10628 7.40731 4.02244 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87230 -0.01260 -1.00000 - 9939 2002 3 18 13 34 20 17 4.9533 176.81774 1865.71334 1602.98635 -0.10633 7.40521 4.01988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87158 -0.01260 -1.00000 - 9942 2002 3 18 13 34 34 877 4.9531 176.82072 1866.16229 1603.32529 -0.10656 7.40247 4.01586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.87050 -0.01260 -1.00000 - 9944 2002 3 18 13 34 44 783 4.9530 176.82282 1866.46076 1603.55064 -0.10659 7.40076 4.01319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86978 -0.01260 -1.00000 - 9946 2002 3 18 13 34 54 688 4.9529 176.82475 1866.75855 1603.77572 -0.10674 7.39901 4.01047 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86906 -0.01259 -1.00000 - 9948 2002 3 18 13 35 4 594 4.9528 176.82678 1867.05568 1604.00054 -0.10686 7.39713 4.00768 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86834 -0.01259 -1.00000 - 9950 2002 3 18 13 35 14 500 4.9527 176.82883 1867.35217 1604.22508 -0.10690 7.39500 4.00483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86762 -0.01259 -1.00000 - 9952 2002 3 18 13 35 24 405 4.9526 176.83073 1867.64803 1604.44930 -0.10707 7.39253 4.00190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86689 -0.01259 -1.00000 - 9954 2002 3 18 13 35 34 310 4.9525 176.83276 1867.94332 1604.67325 -0.10716 7.38963 3.99888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86617 -0.01259 -1.00000 - 9956 2002 3 18 13 35 44 215 4.9524 176.83477 1868.23809 1604.89697 -0.10722 7.38622 3.99576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86545 -0.01259 -1.00000 - 9958 2002 3 18 13 35 54 119 4.9523 176.83665 1868.53238 1605.12046 -0.10738 7.38225 3.99255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86473 -0.01259 -1.00000 - 9960 2002 3 18 13 36 4 24 4.9522 176.83868 1868.82627 1605.34376 -0.10745 7.37766 3.98923 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86401 -0.01259 -1.00000 - 9962 2002 3 18 13 36 13 928 4.9521 176.84064 1869.11983 1605.56684 -0.10753 7.37245 3.98581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86329 -0.01259 -1.00000 - 9964 2002 3 18 13 36 23 832 4.9520 176.84251 1869.41308 1605.78968 -0.10769 7.36663 3.98229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86257 -0.01259 -1.00000 - 9966 2002 3 18 13 36 33 736 4.9519 176.84453 1869.70607 1606.01234 -0.10774 7.36022 3.97865 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86185 -0.01259 -1.00000 - 9968 2002 3 18 13 36 43 639 4.9518 176.84644 1869.99883 1606.23483 -0.10783 7.35331 3.97490 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86113 -0.01258 -1.00000 - 9970 2002 3 18 13 36 53 543 4.9516 176.84830 1870.29138 1606.45718 -0.10797 7.34594 3.97105 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.86041 -0.01258 -1.00000 - 9972 2002 3 18 13 37 3 446 4.9516 176.85030 1870.58372 1606.67940 -0.10801 7.33819 3.96709 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85969 -0.01258 -1.00000 - 9974 2002 3 18 13 37 13 349 4.9514 176.85217 1870.87587 1606.90147 -0.10812 7.33012 3.96304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85897 -0.01258 -1.00000 - 9976 2002 3 18 13 37 23 251 4.9513 176.85402 1871.16783 1607.12336 -0.10825 7.32175 3.95889 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85825 -0.01258 -1.00000 - 9978 2002 3 18 13 37 33 154 4.9512 176.85601 1871.45958 1607.34511 -0.10828 7.31312 3.95464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85753 -0.01258 -1.00000 - 9980 2002 3 18 13 37 43 56 4.9511 176.85784 1871.75114 1607.56673 -0.10840 7.30425 3.95031 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85681 -0.01258 -1.00000 - 9982 2002 3 18 13 37 52 958 4.9510 176.85967 1872.04250 1607.78826 -0.10852 7.29513 3.94589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85609 -0.01258 -1.00000 - 9984 2002 3 18 13 38 2 860 4.9509 176.86163 1872.33365 1608.00969 -0.10855 7.28581 3.94140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85537 -0.01258 -1.00000 - 9986 2002 3 18 13 38 12 762 4.9508 176.86343 1872.62461 1608.23100 -0.10868 7.27631 3.93684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85465 -0.01258 -1.00000 - 9988 2002 3 18 13 38 22 663 4.9507 176.86525 1872.91534 1608.45216 -0.10880 7.26666 3.93222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85393 -0.01258 -1.00000 - 9990 2002 3 18 13 38 32 565 4.9506 176.86719 1873.20581 1608.67321 -0.10883 7.25691 3.92755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85321 -0.01258 -1.00000 - 9992 2002 3 18 13 38 42 466 4.9505 176.86895 1873.49602 1608.89417 -0.10897 7.24707 3.92282 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85249 -0.01257 -1.00000 - 9994 2002 3 18 13 38 52 367 4.9504 176.87076 1873.78594 1609.11505 -0.10907 7.23715 3.91807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85177 -0.01257 -1.00000 - 9996 2002 3 18 13 39 2 267 4.9503 176.87268 1874.07559 1609.33586 -0.10911 7.22715 3.91328 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85105 -0.01257 -1.00000 - 9998 2002 3 18 13 39 12 168 4.9502 176.87441 1874.36498 1609.55658 -0.10925 7.21703 3.90848 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.85033 -0.01257 -1.00000 - 10000 2002 3 18 13 39 22 68 4.9501 176.87621 1874.65412 1609.77718 -0.10934 7.20676 3.90368 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84961 -0.01257 -1.00000 - 10002 2002 3 18 13 39 31 968 4.9500 176.87810 1874.94306 1609.99769 -0.10938 7.19631 3.89887 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84889 -0.01257 -1.00000 - 10004 2002 3 18 13 39 41 868 4.9499 176.87981 1875.23184 1610.21814 -0.10954 7.18568 3.89407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84817 -0.01257 -1.00000 - 10006 2002 3 18 13 39 51 767 4.9498 176.88158 1875.52052 1610.43855 -0.10961 7.17486 3.88929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84745 -0.01257 -1.00000 - 10008 2002 3 18 13 40 1 666 4.9497 176.88345 1875.80916 1610.65892 -0.10966 7.16390 3.88454 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84673 -0.01257 -1.00000 - 10010 2002 3 18 13 40 11 566 4.9495 176.88514 1876.09780 1610.87922 -0.10982 7.15284 3.87984 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84601 -0.01257 -1.00000 - 10012 2002 3 18 13 40 21 465 4.9494 176.88689 1876.38647 1611.09942 -0.10989 7.14174 3.87519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84529 -0.01257 -1.00000 - 10014 2002 3 18 13 40 31 363 4.9493 176.88874 1876.67521 1611.31957 -0.10993 7.13068 3.87059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84457 -0.01257 -1.00000 - 10016 2002 3 18 13 40 41 262 4.9492 176.89040 1876.96403 1611.53965 -0.11009 7.11975 3.86606 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84385 -0.01256 -1.00000 - 10018 2002 3 18 13 40 51 160 4.9491 176.89213 1877.25295 1611.75970 -0.11016 7.10905 3.86160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84313 -0.01256 -1.00000 - 10020 2002 3 18 13 41 1 58 4.9490 176.89396 1877.54195 1611.97969 -0.11020 7.09867 3.85723 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84241 -0.01256 -1.00000 - 10022 2002 3 18 13 41 10 956 4.9489 176.89560 1877.83105 1612.19959 -0.11036 7.08870 3.85295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84169 -0.01256 -1.00000 - 10024 2002 3 18 13 41 20 854 4.9488 176.89730 1878.12020 1612.41935 -0.11043 7.07922 3.84877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84097 -0.01256 -1.00000 - 10026 2002 3 18 13 41 30 751 4.9487 176.89911 1878.40938 1612.63901 -0.11046 7.07032 3.84469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.84025 -0.01256 -1.00000 - 10028 2002 3 18 13 41 40 648 4.9486 176.90073 1878.69855 1612.85854 -0.11062 7.06204 3.84071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83953 -0.01256 -1.00000 - 10030 2002 3 18 13 41 50 545 4.9485 176.90240 1878.98768 1613.07796 -0.11069 7.05442 3.83683 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83881 -0.01256 -1.00000 - 10032 2002 3 18 13 42 0 442 4.9484 176.90420 1879.27672 1613.29724 -0.11072 7.04749 3.83306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83809 -0.01256 -1.00000 - 10034 2002 3 18 13 42 10 339 4.9483 176.90580 1879.56565 1613.51635 -0.11087 7.04124 3.82939 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83737 -0.01256 -1.00000 - 10036 2002 3 18 13 42 20 235 4.9482 176.90744 1879.85440 1613.73523 -0.11094 7.03570 3.82583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83665 -0.01256 -1.00000 - 10038 2002 3 18 13 42 30 131 4.9481 176.90921 1880.14293 1613.95389 -0.11096 7.03084 3.82236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83594 -0.01255 -1.00000 - 10040 2002 3 18 13 42 40 27 4.9479 176.91081 1880.43116 1614.17235 -0.11116 7.02666 3.81899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83522 -0.01255 -1.00000 - 10043 2002 3 18 13 42 54 871 4.9478 176.91328 1880.86285 1614.49922 -0.11119 7.02162 3.81418 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83414 -0.01255 -1.00000 - 10045 2002 3 18 13 43 4 766 4.9477 176.91498 1881.15012 1614.71712 -0.11137 7.01900 3.81101 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83342 -0.01255 -1.00000 - 10047 2002 3 18 13 43 14 661 4.9476 176.91651 1881.43693 1614.93474 -0.11142 7.01692 3.80791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83270 -0.01255 -1.00000 - 10049 2002 3 18 13 43 24 556 4.9475 176.91817 1881.72320 1615.15204 -0.11144 7.01527 3.80486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83198 -0.01255 -1.00000 - 10051 2002 3 18 13 43 34 451 4.9474 176.91987 1882.00892 1615.36904 -0.11163 7.01396 3.80186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83126 -0.01255 -1.00000 - 10053 2002 3 18 13 43 44 345 4.9472 176.92137 1882.29404 1615.58576 -0.11171 7.01288 3.79890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.83054 -0.01255 -1.00000 - 10055 2002 3 18 13 43 54 240 4.9471 176.92298 1882.57855 1615.80220 -0.11169 7.01192 3.79596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82982 -0.01255 -1.00000 - 10057 2002 3 18 13 44 4 134 4.9470 176.92468 1882.86245 1616.01838 -0.11188 7.01096 3.79303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82910 -0.01255 -1.00000 - 10059 2002 3 18 13 44 14 28 4.9469 176.92616 1883.14572 1616.23427 -0.11203 7.00991 3.79011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82838 -0.01255 -1.00000 - 10061 2002 3 18 13 44 23 921 4.9468 176.92773 1883.42836 1616.44984 -0.11195 7.00869 3.78718 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82766 -0.01255 -1.00000 - 10063 2002 3 18 13 44 33 815 4.9467 176.92942 1883.71036 1616.66512 -0.11213 7.00720 3.78424 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82694 -0.01254 -1.00000 - 10065 2002 3 18 13 44 43 708 4.9466 176.93089 1883.99174 1616.88014 -0.11236 7.00535 3.78127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82622 -0.01254 -1.00000 - 10067 2002 3 18 13 44 53 601 4.9465 176.93241 1884.27249 1617.09494 -0.11221 7.00308 3.77826 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82550 -0.01254 -1.00000 - 10069 2002 3 18 13 45 3 494 4.9464 176.93409 1884.55266 1617.30952 -0.11238 7.00028 3.77523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82478 -0.01254 -1.00000 - 10071 2002 3 18 13 45 13 387 4.9463 176.93556 1884.83231 1617.52389 -0.11267 6.99689 3.77215 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82406 -0.01254 -1.00000 - 10073 2002 3 18 13 45 23 279 4.9462 176.93704 1885.11227 1617.73851 -0.11246 6.99423 3.76905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82334 -0.01254 -1.00000 - 10075 2002 3 18 13 45 33 171 4.9461 176.93869 1885.39339 1617.95369 -0.11263 6.99074 3.76595 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82262 -0.01254 -1.00000 - 10077 2002 3 18 13 45 43 63 4.9459 176.94016 1885.67586 1618.16939 -0.11298 6.98642 3.76285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82190 -0.01254 -1.00000 - 10079 2002 3 18 13 45 52 955 4.9458 176.94160 1885.95953 1618.38547 -0.11276 6.98136 3.75975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82119 -0.01254 -1.00000 - 10081 2002 3 18 13 46 2 846 4.9457 176.94323 1886.24416 1618.60180 -0.11284 6.97564 3.75666 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.82047 -0.01254 -1.00000 - 10083 2002 3 18 13 46 12 738 4.9456 176.94471 1886.52951 1618.81826 -0.11324 6.96931 3.75358 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81975 -0.01254 -1.00000 - 10085 2002 3 18 13 46 22 629 4.9455 176.94610 1886.81539 1619.03473 -0.11304 6.96246 3.75052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81903 -0.01253 -1.00000 - 10087 2002 3 18 13 46 32 519 4.9454 176.94769 1887.10164 1619.25119 -0.11304 6.95516 3.74747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81831 -0.01253 -1.00000 - 10089 2002 3 18 13 46 42 410 4.9453 176.94918 1887.38818 1619.46762 -0.11347 6.94748 3.74444 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81759 -0.01253 -1.00000 - 10091 2002 3 18 13 46 52 301 4.9452 176.95053 1887.67497 1619.68401 -0.11332 6.93950 3.74142 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81687 -0.01253 -1.00000 - 10093 2002 3 18 13 47 2 191 4.9451 176.95208 1887.96199 1619.90034 -0.11325 6.93136 3.73844 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81615 -0.01253 -1.00000 - 10095 2002 3 18 13 47 12 81 4.9450 176.95359 1888.24922 1620.11657 -0.11369 6.92316 3.73548 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81543 -0.01253 -1.00000 - 10097 2002 3 18 13 47 21 970 4.9448 176.95490 1888.53661 1620.33266 -0.11362 6.91507 3.73255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81471 -0.01253 -1.00000 - 10099 2002 3 18 13 47 31 860 4.9447 176.95641 1888.82412 1620.54860 -0.11350 6.90723 3.72966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81399 -0.01253 -1.00000 - 10101 2002 3 18 13 47 41 749 4.9446 176.95792 1889.11168 1620.76443 -0.11393 6.89978 3.72679 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81327 -0.01253 -1.00000 - 10103 2002 3 18 13 47 51 638 4.9445 176.95921 1889.39922 1620.98011 -0.11394 6.89283 3.72395 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81255 -0.01253 -1.00000 - 10105 2002 3 18 13 48 1 527 4.9444 176.96067 1889.68666 1621.19565 -0.11376 6.88650 3.72114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81184 -0.01253 -1.00000 - 10107 2002 3 18 13 48 11 416 4.9443 176.96218 1889.97390 1621.41099 -0.11416 6.88082 3.71837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81112 -0.01253 -1.00000 - 10109 2002 3 18 13 48 21 304 4.9442 176.96347 1890.26085 1621.62609 -0.11425 6.87583 3.71562 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.81040 -0.01252 -1.00000 - 10111 2002 3 18 13 48 31 193 4.9441 176.96487 1890.54741 1621.84095 -0.11402 6.87151 3.71289 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80968 -0.01252 -1.00000 - 10113 2002 3 18 13 48 41 81 4.9440 176.96638 1890.83352 1622.05559 -0.11436 6.86779 3.71017 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80896 -0.01252 -1.00000 - 10115 2002 3 18 13 48 50 968 4.9439 176.96766 1891.11911 1622.26999 -0.11453 6.86461 3.70746 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80824 -0.01252 -1.00000 - 10117 2002 3 18 13 49 0 856 4.9438 176.96900 1891.40413 1622.48416 -0.11428 6.86185 3.70476 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80752 -0.01252 -1.00000 - 10119 2002 3 18 13 49 10 743 4.9437 176.97050 1891.68858 1622.69806 -0.11455 6.85941 3.70205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80680 -0.01252 -1.00000 - 10121 2002 3 18 13 49 20 630 4.9435 176.97178 1891.97241 1622.91165 -0.11480 6.85718 3.69934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80608 -0.01252 -1.00000 - 10123 2002 3 18 13 49 30 517 4.9434 176.97307 1892.25561 1623.12495 -0.11457 6.85505 3.69660 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80536 -0.01252 -1.00000 - 10125 2002 3 18 13 49 40 404 4.9433 176.97455 1892.53819 1623.33799 -0.11474 6.85292 3.69383 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80464 -0.01252 -1.00000 - 10127 2002 3 18 13 49 50 291 4.9432 176.97585 1892.82015 1623.55078 -0.11507 6.85069 3.69103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80393 -0.01252 -1.00000 - 10129 2002 3 18 13 50 0 177 4.9431 176.97709 1893.10151 1623.76333 -0.11485 6.84830 3.68818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80321 -0.01252 -1.00000 - 10131 2002 3 18 13 50 10 63 4.9430 176.97853 1893.38228 1623.97561 -0.11493 6.84566 3.68529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80249 -0.01252 -1.00000 - 10134 2002 3 18 13 50 24 891 4.9428 176.98043 1893.80240 1624.29388 -0.11526 6.84111 3.68074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80141 -0.01251 -1.00000 - 10136 2002 3 18 13 50 34 777 4.9427 176.98172 1894.08183 1624.50550 -0.11504 6.83760 3.67770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.80069 -0.01251 -1.00000 - 10138 2002 3 18 13 50 44 662 4.9426 176.98315 1894.36079 1624.71691 -0.11534 6.83365 3.67459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79997 -0.01251 -1.00000 - 10140 2002 3 18 13 50 54 547 4.9425 176.98435 1894.63931 1624.92812 -0.11551 6.82923 3.67140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79925 -0.01251 -1.00000 - 10142 2002 3 18 13 51 4 432 4.9424 176.98558 1894.91746 1625.13915 -0.11530 6.82433 3.66815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79853 -0.01251 -1.00000 - 10144 2002 3 18 13 51 14 317 4.9423 176.98699 1895.19528 1625.34998 -0.11552 6.81895 3.66482 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79782 -0.01251 -1.00000 - 10146 2002 3 18 13 51 24 201 4.9422 176.98821 1895.47281 1625.56058 -0.11577 6.81311 3.66142 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79710 -0.01251 -1.00000 - 10148 2002 3 18 13 51 34 85 4.9420 176.98939 1895.75008 1625.77099 -0.11557 6.80684 3.65795 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79638 -0.01251 -1.00000 - 10150 2002 3 18 13 51 43 969 4.9419 176.99077 1896.02713 1625.98124 -0.11569 6.80017 3.65439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79566 -0.01251 -1.00000 - 10152 2002 3 18 13 51 53 853 4.9418 176.99201 1896.30398 1626.19136 -0.11602 6.79313 3.65077 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79494 -0.01251 -1.00000 - 10154 2002 3 18 13 52 3 736 4.9417 176.99314 1896.58066 1626.40134 -0.11584 6.78577 3.64707 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79422 -0.01251 -1.00000 - 10156 2002 3 18 13 52 13 619 4.9416 176.99448 1896.85721 1626.61118 -0.11587 6.77815 3.64331 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79350 -0.01250 -1.00000 - 10158 2002 3 18 13 52 23 503 4.9415 176.99574 1897.13361 1626.82083 -0.11623 6.77030 3.63949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79278 -0.01250 -1.00000 - 10160 2002 3 18 13 52 33 385 4.9414 176.99683 1897.40988 1627.03034 -0.11610 6.76229 3.63561 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79207 -0.01250 -1.00000 - 10162 2002 3 18 13 52 43 268 4.9413 176.99811 1897.68601 1627.23973 -0.11607 6.75416 3.63166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79135 -0.01250 -1.00000 - 10164 2002 3 18 13 52 53 150 4.9412 176.99940 1897.96202 1627.44900 -0.11643 6.74595 3.62766 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.79063 -0.01250 -1.00000 - 10166 2002 3 18 13 53 3 32 4.9410 177.00046 1898.23790 1627.65817 -0.11637 6.73770 3.62361 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78991 -0.01250 -1.00000 - 10168 2002 3 18 13 53 12 914 4.9409 177.00169 1898.51366 1627.86719 -0.11626 6.72944 3.61952 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78919 -0.01250 -1.00000 - 10170 2002 3 18 13 53 22 796 4.9408 177.00299 1898.78929 1628.07605 -0.11661 6.72119 3.61538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78847 -0.01250 -1.00000 - 10172 2002 3 18 13 53 32 678 4.9407 177.00404 1899.06477 1628.28475 -0.11663 6.71298 3.61121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78775 -0.01250 -1.00000 - 10174 2002 3 18 13 53 42 559 4.9406 177.00520 1899.34010 1628.49333 -0.11647 6.70483 3.60699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78703 -0.01250 -1.00000 - 10176 2002 3 18 13 53 52 440 4.9405 177.00650 1899.61523 1628.70180 -0.11677 6.69676 3.60274 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78632 -0.01250 -1.00000 - 10178 2002 3 18 13 54 2 321 4.9404 177.00756 1899.89016 1628.91014 -0.11687 6.68880 3.59847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78560 -0.01249 -1.00000 - 10180 2002 3 18 13 54 12 201 4.9403 177.00865 1900.16483 1629.11834 -0.11670 6.68097 3.59417 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78488 -0.01249 -1.00000 - 10182 2002 3 18 13 54 22 82 4.9402 177.00993 1900.43919 1629.32634 -0.11693 6.67328 3.58986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78416 -0.01249 -1.00000 - 10184 2002 3 18 13 54 31 962 4.9400 177.01102 1900.71320 1629.53419 -0.11713 6.66573 3.58552 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78344 -0.01249 -1.00000 - 10186 2002 3 18 13 54 41 842 4.9399 177.01205 1900.98681 1629.74190 -0.11695 6.65830 3.58117 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78272 -0.01249 -1.00000 - 10188 2002 3 18 13 54 51 721 4.9398 177.01330 1901.25999 1629.94948 -0.11709 6.65096 3.57681 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78201 -0.01249 -1.00000 - 10190 2002 3 18 13 55 1 601 4.9397 177.01441 1901.53273 1630.15694 -0.11736 6.64366 3.57244 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78129 -0.01249 -1.00000 - 10192 2002 3 18 13 55 11 480 4.9396 177.01540 1901.80504 1630.36425 -0.11720 6.63634 3.56808 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.78057 -0.01249 -1.00000 - 10194 2002 3 18 13 55 21 359 4.9395 177.01660 1902.07695 1630.57137 -0.11725 6.62892 3.56372 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77985 -0.01249 -1.00000 - 10196 2002 3 18 13 55 31 238 4.9394 177.01774 1902.34850 1630.77835 -0.11756 6.62134 3.55937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77913 -0.01249 -1.00000 - 10198 2002 3 18 13 55 41 116 4.9393 177.01870 1902.61977 1630.98521 -0.11745 6.61355 3.55504 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77841 -0.01249 -1.00000 - 10200 2002 3 18 13 55 50 995 4.9391 177.01983 1902.89083 1631.19197 -0.11741 6.60549 3.55072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77769 -0.01249 -1.00000 - 10202 2002 3 18 13 56 0 873 4.9390 177.02100 1903.16178 1631.39863 -0.11773 6.59717 3.54644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77698 -0.01248 -1.00000 - 10204 2002 3 18 13 56 10 751 4.9389 177.02194 1903.43269 1631.60517 -0.11769 6.58860 3.54219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77626 -0.01248 -1.00000 - 10206 2002 3 18 13 56 20 628 4.9388 177.02300 1903.70362 1631.81157 -0.11759 6.57984 3.53797 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77554 -0.01248 -1.00000 - 10208 2002 3 18 13 56 30 506 4.9387 177.02418 1903.97459 1632.01785 -0.11788 6.57096 3.53380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77482 -0.01248 -1.00000 - 10210 2002 3 18 13 56 40 383 4.9386 177.02512 1904.24563 1632.22403 -0.11792 6.56208 3.52966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77410 -0.01248 -1.00000 - 10212 2002 3 18 13 56 50 260 4.9385 177.02611 1904.51671 1632.43012 -0.11777 6.55331 3.52558 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77338 -0.01248 -1.00000 - 10214 2002 3 18 13 57 0 137 4.9384 177.02729 1904.78779 1632.63612 -0.11800 6.54476 3.52155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77267 -0.01248 -1.00000 - 10216 2002 3 18 13 57 10 13 4.9382 177.02824 1905.05885 1632.84199 -0.11813 6.53653 3.51758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77195 -0.01248 -1.00000 - 10219 2002 3 18 13 57 24 828 4.9381 177.02973 1905.46520 1633.15011 -0.11797 6.52493 3.51184 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77087 -0.01248 -1.00000 - 10221 2002 3 18 13 57 34 704 4.9380 177.03085 1905.73586 1633.35560 -0.11828 6.51772 3.50802 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.77015 -0.01248 -1.00000 - 10223 2002 3 18 13 57 44 580 4.9378 177.03172 1906.00628 1633.56095 -0.11827 6.51093 3.50425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76943 -0.01248 -1.00000 - 10225 2002 3 18 13 57 54 455 4.9377 177.03270 1906.27640 1633.76616 -0.11815 6.50451 3.50055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76872 -0.01247 -1.00000 - 10227 2002 3 18 13 58 4 331 4.9376 177.03382 1906.54622 1633.97124 -0.11841 6.49843 3.49691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76800 -0.01247 -1.00000 - 10229 2002 3 18 13 58 14 206 4.9375 177.03471 1906.81573 1634.17614 -0.11848 6.49261 3.49334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76728 -0.01247 -1.00000 - 10231 2002 3 18 13 58 24 80 4.9374 177.03561 1907.08492 1634.38082 -0.11834 6.48701 3.48983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76656 -0.01247 -1.00000 - 10233 2002 3 18 13 58 33 955 4.9373 177.03672 1907.35378 1634.58531 -0.11853 6.48159 3.48639 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76584 -0.01247 -1.00000 - 10235 2002 3 18 13 58 43 830 4.9372 177.03764 1907.62233 1634.78963 -0.11872 6.47630 3.48300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76513 -0.01247 -1.00000 - 10237 2002 3 18 13 58 53 704 4.9371 177.03848 1907.89058 1634.99378 -0.11858 6.47112 3.47967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76441 -0.01247 -1.00000 - 10239 2002 3 18 13 59 3 578 4.9370 177.03954 1908.15854 1635.19778 -0.11866 6.46604 3.47639 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76369 -0.01247 -1.00000 - 10241 2002 3 18 13 59 13 451 4.9368 177.04050 1908.42623 1635.40160 -0.11891 6.46106 3.47318 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76297 -0.01247 -1.00000 - 10243 2002 3 18 13 59 23 325 4.9367 177.04130 1908.69365 1635.60519 -0.11880 6.45615 3.47002 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76225 -0.01247 -1.00000 - 10245 2002 3 18 13 59 33 198 4.9366 177.04229 1908.96081 1635.80857 -0.11880 6.45131 3.46692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76154 -0.01247 -1.00000 - 10247 2002 3 18 13 59 43 71 4.9365 177.04330 1909.22773 1636.01179 -0.11908 6.44654 3.46385 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76082 -0.01247 -1.00000 - 10249 2002 3 18 13 59 52 944 4.9364 177.04407 1909.49441 1636.21484 -0.11902 6.44181 3.46084 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.76010 -0.01246 -1.00000 - 10251 2002 3 18 14 0 2 817 4.9363 177.04498 1909.76086 1636.41772 -0.11895 6.43713 3.45786 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75938 -0.01246 -1.00000 - 10253 2002 3 18 14 0 12 689 4.9362 177.04602 1910.02713 1636.62043 -0.11922 6.43250 3.45493 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75866 -0.01246 -1.00000 - 10255 2002 3 18 14 0 22 561 4.9360 177.04678 1910.29399 1636.82337 -0.11923 6.42927 3.45206 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75795 -0.01246 -1.00000 - 10257 2002 3 18 14 0 32 433 4.9359 177.04762 1910.56216 1637.02681 -0.11912 6.42600 3.44925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75723 -0.01246 -1.00000 - 10259 2002 3 18 14 0 42 305 4.9358 177.04866 1910.83171 1637.23068 -0.11933 6.42276 3.44652 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75651 -0.01246 -1.00000 - 10261 2002 3 18 14 0 52 176 4.9357 177.04944 1911.10243 1637.43484 -0.11942 6.41965 3.44385 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75579 -0.01246 -1.00000 - 10263 2002 3 18 14 1 2 48 4.9356 177.05021 1911.37398 1637.63914 -0.11930 6.41670 3.44125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75507 -0.01246 -1.00000 - 10265 2002 3 18 14 1 11 919 4.9355 177.05121 1911.64604 1637.84345 -0.11940 6.41397 3.43872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75436 -0.01246 -1.00000 - 10267 2002 3 18 14 1 21 789 4.9354 177.05205 1911.91832 1638.04764 -0.11960 6.41144 3.43624 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75364 -0.01246 -1.00000 - 10269 2002 3 18 14 1 31 660 4.9352 177.05275 1912.19059 1638.25167 -0.11948 6.40914 3.43380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75292 -0.01246 -1.00000 - 10271 2002 3 18 14 1 41 530 4.9351 177.05369 1912.46270 1638.45553 -0.11949 6.40702 3.43140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75220 -0.01246 -1.00000 - 10273 2002 3 18 14 1 51 400 4.9350 177.05458 1912.73453 1638.65920 -0.11975 6.40508 3.42903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75149 -0.01245 -1.00000 - 10275 2002 3 18 14 2 1 270 4.9349 177.05525 1913.00597 1638.86265 -0.11967 6.40327 3.42669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75077 -0.01245 -1.00000 - 10277 2002 3 18 14 2 11 140 4.9348 177.05611 1913.27700 1639.06585 -0.11959 6.40157 3.42436 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.75005 -0.01245 -1.00000 - 10279 2002 3 18 14 2 21 9 4.9347 177.05704 1913.54753 1639.26875 -0.11986 6.39994 3.42204 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74933 -0.01245 -1.00000 - 10281 2002 3 18 14 2 30 879 4.9346 177.05770 1913.81755 1639.47135 -0.11988 6.39834 3.41972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74861 -0.01245 -1.00000 - 10283 2002 3 18 14 2 40 748 4.9345 177.05846 1914.08702 1639.67371 -0.11973 6.39672 3.41738 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74790 -0.01245 -1.00000 - 10285 2002 3 18 14 2 50 616 4.9344 177.05942 1914.35595 1639.87580 -0.11995 6.39502 3.41502 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74718 -0.01245 -1.00000 - 10287 2002 3 18 14 3 0 485 4.9342 177.06009 1914.62431 1640.07766 -0.12005 6.39319 3.41264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74646 -0.01245 -1.00000 - 10289 2002 3 18 14 3 10 353 4.9341 177.06077 1914.89214 1640.27924 -0.11989 6.39115 3.41023 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74574 -0.01245 -1.00000 - 10291 2002 3 18 14 3 20 221 4.9340 177.06171 1915.15943 1640.48052 -0.12002 6.38887 3.40778 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74503 -0.01245 -1.00000 - 10293 2002 3 18 14 3 30 89 4.9339 177.06242 1915.42619 1640.68153 -0.12024 6.38630 3.40528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74431 -0.01245 -1.00000 - 10296 2002 3 18 14 3 44 890 4.9337 177.06346 1915.82540 1640.98297 -0.12004 6.38182 3.40133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74323 -0.01244 -1.00000 - 10298 2002 3 18 14 3 54 758 4.9336 177.06436 1916.09094 1641.18342 -0.12027 6.37840 3.39869 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74251 -0.01244 -1.00000 - 10300 2002 3 18 14 4 4 625 4.9335 177.06498 1916.35603 1641.38367 -0.12037 6.37461 3.39600 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74180 -0.01244 -1.00000 - 10302 2002 3 18 14 4 14 492 4.9334 177.06563 1916.62072 1641.58371 -0.12018 6.37042 3.39324 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74108 -0.01244 -1.00000 - 10304 2002 3 18 14 4 24 358 4.9333 177.06651 1916.88502 1641.78348 -0.12034 6.36582 3.39042 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.74036 -0.01244 -1.00000 - 10306 2002 3 18 14 4 34 225 4.9332 177.06704 1917.14896 1641.98305 -0.12054 6.36081 3.38752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73964 -0.01244 -1.00000 - 10308 2002 3 18 14 4 44 91 4.9330 177.06751 1917.41259 1642.18245 -0.12035 6.35537 3.38455 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73893 -0.01244 -1.00000 - 10310 2002 3 18 14 4 53 957 4.9329 177.06826 1917.67595 1642.38168 -0.12050 6.34953 3.38152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73821 -0.01244 -1.00000 - 10312 2002 3 18 14 5 3 822 4.9328 177.06885 1917.93906 1642.58078 -0.12131 6.34329 3.37841 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73749 -0.01244 -1.00000 - 10314 2002 3 18 14 5 13 688 4.9327 177.06932 1918.20197 1642.77971 -0.12199 6.33670 3.37523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73677 -0.01244 -1.00000 - 10316 2002 3 18 14 5 23 553 4.9326 177.07001 1918.46470 1642.97844 -0.12246 6.32980 3.37199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73606 -0.01244 -1.00000 - 10318 2002 3 18 14 5 33 418 4.9324 177.07075 1918.72727 1643.17702 -0.12317 6.32262 3.36867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73534 -0.01244 -1.00000 - 10320 2002 3 18 14 5 43 282 4.9323 177.07119 1918.98969 1643.37547 -0.12347 6.31522 3.36529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73462 -0.01243 -1.00000 - 10322 2002 3 18 14 5 53 147 4.9322 177.07189 1919.25199 1643.57381 -0.12338 6.30763 3.36184 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73390 -0.01243 -1.00000 - 10324 2002 3 18 14 6 3 11 4.9321 177.07260 1919.51417 1643.77203 -0.12365 6.29991 3.35833 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73319 -0.01243 -1.00000 - 10326 2002 3 18 14 6 12 875 4.9320 177.07307 1919.77625 1643.97013 -0.12352 6.29208 3.35476 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73247 -0.01243 -1.00000 - 10328 2002 3 18 14 6 22 739 4.9318 177.07368 1920.03824 1644.16804 -0.12293 6.28421 3.35113 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73175 -0.01243 -1.00000 - 10330 2002 3 18 14 6 32 602 4.9317 177.07440 1920.30012 1644.36582 -0.12287 6.27633 3.34744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73104 -0.01243 -1.00000 - 10332 2002 3 18 14 6 42 466 4.9316 177.07483 1920.56190 1644.56348 -0.12274 6.26848 3.34370 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.73032 -0.01243 -1.00000 - 10334 2002 3 18 14 6 52 329 4.9315 177.07535 1920.82356 1644.76102 -0.12207 6.26071 3.33991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72960 -0.01243 -1.00000 - 10336 2002 3 18 14 7 2 192 4.9314 177.07604 1921.08509 1644.95845 -0.12187 6.25304 3.33607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72888 -0.01243 -1.00000 - 10338 2002 3 18 14 7 12 54 4.9313 177.07649 1921.34648 1645.15572 -0.12200 6.24551 3.33219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72817 -0.01243 -1.00000 - 10340 2002 3 18 14 7 21 917 4.9312 177.07690 1921.60768 1645.35280 -0.12159 6.23815 3.32827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72745 -0.01243 -1.00000 - 10342 2002 3 18 14 7 31 779 4.9311 177.07756 1921.86867 1645.54972 -0.12139 6.23095 3.32431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72673 -0.01242 -1.00000 - 10344 2002 3 18 14 7 41 641 4.9310 177.07806 1922.12942 1645.74648 -0.12184 6.22395 3.32032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72602 -0.01242 -1.00000 - 10346 2002 3 18 14 7 51 503 4.9308 177.07841 1922.38990 1645.94310 -0.12174 6.21713 3.31629 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72530 -0.01242 -1.00000 - 10348 2002 3 18 14 8 1 364 4.9307 177.07900 1922.65006 1646.13956 -0.12157 6.21049 3.31224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72458 -0.01242 -1.00000 - 10350 2002 3 18 14 8 11 225 4.9306 177.07957 1922.90991 1646.33585 -0.12215 6.20401 3.30816 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72386 -0.01242 -1.00000 - 10352 2002 3 18 14 8 21 86 4.9305 177.07989 1923.16939 1646.53190 -0.12232 6.19767 3.30406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72315 -0.01242 -1.00000 - 10354 2002 3 18 14 8 30 947 4.9304 177.08041 1923.42849 1646.72776 -0.12221 6.19142 3.29993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72243 -0.01242 -1.00000 - 10356 2002 3 18 14 8 40 808 4.9303 177.08103 1923.68720 1646.92345 -0.12271 6.18523 3.29577 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72171 -0.01242 -1.00000 - 10358 2002 3 18 14 8 50 668 4.9301 177.08136 1923.94552 1647.11898 -0.12294 6.17905 3.29159 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72100 -0.01242 -1.00000 - 10360 2002 3 18 14 9 0 528 4.9300 177.08181 1924.20345 1647.31435 -0.12278 6.17284 3.28740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.72028 -0.01242 -1.00000 - 10362 2002 3 18 14 9 10 388 4.9299 177.08245 1924.46102 1647.50954 -0.12310 6.16655 3.28318 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71956 -0.01242 -1.00000 - 10364 2002 3 18 14 9 20 248 4.9298 177.08280 1924.71823 1647.70451 -0.12331 6.16016 3.27895 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71884 -0.01242 -1.00000 - 10366 2002 3 18 14 9 30 107 4.9297 177.08320 1924.97509 1647.89931 -0.12307 6.15365 3.27470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71813 -0.01241 -1.00000 - 10369 2002 3 18 14 9 44 896 4.9295 177.08403 1925.35977 1648.19087 -0.12336 6.14360 3.26839 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71705 -0.01241 -1.00000 - 10371 2002 3 18 14 9 54 755 4.9294 177.08434 1925.61587 1648.38531 -0.12328 6.13671 3.26411 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71633 -0.01241 -1.00000 - 10373 2002 3 18 14 10 4 613 4.9293 177.08484 1925.87170 1648.57963 -0.12293 6.12965 3.25982 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71562 -0.01241 -1.00000 - 10375 2002 3 18 14 10 14 471 4.9292 177.08537 1926.12731 1648.77379 -0.12314 6.12243 3.25553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71490 -0.01241 -1.00000 - 10377 2002 3 18 14 10 24 330 4.9290 177.08566 1926.38272 1648.96777 -0.12319 6.11505 3.25123 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71418 -0.01241 -1.00000 - 10379 2002 3 18 14 10 34 187 4.9289 177.08607 1926.63794 1649.16159 -0.12270 6.10753 3.24694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71347 -0.01241 -1.00000 - 10381 2002 3 18 14 10 44 45 4.9288 177.08661 1926.89302 1649.35528 -0.12280 6.09990 3.24265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71275 -0.01241 -1.00000 - 10383 2002 3 18 14 10 53 903 4.9287 177.08691 1927.14798 1649.54886 -0.12307 6.09217 3.23837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71203 -0.01241 -1.00000 - 10385 2002 3 18 14 11 3 760 4.9286 177.08722 1927.40286 1649.74233 -0.12264 6.08440 3.23410 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71132 -0.01241 -1.00000 - 10387 2002 3 18 14 11 13 617 4.9285 177.08778 1927.65769 1649.93565 -0.12264 6.07661 3.22985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.71060 -0.01241 -1.00000 - 10389 2002 3 18 14 11 23 474 4.9283 177.08809 1927.91247 1650.12879 -0.12306 6.06886 3.22562 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70988 -0.01240 -1.00000 - 10391 2002 3 18 14 11 33 330 4.9282 177.08835 1928.16717 1650.32177 -0.12279 6.06118 3.22140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70917 -0.01240 -1.00000 - 10393 2002 3 18 14 11 43 186 4.9281 177.08887 1928.42168 1650.51460 -0.12270 6.05360 3.21720 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70845 -0.01240 -1.00000 - 10395 2002 3 18 14 11 53 42 4.9280 177.08923 1928.67583 1650.70730 -0.12323 6.04615 3.21303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70773 -0.01240 -1.00000 - 10397 2002 3 18 14 12 2 898 4.9279 177.08943 1928.92935 1650.89987 -0.12307 6.03884 3.20888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70702 -0.01240 -1.00000 - 10399 2002 3 18 14 12 12 754 4.9278 177.08992 1929.18189 1651.09229 -0.12289 6.03166 3.20477 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70630 -0.01240 -1.00000 - 10401 2002 3 18 14 12 22 609 4.9277 177.09031 1929.43305 1651.28454 -0.12340 6.02457 3.20070 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70558 -0.01240 -1.00000 - 10403 2002 3 18 14 12 32 464 4.9275 177.09049 1929.68249 1651.47666 -0.12335 6.01751 3.19669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70487 -0.01240 -1.00000 - 10405 2002 3 18 14 12 42 319 4.9274 177.09092 1929.93000 1651.66871 -0.12309 6.01035 3.19276 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70415 -0.01240 -1.00000 - 10407 2002 3 18 14 12 52 174 4.9273 177.09132 1930.17564 1651.86075 -0.12352 6.00282 3.18892 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70343 -0.01240 -1.00000 - 10409 2002 3 18 14 13 2 28 4.9272 177.09151 1930.41980 1652.05281 -0.12356 5.99455 3.18521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70272 -0.01240 -1.00000 - 10411 2002 3 18 14 13 11 883 4.9271 177.09186 1930.66325 1652.24492 -0.12318 5.98499 3.18165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70200 -0.01240 -1.00000 - 10413 2002 3 18 14 13 21 736 4.9270 177.09229 1930.90714 1652.43706 -0.12350 5.97357 3.17825 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70128 -0.01239 -1.00000 - 10415 2002 3 18 14 13 31 590 4.9268 177.09247 1931.15289 1652.62931 -0.12367 5.95975 3.17503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.70057 -0.01239 -1.00000 - 10417 2002 3 18 14 13 41 444 4.9267 177.09275 1931.40199 1652.82171 -0.12321 5.94323 3.17201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69985 -0.01239 -1.00000 - 10419 2002 3 18 14 13 51 297 4.9266 177.09320 1931.65581 1653.01428 -0.12337 5.92420 3.16919 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69913 -0.01239 -1.00000 - 10421 2002 3 18 14 14 1 150 4.9265 177.09338 1931.91529 1653.20701 -0.12366 5.90347 3.16656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69842 -0.01239 -1.00000 - 10423 2002 3 18 14 14 11 3 4.9264 177.09360 1932.18069 1653.39979 -0.12323 5.88258 3.16412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69770 -0.01239 -1.00000 - 10425 2002 3 18 14 14 20 855 4.9263 177.09405 1932.45146 1653.59252 -0.12324 5.86365 3.16183 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69698 -0.01239 -1.00000 - 10427 2002 3 18 14 14 30 708 4.9261 177.09423 1932.72621 1653.78508 -0.12364 5.84909 3.15966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69627 -0.01239 -1.00000 - 10429 2002 3 18 14 14 40 560 4.9260 177.09441 1933.00278 1653.97734 -0.12331 5.84120 3.15755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69555 -0.01239 -1.00000 - 10431 2002 3 18 14 14 50 412 4.9259 177.09481 1933.27857 1654.16916 -0.12315 5.84164 3.15545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69483 -0.01239 -1.00000 - 10433 2002 3 18 14 15 0 264 4.9258 177.09504 1933.55091 1654.36035 -0.12365 5.85147 3.15332 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69412 -0.01239 -1.00000 - 10435 2002 3 18 14 15 10 115 4.9257 177.09515 1933.81712 1654.55074 -0.12341 5.87029 3.15109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69340 -0.01239 -1.00000 - 10438 2002 3 18 14 15 24 892 4.9255 177.09571 1934.20225 1654.83570 -0.12336 5.91395 3.14748 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69233 -0.01238 -1.00000 - 10440 2002 3 18 14 15 34 742 4.9254 177.09580 1934.44880 1655.02497 -0.12376 5.94918 3.14504 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69161 -0.01238 -1.00000 - 10442 2002 3 18 14 15 44 593 4.9253 177.09599 1934.68732 1655.21376 -0.12327 5.98583 3.14257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69089 -0.01238 -1.00000 - 10444 2002 3 18 14 15 54 444 4.9252 177.09635 1934.91897 1655.40207 -0.12331 6.01747 3.14002 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.69018 -0.01238 -1.00000 - 10446 2002 3 18 14 16 4 294 4.9250 177.09650 1935.14610 1655.58999 -0.12381 6.03918 3.13741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68946 -0.01238 -1.00000 - 10448 2002 3 18 14 16 14 144 4.9249 177.09660 1935.37149 1655.77767 -0.12342 6.04943 3.13476 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68874 -0.01238 -1.00000 - 10450 2002 3 18 14 16 23 993 4.9248 177.09695 1935.59759 1655.96526 -0.12331 6.04837 3.13210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68803 -0.01238 -1.00000 - 10452 2002 3 18 14 16 33 843 4.9247 177.09713 1935.82647 1656.15300 -0.12388 6.03712 3.12944 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68731 -0.01238 -1.00000 - 10454 2002 3 18 14 16 43 692 4.9246 177.09720 1936.05975 1656.34104 -0.12359 6.01736 3.12681 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68660 -0.01238 -1.00000 - 10456 2002 3 18 14 16 53 541 4.9245 177.09749 1936.29855 1656.52950 -0.12332 5.99109 3.12424 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68588 -0.01238 -1.00000 - 10458 2002 3 18 14 17 3 390 4.9244 177.09772 1936.54353 1656.71845 -0.12385 5.96057 3.12175 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68516 -0.01238 -1.00000 - 10460 2002 3 18 14 17 13 238 4.9242 177.09772 1936.79479 1656.90786 -0.12369 5.92814 3.11934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68445 -0.01237 -1.00000 - 10462 2002 3 18 14 17 23 87 4.9241 177.09798 1937.05193 1657.09763 -0.12332 5.89615 3.11701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68373 -0.01237 -1.00000 - 10464 2002 3 18 14 17 32 935 4.9240 177.09824 1937.31409 1657.28773 -0.12379 5.86674 3.11475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68301 -0.01237 -1.00000 - 10466 2002 3 18 14 17 42 783 4.9239 177.09821 1937.58010 1657.47804 -0.12380 5.84159 3.11253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68230 -0.01237 -1.00000 - 10468 2002 3 18 14 17 52 630 4.9238 177.09842 1937.84860 1657.66846 -0.12332 5.82191 3.11035 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68158 -0.01237 -1.00000 - 10470 2002 3 18 14 18 2 478 4.9237 177.09870 1938.11808 1657.85882 -0.12368 5.80856 3.10816 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68087 -0.01237 -1.00000 - 10472 2002 3 18 14 18 12 325 4.9235 177.09866 1938.38695 1658.04895 -0.12385 5.80193 3.10595 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.68015 -0.01237 -1.00000 - 10474 2002 3 18 14 18 22 172 4.9234 177.09881 1938.65380 1658.23866 -0.12333 5.80179 3.10371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67943 -0.01237 -1.00000 - 10476 2002 3 18 14 18 32 18 4.9233 177.09907 1938.91746 1658.42786 -0.12356 5.80766 3.10141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67872 -0.01237 -1.00000 - 10478 2002 3 18 14 18 41 865 4.9232 177.09908 1939.17708 1658.61648 -0.12390 5.81828 3.09905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67800 -0.01237 -1.00000 - 10480 2002 3 18 14 18 51 711 4.9231 177.09913 1939.43227 1658.80448 -0.12339 5.83186 3.09662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67729 -0.01237 -1.00000 - 10482 2002 3 18 14 19 1 557 4.9230 177.09940 1939.68304 1658.99186 -0.12346 5.84634 3.09410 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67657 -0.01237 -1.00000 - 10484 2002 3 18 14 19 11 403 4.9229 177.09942 1939.92981 1659.17861 -0.12389 5.85975 3.09149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67585 -0.01236 -1.00000 - 10486 2002 3 18 14 19 21 248 4.9227 177.09944 1940.17319 1659.36476 -0.12351 5.87093 3.08876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67514 -0.01236 -1.00000 - 10488 2002 3 18 14 19 31 94 4.9226 177.09964 1940.41389 1659.55043 -0.12339 5.87915 3.08592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67442 -0.01236 -1.00000 - 10490 2002 3 18 14 19 40 939 4.9225 177.09974 1940.65266 1659.73572 -0.12389 5.88391 3.08297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67371 -0.01236 -1.00000 - 10492 2002 3 18 14 19 50 784 4.9224 177.09968 1940.89028 1659.92074 -0.12362 5.88498 3.07991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67299 -0.01236 -1.00000 - 10494 2002 3 18 14 20 0 628 4.9223 177.09984 1941.12750 1660.10558 -0.12337 5.88233 3.07675 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67227 -0.01236 -1.00000 - 10496 2002 3 18 14 20 10 473 4.9222 177.10001 1941.36508 1660.29028 -0.12384 5.87606 3.07351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67156 -0.01236 -1.00000 - 10498 2002 3 18 14 20 20 317 4.9220 177.09985 1941.60362 1660.47487 -0.12370 5.86654 3.07020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67084 -0.01236 -1.00000 - 10500 2002 3 18 14 20 30 161 4.9219 177.10000 1941.84361 1660.65944 -0.12337 5.85431 3.06682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.67013 -0.01236 -1.00000 - 10502 2002 3 18 14 20 40 4 4.9218 177.10017 1942.08536 1660.84405 -0.12379 5.84010 3.06338 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66941 -0.01236 -1.00000 - 10505 2002 3 18 14 20 54 769 4.9216 177.10004 1942.45150 1661.12078 -0.12354 5.81683 3.05821 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66834 -0.01236 -1.00000 - 10507 2002 3 18 14 21 4 613 4.9215 177.10019 1942.69777 1661.30557 -0.12340 5.80119 3.05465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66762 -0.01235 -1.00000 - 10509 2002 3 18 14 21 14 455 4.9214 177.10026 1942.94546 1661.49036 -0.12386 5.78628 3.05104 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66691 -0.01235 -1.00000 - 10511 2002 3 18 14 21 24 298 4.9213 177.10012 1943.19417 1661.67509 -0.12362 5.77263 3.04738 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66619 -0.01235 -1.00000 - 10513 2002 3 18 14 21 34 141 4.9212 177.10021 1943.44345 1661.85973 -0.12335 5.76061 3.04366 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66547 -0.01235 -1.00000 - 10515 2002 3 18 14 21 43 983 4.9211 177.10035 1943.69282 1662.04428 -0.12375 5.75040 3.03988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66476 -0.01235 -1.00000 - 10517 2002 3 18 14 21 53 825 4.9209 177.10014 1943.94185 1662.22871 -0.12367 5.74201 3.03604 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66404 -0.01235 -1.00000 - 10519 2002 3 18 14 22 3 666 4.9208 177.10021 1944.19014 1662.41298 -0.12331 5.73531 3.03214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66333 -0.01235 -1.00000 - 10521 2002 3 18 14 22 13 508 4.9207 177.10034 1944.43739 1662.59703 -0.12366 5.73006 3.02818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66261 -0.01235 -1.00000 - 10523 2002 3 18 14 22 23 349 4.9206 177.10015 1944.68338 1662.78081 -0.12375 5.72593 3.02415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66190 -0.01235 -1.00000 - 10525 2002 3 18 14 22 33 190 4.9205 177.10013 1944.92797 1662.96431 -0.12330 5.72250 3.02006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66118 -0.01235 -1.00000 - 10527 2002 3 18 14 22 43 31 4.9204 177.10027 1945.17117 1663.14759 -0.12352 5.71932 3.01591 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.66046 -0.01235 -1.00000 - 10529 2002 3 18 14 22 52 872 4.9203 177.10010 1945.41308 1663.33066 -0.12378 5.71593 3.01171 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65975 -0.01235 -1.00000 - 10531 2002 3 18 14 23 2 712 4.9201 177.10001 1945.65385 1663.51353 -0.12335 5.71200 3.00747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65903 -0.01234 -1.00000 - 10533 2002 3 18 14 23 12 552 4.9200 177.10014 1945.89373 1663.69620 -0.12339 5.70724 3.00319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65832 -0.01234 -1.00000 - 10535 2002 3 18 14 23 22 392 4.9199 177.10002 1946.13295 1663.87865 -0.12372 5.70147 2.99889 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65760 -0.01234 -1.00000 - 10537 2002 3 18 14 23 32 232 4.9198 177.09986 1946.37175 1664.06095 -0.12337 5.69462 2.99456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65689 -0.01234 -1.00000 - 10539 2002 3 18 14 23 42 71 4.9197 177.09994 1946.61039 1664.24314 -0.12325 5.68668 2.99023 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65617 -0.01234 -1.00000 - 10541 2002 3 18 14 23 51 910 4.9196 177.09990 1946.84908 1664.42526 -0.12366 5.67775 2.98590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65546 -0.01234 -1.00000 - 10543 2002 3 18 14 24 1 749 4.9195 177.09966 1947.08799 1664.60733 -0.12337 5.66797 2.98158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65474 -0.01234 -1.00000 - 10545 2002 3 18 14 24 11 588 4.9194 177.09969 1947.32726 1664.78933 -0.12309 5.65756 2.97729 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65402 -0.01234 -1.00000 - 10547 2002 3 18 14 24 21 427 4.9192 177.09969 1947.56695 1664.97124 -0.12349 5.64674 2.97302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65331 -0.01234 -1.00000 - 10549 2002 3 18 14 24 31 265 4.9191 177.09942 1947.80710 1665.15307 -0.12337 5.63576 2.96878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65259 -0.01234 -1.00000 - 10551 2002 3 18 14 24 41 103 4.9190 177.09936 1948.04770 1665.33487 -0.12299 5.62484 2.96458 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65188 -0.01234 -1.00000 - 10553 2002 3 18 14 24 50 941 4.9189 177.09941 1948.28868 1665.51662 -0.12333 5.61420 2.96041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65116 -0.01234 -1.00000 - 10555 2002 3 18 14 25 0 779 4.9188 177.09912 1948.52999 1665.69833 -0.12341 5.60400 2.95630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.65045 -0.01233 -1.00000 - 10557 2002 3 18 14 25 10 616 4.9187 177.09900 1948.77151 1665.87993 -0.12300 5.59438 2.95223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64973 -0.01233 -1.00000 - 10559 2002 3 18 14 25 20 453 4.9186 177.09906 1949.01313 1666.06139 -0.12328 5.58545 2.94822 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64902 -0.01233 -1.00000 - 10561 2002 3 18 14 25 30 290 4.9184 177.09879 1949.25472 1666.24269 -0.12354 5.57725 2.94425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64830 -0.01233 -1.00000 - 10563 2002 3 18 14 25 40 127 4.9183 177.09860 1949.49617 1666.42387 -0.12317 5.56981 2.94032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64759 -0.01233 -1.00000 - 10566 2002 3 18 14 25 54 881 4.9182 177.09859 1949.85780 1666.69568 -0.12355 5.56004 2.93443 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64651 -0.01233 -1.00000 - 10568 2002 3 18 14 26 4 717 4.9180 177.09828 1950.09839 1666.87649 -0.12356 5.55436 2.93063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64580 -0.01233 -1.00000 - 10570 2002 3 18 14 26 14 553 4.9179 177.09815 1950.33849 1667.05709 -0.12320 5.54925 2.92687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64508 -0.01233 -1.00000 - 10572 2002 3 18 14 26 24 389 4.9178 177.09817 1950.57804 1667.23742 -0.12351 5.54459 2.92317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64437 -0.01233 -1.00000 - 10574 2002 3 18 14 26 34 224 4.9177 177.09785 1950.81700 1667.41753 -0.12365 5.54028 2.91950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64365 -0.01233 -1.00000 - 10576 2002 3 18 14 26 44 60 4.9176 177.09765 1951.05537 1667.59743 -0.12319 5.53620 2.91588 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64294 -0.01233 -1.00000 - 10578 2002 3 18 14 26 53 895 4.9175 177.09768 1951.29316 1667.77714 -0.12327 5.53223 2.91229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64222 -0.01232 -1.00000 - 10580 2002 3 18 14 27 3 729 4.9173 177.09739 1951.53038 1667.95666 -0.12352 5.52827 2.90875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64151 -0.01232 -1.00000 - 10582 2002 3 18 14 27 13 564 4.9172 177.09711 1951.76711 1668.13595 -0.12304 5.52423 2.90526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64079 -0.01232 -1.00000 - 10584 2002 3 18 14 27 23 398 4.9171 177.09710 1952.00337 1668.31499 -0.12287 5.52003 2.90180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.64008 -0.01232 -1.00000 - 10586 2002 3 18 14 27 33 232 4.9170 177.09687 1952.23923 1668.49382 -0.12322 5.51563 2.89839 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63936 -0.01232 -1.00000 - 10588 2002 3 18 14 27 43 66 4.9169 177.09651 1952.47475 1668.67246 -0.12283 5.51099 2.89501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63864 -0.01232 -1.00000 - 10590 2002 3 18 14 27 52 900 4.9168 177.09643 1952.70999 1668.85094 -0.12247 5.50610 2.89167 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63793 -0.01232 -1.00000 - 10592 2002 3 18 14 28 2 733 4.9167 177.09628 1952.94500 1669.02926 -0.12288 5.50098 2.88838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63721 -0.01232 -1.00000 - 10594 2002 3 18 14 28 12 566 4.9165 177.09586 1953.17984 1669.20740 -0.12274 5.49565 2.88512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63650 -0.01232 -1.00000 - 10596 2002 3 18 14 28 22 399 4.9164 177.09570 1953.41451 1669.38533 -0.12231 5.49015 2.88191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63578 -0.01232 -1.00000 - 10598 2002 3 18 14 28 32 232 4.9163 177.09559 1953.64903 1669.56307 -0.12271 5.48453 2.87873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63507 -0.01232 -1.00000 - 10600 2002 3 18 14 28 42 64 4.9162 177.09517 1953.88342 1669.74065 -0.12284 5.47884 2.87558 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63435 -0.01232 -1.00000 - 10602 2002 3 18 14 28 51 897 4.9161 177.09492 1954.11766 1669.91810 -0.12241 5.47313 2.87247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63364 -0.01231 -1.00000 - 10604 2002 3 18 14 29 1 729 4.9160 177.09485 1954.35175 1670.09542 -0.12272 5.46741 2.86940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63292 -0.01231 -1.00000 - 10606 2002 3 18 14 29 11 561 4.9159 177.09445 1954.58567 1670.27256 -0.12304 5.46172 2.86636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63221 -0.01231 -1.00000 - 10608 2002 3 18 14 29 21 392 4.9158 177.09411 1954.81939 1670.44948 -0.12264 5.45609 2.86335 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63149 -0.01231 -1.00000 - 10610 2002 3 18 14 29 31 223 4.9157 177.09406 1955.05288 1670.62623 -0.12279 5.45051 2.86037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63078 -0.01231 -1.00000 - 10612 2002 3 18 14 29 41 55 4.9155 177.09369 1955.28611 1670.80283 -0.12320 5.44500 2.85742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.63006 -0.01231 -1.00000 - 10614 2002 3 18 14 29 50 885 4.9154 177.09330 1955.51906 1670.97929 -0.12284 5.43955 2.85449 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62935 -0.01231 -1.00000 - 10616 2002 3 18 14 30 0 716 4.9153 177.09322 1955.75171 1671.15562 -0.12273 5.43416 2.85159 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62863 -0.01231 -1.00000 - 10618 2002 3 18 14 30 10 547 4.9152 177.09290 1955.98408 1671.33177 -0.12317 5.42880 2.84873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62792 -0.01231 -1.00000 - 10620 2002 3 18 14 30 20 377 4.9151 177.09246 1956.21686 1671.50809 -0.12281 5.42466 2.84589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62720 -0.01231 -1.00000 - 10622 2002 3 18 14 30 30 207 4.9150 177.09230 1956.45071 1671.68484 -0.12244 5.42036 2.84311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62649 -0.01231 -1.00000 - 10624 2002 3 18 14 30 40 36 4.9149 177.09205 1956.68567 1671.86196 -0.12287 5.41592 2.84037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62578 -0.01230 -1.00000 - 10627 2002 3 18 14 30 54 781 4.9147 177.09140 1957.03978 1672.12781 -0.12231 5.40909 2.83646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62470 -0.01230 -1.00000 - 10629 2002 3 18 14 31 4 610 4.9146 177.09127 1957.27663 1672.30534 -0.12219 5.40445 2.83387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62399 -0.01230 -1.00000 - 10631 2002 3 18 14 31 14 439 4.9145 177.09088 1957.51388 1672.48284 -0.12258 5.39978 2.83136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62327 -0.01230 -1.00000 - 10633 2002 3 18 14 31 24 268 4.9143 177.09040 1957.75138 1672.66021 -0.12216 5.39513 2.82890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62256 -0.01230 -1.00000 - 10635 2002 3 18 14 31 34 96 4.9142 177.09022 1957.98903 1672.83744 -0.12180 5.39053 2.82649 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62184 -0.01230 -1.00000 - 10637 2002 3 18 14 31 43 924 4.9141 177.08989 1958.22678 1673.01453 -0.12230 5.38605 2.82413 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62113 -0.01230 -1.00000 - 10639 2002 3 18 14 31 53 752 4.9140 177.08937 1958.46460 1673.19147 -0.12213 5.38174 2.82181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.62041 -0.01230 -1.00000 - 10641 2002 3 18 14 32 3 580 4.9139 177.08908 1958.70245 1673.36826 -0.12165 5.37767 2.81953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61970 -0.01230 -1.00000 - 10643 2002 3 18 14 32 13 408 4.9138 177.08884 1958.94029 1673.54482 -0.12209 5.37390 2.81730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61899 -0.01230 -1.00000 - 10645 2002 3 18 14 32 23 235 4.9137 177.08828 1959.17808 1673.72111 -0.12217 5.37049 2.81508 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61827 -0.01230 -1.00000 - 10647 2002 3 18 14 32 33 62 4.9136 177.08792 1959.41574 1673.89714 -0.12166 5.36751 2.81288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61756 -0.01230 -1.00000 - 10649 2002 3 18 14 32 42 889 4.9135 177.08771 1959.65318 1674.07292 -0.12201 5.36499 2.81067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61684 -0.01229 -1.00000 - 10651 2002 3 18 14 32 52 716 4.9133 177.08718 1959.89029 1674.24846 -0.12227 5.36296 2.80847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61613 -0.01229 -1.00000 - 10653 2002 3 18 14 33 2 543 4.9132 177.08673 1960.12696 1674.42374 -0.12176 5.36144 2.80624 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61541 -0.01229 -1.00000 - 10655 2002 3 18 14 33 12 369 4.9131 177.08653 1960.36307 1674.59871 -0.12194 5.36040 2.80399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61470 -0.01229 -1.00000 - 10657 2002 3 18 14 33 22 195 4.9130 177.08602 1960.59851 1674.77333 -0.12227 5.35978 2.80171 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61398 -0.01229 -1.00000 - 10659 2002 3 18 14 33 32 21 4.9129 177.08551 1960.83317 1674.94762 -0.12181 5.35948 2.79937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61327 -0.01229 -1.00000 - 10661 2002 3 18 14 33 41 846 4.9128 177.08529 1961.06698 1675.12159 -0.12177 5.35937 2.79697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61255 -0.01229 -1.00000 - 10663 2002 3 18 14 33 51 672 4.9127 177.08482 1961.29992 1675.29528 -0.12218 5.35930 2.79450 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61184 -0.01229 -1.00000 - 10665 2002 3 18 14 34 1 497 4.9125 177.08426 1961.53198 1675.46868 -0.12174 5.35910 2.79195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61112 -0.01229 -1.00000 - 10667 2002 3 18 14 34 11 322 4.9124 177.08397 1961.76321 1675.64177 -0.12145 5.35859 2.78933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.61041 -0.01229 -1.00000 - 10669 2002 3 18 14 34 21 146 4.9123 177.08357 1961.99365 1675.81451 -0.12192 5.35762 2.78662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60970 -0.01229 -1.00000 - 10671 2002 3 18 14 34 30 971 4.9122 177.08296 1962.22339 1675.98696 -0.12166 5.35606 2.78381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60898 -0.01228 -1.00000 - 10673 2002 3 18 14 34 40 795 4.9121 177.08259 1962.45250 1676.15915 -0.12118 5.35383 2.78090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60827 -0.01228 -1.00000 - 10675 2002 3 18 14 34 50 619 4.9120 177.08225 1962.68107 1676.33111 -0.12156 5.35087 2.77789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60755 -0.01228 -1.00000 - 10677 2002 3 18 14 35 0 443 4.9119 177.08162 1962.90914 1676.50288 -0.12155 5.34716 2.77479 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60684 -0.01228 -1.00000 - 10679 2002 3 18 14 35 10 266 4.9118 177.08116 1963.13676 1676.67442 -0.12094 5.34274 2.77158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60612 -0.01228 -1.00000 - 10681 2002 3 18 14 35 20 90 4.9117 177.08084 1963.36394 1676.84573 -0.12119 5.33762 2.76828 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60541 -0.01228 -1.00000 - 10684 2002 3 18 14 35 34 824 4.9115 177.07992 1963.70387 1677.10256 -0.12120 5.32872 2.76307 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60434 -0.01228 -1.00000 - 10686 2002 3 18 14 35 44 647 4.9114 177.07951 1963.92992 1677.27346 -0.12076 5.32202 2.75953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60362 -0.01228 -1.00000 - 10688 2002 3 18 14 35 54 470 4.9113 177.07912 1964.15552 1677.44425 -0.12122 5.31471 2.75590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60291 -0.01228 -1.00000 - 10690 2002 3 18 14 36 4 292 4.9111 177.07845 1964.38068 1677.61496 -0.12120 5.30680 2.75220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60219 -0.01228 -1.00000 - 10692 2002 3 18 14 36 14 114 4.9110 177.07797 1964.60548 1677.78555 -0.12067 5.29826 2.74843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60148 -0.01228 -1.00000 - 10694 2002 3 18 14 36 23 936 4.9109 177.07760 1964.83001 1677.95601 -0.12104 5.28904 2.74460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60077 -0.01228 -1.00000 - 10696 2002 3 18 14 36 33 758 4.9108 177.07695 1965.05441 1678.12639 -0.12120 5.27913 2.74073 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.60005 -0.01227 -1.00000 - 10698 2002 3 18 14 36 43 579 4.9107 177.07637 1965.27885 1678.29674 -0.12064 5.26852 2.73682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59934 -0.01227 -1.00000 - 10700 2002 3 18 14 36 53 401 4.9106 177.07603 1965.50353 1678.46708 -0.12086 5.25724 2.73288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59862 -0.01227 -1.00000 - 10702 2002 3 18 14 37 3 222 4.9105 177.07539 1965.72866 1678.63744 -0.12113 5.24537 2.72893 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59791 -0.01227 -1.00000 - 10704 2002 3 18 14 37 13 42 4.9104 177.07476 1965.95445 1678.80776 -0.12060 5.23307 2.72498 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59720 -0.01227 -1.00000 - 10706 2002 3 18 14 37 22 863 4.9103 177.07438 1966.18103 1678.97803 -0.12057 5.22053 2.72103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59648 -0.01227 -1.00000 - 10708 2002 3 18 14 37 32 683 4.9101 177.07379 1966.40850 1679.14826 -0.12099 5.20802 2.71709 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59577 -0.01227 -1.00000 - 10710 2002 3 18 14 37 42 503 4.9100 177.07311 1966.63687 1679.31846 -0.12053 5.19586 2.71317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59505 -0.01227 -1.00000 - 10712 2002 3 18 14 37 52 323 4.9099 177.07266 1966.86608 1679.48864 -0.12025 5.18434 2.70926 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59434 -0.01227 -1.00000 - 10714 2002 3 18 14 38 2 143 4.9098 177.07215 1967.09598 1679.65876 -0.12070 5.17378 2.70537 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59362 -0.01227 -1.00000 - 10716 2002 3 18 14 38 11 962 4.9097 177.07141 1967.32632 1679.82875 -0.12046 5.16444 2.70150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59291 -0.01227 -1.00000 - 10718 2002 3 18 14 38 21 782 4.9096 177.07089 1967.55679 1679.99854 -0.11997 5.15650 2.69764 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59220 -0.01226 -1.00000 - 10720 2002 3 18 14 38 31 601 4.9095 177.07042 1967.78704 1680.16811 -0.12037 5.15008 2.69378 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59148 -0.01226 -1.00000 - 10722 2002 3 18 14 38 41 419 4.9094 177.06967 1968.01668 1680.33748 -0.12036 5.14519 2.68992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59077 -0.01226 -1.00000 - 10724 2002 3 18 14 38 51 238 4.9093 177.06906 1968.24536 1680.50661 -0.11976 5.14173 2.68605 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.59005 -0.01226 -1.00000 - 10726 2002 3 18 14 39 1 56 4.9092 177.06861 1968.47275 1680.67550 -0.12000 5.13947 2.68217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58934 -0.01226 -1.00000 - 10728 2002 3 18 14 39 10 875 4.9090 177.06789 1968.69861 1680.84409 -0.12022 5.13811 2.67827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58863 -0.01226 -1.00000 - 10730 2002 3 18 14 39 20 692 4.9089 177.06718 1968.92280 1681.01233 -0.11967 5.13725 2.67437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58791 -0.01226 -1.00000 - 10732 2002 3 18 14 39 30 510 4.9088 177.06674 1969.14527 1681.18026 -0.11969 5.13643 2.67045 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58720 -0.01226 -1.00000 - 10734 2002 3 18 14 39 40 328 4.9087 177.06604 1969.36611 1681.34793 -0.12010 5.13520 2.66652 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58648 -0.01226 -1.00000 - 10736 2002 3 18 14 39 50 145 4.9086 177.06529 1969.58554 1681.51538 -0.11965 5.13311 2.66258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58577 -0.01226 -1.00000 - 10739 2002 3 18 14 40 4 870 4.9084 177.06451 1969.91270 1681.76601 -0.11970 5.12759 2.65677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58470 -0.01226 -1.00000 - 10741 2002 3 18 14 40 14 687 4.9083 177.06375 1970.13005 1681.93304 -0.11987 5.12198 2.65287 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58399 -0.01226 -1.00000 - 10743 2002 3 18 14 40 24 504 4.9082 177.06302 1970.34725 1682.09990 -0.11931 5.11472 2.64902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58327 -0.01225 -1.00000 - 10745 2002 3 18 14 40 34 320 4.9081 177.06254 1970.56471 1682.26666 -0.11943 5.10590 2.64520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58256 -0.01225 -1.00000 - 10747 2002 3 18 14 40 44 136 4.9080 177.06180 1970.78278 1682.43338 -0.11976 5.09571 2.64143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58184 -0.01225 -1.00000 - 10749 2002 3 18 14 40 53 952 4.9079 177.06102 1971.00173 1682.60009 -0.11927 5.08446 2.63772 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58113 -0.01225 -1.00000 - 10751 2002 3 18 14 41 3 767 4.9078 177.06047 1971.22174 1682.76682 -0.11908 5.07255 2.63407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.58042 -0.01225 -1.00000 - 10753 2002 3 18 14 41 13 583 4.9077 177.05981 1971.44292 1682.93352 -0.11951 5.06040 2.63050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57970 -0.01225 -1.00000 - 10755 2002 3 18 14 41 23 398 4.9076 177.05895 1971.66524 1683.10015 -0.11917 5.04847 2.62700 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57899 -0.01225 -1.00000 - 10757 2002 3 18 14 41 33 213 4.9075 177.05836 1971.88856 1683.26670 -0.11878 5.03717 2.62356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57827 -0.01225 -1.00000 - 10759 2002 3 18 14 41 43 28 4.9074 177.05774 1972.11270 1683.43318 -0.11921 5.02688 2.62019 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57756 -0.01225 -1.00000 - 10761 2002 3 18 14 41 52 842 4.9072 177.05687 1972.33736 1683.59958 -0.11909 5.01790 2.61688 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57685 -0.01225 -1.00000 - 10763 2002 3 18 14 42 2 656 4.9071 177.05617 1972.56223 1683.76587 -0.11852 5.01042 2.61362 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57613 -0.01225 -1.00000 - 10765 2002 3 18 14 42 12 471 4.9070 177.05560 1972.78696 1683.93195 -0.11880 5.00452 2.61041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57542 -0.01224 -1.00000 - 10767 2002 3 18 14 42 22 284 4.9069 177.05473 1973.01121 1684.09777 -0.11893 5.00019 2.60724 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57471 -0.01224 -1.00000 - 10769 2002 3 18 14 42 32 98 4.9068 177.05395 1973.23467 1684.26331 -0.11837 4.99729 2.60410 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57399 -0.01224 -1.00000 - 10771 2002 3 18 14 42 41 912 4.9067 177.05337 1973.45709 1684.42859 -0.11842 4.99559 2.60098 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57328 -0.01224 -1.00000 - 10773 2002 3 18 14 42 51 725 4.9066 177.05256 1973.67827 1684.59360 -0.11877 4.99479 2.59787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57257 -0.01224 -1.00000 - 10775 2002 3 18 14 43 1 538 4.9065 177.05169 1973.89811 1684.75834 -0.11830 4.99455 2.59478 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57185 -0.01224 -1.00000 - 10777 2002 3 18 14 43 11 351 4.9064 177.05106 1974.11660 1684.92276 -0.11807 4.99449 2.59171 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57114 -0.01224 -1.00000 - 10779 2002 3 18 14 43 21 163 4.9063 177.05033 1974.33378 1685.08685 -0.11850 4.99426 2.58864 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.57042 -0.01224 -1.00000 - 10781 2002 3 18 14 43 30 975 4.9061 177.04940 1974.54980 1685.25063 -0.11824 4.99352 2.58558 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56971 -0.01224 -1.00000 - 10783 2002 3 18 14 43 40 788 4.9060 177.04871 1974.76485 1685.41418 -0.11786 4.99202 2.58253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56900 -0.01224 -1.00000 - 10785 2002 3 18 14 43 50 600 4.9059 177.04802 1974.97916 1685.57752 -0.11823 4.98955 2.57949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56828 -0.01224 -1.00000 - 10787 2002 3 18 14 44 0 411 4.9058 177.04708 1975.19298 1685.74070 -0.11816 4.98600 2.57646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56757 -0.01224 -1.00000 - 10789 2002 3 18 14 44 10 223 4.9057 177.04629 1975.40658 1685.90368 -0.11764 4.98135 2.57346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56686 -0.01223 -1.00000 - 10791 2002 3 18 14 44 20 34 4.9056 177.04564 1975.62019 1686.06647 -0.11787 4.97564 2.57047 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56614 -0.01223 -1.00000 - 10794 2002 3 18 14 44 34 751 4.9054 177.04425 1975.94107 1686.31060 -0.11780 4.96541 2.56597 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56507 -0.01223 -1.00000 - 10796 2002 3 18 14 44 44 561 4.9053 177.04351 1976.15551 1686.47309 -0.11741 4.95776 2.56303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56436 -0.01223 -1.00000 - 10798 2002 3 18 14 44 54 372 4.9052 177.04278 1976.37047 1686.63551 -0.11769 4.94974 2.56012 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56365 -0.01223 -1.00000 - 10800 2002 3 18 14 45 4 182 4.9051 177.04181 1976.58595 1686.79786 -0.11764 4.94161 2.55723 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56293 -0.01223 -1.00000 - 10802 2002 3 18 14 45 13 992 4.9050 177.04098 1976.80193 1686.96011 -0.11714 4.93362 2.55437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56222 -0.01223 -1.00000 - 10804 2002 3 18 14 45 23 802 4.9049 177.04029 1977.01899 1687.12255 -0.11729 4.92718 2.55154 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56151 -0.01223 -1.00000 - 10806 2002 3 18 14 45 33 612 4.9048 177.03933 1977.23753 1687.28539 -0.11745 4.92116 2.54875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56079 -0.01223 -1.00000 - 10808 2002 3 18 14 45 43 421 4.9047 177.03843 1977.45740 1687.44856 -0.11702 4.91575 2.54599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.56008 -0.01223 -1.00000 - 10810 2002 3 18 14 45 53 230 4.9046 177.03769 1977.67820 1687.61193 -0.11691 4.91107 2.54328 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55937 -0.01223 -1.00000 - 10812 2002 3 18 14 46 3 39 4.9045 177.03681 1977.89946 1687.77536 -0.11714 4.90716 2.54059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55865 -0.01222 -1.00000 - 10814 2002 3 18 14 46 12 848 4.9044 177.03581 1978.12079 1687.93872 -0.11686 4.90400 2.53794 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55794 -0.01222 -1.00000 - 10816 2002 3 18 14 46 22 657 4.9043 177.03504 1978.34183 1688.10190 -0.11659 4.90148 2.53530 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55723 -0.01222 -1.00000 - 10818 2002 3 18 14 46 32 465 4.9042 177.03420 1978.56234 1688.26487 -0.11680 4.89948 2.53269 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55651 -0.01222 -1.00000 - 10820 2002 3 18 14 46 42 273 4.9041 177.03319 1978.78214 1688.42763 -0.11671 4.89780 2.53008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55580 -0.01222 -1.00000 - 10822 2002 3 18 14 46 52 81 4.9040 177.03233 1979.00117 1688.59019 -0.11639 4.89625 2.52747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55509 -0.01222 -1.00000 - 10824 2002 3 18 14 47 1 889 4.9039 177.03152 1979.21940 1688.75253 -0.11646 4.89464 2.52488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55437 -0.01222 -1.00000 - 10826 2002 3 18 14 47 11 697 4.9037 177.03052 1979.43689 1688.91462 -0.11642 4.89279 2.52229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55366 -0.01222 -1.00000 - 10828 2002 3 18 14 47 21 504 4.9036 177.02961 1979.65370 1689.07641 -0.11620 4.89056 2.51970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55295 -0.01222 -1.00000 - 10830 2002 3 18 14 47 31 311 4.9035 177.02877 1979.86996 1689.23796 -0.11611 4.88785 2.51711 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55223 -0.01222 -1.00000 - 10832 2002 3 18 14 47 41 118 4.9034 177.02781 1980.08577 1689.39930 -0.11612 4.88460 2.51452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55152 -0.01222 -1.00000 - 10834 2002 3 18 14 47 50 925 4.9033 177.02685 1980.30129 1689.56045 -0.11598 4.88078 2.51192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55081 -0.01222 -1.00000 - 10836 2002 3 18 14 48 0 731 4.9032 177.02595 1980.51662 1689.72144 -0.11574 4.87644 2.50932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.55009 -0.01221 -1.00000 - 10838 2002 3 18 14 48 10 537 4.9031 177.02502 1980.73188 1689.88223 -0.11575 4.87163 2.50672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54938 -0.01221 -1.00000 - 10840 2002 3 18 14 48 20 343 4.9030 177.02403 1980.94713 1690.04278 -0.11577 4.86645 2.50412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54867 -0.01221 -1.00000 - 10842 2002 3 18 14 48 30 149 4.9029 177.02309 1981.16243 1690.20314 -0.11546 4.86102 2.50150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54795 -0.01221 -1.00000 - 10845 2002 3 18 14 48 44 858 4.9027 177.02168 1981.48549 1690.44315 -0.11556 4.85270 2.49760 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54688 -0.01221 -1.00000 - 10847 2002 3 18 14 48 54 663 4.9026 177.02066 1981.70090 1690.60311 -0.11546 4.84722 2.49494 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54617 -0.01221 -1.00000 - 10849 2002 3 18 14 49 4 468 4.9025 177.01971 1981.91627 1690.76292 -0.11514 4.84192 2.49227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54546 -0.01221 -1.00000 - 10851 2002 3 18 14 49 14 273 4.9024 177.01877 1982.13151 1690.92251 -0.11525 4.83689 2.48957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54475 -0.01221 -1.00000 - 10853 2002 3 18 14 49 24 78 4.9023 177.01773 1982.34653 1691.08184 -0.11531 4.83219 2.48684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54403 -0.01221 -1.00000 - 10855 2002 3 18 14 49 33 882 4.9022 177.01673 1982.56122 1691.24093 -0.11496 4.82783 2.48408 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54332 -0.01221 -1.00000 - 10857 2002 3 18 14 49 43 686 4.9021 177.01580 1982.77548 1691.39981 -0.11502 4.82381 2.48127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54261 -0.01221 -1.00000 - 10859 2002 3 18 14 49 53 491 4.9020 177.01477 1982.98923 1691.55849 -0.11513 4.82007 2.47843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54189 -0.01221 -1.00000 - 10861 2002 3 18 14 50 3 294 4.9019 177.01371 1983.20241 1691.71696 -0.11480 4.81653 2.47554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54118 -0.01220 -1.00000 - 10863 2002 3 18 14 50 13 98 4.9018 177.01277 1983.41499 1691.87520 -0.11470 4.81309 2.47261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.54047 -0.01220 -1.00000 - 10865 2002 3 18 14 50 22 901 4.9017 177.01175 1983.62695 1692.03315 -0.11480 4.80965 2.46962 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53975 -0.01220 -1.00000 - 10867 2002 3 18 14 50 32 705 4.9016 177.01066 1983.83832 1692.19085 -0.11460 4.80608 2.46659 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53904 -0.01220 -1.00000 - 10869 2002 3 18 14 50 42 508 4.9015 177.00967 1984.04914 1692.34834 -0.11435 4.80230 2.46350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53833 -0.01220 -1.00000 - 10871 2002 3 18 14 50 52 311 4.9014 177.00868 1984.25945 1692.50564 -0.11440 4.79823 2.46037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53762 -0.01220 -1.00000 - 10873 2002 3 18 14 51 2 113 4.9013 177.00756 1984.46933 1692.66277 -0.11437 4.79381 2.45718 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53690 -0.01220 -1.00000 - 10875 2002 3 18 14 51 11 916 4.9012 177.00653 1984.67886 1692.81969 -0.11395 4.78902 2.45395 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53619 -0.01220 -1.00000 - 10877 2002 3 18 14 51 21 718 4.9011 177.00555 1984.88810 1692.97637 -0.11395 4.78385 2.45067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53548 -0.01220 -1.00000 - 10879 2002 3 18 14 51 31 520 4.9010 177.00441 1985.09710 1693.13284 -0.11407 4.77832 2.44735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53476 -0.01220 -1.00000 - 10881 2002 3 18 14 51 41 321 4.9009 177.00332 1985.30592 1693.28916 -0.11364 4.77246 2.44398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53405 -0.01220 -1.00000 - 10883 2002 3 18 14 51 51 123 4.9008 177.00234 1985.51460 1693.44533 -0.11352 4.76634 2.44056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53334 -0.01219 -1.00000 - 10885 2002 3 18 14 52 0 924 4.9007 177.00123 1985.72315 1693.60137 -0.11370 4.76000 2.43710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53263 -0.01219 -1.00000 - 10887 2002 3 18 14 52 10 726 4.9005 177.00007 1985.93158 1693.75724 -0.11344 4.75352 2.43361 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53191 -0.01219 -1.00000 - 10889 2002 3 18 14 52 20 527 4.9005 176.99906 1986.13988 1693.91290 -0.11317 4.74696 2.43008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53120 -0.01219 -1.00000 - 10891 2002 3 18 14 52 30 327 4.9004 176.99799 1986.34801 1694.06838 -0.11332 4.74037 2.42651 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.53049 -0.01219 -1.00000 - 10893 2002 3 18 14 52 40 128 4.9002 176.99679 1986.55594 1694.22371 -0.11328 4.73378 2.42290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52978 -0.01219 -1.00000 - 10896 2002 3 18 14 52 54 828 4.9001 176.99521 1986.86736 1694.45666 -0.11288 4.72398 2.41736 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52871 -0.01219 -1.00000 - 10898 2002 3 18 14 53 4 628 4.9000 176.99409 1987.07460 1694.61167 -0.11308 4.71750 2.41367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52799 -0.01219 -1.00000 - 10900 2002 3 18 14 53 14 428 4.8999 176.99289 1987.28148 1694.76650 -0.11291 4.71106 2.40996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52728 -0.01219 -1.00000 - 10902 2002 3 18 14 53 24 228 4.8998 176.99183 1987.48799 1694.92112 -0.11262 4.70462 2.40623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52657 -0.01219 -1.00000 - 10904 2002 3 18 14 53 34 27 4.8997 176.99074 1987.69409 1695.07555 -0.11271 4.69815 2.40247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52586 -0.01219 -1.00000 - 10906 2002 3 18 14 53 43 826 4.8996 176.98951 1987.89979 1695.22985 -0.11275 4.69160 2.39870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52514 -0.01219 -1.00000 - 10908 2002 3 18 14 53 53 625 4.8995 176.98838 1988.10510 1695.38402 -0.11236 4.68493 2.39491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52443 -0.01218 -1.00000 - 10910 2002 3 18 14 54 3 424 4.8994 176.98732 1988.31005 1695.53808 -0.11236 4.67809 2.39112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52372 -0.01218 -1.00000 - 10912 2002 3 18 14 54 13 223 4.8993 176.98608 1988.51470 1695.69199 -0.11247 4.67103 2.38733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52301 -0.01218 -1.00000 - 10914 2002 3 18 14 54 23 21 4.8992 176.98490 1988.71910 1695.84572 -0.11202 4.66374 2.38354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52229 -0.01218 -1.00000 - 10916 2002 3 18 14 54 32 819 4.8991 176.98382 1988.92333 1695.99930 -0.11196 4.65620 2.37977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52158 -0.01218 -1.00000 - 10918 2002 3 18 14 54 42 617 4.8990 176.98262 1989.12745 1696.15278 -0.11211 4.64844 2.37600 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52087 -0.01218 -1.00000 - 10920 2002 3 18 14 54 52 415 4.8989 176.98136 1989.33154 1696.30618 -0.11183 4.64048 2.37225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.52016 -0.01218 -1.00000 - 10922 2002 3 18 14 55 2 213 4.8988 176.98027 1989.53565 1696.45949 -0.11158 4.63240 2.36853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51944 -0.01218 -1.00000 - 10924 2002 3 18 14 55 12 10 4.8987 176.97910 1989.73984 1696.61269 -0.11163 4.62426 2.36485 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51873 -0.01218 -1.00000 - 10926 2002 3 18 14 55 21 807 4.8986 176.97780 1989.94410 1696.76571 -0.11156 4.61615 2.36120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51802 -0.01218 -1.00000 - 10928 2002 3 18 14 55 31 604 4.8985 176.97663 1990.14845 1696.91860 -0.11114 4.60816 2.35758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51731 -0.01218 -1.00000 - 10930 2002 3 18 14 55 41 401 4.8984 176.97550 1990.35286 1697.07138 -0.11113 4.60038 2.35400 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51659 -0.01217 -1.00000 - 10932 2002 3 18 14 55 51 198 4.8983 176.97419 1990.55728 1697.22406 -0.11129 4.59289 2.35046 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51588 -0.01217 -1.00000 - 10934 2002 3 18 14 56 0 994 4.8982 176.97296 1990.76164 1697.37664 -0.11082 4.58577 2.34697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51517 -0.01217 -1.00000 - 10936 2002 3 18 14 56 10 790 4.8981 176.97183 1990.96588 1697.52905 -0.11077 4.57908 2.34352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51446 -0.01217 -1.00000 - 10938 2002 3 18 14 56 20 586 4.8980 176.97055 1991.16991 1697.68125 -0.11092 4.57283 2.34011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51374 -0.01217 -1.00000 - 10940 2002 3 18 14 56 30 382 4.8979 176.96924 1991.37367 1697.83327 -0.11061 4.56702 2.33675 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51303 -0.01217 -1.00000 - 10942 2002 3 18 14 56 40 178 4.8978 176.96809 1991.57711 1697.98512 -0.11042 4.56162 2.33342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51232 -0.01217 -1.00000 - 10945 2002 3 18 14 56 54 871 4.8976 176.96616 1991.88161 1698.21243 -0.11060 4.55413 2.32857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51125 -0.01217 -1.00000 - 10947 2002 3 18 14 57 4 666 4.8975 176.96487 1992.08417 1698.36389 -0.11017 4.54945 2.32535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.51054 -0.01217 -1.00000 - 10949 2002 3 18 14 57 14 461 4.8974 176.96370 1992.28642 1698.51515 -0.11006 4.54492 2.32218 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50983 -0.01217 -1.00000 - 10951 2002 3 18 14 57 24 255 4.8973 176.96240 1992.48838 1698.66614 -0.11023 4.54049 2.31905 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50911 -0.01217 -1.00000 - 10953 2002 3 18 14 57 34 50 4.8972 176.96106 1992.69010 1698.81691 -0.11000 4.53614 2.31595 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50840 -0.01217 -1.00000 - 10955 2002 3 18 14 57 43 844 4.8971 176.95986 1992.89160 1698.96749 -0.10975 4.53184 2.31288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50769 -0.01216 -1.00000 - 10957 2002 3 18 14 57 53 638 4.8970 176.95859 1993.09290 1699.11788 -0.10979 4.52761 2.30984 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50698 -0.01216 -1.00000 - 10959 2002 3 18 14 58 3 432 4.8969 176.95720 1993.29400 1699.26811 -0.10976 4.52348 2.30684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50626 -0.01216 -1.00000 - 10961 2002 3 18 14 58 13 226 4.8968 176.95593 1993.49487 1699.41810 -0.10932 4.51948 2.30386 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50555 -0.01216 -1.00000 - 10963 2002 3 18 14 58 23 19 4.8967 176.95471 1993.69546 1699.56783 -0.10928 4.51563 2.30090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50484 -0.01216 -1.00000 - 10965 2002 3 18 14 58 32 813 4.8966 176.95330 1993.89573 1699.71732 -0.10944 4.51196 2.29795 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50413 -0.01216 -1.00000 - 10967 2002 3 18 14 58 42 606 4.8965 176.95198 1994.09561 1699.86660 -0.10897 4.50846 2.29501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50342 -0.01216 -1.00000 - 10969 2002 3 18 14 58 52 399 4.8964 176.95074 1994.29504 1700.01568 -0.10888 4.50510 2.29208 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50270 -0.01216 -1.00000 - 10971 2002 3 18 14 59 2 191 4.8963 176.94937 1994.49396 1700.16457 -0.10900 4.50184 2.28915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50199 -0.01216 -1.00000 - 10973 2002 3 18 14 59 11 984 4.8962 176.94796 1994.69235 1700.31322 -0.10868 4.49861 2.28623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50128 -0.01216 -1.00000 - 10975 2002 3 18 14 59 21 776 4.8961 176.94671 1994.89018 1700.46160 -0.10842 4.49532 2.28331 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.50057 -0.01216 -1.00000 - 10977 2002 3 18 14 59 31 568 4.8960 176.94537 1995.08746 1700.60974 -0.10854 4.49188 2.28038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49985 -0.01215 -1.00000 - 10979 2002 3 18 14 59 41 360 4.8959 176.94391 1995.28421 1700.75768 -0.10846 4.48820 2.27744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49914 -0.01215 -1.00000 - 10981 2002 3 18 14 59 51 152 4.8959 176.94260 1995.48047 1700.90546 -0.10808 4.48420 2.27450 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49843 -0.01215 -1.00000 - 10983 2002 3 18 15 0 0 944 4.8958 176.94130 1995.67632 1701.05308 -0.10804 4.47982 2.27155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49772 -0.01215 -1.00000 - 10985 2002 3 18 15 0 10 735 4.8957 176.93983 1995.87186 1701.20054 -0.10817 4.47502 2.26861 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49701 -0.01215 -1.00000 - 10987 2002 3 18 15 0 20 526 4.8956 176.93845 1996.06779 1701.34808 -0.10772 4.47092 2.26569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49629 -0.01215 -1.00000 - 10989 2002 3 18 15 0 30 317 4.8955 176.93716 1996.26471 1701.49603 -0.10767 4.46625 2.26278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49558 -0.01215 -1.00000 - 10991 2002 3 18 15 0 40 108 4.8954 176.93570 1996.46271 1701.64430 -0.10783 4.46110 2.25990 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49487 -0.01215 -1.00000 - 10994 2002 3 18 15 0 54 794 4.8952 176.93359 1996.76139 1701.86727 -0.10733 4.45273 2.25557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49380 -0.01215 -1.00000 - 10996 2002 3 18 15 1 4 584 4.8951 176.93226 1996.96138 1702.01586 -0.10726 4.44687 2.25278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49309 -0.01215 -1.00000 - 10998 2002 3 18 15 1 14 374 4.8950 176.93076 1997.16187 1702.16441 -0.10741 4.44092 2.25003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49238 -0.01215 -1.00000 - 11000 2002 3 18 15 1 24 164 4.8949 176.92932 1997.36273 1702.31281 -0.10696 4.43498 2.24732 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49167 -0.01215 -1.00000 - 11002 2002 3 18 15 1 33 954 4.8948 176.92799 1997.56384 1702.46107 -0.10685 4.42916 2.24463 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49095 -0.01214 -1.00000 - 11004 2002 3 18 15 1 43 743 4.8947 176.92652 1997.76511 1702.60920 -0.10699 4.42355 2.24197 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.49024 -0.01214 -1.00000 - 11006 2002 3 18 15 1 53 533 4.8946 176.92501 1997.96644 1702.75720 -0.10669 4.41825 2.23933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48953 -0.01214 -1.00000 - 11008 2002 3 18 15 2 3 322 4.8946 176.92365 1998.16773 1702.90506 -0.10643 4.41331 2.23672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48882 -0.01214 -1.00000 - 11010 2002 3 18 15 2 13 111 4.8945 176.92221 1998.36888 1703.05271 -0.10647 4.40881 2.23412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48811 -0.01214 -1.00000 - 11012 2002 3 18 15 2 22 900 4.8944 176.92066 1998.56978 1703.20008 -0.10640 4.40475 2.23154 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48740 -0.01214 -1.00000 - 11014 2002 3 18 15 2 32 688 4.8943 176.91924 1998.77033 1703.34721 -0.10600 4.40115 2.22896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48668 -0.01214 -1.00000 - 11016 2002 3 18 15 2 42 477 4.8942 176.91783 1998.97043 1703.49412 -0.10597 4.39797 2.22637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48597 -0.01214 -1.00000 - 11018 2002 3 18 15 2 52 265 4.8941 176.91626 1999.16999 1703.64082 -0.10608 4.39514 2.22377 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48526 -0.01214 -1.00000 - 11020 2002 3 18 15 3 2 53 4.8940 176.91478 1999.36896 1703.78729 -0.10561 4.39258 2.22117 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48455 -0.01214 -1.00000 - 11022 2002 3 18 15 3 11 841 4.8939 176.91338 1999.56729 1703.93350 -0.10551 4.39017 2.21855 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48384 -0.01214 -1.00000 - 11024 2002 3 18 15 3 21 628 4.8938 176.91183 1999.76497 1704.07939 -0.10567 4.38781 2.21591 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48312 -0.01214 -1.00000 - 11026 2002 3 18 15 3 31 416 4.8937 176.91027 1999.96199 1704.22500 -0.10530 4.38537 2.21325 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48241 -0.01213 -1.00000 - 11028 2002 3 18 15 3 41 203 4.8936 176.90885 2000.15839 1704.37038 -0.10509 4.38276 2.21055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48170 -0.01213 -1.00000 - 11030 2002 3 18 15 3 50 990 4.8935 176.90733 2000.35419 1704.51554 -0.10516 4.37989 2.20783 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48099 -0.01213 -1.00000 - 11032 2002 3 18 15 4 0 777 4.8934 176.90572 2000.54945 1704.66051 -0.10504 4.37670 2.20507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.48028 -0.01213 -1.00000 - 11034 2002 3 18 15 4 10 564 4.8933 176.90424 2000.74423 1704.80524 -0.10467 4.37314 2.20229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47957 -0.01213 -1.00000 - 11036 2002 3 18 15 4 20 350 4.8932 176.90277 2000.93859 1704.94970 -0.10461 4.36917 2.19947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47885 -0.01213 -1.00000 - 11038 2002 3 18 15 4 30 136 4.8931 176.90112 2001.13259 1705.09393 -0.10474 4.36478 2.19662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47814 -0.01213 -1.00000 - 11041 2002 3 18 15 4 44 816 4.8930 176.89887 2001.42307 1705.30974 -0.10422 4.35741 2.19233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47707 -0.01213 -1.00000 - 11043 2002 3 18 15 4 54 601 4.8929 176.89733 2001.61648 1705.45356 -0.10424 4.35202 2.18939 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47636 -0.01213 -1.00000 - 11045 2002 3 18 15 5 4 387 4.8928 176.89567 2001.80976 1705.59725 -0.10420 4.34630 2.18642 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47565 -0.01213 -1.00000 - 11047 2002 3 18 15 5 14 173 4.8927 176.89414 2002.00297 1705.74075 -0.10377 4.34031 2.18341 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47494 -0.01213 -1.00000 - 11049 2002 3 18 15 5 23 958 4.8926 176.89264 2002.19614 1705.88403 -0.10371 4.33410 2.18038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47423 -0.01212 -1.00000 - 11051 2002 3 18 15 5 33 743 4.8925 176.89096 2002.38929 1706.02712 -0.10385 4.32776 2.17731 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47352 -0.01212 -1.00000 - 11053 2002 3 18 15 5 43 528 4.8924 176.88936 2002.58244 1706.17006 -0.10339 4.32134 2.17420 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47281 -0.01212 -1.00000 - 11055 2002 3 18 15 5 53 313 4.8924 176.88785 2002.77555 1706.31286 -0.10327 4.31492 2.17105 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47209 -0.01212 -1.00000 - 11057 2002 3 18 15 6 3 97 4.8923 176.88621 2002.96860 1706.45553 -0.10339 4.30857 2.16787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47138 -0.01212 -1.00000 - 11059 2002 3 18 15 6 12 882 4.8922 176.88453 2003.16153 1706.59801 -0.10304 4.30234 2.16466 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.47067 -0.01212 -1.00000 - 11061 2002 3 18 15 6 22 666 4.8921 176.88301 2003.35427 1706.74027 -0.10280 4.29629 2.16141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46996 -0.01212 -1.00000 - 11063 2002 3 18 15 6 32 450 4.8920 176.88139 2003.54671 1706.88232 -0.10288 4.29045 2.15812 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46925 -0.01212 -1.00000 - 11065 2002 3 18 15 6 42 234 4.8919 176.87967 2003.73879 1707.02420 -0.10278 4.28483 2.15478 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46854 -0.01212 -1.00000 - 11067 2002 3 18 15 6 52 17 4.8918 176.87808 2003.93040 1707.16592 -0.10240 4.27940 2.15140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46782 -0.01212 -1.00000 - 11069 2002 3 18 15 7 1 801 4.8917 176.87650 2004.12151 1707.30749 -0.10231 4.27411 2.14799 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46711 -0.01212 -1.00000 - 11071 2002 3 18 15 7 11 584 4.8916 176.87476 2004.31208 1707.44886 -0.10241 4.26887 2.14455 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46640 -0.01212 -1.00000 - 11073 2002 3 18 15 7 21 367 4.8915 176.87310 2004.50212 1707.58998 -0.10195 4.26357 2.14107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46569 -0.01211 -1.00000 - 11075 2002 3 18 15 7 31 150 4.8914 176.87154 2004.69166 1707.73090 -0.10183 4.25811 2.13755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46498 -0.01211 -1.00000 - 11077 2002 3 18 15 7 40 933 4.8913 176.86980 2004.88077 1707.87166 -0.10198 4.25239 2.13401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46427 -0.01211 -1.00000 - 11079 2002 3 18 15 7 50 715 4.8913 176.86808 2005.06954 1708.01229 -0.10158 4.24636 2.13044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46356 -0.01211 -1.00000 - 11081 2002 3 18 15 8 0 498 4.8912 176.86649 2005.25804 1708.15279 -0.10135 4.23998 2.12685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46284 -0.01211 -1.00000 - 11083 2002 3 18 15 8 10 280 4.8911 176.86479 2005.44638 1708.29313 -0.10141 4.23326 2.12325 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46213 -0.01211 -1.00000 - 11085 2002 3 18 15 8 20 62 4.8910 176.86301 2005.63460 1708.43326 -0.10126 4.22623 2.11964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46142 -0.01211 -1.00000 - 11088 2002 3 18 15 8 34 735 4.8909 176.86056 2005.91687 1708.64337 -0.10086 4.21521 2.11414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.46035 -0.01211 -1.00000 - 11090 2002 3 18 15 8 44 516 4.8908 176.85880 2006.10506 1708.78317 -0.10098 4.20765 2.11050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45964 -0.01211 -1.00000 - 11092 2002 3 18 15 8 54 298 4.8907 176.85702 2006.29326 1708.92288 -0.10066 4.20002 2.10686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45893 -0.01211 -1.00000 - 11094 2002 3 18 15 9 4 79 4.8906 176.85537 2006.48147 1709.06249 -0.10040 4.19239 2.10322 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45822 -0.01211 -1.00000 - 11096 2002 3 18 15 9 13 860 4.8905 176.85366 2006.66968 1709.20195 -0.10042 4.18484 2.09958 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45751 -0.01210 -1.00000 - 11098 2002 3 18 15 9 23 641 4.8904 176.85182 2006.85783 1709.34120 -0.10034 4.17744 2.09595 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45680 -0.01210 -1.00000 - 11100 2002 3 18 15 9 33 422 4.8903 176.85012 2007.04587 1709.48029 -0.09995 4.17023 2.09231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45609 -0.01210 -1.00000 - 11102 2002 3 18 15 9 43 202 4.8902 176.84844 2007.23374 1709.61923 -0.09990 4.16326 2.08867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45538 -0.01210 -1.00000 - 11104 2002 3 18 15 9 52 982 4.8901 176.84658 2007.42140 1709.75805 -0.09997 4.15652 2.08503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45466 -0.01210 -1.00000 - 11106 2002 3 18 15 10 2 763 4.8901 176.84482 2007.60880 1709.89675 -0.09952 4.15001 2.08140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45395 -0.01210 -1.00000 - 11108 2002 3 18 15 10 12 543 4.8900 176.84313 2007.79591 1710.03527 -0.09938 4.14372 2.07778 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45324 -0.01210 -1.00000 - 11110 2002 3 18 15 10 22 322 4.8899 176.84130 2007.98267 1710.17355 -0.09951 4.13761 2.07416 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45253 -0.01210 -1.00000 - 11112 2002 3 18 15 10 32 102 4.8898 176.83946 2008.16907 1710.31165 -0.09912 4.13165 2.07056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45182 -0.01210 -1.00000 - 11114 2002 3 18 15 10 41 881 4.8897 176.83775 2008.35509 1710.44958 -0.09891 4.12579 2.06696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45111 -0.01210 -1.00000 - 11116 2002 3 18 15 10 51 661 4.8896 176.83595 2008.54074 1710.58737 -0.09896 4.12000 2.06338 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.45040 -0.01210 -1.00000 - 11118 2002 3 18 15 11 1 440 4.8895 176.83406 2008.72603 1710.72503 -0.09880 4.11423 2.05981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44969 -0.01210 -1.00000 - 11120 2002 3 18 15 11 11 219 4.8895 176.83230 2008.91098 1710.86250 -0.09841 4.10845 2.05627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44897 -0.01209 -1.00000 - 11122 2002 3 18 15 11 20 998 4.8894 176.83054 2009.09562 1710.99974 -0.09835 4.10260 2.05275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44826 -0.01209 -1.00000 - 11124 2002 3 18 15 11 30 776 4.8893 176.82861 2009.27999 1711.13679 -0.09845 4.09667 2.04925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44755 -0.01209 -1.00000 - 11126 2002 3 18 15 11 40 555 4.8892 176.82679 2009.46413 1711.27369 -0.09797 4.09063 2.04578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44684 -0.01209 -1.00000 - 11128 2002 3 18 15 11 50 333 4.8891 176.82503 2009.64808 1711.41046 -0.09784 4.08448 2.04232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44613 -0.01209 -1.00000 - 11130 2002 3 18 15 12 0 111 4.8890 176.82312 2009.83189 1711.54711 -0.09800 4.07823 2.03890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44542 -0.01209 -1.00000 - 11133 2002 3 18 15 12 14 778 4.8889 176.82034 2010.10739 1711.75156 -0.09736 4.06873 2.03388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44435 -0.01209 -1.00000 - 11135 2002 3 18 15 12 24 555 4.8888 176.81853 2010.29093 1711.88773 -0.09728 4.06237 2.03054 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44364 -0.01209 -1.00000 - 11137 2002 3 18 15 12 34 333 4.8887 176.81657 2010.47438 1712.02374 -0.09745 4.05603 2.02721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44293 -0.01209 -1.00000 - 11139 2002 3 18 15 12 44 110 4.8886 176.81469 2010.65772 1712.15961 -0.09694 4.04978 2.02392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44222 -0.01209 -1.00000 - 11141 2002 3 18 15 12 53 887 4.8886 176.81290 2010.84092 1712.29536 -0.09674 4.04363 2.02065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44151 -0.01209 -1.00000 - 11143 2002 3 18 15 13 3 664 4.8885 176.81094 2011.02398 1712.43099 -0.09696 4.03761 2.01741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44080 -0.01208 -1.00000 - 11145 2002 3 18 15 13 13 441 4.8884 176.80900 2011.20686 1712.56642 -0.09652 4.03175 2.01420 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.44009 -0.01208 -1.00000 - 11147 2002 3 18 15 13 23 218 4.8883 176.80718 2011.38953 1712.70163 -0.09621 4.02604 2.01102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43938 -0.01208 -1.00000 - 11149 2002 3 18 15 13 32 994 4.8882 176.80525 2011.57197 1712.83662 -0.09636 4.02049 2.00786 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43866 -0.01208 -1.00000 - 11151 2002 3 18 15 13 42 770 4.8881 176.80326 2011.75415 1712.97145 -0.09622 4.01509 2.00473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43795 -0.01208 -1.00000 - 11153 2002 3 18 15 13 52 547 4.8880 176.80140 2011.93606 1713.10613 -0.09577 4.00984 2.00161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43724 -0.01208 -1.00000 - 11155 2002 3 18 15 14 2 322 4.8880 176.79949 2012.11768 1713.24066 -0.09570 4.00471 1.99853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43653 -0.01208 -1.00000 - 11157 2002 3 18 15 14 12 98 4.8879 176.79747 2012.29900 1713.37500 -0.09583 3.99969 1.99547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43582 -0.01208 -1.00000 - 11159 2002 3 18 15 14 21 874 4.8878 176.79554 2012.48003 1713.50908 -0.09529 3.99476 1.99243 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43511 -0.01208 -1.00000 - 11161 2002 3 18 15 14 31 649 4.8877 176.79366 2012.66076 1713.64296 -0.09513 3.98987 1.98940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43440 -0.01208 -1.00000 - 11163 2002 3 18 15 14 41 425 4.8876 176.79163 2012.84121 1713.77665 -0.09539 3.98501 1.98640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43369 -0.01208 -1.00000 - 11165 2002 3 18 15 14 51 200 4.8875 176.78964 2013.02140 1713.91020 -0.09487 3.98015 1.98341 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43298 -0.01208 -1.00000 - 11167 2002 3 18 15 15 0 975 4.8875 176.78775 2013.20134 1714.04359 -0.09459 3.97528 1.98045 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43227 -0.01207 -1.00000 - 11169 2002 3 18 15 15 10 749 4.8874 176.78573 2013.38109 1714.17680 -0.09477 3.97039 1.97750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43156 -0.01207 -1.00000 - 11171 2002 3 18 15 15 20 524 4.8873 176.78368 2013.56124 1714.31009 -0.09449 3.96660 1.97458 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43084 -0.01207 -1.00000 - 11173 2002 3 18 15 15 30 299 4.8872 176.78175 2013.74225 1714.44366 -0.09404 3.96266 1.97169 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.43013 -0.01207 -1.00000 - 11175 2002 3 18 15 15 40 73 4.8871 176.77977 2013.92411 1714.57744 -0.09413 3.95864 1.96883 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42942 -0.01207 -1.00000 - 11178 2002 3 18 15 15 54 734 4.8870 176.77666 2014.19801 1714.77847 -0.09379 3.95264 1.96455 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42836 -0.01207 -1.00000 - 11180 2002 3 18 15 16 4 508 4.8869 176.77472 2014.38101 1714.91239 -0.09346 3.94868 1.96178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42765 -0.01207 -1.00000 - 11182 2002 3 18 15 16 14 282 4.8868 176.77268 2014.56409 1715.04619 -0.09361 3.94479 1.95904 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42694 -0.01207 -1.00000 - 11184 2002 3 18 15 16 24 55 4.8868 176.77057 2014.74711 1715.17976 -0.09344 3.94097 1.95633 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42622 -0.01207 -1.00000 - 11186 2002 3 18 15 16 33 829 4.8867 176.76858 2014.92993 1715.31313 -0.09298 3.93724 1.95364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42551 -0.01207 -1.00000 - 11188 2002 3 18 15 16 43 602 4.8866 176.76657 2015.11249 1715.44632 -0.09296 3.93358 1.95096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42480 -0.01207 -1.00000 - 11190 2002 3 18 15 16 53 375 4.8865 176.76442 2015.29473 1715.57934 -0.09308 3.92997 1.94829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42409 -0.01206 -1.00000 - 11192 2002 3 18 15 17 3 148 4.8864 176.76238 2015.47661 1715.71218 -0.09254 3.92639 1.94564 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42338 -0.01206 -1.00000 - 11194 2002 3 18 15 17 12 920 4.8864 176.76038 2015.65814 1715.84478 -0.09238 3.92280 1.94299 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42267 -0.01206 -1.00000 - 11196 2002 3 18 15 17 22 693 4.8863 176.75823 2015.83930 1715.97710 -0.09260 3.91918 1.94036 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42196 -0.01206 -1.00000 - 11198 2002 3 18 15 17 32 466 4.8862 176.75612 2016.02011 1716.10917 -0.09208 3.91548 1.93771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42125 -0.01206 -1.00000 - 11200 2002 3 18 15 17 42 238 4.8861 176.75411 2016.20058 1716.24104 -0.09188 3.91169 1.93507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.42054 -0.01206 -1.00000 - 11202 2002 3 18 15 17 52 10 4.8860 176.75198 2016.38073 1716.37272 -0.09200 3.90779 1.93241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41983 -0.01206 -1.00000 - 11204 2002 3 18 15 18 1 782 4.8860 176.74980 2016.56056 1716.50422 -0.09170 3.90377 1.92975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41912 -0.01206 -1.00000 - 11206 2002 3 18 15 18 11 554 4.8859 176.74777 2016.74009 1716.63549 -0.09132 3.89966 1.92708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41841 -0.01206 -1.00000 - 11208 2002 3 18 15 18 21 325 4.8858 176.74567 2016.91931 1716.76647 -0.09132 3.89544 1.92440 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41770 -0.01206 -1.00000 - 11210 2002 3 18 15 18 31 97 4.8857 176.74344 2017.09821 1716.89722 -0.09132 3.89113 1.92169 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41699 -0.01206 -1.00000 - 11212 2002 3 18 15 18 40 868 4.8856 176.74135 2017.27679 1717.02778 -0.09083 3.88673 1.91896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41628 -0.01206 -1.00000 - 11214 2002 3 18 15 18 50 639 4.8856 176.73927 2017.45506 1717.15816 -0.09061 3.88223 1.91620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41556 -0.01205 -1.00000 - 11216 2002 3 18 15 19 0 410 4.8855 176.73703 2017.63300 1717.28837 -0.09080 3.87763 1.91342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41485 -0.01205 -1.00000 - 11218 2002 3 18 15 19 10 181 4.8854 176.73487 2017.81063 1717.41836 -0.09031 3.87292 1.91062 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41414 -0.01205 -1.00000 - 11221 2002 3 18 15 19 24 837 4.8853 176.73170 2018.07652 1717.61270 -0.09002 3.86561 1.90641 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41308 -0.01205 -1.00000 - 11223 2002 3 18 15 19 34 607 4.8852 176.72943 2018.25342 1717.74211 -0.09015 3.86058 1.90352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41237 -0.01205 -1.00000 - 11225 2002 3 18 15 19 44 378 4.8851 176.72727 2018.43006 1717.87136 -0.08964 3.85540 1.90060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41166 -0.01205 -1.00000 - 11227 2002 3 18 15 19 54 148 4.8851 176.72515 2018.60644 1718.00045 -0.08937 3.85010 1.89765 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41095 -0.01205 -1.00000 - 11229 2002 3 18 15 20 3 918 4.8850 176.72288 2018.78257 1718.12939 -0.08959 3.84468 1.89467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.41024 -0.01205 -1.00000 - 11231 2002 3 18 15 20 13 688 4.8849 176.72065 2018.95847 1718.25813 -0.08912 3.83914 1.89166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40953 -0.01205 -1.00000 - 11233 2002 3 18 15 20 23 457 4.8848 176.71851 2019.13413 1718.38662 -0.08881 3.83350 1.88861 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40881 -0.01205 -1.00000 - 11235 2002 3 18 15 20 33 227 4.8847 176.71626 2019.30956 1718.51489 -0.08897 3.82778 1.88553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40810 -0.01205 -1.00000 - 11237 2002 3 18 15 20 42 996 4.8847 176.71397 2019.48474 1718.64299 -0.08877 3.82198 1.88241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40739 -0.01204 -1.00000 - 11239 2002 3 18 15 20 52 766 4.8846 176.71180 2019.65970 1718.77095 -0.08835 3.81613 1.87925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40668 -0.01204 -1.00000 - 11241 2002 3 18 15 21 2 535 4.8845 176.70958 2019.83441 1718.89876 -0.08830 3.81021 1.87606 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40597 -0.01204 -1.00000 - 11243 2002 3 18 15 21 12 304 4.8844 176.70725 2020.00888 1719.02639 -0.08836 3.80425 1.87283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40526 -0.01204 -1.00000 - 11245 2002 3 18 15 21 22 72 4.8844 176.70503 2020.18311 1719.15377 -0.08784 3.79824 1.86957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40455 -0.01204 -1.00000 - 11247 2002 3 18 15 21 31 841 4.8843 176.70282 2020.35710 1719.28095 -0.08767 3.79219 1.86628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40384 -0.01204 -1.00000 - 11249 2002 3 18 15 21 41 609 4.8842 176.70048 2020.53083 1719.40797 -0.08787 3.78608 1.86294 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40313 -0.01204 -1.00000 - 11251 2002 3 18 15 21 51 378 4.8841 176.69819 2020.70431 1719.53485 -0.08736 3.77994 1.85958 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40242 -0.01204 -1.00000 - 11253 2002 3 18 15 22 1 146 4.8841 176.69598 2020.87753 1719.66160 -0.08706 3.77376 1.85618 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40171 -0.01204 -1.00000 - 11255 2002 3 18 15 22 10 914 4.8840 176.69365 2021.05048 1719.78816 -0.08721 3.76755 1.85275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40100 -0.01204 -1.00000 - 11257 2002 3 18 15 22 20 682 4.8839 176.69130 2021.22316 1719.91448 -0.08690 3.76131 1.84930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.40029 -0.01204 -1.00000 - 11259 2002 3 18 15 22 30 450 4.8838 176.68906 2021.39555 1720.04061 -0.08646 3.75503 1.84582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39958 -0.01204 -1.00000 - 11261 2002 3 18 15 22 40 217 4.8838 176.68675 2021.56767 1720.16659 -0.08650 3.74871 1.84230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39887 -0.01203 -1.00000 - 11264 2002 3 18 15 22 54 868 4.8837 176.68320 2021.82532 1720.35545 -0.08611 3.73912 1.83694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39780 -0.01203 -1.00000 - 11266 2002 3 18 15 23 4 635 4.8836 176.68094 2021.99675 1720.48110 -0.08578 3.73264 1.83337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39709 -0.01203 -1.00000 - 11268 2002 3 18 15 23 14 402 4.8835 176.67857 2022.16793 1720.60658 -0.08590 3.72608 1.82979 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39638 -0.01203 -1.00000 - 11270 2002 3 18 15 23 24 169 4.8834 176.67616 2022.33886 1720.73181 -0.08568 3.71943 1.82620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39567 -0.01203 -1.00000 - 11272 2002 3 18 15 23 33 936 4.8834 176.67387 2022.50956 1720.85686 -0.08522 3.71271 1.82260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39496 -0.01203 -1.00000 - 11274 2002 3 18 15 23 43 703 4.8833 176.67153 2022.68002 1720.98176 -0.08519 3.70591 1.81898 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39425 -0.01203 -1.00000 - 11276 2002 3 18 15 23 53 469 4.8832 176.66907 2022.85027 1721.10655 -0.08525 3.69905 1.81535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39354 -0.01203 -1.00000 - 11278 2002 3 18 15 24 3 236 4.8831 176.66673 2023.02029 1721.23121 -0.08471 3.69214 1.81171 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39283 -0.01203 -1.00000 - 11280 2002 3 18 15 24 13 2 4.8831 176.66441 2023.19011 1721.35572 -0.08451 3.68518 1.80808 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39212 -0.01203 -1.00000 - 11282 2002 3 18 15 24 22 768 4.8830 176.66194 2023.35972 1721.48000 -0.08471 3.67818 1.80445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39141 -0.01203 -1.00000 - 11284 2002 3 18 15 24 32 534 4.8829 176.65953 2023.52914 1721.60411 -0.08421 3.67115 1.80082 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.39070 -0.01203 -1.00000 - 11286 2002 3 18 15 24 42 299 4.8829 176.65720 2023.69839 1721.72808 -0.08393 3.66410 1.79719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38999 -0.01202 -1.00000 - 11288 2002 3 18 15 24 52 65 4.8828 176.65475 2023.86747 1721.85194 -0.08408 3.65703 1.79357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38928 -0.01202 -1.00000 - 11290 2002 3 18 15 25 1 830 4.8827 176.65228 2024.03642 1721.97569 -0.08377 3.64996 1.78996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38857 -0.01202 -1.00000 - 11292 2002 3 18 15 25 11 596 4.8826 176.64992 2024.20526 1722.09928 -0.08336 3.64291 1.78636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38786 -0.01202 -1.00000 - 11294 2002 3 18 15 25 21 361 4.8826 176.64749 2024.37399 1722.22265 -0.08335 3.63590 1.78279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38715 -0.01202 -1.00000 - 11296 2002 3 18 15 25 31 126 4.8825 176.64497 2024.54262 1722.34584 -0.08335 3.62895 1.77922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38644 -0.01202 -1.00000 - 11298 2002 3 18 15 25 40 891 4.8824 176.64256 2024.71115 1722.46889 -0.08285 3.62210 1.77566 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38573 -0.01202 -1.00000 - 11300 2002 3 18 15 25 50 656 4.8824 176.64015 2024.87958 1722.59181 -0.08265 3.61537 1.77212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38502 -0.01202 -1.00000 - 11302 2002 3 18 15 26 0 420 4.8823 176.63761 2025.04789 1722.71461 -0.08280 3.60881 1.76860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38431 -0.01202 -1.00000 - 11304 2002 3 18 15 26 10 185 4.8822 176.63513 2025.21605 1722.83723 -0.08230 3.60245 1.76511 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38360 -0.01202 -1.00000 - 11307 2002 3 18 15 26 24 831 4.8821 176.63147 2025.46793 1723.02057 -0.08201 3.59332 1.75994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38253 -0.01202 -1.00000 - 11309 2002 3 18 15 26 34 595 4.8820 176.62890 2025.63555 1723.14266 -0.08209 3.58752 1.75648 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38182 -0.01201 -1.00000 - 11311 2002 3 18 15 26 44 359 4.8820 176.62642 2025.80287 1723.26458 -0.08158 3.58194 1.75303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38111 -0.01201 -1.00000 - 11313 2002 3 18 15 26 54 123 4.8819 176.62397 2025.96986 1723.38635 -0.08131 3.57658 1.74960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.38040 -0.01201 -1.00000 - 11315 2002 3 18 15 27 3 887 4.8818 176.62138 2026.13648 1723.50796 -0.08148 3.57139 1.74619 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37969 -0.01201 -1.00000 - 11317 2002 3 18 15 27 13 650 4.8818 176.61884 2026.30271 1723.62936 -0.08098 3.56634 1.74280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37898 -0.01201 -1.00000 - 11319 2002 3 18 15 27 23 414 4.8817 176.61638 2026.46853 1723.75049 -0.08068 3.56139 1.73943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37827 -0.01201 -1.00000 - 11321 2002 3 18 15 27 33 177 4.8816 176.61380 2026.63391 1723.87138 -0.08080 3.55649 1.73607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37756 -0.01201 -1.00000 - 11323 2002 3 18 15 27 42 940 4.8816 176.61120 2026.79887 1723.99208 -0.08057 3.55160 1.73273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37685 -0.01201 -1.00000 - 11325 2002 3 18 15 27 52 703 4.8815 176.60871 2026.96341 1724.11263 -0.08014 3.54666 1.72940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37614 -0.01201 -1.00000 - 11327 2002 3 18 15 28 2 466 4.8814 176.60615 2027.12756 1724.23302 -0.08004 3.54163 1.72609 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37543 -0.01201 -1.00000 - 11329 2002 3 18 15 28 12 229 4.8814 176.60350 2027.29137 1724.35320 -0.08006 3.53646 1.72281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37472 -0.01201 -1.00000 - 11331 2002 3 18 15 28 21 992 4.8813 176.60096 2027.45487 1724.47313 -0.07956 3.53112 1.71955 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37401 -0.01201 -1.00000 - 11333 2002 3 18 15 28 31 754 4.8812 176.59841 2027.61812 1724.59286 -0.07930 3.52559 1.71630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37330 -0.01200 -1.00000 - 11335 2002 3 18 15 28 41 517 4.8812 176.59575 2027.78119 1724.71242 -0.07950 3.51985 1.71308 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37259 -0.01200 -1.00000 - 11337 2002 3 18 15 28 51 279 4.8811 176.59314 2027.94412 1724.83185 -0.07903 3.51393 1.70987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37188 -0.01200 -1.00000 - 11339 2002 3 18 15 29 1 41 4.8810 176.59059 2028.10697 1724.95116 -0.07865 3.50784 1.70669 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37118 -0.01200 -1.00000 - 11341 2002 3 18 15 29 10 803 4.8810 176.58793 2028.26977 1725.07028 -0.07879 3.50164 1.70353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.37047 -0.01200 -1.00000 - 11343 2002 3 18 15 29 20 565 4.8809 176.58526 2028.43253 1725.18918 -0.07852 3.49538 1.70040 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36976 -0.01200 -1.00000 - 11345 2002 3 18 15 29 30 326 4.8808 176.58268 2028.59524 1725.30788 -0.07805 3.48911 1.69728 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36905 -0.01200 -1.00000 - 11347 2002 3 18 15 29 40 88 4.8808 176.58003 2028.75790 1725.42644 -0.07804 3.48290 1.69417 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36834 -0.01200 -1.00000 - 11350 2002 3 18 15 29 54 730 4.8807 176.57600 2029.00171 1725.60415 -0.07771 3.47381 1.68949 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36727 -0.01200 -1.00000 - 11352 2002 3 18 15 30 4 491 4.8806 176.57339 2029.16405 1725.72237 -0.07732 3.46796 1.68642 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36656 -0.01200 -1.00000 - 11354 2002 3 18 15 30 14 252 4.8805 176.57069 2029.32620 1725.84041 -0.07741 3.46230 1.68337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36585 -0.01200 -1.00000 - 11356 2002 3 18 15 30 24 13 4.8805 176.56796 2029.48867 1725.95849 -0.07725 3.45794 1.68034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36514 -0.01199 -1.00000 - 11358 2002 3 18 15 30 33 774 4.8804 176.56532 2029.65179 1726.07677 -0.07675 3.45361 1.67742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36443 -0.01199 -1.00000 - 11360 2002 3 18 15 30 43 535 4.8804 176.56264 2029.81550 1726.19522 -0.07667 3.44935 1.67482 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36372 -0.01199 -1.00000 - 11362 2002 3 18 15 30 53 296 4.8803 176.55987 2029.97959 1726.31374 -0.07676 3.44518 1.67225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36301 -0.01199 -1.00000 - 11364 2002 3 18 15 31 3 56 4.8802 176.55718 2030.14385 1726.43226 -0.07619 3.44109 1.66973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36230 -0.01199 -1.00000 - 11366 2002 3 18 15 31 12 816 4.8802 176.55451 2030.30808 1726.55067 -0.07591 3.43703 1.66724 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36159 -0.01199 -1.00000 - 11368 2002 3 18 15 31 22 577 4.8801 176.55172 2030.47217 1726.66887 -0.07621 3.43296 1.66480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36088 -0.01199 -1.00000 - 11370 2002 3 18 15 31 32 337 4.8800 176.54899 2030.63604 1726.78688 -0.07575 3.42886 1.66239 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.36017 -0.01199 -1.00000 - 11372 2002 3 18 15 31 42 97 4.8800 176.54634 2030.79966 1726.90473 -0.07537 3.42470 1.66002 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35946 -0.01199 -1.00000 - 11374 2002 3 18 15 31 51 857 4.8799 176.54357 2030.96303 1727.02243 -0.07538 3.42044 1.65767 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35875 -0.01199 -1.00000 - 11376 2002 3 18 15 32 1 616 4.8798 176.54076 2031.12617 1727.14000 -0.07365 3.41608 1.65536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35804 -0.01199 -1.00000 - 11378 2002 3 18 15 32 11 376 4.8798 176.53802 2031.28910 1727.25736 -0.07221 3.41160 1.65309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35733 -0.01199 -1.00000 - 11380 2002 3 18 15 32 21 135 4.8798 176.53521 2031.45186 1727.37448 -0.07269 3.40703 1.65083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35662 -0.01198 -1.00000 - 11382 2002 3 18 15 32 30 895 4.8797 176.53225 2031.61445 1727.49138 -0.07299 3.40238 1.64860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35591 -0.01198 -1.00000 - 11384 2002 3 18 15 32 40 654 4.8796 176.52943 2031.77690 1727.60812 -0.07345 3.39770 1.64637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35520 -0.01198 -1.00000 - 11386 2002 3 18 15 32 50 413 4.8796 176.52669 2031.93920 1727.72472 -0.07390 3.39302 1.64415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35449 -0.01198 -1.00000 - 11388 2002 3 18 15 33 0 172 4.8795 176.52369 2032.10133 1727.84117 -0.07356 3.38840 1.64195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35378 -0.01198 -1.00000 - 11391 2002 3 18 15 33 14 811 4.8794 176.51949 2032.34416 1728.01537 -0.07315 3.38165 1.63866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35272 -0.01198 -1.00000 - 11393 2002 3 18 15 33 24 569 4.8793 176.51662 2032.50573 1728.13122 -0.07321 3.37730 1.63644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35201 -0.01198 -1.00000 - 11395 2002 3 18 15 33 34 328 4.8793 176.51374 2032.66700 1728.24687 -0.07380 3.37310 1.63420 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35130 -0.01198 -1.00000 - 11397 2002 3 18 15 33 44 86 4.8792 176.51103 2032.82794 1728.36234 -0.07410 3.36903 1.63194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.35059 -0.01198 -1.00000 - 11399 2002 3 18 15 33 53 845 4.8791 176.50826 2032.98849 1728.47764 -0.07443 3.36507 1.62965 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34988 -0.01198 -1.00000 - 11401 2002 3 18 15 34 3 603 4.8791 176.50543 2033.14863 1728.59276 -0.07461 3.36121 1.62734 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34917 -0.01198 -1.00000 - 11403 2002 3 18 15 34 13 361 4.8790 176.50267 2033.30833 1728.70765 -0.07452 3.35741 1.62500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34846 -0.01197 -1.00000 - 11405 2002 3 18 15 34 23 119 4.8789 176.49985 2033.46756 1728.82223 -0.07382 3.35362 1.62264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34775 -0.01197 -1.00000 - 11407 2002 3 18 15 34 32 877 4.8789 176.49693 2033.62632 1728.93656 -0.07321 3.34979 1.62023 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34704 -0.01197 -1.00000 - 11409 2002 3 18 15 34 42 634 4.8788 176.49408 2033.78459 1729.05069 -0.07251 3.34588 1.61778 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34633 -0.01197 -1.00000 - 11411 2002 3 18 15 34 52 392 4.8788 176.49121 2033.94235 1729.16463 -0.07147 3.34184 1.61530 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34562 -0.01197 -1.00000 - 11413 2002 3 18 15 35 2 149 4.8787 176.48827 2034.09961 1729.27840 -0.07125 3.33760 1.61278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34491 -0.01197 -1.00000 - 11415 2002 3 18 15 35 11 907 4.8787 176.48535 2034.25635 1729.39195 -0.07041 3.33312 1.61024 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34420 -0.01197 -1.00000 - 11417 2002 3 18 15 35 21 664 4.8786 176.48243 2034.41261 1729.50524 -0.06978 3.32836 1.60766 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34350 -0.01197 -1.00000 - 11419 2002 3 18 15 35 31 421 4.8786 176.47944 2034.56848 1729.61832 -0.06955 3.32328 1.60506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34279 -0.01197 -1.00000 - 11421 2002 3 18 15 35 41 178 4.8785 176.47643 2034.72421 1729.73124 -0.06893 3.31789 1.60243 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34208 -0.01197 -1.00000 - 11423 2002 3 18 15 35 50 935 4.8785 176.47346 2034.88025 1729.84402 -0.06855 3.31221 1.59978 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34137 -0.01197 -1.00000 - 11425 2002 3 18 15 36 0 692 4.8784 176.47046 2035.03724 1729.95668 -0.06866 3.30630 1.59711 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.34066 -0.01197 -1.00000 - 11427 2002 3 18 15 36 10 449 4.8783 176.46742 2035.19600 1730.06912 -0.06842 3.30023 1.59441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33995 -0.01196 -1.00000 - 11429 2002 3 18 15 36 20 205 4.8783 176.46440 2035.35743 1730.18126 -0.06826 3.29417 1.59165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33924 -0.01196 -1.00000 - 11432 2002 3 18 15 36 34 840 4.8782 176.45991 2035.60616 1730.34893 -0.06860 3.28564 1.58733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33817 -0.01196 -1.00000 - 11434 2002 3 18 15 36 44 596 4.8781 176.45688 2035.77680 1730.46024 -0.06860 3.28104 1.58428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33746 -0.01196 -1.00000 - 11436 2002 3 18 15 36 54 353 4.8781 176.45389 2035.95077 1730.57112 -0.06867 3.27821 1.58102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33675 -0.01196 -1.00000 - 11438 2002 3 18 15 37 4 109 4.8780 176.45090 2036.12674 1730.68147 -0.06873 3.27862 1.57751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33605 -0.01196 -1.00000 - 11440 2002 3 18 15 37 13 865 4.8779 176.44788 2036.30262 1730.79111 -0.06864 3.28395 1.57368 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33534 -0.01196 -1.00000 - 11442 2002 3 18 15 37 23 620 4.8779 176.44487 2036.47567 1730.89989 -0.06850 3.29490 1.56946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33463 -0.01196 -1.00000 - 11444 2002 3 18 15 37 33 376 4.8778 176.44184 2036.64282 1731.00775 -0.06830 3.31141 1.56479 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33392 -0.01196 -1.00000 - 11446 2002 3 18 15 37 43 131 4.8777 176.43880 2036.80118 1731.11469 -0.06824 3.33349 1.55961 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33321 -0.01196 -1.00000 - 11448 2002 3 18 15 37 52 887 4.8777 176.43577 2036.94834 1731.22067 -0.06785 3.36022 1.55396 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33250 -0.01196 -1.00000 - 11450 2002 3 18 15 38 2 642 4.8776 176.43270 2037.08329 1731.32574 -0.06740 3.38940 1.54787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33179 -0.01196 -1.00000 - 11452 2002 3 18 15 38 12 397 4.8775 176.42964 2037.20654 1731.42996 -0.06723 3.41500 1.54138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33108 -0.01195 -1.00000 - 11454 2002 3 18 15 38 22 152 4.8775 176.42657 2037.32042 1731.53349 -0.06692 3.43130 1.53456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.33037 -0.01195 -1.00000 - 11456 2002 3 18 15 38 31 907 4.8774 176.42348 2037.42837 1731.63671 -0.06646 3.43475 1.52749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32966 -0.01195 -1.00000 - 11458 2002 3 18 15 38 41 662 4.8773 176.42039 2037.53409 1731.74000 -0.06608 3.42350 1.52028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32895 -0.01195 -1.00000 - 11460 2002 3 18 15 38 51 416 4.8773 176.41728 2037.64109 1731.84373 -0.06582 3.39753 1.51303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32824 -0.01195 -1.00000 - 11462 2002 3 18 15 39 1 171 4.8772 176.41414 2037.75232 1731.94825 -0.06544 3.35842 1.50583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32753 -0.01195 -1.00000 - 11464 2002 3 18 15 39 10 925 4.8771 176.41101 2037.86993 1732.05372 -0.06500 3.30883 1.49878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32682 -0.01195 -1.00000 - 11466 2002 3 18 15 39 20 679 4.8771 176.40787 2037.99515 1732.16028 -0.06479 3.25163 1.49194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32611 -0.01195 -1.00000 - 11468 2002 3 18 15 39 30 433 4.8770 176.40470 2038.12871 1732.26806 -0.06463 3.18939 1.48537 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32540 -0.01195 -1.00000 - 11470 2002 3 18 15 39 40 187 4.8770 176.40154 2038.27102 1732.37715 -0.06428 3.12663 1.47915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32470 -0.01195 -1.00000 - 11473 2002 3 18 15 39 54 818 4.8769 176.39678 2038.49937 1732.54309 -0.06406 3.03805 1.47053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32363 -0.01195 -1.00000 - 11475 2002 3 18 15 40 4 571 4.8768 176.39359 2038.66001 1732.65511 -0.06391 2.98425 1.46523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32292 -0.01194 -1.00000 - 11477 2002 3 18 15 40 14 325 4.8767 176.39041 2038.82670 1732.76798 -0.06363 2.93493 1.46030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32221 -0.01194 -1.00000 - 11479 2002 3 18 15 40 24 78 4.8767 176.38722 2038.99906 1732.88148 -0.06355 2.89132 1.45576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32150 -0.01194 -1.00000 - 11481 2002 3 18 15 40 33 832 4.8766 176.38401 2039.17604 1732.99547 -0.06348 2.85452 1.45161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32079 -0.01194 -1.00000 - 11483 2002 3 18 15 40 43 585 4.8765 176.38081 2039.35607 1733.10981 -0.06322 2.82495 1.44783 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.32008 -0.01194 -1.00000 - 11485 2002 3 18 15 40 53 338 4.8765 176.37761 2039.53766 1733.22432 -0.06307 2.80360 1.44439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31938 -0.01194 -1.00000 - 11487 2002 3 18 15 41 3 91 4.8764 176.37439 2039.71928 1733.33883 -0.06299 2.79081 1.44130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31867 -0.01194 -1.00000 - 11489 2002 3 18 15 41 12 843 4.8764 176.37116 2039.89966 1733.45307 -0.06270 2.78565 1.43850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31796 -0.01194 -1.00000 - 11491 2002 3 18 15 41 22 596 4.8763 176.36794 2040.07794 1733.56685 -0.06246 2.78639 1.43596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31725 -0.01194 -1.00000 - 11493 2002 3 18 15 41 32 348 4.8762 176.36469 2040.25372 1733.68009 -0.06236 2.79258 1.43366 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31654 -0.01194 -1.00000 - 11495 2002 3 18 15 41 42 101 4.8762 176.36144 2040.42664 1733.79271 -0.06208 2.80408 1.43157 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31583 -0.01194 -1.00000 - 11497 2002 3 18 15 41 51 853 4.8761 176.35819 2040.59662 1733.90462 -0.06175 2.82041 1.42968 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31512 -0.01194 -1.00000 - 11499 2002 3 18 15 42 1 605 4.8761 176.35492 2040.76395 1734.01571 -0.06158 2.84070 1.42799 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31441 -0.01193 -1.00000 - 11501 2002 3 18 15 42 11 357 4.8760 176.35164 2040.92912 1734.12582 -0.06131 2.86392 1.42650 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31370 -0.01193 -1.00000 - 11503 2002 3 18 15 42 21 109 4.8759 176.34836 2041.09281 1734.23482 -0.06089 2.88929 1.42519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31299 -0.01193 -1.00000 - 11505 2002 3 18 15 42 30 861 4.8759 176.34507 2041.25545 1734.34273 -0.06071 2.91466 1.42401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31228 -0.01193 -1.00000 - 11507 2002 3 18 15 42 40 612 4.8758 176.34176 2041.41720 1734.44956 -0.06054 2.93911 1.42288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31157 -0.01193 -1.00000 - 11509 2002 3 18 15 42 50 364 4.8758 176.33845 2041.57754 1734.55535 -0.06007 2.96393 1.42176 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31086 -0.01193 -1.00000 - 11511 2002 3 18 15 43 0 115 4.8757 176.33513 2041.73495 1734.66009 -0.05982 2.99069 1.42057 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.31016 -0.01193 -1.00000 - 11514 2002 3 18 15 43 14 742 4.8756 176.33011 2041.96115 1734.81503 -0.05955 3.03631 1.41853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30909 -0.01193 -1.00000 - 11516 2002 3 18 15 43 24 493 4.8756 176.32678 2042.10254 1734.91681 -0.05911 3.06975 1.41692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30838 -0.01193 -1.00000 - 11518 2002 3 18 15 43 34 244 4.8755 176.32343 2042.23508 1735.01749 -0.05904 3.10336 1.41507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30767 -0.01193 -1.00000 - 11520 2002 3 18 15 43 43 995 4.8754 176.32006 2042.35872 1735.11719 -0.05893 3.13417 1.41298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30696 -0.01193 -1.00000 - 11522 2002 3 18 15 43 53 746 4.8754 176.31670 2042.47452 1735.21611 -0.05847 3.15912 1.41066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30626 -0.01192 -1.00000 - 11524 2002 3 18 15 44 3 497 4.8753 176.31333 2042.58433 1735.31448 -0.05830 3.17550 1.40816 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30555 -0.01192 -1.00000 - 11526 2002 3 18 15 44 13 247 4.8753 176.30993 2042.69064 1735.41248 -0.05831 3.18135 1.40553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30484 -0.01192 -1.00000 - 11528 2002 3 18 15 44 22 998 4.8752 176.30654 2042.79624 1735.51033 -0.05786 3.17582 1.40281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30413 -0.01192 -1.00000 - 11530 2002 3 18 15 44 32 748 4.8752 176.30316 2042.90389 1735.60834 -0.05762 3.15915 1.40006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30342 -0.01192 -1.00000 - 11532 2002 3 18 15 44 42 498 4.8751 176.29974 2043.01608 1735.70679 -0.05771 3.13259 1.39732 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30271 -0.01192 -1.00000 - 11534 2002 3 18 15 44 52 249 4.8750 176.29632 2043.13475 1735.80588 -0.05732 3.09813 1.39464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30200 -0.01192 -1.00000 - 11536 2002 3 18 15 45 1 999 4.8750 176.29292 2043.26112 1735.90571 -0.05697 3.05792 1.39203 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30129 -0.01192 -1.00000 - 11538 2002 3 18 15 45 11 748 4.8749 176.28948 2043.39594 1736.00630 -0.05699 3.01416 1.38953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.30058 -0.01192 -1.00000 - 11540 2002 3 18 15 45 21 498 4.8749 176.28602 2043.53990 1736.10781 -0.05672 2.97210 1.38717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29987 -0.01192 -1.00000 - 11542 2002 3 18 15 45 31 248 4.8748 176.28260 2043.69228 1736.21032 -0.05623 2.93390 1.38492 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29917 -0.01192 -1.00000 - 11544 2002 3 18 15 45 40 997 4.8748 176.27915 2043.85142 1736.31365 -0.05620 2.90136 1.38275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29846 -0.01192 -1.00000 - 11546 2002 3 18 15 45 50 747 4.8747 176.27566 2044.01564 1736.41753 -0.05609 2.87497 1.38061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29775 -0.01191 -1.00000 - 11548 2002 3 18 15 46 0 496 4.8747 176.27220 2044.18323 1736.52171 -0.05549 2.85484 1.37848 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29704 -0.01191 -1.00000 - 11550 2002 3 18 15 46 10 245 4.8746 176.26874 2044.35224 1736.62590 -0.05527 2.84100 1.37628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29633 -0.01191 -1.00000 - 11553 2002 3 18 15 46 24 869 4.8745 176.26346 2044.60457 1736.78172 -0.05501 2.83230 1.37276 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29527 -0.01191 -1.00000 - 11555 2002 3 18 15 46 34 618 4.8745 176.25998 2044.76957 1736.88513 -0.05444 2.83392 1.37020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29456 -0.01191 -1.00000 - 11557 2002 3 18 15 46 44 367 4.8744 176.25648 2044.93023 1736.98805 -0.05442 2.84105 1.36744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29385 -0.01191 -1.00000 - 11559 2002 3 18 15 46 54 116 4.8744 176.25291 2045.08541 1737.09039 -0.05432 2.85265 1.36451 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29314 -0.01191 -1.00000 - 11561 2002 3 18 15 47 3 864 4.8743 176.24940 2045.23463 1737.19210 -0.05371 2.86743 1.36145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29243 -0.01191 -1.00000 - 11563 2002 3 18 15 47 13 613 4.8743 176.24588 2045.37809 1737.29308 -0.05352 2.88406 1.35833 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29172 -0.01191 -1.00000 - 11565 2002 3 18 15 47 23 361 4.8742 176.24229 2045.51635 1737.39331 -0.05367 2.89886 1.35512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29101 -0.01191 -1.00000 - 11567 2002 3 18 15 47 33 110 4.8742 176.23874 2045.65067 1737.49293 -0.05316 2.90992 1.35187 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.29030 -0.01191 -1.00000 - 11569 2002 3 18 15 47 42 858 4.8741 176.23521 2045.78233 1737.59210 -0.05292 2.91659 1.34858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28959 -0.01190 -1.00000 - 11571 2002 3 18 15 47 52 606 4.8741 176.23161 2045.91243 1737.69097 -0.05313 2.91879 1.34527 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28889 -0.01190 -1.00000 - 11573 2002 3 18 15 48 2 354 4.8740 176.22802 2046.04190 1737.78964 -0.05279 2.91674 1.34196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28818 -0.01190 -1.00000 - 11575 2002 3 18 15 48 12 102 4.8740 176.22449 2046.17157 1737.88816 -0.05237 2.91080 1.33866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28747 -0.01190 -1.00000 - 11577 2002 3 18 15 48 21 850 4.8739 176.22088 2046.30217 1737.98653 -0.05242 2.90141 1.33538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28676 -0.01190 -1.00000 - 11579 2002 3 18 15 48 31 598 4.8739 176.21726 2046.43435 1738.08487 -0.05234 2.88913 1.33213 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28605 -0.01190 -1.00000 - 11581 2002 3 18 15 48 41 345 4.8738 176.21371 2046.56860 1738.18326 -0.05178 2.87464 1.32891 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28534 -0.01190 -1.00000 - 11583 2002 3 18 15 48 51 93 4.8738 176.21012 2046.70522 1738.28176 -0.05157 2.85858 1.32574 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28463 -0.01190 -1.00000 - 11585 2002 3 18 15 49 0 840 4.8737 176.20646 2046.84444 1738.38038 -0.05164 2.84168 1.32261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28392 -0.01190 -1.00000 - 11587 2002 3 18 15 49 10 588 4.8737 176.20285 2046.98620 1738.47904 -0.05100 2.82482 1.31951 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28321 -0.01190 -1.00000 - 11589 2002 3 18 15 49 20 335 4.8736 176.19925 2047.13018 1738.57766 -0.05045 2.80891 1.31643 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28251 -0.01190 -1.00000 - 11591 2002 3 18 15 49 30 82 4.8736 176.19556 2047.27584 1738.67623 -0.05056 2.79474 1.31333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28180 -0.01190 -1.00000 - 11594 2002 3 18 15 49 44 703 4.8735 176.19008 2047.49607 1738.82396 -0.04964 2.77786 1.30864 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28073 -0.01189 -1.00000 - 11596 2002 3 18 15 49 54 450 4.8735 176.18642 2047.64306 1738.92229 -0.04932 2.76985 1.30547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.28002 -0.01189 -1.00000 - 11598 2002 3 18 15 50 4 196 4.8734 176.18270 2047.78948 1739.02044 -0.04931 2.76438 1.30225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27932 -0.01189 -1.00000 - 11600 2002 3 18 15 50 13 943 4.8734 176.17899 2047.93481 1739.11828 -0.04859 2.76126 1.29899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27861 -0.01189 -1.00000 - 11602 2002 3 18 15 50 23 690 4.8733 176.17530 2048.07864 1739.21568 -0.04828 2.76017 1.29569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27790 -0.01189 -1.00000 - 11604 2002 3 18 15 50 33 436 4.8733 176.17156 2048.22065 1739.31267 -0.04840 2.76068 1.29233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27719 -0.01189 -1.00000 - 11606 2002 3 18 15 50 43 183 4.8732 176.16781 2048.36066 1739.40929 -0.04791 2.76224 1.28893 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27648 -0.01189 -1.00000 - 11608 2002 3 18 15 50 52 929 4.8732 176.16409 2048.49867 1739.50555 -0.04759 2.76422 1.28549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27577 -0.01189 -1.00000 - 11610 2002 3 18 15 51 2 675 4.8731 176.16036 2048.63480 1739.60147 -0.04774 2.76606 1.28201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27506 -0.01189 -1.00000 - 11612 2002 3 18 15 51 12 422 4.8731 176.15659 2048.76921 1739.69700 -0.04748 2.76729 1.27850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27435 -0.01189 -1.00000 - 11614 2002 3 18 15 51 22 168 4.8730 176.15284 2048.90218 1739.79211 -0.04712 2.76750 1.27497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27365 -0.01189 -1.00000 - 11616 2002 3 18 15 51 31 914 4.8730 176.14910 2049.03400 1739.88689 -0.04714 2.76641 1.27140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27294 -0.01189 -1.00000 - 11618 2002 3 18 15 51 41 660 4.8730 176.14531 2049.16500 1739.98143 -0.04708 2.76386 1.26780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27223 -0.01188 -1.00000 - 11620 2002 3 18 15 51 51 406 4.8729 176.14156 2049.29551 1740.07577 -0.04674 2.75978 1.26418 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27152 -0.01188 -1.00000 - 11622 2002 3 18 15 52 1 151 4.8729 176.13779 2049.42587 1740.16998 -0.04645 2.75423 1.26055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27081 -0.01188 -1.00000 - 11624 2002 3 18 15 52 10 897 4.8728 176.13399 2049.55634 1740.26400 -0.04647 2.74734 1.25691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.27010 -0.01188 -1.00000 - 11626 2002 3 18 15 52 20 643 4.8728 176.13021 2049.68716 1740.35781 -0.04624 2.73932 1.25326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26939 -0.01188 -1.00000 - 11628 2002 3 18 15 52 30 388 4.8727 176.12641 2049.81852 1740.45147 -0.04570 2.73038 1.24959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26868 -0.01188 -1.00000 - 11630 2002 3 18 15 52 40 133 4.8727 176.12260 2049.95055 1740.54505 -0.04568 2.72073 1.24592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26798 -0.01188 -1.00000 - 11633 2002 3 18 15 52 54 751 4.8726 176.11688 2050.15003 1740.68532 -0.04529 2.70556 1.24038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26691 -0.01188 -1.00000 - 11635 2002 3 18 15 53 4 497 4.8726 176.11305 2050.28392 1740.77877 -0.04481 2.69545 1.23667 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26620 -0.01188 -1.00000 - 11637 2002 3 18 15 53 14 242 4.8725 176.10920 2050.41841 1740.87208 -0.04483 2.68568 1.23295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26550 -0.01188 -1.00000 - 11639 2002 3 18 15 53 23 987 4.8725 176.10535 2050.55332 1740.96516 -0.04454 2.67649 1.22920 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26479 -0.01188 -1.00000 - 11641 2002 3 18 15 53 33 732 4.8725 176.10150 2050.68845 1741.05805 -0.04406 2.66803 1.22542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26408 -0.01187 -1.00000 - 11643 2002 3 18 15 53 43 477 4.8724 176.09764 2050.82362 1741.15077 -0.04401 2.66042 1.22160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26337 -0.01187 -1.00000 - 11645 2002 3 18 15 53 53 221 4.8724 176.09375 2050.95862 1741.24333 -0.04385 2.65368 1.21774 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26266 -0.01187 -1.00000 - 11647 2002 3 18 15 54 2 966 4.8723 176.08987 2051.09327 1741.33572 -0.04330 2.64780 1.21384 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26195 -0.01187 -1.00000 - 11649 2002 3 18 15 54 12 711 4.8723 176.08601 2051.22739 1741.42784 -0.04308 2.64270 1.20991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26124 -0.01187 -1.00000 - 11651 2002 3 18 15 54 22 455 4.8723 176.08209 2051.36085 1741.51961 -0.04301 2.63828 1.20595 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.26053 -0.01187 -1.00000 - 11653 2002 3 18 15 54 32 200 4.8722 176.07817 2051.49353 1741.61107 -0.04245 2.63441 1.20194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25983 -0.01187 -1.00000 - 11655 2002 3 18 15 54 41 944 4.8722 176.07428 2051.62532 1741.70228 -0.04213 2.63092 1.19789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25912 -0.01187 -1.00000 - 11657 2002 3 18 15 54 51 688 4.8721 176.07034 2051.75618 1741.79324 -0.04211 2.62759 1.19381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25841 -0.01187 -1.00000 - 11659 2002 3 18 15 55 1 433 4.8721 176.06639 2051.88611 1741.88397 -0.04157 2.62425 1.18970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25770 -0.01187 -1.00000 - 11661 2002 3 18 15 55 11 177 4.8721 176.06246 2052.01511 1741.97440 -0.04112 2.62070 1.18556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25699 -0.01187 -1.00000 - 11663 2002 3 18 15 55 20 921 4.8720 176.05850 2052.14322 1742.06449 -0.04108 2.61678 1.18141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25628 -0.01187 -1.00000 - 11665 2002 3 18 15 55 30 665 4.8720 176.05450 2052.27050 1742.15431 -0.04070 2.61233 1.17722 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25557 -0.01186 -1.00000 - 11667 2002 3 18 15 55 40 409 4.8720 176.05053 2052.39704 1742.24392 -0.04018 2.60724 1.17301 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25487 -0.01186 -1.00000 - 11669 2002 3 18 15 55 50 153 4.8719 176.04656 2052.52292 1742.33337 -0.04013 2.60140 1.16879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25416 -0.01186 -1.00000 - 11672 2002 3 18 15 56 4 768 4.8719 176.04053 2052.71076 1742.46732 -0.03965 2.59112 1.16246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25309 -0.01186 -1.00000 - 11674 2002 3 18 15 56 14 512 4.8718 176.03654 2052.83550 1742.55641 -0.03929 2.58321 1.15826 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25239 -0.01186 -1.00000 - 11676 2002 3 18 15 56 24 256 4.8718 176.03252 2052.95996 1742.64530 -0.03935 2.57448 1.15407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25168 -0.01186 -1.00000 - 11678 2002 3 18 15 56 33 999 4.8718 176.02847 2053.08426 1742.73405 -0.03913 2.56497 1.14990 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25097 -0.01186 -1.00000 - 11680 2002 3 18 15 56 43 743 4.8717 176.02446 2053.20849 1742.82273 -0.03878 2.55473 1.14576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.25026 -0.01186 -1.00000 - 11682 2002 3 18 15 56 53 486 4.8717 176.02043 2053.33274 1742.91139 -0.03867 2.54380 1.14166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24955 -0.01186 -1.00000 - 11684 2002 3 18 15 57 3 229 4.8717 176.01638 2053.45707 1743.00007 -0.03863 2.53229 1.13762 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24884 -0.01186 -1.00000 - 11686 2002 3 18 15 57 12 973 4.8716 176.01234 2053.58152 1743.08869 -0.03830 2.52030 1.13364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24813 -0.01186 -1.00000 - 11688 2002 3 18 15 57 22 716 4.8716 176.00829 2053.70609 1743.17720 -0.03794 2.50793 1.12973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24743 -0.01185 -1.00000 - 11690 2002 3 18 15 57 32 459 4.8715 176.00422 2053.83077 1743.26568 -0.03800 2.49531 1.12589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24672 -0.01185 -1.00000 - 11692 2002 3 18 15 57 42 202 4.8715 176.00016 2053.95553 1743.35417 -0.03774 2.48254 1.12214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24601 -0.01185 -1.00000 - 11694 2002 3 18 15 57 51 945 4.8715 175.99609 2054.08033 1743.44271 -0.03722 2.46973 1.11850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24530 -0.01185 -1.00000 - 11696 2002 3 18 15 58 1 688 4.8714 175.99200 2054.20515 1743.53131 -0.03720 2.45696 1.11497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24459 -0.01185 -1.00000 - 11698 2002 3 18 15 58 11 431 4.8714 175.98791 2054.33002 1743.61989 -0.03698 2.44430 1.11157 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24388 -0.01185 -1.00000 - 11700 2002 3 18 15 58 21 173 4.8714 175.98381 2054.45499 1743.70840 -0.03636 2.43177 1.10831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24317 -0.01185 -1.00000 - 11702 2002 3 18 15 58 30 916 4.8714 175.97970 2054.58019 1743.79688 -0.03620 2.41941 1.10521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24247 -0.01185 -1.00000 - 11704 2002 3 18 15 58 40 659 4.8713 175.97557 2054.70582 1743.88538 -0.03609 2.40722 1.10227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24176 -0.01185 -1.00000 - 11706 2002 3 18 15 58 50 401 4.8713 175.97144 2054.83213 1743.97392 -0.03545 2.39525 1.09950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24105 -0.01185 -1.00000 - 11708 2002 3 18 15 59 0 144 4.8713 175.96731 2054.95940 1744.06249 -0.03514 2.38358 1.09691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.24034 -0.01185 -1.00000 - 11711 2002 3 18 15 59 14 758 4.8712 175.96105 2055.15270 1744.19518 -0.03485 2.36704 1.09338 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23928 -0.01184 -1.00000 - 11713 2002 3 18 15 59 24 500 4.8712 175.95688 2055.28346 1744.28346 -0.03423 2.35704 1.09125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23857 -0.01184 -1.00000 - 11715 2002 3 18 15 59 34 242 4.8712 175.95272 2055.41584 1744.37160 -0.03412 2.34830 1.08928 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23786 -0.01184 -1.00000 - 11717 2002 3 18 15 59 43 985 4.8711 175.94851 2055.54976 1744.45960 -0.03404 2.34125 1.08744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23715 -0.01184 -1.00000 - 11719 2002 3 18 15 59 53 727 4.8711 175.94431 2055.68500 1744.54739 -0.03341 2.33635 1.08572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23644 -0.01184 -1.00000 - 11721 2002 3 18 16 0 3 469 4.8711 175.94013 2055.82117 1744.63493 -0.03325 2.33398 1.08410 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23574 -0.01184 -1.00000 - 11723 2002 3 18 16 0 13 211 4.8710 175.93590 2055.95778 1744.72206 -0.03329 2.33448 1.08254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23503 -0.01184 -1.00000 - 11725 2002 3 18 16 0 22 953 4.8710 175.93165 2056.09466 1744.80887 -0.03276 2.33910 1.08100 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23432 -0.01184 -1.00000 - 11727 2002 3 18 16 0 32 695 4.8710 175.92745 2056.23144 1744.89545 -0.03257 2.34662 1.07946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23361 -0.01184 -1.00000 - 11729 2002 3 18 16 0 42 437 4.8710 175.92321 2056.36738 1744.98171 -0.03266 2.35696 1.07788 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23290 -0.01184 -1.00000 - 11731 2002 3 18 16 0 52 179 4.8709 175.91894 2056.50168 1745.06751 -0.03228 2.36976 1.07625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23219 -0.01184 -1.00000 - 11733 2002 3 18 16 1 1 921 4.8709 175.91472 2056.63370 1745.15276 -0.03201 2.38441 1.07453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23148 -0.01184 -1.00000 - 11735 2002 3 18 16 1 11 662 4.8709 175.91045 2056.76293 1745.23730 -0.03193 2.40020 1.07271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23078 -0.01183 -1.00000 - 11737 2002 3 18 16 1 21 404 4.8708 175.90616 2056.88905 1745.32103 -0.03169 2.41634 1.07074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.23007 -0.01183 -1.00000 - 11739 2002 3 18 16 1 31 146 4.8708 175.90191 2057.01190 1745.40402 -0.03137 2.43205 1.06862 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22936 -0.01183 -1.00000 - 11741 2002 3 18 16 1 40 887 4.8708 175.89763 2057.13150 1745.48632 -0.03113 2.44653 1.06632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22865 -0.01183 -1.00000 - 11743 2002 3 18 16 1 50 629 4.8708 175.89332 2057.24801 1745.56803 -0.03099 2.45902 1.06383 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22794 -0.01183 -1.00000 - 11745 2002 3 18 16 2 0 370 4.8707 175.88904 2057.36177 1745.64921 -0.03063 2.46883 1.06115 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22723 -0.01183 -1.00000 - 11747 2002 3 18 16 2 10 112 4.8707 175.88473 2057.47321 1745.72987 -0.03017 2.47543 1.05829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22653 -0.01183 -1.00000 - 11750 2002 3 18 16 2 24 724 4.8707 175.87822 2057.63716 1745.84997 -0.02995 2.47853 1.05363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22546 -0.01183 -1.00000 - 11752 2002 3 18 16 2 34 465 4.8706 175.87390 2057.74513 1745.92967 -0.02944 2.47587 1.05030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22475 -0.01183 -1.00000 - 11754 2002 3 18 16 2 44 206 4.8706 175.86954 2057.85270 1746.00924 -0.02912 2.46950 1.04680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22405 -0.01183 -1.00000 - 11756 2002 3 18 16 2 53 948 4.8706 175.86518 2057.96036 1746.08877 -0.02900 2.45962 1.04315 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22334 -0.01183 -1.00000 - 11758 2002 3 18 16 3 3 689 4.8706 175.86081 2058.06856 1746.16836 -0.02854 2.44659 1.03938 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22263 -0.01183 -1.00000 - 11760 2002 3 18 16 3 13 430 4.8706 175.85643 2058.17768 1746.24798 -0.02812 2.43083 1.03550 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22192 -0.01182 -1.00000 - 11762 2002 3 18 16 3 23 171 4.8705 175.85203 2058.28800 1746.32761 -0.02807 2.41281 1.03153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22121 -0.01182 -1.00000 - 11764 2002 3 18 16 3 32 912 4.8705 175.84763 2058.39975 1746.40737 -0.02774 2.39293 1.02747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.22050 -0.01182 -1.00000 - 11766 2002 3 18 16 3 42 653 4.8705 175.84321 2058.51314 1746.48734 -0.02728 2.37165 1.02336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21980 -0.01182 -1.00000 - 11768 2002 3 18 16 3 52 394 4.8705 175.83880 2058.62830 1746.56756 -0.02728 2.34950 1.01919 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21909 -0.01182 -1.00000 - 11770 2002 3 18 16 4 2 135 4.8704 175.83436 2058.74523 1746.64804 -0.02705 2.32702 1.01500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21838 -0.01182 -1.00000 - 11772 2002 3 18 16 4 11 876 4.8704 175.82991 2058.86387 1746.72871 -0.02658 2.30473 1.01079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21767 -0.01182 -1.00000 - 11774 2002 3 18 16 4 21 617 4.8704 175.82548 2058.98412 1746.80948 -0.02652 2.28305 1.00656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21696 -0.01182 -1.00000 - 11776 2002 3 18 16 4 31 357 4.8704 175.82101 2059.10583 1746.89037 -0.02641 2.26236 1.00233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21625 -0.01182 -1.00000 - 11778 2002 3 18 16 4 41 98 4.8704 175.81654 2059.22886 1746.97140 -0.02596 2.24297 0.99810 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21555 -0.01182 -1.00000 - 11780 2002 3 18 16 4 50 839 4.8703 175.81209 2059.35304 1747.05255 -0.02584 2.22514 0.99389 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21484 -0.01182 -1.00000 - 11782 2002 3 18 16 5 0 579 4.8703 175.80760 2059.47815 1747.13378 -0.02574 2.20911 0.98970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21413 -0.01182 -1.00000 - 11784 2002 3 18 16 5 10 320 4.8703 175.80310 2059.60395 1747.21496 -0.02530 2.19507 0.98555 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21342 -0.01181 -1.00000 - 11786 2002 3 18 16 5 20 61 4.8703 175.79862 2059.73014 1747.29596 -0.02508 2.18318 0.98144 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21271 -0.01181 -1.00000 - 11789 2002 3 18 16 5 34 671 4.8702 175.79184 2059.91946 1747.41714 -0.02479 2.16952 0.97531 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21165 -0.01181 -1.00000 - 11791 2002 3 18 16 5 44 412 4.8702 175.78732 2060.04519 1747.49769 -0.02441 2.16320 0.97126 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21094 -0.01181 -1.00000 - 11793 2002 3 18 16 5 54 152 4.8702 175.78281 2060.17013 1747.57801 -0.02410 2.15899 0.96725 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.21023 -0.01181 -1.00000 - 11795 2002 3 18 16 6 3 893 4.8702 175.77825 2060.29398 1747.65807 -0.02393 2.15664 0.96326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20952 -0.01181 -1.00000 - 11797 2002 3 18 16 6 13 633 4.8702 175.77370 2060.41650 1747.73774 -0.02352 2.15583 0.95931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20882 -0.01181 -1.00000 - 11799 2002 3 18 16 6 23 373 4.8702 175.76916 2060.53751 1747.81691 -0.02315 2.15618 0.95538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20811 -0.01181 -1.00000 - 11801 2002 3 18 16 6 33 114 4.8701 175.76458 2060.65689 1747.89565 -0.02299 2.15731 0.95147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20740 -0.01181 -1.00000 - 11803 2002 3 18 16 6 42 854 4.8701 175.76000 2060.77455 1747.97398 -0.02261 2.15884 0.94756 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20669 -0.01181 -1.00000 - 11805 2002 3 18 16 6 52 594 4.8701 175.75545 2060.89047 1748.05196 -0.02224 2.16036 0.94366 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20598 -0.01181 -1.00000 - 11807 2002 3 18 16 7 2 334 4.8701 175.75087 2061.00471 1748.12959 -0.02201 2.16152 0.93978 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20527 -0.01180 -1.00000 - 11809 2002 3 18 16 7 12 74 4.8701 175.74628 2061.11737 1748.20682 -0.02167 2.16195 0.93591 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20457 -0.01180 -1.00000 - 11811 2002 3 18 16 7 21 814 4.8701 175.74172 2061.22861 1748.28362 -0.02128 2.16136 0.93205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20386 -0.01180 -1.00000 - 11813 2002 3 18 16 7 31 555 4.8700 175.73714 2061.33866 1748.36008 -0.02104 2.15952 0.92819 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20315 -0.01180 -1.00000 - 11815 2002 3 18 16 7 41 295 4.8700 175.73255 2061.44778 1748.43628 -0.02079 2.15624 0.92435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20244 -0.01180 -1.00000 - 11817 2002 3 18 16 7 51 35 4.8700 175.72797 2061.55629 1748.51229 -0.02041 2.15145 0.92052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20173 -0.01180 -1.00000 - 11819 2002 3 18 16 8 0 775 4.8700 175.72339 2061.66449 1748.58818 -0.02008 2.14513 0.91673 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20102 -0.01180 -1.00000 - 11821 2002 3 18 16 8 10 515 4.8700 175.71879 2061.77271 1748.66387 -0.01989 2.13735 0.91297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.20032 -0.01180 -1.00000 - 11823 2002 3 18 16 8 20 255 4.8700 175.71420 2061.88126 1748.73935 -0.01958 2.12825 0.90926 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19961 -0.01180 -1.00000 - 11826 2002 3 18 16 8 34 865 4.8700 175.70731 2062.04525 1748.85234 -0.01908 2.11267 0.90376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19855 -0.01180 -1.00000 - 11828 2002 3 18 16 8 44 604 4.8699 175.70271 2062.15566 1748.92760 -0.01898 2.10143 0.90015 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19784 -0.01180 -1.00000 - 11830 2002 3 18 16 8 54 344 4.8699 175.69811 2062.26707 1749.00283 -0.01859 2.08992 0.89659 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19713 -0.01179 -1.00000 - 11832 2002 3 18 16 9 4 84 4.8699 175.69351 2062.37951 1749.07805 -0.01819 2.07849 0.89309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19642 -0.01179 -1.00000 - 11834 2002 3 18 16 9 13 824 4.8699 175.68890 2062.49291 1749.15314 -0.01813 2.06748 0.88964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19571 -0.01179 -1.00000 - 11836 2002 3 18 16 9 23 564 4.8699 175.68429 2062.60717 1749.22800 -0.01778 2.05722 0.88623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19500 -0.01179 -1.00000 - 11838 2002 3 18 16 9 33 304 4.8699 175.67967 2062.72206 1749.30267 -0.01732 2.04799 0.88286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19430 -0.01179 -1.00000 - 11840 2002 3 18 16 9 43 43 4.8699 175.67508 2062.83732 1749.37718 -0.01728 2.04002 0.87950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19359 -0.01179 -1.00000 - 11842 2002 3 18 16 9 52 783 4.8699 175.67048 2062.95261 1749.45151 -0.01700 2.03347 0.87616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19288 -0.01179 -1.00000 - 11844 2002 3 18 16 10 2 523 4.8699 175.66587 2063.06760 1749.52565 -0.01650 2.02836 0.87283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19217 -0.01179 -1.00000 - 11846 2002 3 18 16 10 12 262 4.8698 175.66126 2063.18196 1749.59948 -0.01637 2.02458 0.86950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19146 -0.01179 -1.00000 - 11848 2002 3 18 16 10 22 2 4.8698 175.65661 2063.29541 1749.67291 -0.01615 2.02194 0.86617 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19075 -0.01179 -1.00000 - 11850 2002 3 18 16 10 31 742 4.8698 175.65195 2063.40773 1749.74596 -0.01564 2.02020 0.86282 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.19005 -0.01179 -1.00000 - 11852 2002 3 18 16 10 41 481 4.8698 175.64730 2063.51875 1749.81870 -0.01638 2.01907 0.85945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18934 -0.01179 -1.00000 - 11854 2002 3 18 16 10 51 221 4.8698 175.64261 2063.62835 1749.89113 -0.01780 2.01821 0.85605 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18863 -0.01178 -1.00000 - 11856 2002 3 18 16 11 0 961 4.8698 175.63791 2063.73652 1749.96329 -0.01901 2.01728 0.85263 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18792 -0.01178 -1.00000 - 11858 2002 3 18 16 11 10 700 4.8698 175.63324 2063.84330 1750.03509 -0.01993 2.01595 0.84919 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18721 -0.01178 -1.00000 - 11860 2002 3 18 16 11 20 440 4.8698 175.62852 2063.94880 1750.10650 -0.02064 2.01391 0.84573 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18650 -0.01178 -1.00000 - 11862 2002 3 18 16 11 30 179 4.8698 175.62379 2064.05320 1750.17759 -0.02125 2.01089 0.84224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18580 -0.01178 -1.00000 - 11865 2002 3 18 16 11 44 788 4.8698 175.61673 2064.20831 1750.28383 -0.02205 2.00415 0.83698 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18473 -0.01178 -1.00000 - 11867 2002 3 18 16 11 54 528 4.8697 175.61198 2064.31113 1750.35446 -0.02242 1.99803 0.83347 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18403 -0.01178 -1.00000 - 11869 2002 3 18 16 12 4 267 4.8697 175.60724 2064.41383 1750.42500 -0.02256 1.99062 0.82996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18332 -0.01178 -1.00000 - 11871 2002 3 18 16 12 14 7 4.8697 175.60250 2064.51671 1750.49537 -0.02242 1.98203 0.82647 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18261 -0.01178 -1.00000 - 11873 2002 3 18 16 12 23 746 4.8697 175.59772 2064.62000 1750.56551 -0.02210 1.97243 0.82299 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18190 -0.01178 -1.00000 - 11875 2002 3 18 16 12 33 486 4.8697 175.59296 2064.72391 1750.63552 -0.02176 1.96207 0.81952 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18119 -0.01178 -1.00000 - 11877 2002 3 18 16 12 43 225 4.8697 175.58818 2064.82857 1750.70544 -0.02146 1.95126 0.81607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.18048 -0.01178 -1.00000 - 11879 2002 3 18 16 12 52 965 4.8697 175.58337 2064.93404 1750.77532 -0.02119 1.94032 0.81264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17978 -0.01177 -1.00000 - 11881 2002 3 18 16 13 2 704 4.8697 175.57858 2065.04028 1750.84516 -0.02086 1.92957 0.80924 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17907 -0.01177 -1.00000 - 11883 2002 3 18 16 13 12 443 4.8697 175.57377 2065.14718 1750.91486 -0.02047 1.91933 0.80586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17836 -0.01177 -1.00000 - 11885 2002 3 18 16 13 22 183 4.8697 175.56893 2065.25459 1750.98432 -0.02011 1.90984 0.80250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17765 -0.01177 -1.00000 - 11887 2002 3 18 16 13 31 922 4.8697 175.56410 2065.36227 1751.05358 -0.01990 1.90130 0.79915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17694 -0.01177 -1.00000 - 11889 2002 3 18 16 13 41 662 4.8697 175.55926 2065.46997 1751.12268 -0.01983 1.89383 0.79580 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17623 -0.01177 -1.00000 - 11891 2002 3 18 16 13 51 401 4.8697 175.55438 2065.57743 1751.19160 -0.01984 1.88747 0.79246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17553 -0.01177 -1.00000 - 11893 2002 3 18 16 14 1 141 4.8697 175.54951 2065.68437 1751.26035 -0.01980 1.88217 0.78912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17482 -0.01177 -1.00000 - 11895 2002 3 18 16 14 10 880 4.8697 175.54462 2065.79058 1751.32880 -0.01969 1.87780 0.78578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17411 -0.01177 -1.00000 - 11897 2002 3 18 16 14 20 619 4.8697 175.53972 2065.89589 1751.39688 -0.01958 1.87414 0.78244 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17340 -0.01177 -1.00000 - 11899 2002 3 18 16 14 30 359 4.8697 175.53481 2066.00017 1751.46464 -0.01960 1.87098 0.77909 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17269 -0.01177 -1.00000 - 11901 2002 3 18 16 14 40 98 4.8697 175.52988 2066.10338 1751.53213 -0.02006 1.86803 0.77572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17199 -0.01176 -1.00000 - 11904 2002 3 18 16 14 54 707 4.8697 175.52247 2066.25623 1751.63293 -0.02093 1.86345 0.77066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17092 -0.01176 -1.00000 - 11906 2002 3 18 16 15 4 447 4.8697 175.51752 2066.35693 1751.69987 -0.02168 1.85994 0.76728 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.17021 -0.01176 -1.00000 - 11908 2002 3 18 16 15 14 186 4.8697 175.51254 2066.45685 1751.76654 -0.02256 1.85585 0.76391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16951 -0.01176 -1.00000 - 11910 2002 3 18 16 15 23 926 4.8697 175.50757 2066.55654 1751.83311 -0.02352 1.85212 0.76055 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16880 -0.01176 -1.00000 - 11912 2002 3 18 16 15 33 665 4.8697 175.50258 2066.65643 1751.89974 -0.02456 1.84741 0.75721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16809 -0.01176 -1.00000 - 11914 2002 3 18 16 15 43 405 4.8697 175.49757 2066.75664 1751.96646 -0.02567 1.84182 0.75389 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16738 -0.01176 -1.00000 - 11916 2002 3 18 16 15 53 144 4.8697 175.49257 2066.85718 1752.03322 -0.02687 1.83546 0.75060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16667 -0.01176 -1.00000 - 11918 2002 3 18 16 16 2 883 4.8697 175.48755 2066.95803 1752.09998 -0.02817 1.82846 0.74735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16596 -0.01176 -1.00000 - 11920 2002 3 18 16 16 12 623 4.8697 175.48250 2067.05918 1752.16664 -0.02950 1.82092 0.74414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16526 -0.01176 -1.00000 - 11922 2002 3 18 16 16 22 362 4.8697 175.47745 2067.16065 1752.23310 -0.03083 1.81300 0.74098 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16455 -0.01176 -1.00000 - 11924 2002 3 18 16 16 32 102 4.8698 175.47236 2067.26247 1752.29940 -0.03219 1.80484 0.73785 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16384 -0.01176 -1.00000 - 11926 2002 3 18 16 16 41 842 4.8698 175.46724 2067.36464 1752.36559 -0.03356 1.79659 0.73475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16313 -0.01175 -1.00000 - 11928 2002 3 18 16 16 51 581 4.8698 175.46211 2067.46721 1752.43169 -0.03495 1.78841 0.73170 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16242 -0.01175 -1.00000 - 11930 2002 3 18 16 17 1 321 4.8698 175.45698 2067.57017 1752.49770 -0.03634 1.78045 0.72868 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16172 -0.01175 -1.00000 - 11932 2002 3 18 16 17 11 60 4.8698 175.45181 2067.67351 1752.56351 -0.03770 1.77287 0.72571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16101 -0.01175 -1.00000 - 11934 2002 3 18 16 17 20 800 4.8698 175.44664 2067.77720 1752.62903 -0.03904 1.76580 0.72277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.16030 -0.01175 -1.00000 - 11936 2002 3 18 16 17 30 539 4.8698 175.44147 2067.88117 1752.69429 -0.04037 1.75939 0.71985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15959 -0.01175 -1.00000 - 11938 2002 3 18 16 17 40 279 4.8698 175.43628 2067.98532 1752.75934 -0.04165 1.75376 0.71694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15888 -0.01175 -1.00000 - 11940 2002 3 18 16 17 50 19 4.8698 175.43109 2068.08951 1752.82418 -0.04288 1.74900 0.71404 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15817 -0.01175 -1.00000 - 11943 2002 3 18 16 18 4 628 4.8698 175.42329 2068.24554 1752.92100 -0.04463 1.74362 0.70968 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15711 -0.01175 -1.00000 - 11945 2002 3 18 16 18 14 368 4.8698 175.41807 2068.34910 1752.98512 -0.04570 1.74121 0.70677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15640 -0.01175 -1.00000 - 11947 2002 3 18 16 18 24 107 4.8699 175.41284 2068.45208 1753.04878 -0.04662 1.73971 0.70383 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15569 -0.01175 -1.00000 - 11949 2002 3 18 16 18 33 847 4.8699 175.40760 2068.55429 1753.11202 -0.04735 1.73899 0.70085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15499 -0.01174 -1.00000 - 11951 2002 3 18 16 18 43 587 4.8699 175.40235 2068.65557 1753.17488 -0.04796 1.73891 0.69781 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15428 -0.01174 -1.00000 - 11953 2002 3 18 16 18 53 327 4.8699 175.39710 2068.75581 1753.23739 -0.04852 1.73928 0.69472 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15357 -0.01174 -1.00000 - 11955 2002 3 18 16 19 3 66 4.8699 175.39183 2068.85493 1753.29955 -0.04906 1.73987 0.69155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15286 -0.01174 -1.00000 - 11957 2002 3 18 16 19 12 806 4.8699 175.38655 2068.95289 1753.36128 -0.04956 1.74046 0.68832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15215 -0.01174 -1.00000 - 11959 2002 3 18 16 19 22 546 4.8699 175.38126 2069.04973 1753.42250 -0.05003 1.74080 0.68500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15144 -0.01174 -1.00000 - 11961 2002 3 18 16 19 32 286 4.8699 175.37597 2069.14550 1753.48330 -0.05053 1.74066 0.68159 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15074 -0.01174 -1.00000 - 11963 2002 3 18 16 19 42 26 4.8699 175.37066 2069.24030 1753.54375 -0.05115 1.73985 0.67807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.15003 -0.01174 -1.00000 - 11965 2002 3 18 16 19 51 766 4.8700 175.36535 2069.33424 1753.60389 -0.05191 1.73823 0.67446 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14932 -0.01174 -1.00000 - 11967 2002 3 18 16 20 1 506 4.8700 175.36004 2069.42742 1753.66377 -0.05281 1.73571 0.67075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14861 -0.01174 -1.00000 - 11969 2002 3 18 16 20 11 246 4.8700 175.35472 2069.51993 1753.72332 -0.05376 1.73226 0.66695 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14790 -0.01174 -1.00000 - 11971 2002 3 18 16 20 20 986 4.8700 175.34938 2069.61181 1753.78248 -0.05465 1.72787 0.66304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14720 -0.01174 -1.00000 - 11973 2002 3 18 16 20 30 726 4.8700 175.34405 2069.70311 1753.84134 -0.05539 1.72258 0.65904 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14649 -0.01173 -1.00000 - 11975 2002 3 18 16 20 40 466 4.8700 175.33871 2069.79384 1753.89999 -0.05594 1.71642 0.65492 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14578 -0.01173 -1.00000 - 11977 2002 3 18 16 20 50 206 4.8700 175.33336 2069.88399 1753.95848 -0.05635 1.70942 0.65072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14507 -0.01173 -1.00000 - 11980 2002 3 18 16 21 4 816 4.8700 175.32533 2070.01819 1754.04601 -0.05689 1.69735 0.64427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14401 -0.01173 -1.00000 - 11982 2002 3 18 16 21 14 556 4.8701 175.31996 2070.10701 1754.10415 -0.05730 1.68821 0.63988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14330 -0.01173 -1.00000 - 11984 2002 3 18 16 21 24 296 4.8701 175.31459 2070.19539 1754.16205 -0.05777 1.67817 0.63544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14259 -0.01173 -1.00000 - 11986 2002 3 18 16 21 34 36 4.8701 175.30921 2070.28344 1754.21981 -0.05831 1.66720 0.63095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14188 -0.01173 -1.00000 - 11988 2002 3 18 16 21 43 776 4.8701 175.30383 2070.37131 1754.27751 -0.05891 1.65527 0.62642 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14117 -0.01173 -1.00000 - 11990 2002 3 18 16 21 53 517 4.8701 175.29844 2070.45913 1754.33522 -0.05959 1.64243 0.62187 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.14047 -0.01173 -1.00000 - 11992 2002 3 18 16 22 3 257 4.8701 175.29304 2070.54707 1754.39296 -0.06036 1.62874 0.61732 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13976 -0.01173 -1.00000 - 11994 2002 3 18 16 22 12 997 4.8701 175.28763 2070.63530 1754.45067 -0.06120 1.61429 0.61279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13905 -0.01173 -1.00000 - 11996 2002 3 18 16 22 22 737 4.8702 175.28220 2070.72396 1754.50828 -0.06206 1.59921 0.60829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13834 -0.01172 -1.00000 - 11998 2002 3 18 16 22 32 478 4.8702 175.27678 2070.81322 1754.56588 -0.06293 1.58366 0.60384 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13763 -0.01172 -1.00000 - 12000 2002 3 18 16 22 42 218 4.8702 175.27135 2070.90319 1754.62353 -0.06376 1.56784 0.59943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13692 -0.01172 -1.00000 - 12002 2002 3 18 16 22 51 959 4.8702 175.26591 2070.99397 1754.68125 -0.06460 1.55200 0.59509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13622 -0.01172 -1.00000 - 12004 2002 3 18 16 23 1 699 4.8702 175.26046 2071.08561 1754.73905 -0.06549 1.53637 0.59083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13551 -0.01172 -1.00000 - 12006 2002 3 18 16 23 11 439 4.8702 175.25500 2071.17813 1754.79683 -0.06640 1.52122 0.58666 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13480 -0.01172 -1.00000 - 12008 2002 3 18 16 23 21 180 4.8703 175.24953 2071.27151 1754.85448 -0.06724 1.50678 0.58258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13409 -0.01172 -1.00000 - 12010 2002 3 18 16 23 30 921 4.8703 175.24406 2071.36571 1754.91205 -0.06792 1.49328 0.57858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13338 -0.01172 -1.00000 - 12012 2002 3 18 16 23 40 661 4.8703 175.23859 2071.46064 1754.96956 -0.06908 1.48095 0.57467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13267 -0.01172 -1.00000 - 12014 2002 3 18 16 23 50 402 4.8703 175.23310 2071.55617 1755.02700 -0.07009 1.46996 0.57085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13197 -0.01172 -1.00000 - 12016 2002 3 18 16 24 0 142 4.8703 175.22762 2071.65212 1755.08435 -0.07097 1.46047 0.56712 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13126 -0.01172 -1.00000 - 12019 2002 3 18 16 24 14 753 4.8704 175.21937 2071.79633 1755.16990 -0.07218 1.44931 0.56169 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.13020 -0.01172 -1.00000 - 12021 2002 3 18 16 24 24 494 4.8704 175.21386 2071.89223 1755.22649 -0.07302 1.44401 0.55817 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12949 -0.01171 -1.00000 - 12023 2002 3 18 16 24 34 235 4.8704 175.20836 2071.98758 1755.28277 -0.07389 1.44042 0.55470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12878 -0.01171 -1.00000 - 12025 2002 3 18 16 24 43 976 4.8704 175.20284 2072.08206 1755.33873 -0.07471 1.43848 0.55129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12807 -0.01171 -1.00000 - 12027 2002 3 18 16 24 53 717 4.8704 175.19732 2072.17536 1755.39438 -0.07548 1.43800 0.54793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12736 -0.01171 -1.00000 - 12029 2002 3 18 16 25 3 458 4.8705 175.19179 2072.26726 1755.44969 -0.07623 1.43870 0.54461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12665 -0.01171 -1.00000 - 12031 2002 3 18 16 25 13 199 4.8705 175.18624 2072.35765 1755.50454 -0.07709 1.44024 0.54135 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12594 -0.01171 -1.00000 - 12033 2002 3 18 16 25 22 940 4.8705 175.18065 2072.44650 1755.55883 -0.07815 1.44219 0.53811 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12524 -0.01171 -1.00000 - 12035 2002 3 18 16 25 32 681 4.8705 175.17503 2072.53391 1755.61264 -0.07942 1.44416 0.53490 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12453 -0.01171 -1.00000 - 12037 2002 3 18 16 25 42 422 4.8706 175.16938 2072.62002 1755.66604 -0.08079 1.44575 0.53170 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12382 -0.01171 -1.00000 - 12039 2002 3 18 16 25 52 163 4.8706 175.16373 2072.70509 1755.71909 -0.08216 1.44666 0.52850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12311 -0.01171 -1.00000 - 12041 2002 3 18 16 26 1 904 4.8706 175.15809 2072.78933 1755.77181 -0.08350 1.44668 0.52532 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12240 -0.01171 -1.00000 - 12043 2002 3 18 16 26 11 645 4.8706 175.15245 2072.87299 1755.82414 -0.08488 1.44571 0.52214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12169 -0.01171 -1.00000 - 12045 2002 3 18 16 26 21 387 4.8706 175.14680 2072.95624 1755.87601 -0.08639 1.44380 0.51896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12099 -0.01170 -1.00000 - 12047 2002 3 18 16 26 31 128 4.8707 175.14115 2073.03918 1755.92752 -0.08803 1.44104 0.51576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.12028 -0.01170 -1.00000 - 12049 2002 3 18 16 26 40 869 4.8707 175.13550 2073.12184 1755.97874 -0.08965 1.43762 0.51254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11957 -0.01170 -1.00000 - 12051 2002 3 18 16 26 50 611 4.8707 175.12985 2073.20418 1756.02973 -0.09113 1.43367 0.50928 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11886 -0.01170 -1.00000 - 12053 2002 3 18 16 27 0 352 4.8707 175.12418 2073.28614 1756.08050 -0.09247 1.42933 0.50601 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11815 -0.01170 -1.00000 - 12055 2002 3 18 16 27 10 94 4.8708 175.11851 2073.36763 1756.13097 -0.09379 1.42466 0.50270 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11744 -0.01170 -1.00000 - 12058 2002 3 18 16 27 24 706 4.8708 175.10999 2073.48885 1756.20602 -0.09595 1.41700 0.49767 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11638 -0.01170 -1.00000 - 12060 2002 3 18 16 27 34 448 4.8708 175.10430 2073.56899 1756.25573 -0.09742 1.41135 0.49426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11567 -0.01170 -1.00000 - 12062 2002 3 18 16 27 44 189 4.8709 175.09861 2073.64865 1756.30526 -0.09874 1.40517 0.49081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11496 -0.01170 -1.00000 - 12064 2002 3 18 16 27 53 931 4.8709 175.09291 2073.72794 1756.35464 -0.09989 1.39833 0.48733 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11426 -0.01170 -1.00000 - 12066 2002 3 18 16 28 3 673 4.8709 175.08719 2073.80704 1756.40391 -0.10156 1.39079 0.48382 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11355 -0.01170 -1.00000 - 12068 2002 3 18 16 28 13 415 4.8709 175.08147 2073.88611 1756.45297 -0.10338 1.38254 0.48029 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11284 -0.01169 -1.00000 - 12070 2002 3 18 16 28 23 157 4.8710 175.07574 2073.96533 1756.50174 -0.10500 1.37363 0.47674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11213 -0.01169 -1.00000 - 12072 2002 3 18 16 28 32 899 4.8710 175.07001 2074.04484 1756.55031 -0.10660 1.36418 0.47316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11142 -0.01169 -1.00000 - 12074 2002 3 18 16 28 42 641 4.8710 175.06427 2074.12476 1756.59876 -0.10833 1.35435 0.46957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11071 -0.01169 -1.00000 - 12076 2002 3 18 16 28 52 383 4.8711 175.05852 2074.20515 1756.64712 -0.11022 1.34432 0.46595 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.11001 -0.01169 -1.00000 - 12078 2002 3 18 16 29 2 125 4.8711 175.05277 2074.28601 1756.69541 -0.11219 1.33429 0.46231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10930 -0.01169 -1.00000 - 12080 2002 3 18 16 29 11 867 4.8711 175.04700 2074.36728 1756.74351 -0.11407 1.32446 0.45866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10859 -0.01169 -1.00000 - 12082 2002 3 18 16 29 21 609 4.8711 175.04123 2074.44886 1756.79134 -0.11581 1.31504 0.45499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10788 -0.01169 -1.00000 - 12084 2002 3 18 16 29 31 352 4.8712 175.03546 2074.53057 1756.83895 -0.11741 1.30619 0.45128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10717 -0.01169 -1.00000 - 12086 2002 3 18 16 29 41 94 4.8712 175.02968 2074.61221 1756.88638 -0.11892 1.29803 0.44753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10646 -0.01169 -1.00000 - 12088 2002 3 18 16 29 50 837 4.8712 175.02389 2074.69358 1756.93365 -0.12030 1.29060 0.44374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10575 -0.01169 -1.00000 - 12090 2002 3 18 16 30 0 579 4.8713 175.01811 2074.77447 1756.98077 -0.12149 1.28387 0.43993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10505 -0.01169 -1.00000 - 12092 2002 3 18 16 30 10 322 4.8713 175.01230 2074.85474 1757.02761 -0.12240 1.27773 0.43608 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10434 -0.01168 -1.00000 - 12094 2002 3 18 16 30 20 64 4.8713 175.00650 2074.93465 1757.07430 -0.12307 1.27310 0.43220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10363 -0.01168 -1.00000 - 12097 2002 3 18 16 30 34 678 4.8714 174.99778 2075.05408 1757.14431 -0.12394 1.26617 0.42634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10257 -0.01168 -1.00000 - 12099 2002 3 18 16 30 44 421 4.8714 174.99196 2075.13329 1757.19095 -0.12458 1.26143 0.42241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10186 -0.01168 -1.00000 - 12101 2002 3 18 16 30 54 164 4.8714 174.98613 2075.21207 1757.23752 -0.12528 1.25643 0.41847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10115 -0.01168 -1.00000 - 12103 2002 3 18 16 31 3 907 4.8715 174.98029 2075.29039 1757.28400 -0.12598 1.25102 0.41453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.10044 -0.01168 -1.00000 - 12105 2002 3 18 16 31 13 650 4.8715 174.97445 2075.36827 1757.33024 -0.12665 1.24508 0.41059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09973 -0.01168 -1.00000 - 12107 2002 3 18 16 31 23 393 4.8715 174.96859 2075.44579 1757.37617 -0.12737 1.23854 0.40665 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09902 -0.01168 -1.00000 - 12109 2002 3 18 16 31 33 136 4.8716 174.96274 2075.52306 1757.42185 -0.12830 1.23136 0.40271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09831 -0.01168 -1.00000 - 12111 2002 3 18 16 31 42 880 4.8716 174.95688 2075.60019 1757.46737 -0.12951 1.22355 0.39877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09761 -0.01168 -1.00000 - 12113 2002 3 18 16 31 52 623 4.8717 174.95101 2075.67731 1757.51276 -0.13094 1.21519 0.39483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09690 -0.01168 -1.00000 - 12115 2002 3 18 16 32 2 366 4.8717 174.94513 2075.75452 1757.55805 -0.13245 1.20638 0.39091 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09619 -0.01167 -1.00000 - 12117 2002 3 18 16 32 12 110 4.8717 174.93925 2075.83188 1757.60313 -0.13390 1.19724 0.38701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09548 -0.01167 -1.00000 - 12119 2002 3 18 16 32 21 853 4.8718 174.93336 2075.90945 1757.64794 -0.13529 1.18792 0.38312 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09477 -0.01167 -1.00000 - 12121 2002 3 18 16 32 31 597 4.8718 174.92746 2075.98723 1757.69253 -0.13676 1.17858 0.37925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09406 -0.01167 -1.00000 - 12123 2002 3 18 16 32 41 340 4.8718 174.92157 2076.06519 1757.73697 -0.13839 1.16935 0.37538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09336 -0.01167 -1.00000 - 12125 2002 3 18 16 32 51 84 4.8719 174.91566 2076.14325 1757.78128 -0.14019 1.16038 0.37152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09265 -0.01167 -1.00000 - 12127 2002 3 18 16 33 0 828 4.8719 174.90975 2076.22132 1757.82547 -0.14207 1.15177 0.36768 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09194 -0.01167 -1.00000 - 12129 2002 3 18 16 33 10 572 4.8719 174.90383 2076.29927 1757.86942 -0.14391 1.14360 0.36385 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09123 -0.01167 -1.00000 - 12131 2002 3 18 16 33 20 316 4.8720 174.89791 2076.37695 1757.91303 -0.14567 1.13590 0.36004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.09052 -0.01167 -1.00000 - 12133 2002 3 18 16 33 30 60 4.8720 174.89198 2076.45426 1757.95638 -0.14741 1.12868 0.35623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08981 -0.01167 -1.00000 - 12136 2002 3 18 16 33 44 676 4.8721 174.88308 2076.56927 1758.02100 -0.15017 1.11862 0.35052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08875 -0.01167 -1.00000 - 12138 2002 3 18 16 33 54 420 4.8721 174.87713 2076.64525 1758.06385 -0.15265 1.11229 0.34672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08804 -0.01167 -1.00000 - 12140 2002 3 18 16 34 4 164 4.8722 174.87118 2076.72068 1758.10653 -0.15508 1.10610 0.34293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08733 -0.01166 -1.00000 - 12142 2002 3 18 16 34 13 909 4.8722 174.86523 2076.79562 1758.14892 -0.15755 1.09993 0.33916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08662 -0.01166 -1.00000 - 12144 2002 3 18 16 34 23 653 4.8722 174.85927 2076.87018 1758.19093 -0.16007 1.09366 0.33540 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08591 -0.01166 -1.00000 - 12146 2002 3 18 16 34 33 398 4.8723 174.85330 2076.94448 1758.23263 -0.16262 1.08722 0.33165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08521 -0.01166 -1.00000 - 12148 2002 3 18 16 34 43 142 4.8723 174.84734 2077.01863 1758.27411 -0.16511 1.08059 0.32789 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08450 -0.01166 -1.00000 - 12150 2002 3 18 16 34 52 887 4.8724 174.84136 2077.09275 1758.31539 -0.16758 1.07381 0.32414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08379 -0.01166 -1.00000 - 12152 2002 3 18 16 35 2 632 4.8724 174.83538 2077.16687 1758.35650 -0.17013 1.06698 0.32039 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08308 -0.01166 -1.00000 - 12154 2002 3 18 16 35 12 377 4.8724 174.82939 2077.24098 1758.39731 -0.17283 1.06024 0.31664 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08237 -0.01166 -1.00000 - 12156 2002 3 18 16 35 22 122 4.8725 174.82340 2077.31501 1758.43775 -0.17566 1.05372 0.31289 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08166 -0.01166 -1.00000 - 12158 2002 3 18 16 35 31 867 4.8725 174.81740 2077.38886 1758.47787 -0.17851 1.04755 0.30912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08095 -0.01166 -1.00000 - 12160 2002 3 18 16 35 41 612 4.8726 174.81141 2077.46236 1758.51774 -0.18126 1.04183 0.30532 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.08025 -0.01166 -1.00000 - 12162 2002 3 18 16 35 51 357 4.8726 174.80540 2077.53535 1758.55737 -0.18390 1.03658 0.30151 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07954 -0.01165 -1.00000 - 12164 2002 3 18 16 36 1 102 4.8727 174.79939 2077.60769 1758.59678 -0.18655 1.03175 0.29767 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07883 -0.01165 -1.00000 - 12166 2002 3 18 16 36 10 848 4.8727 174.79337 2077.67925 1758.63584 -0.18929 1.02722 0.29381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07812 -0.01165 -1.00000 - 12168 2002 3 18 16 36 20 593 4.8727 174.78735 2077.74997 1758.67447 -0.19214 1.02284 0.28991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07741 -0.01165 -1.00000 - 12170 2002 3 18 16 36 30 339 4.8728 174.78132 2077.81985 1758.71275 -0.19502 1.01840 0.28598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07670 -0.01165 -1.00000 - 12172 2002 3 18 16 36 40 84 4.8728 174.77529 2077.88891 1758.75075 -0.19779 1.01371 0.28202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07599 -0.01165 -1.00000 - 12175 2002 3 18 16 36 54 703 4.8729 174.76623 2077.99119 1758.80733 -0.20163 1.00586 0.27600 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07493 -0.01165 -1.00000 - 12177 2002 3 18 16 37 4 449 4.8729 174.76018 2078.05868 1758.84481 -0.20408 0.99990 0.27196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07422 -0.01165 -1.00000 - 12179 2002 3 18 16 37 14 195 4.8730 174.75413 2078.12578 1758.88199 -0.20650 0.99330 0.26790 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07351 -0.01165 -1.00000 - 12181 2002 3 18 16 37 23 941 4.8730 174.74807 2078.19262 1758.91880 -0.20886 0.98605 0.26381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07280 -0.01165 -1.00000 - 12183 2002 3 18 16 37 33 687 4.8731 174.74201 2078.25931 1758.95532 -0.21111 0.97822 0.25969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07209 -0.01165 -1.00000 - 12185 2002 3 18 16 37 43 433 4.8731 174.73594 2078.32595 1758.99165 -0.21320 0.96991 0.25554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07139 -0.01165 -1.00000 - 12187 2002 3 18 16 37 53 180 4.8732 174.72987 2078.39257 1759.02783 -0.21514 0.96123 0.25137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.07068 -0.01164 -1.00000 - 12189 2002 3 18 16 38 2 926 4.8732 174.72379 2078.45919 1759.06389 -0.21703 0.95232 0.24718 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06997 -0.01164 -1.00000 - 12191 2002 3 18 16 38 12 672 4.8733 174.71770 2078.52579 1759.09970 -0.21893 0.94331 0.24298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06926 -0.01164 -1.00000 - 12193 2002 3 18 16 38 22 419 4.8733 174.71161 2078.59232 1759.13519 -0.22083 0.93430 0.23875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06855 -0.01164 -1.00000 - 12195 2002 3 18 16 38 32 166 4.8734 174.70552 2078.65871 1759.17044 -0.22265 0.92538 0.23451 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06784 -0.01164 -1.00000 - 12197 2002 3 18 16 38 41 913 4.8734 174.69942 2078.72487 1759.20550 -0.22431 0.91661 0.23025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06713 -0.01164 -1.00000 - 12199 2002 3 18 16 38 51 660 4.8735 174.69332 2078.79072 1759.24041 -0.22587 0.90801 0.22597 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06642 -0.01164 -1.00000 - 12201 2002 3 18 16 39 1 407 4.8735 174.68722 2078.85618 1759.27519 -0.22806 0.89957 0.22168 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06572 -0.01164 -1.00000 - 12203 2002 3 18 16 39 11 154 4.8736 174.68110 2078.92116 1759.30972 -0.23014 0.89126 0.21740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06501 -0.01164 -1.00000 - 12205 2002 3 18 16 39 20 901 4.8736 174.67499 2078.98564 1759.34392 -0.23219 0.88300 0.21311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06430 -0.01164 -1.00000 - 12207 2002 3 18 16 39 30 648 4.8737 174.66887 2079.04959 1759.37785 -0.23433 0.87472 0.20882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06359 -0.01164 -1.00000 - 12209 2002 3 18 16 39 40 396 4.8737 174.66275 2079.11304 1759.41161 -0.23661 0.86632 0.20453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06288 -0.01164 -1.00000 - 12211 2002 3 18 16 39 50 143 4.8738 174.65662 2079.17604 1759.44523 -0.23896 0.85770 0.20025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06217 -0.01163 -1.00000 - 12214 2002 3 18 16 40 4 765 4.8739 174.64742 2079.26983 1759.49546 -0.24239 0.84425 0.19388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06111 -0.01163 -1.00000 - 12216 2002 3 18 16 40 14 513 4.8739 174.64129 2079.33203 1759.52870 -0.24459 0.83488 0.18967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.06040 -0.01163 -1.00000 - 12218 2002 3 18 16 40 24 260 4.8740 174.63514 2079.39407 1759.56163 -0.24687 0.82519 0.18550 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05969 -0.01163 -1.00000 - 12220 2002 3 18 16 40 34 8 4.8740 174.62900 2079.45606 1759.59435 -0.24934 0.81524 0.18136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05898 -0.01163 -1.00000 - 12222 2002 3 18 16 40 43 757 4.8741 174.62285 2079.51808 1759.62692 -0.25198 0.80511 0.17726 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05827 -0.01163 -1.00000 - 12224 2002 3 18 16 40 53 505 4.8741 174.61670 2079.58021 1759.65939 -0.25470 0.79488 0.17321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05756 -0.01163 -1.00000 - 12226 2002 3 18 16 41 3 253 4.8742 174.61054 2079.64248 1759.69178 -0.25738 0.78468 0.16920 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05685 -0.01163 -1.00000 - 12228 2002 3 18 16 41 13 2 4.8742 174.60438 2079.70494 1759.72397 -0.26006 0.77463 0.16526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05615 -0.01163 -1.00000 - 12230 2002 3 18 16 41 22 750 4.8743 174.59822 2079.76759 1759.75586 -0.26290 0.76484 0.16138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05544 -0.01163 -1.00000 - 12232 2002 3 18 16 41 32 499 4.8743 174.59205 2079.83043 1759.78751 -0.26602 0.75540 0.15754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05473 -0.01163 -1.00000 - 12234 2002 3 18 16 41 42 247 4.8744 174.58588 2079.89344 1759.81899 -0.26941 0.74640 0.15374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05402 -0.01162 -1.00000 - 12236 2002 3 18 16 41 51 996 4.8745 174.57970 2079.95653 1759.85032 -0.27293 0.73798 0.15000 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05331 -0.01162 -1.00000 - 12238 2002 3 18 16 42 1 745 4.8745 174.57353 2080.01962 1759.88150 -0.27643 0.73030 0.14631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05260 -0.01162 -1.00000 - 12240 2002 3 18 16 42 11 494 4.8746 174.56734 2080.08258 1759.91238 -0.27985 0.72349 0.14267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05189 -0.01162 -1.00000 - 12242 2002 3 18 16 42 21 244 4.8746 174.56115 2080.14529 1759.94285 -0.28327 0.71757 0.13908 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05118 -0.01162 -1.00000 - 12244 2002 3 18 16 42 30 993 4.8747 174.55496 2080.20762 1759.97298 -0.28680 0.71249 0.13551 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.05047 -0.01162 -1.00000 - 12246 2002 3 18 16 42 40 742 4.8747 174.54877 2080.26947 1760.00281 -0.29047 0.70819 0.13198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04977 -0.01162 -1.00000 - 12248 2002 3 18 16 42 50 492 4.8748 174.54257 2080.33079 1760.03236 -0.29415 0.70454 0.12847 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04906 -0.01162 -1.00000 - 12250 2002 3 18 16 43 0 242 4.8749 174.53637 2080.39149 1760.06164 -0.29769 0.70144 0.12498 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04835 -0.01162 -1.00000 - 12253 2002 3 18 16 43 14 866 4.8749 174.52706 2080.48129 1760.10477 -0.30261 0.69753 0.11979 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04728 -0.01162 -1.00000 - 12255 2002 3 18 16 43 24 616 4.8750 174.52085 2080.54028 1760.13291 -0.30573 0.69525 0.11632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04657 -0.01162 -1.00000 - 12257 2002 3 18 16 43 34 367 4.8751 174.51464 2080.59853 1760.16068 -0.30889 0.69308 0.11284 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04587 -0.01161 -1.00000 - 12259 2002 3 18 16 43 44 117 4.8751 174.50842 2080.65604 1760.18811 -0.31207 0.69090 0.10934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04516 -0.01161 -1.00000 - 12261 2002 3 18 16 43 53 867 4.8752 174.50221 2080.71281 1760.21524 -0.31515 0.68860 0.10581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04445 -0.01161 -1.00000 - 12263 2002 3 18 16 44 3 618 4.8752 174.49599 2080.76884 1760.24208 -0.31802 0.68607 0.10225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04374 -0.01161 -1.00000 - 12265 2002 3 18 16 44 13 368 4.8753 174.48976 2080.82415 1760.26852 -0.32073 0.68321 0.09866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04303 -0.01161 -1.00000 - 12267 2002 3 18 16 44 23 119 4.8754 174.48353 2080.87877 1760.29446 -0.32344 0.67993 0.09503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04232 -0.01161 -1.00000 - 12269 2002 3 18 16 44 32 870 4.8754 174.47730 2080.93272 1760.31999 -0.32631 0.67616 0.09133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04161 -0.01161 -1.00000 - 12271 2002 3 18 16 44 42 621 4.8755 174.47107 2080.98602 1760.34522 -0.32933 0.67183 0.08758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04090 -0.01161 -1.00000 - 12273 2002 3 18 16 44 52 372 4.8756 174.46484 2081.03872 1760.37020 -0.33235 0.66690 0.08375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.04019 -0.01161 -1.00000 - 12275 2002 3 18 16 45 2 123 4.8756 174.45860 2081.09084 1760.39497 -0.33524 0.66132 0.07987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03948 -0.01161 -1.00000 - 12277 2002 3 18 16 45 11 874 4.8757 174.45236 2081.14246 1760.41942 -0.33801 0.65507 0.07592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03877 -0.01161 -1.00000 - 12279 2002 3 18 16 45 21 626 4.8757 174.44611 2081.19397 1760.44368 -0.34083 0.64922 0.07192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03807 -0.01161 -1.00000 - 12281 2002 3 18 16 45 31 377 4.8758 174.43986 2081.24558 1760.46790 -0.34377 0.64239 0.06785 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03736 -0.01160 -1.00000 - 12283 2002 3 18 16 45 41 129 4.8759 174.43361 2081.29732 1760.49212 -0.34684 0.63470 0.06374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03665 -0.01160 -1.00000 - 12285 2002 3 18 16 45 50 881 4.8759 174.42736 2081.34917 1760.51632 -0.34990 0.62627 0.05958 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03594 -0.01160 -1.00000 - 12287 2002 3 18 16 46 0 633 4.8760 174.42111 2081.40113 1760.54048 -0.35286 0.61714 0.05537 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03523 -0.01160 -1.00000 - 12289 2002 3 18 16 46 10 385 4.8761 174.41485 2081.45317 1760.56448 -0.35572 0.60740 0.05114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03452 -0.01160 -1.00000 - 12291 2002 3 18 16 46 20 137 4.8761 174.40859 2081.50533 1760.58821 -0.35861 0.59711 0.04688 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03381 -0.01160 -1.00000 - 12294 2002 3 18 16 46 34 766 4.8762 174.39919 2081.58381 1760.62347 -0.36311 0.58092 0.04042 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03275 -0.01160 -1.00000 - 12296 2002 3 18 16 46 44 518 4.8763 174.39293 2081.63633 1760.64684 -0.36613 0.56980 0.03608 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03204 -0.01160 -1.00000 - 12298 2002 3 18 16 46 54 271 4.8764 174.38666 2081.68903 1760.67013 -0.36907 0.55859 0.03173 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03133 -0.01160 -1.00000 - 12300 2002 3 18 16 47 4 24 4.8764 174.38039 2081.74188 1760.69337 -0.37192 0.54741 0.02737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.03062 -0.01160 -1.00000 - 12302 2002 3 18 16 47 13 777 4.8765 174.37412 2081.79484 1760.71639 -0.37468 0.53643 0.02302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02991 -0.01160 -1.00000 - 12304 2002 3 18 16 47 23 530 4.8766 174.36784 2081.84787 1760.73910 -0.37743 0.52574 0.01867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02920 -0.01159 -1.00000 - 12306 2002 3 18 16 47 33 283 4.8766 174.36156 2081.90089 1760.76156 -0.38019 0.51545 0.01431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02849 -0.01159 -1.00000 - 12308 2002 3 18 16 47 43 36 4.8767 174.35529 2081.95384 1760.78383 -0.38295 0.50562 0.00996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02778 -0.01159 -1.00000 - 12310 2002 3 18 16 47 52 790 4.8768 174.34901 2082.00666 1760.80596 -0.38567 0.49629 0.00562 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02707 -0.01159 -1.00000 - 12312 2002 3 18 16 48 2 543 4.8768 174.34272 2082.05925 1760.82795 -0.38854 0.48749 0.00129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02636 -0.01159 -1.00000 - 12314 2002 3 18 16 48 12 297 4.8769 174.33644 2082.11153 1760.84965 -0.39183 0.47924 -0.00302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02565 -0.01159 -1.00000 - 12316 2002 3 18 16 48 22 51 4.8770 174.33015 2082.16342 1760.87097 -0.39512 0.47150 -0.00731 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02494 -0.01159 -1.00000 - 12318 2002 3 18 16 48 31 805 4.8770 174.32386 2082.21485 1760.89196 -0.39839 0.46424 -0.01159 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02424 -0.01159 -1.00000 - 12320 2002 3 18 16 48 41 559 4.8771 174.31757 2082.26576 1760.91271 -0.40169 0.45739 -0.01586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02353 -0.01159 -1.00000 - 12322 2002 3 18 16 48 51 314 4.8772 174.31128 2082.31612 1760.93323 -0.40506 0.45088 -0.02012 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02282 -0.01159 -1.00000 - 12324 2002 3 18 16 49 1 68 4.8773 174.30499 2082.36591 1760.95355 -0.40851 0.44461 -0.02435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02211 -0.01159 -1.00000 - 12326 2002 3 18 16 49 10 823 4.8773 174.29869 2082.41514 1760.97353 -0.41197 0.43846 -0.02857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02140 -0.01159 -1.00000 - 12328 2002 3 18 16 49 20 578 4.8774 174.29239 2082.46383 1760.99308 -0.41536 0.43233 -0.03277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.02069 -0.01158 -1.00000 - 12330 2002 3 18 16 49 30 333 4.8775 174.28610 2082.51200 1761.01227 -0.41868 0.42617 -0.03696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01998 -0.01158 -1.00000 - 12332 2002 3 18 16 49 40 88 4.8776 174.27980 2082.55967 1761.03120 -0.42205 0.41992 -0.04115 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01927 -0.01158 -1.00000 - 12335 2002 3 18 16 49 54 721 4.8777 174.27035 2082.63030 1761.05918 -0.42739 0.41032 -0.04742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01821 -0.01158 -1.00000 - 12337 2002 3 18 16 50 4 476 4.8777 174.26405 2082.67682 1761.07759 -0.43107 0.40374 -0.05158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01750 -0.01158 -1.00000 - 12339 2002 3 18 16 50 14 232 4.8778 174.25775 2082.72291 1761.09566 -0.43474 0.39699 -0.05572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01679 -0.01158 -1.00000 - 12341 2002 3 18 16 50 23 987 4.8779 174.25144 2082.76861 1761.11331 -0.43841 0.39007 -0.05986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01608 -0.01158 -1.00000 - 12343 2002 3 18 16 50 33 743 4.8780 174.24514 2082.81393 1761.13061 -0.44218 0.38297 -0.06399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01537 -0.01158 -1.00000 - 12345 2002 3 18 16 50 43 499 4.8780 174.23883 2082.85890 1761.14767 -0.44609 0.37571 -0.06813 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01466 -0.01158 -1.00000 - 12347 2002 3 18 16 50 53 255 4.8781 174.23253 2082.90357 1761.16452 -0.45009 0.36827 -0.07226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01395 -0.01158 -1.00000 - 12349 2002 3 18 16 51 3 12 4.8782 174.22622 2082.94796 1761.18119 -0.45410 0.36066 -0.07638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01324 -0.01158 -1.00000 - 12351 2002 3 18 16 51 12 768 4.8783 174.21991 2082.99208 1761.19756 -0.45809 0.35289 -0.08049 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01253 -0.01158 -1.00000 - 12353 2002 3 18 16 51 22 525 4.8783 174.21360 2083.03598 1761.21353 -0.46208 0.34500 -0.08459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01182 -0.01157 -1.00000 - 12355 2002 3 18 16 51 32 282 4.8784 174.20729 2083.07966 1761.22920 -0.46603 0.33703 -0.08870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01111 -0.01157 -1.00000 - 12357 2002 3 18 16 51 42 39 4.8785 174.20098 2083.12312 1761.24463 -0.46996 0.32905 -0.09281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.01040 -0.01157 -1.00000 - 12359 2002 3 18 16 51 51 796 4.8786 174.19467 2083.16635 1761.25987 -0.47390 0.32111 -0.09692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00969 -0.01157 -1.00000 - 12361 2002 3 18 16 52 1 553 4.8786 174.18836 2083.20935 1761.27494 -0.47788 0.31325 -0.10102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00898 -0.01157 -1.00000 - 12363 2002 3 18 16 52 11 310 4.8787 174.18205 2083.25208 1761.28970 -0.48183 0.30549 -0.10510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00827 -0.01157 -1.00000 - 12365 2002 3 18 16 52 21 68 4.8788 174.17573 2083.29456 1761.30406 -0.48566 0.29779 -0.10918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00756 -0.01157 -1.00000 - 12367 2002 3 18 16 52 30 826 4.8789 174.16942 2083.33680 1761.31810 -0.48934 0.29017 -0.11327 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00685 -0.01157 -1.00000 - 12369 2002 3 18 16 52 40 584 4.8790 174.16311 2083.37880 1761.33189 -0.49295 0.28262 -0.11737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00614 -0.01157 -1.00000 - 12371 2002 3 18 16 52 50 342 4.8790 174.15679 2083.42053 1761.34548 -0.49659 0.27517 -0.12147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00543 -0.01157 -1.00000 - 12373 2002 3 18 16 53 0 100 4.8791 174.15048 2083.46198 1761.35888 -0.50026 0.26780 -0.12558 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00472 -0.01157 -1.00000 - 12376 2002 3 18 16 53 14 737 4.8792 174.14101 2083.52356 1761.37833 -0.50574 0.25691 -0.13174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00366 -0.01156 -1.00000 - 12378 2002 3 18 16 53 24 496 4.8793 174.13470 2083.56418 1761.39079 -0.50933 0.24976 -0.13587 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00295 -0.01156 -1.00000 - 12380 2002 3 18 16 53 34 255 4.8794 174.12839 2083.60441 1761.40296 -0.51294 0.24270 -0.14001 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00224 -0.01156 -1.00000 - 12382 2002 3 18 16 53 44 14 4.8795 174.12207 2083.64422 1761.41489 -0.51656 0.23571 -0.14419 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00153 -0.01156 -1.00000 - 12384 2002 3 18 16 53 53 773 4.8796 174.11577 2083.68359 1761.42661 -0.52020 0.22879 -0.14838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00082 -0.01156 -1.00000 - 12386 2002 3 18 16 54 3 532 4.8797 174.10946 2083.72248 1761.43813 -0.52384 0.22190 -0.15258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 5.00011 -0.01156 -1.00000 - 12388 2002 3 18 16 54 13 292 4.8797 174.10314 2083.76086 1761.44931 -0.52748 0.21501 -0.15680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99940 -0.01156 -1.00000 - 12390 2002 3 18 16 54 23 51 4.8798 174.09683 2083.79874 1761.46005 -0.53111 0.20807 -0.16103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99869 -0.01156 -1.00000 - 12392 2002 3 18 16 54 32 811 4.8799 174.09052 2083.83612 1761.47042 -0.53469 0.20105 -0.16529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99798 -0.01156 -1.00000 - 12394 2002 3 18 16 54 42 571 4.8800 174.08421 2083.87302 1761.48052 -0.53823 0.19392 -0.16957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99727 -0.01156 -1.00000 - 12396 2002 3 18 16 54 52 331 4.8801 174.07791 2083.90945 1761.49041 -0.54180 0.18663 -0.17387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99656 -0.01156 -1.00000 - 12398 2002 3 18 16 55 2 91 4.8802 174.07160 2083.94545 1761.50011 -0.54546 0.17915 -0.17819 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99585 -0.01156 -1.00000 - 12400 2002 3 18 16 55 11 852 4.8802 174.06529 2083.98104 1761.50949 -0.54918 0.17145 -0.18252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99514 -0.01155 -1.00000 - 12402 2002 3 18 16 55 21 612 4.8803 174.05898 2084.01628 1761.51846 -0.55287 0.16352 -0.18686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99443 -0.01155 -1.00000 - 12404 2002 3 18 16 55 31 373 4.8804 174.05268 2084.05120 1761.52710 -0.55646 0.15536 -0.19122 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99372 -0.01155 -1.00000 - 12406 2002 3 18 16 55 41 134 4.8805 174.04637 2084.08581 1761.53551 -0.55998 0.14700 -0.19560 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99301 -0.01155 -1.00000 - 12408 2002 3 18 16 55 50 895 4.8806 174.04007 2084.12014 1761.54374 -0.56349 0.13845 -0.20000 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99230 -0.01155 -1.00000 - 12410 2002 3 18 16 56 0 656 4.8807 174.03377 2084.15422 1761.55181 -0.56705 0.12975 -0.20441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99159 -0.01155 -1.00000 - 12412 2002 3 18 16 56 10 418 4.8808 174.02746 2084.18804 1761.55958 -0.57066 0.12091 -0.20881 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99088 -0.01155 -1.00000 - 12414 2002 3 18 16 56 20 179 4.8808 174.02116 2084.22162 1761.56697 -0.57431 0.11194 -0.21323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.99017 -0.01155 -1.00000 - 12417 2002 3 18 16 56 34 822 4.8810 174.01171 2084.27154 1761.57751 -0.57970 0.09832 -0.21988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98911 -0.01155 -1.00000 - 12419 2002 3 18 16 56 44 584 4.8811 174.00541 2084.30453 1761.58429 -0.58324 0.09544 -0.22432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98840 -0.01155 -1.00000 - 12421 2002 3 18 16 56 54 347 4.8812 173.99912 2084.33730 1761.59091 -0.58676 0.09574 -0.22878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98769 -0.01155 -1.00000 - 12423 2002 3 18 16 57 4 109 4.8812 173.99282 2084.36984 1761.59739 -0.59027 0.09604 -0.23323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98698 -0.01154 -1.00000 - 12425 2002 3 18 16 57 13 872 4.8813 173.98653 2084.40215 1761.60358 -0.59375 0.09634 -0.23767 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98627 -0.01154 -1.00000 - 12427 2002 3 18 16 57 23 634 4.8814 173.98023 2084.43424 1761.60937 -0.59719 0.09659 -0.24210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98556 -0.01154 -1.00000 - 12429 2002 3 18 16 57 33 397 4.8815 173.97394 2084.46608 1761.61484 -0.60057 0.09680 -0.24655 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98485 -0.01154 -1.00000 - 12431 2002 3 18 16 57 43 161 4.8816 173.96765 2084.49767 1761.62008 -0.60391 0.09701 -0.25099 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98414 -0.01154 -1.00000 - 12433 2002 3 18 16 57 52 924 4.8817 173.96136 2084.52900 1761.62515 -0.60725 0.09726 -0.25544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98343 -0.01154 -1.00000 - 12435 2002 3 18 16 58 2 687 4.8818 173.95508 2084.56007 1761.63005 -0.61063 0.09752 -0.25987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98272 -0.01154 -1.00000 - 12437 2002 3 18 16 58 12 451 4.8819 173.94879 2084.59085 1761.63466 -0.61405 0.09779 -0.26429 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98201 -0.01154 -1.00000 - 12439 2002 3 18 16 58 22 215 4.8820 173.94251 2084.62136 1761.63885 -0.61750 0.09801 -0.26870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98130 -0.01154 -1.00000 - 12441 2002 3 18 16 58 31 979 4.8821 173.93623 2084.65157 1761.64272 -0.62095 0.09819 -0.27311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.98059 -0.01154 -1.00000 - 12443 2002 3 18 16 58 41 743 4.8822 173.92995 2084.68148 1761.64636 -0.62443 0.09835 -0.27752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97988 -0.01154 -1.00000 - 12445 2002 3 18 16 58 51 508 4.8822 173.92368 2084.71107 1761.64979 -0.62798 0.09857 -0.28192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97917 -0.01154 -1.00000 - 12447 2002 3 18 16 59 1 272 4.8823 173.91741 2084.74032 1761.65304 -0.63165 0.09885 -0.28631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97846 -0.01153 -1.00000 - 12449 2002 3 18 16 59 11 37 4.8824 173.91114 2084.76921 1761.65597 -0.63542 0.09916 -0.29068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97775 -0.01153 -1.00000 - 12451 2002 3 18 16 59 20 802 4.8825 173.90487 2084.79773 1761.65846 -0.63929 0.09942 -0.29504 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97704 -0.01153 -1.00000 - 12453 2002 3 18 16 59 30 568 4.8826 173.89860 2084.82588 1761.66061 -0.64317 0.09963 -0.29940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97633 -0.01153 -1.00000 - 12455 2002 3 18 16 59 40 333 4.8827 173.89234 2084.85364 1761.66249 -0.64706 0.09984 -0.30375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97562 -0.01153 -1.00000 - 12457 2002 3 18 16 59 50 98 4.8828 173.88609 2084.88101 1761.66414 -0.65101 0.10010 -0.30810 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97491 -0.01153 -1.00000 - 12460 2002 3 18 17 0 4 747 4.8830 173.87670 2084.92132 1761.66625 -0.65766 0.10062 -0.31460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97384 -0.01153 -1.00000 - 12462 2002 3 18 17 0 14 513 4.8830 173.87045 2084.94773 1761.66726 -0.66231 0.10097 -0.31891 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97313 -0.01153 -1.00000 - 12464 2002 3 18 17 0 24 279 4.8831 173.86419 2084.97408 1761.66796 -0.66715 0.10124 -0.32321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97242 -0.01153 -1.00000 - 12466 2002 3 18 17 0 34 46 4.8832 173.85795 2085.00046 1761.66848 -0.67202 0.10147 -0.32749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97171 -0.01153 -1.00000 - 12468 2002 3 18 17 0 43 813 4.8833 173.85170 2085.02684 1761.66887 -0.67693 0.10174 -0.33176 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97100 -0.01153 -1.00000 - 12470 2002 3 18 17 0 53 579 4.8834 173.84546 2085.05314 1761.66911 -0.68188 0.10208 -0.33601 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.97029 -0.01152 -1.00000 - 12472 2002 3 18 17 1 3 346 4.8835 173.83922 2085.07927 1761.66919 -0.68684 0.10245 -0.34025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96958 -0.01152 -1.00000 - 12474 2002 3 18 17 1 13 114 4.8836 173.83298 2085.10514 1761.66893 -0.69178 0.10281 -0.34447 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96887 -0.01152 -1.00000 - 12476 2002 3 18 17 1 22 881 4.8837 173.82674 2085.13067 1761.66821 -0.69675 0.10310 -0.34869 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96816 -0.01152 -1.00000 - 12478 2002 3 18 17 1 32 649 4.8838 173.82051 2085.15581 1761.66710 -0.70169 0.10332 -0.35292 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96745 -0.01152 -1.00000 - 12480 2002 3 18 17 1 42 416 4.8839 173.81429 2085.18051 1761.66568 -0.70657 0.10354 -0.35715 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96674 -0.01152 -1.00000 - 12482 2002 3 18 17 1 52 184 4.8840 173.80806 2085.20471 1761.66399 -0.71137 0.10381 -0.36140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96603 -0.01152 -1.00000 - 12484 2002 3 18 17 2 1 953 4.8841 173.80185 2085.22837 1761.66207 -0.71609 0.10415 -0.36565 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96532 -0.01152 -1.00000 - 12486 2002 3 18 17 2 11 721 4.8842 173.79563 2085.25144 1761.65974 -0.72076 0.10450 -0.36990 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96461 -0.01152 -1.00000 - 12488 2002 3 18 17 2 21 490 4.8843 173.78941 2085.27392 1761.65692 -0.72561 0.10476 -0.37417 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96390 -0.01152 -1.00000 - 12490 2002 3 18 17 2 31 258 4.8844 173.78320 2085.29578 1761.65369 -0.73051 0.10494 -0.37846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96319 -0.01152 -1.00000 - 12492 2002 3 18 17 2 41 27 4.8845 173.77701 2085.31702 1761.65015 -0.73535 0.10512 -0.38277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96248 -0.01152 -1.00000 - 12494 2002 3 18 17 2 50 797 4.8846 173.77080 2085.33765 1761.64634 -0.74006 0.10534 -0.38711 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96177 -0.01151 -1.00000 - 12496 2002 3 18 17 3 0 566 4.8847 173.76460 2085.35767 1761.64230 -0.74459 0.10563 -0.39145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96106 -0.01151 -1.00000 - 12498 2002 3 18 17 3 10 336 4.8848 173.75842 2085.37710 1761.63789 -0.74894 0.10595 -0.39580 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.96035 -0.01151 -1.00000 - 12500 2002 3 18 17 3 20 106 4.8849 173.75221 2085.39598 1761.63300 -0.75320 0.10619 -0.40016 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95964 -0.01151 -1.00000 - 12503 2002 3 18 17 3 34 761 4.8851 173.74295 2085.42332 1761.62500 -0.75950 0.10644 -0.40674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95857 -0.01151 -1.00000 - 12505 2002 3 18 17 3 44 531 4.8852 173.73677 2085.44094 1761.61934 -0.76371 0.10666 -0.41115 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95786 -0.01151 -1.00000 - 12507 2002 3 18 17 3 54 302 4.8853 173.73058 2085.45813 1761.61349 -0.76791 0.10694 -0.41556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95715 -0.01151 -1.00000 - 12509 2002 3 18 17 4 4 72 4.8854 173.72442 2085.47492 1761.60745 -0.77203 0.10729 -0.41996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95644 -0.01151 -1.00000 - 12511 2002 3 18 17 4 13 843 4.8855 173.71826 2085.49137 1761.60108 -0.77602 0.10762 -0.42435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95573 -0.01151 -1.00000 - 12513 2002 3 18 17 4 23 614 4.8856 173.71207 2085.50753 1761.59426 -0.77997 0.10784 -0.42874 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95502 -0.01151 -1.00000 - 12515 2002 3 18 17 4 33 386 4.8857 173.70593 2085.52346 1761.58710 -0.78388 0.10804 -0.43312 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95431 -0.01151 -1.00000 - 12517 2002 3 18 17 4 43 157 4.8858 173.69979 2085.53917 1761.57969 -0.78781 0.10829 -0.43751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95360 -0.01151 -1.00000 - 12519 2002 3 18 17 4 52 929 4.8859 173.69362 2085.55470 1761.57209 -0.79173 0.10856 -0.44188 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95289 -0.01150 -1.00000 - 12521 2002 3 18 17 5 2 701 4.8860 173.68748 2085.57007 1761.56434 -0.79562 0.10891 -0.44625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95218 -0.01150 -1.00000 - 12523 2002 3 18 17 5 12 473 4.8861 173.68135 2085.58527 1761.55627 -0.79952 0.10926 -0.45059 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95146 -0.01150 -1.00000 - 12525 2002 3 18 17 5 22 246 4.8863 173.67520 2085.60030 1761.54778 -0.80352 0.10948 -0.45493 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95075 -0.01150 -1.00000 - 12527 2002 3 18 17 5 32 19 4.8864 173.66908 2085.61517 1761.53896 -0.80766 0.10964 -0.45926 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.95004 -0.01150 -1.00000 - 12529 2002 3 18 17 5 41 791 4.8865 173.66297 2085.62986 1761.52990 -0.81197 0.10988 -0.46359 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94933 -0.01150 -1.00000 - 12531 2002 3 18 17 5 51 565 4.8866 173.65683 2085.64435 1761.52064 -0.81638 0.11014 -0.46791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94862 -0.01150 -1.00000 - 12533 2002 3 18 17 6 1 338 4.8867 173.65072 2085.65864 1761.51121 -0.82081 0.11046 -0.47221 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94791 -0.01150 -1.00000 - 12535 2002 3 18 17 6 11 111 4.8868 173.64463 2085.67269 1761.50144 -0.82523 0.11087 -0.47650 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94720 -0.01150 -1.00000 - 12537 2002 3 18 17 6 20 885 4.8869 173.63850 2085.68648 1761.49122 -0.82971 0.11115 -0.48078 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94649 -0.01150 -1.00000 - 12539 2002 3 18 17 6 30 659 4.8870 173.63241 2085.69998 1761.48063 -0.83428 0.11129 -0.48505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94578 -0.01150 -1.00000 - 12541 2002 3 18 17 6 40 433 4.8871 173.62634 2085.71317 1761.46976 -0.83897 0.11151 -0.48933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94507 -0.01149 -1.00000 - 12543 2002 3 18 17 6 50 208 4.8872 173.62023 2085.72602 1761.45865 -0.84373 0.11182 -0.49361 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94436 -0.01149 -1.00000 - 12546 2002 3 18 17 7 4 870 4.8874 173.61113 2085.74456 1761.44159 -0.85087 0.11231 -0.50002 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94329 -0.01149 -1.00000 - 12548 2002 3 18 17 7 14 645 4.8875 173.60505 2085.75637 1761.42976 -0.85556 0.11266 -0.50428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94258 -0.01149 -1.00000 - 12550 2002 3 18 17 7 24 420 4.8876 173.59896 2085.76771 1761.41741 -0.86025 0.11288 -0.50854 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94187 -0.01149 -1.00000 - 12552 2002 3 18 17 7 34 195 4.8877 173.59293 2085.77854 1761.40463 -0.86493 0.11304 -0.51281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94116 -0.01149 -1.00000 - 12554 2002 3 18 17 7 43 971 4.8878 173.58688 2085.78883 1761.39153 -0.86961 0.11328 -0.51710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.94045 -0.01149 -1.00000 - 12556 2002 3 18 17 7 53 747 4.8880 173.58081 2085.79854 1761.37813 -0.87425 0.11358 -0.52140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93974 -0.01149 -1.00000 - 12558 2002 3 18 17 8 3 523 4.8881 173.57478 2085.80765 1761.36449 -0.87883 0.11391 -0.52571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93903 -0.01149 -1.00000 - 12560 2002 3 18 17 8 13 299 4.8882 173.56875 2085.81609 1761.35042 -0.88333 0.11426 -0.53003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93831 -0.01149 -1.00000 - 12562 2002 3 18 17 8 23 76 4.8883 173.56269 2085.82387 1761.33583 -0.88784 0.11450 -0.53436 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93760 -0.01149 -1.00000 - 12564 2002 3 18 17 8 32 853 4.8884 173.55668 2085.83099 1761.32080 -0.89236 0.11464 -0.53872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93689 -0.01149 -1.00000 - 12566 2002 3 18 17 8 42 629 4.8885 173.55068 2085.83744 1761.30544 -0.89695 0.11486 -0.54310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93618 -0.01148 -1.00000 - 12568 2002 3 18 17 8 52 407 4.8886 173.54464 2085.84323 1761.28980 -0.90159 0.11515 -0.54750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93547 -0.01148 -1.00000 - 12570 2002 3 18 17 9 2 184 4.8888 173.53865 2085.84837 1761.27392 -0.90628 0.11549 -0.55192 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93476 -0.01148 -1.00000 - 12572 2002 3 18 17 9 11 962 4.8889 173.53266 2085.85289 1761.25762 -0.91102 0.11582 -0.55634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93405 -0.01148 -1.00000 - 12574 2002 3 18 17 9 21 740 4.8890 173.52664 2085.85685 1761.24082 -0.91589 0.11605 -0.56078 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93334 -0.01148 -1.00000 - 12576 2002 3 18 17 9 31 518 4.8891 173.52067 2085.86035 1761.22362 -0.92084 0.11620 -0.56524 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93263 -0.01148 -1.00000 - 12578 2002 3 18 17 9 41 296 4.8892 173.51471 2085.86347 1761.20612 -0.92587 0.11640 -0.56974 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93192 -0.01148 -1.00000 - 12580 2002 3 18 17 9 51 75 4.8893 173.50871 2085.86626 1761.18839 -0.93090 0.11667 -0.57426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93120 -0.01148 -1.00000 - 12582 2002 3 18 17 10 0 854 4.8895 173.50276 2085.86877 1761.17046 -0.93588 0.11699 -0.57880 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.93049 -0.01148 -1.00000 - 12584 2002 3 18 17 10 10 633 4.8896 173.49682 2085.87103 1761.15217 -0.94080 0.11730 -0.58336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92978 -0.01148 -1.00000 - 12586 2002 3 18 17 10 20 412 4.8897 173.49084 2085.87307 1761.13342 -0.94639 0.11752 -0.58794 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92907 -0.01148 -1.00000 - 12588 2002 3 18 17 10 30 192 4.8898 173.48491 2085.87490 1761.11430 -0.95204 0.11768 -0.59255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92836 -0.01148 -1.00000 - 12591 2002 3 18 17 10 44 861 4.8900 173.47602 2085.87729 1761.08514 -0.96044 0.11802 -0.59954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92729 -0.01147 -1.00000 - 12593 2002 3 18 17 10 54 642 4.8901 173.47008 2085.87865 1761.06544 -0.96603 0.11831 -0.60422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92658 -0.01147 -1.00000 - 12595 2002 3 18 17 11 4 422 4.8902 173.46420 2085.87980 1761.04557 -0.97163 0.11867 -0.60893 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92587 -0.01147 -1.00000 - 12597 2002 3 18 17 11 14 203 4.8903 173.45827 2085.88070 1761.02532 -0.97723 0.11899 -0.61364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92516 -0.01147 -1.00000 - 12599 2002 3 18 17 11 23 984 4.8905 173.45236 2085.88130 1761.00458 -0.98286 0.11919 -0.61837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92445 -0.01147 -1.00000 - 12601 2002 3 18 17 11 33 765 4.8906 173.44650 2085.88154 1760.98343 -0.98849 0.11938 -0.62313 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92374 -0.01147 -1.00000 - 12603 2002 3 18 17 11 43 546 4.8907 173.44061 2085.88131 1760.96198 -0.99415 0.11964 -0.62791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92303 -0.01147 -1.00000 - 12605 2002 3 18 17 11 53 328 4.8908 173.43471 2085.88055 1760.94028 -0.99986 0.11994 -0.63272 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92231 -0.01147 -1.00000 - 12607 2002 3 18 17 12 3 109 4.8909 173.42887 2085.87920 1760.91834 -1.00560 0.12031 -0.63755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92160 -0.01147 -1.00000 - 12609 2002 3 18 17 12 12 891 4.8911 173.42301 2085.87722 1760.89601 -1.01134 0.12064 -0.64239 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92089 -0.01147 -1.00000 - 12611 2002 3 18 17 12 22 674 4.8912 173.41712 2085.87462 1760.87317 -1.01711 0.12084 -0.64725 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.92018 -0.01147 -1.00000 - 12613 2002 3 18 17 12 32 456 4.8913 173.41132 2085.87142 1760.84991 -1.02289 0.12102 -0.65213 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91947 -0.01146 -1.00000 - 12615 2002 3 18 17 12 42 239 4.8914 173.40549 2085.86764 1760.82635 -1.02871 0.12127 -0.65705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91876 -0.01146 -1.00000 - 12617 2002 3 18 17 12 52 22 4.8916 173.39964 2085.86332 1760.80253 -1.03459 0.12152 -0.66198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91805 -0.01146 -1.00000 - 12619 2002 3 18 17 13 1 806 4.8917 173.39384 2085.85848 1760.77850 -1.04052 0.12188 -0.66692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91733 -0.01146 -1.00000 - 12621 2002 3 18 17 13 11 589 4.8918 173.38804 2085.85313 1760.75409 -1.04646 0.12228 -0.67186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91662 -0.01146 -1.00000 - 12623 2002 3 18 17 13 21 373 4.8919 173.38221 2085.84731 1760.72919 -1.05241 0.12249 -0.67682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91591 -0.01146 -1.00000 - 12625 2002 3 18 17 13 31 157 4.8921 173.37644 2085.84106 1760.70389 -1.05832 0.12264 -0.68178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91520 -0.01146 -1.00000 - 12627 2002 3 18 17 13 40 941 4.8922 173.37067 2085.83438 1760.67831 -1.06422 0.12292 -0.68676 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91449 -0.01146 -1.00000 - 12629 2002 3 18 17 13 50 726 4.8923 173.36487 2085.82728 1760.65250 -1.07016 0.12319 -0.69174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91378 -0.01146 -1.00000 - 12631 2002 3 18 17 14 0 511 4.8924 173.35912 2085.81976 1760.62648 -1.07616 0.12346 -0.69670 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91306 -0.01146 -1.00000 - 12633 2002 3 18 17 14 10 296 4.8926 173.35338 2085.81180 1760.60010 -1.08217 0.12387 -0.70165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91235 -0.01146 -1.00000 - 12635 2002 3 18 17 14 20 81 4.8927 173.34747 2085.80341 1760.57323 -1.08819 0.12416 -0.70657 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91164 -0.01146 -1.00000 - 12638 2002 3 18 17 14 34 759 4.8929 173.33870 2085.79004 1760.53223 -1.09706 0.12436 -0.71395 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.91057 -0.01145 -1.00000 - 12640 2002 3 18 17 14 44 545 4.8930 173.33282 2085.78060 1760.50456 -1.10287 0.12468 -0.71886 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90986 -0.01145 -1.00000 - 12642 2002 3 18 17 14 54 332 4.8931 173.32715 2085.77077 1760.47667 -1.10861 0.12499 -0.72374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90915 -0.01145 -1.00000 - 12644 2002 3 18 17 15 4 118 4.8932 173.32144 2085.76057 1760.44860 -1.11426 0.12527 -0.72860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90844 -0.01145 -1.00000 - 12646 2002 3 18 17 15 13 905 4.8934 173.31574 2085.75006 1760.42014 -1.11979 0.12564 -0.73342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90773 -0.01145 -1.00000 - 12648 2002 3 18 17 15 23 692 4.8935 173.31007 2085.73949 1760.39131 -1.12549 0.12603 -0.73822 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90702 -0.01145 -1.00000 - 12650 2002 3 18 17 15 33 479 4.8936 173.30446 2085.72892 1760.36223 -1.13103 0.12623 -0.74299 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90630 -0.01145 -1.00000 - 12652 2002 3 18 17 15 43 266 4.8937 173.29881 2085.71831 1760.33298 -1.13652 0.12552 -0.74773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90559 -0.01145 -1.00000 - 12654 2002 3 18 17 15 53 54 4.8938 173.29317 2085.70759 1760.30358 -1.14200 0.12322 -0.75245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90488 -0.01145 -1.00000 - 12656 2002 3 18 17 16 2 842 4.8940 173.28760 2085.69671 1760.27401 -1.14749 0.12031 -0.75714 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90417 -0.01145 -1.00000 - 12658 2002 3 18 17 16 12 630 4.8941 173.28190 2085.68557 1760.24407 -1.15298 0.11867 -0.76180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90346 -0.01145 -1.00000 - 12660 2002 3 18 17 16 22 418 4.8942 173.27629 2085.67413 1760.21365 -1.15848 0.11903 -0.76644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90274 -0.01144 -1.00000 - 12662 2002 3 18 17 16 32 207 4.8944 173.27066 2085.66235 1760.18281 -1.16399 0.12022 -0.77108 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90203 -0.01144 -1.00000 - 12664 2002 3 18 17 16 41 996 4.8945 173.26500 2085.65020 1760.15166 -1.16958 0.12097 -0.77571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90132 -0.01144 -1.00000 - 12666 2002 3 18 17 16 51 785 4.8946 173.25936 2085.63764 1760.12025 -1.17547 0.12221 -0.78033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.90061 -0.01144 -1.00000 - 12668 2002 3 18 17 17 1 574 4.8948 173.25378 2085.62468 1760.08861 -1.18139 0.12442 -0.78494 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89990 -0.01144 -1.00000 - 12670 2002 3 18 17 17 11 364 4.8949 173.24812 2085.61128 1760.05655 -1.18733 0.12622 -0.78953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89919 -0.01144 -1.00000 - 12672 2002 3 18 17 17 21 154 4.8950 173.24248 2085.59749 1760.02396 -1.19333 0.12742 -0.79412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89847 -0.01144 -1.00000 - 12674 2002 3 18 17 17 30 944 4.8952 173.23688 2085.58329 1759.99091 -1.19928 0.12871 -0.79871 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89776 -0.01144 -1.00000 - 12676 2002 3 18 17 17 40 735 4.8953 173.23125 2085.56871 1759.95753 -1.20517 0.12995 -0.80331 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89705 -0.01144 -1.00000 - 12678 2002 3 18 17 17 50 526 4.8954 173.22568 2085.55372 1759.92386 -1.21103 0.13076 -0.80792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89634 -0.01144 -1.00000 - 12680 2002 3 18 17 18 0 317 4.8956 173.22008 2085.53836 1759.88993 -1.21689 0.13122 -0.81253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89563 -0.01144 -1.00000 - 12682 2002 3 18 17 18 10 108 4.8957 173.21454 2085.52262 1759.85556 -1.22279 0.13146 -0.81714 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89491 -0.01144 -1.00000 - 12685 2002 3 18 17 18 24 796 4.8959 173.20623 2085.49838 1759.80300 -1.23178 0.13169 -0.82411 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89385 -0.01143 -1.00000 - 12687 2002 3 18 17 18 34 588 4.8960 173.20069 2085.48175 1759.76744 -1.23781 0.13161 -0.82880 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89313 -0.01143 -1.00000 - 12689 2002 3 18 17 18 44 380 4.8962 173.19520 2085.46470 1759.73157 -1.24387 0.13100 -0.83354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89242 -0.01143 -1.00000 - 12691 2002 3 18 17 18 54 173 4.8963 173.18973 2085.44720 1759.69543 -1.24996 0.13010 -0.83831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89171 -0.01143 -1.00000 - 12693 2002 3 18 17 19 3 965 4.8964 173.18429 2085.42922 1759.65905 -1.25607 0.12953 -0.84312 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89100 -0.01143 -1.00000 - 12695 2002 3 18 17 19 13 758 4.8966 173.17881 2085.41070 1759.62222 -1.26203 0.12941 -0.84796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.89028 -0.01143 -1.00000 - 12697 2002 3 18 17 19 23 552 4.8967 173.17341 2085.39166 1759.58482 -1.26769 0.12922 -0.85286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88957 -0.01143 -1.00000 - 12699 2002 3 18 17 19 33 345 4.8968 173.16798 2085.37207 1759.54695 -1.27280 0.12877 -0.85781 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88886 -0.01143 -1.00000 - 12701 2002 3 18 17 19 43 139 4.8970 173.16253 2085.35194 1759.50874 -1.27757 0.12843 -0.86283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88815 -0.01143 -1.00000 - 12703 2002 3 18 17 19 52 933 4.8971 173.15719 2085.33129 1759.47026 -1.28282 0.12853 -0.86791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88744 -0.01143 -1.00000 - 12705 2002 3 18 17 20 2 728 4.8972 173.15174 2085.31012 1759.43154 -1.28998 0.12895 -0.87304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88672 -0.01143 -1.00000 - 12707 2002 3 18 17 20 12 522 4.8974 173.14636 2085.28844 1759.39240 -1.30509 0.12946 -0.87822 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88601 -0.01142 -1.00000 - 12709 2002 3 18 17 20 22 317 4.8975 173.14099 2085.26628 1759.35274 -1.32488 0.12999 -0.88346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88530 -0.01142 -1.00000 - 12711 2002 3 18 17 20 32 113 4.8977 173.13560 2085.24368 1759.31265 -1.34579 0.13056 -0.88877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88459 -0.01142 -1.00000 - 12713 2002 3 18 17 20 41 908 4.8978 173.13022 2085.22067 1759.27226 -1.36426 0.13127 -0.89414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88387 -0.01142 -1.00000 - 12715 2002 3 18 17 20 51 704 4.8979 173.12489 2085.19730 1759.23162 -1.37842 0.13210 -0.89957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88316 -0.01142 -1.00000 - 12717 2002 3 18 17 21 1 500 4.8981 173.11954 2085.17360 1759.19078 -1.39436 0.13282 -0.90505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88245 -0.01142 -1.00000 - 12719 2002 3 18 17 21 11 297 4.8982 173.11417 2085.14959 1759.14953 -1.40281 0.13344 -0.91058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88174 -0.01142 -1.00000 - 12721 2002 3 18 17 21 21 93 4.8984 173.10890 2085.12526 1759.10777 -1.41253 0.13404 -0.91616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88102 -0.01142 -1.00000 - 12723 2002 3 18 17 21 30 890 4.8985 173.10356 2085.10051 1759.06559 -1.41651 0.13447 -0.92180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.88031 -0.01142 -1.00000 - 12725 2002 3 18 17 21 40 687 4.8986 173.09827 2085.07511 1759.02312 -1.42157 0.13465 -0.92750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87960 -0.01142 -1.00000 - 12727 2002 3 18 17 21 50 485 4.8988 173.09301 2085.04868 1758.98041 -1.42506 0.13480 -0.93324 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87889 -0.01142 -1.00000 - 12729 2002 3 18 17 22 0 283 4.8989 173.08774 2085.02071 1758.93753 -1.42748 0.13500 -0.93902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87817 -0.01142 -1.00000 - 12731 2002 3 18 17 22 10 81 4.8991 173.08247 2084.99057 1758.89430 -1.43660 0.13517 -0.94480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87746 -0.01141 -1.00000 - 12734 2002 3 18 17 22 24 778 4.8993 173.07468 2084.94028 1758.82869 -1.46171 0.13518 -0.95346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87639 -0.01141 -1.00000 - 12736 2002 3 18 17 22 34 577 4.8994 173.06944 2084.90321 1758.78467 -1.48021 0.13503 -0.95918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87568 -0.01141 -1.00000 - 12738 2002 3 18 17 22 44 376 4.8996 173.06427 2084.86378 1758.74061 -1.49525 0.13496 -0.96482 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87497 -0.01141 -1.00000 - 12740 2002 3 18 17 22 54 175 4.8997 173.05911 2084.82301 1758.69663 -1.51305 0.13502 -0.97035 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87426 -0.01141 -1.00000 - 12742 2002 3 18 17 23 3 975 4.8998 173.05392 2084.78261 1758.65283 -1.52637 0.13512 -0.97571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87354 -0.01141 -1.00000 - 12744 2002 3 18 17 23 13 775 4.9000 173.04875 2084.74462 1758.60905 -1.54053 0.13523 -0.98088 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87283 -0.01141 -1.00000 - 12746 2002 3 18 17 23 23 575 4.9001 173.04368 2084.71127 1758.56520 -1.55386 0.13535 -0.98582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87212 -0.01141 -1.00000 - 12748 2002 3 18 17 23 33 375 4.9003 173.03850 2084.68448 1758.52137 -1.56301 0.13552 -0.99049 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87140 -0.01141 -1.00000 - 12750 2002 3 18 17 23 43 176 4.9004 173.03336 2084.66522 1758.47765 -1.58308 0.13585 -0.99491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.87069 -0.01141 -1.00000 - 12752 2002 3 18 17 23 52 977 4.9006 173.02833 2084.65356 1758.43400 -1.60281 0.13623 -0.99913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86998 -0.01141 -1.00000 - 12754 2002 3 18 17 24 2 779 4.9007 173.02320 2084.64934 1758.39035 -1.61515 0.13655 -1.00322 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86927 -0.01140 -1.00000 - 12756 2002 3 18 17 24 12 580 4.9009 173.01810 2084.65098 1758.34636 -1.63265 0.13698 -1.00727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86855 -0.01140 -1.00000 - 12758 2002 3 18 17 24 22 382 4.9010 173.01310 2084.65557 1758.30172 -1.64481 0.13745 -1.01136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86784 -0.01140 -1.00000 - 12760 2002 3 18 17 24 32 184 4.9011 173.00802 2084.65901 1758.25627 -1.64385 0.13773 -1.01553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86713 -0.01140 -1.00000 - 12762 2002 3 18 17 24 41 987 4.9013 173.00296 2084.65685 1758.20983 -1.62973 0.13802 -1.01987 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86642 -0.01140 -1.00000 - 12764 2002 3 18 17 24 51 790 4.9014 172.99800 2084.64567 1758.16224 -1.60485 0.13849 -1.02442 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86570 -0.01140 -1.00000 - 12766 2002 3 18 17 25 1 593 4.9016 172.99297 2084.62348 1758.11340 -1.57319 0.13883 -1.02921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86499 -0.01140 -1.00000 - 12768 2002 3 18 17 25 11 396 4.9017 172.98794 2084.58978 1758.06310 -1.54792 0.13904 -1.03427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86428 -0.01140 -1.00000 - 12770 2002 3 18 17 25 21 200 4.9019 172.98301 2084.54463 1758.01127 -1.57443 0.13936 -1.03960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86356 -0.01140 -1.00000 - 12772 2002 3 18 17 25 31 4 4.9020 172.97804 2084.49058 1757.95820 -1.60281 0.13962 -1.04513 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86285 -0.01140 -1.00000 - 12774 2002 3 18 17 25 40 808 4.9022 172.97307 2084.42943 1757.90423 -1.62795 0.13968 -1.05082 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86214 -0.01140 -1.00000 - 12776 2002 3 18 17 25 50 613 4.9023 172.96815 2084.36349 1757.84967 -1.64860 0.13984 -1.05664 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86142 -0.01140 -1.00000 - 12778 2002 3 18 17 26 0 418 4.9025 172.96326 2084.29591 1757.79484 -1.66417 0.14012 -1.06254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86071 -0.01139 -1.00000 - 12780 2002 3 18 17 26 10 223 4.9026 172.95834 2084.22940 1757.73982 -1.67384 0.14021 -1.06845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.86000 -0.01139 -1.00000 - 12782 2002 3 18 17 26 20 28 4.9028 172.95345 2084.16624 1757.68470 -1.67717 0.14029 -1.07436 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85929 -0.01139 -1.00000 - 12785 2002 3 18 17 26 34 737 4.9030 172.94617 2084.08068 1757.60244 -1.67559 0.14055 -1.08313 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85822 -0.01139 -1.00000 - 12787 2002 3 18 17 26 44 543 4.9032 172.94130 2084.03111 1757.54813 -1.67077 0.14058 -1.08881 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85750 -0.01139 -1.00000 - 12789 2002 3 18 17 26 54 350 4.9033 172.93650 2083.98785 1757.49428 -1.68005 0.14079 -1.09430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85679 -0.01139 -1.00000 - 12791 2002 3 18 17 27 4 157 4.9035 172.93167 2083.95022 1757.44086 -1.70155 0.14115 -1.09962 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85608 -0.01139 -1.00000 - 12793 2002 3 18 17 27 13 964 4.9036 172.92687 2083.91735 1757.38753 -1.72667 0.14131 -1.10478 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85536 -0.01139 -1.00000 - 12795 2002 3 18 17 27 23 771 4.9038 172.92211 2083.88859 1757.33407 -1.74758 0.14149 -1.10986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85465 -0.01139 -1.00000 - 12797 2002 3 18 17 27 33 579 4.9039 172.91730 2083.86379 1757.28050 -1.76345 0.14186 -1.11491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85394 -0.01139 -1.00000 - 12799 2002 3 18 17 27 43 387 4.9041 172.91257 2083.84190 1757.22683 -1.77890 0.14212 -1.11997 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85322 -0.01139 -1.00000 - 12801 2002 3 18 17 27 53 195 4.9042 172.90783 2083.82120 1757.17302 -1.79692 0.14235 -1.12509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85251 -0.01138 -1.00000 - 12803 2002 3 18 17 28 3 4 4.9044 172.90308 2083.79971 1757.11895 -1.80707 0.14275 -1.13025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85180 -0.01138 -1.00000 - 12805 2002 3 18 17 28 12 813 4.9045 172.89838 2083.77514 1757.06424 -1.80952 0.14309 -1.13546 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85108 -0.01138 -1.00000 - 12807 2002 3 18 17 28 22 622 4.9047 172.89370 2083.74603 1757.00862 -1.80609 0.14329 -1.14076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.85037 -0.01138 -1.00000 - 12809 2002 3 18 17 28 32 432 4.9048 172.88901 2083.71164 1756.95212 -1.79914 0.14360 -1.14614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84966 -0.01138 -1.00000 - 12811 2002 3 18 17 28 42 242 4.9050 172.88433 2083.67197 1756.89483 -1.79102 0.14391 -1.15160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84894 -0.01138 -1.00000 - 12813 2002 3 18 17 28 52 52 4.9052 172.87973 2083.62726 1756.83684 -1.79583 0.14406 -1.15714 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84823 -0.01138 -1.00000 - 12815 2002 3 18 17 29 1 863 4.9053 172.87509 2083.57819 1756.77827 -1.80572 0.14426 -1.16273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84752 -0.01138 -1.00000 - 12817 2002 3 18 17 29 11 673 4.9055 172.87043 2083.52577 1756.71897 -1.82202 0.14459 -1.16835 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84680 -0.01138 -1.00000 - 12819 2002 3 18 17 29 21 485 4.9056 172.86591 2083.47084 1756.65893 -1.83628 0.14480 -1.17399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84609 -0.01138 -1.00000 - 12821 2002 3 18 17 29 31 296 4.9058 172.86130 2083.41434 1756.59835 -1.84849 0.14486 -1.17964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84538 -0.01138 -1.00000 - 12823 2002 3 18 17 29 41 108 4.9059 172.85670 2083.35720 1756.53745 -1.85884 0.14503 -1.18529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84466 -0.01138 -1.00000 - 12825 2002 3 18 17 29 50 920 4.9061 172.85223 2083.30023 1756.47638 -1.86764 0.14530 -1.19090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84395 -0.01137 -1.00000 - 12827 2002 3 18 17 30 0 732 4.9063 172.84768 2083.24416 1756.41524 -1.87521 0.14551 -1.19642 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84324 -0.01137 -1.00000 - 12829 2002 3 18 17 30 10 545 4.9064 172.84314 2083.18951 1756.35385 -1.88178 0.14574 -1.20182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84252 -0.01137 -1.00000 - 12831 2002 3 18 17 30 20 358 4.9066 172.83867 2083.13669 1756.29218 -1.89230 0.14606 -1.20712 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84181 -0.01137 -1.00000 - 12833 2002 3 18 17 30 30 172 4.9067 172.83422 2083.08599 1756.23038 -1.90210 0.14626 -1.21230 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84109 -0.01137 -1.00000 - 12836 2002 3 18 17 30 44 892 4.9070 172.82747 2083.01385 1756.13760 -1.91879 0.14649 -1.21989 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.84002 -0.01137 -1.00000 - 12838 2002 3 18 17 30 54 706 4.9071 172.82311 2082.96816 1756.07571 -1.93145 0.14680 -1.22485 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83931 -0.01137 -1.00000 - 12840 2002 3 18 17 31 4 521 4.9073 172.81870 2082.92418 1756.01378 -1.94267 0.14698 -1.22975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83860 -0.01137 -1.00000 - 12842 2002 3 18 17 31 14 336 4.9075 172.81420 2082.88145 1755.95152 -1.95249 0.14716 -1.23461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83788 -0.01137 -1.00000 - 12844 2002 3 18 17 31 24 151 4.9076 172.80993 2082.83940 1755.88873 -1.96105 0.14750 -1.23948 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83717 -0.01137 -1.00000 - 12846 2002 3 18 17 31 33 966 4.9078 172.80556 2082.79737 1755.82549 -1.96868 0.14768 -1.24440 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83646 -0.01137 -1.00000 - 12848 2002 3 18 17 31 43 782 4.9079 172.80115 2082.75463 1755.76188 -1.97717 0.14776 -1.24938 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83574 -0.01136 -1.00000 - 12850 2002 3 18 17 31 53 598 4.9081 172.79688 2082.71056 1755.69791 -1.98490 0.14815 -1.25443 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83503 -0.01136 -1.00000 - 12852 2002 3 18 17 32 3 415 4.9083 172.79257 2082.66469 1755.63360 -1.99078 0.14862 -1.25953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83431 -0.01136 -1.00000 - 12854 2002 3 18 17 32 13 231 4.9084 172.78826 2082.61673 1755.56869 -1.99636 0.14886 -1.26469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83360 -0.01136 -1.00000 - 12856 2002 3 18 17 32 23 49 4.9086 172.78396 2082.56665 1755.50306 -2.00350 0.14922 -1.26990 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83289 -0.01136 -1.00000 - 12858 2002 3 18 17 32 32 866 4.9087 172.77977 2082.51459 1755.43680 -2.01242 0.14974 -1.27516 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83217 -0.01136 -1.00000 - 12860 2002 3 18 17 32 42 684 4.9089 172.77552 2082.46074 1755.37007 -2.02150 0.15006 -1.28046 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83146 -0.01136 -1.00000 - 12862 2002 3 18 17 32 52 502 4.9091 172.77122 2082.40537 1755.30295 -2.03088 0.15045 -1.28579 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83074 -0.01136 -1.00000 - 12864 2002 3 18 17 33 2 320 4.9092 172.76716 2082.34878 1755.23553 -2.04138 0.15107 -1.29113 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.83003 -0.01136 -1.00000 - 12866 2002 3 18 17 33 12 139 4.9094 172.76291 2082.29128 1755.16760 -2.05189 0.15143 -1.29647 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82932 -0.01136 -1.00000 - 12868 2002 3 18 17 33 21 958 4.9096 172.75871 2082.23325 1755.09907 -2.06216 0.15158 -1.30181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82860 -0.01136 -1.00000 - 12870 2002 3 18 17 33 31 777 4.9097 172.75468 2082.17500 1755.03007 -2.07221 0.15190 -1.30716 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82789 -0.01136 -1.00000 - 12872 2002 3 18 17 33 41 597 4.9099 172.75048 2082.11681 1754.96075 -2.08208 0.15204 -1.31251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82717 -0.01135 -1.00000 - 12874 2002 3 18 17 33 51 417 4.9101 172.74639 2082.05889 1754.89122 -2.09218 0.15188 -1.31786 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82646 -0.01135 -1.00000 - 12876 2002 3 18 17 34 1 238 4.9102 172.74230 2082.00138 1754.82151 -2.10268 0.15196 -1.32320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82575 -0.01135 -1.00000 - 12878 2002 3 18 17 34 11 58 4.9104 172.73823 2081.94429 1754.75140 -2.11313 0.15212 -1.32853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82503 -0.01135 -1.00000 - 12880 2002 3 18 17 34 20 879 4.9106 172.73418 2081.88763 1754.68078 -2.12395 0.15197 -1.33387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82432 -0.01135 -1.00000 - 12882 2002 3 18 17 34 30 701 4.9107 172.73007 2081.83130 1754.60972 -2.13533 0.15191 -1.33924 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82360 -0.01135 -1.00000 - 12884 2002 3 18 17 34 40 523 4.9109 172.72618 2081.77518 1754.53835 -2.14638 0.15200 -1.34465 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82289 -0.01135 -1.00000 - 12886 2002 3 18 17 34 50 345 4.9111 172.72208 2081.71908 1754.46673 -2.15704 0.15192 -1.35011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82217 -0.01135 -1.00000 - 12888 2002 3 18 17 35 0 167 4.9113 172.71812 2081.66279 1754.39489 -2.16731 0.15200 -1.35560 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82146 -0.01135 -1.00000 - 12891 2002 3 18 17 35 14 901 4.9115 172.71222 2081.57732 1754.28618 -2.18203 0.15234 -1.36392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.82039 -0.01135 -1.00000 - 12893 2002 3 18 17 35 24 725 4.9117 172.70830 2081.51934 1754.21294 -2.19146 0.15239 -1.36953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81967 -0.01135 -1.00000 - 12895 2002 3 18 17 35 34 548 4.9118 172.70449 2081.46030 1754.13925 -2.20067 0.15265 -1.37521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81896 -0.01134 -1.00000 - 12897 2002 3 18 17 35 44 372 4.9120 172.70048 2081.40006 1754.06517 -2.20979 0.15294 -1.38095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81825 -0.01134 -1.00000 - 12899 2002 3 18 17 35 54 196 4.9122 172.69676 2081.33852 1753.99077 -2.21892 0.15308 -1.38674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81753 -0.01134 -1.00000 - 12901 2002 3 18 17 36 4 21 4.9123 172.69285 2081.27567 1753.91607 -2.22899 0.15343 -1.39255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81682 -0.01134 -1.00000 - 12903 2002 3 18 17 36 13 846 4.9125 172.68904 2081.21153 1753.84083 -2.23972 0.15400 -1.39837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81610 -0.01134 -1.00000 - 12905 2002 3 18 17 36 23 671 4.9127 172.68531 2081.14627 1753.76491 -2.25062 0.15438 -1.40422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81539 -0.01134 -1.00000 - 12907 2002 3 18 17 36 33 497 4.9129 172.68142 2081.08008 1753.68843 -2.26165 0.15474 -1.41010 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81467 -0.01134 -1.00000 - 12909 2002 3 18 17 36 43 323 4.9130 172.67781 2081.01318 1753.61156 -2.27283 0.15541 -1.41599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81396 -0.01134 -1.00000 - 12911 2002 3 18 17 36 53 149 4.9132 172.67396 2080.94576 1753.53440 -2.28413 0.15605 -1.42189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81324 -0.01134 -1.00000 - 12913 2002 3 18 17 37 2 976 4.9134 172.67031 2080.87800 1753.45701 -2.29552 0.15636 -1.42780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81253 -0.01134 -1.00000 - 12915 2002 3 18 17 37 12 803 4.9136 172.66663 2080.81002 1753.37917 -2.30694 0.15667 -1.43368 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81181 -0.01134 -1.00000 - 12917 2002 3 18 17 37 22 630 4.9137 172.66281 2080.74196 1753.30076 -2.31836 0.15719 -1.43957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81110 -0.01134 -1.00000 - 12919 2002 3 18 17 37 32 458 4.9139 172.65932 2080.67387 1753.22190 -2.32977 0.15753 -1.44545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.81038 -0.01133 -1.00000 - 12921 2002 3 18 17 37 42 286 4.9141 172.65551 2080.60575 1753.14272 -2.34117 0.15767 -1.45134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80967 -0.01133 -1.00000 - 12923 2002 3 18 17 37 52 115 4.9143 172.65193 2080.53756 1753.06331 -2.35260 0.15793 -1.45723 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80896 -0.01133 -1.00000 - 12925 2002 3 18 17 38 1 943 4.9144 172.64839 2080.46923 1752.98369 -2.36426 0.15828 -1.46310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80824 -0.01133 -1.00000 - 12927 2002 3 18 17 38 11 773 4.9146 172.64468 2080.40060 1752.90363 -2.37612 0.15850 -1.46896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80753 -0.01133 -1.00000 - 12929 2002 3 18 17 38 21 602 4.9148 172.64125 2080.33162 1752.82299 -2.38781 0.15866 -1.47481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80681 -0.01133 -1.00000 - 12931 2002 3 18 17 38 31 432 4.9150 172.63763 2080.26217 1752.74186 -2.39932 0.15883 -1.48067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80610 -0.01133 -1.00000 - 12933 2002 3 18 17 38 41 262 4.9152 172.63420 2080.19216 1752.66038 -2.41066 0.15884 -1.48653 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80538 -0.01133 -1.00000 - 12935 2002 3 18 17 38 51 93 4.9153 172.63066 2080.12150 1752.57861 -2.42186 0.15876 -1.49238 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80467 -0.01133 -1.00000 - 12937 2002 3 18 17 39 0 924 4.9155 172.62719 2080.05012 1752.49660 -2.43295 0.15875 -1.49822 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80395 -0.01133 -1.00000 - 12939 2002 3 18 17 39 10 755 4.9157 172.62384 2079.97796 1752.41410 -2.44432 0.15869 -1.50403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80324 -0.01133 -1.00000 - 12941 2002 3 18 17 39 20 587 4.9159 172.62027 2079.90502 1752.33097 -2.45575 0.15854 -1.50983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80252 -0.01133 -1.00000 - 12943 2002 3 18 17 39 30 419 4.9160 172.61703 2079.83132 1752.24733 -2.46718 0.15850 -1.51561 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80181 -0.01132 -1.00000 - 12945 2002 3 18 17 39 40 251 4.9162 172.61362 2079.75690 1752.16332 -2.47861 0.15861 -1.52139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80109 -0.01132 -1.00000 - 12947 2002 3 18 17 39 50 84 4.9164 172.61021 2079.68180 1752.07902 -2.49005 0.15879 -1.52713 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.80038 -0.01132 -1.00000 - 12950 2002 3 18 17 40 4 833 4.9167 172.60532 2079.56799 1751.95213 -2.50722 0.15929 -1.53569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79930 -0.01132 -1.00000 - 12952 2002 3 18 17 40 14 667 4.9168 172.60199 2079.49139 1751.86700 -2.51870 0.15956 -1.54133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79859 -0.01132 -1.00000 - 12954 2002 3 18 17 40 24 501 4.9170 172.59874 2079.41430 1751.78125 -2.53025 0.15990 -1.54693 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79787 -0.01132 -1.00000 - 12956 2002 3 18 17 40 34 335 4.9172 172.59549 2079.33678 1751.69499 -2.54188 0.16041 -1.55250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79716 -0.01132 -1.00000 - 12958 2002 3 18 17 40 44 170 4.9174 172.59230 2079.25892 1751.60838 -2.55360 0.16075 -1.55804 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79644 -0.01132 -1.00000 - 12960 2002 3 18 17 40 54 5 4.9176 172.58897 2079.18078 1751.52151 -2.56535 0.16101 -1.56353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79573 -0.01132 -1.00000 - 12962 2002 3 18 17 41 3 840 4.9177 172.58589 2079.10248 1751.43442 -2.57703 0.16158 -1.56898 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79501 -0.01132 -1.00000 - 12964 2002 3 18 17 41 13 676 4.9179 172.58271 2079.02406 1751.34685 -2.58852 0.16215 -1.57437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79430 -0.01132 -1.00000 - 12966 2002 3 18 17 41 23 512 4.9181 172.57947 2078.94562 1751.25869 -2.59967 0.16253 -1.57971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79358 -0.01131 -1.00000 - 12968 2002 3 18 17 41 33 349 4.9183 172.57646 2078.86722 1751.17003 -2.61061 0.16292 -1.58503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79287 -0.01131 -1.00000 - 12970 2002 3 18 17 41 43 186 4.9185 172.57329 2078.78884 1751.08099 -2.62171 0.16325 -1.59031 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79215 -0.01131 -1.00000 - 12972 2002 3 18 17 41 53 23 4.9187 172.57019 2078.71045 1750.99164 -2.63219 0.16339 -1.59557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79144 -0.01131 -1.00000 - 12974 2002 3 18 17 42 2 861 4.9189 172.56716 2078.63193 1750.90202 -2.64191 0.16357 -1.60079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79072 -0.01131 -1.00000 - 12976 2002 3 18 17 42 12 699 4.9190 172.56413 2078.55309 1750.81186 -2.65087 0.16374 -1.60599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.79001 -0.01131 -1.00000 - 12978 2002 3 18 17 42 22 537 4.9192 172.56108 2078.47376 1750.72100 -2.65915 0.16370 -1.61118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78929 -0.01131 -1.00000 - 12980 2002 3 18 17 42 32 376 4.9194 172.55808 2078.39374 1750.62953 -2.66691 0.16366 -1.61639 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78857 -0.01131 -1.00000 - 12982 2002 3 18 17 42 42 215 4.9196 172.55520 2078.31284 1750.53759 -2.67430 0.16380 -1.62161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78786 -0.01131 -1.00000 - 12984 2002 3 18 17 42 52 54 4.9198 172.55216 2078.23090 1750.44523 -2.68151 0.16388 -1.62687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78714 -0.01131 -1.00000 - 12986 2002 3 18 17 43 1 894 4.9200 172.54928 2078.14785 1750.35249 -2.68867 0.16388 -1.63214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78643 -0.01131 -1.00000 - 12988 2002 3 18 17 43 11 734 4.9202 172.54644 2078.06361 1750.25910 -2.69655 0.16397 -1.63743 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78571 -0.01131 -1.00000 - 12990 2002 3 18 17 43 21 575 4.9203 172.54349 2077.97824 1750.16494 -2.70457 0.16408 -1.64275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78500 -0.01130 -1.00000 - 12992 2002 3 18 17 43 31 416 4.9205 172.54069 2077.89181 1750.07012 -2.71244 0.16425 -1.64812 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78428 -0.01130 -1.00000 - 12994 2002 3 18 17 43 41 257 4.9207 172.53787 2077.80440 1749.97478 -2.72019 0.16445 -1.65354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78357 -0.01130 -1.00000 - 12996 2002 3 18 17 43 51 99 4.9209 172.53503 2077.71607 1749.87902 -2.72798 0.16459 -1.65901 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78285 -0.01130 -1.00000 - 12998 2002 3 18 17 44 0 941 4.9211 172.53226 2077.62683 1749.78290 -2.73600 0.16491 -1.66452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78213 -0.01130 -1.00000 - 13000 2002 3 18 17 44 10 783 4.9213 172.52953 2077.53665 1749.68618 -2.74444 0.16534 -1.67008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78142 -0.01130 -1.00000 - 13002 2002 3 18 17 44 20 626 4.9215 172.52677 2077.44558 1749.58873 -2.75345 0.16566 -1.67569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.78070 -0.01130 -1.00000 - 13004 2002 3 18 17 44 30 470 4.9217 172.52403 2077.35359 1749.49067 -2.76307 0.16607 -1.68138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77999 -0.01130 -1.00000 - 13006 2002 3 18 17 44 40 313 4.9219 172.52141 2077.26071 1749.39218 -2.77334 0.16651 -1.68714 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77927 -0.01130 -1.00000 - 13008 2002 3 18 17 44 50 157 4.9221 172.51869 2077.16697 1749.29334 -2.78421 0.16679 -1.69297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77855 -0.01130 -1.00000 - 13010 2002 3 18 17 45 0 2 4.9222 172.51604 2077.07239 1749.19424 -2.79565 0.16709 -1.69885 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77784 -0.01130 -1.00000 - 13013 2002 3 18 17 45 14 769 4.9225 172.51216 2076.92896 1749.04457 -2.81388 0.16764 -1.70778 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77676 -0.01129 -1.00000 - 13015 2002 3 18 17 45 24 614 4.9227 172.50952 2076.83258 1748.94410 -2.82670 0.16787 -1.71383 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77605 -0.01129 -1.00000 - 13017 2002 3 18 17 45 34 460 4.9229 172.50701 2076.73567 1748.84329 -2.84023 0.16805 -1.71993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77533 -0.01129 -1.00000 - 13019 2002 3 18 17 45 44 306 4.9231 172.50449 2076.63824 1748.74226 -2.85465 0.16830 -1.72607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77462 -0.01129 -1.00000 - 13021 2002 3 18 17 45 54 153 4.9233 172.50193 2076.54035 1748.64109 -2.86996 0.16851 -1.73222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77390 -0.01129 -1.00000 - 13023 2002 3 18 17 46 4 0 4.9235 172.49948 2076.44215 1748.53982 -2.88603 0.16864 -1.73838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77318 -0.01129 -1.00000 - 13025 2002 3 18 17 46 13 847 4.9237 172.49706 2076.34376 1748.43817 -2.90262 0.16878 -1.74452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77247 -0.01129 -1.00000 - 13027 2002 3 18 17 46 23 695 4.9239 172.49456 2076.24552 1748.33599 -2.91936 0.16892 -1.75063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77175 -0.01129 -1.00000 - 13029 2002 3 18 17 46 33 543 4.9241 172.49219 2076.14769 1748.23340 -2.93584 0.16907 -1.75672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77104 -0.01129 -1.00000 - 13031 2002 3 18 17 46 43 391 4.9243 172.48986 2076.05053 1748.13056 -2.95164 0.16919 -1.76278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.77032 -0.01129 -1.00000 - 13033 2002 3 18 17 46 53 240 4.9245 172.48743 2075.95423 1748.02755 -2.96645 0.16927 -1.76879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76960 -0.01129 -1.00000 - 13035 2002 3 18 17 47 3 89 4.9247 172.48514 2075.85885 1747.92441 -2.98139 0.16941 -1.77474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76889 -0.01129 -1.00000 - 13037 2002 3 18 17 47 12 939 4.9249 172.48287 2075.76429 1747.82084 -2.99616 0.16966 -1.78062 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76817 -0.01128 -1.00000 - 13039 2002 3 18 17 47 22 789 4.9251 172.48053 2075.67045 1747.71669 -3.00930 0.16987 -1.78646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76745 -0.01128 -1.00000 - 13041 2002 3 18 17 47 32 639 4.9253 172.47830 2075.57707 1747.61201 -3.02075 0.17008 -1.79228 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76674 -0.01128 -1.00000 - 13043 2002 3 18 17 47 42 490 4.9255 172.47610 2075.48375 1747.50691 -3.03066 0.17037 -1.79809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76602 -0.01128 -1.00000 - 13045 2002 3 18 17 47 52 341 4.9257 172.47385 2075.39004 1747.40145 -3.03925 0.17064 -1.80391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76531 -0.01128 -1.00000 - 13047 2002 3 18 17 48 2 193 4.9259 172.47168 2075.29547 1747.29561 -3.04679 0.17088 -1.80973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76459 -0.01128 -1.00000 - 13049 2002 3 18 17 48 12 45 4.9261 172.46957 2075.19952 1747.18909 -3.05348 0.17121 -1.81557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76387 -0.01128 -1.00000 - 13051 2002 3 18 17 48 21 897 4.9263 172.46738 2075.10183 1747.08173 -3.05956 0.17151 -1.82144 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76316 -0.01128 -1.00000 - 13053 2002 3 18 17 48 31 750 4.9265 172.46528 2075.00203 1746.97360 -3.06530 0.17177 -1.82736 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76244 -0.01128 -1.00000 - 13055 2002 3 18 17 48 41 603 4.9267 172.46326 2074.89989 1746.86484 -3.07227 0.17206 -1.83333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76172 -0.01128 -1.00000 - 13057 2002 3 18 17 48 51 457 4.9269 172.46115 2074.79527 1746.75556 -3.08035 0.17230 -1.83934 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76101 -0.01128 -1.00000 - 13059 2002 3 18 17 49 1 311 4.9271 172.45913 2074.68825 1746.64581 -3.08900 0.17247 -1.84538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.76029 -0.01128 -1.00000 - 13061 2002 3 18 17 49 11 165 4.9273 172.45718 2074.57893 1746.53534 -3.09843 0.17268 -1.85143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75957 -0.01127 -1.00000 - 13063 2002 3 18 17 49 21 20 4.9275 172.45516 2074.46764 1746.42406 -3.10892 0.17287 -1.85751 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75886 -0.01127 -1.00000 - 13065 2002 3 18 17 49 30 875 4.9277 172.45321 2074.35475 1746.31213 -3.12061 0.17303 -1.86360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75814 -0.01127 -1.00000 - 13067 2002 3 18 17 49 40 731 4.9279 172.45134 2074.24066 1746.19973 -3.13329 0.17321 -1.86971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75742 -0.01127 -1.00000 - 13069 2002 3 18 17 49 50 587 4.9281 172.44940 2074.12586 1746.08701 -3.14659 0.17337 -1.87582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75671 -0.01127 -1.00000 - 13071 2002 3 18 17 50 0 443 4.9283 172.44752 2074.01083 1745.97408 -3.16015 0.17348 -1.88190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75599 -0.01127 -1.00000 - 13073 2002 3 18 17 50 10 300 4.9285 172.44574 2073.89597 1745.86067 -3.17375 0.17365 -1.88793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75527 -0.01127 -1.00000 - 13075 2002 3 18 17 50 20 158 4.9287 172.44389 2073.78170 1745.74671 -3.18735 0.17384 -1.89393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75456 -0.01127 -1.00000 - 13077 2002 3 18 17 50 30 15 4.9289 172.44208 2073.66827 1745.63230 -3.20093 0.17401 -1.89990 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75384 -0.01127 -1.00000 - 13080 2002 3 18 17 50 44 802 4.9292 172.43951 2073.49988 1745.46021 -3.22124 0.17433 -1.90879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75276 -0.01127 -1.00000 - 13082 2002 3 18 17 50 54 661 4.9294 172.43772 2073.38875 1745.34526 -3.23453 0.17447 -1.91468 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75205 -0.01127 -1.00000 - 13084 2002 3 18 17 51 4 520 4.9296 172.43606 2073.27835 1745.23017 -3.24834 0.17471 -1.92053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75133 -0.01126 -1.00000 - 13086 2002 3 18 17 51 14 380 4.9298 172.43443 2073.16841 1745.11458 -3.26220 0.17497 -1.92633 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.75061 -0.01126 -1.00000 - 13088 2002 3 18 17 51 24 240 4.9300 172.43273 2073.05871 1744.99834 -3.27497 0.17514 -1.93213 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74990 -0.01126 -1.00000 - 13090 2002 3 18 17 51 34 100 4.9302 172.43113 2072.94893 1744.88150 -3.28658 0.17547 -1.93793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74918 -0.01126 -1.00000 - 13092 2002 3 18 17 51 43 961 4.9304 172.42959 2072.83869 1744.76421 -3.29712 0.17577 -1.94375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74846 -0.01126 -1.00000 - 13094 2002 3 18 17 51 53 822 4.9306 172.42796 2072.72756 1744.64653 -3.30679 0.17586 -1.94960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74774 -0.01126 -1.00000 - 13096 2002 3 18 17 52 3 683 4.9308 172.42645 2072.61517 1744.52848 -3.31586 0.17610 -1.95546 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74703 -0.01126 -1.00000 - 13098 2002 3 18 17 52 13 545 4.9310 172.42499 2072.50113 1744.40975 -3.32458 0.17644 -1.96134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74631 -0.01126 -1.00000 - 13100 2002 3 18 17 52 23 408 4.9313 172.42344 2072.38524 1744.29021 -3.33396 0.17656 -1.96725 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74559 -0.01126 -1.00000 - 13102 2002 3 18 17 52 33 271 4.9315 172.42202 2072.26741 1744.16994 -3.34446 0.17678 -1.97319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74488 -0.01126 -1.00000 - 13104 2002 3 18 17 52 43 134 4.9317 172.42063 2072.14769 1744.04911 -3.35506 0.17712 -1.97916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74416 -0.01126 -1.00000 - 13106 2002 3 18 17 52 52 997 4.9319 172.41918 2072.02620 1743.92782 -3.36584 0.17719 -1.98515 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74344 -0.01125 -1.00000 - 13108 2002 3 18 17 53 2 861 4.9321 172.41783 2071.90318 1743.80617 -3.37692 0.17731 -1.99114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74272 -0.01125 -1.00000 - 13110 2002 3 18 17 53 12 726 4.9323 172.41652 2071.77881 1743.68387 -3.38849 0.17762 -1.99712 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74201 -0.01125 -1.00000 - 13112 2002 3 18 17 53 22 591 4.9325 172.41518 2071.65341 1743.56084 -3.40063 0.17772 -2.00310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74129 -0.01125 -1.00000 - 13114 2002 3 18 17 53 32 456 4.9327 172.41388 2071.52725 1743.43721 -3.41323 0.17787 -2.00908 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.74057 -0.01125 -1.00000 - 13116 2002 3 18 17 53 42 322 4.9329 172.41267 2071.40061 1743.31316 -3.42609 0.17819 -2.01505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73985 -0.01125 -1.00000 - 13118 2002 3 18 17 53 52 188 4.9331 172.41141 2071.27377 1743.18882 -3.43907 0.17824 -2.02101 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73914 -0.01125 -1.00000 - 13120 2002 3 18 17 54 2 55 4.9334 172.41019 2071.14696 1743.06425 -3.45207 0.17832 -2.02694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73842 -0.01125 -1.00000 - 13122 2002 3 18 17 54 11 922 4.9336 172.40909 2071.02029 1742.93918 -3.46507 0.17870 -2.03283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73770 -0.01125 -1.00000 - 13124 2002 3 18 17 54 21 789 4.9338 172.40789 2070.89391 1742.81349 -3.47804 0.17882 -2.03870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73698 -0.01125 -1.00000 - 13126 2002 3 18 17 54 31 657 4.9340 172.40678 2070.76783 1742.68728 -3.49089 0.17888 -2.04456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73627 -0.01125 -1.00000 - 13128 2002 3 18 17 54 41 525 4.9342 172.40573 2070.64198 1742.56070 -3.50350 0.17931 -2.05040 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73555 -0.01125 -1.00000 - 13130 2002 3 18 17 54 51 394 4.9344 172.40464 2070.51626 1742.43382 -3.51588 0.17952 -2.05623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73483 -0.01124 -1.00000 - 13132 2002 3 18 17 55 1 263 4.9346 172.40362 2070.39049 1742.30670 -3.52881 0.17951 -2.06205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73411 -0.01124 -1.00000 - 13134 2002 3 18 17 55 11 133 4.9348 172.40262 2070.26439 1742.17901 -3.54103 0.17990 -2.06784 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73340 -0.01124 -1.00000 - 13136 2002 3 18 17 55 21 3 4.9351 172.40167 2070.13778 1742.05061 -3.55254 0.18026 -2.07364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73268 -0.01124 -1.00000 - 13138 2002 3 18 17 55 30 873 4.9353 172.40068 2070.01041 1741.92157 -3.56344 0.18038 -2.07945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73196 -0.01124 -1.00000 - 13140 2002 3 18 17 55 40 744 4.9355 172.39980 2069.88204 1741.79203 -3.57389 0.18075 -2.08527 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73124 -0.01124 -1.00000 - 13142 2002 3 18 17 55 50 615 4.9357 172.39894 2069.75245 1741.66209 -3.58428 0.18112 -2.09111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.73052 -0.01124 -1.00000 - 13144 2002 3 18 17 56 0 487 4.9359 172.39801 2069.62151 1741.53178 -3.59544 0.18125 -2.09696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72981 -0.01124 -1.00000 - 13146 2002 3 18 17 56 10 359 4.9361 172.39727 2069.48910 1741.40080 -3.60662 0.18155 -2.10280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72909 -0.01124 -1.00000 - 13148 2002 3 18 17 56 20 232 4.9364 172.39644 2069.35531 1741.26903 -3.61786 0.18192 -2.10865 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72837 -0.01124 -1.00000 - 13150 2002 3 18 17 56 30 105 4.9366 172.39567 2069.22023 1741.13657 -3.62923 0.18205 -2.11451 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72765 -0.01124 -1.00000 - 13153 2002 3 18 17 56 44 915 4.9369 172.39458 2069.01551 1740.93697 -3.64659 0.18245 -2.12334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72658 -0.01123 -1.00000 - 13155 2002 3 18 17 56 54 789 4.9371 172.39391 2068.87788 1740.80345 -3.65845 0.18260 -2.12922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72586 -0.01123 -1.00000 - 13157 2002 3 18 17 57 4 664 4.9373 172.39324 2068.73955 1740.66964 -3.67049 0.18269 -2.13510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72514 -0.01123 -1.00000 - 13159 2002 3 18 17 57 14 539 4.9376 172.39260 2068.60060 1740.53520 -3.68263 0.18297 -2.14094 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72442 -0.01123 -1.00000 - 13161 2002 3 18 17 57 24 414 4.9378 172.39206 2068.46125 1740.40004 -3.69479 0.18316 -2.14678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72370 -0.01123 -1.00000 - 13163 2002 3 18 17 57 34 290 4.9380 172.39140 2068.32161 1740.26425 -3.70693 0.18329 -2.15262 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72299 -0.01123 -1.00000 - 13165 2002 3 18 17 57 44 167 4.9382 172.39095 2068.18173 1740.12801 -3.71906 0.18352 -2.15845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72227 -0.01123 -1.00000 - 13167 2002 3 18 17 57 54 43 4.9384 172.39040 2068.04165 1739.99144 -3.73117 0.18361 -2.16429 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72155 -0.01123 -1.00000 - 13169 2002 3 18 17 58 3 921 4.9387 172.38990 2067.90135 1739.85458 -3.74325 0.18367 -2.17012 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72083 -0.01123 -1.00000 - 13171 2002 3 18 17 58 13 798 4.9389 172.38954 2067.76068 1739.71713 -3.75528 0.18390 -2.17593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.72011 -0.01123 -1.00000 - 13173 2002 3 18 17 58 23 676 4.9391 172.38903 2067.61965 1739.57897 -3.76724 0.18400 -2.18175 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71939 -0.01123 -1.00000 - 13175 2002 3 18 17 58 33 555 4.9393 172.38874 2067.47816 1739.44018 -3.77910 0.18401 -2.18758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71868 -0.01123 -1.00000 - 13177 2002 3 18 17 58 43 434 4.9395 172.38832 2067.33609 1739.30093 -3.79087 0.18427 -2.19343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71796 -0.01122 -1.00000 - 13179 2002 3 18 17 58 53 313 4.9398 172.38805 2067.19336 1739.16128 -3.80254 0.18443 -2.19930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71724 -0.01122 -1.00000 - 13181 2002 3 18 17 59 3 193 4.9400 172.38776 2067.04986 1739.02131 -3.81411 0.18445 -2.20518 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71652 -0.01122 -1.00000 - 13183 2002 3 18 17 59 13 73 4.9402 172.38741 2066.90543 1738.88061 -3.82561 0.18475 -2.21107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71580 -0.01122 -1.00000 - 13185 2002 3 18 17 59 22 954 4.9404 172.38734 2066.76007 1738.73903 -3.83706 0.18501 -2.21699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71508 -0.01122 -1.00000 - 13187 2002 3 18 17 59 32 835 4.9406 172.38694 2066.61373 1738.59668 -3.84849 0.18514 -2.22295 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71436 -0.01122 -1.00000 - 13189 2002 3 18 17 59 42 717 4.9409 172.38692 2066.46640 1738.45376 -3.85993 0.18547 -2.22896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71365 -0.01122 -1.00000 - 13191 2002 3 18 17 59 52 599 4.9411 172.38675 2066.31807 1738.31038 -3.87143 0.18574 -2.23502 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71293 -0.01122 -1.00000 - 13193 2002 3 18 18 0 2 481 4.9413 172.38655 2066.16877 1738.16663 -3.88301 0.18590 -2.24112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71221 -0.01122 -1.00000 - 13195 2002 3 18 18 0 12 364 4.9415 172.38665 2066.01845 1738.02217 -3.89471 0.18624 -2.24725 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71149 -0.01122 -1.00000 - 13197 2002 3 18 18 0 22 248 4.9418 172.38637 2065.86726 1737.87685 -3.90652 0.18659 -2.25350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71077 -0.01122 -1.00000 - 13199 2002 3 18 18 0 32 131 4.9420 172.38657 2065.71531 1737.73080 -3.91847 0.18671 -2.25981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.71005 -0.01122 -1.00000 - 13201 2002 3 18 18 0 42 16 4.9422 172.38642 2065.56262 1737.58423 -3.93063 0.18690 -2.26620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70933 -0.01121 -1.00000 - 13203 2002 3 18 18 0 51 901 4.9424 172.38650 2065.40920 1737.43724 -3.94301 0.18723 -2.27266 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70861 -0.01121 -1.00000 - 13205 2002 3 18 18 1 1 786 4.9426 172.38667 2065.25507 1737.28993 -3.95560 0.18746 -2.27917 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70790 -0.01121 -1.00000 - 13207 2002 3 18 18 1 11 671 4.9429 172.38653 2065.10014 1737.14196 -3.96837 0.18766 -2.28572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70718 -0.01121 -1.00000 - 13209 2002 3 18 18 1 21 557 4.9431 172.38695 2064.94452 1736.99325 -3.98134 0.18786 -2.29232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70646 -0.01121 -1.00000 - 13211 2002 3 18 18 1 31 444 4.9433 172.38684 2064.78820 1736.84388 -3.99450 0.18807 -2.29899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70574 -0.01121 -1.00000 - 13213 2002 3 18 18 1 41 331 4.9436 172.38716 2064.63117 1736.69402 -4.00784 0.18828 -2.30572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70502 -0.01121 -1.00000 - 13215 2002 3 18 18 1 51 218 4.9438 172.38741 2064.47345 1736.54379 -4.02136 0.18830 -2.31250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70430 -0.01121 -1.00000 - 13217 2002 3 18 18 2 1 106 4.9440 172.38744 2064.31501 1736.39326 -4.03505 0.18840 -2.31932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70358 -0.01121 -1.00000 - 13219 2002 3 18 18 2 10 995 4.9442 172.38803 2064.15576 1736.24208 -4.04887 0.18871 -2.32616 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70286 -0.01121 -1.00000 - 13221 2002 3 18 18 2 20 883 4.9445 172.38800 2063.99575 1736.09018 -4.06285 0.18885 -2.33304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70214 -0.01121 -1.00000 - 13223 2002 3 18 18 2 30 773 4.9447 172.38857 2063.83496 1735.93763 -4.07697 0.18884 -2.33997 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70142 -0.01120 -1.00000 - 13225 2002 3 18 18 2 40 662 4.9449 172.38887 2063.67334 1735.78460 -4.09125 0.18901 -2.34694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.70071 -0.01120 -1.00000 - 13227 2002 3 18 18 2 50 553 4.9451 172.38912 2063.51087 1735.63122 -4.10569 0.18923 -2.35393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69999 -0.01120 -1.00000 - 13229 2002 3 18 18 3 0 443 4.9454 172.38983 2063.34753 1735.47754 -4.12032 0.18932 -2.36093 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69927 -0.01120 -1.00000 - 13231 2002 3 18 18 3 10 334 4.9456 172.38992 2063.18320 1735.32324 -4.13518 0.18958 -2.36793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69855 -0.01120 -1.00000 - 13233 2002 3 18 18 3 20 226 4.9458 172.39071 2063.01795 1735.16823 -4.15031 0.18982 -2.37494 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69783 -0.01120 -1.00000 - 13235 2002 3 18 18 3 30 118 4.9460 172.39107 2062.85181 1735.01258 -4.16570 0.18990 -2.38195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69711 -0.01120 -1.00000 - 13237 2002 3 18 18 3 40 10 4.9463 172.39154 2062.68481 1734.85649 -4.18135 0.19014 -2.38896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69639 -0.01120 -1.00000 - 13240 2002 3 18 18 3 54 850 4.9466 172.39247 2062.43288 1734.62176 -4.20517 0.19049 -2.39942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69531 -0.01120 -1.00000 - 13242 2002 3 18 18 4 4 743 4.9468 172.39304 2062.26413 1734.46498 -4.22116 0.19079 -2.40635 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69459 -0.01120 -1.00000 - 13244 2002 3 18 18 4 14 637 4.9471 172.39393 2062.09477 1734.30759 -4.23711 0.19113 -2.41320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69387 -0.01120 -1.00000 - 13246 2002 3 18 18 4 24 532 4.9473 172.39426 2061.92498 1734.14948 -4.25293 0.19130 -2.42000 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69315 -0.01120 -1.00000 - 13248 2002 3 18 18 4 34 427 4.9475 172.39531 2061.75485 1733.99075 -4.26852 0.19149 -2.42675 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69243 -0.01119 -1.00000 - 13250 2002 3 18 18 4 44 322 4.9477 172.39586 2061.58442 1733.83157 -4.28383 0.19176 -2.43343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69171 -0.01119 -1.00000 - 13252 2002 3 18 18 4 54 218 4.9480 172.39664 2061.41370 1733.67206 -4.29882 0.19195 -2.44005 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69099 -0.01119 -1.00000 - 13254 2002 3 18 18 5 4 114 4.9482 172.39763 2061.24267 1733.51228 -4.31348 0.19204 -2.44659 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.69027 -0.01119 -1.00000 - 13256 2002 3 18 18 5 14 11 4.9484 172.39817 2061.07118 1733.35188 -4.32781 0.19223 -2.45304 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68955 -0.01119 -1.00000 - 13258 2002 3 18 18 5 23 908 4.9487 172.39935 2060.89924 1733.19075 -4.34184 0.19242 -2.45942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68883 -0.01119 -1.00000 - 13260 2002 3 18 18 5 33 806 4.9489 172.40006 2060.72676 1733.02895 -4.35557 0.19254 -2.46573 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68811 -0.01119 -1.00000 - 13262 2002 3 18 18 5 43 704 4.9491 172.40103 2060.55367 1732.86666 -4.36900 0.19271 -2.47199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68739 -0.01119 -1.00000 - 13264 2002 3 18 18 5 53 603 4.9494 172.40214 2060.37990 1732.70397 -4.38214 0.19286 -2.47818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68667 -0.01119 -1.00000 - 13266 2002 3 18 18 6 3 502 4.9496 172.40288 2060.20539 1732.54093 -4.39494 0.19306 -2.48430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68595 -0.01119 -1.00000 - 13268 2002 3 18 18 6 13 401 4.9498 172.40420 2060.03000 1732.37718 -4.40736 0.19329 -2.49033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68523 -0.01119 -1.00000 - 13270 2002 3 18 18 6 23 301 4.9501 172.40506 2059.85378 1732.21261 -4.41939 0.19342 -2.49631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68451 -0.01118 -1.00000 - 13272 2002 3 18 18 6 33 202 4.9503 172.40622 2059.67670 1732.04729 -4.43102 0.19358 -2.50225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68379 -0.01118 -1.00000 - 13274 2002 3 18 18 6 43 103 4.9505 172.40745 2059.49871 1731.88140 -4.44230 0.19379 -2.50814 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68307 -0.01118 -1.00000 - 13276 2002 3 18 18 6 53 4 4.9508 172.40839 2059.31978 1731.71503 -4.45330 0.19399 -2.51400 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68235 -0.01118 -1.00000 - 13278 2002 3 18 18 7 2 906 4.9510 172.40985 2059.13985 1731.54826 -4.46409 0.19418 -2.51980 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68163 -0.01118 -1.00000 - 13280 2002 3 18 18 7 12 808 4.9512 172.41087 2058.95876 1731.38071 -4.47476 0.19442 -2.52555 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68091 -0.01118 -1.00000 - 13282 2002 3 18 18 7 22 711 4.9515 172.41223 2058.77656 1731.21229 -4.48544 0.19464 -2.53128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.68019 -0.01118 -1.00000 - 13284 2002 3 18 18 7 32 614 4.9517 172.41357 2058.59321 1731.04309 -4.49618 0.19477 -2.53699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67947 -0.01118 -1.00000 - 13286 2002 3 18 18 7 42 518 4.9519 172.41474 2058.40870 1730.87328 -4.50706 0.19497 -2.54269 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67875 -0.01118 -1.00000 - 13288 2002 3 18 18 7 52 422 4.9522 172.41632 2058.22305 1730.70299 -4.51810 0.19521 -2.54838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67803 -0.01118 -1.00000 - 13290 2002 3 18 18 8 2 327 4.9524 172.41750 2058.03629 1730.53228 -4.52931 0.19543 -2.55405 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67731 -0.01118 -1.00000 - 13292 2002 3 18 18 8 12 232 4.9526 172.41906 2057.84835 1730.36080 -4.54068 0.19563 -2.55970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67659 -0.01118 -1.00000 - 13294 2002 3 18 18 8 22 138 4.9529 172.42051 2057.65939 1730.18847 -4.55224 0.19578 -2.56535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67587 -0.01117 -1.00000 - 13296 2002 3 18 18 8 32 44 4.9531 172.42190 2057.46946 1730.01539 -4.56402 0.19597 -2.57101 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67515 -0.01117 -1.00000 - 13298 2002 3 18 18 8 41 950 4.9533 172.42360 2057.27860 1729.84174 -4.57602 0.19620 -2.57667 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67443 -0.01117 -1.00000 - 13300 2002 3 18 18 8 51 857 4.9536 172.42496 2057.08685 1729.66764 -4.58825 0.19643 -2.58234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67371 -0.01117 -1.00000 - 13302 2002 3 18 18 9 1 765 4.9538 172.42671 2056.89428 1729.49319 -4.60073 0.19667 -2.58800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67299 -0.01117 -1.00000 - 13304 2002 3 18 18 9 11 673 4.9540 172.42826 2056.70080 1729.31800 -4.61345 0.19689 -2.59364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67227 -0.01117 -1.00000 - 13306 2002 3 18 18 9 21 581 4.9543 172.42989 2056.50654 1729.14202 -4.62640 0.19707 -2.59929 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67155 -0.01117 -1.00000 - 13308 2002 3 18 18 9 31 490 4.9545 172.43169 2056.31157 1728.96532 -4.63954 0.19719 -2.60495 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67083 -0.01117 -1.00000 - 13310 2002 3 18 18 9 41 400 4.9548 172.43327 2056.11591 1728.78808 -4.65279 0.19732 -2.61063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.67011 -0.01117 -1.00000 - 13312 2002 3 18 18 9 51 310 4.9550 172.43517 2055.91963 1728.61043 -4.66606 0.19751 -2.61630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66939 -0.01117 -1.00000 - 13314 2002 3 18 18 10 1 220 4.9552 172.43685 2055.72279 1728.43244 -4.67929 0.19769 -2.62198 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66867 -0.01117 -1.00000 - 13316 2002 3 18 18 10 11 131 4.9555 172.43872 2055.52529 1728.25372 -4.69242 0.19785 -2.62764 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66795 -0.01117 -1.00000 - 13318 2002 3 18 18 10 21 42 4.9557 172.44060 2055.32724 1728.07422 -4.70540 0.19796 -2.63332 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66723 -0.01116 -1.00000 - 13320 2002 3 18 18 10 30 954 4.9559 172.44241 2055.12865 1727.89398 -4.71846 0.19809 -2.63901 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66650 -0.01116 -1.00000 - 13322 2002 3 18 18 10 40 866 4.9562 172.44444 2054.92946 1727.71320 -4.73153 0.19825 -2.64473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66578 -0.01116 -1.00000 - 13324 2002 3 18 18 10 50 779 4.9564 172.44630 2054.72964 1727.53197 -4.74433 0.19841 -2.65047 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66506 -0.01116 -1.00000 - 13326 2002 3 18 18 11 0 692 4.9567 172.44836 2054.52910 1727.35037 -4.75685 0.19861 -2.65623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66434 -0.01116 -1.00000 - 13328 2002 3 18 18 11 10 606 4.9569 172.45036 2054.32762 1727.16799 -4.76909 0.19884 -2.66200 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66362 -0.01116 -1.00000 - 13330 2002 3 18 18 11 20 520 4.9571 172.45240 2054.12521 1726.98477 -4.78110 0.19902 -2.66781 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66290 -0.01116 -1.00000 - 13332 2002 3 18 18 11 30 434 4.9574 172.45453 2053.92174 1726.80078 -4.79294 0.19917 -2.67367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66218 -0.01116 -1.00000 - 13334 2002 3 18 18 11 40 349 4.9576 172.45660 2053.71711 1726.61617 -4.80468 0.19933 -2.67957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66146 -0.01116 -1.00000 - 13336 2002 3 18 18 11 50 265 4.9579 172.45881 2053.51125 1726.43107 -4.81642 0.19954 -2.68553 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66074 -0.01116 -1.00000 - 13338 2002 3 18 18 12 0 181 4.9581 172.46096 2053.30410 1726.24556 -4.82824 0.19976 -2.69152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.66002 -0.01116 -1.00000 - 13340 2002 3 18 18 12 10 98 4.9583 172.46321 2053.09552 1726.05923 -4.84075 0.19996 -2.69754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65929 -0.01115 -1.00000 - 13342 2002 3 18 18 12 20 15 4.9586 172.46547 2052.88568 1725.87205 -4.85348 0.20013 -2.70361 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65857 -0.01115 -1.00000 - 13345 2002 3 18 18 12 34 891 4.9589 172.46893 2052.56869 1725.58985 -4.87296 0.20038 -2.71282 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65749 -0.01115 -1.00000 - 13347 2002 3 18 18 12 44 809 4.9592 172.47126 2052.35600 1725.40103 -4.88618 0.20058 -2.71902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65677 -0.01115 -1.00000 - 13349 2002 3 18 18 12 54 728 4.9594 172.47363 2052.14234 1725.21178 -4.89954 0.20077 -2.72527 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65605 -0.01115 -1.00000 - 13351 2002 3 18 18 13 4 647 4.9597 172.47606 2051.92782 1725.02220 -4.91301 0.20097 -2.73153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65533 -0.01115 -1.00000 - 13353 2002 3 18 18 13 14 567 4.9599 172.47849 2051.71233 1724.83183 -4.92656 0.20116 -2.73780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65461 -0.01115 -1.00000 - 13355 2002 3 18 18 13 24 487 4.9601 172.48098 2051.49606 1724.64062 -4.94021 0.20135 -2.74411 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65388 -0.01115 -1.00000 - 13357 2002 3 18 18 13 34 408 4.9604 172.48348 2051.27902 1724.44863 -4.95397 0.20153 -2.75045 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65316 -0.01115 -1.00000 - 13359 2002 3 18 18 13 44 329 4.9606 172.48604 2051.06120 1724.25607 -4.96792 0.20171 -2.75684 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65244 -0.01115 -1.00000 - 13361 2002 3 18 18 13 54 251 4.9609 172.48862 2050.84258 1724.06305 -4.98220 0.20188 -2.76325 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65172 -0.01115 -1.00000 - 13363 2002 3 18 18 14 4 173 4.9611 172.49123 2050.62314 1723.86968 -4.99652 0.20205 -2.76969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65100 -0.01114 -1.00000 - 13365 2002 3 18 18 14 14 95 4.9614 172.49389 2050.40270 1723.67553 -5.01087 0.20224 -2.77613 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.65028 -0.01114 -1.00000 - 13367 2002 3 18 18 14 24 18 4.9616 172.49657 2050.18137 1723.48058 -5.02529 0.20243 -2.78260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64956 -0.01114 -1.00000 - 13369 2002 3 18 18 14 33 942 4.9618 172.49929 2049.95911 1723.28487 -5.03977 0.20261 -2.78910 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64883 -0.01114 -1.00000 - 13371 2002 3 18 18 14 43 866 4.9621 172.50204 2049.73593 1723.08861 -5.05432 0.20277 -2.79564 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64811 -0.01114 -1.00000 - 13373 2002 3 18 18 14 53 791 4.9623 172.50483 2049.51182 1722.89190 -5.06894 0.20293 -2.80220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64739 -0.01114 -1.00000 - 13375 2002 3 18 18 15 3 716 4.9626 172.50765 2049.28682 1722.69483 -5.08361 0.20311 -2.80877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64667 -0.01114 -1.00000 - 13377 2002 3 18 18 15 13 641 4.9628 172.51050 2049.06076 1722.49695 -5.09833 0.20330 -2.81533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64595 -0.01114 -1.00000 - 13379 2002 3 18 18 15 23 567 4.9631 172.51339 2048.83376 1722.29804 -5.11309 0.20349 -2.82201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64523 -0.01114 -1.00000 - 13381 2002 3 18 18 15 33 494 4.9633 172.51630 2048.60582 1722.09819 -5.12790 0.20366 -2.82875 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64450 -0.01114 -1.00000 - 13383 2002 3 18 18 15 43 421 4.9636 172.51925 2048.37691 1721.89766 -5.14276 0.20384 -2.83554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64378 -0.01114 -1.00000 - 13385 2002 3 18 18 15 53 348 4.9638 172.52222 2048.14703 1721.69661 -5.15764 0.20402 -2.84237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64306 -0.01114 -1.00000 - 13387 2002 3 18 18 16 3 276 4.9640 172.52524 2047.91615 1721.49517 -5.17250 0.20419 -2.84922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64234 -0.01113 -1.00000 - 13389 2002 3 18 18 16 13 205 4.9643 172.52828 2047.68408 1721.29290 -5.18735 0.20439 -2.85607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64162 -0.01113 -1.00000 - 13391 2002 3 18 18 16 23 134 4.9645 172.53136 2047.45093 1721.08977 -5.20220 0.20458 -2.86296 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64089 -0.01113 -1.00000 - 13393 2002 3 18 18 16 33 63 4.9648 172.53447 2047.21665 1720.88585 -5.21709 0.20475 -2.86988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.64017 -0.01113 -1.00000 - 13395 2002 3 18 18 16 42 993 4.9650 172.53761 2046.98120 1720.68134 -5.23208 0.20494 -2.87682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63945 -0.01113 -1.00000 - 13397 2002 3 18 18 16 52 923 4.9652 172.54079 2046.74458 1720.47637 -5.24722 0.20513 -2.88379 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63873 -0.01113 -1.00000 - 13399 2002 3 18 18 17 2 854 4.9654 172.54400 2046.50681 1720.27103 -5.26256 0.20529 -2.89075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63800 -0.01113 -1.00000 - 13401 2002 3 18 18 17 12 785 4.9657 172.54725 2046.26776 1720.06489 -5.27811 0.20544 -2.89769 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63728 -0.01113 -1.00000 - 13403 2002 3 18 18 17 22 717 4.9659 172.55053 2046.02764 1719.85794 -5.29390 0.20562 -2.90464 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63656 -0.01113 -1.00000 - 13405 2002 3 18 18 17 32 649 4.9661 172.55384 2045.78652 1719.65024 -5.30990 0.20583 -2.91158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63584 -0.01113 -1.00000 - 13407 2002 3 18 18 17 42 582 4.9663 172.55719 2045.54449 1719.44197 -5.32607 0.20603 -2.91851 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63512 -0.01113 -1.00000 - 13409 2002 3 18 18 17 52 515 4.9666 172.56057 2045.30163 1719.23328 -5.34234 0.20622 -2.92542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63439 -0.01113 -1.00000 - 13411 2002 3 18 18 18 2 448 4.9668 172.56398 2045.05803 1719.02425 -5.35863 0.20640 -2.93229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63367 -0.01112 -1.00000 - 13413 2002 3 18 18 18 12 382 4.9670 172.56743 2044.81356 1718.81444 -5.37485 0.20661 -2.93911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63295 -0.01112 -1.00000 - 13415 2002 3 18 18 18 22 316 4.9672 172.57091 2044.56840 1718.60384 -5.39094 0.20683 -2.94589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63223 -0.01112 -1.00000 - 13417 2002 3 18 18 18 32 251 4.9674 172.57443 2044.32254 1718.39251 -5.40682 0.20705 -2.95264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63150 -0.01112 -1.00000 - 13419 2002 3 18 18 18 42 186 4.9677 172.57798 2044.07599 1718.18061 -5.42244 0.20727 -2.95935 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63078 -0.01112 -1.00000 - 13421 2002 3 18 18 18 52 122 4.9679 172.58157 2043.82870 1717.96827 -5.43781 0.20750 -2.96602 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.63006 -0.01112 -1.00000 - 13423 2002 3 18 18 19 2 58 4.9681 172.58519 2043.58064 1717.75558 -5.45292 0.20773 -2.97265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62934 -0.01112 -1.00000 - 13425 2002 3 18 18 19 11 995 4.9683 172.58884 2043.33156 1717.54209 -5.46782 0.20795 -2.97921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62861 -0.01112 -1.00000 - 13427 2002 3 18 18 19 21 932 4.9686 172.59253 2043.08155 1717.32778 -5.48256 0.20815 -2.98573 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62789 -0.01112 -1.00000 - 13429 2002 3 18 18 19 31 869 4.9688 172.59626 2042.83054 1717.11270 -5.49718 0.20837 -2.99223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62717 -0.01112 -1.00000 - 13431 2002 3 18 18 19 41 807 4.9690 172.60002 2042.57848 1716.89702 -5.51171 0.20860 -2.99870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62645 -0.01112 -1.00000 - 13433 2002 3 18 18 19 51 745 4.9692 172.60381 2042.32533 1716.68086 -5.52617 0.20880 -3.00514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62572 -0.01111 -1.00000 - 13435 2002 3 18 18 20 1 684 4.9695 172.60764 2042.07108 1716.46432 -5.54057 0.20900 -3.01152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62500 -0.01111 -1.00000 - 13437 2002 3 18 18 20 11 623 4.9697 172.61150 2041.81551 1716.24693 -5.55495 0.20920 -3.01784 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62428 -0.01111 -1.00000 - 13439 2002 3 18 18 20 21 563 4.9699 172.61540 2041.55879 1716.02871 -5.56932 0.20937 -3.02412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62355 -0.01111 -1.00000 - 13441 2002 3 18 18 20 31 503 4.9701 172.61933 2041.30092 1715.80969 -5.58370 0.20953 -3.03037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62283 -0.01111 -1.00000 - 13443 2002 3 18 18 20 41 444 4.9703 172.62330 2041.04191 1715.59006 -5.59809 0.20969 -3.03658 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62211 -0.01111 -1.00000 - 13445 2002 3 18 18 20 51 385 4.9706 172.62730 2040.78180 1715.36994 -5.61247 0.20987 -3.04275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62139 -0.01111 -1.00000 - 13447 2002 3 18 18 21 1 326 4.9708 172.63134 2040.52064 1715.14943 -5.62684 0.21005 -3.04885 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.62066 -0.01111 -1.00000 - 13449 2002 3 18 18 21 11 268 4.9710 172.63542 2040.25825 1714.92808 -5.64119 0.21020 -3.05487 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61994 -0.01111 -1.00000 - 13451 2002 3 18 18 21 21 211 4.9713 172.63952 2039.99485 1714.70589 -5.65550 0.21035 -3.06085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61922 -0.01111 -1.00000 - 13453 2002 3 18 18 21 31 153 4.9715 172.64367 2039.73047 1714.48290 -5.66977 0.21052 -3.06678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61849 -0.01111 -1.00000 - 13455 2002 3 18 18 21 41 97 4.9717 172.64784 2039.46512 1714.25931 -5.68397 0.21069 -3.07267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61777 -0.01111 -1.00000 - 13457 2002 3 18 18 21 51 40 4.9719 172.65206 2039.19885 1714.03523 -5.69809 0.21086 -3.07850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61705 -0.01110 -1.00000 - 13459 2002 3 18 18 22 0 985 4.9722 172.65631 2038.93169 1713.81076 -5.71212 0.21104 -3.08427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61632 -0.01110 -1.00000 - 13461 2002 3 18 18 22 10 929 4.9724 172.66059 2038.66343 1713.58543 -5.72604 0.21124 -3.08996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61560 -0.01110 -1.00000 - 13463 2002 3 18 18 22 20 874 4.9726 172.66491 2038.39427 1713.35927 -5.73985 0.21144 -3.09562 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61488 -0.01110 -1.00000 - 13465 2002 3 18 18 22 30 820 4.9728 172.66927 2038.12419 1713.13229 -5.75355 0.21164 -3.10124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61415 -0.01110 -1.00000 - 13467 2002 3 18 18 22 40 766 4.9731 172.67366 2037.85318 1712.90469 -5.76713 0.21183 -3.10683 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61343 -0.01110 -1.00000 - 13469 2002 3 18 18 22 50 712 4.9733 172.67808 2037.58123 1712.67660 -5.78058 0.21203 -3.11239 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61271 -0.01110 -1.00000 - 13471 2002 3 18 18 23 0 659 4.9735 172.68255 2037.30831 1712.44809 -5.79390 0.21224 -3.11790 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61198 -0.01110 -1.00000 - 13473 2002 3 18 18 23 10 607 4.9737 172.68704 2037.03418 1712.21869 -5.80710 0.21245 -3.12336 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61126 -0.01110 -1.00000 - 13475 2002 3 18 18 23 20 554 4.9740 172.69157 2036.75899 1711.98841 -5.82020 0.21267 -3.12881 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.61054 -0.01110 -1.00000 - 13477 2002 3 18 18 23 30 503 4.9742 172.69614 2036.48268 1711.75730 -5.83321 0.21288 -3.13424 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60981 -0.01110 -1.00000 - 13479 2002 3 18 18 23 40 452 4.9744 172.70075 2036.20523 1711.52553 -5.84615 0.21310 -3.13967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60909 -0.01110 -1.00000 - 13481 2002 3 18 18 23 50 401 4.9747 172.70538 2035.92662 1711.29322 -5.85903 0.21331 -3.14509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60837 -0.01109 -1.00000 - 13483 2002 3 18 18 24 0 350 4.9749 172.71006 2035.64687 1711.06048 -5.87185 0.21352 -3.15048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60764 -0.01109 -1.00000 - 13485 2002 3 18 18 24 10 300 4.9751 172.71477 2035.36572 1710.82681 -5.88465 0.21372 -3.15585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60692 -0.01109 -1.00000 - 13487 2002 3 18 18 24 20 251 4.9753 172.71951 2035.08339 1710.59226 -5.89746 0.21392 -3.16122 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60620 -0.01109 -1.00000 - 13489 2002 3 18 18 24 30 202 4.9756 172.72429 2034.79989 1710.35684 -5.91029 0.21412 -3.16660 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60547 -0.01109 -1.00000 - 13491 2002 3 18 18 24 40 154 4.9758 172.72911 2034.51522 1710.12076 -5.92315 0.21431 -3.17200 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60475 -0.01109 -1.00000 - 13493 2002 3 18 18 24 50 105 4.9760 172.73396 2034.22942 1709.88412 -5.93601 0.21450 -3.17740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60403 -0.01109 -1.00000 - 13495 2002 3 18 18 25 0 58 4.9763 172.73885 2033.94252 1709.64705 -5.94889 0.21469 -3.18280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60330 -0.01109 -1.00000 - 13497 2002 3 18 18 25 10 11 4.9765 172.74377 2033.65430 1709.40904 -5.96176 0.21486 -3.18819 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60258 -0.01109 -1.00000 - 13500 2002 3 18 18 25 24 941 4.9768 172.75122 2033.21989 1709.05037 -5.98110 0.21509 -3.19633 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60149 -0.01109 -1.00000 - 13502 2002 3 18 18 25 34 895 4.9771 172.75624 2032.92886 1708.81028 -5.99401 0.21526 -3.20179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60077 -0.01109 -1.00000 - 13504 2002 3 18 18 25 44 849 4.9773 172.76129 2032.63667 1708.56959 -6.00695 0.21542 -3.20728 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.60004 -0.01108 -1.00000 - 13506 2002 3 18 18 25 54 804 4.9775 172.76638 2032.34331 1708.32841 -6.01992 0.21558 -3.21281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59932 -0.01108 -1.00000 - 13508 2002 3 18 18 26 4 760 4.9778 172.77150 2032.04878 1708.08683 -6.03295 0.21573 -3.21834 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59860 -0.01108 -1.00000 - 13510 2002 3 18 18 26 14 716 4.9780 172.77665 2031.75275 1707.84429 -6.04607 0.21589 -3.22388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59787 -0.01108 -1.00000 - 13512 2002 3 18 18 26 24 672 4.9782 172.78184 2031.45545 1707.60087 -6.05932 0.21606 -3.22946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59715 -0.01108 -1.00000 - 13514 2002 3 18 18 26 34 629 4.9784 172.78707 2031.15684 1707.35658 -6.07275 0.21623 -3.23508 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59642 -0.01108 -1.00000 - 13516 2002 3 18 18 26 44 586 4.9787 172.79234 2030.85693 1707.11160 -6.08637 0.21640 -3.24074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59570 -0.01108 -1.00000 - 13518 2002 3 18 18 26 54 544 4.9789 172.79764 2030.55574 1706.86609 -6.10019 0.21658 -3.24644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59498 -0.01108 -1.00000 - 13520 2002 3 18 18 27 4 502 4.9791 172.80298 2030.25331 1706.62014 -6.11422 0.21678 -3.25216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59425 -0.01108 -1.00000 - 13522 2002 3 18 18 27 14 460 4.9794 172.80835 2029.94942 1706.37327 -6.12846 0.21697 -3.25788 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59353 -0.01108 -1.00000 - 13524 2002 3 18 18 27 24 419 4.9796 172.81375 2029.64434 1706.12555 -6.14291 0.21715 -3.26365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59280 -0.01108 -1.00000 - 13526 2002 3 18 18 27 34 379 4.9798 172.81920 2029.33812 1705.87701 -6.15753 0.21732 -3.26945 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59208 -0.01107 -1.00000 - 13528 2002 3 18 18 27 44 339 4.9801 172.82468 2029.03082 1705.62785 -6.17231 0.21750 -3.27528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59135 -0.01107 -1.00000 - 13530 2002 3 18 18 27 54 300 4.9803 172.83019 2028.72247 1705.37818 -6.18719 0.21769 -3.28114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.59063 -0.01107 -1.00000 - 13532 2002 3 18 18 28 4 261 4.9805 172.83575 2028.41315 1705.12812 -6.20214 0.21789 -3.28701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58991 -0.01107 -1.00000 - 13534 2002 3 18 18 28 14 222 4.9808 172.84133 2028.10260 1704.87715 -6.21713 0.21808 -3.29288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58918 -0.01107 -1.00000 - 13536 2002 3 18 18 28 24 184 4.9810 172.84696 2027.79105 1704.62536 -6.23215 0.21826 -3.29877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58846 -0.01107 -1.00000 - 13538 2002 3 18 18 28 34 146 4.9812 172.85262 2027.47851 1704.37278 -6.24717 0.21842 -3.30470 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58773 -0.01107 -1.00000 - 13540 2002 3 18 18 28 44 109 4.9815 172.85831 2027.16495 1704.11957 -6.26217 0.21858 -3.31065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58701 -0.01107 -1.00000 - 13542 2002 3 18 18 28 54 72 4.9817 172.86405 2026.85037 1703.86587 -6.27713 0.21873 -3.31663 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58628 -0.01107 -1.00000 - 13544 2002 3 18 18 29 4 36 4.9819 172.86981 2026.53476 1703.61177 -6.29202 0.21891 -3.32261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58556 -0.01107 -1.00000 - 13546 2002 3 18 18 29 14 0 4.9822 172.87562 2026.21778 1703.35674 -6.30684 0.21908 -3.32859 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58483 -0.01107 -1.00000 - 13548 2002 3 18 18 29 23 965 4.9824 172.88146 2025.89967 1703.10088 -6.32161 0.21925 -3.33459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58411 -0.01107 -1.00000 - 13550 2002 3 18 18 29 33 930 4.9826 172.88734 2025.58036 1702.84421 -6.33632 0.21941 -3.34063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58339 -0.01106 -1.00000 - 13552 2002 3 18 18 29 43 896 4.9829 172.89325 2025.25984 1702.58689 -6.35099 0.21956 -3.34668 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58266 -0.01106 -1.00000 - 13554 2002 3 18 18 29 53 862 4.9831 172.89920 2024.93808 1702.32905 -6.36561 0.21971 -3.35275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58194 -0.01106 -1.00000 - 13556 2002 3 18 18 30 3 828 4.9833 172.90519 2024.61509 1702.07078 -6.38020 0.21986 -3.35882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58121 -0.01106 -1.00000 - 13558 2002 3 18 18 30 13 795 4.9836 172.91121 2024.29051 1701.81152 -6.39476 0.22003 -3.36489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.58049 -0.01106 -1.00000 - 13560 2002 3 18 18 30 23 763 4.9838 172.91727 2023.96444 1701.55102 -6.40948 0.22020 -3.37111 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57976 -0.01106 -1.00000 - 13562 2002 3 18 18 30 33 731 4.9840 172.92337 2023.63675 1701.28931 -6.42440 0.22038 -3.37744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57904 -0.01106 -1.00000 - 13564 2002 3 18 18 30 43 699 4.9843 172.92950 2023.30744 1701.02670 -6.43944 0.22055 -3.38384 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57831 -0.01106 -1.00000 - 13566 2002 3 18 18 30 53 668 4.9845 172.93567 2022.97655 1700.76342 -6.45458 0.22072 -3.39030 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57759 -0.01106 -1.00000 - 13568 2002 3 18 18 31 3 638 4.9848 172.94187 2022.64412 1700.49962 -6.46985 0.22090 -3.39680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57686 -0.01106 -1.00000 - 13570 2002 3 18 18 31 13 608 4.9850 172.94811 2022.30988 1700.23483 -6.48526 0.22109 -3.40331 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57614 -0.01106 -1.00000 - 13572 2002 3 18 18 31 23 578 4.9852 172.95438 2021.97411 1699.96919 -6.50088 0.22126 -3.40986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57541 -0.01106 -1.00000 - 13574 2002 3 18 18 31 33 549 4.9855 172.96069 2021.63684 1699.70274 -6.51674 0.22143 -3.41645 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57469 -0.01105 -1.00000 - 13576 2002 3 18 18 31 43 520 4.9857 172.96704 2021.29810 1699.43564 -6.53285 0.22161 -3.42306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57396 -0.01105 -1.00000 - 13578 2002 3 18 18 31 53 492 4.9859 172.97342 2020.95793 1699.16805 -6.54923 0.22178 -3.42967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57324 -0.01105 -1.00000 - 13580 2002 3 18 18 32 3 464 4.9862 172.97984 2020.61640 1698.90008 -6.56586 0.22194 -3.43627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57251 -0.01105 -1.00000 - 13582 2002 3 18 18 32 13 437 4.9864 172.98630 2020.27322 1698.63120 -6.58277 0.22210 -3.44284 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57179 -0.01105 -1.00000 - 13584 2002 3 18 18 32 23 410 4.9866 172.99279 2019.92875 1698.36157 -6.59994 0.22226 -3.44940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57106 -0.01105 -1.00000 - 13586 2002 3 18 18 32 33 383 4.9869 172.99932 2019.58306 1698.09120 -6.61735 0.22241 -3.45593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.57033 -0.01105 -1.00000 - 13588 2002 3 18 18 32 43 358 4.9871 173.00588 2019.23622 1697.82026 -6.63495 0.22255 -3.46242 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56961 -0.01105 -1.00000 - 13590 2002 3 18 18 32 53 332 4.9874 173.01249 2018.88835 1697.54890 -6.65267 0.22270 -3.46886 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56888 -0.01105 -1.00000 - 13592 2002 3 18 18 33 3 307 4.9876 173.01912 2018.53955 1697.27721 -6.67044 0.22287 -3.47523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56816 -0.01105 -1.00000 - 13594 2002 3 18 18 33 13 283 4.9878 173.02580 2018.18955 1697.00465 -6.68818 0.22302 -3.48150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56743 -0.01105 -1.00000 - 13596 2002 3 18 18 33 23 259 4.9881 173.03251 2017.83872 1696.73139 -6.70584 0.22317 -3.48770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56671 -0.01104 -1.00000 - 13598 2002 3 18 18 33 33 235 4.9883 173.03925 2017.48711 1696.45741 -6.72333 0.22334 -3.49382 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56598 -0.01104 -1.00000 - 13600 2002 3 18 18 33 43 212 4.9885 173.04603 2017.13475 1696.18289 -6.74079 0.22353 -3.49986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56526 -0.01104 -1.00000 - 13602 2002 3 18 18 33 53 190 4.9888 173.05285 2016.78167 1695.90793 -6.75869 0.22370 -3.50581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56453 -0.01104 -1.00000 - 13604 2002 3 18 18 34 3 168 4.9890 173.05970 2016.42788 1695.63264 -6.77624 0.22388 -3.51165 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56381 -0.01104 -1.00000 - 13606 2002 3 18 18 34 13 146 4.9893 173.06659 2016.07295 1695.35644 -6.79335 0.22407 -3.51737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56308 -0.01104 -1.00000 - 13608 2002 3 18 18 34 23 125 4.9895 173.07352 2015.71713 1695.07949 -6.80990 0.22426 -3.52301 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56235 -0.01104 -1.00000 - 13610 2002 3 18 18 34 33 104 4.9897 173.08048 2015.36030 1694.80177 -6.82572 0.22444 -3.52855 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56163 -0.01104 -1.00000 - 13612 2002 3 18 18 34 43 84 4.9900 173.08748 2015.00232 1694.52342 -6.84067 0.22461 -3.53401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56090 -0.01104 -1.00000 - 13614 2002 3 18 18 34 53 65 4.9902 173.09451 2014.64308 1694.24455 -6.85474 0.22476 -3.53936 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.56018 -0.01104 -1.00000 - 13616 2002 3 18 18 35 3 45 4.9905 173.10158 2014.28247 1693.96524 -6.86794 0.22491 -3.54460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55945 -0.01104 -1.00000 - 13618 2002 3 18 18 35 13 27 4.9907 173.10869 2013.92002 1693.68492 -6.88038 0.22506 -3.54972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55873 -0.01104 -1.00000 - 13620 2002 3 18 18 35 23 8 4.9909 173.11583 2013.55598 1693.40375 -6.89218 0.22517 -3.55475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55800 -0.01103 -1.00000 - 13622 2002 3 18 18 35 32 991 4.9912 173.12301 2013.19032 1693.12173 -6.90348 0.22528 -3.55970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55727 -0.01103 -1.00000 - 13624 2002 3 18 18 35 42 973 4.9914 173.13023 2012.82302 1692.83900 -6.91443 0.22540 -3.56456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55655 -0.01103 -1.00000 - 13626 2002 3 18 18 35 52 957 4.9917 173.13748 2012.45412 1692.55569 -6.92516 0.22553 -3.56933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55582 -0.01103 -1.00000 - 13628 2002 3 18 18 36 2 940 4.9919 173.14476 2012.08367 1692.27189 -6.93580 0.22563 -3.57401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55510 -0.01103 -1.00000 - 13630 2002 3 18 18 36 12 924 4.9921 173.15209 2011.71131 1691.98704 -6.94644 0.22574 -3.57858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55437 -0.01103 -1.00000 - 13632 2002 3 18 18 36 22 909 4.9924 173.15945 2011.33745 1691.70136 -6.95718 0.22587 -3.58308 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55364 -0.01103 -1.00000 - 13634 2002 3 18 18 36 32 894 4.9926 173.16684 2010.96215 1691.41482 -6.96808 0.22602 -3.58752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55292 -0.01103 -1.00000 - 13636 2002 3 18 18 36 42 880 4.9929 173.17428 2010.58547 1691.12760 -6.97918 0.22615 -3.59190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55219 -0.01103 -1.00000 - 13638 2002 3 18 18 36 52 866 4.9931 173.18175 2010.20750 1690.83981 -6.99051 0.22629 -3.59622 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55146 -0.01103 -1.00000 - 13640 2002 3 18 18 37 2 852 4.9933 173.18925 2009.82832 1690.55157 -7.00203 0.22647 -3.60046 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55074 -0.01103 -1.00000 - 13642 2002 3 18 18 37 12 840 4.9936 173.19680 2009.44753 1690.26230 -7.01372 0.22666 -3.60463 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.55001 -0.01102 -1.00000 - 13644 2002 3 18 18 37 22 827 4.9938 173.20438 2009.06553 1689.97224 -7.02552 0.22684 -3.60877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54929 -0.01102 -1.00000 - 13646 2002 3 18 18 37 32 815 4.9941 173.21199 2008.68234 1689.68136 -7.03739 0.22700 -3.61287 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54856 -0.01102 -1.00000 - 13648 2002 3 18 18 37 42 804 4.9943 173.21965 2008.29793 1689.38981 -7.04928 0.22718 -3.61694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54783 -0.01102 -1.00000 - 13650 2002 3 18 18 37 52 793 4.9946 173.22734 2007.91233 1689.09773 -7.06113 0.22738 -3.62097 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54711 -0.01102 -1.00000 - 13652 2002 3 18 18 38 2 782 4.9948 173.23507 2007.52553 1688.80520 -7.07290 0.22761 -3.62496 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54638 -0.01102 -1.00000 - 13654 2002 3 18 18 38 12 772 4.9950 173.24283 2007.13705 1688.51164 -7.08457 0.22781 -3.62891 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54565 -0.01102 -1.00000 - 13656 2002 3 18 18 38 22 762 4.9953 173.25063 2006.74723 1688.21728 -7.09612 0.22800 -3.63284 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54493 -0.01102 -1.00000 - 13658 2002 3 18 18 38 32 753 4.9955 173.25848 2006.35604 1687.92211 -7.10754 0.22820 -3.63677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54420 -0.01102 -1.00000 - 13660 2002 3 18 18 38 42 745 4.9958 173.26635 2005.96344 1687.62627 -7.11885 0.22841 -3.64069 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54347 -0.01102 -1.00000 - 13662 2002 3 18 18 38 52 737 4.9960 173.27426 2005.56942 1687.32988 -7.13007 0.22861 -3.64461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54275 -0.01102 -1.00000 - 13664 2002 3 18 18 39 2 729 4.9962 173.28222 2005.17401 1687.03303 -7.14123 0.22880 -3.64850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54202 -0.01102 -1.00000 - 13666 2002 3 18 18 39 12 722 4.9965 173.29020 2004.77671 1686.73516 -7.15239 0.22897 -3.65237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54129 -0.01101 -1.00000 - 13668 2002 3 18 18 39 22 715 4.9967 173.29823 2004.37795 1686.43651 -7.16360 0.22915 -3.65625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.54057 -0.01101 -1.00000 - 13670 2002 3 18 18 39 32 709 4.9970 173.30629 2003.97776 1686.13706 -7.17490 0.22932 -3.66013 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53984 -0.01101 -1.00000 - 13672 2002 3 18 18 39 42 703 4.9972 173.31439 2003.57618 1685.83698 -7.18635 0.22946 -3.66403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53911 -0.01101 -1.00000 - 13674 2002 3 18 18 39 52 698 4.9975 173.32252 2003.17327 1685.53637 -7.19798 0.22959 -3.66793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53839 -0.01101 -1.00000 - 13676 2002 3 18 18 40 2 693 4.9977 173.33069 2002.76912 1685.23534 -7.20981 0.22972 -3.67182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53766 -0.01101 -1.00000 - 13678 2002 3 18 18 40 12 689 4.9979 173.33891 2002.36326 1684.93330 -7.22181 0.22984 -3.67570 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53693 -0.01101 -1.00000 - 13680 2002 3 18 18 40 22 685 4.9982 173.34715 2001.95618 1684.63053 -7.23397 0.22994 -3.67960 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53621 -0.01101 -1.00000 - 13682 2002 3 18 18 40 32 682 4.9984 173.35544 2001.54790 1684.32700 -7.24625 0.23004 -3.68351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53548 -0.01101 -1.00000 - 13684 2002 3 18 18 40 42 679 4.9987 173.36376 2001.13844 1684.02287 -7.25859 0.23014 -3.68745 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53475 -0.01101 -1.00000 - 13686 2002 3 18 18 40 52 677 4.9989 173.37212 2000.72781 1683.71824 -7.27093 0.23026 -3.69139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53403 -0.01101 -1.00000 - 13688 2002 3 18 18 41 2 675 4.9992 173.38052 2000.31606 1683.41321 -7.28320 0.23037 -3.69534 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53330 -0.01100 -1.00000 - 13690 2002 3 18 18 41 12 674 4.9994 173.38895 1999.90260 1683.10717 -7.29535 0.23048 -3.69928 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53257 -0.01100 -1.00000 - 13692 2002 3 18 18 41 22 673 4.9996 173.39742 1999.48786 1682.80041 -7.30730 0.23059 -3.70325 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53184 -0.01100 -1.00000 - 13694 2002 3 18 18 41 32 673 4.9999 173.40592 1999.07180 1682.49290 -7.31903 0.23072 -3.70723 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53112 -0.01100 -1.00000 - 13696 2002 3 18 18 41 42 673 5.0001 173.41446 1998.65437 1682.18477 -7.33054 0.23086 -3.71124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.53039 -0.01100 -1.00000 - 13698 2002 3 18 18 41 52 674 5.0004 173.42304 1998.23556 1681.87613 -7.34188 0.23100 -3.71527 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52966 -0.01100 -1.00000 - 13700 2002 3 18 18 42 2 675 5.0006 173.43166 1997.81540 1681.56707 -7.35306 0.23113 -3.71930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52893 -0.01100 -1.00000 - 13702 2002 3 18 18 42 12 676 5.0009 173.44031 1997.39330 1681.25697 -7.36413 0.23126 -3.72332 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52821 -0.01100 -1.00000 - 13704 2002 3 18 18 42 22 678 5.0011 173.44899 1996.96974 1680.94616 -7.37514 0.23139 -3.72738 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52748 -0.01100 -1.00000 - 13706 2002 3 18 18 42 32 681 5.0014 173.45772 1996.54474 1680.63460 -7.38614 0.23152 -3.73147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52675 -0.01100 -1.00000 - 13708 2002 3 18 18 42 42 684 5.0016 173.46648 1996.11832 1680.32242 -7.39720 0.23164 -3.73558 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52603 -0.01100 -1.00000 - 13710 2002 3 18 18 42 52 688 5.0018 173.47527 1995.69055 1680.00974 -7.40837 0.23176 -3.73971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52530 -0.01100 -1.00000 - 13712 2002 3 18 18 43 2 692 5.0021 173.48410 1995.26150 1679.69665 -7.41967 0.23188 -3.74386 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52457 -0.01099 -1.00000 - 13714 2002 3 18 18 43 12 696 5.0023 173.49297 1994.83061 1679.38254 -7.43110 0.23201 -3.74801 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52384 -0.01099 -1.00000 - 13716 2002 3 18 18 43 22 701 5.0026 173.50187 1994.39844 1679.06774 -7.44266 0.23213 -3.75219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52312 -0.01099 -1.00000 - 13718 2002 3 18 18 43 32 707 5.0028 173.51080 1993.96501 1678.75224 -7.45431 0.23225 -3.75640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52239 -0.01099 -1.00000 - 13720 2002 3 18 18 43 42 713 5.0031 173.51977 1993.53032 1678.43614 -7.46603 0.23235 -3.76065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52166 -0.01099 -1.00000 - 13722 2002 3 18 18 43 52 719 5.0033 173.52878 1993.09441 1678.11957 -7.47777 0.23245 -3.76491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52093 -0.01099 -1.00000 - 13724 2002 3 18 18 44 2 726 5.0036 173.53782 1992.65731 1677.80261 -7.48949 0.23255 -3.76918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.52020 -0.01099 -1.00000 - 13726 2002 3 18 18 44 12 734 5.0038 173.54689 1992.21835 1677.48464 -7.50112 0.23264 -3.77346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51948 -0.01099 -1.00000 - 13728 2002 3 18 18 44 22 742 5.0041 173.55600 1991.77805 1677.16601 -7.51265 0.23273 -3.77776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51875 -0.01099 -1.00000 - 13730 2002 3 18 18 44 32 750 5.0043 173.56515 1991.33637 1676.84669 -7.52406 0.23281 -3.78209 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51802 -0.01099 -1.00000 - 13732 2002 3 18 18 44 42 759 5.0045 173.57432 1990.89329 1676.52679 -7.53538 0.23289 -3.78644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51729 -0.01099 -1.00000 - 13734 2002 3 18 18 44 52 769 5.0048 173.58353 1990.44881 1676.20642 -7.54663 0.23298 -3.79081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51657 -0.01099 -1.00000 - 13736 2002 3 18 18 45 2 779 5.0050 173.59278 1990.00299 1675.88566 -7.55787 0.23307 -3.79518 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51584 -0.01098 -1.00000 - 13738 2002 3 18 18 45 12 789 5.0053 173.60206 1989.55508 1675.56382 -7.56911 0.23316 -3.79954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51511 -0.01098 -1.00000 - 13740 2002 3 18 18 45 22 800 5.0055 173.61137 1989.10534 1675.24075 -7.58047 0.23325 -3.80410 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51438 -0.01098 -1.00000 - 13742 2002 3 18 18 45 32 811 5.0058 173.62072 1988.65358 1674.91640 -7.59216 0.23335 -3.80882 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51365 -0.01098 -1.00000 - 13744 2002 3 18 18 45 42 823 5.0060 173.63010 1988.19989 1674.59109 -7.60441 0.23345 -3.81365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51293 -0.01098 -1.00000 - 13746 2002 3 18 18 45 52 836 5.0063 173.63951 1987.74442 1674.26510 -7.61728 0.23354 -3.81856 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51220 -0.01098 -1.00000 - 13748 2002 3 18 18 46 2 849 5.0065 173.64896 1987.28735 1673.93863 -7.63070 0.23363 -3.82354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51147 -0.01098 -1.00000 - 13750 2002 3 18 18 46 12 862 5.0068 173.65844 1986.82805 1673.61112 -7.64450 0.23373 -3.82857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51074 -0.01098 -1.00000 - 13752 2002 3 18 18 46 22 876 5.0070 173.66795 1986.36717 1673.28300 -7.65858 0.23382 -3.83365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.51001 -0.01098 -1.00000 - 13754 2002 3 18 18 46 32 890 5.0073 173.67750 1985.90472 1672.95425 -7.67287 0.23392 -3.83878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50928 -0.01098 -1.00000 - 13756 2002 3 18 18 46 42 905 5.0075 173.68709 1985.44074 1672.62502 -7.68739 0.23401 -3.84395 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50856 -0.01098 -1.00000 - 13758 2002 3 18 18 46 52 921 5.0078 173.69670 1984.97532 1672.29542 -7.70220 0.23411 -3.84912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50783 -0.01097 -1.00000 - 13760 2002 3 18 18 47 2 936 5.0080 173.70635 1984.50859 1671.96555 -7.71731 0.23421 -3.85428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50710 -0.01097 -1.00000 - 13762 2002 3 18 18 47 12 953 5.0083 173.71603 1984.03989 1671.63480 -7.73274 0.23431 -3.85940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50637 -0.01097 -1.00000 - 13764 2002 3 18 18 47 22 970 5.0085 173.72575 1983.56997 1671.30358 -7.74845 0.23442 -3.86451 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50564 -0.01097 -1.00000 - 13766 2002 3 18 18 47 32 987 5.0088 173.73550 1983.09892 1670.97186 -7.76440 0.23452 -3.86957 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50491 -0.01097 -1.00000 - 13768 2002 3 18 18 47 43 5 5.0090 173.74529 1982.62685 1670.63976 -7.78054 0.23462 -3.87458 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50419 -0.01097 -1.00000 - 13770 2002 3 18 18 47 53 23 5.0092 173.75511 1982.15391 1670.30737 -7.79679 0.23473 -3.87951 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50346 -0.01097 -1.00000 - 13772 2002 3 18 18 48 3 42 5.0095 173.76496 1981.68025 1669.97479 -7.81303 0.23484 -3.88433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50273 -0.01097 -1.00000 - 13774 2002 3 18 18 48 13 62 5.0097 173.77484 1981.20514 1669.64138 -7.82914 0.23494 -3.88903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50200 -0.01097 -1.00000 - 13776 2002 3 18 18 48 23 81 5.0100 173.78476 1980.72931 1669.30754 -7.84493 0.23505 -3.89362 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50127 -0.01097 -1.00000 - 13778 2002 3 18 18 48 33 102 5.0102 173.79471 1980.25277 1668.97322 -7.86024 0.23515 -3.89808 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.50054 -0.01097 -1.00000 - 13780 2002 3 18 18 48 43 123 5.0105 173.80470 1979.77551 1668.63851 -7.87490 0.23525 -3.90241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49981 -0.01097 -1.00000 - 13782 2002 3 18 18 48 53 144 5.0107 173.81472 1979.29751 1668.30348 -7.88874 0.23536 -3.90658 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49908 -0.01096 -1.00000 - 13784 2002 3 18 18 49 3 166 5.0110 173.82478 1978.81873 1667.96820 -7.90162 0.23547 -3.91058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49836 -0.01096 -1.00000 - 13786 2002 3 18 18 49 13 188 5.0112 173.83487 1978.33822 1667.63201 -7.91342 0.23557 -3.91439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49763 -0.01096 -1.00000 - 13788 2002 3 18 18 49 23 211 5.0115 173.84499 1977.85660 1667.29531 -7.92410 0.23567 -3.91805 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49690 -0.01096 -1.00000 - 13790 2002 3 18 18 49 33 235 5.0117 173.85514 1977.37375 1666.95804 -7.93366 0.23578 -3.92155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49617 -0.01096 -1.00000 - 13792 2002 3 18 18 49 43 258 5.0120 173.86533 1976.88956 1666.62028 -7.94218 0.23588 -3.92487 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49544 -0.01096 -1.00000 - 13794 2002 3 18 18 49 53 283 5.0122 173.87556 1976.40400 1666.28209 -7.94977 0.23597 -3.92803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49471 -0.01096 -1.00000 - 13796 2002 3 18 18 50 3 308 5.0125 173.88582 1975.91708 1665.94353 -7.95657 0.23606 -3.93101 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49398 -0.01096 -1.00000 - 13798 2002 3 18 18 50 13 333 5.0127 173.89611 1975.42786 1665.60397 -7.96274 0.23614 -3.93382 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49325 -0.01096 -1.00000 - 13800 2002 3 18 18 50 23 359 5.0130 173.90643 1974.93713 1665.26383 -7.96846 0.23622 -3.93648 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49252 -0.01096 -1.00000 - 13802 2002 3 18 18 50 33 385 5.0132 173.91680 1974.44491 1664.92307 -7.97389 0.23629 -3.93900 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49179 -0.01096 -1.00000 - 13804 2002 3 18 18 50 43 412 5.0135 173.92719 1973.95126 1664.58177 -7.97919 0.23634 -3.94139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49107 -0.01095 -1.00000 - 13806 2002 3 18 18 50 53 439 5.0137 173.93762 1973.45627 1664.24003 -7.98448 0.23639 -3.94365 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.49034 -0.01095 -1.00000 - 13808 2002 3 18 18 51 3 467 5.0140 173.94808 1972.96009 1663.89793 -7.98982 0.23644 -3.94577 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48961 -0.01095 -1.00000 - 13810 2002 3 18 18 51 13 496 5.0142 173.95857 1972.46183 1663.55483 -7.99525 0.23649 -3.94777 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48888 -0.01095 -1.00000 - 13812 2002 3 18 18 51 23 525 5.0145 173.96910 1971.96236 1663.21118 -8.00079 0.23654 -3.94967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48815 -0.01095 -1.00000 - 13814 2002 3 18 18 51 33 554 5.0147 173.97967 1971.46176 1662.86695 -8.00642 0.23658 -3.95149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48742 -0.01095 -1.00000 - 13816 2002 3 18 18 51 43 584 5.0150 173.99027 1970.96009 1662.52224 -8.01215 0.23663 -3.95322 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48669 -0.01095 -1.00000 - 13818 2002 3 18 18 51 53 614 5.0153 174.00090 1970.45742 1662.17712 -8.01796 0.23669 -3.95486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48596 -0.01095 -1.00000 - 13820 2002 3 18 18 52 3 645 5.0155 174.01156 1969.95387 1661.83167 -8.02378 0.23675 -3.95643 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48523 -0.01095 -1.00000 - 13822 2002 3 18 18 52 13 676 5.0158 174.02227 1969.44845 1661.48526 -8.02958 0.23681 -3.95792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48450 -0.01095 -1.00000 - 13824 2002 3 18 18 52 23 708 5.0160 174.03300 1968.94203 1661.13835 -8.03529 0.23687 -3.95936 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48377 -0.01095 -1.00000 - 13826 2002 3 18 18 52 33 741 5.0163 174.04377 1968.43460 1660.79090 -8.04086 0.23695 -3.96075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48304 -0.01095 -1.00000 - 13828 2002 3 18 18 52 43 774 5.0165 174.05457 1967.92615 1660.44299 -8.04626 0.23704 -3.96211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48231 -0.01094 -1.00000 - 13830 2002 3 18 18 52 53 807 5.0168 174.06541 1967.41670 1660.09469 -8.05146 0.23713 -3.96343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48158 -0.01094 -1.00000 - 13832 2002 3 18 18 53 3 841 5.0170 174.07628 1966.90628 1659.74607 -8.05642 0.23722 -3.96472 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48085 -0.01094 -1.00000 - 13834 2002 3 18 18 53 13 875 5.0173 174.08718 1966.39378 1659.39649 -8.06114 0.23732 -3.96598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.48012 -0.01094 -1.00000 - 13836 2002 3 18 18 53 23 910 5.0175 174.09812 1965.88011 1659.04642 -8.06566 0.23742 -3.96724 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47939 -0.01094 -1.00000 - 13838 2002 3 18 18 53 33 946 5.0178 174.10909 1965.36525 1658.69583 -8.07002 0.23753 -3.96850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47866 -0.01094 -1.00000 - 13840 2002 3 18 18 53 43 982 5.0180 174.12010 1964.84920 1658.34479 -8.07432 0.23764 -3.96976 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47793 -0.01094 -1.00000 - 13842 2002 3 18 18 53 54 18 5.0183 174.13113 1964.33203 1657.99338 -8.07862 0.23774 -3.97104 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47720 -0.01094 -1.00000 - 13844 2002 3 18 18 54 4 55 5.0185 174.14221 1963.81382 1657.64166 -8.08300 0.23784 -3.97233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47647 -0.01094 -1.00000 - 13846 2002 3 18 18 54 14 92 5.0188 174.15331 1963.29347 1657.28901 -8.08749 0.23795 -3.97364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47574 -0.01094 -1.00000 - 13848 2002 3 18 18 54 24 130 5.0190 174.16445 1962.77200 1656.93590 -8.09215 0.23806 -3.97498 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47501 -0.01094 -1.00000 - 13850 2002 3 18 18 54 34 169 5.0193 174.17562 1962.24944 1656.58233 -8.09702 0.23815 -3.97638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47428 -0.01093 -1.00000 - 13852 2002 3 18 18 54 44 208 5.0195 174.18683 1961.72583 1656.22836 -8.10212 0.23824 -3.97782 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47355 -0.01093 -1.00000 - 13854 2002 3 18 18 54 54 247 5.0198 174.19807 1961.20125 1655.87407 -8.10747 0.23832 -3.97930 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47282 -0.01093 -1.00000 - 13856 2002 3 18 18 55 4 287 5.0200 174.20934 1960.67581 1655.51953 -8.11304 0.23839 -3.98084 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47209 -0.01093 -1.00000 - 13858 2002 3 18 18 55 14 328 5.0203 174.22065 1960.14832 1655.16412 -8.11883 0.23844 -3.98242 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47136 -0.01093 -1.00000 - 13860 2002 3 18 18 55 24 369 5.0206 174.23199 1959.61985 1654.80835 -8.12481 0.23849 -3.98406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.47063 -0.01093 -1.00000 - 13862 2002 3 18 18 55 34 410 5.0208 174.24336 1959.09042 1654.45217 -8.13098 0.23853 -3.98577 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46990 -0.01093 -1.00000 - 13864 2002 3 18 18 55 44 452 5.0211 174.25477 1958.56007 1654.09567 -8.13736 0.23857 -3.98754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46917 -0.01093 -1.00000 - 13866 2002 3 18 18 55 54 495 5.0213 174.26621 1958.02886 1653.73891 -8.14394 0.23860 -3.98936 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46844 -0.01093 -1.00000 - 13868 2002 3 18 18 56 4 538 5.0216 174.27769 1957.49691 1653.38197 -8.15070 0.23864 -3.99124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46771 -0.01093 -1.00000 - 13870 2002 3 18 18 56 14 581 5.0218 174.28920 1956.96297 1653.02422 -8.15764 0.23867 -3.99317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46698 -0.01093 -1.00000 - 13872 2002 3 18 18 56 24 625 5.0221 174.30074 1956.42820 1652.66616 -8.16473 0.23870 -3.99516 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46625 -0.01093 -1.00000 - 13874 2002 3 18 18 56 34 670 5.0223 174.31232 1955.89261 1652.30778 -8.17197 0.23875 -3.99721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46552 -0.01092 -1.00000 - 13876 2002 3 18 18 56 44 715 5.0226 174.32393 1955.35627 1651.94913 -8.17935 0.23881 -3.99931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46479 -0.01092 -1.00000 - 13878 2002 3 18 18 56 54 760 5.0228 174.33557 1954.81925 1651.59029 -8.18686 0.23888 -4.00146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46406 -0.01092 -1.00000 - 13880 2002 3 18 18 57 4 806 5.0231 174.34725 1954.28167 1651.23131 -8.19446 0.23895 -4.00364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46333 -0.01092 -1.00000 - 13882 2002 3 18 18 57 14 853 5.0233 174.35895 1953.74222 1650.87157 -8.20209 0.23903 -4.00585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46260 -0.01092 -1.00000 - 13884 2002 3 18 18 57 24 900 5.0236 174.37070 1953.20210 1650.51158 -8.20973 0.23912 -4.00811 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46187 -0.01092 -1.00000 - 13886 2002 3 18 18 57 34 947 5.0239 174.37304 1952.66135 1650.15130 -8.21735 0.23921 -4.01041 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46114 -0.01092 -1.00000 - 13888 2002 3 18 18 57 44 996 5.0241 174.36953 1952.12001 1649.79081 -8.22492 0.23929 -4.01273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46041 -0.01092 -1.00000 - 13889 2002 3 18 18 57 50 20 5.0242 174.36779 1951.84914 1649.61049 -8.22868 0.23933 -4.01391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.46004 -0.01092 -1.00000 - 13891 2002 3 18 18 58 0 69 5.0245 174.36431 1951.30705 1649.24976 -8.23611 0.23942 -4.01626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45931 -0.01092 -1.00000 - 13893 2002 3 18 18 58 10 118 5.0247 174.36086 1950.76321 1648.88833 -8.24338 0.23950 -4.01863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45858 -0.01092 -1.00000 - 13895 2002 3 18 18 58 20 168 5.0250 174.35743 1950.21878 1648.52666 -8.25047 0.23957 -4.02103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45785 -0.01092 -1.00000 - 13897 2002 3 18 18 58 30 218 5.0253 174.35402 1949.67376 1648.16473 -8.25733 0.23964 -4.02344 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45712 -0.01091 -1.00000 - 13899 2002 3 18 18 58 40 269 5.0255 174.35063 1949.12817 1647.80259 -8.26394 0.23968 -4.02587 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45639 -0.01091 -1.00000 - 13901 2002 3 18 18 58 50 320 5.0258 174.34727 1948.58203 1647.44029 -8.27027 0.23973 -4.02831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45566 -0.01091 -1.00000 - 13903 2002 3 18 18 59 0 372 5.0260 174.34394 1948.03543 1647.07787 -8.27630 0.23976 -4.03075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45493 -0.01091 -1.00000 - 13905 2002 3 18 18 59 10 425 5.0263 174.34062 1947.48686 1646.71471 -8.28201 0.23978 -4.03319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45419 -0.01091 -1.00000 - 13907 2002 3 18 18 59 20 478 5.0265 174.33733 1946.93762 1646.35132 -8.28743 0.23980 -4.03564 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45346 -0.01091 -1.00000 - 13909 2002 3 18 18 59 30 531 5.0268 174.33406 1946.38769 1645.98766 -8.29258 0.23981 -4.03810 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45273 -0.01091 -1.00000 - 13911 2002 3 18 18 59 40 585 5.0270 174.33082 1945.83706 1645.62378 -8.29753 0.23981 -4.04057 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45200 -0.01091 -1.00000 - 13913 2002 3 18 18 59 50 640 5.0273 174.32760 1945.28579 1645.25974 -8.30231 0.23982 -4.04305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45127 -0.01091 -1.00000 - 13915 2002 3 18 19 0 0 695 5.0276 174.32440 1944.73396 1644.89556 -8.30698 0.23983 -4.04560 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.45054 -0.01091 -1.00000 - 13917 2002 3 18 19 0 10 750 5.0278 174.32122 1944.17987 1644.53058 -8.31159 0.23980 -4.04831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44981 -0.01091 -1.00000 - 13919 2002 3 18 19 0 20 806 5.0281 174.31807 1943.62430 1644.16470 -8.31625 0.23949 -4.05134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44908 -0.01090 -1.00000 - 13921 2002 3 18 19 0 30 863 5.0283 174.31494 1943.06702 1643.79788 -8.32127 0.23847 -4.05457 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44835 -0.01090 -1.00000 - 13923 2002 3 18 19 0 40 920 5.0286 174.31184 1942.50820 1643.43041 -8.32699 0.23631 -4.05796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44761 -0.01090 -1.00000 - 13925 2002 3 18 19 0 50 977 5.0288 174.30876 1941.94819 1643.06253 -8.33350 0.23494 -4.06144 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44688 -0.01090 -1.00000 - 13927 2002 3 18 19 1 1 35 5.0291 174.30570 1941.38730 1642.69443 -8.34066 0.23239 -4.06501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44615 -0.01090 -1.00000 - 13929 2002 3 18 19 1 11 94 5.0293 174.30267 1940.82407 1642.32560 -8.34822 0.23124 -4.06865 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44542 -0.01090 -1.00000 - 13931 2002 3 18 19 1 21 153 5.0296 174.29967 1940.26007 1641.95660 -8.35605 0.23255 -4.07235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44469 -0.01090 -1.00000 - 13933 2002 3 18 19 1 31 212 5.0299 174.29668 1939.69539 1641.58745 -8.36412 0.23465 -4.07611 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44396 -0.01090 -1.00000 - 13935 2002 3 18 19 1 41 272 5.0301 174.29372 1939.13012 1641.21819 -8.37250 0.23372 -4.07991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44322 -0.01090 -1.00000 - 13937 2002 3 18 19 1 51 333 5.0304 174.29085 1938.56444 1640.84889 -8.38124 0.23414 -4.08374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44249 -0.01090 -1.00000 - 13939 2002 3 18 19 2 1 394 5.0306 174.28805 1937.99850 1640.47961 -8.39034 0.23687 -4.08758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44176 -0.01090 -1.00000 - 13941 2002 3 18 19 2 11 456 5.0309 174.28527 1937.43069 1640.10979 -8.39972 0.23912 -4.09140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44103 -0.01090 -1.00000 - 13943 2002 3 18 19 2 21 518 5.0311 174.28250 1936.86265 1639.73993 -8.40930 0.23981 -4.09521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.44030 -0.01089 -1.00000 - 13945 2002 3 18 19 2 31 581 5.0314 174.27960 1936.29443 1639.37004 -8.41898 0.23998 -4.09899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43957 -0.01089 -1.00000 - 13947 2002 3 18 19 2 41 644 5.0316 174.27669 1935.72611 1639.00015 -8.42872 0.24077 -4.10271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43883 -0.01089 -1.00000 - 13949 2002 3 18 19 2 51 708 5.0319 174.27400 1935.15780 1638.63030 -8.43848 0.24228 -4.10636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43810 -0.01089 -1.00000 - 13951 2002 3 18 19 3 1 772 5.0322 174.27135 1934.58968 1638.26054 -8.44820 0.24304 -4.10992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43737 -0.01089 -1.00000 - 13953 2002 3 18 19 3 11 836 5.0324 174.26855 1934.02005 1637.89032 -8.45781 0.24293 -4.11338 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43664 -0.01089 -1.00000 - 13955 2002 3 18 19 3 21 902 5.0326 174.26563 1933.45064 1637.52013 -8.46725 0.24305 -4.11672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43591 -0.01089 -1.00000 - 13957 2002 3 18 19 3 31 967 5.0329 174.26284 1932.88148 1637.14995 -8.47641 0.24310 -4.11994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43517 -0.01089 -1.00000 - 13959 2002 3 18 19 3 42 33 5.0331 174.26016 1932.31264 1636.77980 -8.48517 0.24242 -4.12301 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43444 -0.01089 -1.00000 - 13961 2002 3 18 19 3 52 100 5.0334 174.25738 1931.74418 1636.40971 -8.49340 0.24211 -4.12594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43371 -0.01089 -1.00000 - 13963 2002 3 18 19 4 2 167 5.0337 174.25467 1931.17616 1636.03971 -8.50097 0.24253 -4.12870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43298 -0.01089 -1.00000 - 13965 2002 3 18 19 4 12 235 5.0339 174.25196 1930.60670 1635.66923 -8.50774 0.24404 -4.13129 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43225 -0.01088 -1.00000 - 13967 2002 3 18 19 4 22 303 5.0342 174.24933 1930.03749 1635.29874 -8.51361 0.24553 -4.13372 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43151 -0.01088 -1.00000 - 13969 2002 3 18 19 4 32 372 5.0345 174.24681 1929.46847 1634.92822 -8.51851 0.24537 -4.13599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43078 -0.01088 -1.00000 - 13971 2002 3 18 19 4 42 441 5.0347 174.24426 1928.89959 1634.55766 -8.52241 0.24436 -4.13808 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.43005 -0.01088 -1.00000 - 13973 2002 3 18 19 4 52 511 5.0350 174.24175 1928.33080 1634.18707 -8.52528 0.24230 -4.14002 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42932 -0.01088 -1.00000 - 13975 2002 3 18 19 5 2 582 5.0353 174.23928 1927.76202 1633.81645 -8.52715 0.24125 -4.14180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42859 -0.01088 -1.00000 - 13977 2002 3 18 19 5 12 653 5.0355 174.23686 1927.19105 1633.44527 -8.52811 0.24008 -4.14342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42785 -0.01088 -1.00000 - 13979 2002 3 18 19 5 22 724 5.0358 174.23448 1926.61924 1633.07399 -8.52831 0.23874 -4.14491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42712 -0.01088 -1.00000 - 13981 2002 3 18 19 5 32 796 5.0360 174.23213 1926.04593 1632.70260 -8.52796 0.23707 -4.14626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42639 -0.01088 -1.00000 - 13983 2002 3 18 19 5 42 868 5.0363 174.22976 1925.47034 1632.33113 -8.52733 0.23584 -4.14748 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42566 -0.01088 -1.00000 - 13985 2002 3 18 19 5 52 941 5.0365 174.22738 1924.89167 1631.95965 -8.52673 0.23566 -4.14853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42492 -0.01088 -1.00000 - 13987 2002 3 18 19 6 3 15 5.0368 174.22504 1924.30924 1631.58827 -8.52649 0.23609 -4.14941 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42419 -0.01088 -1.00000 - 13989 2002 3 18 19 6 13 89 5.0370 174.22275 1923.72063 1631.21656 -8.52708 0.23663 -4.15008 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42346 -0.01087 -1.00000 - 13991 2002 3 18 19 6 23 163 5.0373 174.22044 1923.12788 1630.84509 -8.52922 0.23746 -4.15049 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42273 -0.01087 -1.00000 - 13993 2002 3 18 19 6 33 238 5.0375 174.21813 1922.53178 1630.47398 -8.53392 0.23875 -4.15060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42199 -0.01087 -1.00000 - 13995 2002 3 18 19 6 43 314 5.0378 174.21583 1921.93400 1630.10336 -8.54269 0.24020 -4.15036 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42126 -0.01087 -1.00000 - 13997 2002 3 18 19 6 53 390 5.0381 174.21359 1921.33698 1629.73341 -8.55707 0.24119 -4.14973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.42053 -0.01087 -1.00000 - 13999 2002 3 18 19 7 3 466 5.0383 174.21137 1920.74368 1629.36427 -8.58158 0.24152 -4.14864 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41979 -0.01087 -1.00000 - 14001 2002 3 18 19 7 13 543 5.0386 174.20914 1920.15520 1628.99555 -8.61482 0.24195 -4.14702 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41906 -0.01087 -1.00000 - 14003 2002 3 18 19 7 23 621 5.0388 174.20693 1919.57637 1628.62776 -8.65128 0.24273 -4.14483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41833 -0.01087 -1.00000 - 14005 2002 3 18 19 7 33 699 5.0391 174.20478 1919.00956 1628.26089 -8.68710 0.24308 -4.14205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41760 -0.01087 -1.00000 - 14007 2002 3 18 19 7 43 777 5.0394 174.20267 1918.45633 1627.89493 -8.71894 0.24276 -4.13871 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41686 -0.01087 -1.00000 - 14009 2002 3 18 19 7 53 856 5.0396 174.20056 1917.91700 1627.52980 -8.76156 0.24253 -4.13489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41613 -0.01087 -1.00000 - 14011 2002 3 18 19 8 3 936 5.0399 174.19848 1917.39002 1627.16531 -8.79891 0.24226 -4.13063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41540 -0.01086 -1.00000 - 14013 2002 3 18 19 8 14 16 5.0401 174.19644 1916.87001 1626.80064 -8.82073 0.24174 -4.12593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41466 -0.01086 -1.00000 - 14015 2002 3 18 19 8 24 97 5.0404 174.19443 1916.35398 1626.43574 -8.81948 0.24128 -4.12081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41393 -0.01086 -1.00000 - 14017 2002 3 18 19 8 34 178 5.0407 174.19245 1915.83657 1626.07006 -8.79266 0.24058 -4.11535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41320 -0.01086 -1.00000 - 14019 2002 3 18 19 8 44 260 5.0409 174.19049 1915.31331 1625.70309 -8.74283 0.24001 -4.10966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41246 -0.01086 -1.00000 - 14021 2002 3 18 19 8 54 342 5.0412 174.18855 1914.78111 1625.33444 -8.67493 0.23971 -4.10389 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41173 -0.01086 -1.00000 - 14023 2002 3 18 19 9 4 425 5.0414 174.18664 1914.23815 1624.96386 -8.59449 0.23946 -4.09819 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41100 -0.01086 -1.00000 - 14025 2002 3 18 19 9 14 508 5.0417 174.18475 1913.68131 1624.59077 -8.50661 0.23933 -4.09271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.41026 -0.01086 -1.00000 - 14027 2002 3 18 19 9 24 592 5.0419 174.18288 1913.11246 1624.21553 -8.41615 0.23925 -4.08760 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40953 -0.01086 -1.00000 - 14029 2002 3 18 19 9 34 676 5.0422 174.18103 1912.53203 1623.83824 -8.32774 0.23941 -4.08299 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40880 -0.01086 -1.00000 - 14031 2002 3 18 19 9 44 761 5.0425 174.17921 1911.94104 1623.45909 -8.24653 0.23969 -4.07903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40806 -0.01086 -1.00000 - 14033 2002 3 18 19 9 54 846 5.0427 174.17740 1911.34104 1623.07836 -8.17695 0.23986 -4.07586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40733 -0.01086 -1.00000 - 14035 2002 3 18 19 10 4 932 5.0430 174.17560 1910.73397 1622.69640 -8.12575 0.24010 -4.07354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40660 -0.01085 -1.00000 - 14037 2002 3 18 19 10 15 18 5.0432 174.17385 1910.11949 1622.31314 -8.08981 0.24046 -4.07210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40586 -0.01085 -1.00000 - 14038 2002 3 18 19 10 20 62 5.0434 174.17298 1909.81075 1622.12128 -8.07670 0.24061 -4.07171 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40550 -0.01085 -1.00000 - 14040 2002 3 18 19 10 30 149 5.0436 174.17124 1909.19115 1621.73724 -8.06020 0.24082 -4.07160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40476 -0.01085 -1.00000 - 14042 2002 3 18 19 10 40 236 5.0439 174.16953 1908.57007 1621.35305 -8.05628 0.24096 -4.07235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40403 -0.01085 -1.00000 - 14044 2002 3 18 19 10 50 324 5.0441 174.16787 1907.94923 1620.96900 -8.06399 0.24109 -4.07391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40330 -0.01085 -1.00000 - 14046 2002 3 18 19 11 0 413 5.0444 174.16621 1907.33032 1620.58535 -8.08188 0.24122 -4.07622 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40256 -0.01085 -1.00000 - 14048 2002 3 18 19 11 10 502 5.0447 174.16457 1906.71280 1620.20203 -8.10812 0.24119 -4.07921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40183 -0.01085 -1.00000 - 14050 2002 3 18 19 11 20 592 5.0449 174.16299 1906.09978 1619.81960 -8.14079 0.24102 -4.08281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40110 -0.01085 -1.00000 - 14052 2002 3 18 19 11 30 682 5.0452 174.16140 1905.49178 1619.43827 -8.17798 0.24094 -4.08695 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.40036 -0.01085 -1.00000 - 14054 2002 3 18 19 11 40 773 5.0454 174.15985 1904.88893 1619.05823 -8.21825 0.24088 -4.09158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39963 -0.01085 -1.00000 - 14056 2002 3 18 19 11 50 864 5.0457 174.15833 1904.29091 1618.67965 -8.26070 0.24058 -4.09664 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39889 -0.01084 -1.00000 - 14058 2002 3 18 19 12 0 956 5.0459 174.15683 1903.69745 1618.30265 -8.30475 0.24041 -4.10206 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39816 -0.01084 -1.00000 - 14060 2002 3 18 19 12 11 48 5.0462 174.15535 1903.10622 1617.92697 -8.35050 0.24036 -4.10777 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39743 -0.01084 -1.00000 - 14062 2002 3 18 19 12 21 141 5.0465 174.15390 1902.51944 1617.55299 -8.39861 0.24013 -4.11369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39669 -0.01084 -1.00000 - 14064 2002 3 18 19 12 31 234 5.0467 174.15247 1901.93746 1617.18072 -8.45235 0.24005 -4.11977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39596 -0.01084 -1.00000 - 14066 2002 3 18 19 12 41 328 5.0470 174.15107 1901.36121 1616.81015 -8.51266 0.24011 -4.12590 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39522 -0.01084 -1.00000 - 14068 2002 3 18 19 12 51 422 5.0472 174.14969 1900.79202 1616.44124 -8.57307 0.24006 -4.13200 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39449 -0.01084 -1.00000 - 14070 2002 3 18 19 13 1 517 5.0475 174.14832 1900.23134 1616.07395 -8.63297 0.24007 -4.13796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39376 -0.01084 -1.00000 - 14072 2002 3 18 19 13 11 613 5.0478 174.14700 1899.67832 1615.70783 -8.69172 0.24017 -4.14367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39302 -0.01084 -1.00000 - 14074 2002 3 18 19 13 21 709 5.0480 174.14568 1899.13587 1615.34306 -8.74804 0.24026 -4.14907 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39229 -0.01084 -1.00000 - 14076 2002 3 18 19 13 31 805 5.0483 174.14439 1898.60362 1614.97943 -8.79941 0.24032 -4.15409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39155 -0.01084 -1.00000 - 14078 2002 3 18 19 13 41 902 5.0485 174.14314 1898.08012 1614.61668 -8.84191 0.24037 -4.15867 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39082 -0.01084 -1.00000 - 14080 2002 3 18 19 13 51 999 5.0488 174.14188 1897.56274 1614.25451 -8.87113 0.24046 -4.16278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.39008 -0.01083 -1.00000 - 14082 2002 3 18 19 14 2 97 5.0490 174.14066 1897.04790 1613.89253 -8.88327 0.24048 -4.16641 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38935 -0.01083 -1.00000 - 14084 2002 3 18 19 14 12 196 5.0493 174.13949 1896.52961 1613.53006 -8.87599 0.24042 -4.16954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38862 -0.01083 -1.00000 - 14086 2002 3 18 19 14 22 295 5.0496 174.13831 1896.00604 1613.16700 -8.84940 0.24043 -4.17221 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38788 -0.01083 -1.00000 - 14088 2002 3 18 19 14 32 394 5.0498 174.13716 1895.47377 1612.80302 -8.80607 0.24037 -4.17448 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38715 -0.01083 -1.00000 - 14090 2002 3 18 19 14 42 494 5.0501 174.13606 1894.93057 1612.43788 -8.75023 0.24019 -4.17640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38641 -0.01083 -1.00000 - 14092 2002 3 18 19 14 52 595 5.0503 174.13495 1894.37542 1612.07148 -8.68660 0.24009 -4.17806 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38568 -0.01083 -1.00000 - 14094 2002 3 18 19 15 2 696 5.0506 174.13389 1893.80845 1611.70383 -8.62049 0.23997 -4.17953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38494 -0.01083 -1.00000 - 14096 2002 3 18 19 15 12 798 5.0509 174.13285 1893.22891 1611.33470 -8.55792 0.23970 -4.18089 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38421 -0.01083 -1.00000 - 14098 2002 3 18 19 15 22 900 5.0511 174.13182 1892.64032 1610.96406 -8.51492 0.23955 -4.18227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38347 -0.01083 -1.00000 - 14100 2002 3 18 19 15 33 2 5.0514 174.13083 1892.04550 1610.59221 -8.49164 0.23944 -4.18374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38274 -0.01083 -1.00000 - 14102 2002 3 18 19 15 43 105 5.0516 174.12987 1891.44775 1610.21965 -8.47506 0.23925 -4.18523 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38200 -0.01082 -1.00000 - 14104 2002 3 18 19 15 53 209 5.0519 174.12890 1890.84989 1609.84686 -8.46607 0.23916 -4.18671 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38127 -0.01082 -1.00000 - 14106 2002 3 18 19 16 3 313 5.0522 174.12799 1890.25438 1609.47418 -8.46863 0.23915 -4.18813 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.38054 -0.01082 -1.00000 - 14108 2002 3 18 19 16 13 418 5.0524 174.12711 1889.66160 1609.10168 -8.48122 0.23915 -4.18943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37980 -0.01082 -1.00000 - 14110 2002 3 18 19 16 23 523 5.0527 174.12621 1889.07537 1608.72978 -8.49827 0.23923 -4.19061 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37907 -0.01082 -1.00000 - 14112 2002 3 18 19 16 33 629 5.0529 174.12538 1888.49682 1608.35863 -8.51738 0.23936 -4.19166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37833 -0.01082 -1.00000 - 14114 2002 3 18 19 16 43 735 5.0532 174.12456 1887.92668 1607.98834 -8.53671 0.23957 -4.19259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37760 -0.01082 -1.00000 - 14116 2002 3 18 19 16 53 842 5.0535 174.12374 1887.36501 1607.61897 -8.55515 0.23984 -4.19347 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37686 -0.01082 -1.00000 - 14118 2002 3 18 19 17 3 949 5.0537 174.12298 1886.81131 1607.25053 -8.57197 0.24020 -4.19434 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37613 -0.01082 -1.00000 - 14120 2002 3 18 19 17 14 57 5.0540 174.12223 1886.26299 1606.88279 -8.60284 0.24049 -4.19529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37539 -0.01082 -1.00000 - 14122 2002 3 18 19 17 24 165 5.0542 174.12148 1885.72013 1606.51584 -8.63473 0.24071 -4.19632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37466 -0.01082 -1.00000 - 14124 2002 3 18 19 17 34 274 5.0545 174.12080 1885.18031 1606.14952 -8.65753 0.24097 -4.19737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37392 -0.01082 -1.00000 - 14126 2002 3 18 19 17 44 384 5.0547 174.12011 1884.64083 1605.78361 -8.66841 0.24111 -4.19841 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37319 -0.01081 -1.00000 - 14128 2002 3 18 19 17 54 494 5.0550 174.11943 1884.09951 1605.41790 -8.66834 0.24103 -4.19939 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37245 -0.01081 -1.00000 - 14130 2002 3 18 19 18 4 604 5.0553 174.11881 1883.55518 1605.05224 -8.66060 0.24095 -4.20032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37171 -0.01081 -1.00000 - 14132 2002 3 18 19 18 14 714 5.0552 174.11818 1883.00622 1604.68639 -8.64895 0.24079 -4.20119 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37098 -0.01081 -1.00000 - 14134 2002 3 18 19 18 24 825 5.0550 174.11758 1882.45478 1604.32053 -8.63635 0.24041 -4.20202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.37024 -0.01081 -1.00000 - 14136 2002 3 18 19 18 34 934 5.0548 174.11702 1881.90124 1603.95468 -8.62453 0.24010 -4.20281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36951 -0.01081 -1.00000 - 14138 2002 3 18 19 18 45 44 5.0546 174.11647 1881.34619 1603.58891 -8.61450 0.23966 -4.20359 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36877 -0.01081 -1.00000 - 14139 2002 3 18 19 18 50 98 5.0545 174.11620 1881.06831 1603.40607 -8.61037 0.23943 -4.20397 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36841 -0.01081 -1.00000 - 14141 2002 3 18 19 19 0 207 5.0543 174.11569 1880.51229 1603.04055 -8.60426 0.23899 -4.20473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36767 -0.01081 -1.00000 - 14143 2002 3 18 19 19 10 315 5.0541 174.11521 1879.95544 1602.67518 -8.60149 0.23847 -4.20549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36694 -0.01081 -1.00000 - 14145 2002 3 18 19 19 20 423 5.0539 174.11475 1879.39996 1602.31014 -8.60250 0.23793 -4.20623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36620 -0.01081 -1.00000 - 14147 2002 3 18 19 19 30 531 5.0537 174.11432 1878.84641 1601.94553 -8.60729 0.23747 -4.20698 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36547 -0.01081 -1.00000 - 14149 2002 3 18 19 19 40 638 5.0535 174.11392 1878.29538 1601.58141 -8.61532 0.23708 -4.20771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36473 -0.01080 -1.00000 - 14151 2002 3 18 19 19 50 744 5.0533 174.11354 1877.74720 1601.21782 -8.62567 0.23676 -4.20843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36400 -0.01080 -1.00000 - 14153 2002 3 18 19 20 0 851 5.0531 174.11319 1877.20202 1600.85478 -8.63722 0.23652 -4.20911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36326 -0.01080 -1.00000 - 14155 2002 3 18 19 20 10 956 5.0529 174.11288 1876.65867 1600.49217 -8.64884 0.23635 -4.20973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36253 -0.01080 -1.00000 - 14157 2002 3 18 19 20 21 62 5.0527 174.11257 1876.11824 1600.13009 -8.65957 0.23632 -4.21028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36179 -0.01080 -1.00000 - 14159 2002 3 18 19 20 31 167 5.0524 174.11230 1875.58013 1599.76849 -8.66861 0.23637 -4.21074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36106 -0.01080 -1.00000 - 14161 2002 3 18 19 20 41 271 5.0522 174.11206 1875.04381 1599.40730 -8.67543 0.23641 -4.21110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.36032 -0.01080 -1.00000 - 14163 2002 3 18 19 20 51 375 5.0520 174.11183 1874.50880 1599.04648 -8.67968 0.23653 -4.21136 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35959 -0.01080 -1.00000 - 14165 2002 3 18 19 21 1 479 5.0518 174.11163 1873.97461 1598.68598 -8.68125 0.23676 -4.21150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35885 -0.01080 -1.00000 - 14167 2002 3 18 19 21 11 583 5.0516 174.11145 1873.43995 1598.32564 -8.68020 0.23704 -4.21153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35812 -0.01080 -1.00000 - 14169 2002 3 18 19 21 21 685 5.0514 174.11128 1872.90557 1597.96551 -8.67684 0.23731 -4.21144 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35738 -0.01080 -1.00000 - 14171 2002 3 18 19 21 31 788 5.0512 174.11114 1872.37108 1597.60555 -8.67165 0.23762 -4.21124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35665 -0.01079 -1.00000 - 14173 2002 3 18 19 21 41 890 5.0510 174.11101 1871.83634 1597.24573 -8.66522 0.23800 -4.21094 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35591 -0.01079 -1.00000 - 14175 2002 3 18 19 21 51 992 5.0508 174.11090 1871.30134 1596.88606 -8.65818 0.23845 -4.21054 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35518 -0.01079 -1.00000 - 14177 2002 3 18 19 22 2 93 5.0505 174.11082 1870.76623 1596.52652 -8.65115 0.23896 -4.21007 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35444 -0.01079 -1.00000 - 14179 2002 3 18 19 22 12 194 5.0503 174.11076 1870.23052 1596.16707 -8.64458 0.23953 -4.20953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35371 -0.01079 -1.00000 - 14181 2002 3 18 19 22 22 294 5.0501 174.11071 1869.69533 1595.80779 -8.63885 0.24006 -4.20892 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35298 -0.01079 -1.00000 - 14183 2002 3 18 19 22 32 394 5.0499 174.11069 1869.16077 1595.44871 -8.63416 0.24050 -4.20827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35224 -0.01079 -1.00000 - 14185 2002 3 18 19 22 42 493 5.0497 174.11070 1868.62702 1595.08985 -8.63059 0.24082 -4.20758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35151 -0.01079 -1.00000 - 14187 2002 3 18 19 22 52 592 5.0495 174.11073 1868.09427 1594.73123 -8.62807 0.24099 -4.20686 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35077 -0.01079 -1.00000 - 14189 2002 3 18 19 23 2 691 5.0493 174.11078 1867.56267 1594.37287 -8.62649 0.24103 -4.20612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.35004 -0.01079 -1.00000 - 14191 2002 3 18 19 23 12 789 5.0491 174.11086 1867.03176 1594.01474 -8.62560 0.24092 -4.20536 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34930 -0.01079 -1.00000 - 14193 2002 3 18 19 23 22 887 5.0488 174.11097 1866.50226 1593.65689 -8.62516 0.24062 -4.20459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34857 -0.01079 -1.00000 - 14195 2002 3 18 19 23 32 984 5.0486 174.11110 1865.97400 1593.29933 -8.62490 0.24011 -4.20381 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34783 -0.01078 -1.00000 - 14197 2002 3 18 19 23 43 81 5.0484 174.11125 1865.44686 1592.94206 -8.62457 0.23947 -4.20303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34710 -0.01078 -1.00000 - 14199 2002 3 18 19 23 53 178 5.0482 174.11143 1864.92071 1592.58507 -8.62396 0.23876 -4.20224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34637 -0.01078 -1.00000 - 14201 2002 3 18 19 24 3 274 5.0480 174.11164 1864.39540 1592.22835 -8.62292 0.23801 -4.20146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34563 -0.01078 -1.00000 - 14203 2002 3 18 19 24 13 370 5.0478 174.11186 1863.87042 1591.87186 -8.62138 0.23722 -4.20068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34490 -0.01078 -1.00000 - 14205 2002 3 18 19 24 23 465 5.0476 174.11211 1863.34615 1591.51563 -8.61937 0.23656 -4.19991 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34416 -0.01078 -1.00000 - 14207 2002 3 18 19 24 33 560 5.0473 174.11238 1862.82244 1591.15964 -8.61697 0.23599 -4.19916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34343 -0.01078 -1.00000 - 14209 2002 3 18 19 24 43 654 5.0471 174.11268 1862.29923 1590.80390 -8.61433 0.23550 -4.19843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34270 -0.01078 -1.00000 - 14211 2002 3 18 19 24 53 748 5.0469 174.11300 1861.77655 1590.44841 -8.61161 0.23513 -4.19772 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34196 -0.01078 -1.00000 - 14213 2002 3 18 19 25 3 841 5.0467 174.11334 1861.25446 1590.09315 -8.60898 0.23489 -4.19704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34123 -0.01078 -1.00000 - 14215 2002 3 18 19 25 13 934 5.0465 174.11371 1860.73281 1589.73812 -8.60660 0.23476 -4.19640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.34049 -0.01078 -1.00000 - 14217 2002 3 18 19 25 24 27 5.0463 174.11410 1860.21206 1589.38334 -8.60456 0.23469 -4.19580 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33976 -0.01077 -1.00000 - 14219 2002 3 18 19 25 34 119 5.0460 174.11452 1859.69231 1589.02881 -8.60291 0.23472 -4.19525 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33903 -0.01077 -1.00000 - 14221 2002 3 18 19 25 44 211 5.0458 174.11497 1859.17367 1588.67454 -8.60161 0.23484 -4.19475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33829 -0.01077 -1.00000 - 14223 2002 3 18 19 25 54 302 5.0456 174.11543 1858.65625 1588.32051 -8.60056 0.23499 -4.19430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33756 -0.01077 -1.00000 - 14225 2002 3 18 19 26 4 393 5.0454 174.11593 1858.14013 1587.96674 -8.59960 0.23513 -4.19392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33682 -0.01077 -1.00000 - 14227 2002 3 18 19 26 14 484 5.0452 174.11644 1857.62517 1587.61318 -8.59853 0.23528 -4.19361 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33609 -0.01077 -1.00000 - 14229 2002 3 18 19 26 24 574 5.0450 174.11697 1857.11161 1587.25983 -8.59713 0.23547 -4.19338 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33536 -0.01077 -1.00000 - 14231 2002 3 18 19 26 34 663 5.0447 174.11753 1856.59937 1586.90668 -8.59519 0.23566 -4.19323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33462 -0.01077 -1.00000 - 14233 2002 3 18 19 26 44 752 5.0445 174.11811 1856.08834 1586.55370 -8.59250 0.23578 -4.19317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33389 -0.01077 -1.00000 - 14235 2002 3 18 19 26 54 841 5.0443 174.11870 1855.57838 1586.20085 -8.58890 0.23591 -4.19323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33315 -0.01077 -1.00000 - 14237 2002 3 18 19 27 4 929 5.0441 174.11931 1855.06929 1585.84811 -8.58429 0.23608 -4.19340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33242 -0.01077 -1.00000 - 14239 2002 3 18 19 27 15 17 5.0439 174.11995 1854.56071 1585.49544 -8.57858 0.23626 -4.19371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33169 -0.01077 -1.00000 - 14240 2002 3 18 19 27 20 61 5.0437 174.12027 1854.30659 1585.31911 -8.57531 0.23633 -4.19393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33132 -0.01076 -1.00000 - 14242 2002 3 18 19 27 30 148 5.0435 174.12093 1853.79852 1584.96649 -8.56798 0.23640 -4.19448 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.33059 -0.01076 -1.00000 - 14244 2002 3 18 19 27 40 235 5.0433 174.12162 1853.29038 1584.61387 -8.55966 0.23644 -4.19521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32985 -0.01076 -1.00000 - 14246 2002 3 18 19 27 50 321 5.0431 174.12232 1852.78189 1584.26124 -8.55053 0.23648 -4.19614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32912 -0.01076 -1.00000 - 14248 2002 3 18 19 28 0 407 5.0429 174.12304 1852.27276 1583.90858 -8.54082 0.23650 -4.19728 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32839 -0.01076 -1.00000 - 14250 2002 3 18 19 28 10 492 5.0426 174.12380 1851.76265 1583.55589 -8.53089 0.23644 -4.19866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32765 -0.01076 -1.00000 - 14252 2002 3 18 19 28 20 577 5.0424 174.12457 1851.25150 1583.20319 -8.52115 0.23625 -4.20029 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32692 -0.01076 -1.00000 - 14254 2002 3 18 19 28 30 662 5.0422 174.12537 1850.73917 1582.85050 -8.51209 0.23597 -4.20217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32619 -0.01076 -1.00000 - 14256 2002 3 18 19 28 40 746 5.0420 174.12620 1850.22562 1582.49786 -8.50427 0.23570 -4.20432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32545 -0.01076 -1.00000 - 14258 2002 3 18 19 28 50 829 5.0418 174.12705 1849.71092 1582.14531 -8.49826 0.23543 -4.20674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32472 -0.01076 -1.00000 - 14260 2002 3 18 19 29 0 913 5.0415 174.12793 1849.19520 1581.79294 -8.49466 0.23508 -4.20943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32399 -0.01076 -1.00000 - 14262 2002 3 18 19 29 10 995 5.0413 174.12883 1848.67857 1581.44079 -8.49395 0.23467 -4.21239 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32325 -0.01075 -1.00000 - 14264 2002 3 18 19 29 21 78 5.0411 174.12976 1848.16140 1581.08896 -8.49655 0.23431 -4.21559 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32252 -0.01075 -1.00000 - 14266 2002 3 18 19 29 31 160 5.0409 174.13071 1847.64392 1580.73755 -8.50262 0.23405 -4.21902 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32179 -0.01075 -1.00000 - 14268 2002 3 18 19 29 41 241 5.0406 174.13169 1847.12642 1580.38665 -8.51220 0.23382 -4.22264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32105 -0.01075 -1.00000 - 14270 2002 3 18 19 29 51 322 5.0404 174.13269 1846.60919 1580.03634 -8.52522 0.23360 -4.22640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.32032 -0.01075 -1.00000 - 14272 2002 3 18 19 30 1 402 5.0402 174.13370 1846.09254 1579.68673 -8.54158 0.23346 -4.23027 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31959 -0.01075 -1.00000 - 14274 2002 3 18 19 30 11 482 5.0400 174.13474 1845.57653 1579.33783 -8.56113 0.23335 -4.23418 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31885 -0.01075 -1.00000 - 14276 2002 3 18 19 30 21 562 5.0397 174.13580 1845.06099 1578.98941 -8.58366 0.23333 -4.23809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31812 -0.01075 -1.00000 - 14278 2002 3 18 19 30 31 641 5.0395 174.13688 1844.54650 1578.64155 -8.60906 0.23335 -4.24199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31739 -0.01075 -1.00000 - 14280 2002 3 18 19 30 41 720 5.0393 174.13798 1844.03385 1578.29446 -8.63707 0.23337 -4.24578 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31666 -0.01075 -1.00000 - 14282 2002 3 18 19 30 51 798 5.0391 174.13909 1843.52384 1577.94826 -8.66721 0.23338 -4.24937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31592 -0.01075 -1.00000 - 14284 2002 3 18 19 31 1 876 5.0388 174.14022 1843.01723 1577.60306 -8.69883 0.23344 -4.25269 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31519 -0.01075 -1.00000 - 14286 2002 3 18 19 31 11 953 5.0386 174.14138 1842.51461 1577.25889 -8.73115 0.23357 -4.25568 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31446 -0.01074 -1.00000 - 14288 2002 3 18 19 31 22 30 5.0384 174.14255 1842.01659 1576.91575 -8.76325 0.23368 -4.25827 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31372 -0.01074 -1.00000 - 14290 2002 3 18 19 31 32 107 5.0382 174.14375 1841.52348 1576.57361 -8.79398 0.23372 -4.26040 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31299 -0.01074 -1.00000 - 14292 2002 3 18 19 31 42 183 5.0379 174.14497 1841.03540 1576.23239 -8.82212 0.23369 -4.26202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31226 -0.01074 -1.00000 - 14294 2002 3 18 19 31 52 258 5.0377 174.14621 1840.55225 1575.89198 -8.84649 0.23366 -4.26310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31153 -0.01074 -1.00000 - 14296 2002 3 18 19 32 2 333 5.0375 174.14747 1840.07366 1575.55225 -8.86585 0.23361 -4.26359 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31079 -0.01074 -1.00000 - 14298 2002 3 18 19 32 12 408 5.0373 174.14877 1839.59894 1575.21302 -8.87907 0.23348 -4.26350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.31006 -0.01074 -1.00000 - 14300 2002 3 18 19 32 22 482 5.0370 174.15008 1839.12730 1574.87412 -8.88517 0.23322 -4.26280 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30933 -0.01074 -1.00000 - 14302 2002 3 18 19 32 32 556 5.0368 174.15142 1838.65764 1574.53537 -8.88335 0.23292 -4.26153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30860 -0.01074 -1.00000 - 14304 2002 3 18 19 32 42 629 5.0366 174.15278 1838.18874 1574.19656 -8.87312 0.23264 -4.25970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30786 -0.01074 -1.00000 - 14306 2002 3 18 19 32 52 702 5.0364 174.15416 1837.71931 1573.85751 -8.85440 0.23238 -4.25736 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30713 -0.01074 -1.00000 - 14308 2002 3 18 19 33 2 774 5.0361 174.15557 1837.24813 1573.51803 -8.82760 0.23207 -4.25456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30640 -0.01073 -1.00000 - 14310 2002 3 18 19 33 12 846 5.0359 174.15700 1836.77410 1573.17799 -8.79364 0.23173 -4.25137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30567 -0.01073 -1.00000 - 14312 2002 3 18 19 33 22 918 5.0357 174.15845 1836.29644 1572.83727 -8.75388 0.23150 -4.24786 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30493 -0.01073 -1.00000 - 14314 2002 3 18 19 33 32 989 5.0354 174.15992 1835.81457 1572.49578 -8.70997 0.23133 -4.24411 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30420 -0.01073 -1.00000 - 14316 2002 3 18 19 33 43 59 5.0352 174.16141 1835.32826 1572.15351 -8.66381 0.23122 -4.24021 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30347 -0.01073 -1.00000 - 14318 2002 3 18 19 33 53 129 5.0350 174.16292 1834.83760 1571.81044 -8.61748 0.23113 -4.23625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30274 -0.01073 -1.00000 - 14320 2002 3 18 19 34 3 199 5.0348 174.16445 1834.34299 1571.46664 -8.57303 0.23104 -4.23233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30200 -0.01073 -1.00000 - 14322 2002 3 18 19 34 13 268 5.0345 174.16600 1833.84506 1571.12220 -8.53230 0.23097 -4.22853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30127 -0.01073 -1.00000 - 14324 2002 3 18 19 34 23 337 5.0343 174.16756 1833.34462 1570.77722 -8.49675 0.23097 -4.22491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.30054 -0.01073 -1.00000 - 14326 2002 3 18 19 34 33 405 5.0341 174.16915 1832.84247 1570.43184 -8.46732 0.23103 -4.22156 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29981 -0.01073 -1.00000 - 14328 2002 3 18 19 34 43 473 5.0338 174.17076 1832.33939 1570.08620 -8.44438 0.23109 -4.21853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29908 -0.01073 -1.00000 - 14330 2002 3 18 19 34 53 540 5.0336 174.17239 1831.83601 1569.74045 -8.42784 0.23109 -4.21585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29834 -0.01073 -1.00000 - 14332 2002 3 18 19 35 3 607 5.0334 174.17404 1831.33289 1569.39472 -8.41727 0.23105 -4.21355 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29761 -0.01072 -1.00000 - 14334 2002 3 18 19 35 13 674 5.0332 174.17570 1830.83044 1569.04914 -8.41222 0.23108 -4.21164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29688 -0.01072 -1.00000 - 14336 2002 3 18 19 35 23 740 5.0329 174.17740 1830.32898 1568.70383 -8.41225 0.23115 -4.21014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29615 -0.01072 -1.00000 - 14338 2002 3 18 19 35 33 805 5.0327 174.17911 1829.82875 1568.35888 -8.41685 0.23109 -4.20903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29541 -0.01072 -1.00000 - 14340 2002 3 18 19 35 43 870 5.0325 174.18085 1829.32995 1568.01438 -8.42545 0.23091 -4.20831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29468 -0.01072 -1.00000 - 14342 2002 3 18 19 35 53 935 5.0322 174.18260 1828.83275 1567.67043 -8.43732 0.23071 -4.20795 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29395 -0.01072 -1.00000 - 14344 2002 3 18 19 36 3 999 5.0320 174.18438 1828.33726 1567.32708 -8.45166 0.23055 -4.20793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29322 -0.01072 -1.00000 - 14346 2002 3 18 19 36 14 63 5.0318 174.18619 1827.84359 1566.98437 -8.46783 0.23038 -4.20820 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29249 -0.01072 -1.00000 - 14348 2002 3 18 19 36 24 126 5.0315 174.18801 1827.35186 1566.64235 -8.48537 0.23013 -4.20873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29176 -0.01072 -1.00000 - 14350 2002 3 18 19 36 34 189 5.0313 174.18985 1826.86225 1566.30103 -8.50394 0.22980 -4.20947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29102 -0.01072 -1.00000 - 14352 2002 3 18 19 36 44 251 5.0311 174.19172 1826.37496 1565.96043 -8.52327 0.22949 -4.21038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.29029 -0.01072 -1.00000 - 14354 2002 3 18 19 36 54 313 5.0309 174.19361 1825.89023 1565.62054 -8.54308 0.22925 -4.21141 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28956 -0.01071 -1.00000 - 14356 2002 3 18 19 37 4 374 5.0306 174.19552 1825.40823 1565.28137 -8.56300 0.22904 -4.21253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28883 -0.01071 -1.00000 - 14358 2002 3 18 19 37 14 435 5.0304 174.19745 1824.92905 1564.94288 -8.58243 0.22885 -4.21369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28810 -0.01071 -1.00000 - 14360 2002 3 18 19 37 24 495 5.0302 174.19940 1824.45263 1564.60504 -8.60066 0.22862 -4.21486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28737 -0.01071 -1.00000 - 14362 2002 3 18 19 37 34 555 5.0299 174.20137 1823.97880 1564.26779 -8.61691 0.22842 -4.21600 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28663 -0.01071 -1.00000 - 14364 2002 3 18 19 37 44 615 5.0297 174.20336 1823.50721 1563.93106 -8.63043 0.22830 -4.21709 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28590 -0.01071 -1.00000 - 14366 2002 3 18 19 37 54 674 5.0295 174.20538 1823.03739 1563.59477 -8.64060 0.22818 -4.21809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28517 -0.01071 -1.00000 - 14368 2002 3 18 19 38 4 732 5.0292 174.20741 1822.56881 1563.25883 -8.64702 0.22804 -4.21900 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28444 -0.01071 -1.00000 - 14370 2002 3 18 19 38 14 791 5.0290 174.20945 1822.10089 1562.92315 -8.64951 0.22788 -4.21980 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28371 -0.01071 -1.00000 - 14372 2002 3 18 19 38 24 848 5.0288 174.21153 1821.63302 1562.58764 -8.64810 0.22774 -4.22050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28298 -0.01071 -1.00000 - 14374 2002 3 18 19 38 34 905 5.0285 174.21362 1821.16464 1562.25222 -8.64303 0.22764 -4.22109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28224 -0.01071 -1.00000 - 14376 2002 3 18 19 38 44 962 5.0283 174.21573 1820.69523 1561.91683 -8.63467 0.22756 -4.22158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28151 -0.01071 -1.00000 - 14378 2002 3 18 19 38 55 18 5.0281 174.21787 1820.22436 1561.58140 -8.62359 0.22744 -4.22199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28078 -0.01070 -1.00000 - 14379 2002 3 18 19 39 0 46 5.0279 174.21894 1819.98829 1561.41367 -8.61724 0.22737 -4.22216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.28042 -0.01070 -1.00000 - 14381 2002 3 18 19 39 10 102 5.0277 174.22110 1819.51472 1561.07815 -8.60345 0.22724 -4.22247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27969 -0.01070 -1.00000 - 14383 2002 3 18 19 39 20 157 5.0275 174.22328 1819.03924 1560.74255 -8.58893 0.22716 -4.22274 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27895 -0.01070 -1.00000 - 14385 2002 3 18 19 39 30 211 5.0272 174.22549 1818.56195 1560.40689 -8.57458 0.22709 -4.22299 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27822 -0.01070 -1.00000 - 14387 2002 3 18 19 39 40 266 5.0270 174.22772 1818.08311 1560.07121 -8.56132 0.22702 -4.22323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27749 -0.01070 -1.00000 - 14389 2002 3 18 19 39 50 319 5.0268 174.22996 1817.60315 1559.73554 -8.54999 0.22692 -4.22348 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27676 -0.01070 -1.00000 - 14391 2002 3 18 19 40 0 372 5.0265 174.23223 1817.12260 1559.39995 -8.54132 0.22683 -4.22375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27603 -0.01070 -1.00000 - 14393 2002 3 18 19 40 10 425 5.0263 174.23451 1816.64206 1559.06451 -8.53581 0.22676 -4.22407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27530 -0.01070 -1.00000 - 14395 2002 3 18 19 40 20 477 5.0261 174.23682 1816.16217 1558.72928 -8.53359 0.22671 -4.22442 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27457 -0.01070 -1.00000 - 14397 2002 3 18 19 40 30 529 5.0258 174.23915 1815.68348 1558.39432 -8.53454 0.22666 -4.22482 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27384 -0.01070 -1.00000 - 14399 2002 3 18 19 40 40 581 5.0256 174.24150 1815.20648 1558.05969 -8.53836 0.22660 -4.22526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27311 -0.01070 -1.00000 - 14401 2002 3 18 19 40 50 631 5.0254 174.24386 1814.73156 1557.72542 -8.54460 0.22657 -4.22574 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27237 -0.01069 -1.00000 - 14403 2002 3 18 19 41 0 682 5.0251 174.24625 1814.25895 1557.39154 -8.55265 0.22655 -4.22625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27164 -0.01069 -1.00000 - 14405 2002 3 18 19 41 10 732 5.0249 174.24865 1813.78871 1557.05806 -8.56167 0.22650 -4.22678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27091 -0.01069 -1.00000 - 14407 2002 3 18 19 41 20 781 5.0247 174.25108 1813.32071 1556.72495 -8.57062 0.22642 -4.22731 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.27018 -0.01069 -1.00000 - 14409 2002 3 18 19 41 30 830 5.0244 174.25352 1812.85467 1556.39221 -8.57855 0.22633 -4.22785 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26945 -0.01069 -1.00000 - 14411 2002 3 18 19 41 40 879 5.0242 174.25598 1812.39016 1556.05977 -8.58469 0.22625 -4.22836 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26872 -0.01069 -1.00000 - 14413 2002 3 18 19 41 50 927 5.0240 174.25846 1811.92667 1555.72759 -8.58854 0.22612 -4.22885 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26799 -0.01069 -1.00000 - 14415 2002 3 18 19 42 0 974 5.0237 174.26096 1811.46371 1555.39561 -8.58983 0.22593 -4.22932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26726 -0.01069 -1.00000 - 14417 2002 3 18 19 42 11 21 5.0235 174.26348 1811.00076 1555.06378 -8.58853 0.22568 -4.22974 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26653 -0.01069 -1.00000 - 14419 2002 3 18 19 42 21 68 5.0233 174.26602 1810.53741 1554.73206 -8.58484 0.22537 -4.23014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26580 -0.01069 -1.00000 - 14421 2002 3 18 19 42 31 114 5.0230 174.26858 1810.07328 1554.40041 -8.57909 0.22503 -4.23051 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26507 -0.01069 -1.00000 - 14423 2002 3 18 19 42 41 160 5.0228 174.27115 1809.60814 1554.06881 -8.57178 0.22470 -4.23085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26434 -0.01068 -1.00000 - 14425 2002 3 18 19 42 51 205 5.0225 174.27375 1809.14185 1553.73724 -8.56350 0.22437 -4.23119 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26361 -0.01068 -1.00000 - 14427 2002 3 18 19 43 1 250 5.0223 174.27636 1808.67442 1553.40571 -8.55492 0.22400 -4.23152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26288 -0.01068 -1.00000 - 14429 2002 3 18 19 43 11 294 5.0221 174.27899 1808.20599 1553.07424 -8.54674 0.22361 -4.23186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26215 -0.01068 -1.00000 - 14431 2002 3 18 19 43 21 338 5.0218 174.28164 1807.73682 1552.74286 -8.53965 0.22321 -4.23222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26141 -0.01068 -1.00000 - 14433 2002 3 18 19 43 31 381 5.0216 174.28431 1807.26727 1552.41160 -8.53421 0.22281 -4.23260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.26068 -0.01068 -1.00000 - 14435 2002 3 18 19 43 41 424 5.0214 174.28700 1806.79776 1552.08051 -8.53083 0.22242 -4.23301 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25995 -0.01068 -1.00000 - 14437 2002 3 18 19 43 51 466 5.0211 174.28971 1806.32872 1551.74965 -8.52970 0.22206 -4.23346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25922 -0.01068 -1.00000 - 14439 2002 3 18 19 44 1 508 5.0209 174.29244 1805.86056 1551.41904 -8.53083 0.22175 -4.23394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25849 -0.01068 -1.00000 - 14441 2002 3 18 19 44 11 550 5.0207 174.29518 1805.39362 1551.08873 -8.53402 0.22146 -4.23445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25776 -0.01068 -1.00000 - 14443 2002 3 18 19 44 21 591 5.0204 174.29795 1804.92819 1550.75875 -8.53891 0.22123 -4.23499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25703 -0.01068 -1.00000 - 14445 2002 3 18 19 44 31 631 5.0202 174.30073 1804.46442 1550.42911 -8.54501 0.22106 -4.23554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25630 -0.01068 -1.00000 - 14447 2002 3 18 19 44 41 671 5.0199 174.30353 1804.00237 1550.09982 -8.55176 0.22094 -4.23610 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25557 -0.01067 -1.00000 - 14449 2002 3 18 19 44 51 711 5.0197 174.30635 1803.54200 1549.77087 -8.55854 0.22086 -4.23665 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25484 -0.01067 -1.00000 - 14451 2002 3 18 19 45 1 750 5.0195 174.30918 1803.08313 1549.44224 -8.56475 0.22081 -4.23719 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25411 -0.01067 -1.00000 - 14453 2002 3 18 19 45 11 788 5.0192 174.31203 1802.62542 1549.11386 -8.56986 0.22078 -4.23771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25338 -0.01067 -1.00000 - 14455 2002 3 18 19 45 21 826 5.0190 174.31490 1802.16820 1548.78551 -8.57350 0.22078 -4.23821 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25265 -0.01067 -1.00000 - 14457 2002 3 18 19 45 31 864 5.0188 174.31778 1801.71115 1548.45716 -8.57557 0.22080 -4.23873 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25192 -0.01067 -1.00000 - 14459 2002 3 18 19 45 41 901 5.0185 174.32068 1801.25405 1548.12887 -8.57606 0.22082 -4.23922 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25119 -0.01067 -1.00000 - 14461 2002 3 18 19 45 51 938 5.0183 174.32359 1800.79674 1547.80065 -8.57499 0.22086 -4.23969 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.25046 -0.01067 -1.00000 - 14463 2002 3 18 19 46 1 974 5.0180 174.32651 1800.33903 1547.47251 -8.57240 0.22091 -4.24012 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24973 -0.01067 -1.00000 - 14465 2002 3 18 19 46 12 10 5.0178 174.32945 1799.88075 1547.14445 -8.56847 0.22097 -4.24053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24900 -0.01067 -1.00000 - 14467 2002 3 18 19 46 22 45 5.0176 174.33241 1799.42177 1546.81647 -8.56350 0.22100 -4.24090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24827 -0.01067 -1.00000 - 14469 2002 3 18 19 46 32 80 5.0173 174.33538 1798.96203 1546.48858 -8.55794 0.22101 -4.24125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24754 -0.01066 -1.00000 - 14471 2002 3 18 19 46 42 114 5.0171 174.33837 1798.50156 1546.16078 -8.55233 0.22099 -4.24158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24681 -0.01066 -1.00000 - 14473 2002 3 18 19 46 52 148 5.0169 174.34137 1798.04045 1545.83309 -8.54718 0.22095 -4.24190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24608 -0.01066 -1.00000 - 14475 2002 3 18 19 47 2 181 5.0166 174.34439 1797.57887 1545.50555 -8.54290 0.22086 -4.24220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24535 -0.01066 -1.00000 - 14477 2002 3 18 19 47 12 214 5.0164 174.34742 1797.11703 1545.17817 -8.53983 0.22072 -4.24249 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24463 -0.01066 -1.00000 - 14479 2002 3 18 19 47 22 247 5.0161 174.35047 1796.65513 1544.85101 -8.53820 0.22054 -4.24278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24390 -0.01066 -1.00000 - 14481 2002 3 18 19 47 32 278 5.0159 174.35354 1796.19342 1544.52409 -8.53812 0.22030 -4.24305 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24317 -0.01066 -1.00000 - 14483 2002 3 18 19 47 42 310 5.0157 174.35663 1795.73215 1544.19746 -8.53965 0.22002 -4.24330 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24244 -0.01066 -1.00000 - 14485 2002 3 18 19 47 52 341 5.0154 174.35973 1795.27153 1543.87115 -8.54275 0.21968 -4.24352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24171 -0.01066 -1.00000 - 14487 2002 3 18 19 48 2 371 5.0152 174.36285 1794.81178 1543.54519 -8.54729 0.21932 -4.24370 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24098 -0.01066 -1.00000 - 14489 2002 3 18 19 48 12 401 5.0150 174.36599 1794.35309 1543.21961 -8.55307 0.21893 -4.24384 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.24025 -0.01066 -1.00000 - 14491 2002 3 18 19 48 22 431 5.0147 174.36914 1793.89559 1542.89443 -8.55981 0.21853 -4.24391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23952 -0.01066 -1.00000 - 14493 2002 3 18 19 48 32 460 5.0145 174.37231 1793.43939 1542.56966 -8.56717 0.21813 -4.24390 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23879 -0.01065 -1.00000 - 14495 2002 3 18 19 48 42 489 5.0142 174.37550 1792.98455 1542.24531 -8.57479 0.21774 -4.24379 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23806 -0.01065 -1.00000 - 14497 2002 3 18 19 48 52 517 5.0140 174.37870 1792.53106 1541.92136 -8.58230 0.21737 -4.24356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23733 -0.01065 -1.00000 - 14499 2002 3 18 19 49 2 544 5.0138 174.38192 1792.07893 1541.59781 -8.58936 0.21703 -4.24321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23660 -0.01065 -1.00000 - 14501 2002 3 18 19 49 12 572 5.0135 174.38516 1791.62809 1541.27465 -8.59566 0.21671 -4.24271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23587 -0.01065 -1.00000 - 14503 2002 3 18 19 49 22 598 5.0133 174.38841 1791.17850 1540.95183 -8.60091 0.21643 -4.24206 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23514 -0.01065 -1.00000 - 14505 2002 3 18 19 49 32 624 5.0130 174.39168 1790.73008 1540.62934 -8.60489 0.21619 -4.24124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23441 -0.01065 -1.00000 - 14507 2002 3 18 19 49 42 650 5.0128 174.39497 1790.28275 1540.30713 -8.60744 0.21599 -4.24025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23369 -0.01065 -1.00000 - 14509 2002 3 18 19 49 52 675 5.0126 174.39827 1789.83642 1539.98517 -8.60841 0.21582 -4.23909 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23296 -0.01065 -1.00000 - 14511 2002 3 18 19 50 2 700 5.0123 174.40158 1789.39102 1539.66341 -8.60774 0.21570 -4.23776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23223 -0.01065 -1.00000 - 14513 2002 3 18 19 50 12 725 5.0121 174.40491 1788.94645 1539.34182 -8.60539 0.21562 -4.23627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23150 -0.01065 -1.00000 - 14515 2002 3 18 19 50 22 748 5.0119 174.40826 1788.50261 1539.02034 -8.60133 0.21554 -4.23462 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23077 -0.01064 -1.00000 - 14517 2002 3 18 19 50 32 772 5.0116 174.41162 1788.05941 1538.69893 -8.59558 0.21548 -4.23283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.23004 -0.01064 -1.00000 - 14519 2002 3 18 19 50 42 795 5.0114 174.41499 1787.61672 1538.37756 -8.58816 0.21543 -4.23093 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22931 -0.01064 -1.00000 - 14521 2002 3 18 19 50 52 817 5.0111 174.41838 1787.17440 1538.05617 -8.57910 0.21539 -4.22892 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22858 -0.01064 -1.00000 - 14523 2002 3 18 19 51 2 839 5.0109 174.42179 1786.73230 1537.73472 -8.56846 0.21533 -4.22685 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22785 -0.01064 -1.00000 - 14525 2002 3 18 19 51 12 860 5.0107 174.42520 1786.29024 1537.41318 -8.55629 0.21525 -4.22474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22712 -0.01064 -1.00000 - 14527 2002 3 18 19 51 22 881 5.0104 174.42863 1785.84803 1537.09150 -8.54271 0.21513 -4.22261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22640 -0.01064 -1.00000 - 14529 2002 3 18 19 51 32 902 5.0102 174.43208 1785.40547 1536.76967 -8.52786 0.21499 -4.22051 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22567 -0.01064 -1.00000 - 14531 2002 3 18 19 51 42 922 5.0099 174.43554 1784.96234 1536.44764 -8.51194 0.21482 -4.21848 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22494 -0.01064 -1.00000 - 14533 2002 3 18 19 51 52 941 5.0097 174.43901 1784.51847 1536.12540 -8.49522 0.21464 -4.21654 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22421 -0.01064 -1.00000 - 14535 2002 3 18 19 52 2 960 5.0095 174.44250 1784.07368 1535.80294 -8.47801 0.21443 -4.21473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22348 -0.01064 -1.00000 - 14537 2002 3 18 19 52 12 979 5.0092 174.44601 1783.62783 1535.48025 -8.46069 0.21420 -4.21310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22275 -0.01064 -1.00000 - 14539 2002 3 18 19 52 22 997 5.0090 174.44952 1783.18082 1535.15736 -8.44364 0.21395 -4.21168 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22202 -0.01063 -1.00000 - 14541 2002 3 18 19 52 33 15 5.0088 174.45306 1782.73259 1534.83427 -8.42728 0.21370 -4.21050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22130 -0.01063 -1.00000 - 14543 2002 3 18 19 52 43 32 5.0085 174.45660 1782.28313 1534.51101 -8.41204 0.21342 -4.20959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.22057 -0.01063 -1.00000 - 14545 2002 3 18 19 52 53 49 5.0083 174.46017 1781.83249 1534.18763 -8.39837 0.21315 -4.20899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21984 -0.01063 -1.00000 - 14547 2002 3 18 19 53 3 65 5.0080 174.46375 1781.38075 1533.86417 -8.38667 0.21288 -4.20870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21911 -0.01063 -1.00000 - 14549 2002 3 18 19 53 13 81 5.0078 174.46734 1780.92805 1533.54069 -8.37734 0.21262 -4.20876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21838 -0.01063 -1.00000 - 14551 2002 3 18 19 53 23 96 5.0076 174.47095 1780.47456 1533.21726 -8.37068 0.21238 -4.20916 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21765 -0.01063 -1.00000 - 14553 2002 3 18 19 53 33 111 5.0073 174.47458 1780.02051 1532.89393 -8.36696 0.21215 -4.20993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21693 -0.01063 -1.00000 - 14555 2002 3 18 19 53 43 125 5.0071 174.47822 1779.56611 1532.57080 -8.36631 0.21191 -4.21104 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21620 -0.01063 -1.00000 - 14557 2002 3 18 19 53 53 139 5.0069 174.48187 1779.11160 1532.24792 -8.36875 0.21169 -4.21250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21547 -0.01063 -1.00000 - 14559 2002 3 18 19 54 3 152 5.0066 174.48554 1778.65724 1531.92537 -8.37425 0.21150 -4.21427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21474 -0.01063 -1.00000 - 14561 2002 3 18 19 54 13 165 5.0064 174.48922 1778.20330 1531.60323 -8.38275 0.21131 -4.21634 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21401 -0.01062 -1.00000 - 14563 2002 3 18 19 54 23 177 5.0061 174.49292 1777.75003 1531.28156 -8.39413 0.21115 -4.21868 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21328 -0.01062 -1.00000 - 14565 2002 3 18 19 54 33 189 5.0059 174.49663 1777.29771 1530.96042 -8.40819 0.21100 -4.22124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21256 -0.01062 -1.00000 - 14567 2002 3 18 19 54 43 201 5.0057 174.50035 1776.84661 1530.63987 -8.42466 0.21086 -4.22399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21183 -0.01062 -1.00000 - 14569 2002 3 18 19 54 53 212 5.0054 174.50408 1776.39698 1530.31996 -8.44322 0.21072 -4.22689 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21110 -0.01062 -1.00000 - 14571 2002 3 18 19 55 3 222 5.0052 174.50783 1775.94905 1530.00073 -8.46346 0.21059 -4.22988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.21037 -0.01062 -1.00000 - 14573 2002 3 18 19 55 13 232 5.0049 174.51159 1775.50307 1529.68219 -8.48498 0.21045 -4.23292 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20964 -0.01062 -1.00000 - 14575 2002 3 18 19 55 23 242 5.0047 174.51536 1775.05920 1529.36438 -8.50731 0.21031 -4.23596 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20892 -0.01062 -1.00000 - 14577 2002 3 18 19 55 33 251 5.0045 174.51915 1774.61761 1529.04727 -8.52991 0.21015 -4.23894 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20819 -0.01062 -1.00000 - 14579 2002 3 18 19 55 43 259 5.0042 174.52295 1774.17838 1528.73087 -8.55218 0.20998 -4.24183 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20746 -0.01062 -1.00000 - 14581 2002 3 18 19 55 53 267 5.0040 174.52676 1773.74155 1528.41514 -8.57354 0.20979 -4.24456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20673 -0.01062 -1.00000 - 14583 2002 3 18 19 56 3 275 5.0038 174.53059 1773.30708 1528.10004 -8.59346 0.20957 -4.24710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20601 -0.01062 -1.00000 - 14585 2002 3 18 19 56 13 282 5.0035 174.53442 1772.87486 1527.78553 -8.61142 0.20932 -4.24940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20528 -0.01061 -1.00000 - 14587 2002 3 18 19 56 23 289 5.0033 174.53828 1772.44473 1527.47153 -8.62691 0.20906 -4.25143 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20455 -0.01061 -1.00000 - 14589 2002 3 18 19 56 33 295 5.0030 174.54214 1772.01642 1527.15797 -8.63943 0.20879 -4.25317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20382 -0.01061 -1.00000 - 14591 2002 3 18 19 56 43 301 5.0028 174.54602 1771.58960 1526.84478 -8.64857 0.20849 -4.25460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20309 -0.01061 -1.00000 - 14593 2002 3 18 19 56 53 306 5.0026 174.54992 1771.16387 1526.53187 -8.65400 0.20819 -4.25569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20237 -0.01061 -1.00000 - 14595 2002 3 18 19 57 3 311 5.0023 174.55383 1770.73881 1526.21914 -8.65555 0.20788 -4.25645 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20164 -0.01061 -1.00000 - 14597 2002 3 18 19 57 13 315 5.0021 174.55775 1770.31399 1525.90652 -8.65321 0.20757 -4.25688 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20091 -0.01061 -1.00000 - 14599 2002 3 18 19 57 23 319 5.0019 174.56169 1769.88898 1525.59393 -8.64709 0.20727 -4.25699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.20018 -0.01061 -1.00000 - 14601 2002 3 18 19 57 33 322 5.0016 174.56564 1769.46337 1525.28128 -8.63746 0.20698 -4.25679 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19946 -0.01061 -1.00000 - 14603 2002 3 18 19 57 43 325 5.0014 174.56960 1769.03684 1524.96852 -8.62469 0.20671 -4.25631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19873 -0.01061 -1.00000 - 14605 2002 3 18 19 57 53 328 5.0011 174.57357 1768.60909 1524.65559 -8.60931 0.20646 -4.25558 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19800 -0.01061 -1.00000 - 14607 2002 3 18 19 58 3 330 5.0009 174.57756 1768.17995 1524.34246 -8.59195 0.20623 -4.25463 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19727 -0.01061 -1.00000 - 14609 2002 3 18 19 58 13 331 5.0007 174.58156 1767.74931 1524.02910 -8.57331 0.20603 -4.25349 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19655 -0.01060 -1.00000 - 14611 2002 3 18 19 58 23 332 5.0004 174.58557 1767.31717 1523.71551 -8.55409 0.20583 -4.25220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19582 -0.01060 -1.00000 - 14613 2002 3 18 19 58 33 333 5.0002 174.58959 1766.88361 1523.40170 -8.53500 0.20566 -4.25079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19509 -0.01060 -1.00000 - 14615 2002 3 18 19 58 43 333 5.0000 174.59363 1766.44877 1523.08768 -8.51667 0.20550 -4.24932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19437 -0.01060 -1.00000 - 14617 2002 3 18 19 58 53 332 4.9997 174.59767 1766.01285 1522.77349 -8.49965 0.20534 -4.24780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19364 -0.01060 -1.00000 - 14619 2002 3 18 19 59 3 331 4.9995 174.60173 1765.57610 1522.45917 -8.48436 0.20519 -4.24628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19291 -0.01060 -1.00000 - 14621 2002 3 18 19 59 13 330 4.9993 174.60580 1765.13879 1522.14475 -8.47117 0.20503 -4.24478 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19218 -0.01060 -1.00000 - 14623 2002 3 18 19 59 23 328 4.9990 174.60988 1764.70119 1521.83030 -8.46030 0.20485 -4.24333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19146 -0.01060 -1.00000 - 14625 2002 3 18 19 59 33 326 4.9988 174.61397 1764.26357 1521.51587 -8.45185 0.20466 -4.24196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19073 -0.01060 -1.00000 - 14627 2002 3 18 19 59 43 323 4.9985 174.61807 1763.82617 1521.20150 -8.44578 0.20445 -4.24066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.19000 -0.01060 -1.00000 - 14629 2002 3 18 19 59 53 320 4.9983 174.62219 1763.38921 1520.88724 -8.44195 0.20422 -4.23947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18928 -0.01060 -1.00000 - 14631 2002 3 18 20 0 3 316 4.9981 174.62632 1762.95286 1520.57314 -8.44017 0.20396 -4.23838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18855 -0.01059 -1.00000 - 14633 2002 3 18 20 0 13 312 4.9978 174.63046 1762.51719 1520.25919 -8.44018 0.20367 -4.23740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18782 -0.01059 -1.00000 - 14635 2002 3 18 20 0 23 307 4.9976 174.63461 1762.08207 1519.94531 -8.44172 0.20337 -4.23655 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18710 -0.01059 -1.00000 - 14637 2002 3 18 20 0 33 302 4.9974 174.63878 1761.64757 1519.63155 -8.44461 0.20305 -4.23584 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18637 -0.01059 -1.00000 - 14639 2002 3 18 20 0 43 296 4.9971 174.64295 1761.21384 1519.31797 -8.44864 0.20272 -4.23524 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18564 -0.01059 -1.00000 - 14641 2002 3 18 20 0 53 290 4.9969 174.64714 1760.78098 1519.00462 -8.45346 0.20237 -4.23475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18491 -0.01059 -1.00000 - 14643 2002 3 18 20 1 3 284 4.9967 174.65134 1760.34905 1518.69155 -8.45868 0.20201 -4.23434 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18419 -0.01059 -1.00000 - 14645 2002 3 18 20 1 13 277 4.9964 174.65556 1759.91805 1518.37875 -8.46394 0.20165 -4.23402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18346 -0.01059 -1.00000 - 14647 2002 3 18 20 1 23 269 4.9962 174.65978 1759.48794 1518.06624 -8.46896 0.20128 -4.23376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18273 -0.01059 -1.00000 - 14649 2002 3 18 20 1 33 261 4.9959 174.66402 1759.05868 1517.75400 -8.47355 0.20093 -4.23355 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18201 -0.01059 -1.00000 - 14651 2002 3 18 20 1 43 253 4.9957 174.66826 1758.63019 1517.44203 -8.47761 0.20057 -4.23340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18128 -0.01059 -1.00000 - 14653 2002 3 18 20 1 53 244 4.9955 174.67252 1758.20241 1517.13031 -8.48106 0.20023 -4.23328 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.18055 -0.01059 -1.00000 - 14655 2002 3 18 20 2 3 234 4.9952 174.67679 1757.77527 1516.81883 -8.48386 0.19989 -4.23320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17983 -0.01058 -1.00000 - 14657 2002 3 18 20 2 13 224 4.9950 174.68107 1757.34868 1516.50757 -8.48591 0.19958 -4.23314 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17910 -0.01058 -1.00000 - 14659 2002 3 18 20 2 23 214 4.9948 174.68536 1756.92251 1516.19651 -8.48716 0.19928 -4.23311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17838 -0.01058 -1.00000 - 14661 2002 3 18 20 2 33 203 4.9945 174.68966 1756.49664 1515.88564 -8.48756 0.19898 -4.23310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17765 -0.01058 -1.00000 - 14663 2002 3 18 20 2 43 192 4.9943 174.69397 1756.07094 1515.57494 -8.48713 0.19872 -4.23310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17692 -0.01058 -1.00000 - 14665 2002 3 18 20 2 53 180 4.9941 174.69829 1755.64529 1515.26439 -8.48592 0.19849 -4.23312 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17620 -0.01058 -1.00000 - 14667 2002 3 18 20 3 3 168 4.9938 174.70262 1755.21958 1514.95398 -8.48404 0.19827 -4.23316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17547 -0.01058 -1.00000 - 14669 2002 3 18 20 3 13 155 4.9936 174.70697 1754.79371 1514.64371 -8.48163 0.19806 -4.23321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17474 -0.01058 -1.00000 - 14671 2002 3 18 20 3 23 142 4.9934 174.71132 1754.36763 1514.33356 -8.47885 0.19786 -4.23328 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17402 -0.01058 -1.00000 - 14673 2002 3 18 20 3 33 129 4.9931 174.71568 1753.94131 1514.02354 -8.47586 0.19765 -4.23338 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17329 -0.01058 -1.00000 - 14675 2002 3 18 20 3 43 114 4.9929 174.72005 1753.51475 1513.71365 -8.47287 0.19745 -4.23349 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17256 -0.01058 -1.00000 - 14677 2002 3 18 20 3 53 100 4.9927 174.72444 1753.08799 1513.40390 -8.47008 0.19723 -4.23364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17184 -0.01057 -1.00000 - 14679 2002 3 18 20 4 3 85 4.9924 174.72884 1752.66112 1513.09429 -8.46769 0.19702 -4.23380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17111 -0.01057 -1.00000 - 14681 2002 3 18 20 4 13 69 4.9922 174.73324 1752.23425 1512.78485 -8.46591 0.19679 -4.23399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.17039 -0.01057 -1.00000 - 14683 2002 3 18 20 4 23 53 4.9920 174.73766 1751.80754 1512.47559 -8.46488 0.19655 -4.23421 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16966 -0.01057 -1.00000 - 14685 2002 3 18 20 4 33 37 4.9917 174.74208 1751.38114 1512.16653 -8.46470 0.19630 -4.23445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16893 -0.01057 -1.00000 - 14687 2002 3 18 20 4 43 20 4.9915 174.74652 1750.95522 1511.85768 -8.46540 0.19604 -4.23472 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16821 -0.01057 -1.00000 - 14689 2002 3 18 20 4 53 3 4.9913 174.75097 1750.52993 1511.54905 -8.46696 0.19579 -4.23500 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16748 -0.01057 -1.00000 - 14691 2002 3 18 20 5 2 985 4.9910 174.75542 1750.10542 1511.24067 -8.46927 0.19555 -4.23530 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16676 -0.01057 -1.00000 - 14693 2002 3 18 20 5 12 967 4.9908 174.75989 1749.68177 1510.93253 -8.47218 0.19535 -4.23561 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16603 -0.01057 -1.00000 - 14695 2002 3 18 20 5 22 948 4.9906 174.76436 1749.25904 1510.62464 -8.47545 0.19515 -4.23592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16530 -0.01057 -1.00000 - 14697 2002 3 18 20 5 32 929 4.9903 174.76884 1748.83725 1510.31699 -8.47886 0.19493 -4.23623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16458 -0.01057 -1.00000 - 14699 2002 3 18 20 5 42 909 4.9901 174.77334 1748.41635 1510.00958 -8.48213 0.19472 -4.23653 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16385 -0.01057 -1.00000 - 14701 2002 3 18 20 5 52 889 4.9899 174.77784 1747.99627 1509.70240 -8.48499 0.19450 -4.23682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16313 -0.01056 -1.00000 - 14703 2002 3 18 20 6 2 868 4.9896 174.78235 1747.57687 1509.39542 -8.48721 0.19428 -4.23709 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16240 -0.01056 -1.00000 - 14705 2002 3 18 20 6 12 847 4.9894 174.78687 1747.15799 1509.08864 -8.48860 0.19403 -4.23734 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16168 -0.01056 -1.00000 - 14707 2002 3 18 20 6 22 826 4.9892 174.79140 1746.73948 1508.78202 -8.48903 0.19376 -4.23756 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16095 -0.01056 -1.00000 - 14709 2002 3 18 20 6 32 804 4.9889 174.79593 1746.32115 1508.47555 -8.48846 0.19347 -4.23776 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.16022 -0.01056 -1.00000 - 14711 2002 3 18 20 6 42 781 4.9887 174.80048 1745.90284 1508.16921 -8.48690 0.19316 -4.23793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15950 -0.01056 -1.00000 - 14713 2002 3 18 20 6 52 758 4.9885 174.80504 1745.48441 1507.86298 -8.48444 0.19283 -4.23807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15877 -0.01056 -1.00000 - 14715 2002 3 18 20 7 2 735 4.9882 174.80960 1745.06577 1507.55686 -8.48123 0.19249 -4.23820 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15805 -0.01056 -1.00000 - 14717 2002 3 18 20 7 12 711 4.9880 174.81417 1744.64683 1507.25083 -8.47746 0.19212 -4.23830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15732 -0.01056 -1.00000 - 14719 2002 3 18 20 7 22 687 4.9878 174.81876 1744.22759 1506.94489 -8.47338 0.19173 -4.23840 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15660 -0.01056 -1.00000 - 14721 2002 3 18 20 7 32 662 4.9876 174.82335 1743.80808 1506.63905 -8.46924 0.19133 -4.23849 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15587 -0.01056 -1.00000 - 14723 2002 3 18 20 7 42 637 4.9873 174.82795 1743.38838 1506.33331 -8.46532 0.19094 -4.23857 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15515 -0.01055 -1.00000 - 14725 2002 3 18 20 7 52 611 4.9871 174.83256 1742.96862 1506.02769 -8.46184 0.19055 -4.23866 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15442 -0.01055 -1.00000 - 14727 2002 3 18 20 8 2 585 4.9869 174.83718 1742.54895 1505.72219 -8.45901 0.19017 -4.23876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15370 -0.01055 -1.00000 - 14729 2002 3 18 20 8 12 558 4.9866 174.84181 1742.12954 1505.41683 -8.45697 0.18979 -4.23887 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15297 -0.01055 -1.00000 - 14731 2002 3 18 20 8 22 531 4.9864 174.84645 1741.71057 1505.11163 -8.45578 0.18944 -4.23900 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15225 -0.01055 -1.00000 - 14733 2002 3 18 20 8 32 504 4.9862 174.85109 1741.29219 1504.80659 -8.45542 0.18910 -4.23915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15152 -0.01055 -1.00000 - 14735 2002 3 18 20 8 42 476 4.9859 174.85575 1740.87454 1504.50174 -8.45580 0.18884 -4.23931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15079 -0.01055 -1.00000 - 14737 2002 3 18 20 8 52 447 4.9857 174.86041 1740.45771 1504.19706 -8.45674 0.18859 -4.23950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.15007 -0.01055 -1.00000 - 14739 2002 3 18 20 9 2 418 4.9855 174.86508 1740.04174 1503.89257 -8.45802 0.18834 -4.23971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14934 -0.01055 -1.00000 - 14741 2002 3 18 20 9 12 389 4.9853 174.86975 1739.62663 1503.58826 -8.45940 0.18810 -4.23995 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14862 -0.01055 -1.00000 - 14743 2002 3 18 20 9 22 359 4.9850 174.87444 1739.21231 1503.28412 -8.46061 0.18786 -4.24020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14789 -0.01055 -1.00000 - 14745 2002 3 18 20 9 32 329 4.9848 174.87913 1738.79870 1502.98014 -8.46140 0.18762 -4.24048 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14717 -0.01055 -1.00000 - 14747 2002 3 18 20 9 42 298 4.9846 174.88383 1738.38565 1502.67629 -8.46156 0.18738 -4.24078 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14644 -0.01054 -1.00000 - 14749 2002 3 18 20 9 52 267 4.9843 174.88854 1737.97298 1502.37256 -8.46092 0.18714 -4.24110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14572 -0.01054 -1.00000 - 14751 2002 3 18 20 10 2 235 4.9841 174.89325 1737.56051 1502.06892 -8.45939 0.18691 -4.24144 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14499 -0.01054 -1.00000 - 14753 2002 3 18 20 10 12 203 4.9839 174.89797 1737.14804 1501.76537 -8.45694 0.18671 -4.24182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14427 -0.01054 -1.00000 - 14755 2002 3 18 20 10 22 170 4.9837 174.90270 1736.73538 1501.46188 -8.45363 0.18651 -4.24224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14354 -0.01054 -1.00000 - 14757 2002 3 18 20 10 32 137 4.9834 174.90743 1736.32236 1501.15844 -8.44957 0.18631 -4.24269 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14282 -0.01054 -1.00000 - 14759 2002 3 18 20 10 42 104 4.9832 174.91217 1735.90882 1500.85504 -8.44496 0.18610 -4.24319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14210 -0.01054 -1.00000 - 14761 2002 3 18 20 10 52 70 4.9830 174.91692 1735.49467 1500.55169 -8.44004 0.18588 -4.24374 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14137 -0.01054 -1.00000 - 14763 2002 3 18 20 11 2 36 4.9827 174.92168 1735.07983 1500.24838 -8.43510 0.18565 -4.24434 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.14065 -0.01054 -1.00000 - 14765 2002 3 18 20 11 12 1 4.9825 174.92644 1734.66432 1499.94515 -8.43047 0.18539 -4.24501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13992 -0.01054 -1.00000 - 14767 2002 3 18 20 11 21 966 4.9823 174.93120 1734.24816 1499.64200 -8.42645 0.18512 -4.24573 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13920 -0.01054 -1.00000 - 14769 2002 3 18 20 11 31 930 4.9821 174.93598 1733.83147 1499.33897 -8.42337 0.18483 -4.24652 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13847 -0.01054 -1.00000 - 14771 2002 3 18 20 11 41 894 4.9818 174.94076 1733.41440 1499.03608 -8.42151 0.18453 -4.24738 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13775 -0.01053 -1.00000 - 14773 2002 3 18 20 11 51 857 4.9816 174.94555 1732.99715 1498.73338 -8.42111 0.18421 -4.24829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13702 -0.01053 -1.00000 - 14775 2002 3 18 20 12 1 820 4.9814 174.95035 1732.57995 1498.43090 -8.42235 0.18388 -4.24925 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13630 -0.01053 -1.00000 - 14777 2002 3 18 20 12 11 782 4.9812 174.95515 1732.16305 1498.12869 -8.42532 0.18361 -4.25026 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13557 -0.01053 -1.00000 - 14779 2002 3 18 20 12 21 744 4.9809 174.95996 1731.74669 1497.82677 -8.43003 0.18335 -4.25130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13485 -0.01053 -1.00000 - 14781 2002 3 18 20 12 31 706 4.9807 174.96477 1731.33111 1497.52519 -8.43643 0.18308 -4.25236 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13412 -0.01053 -1.00000 - 14783 2002 3 18 20 12 41 667 4.9805 174.96960 1730.91654 1497.22398 -8.44435 0.18281 -4.25342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13340 -0.01053 -1.00000 - 14785 2002 3 18 20 12 51 628 4.9803 174.97443 1730.50314 1496.92314 -8.45356 0.18254 -4.25446 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13268 -0.01053 -1.00000 - 14787 2002 3 18 20 13 1 588 4.9800 174.97926 1730.09103 1496.62272 -8.46371 0.18228 -4.25546 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13195 -0.01053 -1.00000 - 14789 2002 3 18 20 13 11 548 4.9798 174.98410 1729.68029 1496.32270 -8.47442 0.18201 -4.25640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13123 -0.01053 -1.00000 - 14791 2002 3 18 20 13 21 507 4.9796 174.98895 1729.27091 1496.02309 -8.48523 0.18174 -4.25725 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.13050 -0.01053 -1.00000 - 14793 2002 3 18 20 13 31 466 4.9794 174.99380 1728.86286 1495.72389 -8.49570 0.18148 -4.25800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12978 -0.01052 -1.00000 - 14795 2002 3 18 20 13 41 424 4.9791 174.99866 1728.45603 1495.42506 -8.50540 0.18121 -4.25861 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12905 -0.01052 -1.00000 - 14797 2002 3 18 20 13 51 382 4.9789 175.00353 1728.05031 1495.12659 -8.51395 0.18095 -4.25908 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12833 -0.01052 -1.00000 - 14799 2002 3 18 20 14 1 340 4.9787 175.00840 1727.64556 1494.82845 -8.52106 0.18068 -4.25937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12761 -0.01052 -1.00000 - 14801 2002 3 18 20 14 11 297 4.9785 175.01328 1727.24163 1494.53060 -8.52655 0.18042 -4.25948 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12688 -0.01052 -1.00000 - 14803 2002 3 18 20 14 21 253 4.9783 175.01816 1726.83840 1494.23301 -8.53033 0.18015 -4.25940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12616 -0.01052 -1.00000 - 14805 2002 3 18 20 14 31 209 4.9780 175.02305 1726.43576 1493.93564 -8.53241 0.17989 -4.25912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12543 -0.01052 -1.00000 - 14807 2002 3 18 20 14 41 165 4.9778 175.02794 1726.03361 1493.63844 -8.53281 0.17962 -4.25864 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12471 -0.01052 -1.00000 - 14809 2002 3 18 20 14 51 120 4.9776 175.03283 1725.63190 1493.34140 -8.53162 0.17936 -4.25796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12399 -0.01052 -1.00000 - 14811 2002 3 18 20 15 1 75 4.9774 175.03774 1725.23055 1493.04446 -8.52892 0.17910 -4.25708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12326 -0.01052 -1.00000 - 14813 2002 3 18 20 15 11 30 4.9771 175.04264 1724.82946 1492.74758 -8.52481 0.17884 -4.25602 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12254 -0.01052 -1.00000 - 14815 2002 3 18 20 15 20 984 4.9769 175.04755 1724.42841 1492.45063 -8.51940 0.17858 -4.25481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12181 -0.01052 -1.00000 - 14817 2002 3 18 20 15 30 937 4.9767 175.05247 1724.02735 1492.15361 -8.51287 0.17831 -4.25347 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12109 -0.01051 -1.00000 - 14819 2002 3 18 20 15 40 890 4.9765 175.05739 1723.62627 1491.85652 -8.50535 0.17804 -4.25200 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.12037 -0.01051 -1.00000 - 14821 2002 3 18 20 15 50 843 4.9763 175.06232 1723.22516 1491.55936 -8.49691 0.17778 -4.25042 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11964 -0.01051 -1.00000 - 14823 2002 3 18 20 16 0 795 4.9760 175.06725 1722.82398 1491.26213 -8.48753 0.17751 -4.24876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11892 -0.01051 -1.00000 - 14825 2002 3 18 20 16 10 747 4.9758 175.07218 1722.42264 1490.96481 -8.47723 0.17723 -4.24703 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11820 -0.01051 -1.00000 - 14827 2002 3 18 20 16 20 698 4.9756 175.07712 1722.02104 1490.66739 -8.46603 0.17696 -4.24526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11747 -0.01051 -1.00000 - 14829 2002 3 18 20 16 30 649 4.9754 175.08206 1721.61905 1490.36985 -8.45406 0.17668 -4.24348 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11675 -0.01051 -1.00000 - 14831 2002 3 18 20 16 40 599 4.9752 175.08701 1721.21658 1490.07218 -8.44148 0.17640 -4.24172 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11602 -0.01051 -1.00000 - 14833 2002 3 18 20 16 50 549 4.9749 175.09196 1720.81351 1489.77436 -8.42850 0.17612 -4.24001 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11530 -0.01051 -1.00000 - 14835 2002 3 18 20 17 0 499 4.9747 175.09691 1720.40977 1489.47641 -8.41536 0.17584 -4.23837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11458 -0.01051 -1.00000 - 14837 2002 3 18 20 17 10 448 4.9745 175.10187 1720.00529 1489.17833 -8.40230 0.17556 -4.23683 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11385 -0.01051 -1.00000 - 14839 2002 3 18 20 17 20 397 4.9743 175.10684 1719.60003 1488.88012 -8.38958 0.17528 -4.23543 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11313 -0.01050 -1.00000 - 14841 2002 3 18 20 17 30 345 4.9741 175.11181 1719.19399 1488.58181 -8.37747 0.17499 -4.23417 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11241 -0.01050 -1.00000 - 14843 2002 3 18 20 17 40 293 4.9738 175.11678 1718.78718 1488.28341 -8.36626 0.17471 -4.23310 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11168 -0.01050 -1.00000 - 14845 2002 3 18 20 17 50 240 4.9736 175.12176 1718.37965 1487.98495 -8.35623 0.17443 -4.23222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11096 -0.01050 -1.00000 - 14847 2002 3 18 20 18 0 187 4.9734 175.12674 1717.97150 1487.68648 -8.34765 0.17414 -4.23156 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.11024 -0.01050 -1.00000 - 14849 2002 3 18 20 18 10 134 4.9732 175.13172 1717.56283 1487.38802 -8.34080 0.17386 -4.23112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10951 -0.01050 -1.00000 - 14851 2002 3 18 20 18 20 80 4.9730 175.13671 1717.15382 1487.08963 -8.33588 0.17358 -4.23092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10879 -0.01050 -1.00000 - 14853 2002 3 18 20 18 30 25 4.9728 175.14170 1716.74462 1486.79135 -8.33303 0.17330 -4.23096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10807 -0.01050 -1.00000 - 14856 2002 3 18 20 18 44 943 4.9724 175.14920 1716.13088 1486.34424 -8.33276 0.17288 -4.23148 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10698 -0.01050 -1.00000 - 14858 2002 3 18 20 18 54 887 4.9722 175.15420 1715.72203 1486.04645 -8.33524 0.17260 -4.23211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10626 -0.01050 -1.00000 - 14860 2002 3 18 20 19 4 832 4.9720 175.15920 1715.31365 1485.74892 -8.33977 0.17232 -4.23297 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10554 -0.01050 -1.00000 - 14862 2002 3 18 20 19 14 775 4.9718 175.16420 1714.90593 1485.45171 -8.34622 0.17204 -4.23404 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10481 -0.01050 -1.00000 - 14864 2002 3 18 20 19 24 719 4.9716 175.16921 1714.49904 1485.15485 -8.35444 0.17176 -4.23529 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10409 -0.01049 -1.00000 - 14866 2002 3 18 20 19 34 661 4.9714 175.17422 1714.09314 1484.85837 -8.36421 0.17148 -4.23672 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10337 -0.01049 -1.00000 - 14868 2002 3 18 20 19 44 604 4.9711 175.17924 1713.68838 1484.56229 -8.37528 0.17119 -4.23828 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10264 -0.01049 -1.00000 - 14870 2002 3 18 20 19 54 546 4.9709 175.18426 1713.28485 1484.26663 -8.38733 0.17091 -4.23996 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10192 -0.01049 -1.00000 - 14872 2002 3 18 20 20 4 487 4.9707 175.18928 1712.88262 1483.97140 -8.40004 0.17062 -4.24173 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10120 -0.01049 -1.00000 - 14874 2002 3 18 20 20 14 428 4.9705 175.19430 1712.48174 1483.67661 -8.41303 0.17034 -4.24356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.10047 -0.01049 -1.00000 - 14876 2002 3 18 20 20 24 369 4.9703 175.19932 1712.08220 1483.38224 -8.42595 0.17005 -4.24542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09975 -0.01049 -1.00000 - 14878 2002 3 18 20 20 34 309 4.9701 175.20435 1711.68395 1483.08829 -8.43843 0.16975 -4.24729 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09903 -0.01049 -1.00000 - 14880 2002 3 18 20 20 44 249 4.9699 175.20938 1711.28691 1482.79473 -8.45013 0.16946 -4.24913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09831 -0.01049 -1.00000 - 14882 2002 3 18 20 20 54 189 4.9697 175.21442 1710.89096 1482.50153 -8.46075 0.16916 -4.25092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09758 -0.01049 -1.00000 - 14884 2002 3 18 20 21 4 128 4.9694 175.21945 1710.49596 1482.20867 -8.47004 0.16887 -4.25264 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09686 -0.01049 -1.00000 - 14886 2002 3 18 20 21 14 66 4.9692 175.22449 1710.10176 1481.91611 -8.47781 0.16857 -4.25428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09614 -0.01048 -1.00000 - 14888 2002 3 18 20 21 24 4 4.9690 175.22953 1709.70817 1481.62382 -8.48391 0.16827 -4.25580 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09541 -0.01048 -1.00000 - 14890 2002 3 18 20 21 33 942 4.9688 175.23457 1709.31502 1481.33176 -8.48831 0.16797 -4.25721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09469 -0.01048 -1.00000 - 14892 2002 3 18 20 21 43 879 4.9686 175.23962 1708.92215 1481.03989 -8.49099 0.16767 -4.25850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09397 -0.01048 -1.00000 - 14894 2002 3 18 20 21 53 816 4.9684 175.24466 1708.52940 1480.74818 -8.49200 0.16738 -4.25964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09325 -0.01048 -1.00000 - 14896 2002 3 18 20 22 3 753 4.9682 175.24971 1708.13661 1480.45660 -8.49143 0.16708 -4.26066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09252 -0.01048 -1.00000 - 14898 2002 3 18 20 22 13 689 4.9680 175.25476 1707.74367 1480.16512 -8.48943 0.16678 -4.26154 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09180 -0.01048 -1.00000 - 14900 2002 3 18 20 22 23 624 4.9678 175.25981 1707.35048 1479.87372 -8.48617 0.16649 -4.26229 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09108 -0.01048 -1.00000 - 14902 2002 3 18 20 22 33 559 4.9675 175.26487 1706.95697 1479.58238 -8.48190 0.16619 -4.26291 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.09036 -0.01048 -1.00000 - 14904 2002 3 18 20 22 43 494 4.9673 175.26992 1706.56311 1479.29108 -8.47686 0.16590 -4.26341 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08963 -0.01048 -1.00000 - 14906 2002 3 18 20 22 53 429 4.9671 175.27498 1706.16888 1478.99982 -8.47131 0.16561 -4.26380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08891 -0.01048 -1.00000 - 14908 2002 3 18 20 23 3 363 4.9669 175.28004 1705.77433 1478.70859 -8.46553 0.16532 -4.26409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08819 -0.01048 -1.00000 - 14910 2002 3 18 20 23 13 296 4.9667 175.28510 1705.37948 1478.41740 -8.45975 0.16503 -4.26430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08747 -0.01047 -1.00000 - 14912 2002 3 18 20 23 23 229 4.9665 175.29016 1704.98442 1478.12625 -8.45416 0.16473 -4.26442 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08674 -0.01047 -1.00000 - 14914 2002 3 18 20 23 33 162 4.9663 175.29522 1704.58920 1477.83514 -8.44895 0.16444 -4.26448 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08602 -0.01047 -1.00000 - 14916 2002 3 18 20 23 43 94 4.9661 175.30028 1704.19392 1477.54409 -8.44421 0.16415 -4.26447 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08530 -0.01047 -1.00000 - 14918 2002 3 18 20 23 53 26 4.9659 175.30534 1703.79864 1477.25312 -8.44005 0.16385 -4.26441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08458 -0.01047 -1.00000 - 14920 2002 3 18 20 24 2 957 4.9657 175.31040 1703.40346 1476.96222 -8.43649 0.16355 -4.26431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08386 -0.01047 -1.00000 - 14922 2002 3 18 20 24 12 888 4.9655 175.31547 1703.00845 1476.67142 -8.43354 0.16325 -4.26418 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08313 -0.01047 -1.00000 - 14924 2002 3 18 20 24 22 819 4.9653 175.32053 1702.61367 1476.38073 -8.43120 0.16295 -4.26401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08241 -0.01047 -1.00000 - 14926 2002 3 18 20 24 32 749 4.9651 175.32560 1702.21919 1476.09015 -8.42941 0.16264 -4.26382 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08169 -0.01047 -1.00000 - 14928 2002 3 18 20 24 42 679 4.9648 175.33066 1701.82507 1475.79970 -8.42813 0.16233 -4.26360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08097 -0.01047 -1.00000 - 14930 2002 3 18 20 24 52 608 4.9646 175.33573 1701.43136 1475.50939 -8.42729 0.16202 -4.26337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.08024 -0.01047 -1.00000 - 14932 2002 3 18 20 25 2 537 4.9644 175.34080 1701.03808 1475.21922 -8.42680 0.16171 -4.26311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07952 -0.01046 -1.00000 - 14934 2002 3 18 20 25 12 466 4.9642 175.34587 1700.64527 1474.92919 -8.42659 0.16140 -4.26285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07880 -0.01046 -1.00000 - 14936 2002 3 18 20 25 22 394 4.9640 175.35094 1700.25294 1474.63931 -8.42657 0.16108 -4.26256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07808 -0.01046 -1.00000 - 14938 2002 3 18 20 25 32 322 4.9638 175.35601 1699.86110 1474.34958 -8.42665 0.16077 -4.26227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07736 -0.01046 -1.00000 - 14940 2002 3 18 20 25 42 249 4.9636 175.36108 1699.46972 1474.06000 -8.42673 0.16046 -4.26196 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07663 -0.01046 -1.00000 - 14942 2002 3 18 20 25 52 176 4.9634 175.36615 1699.07879 1473.77055 -8.42672 0.16015 -4.26164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07591 -0.01046 -1.00000 - 14944 2002 3 18 20 26 2 103 4.9632 175.37122 1698.68827 1473.48125 -8.42653 0.15984 -4.26131 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07519 -0.01046 -1.00000 - 14946 2002 3 18 20 26 12 29 4.9630 175.37630 1698.29810 1473.19207 -8.42609 0.15953 -4.26097 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07447 -0.01046 -1.00000 - 14948 2002 3 18 20 26 21 954 4.9628 175.38137 1697.90823 1472.90302 -8.42534 0.15922 -4.26063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07375 -0.01046 -1.00000 - 14950 2002 3 18 20 26 31 880 4.9626 175.38644 1697.51860 1472.61409 -8.42423 0.15891 -4.26028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07303 -0.01046 -1.00000 - 14952 2002 3 18 20 26 41 805 4.9624 175.39151 1697.12913 1472.32527 -8.42277 0.15860 -4.25993 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07230 -0.01046 -1.00000 - 14954 2002 3 18 20 26 51 729 4.9622 175.39658 1696.73978 1472.03656 -8.42095 0.15830 -4.25959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07158 -0.01046 -1.00000 - 14956 2002 3 18 20 27 1 653 4.9620 175.40165 1696.35049 1471.74794 -8.41880 0.15799 -4.25924 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07086 -0.01045 -1.00000 - 14958 2002 3 18 20 27 11 577 4.9618 175.40672 1695.96121 1471.45942 -8.41640 0.15768 -4.25891 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.07014 -0.01045 -1.00000 - 14960 2002 3 18 20 27 21 500 4.9616 175.41179 1695.57192 1471.17099 -8.41380 0.15738 -4.25859 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06942 -0.01045 -1.00000 - 14962 2002 3 18 20 27 31 423 4.9614 175.41686 1695.18260 1470.88266 -8.41111 0.15707 -4.25828 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06870 -0.01045 -1.00000 - 14964 2002 3 18 20 27 41 346 4.9612 175.42193 1694.79325 1470.59441 -8.40841 0.15676 -4.25800 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06797 -0.01045 -1.00000 - 14966 2002 3 18 20 27 51 268 4.9610 175.42700 1694.40388 1470.30627 -8.40581 0.15644 -4.25774 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06725 -0.01045 -1.00000 - 14968 2002 3 18 20 28 1 190 4.9608 175.43207 1694.01452 1470.01823 -8.40341 0.15613 -4.25752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06653 -0.01045 -1.00000 - 14970 2002 3 18 20 28 11 111 4.9606 175.43713 1693.62520 1469.73030 -8.40129 0.15582 -4.25732 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06581 -0.01045 -1.00000 - 14972 2002 3 18 20 28 21 32 4.9604 175.44220 1693.23598 1469.44249 -8.39951 0.15550 -4.25716 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06509 -0.01045 -1.00000 - 14974 2002 3 18 20 28 30 952 4.9602 175.44726 1692.84690 1469.15480 -8.39815 0.15518 -4.25704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06437 -0.01045 -1.00000 - 14976 2002 3 18 20 28 40 872 4.9600 175.45233 1692.45802 1468.86724 -8.39722 0.15487 -4.25696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06364 -0.01045 -1.00000 - 14978 2002 3 18 20 28 50 792 4.9598 175.45739 1692.06938 1468.57983 -8.39673 0.15455 -4.25692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06292 -0.01045 -1.00000 - 14980 2002 3 18 20 29 0 711 4.9596 175.46245 1691.68104 1468.29257 -8.39668 0.15423 -4.25692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06220 -0.01044 -1.00000 - 14982 2002 3 18 20 29 10 630 4.9594 175.46751 1691.29302 1468.00546 -8.39702 0.15392 -4.25695 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06148 -0.01044 -1.00000 - 14984 2002 3 18 20 29 20 549 4.9592 175.47257 1690.90536 1467.71852 -8.39769 0.15360 -4.25702 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06076 -0.01044 -1.00000 - 14986 2002 3 18 20 29 30 467 4.9590 175.47763 1690.51807 1467.43174 -8.39864 0.15328 -4.25713 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.06004 -0.01044 -1.00000 - 14988 2002 3 18 20 29 40 385 4.9588 175.48268 1690.13116 1467.14514 -8.39978 0.15297 -4.25727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05932 -0.01044 -1.00000 - 14990 2002 3 18 20 29 50 302 4.9586 175.48774 1689.74462 1466.85870 -8.40104 0.15265 -4.25744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05860 -0.01044 -1.00000 - 14992 2002 3 18 20 30 0 219 4.9584 175.49279 1689.35844 1466.57244 -8.40236 0.15233 -4.25763 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05787 -0.01044 -1.00000 - 14994 2002 3 18 20 30 10 136 4.9583 175.49784 1688.97257 1466.28633 -8.40366 0.15202 -4.25784 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05715 -0.01044 -1.00000 - 14996 2002 3 18 20 30 20 52 4.9581 175.50289 1688.58683 1466.00029 -8.40491 0.15170 -4.25809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05643 -0.01044 -1.00000 - 14999 2002 3 18 20 30 34 926 4.9578 175.51045 1688.00846 1465.57144 -8.40673 0.15122 -4.25853 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05535 -0.01044 -1.00000 - 15001 2002 3 18 20 30 44 841 4.9576 175.51550 1687.62306 1465.28571 -8.40792 0.15090 -4.25884 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05463 -0.01044 -1.00000 - 15003 2002 3 18 20 30 54 756 4.9574 175.52054 1687.23782 1465.00013 -8.40903 0.15058 -4.25915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05391 -0.01043 -1.00000 - 15005 2002 3 18 20 31 4 670 4.9572 175.52558 1686.85275 1464.71470 -8.40999 0.15026 -4.25948 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05319 -0.01043 -1.00000 - 15007 2002 3 18 20 31 14 584 4.9570 175.53061 1686.46784 1464.42943 -8.41075 0.14994 -4.25980 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05247 -0.01043 -1.00000 - 15009 2002 3 18 20 31 24 498 4.9568 175.53565 1686.08308 1464.14432 -8.41133 0.14961 -4.26012 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05175 -0.01043 -1.00000 - 15011 2002 3 18 20 31 34 411 4.9566 175.54068 1685.69848 1463.85936 -8.41178 0.14928 -4.26043 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05102 -0.01043 -1.00000 - 15013 2002 3 18 20 31 44 324 4.9564 175.54571 1685.31406 1463.57456 -8.41216 0.14895 -4.26074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.05030 -0.01043 -1.00000 - 15015 2002 3 18 20 31 54 237 4.9562 175.55073 1684.92985 1463.28993 -8.41253 0.14862 -4.26104 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04958 -0.01043 -1.00000 - 15017 2002 3 18 20 32 4 149 4.9560 175.55576 1684.54588 1463.00545 -8.41294 0.14829 -4.26133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04886 -0.01043 -1.00000 - 15019 2002 3 18 20 32 14 61 4.9559 175.56078 1684.16221 1462.72114 -8.41340 0.14796 -4.26161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04814 -0.01043 -1.00000 - 15021 2002 3 18 20 32 23 972 4.9557 175.56580 1683.77886 1462.43698 -8.41391 0.14763 -4.26187 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04742 -0.01043 -1.00000 - 15023 2002 3 18 20 32 33 883 4.9555 175.57081 1683.39588 1462.15299 -8.41446 0.14730 -4.26211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04670 -0.01043 -1.00000 - 15025 2002 3 18 20 32 43 794 4.9553 175.57583 1683.01332 1461.86916 -8.41503 0.14696 -4.26234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04598 -0.01043 -1.00000 - 15027 2002 3 18 20 32 53 704 4.9551 175.58084 1682.63120 1461.58549 -8.41558 0.14663 -4.26254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04526 -0.01042 -1.00000 - 15029 2002 3 18 20 33 3 614 4.9549 175.58585 1682.24956 1461.30197 -8.41607 0.14630 -4.26273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04454 -0.01042 -1.00000 - 15031 2002 3 18 20 33 13 524 4.9547 175.59085 1681.86840 1461.01860 -8.41645 0.14597 -4.26291 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04382 -0.01042 -1.00000 - 15033 2002 3 18 20 33 23 433 4.9545 175.59586 1681.48774 1460.73537 -8.41664 0.14564 -4.26306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04310 -0.01042 -1.00000 - 15035 2002 3 18 20 33 33 342 4.9544 175.60085 1681.10757 1460.45226 -8.41657 0.14530 -4.26320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04238 -0.01042 -1.00000 - 15037 2002 3 18 20 33 43 250 4.9542 175.60585 1680.72785 1460.16928 -8.41616 0.14497 -4.26333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04166 -0.01042 -1.00000 - 15039 2002 3 18 20 33 53 158 4.9540 175.61084 1680.34854 1459.88639 -8.41534 0.14464 -4.26345 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04093 -0.01042 -1.00000 - 15041 2002 3 18 20 34 3 66 4.9538 175.61583 1679.96956 1459.60360 -8.41402 0.14431 -4.26356 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.04021 -0.01042 -1.00000 - 15043 2002 3 18 20 34 12 973 4.9536 175.62082 1679.59085 1459.32089 -8.41215 0.14398 -4.26367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03949 -0.01042 -1.00000 - 15045 2002 3 18 20 34 22 880 4.9534 175.62580 1679.21229 1459.03823 -8.40970 0.14365 -4.26379 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03877 -0.01042 -1.00000 - 15047 2002 3 18 20 34 32 787 4.9532 175.63078 1678.83380 1458.75563 -8.40665 0.14332 -4.26392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03805 -0.01042 -1.00000 - 15049 2002 3 18 20 34 42 693 4.9531 175.63575 1678.45525 1458.47305 -8.40301 0.14299 -4.26407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03733 -0.01041 -1.00000 - 15051 2002 3 18 20 34 52 599 4.9529 175.64072 1678.07655 1458.19051 -8.39884 0.14266 -4.26425 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03661 -0.01041 -1.00000 - 15053 2002 3 18 20 35 2 504 4.9527 175.64568 1677.69758 1457.90798 -8.39420 0.14233 -4.26446 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03589 -0.01041 -1.00000 - 15055 2002 3 18 20 35 12 410 4.9525 175.65065 1677.31828 1457.62546 -8.38922 0.14199 -4.26472 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03517 -0.01041 -1.00000 - 15057 2002 3 18 20 35 22 314 4.9523 175.65560 1676.93856 1457.34295 -8.38406 0.14166 -4.26504 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03445 -0.01041 -1.00000 - 15059 2002 3 18 20 35 32 219 4.9522 175.66056 1676.55840 1457.06047 -8.37888 0.14132 -4.26542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03373 -0.01041 -1.00000 - 15061 2002 3 18 20 35 42 123 4.9520 175.66550 1676.17777 1456.77800 -8.37389 0.14099 -4.26587 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03301 -0.01041 -1.00000 - 15063 2002 3 18 20 35 52 26 4.9518 175.67045 1675.79670 1456.49558 -8.36931 0.14065 -4.26640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03229 -0.01041 -1.00000 - 15065 2002 3 18 20 36 1 930 4.9516 175.67539 1675.41524 1456.21320 -8.36536 0.14031 -4.26701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03157 -0.01041 -1.00000 - 15067 2002 3 18 20 36 11 833 4.9514 175.68033 1675.03346 1455.93091 -8.36223 0.13997 -4.26771 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03085 -0.01041 -1.00000 - 15069 2002 3 18 20 36 21 735 4.9513 175.68526 1674.65146 1455.64871 -8.36012 0.13963 -4.26850 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.03013 -0.01041 -1.00000 - 15071 2002 3 18 20 36 31 637 4.9511 175.69018 1674.26937 1455.36664 -8.35918 0.13929 -4.26938 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02941 -0.01041 -1.00000 - 15073 2002 3 18 20 36 41 539 4.9509 175.69511 1673.88733 1455.08473 -8.35952 0.13895 -4.27034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02869 -0.01040 -1.00000 - 15075 2002 3 18 20 36 51 441 4.9507 175.70002 1673.50547 1454.80300 -8.36119 0.13861 -4.27140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02797 -0.01040 -1.00000 - 15077 2002 3 18 20 37 1 342 4.9505 175.70494 1673.12392 1454.52148 -8.36417 0.13827 -4.27253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02725 -0.01040 -1.00000 - 15079 2002 3 18 20 37 11 243 4.9504 175.70985 1672.74282 1454.24020 -8.36841 0.13792 -4.27372 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02653 -0.01040 -1.00000 - 15081 2002 3 18 20 37 21 143 4.9502 175.71475 1672.36228 1453.95918 -8.37381 0.13758 -4.27497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02581 -0.01040 -1.00000 - 15083 2002 3 18 20 37 31 43 4.9500 175.71965 1671.98239 1453.67844 -8.38022 0.13723 -4.27627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02509 -0.01040 -1.00000 - 15085 2002 3 18 20 37 40 943 4.9498 175.72454 1671.60323 1453.39799 -8.38746 0.13689 -4.27758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02437 -0.01040 -1.00000 - 15087 2002 3 18 20 37 50 843 4.9497 175.72943 1671.22487 1453.11785 -8.39534 0.13655 -4.27891 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02365 -0.01040 -1.00000 - 15089 2002 3 18 20 38 0 742 4.9495 175.73431 1670.84732 1452.83803 -8.40362 0.13620 -4.28022 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02293 -0.01040 -1.00000 - 15091 2002 3 18 20 38 10 640 4.9493 175.73919 1670.47061 1452.55852 -8.41207 0.13586 -4.28150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02221 -0.01040 -1.00000 - 15093 2002 3 18 20 38 20 539 4.9491 175.74407 1670.09474 1452.27933 -8.42047 0.13552 -4.28273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02149 -0.01040 -1.00000 - 15095 2002 3 18 20 38 30 437 4.9490 175.74893 1669.71968 1452.00044 -8.42860 0.13518 -4.28389 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02077 -0.01040 -1.00000 - 15097 2002 3 18 20 38 40 334 4.9488 175.75380 1669.34541 1451.72186 -8.43625 0.13484 -4.28497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.02005 -0.01039 -1.00000 - 15099 2002 3 18 20 38 50 232 4.9486 175.75865 1668.97188 1451.44356 -8.44328 0.13449 -4.28594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01933 -0.01039 -1.00000 - 15101 2002 3 18 20 39 0 129 4.9484 175.76350 1668.59905 1451.16553 -8.44954 0.13415 -4.28680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01861 -0.01039 -1.00000 - 15103 2002 3 18 20 39 10 25 4.9483 175.76835 1668.22687 1450.88775 -8.45492 0.13381 -4.28752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01789 -0.01039 -1.00000 - 15106 2002 3 18 20 39 24 870 4.9480 175.77561 1667.66971 1450.47150 -8.46120 0.13329 -4.28834 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01681 -0.01039 -1.00000 - 15108 2002 3 18 20 39 34 765 4.9478 175.78044 1667.29894 1450.19425 -8.46412 0.13294 -4.28869 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01609 -0.01039 -1.00000 - 15110 2002 3 18 20 39 44 661 4.9477 175.78526 1666.92864 1449.91718 -8.46599 0.13259 -4.28889 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01537 -0.01039 -1.00000 - 15112 2002 3 18 20 39 54 556 4.9475 175.79008 1666.55875 1449.64026 -8.46677 0.13225 -4.28892 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01465 -0.01039 -1.00000 - 15114 2002 3 18 20 40 4 451 4.9473 175.79489 1666.18921 1449.36346 -8.46645 0.13190 -4.28880 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01393 -0.01039 -1.00000 - 15116 2002 3 18 20 40 14 345 4.9472 175.79970 1665.81996 1449.08676 -8.46504 0.13155 -4.28852 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01321 -0.01039 -1.00000 - 15118 2002 3 18 20 40 24 239 4.9470 175.80450 1665.45091 1448.81015 -8.46253 0.13120 -4.28809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01249 -0.01039 -1.00000 - 15120 2002 3 18 20 40 34 133 4.9468 175.80930 1665.08200 1448.53358 -8.45897 0.13085 -4.28752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01178 -0.01038 -1.00000 - 15122 2002 3 18 20 40 44 26 4.9467 175.81408 1664.71315 1448.25705 -8.45440 0.13050 -4.28681 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01106 -0.01038 -1.00000 - 15124 2002 3 18 20 40 53 919 4.9465 175.81887 1664.34430 1447.98054 -8.44890 0.13014 -4.28598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.01034 -0.01038 -1.00000 - 15126 2002 3 18 20 41 3 812 4.9463 175.82364 1663.97536 1447.70401 -8.44254 0.12979 -4.28505 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00962 -0.01038 -1.00000 - 15128 2002 3 18 20 41 13 704 4.9462 175.82841 1663.60627 1447.42747 -8.43543 0.12944 -4.28402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00890 -0.01038 -1.00000 - 15130 2002 3 18 20 41 23 597 4.9460 175.83317 1663.23697 1447.15089 -8.42767 0.12908 -4.28293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00818 -0.01038 -1.00000 - 15132 2002 3 18 20 41 33 488 4.9458 175.83699 1662.86740 1446.87427 -8.41941 0.12873 -4.28177 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00746 -0.01038 -1.00000 - 15134 2002 3 18 20 41 43 380 4.9457 175.83493 1662.49752 1446.59760 -8.41077 0.12837 -4.28058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00674 -0.01038 -1.00000 - 15136 2002 3 18 20 41 53 271 4.9455 175.83289 1662.12728 1446.32087 -8.40191 0.12802 -4.27937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00602 -0.01038 -1.00000 - 15138 2002 3 18 20 42 3 162 4.9453 175.83085 1661.75667 1446.04408 -8.39297 0.12766 -4.27817 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00530 -0.01038 -1.00000 - 15140 2002 3 18 20 42 13 52 4.9452 175.82882 1661.38567 1445.76725 -8.38412 0.12731 -4.27698 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00458 -0.01038 -1.00000 - 15142 2002 3 18 20 42 22 942 4.9450 175.82681 1661.01429 1445.49036 -8.37553 0.12695 -4.27583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00386 -0.01037 -1.00000 - 15144 2002 3 18 20 42 32 832 4.9448 175.82480 1660.64255 1445.21345 -8.36734 0.12660 -4.27474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00314 -0.01037 -1.00000 - 15146 2002 3 18 20 42 42 721 4.9447 175.82280 1660.27049 1444.93651 -8.35973 0.12624 -4.27373 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00242 -0.01037 -1.00000 - 15148 2002 3 18 20 42 52 610 4.9445 175.82082 1659.89815 1444.65957 -8.35282 0.12589 -4.27279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00170 -0.01037 -1.00000 - 15150 2002 3 18 20 43 2 499 4.9444 175.81884 1659.52560 1444.38264 -8.34675 0.12553 -4.27197 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00099 -0.01037 -1.00000 - 15152 2002 3 18 20 43 12 388 4.9442 175.81688 1659.15291 1444.10574 -8.34162 0.12518 -4.27125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 4.00027 -0.01037 -1.00000 - 15154 2002 3 18 20 43 22 276 4.9440 175.81493 1658.78017 1443.82890 -8.33753 0.12482 -4.27065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99955 -0.01037 -1.00000 - 15156 2002 3 18 20 43 32 164 4.9439 175.81298 1658.40748 1443.55213 -8.33453 0.12447 -4.27018 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99883 -0.01037 -1.00000 - 15158 2002 3 18 20 43 42 51 4.9437 175.81105 1658.03492 1443.27547 -8.33265 0.12411 -4.26985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99811 -0.01037 -1.00000 - 15160 2002 3 18 20 43 51 938 4.9436 175.80913 1657.66259 1442.99892 -8.33188 0.12375 -4.26965 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99739 -0.01037 -1.00000 - 15162 2002 3 18 20 44 1 825 4.9434 175.80721 1657.29056 1442.72252 -8.33217 0.12340 -4.26959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99667 -0.01037 -1.00000 - 15164 2002 3 18 20 44 11 712 4.9432 175.80531 1656.91892 1442.44628 -8.33346 0.12304 -4.26966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99595 -0.01037 -1.00000 - 15166 2002 3 18 20 44 21 598 4.9431 175.80342 1656.54774 1442.17021 -8.33564 0.12268 -4.26986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99523 -0.01036 -1.00000 - 15168 2002 3 18 20 44 31 484 4.9429 175.80153 1656.17705 1441.89434 -8.33860 0.12232 -4.27019 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99451 -0.01036 -1.00000 - 15170 2002 3 18 20 44 41 370 4.9428 175.79966 1655.80690 1441.61866 -8.34222 0.12195 -4.27063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99380 -0.01036 -1.00000 - 15172 2002 3 18 20 44 51 255 4.9426 175.79780 1655.43731 1441.34320 -8.34636 0.12159 -4.27118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99308 -0.01036 -1.00000 - 15174 2002 3 18 20 45 1 140 4.9425 175.79595 1655.06829 1441.06795 -8.35086 0.12123 -4.27184 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99236 -0.01036 -1.00000 - 15176 2002 3 18 20 45 11 25 4.9423 175.79410 1654.69980 1440.79291 -8.35557 0.12087 -4.27258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99164 -0.01036 -1.00000 - 15178 2002 3 18 20 45 20 909 4.9422 175.79227 1654.33172 1440.51801 -8.36037 0.12050 -4.27342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99092 -0.01036 -1.00000 - 15180 2002 3 18 20 45 30 793 4.9420 175.79045 1653.96403 1440.24328 -8.36517 0.12014 -4.27434 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.99020 -0.01036 -1.00000 - 15182 2002 3 18 20 45 40 677 4.9418 175.78864 1653.59673 1439.96873 -8.36989 0.11977 -4.27533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98948 -0.01036 -1.00000 - 15184 2002 3 18 20 45 50 560 4.9417 175.78683 1653.22980 1439.69438 -8.37443 0.11941 -4.27636 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98876 -0.01036 -1.00000 - 15186 2002 3 18 20 46 0 444 4.9415 175.78504 1652.86324 1439.42021 -8.37865 0.11904 -4.27744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98805 -0.01036 -1.00000 - 15188 2002 3 18 20 46 10 326 4.9414 175.78326 1652.49700 1439.14623 -8.38244 0.11868 -4.27854 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98733 -0.01036 -1.00000 - 15190 2002 3 18 20 46 20 209 4.9412 175.78149 1652.13102 1438.87244 -8.38575 0.11831 -4.27967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98661 -0.01035 -1.00000 - 15192 2002 3 18 20 46 30 91 4.9411 175.77972 1651.76528 1438.59881 -8.38857 0.11795 -4.28080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98589 -0.01035 -1.00000 - 15195 2002 3 18 20 46 44 914 4.9409 175.77710 1651.21700 1438.18868 -8.39194 0.11740 -4.28252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98481 -0.01035 -1.00000 - 15197 2002 3 18 20 46 54 796 4.9407 175.77536 1650.85164 1437.91544 -8.39369 0.11703 -4.28367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98409 -0.01035 -1.00000 - 15199 2002 3 18 20 47 4 677 4.9406 175.77363 1650.48639 1437.64236 -8.39510 0.11666 -4.28480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98337 -0.01035 -1.00000 - 15201 2002 3 18 20 47 14 558 4.9404 175.77191 1650.12122 1437.36942 -8.39621 0.11630 -4.28593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98266 -0.01035 -1.00000 - 15203 2002 3 18 20 47 24 438 4.9403 175.77020 1649.75610 1437.09662 -8.39705 0.11593 -4.28704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98194 -0.01035 -1.00000 - 15205 2002 3 18 20 47 34 319 4.9401 175.76850 1649.39102 1436.82395 -8.39766 0.11557 -4.28812 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98122 -0.01035 -1.00000 - 15207 2002 3 18 20 47 44 199 4.9400 175.76681 1649.02597 1436.55142 -8.39810 0.11520 -4.28919 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.98050 -0.01035 -1.00000 - 15209 2002 3 18 20 47 54 78 4.9398 175.76513 1648.66097 1436.27902 -8.39842 0.11484 -4.29023 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97978 -0.01035 -1.00000 - 15211 2002 3 18 20 48 3 958 4.9397 175.76345 1648.29602 1436.00676 -8.39868 0.11447 -4.29125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97906 -0.01035 -1.00000 - 15213 2002 3 18 20 48 13 837 4.9395 175.76179 1647.93116 1435.73463 -8.39897 0.11411 -4.29223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97834 -0.01034 -1.00000 - 15215 2002 3 18 20 48 23 716 4.9394 175.76013 1647.56642 1435.46264 -8.39934 0.11374 -4.29318 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97763 -0.01034 -1.00000 - 15217 2002 3 18 20 48 33 594 4.9392 175.75849 1647.20187 1435.19080 -8.39987 0.11337 -4.29409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97691 -0.01034 -1.00000 - 15219 2002 3 18 20 48 43 473 4.9391 175.75685 1646.83754 1434.91910 -8.40059 0.11300 -4.29497 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97619 -0.01034 -1.00000 - 15221 2002 3 18 20 48 53 351 4.9390 175.75522 1646.47349 1434.64754 -8.40154 0.11263 -4.29581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97547 -0.01034 -1.00000 - 15223 2002 3 18 20 49 3 228 4.9388 175.75360 1646.10978 1434.37614 -8.40271 0.11226 -4.29661 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97475 -0.01034 -1.00000 - 15225 2002 3 18 20 49 13 106 4.9387 175.75199 1645.74643 1434.10489 -8.40407 0.11189 -4.29736 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97403 -0.01034 -1.00000 - 15227 2002 3 18 20 49 22 983 4.9385 175.75038 1645.38348 1433.83379 -8.40557 0.11152 -4.29807 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97332 -0.01034 -1.00000 - 15229 2002 3 18 20 49 32 860 4.9384 175.74879 1645.02095 1433.56284 -8.40711 0.11115 -4.29872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97260 -0.01034 -1.00000 - 15231 2002 3 18 20 49 42 736 4.9382 175.74720 1644.65881 1433.29205 -8.40862 0.11077 -4.29933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97188 -0.01034 -1.00000 - 15233 2002 3 18 20 49 52 612 4.9381 175.74563 1644.29708 1433.02140 -8.40999 0.11040 -4.29988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97116 -0.01034 -1.00000 - 15235 2002 3 18 20 50 2 488 4.9380 175.74406 1643.93570 1432.75089 -8.41112 0.11002 -4.30037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.97044 -0.01034 -1.00000 - 15237 2002 3 18 20 50 12 364 4.9378 175.74250 1643.57465 1432.48051 -8.41193 0.10965 -4.30080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96972 -0.01033 -1.00000 - 15239 2002 3 18 20 50 22 240 4.9377 175.74095 1643.21389 1432.21025 -8.41236 0.10927 -4.30118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96901 -0.01033 -1.00000 - 15241 2002 3 18 20 50 32 115 4.9375 175.73940 1642.85336 1431.94011 -8.41238 0.10890 -4.30149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96829 -0.01033 -1.00000 - 15243 2002 3 18 20 50 41 990 4.9374 175.73787 1642.49303 1431.67007 -8.41197 0.10852 -4.30175 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96757 -0.01033 -1.00000 - 15245 2002 3 18 20 50 51 864 4.9373 175.73634 1642.13285 1431.40014 -8.41114 0.10814 -4.30195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96685 -0.01033 -1.00000 - 15247 2002 3 18 20 51 1 739 4.9371 175.73482 1641.77279 1431.13029 -8.40989 0.10776 -4.30209 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96613 -0.01033 -1.00000 - 15249 2002 3 18 20 51 11 613 4.9370 175.73331 1641.41281 1430.86053 -8.40827 0.10739 -4.30218 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96542 -0.01033 -1.00000 - 15251 2002 3 18 20 51 21 486 4.9369 175.73181 1641.05289 1430.59085 -8.40632 0.10701 -4.30223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96470 -0.01033 -1.00000 - 15253 2002 3 18 20 51 31 360 4.9367 175.73032 1640.69302 1430.32124 -8.40411 0.10663 -4.30223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96398 -0.01033 -1.00000 - 15255 2002 3 18 20 51 41 233 4.9366 175.72883 1640.33318 1430.05170 -8.40168 0.10626 -4.30219 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96326 -0.01033 -1.00000 - 15257 2002 3 18 20 51 51 106 4.9365 175.72735 1639.97337 1429.78222 -8.39910 0.10588 -4.30212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96254 -0.01033 -1.00000 - 15259 2002 3 18 20 52 0 979 4.9363 175.72588 1639.61360 1429.51282 -8.39644 0.10550 -4.30203 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96183 -0.01032 -1.00000 - 15261 2002 3 18 20 52 10 851 4.9362 175.72442 1639.25386 1429.24348 -8.39377 0.10512 -4.30191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96111 -0.01032 -1.00000 - 15263 2002 3 18 20 52 20 724 4.9361 175.72296 1638.89416 1428.97421 -8.39112 0.10474 -4.30178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.96039 -0.01032 -1.00000 - 15265 2002 3 18 20 52 30 595 4.9359 175.72152 1638.53453 1428.70500 -8.38857 0.10436 -4.30164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95967 -0.01032 -1.00000 - 15267 2002 3 18 20 52 40 467 4.9358 175.72008 1638.17497 1428.43587 -8.38613 0.10398 -4.30149 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95895 -0.01032 -1.00000 - 15269 2002 3 18 20 52 50 338 4.9357 175.71864 1637.81549 1428.16681 -8.38384 0.10360 -4.30134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95824 -0.01032 -1.00000 - 15271 2002 3 18 20 53 0 210 4.9355 175.71722 1637.45611 1427.89783 -8.38173 0.10322 -4.30120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95752 -0.01032 -1.00000 - 15273 2002 3 18 20 53 10 80 4.9354 175.71580 1637.09683 1427.62894 -8.37980 0.10284 -4.30107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95680 -0.01032 -1.00000 - 15276 2002 3 18 20 53 24 886 4.9352 175.71369 1636.55814 1427.22575 -8.37727 0.10227 -4.30090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95572 -0.01032 -1.00000 - 15278 2002 3 18 20 53 34 756 4.9351 175.71229 1636.19916 1426.95707 -8.37583 0.10189 -4.30081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95501 -0.01032 -1.00000 - 15280 2002 3 18 20 53 44 626 4.9349 175.71090 1635.84032 1426.68848 -8.37457 0.10152 -4.30075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95429 -0.01032 -1.00000 - 15282 2002 3 18 20 53 54 496 4.9348 175.70952 1635.48162 1426.41999 -8.37351 0.10114 -4.30071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95357 -0.01032 -1.00000 - 15284 2002 3 18 20 54 4 366 4.9347 175.70815 1635.12305 1426.15160 -8.37264 0.10076 -4.30069 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95285 -0.01031 -1.00000 - 15286 2002 3 18 20 54 14 235 4.9346 175.70678 1634.76463 1425.88332 -8.37195 0.10038 -4.30070 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95214 -0.01031 -1.00000 - 15288 2002 3 18 20 54 24 104 4.9344 175.70542 1634.40634 1425.61515 -8.37146 0.10000 -4.30074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95142 -0.01031 -1.00000 - 15290 2002 3 18 20 54 33 972 4.9343 175.70407 1634.04820 1425.34710 -8.37115 0.09962 -4.30082 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.95070 -0.01031 -1.00000 - 15292 2002 3 18 20 54 43 841 4.9342 175.70272 1633.69021 1425.07916 -8.37104 0.09924 -4.30092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94998 -0.01031 -1.00000 - 15294 2002 3 18 20 54 53 709 4.9341 175.70138 1633.33236 1424.81134 -8.37112 0.09886 -4.30104 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94926 -0.01031 -1.00000 - 15296 2002 3 18 20 55 3 577 4.9339 175.70005 1632.97467 1424.54366 -8.37138 0.09847 -4.30120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94855 -0.01031 -1.00000 - 15298 2002 3 18 20 55 13 445 4.9338 175.69872 1632.61715 1424.27610 -8.37182 0.09809 -4.30138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94783 -0.01031 -1.00000 - 15300 2002 3 18 20 55 23 312 4.9337 175.69741 1632.25979 1424.00869 -8.37243 0.09770 -4.30158 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94711 -0.01031 -1.00000 - 15302 2002 3 18 20 55 33 179 4.9336 175.69610 1631.90262 1423.74141 -8.37321 0.09732 -4.30181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94639 -0.01031 -1.00000 - 15304 2002 3 18 20 55 43 46 4.9335 175.69479 1631.54564 1423.47428 -8.37414 0.09693 -4.30205 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94568 -0.01031 -1.00000 - 15306 2002 3 18 20 55 52 913 4.9333 175.69350 1631.18887 1423.20730 -8.37523 0.09654 -4.30231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94496 -0.01030 -1.00000 - 15308 2002 3 18 20 56 2 780 4.9332 175.69221 1630.83234 1422.94047 -8.37647 0.09616 -4.30258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94424 -0.01030 -1.00000 - 15310 2002 3 18 20 56 12 646 4.9331 175.69093 1630.47606 1422.67380 -8.37786 0.09577 -4.30286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94352 -0.01030 -1.00000 - 15312 2002 3 18 20 56 22 512 4.9330 175.68965 1630.12006 1422.40728 -8.37939 0.09538 -4.30314 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94281 -0.01030 -1.00000 - 15314 2002 3 18 20 56 32 378 4.9329 175.68838 1629.76438 1422.14093 -8.38105 0.09499 -4.30342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94209 -0.01030 -1.00000 - 15316 2002 3 18 20 56 42 243 4.9327 175.68712 1629.40902 1421.87474 -8.38281 0.09460 -4.30369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94137 -0.01030 -1.00000 - 15318 2002 3 18 20 56 52 108 4.9326 175.68587 1629.05403 1421.60871 -8.38464 0.09421 -4.30396 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.94065 -0.01030 -1.00000 - 15320 2002 3 18 20 57 1 973 4.9325 175.68463 1628.69940 1421.34284 -8.38648 0.09382 -4.30421 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93994 -0.01030 -1.00000 - 15322 2002 3 18 20 57 11 838 4.9324 175.68339 1628.34517 1421.07713 -8.38829 0.09343 -4.30445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93922 -0.01030 -1.00000 - 15324 2002 3 18 20 57 21 703 4.9323 175.68216 1627.99133 1420.81158 -8.38999 0.09304 -4.30467 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93850 -0.01030 -1.00000 - 15326 2002 3 18 20 57 31 567 4.9321 175.68093 1627.63788 1420.54618 -8.39152 0.09265 -4.30487 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93779 -0.01030 -1.00000 - 15328 2002 3 18 20 57 41 431 4.9320 175.67972 1627.28483 1420.28093 -8.39282 0.09226 -4.30504 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93707 -0.01030 -1.00000 - 15330 2002 3 18 20 57 51 295 4.9319 175.67851 1626.93215 1420.01581 -8.39382 0.09187 -4.30518 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93635 -0.01029 -1.00000 - 15332 2002 3 18 20 58 1 159 4.9318 175.67730 1626.57983 1419.75081 -8.39449 0.09148 -4.30530 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93563 -0.01029 -1.00000 - 15334 2002 3 18 20 58 11 22 4.9317 175.67611 1626.22785 1419.48593 -8.39477 0.09108 -4.30538 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93492 -0.01029 -1.00000 - 15336 2002 3 18 20 58 20 885 4.9316 175.67492 1625.87617 1419.22116 -8.39464 0.09069 -4.30544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93420 -0.01029 -1.00000 - 15338 2002 3 18 20 58 30 748 4.9315 175.67373 1625.52476 1418.95648 -8.39407 0.09030 -4.30548 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93348 -0.01029 -1.00000 - 15340 2002 3 18 20 58 40 611 4.9314 175.67256 1625.17358 1418.69189 -8.39303 0.08991 -4.30549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93276 -0.01029 -1.00000 - 15342 2002 3 18 20 58 50 474 4.9312 175.67139 1624.82258 1418.42736 -8.39151 0.08952 -4.30549 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93205 -0.01029 -1.00000 - 15344 2002 3 18 20 59 0 336 4.9311 175.67023 1624.47170 1418.16290 -8.38949 0.08913 -4.30547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93133 -0.01029 -1.00000 - 15346 2002 3 18 20 59 10 198 4.9310 175.66907 1624.12089 1417.89848 -8.38698 0.08874 -4.30545 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.93061 -0.01029 -1.00000 - 15348 2002 3 18 20 59 20 60 4.9309 175.66792 1623.77010 1417.63410 -8.38401 0.08835 -4.30543 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92990 -0.01029 -1.00000 - 15351 2002 3 18 20 59 34 852 4.9308 175.66621 1623.24381 1417.23758 -8.37874 0.08776 -4.30541 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92882 -0.01029 -1.00000 - 15353 2002 3 18 20 59 44 714 4.9306 175.66507 1622.89280 1416.97326 -8.37479 0.08736 -4.30542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92810 -0.01028 -1.00000 - 15355 2002 3 18 20 59 54 575 4.9305 175.66394 1622.54162 1416.70895 -8.37058 0.08697 -4.30546 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92739 -0.01028 -1.00000 - 15357 2002 3 18 21 0 4 436 4.9304 175.66282 1622.19024 1416.44465 -8.36621 0.08658 -4.30554 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92667 -0.01028 -1.00000 - 15359 2002 3 18 21 0 14 297 4.9303 175.66171 1621.83860 1416.18034 -8.36178 0.08619 -4.30567 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92595 -0.01028 -1.00000 - 15361 2002 3 18 21 0 24 157 4.9302 175.66060 1621.48661 1415.91600 -8.35743 0.08579 -4.30586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92523 -0.01028 -1.00000 - 15363 2002 3 18 21 0 34 17 4.9301 175.65949 1621.13427 1415.65164 -8.35331 0.08540 -4.30614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92452 -0.01028 -1.00000 - 15365 2002 3 18 21 0 43 877 4.9300 175.65840 1620.78162 1415.38728 -8.34957 0.08500 -4.30648 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92380 -0.01028 -1.00000 - 15367 2002 3 18 21 0 53 737 4.9299 175.65731 1620.42871 1415.12295 -8.34632 0.08461 -4.30691 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92308 -0.01028 -1.00000 - 15369 2002 3 18 21 1 3 597 4.9298 175.65622 1620.07560 1414.85867 -8.34363 0.08422 -4.30742 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92237 -0.01028 -1.00000 - 15371 2002 3 18 21 1 13 456 4.9297 175.65515 1619.72234 1414.59445 -8.34156 0.08382 -4.30803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92165 -0.01028 -1.00000 - 15373 2002 3 18 21 1 23 316 4.9296 175.65408 1619.36900 1414.33031 -8.34016 0.08343 -4.30872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92093 -0.01028 -1.00000 - 15375 2002 3 18 21 1 33 175 4.9295 175.65301 1619.01565 1414.06628 -8.33951 0.08303 -4.30950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.92021 -0.01028 -1.00000 - 15377 2002 3 18 21 1 43 34 4.9294 175.65195 1618.66236 1413.80235 -8.33966 0.08263 -4.31038 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91950 -0.01027 -1.00000 - 15379 2002 3 18 21 1 52 892 4.9293 175.65090 1618.30920 1413.53856 -8.34065 0.08224 -4.31135 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91878 -0.01027 -1.00000 - 15381 2002 3 18 21 2 2 751 4.9292 175.64985 1617.95626 1413.27493 -8.34252 0.08184 -4.31241 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91806 -0.01027 -1.00000 - 15383 2002 3 18 21 2 12 609 4.9291 175.64881 1617.60361 1413.01146 -8.34523 0.08144 -4.31354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91735 -0.01027 -1.00000 - 15385 2002 3 18 21 2 22 467 4.9290 175.64778 1617.25130 1412.74817 -8.34875 0.08104 -4.31475 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91663 -0.01027 -1.00000 - 15387 2002 3 18 21 2 32 325 4.9289 175.64675 1616.89940 1412.48508 -8.35300 0.08064 -4.31602 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91591 -0.01027 -1.00000 - 15389 2002 3 18 21 2 42 182 4.9288 175.64573 1616.54795 1412.22220 -8.35788 0.08024 -4.31735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91520 -0.01027 -1.00000 - 15391 2002 3 18 21 2 52 40 4.9287 175.64472 1616.19696 1411.95953 -8.36325 0.07984 -4.31872 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91448 -0.01027 -1.00000 - 15393 2002 3 18 21 3 1 897 4.9286 175.64371 1615.84647 1411.69710 -8.36900 0.07944 -4.32011 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91376 -0.01027 -1.00000 - 15395 2002 3 18 21 3 11 754 4.9285 175.64270 1615.49647 1411.43489 -8.37500 0.07904 -4.32153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91305 -0.01027 -1.00000 - 15397 2002 3 18 21 3 21 611 4.9284 175.64171 1615.14696 1411.17291 -8.38110 0.07864 -4.32294 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91233 -0.01027 -1.00000 - 15399 2002 3 18 21 3 31 468 4.9283 175.64072 1614.79795 1410.91117 -8.38717 0.07824 -4.32434 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91161 -0.01027 -1.00000 - 15401 2002 3 18 21 3 41 324 4.9282 175.63973 1614.44942 1410.64965 -8.39311 0.07784 -4.32572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91090 -0.01026 -1.00000 - 15403 2002 3 18 21 3 51 181 4.9281 175.63875 1614.10137 1410.38836 -8.39881 0.07744 -4.32705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.91018 -0.01026 -1.00000 - 15405 2002 3 18 21 4 1 37 4.9280 175.63778 1613.75378 1410.12729 -8.40421 0.07704 -4.32833 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90946 -0.01026 -1.00000 - 15407 2002 3 18 21 4 10 893 4.9280 175.63681 1613.40665 1409.86644 -8.40925 0.07664 -4.32954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90875 -0.01026 -1.00000 - 15409 2002 3 18 21 4 20 749 4.9279 175.63585 1613.05997 1409.60579 -8.41389 0.07624 -4.33068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90803 -0.01026 -1.00000 - 15411 2002 3 18 21 4 30 604 4.9278 175.63490 1612.71375 1409.34533 -8.41810 0.07583 -4.33174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90731 -0.01026 -1.00000 - 15413 2002 3 18 21 4 40 460 4.9277 175.63395 1612.36796 1409.08506 -8.42186 0.07543 -4.33269 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90660 -0.01026 -1.00000 - 15415 2002 3 18 21 4 50 315 4.9276 175.63300 1612.02261 1408.82496 -8.42515 0.07503 -4.33355 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90588 -0.01026 -1.00000 - 15417 2002 3 18 21 5 0 170 4.9275 175.63207 1611.67767 1408.56503 -8.42790 0.07463 -4.33430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90516 -0.01026 -1.00000 - 15419 2002 3 18 21 5 10 25 4.9274 175.63113 1611.33310 1408.30524 -8.43008 0.07423 -4.33494 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90445 -0.01026 -1.00000 - 15422 2002 3 18 21 5 24 807 4.9273 175.62975 1610.81688 1407.91580 -8.43213 0.07362 -4.33569 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90337 -0.01026 -1.00000 - 15424 2002 3 18 21 5 34 661 4.9272 175.62883 1610.47307 1407.65632 -8.43262 0.07322 -4.33604 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90265 -0.01025 -1.00000 - 15426 2002 3 18 21 5 44 515 4.9271 175.62791 1610.12946 1407.39693 -8.43235 0.07282 -4.33627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90194 -0.01025 -1.00000 - 15428 2002 3 18 21 5 54 369 4.9270 175.62701 1609.78598 1407.13763 -8.43132 0.07241 -4.33639 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90122 -0.01025 -1.00000 - 15430 2002 3 18 21 6 4 223 4.9269 175.62611 1609.44258 1406.87839 -8.42951 0.07201 -4.33640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.90050 -0.01025 -1.00000 - 15432 2002 3 18 21 6 14 77 4.9269 175.62521 1609.09918 1406.61920 -8.42697 0.07160 -4.33631 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89979 -0.01025 -1.00000 - 15434 2002 3 18 21 6 23 931 4.9268 175.62432 1608.75574 1406.36006 -8.42374 0.07120 -4.33612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89907 -0.01025 -1.00000 - 15436 2002 3 18 21 6 33 784 4.9267 175.62343 1608.41220 1406.10094 -8.41990 0.07080 -4.33583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89835 -0.01025 -1.00000 - 15438 2002 3 18 21 6 43 637 4.9266 175.62255 1608.06853 1405.84184 -8.41555 0.07039 -4.33547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89764 -0.01025 -1.00000 - 15440 2002 3 18 21 6 53 490 4.9265 175.62168 1607.72470 1405.58276 -8.41080 0.06999 -4.33503 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89692 -0.01025 -1.00000 - 15442 2002 3 18 21 7 3 343 4.9264 175.62081 1607.38070 1405.32368 -8.40576 0.06958 -4.33453 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89620 -0.01025 -1.00000 - 15444 2002 3 18 21 7 13 196 4.9264 175.61995 1607.03653 1405.06461 -8.40057 0.06918 -4.33399 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89549 -0.01025 -1.00000 - 15446 2002 3 18 21 7 23 49 4.9263 175.61909 1606.69219 1404.80555 -8.39532 0.06877 -4.33340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89477 -0.01025 -1.00000 - 15448 2002 3 18 21 7 32 901 4.9262 175.61824 1606.34771 1404.54651 -8.39015 0.06836 -4.33279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89405 -0.01024 -1.00000 - 15450 2002 3 18 21 7 42 754 4.9261 175.61739 1606.00312 1404.28747 -8.38514 0.06796 -4.33216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89334 -0.01024 -1.00000 - 15452 2002 3 18 21 7 52 606 4.9260 175.61655 1605.65846 1404.02846 -8.38040 0.06755 -4.33153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89262 -0.01024 -1.00000 - 15454 2002 3 18 21 8 2 458 4.9260 175.61571 1605.31375 1403.76948 -8.37600 0.06714 -4.33090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89191 -0.01024 -1.00000 - 15456 2002 3 18 21 8 12 309 4.9259 175.61488 1604.96906 1403.51053 -8.37200 0.06674 -4.33029 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89119 -0.01024 -1.00000 - 15458 2002 3 18 21 8 22 161 4.9258 175.61405 1604.62442 1403.25162 -8.36843 0.06633 -4.32970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.89047 -0.01024 -1.00000 - 15460 2002 3 18 21 8 32 13 4.9257 175.61323 1604.27989 1402.99277 -8.36534 0.06592 -4.32914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88976 -0.01024 -1.00000 - 15462 2002 3 18 21 8 41 864 4.9257 175.61242 1603.93549 1402.73398 -8.36273 0.06552 -4.32863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88904 -0.01024 -1.00000 - 15464 2002 3 18 21 8 51 715 4.9256 175.61161 1603.59127 1402.47525 -8.36059 0.06511 -4.32815 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88832 -0.01024 -1.00000 - 15466 2002 3 18 21 9 1 566 4.9255 175.61080 1603.24726 1402.21660 -8.35890 0.06470 -4.32773 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88761 -0.01024 -1.00000 - 15468 2002 3 18 21 9 11 417 4.9254 175.61000 1602.90347 1401.95803 -8.35764 0.06429 -4.32736 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88689 -0.01024 -1.00000 - 15470 2002 3 18 21 9 21 268 4.9254 175.60921 1602.55993 1401.69954 -8.35674 0.06388 -4.32705 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88617 -0.01023 -1.00000 - 15472 2002 3 18 21 9 31 119 4.9253 175.60842 1602.21663 1401.44115 -8.35615 0.06347 -4.32680 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88546 -0.01023 -1.00000 - 15474 2002 3 18 21 9 40 969 4.9252 175.60763 1601.87356 1401.18285 -8.35580 0.06306 -4.32662 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88474 -0.01023 -1.00000 - 15476 2002 3 18 21 9 50 819 4.9252 175.60685 1601.53073 1400.92465 -8.35564 0.06265 -4.32649 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88403 -0.01023 -1.00000 - 15478 2002 3 18 21 10 0 670 4.9251 175.60608 1601.18809 1400.66654 -8.35560 0.06224 -4.32644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88331 -0.01023 -1.00000 - 15480 2002 3 18 21 10 10 520 4.9250 175.60531 1600.84565 1400.40854 -8.35563 0.06183 -4.32645 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88259 -0.01023 -1.00000 - 15482 2002 3 18 21 10 20 370 4.9249 175.60454 1600.50336 1400.15063 -8.35569 0.06142 -4.32652 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88188 -0.01023 -1.00000 - 15484 2002 3 18 21 10 30 219 4.9249 175.60379 1600.16121 1399.89282 -8.35577 0.06101 -4.32666 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88116 -0.01023 -1.00000 - 15486 2002 3 18 21 10 40 69 4.9248 175.60303 1599.81918 1399.63512 -8.35585 0.06060 -4.32687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.88044 -0.01023 -1.00000 - 15489 2002 3 18 21 10 54 843 4.9247 175.60191 1599.30632 1399.24875 -8.35601 0.05998 -4.32730 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87937 -0.01023 -1.00000 - 15491 2002 3 18 21 11 4 693 4.9246 175.60117 1598.96452 1398.99130 -8.35617 0.05957 -4.32766 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87865 -0.01023 -1.00000 - 15493 2002 3 18 21 11 14 542 4.9246 175.60043 1598.62281 1398.73396 -8.35640 0.05916 -4.32809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87794 -0.01023 -1.00000 - 15495 2002 3 18 21 11 24 391 4.9245 175.59970 1598.28119 1398.47673 -8.35675 0.05874 -4.32859 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87722 -0.01022 -1.00000 - 15497 2002 3 18 21 11 34 240 4.9244 175.59897 1597.93967 1398.21960 -8.35722 0.05833 -4.32914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87650 -0.01022 -1.00000 - 15499 2002 3 18 21 11 44 89 4.9244 175.59825 1597.59825 1397.96260 -8.35785 0.05792 -4.32975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87579 -0.01022 -1.00000 - 15501 2002 3 18 21 11 53 937 4.9243 175.59753 1597.25696 1397.70571 -8.35866 0.05751 -4.33042 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87507 -0.01022 -1.00000 - 15503 2002 3 18 21 12 3 786 4.9243 175.59682 1596.91580 1397.44894 -8.35966 0.05710 -4.33114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87436 -0.01022 -1.00000 - 15505 2002 3 18 21 12 13 634 4.9242 175.59611 1596.57480 1397.19230 -8.36087 0.05669 -4.33191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87364 -0.01022 -1.00000 - 15507 2002 3 18 21 12 23 483 4.9241 175.59540 1596.23398 1396.93578 -8.36228 0.05628 -4.33273 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87292 -0.01022 -1.00000 - 15509 2002 3 18 21 12 33 331 4.9241 175.59470 1595.89334 1396.67941 -8.36389 0.05587 -4.33359 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87221 -0.01022 -1.00000 - 15511 2002 3 18 21 12 43 179 4.9240 175.59401 1595.55290 1396.42316 -8.36570 0.05546 -4.33449 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87149 -0.01022 -1.00000 - 15513 2002 3 18 21 12 53 27 4.9240 175.59331 1595.21268 1396.16706 -8.36767 0.05505 -4.33542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87077 -0.01022 -1.00000 - 15515 2002 3 18 21 13 2 875 4.9239 175.59263 1594.87269 1395.91110 -8.36980 0.05464 -4.33638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.87006 -0.01022 -1.00000 - 15517 2002 3 18 21 13 12 722 4.9238 175.59194 1594.53293 1395.65528 -8.37205 0.05423 -4.33737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86934 -0.01021 -1.00000 - 15519 2002 3 18 21 13 22 570 4.9238 175.59127 1594.19341 1395.39961 -8.37438 0.05382 -4.33838 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86863 -0.01021 -1.00000 - 15521 2002 3 18 21 13 32 417 4.9237 175.59059 1593.85413 1395.14408 -8.37676 0.05341 -4.33940 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86791 -0.01021 -1.00000 - 15523 2002 3 18 21 13 42 265 4.9237 175.58992 1593.51509 1394.88869 -8.37916 0.05300 -4.34042 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86719 -0.01021 -1.00000 - 15525 2002 3 18 21 13 52 112 4.9236 175.58926 1593.17628 1394.63346 -8.38154 0.05258 -4.34145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86648 -0.01021 -1.00000 - 15527 2002 3 18 21 14 1 959 4.9236 175.58860 1592.83772 1394.37836 -8.38388 0.05217 -4.34247 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86576 -0.01021 -1.00000 - 15529 2002 3 18 21 14 11 806 4.9235 175.58794 1592.49938 1394.12341 -8.38615 0.05176 -4.34349 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86505 -0.01021 -1.00000 - 15531 2002 3 18 21 14 21 653 4.9235 175.58729 1592.16128 1393.86860 -8.38833 0.05134 -4.34449 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86433 -0.01021 -1.00000 - 15533 2002 3 18 21 14 31 500 4.9234 175.58664 1591.82340 1393.61392 -8.39040 0.05093 -4.34547 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86361 -0.01021 -1.00000 - 15535 2002 3 18 21 14 41 347 4.9233 175.58600 1591.48576 1393.35938 -8.39235 0.05051 -4.34643 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86290 -0.01021 -1.00000 - 15537 2002 3 18 21 14 51 193 4.9233 175.58536 1591.14834 1393.10498 -8.39418 0.05010 -4.34736 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86218 -0.01021 -1.00000 - 15539 2002 3 18 21 15 1 40 4.9232 175.58473 1590.81115 1392.85070 -8.39585 0.04968 -4.34825 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86147 -0.01021 -1.00000 - 15541 2002 3 18 21 15 10 886 4.9232 175.58410 1590.47416 1392.59654 -8.39738 0.04927 -4.34912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86075 -0.01020 -1.00000 - 15543 2002 3 18 21 15 20 732 4.9231 175.58347 1590.13731 1392.34245 -8.39875 0.04885 -4.34995 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.86003 -0.01020 -1.00000 - 15545 2002 3 18 21 15 30 579 4.9231 175.58285 1589.80059 1392.08845 -8.39998 0.04843 -4.35076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85932 -0.01020 -1.00000 - 15547 2002 3 18 21 15 40 425 4.9230 175.58224 1589.46403 1391.83455 -8.40110 0.04801 -4.35153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85860 -0.01020 -1.00000 - 15549 2002 3 18 21 15 50 271 4.9230 175.58163 1589.12763 1391.58075 -8.40207 0.04760 -4.35225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85789 -0.01020 -1.00000 - 15551 2002 3 18 21 16 0 117 4.9229 175.58102 1588.79141 1391.32706 -8.40286 0.04718 -4.35293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85717 -0.01020 -1.00000 - 15554 2002 3 18 21 16 14 885 4.9229 175.58012 1588.28739 1390.94670 -8.40363 0.04655 -4.35387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85610 -0.01020 -1.00000 - 15556 2002 3 18 21 16 24 731 4.9228 175.57953 1587.95157 1390.69325 -8.40382 0.04613 -4.35443 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85538 -0.01020 -1.00000 - 15558 2002 3 18 21 16 34 577 4.9228 175.57894 1587.61590 1390.43988 -8.40374 0.04572 -4.35495 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85466 -0.01020 -1.00000 - 15560 2002 3 18 21 16 44 422 4.9227 175.57835 1587.28035 1390.18660 -8.40341 0.04530 -4.35543 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85395 -0.01020 -1.00000 - 15562 2002 3 18 21 16 54 268 4.9227 175.57777 1586.94493 1389.93340 -8.40285 0.04488 -4.35586 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85323 -0.01020 -1.00000 - 15564 2002 3 18 21 17 4 113 4.9227 175.57719 1586.60961 1389.68028 -8.40208 0.04446 -4.35625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85252 -0.01019 -1.00000 - 15566 2002 3 18 21 17 13 958 4.9226 175.57662 1586.27438 1389.42723 -8.40111 0.04404 -4.35661 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85180 -0.01019 -1.00000 - 15568 2002 3 18 21 17 23 803 4.9226 175.57605 1585.93924 1389.17425 -8.39997 0.04362 -4.35692 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85108 -0.01019 -1.00000 - 15570 2002 3 18 21 17 33 648 4.9225 175.57549 1585.60417 1388.92134 -8.39868 0.04321 -4.35721 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.85037 -0.01019 -1.00000 - 15572 2002 3 18 21 17 43 493 4.9225 175.57493 1585.26917 1388.66850 -8.39724 0.04279 -4.35747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84965 -0.01019 -1.00000 - 15574 2002 3 18 21 17 53 338 4.9225 175.57437 1584.93421 1388.41571 -8.39570 0.04237 -4.35770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84894 -0.01019 -1.00000 - 15576 2002 3 18 21 18 3 183 4.9224 175.57382 1584.59931 1388.16299 -8.39407 0.04195 -4.35791 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84822 -0.01019 -1.00000 - 15578 2002 3 18 21 18 13 28 4.9224 175.57327 1584.26445 1387.91033 -8.39239 0.04153 -4.35811 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84750 -0.01019 -1.00000 - 15580 2002 3 18 21 18 22 873 4.9223 175.57273 1583.92963 1387.65773 -8.39070 0.04111 -4.35829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84679 -0.01019 -1.00000 - 15582 2002 3 18 21 18 32 717 4.9223 175.57219 1583.59486 1387.40519 -8.38902 0.04069 -4.35846 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84607 -0.01019 -1.00000 - 15584 2002 3 18 21 18 42 562 4.9223 175.57165 1583.26012 1387.15272 -8.38739 0.04027 -4.35863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84536 -0.01019 -1.00000 - 15586 2002 3 18 21 18 52 406 4.9222 175.57112 1582.92543 1386.90031 -8.38585 0.03985 -4.35879 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84464 -0.01019 -1.00000 - 15588 2002 3 18 21 19 2 251 4.9222 175.57059 1582.59080 1386.64797 -8.38441 0.03944 -4.35896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84392 -0.01018 -1.00000 - 15590 2002 3 18 21 19 12 95 4.9222 175.57007 1582.25621 1386.39570 -8.38310 0.03902 -4.35913 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84321 -0.01018 -1.00000 - 15592 2002 3 18 21 19 21 939 4.9221 175.56955 1581.92169 1386.14350 -8.38195 0.03860 -4.35931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84249 -0.01018 -1.00000 - 15594 2002 3 18 21 19 31 784 4.9221 175.56904 1581.58723 1385.89138 -8.38098 0.03818 -4.35950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84178 -0.01018 -1.00000 - 15596 2002 3 18 21 19 41 628 4.9221 175.56852 1581.25285 1385.63934 -8.38018 0.03776 -4.35970 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84106 -0.01018 -1.00000 - 15598 2002 3 18 21 19 51 472 4.9220 175.56802 1580.91854 1385.38739 -8.37958 0.03734 -4.35992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.84034 -0.01018 -1.00000 - 15600 2002 3 18 21 20 1 316 4.9220 175.56751 1580.58432 1385.13553 -8.37919 0.03692 -4.36015 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83963 -0.01018 -1.00000 - 15602 2002 3 18 21 20 11 160 4.9220 175.56701 1580.25020 1384.88376 -8.37900 0.03651 -4.36039 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83891 -0.01018 -1.00000 - 15604 2002 3 18 21 20 21 4 4.9219 175.56652 1579.91619 1384.63210 -8.37902 0.03609 -4.36065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83820 -0.01018 -1.00000 - 15606 2002 3 18 21 20 30 847 4.9219 175.56602 1579.58229 1384.38055 -8.37925 0.03567 -4.36092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83748 -0.01018 -1.00000 - 15608 2002 3 18 21 20 40 691 4.9219 175.56553 1579.24854 1384.12910 -8.37969 0.03525 -4.36120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83677 -0.01018 -1.00000 - 15610 2002 3 18 21 20 50 535 4.9218 175.56505 1578.91494 1383.87777 -8.38034 0.03483 -4.36150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83605 -0.01018 -1.00000 - 15612 2002 3 18 21 21 0 379 4.9218 175.56457 1578.58153 1383.62657 -8.38120 0.03441 -4.36180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83533 -0.01017 -1.00000 - 15614 2002 3 18 21 21 10 222 4.9218 175.56409 1578.24831 1383.37549 -8.38226 0.03399 -4.36211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83462 -0.01017 -1.00000 - 15616 2002 3 18 21 21 20 66 4.9218 175.56362 1577.91532 1383.12454 -8.38351 0.03356 -4.36243 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83390 -0.01017 -1.00000 - 15619 2002 3 18 21 21 34 831 4.9217 175.56291 1577.41632 1382.74836 -8.38573 0.03293 -4.36290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83283 -0.01017 -1.00000 - 15621 2002 3 18 21 21 44 674 4.9217 175.56245 1577.08400 1382.49775 -8.38741 0.03251 -4.36321 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83211 -0.01017 -1.00000 - 15623 2002 3 18 21 21 54 518 4.9217 175.56199 1576.75199 1382.24727 -8.38919 0.03209 -4.36351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83140 -0.01017 -1.00000 - 15625 2002 3 18 21 22 4 361 4.9217 175.56153 1576.42031 1381.99694 -8.39105 0.03167 -4.36380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.83068 -0.01017 -1.00000 - 15627 2002 3 18 21 22 14 204 4.9216 175.56108 1576.08896 1381.74674 -8.39294 0.03125 -4.36407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82996 -0.01017 -1.00000 - 15629 2002 3 18 21 22 24 47 4.9216 175.56063 1575.75795 1381.49668 -8.39480 0.03083 -4.36433 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82925 -0.01017 -1.00000 - 15631 2002 3 18 21 22 33 891 4.9216 175.56018 1575.42728 1381.24675 -8.39657 0.03041 -4.36457 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82853 -0.01017 -1.00000 - 15633 2002 3 18 21 22 43 734 4.9216 175.55974 1575.09694 1380.99695 -8.39819 0.02999 -4.36478 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82782 -0.01017 -1.00000 - 15635 2002 3 18 21 22 53 577 4.9215 175.55930 1574.76692 1380.74727 -8.39960 0.02957 -4.36496 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82710 -0.01016 -1.00000 - 15637 2002 3 18 21 23 3 420 4.9215 175.55887 1574.43720 1380.49771 -8.40073 0.02915 -4.36511 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82639 -0.01016 -1.00000 - 15639 2002 3 18 21 23 13 263 4.9215 175.55844 1574.10775 1380.24826 -8.40154 0.02873 -4.36524 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82567 -0.01016 -1.00000 - 15641 2002 3 18 21 23 23 106 4.9215 175.55801 1573.77856 1379.99890 -8.40199 0.02831 -4.36533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82495 -0.01016 -1.00000 - 15643 2002 3 18 21 23 32 949 4.9215 175.55759 1573.44958 1379.74964 -8.40205 0.02789 -4.36539 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82424 -0.01016 -1.00000 - 15645 2002 3 18 21 23 42 792 4.9215 175.55717 1573.12078 1379.50046 -8.40169 0.02747 -4.36543 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82352 -0.01016 -1.00000 - 15647 2002 3 18 21 23 52 635 4.9214 175.55675 1572.79214 1379.25135 -8.40090 0.02705 -4.36544 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82281 -0.01016 -1.00000 - 15649 2002 3 18 21 24 2 478 4.9214 175.55633 1572.46361 1379.00230 -8.39970 0.02663 -4.36542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82209 -0.01016 -1.00000 - 15651 2002 3 18 21 24 12 320 4.9214 175.55592 1572.13515 1378.75331 -8.39810 0.02621 -4.36539 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82138 -0.01016 -1.00000 - 15653 2002 3 18 21 24 22 163 4.9214 175.55552 1571.80674 1378.50437 -8.39612 0.02579 -4.36534 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.82066 -0.01016 -1.00000 - 15655 2002 3 18 21 24 32 6 4.9214 175.55511 1571.47834 1378.25546 -8.39380 0.02537 -4.36528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81994 -0.01016 -1.00000 - 15657 2002 3 18 21 24 41 849 4.9214 175.55471 1571.14991 1378.00659 -8.39116 0.02495 -4.36521 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81923 -0.01016 -1.00000 - 15659 2002 3 18 21 24 51 691 4.9214 175.55432 1570.82144 1377.75774 -8.38827 0.02453 -4.36515 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81851 -0.01015 -1.00000 - 15661 2002 3 18 21 25 1 534 4.9213 175.55392 1570.49289 1377.50892 -8.38516 0.02410 -4.36510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81780 -0.01015 -1.00000 - 15663 2002 3 18 21 25 11 377 4.9213 175.55354 1570.16425 1377.26013 -8.38190 0.02368 -4.36507 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81708 -0.01015 -1.00000 - 15665 2002 3 18 21 25 21 220 4.9213 175.55315 1569.83549 1377.01135 -8.37855 0.02326 -4.36506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81636 -0.01015 -1.00000 - 15667 2002 3 18 21 25 31 62 4.9213 175.55277 1569.50662 1376.76259 -8.37518 0.02283 -4.36509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81565 -0.01015 -1.00000 - 15669 2002 3 18 21 25 40 905 4.9213 175.55239 1569.17763 1376.51386 -8.37185 0.02241 -4.36515 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81493 -0.01015 -1.00000 - 15671 2002 3 18 21 25 50 747 4.9213 175.55201 1568.84852 1376.26515 -8.36866 0.02199 -4.36526 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81422 -0.01015 -1.00000 - 15673 2002 3 18 21 26 0 590 4.9213 175.55164 1568.51930 1376.01648 -8.36568 0.02157 -4.36542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81350 -0.01015 -1.00000 - 15675 2002 3 18 21 26 10 433 4.9213 175.55127 1568.18999 1375.76784 -8.36298 0.02115 -4.36564 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81279 -0.01015 -1.00000 - 15677 2002 3 18 21 26 20 275 4.9213 175.55091 1567.86062 1375.51924 -8.36064 0.02073 -4.36592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81207 -0.01015 -1.00000 - 15679 2002 3 18 21 26 30 118 4.9213 175.55054 1567.53122 1375.27070 -8.35871 0.02031 -4.36628 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81135 -0.01015 -1.00000 - 15682 2002 3 18 21 26 44 881 4.9213 175.55001 1567.03710 1374.89800 -8.35670 0.01968 -4.36694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.81028 -0.01014 -1.00000 - 15684 2002 3 18 21 26 54 724 4.9213 175.54965 1566.70774 1374.64963 -8.35599 0.01926 -4.36748 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80956 -0.01014 -1.00000 - 15686 2002 3 18 21 27 4 566 4.9213 175.54930 1566.37846 1374.40135 -8.35579 0.01884 -4.36809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80885 -0.01014 -1.00000 - 15688 2002 3 18 21 27 14 409 4.9213 175.54896 1566.04928 1374.15316 -8.35612 0.01843 -4.36877 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80813 -0.01014 -1.00000 - 15690 2002 3 18 21 27 24 251 4.9213 175.54861 1565.72024 1373.90508 -8.35696 0.01801 -4.36953 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80742 -0.01014 -1.00000 - 15692 2002 3 18 21 27 34 94 4.9213 175.54827 1565.39137 1373.65711 -8.35830 0.01760 -4.37037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80670 -0.01014 -1.00000 - 15694 2002 3 18 21 27 43 937 4.9212 175.54794 1565.06270 1373.40927 -8.36010 0.01718 -4.37126 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80599 -0.01014 -1.00000 - 15696 2002 3 18 21 27 53 779 4.9212 175.54760 1564.73425 1373.16156 -8.36235 0.01676 -4.37223 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80527 -0.01014 -1.00000 - 15698 2002 3 18 21 28 3 621 4.9213 175.54727 1564.40604 1372.91399 -8.36499 0.01634 -4.37324 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80455 -0.01014 -1.00000 - 15700 2002 3 18 21 28 13 464 4.9213 175.54694 1564.07810 1372.66657 -8.36798 0.01592 -4.37431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80384 -0.01014 -1.00000 - 15702 2002 3 18 21 28 23 307 4.9213 175.54662 1563.75044 1372.41930 -8.37127 0.01549 -4.37542 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80312 -0.01014 -1.00000 - 15704 2002 3 18 21 28 33 149 4.9213 175.54630 1563.42308 1372.17218 -8.37481 0.01507 -4.37657 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80241 -0.01014 -1.00000 - 15706 2002 3 18 21 28 42 992 4.9213 175.54598 1563.09603 1371.92522 -8.37854 0.01465 -4.37775 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80169 -0.01013 -1.00000 - 15708 2002 3 18 21 28 52 834 4.9213 175.54566 1562.76929 1371.67843 -8.38240 0.01423 -4.37894 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80098 -0.01013 -1.00000 - 15710 2002 3 18 21 29 2 677 4.9213 175.54535 1562.44287 1371.43179 -8.38632 0.01381 -4.38014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.80026 -0.01013 -1.00000 - 15712 2002 3 18 21 29 12 519 4.9213 175.54504 1562.11678 1371.18532 -8.39027 0.01339 -4.38135 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79954 -0.01013 -1.00000 - 15714 2002 3 18 21 29 22 362 4.9213 175.54474 1561.79101 1370.93901 -8.39417 0.01296 -4.38255 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79883 -0.01013 -1.00000 - 15716 2002 3 18 21 29 32 204 4.9213 175.54443 1561.46557 1370.69286 -8.39798 0.01254 -4.38373 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79811 -0.01013 -1.00000 - 15718 2002 3 18 21 29 42 47 4.9213 175.54414 1561.14043 1370.44687 -8.40166 0.01212 -4.38489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79740 -0.01013 -1.00000 - 15720 2002 3 18 21 29 51 889 4.9213 175.54384 1560.81561 1370.20103 -8.40515 0.01170 -4.38601 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79668 -0.01013 -1.00000 - 15722 2002 3 18 21 30 1 732 4.9213 175.54355 1560.49107 1369.95533 -8.40841 0.01128 -4.38710 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79597 -0.01013 -1.00000 - 15724 2002 3 18 21 30 11 575 4.9213 175.54326 1560.16680 1369.70977 -8.41141 0.01086 -4.38814 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79525 -0.01013 -1.00000 - 15726 2002 3 18 21 30 21 417 4.9213 175.54297 1559.84272 1369.46430 -8.41412 0.01044 -4.38914 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79453 -0.01013 -1.00000 - 15728 2002 3 18 21 30 31 260 4.9213 175.54269 1559.51882 1369.21893 -8.41653 0.01002 -4.39009 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79382 -0.01012 -1.00000 - 15730 2002 3 18 21 30 41 103 4.9213 175.54240 1559.19508 1368.97368 -8.41863 0.00960 -4.39098 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79310 -0.01012 -1.00000 - 15732 2002 3 18 21 30 50 945 4.9214 175.54212 1558.87150 1368.72853 -8.42041 0.00918 -4.39181 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79239 -0.01012 -1.00000 - 15734 2002 3 18 21 31 0 788 4.9214 175.54185 1558.54807 1368.48349 -8.42183 0.00876 -4.39257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79167 -0.01012 -1.00000 - 15736 2002 3 18 21 31 10 631 4.9214 175.54157 1558.22477 1368.23855 -8.42286 0.00833 -4.39326 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79095 -0.01012 -1.00000 - 15738 2002 3 18 21 31 20 474 4.9214 175.54130 1557.90157 1367.99370 -8.42347 0.00791 -4.39387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.79024 -0.01012 -1.00000 - 15740 2002 3 18 21 31 30 317 4.9214 175.54103 1557.57845 1367.74893 -8.42366 0.00749 -4.39442 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78952 -0.01012 -1.00000 - 15742 2002 3 18 21 31 40 159 4.9214 175.54076 1557.25541 1367.50425 -8.42347 0.00706 -4.39488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78881 -0.01012 -1.00000 - 15744 2002 3 18 21 31 50 2 4.9214 175.54050 1556.93242 1367.25965 -8.42293 0.00663 -4.39528 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78809 -0.01012 -1.00000 - 15747 2002 3 18 21 32 4 767 4.9215 175.54011 1556.44802 1366.89288 -8.42154 0.00601 -4.39574 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78702 -0.01012 -1.00000 - 15749 2002 3 18 21 32 14 610 4.9215 175.53985 1556.12515 1366.64845 -8.42031 0.00559 -4.39597 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78630 -0.01012 -1.00000 - 15751 2002 3 18 21 32 24 453 4.9215 175.53960 1555.80231 1366.40408 -8.41888 0.00516 -4.39613 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78559 -0.01012 -1.00000 - 15753 2002 3 18 21 32 34 296 4.9215 175.53935 1555.47953 1366.15978 -8.41730 0.00475 -4.39623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78487 -0.01011 -1.00000 - 15755 2002 3 18 21 32 44 139 4.9215 175.53910 1555.15680 1365.91553 -8.41560 0.00434 -4.39627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78415 -0.01011 -1.00000 - 15757 2002 3 18 21 32 53 982 4.9216 175.53885 1554.83413 1365.67134 -8.41383 0.00391 -4.39626 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78344 -0.01011 -1.00000 - 15759 2002 3 18 21 33 3 825 4.9216 175.53861 1554.51154 1365.42721 -8.41202 0.00350 -4.39621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78272 -0.01011 -1.00000 - 15761 2002 3 18 21 33 13 668 4.9216 175.53837 1554.18903 1365.18314 -8.41021 0.00308 -4.39611 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78201 -0.01011 -1.00000 - 15763 2002 3 18 21 33 23 511 4.9216 175.53813 1553.86662 1364.93912 -8.40840 0.00265 -4.39597 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78129 -0.01011 -1.00000 - 15765 2002 3 18 21 33 33 355 4.9216 175.53789 1553.54432 1364.69516 -8.40662 0.00223 -4.39579 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.78058 -0.01011 -1.00000 - 15767 2002 3 18 21 33 43 198 4.9216 175.53765 1553.22214 1364.45126 -8.40487 0.00182 -4.39559 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77986 -0.01011 -1.00000 - 15769 2002 3 18 21 33 53 41 4.9216 175.53742 1552.90008 1364.20742 -8.40314 0.00141 -4.39537 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77914 -0.01011 -1.00000 - 15771 2002 3 18 21 34 2 884 4.9216 175.53719 1552.57814 1363.96363 -8.40142 0.00100 -4.39512 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77843 -0.01011 -1.00000 - 15773 2002 3 18 21 34 12 728 4.9216 175.53697 1552.25634 1363.71990 -8.39972 0.00058 -4.39486 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77771 -0.01011 -1.00000 - 15775 2002 3 18 21 34 22 571 4.9217 175.53674 1551.93466 1363.47623 -8.39801 0.00018 -4.39459 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77700 -0.01010 -1.00000 - 15777 2002 3 18 21 34 32 414 4.9217 175.53652 1551.61311 1363.23261 -8.39630 0.00000 -4.39431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77628 -0.01010 -1.00000 - 15779 2002 3 18 21 34 42 258 4.9217 175.53630 1551.29168 1362.98904 -8.39459 0.00000 -4.39403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77556 -0.01010 -1.00000 - 15781 2002 3 18 21 34 52 101 4.9217 175.53609 1550.97037 1362.74553 -8.39287 0.00000 -4.39376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77485 -0.01010 -1.00000 - 15783 2002 3 18 21 35 1 944 4.9217 175.53587 1550.64915 1362.50206 -8.39115 0.00000 -4.39349 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77413 -0.01010 -1.00000 - 15785 2002 3 18 21 35 11 788 4.9217 175.53566 1550.32804 1362.25865 -8.38942 0.00000 -4.39324 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77342 -0.01010 -1.00000 - 15787 2002 3 18 21 35 21 631 4.9217 175.53546 1550.00700 1362.01529 -8.38769 0.00000 -4.39300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77270 -0.01010 -1.00000 - 15789 2002 3 18 21 35 31 475 4.9218 175.53525 1549.68603 1361.77197 -8.38595 0.00000 -4.39279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77199 -0.01010 -1.00000 - 15791 2002 3 18 21 35 41 318 4.9218 175.53505 1549.36511 1361.52871 -8.38421 0.00000 -4.39261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77127 -0.01010 -1.00000 - 15793 2002 3 18 21 35 51 162 4.9218 175.53485 1549.04421 1361.28549 -8.38248 0.00000 -4.39245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.77055 -0.01010 -1.00000 - 15795 2002 3 18 21 36 1 6 4.9218 175.53465 1548.72333 1361.04233 -8.38075 0.00000 -4.39233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76984 -0.01010 -1.00000 - 15797 2002 3 18 21 36 10 849 4.9218 175.53445 1548.40244 1360.79921 -8.37905 0.00000 -4.39225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76912 -0.01010 -1.00000 - 15799 2002 3 18 21 36 20 693 4.9218 175.53426 1548.08154 1360.55616 -8.37741 0.00000 -4.39221 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76841 -0.01009 -1.00000 - 15801 2002 3 18 21 36 30 537 4.9219 175.53407 1547.76063 1360.31315 -8.37584 0.00000 -4.39222 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76769 -0.01009 -1.00000 - 15803 2002 3 18 21 36 40 380 4.9219 175.53388 1547.43972 1360.07021 -8.37438 0.00000 -4.39227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76697 -0.01009 -1.00000 - 15805 2002 3 18 21 36 50 224 4.9219 175.53369 1547.11881 1359.82733 -8.37307 0.00000 -4.39238 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76626 -0.01009 -1.00000 - 15807 2002 3 18 21 37 0 68 4.9219 175.53350 1546.79792 1359.58452 -8.37195 0.00000 -4.39254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76554 -0.01009 -1.00000 - 15810 2002 3 18 21 37 14 834 4.9219 175.53322 1546.31668 1359.22044 -8.37071 0.00000 -4.39288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76447 -0.01009 -1.00000 - 15812 2002 3 18 21 37 24 678 4.9220 175.53304 1545.99596 1358.97783 -8.37024 0.00000 -4.39317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76375 -0.01009 -1.00000 - 15814 2002 3 18 21 37 34 522 4.9220 175.53286 1545.67536 1358.73530 -8.37009 0.00000 -4.39353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76304 -0.01009 -1.00000 - 15816 2002 3 18 21 37 44 366 4.9220 175.53268 1545.35490 1358.49286 -8.37029 0.00000 -4.39394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76232 -0.01009 -1.00000 - 15818 2002 3 18 21 37 54 210 4.9220 175.53250 1545.03463 1358.25052 -8.37086 0.00000 -4.39440 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76161 -0.01009 -1.00000 - 15820 2002 3 18 21 38 4 54 4.9220 175.53232 1544.71456 1358.00828 -8.37181 0.00000 -4.39492 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76089 -0.01009 -1.00000 - 15822 2002 3 18 21 38 13 898 4.9221 175.53215 1544.39470 1357.76615 -8.37310 0.00000 -4.39550 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.76017 -0.01008 -1.00000 - 15824 2002 3 18 21 38 23 742 4.9221 175.53198 1544.07508 1357.52413 -8.37469 0.00000 -4.39612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75946 -0.01008 -1.00000 - 15826 2002 3 18 21 38 33 586 4.9221 175.53181 1543.75567 1357.28223 -8.37652 0.00000 -4.39678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75874 -0.01008 -1.00000 - 15828 2002 3 18 21 38 43 431 4.9221 175.53165 1543.43648 1357.04045 -8.37852 0.00000 -4.39749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75803 -0.01008 -1.00000 - 15830 2002 3 18 21 38 53 275 4.9222 175.53148 1543.11748 1356.79878 -8.38061 0.00000 -4.39824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75731 -0.01008 -1.00000 - 15832 2002 3 18 21 39 3 119 4.9222 175.53132 1542.79866 1356.55724 -8.38271 0.00000 -4.39901 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75659 -0.01008 -1.00000 - 15834 2002 3 18 21 39 12 964 4.9222 175.53117 1542.47999 1356.31581 -8.38476 0.00000 -4.39981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75588 -0.01008 -1.00000 - 15836 2002 3 18 21 39 22 808 4.9222 175.53101 1542.16145 1356.07451 -8.38672 0.00000 -4.40063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75516 -0.01008 -1.00000 - 15838 2002 3 18 21 39 32 653 4.9223 175.53086 1541.84303 1355.83333 -8.38858 0.00000 -4.40147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75445 -0.01008 -1.00000 - 15840 2002 3 18 21 39 42 497 4.9223 175.53070 1541.52474 1355.59226 -8.39034 0.00000 -4.40232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75373 -0.01008 -1.00000 - 15842 2002 3 18 21 39 52 342 4.9223 175.53056 1541.20657 1355.35132 -8.39202 0.00000 -4.40317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75301 -0.01008 -1.00000 - 15844 2002 3 18 21 40 2 186 4.9223 175.53041 1540.88855 1355.11050 -8.39366 0.00000 -4.40402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75230 -0.01008 -1.00000 - 15846 2002 3 18 21 40 12 31 4.9224 175.53026 1540.57070 1354.86979 -8.39528 0.00000 -4.40488 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75158 -0.01007 -1.00000 - 15848 2002 3 18 21 40 21 876 4.9224 175.53012 1540.25305 1354.62921 -8.39694 0.00000 -4.40572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75087 -0.01007 -1.00000 - 15850 2002 3 18 21 40 31 721 4.9224 175.52997 1539.93562 1354.38875 -8.39864 0.00000 -4.40655 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.75015 -0.01007 -1.00000 - 15852 2002 3 18 21 40 41 565 4.9224 175.52983 1539.61843 1354.14841 -8.40042 0.00000 -4.40737 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74944 -0.01007 -1.00000 - 15854 2002 3 18 21 40 51 410 4.9225 175.52970 1539.30151 1353.90819 -8.40228 0.00000 -4.40818 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74872 -0.01007 -1.00000 - 15856 2002 3 18 21 41 1 255 4.9225 175.52956 1538.98487 1353.66808 -8.40420 0.00000 -4.40896 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74800 -0.01007 -1.00000 - 15858 2002 3 18 21 41 11 100 4.9225 175.52942 1538.66850 1353.42809 -8.40615 0.00000 -4.40972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74729 -0.01007 -1.00000 - 15860 2002 3 18 21 41 20 945 4.9225 175.52929 1538.35241 1353.18822 -8.40808 0.00000 -4.41044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74657 -0.01007 -1.00000 - 15862 2002 3 18 21 41 30 791 4.9226 175.52916 1538.03657 1352.94846 -8.40991 0.00000 -4.41114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74586 -0.01007 -1.00000 - 15864 2002 3 18 21 41 40 636 4.9226 175.52904 1537.72096 1352.70880 -8.41155 0.00000 -4.41180 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74514 -0.01007 -1.00000 - 15866 2002 3 18 21 41 50 481 4.9226 175.52892 1537.40554 1352.46924 -8.41292 0.00000 -4.41242 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74442 -0.01007 -1.00000 - 15868 2002 3 18 21 42 0 326 4.9227 175.52880 1537.09028 1352.22978 -8.41394 0.00000 -4.41300 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74371 -0.01007 -1.00000 - 15870 2002 3 18 21 42 10 172 4.9227 175.52868 1536.77514 1351.99040 -8.41454 0.00000 -4.41354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74299 -0.01006 -1.00000 - 15872 2002 3 18 21 42 20 17 4.9227 175.52856 1536.46008 1351.75110 -8.41470 0.00000 -4.41403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74228 -0.01006 -1.00000 - 15875 2002 3 18 21 42 34 785 4.9228 175.52839 1535.98760 1351.39230 -8.41413 0.00000 -4.41468 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74120 -0.01006 -1.00000 - 15877 2002 3 18 21 42 44 631 4.9228 175.52827 1535.67266 1351.15318 -8.41328 0.00000 -4.41506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.74049 -0.01006 -1.00000 - 15879 2002 3 18 21 42 54 477 4.9228 175.52816 1535.35776 1350.91412 -8.41214 0.00000 -4.41541 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73977 -0.01006 -1.00000 - 15881 2002 3 18 21 43 4 322 4.9229 175.52805 1535.04290 1350.67511 -8.41079 0.00000 -4.41571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73905 -0.01006 -1.00000 - 15883 2002 3 18 21 43 14 168 4.9229 175.52795 1534.72812 1350.43617 -8.40934 0.00000 -4.41598 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73834 -0.01006 -1.00000 - 15885 2002 3 18 21 43 24 14 4.9229 175.52784 1534.41343 1350.19727 -8.40786 0.00000 -4.41622 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73762 -0.01006 -1.00000 - 15887 2002 3 18 21 43 33 860 4.9230 175.52774 1534.09884 1349.95842 -8.40641 0.00000 -4.41644 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73691 -0.01006 -1.00000 - 15889 2002 3 18 21 43 43 706 4.9230 175.52763 1533.78439 1349.71963 -8.40501 0.00000 -4.41664 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73619 -0.01006 -1.00000 - 15891 2002 3 18 21 43 53 552 4.9230 175.52753 1533.47007 1349.48088 -8.40367 0.00000 -4.41681 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73547 -0.01006 -1.00000 - 15893 2002 3 18 21 44 3 398 4.9231 175.52743 1533.15588 1349.24218 -8.40234 0.00000 -4.41698 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73476 -0.01005 -1.00000 - 15895 2002 3 18 21 44 13 244 4.9231 175.52734 1532.84180 1349.00352 -8.40100 0.00000 -4.41714 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73404 -0.01005 -1.00000 - 15897 2002 3 18 21 44 23 90 4.9231 175.52725 1532.52779 1348.76491 -8.39960 0.00000 -4.41729 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73333 -0.01005 -1.00000 - 15899 2002 3 18 21 44 32 937 4.9232 175.52715 1532.21382 1348.52633 -8.39813 0.00000 -4.41745 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73261 -0.01005 -1.00000 - 15901 2002 3 18 21 44 42 783 4.9232 175.52707 1531.89984 1348.28779 -8.39656 0.00000 -4.41761 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73189 -0.01005 -1.00000 - 15903 2002 3 18 21 44 52 629 4.9232 175.52698 1531.58580 1348.04929 -8.39490 0.00000 -4.41777 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73118 -0.01005 -1.00000 - 15905 2002 3 18 21 45 2 476 4.9233 175.52689 1531.27167 1347.81083 -8.39314 0.00000 -4.41795 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.73046 -0.01005 -1.00000 - 15907 2002 3 18 21 45 12 323 4.9233 175.52681 1530.95740 1347.57239 -8.39132 0.00000 -4.41814 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72975 -0.01005 -1.00000 - 15909 2002 3 18 21 45 22 169 4.9233 175.52673 1530.64292 1347.33396 -8.38946 0.00000 -4.41836 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72903 -0.01005 -1.00000 - 15911 2002 3 18 21 45 32 16 4.9234 175.52665 1530.32820 1347.09556 -8.38763 0.00000 -4.41861 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72831 -0.01005 -1.00000 - 15913 2002 3 18 21 45 41 863 4.9234 175.52657 1530.01326 1346.85720 -8.38591 0.00000 -4.41888 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72760 -0.01005 -1.00000 - 15915 2002 3 18 21 45 51 710 4.9234 175.52649 1529.69813 1346.61890 -8.38437 0.00000 -4.41918 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72688 -0.01005 -1.00000 - 15917 2002 3 18 21 46 1 557 4.9235 175.52642 1529.38286 1346.38066 -8.38309 0.00000 -4.41950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72616 -0.01004 -1.00000 - 15919 2002 3 18 21 46 11 404 4.9235 175.52634 1529.06751 1346.14250 -8.38214 0.00000 -4.41985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72545 -0.01004 -1.00000 - 15921 2002 3 18 21 46 21 251 4.9236 175.52628 1528.75216 1345.90443 -8.38163 0.00000 -4.42023 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72473 -0.01004 -1.00000 - 15923 2002 3 18 21 46 31 98 4.9236 175.52621 1528.43689 1345.66647 -8.38166 0.00000 -4.42064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72402 -0.01004 -1.00000 - 15925 2002 3 18 21 46 40 945 4.9236 175.52615 1528.12181 1345.42862 -8.38233 0.00000 -4.42107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72330 -0.01004 -1.00000 - 15927 2002 3 18 21 46 50 792 4.9237 175.52608 1527.80702 1345.19091 -8.38374 0.00000 -4.42153 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72258 -0.01004 -1.00000 - 15929 2002 3 18 21 47 0 640 4.9237 175.52603 1527.49262 1344.95333 -8.38591 0.00000 -4.42201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72187 -0.01004 -1.00000 - 15931 2002 3 18 21 47 10 487 4.9238 175.52597 1527.17871 1344.71591 -8.38882 0.00000 -4.42251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72115 -0.01004 -1.00000 - 15933 2002 3 18 21 47 20 335 4.9238 175.52591 1526.86534 1344.47865 -8.39240 0.00000 -4.42302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.72044 -0.01004 -1.00000 - 15935 2002 3 18 21 47 30 183 4.9238 175.52585 1526.55257 1344.24154 -8.39652 0.00000 -4.42354 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71972 -0.01004 -1.00000 - 15937 2002 3 18 21 47 40 30 4.9239 175.52579 1526.24040 1344.00460 -8.40100 0.00000 -4.42405 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71900 -0.01004 -1.00000 - 15940 2002 3 18 21 47 54 802 4.9239 175.52571 1525.77327 1343.64949 -8.40795 0.00000 -4.42480 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71793 -0.01003 -1.00000 - 15942 2002 3 18 21 48 4 650 4.9240 175.52567 1525.46253 1343.41294 -8.41240 0.00000 -4.42527 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71721 -0.01003 -1.00000 - 15944 2002 3 18 21 48 14 498 4.9240 175.52562 1525.15225 1343.17653 -8.41647 0.00000 -4.42571 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71650 -0.01003 -1.00000 - 15946 2002 3 18 21 48 24 346 4.9241 175.52558 1524.84233 1342.94025 -8.41995 0.00000 -4.42611 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71578 -0.01003 -1.00000 - 15948 2002 3 18 21 48 34 194 4.9241 175.52554 1524.53270 1342.70408 -8.42267 0.00000 -4.42647 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71506 -0.01003 -1.00000 - 15950 2002 3 18 21 48 44 43 4.9242 175.52550 1524.22323 1342.46802 -8.42453 0.00000 -4.42678 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71435 -0.01003 -1.00000 - 15952 2002 3 18 21 48 53 891 4.9242 175.52546 1523.91386 1342.23203 -8.42545 0.00000 -4.42704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71363 -0.01003 -1.00000 - 15954 2002 3 18 21 49 3 740 4.9242 175.52542 1523.60448 1341.99612 -8.42543 0.00000 -4.42724 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71292 -0.01003 -1.00000 - 15956 2002 3 18 21 49 13 588 4.9243 175.52539 1523.29504 1341.76026 -8.42450 0.00000 -4.42739 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71220 -0.01003 -1.00000 - 15958 2002 3 18 21 49 23 437 4.9243 175.52536 1522.98548 1341.52444 -8.42277 0.00000 -4.42749 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71148 -0.01003 -1.00000 - 15960 2002 3 18 21 49 33 286 4.9244 175.52532 1522.67578 1341.28866 -8.42034 0.00000 -4.42754 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71077 -0.01003 -1.00000 - 15962 2002 3 18 21 49 43 134 4.9244 175.52529 1522.36592 1341.05290 -8.41737 0.00000 -4.42755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.71005 -0.01003 -1.00000 - 15964 2002 3 18 21 49 52 983 4.9245 175.52526 1522.05591 1340.81716 -8.41404 0.00000 -4.42752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70933 -0.01002 -1.00000 - 15966 2002 3 18 21 50 2 832 4.9245 175.52523 1521.74576 1340.58145 -8.41050 0.00000 -4.42747 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70862 -0.01002 -1.00000 - 15968 2002 3 18 21 50 12 681 4.9246 175.52521 1521.43551 1340.34575 -8.40692 0.00000 -4.42740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70790 -0.01002 -1.00000 - 15970 2002 3 18 21 50 22 531 4.9246 175.52518 1521.12517 1340.11007 -8.40343 0.00000 -4.42731 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70719 -0.01002 -1.00000 - 15972 2002 3 18 21 50 32 380 4.9247 175.52516 1520.81478 1339.87441 -8.40014 0.00000 -4.42722 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70647 -0.01002 -1.00000 - 15974 2002 3 18 21 50 42 229 4.9247 175.52514 1520.50437 1339.63878 -8.39713 0.00000 -4.42714 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70575 -0.01002 -1.00000 - 15976 2002 3 18 21 50 52 79 4.9248 175.52512 1520.19398 1339.40317 -8.39443 0.00000 -4.42706 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70504 -0.01002 -1.00000 - 15978 2002 3 18 21 51 1 928 4.9248 175.52511 1519.88361 1339.16761 -8.39207 0.00000 -4.42701 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70432 -0.01002 -1.00000 - 15980 2002 3 18 21 51 11 778 4.9248 175.52509 1519.57328 1338.93208 -8.39002 0.00000 -4.42697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70360 -0.01002 -1.00000 - 15982 2002 3 18 21 51 21 628 4.9249 175.52508 1519.26301 1338.69660 -8.38825 0.00000 -4.42696 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70289 -0.01002 -1.00000 - 15984 2002 3 18 21 51 31 478 4.9249 175.52507 1518.95281 1338.46117 -8.38671 0.00000 -4.42699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70217 -0.01002 -1.00000 - 15986 2002 3 18 21 51 41 328 4.9250 175.52506 1518.64266 1338.22580 -8.38537 0.00000 -4.42704 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70146 -0.01002 -1.00000 - 15988 2002 3 18 21 51 51 178 4.9250 175.52506 1518.33259 1337.99048 -8.38418 0.00000 -4.42713 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70074 -0.01001 -1.00000 - 15990 2002 3 18 21 52 1 28 4.9251 175.52506 1518.02260 1337.75522 -8.38315 0.00000 -4.42727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.70002 -0.01001 -1.00000 - 15992 2002 3 18 21 52 10 878 4.9251 175.52505 1517.71271 1337.52003 -8.38228 0.00000 -4.42744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69931 -0.01001 -1.00000 - 15994 2002 3 18 21 52 20 728 4.9252 175.52505 1517.40293 1337.28490 -8.38160 0.00000 -4.42766 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69859 -0.01001 -1.00000 - 15996 2002 3 18 21 52 30 579 4.9252 175.52505 1517.09329 1337.04983 -8.38114 0.00000 -4.42792 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69787 -0.01001 -1.00000 - 15998 2002 3 18 21 52 40 430 4.9253 175.52506 1516.78380 1336.81484 -8.38093 0.00000 -4.42824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69716 -0.01001 -1.00000 - 16000 2002 3 18 21 52 50 280 4.9253 175.52506 1516.47447 1336.57993 -8.38100 0.00000 -4.42860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69644 -0.01001 -1.00000 - 16002 2002 3 18 21 53 0 131 4.9254 175.52507 1516.16532 1336.34509 -8.38135 0.00000 -4.42901 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69573 -0.01001 -1.00000 - 16005 2002 3 18 21 53 14 907 4.9255 175.52508 1515.70193 1335.99298 -8.38238 0.00000 -4.42972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69465 -0.01001 -1.00000 - 16007 2002 3 18 21 53 24 758 4.9255 175.52509 1515.39321 1335.75834 -8.38335 0.00000 -4.43025 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69393 -0.01001 -1.00000 - 16009 2002 3 18 21 53 34 610 4.9256 175.52510 1515.08463 1335.52379 -8.38447 0.00000 -4.43083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69322 -0.01001 -1.00000 - 16011 2002 3 18 21 53 44 461 4.9256 175.52511 1514.77618 1335.28933 -8.38568 0.00000 -4.43145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69250 -0.01000 -1.00000 - 16013 2002 3 18 21 53 54 312 4.9257 175.52513 1514.46782 1335.05496 -8.38692 0.00000 -4.43211 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69178 -0.01000 -1.00000 - 16015 2002 3 18 21 54 4 164 4.9257 175.52515 1514.15953 1334.82067 -8.38810 0.00000 -4.43281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69107 -0.01000 -1.00000 - 16017 2002 3 18 21 54 14 15 4.9258 175.52516 1513.85129 1334.58648 -8.38919 0.00000 -4.43355 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.69035 -0.01000 -1.00000 - 16019 2002 3 18 21 54 23 867 4.9259 175.52519 1513.54307 1334.35238 -8.39014 0.00000 -4.43431 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68964 -0.01000 -1.00000 - 16021 2002 3 18 21 54 33 719 4.9259 175.52521 1513.23486 1334.11837 -8.39098 0.00000 -4.43510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68892 -0.01000 -1.00000 - 16023 2002 3 18 21 54 43 571 4.9260 175.52523 1512.92666 1333.88445 -8.39174 0.00000 -4.43592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68820 -0.01000 -1.00000 - 16025 2002 3 18 21 54 53 423 4.9260 175.52526 1512.61847 1333.65062 -8.39249 0.00000 -4.43676 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68749 -0.01000 -1.00000 - 16027 2002 3 18 21 55 3 275 4.9261 175.52529 1512.31033 1333.41690 -8.39333 0.00000 -4.43761 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68677 -0.01000 -1.00000 - 16029 2002 3 18 21 55 13 127 4.9261 175.52532 1512.00224 1333.18327 -8.39436 0.00000 -4.43849 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68605 -0.01000 -1.00000 - 16031 2002 3 18 21 55 22 979 4.9262 175.52535 1511.69427 1332.94976 -8.39568 0.00000 -4.43937 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68534 -0.01000 -1.00000 - 16033 2002 3 18 21 55 32 832 4.9262 175.52538 1511.38646 1332.71636 -8.39737 0.00000 -4.44027 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68462 -0.01000 -1.00000 - 16035 2002 3 18 21 55 42 684 4.9263 175.52542 1511.07886 1332.48308 -8.39944 0.00000 -4.44117 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68390 -0.00999 -1.00000 - 16037 2002 3 18 21 55 52 537 4.9264 175.52546 1510.77151 1332.24993 -8.40188 0.00000 -4.44208 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68319 -0.00999 -1.00000 - 16039 2002 3 18 21 56 2 390 4.9264 175.52549 1510.46446 1332.01692 -8.40462 0.00000 -4.44298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68247 -0.00999 -1.00000 - 16041 2002 3 18 21 56 12 243 4.9265 175.52553 1510.15775 1331.78404 -8.40758 0.00000 -4.44386 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68175 -0.00999 -1.00000 - 16043 2002 3 18 21 56 22 96 4.9265 175.52558 1509.85138 1331.55129 -8.41064 0.00000 -4.44473 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68104 -0.00999 -1.00000 - 16045 2002 3 18 21 56 31 949 4.9266 175.52562 1509.54537 1331.31868 -8.41368 0.00000 -4.44557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.68032 -0.00999 -1.00000 - 16047 2002 3 18 21 56 41 802 4.9267 175.52567 1509.23972 1331.08619 -8.41661 0.00000 -4.44639 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67960 -0.00999 -1.00000 - 16049 2002 3 18 21 56 51 656 4.9267 175.52571 1508.93441 1330.85384 -8.41937 0.00000 -4.44717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67889 -0.00999 -1.00000 - 16051 2002 3 18 21 57 1 509 4.9268 175.52576 1508.62941 1330.62159 -8.42192 0.00000 -4.44790 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67817 -0.00999 -1.00000 - 16053 2002 3 18 21 57 11 363 4.9268 175.52581 1508.32471 1330.38946 -8.42423 0.00000 -4.44860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67746 -0.00999 -1.00000 - 16055 2002 3 18 21 57 21 217 4.9269 175.52587 1508.02027 1330.15743 -8.42631 0.00000 -4.44924 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67674 -0.00999 -1.00000 - 16057 2002 3 18 21 57 31 71 4.9270 175.52592 1507.71606 1329.92549 -8.42813 0.00000 -4.44983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67602 -0.00998 -1.00000 - 16059 2002 3 18 21 57 40 925 4.9270 175.52598 1507.41202 1329.69364 -8.42965 0.00000 -4.45037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67531 -0.00998 -1.00000 - 16061 2002 3 18 21 57 50 779 4.9271 175.52604 1507.10811 1329.46187 -8.43081 0.00000 -4.45086 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67459 -0.00998 -1.00000 - 16063 2002 3 18 21 58 0 633 4.9271 175.52610 1506.80427 1329.23018 -8.43154 0.00000 -4.45128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67387 -0.00998 -1.00000 - 16065 2002 3 18 21 58 10 487 4.9272 175.52616 1506.50045 1328.99855 -8.43173 0.00000 -4.45164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67316 -0.00998 -1.00000 - 16067 2002 3 18 21 58 20 342 4.9273 175.52623 1506.19658 1328.76699 -8.43132 0.00000 -4.45194 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67244 -0.00998 -1.00000 - 16069 2002 3 18 21 58 30 196 4.9273 175.52629 1505.89262 1328.53547 -8.43027 0.00000 -4.45218 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67172 -0.00998 -1.00000 - 16071 2002 3 18 21 58 40 51 4.9274 175.52636 1505.58854 1328.30401 -8.42859 0.00000 -4.45235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.67101 -0.00998 -1.00000 - 16074 2002 3 18 21 58 54 834 4.9275 175.52646 1505.13214 1327.95688 -8.42509 0.00000 -4.45252 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66993 -0.00998 -1.00000 - 16076 2002 3 18 21 59 4 689 4.9276 175.52654 1504.82771 1327.72552 -8.42233 0.00000 -4.45256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66921 -0.00998 -1.00000 - 16078 2002 3 18 21 59 14 544 4.9276 175.52661 1504.52321 1327.49419 -8.41945 0.00000 -4.45256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66850 -0.00998 -1.00000 - 16080 2002 3 18 21 59 24 399 4.9277 175.52669 1504.21867 1327.26290 -8.41666 0.00000 -4.45253 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66778 -0.00997 -1.00000 - 16082 2002 3 18 21 59 34 255 4.9277 175.52676 1503.91419 1327.03165 -8.41415 0.00000 -4.45246 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66706 -0.00997 -1.00000 - 16084 2002 3 18 21 59 44 110 4.9278 175.52684 1503.60982 1326.80045 -8.41205 0.00000 -4.45237 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66635 -0.00997 -1.00000 - 16086 2002 3 18 21 59 53 966 4.9279 175.52693 1503.30563 1326.56930 -8.41044 0.00000 -4.45226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66563 -0.00997 -1.00000 - 16088 2002 3 18 22 0 3 822 4.9279 175.52701 1503.00167 1326.33822 -8.40932 0.00000 -4.45214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66491 -0.00997 -1.00000 - 16090 2002 3 18 22 0 13 678 4.9280 175.52710 1502.69796 1326.10718 -8.40864 0.00000 -4.45201 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66420 -0.00997 -1.00000 - 16092 2002 3 18 22 0 23 534 4.9281 175.52718 1502.39449 1325.87618 -8.40829 0.00000 -4.45188 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66348 -0.00997 -1.00000 - 16094 2002 3 18 22 0 33 390 4.9281 175.52727 1502.09124 1325.64523 -8.40818 0.00000 -4.45175 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66276 -0.00997 -1.00000 - 16096 2002 3 18 22 0 43 247 4.9282 175.52736 1501.78819 1325.41434 -8.40815 0.00000 -4.45162 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66205 -0.00997 -1.00000 - 16098 2002 3 18 22 0 53 103 4.9283 175.52746 1501.48530 1325.18350 -8.40809 0.00000 -4.45150 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66133 -0.00997 -1.00000 - 16100 2002 3 18 22 1 2 960 4.9283 175.52755 1501.18254 1324.95271 -8.40785 0.00000 -4.45137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.66061 -0.00997 -1.00000 - 16102 2002 3 18 22 1 12 817 4.9284 175.52765 1500.87985 1324.72197 -8.40734 0.00000 -4.45124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65990 -0.00997 -1.00000 - 16104 2002 3 18 22 1 22 673 4.9285 175.52775 1500.57719 1324.49128 -8.40648 0.00000 -4.45112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65918 -0.00996 -1.00000 - 16106 2002 3 18 22 1 32 531 4.9286 175.52785 1500.27452 1324.26063 -8.40528 0.00000 -4.45100 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65846 -0.00996 -1.00000 - 16108 2002 3 18 22 1 42 388 4.9286 175.52796 1499.97180 1324.03002 -8.40375 0.00000 -4.45090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65775 -0.00996 -1.00000 - 16110 2002 3 18 22 1 52 245 4.9287 175.52806 1499.66902 1323.79945 -8.40195 0.00000 -4.45080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65703 -0.00996 -1.00000 - 16112 2002 3 18 22 2 2 103 4.9288 175.52817 1499.36617 1323.56891 -8.39996 0.00000 -4.45073 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65631 -0.00996 -1.00000 - 16114 2002 3 18 22 2 11 960 4.9288 175.52828 1499.06326 1323.33841 -8.39787 0.00000 -4.45067 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65559 -0.00996 -1.00000 - 16116 2002 3 18 22 2 21 818 4.9289 175.52839 1498.76029 1323.10795 -8.39577 0.00000 -4.45064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65488 -0.00996 -1.00000 - 16118 2002 3 18 22 2 31 676 4.9290 175.52851 1498.45729 1322.87753 -8.39376 0.00000 -4.45064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65416 -0.00996 -1.00000 - 16120 2002 3 18 22 2 41 534 4.9290 175.52862 1498.15428 1322.64715 -8.39192 0.00000 -4.45068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65344 -0.00996 -1.00000 - 16122 2002 3 18 22 2 51 392 4.9291 175.52874 1497.85129 1322.41682 -8.39033 0.00000 -4.45075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65273 -0.00996 -1.00000 - 16124 2002 3 18 22 3 1 250 4.9292 175.52886 1497.54836 1322.18654 -8.38905 0.00000 -4.45087 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65201 -0.00996 -1.00000 - 16126 2002 3 18 22 3 11 109 4.9293 175.52898 1497.24550 1321.95632 -8.38813 0.00000 -4.45104 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65129 -0.00996 -1.00000 - 16128 2002 3 18 22 3 20 968 4.9293 175.52910 1496.94274 1321.72617 -8.38760 0.00000 -4.45125 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.65058 -0.00995 -1.00000 - 16130 2002 3 18 22 3 30 826 4.9294 175.52922 1496.64011 1321.49608 -8.38744 0.00000 -4.45151 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64986 -0.00995 -1.00000 - 16132 2002 3 18 22 3 40 685 4.9295 175.52935 1496.33761 1321.26608 -8.38763 0.00000 -4.45182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64914 -0.00995 -1.00000 - 16134 2002 3 18 22 3 50 544 4.9295 175.52948 1496.03525 1321.03615 -8.38813 0.00000 -4.45217 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64843 -0.00995 -1.00000 - 16136 2002 3 18 22 4 0 404 4.9296 175.52961 1495.73304 1320.80630 -8.38887 0.00000 -4.45258 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64771 -0.00995 -1.00000 - 16138 2002 3 18 22 4 10 263 4.9297 175.52974 1495.43095 1320.57655 -8.38979 0.00000 -4.45303 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64699 -0.00995 -1.00000 - 16140 2002 3 18 22 4 20 122 4.9298 175.52988 1495.12899 1320.34688 -8.39083 0.00000 -4.45353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64627 -0.00995 -1.00000 - 16143 2002 3 18 22 4 34 912 4.9299 175.53008 1494.67627 1320.00255 -8.39256 0.00000 -4.45434 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64520 -0.00995 -1.00000 - 16145 2002 3 18 22 4 44 772 4.9300 175.53022 1494.37459 1319.77312 -8.39378 0.00000 -4.45493 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64448 -0.00995 -1.00000 - 16147 2002 3 18 22 4 54 632 4.9300 175.53036 1494.07301 1319.54378 -8.39505 0.00000 -4.45556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64377 -0.00995 -1.00000 - 16149 2002 3 18 22 5 4 492 4.9301 175.53051 1493.77155 1319.31455 -8.39638 0.00000 -4.45621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64305 -0.00995 -1.00000 - 16151 2002 3 18 22 5 14 352 4.9302 175.53065 1493.47022 1319.08541 -8.39780 0.00000 -4.45689 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64233 -0.00994 -1.00000 - 16153 2002 3 18 22 5 24 213 4.9303 175.53080 1493.16902 1318.85638 -8.39931 0.00000 -4.45759 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64161 -0.00994 -1.00000 - 16155 2002 3 18 22 5 34 73 4.9303 175.53095 1492.86797 1318.62746 -8.40094 0.00000 -4.45830 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64090 -0.00994 -1.00000 - 16157 2002 3 18 22 5 43 934 4.9304 175.53110 1492.56710 1318.39864 -8.40269 0.00000 -4.45904 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.64018 -0.00994 -1.00000 - 16159 2002 3 18 22 5 53 795 4.9305 175.53126 1492.26641 1318.16993 -8.40457 0.00000 -4.45978 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63946 -0.00994 -1.00000 - 16161 2002 3 18 22 6 3 656 4.9306 175.53141 1491.96594 1317.94133 -8.40657 0.00000 -4.46053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63875 -0.00994 -1.00000 - 16163 2002 3 18 22 6 13 517 4.9306 175.53157 1491.66568 1317.71285 -8.40866 0.00000 -4.46128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63803 -0.00994 -1.00000 - 16165 2002 3 18 22 6 23 379 4.9307 175.53173 1491.36566 1317.48448 -8.41081 0.00000 -4.46203 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63731 -0.00994 -1.00000 - 16167 2002 3 18 22 6 33 240 4.9308 175.53189 1491.06588 1317.25622 -8.41300 0.00000 -4.46277 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63659 -0.00994 -1.00000 - 16169 2002 3 18 22 6 43 102 4.9309 175.53206 1490.76634 1317.02806 -8.41518 0.00000 -4.46350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63588 -0.00994 -1.00000 - 16171 2002 3 18 22 6 52 964 4.9310 175.53222 1490.46704 1316.80002 -8.41730 0.00000 -4.46421 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63516 -0.00994 -1.00000 - 16173 2002 3 18 22 7 2 826 4.9310 175.53239 1490.16797 1316.57208 -8.41932 0.00000 -4.46491 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63444 -0.00994 -1.00000 - 16175 2002 3 18 22 7 12 688 4.9311 175.53256 1489.86912 1316.34425 -8.42119 0.00000 -4.46557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63373 -0.00993 -1.00000 - 16177 2002 3 18 22 7 22 551 4.9312 175.53273 1489.57048 1316.11651 -8.42286 0.00000 -4.46621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63301 -0.00993 -1.00000 - 16179 2002 3 18 22 7 32 413 4.9313 175.53291 1489.27204 1315.88886 -8.42431 0.00000 -4.46682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63229 -0.00993 -1.00000 - 16181 2002 3 18 22 7 42 276 4.9314 175.53308 1488.97376 1315.66129 -8.42549 0.00000 -4.46739 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63157 -0.00993 -1.00000 - 16183 2002 3 18 22 7 52 139 4.9314 175.53326 1488.67563 1315.43381 -8.42639 0.00000 -4.46793 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63086 -0.00993 -1.00000 - 16185 2002 3 18 22 8 2 2 4.9315 175.53344 1488.37763 1315.20640 -8.42698 0.00000 -4.46843 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.63014 -0.00993 -1.00000 - 16187 2002 3 18 22 8 11 865 4.9316 175.53362 1488.07974 1314.97906 -8.42725 0.00000 -4.46890 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62942 -0.00993 -1.00000 - 16189 2002 3 18 22 8 21 728 4.9317 175.53381 1487.78193 1314.75178 -8.42722 0.00000 -4.46932 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62870 -0.00993 -1.00000 - 16191 2002 3 18 22 8 31 591 4.9318 175.53400 1487.48419 1314.52455 -8.42688 0.00000 -4.46971 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62799 -0.00993 -1.00000 - 16193 2002 3 18 22 8 41 455 4.9318 175.53419 1487.18649 1314.29738 -8.42625 0.00000 -4.47007 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62727 -0.00993 -1.00000 - 16195 2002 3 18 22 8 51 319 4.9319 175.53438 1486.88883 1314.07026 -8.42535 0.00000 -4.47039 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62655 -0.00993 -1.00000 - 16197 2002 3 18 22 9 1 183 4.9320 175.53457 1486.59118 1313.84318 -8.42422 0.00000 -4.47068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62584 -0.00993 -1.00000 - 16199 2002 3 18 22 9 11 47 4.9321 175.53477 1486.29353 1313.61614 -8.42289 0.00000 -4.47094 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62512 -0.00992 -1.00000 - 16201 2002 3 18 22 9 20 911 4.9322 175.53497 1485.99588 1313.38914 -8.42139 0.00000 -4.47118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62440 -0.00992 -1.00000 - 16203 2002 3 18 22 9 30 776 4.9323 175.53517 1485.69821 1313.16217 -8.41976 0.00000 -4.47140 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62368 -0.00992 -1.00000 - 16205 2002 3 18 22 9 40 640 4.9323 175.53537 1485.40052 1312.93523 -8.41804 0.00000 -4.47160 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62297 -0.00992 -1.00000 - 16207 2002 3 18 22 9 50 505 4.9324 175.53557 1485.10280 1312.70833 -8.41627 0.00000 -4.47179 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62225 -0.00992 -1.00000 - 16209 2002 3 18 22 10 0 370 4.9325 175.53578 1484.80505 1312.48147 -8.41449 0.00000 -4.47197 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62153 -0.00992 -1.00000 - 16211 2002 3 18 22 10 10 235 4.9326 175.53599 1484.50727 1312.25463 -8.41274 0.00000 -4.47215 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62081 -0.00992 -1.00000 - 16213 2002 3 18 22 10 20 101 4.9327 175.53620 1484.20945 1312.02784 -8.41105 0.00000 -4.47233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.62010 -0.00992 -1.00000 - 16216 2002 3 18 22 10 34 899 4.9328 175.53652 1483.76270 1311.68773 -8.40871 0.00000 -4.47260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61902 -0.00992 -1.00000 - 16218 2002 3 18 22 10 44 765 4.9329 175.53674 1483.46484 1311.46104 -8.40733 0.00000 -4.47279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61830 -0.00992 -1.00000 - 16220 2002 3 18 22 10 54 631 4.9330 175.53696 1483.16698 1311.23440 -8.40611 0.00000 -4.47299 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61759 -0.00992 -1.00000 - 16222 2002 3 18 22 11 4 497 4.9331 175.53718 1482.86914 1311.00782 -8.40509 0.00000 -4.47320 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61687 -0.00991 -1.00000 - 16224 2002 3 18 22 11 14 363 4.9331 175.53740 1482.57132 1310.78130 -8.40429 0.00000 -4.47343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61615 -0.00991 -1.00000 - 16226 2002 3 18 22 11 24 229 4.9332 175.53763 1482.27356 1310.55484 -8.40374 0.00000 -4.47368 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61543 -0.00991 -1.00000 - 16228 2002 3 18 22 11 34 96 4.9333 175.53785 1481.97588 1310.32845 -8.40346 0.00000 -4.47394 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61472 -0.00991 -1.00000 - 16230 2002 3 18 22 11 43 963 4.9334 175.53808 1481.67829 1310.10214 -8.40345 0.00000 -4.47422 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61400 -0.00991 -1.00000 - 16232 2002 3 18 22 11 53 830 4.9335 175.53832 1481.38083 1309.87591 -8.40373 0.00000 -4.47452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61328 -0.00991 -1.00000 - 16234 2002 3 18 22 12 3 697 4.9336 175.53855 1481.08352 1309.64977 -8.40429 0.00000 -4.47483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61256 -0.00991 -1.00000 - 16236 2002 3 18 22 12 13 564 4.9337 175.53879 1480.78640 1309.42372 -8.40514 0.00000 -4.47516 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61185 -0.00991 -1.00000 - 16238 2002 3 18 22 12 23 432 4.9338 175.53903 1480.48947 1309.19776 -8.40626 0.00000 -4.47550 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61113 -0.00991 -1.00000 - 16240 2002 3 18 22 12 33 299 4.9338 175.53927 1480.19277 1308.97191 -8.40762 0.00000 -4.47585 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.61041 -0.00991 -1.00000 - 16242 2002 3 18 22 12 43 167 4.9339 175.53951 1479.89631 1308.74615 -8.40918 0.00000 -4.47621 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60969 -0.00991 -1.00000 - 16244 2002 3 18 22 12 53 35 4.9340 175.53975 1479.60011 1308.52050 -8.41090 0.00000 -4.47657 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60897 -0.00990 -1.00000 - 16246 2002 3 18 22 13 2 903 4.9341 175.54000 1479.30416 1308.29495 -8.41274 0.00000 -4.47693 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60826 -0.00990 -1.00000 - 16248 2002 3 18 22 13 12 772 4.9342 175.54025 1479.00846 1308.06951 -8.41464 0.00000 -4.47729 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60754 -0.00990 -1.00000 - 16250 2002 3 18 22 13 22 640 4.9343 175.54051 1478.71303 1307.84417 -8.41654 0.00000 -4.47764 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60682 -0.00990 -1.00000 - 16252 2002 3 18 22 13 32 509 4.9344 175.54076 1478.41783 1307.61892 -8.41838 0.00000 -4.47799 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60610 -0.00990 -1.00000 - 16254 2002 3 18 22 13 42 378 4.9345 175.54102 1478.12285 1307.39378 -8.42011 0.00000 -4.47832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60539 -0.00990 -1.00000 - 16256 2002 3 18 22 13 52 247 4.9346 175.54128 1477.82808 1307.16872 -8.42167 0.00000 -4.47863 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60467 -0.00990 -1.00000 - 16258 2002 3 18 22 14 2 116 4.9347 175.54154 1477.53349 1306.94376 -8.42302 0.00000 -4.47892 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60395 -0.00990 -1.00000 - 16260 2002 3 18 22 14 11 986 4.9347 175.54181 1477.23905 1306.71887 -8.42411 0.00000 -4.47920 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60323 -0.00990 -1.00000 - 16262 2002 3 18 22 14 21 855 4.9348 175.54207 1476.94475 1306.49407 -8.42492 0.00000 -4.47944 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60252 -0.00990 -1.00000 - 16264 2002 3 18 22 14 31 725 4.9349 175.54234 1476.65054 1306.26934 -8.42542 0.00000 -4.47967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60180 -0.00990 -1.00000 - 16266 2002 3 18 22 14 41 595 4.9350 175.54262 1476.35641 1306.04468 -8.42561 0.00000 -4.47986 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60108 -0.00990 -1.00000 - 16268 2002 3 18 22 14 51 465 4.9351 175.54289 1476.06234 1305.82008 -8.42549 0.00000 -4.48003 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.60036 -0.00989 -1.00000 - 16270 2002 3 18 22 15 1 335 4.9352 175.54317 1475.76830 1305.59554 -8.42507 0.00000 -4.48017 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59964 -0.00989 -1.00000 - 16272 2002 3 18 22 15 11 206 4.9353 175.54345 1475.47429 1305.37105 -8.42438 0.00000 -4.48029 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59893 -0.00989 -1.00000 - 16274 2002 3 18 22 15 21 77 4.9354 175.54373 1475.18028 1305.14659 -8.42347 0.00000 -4.48040 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59821 -0.00989 -1.00000 - 16276 2002 3 18 22 15 30 948 4.9355 175.54401 1474.88625 1304.92217 -8.42239 0.00000 -4.48049 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59749 -0.00989 -1.00000 - 16278 2002 3 18 22 15 40 819 4.9356 175.54430 1474.59221 1304.69778 -8.42121 0.00000 -4.48057 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59677 -0.00989 -1.00000 - 16280 2002 3 18 22 15 50 690 4.9357 175.54459 1474.29818 1304.47344 -8.41998 0.00000 -4.48063 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59606 -0.00989 -1.00000 - 16282 2002 3 18 22 16 0 562 4.9358 175.54488 1474.00416 1304.24914 -8.41872 0.00000 -4.48068 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59534 -0.00989 -1.00000 - 16284 2002 3 18 22 16 10 433 4.9359 175.54517 1473.71018 1304.02489 -8.41747 0.00000 -4.48072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59462 -0.00989 -1.00000 - 16286 2002 3 18 22 16 20 305 4.9360 175.54547 1473.41625 1303.80068 -8.41623 0.00000 -4.48076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59390 -0.00989 -1.00000 - 16288 2002 3 18 22 16 30 177 4.9360 175.54577 1473.12238 1303.57652 -8.41502 0.00000 -4.48080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59318 -0.00989 -1.00000 - 16290 2002 3 18 22 16 40 49 4.9361 175.54607 1472.82857 1303.35241 -8.41387 0.00000 -4.48084 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59247 -0.00989 -1.00000 - 16293 2002 3 18 22 16 54 858 4.9363 175.54653 1472.38801 1303.01633 -8.41228 0.00000 -4.48091 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59139 -0.00988 -1.00000 - 16295 2002 3 18 22 17 4 731 4.9364 175.54684 1472.09440 1302.79233 -8.41132 0.00000 -4.48096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.59067 -0.00988 -1.00000 - 16297 2002 3 18 22 17 14 604 4.9365 175.54715 1471.80088 1302.56839 -8.41043 0.00000 -4.48103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58995 -0.00988 -1.00000 - 16299 2002 3 18 22 17 24 477 4.9366 175.54746 1471.50744 1302.34450 -8.40961 0.00000 -4.48112 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58923 -0.00988 -1.00000 - 16301 2002 3 18 22 17 34 350 4.9367 175.54778 1471.21407 1302.12065 -8.40882 0.00000 -4.48121 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58852 -0.00988 -1.00000 - 16303 2002 3 18 22 17 44 224 4.9368 175.54810 1470.92078 1301.89686 -8.40807 0.00000 -4.48133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58780 -0.00988 -1.00000 - 16305 2002 3 18 22 17 54 97 4.9369 175.54842 1470.62756 1301.67311 -8.40734 0.00000 -4.48147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58708 -0.00988 -1.00000 - 16307 2002 3 18 22 18 3 971 4.9370 175.54874 1470.33439 1301.44942 -8.40663 0.00000 -4.48163 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58636 -0.00988 -1.00000 - 16309 2002 3 18 22 18 13 845 4.9371 175.54907 1470.04128 1301.22577 -8.40594 0.00000 -4.48182 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58564 -0.00988 -1.00000 - 16311 2002 3 18 22 18 23 719 4.9372 175.54940 1469.74821 1301.00218 -8.40528 0.00000 -4.48203 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58493 -0.00988 -1.00000 - 16313 2002 3 18 22 18 33 594 4.9373 175.54973 1469.45518 1300.77864 -8.40466 0.00000 -4.48227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58421 -0.00988 -1.00000 - 16315 2002 3 18 22 18 43 469 4.9374 175.55006 1469.16220 1300.55515 -8.40410 0.00000 -4.48254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58349 -0.00987 -1.00000 - 16317 2002 3 18 22 18 53 343 4.9375 175.55040 1468.86925 1300.33172 -8.40360 0.00000 -4.48283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58277 -0.00987 -1.00000 - 16319 2002 3 18 22 19 3 218 4.9376 175.55074 1468.57634 1300.10835 -8.40318 0.00000 -4.48316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58205 -0.00987 -1.00000 - 16321 2002 3 18 22 19 13 94 4.9376 175.55108 1468.28348 1299.88503 -8.40286 0.00000 -4.48353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58134 -0.00987 -1.00000 - 16323 2002 3 18 22 19 22 969 4.9377 175.55143 1467.99067 1299.66178 -8.40267 0.00000 -4.48392 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.58062 -0.00987 -1.00000 - 16325 2002 3 18 22 19 32 845 4.9378 175.55178 1467.69791 1299.43859 -8.40261 0.00000 -4.48435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57990 -0.00987 -1.00000 - 16327 2002 3 18 22 19 42 721 4.9379 175.55213 1467.40522 1299.21546 -8.40271 0.00000 -4.48481 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57918 -0.00987 -1.00000 - 16329 2002 3 18 22 19 52 597 4.9380 175.55248 1467.11261 1298.99241 -8.40297 0.00000 -4.48530 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57846 -0.00987 -1.00000 - 16331 2002 3 18 22 20 2 473 4.9381 175.55284 1466.82008 1298.76943 -8.40341 0.00000 -4.48583 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57775 -0.00987 -1.00000 - 16333 2002 3 18 22 20 12 349 4.9382 175.55320 1466.52765 1298.54653 -8.40402 0.00000 -4.48638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57703 -0.00987 -1.00000 - 16335 2002 3 18 22 20 22 226 4.9384 175.55356 1466.23533 1298.32371 -8.40480 0.00000 -4.48697 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57631 -0.00987 -1.00000 - 16337 2002 3 18 22 20 32 103 4.9385 175.55393 1465.94313 1298.10098 -8.40576 0.00000 -4.48758 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57559 -0.00987 -1.00000 - 16339 2002 3 18 22 20 41 980 4.9386 175.55430 1465.65106 1297.87833 -8.40688 0.00000 -4.48821 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57487 -0.00986 -1.00000 - 16341 2002 3 18 22 20 51 857 4.9387 175.55467 1465.35913 1297.65577 -8.40815 0.00000 -4.48887 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57415 -0.00986 -1.00000 - 16343 2002 3 18 22 21 1 735 4.9388 175.55504 1465.06735 1297.43330 -8.40957 0.00000 -4.48954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57344 -0.00986 -1.00000 - 16345 2002 3 18 22 21 11 612 4.9389 175.55542 1464.77573 1297.21093 -8.41111 0.00000 -4.49023 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57272 -0.00986 -1.00000 - 16347 2002 3 18 22 21 21 490 4.9390 175.55580 1464.48427 1296.98865 -8.41275 0.00000 -4.49093 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57200 -0.00986 -1.00000 - 16349 2002 3 18 22 21 31 368 4.9391 175.55619 1464.19299 1296.76647 -8.41449 0.00000 -4.49164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57128 -0.00986 -1.00000 - 16351 2002 3 18 22 21 41 247 4.9392 175.55657 1463.90187 1296.54438 -8.41629 0.00000 -4.49235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.57056 -0.00986 -1.00000 - 16353 2002 3 18 22 21 51 125 4.9393 175.55696 1463.61094 1296.32239 -8.41813 0.00000 -4.49306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56984 -0.00986 -1.00000 - 16355 2002 3 18 22 22 1 4 4.9394 175.55735 1463.32018 1296.10050 -8.41999 0.00000 -4.49376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56913 -0.00986 -1.00000 - 16357 2002 3 18 22 22 10 883 4.9395 175.55775 1463.02959 1295.87870 -8.42183 0.00000 -4.49446 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56841 -0.00986 -1.00000 - 16359 2002 3 18 22 22 20 762 4.9396 175.55814 1462.73918 1295.65700 -8.42363 0.00000 -4.49514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56769 -0.00986 -1.00000 - 16361 2002 3 18 22 22 30 641 4.9397 175.55854 1462.44893 1295.43540 -8.42536 0.00000 -4.49581 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56697 -0.00986 -1.00000 - 16363 2002 3 18 22 22 40 521 4.9398 175.55895 1462.15884 1295.21389 -8.42699 0.00000 -4.49646 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56625 -0.00985 -1.00000 - 16365 2002 3 18 22 22 50 400 4.9399 175.55935 1461.86890 1294.99246 -8.42851 0.00000 -4.49708 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56553 -0.00985 -1.00000 - 16367 2002 3 18 22 23 0 280 4.9400 175.55976 1461.57910 1294.77113 -8.42990 0.00000 -4.49768 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56481 -0.00985 -1.00000 - 16369 2002 3 18 22 23 10 160 4.9401 175.56018 1461.28944 1294.54988 -8.43114 0.00000 -4.49824 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56410 -0.00985 -1.00000 - 16371 2002 3 18 22 23 20 41 4.9402 175.56059 1460.99989 1294.32871 -8.43223 0.00000 -4.49878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56338 -0.00985 -1.00000 - 16374 2002 3 18 22 23 34 862 4.9404 175.56122 1460.56578 1293.99711 -8.43357 0.00000 -4.49951 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56230 -0.00985 -1.00000 - 16376 2002 3 18 22 23 44 743 4.9405 175.56164 1460.27650 1293.77614 -8.43426 0.00000 -4.49995 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56158 -0.00985 -1.00000 - 16378 2002 3 18 22 23 54 624 4.9406 175.56207 1459.98732 1293.55524 -8.43478 0.00000 -4.50035 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56086 -0.00985 -1.00000 - 16380 2002 3 18 22 24 4 505 4.9407 175.56250 1459.69824 1293.33442 -8.43515 0.00000 -4.50071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.56014 -0.00985 -1.00000 - 16382 2002 3 18 22 24 14 387 4.9408 175.56293 1459.40924 1293.11367 -8.43537 0.00000 -4.50103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55943 -0.00985 -1.00000 - 16384 2002 3 18 22 24 24 268 4.9409 175.56337 1459.12034 1292.89298 -8.43543 0.00000 -4.50131 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55871 -0.00985 -1.00000 - 16386 2002 3 18 22 24 34 150 4.9410 175.56381 1458.83153 1292.67236 -8.43535 0.00000 -4.50155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55799 -0.00984 -1.00000 - 16388 2002 3 18 22 24 44 33 4.9411 175.56425 1458.54281 1292.45181 -8.43514 0.00000 -4.50174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55727 -0.00984 -1.00000 - 16390 2002 3 18 22 24 53 915 4.9412 175.56469 1458.25418 1292.23131 -8.43481 0.00000 -4.50190 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55655 -0.00984 -1.00000 - 16392 2002 3 18 22 25 3 798 4.9413 175.56514 1457.96565 1292.01088 -8.43438 0.00000 -4.50202 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55583 -0.00984 -1.00000 - 16394 2002 3 18 22 25 13 680 4.9414 175.56559 1457.67722 1291.79050 -8.43386 0.00000 -4.50210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55511 -0.00984 -1.00000 - 16396 2002 3 18 22 25 23 563 4.9415 175.56605 1457.38890 1291.57018 -8.43327 0.00000 -4.50214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55439 -0.00984 -1.00000 - 16398 2002 3 18 22 25 33 447 4.9417 175.56650 1457.10068 1291.34992 -8.43262 0.00000 -4.50215 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55368 -0.00984 -1.00000 - 16400 2002 3 18 22 25 43 330 4.9418 175.56697 1456.81258 1291.12970 -8.43191 0.00000 -4.50212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55296 -0.00984 -1.00000 - 16402 2002 3 18 22 25 53 214 4.9419 175.56743 1456.52457 1290.90954 -8.43115 0.00000 -4.50207 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55224 -0.00984 -1.00000 - 16404 2002 3 18 22 26 3 98 4.9420 175.56790 1456.23667 1290.68943 -8.43033 0.00000 -4.50199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55152 -0.00984 -1.00000 - 16406 2002 3 18 22 26 12 982 4.9421 175.56837 1455.94887 1290.46936 -8.42943 0.00000 -4.50189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55080 -0.00984 -1.00000 - 16408 2002 3 18 22 26 22 866 4.9422 175.56884 1455.66115 1290.24933 -8.42845 0.00000 -4.50176 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.55008 -0.00983 -1.00000 - 16410 2002 3 18 22 26 32 751 4.9423 175.56932 1455.37350 1290.02935 -8.42737 0.00000 -4.50161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54936 -0.00983 -1.00000 - 16412 2002 3 18 22 26 42 636 4.9424 175.56980 1455.08592 1289.80941 -8.42618 0.00000 -4.50145 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54864 -0.00983 -1.00000 - 16414 2002 3 18 22 26 52 521 4.9425 175.57028 1454.79838 1289.58950 -8.42487 0.00000 -4.50128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54793 -0.00983 -1.00000 - 16416 2002 3 18 22 27 2 406 4.9426 175.57077 1454.51089 1289.36963 -8.42343 0.00000 -4.50109 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54721 -0.00983 -1.00000 - 16418 2002 3 18 22 27 12 291 4.9428 175.57126 1454.22341 1289.14980 -8.42188 0.00000 -4.50090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54649 -0.00983 -1.00000 - 16420 2002 3 18 22 27 22 177 4.9429 175.57175 1453.93595 1288.92999 -8.42023 0.00000 -4.50071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54577 -0.00983 -1.00000 - 16422 2002 3 18 22 27 32 63 4.9430 175.57225 1453.64850 1288.71022 -8.41851 0.00000 -4.50052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54505 -0.00983 -1.00000 - 16424 2002 3 18 22 27 41 949 4.9431 175.57275 1453.36105 1288.49048 -8.41673 0.00000 -4.50034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54433 -0.00983 -1.00000 - 16426 2002 3 18 22 27 51 835 4.9432 175.57325 1453.07360 1288.27077 -8.41494 0.00000 -4.50017 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54361 -0.00983 -1.00000 - 16428 2002 3 18 22 28 1 722 4.9433 175.57376 1452.78616 1288.05109 -8.41317 0.00000 -4.50001 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54289 -0.00983 -1.00000 - 16430 2002 3 18 22 28 11 609 4.9434 175.57427 1452.49872 1287.83145 -8.41145 0.00000 -4.49988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54217 -0.00983 -1.00000 - 16432 2002 3 18 22 28 21 496 4.9435 175.57478 1452.21129 1287.61184 -8.40982 0.00000 -4.49976 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54146 -0.00982 -1.00000 - 16434 2002 3 18 22 28 31 383 4.9437 175.57530 1451.92387 1287.39227 -8.40830 0.00000 -4.49967 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54074 -0.00982 -1.00000 - 16436 2002 3 18 22 28 41 271 4.9438 175.57582 1451.63648 1287.17273 -8.40691 0.00000 -4.49962 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.54002 -0.00982 -1.00000 - 16438 2002 3 18 22 28 51 158 4.9439 175.57635 1451.34913 1286.95324 -8.40568 0.00000 -4.49959 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53930 -0.00982 -1.00000 - 16440 2002 3 18 22 29 1 46 4.9440 175.57687 1451.06181 1286.73380 -8.40463 0.00000 -4.49961 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53858 -0.00982 -1.00000 - 16442 2002 3 18 22 29 10 934 4.9441 175.57740 1450.77454 1286.51440 -8.40377 0.00000 -4.49966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53786 -0.00982 -1.00000 - 16444 2002 3 18 22 29 20 823 4.9442 175.57794 1450.48732 1286.29506 -8.40311 0.00000 -4.49975 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53714 -0.00982 -1.00000 - 16446 2002 3 18 22 29 30 711 4.9443 175.57848 1450.20016 1286.07577 -8.40264 0.00000 -4.49988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53642 -0.00982 -1.00000 - 16448 2002 3 18 22 29 40 600 4.9444 175.57902 1449.91306 1285.85654 -8.40238 0.00000 -4.50006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53570 -0.00982 -1.00000 - 16450 2002 3 18 22 29 50 489 4.9446 175.57956 1449.62604 1285.63737 -8.40232 0.00000 -4.50028 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53498 -0.00982 -1.00000 - 16452 2002 3 18 22 30 0 378 4.9447 175.58011 1449.33910 1285.41827 -8.40246 0.00000 -4.50054 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53426 -0.00982 -1.00000 - 16454 2002 3 18 22 30 10 268 4.9448 175.58066 1449.05223 1285.19923 -8.40279 0.00000 -4.50084 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53354 -0.00982 -1.00000 - 16456 2002 3 18 22 30 20 158 4.9449 175.58122 1448.76545 1284.98024 -8.40330 0.00000 -4.50120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53283 -0.00981 -1.00000 - 16458 2002 3 18 22 30 30 48 4.9450 175.58178 1448.47874 1284.76132 -8.40400 0.00000 -4.50159 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53211 -0.00981 -1.00000 - 16461 2002 3 18 22 30 44 883 4.9452 175.58263 1448.04883 1284.43308 -8.40544 0.00000 -4.50227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53103 -0.00981 -1.00000 - 16463 2002 3 18 22 30 54 774 4.9453 175.58319 1447.76237 1284.21436 -8.40663 0.00000 -4.50276 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.53031 -0.00981 -1.00000 - 16465 2002 3 18 22 31 4 664 4.9454 175.58377 1447.47603 1283.99572 -8.40798 0.00000 -4.50328 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52959 -0.00981 -1.00000 - 16467 2002 3 18 22 31 14 556 4.9455 175.58434 1447.18983 1283.77717 -8.40945 0.00000 -4.50383 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52887 -0.00981 -1.00000 - 16469 2002 3 18 22 31 24 447 4.9457 175.58492 1446.90378 1283.55872 -8.41104 0.00000 -4.50441 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52815 -0.00981 -1.00000 - 16471 2002 3 18 22 31 34 338 4.9458 175.58551 1446.61790 1283.34036 -8.41273 0.00000 -4.50501 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52743 -0.00981 -1.00000 - 16473 2002 3 18 22 31 44 230 4.9459 175.58610 1446.33219 1283.12209 -8.41452 0.00000 -4.50562 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52671 -0.00981 -1.00000 - 16475 2002 3 18 22 31 54 122 4.9460 175.58669 1446.04666 1282.90392 -8.41639 0.00000 -4.50625 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52599 -0.00981 -1.00000 - 16477 2002 3 18 22 32 4 14 4.9461 175.58728 1445.76132 1282.68585 -8.41833 0.00000 -4.50689 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52527 -0.00981 -1.00000 - 16479 2002 3 18 22 32 13 907 4.9462 175.58788 1445.47618 1282.46788 -8.42032 0.00000 -4.50753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52455 -0.00980 -1.00000 - 16481 2002 3 18 22 32 23 799 4.9464 175.58849 1445.19123 1282.25000 -8.42233 0.00000 -4.50817 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52383 -0.00980 -1.00000 - 16483 2002 3 18 22 32 33 692 4.9465 175.58909 1444.90648 1282.03222 -8.42432 0.00000 -4.50880 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52311 -0.00980 -1.00000 - 16485 2002 3 18 22 32 43 585 4.9466 175.58970 1444.62192 1281.81453 -8.42624 0.00000 -4.50943 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52240 -0.00980 -1.00000 - 16487 2002 3 18 22 32 53 479 4.9467 175.59032 1444.33754 1281.59693 -8.42806 0.00000 -4.51005 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52168 -0.00980 -1.00000 - 16489 2002 3 18 22 33 3 372 4.9468 175.59094 1444.05333 1281.37942 -8.42974 0.00000 -4.51065 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52096 -0.00980 -1.00000 - 16491 2002 3 18 22 33 13 266 4.9470 175.59156 1443.76928 1281.16200 -8.43124 0.00000 -4.51123 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.52024 -0.00980 -1.00000 - 16493 2002 3 18 22 33 23 160 4.9471 175.59219 1443.48537 1280.94465 -8.43254 0.00000 -4.51178 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51952 -0.00980 -1.00000 - 16495 2002 3 18 22 33 33 55 4.9472 175.59282 1443.20159 1280.72739 -8.43363 0.00000 -4.51231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51880 -0.00980 -1.00000 - 16497 2002 3 18 22 33 42 949 4.9473 175.59345 1442.91792 1280.51019 -8.43448 0.00000 -4.51281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51808 -0.00980 -1.00000 - 16499 2002 3 18 22 33 52 844 4.9474 175.59409 1442.63436 1280.29306 -8.43509 0.00000 -4.51329 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51736 -0.00980 -1.00000 - 16501 2002 3 18 22 34 2 739 4.9475 175.59473 1442.35088 1280.07600 -8.43547 0.00000 -4.51373 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51664 -0.00980 -1.00000 - 16503 2002 3 18 22 34 12 634 4.9477 175.59538 1442.06748 1279.85899 -8.43563 0.00000 -4.51414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51592 -0.00979 -1.00000 - 16505 2002 3 18 22 34 22 530 4.9478 175.59603 1441.78415 1279.64205 -8.43556 0.00000 -4.51452 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51520 -0.00979 -1.00000 - 16507 2002 3 18 22 34 32 425 4.9479 175.59669 1441.50087 1279.42515 -8.43530 0.00000 -4.51487 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51448 -0.00979 -1.00000 - 16509 2002 3 18 22 34 42 321 4.9480 175.59735 1441.21763 1279.20830 -8.43487 0.00000 -4.51519 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51376 -0.00979 -1.00000 - 16511 2002 3 18 22 34 52 218 4.9482 175.59801 1440.93443 1278.99150 -8.43427 0.00000 -4.51548 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51304 -0.00979 -1.00000 - 16513 2002 3 18 22 35 2 114 4.9483 175.59868 1440.65126 1278.77475 -8.43354 0.00000 -4.51575 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51232 -0.00979 -1.00000 - 16515 2002 3 18 22 35 12 11 4.9484 175.59935 1440.36811 1278.55804 -8.43269 0.00000 -4.51599 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51160 -0.00979 -1.00000 - 16517 2002 3 18 22 35 21 908 4.9485 175.60002 1440.08497 1278.34137 -8.43173 0.00000 -4.51620 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51088 -0.00979 -1.00000 - 16519 2002 3 18 22 35 31 805 4.9486 175.60070 1439.80185 1278.12474 -8.43070 0.00000 -4.51640 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.51016 -0.00979 -1.00000 - 16521 2002 3 18 22 35 41 703 4.9488 175.60138 1439.51874 1277.90815 -8.42961 0.00000 -4.51658 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50944 -0.00979 -1.00000 - 16523 2002 3 18 22 35 51 600 4.9489 175.60207 1439.23564 1277.69160 -8.42847 0.00000 -4.51674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50872 -0.00979 -1.00000 - 16525 2002 3 18 22 36 1 498 4.9490 175.60276 1438.95255 1277.47509 -8.42732 0.00000 -4.51690 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50800 -0.00978 -1.00000 - 16527 2002 3 18 22 36 11 396 4.9491 175.60346 1438.66947 1277.25863 -8.42617 0.00000 -4.51703 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50728 -0.00978 -1.00000 - 16529 2002 3 18 22 36 21 295 4.9492 175.60416 1438.38642 1277.04221 -8.42505 0.00000 -4.51717 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50656 -0.00978 -1.00000 - 16531 2002 3 18 22 36 31 193 4.9494 175.60486 1438.10338 1276.82583 -8.42398 0.00000 -4.51729 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50584 -0.00978 -1.00000 - 16533 2002 3 18 22 36 41 92 4.9495 175.60557 1437.82038 1276.60950 -8.42300 0.00000 -4.51741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50512 -0.00978 -1.00000 - 16535 2002 3 18 22 36 50 992 4.9496 175.60628 1437.53743 1276.39321 -8.42212 0.00000 -4.51753 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50440 -0.00978 -1.00000 - 16537 2002 3 18 22 37 0 891 4.9497 175.60700 1437.25454 1276.17698 -8.42137 0.00000 -4.51765 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50368 -0.00978 -1.00000 - 16539 2002 3 18 22 37 10 791 4.9499 175.60772 1436.97171 1275.96080 -8.42077 0.00000 -4.51778 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50296 -0.00978 -1.00000 - 16541 2002 3 18 22 37 20 691 4.9500 175.60844 1436.68897 1275.74468 -8.42032 0.00000 -4.51790 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50224 -0.00978 -1.00000 - 16543 2002 3 18 22 37 30 591 4.9501 175.60917 1436.40632 1275.52862 -8.42004 0.00000 -4.51803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50152 -0.00978 -1.00000 - 16545 2002 3 18 22 37 40 491 4.9502 175.60990 1436.12378 1275.31262 -8.41991 0.00000 -4.51817 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50080 -0.00978 -1.00000 - 16547 2002 3 18 22 37 50 392 4.9504 175.61064 1435.84136 1275.09668 -8.41994 0.00000 -4.51831 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.50008 -0.00978 -1.00000 - 16549 2002 3 18 22 38 0 293 4.9505 175.61138 1435.55906 1274.88081 -8.42011 0.00000 -4.51845 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49936 -0.00977 -1.00000 - 16551 2002 3 18 22 38 10 194 4.9506 175.61213 1435.27689 1274.66501 -8.42040 0.00000 -4.51860 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49864 -0.00977 -1.00000 - 16553 2002 3 18 22 38 20 95 4.9507 175.61288 1434.99485 1274.44927 -8.42079 0.00000 -4.51876 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49792 -0.00977 -1.00000 - 16556 2002 3 18 22 38 34 948 4.9509 175.61401 1434.57204 1274.12580 -8.42151 0.00000 -4.51899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49684 -0.00977 -1.00000 - 16558 2002 3 18 22 38 44 850 4.9510 175.61477 1434.29034 1273.91025 -8.42206 0.00000 -4.51915 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49612 -0.00977 -1.00000 - 16560 2002 3 18 22 38 54 752 4.9512 175.61554 1434.00877 1273.69476 -8.42264 0.00000 -4.51931 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49540 -0.00977 -1.00000 - 16562 2002 3 18 22 39 4 655 4.9513 175.61631 1433.72734 1273.47935 -8.42322 0.00000 -4.51947 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49468 -0.00977 -1.00000 - 16564 2002 3 18 22 39 14 557 4.9514 175.61708 1433.44602 1273.26400 -8.42379 0.00000 -4.51962 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49396 -0.00977 -1.00000 - 16566 2002 3 18 22 39 24 460 4.9515 175.61786 1433.16483 1273.04873 -8.42434 0.00000 -4.51977 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49324 -0.00977 -1.00000 - 16568 2002 3 18 22 39 34 364 4.9517 175.61864 1432.88376 1272.83353 -8.42485 0.00000 -4.51992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49252 -0.00977 -1.00000 - 16570 2002 3 18 22 39 44 267 4.9518 175.61943 1432.60280 1272.61840 -8.42531 0.00000 -4.52006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49180 -0.00977 -1.00000 - 16572 2002 3 18 22 39 54 171 4.9519 175.62022 1432.32194 1272.40333 -8.42570 0.00000 -4.52020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49108 -0.00976 -1.00000 - 16574 2002 3 18 22 40 4 75 4.9520 175.62101 1432.04119 1272.18833 -8.42603 0.00000 -4.52033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.49036 -0.00976 -1.00000 - 16576 2002 3 18 22 40 13 979 4.9522 175.62181 1431.76054 1271.97340 -8.42628 0.00000 -4.52045 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48964 -0.00976 -1.00000 - 16578 2002 3 18 22 40 23 884 4.9523 175.62262 1431.47998 1271.75853 -8.42645 0.00000 -4.52056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48892 -0.00976 -1.00000 - 16580 2002 3 18 22 40 33 789 4.9524 175.62342 1431.19952 1271.54373 -8.42654 0.00000 -4.52066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48820 -0.00976 -1.00000 - 16582 2002 3 18 22 40 43 694 4.9526 175.62424 1430.91914 1271.32899 -8.42655 0.00000 -4.52075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48748 -0.00976 -1.00000 - 16584 2002 3 18 22 40 53 599 4.9527 175.62505 1430.63886 1271.11431 -8.42648 0.00000 -4.52083 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48676 -0.00976 -1.00000 - 16586 2002 3 18 22 41 3 504 4.9528 175.62588 1430.35866 1270.89969 -8.42636 0.00000 -4.52090 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48604 -0.00976 -1.00000 - 16588 2002 3 18 22 41 13 410 4.9529 175.62670 1430.07855 1270.68513 -8.42617 0.00000 -4.52096 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48532 -0.00976 -1.00000 - 16590 2002 3 18 22 41 23 316 4.9531 175.62753 1429.79854 1270.47063 -8.42594 0.00000 -4.52102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48460 -0.00976 -1.00000 - 16592 2002 3 18 22 41 33 223 4.9532 175.62837 1429.51861 1270.25618 -8.42567 0.00000 -4.52106 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48388 -0.00976 -1.00000 - 16594 2002 3 18 22 41 43 129 4.9533 175.62921 1429.23878 1270.04180 -8.42536 0.00000 -4.52110 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48316 -0.00976 -1.00000 - 16596 2002 3 18 22 41 53 36 4.9534 175.63005 1428.95904 1269.82746 -8.42502 0.00000 -4.52114 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48244 -0.00975 -1.00000 - 16598 2002 3 18 22 42 2 943 4.9536 175.63090 1428.67939 1269.61319 -8.42464 0.00000 -4.52116 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48172 -0.00975 -1.00000 - 16600 2002 3 18 22 42 12 851 4.9537 175.63175 1428.39983 1269.39896 -8.42422 0.00000 -4.52119 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48100 -0.00975 -1.00000 - 16602 2002 3 18 22 42 22 758 4.9538 175.63261 1428.12036 1269.18479 -8.42376 0.00000 -4.52120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.48028 -0.00975 -1.00000 - 16604 2002 3 18 22 42 32 666 4.9540 175.63347 1427.84097 1268.97066 -8.42326 0.00000 -4.52122 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47956 -0.00975 -1.00000 - 16606 2002 3 18 22 42 42 574 4.9541 175.63434 1427.56166 1268.75659 -8.42271 0.00000 -4.52124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47884 -0.00975 -1.00000 - 16608 2002 3 18 22 42 52 483 4.9542 175.63521 1427.28242 1268.54256 -8.42211 0.00000 -4.52126 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47812 -0.00975 -1.00000 - 16610 2002 3 18 22 43 2 391 4.9544 175.63609 1427.00325 1268.32857 -8.42146 0.00000 -4.52128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47739 -0.00975 -1.00000 - 16612 2002 3 18 22 43 12 300 4.9545 175.63697 1426.72414 1268.11464 -8.42077 0.00000 -4.52130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47667 -0.00975 -1.00000 - 16614 2002 3 18 22 43 22 209 4.9546 175.63785 1426.44507 1267.90074 -8.42004 0.00000 -4.52133 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47595 -0.00975 -1.00000 - 16616 2002 3 18 22 43 32 119 4.9547 175.63874 1426.16606 1267.68689 -8.41927 0.00000 -4.52137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47523 -0.00975 -1.00000 - 16618 2002 3 18 22 43 42 28 4.9549 175.63964 1425.88708 1267.47308 -8.41846 0.00000 -4.52142 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47451 -0.00974 -1.00000 - 16620 2002 3 18 22 43 51 938 4.9550 175.64053 1425.60813 1267.25932 -8.41763 0.00000 -4.52148 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47379 -0.00974 -1.00000 - 16622 2002 3 18 22 44 1 848 4.9551 175.64144 1425.32922 1267.04560 -8.41678 0.00000 -4.52155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47307 -0.00974 -1.00000 - 16624 2002 3 18 22 44 11 759 4.9553 175.64235 1425.05033 1266.83192 -8.41592 0.00000 -4.52163 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47235 -0.00974 -1.00000 - 16626 2002 3 18 22 44 21 670 4.9554 175.64326 1424.77147 1266.61828 -8.41506 0.00000 -4.52174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47163 -0.00974 -1.00000 - 16628 2002 3 18 22 44 31 581 4.9555 175.64418 1424.49263 1266.40468 -8.41423 0.00000 -4.52186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47091 -0.00974 -1.00000 - 16630 2002 3 18 22 44 41 492 4.9557 175.64510 1424.21382 1266.19113 -8.41344 0.00000 -4.52200 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.47019 -0.00974 -1.00000 - 16632 2002 3 18 22 44 51 403 4.9558 175.64603 1423.93505 1265.97763 -8.41271 0.00000 -4.52216 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46947 -0.00974 -1.00000 - 16634 2002 3 18 22 45 1 315 4.9559 175.64696 1423.65631 1265.76418 -8.41207 0.00000 -4.52235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46875 -0.00974 -1.00000 - 16636 2002 3 18 22 45 11 227 4.9560 175.64790 1423.37762 1265.55077 -8.41154 0.00000 -4.52256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46803 -0.00974 -1.00000 - 16638 2002 3 18 22 45 21 139 4.9562 175.64884 1423.09898 1265.33739 -8.41112 0.00000 -4.52281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46730 -0.00974 -1.00000 - 16640 2002 3 18 22 45 31 52 4.9563 175.64978 1422.82038 1265.12406 -8.41087 0.00000 -4.52309 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46658 -0.00974 -1.00000 - 16642 2002 3 18 22 45 40 965 4.9564 175.65073 1422.54183 1264.91078 -8.41081 0.00000 -4.52339 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46586 -0.00973 -1.00000 - 16644 2002 3 18 22 45 50 878 4.9566 175.65169 1422.26336 1264.69756 -8.41093 0.00000 -4.52373 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46514 -0.00973 -1.00000 - 16646 2002 3 18 22 46 0 791 4.9567 175.65265 1421.98497 1264.48440 -8.41125 0.00000 -4.52409 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46442 -0.00973 -1.00000 - 16648 2002 3 18 22 46 10 705 4.9568 175.65362 1421.70667 1264.27130 -8.41172 0.00000 -4.52448 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46370 -0.00973 -1.00000 - 16650 2002 3 18 22 46 20 619 4.9570 175.65459 1421.42848 1264.05827 -8.41234 0.00000 -4.52490 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46298 -0.00973 -1.00000 - 16652 2002 3 18 22 46 30 533 4.9571 175.65556 1421.15039 1263.84532 -8.41308 0.00000 -4.52533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46226 -0.00973 -1.00000 - 16654 2002 3 18 22 46 40 447 4.9572 175.65654 1420.87241 1263.63243 -8.41392 0.00000 -4.52579 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46154 -0.00973 -1.00000 - 16656 2002 3 18 22 46 50 362 4.9574 175.65753 1420.59454 1263.41962 -8.41485 0.00000 -4.52627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46082 -0.00973 -1.00000 - 16658 2002 3 18 22 47 0 277 4.9575 175.65852 1420.31679 1263.20688 -8.41587 0.00000 -4.52677 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.46010 -0.00973 -1.00000 - 16660 2002 3 18 22 47 10 192 4.9576 175.65951 1420.03915 1262.99422 -8.41696 0.00000 -4.52727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45937 -0.00973 -1.00000 - 16662 2002 3 18 22 47 20 108 4.9578 175.66051 1419.76164 1262.78164 -8.41810 0.00000 -4.52779 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45865 -0.00973 -1.00000 - 16664 2002 3 18 22 47 30 23 4.9579 175.66152 1419.48423 1262.56913 -8.41928 0.00000 -4.52832 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45793 -0.00973 -1.00000 - 16667 2002 3 18 22 47 44 897 4.9581 175.66303 1419.06835 1262.25052 -8.42108 0.00000 -4.52912 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45685 -0.00972 -1.00000 - 16669 2002 3 18 22 47 54 814 4.9582 175.66405 1418.79124 1262.03822 -8.42228 0.00000 -4.52966 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45613 -0.00972 -1.00000 - 16671 2002 3 18 22 48 4 730 4.9584 175.66507 1418.51425 1261.82599 -8.42347 0.00000 -4.53019 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45541 -0.00972 -1.00000 - 16673 2002 3 18 22 48 14 647 4.9585 175.66610 1418.23737 1261.61384 -8.42465 0.00000 -4.53072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45469 -0.00972 -1.00000 - 16675 2002 3 18 22 48 24 565 4.9586 175.66713 1417.96061 1261.40177 -8.42581 0.00000 -4.53124 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45397 -0.00972 -1.00000 - 16677 2002 3 18 22 48 34 482 4.9588 175.66817 1417.68397 1261.18978 -8.42694 0.00000 -4.53174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45324 -0.00972 -1.00000 - 16679 2002 3 18 22 48 44 400 4.9589 175.66921 1417.40745 1260.97787 -8.42806 0.00000 -4.53224 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45252 -0.00972 -1.00000 - 16681 2002 3 18 22 48 54 318 4.9590 175.67026 1417.13106 1260.76604 -8.42914 0.00000 -4.53271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45180 -0.00972 -1.00000 - 16683 2002 3 18 22 49 4 236 4.9592 175.67131 1416.85479 1260.55428 -8.43019 0.00000 -4.53317 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45108 -0.00972 -1.00000 - 16685 2002 3 18 22 49 14 155 4.9593 175.67237 1416.57865 1260.34261 -8.43120 0.00000 -4.53360 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.45036 -0.00972 -1.00000 - 16687 2002 3 18 22 49 24 74 4.9594 175.67343 1416.30263 1260.13100 -8.43217 0.00000 -4.53401 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44964 -0.00972 -1.00000 - 16689 2002 3 18 22 49 33 993 4.9596 175.67450 1416.02674 1259.91948 -8.43307 0.00000 -4.53439 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44892 -0.00971 -1.00000 - 16691 2002 3 18 22 49 43 912 4.9597 175.67557 1415.75097 1259.70803 -8.43390 0.00000 -4.53474 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44820 -0.00971 -1.00000 - 16693 2002 3 18 22 49 53 832 4.9598 175.67665 1415.47533 1259.49665 -8.43466 0.00000 -4.53506 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44747 -0.00971 -1.00000 - 16695 2002 3 18 22 50 3 752 4.9600 175.67773 1415.19981 1259.28534 -8.43532 0.00000 -4.53535 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44675 -0.00971 -1.00000 - 16697 2002 3 18 22 50 13 672 4.9601 175.67881 1414.92440 1259.07410 -8.43588 0.00000 -4.53560 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44603 -0.00971 -1.00000 - 16699 2002 3 18 22 50 23 592 4.9603 175.67901 1414.64911 1258.86292 -8.43633 0.00000 -4.53582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44531 -0.00971 -1.00000 - 16701 2002 3 18 22 50 33 513 4.9604 175.67523 1414.37394 1258.65182 -8.43665 0.00000 -4.53600 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44459 -0.00971 -1.00000 - 16703 2002 3 18 22 50 43 434 4.9605 175.67144 1414.09887 1258.44077 -8.43684 0.00000 -4.53614 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44387 -0.00971 -1.00000 - 16705 2002 3 18 22 50 53 355 4.9607 175.66766 1413.82391 1258.22979 -8.43690 0.00000 -4.53624 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44315 -0.00971 -1.00000 - 16707 2002 3 18 22 51 3 277 4.9608 175.66387 1413.54904 1258.01886 -8.43682 0.00000 -4.53630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44242 -0.00971 -1.00000 - 16709 2002 3 18 22 51 13 198 4.9609 175.66009 1413.27428 1257.80799 -8.43659 0.00000 -4.53633 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44170 -0.00971 -1.00000 - 16711 2002 3 18 22 51 23 120 4.9611 175.65630 1412.99960 1257.59717 -8.43624 0.00000 -4.53632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44098 -0.00971 -1.00000 - 16713 2002 3 18 22 51 33 43 4.9612 175.65251 1412.72501 1257.38640 -8.43574 0.00000 -4.53627 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.44026 -0.00970 -1.00000 - 16715 2002 3 18 22 51 42 965 4.9613 175.64872 1412.45051 1257.17568 -8.43512 0.00000 -4.53619 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43954 -0.00970 -1.00000 - 16717 2002 3 18 22 51 52 888 4.9615 175.64494 1412.17609 1256.96501 -8.43437 0.00000 -4.53608 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43882 -0.00970 -1.00000 - 16719 2002 3 18 22 52 2 811 4.9616 175.64115 1411.90174 1256.75437 -8.43349 0.00000 -4.53593 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43809 -0.00970 -1.00000 - 16721 2002 3 18 22 52 12 735 4.9618 175.63736 1411.62745 1256.54378 -8.43250 0.00000 -4.53576 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43737 -0.00970 -1.00000 - 16723 2002 3 18 22 52 22 659 4.9619 175.63357 1411.35323 1256.33323 -8.43139 0.00000 -4.53556 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43665 -0.00970 -1.00000 - 16725 2002 3 18 22 52 32 583 4.9620 175.62978 1411.07906 1256.12271 -8.43018 0.00000 -4.53534 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43593 -0.00970 -1.00000 - 16727 2002 3 18 22 52 42 507 4.9622 175.62599 1410.80494 1255.91222 -8.42886 0.00000 -4.53509 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43521 -0.00970 -1.00000 - 16729 2002 3 18 22 52 52 431 4.9623 175.62220 1410.53086 1255.70177 -8.42744 0.00000 -4.53483 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43449 -0.00970 -1.00000 - 16731 2002 3 18 22 53 2 356 4.9624 175.61841 1410.25682 1255.49135 -8.42593 0.00000 -4.53456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43376 -0.00970 -1.00000 - 16733 2002 3 18 22 53 12 281 4.9626 175.61461 1409.98280 1255.28096 -8.42434 0.00000 -4.53427 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43304 -0.00970 -1.00000 - 16735 2002 3 18 22 53 22 207 4.9627 175.61082 1409.70880 1255.07059 -8.42269 0.00000 -4.53398 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43232 -0.00969 -1.00000 - 16737 2002 3 18 22 53 32 132 4.9629 175.60703 1409.43482 1254.86025 -8.42097 0.00000 -4.53369 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43160 -0.00969 -1.00000 - 16739 2002 3 18 22 53 42 58 4.9630 175.60324 1409.16084 1254.64994 -8.41922 0.00000 -4.53340 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43088 -0.00969 -1.00000 - 16741 2002 3 18 22 53 51 984 4.9631 175.59945 1408.88688 1254.43966 -8.41745 0.00000 -4.53311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.43015 -0.00969 -1.00000 - 16743 2002 3 18 22 54 1 911 4.9633 175.59566 1408.61292 1254.22940 -8.41568 0.00000 -4.53283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42943 -0.00969 -1.00000 - 16745 2002 3 18 22 54 11 838 4.9634 175.59186 1408.33897 1254.01918 -8.41394 0.00000 -4.53257 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42871 -0.00969 -1.00000 - 16747 2002 3 18 22 54 21 765 4.9635 175.58807 1408.06502 1253.80898 -8.41224 0.00000 -4.53232 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42799 -0.00969 -1.00000 - 16749 2002 3 18 22 54 31 692 4.9637 175.58428 1407.79109 1253.59881 -8.41061 0.00000 -4.53210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42727 -0.00969 -1.00000 - 16751 2002 3 18 22 54 41 619 4.9638 175.58049 1407.51716 1253.38867 -8.40907 0.00000 -4.53189 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42655 -0.00969 -1.00000 - 16753 2002 3 18 22 54 51 547 4.9640 175.57670 1407.24325 1253.17857 -8.40765 0.00000 -4.53172 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42582 -0.00969 -1.00000 - 16755 2002 3 18 22 55 1 475 4.9641 175.57290 1406.96937 1252.96851 -8.40636 0.00000 -4.53157 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42510 -0.00969 -1.00000 - 16757 2002 3 18 22 55 11 404 4.9642 175.56911 1406.69551 1252.75848 -8.40523 0.00000 -4.53146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42438 -0.00969 -1.00000 - 16759 2002 3 18 22 55 21 333 4.9644 175.56532 1406.42169 1252.54850 -8.40425 0.00000 -4.53139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42366 -0.00968 -1.00000 - 16761 2002 3 18 22 55 31 261 4.9645 175.56153 1406.14792 1252.33857 -8.40346 0.00000 -4.53135 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42294 -0.00968 -1.00000 - 16763 2002 3 18 22 55 41 191 4.9647 175.55774 1405.87420 1252.12868 -8.40285 0.00000 -4.53134 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42221 -0.00968 -1.00000 - 16765 2002 3 18 22 55 51 120 4.9648 175.55395 1405.60055 1251.91885 -8.40243 0.00000 -4.53138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42149 -0.00968 -1.00000 - 16767 2002 3 18 22 56 1 50 4.9649 175.55016 1405.32696 1251.70908 -8.40221 0.00000 -4.53146 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42077 -0.00968 -1.00000 - 16769 2002 3 18 22 56 10 980 4.9651 175.54637 1405.05346 1251.49936 -8.40218 0.00000 -4.53157 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.42005 -0.00968 -1.00000 - 16771 2002 3 18 22 56 20 910 4.9652 175.54258 1404.78005 1251.28971 -8.40233 0.00000 -4.53172 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41932 -0.00968 -1.00000 - 16773 2002 3 18 22 56 30 841 4.9653 175.53879 1404.50675 1251.08013 -8.40268 0.00000 -4.53191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41860 -0.00968 -1.00000 - 16775 2002 3 18 22 56 40 772 4.9655 175.53500 1404.23355 1250.87061 -8.40320 0.00000 -4.53214 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41788 -0.00968 -1.00000 - 16777 2002 3 18 22 56 50 703 4.9656 175.53122 1403.96047 1250.66117 -8.40389 0.00000 -4.53240 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41716 -0.00968 -1.00000 - 16779 2002 3 18 22 57 0 635 4.9658 175.52743 1403.68751 1250.45179 -8.40474 0.00000 -4.53270 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41644 -0.00968 -1.00000 - 16781 2002 3 18 22 57 10 566 4.9659 175.52364 1403.41469 1250.24250 -8.40574 0.00000 -4.53302 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41571 -0.00968 -1.00000 - 16783 2002 3 18 22 57 20 498 4.9660 175.51986 1403.14200 1250.03328 -8.40687 0.00000 -4.53337 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41499 -0.00967 -1.00000 - 16785 2002 3 18 22 57 30 431 4.9662 175.51607 1402.86946 1249.82415 -8.40811 0.00000 -4.53375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41427 -0.00967 -1.00000 - 16787 2002 3 18 22 57 40 363 4.9663 175.51228 1402.59706 1249.61509 -8.40944 0.00000 -4.53415 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41355 -0.00967 -1.00000 - 16789 2002 3 18 22 57 50 296 4.9665 175.50850 1402.32482 1249.40611 -8.41084 0.00000 -4.53456 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41282 -0.00967 -1.00000 - 16791 2002 3 18 22 58 0 229 4.9666 175.50472 1402.05272 1249.19722 -8.41229 0.00000 -4.53499 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41210 -0.00967 -1.00000 - 16793 2002 3 18 22 58 10 163 4.9667 175.50093 1401.78077 1248.98841 -8.41376 0.00000 -4.53543 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41138 -0.00967 -1.00000 - 16795 2002 3 18 22 58 20 96 4.9669 175.49715 1401.50897 1248.77968 -8.41523 0.00000 -4.53587 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.41066 -0.00967 -1.00000 - 16797 2002 3 18 22 58 30 30 4.9670 175.49337 1401.23732 1248.57102 -8.41667 0.00000 -4.53632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40993 -0.00967 -1.00000 - 16800 2002 3 18 22 58 44 932 4.9672 175.48770 1400.83009 1248.25819 -8.41873 0.00000 -4.53699 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40885 -0.00967 -1.00000 - 16802 2002 3 18 22 58 54 867 4.9674 175.48392 1400.55878 1248.04973 -8.42002 0.00000 -4.53744 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40813 -0.00967 -1.00000 - 16804 2002 3 18 22 59 4 802 4.9675 175.48015 1400.28759 1247.84135 -8.42120 0.00000 -4.53787 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40741 -0.00967 -1.00000 - 16806 2002 3 18 22 59 14 737 4.9677 175.47637 1400.01653 1247.63304 -8.42228 0.00000 -4.53829 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40668 -0.00966 -1.00000 - 16808 2002 3 18 22 59 24 672 4.9678 175.47259 1399.74557 1247.42480 -8.42324 0.00000 -4.53870 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40596 -0.00966 -1.00000 - 16810 2002 3 18 22 59 34 608 4.9679 175.46882 1399.47473 1247.21662 -8.42407 0.00000 -4.53909 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40524 -0.00966 -1.00000 - 16812 2002 3 18 22 59 44 544 4.9681 175.46505 1399.20398 1247.00852 -8.42477 0.00000 -4.53946 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40452 -0.00966 -1.00000 - 16814 2002 3 18 22 59 54 481 4.9682 175.46128 1398.93333 1246.80047 -8.42532 0.00000 -4.53981 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40379 -0.00966 -1.00000 - 16816 2002 3 18 23 0 4 417 4.9684 175.45751 1398.66276 1246.59249 -8.42573 0.00000 -4.54014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40307 -0.00966 -1.00000 - 16818 2002 3 18 23 0 14 354 4.9685 175.45374 1398.39227 1246.38455 -8.42600 0.00000 -4.54045 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40235 -0.00966 -1.00000 - 16820 2002 3 18 23 0 24 291 4.9686 175.44997 1398.12185 1246.17666 -8.42614 0.00000 -4.54075 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40163 -0.00966 -1.00000 - 16822 2002 3 18 23 0 34 229 4.9688 175.44620 1397.85149 1245.96882 -8.42616 0.00000 -4.54103 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40090 -0.00966 -1.00000 - 16824 2002 3 18 23 0 44 167 4.9689 175.44244 1397.58118 1245.76102 -8.42609 0.00000 -4.54128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.40018 -0.00966 -1.00000 - 16826 2002 3 18 23 0 54 105 4.9691 175.43867 1397.31091 1245.55327 -8.42594 0.00000 -4.54152 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39946 -0.00966 -1.00000 - 16828 2002 3 18 23 1 4 43 4.9692 175.43491 1397.04070 1245.34557 -8.42571 0.00000 -4.54173 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39873 -0.00965 -1.00000 - 16830 2002 3 18 23 1 13 982 4.9694 175.43115 1396.77053 1245.13792 -8.42540 0.00000 -4.54193 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39801 -0.00965 -1.00000 - 16832 2002 3 18 23 1 23 921 4.9695 175.42739 1396.50041 1244.93031 -8.42499 0.00000 -4.54210 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39729 -0.00965 -1.00000 - 16834 2002 3 18 23 1 33 860 4.9696 175.42364 1396.23033 1244.72275 -8.42448 0.00000 -4.54225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39657 -0.00965 -1.00000 - 16836 2002 3 18 23 1 43 799 4.9698 175.41988 1395.96029 1244.51524 -8.42390 0.00000 -4.54238 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39584 -0.00965 -1.00000 - 16838 2002 3 18 23 1 53 739 4.9699 175.41613 1395.69029 1244.30777 -8.42324 0.00000 -4.54250 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39512 -0.00965 -1.00000 - 16840 2002 3 18 23 2 3 679 4.9701 175.41237 1395.42034 1244.10035 -8.42254 0.00000 -4.54259 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39440 -0.00965 -1.00000 - 16842 2002 3 18 23 2 13 620 4.9702 175.40862 1395.15042 1243.89297 -8.42182 0.00000 -4.54267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39367 -0.00965 -1.00000 - 16844 2002 3 18 23 2 23 560 4.9704 175.40488 1394.88055 1243.68563 -8.42108 0.00000 -4.54274 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39295 -0.00965 -1.00000 - 16846 2002 3 18 23 2 33 501 4.9705 175.40113 1394.61072 1243.47834 -8.42034 0.00000 -4.54279 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39223 -0.00965 -1.00000 - 16848 2002 3 18 23 2 43 442 4.9706 175.39738 1394.34095 1243.27110 -8.41962 0.00000 -4.54283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39151 -0.00965 -1.00000 - 16850 2002 3 18 23 2 53 384 4.9708 175.39364 1394.07123 1243.06390 -8.41891 0.00000 -4.54286 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39078 -0.00965 -1.00000 - 16852 2002 3 18 23 3 3 326 4.9709 175.38990 1393.80157 1242.85675 -8.41824 0.00000 -4.54288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.39006 -0.00964 -1.00000 - 16854 2002 3 18 23 3 13 268 4.9711 175.38616 1393.53197 1242.64965 -8.41759 0.00000 -4.54290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38934 -0.00964 -1.00000 - 16856 2002 3 18 23 3 23 210 4.9712 175.38242 1393.26243 1242.44259 -8.41700 0.00000 -4.54290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38861 -0.00964 -1.00000 - 16858 2002 3 18 23 3 33 153 4.9713 175.37869 1392.99296 1242.23559 -8.41645 0.00000 -4.54290 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38789 -0.00964 -1.00000 - 16860 2002 3 18 23 3 43 96 4.9715 175.37495 1392.72356 1242.02863 -8.41595 0.00000 -4.54289 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38717 -0.00964 -1.00000 - 16862 2002 3 18 23 3 53 39 4.9716 175.37122 1392.45424 1241.82173 -8.41552 0.00000 -4.54288 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38644 -0.00964 -1.00000 - 16864 2002 3 18 23 4 2 982 4.9718 175.36749 1392.18499 1241.61487 -8.41515 0.00000 -4.54287 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38572 -0.00964 -1.00000 - 16866 2002 3 18 23 4 12 926 4.9719 175.36376 1391.91583 1241.40807 -8.41484 0.00000 -4.54285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38500 -0.00964 -1.00000 - 16868 2002 3 18 23 4 22 870 4.9721 175.36004 1391.64675 1241.20133 -8.41460 0.00000 -4.54283 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38428 -0.00964 -1.00000 - 16870 2002 3 18 23 4 32 814 4.9722 175.35632 1391.37776 1240.99464 -8.41441 0.00000 -4.54281 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38355 -0.00964 -1.00000 - 16872 2002 3 18 23 4 42 759 4.9723 175.35259 1391.10887 1240.78801 -8.41427 0.00000 -4.54278 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38283 -0.00964 -1.00000 - 16874 2002 3 18 23 4 52 704 4.9725 175.34888 1390.84007 1240.58143 -8.41418 0.00000 -4.54275 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38211 -0.00964 -1.00000 - 16876 2002 3 18 23 5 2 649 4.9726 175.34516 1390.57136 1240.37491 -8.41411 0.00000 -4.54272 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38138 -0.00963 -1.00000 - 16878 2002 3 18 23 5 12 595 4.9728 175.34145 1390.30276 1240.16845 -8.41407 0.00000 -4.54269 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.38066 -0.00963 -1.00000 - 16880 2002 3 18 23 5 22 540 4.9729 175.33774 1390.03426 1239.96205 -8.41404 0.00000 -4.54265 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37994 -0.00963 -1.00000 - 16882 2002 3 18 23 5 32 486 4.9731 175.33403 1389.76586 1239.75571 -8.41401 0.00000 -4.54260 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37921 -0.00963 -1.00000 - 16884 2002 3 18 23 5 42 433 4.9732 175.33032 1389.49756 1239.54942 -8.41398 0.00000 -4.54256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37849 -0.00963 -1.00000 - 16886 2002 3 18 23 5 52 379 4.9734 175.32662 1389.22936 1239.34319 -8.41394 0.00000 -4.54251 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37777 -0.00963 -1.00000 - 16888 2002 3 18 23 6 2 326 4.9735 175.32291 1388.96126 1239.13702 -8.41389 0.00000 -4.54245 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37704 -0.00963 -1.00000 - 16890 2002 3 18 23 6 12 274 4.9736 175.31921 1388.69326 1238.93091 -8.41384 0.00000 -4.54240 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37632 -0.00963 -1.00000 - 16892 2002 3 18 23 6 22 221 4.9738 175.31552 1388.42536 1238.72485 -8.41378 0.00000 -4.54233 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37560 -0.00963 -1.00000 - 16894 2002 3 18 23 6 32 169 4.9739 175.31182 1388.15757 1238.51885 -8.41372 0.00000 -4.54227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37487 -0.00963 -1.00000 - 16896 2002 3 18 23 6 42 117 4.9741 175.30813 1387.88987 1238.31290 -8.41365 0.00000 -4.54220 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37415 -0.00963 -1.00000 - 16898 2002 3 18 23 6 52 65 4.9742 175.30444 1387.62226 1238.10701 -8.41356 0.00000 -4.54212 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37343 -0.00962 -1.00000 - 16900 2002 3 18 23 7 2 14 4.9744 175.30076 1387.35475 1237.90117 -8.41342 0.00000 -4.54204 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37270 -0.00962 -1.00000 - 16902 2002 3 18 23 7 11 963 4.9745 175.29707 1387.08732 1237.69538 -8.41324 0.00000 -4.54195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37198 -0.00962 -1.00000 - 16904 2002 3 18 23 7 21 912 4.9746 175.29339 1386.81998 1237.48965 -8.41300 0.00000 -4.54186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37126 -0.00962 -1.00000 - 16906 2002 3 18 23 7 31 862 4.9748 175.28971 1386.55271 1237.28396 -8.41267 0.00000 -4.54177 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.37053 -0.00962 -1.00000 - 16908 2002 3 18 23 7 41 811 4.9749 175.28604 1386.28550 1237.07832 -8.41226 0.00000 -4.54167 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36981 -0.00962 -1.00000 - 16910 2002 3 18 23 7 51 761 4.9751 175.28237 1386.01836 1236.87274 -8.41177 0.00000 -4.54157 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36908 -0.00962 -1.00000 - 16912 2002 3 18 23 8 1 712 4.9752 175.27870 1385.75128 1236.66720 -8.41121 0.00000 -4.54147 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36836 -0.00962 -1.00000 - 16914 2002 3 18 23 8 11 662 4.9754 175.27503 1385.48426 1236.46170 -8.41058 0.00000 -4.54137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36764 -0.00962 -1.00000 - 16916 2002 3 18 23 8 21 613 4.9755 175.27137 1385.21728 1236.25625 -8.40989 0.00000 -4.54127 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36691 -0.00962 -1.00000 - 16918 2002 3 18 23 8 31 565 4.9757 175.26770 1384.95036 1236.05084 -8.40917 0.00000 -4.54116 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36619 -0.00962 -1.00000 - 16920 2002 3 18 23 8 41 516 4.9758 175.26405 1384.68350 1235.84548 -8.40844 0.00000 -4.54107 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36547 -0.00962 -1.00000 - 16922 2002 3 18 23 8 51 468 4.9759 175.26039 1384.41668 1235.64016 -8.40769 0.00000 -4.54097 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36474 -0.00961 -1.00000 - 16924 2002 3 18 23 9 1 420 4.9761 175.25674 1384.14992 1235.43488 -8.40694 0.00000 -4.54088 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36402 -0.00961 -1.00000 - 16926 2002 3 18 23 9 11 372 4.9762 175.25309 1383.88321 1235.22965 -8.40621 0.00000 -4.54080 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36330 -0.00961 -1.00000 - 16928 2002 3 18 23 9 21 325 4.9764 175.24944 1383.61656 1235.02446 -8.40549 0.00000 -4.54072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36257 -0.00961 -1.00000 - 16930 2002 3 18 23 9 31 278 4.9765 175.24580 1383.34997 1234.81932 -8.40478 0.00000 -4.54066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36185 -0.00961 -1.00000 - 16932 2002 3 18 23 9 41 231 4.9767 175.24216 1383.08343 1234.61422 -8.40410 0.00000 -4.54060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36112 -0.00961 -1.00000 - 16934 2002 3 18 23 9 51 185 4.9768 175.23852 1382.81695 1234.40916 -8.40343 0.00000 -4.54056 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.36040 -0.00961 -1.00000 - 16936 2002 3 18 23 10 1 139 4.9770 175.23488 1382.55052 1234.20415 -8.40278 0.00000 -4.54052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35968 -0.00961 -1.00000 - 16938 2002 3 18 23 10 11 93 4.9771 175.23125 1382.28415 1233.99919 -8.40216 0.00000 -4.54050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35895 -0.00961 -1.00000 - 16940 2002 3 18 23 10 21 47 4.9772 175.22762 1382.01783 1233.79427 -8.40159 0.00000 -4.54050 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35823 -0.00961 -1.00000 - 16942 2002 3 18 23 10 31 2 4.9774 175.22400 1381.75158 1233.58939 -8.40106 0.00000 -4.54051 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35750 -0.00961 -1.00000 - 16944 2002 3 18 23 10 40 957 4.9775 175.22037 1381.48538 1233.38457 -8.40059 0.00000 -4.54053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35678 -0.00960 -1.00000 - 16946 2002 3 18 23 10 50 912 4.9777 175.21675 1381.21925 1233.17979 -8.40018 0.00000 -4.54058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35606 -0.00960 -1.00000 - 16948 2002 3 18 23 11 0 868 4.9778 175.21314 1380.95319 1232.97506 -8.39983 0.00000 -4.54064 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35533 -0.00960 -1.00000 - 16950 2002 3 18 23 11 10 824 4.9780 175.20952 1380.68719 1232.77038 -8.39954 0.00000 -4.54071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35461 -0.00960 -1.00000 - 16952 2002 3 18 23 11 20 780 4.9781 175.20591 1380.42126 1232.56575 -8.39931 0.00000 -4.54081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35388 -0.00960 -1.00000 - 16954 2002 3 18 23 11 30 736 4.9783 175.20231 1380.15539 1232.36117 -8.39914 0.00000 -4.54092 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35316 -0.00960 -1.00000 - 16956 2002 3 18 23 11 40 693 4.9784 175.19870 1379.88960 1232.15664 -8.39904 0.00000 -4.54105 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35244 -0.00960 -1.00000 - 16958 2002 3 18 23 11 50 650 4.9785 175.19510 1379.62389 1231.95217 -8.39899 0.00000 -4.54120 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35171 -0.00960 -1.00000 - 16960 2002 3 18 23 12 0 607 4.9787 175.19150 1379.35825 1231.74775 -8.39900 0.00000 -4.54137 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35099 -0.00960 -1.00000 - 16962 2002 3 18 23 12 10 565 4.9788 175.18791 1379.09268 1231.54339 -8.39907 0.00000 -4.54155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.35026 -0.00960 -1.00000 - 16964 2002 3 18 23 12 20 523 4.9790 175.18432 1378.82720 1231.33909 -8.39920 0.00000 -4.54174 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34954 -0.00960 -1.00000 - 16966 2002 3 18 23 12 30 481 4.9791 175.18073 1378.56180 1231.13484 -8.39938 0.00000 -4.54195 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34882 -0.00960 -1.00000 - 16968 2002 3 18 23 12 40 439 4.9793 175.17715 1378.29647 1230.93065 -8.39962 0.00000 -4.54218 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34809 -0.00959 -1.00000 - 16970 2002 3 18 23 12 50 398 4.9794 175.17357 1378.03123 1230.72651 -8.39992 0.00000 -4.54242 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34737 -0.00959 -1.00000 - 16972 2002 3 18 23 13 0 357 4.9796 175.16999 1377.76608 1230.52244 -8.40026 0.00000 -4.54267 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34664 -0.00959 -1.00000 - 16974 2002 3 18 23 13 10 316 4.9797 175.16642 1377.50101 1230.31843 -8.40066 0.00000 -4.54293 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34592 -0.00959 -1.00000 - 16976 2002 3 18 23 13 20 276 4.9798 175.16285 1377.23602 1230.11448 -8.40111 0.00000 -4.54319 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34519 -0.00959 -1.00000 - 16978 2002 3 18 23 13 30 236 4.9800 175.15928 1376.97113 1229.91060 -8.40160 0.00000 -4.54347 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34447 -0.00959 -1.00000 - 16980 2002 3 18 23 13 40 196 4.9801 175.15571 1376.70632 1229.70677 -8.40213 0.00000 -4.54375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34375 -0.00959 -1.00000 - 16982 2002 3 18 23 13 50 157 4.9803 175.15215 1376.44160 1229.50301 -8.40268 0.00000 -4.54403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34302 -0.00959 -1.00000 - 16984 2002 3 18 23 14 0 117 4.9804 175.14860 1376.17698 1229.29932 -8.40326 0.00000 -4.54432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34230 -0.00959 -1.00000 - 16986 2002 3 18 23 14 10 78 4.9806 175.14504 1375.91244 1229.09568 -8.40385 0.00000 -4.54460 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34157 -0.00959 -1.00000 - 16988 2002 3 18 23 14 20 40 4.9807 175.14149 1375.64800 1228.89212 -8.40444 0.00000 -4.54489 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34085 -0.00959 -1.00000 - 16990 2002 3 18 23 14 30 1 4.9809 175.13795 1375.38365 1228.68862 -8.40504 0.00000 -4.54516 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.34012 -0.00959 -1.00000 - 16993 2002 3 18 23 14 44 944 4.9811 175.13263 1374.98731 1228.38349 -8.40593 0.00000 -4.54557 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33904 -0.00958 -1.00000 - 16995 2002 3 18 23 14 54 907 4.9812 175.12910 1374.72320 1228.18016 -8.40652 0.00000 -4.54582 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33831 -0.00958 -1.00000 - 16997 2002 3 18 23 15 4 869 4.9814 175.12556 1374.45920 1227.97689 -8.40710 0.00000 -4.54607 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33759 -0.00958 -1.00000 - 16999 2002 3 18 23 15 14 832 4.9815 175.12203 1374.19530 1227.77368 -8.40767 0.00000 -4.54630 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33686 -0.00958 -1.00000 - 17001 2002 3 18 23 15 24 796 4.9817 175.11851 1373.93152 1227.57053 -8.40824 0.00000 -4.54653 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33614 -0.00958 -1.00000 - 17003 2002 3 18 23 15 34 759 4.9818 175.11498 1373.66784 1227.36743 -8.40879 0.00000 -4.54674 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33541 -0.00958 -1.00000 - 17005 2002 3 18 23 15 44 723 4.9819 175.11147 1373.40425 1227.16440 -8.40934 0.00000 -4.54694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33469 -0.00958 -1.00000 - 17007 2002 3 18 23 15 54 687 4.9821 175.10795 1373.14077 1226.96143 -8.40989 0.00000 -4.54712 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33397 -0.00958 -1.00000 - 17009 2002 3 18 23 16 4 652 4.9822 175.10444 1372.87740 1226.75853 -8.41043 0.00000 -4.54727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33324 -0.00958 -1.00000 - 17011 2002 3 18 23 16 14 616 4.9824 175.10093 1372.61414 1226.55569 -8.41095 0.00000 -4.54741 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33252 -0.00958 -1.00000 - 17013 2002 3 18 23 16 24 581 4.9825 175.09743 1372.35099 1226.35291 -8.41144 0.00000 -4.54752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33179 -0.00958 -1.00000 - 17015 2002 3 18 23 16 34 546 4.9827 175.09393 1372.08796 1226.15020 -8.41187 0.00000 -4.54761 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33107 -0.00957 -1.00000 - 17017 2002 3 18 23 16 44 512 4.9828 175.09043 1371.82504 1225.94755 -8.41222 0.00000 -4.54767 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.33034 -0.00957 -1.00000 - 17019 2002 3 18 23 16 54 478 4.9830 175.08694 1371.56222 1225.74496 -8.41248 0.00000 -4.54770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32962 -0.00957 -1.00000 - 17021 2002 3 18 23 17 4 444 4.9831 175.08345 1371.29951 1225.54243 -8.41261 0.00000 -4.54770 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32889 -0.00957 -1.00000 - 17023 2002 3 18 23 17 14 410 4.9833 175.07997 1371.03689 1225.33995 -8.41262 0.00000 -4.54767 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32817 -0.00957 -1.00000 - 17025 2002 3 18 23 17 24 377 4.9834 175.07648 1370.77437 1225.13753 -8.41249 0.00000 -4.54761 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32744 -0.00957 -1.00000 - 17027 2002 3 18 23 17 34 344 4.9835 175.07301 1370.51193 1224.93516 -8.41224 0.00000 -4.54752 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32672 -0.00957 -1.00000 - 17029 2002 3 18 23 17 44 311 4.9837 175.06954 1370.24957 1224.73284 -8.41185 0.00000 -4.54740 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32599 -0.00957 -1.00000 - 17031 2002 3 18 23 17 54 279 4.9838 175.06607 1369.98730 1224.53057 -8.41134 0.00000 -4.54725 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32527 -0.00957 -1.00000 - 17033 2002 3 18 23 18 4 247 4.9840 175.06260 1369.72509 1224.32835 -8.41070 0.00000 -4.54707 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32454 -0.00957 -1.00000 - 17035 2002 3 18 23 18 14 215 4.9841 175.05914 1369.46296 1224.12616 -8.40995 0.00000 -4.54687 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32382 -0.00957 -1.00000 - 17037 2002 3 18 23 18 24 184 4.9843 175.05569 1369.20088 1223.92402 -8.40909 0.00000 -4.54663 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32309 -0.00956 -1.00000 - 17039 2002 3 18 23 18 34 152 4.9844 175.05223 1368.93887 1223.72191 -8.40812 0.00000 -4.54637 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32237 -0.00956 -1.00000 - 17041 2002 3 18 23 18 44 121 4.9846 175.04878 1368.67692 1223.51984 -8.40706 0.00000 -4.54609 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32164 -0.00956 -1.00000 - 17043 2002 3 18 23 18 54 91 4.9847 175.04534 1368.41501 1223.31781 -8.40590 0.00000 -4.54579 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32092 -0.00956 -1.00000 - 17045 2002 3 18 23 19 4 60 4.9848 175.04190 1368.15315 1223.11581 -8.40466 0.00000 -4.54548 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.32019 -0.00956 -1.00000 - 17047 2002 3 18 23 19 14 30 4.9850 175.03846 1367.89133 1222.91385 -8.40333 0.00000 -4.54514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31947 -0.00956 -1.00000 - 17049 2002 3 18 23 19 24 0 4.9851 175.03503 1367.62954 1222.71191 -8.40194 0.00000 -4.54479 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31874 -0.00956 -1.00000 - 17051 2002 3 18 23 19 33 971 4.9853 175.03161 1367.36778 1222.51001 -8.40048 0.00000 -4.54444 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31802 -0.00956 -1.00000 - 17053 2002 3 18 23 19 43 942 4.9854 175.02818 1367.10605 1222.30813 -8.39896 0.00000 -4.54408 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31729 -0.00956 -1.00000 - 17055 2002 3 18 23 19 53 913 4.9856 175.02476 1366.84435 1222.10628 -8.39740 0.00000 -4.54371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31657 -0.00956 -1.00000 - 17057 2002 3 18 23 20 3 884 4.9857 175.02135 1366.58266 1221.90446 -8.39581 0.00000 -4.54334 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31584 -0.00956 -1.00000 - 17059 2002 3 18 23 20 13 856 4.9859 175.01794 1366.32100 1221.70267 -8.39421 0.00000 -4.54298 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31512 -0.00956 -1.00000 - 17061 2002 3 18 23 20 23 828 4.9860 175.01454 1366.05935 1221.50091 -8.39261 0.00000 -4.54262 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31439 -0.00955 -1.00000 - 17063 2002 3 18 23 20 33 800 4.9862 175.01113 1365.79772 1221.29918 -8.39102 0.00000 -4.54227 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31367 -0.00955 -1.00000 - 17065 2002 3 18 23 20 43 772 4.9863 175.00774 1365.53612 1221.09748 -8.38947 0.00000 -4.54193 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31294 -0.00955 -1.00000 - 17067 2002 3 18 23 20 53 745 4.9864 175.00435 1365.27453 1220.89581 -8.38796 0.00000 -4.54161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31222 -0.00955 -1.00000 - 17069 2002 3 18 23 21 3 718 4.9866 175.00096 1365.01297 1220.69417 -8.38653 0.00000 -4.54130 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31149 -0.00955 -1.00000 - 17071 2002 3 18 23 21 13 692 4.9867 174.99757 1364.75144 1220.49256 -8.38518 0.00000 -4.54102 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31077 -0.00955 -1.00000 - 17073 2002 3 18 23 21 23 665 4.9869 174.99420 1364.48994 1220.29100 -8.38394 0.00000 -4.54076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.31004 -0.00955 -1.00000 - 17075 2002 3 18 23 21 33 639 4.9870 174.99082 1364.22848 1220.08946 -8.38281 0.00000 -4.54053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30932 -0.00955 -1.00000 - 17077 2002 3 18 23 21 43 614 4.9872 174.98745 1363.96706 1219.88797 -8.38181 0.00000 -4.54032 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30859 -0.00955 -1.00000 - 17079 2002 3 18 23 21 53 588 4.9873 174.98409 1363.70570 1219.68653 -8.38095 0.00000 -4.54014 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30787 -0.00955 -1.00000 - 17081 2002 3 18 23 22 3 563 4.9875 174.98073 1363.44439 1219.48512 -8.38024 0.00000 -4.54000 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30714 -0.00955 -1.00000 - 17083 2002 3 18 23 22 13 538 4.9876 174.97737 1363.18314 1219.28377 -8.37967 0.00000 -4.53988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30641 -0.00954 -1.00000 - 17085 2002 3 18 23 22 23 514 4.9877 174.97402 1362.92196 1219.08246 -8.37924 0.00000 -4.53979 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30569 -0.00954 -1.00000 - 17087 2002 3 18 23 22 33 489 4.9879 174.97067 1362.66085 1218.88121 -8.37897 0.00000 -4.53974 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30496 -0.00954 -1.00000 - 17089 2002 3 18 23 22 43 465 4.9880 174.96733 1362.39981 1218.68001 -8.37883 0.00000 -4.53972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30424 -0.00954 -1.00000 - 17091 2002 3 18 23 22 53 442 4.9882 174.96399 1362.13887 1218.47886 -8.37883 0.00000 -4.53972 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30351 -0.00954 -1.00000 - 17093 2002 3 18 23 23 3 418 4.9883 174.96066 1361.87801 1218.27778 -8.37897 0.00000 -4.53976 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30279 -0.00954 -1.00000 - 17095 2002 3 18 23 23 13 395 4.9885 174.95733 1361.61725 1218.07676 -8.37923 0.00000 -4.53983 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30206 -0.00954 -1.00000 - 17097 2002 3 18 23 23 23 372 4.9886 174.95401 1361.35658 1217.87579 -8.37960 0.00000 -4.53992 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30134 -0.00954 -1.00000 - 17099 2002 3 18 23 23 33 350 4.9888 174.95069 1361.09602 1217.67490 -8.38008 0.00000 -4.54004 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.30061 -0.00954 -1.00000 - 17101 2002 3 18 23 23 43 327 4.9889 174.94738 1360.83557 1217.47407 -8.38065 0.00000 -4.54018 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29988 -0.00954 -1.00000 - 17103 2002 3 18 23 23 53 305 4.9890 174.94407 1360.57523 1217.27330 -8.38130 0.00000 -4.54034 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29916 -0.00954 -1.00000 - 17105 2002 3 18 23 24 3 284 4.9892 174.94076 1360.31501 1217.07260 -8.38203 0.00000 -4.54052 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29843 -0.00954 -1.00000 - 17107 2002 3 18 23 24 13 262 4.9893 174.93746 1360.05490 1216.87197 -8.38283 0.00000 -4.54072 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29771 -0.00953 -1.00000 - 17109 2002 3 18 23 24 23 241 4.9895 174.93417 1359.79491 1216.67141 -8.38367 0.00000 -4.54093 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29698 -0.00953 -1.00000 - 17111 2002 3 18 23 24 33 220 4.9896 174.93088 1359.53505 1216.47092 -8.38456 0.00000 -4.54115 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29626 -0.00953 -1.00000 - 17113 2002 3 18 23 24 43 200 4.9898 174.92760 1359.27530 1216.27050 -8.38548 0.00000 -4.54138 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29553 -0.00953 -1.00000 - 17115 2002 3 18 23 24 53 179 4.9899 174.92432 1359.01568 1216.07015 -8.38640 0.00000 -4.54161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29480 -0.00953 -1.00000 - 17117 2002 3 18 23 25 3 160 4.9901 174.92104 1358.75618 1215.86986 -8.38733 0.00000 -4.54185 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29408 -0.00953 -1.00000 - 17119 2002 3 18 23 25 13 140 4.9902 174.91777 1358.49680 1215.66965 -8.38823 0.00000 -4.54208 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29335 -0.00953 -1.00000 - 17121 2002 3 18 23 25 23 120 4.9903 174.91451 1358.23753 1215.46949 -8.38909 0.00000 -4.54231 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29263 -0.00953 -1.00000 - 17123 2002 3 18 23 25 33 101 4.9905 174.91125 1357.97838 1215.26941 -8.38989 0.00000 -4.54254 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29190 -0.00953 -1.00000 - 17125 2002 3 18 23 25 43 83 4.9906 174.90800 1357.71933 1215.06939 -8.39062 0.00000 -4.54276 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29118 -0.00953 -1.00000 - 17127 2002 3 18 23 25 53 64 4.9908 174.90475 1357.46037 1214.86943 -8.39127 0.00000 -4.54296 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.29045 -0.00953 -1.00000 - 17129 2002 3 18 23 26 3 46 4.9909 174.90150 1357.20151 1214.66953 -8.39182 0.00000 -4.54316 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28972 -0.00953 -1.00000 - 17131 2002 3 18 23 26 13 28 4.9911 174.89826 1356.94274 1214.46969 -8.39226 0.00000 -4.54333 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28900 -0.00952 -1.00000 - 17133 2002 3 18 23 26 23 10 4.9912 174.89503 1356.68405 1214.26991 -8.39260 0.00000 -4.54350 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28827 -0.00952 -1.00000 - 17135 2002 3 18 23 26 32 993 4.9914 174.89180 1356.42544 1214.07018 -8.39282 0.00000 -4.54364 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28755 -0.00952 -1.00000 - 17137 2002 3 18 23 26 42 976 4.9915 174.88858 1356.16690 1213.87051 -8.39294 0.00000 -4.54377 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28682 -0.00952 -1.00000 - 17139 2002 3 18 23 26 52 959 4.9916 174.88536 1355.90843 1213.67089 -8.39295 0.00000 -4.54387 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28609 -0.00952 -1.00000 - 17141 2002 3 18 23 27 2 943 4.9918 174.88215 1355.65002 1213.47133 -8.39286 0.00000 -4.54396 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28537 -0.00952 -1.00000 - 17143 2002 3 18 23 27 12 926 4.9919 174.87894 1355.39168 1213.27181 -8.39267 0.00000 -4.54402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28464 -0.00952 -1.00000 - 17145 2002 3 18 23 27 22 910 4.9921 174.87574 1355.13339 1213.07234 -8.39238 0.00000 -4.54406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28392 -0.00952 -1.00000 - 17147 2002 3 18 23 27 32 895 4.9922 174.87254 1354.87516 1212.87291 -8.39200 0.00000 -4.54408 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28319 -0.00952 -1.00000 - 17149 2002 3 18 23 27 42 879 4.9924 174.86935 1354.61698 1212.67354 -8.39154 0.00000 -4.54408 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28246 -0.00952 -1.00000 - 17151 2002 3 18 23 27 52 864 4.9925 174.86616 1354.35885 1212.47421 -8.39101 0.00000 -4.54406 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28174 -0.00952 -1.00000 - 17153 2002 3 18 23 28 2 850 4.9927 174.86298 1354.10079 1212.27492 -8.39041 0.00000 -4.54402 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28101 -0.00951 -1.00000 - 17155 2002 3 18 23 28 12 835 4.9928 174.85980 1353.84277 1212.07568 -8.38976 0.00000 -4.54396 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.28029 -0.00951 -1.00000 - 17157 2002 3 18 23 28 22 821 4.9929 174.85663 1353.58481 1211.87648 -8.38907 0.00000 -4.54388 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27956 -0.00951 -1.00000 - 17159 2002 3 18 23 28 32 807 4.9931 174.85347 1353.32691 1211.67733 -8.38835 0.00000 -4.54378 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27883 -0.00951 -1.00000 - 17161 2002 3 18 23 28 42 793 4.9932 174.85031 1353.06908 1211.47821 -8.38762 0.00000 -4.54367 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27811 -0.00951 -1.00000 - 17163 2002 3 18 23 28 52 780 4.9934 174.84715 1352.81130 1211.27914 -8.38687 0.00000 -4.54353 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27738 -0.00951 -1.00000 - 17165 2002 3 18 23 29 2 767 4.9935 174.84400 1352.55358 1211.08012 -8.38611 0.00000 -4.54339 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27665 -0.00951 -1.00000 - 17167 2002 3 18 23 29 12 754 4.9937 174.84086 1352.29593 1210.88113 -8.38535 0.00000 -4.54323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27593 -0.00951 -1.00000 - 17169 2002 3 18 23 29 22 742 4.9938 174.83772 1352.03834 1210.68219 -8.38458 0.00000 -4.54306 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27520 -0.00951 -1.00000 - 17171 2002 3 18 23 29 32 730 4.9939 174.83459 1351.78082 1210.48328 -8.38382 0.00000 -4.54287 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27448 -0.00951 -1.00000 - 17173 2002 3 18 23 29 42 718 4.9941 174.83146 1351.52335 1210.28442 -8.38305 0.00000 -4.54268 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27375 -0.00951 -1.00000 - 17175 2002 3 18 23 29 52 706 4.9942 174.82834 1351.26594 1210.08560 -8.38228 0.00000 -4.54248 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27302 -0.00951 -1.00000 - 17177 2002 3 18 23 30 2 695 4.9944 174.82522 1351.00858 1209.88682 -8.38152 0.00000 -4.54226 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27230 -0.00950 -1.00000 - 17179 2002 3 18 23 30 12 684 4.9945 174.82211 1350.75129 1209.68808 -8.38076 0.00000 -4.54204 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27157 -0.00950 -1.00000 - 17181 2002 3 18 23 30 22 673 4.9947 174.81901 1350.49405 1209.48937 -8.38001 0.00000 -4.54183 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27084 -0.00950 -1.00000 - 17183 2002 3 18 23 30 32 663 4.9948 174.81591 1350.23687 1209.29070 -8.37927 0.00000 -4.54161 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.27012 -0.00950 -1.00000 - 17185 2002 3 18 23 30 42 652 4.9949 174.81281 1349.97973 1209.09207 -8.37855 0.00000 -4.54139 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26939 -0.00950 -1.00000 - 17187 2002 3 18 23 30 52 642 4.9951 174.80972 1349.72265 1208.89348 -8.37786 0.00000 -4.54117 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26866 -0.00950 -1.00000 - 17189 2002 3 18 23 31 2 633 4.9952 174.80664 1349.46562 1208.69494 -8.37719 0.00000 -4.54095 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26794 -0.00950 -1.00000 - 17191 2002 3 18 23 31 12 624 4.9954 174.80357 1349.20865 1208.49645 -8.37654 0.00000 -4.54073 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26721 -0.00950 -1.00000 - 17193 2002 3 18 23 31 22 614 4.9955 174.80049 1348.95175 1208.29800 -8.37592 0.00000 -4.54051 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26648 -0.00950 -1.00000 - 17195 2002 3 18 23 31 32 606 4.9957 174.79743 1348.69491 1208.09960 -8.37532 0.00000 -4.54029 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26576 -0.00950 -1.00000 - 17197 2002 3 18 23 31 42 597 4.9958 174.79437 1348.43815 1207.90126 -8.37474 0.00000 -4.54007 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26503 -0.00950 -1.00000 - 17199 2002 3 18 23 31 52 589 4.9959 174.79131 1348.18146 1207.70296 -8.37418 0.00000 -4.53985 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26430 -0.00949 -1.00000 - 17201 2002 3 18 23 32 2 581 4.9961 174.78826 1347.92486 1207.50471 -8.37365 0.00000 -4.53964 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26358 -0.00949 -1.00000 - 17203 2002 3 18 23 32 12 574 4.9962 174.78522 1347.66833 1207.30651 -8.37315 0.00000 -4.53942 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26285 -0.00949 -1.00000 - 17205 2002 3 18 23 32 22 566 4.9964 174.78219 1347.41189 1207.10836 -8.37271 0.00000 -4.53921 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26212 -0.00949 -1.00000 - 17207 2002 3 18 23 32 32 559 4.9965 174.77915 1347.15555 1206.91027 -8.37232 0.00000 -4.53899 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26140 -0.00949 -1.00000 - 17209 2002 3 18 23 32 42 552 4.9967 174.77613 1346.89929 1206.71222 -8.37198 0.00000 -4.53878 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.26067 -0.00949 -1.00000 - 17211 2002 3 18 23 32 52 546 4.9968 174.77311 1346.64313 1206.51423 -8.37170 0.00000 -4.53858 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25994 -0.00949 -1.00000 - 17213 2002 3 18 23 33 2 540 4.9969 174.77009 1346.38707 1206.31629 -8.37145 0.00000 -4.53837 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25922 -0.00949 -1.00000 - 17215 2002 3 18 23 33 12 534 4.9971 174.76709 1346.13110 1206.11840 -8.37123 0.00000 -4.53816 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25849 -0.00949 -1.00000 - 17217 2002 3 18 23 33 22 528 4.9972 174.76408 1345.87522 1205.92056 -8.37101 0.00000 -4.53796 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25776 -0.00949 -1.00000 - 17219 2002 3 18 23 33 32 523 4.9974 174.76109 1345.61943 1205.72277 -8.37078 0.00000 -4.53775 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25704 -0.00949 -1.00000 - 17221 2002 3 18 23 33 42 518 4.9975 174.75810 1345.36372 1205.52503 -8.37053 0.00000 -4.53755 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25631 -0.00949 -1.00000 - 17223 2002 3 18 23 33 52 513 4.9977 174.75511 1345.10808 1205.32734 -8.37023 0.00000 -4.53735 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25558 -0.00948 -1.00000 - 17225 2002 3 18 23 34 2 509 4.9978 174.75213 1344.85251 1205.12969 -8.36988 0.00000 -4.53714 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25486 -0.00948 -1.00000 - 17227 2002 3 18 23 34 12 504 4.9979 174.74916 1344.59701 1204.93210 -8.36947 0.00000 -4.53694 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25413 -0.00948 -1.00000 - 17229 2002 3 18 23 34 22 501 4.9981 174.74619 1344.34158 1204.73455 -8.36901 0.00000 -4.53673 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25340 -0.00948 -1.00000 - 17231 2002 3 18 23 34 32 497 4.9982 174.74323 1344.08620 1204.53705 -8.36850 0.00000 -4.53653 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25268 -0.00948 -1.00000 - 17233 2002 3 18 23 34 42 494 4.9984 174.74027 1343.83088 1204.33959 -8.36793 0.00000 -4.53632 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25195 -0.00948 -1.00000 - 17235 2002 3 18 23 34 52 491 4.9985 174.73732 1343.57561 1204.14218 -8.36731 0.00000 -4.53612 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25122 -0.00948 -1.00000 - 17237 2002 3 18 23 35 2 488 4.9986 174.73438 1343.32040 1203.94481 -8.36666 0.00000 -4.53592 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.25049 -0.00948 -1.00000 - 17239 2002 3 18 23 35 12 485 4.9988 174.73144 1343.06525 1203.74749 -8.36598 0.00000 -4.53572 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24977 -0.00948 -1.00000 - 17241 2002 3 18 23 35 22 483 4.9989 174.72851 1342.81016 1203.55021 -8.36528 0.00000 -4.53552 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24904 -0.00948 -1.00000 - 17243 2002 3 18 23 35 32 481 4.9991 174.72558 1342.55512 1203.35297 -8.36458 0.00000 -4.53533 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24831 -0.00948 -1.00000 - 17245 2002 3 18 23 35 42 479 4.9992 174.72266 1342.30015 1203.15578 -8.36388 0.00000 -4.53514 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24759 -0.00947 -1.00000 - 17247 2002 3 18 23 35 52 478 4.9994 174.71974 1342.04524 1202.95863 -8.36320 0.00000 -4.53496 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24686 -0.00947 -1.00000 - 17249 2002 3 18 23 36 2 477 4.9995 174.71684 1341.79040 1202.76152 -8.36254 0.00000 -4.53478 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24613 -0.00947 -1.00000 - 17251 2002 3 18 23 36 12 476 4.9996 174.71393 1341.53563 1202.56446 -8.36191 0.00000 -4.53461 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24541 -0.00947 -1.00000 - 17253 2002 3 18 23 36 22 476 4.9998 174.71104 1341.28093 1202.36744 -8.36132 0.00000 -4.53445 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24468 -0.00947 -1.00000 - 17255 2002 3 18 23 36 32 475 4.9999 174.70815 1341.02630 1202.17047 -8.36077 0.00000 -4.53430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24395 -0.00947 -1.00000 - 17257 2002 3 18 23 36 42 476 5.0001 174.70526 1340.77174 1201.97354 -8.36027 0.00000 -4.53416 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24322 -0.00947 -1.00000 - 17259 2002 3 18 23 36 52 476 5.0002 174.70238 1340.51726 1201.77666 -8.35982 0.00000 -4.53403 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24250 -0.00947 -1.00000 - 17261 2002 3 18 23 37 2 476 5.0003 174.69951 1340.26285 1201.57983 -8.35941 0.00000 -4.53391 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24177 -0.00947 -1.00000 - 17263 2002 3 18 23 37 12 477 5.0005 174.69664 1340.00851 1201.38303 -8.35905 0.00000 -4.53380 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24104 -0.00947 -1.00000 - 17265 2002 3 18 23 37 22 479 5.0006 174.69378 1339.75424 1201.18629 -8.35871 0.00000 -4.53371 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.24031 -0.00947 -1.00000 - 17267 2002 3 18 23 37 32 480 5.0008 174.69093 1339.50003 1200.98959 -8.35841 0.00000 -4.53363 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23959 -0.00947 -1.00000 - 17269 2002 3 18 23 37 42 482 5.0009 174.68808 1339.24589 1200.79294 -8.35812 0.00000 -4.53357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23886 -0.00946 -1.00000 - 17271 2002 3 18 23 37 52 484 5.0010 174.68524 1338.99180 1200.59633 -8.35786 0.00000 -4.53351 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23813 -0.00946 -1.00000 - 17273 2002 3 18 23 38 2 486 5.0012 174.68240 1338.73777 1200.39978 -8.35761 0.00000 -4.53348 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23740 -0.00946 -1.00000 - 17275 2002 3 18 23 38 12 489 5.0013 174.67958 1338.48380 1200.20327 -8.35737 0.00000 -4.53345 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23668 -0.00946 -1.00000 - 17277 2002 3 18 23 38 22 491 5.0015 174.67675 1338.22989 1200.00680 -8.35715 0.00000 -4.53343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23595 -0.00946 -1.00000 - 17279 2002 3 18 23 38 32 495 5.0016 174.67394 1337.97603 1199.81039 -8.35694 0.00000 -4.53343 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23522 -0.00946 -1.00000 - 17281 2002 3 18 23 38 42 498 5.0017 174.67112 1337.72222 1199.61403 -8.35674 0.00000 -4.53344 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23450 -0.00946 -1.00000 - 17283 2002 3 18 23 38 52 502 5.0019 174.66832 1337.46848 1199.41772 -8.35656 0.00000 -4.53346 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23377 -0.00946 -1.00000 - 17285 2002 3 18 23 39 2 506 5.0020 174.66552 1337.21479 1199.22146 -8.35638 0.00000 -4.53348 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23304 -0.00946 -1.00000 - 17287 2002 3 18 23 39 12 510 5.0022 174.66273 1336.96117 1199.02525 -8.35624 0.00000 -4.53352 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23231 -0.00946 -1.00000 - 17289 2002 3 18 23 39 22 514 5.0023 174.65994 1336.70761 1198.82909 -8.35613 0.00000 -4.53357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23159 -0.00946 -1.00000 - 17291 2002 3 18 23 39 32 519 5.0024 174.65716 1336.45412 1198.63299 -8.35607 0.00000 -4.53362 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23086 -0.00946 -1.00000 - 17293 2002 3 18 23 39 42 524 5.0026 174.65439 1336.20071 1198.43695 -8.35608 0.00000 -4.53368 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.23013 -0.00945 -1.00000 - 17295 2002 3 18 23 39 52 530 5.0027 174.65162 1335.94739 1198.24096 -8.35615 0.00000 -4.53375 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22940 -0.00945 -1.00000 - 17297 2002 3 18 23 40 2 535 5.0029 174.64886 1335.69415 1198.04503 -8.35630 0.00000 -4.53382 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22867 -0.00945 -1.00000 - 17299 2002 3 18 23 40 12 541 5.0030 174.64611 1335.44101 1197.84915 -8.35652 0.00000 -4.53389 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22795 -0.00945 -1.00000 - 17301 2002 3 18 23 40 22 548 5.0031 174.64336 1335.18796 1197.65334 -8.35682 0.00000 -4.53397 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22722 -0.00945 -1.00000 - 17303 2002 3 18 23 40 32 554 5.0033 174.64062 1334.93502 1197.45759 -8.35717 0.00000 -4.53405 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22649 -0.00945 -1.00000 - 17305 2002 3 18 23 40 42 561 5.0034 174.63789 1334.68217 1197.26190 -8.35758 0.00000 -4.53412 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22576 -0.00945 -1.00000 - 17307 2002 3 18 23 40 52 568 5.0036 174.63516 1334.42944 1197.06626 -8.35802 0.00000 -4.53419 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22504 -0.00945 -1.00000 - 17309 2002 3 18 23 41 2 575 5.0037 174.63243 1334.17680 1196.87069 -8.35850 0.00000 -4.53426 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22431 -0.00945 -1.00000 - 17311 2002 3 18 23 41 12 583 5.0038 174.62972 1333.92428 1196.67519 -8.35899 0.00000 -4.53432 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22358 -0.00945 -1.00000 - 17313 2002 3 18 23 41 22 591 5.0040 174.62701 1333.67185 1196.47974 -8.35947 0.00000 -4.53437 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22285 -0.00945 -1.00000 - 17315 2002 3 18 23 41 32 599 5.0041 174.62431 1333.41953 1196.28435 -8.35993 0.00000 -4.53440 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22213 -0.00944 -1.00000 - 17317 2002 3 18 23 41 42 607 5.0043 174.62161 1333.16731 1196.08903 -8.36035 0.00000 -4.53443 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22140 -0.00944 -1.00000 - 17319 2002 3 18 23 41 52 616 5.0044 174.61892 1332.91519 1195.89376 -8.36072 0.00000 -4.53443 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.22067 -0.00944 -1.00000 - 17321 2002 3 18 23 42 2 625 5.0045 174.61623 1332.66316 1195.69855 -8.36102 0.00000 -4.53443 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21994 -0.00944 -1.00000 - 17323 2002 3 18 23 42 12 634 5.0047 174.61356 1332.41122 1195.50340 -8.36125 0.00000 -4.53440 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21921 -0.00944 -1.00000 - 17325 2002 3 18 23 42 22 644 5.0048 174.61089 1332.15938 1195.30831 -8.36141 0.00000 -4.53435 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21849 -0.00944 -1.00000 - 17327 2002 3 18 23 42 32 654 5.0049 174.60822 1331.90762 1195.11327 -8.36148 0.00000 -4.53428 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21776 -0.00944 -1.00000 - 17329 2002 3 18 23 42 42 664 5.0051 174.60556 1331.65594 1194.91829 -8.36147 0.00000 -4.53418 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21703 -0.00944 -1.00000 - 17331 2002 3 18 23 42 52 674 5.0052 174.60291 1331.40436 1194.72336 -8.36139 0.00000 -4.53407 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21630 -0.00944 -1.00000 - 17333 2002 3 18 23 43 2 685 5.0054 174.60027 1331.15286 1194.52848 -8.36123 0.00000 -4.53393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21557 -0.00944 -1.00000 - 17335 2002 3 18 23 43 12 696 5.0055 174.59763 1330.90144 1194.33366 -8.36099 0.00000 -4.53376 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21485 -0.00944 -1.00000 - 17337 2002 3 18 23 43 22 707 5.0056 174.59500 1330.65010 1194.13888 -8.36067 0.00000 -4.53357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21412 -0.00944 -1.00000 - 17339 2002 3 18 23 43 32 718 5.0058 174.59237 1330.39885 1193.94415 -8.36028 0.00000 -4.53335 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21339 -0.00943 -1.00000 - 17341 2002 3 18 23 43 42 730 5.0059 174.58975 1330.14768 1193.74947 -8.35982 0.00000 -4.53311 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21266 -0.00943 -1.00000 - 17343 2002 3 18 23 43 52 742 5.0060 174.58714 1329.89659 1193.55483 -8.35928 0.00000 -4.53285 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21193 -0.00943 -1.00000 - 17345 2002 3 18 23 44 2 754 5.0062 174.58454 1329.64557 1193.36024 -8.35866 0.00000 -4.53256 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21121 -0.00943 -1.00000 - 17347 2002 3 18 23 44 12 767 5.0063 174.58194 1329.39463 1193.16570 -8.35795 0.00000 -4.53225 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.21048 -0.00943 -1.00000 - 17349 2002 3 18 23 44 22 780 5.0065 174.57934 1329.14376 1192.97119 -8.35717 0.00000 -4.53191 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20975 -0.00943 -1.00000 - 17351 2002 3 18 23 44 32 793 5.0066 174.57676 1328.89295 1192.77672 -8.35630 0.00000 -4.53155 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20902 -0.00943 -1.00000 - 17353 2002 3 18 23 44 42 806 5.0067 174.57418 1328.64221 1192.58229 -8.35534 0.00000 -4.53118 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20829 -0.00943 -1.00000 - 17355 2002 3 18 23 44 52 820 5.0069 174.57161 1328.39152 1192.38790 -8.35430 0.00000 -4.53078 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20756 -0.00943 -1.00000 - 17357 2002 3 18 23 45 2 834 5.0070 174.56904 1328.14089 1192.19354 -8.35317 0.00000 -4.53037 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20684 -0.00943 -1.00000 - 17359 2002 3 18 23 45 12 848 5.0071 174.56648 1327.89030 1191.99921 -8.35198 0.00000 -4.52994 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20611 -0.00943 -1.00000 - 17361 2002 3 18 23 45 22 863 5.0073 174.56393 1327.63978 1191.80491 -8.35071 0.00000 -4.52950 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20538 -0.00942 -1.00000 - 17363 2002 3 18 23 45 32 877 5.0074 174.56138 1327.38929 1191.61064 -8.34939 0.00000 -4.52906 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20465 -0.00942 -1.00000 - 17365 2002 3 18 23 45 42 893 5.0076 174.55884 1327.13885 1191.41640 -8.34803 0.00000 -4.52862 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20392 -0.00942 -1.00000 - 17367 2002 3 18 23 45 52 908 5.0077 174.55631 1326.88844 1191.22219 -8.34663 0.00000 -4.52817 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20319 -0.00942 -1.00000 - 17369 2002 3 18 23 46 2 923 5.0078 174.55379 1326.63806 1191.02801 -8.34522 0.00000 -4.52772 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20247 -0.00942 -1.00000 - 17371 2002 3 18 23 46 12 939 5.0080 174.55127 1326.38772 1190.83386 -8.34379 0.00000 -4.52727 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20174 -0.00942 -1.00000 - 17373 2002 3 18 23 46 22 955 5.0081 174.54875 1326.13741 1190.63975 -8.34235 0.00000 -4.52682 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20101 -0.00942 -1.00000 - 17375 2002 3 18 23 46 32 972 5.0082 174.54625 1325.88713 1190.44567 -8.34091 0.00000 -4.52638 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.20028 -0.00942 -1.00000 - 17377 2002 3 18 23 46 42 988 5.0084 174.54375 1325.63689 1190.25162 -8.33947 0.00000 -4.52594 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19955 -0.00942 -1.00000 - 17379 2002 3 18 23 46 53 5 5.0085 174.54126 1325.38667 1190.05761 -8.33805 0.00000 -4.52552 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19882 -0.00942 -1.00000 - 17381 2002 3 18 23 47 3 23 5.0086 174.53877 1325.13650 1189.86363 -8.33664 0.00000 -4.52510 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19810 -0.00942 -1.00000 - 17383 2002 3 18 23 47 13 40 5.0088 174.53629 1324.88635 1189.66969 -8.33528 0.00000 -4.52469 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19737 -0.00942 -1.00000 - 17385 2002 3 18 23 47 23 58 5.0089 174.53382 1324.63624 1189.47578 -8.33395 0.00000 -4.52430 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19664 -0.00941 -1.00000 - 17387 2002 3 18 23 47 33 76 5.0091 174.53136 1324.38617 1189.28191 -8.33268 0.00000 -4.52393 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19591 -0.00941 -1.00000 - 17389 2002 3 18 23 47 43 94 5.0092 174.52890 1324.13614 1189.08807 -8.33147 0.00000 -4.52357 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19518 -0.00941 -1.00000 - 17391 2002 3 18 23 47 53 113 5.0093 174.52645 1323.88616 1188.89428 -8.33033 0.00000 -4.52323 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19445 -0.00941 -1.00000 - 17393 2002 3 18 23 48 3 132 5.0095 174.52400 1323.63623 1188.70052 -8.32928 0.00000 -4.52291 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19372 -0.00941 -1.00000 - 17395 2002 3 18 23 48 13 151 5.0096 174.52156 1323.38634 1188.50681 -8.32834 0.00000 -4.52261 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19300 -0.00941 -1.00000 - 17397 2002 3 18 23 48 23 170 5.0097 174.51913 1323.13652 1188.31314 -8.32751 0.00000 -4.52234 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19227 -0.00941 -1.00000 - 17399 2002 3 18 23 48 33 190 5.0099 174.51671 1322.88677 1188.11952 -8.32680 0.00000 -4.52209 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19154 -0.00941 -1.00000 - 17401 2002 3 18 23 48 43 210 5.0100 174.51429 1322.63708 1187.92595 -8.32622 0.00000 -4.52186 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19081 -0.00941 -1.00000 - 17403 2002 3 18 23 48 53 230 5.0101 174.51188 1322.38747 1187.73242 -8.32577 0.00000 -4.52166 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.19008 -0.00941 -1.00000 - 17405 2002 3 18 23 49 3 250 5.0103 174.50947 1322.13794 1187.53895 -8.32544 0.00000 -4.52148 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18935 -0.00941 -1.00000 - 17407 2002 3 18 23 49 13 271 5.0104 174.50708 1321.88849 1187.34552 -8.32522 0.00000 -4.52132 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18862 -0.00940 -1.00000 - 17409 2002 3 18 23 49 23 292 5.0105 174.50469 1321.63913 1187.15216 -8.32511 0.00000 -4.52119 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18790 -0.00940 -1.00000 - 17411 2002 3 18 23 49 33 313 5.0107 174.50230 1321.38986 1186.95884 -8.32510 0.00000 -4.52108 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18717 -0.00940 -1.00000 - 17413 2002 3 18 23 49 43 335 5.0108 174.49993 1321.14068 1186.76559 -8.32518 0.00000 -4.52098 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18644 -0.00940 -1.00000 - 17415 2002 3 18 23 49 53 357 5.0109 174.49756 1320.89160 1186.57239 -8.32534 0.00000 -4.52091 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18571 -0.00940 -1.00000 - 17417 2002 3 18 23 50 3 379 5.0111 174.49519 1320.64262 1186.37925 -8.32558 0.00000 -4.52085 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18498 -0.00940 -1.00000 - 17419 2002 3 18 23 50 13 401 5.0112 174.49284 1320.39373 1186.18617 -8.32589 0.00000 -4.52081 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18425 -0.00940 -1.00000 - 17421 2002 3 18 23 50 23 424 5.0113 174.49049 1320.14495 1185.99315 -8.32624 0.00000 -4.52079 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18352 -0.00940 -1.00000 - 17423 2002 3 18 23 50 33 447 5.0115 174.48815 1319.89627 1185.80019 -8.32663 0.00000 -4.52077 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18279 -0.00940 -1.00000 - 17425 2002 3 18 23 50 43 470 5.0116 174.48581 1319.64769 1185.60729 -8.32705 0.00000 -4.52076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18206 -0.00940 -1.00000 - 17427 2002 3 18 23 50 53 493 5.0117 174.48348 1319.39921 1185.41445 -8.32749 0.00000 -4.52076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18134 -0.00940 -1.00000 - 17429 2002 3 18 23 51 3 517 5.0119 174.48116 1319.15083 1185.22166 -8.32793 0.00000 -4.52076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.18061 -0.00940 -1.00000 - 17431 2002 3 18 23 51 13 541 5.0120 174.47885 1318.90254 1185.02894 -8.32835 0.00000 -4.52077 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17988 -0.00939 -1.00000 - 17433 2002 3 18 23 51 23 565 5.0121 174.47654 1318.65436 1184.83628 -8.32876 0.00000 -4.52077 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17915 -0.00939 -1.00000 - 17435 2002 3 18 23 51 33 590 5.0123 174.47424 1318.40627 1184.64368 -8.32914 0.00000 -4.52078 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17842 -0.00939 -1.00000 - 17437 2002 3 18 23 51 43 614 5.0124 174.47195 1318.15828 1184.45113 -8.32949 0.00000 -4.52077 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17769 -0.00939 -1.00000 - 17439 2002 3 18 23 51 53 639 5.0125 174.46966 1317.91040 1184.25864 -8.32978 0.00000 -4.52076 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17696 -0.00939 -1.00000 - 17441 2002 3 18 23 52 3 665 5.0127 174.46738 1317.66260 1184.06621 -8.33002 0.00000 -4.52074 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17623 -0.00939 -1.00000 - 17443 2002 3 18 23 52 13 690 5.0128 174.46511 1317.41489 1183.87384 -8.33020 0.00000 -4.52071 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17550 -0.00939 -1.00000 - 17445 2002 3 18 23 52 23 716 5.0129 174.46284 1317.16727 1183.68152 -8.33032 0.00000 -4.52066 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17477 -0.00939 -1.00000 - 17447 2002 3 18 23 52 33 742 5.0131 174.46058 1316.91974 1183.48925 -8.33035 0.00000 -4.52060 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17405 -0.00939 -1.00000 - 17449 2002 3 18 23 52 43 768 5.0132 174.45833 1316.67228 1183.29703 -8.33030 0.00000 -4.52053 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17332 -0.00939 -1.00000 - 17451 2002 3 18 23 52 53 795 5.0133 174.45609 1316.42489 1183.10487 -8.33015 0.00000 -4.52044 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17259 -0.00939 -1.00000 - 17453 2002 3 18 23 53 3 822 5.0135 174.45385 1316.17757 1182.91275 -8.32990 0.00000 -4.52033 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17186 -0.00938 -1.00000 - 17455 2002 3 18 23 53 13 849 5.0136 174.45162 1315.93032 1182.72068 -8.32956 0.00000 -4.52020 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17113 -0.00938 -1.00000 - 17457 2002 3 18 23 53 23 876 5.0137 174.44940 1315.68313 1182.52866 -8.32914 0.00000 -4.52006 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.17040 -0.00938 -1.00000 - 17459 2002 3 18 23 53 33 904 5.0139 174.44718 1315.43599 1182.33668 -8.32865 0.00000 -4.51990 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16967 -0.00938 -1.00000 - 17461 2002 3 18 23 53 43 932 5.0140 174.44497 1315.18893 1182.14475 -8.32811 0.00000 -4.51973 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16894 -0.00938 -1.00000 - 17463 2002 3 18 23 53 53 960 5.0141 174.44277 1314.94192 1181.95287 -8.32753 0.00000 -4.51954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16821 -0.00938 -1.00000 - 17465 2002 3 18 23 54 3 989 5.0143 174.44057 1314.69497 1181.76103 -8.32692 0.00000 -4.51933 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16748 -0.00938 -1.00000 - 17467 2002 3 18 23 54 14 17 5.0144 174.43838 1314.44808 1181.56923 -8.32627 0.00000 -4.51911 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16675 -0.00938 -1.00000 - 17469 2002 3 18 23 54 24 46 5.0145 174.43620 1314.20126 1181.37747 -8.32559 0.00000 -4.51887 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16602 -0.00938 -1.00000 - 17471 2002 3 18 23 54 34 75 5.0147 174.43402 1313.95449 1181.18576 -8.32487 0.00000 -4.51862 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16529 -0.00938 -1.00000 - 17473 2002 3 18 23 54 44 105 5.0148 174.43186 1313.70778 1180.99409 -8.32412 0.00000 -4.51836 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16457 -0.00938 -1.00000 - 17475 2002 3 18 23 54 54 135 5.0149 174.42970 1313.46113 1180.80246 -8.32335 0.00000 -4.51809 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16384 -0.00938 -1.00000 - 17477 2002 3 18 23 55 4 165 5.0150 174.42754 1313.21454 1180.61087 -8.32255 0.00000 -4.51780 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16311 -0.00937 -1.00000 - 17479 2002 3 18 23 55 14 195 5.0152 174.42540 1312.96801 1180.41933 -8.32174 0.00000 -4.51750 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16238 -0.00937 -1.00000 - 17481 2002 3 18 23 55 24 226 5.0153 174.42326 1312.72153 1180.22783 -8.32092 0.00000 -4.51720 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16165 -0.00937 -1.00000 - 17483 2002 3 18 23 55 34 256 5.0154 174.42112 1312.47511 1180.03636 -8.32009 0.00000 -4.51688 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16092 -0.00937 -1.00000 - 17485 2002 3 18 23 55 44 287 5.0156 174.41900 1312.22875 1179.84494 -8.31926 0.00000 -4.51656 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.16019 -0.00937 -1.00000 - 17487 2002 3 18 23 55 54 319 5.0157 174.41688 1311.98245 1179.65356 -8.31842 0.00000 -4.51623 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15946 -0.00937 -1.00000 - 17489 2002 3 18 23 56 4 350 5.0158 174.41477 1311.73621 1179.46222 -8.31759 0.00000 -4.51589 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15873 -0.00937 -1.00000 - 17491 2002 3 18 23 56 14 382 5.0160 174.41267 1311.49002 1179.27092 -8.31676 0.00000 -4.51555 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15800 -0.00937 -1.00000 - 17493 2002 3 18 23 56 24 414 5.0161 174.41057 1311.24389 1179.07967 -8.31594 0.00000 -4.51520 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15727 -0.00937 -1.00000 - 17495 2002 3 18 23 56 34 447 5.0162 174.40848 1310.99782 1178.88845 -8.31513 0.00000 -4.51485 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15654 -0.00937 -1.00000 - 17497 2002 3 18 23 56 44 479 5.0163 174.40640 1310.75181 1178.69728 -8.31433 0.00000 -4.51450 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15581 -0.00937 -1.00000 - 17499 2002 3 18 23 56 54 512 5.0165 174.40432 1310.50586 1178.50615 -8.31354 0.00000 -4.51414 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15508 -0.00936 -1.00000 - 17501 2002 3 18 23 57 4 545 5.0166 174.40225 1310.25998 1178.31506 -8.31277 0.00000 -4.51378 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15435 -0.00936 -1.00000 - 17503 2002 3 18 23 57 14 579 5.0167 174.40019 1310.01416 1178.12402 -8.31202 0.00000 -4.51342 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15362 -0.00936 -1.00000 - 17505 2002 3 18 23 57 24 612 5.0169 174.39813 1309.76840 1177.93301 -8.31129 0.00000 -4.51307 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15289 -0.00936 -1.00000 - 17507 2002 3 18 23 57 34 646 5.0170 174.39609 1309.52271 1177.74206 -8.31057 0.00000 -4.51271 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15216 -0.00936 -1.00000 - 17509 2002 3 18 23 57 44 680 5.0171 174.39405 1309.27708 1177.55114 -8.30988 0.00000 -4.51235 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15143 -0.00936 -1.00000 - 17511 2002 3 18 23 57 54 715 5.0172 174.39201 1309.03153 1177.36028 -8.30920 0.00000 -4.51199 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.15070 -0.00936 -1.00000 - 17513 2002 3 18 23 58 4 750 5.0174 174.38999 1308.78604 1177.16945 -8.30853 0.00000 -4.51164 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14997 -0.00936 -1.00000 - 17515 2002 3 18 23 58 14 785 5.0175 174.38797 1308.54063 1176.97868 -8.30789 0.00000 -4.51128 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14924 -0.00936 -1.00000 - 17517 2002 3 18 23 58 24 820 5.0176 174.38596 1308.29529 1176.78794 -8.30726 0.00000 -4.51093 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14851 -0.00936 -1.00000 - 17519 2002 3 18 23 58 34 855 5.0178 174.38395 1308.05002 1176.59726 -8.30665 0.00000 -4.51058 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14778 -0.00936 -1.00000 - 17521 2002 3 18 23 58 44 891 5.0179 174.38195 1307.80483 1176.40662 -8.30606 0.00000 -4.51023 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14705 -0.00936 -1.00000 - 17523 2002 3 18 23 58 54 927 5.0180 174.37996 1307.55971 1176.21602 -8.30548 0.00000 -4.50988 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14632 -0.00935 -1.00000 - 17525 2002 3 18 23 59 4 963 5.0181 174.37798 1307.31466 1176.02547 -8.30492 0.00000 -4.50954 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14560 -0.00935 -1.00000 - 17527 2002 3 18 23 59 15 0 5.0183 174.37600 1307.06970 1175.83497 -8.30437 0.00000 -4.50920 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14487 -0.00935 -1.00000 - 17528 2002 3 18 23 59 20 18 5.0183 174.37502 1306.94724 1175.73973 -8.30410 0.00000 -4.50903 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14450 -0.00935 -1.00000 - 17530 2002 3 18 23 59 30 55 5.0185 174.37305 1306.70238 1175.54930 -8.30356 0.00000 -4.50869 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14377 -0.00935 -1.00000 - 17532 2002 3 18 23 59 40 92 5.0186 174.37109 1306.45760 1175.35891 -8.30303 0.00000 -4.50836 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14304 -0.00935 -1.00000 - 17534 2002 3 18 23 59 50 129 5.0187 174.36914 1306.21289 1175.16857 -8.30249 0.00000 -4.50803 150.0 150.0 0.0 -2.0 400.0 1.0 0.0 0.0 3.14231 -0.00935 -1.00000 diff --git a/srcData/run_information.1d.txt b/srcData/run_information.1d.txt deleted file mode 100644 index 42739dbd..00000000 Binary files a/srcData/run_information.1d.txt and /dev/null differ diff --git a/srcData/run_information.3d.txt b/srcData/run_information.3d.txt deleted file mode 100644 index e2d24bb1..00000000 Binary files a/srcData/run_information.3d.txt and /dev/null differ diff --git a/srcData/run_information.eclipse.txt b/srcData/run_information.eclipse.txt deleted file mode 100644 index cf795c65..00000000 Binary files a/srcData/run_information.eclipse.txt and /dev/null differ diff --git a/srcData/runlog b/srcData/runlog deleted file mode 100644 index 17c5bba1..00000000 --- a/srcData/runlog +++ /dev/null @@ -1,53 +0,0 @@ - Setting potential to Weimer [1996]. - > Reading Inputs -Writing Output files (3DALL) at iStep : 1 2002 12 21 0 0 0 - > Starting Main Time Loop - Setting potential to Weimer [1996]. -iStep 4, Time : 000011, RealTime : 0.06 min -iStep 7, Time : 000022, RealTime : 0.08 min -iStep 10, Time : 000033, RealTime : 0.09 min -iStep 12, Time : 000040, RealTime : 0.11 min -iStep 15, Time : 000051, RealTime : 0.13 min -iStep 18, Time : 000102, RealTime : 0.14 min -iStep 20, Time : 000110, RealTime : 0.17 min -iStep 23, Time : 000121, RealTime : 0.19 min -iStep 26, Time : 000132, RealTime : 0.20 min -iStep 28, Time : 000140, RealTime : 0.22 min -iStep 31, Time : 000151, RealTime : 0.23 min -iStep 34, Time : 000202, RealTime : 0.25 min -iStep 36, Time : 000210, RealTime : 0.27 min -iStep 39, Time : 000221, RealTime : 0.29 min -iStep 42, Time : 000232, RealTime : 0.31 min -iStep 44, Time : 000240, RealTime : 0.32 min -iStep 47, Time : 000251, RealTime : 0.34 min -iStep 50, Time : 000302, RealTime : 0.36 min -iStep 52, Time : 000310, RealTime : 0.38 min -iStep 55, Time : 000321, RealTime : 0.40 min -iStep 58, Time : 000332, RealTime : 0.42 min -iStep 61, Time : 000343, RealTime : 0.44 min -iStep 63, Time : 000351, RealTime : 0.45 min -iStep 66, Time : 000402, RealTime : 0.47 min -iStep 69, Time : 000413, RealTime : 0.49 min -iStep 71, Time : 000420, RealTime : 0.51 min -iStep 74, Time : 000432, RealTime : 0.53 min -iStep 77, Time : 000443, RealTime : 0.55 min -iStep 79, Time : 000450, RealTime : 0.56 min -Writing Output files (3DALL) at iStep : 82 2002 12 21 0 5 0 --> GITM took 34.6 seconds to complete ---> initialize took 1.4 seconds to complete ----> init_b0 took 0.0 seconds to complete -----> Message Pass took 2.0 seconds to complete -----> calc_rates took 3.2 seconds to complete -----> chapman_integrals took 0.0 seconds to complete ----> calc_efield took 0.1 seconds to complete ---> advance took 31.7 seconds to complete ----> vertical_all took 5.2 seconds to complete ----> euv_ionization_heat took 0.3 seconds to complete ----> conduction took 0.1 seconds to complete ----> Get AMIE Potential took 1.1 seconds to complete -----> setgrid took 0.0 seconds to complete -----> getpotential took 0.9 seconds to complete ----> Aurora took 0.5 seconds to complete ----> Ion Forcing took 0.2 seconds to complete ----> calc_chemistry took 11.6 seconds to complete ----> horizontal_all took 4.6 seconds to complete diff --git a/srcData/temp_high_test.ps b/srcData/temp_high_test.ps deleted file mode 100644 index e383be80..00000000 Binary files a/srcData/temp_high_test.ps and /dev/null differ diff --git a/srcData/temp_low_test.ps b/srcData/temp_low_test.ps deleted file mode 100644 index bd38d538..00000000 Binary files a/srcData/temp_low_test.ps and /dev/null differ diff --git a/srcData/v15.1d.ps b/srcData/v15.1d.ps deleted file mode 100644 index 5d2d2a63..00000000 Binary files a/srcData/v15.1d.ps and /dev/null differ diff --git a/srcData/v15.eclipse.ps b/srcData/v15.eclipse.ps deleted file mode 100644 index bd642e32..00000000 Binary files a/srcData/v15.eclipse.ps and /dev/null differ diff --git a/srcData/v25.1d.ps b/srcData/v25.1d.ps deleted file mode 100644 index 615cc5f3..00000000 Binary files a/srcData/v25.1d.ps and /dev/null differ diff --git a/srcData/v25.eclipse.ps b/srcData/v25.eclipse.ps deleted file mode 100644 index 09d76ddb..00000000 Binary files a/srcData/v25.eclipse.ps and /dev/null differ diff --git a/srcDoc/FAQ/faq.md b/srcDoc/FAQ/faq.md new file mode 100644 index 00000000..c964874c --- /dev/null +++ b/srcDoc/FAQ/faq.md @@ -0,0 +1,20 @@ +# Common Problems + +## The code won't compile!! + +Sorry about that. It is hard to test on every system type. + +There are some steps you can try before submitting a bug report or contacting the developers. + +1. First, try to un-install everything: +``` +make distclean +./Config.pl -uninstall +``` +2. Then, check to see if any files are changed: +``` +git status +``` +3. If any of the Fortran or Make-files have changed, you may want to `git restore` the changes. +4. Try to re-configure and then re-compile + diff --git a/srcDoc/chemistry_earth.pdf b/srcDoc/chemistry_earth.pdf deleted file mode 100644 index c9e16479..00000000 Binary files a/srcDoc/chemistry_earth.pdf and /dev/null differ diff --git a/srcDoc/chemistry_earth.tex b/srcDoc/chemistry_earth.tex deleted file mode 100644 index 148fe260..00000000 --- a/srcDoc/chemistry_earth.tex +++ /dev/null @@ -1,524 +0,0 @@ -% Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -% For more information, see http://csem.engin.umich.edu/tools/swmf -\documentclass[twoside,10pt]{book} -\usepackage{times} -\usepackage{graphicx} -\usepackage{alltt} -\usepackage{amsmath} -\usepackage{epsfig} -\usepackage{fancyhdr} -\usepackage[square]{natbib} -\usepackage{multicol} -\usepackage{subfigure} -\usepackage{fancyvrb} -\usepackage{color} - -% use these lengths for a more uniform margin -% this format is more pleasing for stapling -\setlength{\oddsidemargin}{-.1 in} -\setlength{\evensidemargin}{0.0 in} -\setlength{\textwidth}{6.5 in} -\setlength{\topmargin}{0 in} -\setlength{\textheight}{8.5 in} - -\renewcommand{\deg}{^{\circ}} - - -\title{GITM Chemical Scheme for Earth \\ \large Version 2.1} -\author{A.J. Ridley} - -\begin{document} - -\pagestyle{fancy} -\lhead[\fancyplain{}{\bfseries\thepage}]{\fancyplain{}{\bfseries\rightmark}} -\rhead[\fancyplain{}{\bfseries\leftmark}]{\fancyplain{}{\bfseries\thepage}} -\cfoot{} - -%\pagestyle{headings} - -\maketitle - -\tableofcontents - -\clearpage - -%Chapter 1 -\chapter{Introduction to GITM} -\input{intro} -\label{intro.ch} - -%Chapter 2 -\chapter{Chemistry} -\label{chemistry.ch} - -\begin{equation} -O_2 \rightarrow 2O -\end{equation} -EUV dissociation rate. - -\begin{equation} -N_2 \rightarrow 2N -\end{equation} -EUV dissociation rate. - -\begin{equation} -O + O + M \rightarrow O_2 + M, \hspace{0.5 in} -R = 9.59 \times 10^{-46} e^{\frac{480}{T_n}} -\end{equation} - -\begin{equation} -N_2 \rightarrow N_2^+ -\end{equation} -EUV Ionization Rate. - -\begin{equation} -N_2 \rightarrow N_2^+ -\end{equation} -Auroral Ionization Rate. - -\begin{equation} -O_2 \rightarrow O_2^+ -\end{equation} -EUV Ionization Rate. - -\begin{equation} -O_2 \rightarrow O_2^+ -\end{equation} -Auroral Ionization Rate. - -\begin{equation} -O(^3P) \rightarrow O^+(^4S) -\end{equation} -EUV Ionization Rate. - -\begin{equation} -O(^3P) \rightarrow O^+(^2D) -\end{equation} -EUV Ionization Rate. - -\begin{equation} -O(^3P) \rightarrow O^+(^2P) -\end{equation} -EUV Ionization Rate. - -\begin{equation} -\begin{split} -O(^4S) \rightarrow & O^+(^4S) (40\%) \\ -O(^4S) \rightarrow & O^+(^2D) (40\%) \\ -O(^4S) \rightarrow & O^+(^2P) (20\%) -\end{split} -\end{equation} -Auroral Ionization Rate. - -\begin{equation} -\begin{split} -O^+(^2D) + N_2 \rightarrow & N_2^+ + O + 1.33 eV \\ -R = & 8.0\times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2P) + N_2 \rightarrow & N_2^+ + O + 3.02 eV \\ -R = & 4.8\times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N_2^+ + O_2 \rightarrow & O_2^+ + N_2 + 3.53 eV \\ -R = & 5.0\times 10^{-17} \times \bigg(\frac{T_n+T_i}{600}\bigg)^{-0.8} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N_2^+ + O \rightarrow & NO^+ + N(^2D) + 0.7 eV \\ -R = & 1.4\times 10^{-16} \times \bigg(\frac{T_n+T_i}{600}\bigg)^{-0.44} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N_2^+ + e^- \rightarrow & 2N(^2D) + 1.04 eV \\ -R = & 1.8\times 10^{-13} \times \bigg(\frac{T_e}{300}\bigg)^{-0.39} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N_2^+ + O \rightarrow & O^+(^4S) + N_2 + 1.96 eV \\ -R = & 1.4\times 10^{-16} \times \bigg(\frac{T_n+T_i}{600}\bigg)^{-0.44} -\end{split} -\end{equation} -I am not sure that this is correct, since it is the same as 2.8. - -\begin{equation} -\begin{split} -N_2^2 + NO \rightarrow & NO^+ + N_2 + 6.33 eV \\ -R = & 4.1 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^4S) + O_2 \rightarrow & O_2^+ + O + 1.55 eV \\ -R = & 2.82 \times 10^{-17} \\ - & - 7.740\times 10^{-18}(T_{O2}/300.0) \\ - & + 1.073\times 10^{-18}(T_{O2}/300.0)^2 \\ - & - 5.170\times 10^{-20}(T_{O2}/300.0)^3 \\ - & + 9.650\times 10^{-22}(T_{O2}/300.0)^4 -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2D) + O_2 \rightarrow & O_2^+ + 4.865 eV \\ -R = & 7.0 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N^+ + O_2 \rightarrow & O_2^+ + N(^4S) + 2.486 \\ -R = & 1.1 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N^+ + O_2 \rightarrow & O_2^+ + N(^4D) + 0.1 \\ -R = & 2.0 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O_2^+ + e^- \rightarrow & O(^1D) + O(^1D) + 3.06 eV (31\%) \\ -O_2^+ + e^- \rightarrow & O(^3P) + O(^1D) + 3.06 eV (42\%) \\ -O_2^+ + e^- \rightarrow & O(^3P) + O(^3P) + 3.06 eV (22\%) \\ -R = & 2.4\times 10^{-13} \bigg(\frac{T_e}{300}\bigg)^{-0.7} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O_2^+ + N(^4S) \rightarrow & NO^+ + O + 4.25 eV \\ -R = & 1.5 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O_2^+ + NO \rightarrow & NO^+ + O_2 + 2.813 eV \\ -R = & 4.6 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O_2^+ + N_2 \rightarrow & NO^+ + NO + 0.9333 eV \\ -R = & 5.0 \times 10^{-22} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2D) + O \rightarrow & O^+(^4S) + O(^3P) + 3.31 eV \\ -O^+(^2D) + O \rightarrow & O^+(^4S) + O(^1D) + 1.35 eV \\ -R = & 1.0 \times 10^{-17} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2D) + e^- \rightarrow & O^+(^4S) + e^- + 3.31 eV \\ -R = & 7.8 \times 10^{-14}\bigg(\frac{T_e}{300}\bigg)^{-0.5} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2D) + N_2 \rightarrow & O^+(^4S) + N_2 + 3.31 eV \\ -R = & 8.0 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2P) + O \rightarrow & O^+(^4S) + O + 5.0 eV \\ -R = & 5.2 \times 10^{-17} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2P) + e^- \rightarrow & O^+(^4S) + e^- + 5.0 eV \\ -R = & 4.0 \times 10^{-14}\bigg(\frac{T_e}{300}\bigg)^{-0.5} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2P) \rightarrow & O^+(^4S) + 247.0nm\\ -R = & 0.047 -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N^+ O_2 \rightarrow & O^+(^4S) + NO + 2.31 eV\\ -R = & 3.0 \times 10^{-17} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^4S) + N_2 \rightarrow & NO^+ + N(^4S) + 1.10 eV\\ -T_{eff} = & T_i + \frac{M_O}{M_O + M_{N_2}}\times\frac{M_{N_2} - M_b}{3k_b}V_i^2 \\ -M_b = &\frac{M_c}{M_{mc}} \\ -M_c = & \sum_n \frac{M_n\nu_{in}}{M_n + M_O} \\ -M_{mc} = & \sum_n \frac{ \nu_{in}}{M_n + M_O} \\ -R = & 1.533\times 10^{-18} - \\ - & 5.920\times 10^{-19} \bigg(\frac{T_{eff}}{300}\bigg) + \\ - & 8.600\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg)^2 (T_{eff} < 1700) \\ -R = & 2.730\times 10^{-18} - \\ - & 1.155\times 10^{-18} \bigg(\frac{T_{eff}}{300}\bigg) + \\ - & 1.483\times 10^{-19} \bigg(\frac{T_{eff}}{300}\bigg)^2 (T_{eff} > 1700) -\end{split} -\end{equation} -If $T_{eff} < 350$, then $T_{eff} = 350$. -If $T_{eff} > 6000$, then $T_{eff} = 6000$. - -\begin{equation} -\begin{split} -O^+(^4S) + O_2 \rightarrow & O_2^+ + O + 1.55 eV\\ -R = & 2.820\times 10^{-17} - \\ - & 7.740\times 10^{-18} \bigg(\frac{T_{eff}}{300}\bigg) + \\ - & 1.073\times 10^{-18} \bigg(\frac{T_{eff}}{300}\bigg)^2 - \\ - & 5.170\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg)^3 + \\ - & 9.650\times 10^{-22} \bigg(\frac{T_{eff}}{300}\bigg)^4\\ -T_{eff} = & T_i + \frac{M_O}{M_O + M_{O_2}}\times\frac{M_{O_2} - M_b}{3k_b}V_i^2 -\end{split} -\end{equation} -If $T_{eff} < 350$, then $T_{eff} = 350$. -If $T_{eff} > 6000$, then $T_{eff} = 6000$. - -\begin{equation} -\begin{split} -O^+(^4S) + NO \rightarrow & NO^+ + O + 4.36 eV\\ -R = & 8.36\times 10^{-19} - \\ - & 2.02\times 10^{-19} \bigg(\frac{T_{eff}}{300}\bigg) + \\ - & 6.95\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg)^2 (T_{eff} < 1500)\\ -R = & 5.33\times 10^{-19} - \\ - & 1.64\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg) + \\ - & 4.72\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg)^2 \\ - & 7.05\times 10^{-22} \bigg(\frac{T_{eff}}{300}\bigg)^3 (T_{eff} > 1500) \\ -T_{eff} = & T_i + \frac{M_O}{M_O + M_{NO}}\times\frac{M_{NO} - M_b}{3k_b}V_i^2 -\end{split} -\end{equation} -If $T_{eff} < 350$, then $T_{eff} = 350$. -If $T_{eff} > 6000$, then $T_{eff} = 6000$. - -\begin{equation} -\begin{split} -O^+(^4S) + N(^2D) \rightarrow & N^+ + O + 1.45 eV\\ -R = & 1.3 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2P) +e^- \rightarrow & O^+(^2D) + e^- + 1.69 eV\\ -R = & 1.3 \times 10^{-13} \bigg(\frac{T_e}{300}\bigg)^{-0.5} % te3m05 -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2P) \rightarrow & O^+(^2D) + 732nm\\ -R = & 0.171 -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2D) \rightarrow & O^+(^4S) + 372.6nm\\ -R = & 7.7\times 10^{-5} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2P) + N_2 \rightarrow & N^+ + NO + 0.70 eV\\ -R = & 1.0 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+_2 + N(^2D) \rightarrow & N^+ + O_2 \\ -R = & 2.5 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2P) + N \rightarrow & N^+ + O + 2.7 eV \\ -R = & 1.0 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O^+(^2D) + N \rightarrow & N^+ + O + 1.0 eV \\ -R = & 7.5 \times 10^{-17} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N^+ + O_2 \rightarrow & NO^+ + O(^1D) + 6.67 eV \\ -R = & 2.6 \times 10^{-16} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N^+ + O \rightarrow & O^+(^4S) + N + 0.93 eV \\ -R = & 5.0 \times 10^{-19} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -NO^+ + e^- \rightarrow & O + N(^2D) + 0.38 eV \\ -R = & 4.0 \times 10^{-13} \bigg(\frac{T_e}{300}\bigg)^{-0.5} % te3m05 -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N(^2D) + e^- \rightarrow & N(^4S) + e^- + 2.38 eV\\ -R = & 5.5 \times 10^{-16} \bigg(\frac{T_e}{300}\bigg)^{-0.5} % te3m05 -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N(^2D) + O \rightarrow & N(^4S) + O(^3P) + 2.38 eV (90\%)\\ -N(^2D) + O \rightarrow & N(^4S) + O(^1D) + 0.42 eV (10\%)\\ -R = & 2.0 \times 10^{-18} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N(^2D) \rightarrow & N(^4S) + 520nm \\ -R = & 1.06 \times 10^{-5} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -NO \rightarrow & N(^4S) + O \\ -R = & 4.5 \times 10^{-6} e^{(-1\times 10^{-8}([O_2]\times 10^{-6})^{0.38})} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N(^4S) + O_2 \rightarrow & NO + O + 1.385 eV \\ -R = & 4.4 \times 10^{-18} e^{-\frac{3220}{T_n}} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N(^4S) + NO \rightarrow & N_2 + O + 3.25 eV\\ -R = & 1.5 \times 10^{-18} \sqrt{T_n} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N(^2P) \rightarrow & N(^2D) + 1040nm\\ -R = & 7.9 \times 10^{-2} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N(^2D) + O_2 \rightarrow & NO + O(^3P) + 3.76 eV (90\%)\\ -N(^2D) + O_2 \rightarrow & NO + O(^1D) + 1.80 eV (10\%)\\ -R = & 6.2 \times 10^{-18} \frac{T_n}{300} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -N(^2D) + NO \rightarrow & N_2 + O + 5.63 eV\\ -R = & 7.0 \times 10^{-17} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O(^1D) \rightarrow & O(^3P) + 630nm\\ -R = & 0.0071 -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O(^1D) \rightarrow & O(^3P) + 636.4nm\\ -R = & 0.0022 -\end{split} -\end{equation} -I don't understand this... - - -\begin{equation} -\begin{split} -O(^1D) + e^- \rightarrow & O(^3P) + e^- + 1.96 eV\\ -R = & 2.6 \times 10^{-17} T_e^(0.5)e^(-22740/T_e) -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O(^1D) + N_2 \rightarrow & O(^3P) + N_2 + 1.96 eV\\ -R = & 2.3 \times 10^{-17} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O(^1D) + O_2 \rightarrow & O(^3P) + O_2 + 1.96 eV\\ -R = & 2.9 \times 10^{-17} e^{\frac{67.5}{T_n}} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -O(^1D) + O(^3P) \rightarrow & 2O(^3P) + 1.96 eV\\ -R = & 8.0 \times 10^{-18} -\end{split} -\end{equation} - -\begin{equation} -\begin{split} -NO \rightarrow & NO^+ + e^-\\ -R = & 5.88 \times 10^{-7}(1+0.2(F10.7-65)/100)e^F\cos(SZA)\\ -F = & (\frac{[O_2]}{1\times 10^{6}})^{0.8855} -\end{split} -\end{equation} - - -%Bibliography -\clearpage -\addcontentsline{toc}{chapter}{Bibliography} -\bibliographystyle{chicagoa} -\bibliography{gitm} - -\end{document} diff --git a/srcDoc/common_inputs.md b/srcDoc/common_inputs.md new file mode 100644 index 00000000..ae341e9a --- /dev/null +++ b/srcDoc/common_inputs.md @@ -0,0 +1,435 @@ +# Common Inputs {#indices.sec} + +This only touches on the most frequently changed input options. For a full +reference of all available inputs, please see [All Inputs](set_inputs.md) + +## Time + +The start time and end time of a GITM simulation can be set using the following commands (as an example): + +```bash +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +05 minute +00 second +``` + +Hopefully these are obvious what they are. See [restarts](set_inputs.md#restart) for +more information on how to restart a run. + +## Setting the grid + +GITM can simulate the whole planet or a portion of the planet. Unless you know what you +are doing, I would stick to modeling the whole planet. This can be done with the +following command (as an example): + +``` +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) +``` +The first two numbers control the resolution. The higher these numbers, the finer the +resolution, but the more processors you will need - you need one processor for each +block that you asked for (2 x 2 = 4 blocks / processors). For example, if you wanted to +run at 5 degrees by 5 degrees reolution, the following could be used: + +``` +#GRID +8 number of blocks in longitude +4 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) +``` +and 32 processors would be needed. + +There is a lot more to learn here, so we have written a whole section on this. [See this grid description for more](internals/grid.md). + + +## Saving output files + +GITM outputs a wide variety of output files. +[There is a whole section that describes them](outputs.md). + +Output files are controlled with the `#SAVEPLOTS` command. + +The first line says how often to output restart files, which we will set aside for a +bit. It is ok to leave this as 2 hours (7200 - these are all specified in seconds), +unless you know what you are doing. + +The second line tells GITM how many types of output files you want. + +The following lines tell GITM what type of file output you want and how often you want +them. The most common type of output is 3DALL, which includes all ion and neutral states +(densities, temperatures, velocities). + +An example: +``` +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +3DALL first output style +900.0 dt for output (one every 15 min) +``` + +This will output restart files every 2 hours (this can be ignored) and 3DALL files every +15 minutes. 2 hours is from 7200.0 seconds, and 15 minutes is from 900.0 seconds. + +Another example: +``` +#SAVEPLOTS +7200.0 dt for writing restart files +3 how many output files do you want +3DALL first output style +900.0 dt for output (one every 15 min) +2DGEL second output style +300.0 dt for output (one every 15 min) +3DTHM third output style +900.0 dt for output (one every 15 min) +``` + +2DGEL files output things like the electric potential and auroral precipitation on the +geographic grid at the bottom of the model. 3DTHM files contain thermodynamic variables +such as heating and cooling rates. + +## IMF and Solar Wind {#imf.sec} + +This file controls the high-latitude electric field and aurora when +using models that depend on the solar wind and interplanetary magnetic +field (IMF). It allows GITM to dynamically control these quantities. You +can create either realistic IMF files or hypothetical ones. + +A script is provided to automatically download these files, and can be called +using the `srcPython/omni_download_write_swmf.py` python file. + +Here is an example file: + + This file was created by Aaron Ridley to do some wicked cool science thing. + + The format is: + Year MM DD HH Mi SS mS Bx By Bz Vx Vy Vz N T + + Year=year + MM = Month + DD = Day + HH = Hour + Mi = Minute + SS = Second + mS = Millisecond + Bx = IMF Bx GSM Component (nT) + By = IMF By GSM Component (nT) + Bz = IMF Bz GSM Component (nT) + Vx = Solar Wind Vx (km/s) + Vy = Solar Wind Vy (km/s) + Vz = Solar Wind Vz (km/s) + N = Solar Wind Density (/cm3) + T = Solar Wind Temperature (K) + + #DELAY + 900.0 + + #START + 2000 3 20 2 53 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 2 54 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 2 55 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 2 56 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 2 57 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 2 58 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 2 59 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 3 0 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 3 1 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 3 2 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 3 3 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 + 2000 3 20 3 4 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 + +This file is provided to GITM by setting the input: + +```bash +#MHD_INDICES +imf_file_name.dat +``` + +!!!note + All of the auxiliary input (data) files can (and should) be kept in the same run directory + as the linked GITM executable and the `UAM.in` file. Otherwise, the path should be + specified in the UAM.in file relative to the run directory. + +## SME Indices + +To use models such as FTA[^1] to drive the aurora, GITM must be provided with Auroral +Electrojet (AE) indices. Normally this is from SuperMag (hence the name "SME": +SuperMag auroral Electrojet), but any source may be used. + +[^1]: Wu, C., Ridley, A. J., DeJong, A. D., & Paxton, L. J. (2021). FTA: A Feature Tracking Empirical Model Of Auroral Precipitation. Space Weather, 19, e2020SW002629. . + +These files are normally of the format: + + File created by python code using SuperMAGGetIndices + + ============================================================ + + 2002 12 21 00 00 00 616.74 -354.47 262.26 + 2002 12 21 00 01 00 623.75 -354.72 269.03 + 2002 12 21 00 02 00 617.18 -349.28 267.90 + 2002 12 21 00 03 00 633.56 -350.01 283.55 + 2002 12 21 00 04 00 664.55 -357.88 306.68 + +A python routine to download these files over a given date range can be found +in `srcPython/supermag_download_ae.py`. + +The corresponding section in `UAM.in` is read as: +```bash +#SME_INDICES +ae_file-name.dat ae file name +none onset file +T use AE for HP +F don't automatically incorporate hemispheric asymmetries +``` + +The lines following the AE file-name are for the AL-onset file. This can be set to +`none` if you do not have one or do not know what that means. The next line tells GITM +whether to derive HP (Hemispheric Power) from AE or to use a NOAA HPI file (if one is +required). Since production of hemispheric power was stopped by NOAA in 2013 (the world +has moved on), it is best to use the HP derived from AE. + +Even if AE is not required, it is recommended to provide a SME file as input to +derive HP, as it is often more representative of geomagnetic conditions than the NOAA +HPI (maybe this is why they stopped producing it). The formula to calculate hemispheric +power (HP) from AE is taken from (Wu et al., 2021)[^1] and is given as: + +```math +\begin{align} +HemisphericPower = 0.102 * AE + 8.953 +\end{align} +``` + +*[HP]: Hemispheric Power + +## Hemispheric Power {#hp.sec} + +The hemispheric power files describe the dynamic variation of the auroral power going +into each hemisphere. Models such as FRE[^FRE] use the Hemispheric Power to determine +which level of the model it should use. It is recommended to not use the NOAA provided +HP files, but to use the AE derived HP, as described above. But, if you are a purist, +the National Oceanic and Atmospheric Administration (NOAA) provides these hemispheric +power files for public use online at . +There are two types of formats used for hemispheric power files (due to a change in the +NOAA output format in 2007). Both file formats can be used by GITM, and are shown in the +examples below. + +[^FRE]: Fuller-Rowell, T. J., and D. S. Evans (1987), Height-integrated Pedersen + and Hall conductivity patterns inferred from the TIROS-NOAA satellite data, + J. Geophys. Res., 92(A7), 7606–7618, + doi:[10.1029/JA092iA07p07606](https://doi.org/10.1029/JA092iA07p07606). + +!!! tip + GITM can read a NOAA HPI file, however the recommended way to provide + hemispheric power is to have GITM derive HPI from the AE-index. Seriously. + + See [SME Indices](#sme-indices) for more information. + +Example file 1 for data prior to 2007: + + # Prepared by the U.S. Dept. of Commerce, NOAA, Space Environment Center. + # Please send comments and suggestions to sec@sec.noaa.gov + # + # Source: NOAA POES (Whatever is aloft) + # Units: gigawatts + + # Format: + + # The first line of data contains the four-digit year of the data. + # Each following line is formatted as in this example: + + # NOAA-12(S) 10031 9.0 4 .914 + + # Please note that if the first line of data in the file has a + # day-of-year of 365 (or 366) and a HHMM of greater than 2300, + # that polar pass started at the end of the previous year and + # ended on day-of-year 001 of the current year. + + # A7 NOAA POES Satellite number + # A3 (S) or (N) - hemisphere + # I3 Day of year + # I4 UT hour and minute + # F8.1 Estimated Hemispheric Power in gigawatts + # I3 Hemispheric Power Index (activity level) + # F8.3 Normalizing factor + + 2000 + NOAA-15(N) 10023 35.5 7 1.085 + NOAA-14(S) 10044 25.3 7 .843 + NOAA-15(S) 10114 29.0 7 .676 + NOAA-14(N) 10135 108.7 10 1.682 + NOAA-15(N) 10204 36.4 7 1.311 + . + . + . + +Example file 2 for data in and after 2007: + + :Data_list: power_2010.txt + :Created: Sun Jan 2 10:12:58 UTC 2011 + + + # Prepared by the U.S. Dept. of Commerce, NOAA, Space Environment Center. + # Please send comments and suggestions to sec@sec.noaa.gov + # + # Source: NOAA POES (Whatever is aloft) + # Units: gigawatts + + # Format: + + # Each line is formatted as in this example: + + # 2006-09-05 00:54:25 NOAA-16 (S) 7 29.67 0.82 + + # A19 Date and UT at the center of the polar pass as YYYY-MM-DD hh:mm:ss + # 1X (Space) + # A7 NOAA POES Satellite number + # 1X (Space) + # A3 (S) or (N) - hemisphere + # I3 Hemispheric Power Index (activity level) + # F7.2 Estimated Hemispheric Power in gigawatts + # F7.2 Normalizing factor + + 2010-01-01 00:14:37 NOAA-17 (N) 1 1.45 1.16 + 2010-01-01 00:44:33 NOAA-19 (N) 1 1.45 1.17 + . + . + . + +The file type is automatically inferred. To provide an HPI file, use: + +```bash +#NOAAHPI_INDICES +hemi-power-file.txt +``` + +## More information on GITM's IE + +For more information on GITM's ionospheric electrodynamics, which is where the above +indices are passed, please refer to the [Electrodynamics](internals/electrodynamics.md) page. + + +## Solar Irradiance {#solar_irradiance.sec} + +To provide GITM with realistic solar irradiance, the solar EUV must be +specified. There are two pathways for doing this. The easiest is to simply specify the F10.7. GITM then runs some EUV empirical models of the irradiance (such as EUVAC), and uses these results to drive GITM. The F10.7 is provided with GITM, so you can just point GITM to this file and be done: +```bash +#NGDC_INDICES +UA/DataIn/f107.txt +``` +It should be noted that MSIS also needs F10.7, so really this command should be included in every UAM.in file. + +In addition, GITM can use the Flare Irradiance Spectrum Model specification of the EUV flux. Daily values of FISM can be used unless you are doing a flare study. These daily values are included with GITM and can be found in UA/DataIn/FISM. As an example, a yearly file can be used with the command (for example): +```bash +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2002.dat Filename for specific year +``` + +An example from the FISM model is shown below. + + #START + 2009 3 20 0 0 0 0.00389548 0.00235693 + 0.00127776 0.000907677 0.000652528 0.000372993 0.000250124 0.000194781 + 0.000389686 0.000118650 0.00642058 0.00618358 0.000133490 7.67560e-05 + 7.80045e-05 0.000145722 5.92577e-05 5.95070e-05 0.000102437 6.48526e-05 + 8.94509e-05 0.000101928 5.94333e-05 5.36012e-05 1.51744e-05 1.10265e-05 + 1.26937e-05 2.16591e-05 9.57055e-06 1.82608e-05 7.07992e-05 2.55451e-05 + 1.12451e-05 6.89255e-05 3.03882e-05 2.33862e-05 2.98026e-05 4.44682e-05 + 1.50847e-05 3.00909e-05 8.18379e-05 3.52176e-05 0.000416491 0.000269080 + 0.000269080 0.000275734 6.60872e-05 4.46671e-05 0.000220697 0.000512933 + 3.85239e-05 9.30928e-05 2.71239e-05 1.23011e-05 1.05722e-05 9.30876e-06 + 7.08442e-07 3.54221e-07 1.77110e-07 + 2009 3 20 0 1 0 0.00389548 0.00235693 + 0.00127776 0.000907677 0.000652528 0.000372993 0.000250124 0.000194781 + 0.000389686 0.000118650 0.00642058 0.00618358 0.000133490 7.67560e-05 + 7.80045e-05 0.000145722 5.92577e-05 5.95070e-05 0.000102437 6.48526e-05 + 8.94509e-05 0.000101928 5.94333e-05 5.36012e-05 1.51744e-05 1.10265e-05 + 1.26937e-05 2.16591e-05 9.57055e-06 1.82608e-05 7.07992e-05 2.55451e-05 + 1.12451e-05 6.89255e-05 3.03882e-05 2.33862e-05 2.98026e-05 4.44682e-05 + 1.50847e-05 3.00909e-05 8.18379e-05 3.52176e-05 0.000416491 0.000269080 + 0.000269080 0.000275734 6.60872e-05 4.46671e-05 0.000220697 0.000512933 + 3.85239e-05 9.30928e-05 2.71239e-05 1.23011e-05 1.05722e-05 9.30876e-06 + 7.08442e-07 3.54221e-07 1.77110e-07 + . + . + . + +If you want to create your own files, there is a code in srcPython to download and produce the FISM files. You can use this python code to download daily values or flare values (although the flare files are huge compared to the yearly files). + +## Satellites {#sat_aux.sec} + + + +GITM can provide output data at a list of times and locations using the +SATELLITE input option. Although this is designed to output data along +a satellite orbit, any list of locations may be used. There is currently +no routine to create a satellite input file, but the format is simple +and may be easily constructed from a satellite ASCII data file using +awk or Python. Here is a sample satellite input file: + + year mm dd hh mm ss msec long lat alt + #START + 2002 4 16 23 34 25 0 299.16 -2.21 0.00 + 2002 4 16 23 34 25 0 293.63 -1.21 0.00 + 2002 4 16 23 34 25 0 291.28 -0.75 0.00 + 2002 4 16 23 34 25 0 289.83 -0.45 0.00 + 2002 4 16 23 34 25 0 288.79 -0.21 0.00 + 2002 4 16 23 34 25 0 287.98 -0.01 0.00 + 2002 4 16 23 34 25 0 287.32 0.16 0.00 + 2002 4 16 23 34 25 0 286.76 0.31 0.00 + 2002 4 16 23 34 25 0 286.26 0.46 0.00 + 2002 4 16 23 34 25 0 285.81 0.60 0.00 + 2002 4 16 23 34 25 0 285.39 0.74 0.00 + +Note that the satellite output type is not specified in this sample file. This +is because altitude entry doesn't matter at this time, GITM ignores the altitude +and outputs altitudinal profiles of the atmospheric characteristics at each +geographic location and universal time. Although millisecond accuracy is +provided, GITM should not be output at a resolution smaller than 1 second. The +temporal resolution in the satellite file does not need to match the output +resolution. + +Because GITM by default outputs one file for every output time, if you use a satellite +file, it produces a LOT of files. + +The types of outputs are specified in the `#SATELLITES` section of the UAM.in file. The +number of satellites must be speficied along with the path to the locations, output type +& cadence for each file. For example, if we want to output 3DALL files for one satellite +every 2 minutes, we would use: + + #SATELLITES + 1 nSats + satfile1.txt sat file name + 3DALL output type + 120.0 output cadence, in seconds + +Or for two satellites, every 1 minute: + + #SATELLITES + 2 nSats + satfile1.txt sat file name + 3DALL output type + 60.0 output cadence, in seconds + satfile2.txt sat file name + 3DALL output type + 60.0 output cadence, in seconds diff --git a/srcDoc/dev_team.md b/srcDoc/dev_team.md deleted file mode 100644 index 91ee651d..00000000 --- a/srcDoc/dev_team.md +++ /dev/null @@ -1,42 +0,0 @@ -GITM Development Team -======================= - -## Active Developers: - -Aaron Ridley (Source terms, Electrodynamics) - UM - -Jared Bell (Solvers) - NASA GSFC - -Brandon Ponder (Venus) - UM - -Dave Pawlowski (Mars, FISM) - EMU - -Garima Malhotra (Lower boundary) - NOAA/CU - -Xing Ming (Wave Perturbations, Localized Electrodynamics) - JPL - -Doga Ozturk (Localized Electrodynamics) - UAF - -Chen Wu (Lower boundary, Eclipse) - UM - -Angeline Burrell (python code and random things) - NRL - -Meghan Burleigh (Coupling to SWMF) - NRL - -Leonardo Regoli (Coupling to SWMF, Mars) - -## Past Developers: - -Jie Zhu (Ti + Te calculation) - Microsoft - -Xianjing Liu (Helium at Earth) - -Alexey Morozov (Coupling with DART) - -Darren De Zeeuw (Field-line integrator) - UM - -Yue Deng (Many aspects of the original code) - UTA - -Gabor Toth (Rusanov solvers) - UM - -Robert Oehmke (MPI / message passing) - NCAR? \ No newline at end of file diff --git a/srcDoc/devstuff/devhome.md b/srcDoc/devstuff/devhome.md new file mode 100644 index 00000000..c8d6da18 --- /dev/null +++ b/srcDoc/devstuff/devhome.md @@ -0,0 +1,55 @@ + +# Developers + +Here is some information which may be useful to developers. + +## Documentation Notes + +Some notes on the doc site: + +- See the [markdown style guide](markdown_ref.md) for info on what features are + available. +- The documentation is organized according to a table of contents listed in + `GITM/mkdocs.yml`. So, to add new pages or organize things differently, look + there. +- Within `mkdocs.yml`, paths are specified relative to `site_home` (cuttently + set to `srcDoc/`) +- `index.md` is the "home page". The rest should be self-explanatory enough. + +Writing docs can be tricky. Formatting is sometimes not what you would expect. +For example, we *need* four spaces to indent something, not just two. I tried +changing this & couldn't! + +You can use Python to locally host the doc site which will auto-update when any +files are changed. One command to configure, one to host. When first starting, +either create a vitrual/conda environment for the docs, or don't, and from the +root of the repo run: `pip install -r srcDoc/requirements.txt`. To actually host +the docs, run (from `GITM/`): + +```bash +mkdocs serve +``` + +And it should be auto-magic. open the link in your browser. + +## Versioning + +GITM now builds the code version into the executable automatically. This is sourced +from `src/.version` within `src/ModGITMVersion.f90`. + +The version file is created when compiling, and checked every time the code is compiled. +If the number of files that are different from HEAD changes, the version is updated. +In practice this means that if the number of lines output from +`git status --porcelain` changes, the version is updated. + +The version has information on the last commit date, the branch, the last commit hash, +and the number of files changed since the last commit. This should provide enough +information to track down any kinds of bugs or to ensure that results can be traced +back to a certain state of the code. + +The file is created in the last step of compiling by the shell script +`share/Scripts/Makeversion.sh`. + +If the `.git` folder does not exist (so the code was downloaded as a .zip from GitHub), +the version info is taken from `version.def` at the root folder. This should be updated +whenever the code is released. diff --git a/srcDoc/devstuff/markdown_ref.md b/srcDoc/devstuff/markdown_ref.md new file mode 100644 index 00000000..78b8ae1a --- /dev/null +++ b/srcDoc/devstuff/markdown_ref.md @@ -0,0 +1,314 @@ +# Markdown Style Reference + +This document is not a markdown tutorial. It's merely a guide to the features +available on this site. GITM's ReadTheDocs site is built using MkDocs and a +number of plugins. This takes the (relatively) vanilla Markdown of MkDocs and +extends its functionality. + +To develop locally, one can simply install the Python requirements in +`srcDoc/requirements.txt` and then spin up a MkDocs server, previewing the +documentation live! It's very useful. + +```bash +pip install -r srcDoc/requirements.txt +mkdocs serve +``` + +--- + +Table of contents can be inserted with + +```markdown +[TOC] +``` + +For example (ensuring there are newlines before & after): + +[TOC] + +## General Syntax + +Markdown can put *italics* and **bold** in really easily by surrounding the text +with one and two asterisks \*, respectively (i.e. `*italics*` and `**bold**`). +There are \*escape\* characters available too; use a backslash before an +asterisk to have it shown `\*`. For **bold** and **italics**, use three +***asterisks***. + +For a new paragraph, use two line breaks. otherwise it is the same paragraph. + +> we can note that something should be indented with `>` at the beginning of a +> line. + +To mark something for ~~deletion~~, use two tilde `~~`, and to mark for +++insertion++, use two pluses `++`. + +Headers work as one would expect; use a single # for header one, and more #'s +for each sub-level. Horizontal lines can be made with ---, surrounded by +newlines before & after. + +--- + +### Lists + +Lists can be: + +1. Ordered +1. Like this one +5. Which is numbered automatically. + - automatic numbering is nice for ordered lists. Edits can be made without + the need to go back and change every single entry. + - we can nest lists, and switch between ordered/unordered. + + ```python + print("hello world!") + ``` + +6. The list should be smart enough to resume counting after we take a break to + do something, as long as it is indented + +### Code + +Code can be shown either inline: `print("hello world")`, or in a block: + +````md +```python +print("hello world") +``` +```` + +Code blocks' syntax (highlighting) can be set after the three backticks. The +above block uses python syntax. + +Additionally, one can **include** the three backticks in a code block by +surrounding it with a different number of backticks. As a ridiculous example: + +`````md +```` +```python +print("hello world!") +``` +```` +````` + +### Links + +Links are specified with `[link text](the_link)`. The first option is the text +to display, the second is the actual link. For example, [here is the link to the +GITM repository](https:github.com/GITMCode/GITM.git). It is ok to have +linebreaks within the link text. + +## More Complex Syntax + +### Comments, Abbreviations + +Comments use HTML syntax: `` + +Define an abbreviation with: `*[TEXT]: Definition`. Hover over HTML to see its +definition. + + +*[HTML]: Hypertext Markup Language + +That abbreviation will stick around across the entire page, as it is HTML. + +### Footnotes + +We can add a footnote, such as[^1]. Footnotes have a label, specified with +`[^2]`, and that label can be anything we want, for example [^longerfootnote]. + +[^1]: This is footnote content. + +Footnotes are automatically numbered. One can place the footnote definition +anywhere in the document[^bottom]. The footnotes do not need to be defined in +order as long as their labels are unique (i.e. we can put anything we want for a +label, as long as it is unique, `[^aHJpxms]`, for example)[^notbottom]. + +[^notbottom]: This footnote is defined out of order to when it is first + referenced. It affects the numbers given to other footnotes. + +[^longerfootnote]: + + The links back to the text are handled automatically. Hover over the above + text if you do not see an arrow. + + Multi-line comments are the same as body text - they need two newlines. To + continue writing the footnote, text must be indented with 4 spaces or a tab. + + These descriptions can be placed anywhere within the document. + +Footnotes are great for citations! + +### References {gohere} + +We can add references to any header level. Links are automatically created, but +we can make out own by adding `{#refname}` to the header. If we do not add +anything, the name for `## a subheader section` would be `#a-subheader-section.` + +Then later we can point to it like any other hyperlink. For example, +`[this link will go to the above subsection](#a-subheader-section)`. +Or, a real one: +[this link points to the More Complex Syntax](#more-complex-syntax) sub-header. + +## Admonitions + +Admonitions are these fancy boxes. See [here](https://squidfunk.github.io/mkdocs-material/reference/admonitions/#customization) for more information + +!!! tip + Our theme (material) supports some non-standard admonitions + +!!! warning + Here's a warning. new lines need two breaks. + + Here's how to put multiple lines in an admonition + +!!! danger + This is for something very serious + +!!! bug "custom label" + notes can be given custom labels! + + This uses the `bug` callout + +!!! OnlyTheFirstWordFromTheLabel is shown + Stick to using `!!!note "multi word label"` when possible. + +## Math + +Math can be done inline, differing from LaTex in that we need to use $\` and \`$ +to surround the math. For example, $`\pi \approx \frac{22}{7}`$ is an equation +*inline*. For equation blocks we need to surround it with backticks, like so: + + +```` +```math +% comments can be placed in math mode +\begin{align} + E=mc^2 +\end{align} +``` +```` + +Which produces: + +```math +% comments can be placed in math mode +\begin{align} + E=mc^2 +\end{align} +``` + +For numbered equations, use `\begin{align}` and `\end{align}` surrounding the +equation. These are consistently numbered throughout the document. + +```math +\pi \approx \frac{22}{7} = \mathbf{3.14}28... +``` + +```math +\begin{align} + p(v_i=1|\mathbf{h}) & = \sigma\left(\sum_j w_{ij}h_j + b_i\right) \\ + p(h_j=1|\mathbf{v}) & = \sigma\left(\sum_i w_{ij}v_i + c_j\right) +\end{align} +``` + +## Images + +### Figures + +Insert images with `![caption text](relative/path/to/image)`. The caption will +appear below the image, for example: + +![hmf2 flowchart example figure](../Figures/determining_hmF2_flowchart.png) + +This figure was made with the code: + +```md +![hmf2 flowchart example figure](Figures/determining_hmF2_flowchart.png) +``` + +Alternatively, you may not wish to write out the path inline if it may change +later. Having all the paths to figures in one place will make moving things +around later much easier. Figures can be made with a *reference*, then specify the +path later, using: + +```md +Some terrific, fantastic documentation. + +![Description of something cool.][ref1] + +More splendid documentation. + +[ref1]: /path/to/image +``` + +To forgo a caption entirely (they aren't even that useful), just do not include +it in the `![](../path/to/image)`. For example: + +![](../Figures/determining_hmF2_flowchart.png) + +See? No caption! It is possibly to define a new style for figures, and to +uniquely number them, but it is probably not worth doing. + +### Flowcharts + +I'm including this because it's cool, but may not be too useful. We can utilize +something called [Mermaid](https://mermaid.js.org/) to make flowcharts with +relatively simple syntax. Some helpful links to get started would be this +[beginner's guide](https://mermaid.js.org/intro/getting-started.html) and the +[live editor](https://mermaid.live/), which allows for live development of a +mermaid chart. + +Charts are put in automatically. + +```mermaid +graph TD + A[Input] --> B[Think] + B --> C[Outcome One] + B --> D[Outcome Two] +``` + +The above example uses: + +````md + +```mermaid +graph TD + A[Input] --> B[Think] + B --> C[Outcome One] + B --> D[Outcome Two] +``` +```` + +Labels can be added to the arrows. The following code has a simple example: + +````md +``` mermaid +graph LR + A[Start] --> B{Error?}; + B -->|Yes| C[Hmm...]; + C --> D[Debug]; + D --> B; + B ---->|No| E[Yay!]; +``` +```` + + +``` mermaid +graph LR + A[Start] --> B{Error?}; + B -->|Yes| C[Hmm...]; + C --> D[Debug]; + D --> B; + B ---->|No| E[Yay!]; +``` + +!!! note + The chart's direction is set with `TD` (top-down) and `LR` (left-right). + + > More complex charts are available. Check the Mermaid documentation for + examples! + +--- + +[^bottom]: This footnote is defined at the bottom of the document. Probably not + the best for making edits! diff --git a/srcDoc/devstuff/outline.md b/srcDoc/devstuff/outline.md new file mode 100644 index 00000000..b5901548 --- /dev/null +++ b/srcDoc/devstuff/outline.md @@ -0,0 +1,597 @@ +`main program` in **main.f90** + +- `init_mpi` in file **init_mpi.f90** + + - `MPI_INIT` + + - `MPI_COMM_RANK` + + - `MPI_COMM_SIZE` + +- `start_timing` in file **timing.f90** + +- `delete_stop` in file **stop_file.f90** + + - `report` in file library.f90 + +- `init_planet` in file **ModEarth.f90** + + - `time_int_to_real` in file time_routines.f90 + +- `set_defaults` in file **ModInputs.f90** + + - `set_strings` in file ModInputs.f90 + + - `time_int_to_real` in file time_routines.f90 + + - `set_planet_defaults` in file Earth.f90 + +- `read_inputs` in file **read_inputs.f90** + + - `report` in file library.f90 + + - `stop_gitm` in file library.f90 + + - `stop_gitm` in file library.f90 + + - `stop_gitm` in file library.f90 + + - `MPI_Bcast` + + - `stop_gitm` in file library.f90 + + - `MPI_Bcast` + + - `stop_gitm` in file library.f90 + +- `set_inputs` in file **set_inputs.f90** + + - `report` in file library.f90 + + - `read_in_int` in file set_inputs.f90 + + - `time_int_to_real` in file time_routines.f90 + + - `time_real_to_int` in file time_routines.f90 + + - `fix_vernal_time` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `time_int_to_real` in file time_routines.f90 + + - `read_in_time` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `time_real_to_int` in file time_routines.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `IO_set_f107_single` + + - `IO_set_f107a_single` + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `IO_set_hpi_single` + + - `read_in_real` in file set_inputs.f90 + + - `IO_set_kp_single` + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `IO_set_imf_by_single` + + - `IO_set_imf_bz_single` + + - `IO_set_sw_v_single` + + - `read_in_string` in file set_inputs.f90 + + - `IO_set_inputs` + + - `read_MHDIMF_Indices` + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_time` in file set_inputs.f90 + + - `read_in_time` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_int` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_satellites` in file satellites.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `Set_Euv` in file calc_euv.f90 + + - `read_in_logical` in file set_inputs.f90 + + - `read_in_real` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `IO_set_inputs` + + - `read_NGDC_Indices` + + - `read_in_string` in file set_inputs.f90 + + - `read_in_string` in file set_inputs.f90 + + - `IO_set_inputs` + + - `read_SWPC_Indices` + + - `read_in_string` in file set_inputs.f90 + + - `IO_set_inputs` + + - `read_NOAAHPI_Indices` + + - `stop_gitm` in file library.f90 + + - `time_int_to_real` in file time_routines.f90 + +- `initialize_gitm` in file **initialize.f90** + + - `init_radcooling` in file ModEarth.f90 + + - `start_timing` in file timing.f90 + + - `report` in file library.f90 + + - `time_real_to_int` in file time_routines.f90 + + - `fix_vernal_time` in file set_inputs.f90 + + - `get_f107` + + - `get_f107a` + + - `init_grid` in file init_grid.f90 + + - `read_inputs` in file read_inputs.f90 + + - `set_inputs` in file set_inputs.f90 + + - `read_restart` in file restart.f90 + + - `init_msis` in file init_msis.Earth.f90 + + - `set_RrTempInd` in file ModRates.Earth.f90 + + - `init_euv` in file calc_euv.f90 + + - `init_altitude` in file init_altitude.f90 + + - `UAM_gradient` + + - `init_heating_efficiency` in file Earth.f90 + + - `init_magheat` in file ModEarth.f90 + + - `init_isochem` in file Mars.f90 + + - `init_aerosol` in file ModEarth.f90 + + - `init_isochem` in file Mars.f90 + + - `init_msis` in file init_msis.Earth.f90 + + - `get_temperature` in file init_altitude.f90 + + - `init_iri` in file init_iri.Earth.f90 + + - `read_waccm_tides` in file tides.f90 + + - `update_waccm_tides` in file tides.f90 + + - `read_tides` in file tides.f90 + + - `update_tides` in file tides.f90 + + - `init_b0` in file init_b0.f90 + + - `init_energy_deposition` in file init_energy_deposition.f90 + + - `report` in file library.f90 + + - `SUBSOLR` + + - `exchange_messages_sphere` in file exchange_messages_sphere.f90 + + - `calc_pressure` in file calc_pressure.f90 + + - `UA_calc_electrodynamics` in file calc_electrodynamics.f90 + + - `calc_eddy_diffusion_coefficient` in file Earth.f90 + + - `calc_rates` in file calc_rates.Earth.f90 + + - `calc_viscosity` in file calc_rates.Earth.f90 + + - `calc_rates` in file calc_rates.Earth.f90 + + - `end_timing` in file timing.f90 + + - `calc_vtec` in file calc_tec.f90 + + - `calc_single_vtec` in file calc_tec.f90 + +- `write_output` in file **write_output.f90** + + - `output` in file output_common.f90 + + - `move_satellites` in file satellites.f90 + + - `write_restart` in file restart.f90 + + - `logfile` in file logfile.f90 + +- `report` in file **library.f90** + +- Loop Start + + - `calc_pressure` in file **calc_pressure.f90** + + - `report` in file library.f90 + + - `calc_timestep_vertical` in file **calc_timestep.f90** + + - `report` in file library.f90 + + - `MPI_AllREDUCE` + + - `stop_gitm` in file library.f90 + + - `calc_timestep_horizontal` in file **calc_timestep.f90** + + - `report` in file library.f90 + + - `MPI_AllREDUCE` + + - `advance` in file **advance.f90** + + - `report` in file library.f90 + + - `start_timing` in file timing.f90 + + - `update_tides` in file tides.f90 + + - `update_waccm_tides` in file tides.f90 + + - `advance_vertical_all` in file advance.f90 + + - `add_sources` in file add_sources.f90 + + - `advance_horizontal_all` in file advance.f90 + + - `time_real_to_int` in file time_routines.f90 + + - `get_f107` + + - `stop_gitm` in file library.f90 + + - `get_f107a` + + - `stop_gitm` in file library.f90 + + - `init_msis` in file init_msis.Earth.f90 + + - `init_iri` in file init_iri.Earth.f90 + + - `init_b0` in file init_b0.f90 + + - `end_timing` in file timing.f90 + + - `report` in file library.f90 + + - `start_timing` in file timing.f90 + + - `calc_rates` in file calc_rates.Earth.f90 + + - `calc_viscosity` in file calc_rates.Earth.f90 + + - `advance_vertical` in file advance_vertical.f90 + + - `end_timing` in file timing.f90 + + - `report` in file library.f90 + + - `start_timing` in file timing.f90 + + - `exchange_messages_sphere` in file + exchange_messages_sphere.f90 + + - `calc_rates` in file calc_rates.Earth.f90 + + - `calc_physics` in file calc_physics.f90 + + - `advance_horizontal` in file advance_horizontal.f90 + + - `calc_physics` in file calc_physics.f90 + + - `calc_rates` in file calc_rates.Earth.f90 + + - `advance_horizontal` in file advance_horizontal.f90 + + - `exchange_messages_sphere` in file + exchange_messages_sphere.f90 + + - `end_timing` in file timing.f90 + + - `check_stop` in file **stop_file.f90** + + - `report` in file library.f90 + + - `start_timing` in file timing.f90 + + - `MPI_AllREDUCE` + + - `check_start` in file stop_file.f90 + + - `end_timing` in file timing.f90 + + - `write_output` in file **write_output.f90** + + - `output` in file output_common.f90 + + - `move_satellites` in file satellites.f90 + + - `write_restart` in file restart.f90 + + - `logfile` in file logfile.f90 + +- Loop End + +- `finalize_gitm` in file **finalize.f90** + + - `UA_calc_electrodynamics` in file calc_electrodynamics.f90 + + - `output` in file output_common.f90 + + - `write_restart` in file restart.f90 + + - `end_timing` in file timing.f90 + + - `report_timing` in file timing.f90 + + - `UAM_XFER_destroy` in file ModSphereInterface.f90 + + - `UAM_write_error` in file ModSphereInterface.f90 + + - `stop_gitm` in file library.f90 + + - `MPI_FINALIZE` + +- `stop_gitm` in file **library.f90** + + - `CON_stop` in file main.f90 + + - `MPI_abort` diff --git a/srcDoc/devstuff/somelinks.md b/srcDoc/devstuff/somelinks.md new file mode 100644 index 00000000..176f9b12 --- /dev/null +++ b/srcDoc/devstuff/somelinks.md @@ -0,0 +1,16 @@ +# Useful Reference Links + +Here are links to some tutorials and other things that may be useful to students +or people new to GITM. + +## Aether Student Page + +Contains: + +- Editor information +- Package manager basics +- Unix commands (how to use a terminal) +- A git walkthrough + +[Link to the Aether Student Page](https://github.com/AetherModel/Aether/blob/main/doc/student.md) + diff --git a/srcDoc/grid.tex b/srcDoc/grid.tex deleted file mode 100644 index 7e6f0563..00000000 --- a/srcDoc/grid.tex +++ /dev/null @@ -1,109 +0,0 @@ -\section{Setting the Grid} -\label{grid.sec} - -Setting the grid resolution in GITM is not very complicated, but it -does involve some thought. There are a few variables that control -this. In {\tt ModSize.f90}, the following variables are defined: - -\begin{verbatim} -integer, parameter :: nLons = 9 -integer, parameter :: nLats = 9 -integer, parameter :: nAlts = 50 - -integer, parameter :: nBlocksMax = 4 -\end{verbatim} - -The first three variables (nLons, nLats and nAlts) define the size of a single block. In the example above, there are 9 cells in latitude, 9 cells in longitude and 50 cells in altitude. The latitude and longitude resolution in GITM is defined by the cell numbers specified here and the block numbers discussed in the following section. The size of the altitude cells are measured in scale heights instead of kilometers, as certain regions require higher resolutions than others based on the dominating chemical and dynamical processes. Each altitude cell contains $\frac{1}{3}$ of a scale height, starting at 80 km and typically reaching up to 500 km. Increasing the number of altitude blocks will increase the altitude range, but if this value is increased too much the model becomes unstable. This altitude limit makes it problematic to model the equatorial region during storms, where increased vertical plasma transport requires the model consider altitudes of 2000 km and higher. - -The final variable (nBlocksMax) defines the maximum number of blocks you can have on a single processor. Most people run with one single block per processor, as this is faster. So setting this to ``1'' is usually preferred, and is necessary when running with the Dynamo option on. This is a necessity because the Dynamo routine does not correctly transfer the geomagnetically oriented data into the geographic coordinates used in the ghost cells. Hopefully this will be updated in future versions, as allowing multiple blocks per node can, in theory, save memory. - -Don't forget, if you change any of these parameters you will need to recompile the code (run the Makefile again) so that a new executable using the newly defined variables can be produced. - -\subsection{Running 3D Over the Whole Globe} - -Once the number of cells is defined, then the number of blocks in latitude and longitude need to be defined. This is done in the {\tt UAM.in} file, as shown in section~\ref{uam.sec}. For example, the initial settings have 8 blocks in latitude and 8 in longitude: - -\begin{verbatim} -#GRID -8 lons -8 lats --90.0 minimum latitude to model -90.0 maximum latitude to model -0.0 minimum longitude to model -0.0 maximum longitude to model -\end{verbatim} - -The number of cells in the simulation domain will then be 72 in longitude, 72 in latitude, and 50 in altitude. Given that there are 360$\deg$ in longitude and $180\deg$ in latitude, the resolution would be $360\deg/72 = 5.0\deg$ and $180\deg/72 = 2.5\deg$ in latitude. If one block were put on each processor, 64 processors would be required. - -If one desired to run without the Dynamo turned on, the problem could also be run with multiple blocks per node. This grid fits quite nicely on either four- or eight-core processors. However, on 12-core processors this would not work very well at all. We have started to run simulations of $1\deg$ in latitude and $5\deg$ in longitude, which can fit nicely on a 12-core processor machine. For example, in {\tt ModSize.f90}: - -\begin{verbatim} -integer, parameter :: nLons = 9 -integer, parameter :: nLats = 15 -\end{verbatim} - -and in {\tt UAM.in}: - -\begin{verbatim} -#GRID -8 lons -12 lats -\end{verbatim} - -This can then run on 96 cores, which is nicely divisible by 12. Essentially, an infinite combination of cells per block and number of blocks can be utilized. Typically, the number of blocks in latitude and longitude are even numbers. - -\subsection{Running 3D Over the Part of the Globe} - -GITM can be run over part of the globe - both in latitude and in -longitude. It can be run over a single polar region (by setting -either the minimum or maximum latitude to be greater (or less) than -$\pm 90\deg$). If this is selected, message passing over the poles is -implemented. If the pole is not selected, then boundary conditions -have to be set in {\tt set\_horizontal\_bcs.f90}. By default, a -continuous gradient boundary condition is used on the densities and -temperatures, while a continuous value is used on the velocity. This -is true in both latitude and longitude. In longitude, message passing -is implemented all of the time, but the values are over-written by the -boundary conditions if the maximum and minimum longitude are not equal -to each other. - -The longitudinal resolution ($\Delta{\phi}$) is set by: -\begin{equation} -\Delta{\phi} = \frac{\phi_{end} - \phi_{start}}{nBlocksLon \times nCellsLon} -\end{equation} -while, the latitudinal resolution ($\Delta{\theta}$) is set by: -\begin{equation} -\Delta{\theta} = \frac{\theta_{end} - \theta_{start}}{nBlocksLat \times nCellsLat} -\end{equation} - -\subsection{Running in 1D} - -GITM can run in 1D mode, in which the call to advance\_horizontal is -not completed. This means that GITM runs exactly the same way, but -ignoring all of the horizontal advection terms. You have to do two -things to make GITM run in 1D. First, in {\tt ModSize.f90}: -\begin{verbatim} -integer, parameter :: nLons = 1 -integer, parameter :: nLats = 1 -integer, parameter :: nAlts = 50 - -integer, parameter :: nBlocksMax = 1 -\end{verbatim} -This tells the code that you only want one single latitude and -longitude location. To specify the exact location, in {\tt UAM.in}: -\begin{verbatim} -#GRID -1 lons -1 lats -41.75 minimum latitude to model -41.75 maximum latitude to model -275.0 minimum longitude to model -275.0 maximum longitude to model -\end{verbatim} -This is pretty close to some place in Michigan. GITM will model this -exact point for as long as you specify. One thing to keep in mind -with running in 1D is that the Earth still rotates, so the spot will -have a strong day to night variation in temperature. In 3D, the winds -decrease some of the variability between day and night, but in 1D, -this doesn't happen. So, the results are going to be perfect. But, -1D is great for debugging. diff --git a/srcDoc/index.md b/srcDoc/index.md new file mode 100644 index 00000000..8934114e --- /dev/null +++ b/srcDoc/index.md @@ -0,0 +1,106 @@ +# Introduction + +The Global Ionosphere Thermosphere Model (GITM) is a 3D model of the ionosphere and +thermosphere that has been applied to Earth, Venus, Mars, Jupiter, and Saturn's moon +Titan. The main repository for GITM is available on +[GitHub](https://github.com/GITMCode/GITM). The first paper describing GITM is +[here](https://www.sciencedirect.com/science/article/pii/S1364682606000071). + +## Quick Start + +If you have are confident downloading, compiling, and running codes, this is a good +place to start. A more detailed explanation can be found on the +[installation page](install.md). + +Dependencies: fortran (assuming gfortran), mpi (mpich doesn't seem to work), make, perl +(we are old school!), and python 3+ for postprocessing & plotting. The version of +anything else should not matter as long as it is relatively recent. + +Download, configure, and run: + +```bash +git clone https://github.com/GITMCode/GITM.git +cd GITM +./Config.pl -install -compiler=gfortran -earth +make +make rundir +cd run +mpirun -np 4 ./GITM.exe +./post_process.py +``` + +!!! tip + GITM now automatically detects the version of gfortran being used. If you notice + `Config.pl` is incorrectly detecting the version of gfortran for your system, try + specifying it manually. + + The compiler version only matters for gfortran, and the specific version is not + important - only whether is it $`\pm 10`$. So use `compiler=gfortran` for + gfortran versions 9 and below, and `compiler=gfortran10` for versions 10 and up. + +Then to produce a plot: +```bash +cd UA/data +python3 ../../../srcPython/gitm_plot_simple.py -alt=250 -var=3 *bin +``` +This should produce two png files showing the density across the globe at about 250 km +altitude. This is a relatively simple plotter that will make cuts in altitude, +latitude, and longitude. They are quite basic, but this should provide some framework +for reading in GITM files and visualizing the results. More complex plotters exist, +and some of these are described in [this document](plotters.md). + +## A Bit More Explanation + +GITM is a fortran code that uses the message passing interface (MPI) to run on multiple +processors, hence the need for a fortran compiler and MPI. If the code compiles +correctly, then the biggest issue is setting up the run. + +GITM can create a run directory for you, so you don't have to worry about the executable +and input files and everything being in the right place - it does it for you with the +`make rundir` command. This will create a directory called 'run'. You can move this +directory to where ever you want. Often the run directory is moved to a scratch disk +and renamed. For example: + +```bash +mv run /scratchdisk/mydirectory/run.gitm.event01 +ln -s /scratchdisk/mydirectory/run.gitm.event01 . +``` + +Then, within this directory, there is a file called `UAM.in`, which is what GITM reads +to set all of its parameters. + +## Basic Inputs + +This is an extremely brief description of a few settings within `UAM.in` - to understand +more, consult other pages in the documentation! Within this file, there are several +things that need to be altered when running GITM: + +- Start time, given as year, month, day, hour, minute, second. Each on its own line. +- End time, given as year, month, day, hour, minute, second. +- The grid, given as start and end latitude, start and end longitude, and the number of + blocks (processors) to use in latitude and longitude. [See this grid description for + more](internals/grid.md). +- Save plots, telling what type of files to output (`3DALL` by default) and how often + (300s = 5 minutes). The restarts can be ignored unless you know you will need them. +- MHD_Indices - This is the the path to a file which is used as inputs to the + high-latitude electrodynamics, specifying IMF and solar wind. There are instructions + in the UAM.in file on how to produce this with the correct format. +- SME_Indices - this is the AE file that some auroral precipitation models need to + work. There are instructions in the UAM.in file on producing a file. +- Dynamo - Settings for the low-latitude dynamo. If you are running with anything better + than 5 degrees by 5 degrees resolution, turn the dynamo on! + +Once these things are set, you should be able to run GITM for the event of your +choosing. + +We provide a code in srcPython called gitm_makerun.py that will take the default UAM.in +file, change the start/end times, download IMF and AE files, and flip switches that you +may want. + +For more information on plotting, please see [the plotting description page](plotters.md). + +## The More Thorough Start + +Please see the [installation page](install.md) page for more info on how to +download, configure, and install GITM. + diff --git a/srcDoc/install.md b/srcDoc/install.md new file mode 100644 index 00000000..237641a8 --- /dev/null +++ b/srcDoc/install.md @@ -0,0 +1,235 @@ +# Installation + +If a fortran compiler & MPI are already installed on your system, you can skip down to +[Getting the Code](#getting-the-code). + +If you are unsure whether or not things are installed & set up correctly, a good +way to check is to print the version number with `gfortran --version` (change to +`ifort` if using the Intel compiler). The MPI implementation can be checked +with `mpirun --version`. If there is an error, something is not configured +correctly. + +## Requirements + +At a minimum, you need: + +- a Fortran compiler (gfortran, ifort, ifx, etc.) +- MPI (~~mpich~~, openmpi, mvapich, etc.) +- GNU Make (`make`) +- Python3 (most any version should work, but we have been testing with versions in the 3.10+ range) +- Perl (for configuring the code). This comes installed on most machines. + + +*[MPI]: Message Passing Interface + + +!!! note + On linux systems (including Windows Subsystem for Linux), gfortran is often used. This + is the most robustly tested compiler for GITM. + + The version of gfortran on your system should be automatically detected. If it is not, + you may specify the version manually. Use `-compiler=gfortran` for older versions + (9 and below) and `-compiler=-gfortran10` for version 10+ when running `./Config.pl`. + + There is a very good chance that you have 10+. + +There is no difference in the outputs between different compilers, however some +compilers may produce slightly faster executables than others. For example, +using ifort on [Pleiades](https://www.nas.nasa.gov/hecc/resources/pleiades.html) +is faster than using gfortran (gcc) or aocc. + +As GITM can run on as many (or few) CPU cores as you wish, it is possible to run GITM on +a laptop or a workstation. This is recommended for development, as the turnaround for +test runs will be much faster. We develop GITM on 8+ core machines and can run the +default tests on 4 processors with no problems. Most modern computers are +capable of this now. + +!!! warning "Using `conda` to install dependencies is not recommended" + + In the past, people have had very strange errors when using Anaconda to get + dependencies installed. We highly recommend you use a system-wide package manager, + or install the dependencies manually, instead of using something language-specific. + +### Linux Install Dependencies + +On an Ubuntu-based linux distribution, the following commands will download GNU Make, +the GCC Fortran compiler & Open-MPI: + +```bash +sudo apt-get install gfortran libopenmpi-dev make +``` + +Similarly, Fedora-based distributions can use: + +```bash +sudo yum install gcc-gfortran openmpi-devel +``` + +### MacOS Install Dependencies + +Installing gfortran on MacOS is most easily accomplished with a package manager like +[Homebrew](https://brew.sh/) or [MacPorts](https://www.macports.org/). The +following steps assume you are using a package manager, but it is possible to +build from source if you want to. + +Homebrew users will need to run: + +```bash +brew install gfortran open-mpi +``` + +And MacPorts users can run: + +```bash +sudo port install gcc[??] open-mpi +``` +> Make sure to specify a version number in place of `??` above! Use +> `port search --name --glob 'gcc*'`, or `port search gfortran` to see +> available Ports. + + +### Recommended HPC Modules + +On some computer systems, there are multiple versions of compilers, MPI, and other +things like python available. They deal with these things by making "modules". This +means that in order to compile the code, modules need to be loaded. For example, on +NASA's Pleiades computer, this line can be added to your shell startup script (.cshrc, +.zshrc, or .bashrc): + +```bash +module load comp-intel mpi-hpe +``` + +The modules that need to be loaded on different systems will differ. Feel free to +contribute to this list of recommended modules if you have experience with GITM on other +systems: + +- Pleiades + - `comp-intel` + - `mpi-hpe` +- Derecho + - `intel` + - `cray-mpich` + +Consult the documentation for each system to see which modules are available and +how to load them. The modules you use to compile GITM *may* also need to be +loaded when running, so it may be wise to set these to your defaults, or at +least take note of what was used so they can be loaded in the job script. + +## Getting the code + +GITM is hosted on GitHub. The `main` branch is stable and updated as important features +are added (in the `develop` branch). The `main` branch is default and no additional +steps are needed to use this version. Just clone the GITM repository, and all dependent +libraries will be downloaded during configuration. The following command is assuming +that you will be using GITM and not developing GITM. + +``` +git clone git@github.com:GITMCode/GITM.git +cd GITM +``` + +!!! tip + Replace `git@github.com:GITMCode/GITM.git` with + `https://github.com/GITMCode/GITM.git` if you don't have Github ssh keys set up. If + you are going to be developing GITM, you may take the time to fork the repository + (including all of the branches!), and then substitute your forked repository + location in the git clone command. If you are NOT doing development, just use this + command. + +## Configuring & Compiling + +All of the following steps assume you have not changed out of the `GITM/` directory. +Most will error if run from another location, but this will not break anything! Simply +`cd` back to `GITM/` and try again. Installation needs to be done from within `GITM/`, +then the code can be run from anywhere by moving the `run/` directory. + +This step configures the planet, compiler, and some paths GITM needs to +work properly. To configure GITM for Earth using the `gfortran` compiler, run: + +```bash +./Config.pl -install -earth -compiler=gfortran +``` + +If you are not using gfortran, you can see which other compilers are available by +looking in `share/build/`. These files are named according to the operating system +and compiler that are used. For example, if a MacOS user runs `Config.pl` with +`-compiler=ifort`, the file called `Makefile.Darwin.ifort` will be used. + +The full list of available configuration options can be found by running +`./Config.pl -h`. A useful flag while developing is `-debug` which will print a +traceback if an error is encountered, as well as performing some additional +validity checks when running. + +This should have downloaded all necessary external libraries and created some +extra files necessary to compile. To compile, simply run: + +```bash +make +``` + +!!! tip + Compilation can often take a while. This can be done in parallel using `make -j`, + which will use all available cores on your computer. To limit the number of cores, + for example, to 8 use `make -j8` + +If this runs without error, GITM is ready to be run! + +If errors occur, here are some things to try: +- Compiling with fewer (or no) parallel processors - remove the `-j` if you used it. +- Just retry! Maybe run `make` again, or start over with `make clean` and `make`. +- Re-configuring: Maybe some paths got confused. Try running `./Config.pl [...]` again. +- Start from scratch: `make distclean` will remove all compiled files & settings. + You will need to run `Config.pl [...]` and then `make`. +- The nuclear option: Remove `GITM/` and redownload. This shouldn't be necessary, but + is always an option. + +Remember, nothing is altered on your systemn outside of the GITM/ folder. There's no +harm to trying new things and nothing will break if you do things over again. Each step +iterates on the previous cleanly, so you can always go back to a previous step without +needing to start over. If things are still not working, you can submit a +[bug report](https://github.com/GITMCode/GITM/issues) on GitHub; please include details +about your system along with what you have tried and what specifically is not working. + +## Running the Code + +Compiling will have created the executable `src/GITM.exe`. This is not where we want +to run it from, however. To create a directory where the GITM executable is run +from and organize some input files, run the command: + +```bash +make rundir +``` + +Now there should be a new directory in the GITM folder called `run/`. This +folder can be moved, copied, renamed, etc. without issue. If a study requires multiple +runs of GITM, it can be most time-effective to copy or move the folder that was just +created to somewhere a lot of data can be stored. For example, one could now run: +```bash +mv run /path/to/scratch/storage/thisproject/run01 +ln -s /path/to/scratch/storage/thisproject/run01 . +``` +The `ln` command will just create a link to the run directory in the GITM directory, +so you don't lose it. If you want to make yet another run directory (you can make as +many as you want!), you could then do: +```bash +make rundir +mv run /path/to/scratch/storage/thisproject/run02 +ln -s /path/to/scratch/storage/thisproject/run02 . +``` + +It is now time to do some runs! The folder we just created contains a `UAM.in` +file which calls for 4 CPU cores and simulates 5 minutes in December of 2002. +This all can, of course, be adjusted later. To start this run, we first need to +`cd` into the run directory, then tell MPI to run `GITM.exe` on 4 cores. + +```bash +cd run/ +mpirun -np 4 ./GITM.exe +``` + +Twiddle your thumbs for a moment... And if no errors are reported then congratulations! +You have now run GITM! + +The next steps include exploring how to [postprocess](postprocessing.md) the +outputs, and modifying the [input files](common_inputs.md). diff --git a/srcDoc/internals/chemistry.md b/srcDoc/internals/chemistry.md new file mode 100644 index 00000000..275fdb03 --- /dev/null +++ b/srcDoc/internals/chemistry.md @@ -0,0 +1,586 @@ +# Chemistry + +Chemical reactions in GITM for Earth + +--- + +```math +\begin{align} +O_2 \rightarrow 2O +\end{align} +``` + +EUV dissociation rate. + +```math +\begin{align} +N_2 \rightarrow 2N +\end{align} +``` + +EUV dissociation rate. + +```math +\begin{align} +\begin{split} +O + O + M \rightarrow O_2 + M \\ +R = 9.59 \times 10^{-46} \times e^{\frac{480}{T_n}} +\end{split} +\end{align} +``` + +```math +\begin{align} +N_2 \rightarrow N_2^+ +\end{align} +``` + +EUV Ionization Rate. + +```math +\begin{align} +N_2 \rightarrow N_2^+ +\end{align} +``` + +Auroral Ionization Rate. + +```math +\begin{align} +O_2 \rightarrow O_2^+ +\end{align} +``` + +EUV Ionization Rate. + +```math +\begin{align} +O_2 \rightarrow O_2^+ +\end{align} +``` + +Auroral Ionization Rate. + +```math +\begin{align} +O(^3P) \rightarrow O^+(^4S) +\end{align} +``` + +EUV Ionization Rate. + +```math +\begin{align} +O(^3P) \rightarrow O^+(^2D) +\end{align} +``` + +EUV Ionization Rate. + +```math +\begin{align} +O(^3P) \rightarrow O^+(^2P) +\end{align} +``` + +EUV Ionization Rate. + +```math +\begin{align} +\begin{split} +O(^4S) \rightarrow O^+(^4S) (40\%) \\ +O(^4S) \rightarrow O^+(^2D) (40\%) \\ +O(^4S) \rightarrow O^+(^2P) (20\%) +\end{split} +\end{align} +``` + +Auroral Ionization Rate. + +```math +\begin{align} +\begin{split} +O^+(^2D) + N_2 \rightarrow N_2^+ + O + 1.33 eV \\ +R = 8.0\times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2P) + N_2 \rightarrow N_2^+ + O + 3.02 eV \\ +R = 4.8\times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N_2^+ + O_2 \rightarrow O_2^+ + N_2 + 3.53 eV \\ +R = 5.0\times 10^{-17} \times \bigg(\frac{T_n+T_i}{600}\bigg)^{-0.8} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N_2^+ + O \rightarrow NO^+ + N(^2D) + 0.7 eV \\ +R = 1.4\times 10^{-16} \times \bigg(\frac{T_n+T_i}{600}\bigg)^{-0.44} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N_2^+ + e^- \rightarrow 2N(^2D) + 1.04 eV \\ +R = 1.8\times 10^{-13} \times \bigg(\frac{T_e}{300}\bigg)^{-0.39} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N_2^+ + O \rightarrow O^+(^4S) + N_2 + 1.96 eV \\ +R = 1.4\times 10^{-16} \times \bigg(\frac{T_n+T_i}{600}\bigg)^{-0.44} +\end{split} +\end{align} +``` + +I am not sure that this is correct, since it is the same as 2.8. + +```math +\begin{align} +\begin{split} +N_2^2 + NO \rightarrow NO^+ + N_2 + 6.33 eV \\ +R = 4.1 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +O^+(^4S) + O_2 \rightarrow O_2^+ + O + 1.55 eV \\ +\begin{split} +R = 2.82 \times 10^{-17} \\ + & - 7.740\times 10^{-18}(T_{O2}/300.0) \\ + & + 1.073\times 10^{-18}(T_{O2}/300.0)^2 \\ + & - 5.170\times 10^{-20}(T_{O2}/300.0)^3 \\ + & + 9.650\times 10^{-22}(T_{O2}/300.0)^4 +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2D) + O_2 \rightarrow O_2^+ + 4.865 eV \\ +R = 7.0 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N^+ + O_2 \rightarrow O_2^+ + N(^4S) + 2.486 \\ +R = 1.1 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N^+ + O_2 \rightarrow O_2^+ + N(^4D) + 0.1 \\ +R = 2.0 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O_2^+ + e^- \rightarrow O(^1D) + O(^1D) + 3.06 eV (31\%) \\ +O_2^+ + e^- \rightarrow O(^3P) + O(^1D) + 3.06 eV (42\%) \\ +O_2^+ + e^- \rightarrow O(^3P) + O(^3P) + 3.06 eV (22\%) \\ +R = 2.4\times 10^{-13} \bigg(\frac{T_e}{300}\bigg)^{-0.7} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O_2^+ + N(^4S) \rightarrow NO^+ + O + 4.25 eV \\ +R = 1.5 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +O_2^+ + NO \rightarrow NO^+ + O_2 + 2.813 eV \\ +R = 4.6 \times 10^{-16} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O_2^+ + N_2 \rightarrow NO^+ + NO + 0.9333 eV \\ +R = 5.0 \times 10^{-22} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2D) + O \rightarrow O^+(^4S) + O(^3P) + 3.31 eV \\ +O^+(^2D) + O \rightarrow O^+(^4S) + O(^1D) + 1.35 eV \\ +R = 1.0 \times 10^{-17} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2D) + e^- \rightarrow O^+(^4S) + e^- + 3.31 eV \\ +R = 7.8 \times 10^{-14}\bigg(\frac{T_e}{300}\bigg)^{-0.5} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2D) + N_2 \rightarrow O^+(^4S) + N_2 + 3.31 eV \\ +R = 8.0 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2P) + O \rightarrow O^+(^4S) + O + 5.0 eV \\ +R = 5.2 \times 10^{-17} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2P) + e^- \rightarrow O^+(^4S) + e^- + 5.0 eV \\ +R = 4.0 \times 10^{-14}\bigg(\frac{T_e}{300}\bigg)^{-0.5} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2P) \rightarrow O^+(^4S) + 247.0nm\\ +R = 0.047 +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N^+ O_2 \rightarrow O^+(^4S) + NO + 2.31 eV\\ +R = 3.0 \times 10^{-17} +\end{split} +\end{align} +``` + +--- + +```math +\begin{align} +\begin{split} +O^+(^4S) + N_2 \rightarrow NO^+ + N(^4S) + 1.10 eV \\ +T_{eff} = & T_i + \frac{M_O}{M_O + M_{N_2}}\times\frac{M_{N_2} - M_b}{3k_b}V_i^2 \\ +M_b = &\frac{M_c}{M_{mc}} \\ +M_c = & \sum_n \frac{M_n\nu_{in}}{M_n + M_O} \\ +M_{mc} = & \sum_n \frac{ \nu_{in}}{M_n + M_O} \\ +R = & 1.533\times 10^{-18} - \\ + & 5.920\times 10^{-19} \bigg(\frac{T_{eff}}{300}\bigg) + \\ + & 8.600\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg)^2 \\ + (T_{eff} < 1700) \\ +R = & 2.730\times 10^{-18} - \\ + & 1.155\times 10^{-18} \bigg(\frac{T_{eff}}{300}\bigg) + \\ + & 1.483\times 10^{-19} \bigg(\frac{T_{eff}}{300}\bigg)^2 \\ + (T_{eff} > 1700) +\end{split} +\end{align} +``` + +If $`T_{eff} < 350`$, then $`T_{eff} = 350`$. + +If $`T_{eff} > 6000`$, then $`T_{eff} = 6000`$. + +--- + +```math +\begin{align} +\begin{split} +O^+(^4S) + O_2 \rightarrow O_2^+ + O + 1.55 eV\\ +R = & 2.820\times 10^{-17} - \\ + & 7.740\times 10^{-18} \bigg(\frac{T_{eff}}{300}\bigg) + \\ + & 1.073\times 10^{-18} \bigg(\frac{T_{eff}}{300}\bigg)^2 - \\ + & 5.170\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg)^3 + \\ + & 9.650\times 10^{-22} \bigg(\frac{T_{eff}}{300}\bigg)^4\\ +T_{eff} = & T_i + \frac{M_O}{M_O + M_{O_2}}\times\frac{M_{O_2} - M_b}{3k_b}V_i^2 +\end{split} +\end{align} +``` + +If $`T_{eff} < 350`$, then $`T_{eff} = 350`$. + +If $`T_{eff} > 6000`$, then $`T_{eff} = 6000`$. + +```math +\begin{align} +\begin{split} +O^+(^4S) + NO \rightarrow NO^+ + O + 4.36 eV\\ +R = & 8.36\times 10^{-19} - \\ + & 2.02\times 10^{-19} \bigg(\frac{T_{eff}}{300}\bigg) + \\ + & 6.95\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg)^2 (T_{eff} < 1500)\\ +R = & 5.33\times 10^{-19} - \\ + & 1.64\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg) + \\ + & 4.72\times 10^{-20} \bigg(\frac{T_{eff}}{300}\bigg)^2 \\ + & 7.05\times 10^{-22} \bigg(\frac{T_{eff}}{300}\bigg)^3 (T_{eff} > 1500) \\ +T_{eff} = & T_i + \frac{M_O}{M_O + M_{NO}}\times\frac{M_{NO} - M_b}{3k_b}V_i^2 +\end{split} +\end{align} +``` + +If $`T_{eff} < 350`$, then $`T_{eff} = 350`$. + +If $`T_{eff} > 6000`$, then $`T_{eff} = 6000`$. + +```math +\begin{align} +\begin{split} +O^+(^4S) + N(^2D) \rightarrow N^+ + O + 1.45 eV\\ +R = 1.3 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2P) +e^- \rightarrow O^+(^2D) + e^- + 1.69 eV\\ +R = 1.3 \times 10^{-13} \bigg(\frac{T_e}{300}\bigg)^{-0.5} % te3m05 +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2P) \rightarrow O^+(^2D) + 732nm\\ +R = 0.171 +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2D) \rightarrow O^+(^4S) + 372.6nm\\ +R = 7.7\times 10^{-5} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2P) + N_2 \rightarrow N^+ + NO + 0.70 eV\\ +R = 1.0 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+_2 + N(^2D) \rightarrow N^+ + O_2 \\ +R = 2.5 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2P) + N \rightarrow N^+ + O + 2.7 eV \\ +R = 1.0 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O^+(^2D) + N \rightarrow N^+ + O + 1.0 eV \\ +R = 7.5 \times 10^{-17} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N^+ + O_2 \rightarrow NO^+ + O(^1D) + 6.67 eV \\ +R = 2.6 \times 10^{-16} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N^+ + O \rightarrow O^+(^4S) + N + 0.93 eV \\ +R = 5.0 \times 10^{-19} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +NO^+ + e^- \rightarrow O + N(^2D) + 0.38 eV \\ +R = 4.0 \times 10^{-13} \bigg(\frac{T_e}{300}\bigg)^{-0.5} % te3m05 +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N(^2D) + e^- \rightarrow N(^4S) + e^- + 2.38 eV\\ +R = 5.5 \times 10^{-16} \bigg(\frac{T_e}{300}\bigg)^{-0.5} % te3m05 +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N(^2D) + O \rightarrow N(^4S) + O(^3P) + 2.38 eV (90\%)\\ +N(^2D) + O \rightarrow N(^4S) + O(^1D) + 0.42 eV (10\%)\\ +R = 2.0 \times 10^{-18} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N(^2D) \rightarrow N(^4S) + 520nm \\ +R = 1.06 \times 10^{-5} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +NO \rightarrow N(^4S) + O \\ +R = 4.5 \times 10^{-6} e^{(-1\times 10^{-8}([O_2]\times 10^{-6})^{0.38})} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N(^4S) + O_2 \rightarrow NO + O + 1.385 eV \\ +R = 4.4 \times 10^{-18} e^{-\frac{3220}{T_n}} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N(^4S) + NO \rightarrow N_2 + O + 3.25 eV\\ +R = 1.5 \times 10^{-18} \sqrt{T_n} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N(^2P) \rightarrow N(^2D) + 1040nm\\ +R = 7.9 \times 10^{-2} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N(^2D) + O_2 \rightarrow NO + O(^3P) + 3.76 eV (90\%)\\ +N(^2D) + O_2 \rightarrow NO + O(^1D) + 1.80 eV (10\%)\\ +R = 6.2 \times 10^{-18} \frac{T_n}{300} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +N(^2D) + NO \rightarrow N_2 + O + 5.63 eV\\ +R = 7.0 \times 10^{-17} +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O(^1D) \rightarrow O(^3P) + 630nm\\ +R = 0.0071 +\end{split} +\end{align} +``` + +```math +\begin{align} +\begin{split} +O(^1D) \rightarrow O(^3P) + 636.4nm\\ +R = 0.0022 +\end{split} +\end{align} +``` + +I don't understand this... + +```math +\begin{align} +\begin{split} +O(^1D) + e^- \rightarrow O(^3P) + e^- + 1.96 eV\\ +R = 2.6 \times 10^{-17} T_e^(0.5)e^(-22740/T_e) +\end{split} +\end{align} +``` + +```math +\begin{align} +O(^1D) + N_2 \rightarrow O(^3P) + +\end{align} +``` \ No newline at end of file diff --git a/srcDoc/internals/electrodynamics.md b/srcDoc/internals/electrodynamics.md new file mode 100644 index 00000000..7e6c7898 --- /dev/null +++ b/srcDoc/internals/electrodynamics.md @@ -0,0 +1,194 @@ +# Electrodynamics + +GITM uses [an external library](https://github.com/gitmcode/electrodynamics.git) +for high-latitude electrodynamics. This library is automatically cloned into +`ext/Electrodynamics` when running `Config.pl`, though an update is not +attempted. + +GITM has the ability to use external auroral and/or potential models. These are +specified independently so one could, for instance, use AMIE (file-based) aurora +and Weimer potentials. + +## Specifying Electrodynamics Drivers + +The Electrodynamics models are chosen in the `#ELECTRODYNAMICS` section of +`UAM.in`. By default the values are set to: + +``` +#ELECTRODYNAMICS +zero AuroralModel +60.0 DtAurora +zero PotentialModel +60.0 DtPotential +``` + +This will cause warnings to be printed if running on Earth, as we often wish to +provide high-latitude electrodynamics drivers when modeling the Earth. However, +the run will complete. + +If, for example, one wishes to perform a scientific run using a commonsense +configuration, the recommended settings are: + +``` +#ELECTRODYNAMICS +fta AuroralModel +60.0 DtAurora +weimer05 PotentialModel +60.0 DtPotential +``` + +This will use FTA[^1] and Weimer05[^2] for the auroral and potential models, +respectively. + +[^1]: Wu, C., Ridley, A. J., DeJong, A. D., & Paxton, L. J. (2021). FTA: A Feature Tracking Empirical Model Of Auroral Precipitation. Space Weather, 19, e2020SW002629. . + +[^2]: Weimer, D. R. (2005), Improved ionospheric electrodynamic models and application to calculating Joule heating rates, J. Geophys. Res., 110, A05306, . + + +The aurora and electric field model names are parsed in +[`Electrodynamics/src/interpret_names.f90`](https://github.com/GITMCode/Electrodynamics/blob/main/src/interpret_names.f90). +See this file for the most up-to-date list of available modules and the acceptable names. + +## Aurora + +The following Auroral models are available: + +- FTA +- FRE +- PEM +- OVATION +- AMIE + +From the auroral module, GITM expects to receive Average Energy and Energy Flux, +for all of the selected auroral types. At the moment these all must be from the +same module, so one cannot use FTA for diffuse electron precipitation and AMIE +for monoenergetic electron precipitation. + +### Aurora Types + +Auroral types are specified in the `#AURORATYPES` section of `UAM.in`, and only +electron diffuse aurora are included by default: + +``` +#AURORATYPES +T UseDiffuseAurora (logical) +F UseMonoAurora (logical) +F UseWaveAurora (logical) +F UseIonAurora (logical) +``` + +Some notes on the different auroral types: + +- `NormalizeAuroraToHP` is only recommended to be used in conjunction with FRE, +- `#AURORATYPES` are not supported by all auroral models. Presently, only +OVATION & MAGNIT (AMIE) can provide other than electron diffuse aurora. +- `AllowAurWODiffuse` was added for stability with OVATION-Prime; it restricts +mono/wave/ion aurora to only exist in locations which also contain electron +diffuse aurora. This can be set in [`#AURORAMODS`](../set_inputs.md#auroramods) + +Internally, GITM represents Monoenergetic and Wave/broadband aurora with a +gaussian centered at the average energy. + +### Aurora Mods + +The diffuse aurora can be represnted by +either a Maxwellian or Kappa distribution using the `#AURORAMODS` section of +`UAM.in`: + +``` +#AURORAMODS +F NormalizeAuroraToHP (logical) +1.0 AveEFactor (real) +F IsKappaAurora (logical) +1.0 AuroraKappa (real) +F AllowAurWODiffuse (logical) +50.0 MaxAveEAurora (real) +``` + + + +## Potentials + +The following electric field models can be used: + +- Weimer05 +- Millstone-Hill +- Heppner Maynard +- AMIE + +## Required Input Files + +Each electrodynamics module has different inputs. At initialization, a +verification check will be performed where GITM ensures that all the required +input data are present and that the data file covers the entire simulation time +range. If an input file ends before the requested stop time for a run, errors +will be raised. + +The check for valid data is located within +[`Electrodynamics/src/indices_subroutines.f90`](https://github.com/GITMCode/Electrodynamics/blob/main/src/indices_subroutines.f90). +Some required input file-types are listed below: + + +| Model | IMF | AE | HP | Kp | +| :--- | :---: | :---: | :---: | :---: | +| Weimer | Yes | No | No | No | +| FRE | Yes | No | Yes | No | +| HepMay | Yes | No | No | Yes | +| FTA | No | Yes | No | No | +| PEM | No | No | Yes | No | +| Ovation | Yes | No | No | Yes | + +HP can be derived from AE, and is not necessarily required to be in a standalone +file. See [here](../common_inputs.md#sme-indices) for more details. + +## File-based Electrodynamics + +AMIE (Assimilative Mapping of Ionospheric Electrodynamics) is the name chosen +for the type of files which can be interpreted by Electrodynamics. A number of +[Python routines](https://github.com/GITMCode/Electrodynamics/tree/main/srcPython) +can be found in Electrodynamics which may be useful when generating these inputs. + +AMIE files can be used, for instance, to input custom auroral patterns into +GITM. Once could generate an AMIE file with nominal diffuse electron aurora and +several intense monoenergetic beams at any number of locations. + +## Running Electrodynamics Only + +By using the [`#STATISTICALMODELSONLY`](../set_inputs.md#statisticalmodelsonly) +option in `UAM.in`, it is possible to run any configuration of Electrodynamics +models without GITM's physics, making the runs faster. + +By setting the desired output type to [`2DGEL`](../outputs.md#2dgel), and an +appropriate Dt for `#STATISTICALMODELSONLY` and `#OUTPUT`, GITM will read in the +necessary input files and output precipitation & potential patterns using the +specified electrodynamics modules. An example of this is located in +`srcTests/auto_test/UAM.in.04.ElectrodynamicsGeoCoords.test`. + +Additionally, one can output data on a magnetic grid instead of geographic, +which is often desired when plotting outputs from the electrodynamics modules. +To do this, one must manually control the magnetic field configuration through +the use of `#APEX` and `#DIPOLE` in `UAM.in`. + +By setting `#APEX` to F, GITM will use a tilted, offset dipole for the magnetic +field. The tilt and offset are normally set automatically, however with the use +of the `#DIPOLE` option, it is possible to force zero offset and tilt, +effectively aligning the geographic and magnetic poles. The output files will +then be in magnetic coordinates, on a magnetic grid, rather than geographic. + +A complete example file for this can be found in +`srcTests/auto_test/UAM.in.05.ElectrodynamicsMagCoords.test`, where the +following sections are what differs this test from the previous: + +``` +#APEX +F Apex is turned off (so a dipole is used) + +#DIPOLE +0.0 Magnetic Pole rotation +0.0 Magnetic pole tilt +0.0 x Dipole Center +0.0 y Dipole Center +0.0 z Dipole Center + +``` + diff --git a/srcDoc/internals/grid.md b/srcDoc/internals/grid.md new file mode 100644 index 00000000..e00dad40 --- /dev/null +++ b/srcDoc/internals/grid.md @@ -0,0 +1,203 @@ +# Setting the Grid + +Setting the grid resolution in GITM is not very complicated, but it does involve +some thought. There are a few variables that control this. + +In essence, GITM's resolution is dictated by the number of CPU cores it is run +on. The number of cores must equal the product of the number of blocks in +longitude and latitude, which are both set in `UAM.in`. The resolution in the +longitudinal and latitudinal directions are, by default, 9 times the number of +blocks in each direction. + +## Important Variables + +Each CPU core that GITM is run on is considered a **block**. Within each block, +the grid is further divided into individual grid **cells**. The number of cells +per block is set before compiling, and the number of blocks to model is decided +at runtime. The number of blocks per core cannot change from 1. How many cores +GITM is run on is specified in the `UAM.in` file, and the number of cells within +each block is specified in `src/ModSize.f90`. + +### Blocks (UAM.in) + +When GITM is first creating its grid, the region of interest (usually the entire +globe) if first divided into blocks. Each block is a region that is modeled on a +single CPU core. This is the most common variable to adjust when trying to +change the resolution. + +These values are set in the `UAM.in` file and read at runtime. So the same +executable can be used for many different resolutions without needing to +recompile! + +For example, the initial settings have 2 blocks in latitude and 2 in +longitude: + + #GRID + 2 lons + 2 lats + -90.0 minimum latitude to model + 90.0 maximum latitude to model + 0.0 longitude start to model (set to 0.0 for whole Earth) + 0.0 longitude end to model (set to 0.0 for whole Earth) + +The number of CPU cores required is the product of the number of blocks in +longitude and latitude. Doubling the resolution in both latitude and longitude +requires four times as many cores since +$`(2*nLons) \times (2*nLats) = 4\times (nLons*nLats)`$. + +```math +nCPUs = (nBlocksLon) \times (nBlocksLat) +``` + + +### Cells + +In `ModSize.f90`, the following variables are defined: + +```fortran +integer, parameter :: nLons = 9 +integer, parameter :: nLats = 9 +integer, parameter :: nAlts = 50 + +integer, parameter :: nBlocksMax = 1 +``` + +The first three variables (`nLons`, `nLats` and `nAlts`) define the size of each +block. In the defaults shown above, there are 9 cells in latitude, 9 cells in +longitude and 50 altitude cells on each block. + +The final variable (`nBlocksMax`) defines the maximum number of blocks you can +have on a single processor. This is deprecated and will cause issues when set to +something other than 1. It will be removed in a future release. + +!!! note + If you change any of these parameters, you have to recompile the code. + + +## Horizontal Resolution + +The number of *total* grid cells in the examples above will then be +$`(2\times9=)18`$ in both longitude & latitude, and 50 in altitude. Given that +there are $`360^\circ`$ in longitude and $`180^\circ`$ in latitude, the +resolution would be $`360^\circ/18 = 20.0^\circ`$ in longitude and +$`180^\circ/18 =10^\circ`$ in latitude. These settings are useful for debugging +and developing, but not for production runs. + +For production runs, the resolution typically desired is $`4^\circ`$ longitude +by $`1^\circ`$ latitude. With the default values in `src/ModSize.f90`, this +requires 200 processing cores and the following values in the `UAM.in` file: + + #GRID + 10 lons + 20 lats + -90.0 minimum latitude to model + 90.0 maximum latitude to model + 0.0 longitude start to model (set to 0.0 for whole Earth) + 0.0 longitude end to model (set to 0.0 for whole Earth) + +The longitudinal resolution ($`\Delta{\phi}`$) is set by: + +```math +\Delta{\phi} = \frac{\phi_{end} - \phi_{start}}{nBlocksLon \times nCellsLon} +``` + +While the latitudinal resolution ($`\Delta{\theta}`$) is set by: + +```math +\Delta{\theta} = \frac{\theta_{end} - \theta_{start}}{nBlocksLat \times nCellsLat} +``` + +--- + +Some settings are listed below. Machines like NASA's Pleiades have a certain number of cores (processors) per node, like Ivy has 20 cores/node. An ideal setup would minimize the +unused cores on each node, while balancing runtime (increases with more cells +per block) and the number of files created (increases with more cores (blocks)). What this practically means is that it is a good idea to have the total number of processors used being a multiple of the processors/node. + +| Resolution
$`(^\circ Lon \times ^\circ Lat)`$ | Total Cores | nBlocks
(nLons x nLats) | nCells
(nLon x nLat) | +| :--- | ---- | :-----: | :----: | +| 4 x 1 | 200 | 10 x 20 | 9 x 9 | +| 4 x 1 | 360 | 10 x 36 | 9 x 5 | +| 4 x 1 | 120 | 6 x 20 | 15 x 9 | +| 4 x 1 | 180 | 9 x 20 | 10 x 9 | +| 4 x 1 | 10 | 2 x 5 | 45 x 36 | +| 2 x 0.5 | 800 | 20 x 40 | 9 x 9 | + +Experimentation may be necessary to find the parameters which work best on the +system GITM is run on. You can always increase nCells in order to run on fewer processors - GITM will just take longer to run, but should be fine. For example, the second to last line shows that GITM can run at production levels on 10 processors, which relatively high-end laptops have currently and many modern desktop machines have. + +## Running 3D Over Part of the Globe + +GITM can be run over part of the globe - both in latitude and in longitude. It +can be run over a single polar region by setting either the minimum or maximum +latitude to be greater (or less) than $`\pm 90^\circ`$). If this is selected, +message passing over the poles is implemented. For example, this simulates the entire northern polar region at $`4^\circ`$ longitude and $`1^\circ`$ latitude resolution: + #GRID + 8 lons + 4 lats + 45.0 minimum latitude to model + 90.0 maximum latitude to model + 0.0 longitude start to model (set to 0.0 for whole Earth) + 0.0 longitude end to model (set to 0.0 for whole Earth) + +If only part of the globe is selected, then boundary conditions have to be set in `set_horizontal_bcs.f90`. By default, a +continuous gradient boundary condition is used on the densities and +temperatures, while a continuous value is used on the velocity. This is true in +both latitude and longitude. + +Running in a small region does not capture the global-scale dynamics, since the EUV heating on the dayside would not be specified correctly in the regions that are not modeled. So, things like the global-scale neutral wind pattern will not be correct. This means that if the physics that you are desiring to simulate depends on things that are more global-scale, then it is not a good idea to run over an isolated region. But, if the physics is much more localized and the time-scales are significantly shorter than a day, this is a fine feature to use. Example of good and bad cases would include: + +- Good case: Exploring how an ionospheric travelling convection vortex interacts with the local thermosphere to drive strong vertical winds. +-Bad case: Exploring how to meridional neutral winds drive field-aligned flows over Michigan. + +In order to mitigate the effects of this (but not completely eliminate the effects), we have implemented a feature that allows you to use global-scale simulation results as a horizontal boundary condition for a regional simulation. In addition, GITM initializes the states with the global-scale simulation, so that you don't have to run the regional-scale simulation for a long period to get rid of the initial condition. In order to do this, you need to do the following: + +- Run one simulation over the whole globe using some nominal resolution, outputting 3DALL files at a time-scale that is appropriate for capturing the global-scale dynamics (say every 15 minutes if there is nothing of geophysical interest occuring). Remember that it is always a good idea to run 24 hours before an event in order to get rid of the initial condition! +- Post process the 3DALL files. +- Move the UA/data directory into some place like UA/GlobalScaleOutputs. +- Make a new UA/data directory. +- Modify the UAM.in file so that the grid captures the region of interest, and the start/end times align with the time of interest. Also, set the number of blocks so that you have the resolution you desire. +- Add the following line into the UAM.in file: + #GITMBCS + T + UA/GlobalScaleOutputs + +Then, when you run GITM, it will simulate only the region of interest. + +## Altitudes + +As defined in `src/ModEarth.f90`, the altitude spacing in GITM is 0.3 +scale heights. In the UAM.in file, the starting altitude is typically set to 100 km. Given that in ModSize.f90, the number of altitudes is 50 (by default), GITM simulates 15 scale heights, typically reaching up to ~500-700 km. +Increasing the number of altitudes in ModSize.f90 will increase the altitude range, but +if this value is increased too much the model may become unstable and/or inaccurate. It is also possible to reduce the starting altitude below 100 km, but decreasing it below the mesopause is not a great idea, since the physics of the mesopause (i.e., CO2 cooling) is not included in the current version of GITM. Therefore, moving the lower boundary below about 95 km is not recommended. + +## Running in 1D + +GITM can run in 1D mode, in which the call to advance_horizontal is not +completed. This means that GITM runs exactly the same way, but ignoring +all of the horizontal advection terms. You have to do two things to make +GITM run in 1D. First, in `ModSize.f90`: + + integer, parameter :: nLons = 1 + integer, parameter :: nLats = 1 + integer, parameter :: nAlts = 50 + + integer, parameter :: nBlocksMax = 1 + +This tells the code that you only want one single latitude and longitude +location. To specify the exact location, in `UAM.in`: + + #GRID + 1 lons + 1 lats + 41.75 minimum latitude to model + 41.75 maximum latitude to model + 275.0 minimum longitude to model + 275.0 maximum longitude to model + +This is some place in Michigan. GITM will model this +exact point for as long as you specify. One thing to keep in mind with +running in 1D is that the Earth still rotates, so the spot will have a +strong day to night variation in temperature and will not capture any horizontal dynamics at all, such as the horizontal neutral winds (which are primarily driven by pressure gradients). In 3D, the winds decrease +some of the variability between day and night, but in 1D, this doesn't +happen. So, the results are not going to be (even close to) perfect. But 1D is great for +debugging, since it is incredibly fast and many days can be run within a few minutes. diff --git a/srcDoc/internals/overview.md b/srcDoc/internals/overview.md new file mode 100644 index 00000000..86857e02 --- /dev/null +++ b/srcDoc/internals/overview.md @@ -0,0 +1,66 @@ +# Overview + +The Global Ionosphere Thermosphere Model (GITM) is a 3D model of the +upper atmosphere. It runs for Earth, Mars and Titan. A version is being +worked on for Jupiter. GITM solves for the coupled continuity, momentum +and energy equations of the neutrals and ions. For the ions, the time +rate of change of the velocity is ignored, so the steady-state ion flow +velocity is solved for. The ion temperature is a mixture of the electron +and neutral temperature. + +The neutrals are solved for using the Navier Stokes Equations. The +continuity equation is solved for for each major species. One of the +problems with GITM that needs to be rectified is that there are no real +tracer species, so a species is either solved for completely or is not +at all. These species can still be included in the chemistry +calculation. There is only one horizontal velocity that is computed, +while there are vertical velocities for each of the major species. A +bulk vertical velocity is calculated as a mass weighted average. The +temperature is a bulk temperature. + +## Source Terms + +Chemistry is the only real source term for the continuity equation. +Typically, diffusion is added in the continuity equation to allow for +eddy diffusion, but this is not the case in GITM. What happens is that +the vertical velocities are solved for, then a friction term is applied +to that the velocities stay very close together in the eddy diffusion +part of the code. This way, the velocities can't differ too much from +each other. Diffusion is not needed, then. + +For the horizontal momentum equation, there are the following sources: +(1) ion drag; (2) viscosity; and (3) gravity wave acceleration. For the +vertical velocity, the source terms are ion drag and friction between +the different neutral species. + +For the neutral temperature, the following source terms are included: +(1) radiative cooling; (2) EUV heating; (3) auroral heating; (4) Joule +heating; (5) conduction; and (6) chemical heating. The biggest pain for +the temperature equation is the use of a normalized temperature. This +means that the `temperature` variable in GITM does not contain the +actual temperature, it contains the temperature multiplies by +Boltzmann's Constant divided by the mean mass. This turns out to be a +factor that is very similar to the specific heat, or roughly or order +1000. In order to get the actual temperature, the variable has to be +multiplied by `temp_unit`. + +## Ghost Cells + +GITM is a parallel code. It uses a 2D domain decomposition, with the +altitude domain being the only thing that is not broken up. Blocks of +latitude and longitude are used. These blocks are then distributed among +different processors. In order to communicate between the processors, +ghostcells are used. These are cells that essentially overlap with the +neighboring block. MPI (message passing interface) is then used to move +information from one block to another, filling in the ghostcells. The +code then loops from 1-N, where the flux is calculated at the boundaries +from the 0-1 boundary to the N-N+1 boundary. A second order scheme is +used to calculate the fluxes, along with a flux limiter. Therefore, two +ghost cells are needed. + +In the vertical direction, ghost cells are also used to set boundary +conditions. The values in these cells are used to calculate the fluxes, +just as described above. Different types of boundary conditions +(constant values, constant fluxes, constant gradients, floating, zero +fluxes, etc) can be set by carefully choosing the right values in the +ghost cells. diff --git a/srcDoc/intro.tex b/srcDoc/intro.tex deleted file mode 100644 index 8eb216b9..00000000 --- a/srcDoc/intro.tex +++ /dev/null @@ -1,68 +0,0 @@ -% Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -% For more information, see http://csem.engin.umich.edu/tools/swmf - -The Global Ionosphere Thermosphere Model (GITM) is a 3D model of the -upper atmosphere. It runs for Earth, Mars and Titan. A version is -being worked on for Jupiter. GITM solves for the coupled continuity, -momentum and energy equations of the neutrals and ions. For the ions, -the time rate of change of the velocity is ignored, so the -steady-state ion flow velocity is solved for. The ion temperature is -a mixture of the electron and neutral temperature. - -The neutrals are solved for using the Navier Stokes Equations. The -continuity equation is solved for for each major species. One of the -problems with GITM that needs to be rectified is that there are no -real tracer species, so a species is either solved for completely or -is not at all. These species can still be included in the chemistry -calculation. There is only one horizontal velocity that is computed, -while there are vertical velocities for each of the major species. A -bulk vertical velocity is calculated as a mass weighted average. The -temperature is a bulk temperature. - -\section{Source Terms} - -Chemistry is the only real source term for the continuity equation. -Typically, diffusion is added in the continuity equation to allow for -eddy diffusion, but this is not the case in GITM. What happens is -that the vertical velocities are solved for, then a friction term is -applied to that the velocities stay very close together in the eddy -diffusion part of the code. This way, the velocities can't differ too -much from each other. Diffusion is not needed, then. - -For the horizontal momentum equation, there are the following sources: -(1) ion drag; (2) viscosity; and (3) gravity wave acceleration. For -the vertical velocity, the source terms are ion drag and friction -between the different neutral species. - -For the neutral temperature, the following source terms are included: -(1) radiative cooling; (2) EUV heating; (3) auroral heating; (4) Joule -heating; (5) conduction; and (6) chemical heating. The biggest pain -for the temperature equation is the use of a normalized temperature. -This means that the {\tt temperature} variable in GITM does not -contain the actual temperature, it contains the temperature multiplies -by Boltzmann's Constant divided by the mean mass. This turns out to -be a factor that is very similar to the specific heat, or roughly or -order 1000. In order to get the actual temperature, the variable has -to be multiplied by {\tt temp\_unit}. - -\section{Ghost Cells} - -GITM is a parallel code. It uses a 2D domain decomposition, with the -altitude domain being the only thing that is not broken up. Blocks of -latitude and longitude are used. These blocks are then distributed -among different processors. In order to communicate between the -processors, ghostcells are used. These are cells that essentially -overlap with the neighboring block. MPI (message passing interface) -is then used to move information from one block to another, filling in -the ghostcells. The code then loops from 1-N, where the flux is -calculated at the boundaries from the 0-1 boundary to the N-N+1 -boundary. A second order scheme is used to calculate the fluxes, -along with a flux limiter. Therefore, two ghost cells are needed. - -In the vertical direction, ghost cells are also used to set boundary -conditions. The values in these cells are used to calculate the -fluxes, just as described above. Different types of boundary -conditions (constant values, constant fluxes, constant gradients, -floating, zero fluxes, etc) can be set by carefully choosing the right -values in the ghost cells. - diff --git a/srcDoc/js/mermaid.min.js b/srcDoc/js/mermaid.min.js new file mode 100644 index 00000000..5243aba4 --- /dev/null +++ b/srcDoc/js/mermaid.min.js @@ -0,0 +1,2607 @@ +"use strict";var __esbuild_esm_mermaid=(()=>{var B2e=Object.create;var by=Object.defineProperty;var F2e=Object.getOwnPropertyDescriptor;var $2e=Object.getOwnPropertyNames;var z2e=Object.getPrototypeOf,G2e=Object.prototype.hasOwnProperty;var o=(t,e)=>by(t,"name",{value:e,configurable:!0});var N=(t,e)=>()=>(t&&(e=t(t=0)),e);var Mi=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),hr=(t,e)=>{for(var r in e)by(t,r,{get:e[r],enumerable:!0})},L4=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of $2e(e))!G2e.call(t,i)&&i!==r&&by(t,i,{get:()=>e[i],enumerable:!(n=F2e(e,i))||n.enumerable});return t},Sr=(t,e,r)=>(L4(t,e,"default"),r&&L4(r,e,"default")),Sa=(t,e,r)=>(r=t!=null?B2e(z2e(t)):{},L4(e||!t||!t.__esModule?by(r,"default",{value:t,enumerable:!0}):r,t)),V2e=t=>L4(by({},"__esModule",{value:!0}),t);var R4=Mi((EC,SC)=>{"use strict";(function(t,e){typeof EC=="object"&&typeof SC<"u"?SC.exports=e():typeof define=="function"&&define.amd?define(e):(t=typeof globalThis<"u"?globalThis:t||self).dayjs=e()})(EC,function(){"use strict";var t=1e3,e=6e4,r=36e5,n="millisecond",i="second",a="minute",s="hour",l="day",u="week",h="month",f="quarter",d="year",p="date",m="Invalid Date",g=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,v={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:o(function(k){var L=["th","st","nd","rd"],R=k%100;return"["+k+(L[(R-20)%10]||L[R]||L[0])+"]"},"ordinal")},x=o(function(k,L,R){var O=String(k);return!O||O.length>=L?k:""+Array(L+1-O.length).join(R)+k},"m"),b={s:x,z:o(function(k){var L=-k.utcOffset(),R=Math.abs(L),O=Math.floor(R/60),M=R%60;return(L<=0?"+":"-")+x(O,2,"0")+":"+x(M,2,"0")},"z"),m:o(function k(L,R){if(L.date()1)return k(F[0])}else{var P=L.name;C[P]=L,M=P}return!O&&M&&(w=M),M||!O&&w},"t"),S=o(function(k,L){if(E(k))return k.clone();var R=typeof L=="object"?L:{};return R.date=k,R.args=arguments,new I(R)},"O"),_=b;_.l=A,_.i=E,_.w=function(k,L){return S(k,{locale:L.$L,utc:L.$u,x:L.$x,$offset:L.$offset})};var I=function(){function k(R){this.$L=A(R.locale,null,!0),this.parse(R),this.$x=this.$x||R.x||{},this[T]=!0}o(k,"M");var L=k.prototype;return L.parse=function(R){this.$d=function(O){var M=O.date,B=O.utc;if(M===null)return new Date(NaN);if(_.u(M))return new Date;if(M instanceof Date)return new Date(M);if(typeof M=="string"&&!/Z$/i.test(M)){var F=M.match(g);if(F){var P=F[2]-1||0,z=(F[7]||"0").substring(0,3);return B?new Date(Date.UTC(F[1],P,F[3]||1,F[4]||0,F[5]||0,F[6]||0,z)):new Date(F[1],P,F[3]||1,F[4]||0,F[5]||0,F[6]||0,z)}}return new Date(M)}(R),this.init()},L.init=function(){var R=this.$d;this.$y=R.getFullYear(),this.$M=R.getMonth(),this.$D=R.getDate(),this.$W=R.getDay(),this.$H=R.getHours(),this.$m=R.getMinutes(),this.$s=R.getSeconds(),this.$ms=R.getMilliseconds()},L.$utils=function(){return _},L.isValid=function(){return this.$d.toString()!==m},L.isSame=function(R,O){var M=S(R);return this.startOf(O)<=M&&M<=this.endOf(O)},L.isAfter=function(R,O){return S(R){"use strict";CF=Sa(R4(),1),eu={trace:0,debug:1,info:2,warn:3,error:4,fatal:5},Y={trace:o((...t)=>{},"trace"),debug:o((...t)=>{},"debug"),info:o((...t)=>{},"info"),warn:o((...t)=>{},"warn"),error:o((...t)=>{},"error"),fatal:o((...t)=>{},"fatal")},wy=o(function(t="fatal"){let e=eu.fatal;typeof t=="string"?t.toLowerCase()in eu&&(e=eu[t]):typeof t=="number"&&(e=t),Y.trace=()=>{},Y.debug=()=>{},Y.info=()=>{},Y.warn=()=>{},Y.error=()=>{},Y.fatal=()=>{},e<=eu.fatal&&(Y.fatal=console.error?console.error.bind(console,bo("FATAL"),"color: orange"):console.log.bind(console,"\x1B[35m",bo("FATAL"))),e<=eu.error&&(Y.error=console.error?console.error.bind(console,bo("ERROR"),"color: orange"):console.log.bind(console,"\x1B[31m",bo("ERROR"))),e<=eu.warn&&(Y.warn=console.warn?console.warn.bind(console,bo("WARN"),"color: orange"):console.log.bind(console,"\x1B[33m",bo("WARN"))),e<=eu.info&&(Y.info=console.info?console.info.bind(console,bo("INFO"),"color: lightblue"):console.log.bind(console,"\x1B[34m",bo("INFO"))),e<=eu.debug&&(Y.debug=console.debug?console.debug.bind(console,bo("DEBUG"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",bo("DEBUG"))),e<=eu.trace&&(Y.trace=console.debug?console.debug.bind(console,bo("TRACE"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",bo("TRACE")))},"setLogLevel"),bo=o(t=>`%c${(0,CF.default)().format("ss.SSS")} : ${t} : `,"format")});var U2e,e0,CC,AF,N4=N(()=>{"use strict";U2e=Object.freeze({left:0,top:0,width:16,height:16}),e0=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),CC=Object.freeze({...U2e,...e0}),AF=Object.freeze({...CC,body:"",hidden:!1})});var H2e,_F,DF=N(()=>{"use strict";N4();H2e=Object.freeze({width:null,height:null}),_F=Object.freeze({...H2e,...e0})});var AC,M4,LF=N(()=>{"use strict";AC=o((t,e,r,n="")=>{let i=t.split(":");if(t.slice(0,1)==="@"){if(i.length<2||i.length>3)return null;n=i.shift().slice(1)}if(i.length>3||!i.length)return null;if(i.length>1){let l=i.pop(),u=i.pop(),h={provider:i.length>0?i[0]:n,prefix:u,name:l};return e&&!M4(h)?null:h}let a=i[0],s=a.split("-");if(s.length>1){let l={provider:n,prefix:s.shift(),name:s.join("-")};return e&&!M4(l)?null:l}if(r&&n===""){let l={provider:n,prefix:"",name:a};return e&&!M4(l,r)?null:l}return null},"stringToIcon"),M4=o((t,e)=>t?!!((e&&t.prefix===""||t.prefix)&&t.name):!1,"validateIconName")});function RF(t,e){let r={};!t.hFlip!=!e.hFlip&&(r.hFlip=!0),!t.vFlip!=!e.vFlip&&(r.vFlip=!0);let n=((t.rotate||0)+(e.rotate||0))%4;return n&&(r.rotate=n),r}var NF=N(()=>{"use strict";o(RF,"mergeIconTransformations")});function _C(t,e){let r=RF(t,e);for(let n in AF)n in e0?n in t&&!(n in r)&&(r[n]=e0[n]):n in e?r[n]=e[n]:n in t&&(r[n]=t[n]);return r}var MF=N(()=>{"use strict";N4();NF();o(_C,"mergeIconData")});function IF(t,e){let r=t.icons,n=t.aliases||Object.create(null),i=Object.create(null);function a(s){if(r[s])return i[s]=[];if(!(s in i)){i[s]=null;let l=n[s]&&n[s].parent,u=l&&a(l);u&&(i[s]=[l].concat(u))}return i[s]}return o(a,"resolve"),(e||Object.keys(r).concat(Object.keys(n))).forEach(a),i}var OF=N(()=>{"use strict";o(IF,"getIconsTree")});function PF(t,e,r){let n=t.icons,i=t.aliases||Object.create(null),a={};function s(l){a=_C(n[l]||i[l],a)}return o(s,"parse"),s(e),r.forEach(s),_C(t,a)}function DC(t,e){if(t.icons[e])return PF(t,e,[]);let r=IF(t,[e])[e];return r?PF(t,e,r):null}var BF=N(()=>{"use strict";MF();OF();o(PF,"internalGetIconData");o(DC,"getIconData")});function LC(t,e,r){if(e===1)return t;if(r=r||100,typeof t=="number")return Math.ceil(t*e*r)/r;if(typeof t!="string")return t;let n=t.split(W2e);if(n===null||!n.length)return t;let i=[],a=n.shift(),s=q2e.test(a);for(;;){if(s){let l=parseFloat(a);isNaN(l)?i.push(a):i.push(Math.ceil(l*e*r)/r)}else i.push(a);if(a=n.shift(),a===void 0)return i.join("");s=!s}}var W2e,q2e,FF=N(()=>{"use strict";W2e=/(-?[0-9.]*[0-9]+[0-9.]*)/g,q2e=/^-?[0-9.]*[0-9]+[0-9.]*$/g;o(LC,"calculateSize")});function Y2e(t,e="defs"){let r="",n=t.indexOf("<"+e);for(;n>=0;){let i=t.indexOf(">",n),a=t.indexOf("",a);if(s===-1)break;r+=t.slice(i+1,a).trim(),t=t.slice(0,n).trim()+t.slice(s+1)}return{defs:r,content:t}}function X2e(t,e){return t?""+t+""+e:e}function $F(t,e,r){let n=Y2e(t);return X2e(n.defs,e+n.content+r)}var zF=N(()=>{"use strict";o(Y2e,"splitSVGDefs");o(X2e,"mergeDefsAndContent");o($F,"wrapSVGContent")});function RC(t,e){let r={...CC,...t},n={..._F,...e},i={left:r.left,top:r.top,width:r.width,height:r.height},a=r.body;[r,n].forEach(y=>{let v=[],x=y.hFlip,b=y.vFlip,w=y.rotate;x?b?w+=2:(v.push("translate("+(i.width+i.left).toString()+" "+(0-i.top).toString()+")"),v.push("scale(-1 1)"),i.top=i.left=0):b&&(v.push("translate("+(0-i.left).toString()+" "+(i.height+i.top).toString()+")"),v.push("scale(1 -1)"),i.top=i.left=0);let C;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:C=i.height/2+i.top,v.unshift("rotate(90 "+C.toString()+" "+C.toString()+")");break;case 2:v.unshift("rotate(180 "+(i.width/2+i.left).toString()+" "+(i.height/2+i.top).toString()+")");break;case 3:C=i.width/2+i.left,v.unshift("rotate(-90 "+C.toString()+" "+C.toString()+")");break}w%2===1&&(i.left!==i.top&&(C=i.left,i.left=i.top,i.top=C),i.width!==i.height&&(C=i.width,i.width=i.height,i.height=C)),v.length&&(a=$F(a,'',""))});let s=n.width,l=n.height,u=i.width,h=i.height,f,d;s===null?(d=l===null?"1em":l==="auto"?h:l,f=LC(d,u/h)):(f=s==="auto"?u:s,d=l===null?LC(f,h/u):l==="auto"?h:l);let p={},m=o((y,v)=>{j2e(v)||(p[y]=v.toString())},"setAttr");m("width",f),m("height",d);let g=[i.left,i.top,u,h];return p.viewBox=g.join(" "),{attributes:p,viewBox:g,body:a}}var j2e,GF=N(()=>{"use strict";N4();DF();FF();zF();j2e=o(t=>t==="unset"||t==="undefined"||t==="none","isUnsetKeyword");o(RC,"iconToSVG")});function NC(t,e=Q2e){let r=[],n;for(;n=K2e.exec(t);)r.push(n[1]);if(!r.length)return t;let i="suffix"+(Math.random()*16777216|Date.now()).toString(16);return r.forEach(a=>{let s=typeof e=="function"?e(a):e+(Z2e++).toString(),l=a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+l+')([")]|\\.[a-z])',"g"),"$1"+s+i+"$3")}),t=t.replace(new RegExp(i,"g"),""),t}var K2e,Q2e,Z2e,VF=N(()=>{"use strict";K2e=/\sid="(\S+)"/g,Q2e="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16),Z2e=0;o(NC,"replaceIDs")});function MC(t,e){let r=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(let n in e)r+=" "+n+'="'+e[n]+'"';return'"+t+""}var UF=N(()=>{"use strict";o(MC,"iconToHTML")});var WF=Mi((iit,HF)=>{"use strict";var t0=1e3,r0=t0*60,n0=r0*60,Wf=n0*24,J2e=Wf*7,exe=Wf*365.25;HF.exports=function(t,e){e=e||{};var r=typeof t;if(r==="string"&&t.length>0)return txe(t);if(r==="number"&&isFinite(t))return e.long?nxe(t):rxe(t);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(t))};function txe(t){if(t=String(t),!(t.length>100)){var e=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(t);if(e){var r=parseFloat(e[1]),n=(e[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return r*exe;case"weeks":case"week":case"w":return r*J2e;case"days":case"day":case"d":return r*Wf;case"hours":case"hour":case"hrs":case"hr":case"h":return r*n0;case"minutes":case"minute":case"mins":case"min":case"m":return r*r0;case"seconds":case"second":case"secs":case"sec":case"s":return r*t0;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return r;default:return}}}}o(txe,"parse");function rxe(t){var e=Math.abs(t);return e>=Wf?Math.round(t/Wf)+"d":e>=n0?Math.round(t/n0)+"h":e>=r0?Math.round(t/r0)+"m":e>=t0?Math.round(t/t0)+"s":t+"ms"}o(rxe,"fmtShort");function nxe(t){var e=Math.abs(t);return e>=Wf?I4(t,e,Wf,"day"):e>=n0?I4(t,e,n0,"hour"):e>=r0?I4(t,e,r0,"minute"):e>=t0?I4(t,e,t0,"second"):t+" ms"}o(nxe,"fmtLong");function I4(t,e,r,n){var i=e>=r*1.5;return Math.round(t/r)+" "+n+(i?"s":"")}o(I4,"plural")});var YF=Mi((sit,qF)=>{"use strict";function ixe(t){r.debug=r,r.default=r,r.coerce=u,r.disable=s,r.enable=i,r.enabled=l,r.humanize=WF(),r.destroy=h,Object.keys(t).forEach(f=>{r[f]=t[f]}),r.names=[],r.skips=[],r.formatters={};function e(f){let d=0;for(let p=0;p{if(E==="%%")return"%";C++;let S=r.formatters[A];if(typeof S=="function"){let _=v[C];E=S.call(x,_),v.splice(C,1),C--}return E}),r.formatArgs.call(x,v),(x.log||r.log).apply(x,v)}return o(y,"debug"),y.namespace=f,y.useColors=r.useColors(),y.color=r.selectColor(f),y.extend=n,y.destroy=r.destroy,Object.defineProperty(y,"enabled",{enumerable:!0,configurable:!1,get:o(()=>p!==null?p:(m!==r.namespaces&&(m=r.namespaces,g=r.enabled(f)),g),"get"),set:o(v=>{p=v},"set")}),typeof r.init=="function"&&r.init(y),y}o(r,"createDebug");function n(f,d){let p=r(this.namespace+(typeof d>"u"?":":d)+f);return p.log=this.log,p}o(n,"extend");function i(f){r.save(f),r.namespaces=f,r.names=[],r.skips=[];let d=(typeof f=="string"?f:"").trim().replace(" ",",").split(",").filter(Boolean);for(let p of d)p[0]==="-"?r.skips.push(p.slice(1)):r.names.push(p)}o(i,"enable");function a(f,d){let p=0,m=0,g=-1,y=0;for(;p"-"+d)].join(",");return r.enable(""),f}o(s,"disable");function l(f){for(let d of r.skips)if(a(f,d))return!1;for(let d of r.names)if(a(f,d))return!0;return!1}o(l,"enabled");function u(f){return f instanceof Error?f.stack||f.message:f}o(u,"coerce");function h(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return o(h,"destroy"),r.enable(r.load()),r}o(ixe,"setup");qF.exports=ixe});var XF=Mi((qs,O4)=>{"use strict";qs.formatArgs=sxe;qs.save=oxe;qs.load=lxe;qs.useColors=axe;qs.storage=cxe();qs.destroy=(()=>{let t=!1;return()=>{t||(t=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})();qs.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function axe(){if(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))return!0;if(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;let t;return typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&(t=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt(t[1],10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}o(axe,"useColors");function sxe(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+O4.exports.humanize(this.diff),!this.useColors)return;let e="color: "+this.color;t.splice(1,0,e,"color: inherit");let r=0,n=0;t[0].replace(/%[a-zA-Z%]/g,i=>{i!=="%%"&&(r++,i==="%c"&&(n=r))}),t.splice(n,0,e)}o(sxe,"formatArgs");qs.log=console.debug||console.log||(()=>{});function oxe(t){try{t?qs.storage.setItem("debug",t):qs.storage.removeItem("debug")}catch{}}o(oxe,"save");function lxe(){let t;try{t=qs.storage.getItem("debug")}catch{}return!t&&typeof process<"u"&&"env"in process&&(t=process.env.DEBUG),t}o(lxe,"load");function cxe(){try{return localStorage}catch{}}o(cxe,"localstorage");O4.exports=YF()(qs);var{formatters:uxe}=O4.exports;uxe.j=function(t){try{return JSON.stringify(t)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}});var uit,jF=N(()=>{"use strict";LF();BF();GF();VF();UF();uit=Sa(XF(),1)});var OC,IC,KF,P4,hxe,wo,tu=N(()=>{"use strict";vt();jF();OC={body:'?',height:80,width:80},IC=new Map,KF=new Map,P4=o(t=>{for(let e of t){if(!e.name)throw new Error('Invalid icon loader. Must have a "name" property with non-empty string value.');if(Y.debug("Registering icon pack:",e.name),"loader"in e)KF.set(e.name,e.loader);else if("icons"in e)IC.set(e.name,e.icons);else throw Y.error("Invalid icon loader:",e),new Error('Invalid icon loader. Must have either "icons" or "loader" property.')}},"registerIconPacks"),hxe=o(async(t,e)=>{let r=AC(t,!0,e!==void 0);if(!r)throw new Error(`Invalid icon name: ${t}`);let n=r.prefix||e;if(!n)throw new Error(`Icon name must contain a prefix: ${t}`);let i=IC.get(n);if(!i){let s=KF.get(n);if(!s)throw new Error(`Icon set not found: ${r.prefix}`);try{i={...await s(),prefix:n},IC.set(n,i)}catch(l){throw Y.error(l),new Error(`Failed to load icon set: ${r.prefix}`)}}let a=DC(i,r.name);if(!a)throw new Error(`Icon not found: ${t}`);return a},"getRegisteredIconData"),wo=o(async(t,e)=>{let r;try{r=await hxe(t,e?.fallbackPrefix)}catch(a){Y.error(a),r=OC}let n=RC(r,e);return MC(NC(n.body),n.attributes)},"getIconSVG")});function B4(t){for(var e=[],r=1;r{"use strict";o(B4,"dedent")});var F4,qf,QF,$4=N(()=>{"use strict";F4=/^-{3}\s*[\n\r](.*?)[\n\r]-{3}\s*[\n\r]+/s,qf=/%{2}{\s*(?:(\w+)\s*:|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi,QF=/\s*%%.*\n/gm});var i0,BC=N(()=>{"use strict";i0=class extends Error{static{o(this,"UnknownDiagramError")}constructor(e){super(e),this.name="UnknownDiagramError"}}});var Yf,a0,z4,FC,ZF,Xf=N(()=>{"use strict";vt();$4();BC();Yf={},a0=o(function(t,e){t=t.replace(F4,"").replace(qf,"").replace(QF,` +`);for(let[r,{detector:n}]of Object.entries(Yf))if(n(t,e))return r;throw new i0(`No diagram type detected matching given configuration for text: ${t}`)},"detectType"),z4=o((...t)=>{for(let{id:e,detector:r,loader:n}of t)FC(e,r,n)},"registerLazyLoadedDiagrams"),FC=o((t,e,r)=>{Yf[t]&&Y.warn(`Detector with key ${t} already exists. Overwriting.`),Yf[t]={detector:e,loader:r},Y.debug(`Detector with key ${t} added${r?" with loader":""}`)},"addDetector"),ZF=o(t=>Yf[t].loader,"getDiagramLoader")});var Ty,JF,$C=N(()=>{"use strict";Ty=function(){var t=o(function($e,Re,Ie,be){for(Ie=Ie||{},be=$e.length;be--;Ie[$e[be]]=Re);return Ie},"o"),e=[1,24],r=[1,25],n=[1,26],i=[1,27],a=[1,28],s=[1,63],l=[1,64],u=[1,65],h=[1,66],f=[1,67],d=[1,68],p=[1,69],m=[1,29],g=[1,30],y=[1,31],v=[1,32],x=[1,33],b=[1,34],w=[1,35],C=[1,36],T=[1,37],E=[1,38],A=[1,39],S=[1,40],_=[1,41],I=[1,42],D=[1,43],k=[1,44],L=[1,45],R=[1,46],O=[1,47],M=[1,48],B=[1,50],F=[1,51],P=[1,52],z=[1,53],$=[1,54],H=[1,55],Q=[1,56],j=[1,57],ie=[1,58],ne=[1,59],le=[1,60],he=[14,42],K=[14,34,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],X=[12,14,34,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],te=[1,82],J=[1,83],se=[1,84],ue=[1,85],Z=[12,14,42],Se=[12,14,33,42],ce=[12,14,33,42,76,77,79,80],ae=[12,33],Oe=[34,36,37,38,39,40,41,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],ge={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mermaidDoc:4,direction:5,direction_tb:6,direction_bt:7,direction_rl:8,direction_lr:9,graphConfig:10,C4_CONTEXT:11,NEWLINE:12,statements:13,EOF:14,C4_CONTAINER:15,C4_COMPONENT:16,C4_DYNAMIC:17,C4_DEPLOYMENT:18,otherStatements:19,diagramStatements:20,otherStatement:21,title:22,accDescription:23,acc_title:24,acc_title_value:25,acc_descr:26,acc_descr_value:27,acc_descr_multiline_value:28,boundaryStatement:29,boundaryStartStatement:30,boundaryStopStatement:31,boundaryStart:32,LBRACE:33,ENTERPRISE_BOUNDARY:34,attributes:35,SYSTEM_BOUNDARY:36,BOUNDARY:37,CONTAINER_BOUNDARY:38,NODE:39,NODE_L:40,NODE_R:41,RBRACE:42,diagramStatement:43,PERSON:44,PERSON_EXT:45,SYSTEM:46,SYSTEM_DB:47,SYSTEM_QUEUE:48,SYSTEM_EXT:49,SYSTEM_EXT_DB:50,SYSTEM_EXT_QUEUE:51,CONTAINER:52,CONTAINER_DB:53,CONTAINER_QUEUE:54,CONTAINER_EXT:55,CONTAINER_EXT_DB:56,CONTAINER_EXT_QUEUE:57,COMPONENT:58,COMPONENT_DB:59,COMPONENT_QUEUE:60,COMPONENT_EXT:61,COMPONENT_EXT_DB:62,COMPONENT_EXT_QUEUE:63,REL:64,BIREL:65,REL_U:66,REL_D:67,REL_L:68,REL_R:69,REL_B:70,REL_INDEX:71,UPDATE_EL_STYLE:72,UPDATE_REL_STYLE:73,UPDATE_LAYOUT_CONFIG:74,attribute:75,STR:76,STR_KEY:77,STR_VALUE:78,ATTRIBUTE:79,ATTRIBUTE_EMPTY:80,$accept:0,$end:1},terminals_:{2:"error",6:"direction_tb",7:"direction_bt",8:"direction_rl",9:"direction_lr",11:"C4_CONTEXT",12:"NEWLINE",14:"EOF",15:"C4_CONTAINER",16:"C4_COMPONENT",17:"C4_DYNAMIC",18:"C4_DEPLOYMENT",22:"title",23:"accDescription",24:"acc_title",25:"acc_title_value",26:"acc_descr",27:"acc_descr_value",28:"acc_descr_multiline_value",33:"LBRACE",34:"ENTERPRISE_BOUNDARY",36:"SYSTEM_BOUNDARY",37:"BOUNDARY",38:"CONTAINER_BOUNDARY",39:"NODE",40:"NODE_L",41:"NODE_R",42:"RBRACE",44:"PERSON",45:"PERSON_EXT",46:"SYSTEM",47:"SYSTEM_DB",48:"SYSTEM_QUEUE",49:"SYSTEM_EXT",50:"SYSTEM_EXT_DB",51:"SYSTEM_EXT_QUEUE",52:"CONTAINER",53:"CONTAINER_DB",54:"CONTAINER_QUEUE",55:"CONTAINER_EXT",56:"CONTAINER_EXT_DB",57:"CONTAINER_EXT_QUEUE",58:"COMPONENT",59:"COMPONENT_DB",60:"COMPONENT_QUEUE",61:"COMPONENT_EXT",62:"COMPONENT_EXT_DB",63:"COMPONENT_EXT_QUEUE",64:"REL",65:"BIREL",66:"REL_U",67:"REL_D",68:"REL_L",69:"REL_R",70:"REL_B",71:"REL_INDEX",72:"UPDATE_EL_STYLE",73:"UPDATE_REL_STYLE",74:"UPDATE_LAYOUT_CONFIG",76:"STR",77:"STR_KEY",78:"STR_VALUE",79:"ATTRIBUTE",80:"ATTRIBUTE_EMPTY"},productions_:[0,[3,1],[3,1],[5,1],[5,1],[5,1],[5,1],[4,1],[10,4],[10,4],[10,4],[10,4],[10,4],[13,1],[13,1],[13,2],[19,1],[19,2],[19,3],[21,1],[21,1],[21,2],[21,2],[21,1],[29,3],[30,3],[30,3],[30,4],[32,2],[32,2],[32,2],[32,2],[32,2],[32,2],[32,2],[31,1],[20,1],[20,2],[20,3],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,1],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[35,1],[35,2],[75,1],[75,2],[75,1],[75,1]],performAction:o(function(Re,Ie,be,W,de,re,oe){var V=re.length-1;switch(de){case 3:W.setDirection("TB");break;case 4:W.setDirection("BT");break;case 5:W.setDirection("RL");break;case 6:W.setDirection("LR");break;case 8:case 9:case 10:case 11:case 12:W.setC4Type(re[V-3]);break;case 19:W.setTitle(re[V].substring(6)),this.$=re[V].substring(6);break;case 20:W.setAccDescription(re[V].substring(15)),this.$=re[V].substring(15);break;case 21:this.$=re[V].trim(),W.setTitle(this.$);break;case 22:case 23:this.$=re[V].trim(),W.setAccDescription(this.$);break;case 28:re[V].splice(2,0,"ENTERPRISE"),W.addPersonOrSystemBoundary(...re[V]),this.$=re[V];break;case 29:re[V].splice(2,0,"SYSTEM"),W.addPersonOrSystemBoundary(...re[V]),this.$=re[V];break;case 30:W.addPersonOrSystemBoundary(...re[V]),this.$=re[V];break;case 31:re[V].splice(2,0,"CONTAINER"),W.addContainerBoundary(...re[V]),this.$=re[V];break;case 32:W.addDeploymentNode("node",...re[V]),this.$=re[V];break;case 33:W.addDeploymentNode("nodeL",...re[V]),this.$=re[V];break;case 34:W.addDeploymentNode("nodeR",...re[V]),this.$=re[V];break;case 35:W.popBoundaryParseStack();break;case 39:W.addPersonOrSystem("person",...re[V]),this.$=re[V];break;case 40:W.addPersonOrSystem("external_person",...re[V]),this.$=re[V];break;case 41:W.addPersonOrSystem("system",...re[V]),this.$=re[V];break;case 42:W.addPersonOrSystem("system_db",...re[V]),this.$=re[V];break;case 43:W.addPersonOrSystem("system_queue",...re[V]),this.$=re[V];break;case 44:W.addPersonOrSystem("external_system",...re[V]),this.$=re[V];break;case 45:W.addPersonOrSystem("external_system_db",...re[V]),this.$=re[V];break;case 46:W.addPersonOrSystem("external_system_queue",...re[V]),this.$=re[V];break;case 47:W.addContainer("container",...re[V]),this.$=re[V];break;case 48:W.addContainer("container_db",...re[V]),this.$=re[V];break;case 49:W.addContainer("container_queue",...re[V]),this.$=re[V];break;case 50:W.addContainer("external_container",...re[V]),this.$=re[V];break;case 51:W.addContainer("external_container_db",...re[V]),this.$=re[V];break;case 52:W.addContainer("external_container_queue",...re[V]),this.$=re[V];break;case 53:W.addComponent("component",...re[V]),this.$=re[V];break;case 54:W.addComponent("component_db",...re[V]),this.$=re[V];break;case 55:W.addComponent("component_queue",...re[V]),this.$=re[V];break;case 56:W.addComponent("external_component",...re[V]),this.$=re[V];break;case 57:W.addComponent("external_component_db",...re[V]),this.$=re[V];break;case 58:W.addComponent("external_component_queue",...re[V]),this.$=re[V];break;case 60:W.addRel("rel",...re[V]),this.$=re[V];break;case 61:W.addRel("birel",...re[V]),this.$=re[V];break;case 62:W.addRel("rel_u",...re[V]),this.$=re[V];break;case 63:W.addRel("rel_d",...re[V]),this.$=re[V];break;case 64:W.addRel("rel_l",...re[V]),this.$=re[V];break;case 65:W.addRel("rel_r",...re[V]),this.$=re[V];break;case 66:W.addRel("rel_b",...re[V]),this.$=re[V];break;case 67:re[V].splice(0,1),W.addRel("rel",...re[V]),this.$=re[V];break;case 68:W.updateElStyle("update_el_style",...re[V]),this.$=re[V];break;case 69:W.updateRelStyle("update_rel_style",...re[V]),this.$=re[V];break;case 70:W.updateLayoutConfig("update_layout_config",...re[V]),this.$=re[V];break;case 71:this.$=[re[V]];break;case 72:re[V].unshift(re[V-1]),this.$=re[V];break;case 73:case 75:this.$=re[V].trim();break;case 74:let xe={};xe[re[V-1].trim()]=re[V].trim(),this.$=xe;break;case 76:this.$="";break}},"anonymous"),table:[{3:1,4:2,5:3,6:[1,5],7:[1,6],8:[1,7],9:[1,8],10:4,11:[1,9],15:[1,10],16:[1,11],17:[1,12],18:[1,13]},{1:[3]},{1:[2,1]},{1:[2,2]},{1:[2,7]},{1:[2,3]},{1:[2,4]},{1:[2,5]},{1:[2,6]},{12:[1,14]},{12:[1,15]},{12:[1,16]},{12:[1,17]},{12:[1,18]},{13:19,19:20,20:21,21:22,22:e,23:r,24:n,26:i,28:a,29:49,30:61,32:62,34:s,36:l,37:u,38:h,39:f,40:d,41:p,43:23,44:m,45:g,46:y,47:v,48:x,49:b,50:w,51:C,52:T,53:E,54:A,55:S,56:_,57:I,58:D,59:k,60:L,61:R,62:O,63:M,64:B,65:F,66:P,67:z,68:$,69:H,70:Q,71:j,72:ie,73:ne,74:le},{13:70,19:20,20:21,21:22,22:e,23:r,24:n,26:i,28:a,29:49,30:61,32:62,34:s,36:l,37:u,38:h,39:f,40:d,41:p,43:23,44:m,45:g,46:y,47:v,48:x,49:b,50:w,51:C,52:T,53:E,54:A,55:S,56:_,57:I,58:D,59:k,60:L,61:R,62:O,63:M,64:B,65:F,66:P,67:z,68:$,69:H,70:Q,71:j,72:ie,73:ne,74:le},{13:71,19:20,20:21,21:22,22:e,23:r,24:n,26:i,28:a,29:49,30:61,32:62,34:s,36:l,37:u,38:h,39:f,40:d,41:p,43:23,44:m,45:g,46:y,47:v,48:x,49:b,50:w,51:C,52:T,53:E,54:A,55:S,56:_,57:I,58:D,59:k,60:L,61:R,62:O,63:M,64:B,65:F,66:P,67:z,68:$,69:H,70:Q,71:j,72:ie,73:ne,74:le},{13:72,19:20,20:21,21:22,22:e,23:r,24:n,26:i,28:a,29:49,30:61,32:62,34:s,36:l,37:u,38:h,39:f,40:d,41:p,43:23,44:m,45:g,46:y,47:v,48:x,49:b,50:w,51:C,52:T,53:E,54:A,55:S,56:_,57:I,58:D,59:k,60:L,61:R,62:O,63:M,64:B,65:F,66:P,67:z,68:$,69:H,70:Q,71:j,72:ie,73:ne,74:le},{13:73,19:20,20:21,21:22,22:e,23:r,24:n,26:i,28:a,29:49,30:61,32:62,34:s,36:l,37:u,38:h,39:f,40:d,41:p,43:23,44:m,45:g,46:y,47:v,48:x,49:b,50:w,51:C,52:T,53:E,54:A,55:S,56:_,57:I,58:D,59:k,60:L,61:R,62:O,63:M,64:B,65:F,66:P,67:z,68:$,69:H,70:Q,71:j,72:ie,73:ne,74:le},{14:[1,74]},t(he,[2,13],{43:23,29:49,30:61,32:62,20:75,34:s,36:l,37:u,38:h,39:f,40:d,41:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w,51:C,52:T,53:E,54:A,55:S,56:_,57:I,58:D,59:k,60:L,61:R,62:O,63:M,64:B,65:F,66:P,67:z,68:$,69:H,70:Q,71:j,72:ie,73:ne,74:le}),t(he,[2,14]),t(K,[2,16],{12:[1,76]}),t(he,[2,36],{12:[1,77]}),t(X,[2,19]),t(X,[2,20]),{25:[1,78]},{27:[1,79]},t(X,[2,23]),{35:80,75:81,76:te,77:J,79:se,80:ue},{35:86,75:81,76:te,77:J,79:se,80:ue},{35:87,75:81,76:te,77:J,79:se,80:ue},{35:88,75:81,76:te,77:J,79:se,80:ue},{35:89,75:81,76:te,77:J,79:se,80:ue},{35:90,75:81,76:te,77:J,79:se,80:ue},{35:91,75:81,76:te,77:J,79:se,80:ue},{35:92,75:81,76:te,77:J,79:se,80:ue},{35:93,75:81,76:te,77:J,79:se,80:ue},{35:94,75:81,76:te,77:J,79:se,80:ue},{35:95,75:81,76:te,77:J,79:se,80:ue},{35:96,75:81,76:te,77:J,79:se,80:ue},{35:97,75:81,76:te,77:J,79:se,80:ue},{35:98,75:81,76:te,77:J,79:se,80:ue},{35:99,75:81,76:te,77:J,79:se,80:ue},{35:100,75:81,76:te,77:J,79:se,80:ue},{35:101,75:81,76:te,77:J,79:se,80:ue},{35:102,75:81,76:te,77:J,79:se,80:ue},{35:103,75:81,76:te,77:J,79:se,80:ue},{35:104,75:81,76:te,77:J,79:se,80:ue},t(Z,[2,59]),{35:105,75:81,76:te,77:J,79:se,80:ue},{35:106,75:81,76:te,77:J,79:se,80:ue},{35:107,75:81,76:te,77:J,79:se,80:ue},{35:108,75:81,76:te,77:J,79:se,80:ue},{35:109,75:81,76:te,77:J,79:se,80:ue},{35:110,75:81,76:te,77:J,79:se,80:ue},{35:111,75:81,76:te,77:J,79:se,80:ue},{35:112,75:81,76:te,77:J,79:se,80:ue},{35:113,75:81,76:te,77:J,79:se,80:ue},{35:114,75:81,76:te,77:J,79:se,80:ue},{35:115,75:81,76:te,77:J,79:se,80:ue},{20:116,29:49,30:61,32:62,34:s,36:l,37:u,38:h,39:f,40:d,41:p,43:23,44:m,45:g,46:y,47:v,48:x,49:b,50:w,51:C,52:T,53:E,54:A,55:S,56:_,57:I,58:D,59:k,60:L,61:R,62:O,63:M,64:B,65:F,66:P,67:z,68:$,69:H,70:Q,71:j,72:ie,73:ne,74:le},{12:[1,118],33:[1,117]},{35:119,75:81,76:te,77:J,79:se,80:ue},{35:120,75:81,76:te,77:J,79:se,80:ue},{35:121,75:81,76:te,77:J,79:se,80:ue},{35:122,75:81,76:te,77:J,79:se,80:ue},{35:123,75:81,76:te,77:J,79:se,80:ue},{35:124,75:81,76:te,77:J,79:se,80:ue},{35:125,75:81,76:te,77:J,79:se,80:ue},{14:[1,126]},{14:[1,127]},{14:[1,128]},{14:[1,129]},{1:[2,8]},t(he,[2,15]),t(K,[2,17],{21:22,19:130,22:e,23:r,24:n,26:i,28:a}),t(he,[2,37],{19:20,20:21,21:22,43:23,29:49,30:61,32:62,13:131,22:e,23:r,24:n,26:i,28:a,34:s,36:l,37:u,38:h,39:f,40:d,41:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w,51:C,52:T,53:E,54:A,55:S,56:_,57:I,58:D,59:k,60:L,61:R,62:O,63:M,64:B,65:F,66:P,67:z,68:$,69:H,70:Q,71:j,72:ie,73:ne,74:le}),t(X,[2,21]),t(X,[2,22]),t(Z,[2,39]),t(Se,[2,71],{75:81,35:132,76:te,77:J,79:se,80:ue}),t(ce,[2,73]),{78:[1,133]},t(ce,[2,75]),t(ce,[2,76]),t(Z,[2,40]),t(Z,[2,41]),t(Z,[2,42]),t(Z,[2,43]),t(Z,[2,44]),t(Z,[2,45]),t(Z,[2,46]),t(Z,[2,47]),t(Z,[2,48]),t(Z,[2,49]),t(Z,[2,50]),t(Z,[2,51]),t(Z,[2,52]),t(Z,[2,53]),t(Z,[2,54]),t(Z,[2,55]),t(Z,[2,56]),t(Z,[2,57]),t(Z,[2,58]),t(Z,[2,60]),t(Z,[2,61]),t(Z,[2,62]),t(Z,[2,63]),t(Z,[2,64]),t(Z,[2,65]),t(Z,[2,66]),t(Z,[2,67]),t(Z,[2,68]),t(Z,[2,69]),t(Z,[2,70]),{31:134,42:[1,135]},{12:[1,136]},{33:[1,137]},t(ae,[2,28]),t(ae,[2,29]),t(ae,[2,30]),t(ae,[2,31]),t(ae,[2,32]),t(ae,[2,33]),t(ae,[2,34]),{1:[2,9]},{1:[2,10]},{1:[2,11]},{1:[2,12]},t(K,[2,18]),t(he,[2,38]),t(Se,[2,72]),t(ce,[2,74]),t(Z,[2,24]),t(Z,[2,35]),t(Oe,[2,25]),t(Oe,[2,26],{12:[1,138]}),t(Oe,[2,27])],defaultActions:{2:[2,1],3:[2,2],4:[2,7],5:[2,3],6:[2,4],7:[2,5],8:[2,6],74:[2,8],126:[2,9],127:[2,10],128:[2,11],129:[2,12]},parseError:o(function(Re,Ie){if(Ie.recoverable)this.trace(Re);else{var be=new Error(Re);throw be.hash=Ie,be}},"parseError"),parse:o(function(Re){var Ie=this,be=[0],W=[],de=[null],re=[],oe=this.table,V="",xe=0,q=0,pe=0,ve=2,Pe=1,_e=re.slice.call(arguments,1),we=Object.create(this.lexer),Ve={yy:{}};for(var De in this.yy)Object.prototype.hasOwnProperty.call(this.yy,De)&&(Ve.yy[De]=this.yy[De]);we.setInput(Re,Ve.yy),Ve.yy.lexer=we,Ve.yy.parser=this,typeof we.yylloc>"u"&&(we.yylloc={});var qe=we.yylloc;re.push(qe);var at=we.options&&we.options.ranges;typeof Ve.yy.parseError=="function"?this.parseError=Ve.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Rt(nt){be.length=be.length-2*nt,de.length=de.length-nt,re.length=re.length-nt}o(Rt,"popStack");function st(){var nt;return nt=W.pop()||we.lex()||Pe,typeof nt!="number"&&(nt instanceof Array&&(W=nt,nt=W.pop()),nt=Ie.symbols_[nt]||nt),nt}o(st,"lex");for(var Ue,ct,We,ot,Yt,bt,Mt={},xt,ut,Et,ft;;){if(We=be[be.length-1],this.defaultActions[We]?ot=this.defaultActions[We]:((Ue===null||typeof Ue>"u")&&(Ue=st()),ot=oe[We]&&oe[We][Ue]),typeof ot>"u"||!ot.length||!ot[0]){var yt="";ft=[];for(xt in oe[We])this.terminals_[xt]&&xt>ve&&ft.push("'"+this.terminals_[xt]+"'");we.showPosition?yt="Parse error on line "+(xe+1)+`: +`+we.showPosition()+` +Expecting `+ft.join(", ")+", got '"+(this.terminals_[Ue]||Ue)+"'":yt="Parse error on line "+(xe+1)+": Unexpected "+(Ue==Pe?"end of input":"'"+(this.terminals_[Ue]||Ue)+"'"),this.parseError(yt,{text:we.match,token:this.terminals_[Ue]||Ue,line:we.yylineno,loc:qe,expected:ft})}if(ot[0]instanceof Array&&ot.length>1)throw new Error("Parse Error: multiple actions possible at state: "+We+", token: "+Ue);switch(ot[0]){case 1:be.push(Ue),de.push(we.yytext),re.push(we.yylloc),be.push(ot[1]),Ue=null,ct?(Ue=ct,ct=null):(q=we.yyleng,V=we.yytext,xe=we.yylineno,qe=we.yylloc,pe>0&&pe--);break;case 2:if(ut=this.productions_[ot[1]][1],Mt.$=de[de.length-ut],Mt._$={first_line:re[re.length-(ut||1)].first_line,last_line:re[re.length-1].last_line,first_column:re[re.length-(ut||1)].first_column,last_column:re[re.length-1].last_column},at&&(Mt._$.range=[re[re.length-(ut||1)].range[0],re[re.length-1].range[1]]),bt=this.performAction.apply(Mt,[V,q,xe,Ve.yy,ot[1],de,re].concat(_e)),typeof bt<"u")return bt;ut&&(be=be.slice(0,-1*ut*2),de=de.slice(0,-1*ut),re=re.slice(0,-1*ut)),be.push(this.productions_[ot[1]][0]),de.push(Mt.$),re.push(Mt._$),Et=oe[be[be.length-2]][be[be.length-1]],be.push(Et);break;case 3:return!0}}return!0},"parse")},ze=function(){var $e={EOF:1,parseError:o(function(Ie,be){if(this.yy.parser)this.yy.parser.parseError(Ie,be);else throw new Error(Ie)},"parseError"),setInput:o(function(Re,Ie){return this.yy=Ie||this.yy||{},this._input=Re,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var Re=this._input[0];this.yytext+=Re,this.yyleng++,this.offset++,this.match+=Re,this.matched+=Re;var Ie=Re.match(/(?:\r\n?|\n).*/g);return Ie?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Re},"input"),unput:o(function(Re){var Ie=Re.length,be=Re.split(/(?:\r\n?|\n)/g);this._input=Re+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-Ie),this.offset-=Ie;var W=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),be.length-1&&(this.yylineno-=be.length-1);var de=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:be?(be.length===W.length?this.yylloc.first_column:0)+W[W.length-be.length].length-be[0].length:this.yylloc.first_column-Ie},this.options.ranges&&(this.yylloc.range=[de[0],de[0]+this.yyleng-Ie]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(Re){this.unput(this.match.slice(Re))},"less"),pastInput:o(function(){var Re=this.matched.substr(0,this.matched.length-this.match.length);return(Re.length>20?"...":"")+Re.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var Re=this.match;return Re.length<20&&(Re+=this._input.substr(0,20-Re.length)),(Re.substr(0,20)+(Re.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var Re=this.pastInput(),Ie=new Array(Re.length+1).join("-");return Re+this.upcomingInput()+` +`+Ie+"^"},"showPosition"),test_match:o(function(Re,Ie){var be,W,de;if(this.options.backtrack_lexer&&(de={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(de.yylloc.range=this.yylloc.range.slice(0))),W=Re[0].match(/(?:\r\n?|\n).*/g),W&&(this.yylineno+=W.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:W?W[W.length-1].length-W[W.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Re[0].length},this.yytext+=Re[0],this.match+=Re[0],this.matches=Re,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Re[0].length),this.matched+=Re[0],be=this.performAction.call(this,this.yy,this,Ie,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),be)return be;if(this._backtrack){for(var re in de)this[re]=de[re];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Re,Ie,be,W;this._more||(this.yytext="",this.match="");for(var de=this._currentRules(),re=0;reIe[0].length)){if(Ie=be,W=re,this.options.backtrack_lexer){if(Re=this.test_match(be,de[re]),Re!==!1)return Re;if(this._backtrack){Ie=!1;continue}else return!1}else if(!this.options.flex)break}return Ie?(Re=this.test_match(Ie,de[W]),Re!==!1?Re:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var Ie=this.next();return Ie||this.lex()},"lex"),begin:o(function(Ie){this.conditionStack.push(Ie)},"begin"),popState:o(function(){var Ie=this.conditionStack.length-1;return Ie>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(Ie){return Ie=this.conditionStack.length-1-Math.abs(Ie||0),Ie>=0?this.conditionStack[Ie]:"INITIAL"},"topState"),pushState:o(function(Ie){this.begin(Ie)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:o(function(Ie,be,W,de){var re=de;switch(W){case 0:return 6;case 1:return 7;case 2:return 8;case 3:return 9;case 4:return 22;case 5:return 23;case 6:return this.begin("acc_title"),24;break;case 7:return this.popState(),"acc_title_value";break;case 8:return this.begin("acc_descr"),26;break;case 9:return this.popState(),"acc_descr_value";break;case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:break;case 14:c;break;case 15:return 12;case 16:break;case 17:return 11;case 18:return 15;case 19:return 16;case 20:return 17;case 21:return 18;case 22:return this.begin("person_ext"),45;break;case 23:return this.begin("person"),44;break;case 24:return this.begin("system_ext_queue"),51;break;case 25:return this.begin("system_ext_db"),50;break;case 26:return this.begin("system_ext"),49;break;case 27:return this.begin("system_queue"),48;break;case 28:return this.begin("system_db"),47;break;case 29:return this.begin("system"),46;break;case 30:return this.begin("boundary"),37;break;case 31:return this.begin("enterprise_boundary"),34;break;case 32:return this.begin("system_boundary"),36;break;case 33:return this.begin("container_ext_queue"),57;break;case 34:return this.begin("container_ext_db"),56;break;case 35:return this.begin("container_ext"),55;break;case 36:return this.begin("container_queue"),54;break;case 37:return this.begin("container_db"),53;break;case 38:return this.begin("container"),52;break;case 39:return this.begin("container_boundary"),38;break;case 40:return this.begin("component_ext_queue"),63;break;case 41:return this.begin("component_ext_db"),62;break;case 42:return this.begin("component_ext"),61;break;case 43:return this.begin("component_queue"),60;break;case 44:return this.begin("component_db"),59;break;case 45:return this.begin("component"),58;break;case 46:return this.begin("node"),39;break;case 47:return this.begin("node"),39;break;case 48:return this.begin("node_l"),40;break;case 49:return this.begin("node_r"),41;break;case 50:return this.begin("rel"),64;break;case 51:return this.begin("birel"),65;break;case 52:return this.begin("rel_u"),66;break;case 53:return this.begin("rel_u"),66;break;case 54:return this.begin("rel_d"),67;break;case 55:return this.begin("rel_d"),67;break;case 56:return this.begin("rel_l"),68;break;case 57:return this.begin("rel_l"),68;break;case 58:return this.begin("rel_r"),69;break;case 59:return this.begin("rel_r"),69;break;case 60:return this.begin("rel_b"),70;break;case 61:return this.begin("rel_index"),71;break;case 62:return this.begin("update_el_style"),72;break;case 63:return this.begin("update_rel_style"),73;break;case 64:return this.begin("update_layout_config"),74;break;case 65:return"EOF_IN_STRUCT";case 66:return this.begin("attribute"),"ATTRIBUTE_EMPTY";break;case 67:this.begin("attribute");break;case 68:this.popState(),this.popState();break;case 69:return 80;case 70:break;case 71:return 80;case 72:this.begin("string");break;case 73:this.popState();break;case 74:return"STR";case 75:this.begin("string_kv");break;case 76:return this.begin("string_kv_key"),"STR_KEY";break;case 77:this.popState(),this.begin("string_kv_value");break;case 78:return"STR_VALUE";case 79:this.popState(),this.popState();break;case 80:return"STR";case 81:return"LBRACE";case 82:return"RBRACE";case 83:return"SPACE";case 84:return"EOL";case 85:return 14}},"anonymous"),rules:[/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:title\s[^#\n;]+)/,/^(?:accDescription\s[^#\n;]+)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,/^(?:%%[^\n]*(\r?\n)*)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:C4Context\b)/,/^(?:C4Container\b)/,/^(?:C4Component\b)/,/^(?:C4Dynamic\b)/,/^(?:C4Deployment\b)/,/^(?:Person_Ext\b)/,/^(?:Person\b)/,/^(?:SystemQueue_Ext\b)/,/^(?:SystemDb_Ext\b)/,/^(?:System_Ext\b)/,/^(?:SystemQueue\b)/,/^(?:SystemDb\b)/,/^(?:System\b)/,/^(?:Boundary\b)/,/^(?:Enterprise_Boundary\b)/,/^(?:System_Boundary\b)/,/^(?:ContainerQueue_Ext\b)/,/^(?:ContainerDb_Ext\b)/,/^(?:Container_Ext\b)/,/^(?:ContainerQueue\b)/,/^(?:ContainerDb\b)/,/^(?:Container\b)/,/^(?:Container_Boundary\b)/,/^(?:ComponentQueue_Ext\b)/,/^(?:ComponentDb_Ext\b)/,/^(?:Component_Ext\b)/,/^(?:ComponentQueue\b)/,/^(?:ComponentDb\b)/,/^(?:Component\b)/,/^(?:Deployment_Node\b)/,/^(?:Node\b)/,/^(?:Node_L\b)/,/^(?:Node_R\b)/,/^(?:Rel\b)/,/^(?:BiRel\b)/,/^(?:Rel_Up\b)/,/^(?:Rel_U\b)/,/^(?:Rel_Down\b)/,/^(?:Rel_D\b)/,/^(?:Rel_Left\b)/,/^(?:Rel_L\b)/,/^(?:Rel_Right\b)/,/^(?:Rel_R\b)/,/^(?:Rel_Back\b)/,/^(?:RelIndex\b)/,/^(?:UpdateElementStyle\b)/,/^(?:UpdateRelStyle\b)/,/^(?:UpdateLayoutConfig\b)/,/^(?:$)/,/^(?:[(][ ]*[,])/,/^(?:[(])/,/^(?:[)])/,/^(?:,,)/,/^(?:,)/,/^(?:[ ]*["]["])/,/^(?:[ ]*["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:[ ]*[\$])/,/^(?:[^=]*)/,/^(?:[=][ ]*["])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:[^,]+)/,/^(?:\{)/,/^(?:\})/,/^(?:[\s]+)/,/^(?:[\n\r]+)/,/^(?:$)/],conditions:{acc_descr_multiline:{rules:[11,12],inclusive:!1},acc_descr:{rules:[9],inclusive:!1},acc_title:{rules:[7],inclusive:!1},string_kv_value:{rules:[78,79],inclusive:!1},string_kv_key:{rules:[77],inclusive:!1},string_kv:{rules:[76],inclusive:!1},string:{rules:[73,74],inclusive:!1},attribute:{rules:[68,69,70,71,72,75,80],inclusive:!1},update_layout_config:{rules:[65,66,67,68],inclusive:!1},update_rel_style:{rules:[65,66,67,68],inclusive:!1},update_el_style:{rules:[65,66,67,68],inclusive:!1},rel_b:{rules:[65,66,67,68],inclusive:!1},rel_r:{rules:[65,66,67,68],inclusive:!1},rel_l:{rules:[65,66,67,68],inclusive:!1},rel_d:{rules:[65,66,67,68],inclusive:!1},rel_u:{rules:[65,66,67,68],inclusive:!1},rel_bi:{rules:[],inclusive:!1},rel:{rules:[65,66,67,68],inclusive:!1},node_r:{rules:[65,66,67,68],inclusive:!1},node_l:{rules:[65,66,67,68],inclusive:!1},node:{rules:[65,66,67,68],inclusive:!1},index:{rules:[],inclusive:!1},rel_index:{rules:[65,66,67,68],inclusive:!1},component_ext_queue:{rules:[],inclusive:!1},component_ext_db:{rules:[65,66,67,68],inclusive:!1},component_ext:{rules:[65,66,67,68],inclusive:!1},component_queue:{rules:[65,66,67,68],inclusive:!1},component_db:{rules:[65,66,67,68],inclusive:!1},component:{rules:[65,66,67,68],inclusive:!1},container_boundary:{rules:[65,66,67,68],inclusive:!1},container_ext_queue:{rules:[65,66,67,68],inclusive:!1},container_ext_db:{rules:[65,66,67,68],inclusive:!1},container_ext:{rules:[65,66,67,68],inclusive:!1},container_queue:{rules:[65,66,67,68],inclusive:!1},container_db:{rules:[65,66,67,68],inclusive:!1},container:{rules:[65,66,67,68],inclusive:!1},birel:{rules:[65,66,67,68],inclusive:!1},system_boundary:{rules:[65,66,67,68],inclusive:!1},enterprise_boundary:{rules:[65,66,67,68],inclusive:!1},boundary:{rules:[65,66,67,68],inclusive:!1},system_ext_queue:{rules:[65,66,67,68],inclusive:!1},system_ext_db:{rules:[65,66,67,68],inclusive:!1},system_ext:{rules:[65,66,67,68],inclusive:!1},system_queue:{rules:[65,66,67,68],inclusive:!1},system_db:{rules:[65,66,67,68],inclusive:!1},system:{rules:[65,66,67,68],inclusive:!1},person_ext:{rules:[65,66,67,68],inclusive:!1},person:{rules:[65,66,67,68],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,8,10,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,81,82,83,84,85],inclusive:!0}}};return $e}();ge.lexer=ze;function He(){this.yy={}}return o(He,"Parser"),He.prototype=ge,ge.Parser=He,new He}();Ty.parser=Ty;JF=Ty});var zC,Gn,s0=N(()=>{"use strict";zC=o((t,e,{depth:r=2,clobber:n=!1}={})=>{let i={depth:r,clobber:n};return Array.isArray(e)&&!Array.isArray(t)?(e.forEach(a=>zC(t,a,i)),t):Array.isArray(e)&&Array.isArray(t)?(e.forEach(a=>{t.includes(a)||t.push(a)}),t):t===void 0||r<=0?t!=null&&typeof t=="object"&&typeof e=="object"?Object.assign(t,e):e:(e!==void 0&&typeof t=="object"&&typeof e=="object"&&Object.keys(e).forEach(a=>{typeof e[a]=="object"&&(t[a]===void 0||typeof t[a]=="object")?(t[a]===void 0&&(t[a]=Array.isArray(e[a])?[]:{}),t[a]=zC(t[a],e[a],{depth:r-1,clobber:n})):(n||typeof t[a]!="object"&&typeof e[a]!="object")&&(t[a]=e[a])}),t)},"assignWithDepth"),Gn=zC});var G4,e$,t$=N(()=>{"use strict";G4={min:{r:0,g:0,b:0,s:0,l:0,a:0},max:{r:255,g:255,b:255,h:360,s:100,l:100,a:1},clamp:{r:o(t=>t>=255?255:t<0?0:t,"r"),g:o(t=>t>=255?255:t<0?0:t,"g"),b:o(t=>t>=255?255:t<0?0:t,"b"),h:o(t=>t%360,"h"),s:o(t=>t>=100?100:t<0?0:t,"s"),l:o(t=>t>=100?100:t<0?0:t,"l"),a:o(t=>t>=1?1:t<0?0:t,"a")},toLinear:o(t=>{let e=t/255;return t>.03928?Math.pow((e+.055)/1.055,2.4):e/12.92},"toLinear"),hue2rgb:o((t,e,r)=>(r<0&&(r+=1),r>1&&(r-=1),r<.16666666666666666?t+(e-t)*6*r:r<.5?e:r<.6666666666666666?t+(e-t)*(.6666666666666666-r)*6:t),"hue2rgb"),hsl2rgb:o(({h:t,s:e,l:r},n)=>{if(!e)return r*2.55;t/=360,e/=100,r/=100;let i=r<.5?r*(1+e):r+e-r*e,a=2*r-i;switch(n){case"r":return G4.hue2rgb(a,i,t+.3333333333333333)*255;case"g":return G4.hue2rgb(a,i,t)*255;case"b":return G4.hue2rgb(a,i,t-.3333333333333333)*255}},"hsl2rgb"),rgb2hsl:o(({r:t,g:e,b:r},n)=>{t/=255,e/=255,r/=255;let i=Math.max(t,e,r),a=Math.min(t,e,r),s=(i+a)/2;if(n==="l")return s*100;if(i===a)return 0;let l=i-a,u=s>.5?l/(2-i-a):l/(i+a);if(n==="s")return u*100;switch(i){case t:return((e-r)/l+(e{"use strict";fxe={clamp:o((t,e,r)=>e>r?Math.min(e,Math.max(r,t)):Math.min(r,Math.max(e,t)),"clamp"),round:o(t=>Math.round(t*1e10)/1e10,"round")},r$=fxe});var dxe,i$,a$=N(()=>{"use strict";dxe={dec2hex:o(t=>{let e=Math.round(t).toString(16);return e.length>1?e:`0${e}`},"dec2hex")},i$=dxe});var pxe,jt,Wl=N(()=>{"use strict";t$();n$();a$();pxe={channel:e$,lang:r$,unit:i$},jt=pxe});var ru,Ii,ky=N(()=>{"use strict";Wl();ru={};for(let t=0;t<=255;t++)ru[t]=jt.unit.dec2hex(t);Ii={ALL:0,RGB:1,HSL:2}});var GC,s$,o$=N(()=>{"use strict";ky();GC=class{static{o(this,"Type")}constructor(){this.type=Ii.ALL}get(){return this.type}set(e){if(this.type&&this.type!==e)throw new Error("Cannot change both RGB and HSL channels at the same time");this.type=e}reset(){this.type=Ii.ALL}is(e){return this.type===e}},s$=GC});var VC,l$,c$=N(()=>{"use strict";Wl();o$();ky();VC=class{static{o(this,"Channels")}constructor(e,r){this.color=r,this.changed=!1,this.data=e,this.type=new s$}set(e,r){return this.color=r,this.changed=!1,this.data=e,this.type.type=Ii.ALL,this}_ensureHSL(){let e=this.data,{h:r,s:n,l:i}=e;r===void 0&&(e.h=jt.channel.rgb2hsl(e,"h")),n===void 0&&(e.s=jt.channel.rgb2hsl(e,"s")),i===void 0&&(e.l=jt.channel.rgb2hsl(e,"l"))}_ensureRGB(){let e=this.data,{r,g:n,b:i}=e;r===void 0&&(e.r=jt.channel.hsl2rgb(e,"r")),n===void 0&&(e.g=jt.channel.hsl2rgb(e,"g")),i===void 0&&(e.b=jt.channel.hsl2rgb(e,"b"))}get r(){let e=this.data,r=e.r;return!this.type.is(Ii.HSL)&&r!==void 0?r:(this._ensureHSL(),jt.channel.hsl2rgb(e,"r"))}get g(){let e=this.data,r=e.g;return!this.type.is(Ii.HSL)&&r!==void 0?r:(this._ensureHSL(),jt.channel.hsl2rgb(e,"g"))}get b(){let e=this.data,r=e.b;return!this.type.is(Ii.HSL)&&r!==void 0?r:(this._ensureHSL(),jt.channel.hsl2rgb(e,"b"))}get h(){let e=this.data,r=e.h;return!this.type.is(Ii.RGB)&&r!==void 0?r:(this._ensureRGB(),jt.channel.rgb2hsl(e,"h"))}get s(){let e=this.data,r=e.s;return!this.type.is(Ii.RGB)&&r!==void 0?r:(this._ensureRGB(),jt.channel.rgb2hsl(e,"s"))}get l(){let e=this.data,r=e.l;return!this.type.is(Ii.RGB)&&r!==void 0?r:(this._ensureRGB(),jt.channel.rgb2hsl(e,"l"))}get a(){return this.data.a}set r(e){this.type.set(Ii.RGB),this.changed=!0,this.data.r=e}set g(e){this.type.set(Ii.RGB),this.changed=!0,this.data.g=e}set b(e){this.type.set(Ii.RGB),this.changed=!0,this.data.b=e}set h(e){this.type.set(Ii.HSL),this.changed=!0,this.data.h=e}set s(e){this.type.set(Ii.HSL),this.changed=!0,this.data.s=e}set l(e){this.type.set(Ii.HSL),this.changed=!0,this.data.l=e}set a(e){this.changed=!0,this.data.a=e}},l$=VC});var mxe,ih,Ey=N(()=>{"use strict";c$();mxe=new l$({r:0,g:0,b:0,a:0},"transparent"),ih=mxe});var u$,jf,UC=N(()=>{"use strict";Ey();ky();u$={re:/^#((?:[a-f0-9]{2}){2,4}|[a-f0-9]{3})$/i,parse:o(t=>{if(t.charCodeAt(0)!==35)return;let e=t.match(u$.re);if(!e)return;let r=e[1],n=parseInt(r,16),i=r.length,a=i%4===0,s=i>4,l=s?1:17,u=s?8:4,h=a?0:-1,f=s?255:15;return ih.set({r:(n>>u*(h+3)&f)*l,g:(n>>u*(h+2)&f)*l,b:(n>>u*(h+1)&f)*l,a:a?(n&f)*l/255:1},t)},"parse"),stringify:o(t=>{let{r:e,g:r,b:n,a:i}=t;return i<1?`#${ru[Math.round(e)]}${ru[Math.round(r)]}${ru[Math.round(n)]}${ru[Math.round(i*255)]}`:`#${ru[Math.round(e)]}${ru[Math.round(r)]}${ru[Math.round(n)]}`},"stringify")},jf=u$});var V4,Sy,h$=N(()=>{"use strict";Wl();Ey();V4={re:/^hsla?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(?:deg|grad|rad|turn)?)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(%)?))?\s*?\)$/i,hueRe:/^(.+?)(deg|grad|rad|turn)$/i,_hue2deg:o(t=>{let e=t.match(V4.hueRe);if(e){let[,r,n]=e;switch(n){case"grad":return jt.channel.clamp.h(parseFloat(r)*.9);case"rad":return jt.channel.clamp.h(parseFloat(r)*180/Math.PI);case"turn":return jt.channel.clamp.h(parseFloat(r)*360)}}return jt.channel.clamp.h(parseFloat(t))},"_hue2deg"),parse:o(t=>{let e=t.charCodeAt(0);if(e!==104&&e!==72)return;let r=t.match(V4.re);if(!r)return;let[,n,i,a,s,l]=r;return ih.set({h:V4._hue2deg(n),s:jt.channel.clamp.s(parseFloat(i)),l:jt.channel.clamp.l(parseFloat(a)),a:s?jt.channel.clamp.a(l?parseFloat(s)/100:parseFloat(s)):1},t)},"parse"),stringify:o(t=>{let{h:e,s:r,l:n,a:i}=t;return i<1?`hsla(${jt.lang.round(e)}, ${jt.lang.round(r)}%, ${jt.lang.round(n)}%, ${i})`:`hsl(${jt.lang.round(e)}, ${jt.lang.round(r)}%, ${jt.lang.round(n)}%)`},"stringify")},Sy=V4});var U4,HC,f$=N(()=>{"use strict";UC();U4={colors:{aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyanaqua:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",transparent:"#00000000",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},parse:o(t=>{t=t.toLowerCase();let e=U4.colors[t];if(e)return jf.parse(e)},"parse"),stringify:o(t=>{let e=jf.stringify(t);for(let r in U4.colors)if(U4.colors[r]===e)return r},"stringify")},HC=U4});var d$,Cy,p$=N(()=>{"use strict";Wl();Ey();d$={re:/^rgba?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?)))?\s*?\)$/i,parse:o(t=>{let e=t.charCodeAt(0);if(e!==114&&e!==82)return;let r=t.match(d$.re);if(!r)return;let[,n,i,a,s,l,u,h,f]=r;return ih.set({r:jt.channel.clamp.r(i?parseFloat(n)*2.55:parseFloat(n)),g:jt.channel.clamp.g(s?parseFloat(a)*2.55:parseFloat(a)),b:jt.channel.clamp.b(u?parseFloat(l)*2.55:parseFloat(l)),a:h?jt.channel.clamp.a(f?parseFloat(h)/100:parseFloat(h)):1},t)},"parse"),stringify:o(t=>{let{r:e,g:r,b:n,a:i}=t;return i<1?`rgba(${jt.lang.round(e)}, ${jt.lang.round(r)}, ${jt.lang.round(n)}, ${jt.lang.round(i)})`:`rgb(${jt.lang.round(e)}, ${jt.lang.round(r)}, ${jt.lang.round(n)})`},"stringify")},Cy=d$});var gxe,Oi,nu=N(()=>{"use strict";UC();h$();f$();p$();ky();gxe={format:{keyword:HC,hex:jf,rgb:Cy,rgba:Cy,hsl:Sy,hsla:Sy},parse:o(t=>{if(typeof t!="string")return t;let e=jf.parse(t)||Cy.parse(t)||Sy.parse(t)||HC.parse(t);if(e)return e;throw new Error(`Unsupported color format: "${t}"`)},"parse"),stringify:o(t=>!t.changed&&t.color?t.color:t.type.is(Ii.HSL)||t.data.r===void 0?Sy.stringify(t):t.a<1||!Number.isInteger(t.r)||!Number.isInteger(t.g)||!Number.isInteger(t.b)?Cy.stringify(t):jf.stringify(t),"stringify")},Oi=gxe});var yxe,H4,WC=N(()=>{"use strict";Wl();nu();yxe=o((t,e)=>{let r=Oi.parse(t);for(let n in e)r[n]=jt.channel.clamp[n](e[n]);return Oi.stringify(r)},"change"),H4=yxe});var vxe,qa,qC=N(()=>{"use strict";Wl();Ey();nu();WC();vxe=o((t,e,r=0,n=1)=>{if(typeof t!="number")return H4(t,{a:e});let i=ih.set({r:jt.channel.clamp.r(t),g:jt.channel.clamp.g(e),b:jt.channel.clamp.b(r),a:jt.channel.clamp.a(n)});return Oi.stringify(i)},"rgba"),qa=vxe});var xxe,Kf,m$=N(()=>{"use strict";Wl();nu();xxe=o((t,e)=>jt.lang.round(Oi.parse(t)[e]),"channel"),Kf=xxe});var bxe,g$,y$=N(()=>{"use strict";Wl();nu();bxe=o(t=>{let{r:e,g:r,b:n}=Oi.parse(t),i=.2126*jt.channel.toLinear(e)+.7152*jt.channel.toLinear(r)+.0722*jt.channel.toLinear(n);return jt.lang.round(i)},"luminance"),g$=bxe});var wxe,v$,x$=N(()=>{"use strict";y$();wxe=o(t=>g$(t)>=.5,"isLight"),v$=wxe});var Txe,ca,b$=N(()=>{"use strict";x$();Txe=o(t=>!v$(t),"isDark"),ca=Txe});var kxe,W4,YC=N(()=>{"use strict";Wl();nu();kxe=o((t,e,r)=>{let n=Oi.parse(t),i=n[e],a=jt.channel.clamp[e](i+r);return i!==a&&(n[e]=a),Oi.stringify(n)},"adjustChannel"),W4=kxe});var Exe,Dt,w$=N(()=>{"use strict";YC();Exe=o((t,e)=>W4(t,"l",e),"lighten"),Dt=Exe});var Sxe,Ot,T$=N(()=>{"use strict";YC();Sxe=o((t,e)=>W4(t,"l",-e),"darken"),Ot=Sxe});var Cxe,Me,k$=N(()=>{"use strict";nu();WC();Cxe=o((t,e)=>{let r=Oi.parse(t),n={};for(let i in e)e[i]&&(n[i]=r[i]+e[i]);return H4(t,n)},"adjust"),Me=Cxe});var Axe,E$,S$=N(()=>{"use strict";nu();qC();Axe=o((t,e,r=50)=>{let{r:n,g:i,b:a,a:s}=Oi.parse(t),{r:l,g:u,b:h,a:f}=Oi.parse(e),d=r/100,p=d*2-1,m=s-f,y=((p*m===-1?p:(p+m)/(1+p*m))+1)/2,v=1-y,x=n*y+l*v,b=i*y+u*v,w=a*y+h*v,C=s*d+f*(1-d);return qa(x,b,w,C)},"mix"),E$=Axe});var _xe,wt,C$=N(()=>{"use strict";nu();S$();_xe=o((t,e=100)=>{let r=Oi.parse(t);return r.r=255-r.r,r.g=255-r.g,r.b=255-r.b,E$(r,t,e)},"invert"),wt=_xe});var A$=N(()=>{"use strict";qC();m$();b$();w$();T$();k$();C$()});var Ys=N(()=>{"use strict";A$()});var ah,sh,Ay=N(()=>{"use strict";ah="#ffffff",sh="#f2f2f2"});var Ti,o0=N(()=>{"use strict";Ys();Ti=o((t,e)=>e?Me(t,{s:-40,l:10}):Me(t,{s:-40,l:-10}),"mkBorder")});var jC,_$,D$=N(()=>{"use strict";Ys();Ay();o0();jC=class{static{o(this,"Theme")}constructor(){this.background="#f4f4f4",this.primaryColor="#fff4dd",this.noteBkgColor="#fff5ad",this.noteTextColor="#333",this.THEME_COLOR_LIMIT=12,this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px"}updateColors(){if(this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#333"),this.secondaryColor=this.secondaryColor||Me(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||Me(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Ti(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Ti(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Ti(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Ti(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#333",this.secondaryTextColor=this.secondaryTextColor||wt(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||wt(this.tertiaryColor),this.lineColor=this.lineColor||wt(this.background),this.arrowheadColor=this.arrowheadColor||wt(this.background),this.textColor=this.textColor||this.primaryTextColor,this.border2=this.border2||this.tertiaryBorderColor,this.nodeBkg=this.nodeBkg||this.primaryColor,this.mainBkg=this.mainBkg||this.primaryColor,this.nodeBorder=this.nodeBorder||this.primaryBorderColor,this.clusterBkg=this.clusterBkg||this.tertiaryColor,this.clusterBorder=this.clusterBorder||this.tertiaryBorderColor,this.defaultLinkColor=this.defaultLinkColor||this.lineColor,this.titleColor=this.titleColor||this.tertiaryTextColor,this.edgeLabelBackground=this.edgeLabelBackground||(this.darkMode?Ot(this.secondaryColor,30):this.secondaryColor),this.nodeTextColor=this.nodeTextColor||this.primaryTextColor,this.actorBorder=this.actorBorder||this.primaryBorderColor,this.actorBkg=this.actorBkg||this.mainBkg,this.actorTextColor=this.actorTextColor||this.primaryTextColor,this.actorLineColor=this.actorLineColor||this.actorBorder,this.labelBoxBkgColor=this.labelBoxBkgColor||this.actorBkg,this.signalColor=this.signalColor||this.textColor,this.signalTextColor=this.signalTextColor||this.textColor,this.labelBoxBorderColor=this.labelBoxBorderColor||this.actorBorder,this.labelTextColor=this.labelTextColor||this.actorTextColor,this.loopTextColor=this.loopTextColor||this.actorTextColor,this.activationBorderColor=this.activationBorderColor||Ot(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||wt(this.lineColor),this.sectionBkgColor=this.sectionBkgColor||this.tertiaryColor,this.altSectionBkgColor=this.altSectionBkgColor||"white",this.sectionBkgColor=this.sectionBkgColor||this.secondaryColor,this.sectionBkgColor2=this.sectionBkgColor2||this.primaryColor,this.excludeBkgColor=this.excludeBkgColor||"#eeeeee",this.taskBorderColor=this.taskBorderColor||this.primaryBorderColor,this.taskBkgColor=this.taskBkgColor||this.primaryColor,this.activeTaskBorderColor=this.activeTaskBorderColor||this.primaryColor,this.activeTaskBkgColor=this.activeTaskBkgColor||Dt(this.primaryColor,23),this.gridColor=this.gridColor||"lightgrey",this.doneTaskBkgColor=this.doneTaskBkgColor||"lightgrey",this.doneTaskBorderColor=this.doneTaskBorderColor||"grey",this.critBorderColor=this.critBorderColor||"#ff8888",this.critBkgColor=this.critBkgColor||"red",this.todayLineColor=this.todayLineColor||"red",this.taskTextColor=this.taskTextColor||this.textColor,this.taskTextOutsideColor=this.taskTextOutsideColor||this.textColor,this.taskTextLightColor=this.taskTextLightColor||this.textColor,this.taskTextColor=this.taskTextColor||this.primaryTextColor,this.taskTextDarkColor=this.taskTextDarkColor||this.textColor,this.taskTextClickableColor=this.taskTextClickableColor||"#003163",this.personBorder=this.personBorder||this.primaryBorderColor,this.personBkg=this.personBkg||this.mainBkg,this.darkMode?(this.rowOdd=this.rowOdd||Ot(this.mainBkg,5)||"#ffffff",this.rowEven=this.rowEven||Ot(this.mainBkg,10)):(this.rowOdd=this.rowOdd||Dt(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||Dt(this.mainBkg,5)),this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||this.tertiaryColor,this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.nodeBorder,this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.transitionColor=this.transitionColor||this.lineColor,this.specialStateColor=this.lineColor,this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||Me(this.primaryColor,{h:30}),this.cScale4=this.cScale4||Me(this.primaryColor,{h:60}),this.cScale5=this.cScale5||Me(this.primaryColor,{h:90}),this.cScale6=this.cScale6||Me(this.primaryColor,{h:120}),this.cScale7=this.cScale7||Me(this.primaryColor,{h:150}),this.cScale8=this.cScale8||Me(this.primaryColor,{h:210,l:150}),this.cScale9=this.cScale9||Me(this.primaryColor,{h:270}),this.cScale10=this.cScale10||Me(this.primaryColor,{h:300}),this.cScale11=this.cScale11||Me(this.primaryColor,{h:330}),this.darkMode)for(let r=0;r{this[n]=e[n]}),this.updateColors(),r.forEach(n=>{this[n]=e[n]})}},_$=o(t=>{let e=new jC;return e.calculate(t),e},"getThemeVariables")});var KC,L$,R$=N(()=>{"use strict";Ys();o0();KC=class{static{o(this,"Theme")}constructor(){this.background="#333",this.primaryColor="#1f2020",this.secondaryColor=Dt(this.primaryColor,16),this.tertiaryColor=Me(this.primaryColor,{h:-160}),this.primaryBorderColor=wt(this.background),this.secondaryBorderColor=Ti(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ti(this.tertiaryColor,this.darkMode),this.primaryTextColor=wt(this.primaryColor),this.secondaryTextColor=wt(this.secondaryColor),this.tertiaryTextColor=wt(this.tertiaryColor),this.lineColor=wt(this.background),this.textColor=wt(this.background),this.mainBkg="#1f2020",this.secondBkg="calculated",this.mainContrastColor="lightgrey",this.darkTextColor=Dt(wt("#323D47"),10),this.lineColor="calculated",this.border1="#ccc",this.border2=qa(255,255,255,.25),this.arrowheadColor="calculated",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.labelBackground="#181818",this.textColor="#ccc",this.THEME_COLOR_LIMIT=12,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="#F9FFFE",this.edgeLabelBackground="calculated",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="calculated",this.actorLineColor="calculated",this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="calculated",this.activationBkgColor="calculated",this.sequenceNumberColor="black",this.sectionBkgColor=Ot("#EAE8D9",30),this.altSectionBkgColor="calculated",this.sectionBkgColor2="#EAE8D9",this.excludeBkgColor=Ot(this.sectionBkgColor,10),this.taskBorderColor=qa(255,255,255,70),this.taskBkgColor="calculated",this.taskTextColor="calculated",this.taskTextLightColor="calculated",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor=qa(255,255,255,50),this.activeTaskBkgColor="#81B1DB",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="grey",this.critBorderColor="#E83737",this.critBkgColor="#E83737",this.taskTextDarkColor="calculated",this.todayLineColor="#DB5757",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.rowOdd=this.rowOdd||Dt(this.mainBkg,5)||"#ffffff",this.rowEven=this.rowEven||Ot(this.mainBkg,10),this.labelColor="calculated",this.errorBkgColor="#a44141",this.errorTextColor="#ddd"}updateColors(){this.secondBkg=Dt(this.mainBkg,16),this.lineColor=this.mainContrastColor,this.arrowheadColor=this.mainContrastColor,this.nodeBkg=this.mainBkg,this.nodeBorder=this.border1,this.clusterBkg=this.secondBkg,this.clusterBorder=this.border2,this.defaultLinkColor=this.lineColor,this.edgeLabelBackground=Dt(this.labelBackground,25),this.actorBorder=this.border1,this.actorBkg=this.mainBkg,this.actorTextColor=this.mainContrastColor,this.actorLineColor=this.actorBorder,this.signalColor=this.mainContrastColor,this.signalTextColor=this.mainContrastColor,this.labelBoxBkgColor=this.actorBkg,this.labelBoxBorderColor=this.actorBorder,this.labelTextColor=this.mainContrastColor,this.loopTextColor=this.mainContrastColor,this.noteBorderColor=this.secondaryBorderColor,this.noteBkgColor=this.secondBkg,this.noteTextColor=this.secondaryTextColor,this.activationBorderColor=this.border1,this.activationBkgColor=this.secondBkg,this.altSectionBkgColor=this.background,this.taskBkgColor=Dt(this.mainBkg,23),this.taskTextColor=this.darkTextColor,this.taskTextLightColor=this.mainContrastColor,this.taskTextOutsideColor=this.taskTextLightColor,this.gridColor=this.mainContrastColor,this.doneTaskBkgColor=this.mainContrastColor,this.taskTextDarkColor=this.darkTextColor,this.archEdgeColor=this.lineColor,this.archEdgeArrowColor=this.lineColor,this.transitionColor=this.transitionColor||this.lineColor,this.transitionLabelColor=this.transitionLabelColor||this.textColor,this.stateLabelColor=this.stateLabelColor||this.stateBkg||this.primaryTextColor,this.stateBkg=this.stateBkg||this.mainBkg,this.labelBackgroundColor=this.labelBackgroundColor||this.stateBkg,this.compositeBackground=this.compositeBackground||this.background||this.tertiaryColor,this.altBackground=this.altBackground||"#555",this.compositeTitleBackground=this.compositeTitleBackground||this.mainBkg,this.compositeBorder=this.compositeBorder||this.nodeBorder,this.innerEndBackground=this.primaryBorderColor,this.specialStateColor="#f4f4f4",this.errorBkgColor=this.errorBkgColor||this.tertiaryColor,this.errorTextColor=this.errorTextColor||this.tertiaryTextColor,this.fillType0=this.primaryColor,this.fillType1=this.secondaryColor,this.fillType2=Me(this.primaryColor,{h:64}),this.fillType3=Me(this.secondaryColor,{h:64}),this.fillType4=Me(this.primaryColor,{h:-64}),this.fillType5=Me(this.secondaryColor,{h:-64}),this.fillType6=Me(this.primaryColor,{h:128}),this.fillType7=Me(this.secondaryColor,{h:128}),this.cScale1=this.cScale1||"#0b0000",this.cScale2=this.cScale2||"#4d1037",this.cScale3=this.cScale3||"#3f5258",this.cScale4=this.cScale4||"#4f2f1b",this.cScale5=this.cScale5||"#6e0a0a",this.cScale6=this.cScale6||"#3b0048",this.cScale7=this.cScale7||"#995a01",this.cScale8=this.cScale8||"#154706",this.cScale9=this.cScale9||"#161722",this.cScale10=this.cScale10||"#00296f",this.cScale11=this.cScale11||"#01629c",this.cScale12=this.cScale12||"#010029",this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||Me(this.primaryColor,{h:30}),this.cScale4=this.cScale4||Me(this.primaryColor,{h:60}),this.cScale5=this.cScale5||Me(this.primaryColor,{h:90}),this.cScale6=this.cScale6||Me(this.primaryColor,{h:120}),this.cScale7=this.cScale7||Me(this.primaryColor,{h:150}),this.cScale8=this.cScale8||Me(this.primaryColor,{h:210}),this.cScale9=this.cScale9||Me(this.primaryColor,{h:270}),this.cScale10=this.cScale10||Me(this.primaryColor,{h:300}),this.cScale11=this.cScale11||Me(this.primaryColor,{h:330});for(let e=0;e{this[n]=e[n]}),this.updateColors(),r.forEach(n=>{this[n]=e[n]})}},L$=o(t=>{let e=new KC;return e.calculate(t),e},"getThemeVariables")});var QC,oh,_y=N(()=>{"use strict";Ys();o0();Ay();QC=class{static{o(this,"Theme")}constructor(){this.background="#f4f4f4",this.primaryColor="#ECECFF",this.secondaryColor=Me(this.primaryColor,{h:120}),this.secondaryColor="#ffffde",this.tertiaryColor=Me(this.primaryColor,{h:-160}),this.primaryBorderColor=Ti(this.primaryColor,this.darkMode),this.secondaryBorderColor=Ti(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ti(this.tertiaryColor,this.darkMode),this.primaryTextColor=wt(this.primaryColor),this.secondaryTextColor=wt(this.secondaryColor),this.tertiaryTextColor=wt(this.tertiaryColor),this.lineColor=wt(this.background),this.textColor=wt(this.background),this.background="white",this.mainBkg="#ECECFF",this.secondBkg="#ffffde",this.lineColor="#333333",this.border1="#9370DB",this.border2="#aaaa33",this.arrowheadColor="#333333",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.labelBackground="rgba(232,232,232, 0.8)",this.textColor="#333",this.THEME_COLOR_LIMIT=12,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="calculated",this.edgeLabelBackground="calculated",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="black",this.actorLineColor="calculated",this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.sectionBkgColor="calculated",this.altSectionBkgColor="calculated",this.sectionBkgColor2="calculated",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="calculated",this.taskTextLightColor="calculated",this.taskTextColor=this.taskTextLightColor,this.taskTextDarkColor="calculated",this.taskTextOutsideColor=this.taskTextDarkColor,this.taskTextClickableColor="calculated",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="calculated",this.critBorderColor="calculated",this.critBkgColor="calculated",this.todayLineColor="calculated",this.sectionBkgColor=qa(102,102,255,.49),this.altSectionBkgColor="white",this.sectionBkgColor2="#fff400",this.taskBorderColor="#534fbc",this.taskBkgColor="#8a90dd",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="black",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="#534fbc",this.activeTaskBkgColor="#bfc7ff",this.gridColor="lightgrey",this.doneTaskBkgColor="lightgrey",this.doneTaskBorderColor="grey",this.critBorderColor="#ff8888",this.critBkgColor="red",this.todayLineColor="red",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.rowOdd="calculated",this.rowEven="calculated",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222",this.updateColors()}updateColors(){this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||Me(this.primaryColor,{h:30}),this.cScale4=this.cScale4||Me(this.primaryColor,{h:60}),this.cScale5=this.cScale5||Me(this.primaryColor,{h:90}),this.cScale6=this.cScale6||Me(this.primaryColor,{h:120}),this.cScale7=this.cScale7||Me(this.primaryColor,{h:150}),this.cScale8=this.cScale8||Me(this.primaryColor,{h:210}),this.cScale9=this.cScale9||Me(this.primaryColor,{h:270}),this.cScale10=this.cScale10||Me(this.primaryColor,{h:300}),this.cScale11=this.cScale11||Me(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||Ot(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||Ot(this.tertiaryColor,40);for(let e=0;e{this[n]==="calculated"&&(this[n]=void 0)}),typeof e!="object"){this.updateColors();return}let r=Object.keys(e);r.forEach(n=>{this[n]=e[n]}),this.updateColors(),r.forEach(n=>{this[n]=e[n]})}},oh=o(t=>{let e=new QC;return e.calculate(t),e},"getThemeVariables")});var ZC,N$,M$=N(()=>{"use strict";Ys();Ay();o0();ZC=class{static{o(this,"Theme")}constructor(){this.background="#f4f4f4",this.primaryColor="#cde498",this.secondaryColor="#cdffb2",this.background="white",this.mainBkg="#cde498",this.secondBkg="#cdffb2",this.lineColor="green",this.border1="#13540c",this.border2="#6eaa49",this.arrowheadColor="green",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.tertiaryColor=Dt("#cde498",10),this.primaryBorderColor=Ti(this.primaryColor,this.darkMode),this.secondaryBorderColor=Ti(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ti(this.tertiaryColor,this.darkMode),this.primaryTextColor=wt(this.primaryColor),this.secondaryTextColor=wt(this.secondaryColor),this.tertiaryTextColor=wt(this.primaryColor),this.lineColor=wt(this.background),this.textColor=wt(this.background),this.THEME_COLOR_LIMIT=12,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="#333",this.edgeLabelBackground="#e8e8e8",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="black",this.actorLineColor="calculated",this.signalColor="#333",this.signalTextColor="#333",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="#326932",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="#fff5ad",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.sectionBkgColor="#6eaa49",this.altSectionBkgColor="white",this.sectionBkgColor2="#6eaa49",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="#487e3a",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="black",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="lightgrey",this.doneTaskBkgColor="lightgrey",this.doneTaskBorderColor="grey",this.critBorderColor="#ff8888",this.critBkgColor="red",this.todayLineColor="red",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222"}updateColors(){this.actorBorder=Ot(this.mainBkg,20),this.actorBkg=this.mainBkg,this.labelBoxBkgColor=this.actorBkg,this.labelTextColor=this.actorTextColor,this.loopTextColor=this.actorTextColor,this.noteBorderColor=this.border2,this.noteTextColor=this.actorTextColor,this.actorLineColor=this.actorBorder,this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||Me(this.primaryColor,{h:30}),this.cScale4=this.cScale4||Me(this.primaryColor,{h:60}),this.cScale5=this.cScale5||Me(this.primaryColor,{h:90}),this.cScale6=this.cScale6||Me(this.primaryColor,{h:120}),this.cScale7=this.cScale7||Me(this.primaryColor,{h:150}),this.cScale8=this.cScale8||Me(this.primaryColor,{h:210}),this.cScale9=this.cScale9||Me(this.primaryColor,{h:270}),this.cScale10=this.cScale10||Me(this.primaryColor,{h:300}),this.cScale11=this.cScale11||Me(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||Ot(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||Ot(this.tertiaryColor,40);for(let e=0;e{this[n]=e[n]}),this.updateColors(),r.forEach(n=>{this[n]=e[n]})}},N$=o(t=>{let e=new ZC;return e.calculate(t),e},"getThemeVariables")});var JC,I$,O$=N(()=>{"use strict";Ys();o0();Ay();JC=class{static{o(this,"Theme")}constructor(){this.primaryColor="#eee",this.contrast="#707070",this.secondaryColor=Dt(this.contrast,55),this.background="#ffffff",this.tertiaryColor=Me(this.primaryColor,{h:-160}),this.primaryBorderColor=Ti(this.primaryColor,this.darkMode),this.secondaryBorderColor=Ti(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Ti(this.tertiaryColor,this.darkMode),this.primaryTextColor=wt(this.primaryColor),this.secondaryTextColor=wt(this.secondaryColor),this.tertiaryTextColor=wt(this.tertiaryColor),this.lineColor=wt(this.background),this.textColor=wt(this.background),this.mainBkg="#eee",this.secondBkg="calculated",this.lineColor="#666",this.border1="#999",this.border2="calculated",this.note="#ffa",this.text="#333",this.critical="#d42",this.done="#bbb",this.arrowheadColor="#333333",this.fontFamily='"trebuchet ms", verdana, arial, sans-serif',this.fontSize="16px",this.THEME_COLOR_LIMIT=12,this.nodeBkg="calculated",this.nodeBorder="calculated",this.clusterBkg="calculated",this.clusterBorder="calculated",this.defaultLinkColor="calculated",this.titleColor="calculated",this.edgeLabelBackground="white",this.actorBorder="calculated",this.actorBkg="calculated",this.actorTextColor="calculated",this.actorLineColor=this.actorBorder,this.signalColor="calculated",this.signalTextColor="calculated",this.labelBoxBkgColor="calculated",this.labelBoxBorderColor="calculated",this.labelTextColor="calculated",this.loopTextColor="calculated",this.noteBorderColor="calculated",this.noteBkgColor="calculated",this.noteTextColor="calculated",this.activationBorderColor="#666",this.activationBkgColor="#f4f4f4",this.sequenceNumberColor="white",this.sectionBkgColor="calculated",this.altSectionBkgColor="white",this.sectionBkgColor2="calculated",this.excludeBkgColor="#eeeeee",this.taskBorderColor="calculated",this.taskBkgColor="calculated",this.taskTextLightColor="white",this.taskTextColor="calculated",this.taskTextDarkColor="calculated",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor="calculated",this.activeTaskBkgColor="calculated",this.gridColor="calculated",this.doneTaskBkgColor="calculated",this.doneTaskBorderColor="calculated",this.critBkgColor="calculated",this.critBorderColor="calculated",this.todayLineColor="calculated",this.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.archEdgeColor="calculated",this.archEdgeArrowColor="calculated",this.archEdgeWidth="3",this.archGroupBorderColor=this.primaryBorderColor,this.archGroupBorderWidth="2px",this.rowOdd=this.rowOdd||Dt(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||"#f4f4f4",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222"}updateColors(){this.secondBkg=Dt(this.contrast,55),this.border2=this.contrast,this.actorBorder=Dt(this.border1,23),this.actorBkg=this.mainBkg,this.actorTextColor=this.text,this.actorLineColor=this.actorBorder,this.signalColor=this.text,this.signalTextColor=this.text,this.labelBoxBkgColor=this.actorBkg,this.labelBoxBorderColor=this.actorBorder,this.labelTextColor=this.text,this.loopTextColor=this.text,this.noteBorderColor="#999",this.noteBkgColor="#666",this.noteTextColor="#fff",this.cScale0=this.cScale0||"#555",this.cScale1=this.cScale1||"#F4F4F4",this.cScale2=this.cScale2||"#555",this.cScale3=this.cScale3||"#BBB",this.cScale4=this.cScale4||"#777",this.cScale5=this.cScale5||"#999",this.cScale6=this.cScale6||"#DDD",this.cScale7=this.cScale7||"#FFF",this.cScale8=this.cScale8||"#DDD",this.cScale9=this.cScale9||"#BBB",this.cScale10=this.cScale10||"#999",this.cScale11=this.cScale11||"#777";for(let e=0;e{this[n]=e[n]}),this.updateColors(),r.forEach(n=>{this[n]=e[n]})}},I$=o(t=>{let e=new JC;return e.calculate(t),e},"getThemeVariables")});var To,q4=N(()=>{"use strict";D$();R$();_y();M$();O$();To={base:{getThemeVariables:_$},dark:{getThemeVariables:L$},default:{getThemeVariables:oh},forest:{getThemeVariables:N$},neutral:{getThemeVariables:I$}}});var ql,P$=N(()=>{"use strict";ql={flowchart:{useMaxWidth:!0,titleTopMargin:25,subGraphTitleMargin:{top:0,bottom:0},diagramPadding:8,htmlLabels:!0,nodeSpacing:50,rankSpacing:50,curve:"basis",padding:15,defaultRenderer:"dagre-wrapper",wrappingWidth:200},sequence:{useMaxWidth:!0,hideUnusedParticipants:!1,activationWidth:10,diagramMarginX:50,diagramMarginY:10,actorMargin:50,width:150,height:65,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",mirrorActors:!0,forceMenus:!1,bottomMarginAdj:1,rightAngles:!1,showSequenceNumbers:!1,actorFontSize:14,actorFontFamily:'"Open Sans", sans-serif',actorFontWeight:400,noteFontSize:14,noteFontFamily:'"trebuchet ms", verdana, arial, sans-serif',noteFontWeight:400,noteAlign:"center",messageFontSize:16,messageFontFamily:'"trebuchet ms", verdana, arial, sans-serif',messageFontWeight:400,wrap:!1,wrapPadding:10,labelBoxWidth:50,labelBoxHeight:20},gantt:{useMaxWidth:!0,titleTopMargin:25,barHeight:20,barGap:4,topPadding:50,rightPadding:75,leftPadding:75,gridLineStartPadding:35,fontSize:11,sectionFontSize:11,numberSectionStyles:4,axisFormat:"%Y-%m-%d",topAxis:!1,displayMode:"",weekday:"sunday"},journey:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,leftMargin:150,width:150,height:50,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",bottomMarginAdj:1,rightAngles:!1,taskFontSize:14,taskFontFamily:'"Open Sans", sans-serif',taskMargin:50,activationWidth:10,textPlacement:"fo",actorColours:["#8FBC8F","#7CFC00","#00FFFF","#20B2AA","#B0E0E6","#FFFFE0"],sectionFills:["#191970","#8B008B","#4B0082","#2F4F4F","#800000","#8B4513","#00008B"],sectionColours:["#fff"]},class:{useMaxWidth:!0,titleTopMargin:25,arrowMarkerAbsolute:!1,dividerMargin:10,padding:5,textHeight:10,defaultRenderer:"dagre-wrapper",htmlLabels:!1,hideEmptyMembersBox:!1},state:{useMaxWidth:!0,titleTopMargin:25,dividerMargin:10,sizeUnit:5,padding:8,textHeight:10,titleShift:-15,noteMargin:10,forkWidth:70,forkHeight:7,miniPadding:2,fontSizeFactor:5.02,fontSize:24,labelHeight:16,edgeLengthFactor:"20",compositTitleSize:35,radius:5,defaultRenderer:"dagre-wrapper"},er:{useMaxWidth:!0,titleTopMargin:25,diagramPadding:20,layoutDirection:"TB",minEntityWidth:100,minEntityHeight:75,entityPadding:15,nodeSpacing:140,rankSpacing:80,stroke:"gray",fill:"honeydew",fontSize:12},pie:{useMaxWidth:!0,textPosition:.75},quadrantChart:{useMaxWidth:!0,chartWidth:500,chartHeight:500,titleFontSize:20,titlePadding:10,quadrantPadding:5,xAxisLabelPadding:5,yAxisLabelPadding:5,xAxisLabelFontSize:16,yAxisLabelFontSize:16,quadrantLabelFontSize:16,quadrantTextTopPadding:5,pointTextPadding:5,pointLabelFontSize:12,pointRadius:5,xAxisPosition:"top",yAxisPosition:"left",quadrantInternalBorderStrokeWidth:1,quadrantExternalBorderStrokeWidth:2},xyChart:{useMaxWidth:!0,width:700,height:500,titleFontSize:20,titlePadding:10,showTitle:!0,xAxis:{$ref:"#/$defs/XYChartAxisConfig",showLabel:!0,labelFontSize:14,labelPadding:5,showTitle:!0,titleFontSize:16,titlePadding:5,showTick:!0,tickLength:5,tickWidth:2,showAxisLine:!0,axisLineWidth:2},yAxis:{$ref:"#/$defs/XYChartAxisConfig",showLabel:!0,labelFontSize:14,labelPadding:5,showTitle:!0,titleFontSize:16,titlePadding:5,showTick:!0,tickLength:5,tickWidth:2,showAxisLine:!0,axisLineWidth:2},chartOrientation:"vertical",plotReservedSpacePercent:50},requirement:{useMaxWidth:!0,rect_fill:"#f9f9f9",text_color:"#333",rect_border_size:"0.5px",rect_border_color:"#bbb",rect_min_width:200,rect_min_height:200,fontSize:14,rect_padding:10,line_height:20},mindmap:{useMaxWidth:!0,padding:10,maxNodeWidth:200},kanban:{useMaxWidth:!0,padding:8,sectionWidth:200,ticketBaseUrl:""},timeline:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,leftMargin:150,width:150,height:50,boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",bottomMarginAdj:1,rightAngles:!1,taskFontSize:14,taskFontFamily:'"Open Sans", sans-serif',taskMargin:50,activationWidth:10,textPlacement:"fo",actorColours:["#8FBC8F","#7CFC00","#00FFFF","#20B2AA","#B0E0E6","#FFFFE0"],sectionFills:["#191970","#8B008B","#4B0082","#2F4F4F","#800000","#8B4513","#00008B"],sectionColours:["#fff"],disableMulticolor:!1},gitGraph:{useMaxWidth:!0,titleTopMargin:25,diagramPadding:8,nodeLabel:{width:75,height:100,x:-25,y:0},mainBranchName:"main",mainBranchOrder:0,showCommitLabel:!0,showBranches:!0,rotateCommitLabel:!0,parallelCommits:!1,arrowMarkerAbsolute:!1},c4:{useMaxWidth:!0,diagramMarginX:50,diagramMarginY:10,c4ShapeMargin:50,c4ShapePadding:20,width:216,height:60,boxMargin:10,c4ShapeInRow:4,nextLinePaddingX:0,c4BoundaryInRow:2,personFontSize:14,personFontFamily:'"Open Sans", sans-serif',personFontWeight:"normal",external_personFontSize:14,external_personFontFamily:'"Open Sans", sans-serif',external_personFontWeight:"normal",systemFontSize:14,systemFontFamily:'"Open Sans", sans-serif',systemFontWeight:"normal",external_systemFontSize:14,external_systemFontFamily:'"Open Sans", sans-serif',external_systemFontWeight:"normal",system_dbFontSize:14,system_dbFontFamily:'"Open Sans", sans-serif',system_dbFontWeight:"normal",external_system_dbFontSize:14,external_system_dbFontFamily:'"Open Sans", sans-serif',external_system_dbFontWeight:"normal",system_queueFontSize:14,system_queueFontFamily:'"Open Sans", sans-serif',system_queueFontWeight:"normal",external_system_queueFontSize:14,external_system_queueFontFamily:'"Open Sans", sans-serif',external_system_queueFontWeight:"normal",boundaryFontSize:14,boundaryFontFamily:'"Open Sans", sans-serif',boundaryFontWeight:"normal",messageFontSize:12,messageFontFamily:'"Open Sans", sans-serif',messageFontWeight:"normal",containerFontSize:14,containerFontFamily:'"Open Sans", sans-serif',containerFontWeight:"normal",external_containerFontSize:14,external_containerFontFamily:'"Open Sans", sans-serif',external_containerFontWeight:"normal",container_dbFontSize:14,container_dbFontFamily:'"Open Sans", sans-serif',container_dbFontWeight:"normal",external_container_dbFontSize:14,external_container_dbFontFamily:'"Open Sans", sans-serif',external_container_dbFontWeight:"normal",container_queueFontSize:14,container_queueFontFamily:'"Open Sans", sans-serif',container_queueFontWeight:"normal",external_container_queueFontSize:14,external_container_queueFontFamily:'"Open Sans", sans-serif',external_container_queueFontWeight:"normal",componentFontSize:14,componentFontFamily:'"Open Sans", sans-serif',componentFontWeight:"normal",external_componentFontSize:14,external_componentFontFamily:'"Open Sans", sans-serif',external_componentFontWeight:"normal",component_dbFontSize:14,component_dbFontFamily:'"Open Sans", sans-serif',component_dbFontWeight:"normal",external_component_dbFontSize:14,external_component_dbFontFamily:'"Open Sans", sans-serif',external_component_dbFontWeight:"normal",component_queueFontSize:14,component_queueFontFamily:'"Open Sans", sans-serif',component_queueFontWeight:"normal",external_component_queueFontSize:14,external_component_queueFontFamily:'"Open Sans", sans-serif',external_component_queueFontWeight:"normal",wrap:!0,wrapPadding:10,person_bg_color:"#08427B",person_border_color:"#073B6F",external_person_bg_color:"#686868",external_person_border_color:"#8A8A8A",system_bg_color:"#1168BD",system_border_color:"#3C7FC0",system_db_bg_color:"#1168BD",system_db_border_color:"#3C7FC0",system_queue_bg_color:"#1168BD",system_queue_border_color:"#3C7FC0",external_system_bg_color:"#999999",external_system_border_color:"#8A8A8A",external_system_db_bg_color:"#999999",external_system_db_border_color:"#8A8A8A",external_system_queue_bg_color:"#999999",external_system_queue_border_color:"#8A8A8A",container_bg_color:"#438DD5",container_border_color:"#3C7FC0",container_db_bg_color:"#438DD5",container_db_border_color:"#3C7FC0",container_queue_bg_color:"#438DD5",container_queue_border_color:"#3C7FC0",external_container_bg_color:"#B3B3B3",external_container_border_color:"#A6A6A6",external_container_db_bg_color:"#B3B3B3",external_container_db_border_color:"#A6A6A6",external_container_queue_bg_color:"#B3B3B3",external_container_queue_border_color:"#A6A6A6",component_bg_color:"#85BBF0",component_border_color:"#78A8D8",component_db_bg_color:"#85BBF0",component_db_border_color:"#78A8D8",component_queue_bg_color:"#85BBF0",component_queue_border_color:"#78A8D8",external_component_bg_color:"#CCCCCC",external_component_border_color:"#BFBFBF",external_component_db_bg_color:"#CCCCCC",external_component_db_border_color:"#BFBFBF",external_component_queue_bg_color:"#CCCCCC",external_component_queue_border_color:"#BFBFBF"},sankey:{useMaxWidth:!0,width:600,height:400,linkColor:"gradient",nodeAlignment:"justify",showValues:!0,prefix:"",suffix:""},block:{useMaxWidth:!0,padding:8},packet:{useMaxWidth:!0,rowHeight:32,bitWidth:32,bitsPerRow:32,showBits:!0,paddingX:5,paddingY:5},architecture:{useMaxWidth:!0,padding:40,iconSize:80,fontSize:16},radar:{useMaxWidth:!0,width:600,height:600,marginTop:50,marginRight:50,marginBottom:50,marginLeft:50,axisScaleFactor:1,axisLabelFactor:1.05,curveTension:.17},theme:"default",look:"classic",handDrawnSeed:0,layout:"dagre",maxTextSize:5e4,maxEdges:500,darkMode:!1,fontFamily:'"trebuchet ms", verdana, arial, sans-serif;',logLevel:5,securityLevel:"strict",startOnLoad:!0,arrowMarkerAbsolute:!1,secure:["secure","securityLevel","startOnLoad","maxTextSize","suppressErrorRendering","maxEdges"],legacyMathML:!1,forceLegacyMathML:!1,deterministicIds:!1,fontSize:16,markdownAutoWrap:!0,suppressErrorRendering:!1}});var B$,F$,$$,or,Ya=N(()=>{"use strict";q4();P$();B$={...ql,deterministicIDSeed:void 0,elk:{mergeEdges:!1,nodePlacementStrategy:"BRANDES_KOEPF"},themeCSS:void 0,themeVariables:To.default.getThemeVariables(),sequence:{...ql.sequence,messageFont:o(function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},"messageFont"),noteFont:o(function(){return{fontFamily:this.noteFontFamily,fontSize:this.noteFontSize,fontWeight:this.noteFontWeight}},"noteFont"),actorFont:o(function(){return{fontFamily:this.actorFontFamily,fontSize:this.actorFontSize,fontWeight:this.actorFontWeight}},"actorFont")},class:{hideEmptyMembersBox:!1},gantt:{...ql.gantt,tickInterval:void 0,useWidth:void 0},c4:{...ql.c4,useWidth:void 0,personFont:o(function(){return{fontFamily:this.personFontFamily,fontSize:this.personFontSize,fontWeight:this.personFontWeight}},"personFont"),external_personFont:o(function(){return{fontFamily:this.external_personFontFamily,fontSize:this.external_personFontSize,fontWeight:this.external_personFontWeight}},"external_personFont"),systemFont:o(function(){return{fontFamily:this.systemFontFamily,fontSize:this.systemFontSize,fontWeight:this.systemFontWeight}},"systemFont"),external_systemFont:o(function(){return{fontFamily:this.external_systemFontFamily,fontSize:this.external_systemFontSize,fontWeight:this.external_systemFontWeight}},"external_systemFont"),system_dbFont:o(function(){return{fontFamily:this.system_dbFontFamily,fontSize:this.system_dbFontSize,fontWeight:this.system_dbFontWeight}},"system_dbFont"),external_system_dbFont:o(function(){return{fontFamily:this.external_system_dbFontFamily,fontSize:this.external_system_dbFontSize,fontWeight:this.external_system_dbFontWeight}},"external_system_dbFont"),system_queueFont:o(function(){return{fontFamily:this.system_queueFontFamily,fontSize:this.system_queueFontSize,fontWeight:this.system_queueFontWeight}},"system_queueFont"),external_system_queueFont:o(function(){return{fontFamily:this.external_system_queueFontFamily,fontSize:this.external_system_queueFontSize,fontWeight:this.external_system_queueFontWeight}},"external_system_queueFont"),containerFont:o(function(){return{fontFamily:this.containerFontFamily,fontSize:this.containerFontSize,fontWeight:this.containerFontWeight}},"containerFont"),external_containerFont:o(function(){return{fontFamily:this.external_containerFontFamily,fontSize:this.external_containerFontSize,fontWeight:this.external_containerFontWeight}},"external_containerFont"),container_dbFont:o(function(){return{fontFamily:this.container_dbFontFamily,fontSize:this.container_dbFontSize,fontWeight:this.container_dbFontWeight}},"container_dbFont"),external_container_dbFont:o(function(){return{fontFamily:this.external_container_dbFontFamily,fontSize:this.external_container_dbFontSize,fontWeight:this.external_container_dbFontWeight}},"external_container_dbFont"),container_queueFont:o(function(){return{fontFamily:this.container_queueFontFamily,fontSize:this.container_queueFontSize,fontWeight:this.container_queueFontWeight}},"container_queueFont"),external_container_queueFont:o(function(){return{fontFamily:this.external_container_queueFontFamily,fontSize:this.external_container_queueFontSize,fontWeight:this.external_container_queueFontWeight}},"external_container_queueFont"),componentFont:o(function(){return{fontFamily:this.componentFontFamily,fontSize:this.componentFontSize,fontWeight:this.componentFontWeight}},"componentFont"),external_componentFont:o(function(){return{fontFamily:this.external_componentFontFamily,fontSize:this.external_componentFontSize,fontWeight:this.external_componentFontWeight}},"external_componentFont"),component_dbFont:o(function(){return{fontFamily:this.component_dbFontFamily,fontSize:this.component_dbFontSize,fontWeight:this.component_dbFontWeight}},"component_dbFont"),external_component_dbFont:o(function(){return{fontFamily:this.external_component_dbFontFamily,fontSize:this.external_component_dbFontSize,fontWeight:this.external_component_dbFontWeight}},"external_component_dbFont"),component_queueFont:o(function(){return{fontFamily:this.component_queueFontFamily,fontSize:this.component_queueFontSize,fontWeight:this.component_queueFontWeight}},"component_queueFont"),external_component_queueFont:o(function(){return{fontFamily:this.external_component_queueFontFamily,fontSize:this.external_component_queueFontSize,fontWeight:this.external_component_queueFontWeight}},"external_component_queueFont"),boundaryFont:o(function(){return{fontFamily:this.boundaryFontFamily,fontSize:this.boundaryFontSize,fontWeight:this.boundaryFontWeight}},"boundaryFont"),messageFont:o(function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},"messageFont")},pie:{...ql.pie,useWidth:984},xyChart:{...ql.xyChart,useWidth:void 0},requirement:{...ql.requirement,useWidth:void 0},packet:{...ql.packet},radar:{...ql.radar}},F$=o((t,e="")=>Object.keys(t).reduce((r,n)=>Array.isArray(t[n])?r:typeof t[n]=="object"&&t[n]!==null?[...r,e+n,...F$(t[n],"")]:[...r,e+n],[]),"keyify"),$$=new Set(F$(B$,"")),or=B$});var l0,Dxe,e7=N(()=>{"use strict";Ya();vt();l0=o(t=>{if(Y.debug("sanitizeDirective called with",t),!(typeof t!="object"||t==null)){if(Array.isArray(t)){t.forEach(e=>l0(e));return}for(let e of Object.keys(t)){if(Y.debug("Checking key",e),e.startsWith("__")||e.includes("proto")||e.includes("constr")||!$$.has(e)||t[e]==null){Y.debug("sanitize deleting key: ",e),delete t[e];continue}if(typeof t[e]=="object"){Y.debug("sanitizing object",e),l0(t[e]);continue}let r=["themeCSS","fontFamily","altFontFamily"];for(let n of r)e.includes(n)&&(Y.debug("sanitizing css option",e),t[e]=Dxe(t[e]))}if(t.themeVariables)for(let e of Object.keys(t.themeVariables)){let r=t.themeVariables[e];r?.match&&!r.match(/^[\d "#%(),.;A-Za-z]+$/)&&(t.themeVariables[e]="")}Y.debug("After sanitization",t)}},"sanitizeDirective"),Dxe=o(t=>{let e=0,r=0;for(let n of t){if(e{"use strict";s0();vt();q4();Ya();e7();lh=Object.freeze(or),xs=Gn({},lh),c0=[],Dy=Gn({},lh),Y4=o((t,e)=>{let r=Gn({},t),n={};for(let i of e)H$(i),n=Gn(n,i);if(r=Gn(r,n),n.theme&&n.theme in To){let i=Gn({},G$),a=Gn(i.themeVariables||{},n.themeVariables);r.theme&&r.theme in To&&(r.themeVariables=To[r.theme].getThemeVariables(a))}return Dy=r,q$(Dy),Dy},"updateCurrentConfig"),t7=o(t=>(xs=Gn({},lh),xs=Gn(xs,t),t.theme&&To[t.theme]&&(xs.themeVariables=To[t.theme].getThemeVariables(t.themeVariables)),Y4(xs,c0),xs),"setSiteConfig"),V$=o(t=>{G$=Gn({},t)},"saveConfigFromInitialize"),U$=o(t=>(xs=Gn(xs,t),Y4(xs,c0),xs),"updateSiteConfig"),r7=o(()=>Gn({},xs),"getSiteConfig"),X4=o(t=>(q$(t),Gn(Dy,t),cr()),"setConfig"),cr=o(()=>Gn({},Dy),"getConfig"),H$=o(t=>{t&&(["secure",...xs.secure??[]].forEach(e=>{Object.hasOwn(t,e)&&(Y.debug(`Denied attempt to modify a secure key ${e}`,t[e]),delete t[e])}),Object.keys(t).forEach(e=>{e.startsWith("__")&&delete t[e]}),Object.keys(t).forEach(e=>{typeof t[e]=="string"&&(t[e].includes("<")||t[e].includes(">")||t[e].includes("url(data:"))&&delete t[e],typeof t[e]=="object"&&H$(t[e])}))},"sanitize"),W$=o(t=>{l0(t),t.fontFamily&&!t.themeVariables?.fontFamily&&(t.themeVariables={...t.themeVariables,fontFamily:t.fontFamily}),c0.push(t),Y4(xs,c0)},"addDirective"),Ly=o((t=xs)=>{c0=[],Y4(t,c0)},"reset"),Lxe={LAZY_LOAD_DEPRECATED:"The configuration options lazyLoadedDiagrams and loadExternalDiagramsAtStartup are deprecated. Please use registerExternalDiagrams instead."},z$={},Rxe=o(t=>{z$[t]||(Y.warn(Lxe[t]),z$[t]=!0)},"issueWarning"),q$=o(t=>{t&&(t.lazyLoadedDiagrams||t.loadExternalDiagramsAtStartup)&&Rxe("LAZY_LOAD_DEPRECATED")},"checkConfig")});function Ka(t){return function(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i2&&arguments[2]!==void 0?arguments[2]:Q4;Y$&&Y$(t,null);let n=e.length;for(;n--;){let i=e[n];if(typeof i=="string"){let a=r(i);a!==i&&(Nxe(e)||(e[n]=a),i=a)}t[i]=!0}return t}function zxe(t){for(let e=0;e0&&arguments[0]!==void 0?arguments[0]:Qxe(),e=o(At=>sz(At),"DOMPurify");if(e.version="3.2.4",e.removed=[],!t||!t.document||t.document.nodeType!==Oy.document||!t.Element)return e.isSupported=!1,e;let{document:r}=t,n=r,i=n.currentScript,{DocumentFragment:a,HTMLTemplateElement:s,Node:l,Element:u,NodeFilter:h,NamedNodeMap:f=t.NamedNodeMap||t.MozNamedAttrMap,HTMLFormElement:d,DOMParser:p,trustedTypes:m}=t,g=u.prototype,y=Iy(g,"cloneNode"),v=Iy(g,"remove"),x=Iy(g,"nextSibling"),b=Iy(g,"childNodes"),w=Iy(g,"parentNode");if(typeof s=="function"){let At=r.createElement("template");At.content&&At.content.ownerDocument&&(r=At.content.ownerDocument)}let C,T="",{implementation:E,createNodeIterator:A,createDocumentFragment:S,getElementsByTagName:_}=r,{importNode:I}=n,D=tz();e.isSupported=typeof rz=="function"&&typeof w=="function"&&E&&E.createHTMLDocument!==void 0;let{MUSTACHE_EXPR:k,ERB_EXPR:L,TMPLIT_EXPR:R,DATA_ATTR:O,ARIA_ATTR:M,IS_SCRIPT_OR_DATA:B,ATTR_WHITESPACE:F,CUSTOM_ELEMENT:P}=ez,{IS_ALLOWED_URI:z}=ez,$=null,H=Cr({},[...K$,...i7,...a7,...s7,...Q$]),Q=null,j=Cr({},[...Z$,...o7,...J$,...K4]),ie=Object.seal(nz(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),ne=null,le=null,he=!0,K=!0,X=!1,te=!0,J=!1,se=!0,ue=!1,Z=!1,Se=!1,ce=!1,ae=!1,Oe=!1,ge=!0,ze=!1,He="user-content-",$e=!0,Re=!1,Ie={},be=null,W=Cr({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),de=null,re=Cr({},["audio","video","img","source","image","track"]),oe=null,V=Cr({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),xe="http://www.w3.org/1998/Math/MathML",q="http://www.w3.org/2000/svg",pe="http://www.w3.org/1999/xhtml",ve=pe,Pe=!1,_e=null,we=Cr({},[xe,q,pe],n7),Ve=Cr({},["mi","mo","mn","ms","mtext"]),De=Cr({},["annotation-xml"]),qe=Cr({},["title","style","font","a","script"]),at=null,Rt=["application/xhtml+xml","text/html"],st="text/html",Ue=null,ct=null,We=r.createElement("form"),ot=o(function(Ce){return Ce instanceof RegExp||Ce instanceof Function},"isRegexOrFunction"),Yt=o(function(){let Ce=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!(ct&&ct===Ce)){if((!Ce||typeof Ce!="object")&&(Ce={}),Ce=Qf(Ce),at=Rt.indexOf(Ce.PARSER_MEDIA_TYPE)===-1?st:Ce.PARSER_MEDIA_TYPE,Ue=at==="application/xhtml+xml"?n7:Q4,$=sl(Ce,"ALLOWED_TAGS")?Cr({},Ce.ALLOWED_TAGS,Ue):H,Q=sl(Ce,"ALLOWED_ATTR")?Cr({},Ce.ALLOWED_ATTR,Ue):j,_e=sl(Ce,"ALLOWED_NAMESPACES")?Cr({},Ce.ALLOWED_NAMESPACES,n7):we,oe=sl(Ce,"ADD_URI_SAFE_ATTR")?Cr(Qf(V),Ce.ADD_URI_SAFE_ATTR,Ue):V,de=sl(Ce,"ADD_DATA_URI_TAGS")?Cr(Qf(re),Ce.ADD_DATA_URI_TAGS,Ue):re,be=sl(Ce,"FORBID_CONTENTS")?Cr({},Ce.FORBID_CONTENTS,Ue):W,ne=sl(Ce,"FORBID_TAGS")?Cr({},Ce.FORBID_TAGS,Ue):{},le=sl(Ce,"FORBID_ATTR")?Cr({},Ce.FORBID_ATTR,Ue):{},Ie=sl(Ce,"USE_PROFILES")?Ce.USE_PROFILES:!1,he=Ce.ALLOW_ARIA_ATTR!==!1,K=Ce.ALLOW_DATA_ATTR!==!1,X=Ce.ALLOW_UNKNOWN_PROTOCOLS||!1,te=Ce.ALLOW_SELF_CLOSE_IN_ATTR!==!1,J=Ce.SAFE_FOR_TEMPLATES||!1,se=Ce.SAFE_FOR_XML!==!1,ue=Ce.WHOLE_DOCUMENT||!1,ce=Ce.RETURN_DOM||!1,ae=Ce.RETURN_DOM_FRAGMENT||!1,Oe=Ce.RETURN_TRUSTED_TYPE||!1,Se=Ce.FORCE_BODY||!1,ge=Ce.SANITIZE_DOM!==!1,ze=Ce.SANITIZE_NAMED_PROPS||!1,$e=Ce.KEEP_CONTENT!==!1,Re=Ce.IN_PLACE||!1,z=Ce.ALLOWED_URI_REGEXP||iz,ve=Ce.NAMESPACE||pe,Ve=Ce.MATHML_TEXT_INTEGRATION_POINTS||Ve,De=Ce.HTML_INTEGRATION_POINTS||De,ie=Ce.CUSTOM_ELEMENT_HANDLING||{},Ce.CUSTOM_ELEMENT_HANDLING&&ot(Ce.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(ie.tagNameCheck=Ce.CUSTOM_ELEMENT_HANDLING.tagNameCheck),Ce.CUSTOM_ELEMENT_HANDLING&&ot(Ce.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(ie.attributeNameCheck=Ce.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),Ce.CUSTOM_ELEMENT_HANDLING&&typeof Ce.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(ie.allowCustomizedBuiltInElements=Ce.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),J&&(K=!1),ae&&(ce=!0),Ie&&($=Cr({},Q$),Q=[],Ie.html===!0&&(Cr($,K$),Cr(Q,Z$)),Ie.svg===!0&&(Cr($,i7),Cr(Q,o7),Cr(Q,K4)),Ie.svgFilters===!0&&(Cr($,a7),Cr(Q,o7),Cr(Q,K4)),Ie.mathMl===!0&&(Cr($,s7),Cr(Q,J$),Cr(Q,K4))),Ce.ADD_TAGS&&($===H&&($=Qf($)),Cr($,Ce.ADD_TAGS,Ue)),Ce.ADD_ATTR&&(Q===j&&(Q=Qf(Q)),Cr(Q,Ce.ADD_ATTR,Ue)),Ce.ADD_URI_SAFE_ATTR&&Cr(oe,Ce.ADD_URI_SAFE_ATTR,Ue),Ce.FORBID_CONTENTS&&(be===W&&(be=Qf(be)),Cr(be,Ce.FORBID_CONTENTS,Ue)),$e&&($["#text"]=!0),ue&&Cr($,["html","head","body"]),$.table&&(Cr($,["tbody"]),delete ne.tbody),Ce.TRUSTED_TYPES_POLICY){if(typeof Ce.TRUSTED_TYPES_POLICY.createHTML!="function")throw My('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof Ce.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw My('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');C=Ce.TRUSTED_TYPES_POLICY,T=C.createHTML("")}else C===void 0&&(C=Zxe(m,i)),C!==null&&typeof T=="string"&&(T=C.createHTML(""));ja&&ja(Ce),ct=Ce}},"_parseConfig"),bt=Cr({},[...i7,...a7,...Gxe]),Mt=Cr({},[...s7,...Vxe]),xt=o(function(Ce){let tt=w(Ce);(!tt||!tt.tagName)&&(tt={namespaceURI:ve,tagName:"template"});let St=Q4(Ce.tagName),mr=Q4(tt.tagName);return _e[Ce.namespaceURI]?Ce.namespaceURI===q?tt.namespaceURI===pe?St==="svg":tt.namespaceURI===xe?St==="svg"&&(mr==="annotation-xml"||Ve[mr]):!!bt[St]:Ce.namespaceURI===xe?tt.namespaceURI===pe?St==="math":tt.namespaceURI===q?St==="math"&&De[mr]:!!Mt[St]:Ce.namespaceURI===pe?tt.namespaceURI===q&&!De[mr]||tt.namespaceURI===xe&&!Ve[mr]?!1:!Mt[St]&&(qe[St]||!bt[St]):!!(at==="application/xhtml+xml"&&_e[Ce.namespaceURI]):!1},"_checkValidNamespace"),ut=o(function(Ce){Ry(e.removed,{element:Ce});try{w(Ce).removeChild(Ce)}catch{v(Ce)}},"_forceRemove"),Et=o(function(Ce,tt){try{Ry(e.removed,{attribute:tt.getAttributeNode(Ce),from:tt})}catch{Ry(e.removed,{attribute:null,from:tt})}if(tt.removeAttribute(Ce),Ce==="is")if(ce||ae)try{ut(tt)}catch{}else try{tt.setAttribute(Ce,"")}catch{}},"_removeAttribute"),ft=o(function(Ce){let tt=null,St=null;if(Se)Ce=""+Ce;else{let gn=j$(Ce,/^[\r\n\t ]+/);St=gn&&gn[0]}at==="application/xhtml+xml"&&ve===pe&&(Ce=''+Ce+"");let mr=C?C.createHTML(Ce):Ce;if(ve===pe)try{tt=new p().parseFromString(mr,at)}catch{}if(!tt||!tt.documentElement){tt=E.createDocument(ve,"template",null);try{tt.documentElement.innerHTML=Pe?T:mr}catch{}}let rn=tt.body||tt.documentElement;return Ce&&St&&rn.insertBefore(r.createTextNode(St),rn.childNodes[0]||null),ve===pe?_.call(tt,ue?"html":"body")[0]:ue?tt.documentElement:rn},"_initDocument"),yt=o(function(Ce){return A.call(Ce.ownerDocument||Ce,Ce,h.SHOW_ELEMENT|h.SHOW_COMMENT|h.SHOW_TEXT|h.SHOW_PROCESSING_INSTRUCTION|h.SHOW_CDATA_SECTION,null)},"_createNodeIterator"),nt=o(function(Ce){return Ce instanceof d&&(typeof Ce.nodeName!="string"||typeof Ce.textContent!="string"||typeof Ce.removeChild!="function"||!(Ce.attributes instanceof f)||typeof Ce.removeAttribute!="function"||typeof Ce.setAttribute!="function"||typeof Ce.namespaceURI!="string"||typeof Ce.insertBefore!="function"||typeof Ce.hasChildNodes!="function")},"_isClobbered"),dn=o(function(Ce){return typeof l=="function"&&Ce instanceof l},"_isNode");function Tt(At,Ce,tt){j4(At,St=>{St.call(e,Ce,tt,ct)})}o(Tt,"_executeHooks");let On=o(function(Ce){let tt=null;if(Tt(D.beforeSanitizeElements,Ce,null),nt(Ce))return ut(Ce),!0;let St=Ue(Ce.nodeName);if(Tt(D.uponSanitizeElement,Ce,{tagName:St,allowedTags:$}),Ce.hasChildNodes()&&!dn(Ce.firstElementChild)&&Xa(/<[/\w]/g,Ce.innerHTML)&&Xa(/<[/\w]/g,Ce.textContent)||Ce.nodeType===Oy.progressingInstruction||se&&Ce.nodeType===Oy.comment&&Xa(/<[/\w]/g,Ce.data))return ut(Ce),!0;if(!$[St]||ne[St]){if(!ne[St]&&_r(St)&&(ie.tagNameCheck instanceof RegExp&&Xa(ie.tagNameCheck,St)||ie.tagNameCheck instanceof Function&&ie.tagNameCheck(St)))return!1;if($e&&!be[St]){let mr=w(Ce)||Ce.parentNode,rn=b(Ce)||Ce.childNodes;if(rn&&mr){let gn=rn.length;for(let Zr=gn-1;Zr>=0;--Zr){let Ni=y(rn[Zr],!0);Ni.__removalCount=(Ce.__removalCount||0)+1,mr.insertBefore(Ni,x(Ce))}}}return ut(Ce),!0}return Ce instanceof u&&!xt(Ce)||(St==="noscript"||St==="noembed"||St==="noframes")&&Xa(/<\/no(script|embed|frames)/i,Ce.innerHTML)?(ut(Ce),!0):(J&&Ce.nodeType===Oy.text&&(tt=Ce.textContent,j4([k,L,R],mr=>{tt=Ny(tt,mr," ")}),Ce.textContent!==tt&&(Ry(e.removed,{element:Ce.cloneNode()}),Ce.textContent=tt)),Tt(D.afterSanitizeElements,Ce,null),!1)},"_sanitizeElements"),tn=o(function(Ce,tt,St){if(ge&&(tt==="id"||tt==="name")&&(St in r||St in We))return!1;if(!(K&&!le[tt]&&Xa(O,tt))){if(!(he&&Xa(M,tt))){if(!Q[tt]||le[tt]){if(!(_r(Ce)&&(ie.tagNameCheck instanceof RegExp&&Xa(ie.tagNameCheck,Ce)||ie.tagNameCheck instanceof Function&&ie.tagNameCheck(Ce))&&(ie.attributeNameCheck instanceof RegExp&&Xa(ie.attributeNameCheck,tt)||ie.attributeNameCheck instanceof Function&&ie.attributeNameCheck(tt))||tt==="is"&&ie.allowCustomizedBuiltInElements&&(ie.tagNameCheck instanceof RegExp&&Xa(ie.tagNameCheck,St)||ie.tagNameCheck instanceof Function&&ie.tagNameCheck(St))))return!1}else if(!oe[tt]){if(!Xa(z,Ny(St,F,""))){if(!((tt==="src"||tt==="xlink:href"||tt==="href")&&Ce!=="script"&&Bxe(St,"data:")===0&&de[Ce])){if(!(X&&!Xa(B,Ny(St,F,"")))){if(St)return!1}}}}}}return!0},"_isValidAttribute"),_r=o(function(Ce){return Ce!=="annotation-xml"&&j$(Ce,P)},"_isBasicCustomElement"),Dr=o(function(Ce){Tt(D.beforeSanitizeAttributes,Ce,null);let{attributes:tt}=Ce;if(!tt||nt(Ce))return;let St={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:Q,forceKeepAttr:void 0},mr=tt.length;for(;mr--;){let rn=tt[mr],{name:gn,namespaceURI:Zr,value:Ni}=rn,Zn=Ue(gn),Sn=gn==="value"?Ni:Fxe(Ni);if(St.attrName=Zn,St.attrValue=Sn,St.keepAttr=!0,St.forceKeepAttr=void 0,Tt(D.uponSanitizeAttribute,Ce,St),Sn=St.attrValue,ze&&(Zn==="id"||Zn==="name")&&(Et(gn,Ce),Sn=He+Sn),se&&Xa(/((--!?|])>)|<\/(style|title)/i,Sn)){Et(gn,Ce);continue}if(St.forceKeepAttr||(Et(gn,Ce),!St.keepAttr))continue;if(!te&&Xa(/\/>/i,Sn)){Et(gn,Ce);continue}J&&j4([k,L,R],et=>{Sn=Ny(Sn,et," ")});let Hr=Ue(Ce.nodeName);if(tn(Hr,Zn,Sn)){if(C&&typeof m=="object"&&typeof m.getAttributeType=="function"&&!Zr)switch(m.getAttributeType(Hr,Zn)){case"TrustedHTML":{Sn=C.createHTML(Sn);break}case"TrustedScriptURL":{Sn=C.createScriptURL(Sn);break}}try{Zr?Ce.setAttributeNS(Zr,gn,Sn):Ce.setAttribute(gn,Sn),nt(Ce)?ut(Ce):X$(e.removed)}catch{}}}Tt(D.afterSanitizeAttributes,Ce,null)},"_sanitizeAttributes"),Pn=o(function At(Ce){let tt=null,St=yt(Ce);for(Tt(D.beforeSanitizeShadowDOM,Ce,null);tt=St.nextNode();)Tt(D.uponSanitizeShadowNode,tt,null),On(tt),Dr(tt),tt.content instanceof a&&At(tt.content);Tt(D.afterSanitizeShadowDOM,Ce,null)},"_sanitizeShadowDOM");return e.sanitize=function(At){let Ce=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},tt=null,St=null,mr=null,rn=null;if(Pe=!At,Pe&&(At=""),typeof At!="string"&&!dn(At))if(typeof At.toString=="function"){if(At=At.toString(),typeof At!="string")throw My("dirty is not a string, aborting")}else throw My("toString is not a function");if(!e.isSupported)return At;if(Z||Yt(Ce),e.removed=[],typeof At=="string"&&(Re=!1),Re){if(At.nodeName){let Ni=Ue(At.nodeName);if(!$[Ni]||ne[Ni])throw My("root node is forbidden and cannot be sanitized in-place")}}else if(At instanceof l)tt=ft(""),St=tt.ownerDocument.importNode(At,!0),St.nodeType===Oy.element&&St.nodeName==="BODY"||St.nodeName==="HTML"?tt=St:tt.appendChild(St);else{if(!ce&&!J&&!ue&&At.indexOf("<")===-1)return C&&Oe?C.createHTML(At):At;if(tt=ft(At),!tt)return ce?null:Oe?T:""}tt&&Se&&ut(tt.firstChild);let gn=yt(Re?At:tt);for(;mr=gn.nextNode();)On(mr),Dr(mr),mr.content instanceof a&&Pn(mr.content);if(Re)return At;if(ce){if(ae)for(rn=S.call(tt.ownerDocument);tt.firstChild;)rn.appendChild(tt.firstChild);else rn=tt;return(Q.shadowroot||Q.shadowrootmode)&&(rn=I.call(n,rn,!0)),rn}let Zr=ue?tt.outerHTML:tt.innerHTML;return ue&&$["!doctype"]&&tt.ownerDocument&&tt.ownerDocument.doctype&&tt.ownerDocument.doctype.name&&Xa(az,tt.ownerDocument.doctype.name)&&(Zr=" +`+Zr),J&&j4([k,L,R],Ni=>{Zr=Ny(Zr,Ni," ")}),C&&Oe?C.createHTML(Zr):Zr},e.setConfig=function(){let At=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};Yt(At),Z=!0},e.clearConfig=function(){ct=null,Z=!1},e.isValidAttribute=function(At,Ce,tt){ct||Yt({});let St=Ue(At),mr=Ue(Ce);return tn(St,mr,tt)},e.addHook=function(At,Ce){typeof Ce=="function"&&Ry(D[At],Ce)},e.removeHook=function(At,Ce){if(Ce!==void 0){let tt=Oxe(D[At],Ce);return tt===-1?void 0:Pxe(D[At],tt,1)[0]}return X$(D[At])},e.removeHooks=function(At){D[At]=[]},e.removeAllHooks=function(){D=tz()},e}var rz,Y$,Nxe,Mxe,Ixe,ja,ko,nz,l7,c7,j4,Oxe,X$,Ry,Pxe,Q4,n7,j$,Ny,Bxe,Fxe,sl,Xa,My,K$,i7,a7,Gxe,s7,Vxe,Q$,Z$,o7,J$,K4,Uxe,Hxe,Wxe,qxe,Yxe,iz,Xxe,jxe,az,Kxe,ez,Oy,Qxe,Zxe,tz,ch,u7=N(()=>{"use strict";({entries:rz,setPrototypeOf:Y$,isFrozen:Nxe,getPrototypeOf:Mxe,getOwnPropertyDescriptor:Ixe}=Object),{freeze:ja,seal:ko,create:nz}=Object,{apply:l7,construct:c7}=typeof Reflect<"u"&&Reflect;ja||(ja=o(function(e){return e},"freeze"));ko||(ko=o(function(e){return e},"seal"));l7||(l7=o(function(e,r,n){return e.apply(r,n)},"apply"));c7||(c7=o(function(e,r){return new e(...r)},"construct"));j4=Ka(Array.prototype.forEach),Oxe=Ka(Array.prototype.lastIndexOf),X$=Ka(Array.prototype.pop),Ry=Ka(Array.prototype.push),Pxe=Ka(Array.prototype.splice),Q4=Ka(String.prototype.toLowerCase),n7=Ka(String.prototype.toString),j$=Ka(String.prototype.match),Ny=Ka(String.prototype.replace),Bxe=Ka(String.prototype.indexOf),Fxe=Ka(String.prototype.trim),sl=Ka(Object.prototype.hasOwnProperty),Xa=Ka(RegExp.prototype.test),My=$xe(TypeError);o(Ka,"unapply");o($xe,"unconstruct");o(Cr,"addToSet");o(zxe,"cleanArray");o(Qf,"clone");o(Iy,"lookupGetter");K$=ja(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),i7=ja(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),a7=ja(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),Gxe=ja(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),s7=ja(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),Vxe=ja(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),Q$=ja(["#text"]),Z$=ja(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns","slot"]),o7=ja(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),J$=ja(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),K4=ja(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),Uxe=ko(/\{\{[\w\W]*|[\w\W]*\}\}/gm),Hxe=ko(/<%[\w\W]*|[\w\W]*%>/gm),Wxe=ko(/\$\{[\w\W]*/gm),qxe=ko(/^data-[\-\w.\u00B7-\uFFFF]+$/),Yxe=ko(/^aria-[\-\w]+$/),iz=ko(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Xxe=ko(/^(?:\w+script|data):/i),jxe=ko(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),az=ko(/^html$/i),Kxe=ko(/^[a-z][.\w]*(-[.\w]+)+$/i),ez=Object.freeze({__proto__:null,ARIA_ATTR:Yxe,ATTR_WHITESPACE:jxe,CUSTOM_ELEMENT:Kxe,DATA_ATTR:qxe,DOCTYPE_NAME:az,ERB_EXPR:Hxe,IS_ALLOWED_URI:iz,IS_SCRIPT_OR_DATA:Xxe,MUSTACHE_EXPR:Uxe,TMPLIT_EXPR:Wxe}),Oy={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,progressingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},Qxe=o(function(){return typeof window>"u"?null:window},"getGlobal"),Zxe=o(function(e,r){if(typeof e!="object"||typeof e.createPolicy!="function")return null;let n=null,i="data-tt-policy-suffix";r&&r.hasAttribute(i)&&(n=r.getAttribute(i));let a="dompurify"+(n?"#"+n:"");try{return e.createPolicy(a,{createHTML(s){return s},createScriptURL(s){return s}})}catch{return console.warn("TrustedTypes policy "+a+" could not be created."),null}},"_createTrustedTypesPolicy"),tz=o(function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},"_createHooksMap");o(sz,"createDOMPurify");ch=sz()});var MG={};hr(MG,{default:()=>q4e});function abe(t){return String(t).replace(ibe,e=>nbe[e])}function cbe(t){if(t.default)return t.default;var e=t.type,r=Array.isArray(e)?e[0]:e;if(typeof r!="string")return r.enum[0];switch(r){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{}}}function gbe(t){for(var e=0;e=i[0]&&t<=i[1])return r.name}return null}function $z(t){for(var e=0;e=u3[e]&&t<=u3[e+1])return!0;return!1}function Abe(t,e){jl[t]=e}function P7(t,e,r){if(!jl[e])throw new Error("Font metrics not found for font: "+e+".");var n=t.charCodeAt(0),i=jl[e][n];if(!i&&t[0]in lz&&(n=lz[t[0]].charCodeAt(0),i=jl[e][n]),!i&&r==="text"&&$z(n)&&(i=jl[e][77]),i)return{depth:i[0],height:i[1],italic:i[2],skew:i[3],width:i[4]}}function _be(t){var e;if(t>=5?e=0:t>=3?e=1:e=2,!h7[e]){var r=h7[e]={cssEmPerMu:Z4.quad[e]/18};for(var n in Z4)Z4.hasOwnProperty(n)&&(r[n]=Z4[n][e])}return h7[e]}function hz(t){if(t instanceof Ts)return t;throw new Error("Expected symbolNode but got "+String(t)+".")}function Nbe(t){if(t instanceof td)return t;throw new Error("Expected span but got "+String(t)+".")}function G(t,e,r,n,i,a){An[t][i]={font:e,group:r,replace:n},a&&n&&(An[t][n]=An[t][i])}function Nt(t){for(var{type:e,names:r,props:n,handler:i,htmlBuilder:a,mathmlBuilder:s}=t,l={type:e,numArgs:n.numArgs,argTypes:n.argTypes,allowedInArgument:!!n.allowedInArgument,allowedInText:!!n.allowedInText,allowedInMath:n.allowedInMath===void 0?!0:n.allowedInMath,numOptionalArgs:n.numOptionalArgs||0,infix:!!n.infix,primitive:!!n.primitive,handler:i},u=0;u0&&(a.push(a3(s,e)),s=[]),a.push(n[l]));s.length>0&&a.push(a3(s,e));var h;r?(h=a3(Pi(r,e,!0)),h.classes=["tag"],a.push(h)):i&&a.push(i);var f=lu(["katex-html"],a);if(f.setAttribute("aria-hidden","true"),h){var d=h.children[0];d.style.height=kt(f.height+f.depth),f.depth&&(d.style.verticalAlign=kt(-f.depth))}return f}function Qz(t){return new ed(t)}function gz(t,e,r,n,i){var a=ks(t,r),s;a.length===1&&a[0]instanceof ws&&Jt.contains(["mrow","mtable"],a[0].type)?s=a[0]:s=new dt.MathNode("mrow",a);var l=new dt.MathNode("annotation",[new dt.TextNode(e)]);l.setAttribute("encoding","application/x-tex");var u=new dt.MathNode("semantics",[s,l]),h=new dt.MathNode("math",[u]);h.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),n&&h.setAttribute("display","block");var f=i?"katex":"katex-mathml";return Be.makeSpan([f],[h])}function xr(t,e){if(!t||t.type!==e)throw new Error("Expected node of type "+e+", but got "+(t?"node of type "+t.type:String(t)));return t}function z7(t){var e=w3(t);if(!e)throw new Error("Expected node of symbol group type, but got "+(t?"node of type "+t.type:String(t)));return e}function w3(t){return t&&(t.type==="atom"||Ibe.hasOwnProperty(t.type))?t:null}function tG(t,e){var r=Pi(t.body,e,!0);return u4e([t.mclass],r,e)}function rG(t,e){var r,n=ks(t.body,e);return t.mclass==="minner"?r=new dt.MathNode("mpadded",n):t.mclass==="mord"?t.isCharacterBox?(r=n[0],r.type="mi"):r=new dt.MathNode("mi",n):(t.isCharacterBox?(r=n[0],r.type="mo"):r=new dt.MathNode("mo",n),t.mclass==="mbin"?(r.attributes.lspace="0.22em",r.attributes.rspace="0.22em"):t.mclass==="mpunct"?(r.attributes.lspace="0em",r.attributes.rspace="0.17em"):t.mclass==="mopen"||t.mclass==="mclose"?(r.attributes.lspace="0em",r.attributes.rspace="0em"):t.mclass==="minner"&&(r.attributes.lspace="0.0556em",r.attributes.width="+0.1111em")),r}function d4e(t,e,r){var n=h4e[t];switch(n){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return r.callFunction(n,[e[0]],[e[1]]);case"\\uparrow":case"\\downarrow":{var i=r.callFunction("\\\\cdleft",[e[0]],[]),a={type:"atom",text:n,mode:"math",family:"rel"},s=r.callFunction("\\Big",[a],[]),l=r.callFunction("\\\\cdright",[e[1]],[]),u={type:"ordgroup",mode:"math",body:[i,s,l]};return r.callFunction("\\\\cdparent",[u],[])}case"\\\\cdlongequal":return r.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{var h={type:"textord",text:"\\Vert",mode:"math"};return r.callFunction("\\Big",[h],[])}default:return{type:"textord",text:" ",mode:"math"}}}function p4e(t){var e=[];for(t.gullet.beginGroup(),t.gullet.macros.set("\\cr","\\\\\\relax"),t.gullet.beginGroup();;){e.push(t.parseExpression(!1,"\\\\")),t.gullet.endGroup(),t.gullet.beginGroup();var r=t.fetch().text;if(r==="&"||r==="\\\\")t.consume();else if(r==="\\end"){e[e.length-1].length===0&&e.pop();break}else throw new gt("Expected \\\\ or \\cr or \\end",t.nextToken)}for(var n=[],i=[n],a=0;a-1))if("<>AV".indexOf(h)>-1)for(var d=0;d<2;d++){for(var p=!0,m=u+1;mAV=|." after @',s[u]);var g=d4e(h,f,t),y={type:"styling",body:[g],mode:"math",style:"display"};n.push(y),l=yz()}a%2===0?n.push(l):n.shift(),n=[],i.push(n)}t.gullet.endGroup(),t.gullet.endGroup();var v=new Array(i[0].length).fill({type:"align",align:"c",pregap:.25,postgap:.25});return{type:"array",mode:"math",body:i,arraystretch:1,addJot:!0,rowGaps:[null],cols:v,colSeparationType:"CD",hLinesBeforeRow:new Array(i.length+1).fill([])}}function k3(t,e){var r=w3(t);if(r&&Jt.contains(A4e,r.text))return r;throw r?new gt("Invalid delimiter '"+r.text+"' after '"+e.funcName+"'",t):new gt("Invalid delimiter type '"+t.type+"'",t)}function bz(t){if(!t.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}function Ql(t){for(var{type:e,names:r,props:n,handler:i,htmlBuilder:a,mathmlBuilder:s}=t,l={type:e,numArgs:n.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:i},u=0;u1||!f)&&y.pop(),x.length{"use strict";Xs=class t{static{o(this,"SourceLocation")}constructor(e,r,n){this.lexer=void 0,this.start=void 0,this.end=void 0,this.lexer=e,this.start=r,this.end=n}static range(e,r){return r?!e||!e.loc||!r.loc||e.loc.lexer!==r.loc.lexer?null:new t(e.loc.lexer,e.loc.start,r.loc.end):e&&e.loc}},So=class t{static{o(this,"Token")}constructor(e,r){this.text=void 0,this.loc=void 0,this.noexpand=void 0,this.treatAsRelax=void 0,this.text=e,this.loc=r}range(e,r){return new t(r,Xs.range(this,e))}},gt=class t{static{o(this,"ParseError")}constructor(e,r){this.name=void 0,this.position=void 0,this.length=void 0,this.rawMessage=void 0;var n="KaTeX parse error: "+e,i,a,s=r&&r.loc;if(s&&s.start<=s.end){var l=s.lexer.input;i=s.start,a=s.end,i===l.length?n+=" at end of input: ":n+=" at position "+(i+1)+": ";var u=l.slice(i,a).replace(/[^]/g,"$&\u0332"),h;i>15?h="\u2026"+l.slice(i-15,i):h=l.slice(0,i);var f;a+15":">","<":"<",'"':""","'":"'"},ibe=/[&><"']/g;o(abe,"escape");Fz=o(function t(e){return e.type==="ordgroup"||e.type==="color"?e.body.length===1?t(e.body[0]):e:e.type==="font"?t(e.body):e},"getBaseElem"),sbe=o(function(e){var r=Fz(e);return r.type==="mathord"||r.type==="textord"||r.type==="atom"},"isCharacterBox"),obe=o(function(e){if(!e)throw new Error("Expected non-null, but got "+String(e));return e},"assert"),lbe=o(function(e){var r=/^[\x00-\x20]*([^\\/#?]*?)(:|�*58|�*3a|&colon)/i.exec(e);return r?r[2]!==":"||!/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(r[1])?null:r[1].toLowerCase():"_relative"},"protocolFromUrl"),Jt={contains:Jxe,deflt:ebe,escape:abe,hyphenate:rbe,getBaseElem:Fz,isCharacterBox:sbe,protocolFromUrl:lbe},c3={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format "},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color ",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:o(t=>"#"+t,"cliProcessor")},macros:{type:"object",cli:"-m, --macro ",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:o((t,e)=>(e.push(t),e),"cliProcessor")},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:o(t=>Math.max(0,t),"processor"),cli:"--min-rule-thickness ",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:o(t=>Math.max(0,t),"processor"),cli:"-s, --max-size ",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:o(t=>Math.max(0,t),"processor"),cli:"-e, --max-expand ",cliProcessor:o(t=>t==="Infinity"?1/0:parseInt(t),"cliProcessor")},globalGroup:{type:"boolean",cli:!1}};o(cbe,"getDefaultValue");zy=class{static{o(this,"Settings")}constructor(e){this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,e=e||{};for(var r in c3)if(c3.hasOwnProperty(r)){var n=c3[r];this[r]=e[r]!==void 0?n.processor?n.processor(e[r]):e[r]:cbe(n)}}reportNonstrict(e,r,n){var i=this.strict;if(typeof i=="function"&&(i=i(e,r,n)),!(!i||i==="ignore")){if(i===!0||i==="error")throw new gt("LaTeX-incompatible input and strict mode is set to 'error': "+(r+" ["+e+"]"),n);i==="warn"?typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(r+" ["+e+"]")):typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+i+"': "+r+" ["+e+"]"))}}useStrictBehavior(e,r,n){var i=this.strict;if(typeof i=="function")try{i=i(e,r,n)}catch{i="error"}return!i||i==="ignore"?!1:i===!0||i==="error"?!0:i==="warn"?(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(r+" ["+e+"]")),!1):(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+i+"': "+r+" ["+e+"]")),!1)}isTrusted(e){if(e.url&&!e.protocol){var r=Jt.protocolFromUrl(e.url);if(r==null)return!1;e.protocol=r}var n=typeof this.trust=="function"?this.trust(e):this.trust;return!!n}},Yl=class{static{o(this,"Style")}constructor(e,r,n){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=e,this.size=r,this.cramped=n}sup(){return Xl[ube[this.id]]}sub(){return Xl[hbe[this.id]]}fracNum(){return Xl[fbe[this.id]]}fracDen(){return Xl[dbe[this.id]]}cramp(){return Xl[pbe[this.id]]}text(){return Xl[mbe[this.id]]}isTight(){return this.size>=2}},O7=0,h3=1,f0=2,su=3,Gy=4,Eo=5,d0=6,Qa=7,Xl=[new Yl(O7,0,!1),new Yl(h3,0,!0),new Yl(f0,1,!1),new Yl(su,1,!0),new Yl(Gy,2,!1),new Yl(Eo,2,!0),new Yl(d0,3,!1),new Yl(Qa,3,!0)],ube=[Gy,Eo,Gy,Eo,d0,Qa,d0,Qa],hbe=[Eo,Eo,Eo,Eo,Qa,Qa,Qa,Qa],fbe=[f0,su,Gy,Eo,d0,Qa,d0,Qa],dbe=[su,su,Eo,Eo,Qa,Qa,Qa,Qa],pbe=[h3,h3,su,su,Eo,Eo,Qa,Qa],mbe=[O7,h3,f0,su,f0,su,f0,su],tr={DISPLAY:Xl[O7],TEXT:Xl[f0],SCRIPT:Xl[Gy],SCRIPTSCRIPT:Xl[d0]},k7=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];o(gbe,"scriptFromCodepoint");u3=[];k7.forEach(t=>t.blocks.forEach(e=>u3.push(...e)));o($z,"supportedCodepoint");h0=80,ybe=o(function(e,r){return"M95,"+(622+e+r)+` +c-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14 +c0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54 +c44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10 +s173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429 +c69,-144,104.5,-217.7,106.5,-221 +l`+e/2.075+" -"+e+` +c5.3,-9.3,12,-14,20,-14 +H400000v`+(40+e)+`H845.2724 +s-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7 +c-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z +M`+(834+e)+" "+r+"h400000v"+(40+e)+"h-400000z"},"sqrtMain"),vbe=o(function(e,r){return"M263,"+(601+e+r)+`c0.7,0,18,39.7,52,119 +c34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120 +c340,-704.7,510.7,-1060.3,512,-1067 +l`+e/2.084+" -"+e+` +c4.7,-7.3,11,-11,19,-11 +H40000v`+(40+e)+`H1012.3 +s-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232 +c-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1 +s-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26 +c-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z +M`+(1001+e)+" "+r+"h400000v"+(40+e)+"h-400000z"},"sqrtSize1"),xbe=o(function(e,r){return"M983 "+(10+e+r)+` +l`+e/3.13+" -"+e+` +c4,-6.7,10,-10,18,-10 H400000v`+(40+e)+` +H1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7 +s-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744 +c-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30 +c26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722 +c56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5 +c53.7,-170.3,84.5,-266.8,92.5,-289.5z +M`+(1001+e)+" "+r+"h400000v"+(40+e)+"h-400000z"},"sqrtSize2"),bbe=o(function(e,r){return"M424,"+(2398+e+r)+` +c-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514 +c0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20 +s-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121 +s209,968,209,968c0,-2,84.7,-361.7,254,-1079c169.3,-717.3,254.7,-1077.7,256,-1081 +l`+e/4.223+" -"+e+`c4,-6.7,10,-10,18,-10 H400000 +v`+(40+e)+`H1014.6 +s-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185 +c-2,6,-10,9,-24,9 +c-8,0,-12,-0.7,-12,-2z M`+(1001+e)+" "+r+` +h400000v`+(40+e)+"h-400000z"},"sqrtSize3"),wbe=o(function(e,r){return"M473,"+(2713+e+r)+` +c339.3,-1799.3,509.3,-2700,510,-2702 l`+e/5.298+" -"+e+` +c3.3,-7.3,9.3,-11,18,-11 H400000v`+(40+e)+`H1017.7 +s-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9 +c-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200 +c0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26 +s76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104, +606zM`+(1001+e)+" "+r+"h400000v"+(40+e)+"H1017.7z"},"sqrtSize4"),Tbe=o(function(e){var r=e/2;return"M400000 "+e+" H0 L"+r+" 0 l65 45 L145 "+(e-80)+" H400000z"},"phasePath"),kbe=o(function(e,r,n){var i=n-54-r-e;return"M702 "+(e+r)+"H400000"+(40+e)+` +H742v`+i+`l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1 +h-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170 +c-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667 +219 661 l218 661zM702 `+r+"H400000v"+(40+e)+"H742z"},"sqrtTall"),Ebe=o(function(e,r,n){r=1e3*r;var i="";switch(e){case"sqrtMain":i=ybe(r,h0);break;case"sqrtSize1":i=vbe(r,h0);break;case"sqrtSize2":i=xbe(r,h0);break;case"sqrtSize3":i=bbe(r,h0);break;case"sqrtSize4":i=wbe(r,h0);break;case"sqrtTall":i=kbe(r,h0,n)}return i},"sqrtPath"),Sbe=o(function(e,r){switch(e){case"\u239C":return"M291 0 H417 V"+r+" H291z M291 0 H417 V"+r+" H291z";case"\u2223":return"M145 0 H188 V"+r+" H145z M145 0 H188 V"+r+" H145z";case"\u2225":return"M145 0 H188 V"+r+" H145z M145 0 H188 V"+r+" H145z"+("M367 0 H410 V"+r+" H367z M367 0 H410 V"+r+" H367z");case"\u239F":return"M457 0 H583 V"+r+" H457z M457 0 H583 V"+r+" H457z";case"\u23A2":return"M319 0 H403 V"+r+" H319z M319 0 H403 V"+r+" H319z";case"\u23A5":return"M263 0 H347 V"+r+" H263z M263 0 H347 V"+r+" H263z";case"\u23AA":return"M384 0 H504 V"+r+" H384z M384 0 H504 V"+r+" H384z";case"\u23D0":return"M312 0 H355 V"+r+" H312z M312 0 H355 V"+r+" H312z";case"\u2016":return"M257 0 H300 V"+r+" H257z M257 0 H300 V"+r+" H257z"+("M478 0 H521 V"+r+" H478z M478 0 H521 V"+r+" H478z");default:return""}},"innerPath"),oz={doubleleftarrow:`M262 157 +l10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3 + 0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28 + 14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5 +c2 1.7 6.3 3.5 13 5.5 68 17.3 128.2 47.8 180.5 91.5 52.3 43.7 93.8 96.2 124.5 + 157.5 9.3 8 15.3 12.3 18 13h6c12-.7 18-4 18-10 0-2-1.7-7-5-15-23.3-46-52-87 +-86-123l-10-10h399738v-40H218c328 0 0 0 0 0l-10-8c-26.7-20-65.7-43-117-69 2.7 +-2 6-3.7 10-5 36.7-16 72.3-37.3 107-64l10-8h399782v-40z +m8 0v40h399730v-40zm0 194v40h399730v-40z`,doublerightarrow:`M399738 392l +-10 10c-34 36-62.7 77-86 123-3.3 8-5 13.3-5 16 0 5.3 6.7 8 20 8 7.3 0 12.2-.5 + 14.5-1.5 2.3-1 4.8-4.5 7.5-10.5 49.3-97.3 121.7-169.3 217-216 28-14 57.3-25 88 +-33 6.7-2 11-3.8 13-5.5 2-1.7 3-4.2 3-7.5s-1-5.8-3-7.5c-2-1.7-6.3-3.5-13-5.5-68 +-17.3-128.2-47.8-180.5-91.5-52.3-43.7-93.8-96.2-124.5-157.5-9.3-8-15.3-12.3-18 +-13h-6c-12 .7-18 4-18 10 0 2 1.7 7 5 15 23.3 46 52 87 86 123l10 10H0v40h399782 +c-328 0 0 0 0 0l10 8c26.7 20 65.7 43 117 69-2.7 2-6 3.7-10 5-36.7 16-72.3 37.3 +-107 64l-10 8H0v40zM0 157v40h399730v-40zm0 194v40h399730v-40z`,leftarrow:`M400000 241H110l3-3c68.7-52.7 113.7-120 + 135-202 4-14.7 6-23 6-25 0-7.3-7-11-21-11-8 0-13.2.8-15.5 2.5-2.3 1.7-4.2 5.8 +-5.5 12.5-1.3 4.7-2.7 10.3-4 17-12 48.7-34.8 92-68.5 130S65.3 228.3 18 247 +c-10 4-16 7.7-18 11 0 8.7 6 14.3 18 17 47.3 18.7 87.8 47 121.5 85S196 441.3 208 + 490c.7 2 1.3 5 2 9s1.2 6.7 1.5 8c.3 1.3 1 3.3 2 6s2.2 4.5 3.5 5.5c1.3 1 3.3 + 1.8 6 2.5s6 1 10 1c14 0 21-3.7 21-11 0-2-2-10.3-6-25-20-79.3-65-146.7-135-202 + l-3-3h399890zM100 241v40h399900v-40z`,leftbrace:`M6 548l-6-6v-35l6-11c56-104 135.3-181.3 238-232 57.3-28.7 117 +-45 179-50h399577v120H403c-43.3 7-81 15-113 26-100.7 33-179.7 91-237 174-2.7 + 5-6 9-10 13-.7 1-7.3 1-20 1H6z`,leftbraceunder:`M0 6l6-6h17c12.688 0 19.313.3 20 1 4 4 7.313 8.3 10 13 + 35.313 51.3 80.813 93.8 136.5 127.5 55.688 33.7 117.188 55.8 184.5 66.5.688 + 0 2 .3 4 1 18.688 2.7 76 4.3 172 5h399450v120H429l-6-1c-124.688-8-235-61.7 +-331-161C60.687 138.7 32.312 99.3 7 54L0 41V6z`,leftgroup:`M400000 80 +H435C64 80 168.3 229.4 21 260c-5.9 1.2-18 0-18 0-2 0-3-1-3-3v-38C76 61 257 0 + 435 0h399565z`,leftgroupunder:`M400000 262 +H435C64 262 168.3 112.6 21 82c-5.9-1.2-18 0-18 0-2 0-3 1-3 3v38c76 158 257 219 + 435 219h399565z`,leftharpoon:`M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3 +-3.3 10.2-9.5 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5 +-18.3 3-21-1.3-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7 +-196 228-6.7 4.7-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40z`,leftharpoonplus:`M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3-3.3 10.2-9.5 + 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5-18.3 3-21-1.3 +-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7-196 228-6.7 4.7 +-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40zM0 435v40h400000v-40z +m0 0v40h400000v-40z`,leftharpoondown:`M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9 2 11s5.333 + 5.333 12 10c90.667 54 156 130 196 228 3.333 10.667 6.333 16.333 9 17 2 .667 5 + 1 9 1h5c10.667 0 16.667-2 18-6 2-2.667 1-9.667-3-21-32-87.333-82.667-157.667 +-152-211l-3-3h399907v-40zM93 281 H400000 v-40L7 241z`,leftharpoondownplus:`M7 435c-4 4-6.3 8.7-7 14 0 5.3.7 9 2 11s5.3 5.3 12 + 10c90.7 54 156 130 196 228 3.3 10.7 6.3 16.3 9 17 2 .7 5 1 9 1h5c10.7 0 16.7 +-2 18-6 2-2.7 1-9.7-3-21-32-87.3-82.7-157.7-152-211l-3-3h399907v-40H7zm93 0 +v40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z`,lefthook:`M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5 +-83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3 +-68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21 + 71.5 23h399859zM103 281v-40h399897v40z`,leftlinesegment:`M40 281 V428 H0 V94 H40 V241 H400000 v40z +M40 281 V428 H0 V94 H40 V241 H400000 v40z`,leftmapsto:`M40 281 V448H0V74H40V241H400000v40z +M40 281 V448H0V74H40V241H400000v40z`,leftToFrom:`M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23 +-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8 +c28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3 + 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z`,longequal:`M0 50 h400000 v40H0z m0 194h40000v40H0z +M0 50 h400000 v40H0z m0 194h40000v40H0z`,midbrace:`M200428 334 +c-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14 +-53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7 + 311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11 + 12 44.7 59.3 101.3 106.3 170 141s145.3 54.3 229 60h199572v120z`,midbraceunder:`M199572 214 +c100.7 8.3 195.3 44 280 108 55.3 42 101.7 93 139 153l9 14c2.7-4 5.7-8.7 9-14 + 53.3-86.7 123.7-153 211-199 66.7-36 137.3-56.3 212-62h199568v120H200432c-178.3 + 11.7-311.7 78.3-403 201-6 8-9.7 12-11 12-.7.7-6.7 1-18 1s-17.3-.3-18-1c-1.3 0 +-5-4-11-12-44.7-59.3-101.3-106.3-170-141s-145.3-54.3-229-60H0V214z`,oiintSize1:`M512.6 71.6c272.6 0 320.3 106.8 320.3 178.2 0 70.8-47.7 177.6 +-320.3 177.6S193.1 320.6 193.1 249.8c0-71.4 46.9-178.2 319.5-178.2z +m368.1 178.2c0-86.4-60.9-215.4-368.1-215.4-306.4 0-367.3 129-367.3 215.4 0 85.8 +60.9 214.8 367.3 214.8 307.2 0 368.1-129 368.1-214.8z`,oiintSize2:`M757.8 100.1c384.7 0 451.1 137.6 451.1 230 0 91.3-66.4 228.8 +-451.1 228.8-386.3 0-452.7-137.5-452.7-228.8 0-92.4 66.4-230 452.7-230z +m502.4 230c0-111.2-82.4-277.2-502.4-277.2s-504 166-504 277.2 +c0 110 84 276 504 276s502.4-166 502.4-276z`,oiiintSize1:`M681.4 71.6c408.9 0 480.5 106.8 480.5 178.2 0 70.8-71.6 177.6 +-480.5 177.6S202.1 320.6 202.1 249.8c0-71.4 70.5-178.2 479.3-178.2z +m525.8 178.2c0-86.4-86.8-215.4-525.7-215.4-437.9 0-524.7 129-524.7 215.4 0 +85.8 86.8 214.8 524.7 214.8 438.9 0 525.7-129 525.7-214.8z`,oiiintSize2:`M1021.2 53c603.6 0 707.8 165.8 707.8 277.2 0 110-104.2 275.8 +-707.8 275.8-606 0-710.2-165.8-710.2-275.8C311 218.8 415.2 53 1021.2 53z +m770.4 277.1c0-131.2-126.4-327.6-770.5-327.6S248.4 198.9 248.4 330.1 +c0 130 128.8 326.4 772.7 326.4s770.5-196.4 770.5-326.4z`,rightarrow:`M0 241v40h399891c-47.3 35.3-84 78-110 128 +-16.7 32-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 + 11 8 0 13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 + 39-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85 +-40.5-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5 +-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67 + 151.7 139 205zm0 0v40h399900v-40z`,rightbrace:`M400000 542l +-6 6h-17c-12.7 0-19.3-.3-20-1-4-4-7.3-8.3-10-13-35.3-51.3-80.8-93.8-136.5-127.5 +s-117.2-55.8-184.5-66.5c-.7 0-2-.3-4-1-18.7-2.7-76-4.3-172-5H0V214h399571l6 1 +c124.7 8 235 61.7 331 161 31.3 33.3 59.7 72.7 85 118l7 13v35z`,rightbraceunder:`M399994 0l6 6v35l-6 11c-56 104-135.3 181.3-238 232-57.3 + 28.7-117 45-179 50H-300V214h399897c43.3-7 81-15 113-26 100.7-33 179.7-91 237 +-174 2.7-5 6-9 10-13 .7-1 7.3-1 20-1h17z`,rightgroup:`M0 80h399565c371 0 266.7 149.4 414 180 5.9 1.2 18 0 18 0 2 0 + 3-1 3-3v-38c-76-158-257-219-435-219H0z`,rightgroupunder:`M0 262h399565c371 0 266.7-149.4 414-180 5.9-1.2 18 0 18 + 0 2 0 3 1 3 3v38c-76 158-257 219-435 219H0z`,rightharpoon:`M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3 +-3.7-15.3-11-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2 +-10.7 0-16.7 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 + 69.2 92 94.5zm0 0v40h399900v-40z`,rightharpoonplus:`M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3-3.7-15.3-11 +-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2-10.7 0-16.7 + 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 69.2 92 94.5z +m0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z`,rightharpoondown:`M399747 511c0 7.3 6.7 11 20 11 8 0 13-.8 15-2.5s4.7-6.8 + 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 8.5-5.8 9.5 +-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3-64.7 57-92 95 +-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 241v40h399900v-40z`,rightharpoondownplus:`M399747 705c0 7.3 6.7 11 20 11 8 0 13-.8 + 15-2.5s4.7-6.8 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 + 8.5-5.8 9.5-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3 +-64.7 57-92 95-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 435v40h399900v-40z +m0-194v40h400000v-40zm0 0v40h400000v-40z`,righthook:`M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3 + 15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0 +-13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21 + 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z`,rightlinesegment:`M399960 241 V94 h40 V428 h-40 V281 H0 v-40z +M399960 241 V94 h40 V428 h-40 V281 H0 v-40z`,rightToFrom:`M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23 + 1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32 +-52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142 +-167z M100 147v40h399900v-40zM0 341v40h399900v-40z`,twoheadleftarrow:`M0 167c68 40 + 115.7 95.7 143 167h22c15.3 0 23-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69 +-70-101l-7-8h125l9 7c50.7 39.3 85 86 103 140h46c0-4.7-6.3-18.7-19-42-18-35.3 +-40-67.3-66-96l-9-9h399716v-40H284l9-9c26-28.7 48-60.7 66-96 12.7-23.333 19 +-37.333 19-42h-46c-18 54-52.3 100.7-103 140l-9 7H95l7-8c28.7-32 52-65.7 70-101 + 10.7-23.333 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 71.3 68 127 0 167z`,twoheadrightarrow:`M400000 167 +c-68-40-115.7-95.7-143-167h-22c-15.3 0-23 .3-23 1 0 1.3 5.3 13.7 16 37 18 35.3 + 41.3 69 70 101l7 8h-125l-9-7c-50.7-39.3-85-86-103-140h-46c0 4.7 6.3 18.7 19 42 + 18 35.3 40 67.3 66 96l9 9H0v40h399716l-9 9c-26 28.7-48 60.7-66 96-12.7 23.333 +-19 37.333-19 42h46c18-54 52.3-100.7 103-140l9-7h125l-7 8c-28.7 32-52 65.7-70 + 101-10.7 23.333-16 35.7-16 37 0 .7 7.7 1 23 1h22c27.3-71.3 75-127 143-167z`,tilde1:`M200 55.538c-77 0-168 73.953-177 73.953-3 0-7 +-2.175-9-5.437L2 97c-1-2-2-4-2-6 0-4 2-7 5-9l20-12C116 12 171 0 207 0c86 0 + 114 68 191 68 78 0 168-68 177-68 4 0 7 2 9 5l12 19c1 2.175 2 4.35 2 6.525 0 + 4.35-2 7.613-5 9.788l-19 13.05c-92 63.077-116.937 75.308-183 76.128 +-68.267.847-113-73.952-191-73.952z`,tilde2:`M344 55.266c-142 0-300.638 81.316-311.5 86.418 +-8.01 3.762-22.5 10.91-23.5 5.562L1 120c-1-2-1-3-1-4 0-5 3-9 8-10l18.4-9C160.9 + 31.9 283 0 358 0c148 0 188 122 331 122s314-97 326-97c4 0 8 2 10 7l7 21.114 +c1 2.14 1 3.21 1 4.28 0 5.347-3 9.626-7 10.696l-22.3 12.622C852.6 158.372 751 + 181.476 676 181.476c-149 0-189-126.21-332-126.21z`,tilde3:`M786 59C457 59 32 175.242 13 175.242c-6 0-10-3.457 +-11-10.37L.15 138c-1-7 3-12 10-13l19.2-6.4C378.4 40.7 634.3 0 804.3 0c337 0 + 411.8 157 746.8 157 328 0 754-112 773-112 5 0 10 3 11 9l1 14.075c1 8.066-.697 + 16.595-6.697 17.492l-21.052 7.31c-367.9 98.146-609.15 122.696-778.15 122.696 + -338 0-409-156.573-744-156.573z`,tilde4:`M786 58C457 58 32 177.487 13 177.487c-6 0-10-3.345 +-11-10.035L.15 143c-1-7 3-12 10-13l22-6.7C381.2 35 637.15 0 807.15 0c337 0 409 + 177 744 177 328 0 754-127 773-127 5 0 10 3 11 9l1 14.794c1 7.805-3 13.38-9 + 14.495l-20.7 5.574c-366.85 99.79-607.3 139.372-776.3 139.372-338 0-409 + -175.236-744-175.236z`,vec:`M377 20c0-5.333 1.833-10 5.5-14S391 0 397 0c4.667 0 8.667 1.667 12 5 +3.333 2.667 6.667 9 10 19 6.667 24.667 20.333 43.667 41 57 7.333 4.667 11 +10.667 11 18 0 6-1 10-3 12s-6.667 5-14 9c-28.667 14.667-53.667 35.667-75 63 +-1.333 1.333-3.167 3.5-5.5 6.5s-4 4.833-5 5.5c-1 .667-2.5 1.333-4.5 2s-4.333 1 +-7 1c-4.667 0-9.167-1.833-13.5-5.5S337 184 337 178c0-12.667 15.667-32.333 47-59 +H213l-171-1c-8.667-6-13-12.333-13-19 0-4.667 4.333-11.333 13-20h359 +c-16-25.333-24-45-24-59z`,widehat1:`M529 0h5l519 115c5 1 9 5 9 10 0 1-1 2-1 3l-4 22 +c-1 5-5 9-11 9h-2L532 67 19 159h-2c-5 0-9-4-11-9l-5-22c-1-6 2-12 8-13z`,widehat2:`M1181 0h2l1171 176c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 220h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widehat3:`M1181 0h2l1171 236c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 280h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widehat4:`M1181 0h2l1171 296c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 340h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widecheck1:`M529,159h5l519,-115c5,-1,9,-5,9,-10c0,-1,-1,-2,-1,-3l-4,-22c-1, +-5,-5,-9,-11,-9h-2l-512,92l-513,-92h-2c-5,0,-9,4,-11,9l-5,22c-1,6,2,12,8,13z`,widecheck2:`M1181,220h2l1171,-176c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,153l-1167,-153h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,widecheck3:`M1181,280h2l1171,-236c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,213l-1167,-213h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,widecheck4:`M1181,340h2l1171,-296c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,273l-1167,-273h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,baraboveleftarrow:`M400000 620h-399890l3 -3c68.7 -52.7 113.7 -120 135 -202 +c4 -14.7 6 -23 6 -25c0 -7.3 -7 -11 -21 -11c-8 0 -13.2 0.8 -15.5 2.5 +c-2.3 1.7 -4.2 5.8 -5.5 12.5c-1.3 4.7 -2.7 10.3 -4 17c-12 48.7 -34.8 92 -68.5 130 +s-74.2 66.3 -121.5 85c-10 4 -16 7.7 -18 11c0 8.7 6 14.3 18 17c47.3 18.7 87.8 47 +121.5 85s56.5 81.3 68.5 130c0.7 2 1.3 5 2 9s1.2 6.7 1.5 8c0.3 1.3 1 3.3 2 6 +s2.2 4.5 3.5 5.5c1.3 1 3.3 1.8 6 2.5s6 1 10 1c14 0 21 -3.7 21 -11 +c0 -2 -2 -10.3 -6 -25c-20 -79.3 -65 -146.7 -135 -202l-3 -3h399890z +M100 620v40h399900v-40z M0 241v40h399900v-40zM0 241v40h399900v-40z`,rightarrowabovebar:`M0 241v40h399891c-47.3 35.3-84 78-110 128-16.7 32 +-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 11 8 0 +13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 39 +-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85-40.5 +-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5 +-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67 +151.7 139 205zm96 379h399894v40H0zm0 0h399904v40H0z`,baraboveshortleftharpoon:`M507,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11 +c1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17 +c2,0.7,5,1,9,1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21 +c-32,-87.3,-82.7,-157.7,-152,-211c0,0,-3,-3,-3,-3l399351,0l0,-40 +c-398570,0,-399437,0,-399437,0z M593 435 v40 H399500 v-40z +M0 281 v-40 H399908 v40z M0 281 v-40 H399908 v40z`,rightharpoonaboveshortbar:`M0,241 l0,40c399126,0,399993,0,399993,0 +c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199, +-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6 +c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z +M0 241 v40 H399908 v-40z M0 475 v-40 H399500 v40z M0 475 v-40 H399500 v40z`,shortbaraboveleftharpoon:`M7,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11 +c1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17c2,0.7,5,1,9, +1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21c-32,-87.3,-82.7,-157.7, +-152,-211c0,0,-3,-3,-3,-3l399907,0l0,-40c-399126,0,-399993,0,-399993,0z +M93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z`,shortrightharpoonabovebar:`M53,241l0,40c398570,0,399437,0,399437,0 +c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199, +-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6 +c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z +M500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z`},Cbe=o(function(e,r){switch(e){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+r+` v1759 h347 v-84 +H403z M403 1759 V0 H319 V1759 v`+r+" v1759 h84z";case"rbrack":return"M347 1759 V0 H0 V84 H263 V1759 v"+r+` v1759 H0 v84 H347z +M347 1759 V0 H263 V1759 v`+r+" v1759 h84z";case"vert":return"M145 15 v585 v"+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M188 15 H145 v585 v`+r+" v585 h43z";case"doublevert":return"M145 15 v585 v"+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M188 15 H145 v585 v`+r+` v585 h43z +M367 15 v585 v`+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M410 15 H367 v585 v`+r+" v585 h43z";case"lfloor":return"M319 602 V0 H403 V602 v"+r+` v1715 h263 v84 H319z +MM319 602 V0 H403 V602 v`+r+" v1715 H319z";case"rfloor":return"M319 602 V0 H403 V602 v"+r+` v1799 H0 v-84 H319z +MM319 602 V0 H403 V602 v`+r+" v1715 H319z";case"lceil":return"M403 1759 V84 H666 V0 H319 V1759 v"+r+` v602 h84z +M403 1759 V0 H319 V1759 v`+r+" v602 h84z";case"rceil":return"M347 1759 V0 H0 V84 H263 V1759 v"+r+` v602 h84z +M347 1759 V0 h-84 V1759 v`+r+" v602 h84z";case"lparen":return`M863,9c0,-2,-2,-5,-6,-9c0,0,-17,0,-17,0c-12.7,0,-19.3,0.3,-20,1 +c-5.3,5.3,-10.3,11,-15,17c-242.7,294.7,-395.3,682,-458,1162c-21.3,163.3,-33.3,349, +-36,557 l0,`+(r+84)+`c0.2,6,0,26,0,60c2,159.3,10,310.7,24,454c53.3,528,210, +949.7,470,1265c4.7,6,9.7,11.7,15,17c0.7,0.7,7,1,19,1c0,0,18,0,18,0c4,-4,6,-7,6,-9 +c0,-2.7,-3.3,-8.7,-10,-18c-135.3,-192.7,-235.5,-414.3,-300.5,-665c-65,-250.7,-102.5, +-544.7,-112.5,-882c-2,-104,-3,-167,-3,-189 +l0,-`+(r+92)+`c0,-162.7,5.7,-314,17,-454c20.7,-272,63.7,-513,129,-723c65.3, +-210,155.3,-396.3,270,-559c6.7,-9.3,10,-15.3,10,-18z`;case"rparen":return`M76,0c-16.7,0,-25,3,-25,9c0,2,2,6.3,6,13c21.3,28.7,42.3,60.3, +63,95c96.7,156.7,172.8,332.5,228.5,527.5c55.7,195,92.8,416.5,111.5,664.5 +c11.3,139.3,17,290.7,17,454c0,28,1.7,43,3.3,45l0,`+(r+9)+` +c-3,4,-3.3,16.7,-3.3,38c0,162,-5.7,313.7,-17,455c-18.7,248,-55.8,469.3,-111.5,664 +c-55.7,194.7,-131.8,370.3,-228.5,527c-20.7,34.7,-41.7,66.3,-63,95c-2,3.3,-4,7,-6,11 +c0,7.3,5.7,11,17,11c0,0,11,0,11,0c9.3,0,14.3,-0.3,15,-1c5.3,-5.3,10.3,-11,15,-17 +c242.7,-294.7,395.3,-681.7,458,-1161c21.3,-164.7,33.3,-350.7,36,-558 +l0,-`+(r+144)+`c-2,-159.3,-10,-310.7,-24,-454c-53.3,-528,-210,-949.7, +-470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z`;default:throw new Error("Unknown stretchy delimiter.")}},"tallDelim"),ed=class{static{o(this,"DocumentFragment")}constructor(e){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=e,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(e){return Jt.contains(this.classes,e)}toNode(){for(var e=document.createDocumentFragment(),r=0;rr.toText(),"toText");return this.children.map(e).join("")}},jl={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}},Z4={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},lz={\u00C5:"A",\u00D0:"D",\u00DE:"o",\u00E5:"a",\u00F0:"d",\u00FE:"o",\u0410:"A",\u0411:"B",\u0412:"B",\u0413:"F",\u0414:"A",\u0415:"E",\u0416:"K",\u0417:"3",\u0418:"N",\u0419:"N",\u041A:"K",\u041B:"N",\u041C:"M",\u041D:"H",\u041E:"O",\u041F:"N",\u0420:"P",\u0421:"C",\u0422:"T",\u0423:"y",\u0424:"O",\u0425:"X",\u0426:"U",\u0427:"h",\u0428:"W",\u0429:"W",\u042A:"B",\u042B:"X",\u042C:"B",\u042D:"3",\u042E:"X",\u042F:"R",\u0430:"a",\u0431:"b",\u0432:"a",\u0433:"r",\u0434:"y",\u0435:"e",\u0436:"m",\u0437:"e",\u0438:"n",\u0439:"n",\u043A:"n",\u043B:"n",\u043C:"m",\u043D:"n",\u043E:"o",\u043F:"n",\u0440:"p",\u0441:"c",\u0442:"o",\u0443:"y",\u0444:"b",\u0445:"x",\u0446:"n",\u0447:"n",\u0448:"w",\u0449:"w",\u044A:"a",\u044B:"m",\u044C:"a",\u044D:"e",\u044E:"m",\u044F:"r"};o(Abe,"setFontMetrics");o(P7,"getCharacterMetrics");h7={};o(_be,"getGlobalMetrics");Dbe=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],cz=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],uz=o(function(e,r){return r.size<2?e:Dbe[e-1][r.size-1]},"sizeAtStyle"),f3=class t{static{o(this,"Options")}constructor(e){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=e.style,this.color=e.color,this.size=e.size||t.BASESIZE,this.textSize=e.textSize||this.size,this.phantom=!!e.phantom,this.font=e.font||"",this.fontFamily=e.fontFamily||"",this.fontWeight=e.fontWeight||"",this.fontShape=e.fontShape||"",this.sizeMultiplier=cz[this.size-1],this.maxSize=e.maxSize,this.minRuleThickness=e.minRuleThickness,this._fontMetrics=void 0}extend(e){var r={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};for(var n in e)e.hasOwnProperty(n)&&(r[n]=e[n]);return new t(r)}havingStyle(e){return this.style===e?this:this.extend({style:e,size:uz(this.textSize,e)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(e){return this.size===e&&this.textSize===e?this:this.extend({style:this.style.text(),size:e,textSize:e,sizeMultiplier:cz[e-1]})}havingBaseStyle(e){e=e||this.style.text();var r=uz(t.BASESIZE,e);return this.size===r&&this.textSize===t.BASESIZE&&this.style===e?this:this.extend({style:e,size:r})}havingBaseSizing(){var e;switch(this.style.id){case 4:case 5:e=3;break;case 6:case 7:e=1;break;default:e=6}return this.extend({style:this.style.text(),size:e})}withColor(e){return this.extend({color:e})}withPhantom(){return this.extend({phantom:!0})}withFont(e){return this.extend({font:e})}withTextFontFamily(e){return this.extend({fontFamily:e,font:""})}withTextFontWeight(e){return this.extend({fontWeight:e,font:""})}withTextFontShape(e){return this.extend({fontShape:e,font:""})}sizingClasses(e){return e.size!==this.size?["sizing","reset-size"+e.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==t.BASESIZE?["sizing","reset-size"+this.size,"size"+t.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=_be(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}};f3.BASESIZE=6;E7={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:803/800,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:803/800},Lbe={ex:!0,em:!0,mu:!0},zz=o(function(e){return typeof e!="string"&&(e=e.unit),e in E7||e in Lbe||e==="ex"},"validUnit"),ti=o(function(e,r){var n;if(e.unit in E7)n=E7[e.unit]/r.fontMetrics().ptPerEm/r.sizeMultiplier;else if(e.unit==="mu")n=r.fontMetrics().cssEmPerMu;else{var i;if(r.style.isTight()?i=r.havingStyle(r.style.text()):i=r,e.unit==="ex")n=i.fontMetrics().xHeight;else if(e.unit==="em")n=i.fontMetrics().quad;else throw new gt("Invalid unit: '"+e.unit+"'");i!==r&&(n*=i.sizeMultiplier/r.sizeMultiplier)}return Math.min(e.number*n,r.maxSize)},"calculateSize"),kt=o(function(e){return+e.toFixed(4)+"em"},"makeEm"),fh=o(function(e){return e.filter(r=>r).join(" ")},"createClass"),Gz=o(function(e,r,n){if(this.classes=e||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=n||{},r){r.style.isTight()&&this.classes.push("mtight");var i=r.getColor();i&&(this.style.color=i)}},"initNode"),Vz=o(function(e){var r=document.createElement(e);r.className=fh(this.classes);for(var n in this.style)this.style.hasOwnProperty(n)&&(r.style[n]=this.style[n]);for(var i in this.attributes)this.attributes.hasOwnProperty(i)&&r.setAttribute(i,this.attributes[i]);for(var a=0;a",r},"toMarkup"),td=class{static{o(this,"Span")}constructor(e,r,n,i){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,Gz.call(this,e,n,i),this.children=r||[]}setAttribute(e,r){this.attributes[e]=r}hasClass(e){return Jt.contains(this.classes,e)}toNode(){return Vz.call(this,"span")}toMarkup(){return Uz.call(this,"span")}},Vy=class{static{o(this,"Anchor")}constructor(e,r,n,i){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,Gz.call(this,r,i),this.children=n||[],this.setAttribute("href",e)}setAttribute(e,r){this.attributes[e]=r}hasClass(e){return Jt.contains(this.classes,e)}toNode(){return Vz.call(this,"a")}toMarkup(){return Uz.call(this,"a")}},S7=class{static{o(this,"Img")}constructor(e,r,n){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=r,this.src=e,this.classes=["mord"],this.style=n}hasClass(e){return Jt.contains(this.classes,e)}toNode(){var e=document.createElement("img");e.src=this.src,e.alt=this.alt,e.className="mord";for(var r in this.style)this.style.hasOwnProperty(r)&&(e.style[r]=this.style[r]);return e}toMarkup(){var e=''+Jt.escape(this.alt)+'0&&(r=document.createElement("span"),r.style.marginRight=kt(this.italic)),this.classes.length>0&&(r=r||document.createElement("span"),r.className=fh(this.classes));for(var n in this.style)this.style.hasOwnProperty(n)&&(r=r||document.createElement("span"),r.style[n]=this.style[n]);return r?(r.appendChild(e),r):e}toMarkup(){var e=!1,r="0&&(n+="margin-right:"+this.italic+"em;");for(var i in this.style)this.style.hasOwnProperty(i)&&(n+=Jt.hyphenate(i)+":"+this.style[i]+";");n&&(e=!0,r+=' style="'+Jt.escape(n)+'"');var a=Jt.escape(this.text);return e?(r+=">",r+=a,r+="",r):a}},ll=class{static{o(this,"SvgNode")}constructor(e,r){this.children=void 0,this.attributes=void 0,this.children=e||[],this.attributes=r||{}}toNode(){var e="http://www.w3.org/2000/svg",r=document.createElementNS(e,"svg");for(var n in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,n)&&r.setAttribute(n,this.attributes[n]);for(var i=0;i':''}},Uy=class{static{o(this,"LineNode")}constructor(e){this.attributes=void 0,this.attributes=e||{}}toNode(){var e="http://www.w3.org/2000/svg",r=document.createElementNS(e,"line");for(var n in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,n)&&r.setAttribute(n,this.attributes[n]);return r}toMarkup(){var e="","\\gt",!0);G(U,ee,Ee,"\u2208","\\in",!0);G(U,ee,Ee,"\uE020","\\@not");G(U,ee,Ee,"\u2282","\\subset",!0);G(U,ee,Ee,"\u2283","\\supset",!0);G(U,ee,Ee,"\u2286","\\subseteq",!0);G(U,ee,Ee,"\u2287","\\supseteq",!0);G(U,ke,Ee,"\u2288","\\nsubseteq",!0);G(U,ke,Ee,"\u2289","\\nsupseteq",!0);G(U,ee,Ee,"\u22A8","\\models");G(U,ee,Ee,"\u2190","\\leftarrow",!0);G(U,ee,Ee,"\u2264","\\le");G(U,ee,Ee,"\u2264","\\leq",!0);G(U,ee,Ee,"<","\\lt",!0);G(U,ee,Ee,"\u2192","\\rightarrow",!0);G(U,ee,Ee,"\u2192","\\to");G(U,ke,Ee,"\u2271","\\ngeq",!0);G(U,ke,Ee,"\u2270","\\nleq",!0);G(U,ee,uu,"\xA0","\\ ");G(U,ee,uu,"\xA0","\\space");G(U,ee,uu,"\xA0","\\nobreakspace");G(it,ee,uu,"\xA0","\\ ");G(it,ee,uu,"\xA0"," ");G(it,ee,uu,"\xA0","\\space");G(it,ee,uu,"\xA0","\\nobreakspace");G(U,ee,uu,null,"\\nobreak");G(U,ee,uu,null,"\\allowbreak");G(U,ee,x3,",",",");G(U,ee,x3,";",";");G(U,ke,It,"\u22BC","\\barwedge",!0);G(U,ke,It,"\u22BB","\\veebar",!0);G(U,ee,It,"\u2299","\\odot",!0);G(U,ee,It,"\u2295","\\oplus",!0);G(U,ee,It,"\u2297","\\otimes",!0);G(U,ee,Le,"\u2202","\\partial",!0);G(U,ee,It,"\u2298","\\oslash",!0);G(U,ke,It,"\u229A","\\circledcirc",!0);G(U,ke,It,"\u22A1","\\boxdot",!0);G(U,ee,It,"\u25B3","\\bigtriangleup");G(U,ee,It,"\u25BD","\\bigtriangledown");G(U,ee,It,"\u2020","\\dagger");G(U,ee,It,"\u22C4","\\diamond");G(U,ee,It,"\u22C6","\\star");G(U,ee,It,"\u25C3","\\triangleleft");G(U,ee,It,"\u25B9","\\triangleright");G(U,ee,js,"{","\\{");G(it,ee,Le,"{","\\{");G(it,ee,Le,"{","\\textbraceleft");G(U,ee,Za,"}","\\}");G(it,ee,Le,"}","\\}");G(it,ee,Le,"}","\\textbraceright");G(U,ee,js,"{","\\lbrace");G(U,ee,Za,"}","\\rbrace");G(U,ee,js,"[","\\lbrack",!0);G(it,ee,Le,"[","\\lbrack",!0);G(U,ee,Za,"]","\\rbrack",!0);G(it,ee,Le,"]","\\rbrack",!0);G(U,ee,js,"(","\\lparen",!0);G(U,ee,Za,")","\\rparen",!0);G(it,ee,Le,"<","\\textless",!0);G(it,ee,Le,">","\\textgreater",!0);G(U,ee,js,"\u230A","\\lfloor",!0);G(U,ee,Za,"\u230B","\\rfloor",!0);G(U,ee,js,"\u2308","\\lceil",!0);G(U,ee,Za,"\u2309","\\rceil",!0);G(U,ee,Le,"\\","\\backslash");G(U,ee,Le,"\u2223","|");G(U,ee,Le,"\u2223","\\vert");G(it,ee,Le,"|","\\textbar",!0);G(U,ee,Le,"\u2225","\\|");G(U,ee,Le,"\u2225","\\Vert");G(it,ee,Le,"\u2225","\\textbardbl");G(it,ee,Le,"~","\\textasciitilde");G(it,ee,Le,"\\","\\textbackslash");G(it,ee,Le,"^","\\textasciicircum");G(U,ee,Ee,"\u2191","\\uparrow",!0);G(U,ee,Ee,"\u21D1","\\Uparrow",!0);G(U,ee,Ee,"\u2193","\\downarrow",!0);G(U,ee,Ee,"\u21D3","\\Downarrow",!0);G(U,ee,Ee,"\u2195","\\updownarrow",!0);G(U,ee,Ee,"\u21D5","\\Updownarrow",!0);G(U,ee,ki,"\u2210","\\coprod");G(U,ee,ki,"\u22C1","\\bigvee");G(U,ee,ki,"\u22C0","\\bigwedge");G(U,ee,ki,"\u2A04","\\biguplus");G(U,ee,ki,"\u22C2","\\bigcap");G(U,ee,ki,"\u22C3","\\bigcup");G(U,ee,ki,"\u222B","\\int");G(U,ee,ki,"\u222B","\\intop");G(U,ee,ki,"\u222C","\\iint");G(U,ee,ki,"\u222D","\\iiint");G(U,ee,ki,"\u220F","\\prod");G(U,ee,ki,"\u2211","\\sum");G(U,ee,ki,"\u2A02","\\bigotimes");G(U,ee,ki,"\u2A01","\\bigoplus");G(U,ee,ki,"\u2A00","\\bigodot");G(U,ee,ki,"\u222E","\\oint");G(U,ee,ki,"\u222F","\\oiint");G(U,ee,ki,"\u2230","\\oiiint");G(U,ee,ki,"\u2A06","\\bigsqcup");G(U,ee,ki,"\u222B","\\smallint");G(it,ee,p0,"\u2026","\\textellipsis");G(U,ee,p0,"\u2026","\\mathellipsis");G(it,ee,p0,"\u2026","\\ldots",!0);G(U,ee,p0,"\u2026","\\ldots",!0);G(U,ee,p0,"\u22EF","\\@cdots",!0);G(U,ee,p0,"\u22F1","\\ddots",!0);G(U,ee,Le,"\u22EE","\\varvdots");G(U,ee,Vn,"\u02CA","\\acute");G(U,ee,Vn,"\u02CB","\\grave");G(U,ee,Vn,"\xA8","\\ddot");G(U,ee,Vn,"~","\\tilde");G(U,ee,Vn,"\u02C9","\\bar");G(U,ee,Vn,"\u02D8","\\breve");G(U,ee,Vn,"\u02C7","\\check");G(U,ee,Vn,"^","\\hat");G(U,ee,Vn,"\u20D7","\\vec");G(U,ee,Vn,"\u02D9","\\dot");G(U,ee,Vn,"\u02DA","\\mathring");G(U,ee,er,"\uE131","\\@imath");G(U,ee,er,"\uE237","\\@jmath");G(U,ee,Le,"\u0131","\u0131");G(U,ee,Le,"\u0237","\u0237");G(it,ee,Le,"\u0131","\\i",!0);G(it,ee,Le,"\u0237","\\j",!0);G(it,ee,Le,"\xDF","\\ss",!0);G(it,ee,Le,"\xE6","\\ae",!0);G(it,ee,Le,"\u0153","\\oe",!0);G(it,ee,Le,"\xF8","\\o",!0);G(it,ee,Le,"\xC6","\\AE",!0);G(it,ee,Le,"\u0152","\\OE",!0);G(it,ee,Le,"\xD8","\\O",!0);G(it,ee,Vn,"\u02CA","\\'");G(it,ee,Vn,"\u02CB","\\`");G(it,ee,Vn,"\u02C6","\\^");G(it,ee,Vn,"\u02DC","\\~");G(it,ee,Vn,"\u02C9","\\=");G(it,ee,Vn,"\u02D8","\\u");G(it,ee,Vn,"\u02D9","\\.");G(it,ee,Vn,"\xB8","\\c");G(it,ee,Vn,"\u02DA","\\r");G(it,ee,Vn,"\u02C7","\\v");G(it,ee,Vn,"\xA8",'\\"');G(it,ee,Vn,"\u02DD","\\H");G(it,ee,Vn,"\u25EF","\\textcircled");Hz={"--":!0,"---":!0,"``":!0,"''":!0};G(it,ee,Le,"\u2013","--",!0);G(it,ee,Le,"\u2013","\\textendash");G(it,ee,Le,"\u2014","---",!0);G(it,ee,Le,"\u2014","\\textemdash");G(it,ee,Le,"\u2018","`",!0);G(it,ee,Le,"\u2018","\\textquoteleft");G(it,ee,Le,"\u2019","'",!0);G(it,ee,Le,"\u2019","\\textquoteright");G(it,ee,Le,"\u201C","``",!0);G(it,ee,Le,"\u201C","\\textquotedblleft");G(it,ee,Le,"\u201D","''",!0);G(it,ee,Le,"\u201D","\\textquotedblright");G(U,ee,Le,"\xB0","\\degree",!0);G(it,ee,Le,"\xB0","\\degree");G(it,ee,Le,"\xB0","\\textdegree",!0);G(U,ee,Le,"\xA3","\\pounds");G(U,ee,Le,"\xA3","\\mathsterling",!0);G(it,ee,Le,"\xA3","\\pounds");G(it,ee,Le,"\xA3","\\textsterling",!0);G(U,ke,Le,"\u2720","\\maltese");G(it,ke,Le,"\u2720","\\maltese");fz='0123456789/@."';for(J4=0;J40)return ol(a,h,i,r,s.concat(f));if(u){var d,p;if(u==="boldsymbol"){var m=Bbe(a,i,r,s,n);d=m.fontName,p=[m.fontClass]}else l?(d=Yz[u].fontName,p=[u]):(d=i3(u,r.fontWeight,r.fontShape),p=[u,r.fontWeight,r.fontShape]);if(b3(a,d,i).metrics)return ol(a,d,i,r,s.concat(p));if(Hz.hasOwnProperty(a)&&d.slice(0,10)==="Typewriter"){for(var g=[],y=0;y{if(fh(t.classes)!==fh(e.classes)||t.skew!==e.skew||t.maxFontSize!==e.maxFontSize)return!1;if(t.classes.length===1){var r=t.classes[0];if(r==="mbin"||r==="mord")return!1}for(var n in t.style)if(t.style.hasOwnProperty(n)&&t.style[n]!==e.style[n])return!1;for(var i in e.style)if(e.style.hasOwnProperty(i)&&t.style[i]!==e.style[i])return!1;return!0},"canCombine"),zbe=o(t=>{for(var e=0;er&&(r=s.height),s.depth>n&&(n=s.depth),s.maxFontSize>i&&(i=s.maxFontSize)}e.height=r,e.depth=n,e.maxFontSize=i},"sizeElementFromChildren"),bs=o(function(e,r,n,i){var a=new td(e,r,n,i);return B7(a),a},"makeSpan"),Wz=o((t,e,r,n)=>new td(t,e,r,n),"makeSvgSpan"),Gbe=o(function(e,r,n){var i=bs([e],[],r);return i.height=Math.max(n||r.fontMetrics().defaultRuleThickness,r.minRuleThickness),i.style.borderBottomWidth=kt(i.height),i.maxFontSize=1,i},"makeLineSpan"),Vbe=o(function(e,r,n,i){var a=new Vy(e,r,n,i);return B7(a),a},"makeAnchor"),qz=o(function(e){var r=new ed(e);return B7(r),r},"makeFragment"),Ube=o(function(e,r){return e instanceof ed?bs([],[e],r):e},"wrapFragment"),Hbe=o(function(e){if(e.positionType==="individualShift"){for(var r=e.children,n=[r[0]],i=-r[0].shift-r[0].elem.depth,a=i,s=1;s{var r=bs(["mspace"],[],e),n=ti(t,e);return r.style.marginRight=kt(n),r},"makeGlue"),i3=o(function(e,r,n){var i="";switch(e){case"amsrm":i="AMS";break;case"textrm":i="Main";break;case"textsf":i="SansSerif";break;case"texttt":i="Typewriter";break;default:i=e}var a;return r==="textbf"&&n==="textit"?a="BoldItalic":r==="textbf"?a="Bold":r==="textit"?a="Italic":a="Regular",i+"-"+a},"retrieveTextFontName"),Yz={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},Xz={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]},Ybe=o(function(e,r){var[n,i,a]=Xz[e],s=new Kl(n),l=new ll([s],{width:kt(i),height:kt(a),style:"width:"+kt(i),viewBox:"0 0 "+1e3*i+" "+1e3*a,preserveAspectRatio:"xMinYMin"}),u=Wz(["overlay"],[l],r);return u.height=a,u.style.height=kt(a),u.style.width=kt(i),u},"staticSvg"),Be={fontMap:Yz,makeSymbol:ol,mathsym:Pbe,makeSpan:bs,makeSvgSpan:Wz,makeLineSpan:Gbe,makeAnchor:Vbe,makeFragment:qz,wrapFragment:Ube,makeVList:Wbe,makeOrd:Fbe,makeGlue:qbe,staticSvg:Ybe,svgData:Xz,tryCombineChars:zbe},ei={number:3,unit:"mu"},Zf={number:4,unit:"mu"},au={number:5,unit:"mu"},Xbe={mord:{mop:ei,mbin:Zf,mrel:au,minner:ei},mop:{mord:ei,mop:ei,mrel:au,minner:ei},mbin:{mord:Zf,mop:Zf,mopen:Zf,minner:Zf},mrel:{mord:au,mop:au,mopen:au,minner:au},mopen:{},mclose:{mop:ei,mbin:Zf,mrel:au,minner:ei},mpunct:{mord:ei,mop:ei,mrel:au,mopen:ei,mclose:ei,mpunct:ei,minner:ei},minner:{mord:ei,mop:ei,mbin:Zf,mrel:au,mopen:ei,mpunct:ei,minner:ei}},jbe={mord:{mop:ei},mop:{mord:ei,mop:ei},mbin:{},mrel:{},mopen:{},mclose:{mop:ei},mpunct:{},minner:{mop:ei}},jz={},p3={},m3={};o(Nt,"defineFunction");o(rd,"defineFunctionBuilders");g3=o(function(e){return e.type==="ordgroup"&&e.body.length===1?e.body[0]:e},"normalizeArgument"),di=o(function(e){return e.type==="ordgroup"?e.body:[e]},"ordargument"),lu=Be.makeSpan,Kbe=["leftmost","mbin","mopen","mrel","mop","mpunct"],Qbe=["rightmost","mrel","mclose","mpunct"],Zbe={display:tr.DISPLAY,text:tr.TEXT,script:tr.SCRIPT,scriptscript:tr.SCRIPTSCRIPT},Jbe={mord:"mord",mop:"mop",mbin:"mbin",mrel:"mrel",mopen:"mopen",mclose:"mclose",mpunct:"mpunct",minner:"minner"},Pi=o(function(e,r,n,i){i===void 0&&(i=[null,null]);for(var a=[],s=0;s{var v=y.classes[0],x=g.classes[0];v==="mbin"&&Jt.contains(Qbe,x)?y.classes[0]="mord":x==="mbin"&&Jt.contains(Kbe,v)&&(g.classes[0]="mord")},{node:d},p,m),mz(a,(g,y)=>{var v=A7(y),x=A7(g),b=v&&x?g.hasClass("mtight")?jbe[v][x]:Xbe[v][x]:null;if(b)return Be.makeGlue(b,h)},{node:d},p,m),a},"buildExpression"),mz=o(function t(e,r,n,i,a){i&&e.push(i);for(var s=0;sp=>{e.splice(d+1,0,p),s++})(s)}i&&e.pop()},"traverseNonSpaceNodes"),Kz=o(function(e){return e instanceof ed||e instanceof Vy||e instanceof td&&e.hasClass("enclosing")?e:null},"checkPartialGroup"),e4e=o(function t(e,r){var n=Kz(e);if(n){var i=n.children;if(i.length){if(r==="right")return t(i[i.length-1],"right");if(r==="left")return t(i[0],"left")}}return e},"getOutermostNode"),A7=o(function(e,r){return e?(r&&(e=e4e(e,r)),Jbe[e.classes[0]]||null):null},"getTypeOfDomTree"),Hy=o(function(e,r){var n=["nulldelimiter"].concat(e.baseSizingClasses());return lu(r.concat(n))},"makeNullDelimiter"),Fr=o(function(e,r,n){if(!e)return lu();if(p3[e.type]){var i=p3[e.type](e,r);if(n&&r.size!==n.size){i=lu(r.sizingClasses(n),[i],r);var a=r.sizeMultiplier/n.sizeMultiplier;i.height*=a,i.depth*=a}return i}else throw new gt("Got group of unknown type: '"+e.type+"'")},"buildGroup");o(a3,"buildHTMLUnbreakable");o(_7,"buildHTML");o(Qz,"newDocumentFragment");ws=class{static{o(this,"MathNode")}constructor(e,r,n){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=e,this.attributes={},this.children=r||[],this.classes=n||[]}setAttribute(e,r){this.attributes[e]=r}getAttribute(e){return this.attributes[e]}toNode(){var e=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(var r in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,r)&&e.setAttribute(r,this.attributes[r]);this.classes.length>0&&(e.className=fh(this.classes));for(var n=0;n0&&(e+=' class ="'+Jt.escape(fh(this.classes))+'"'),e+=">";for(var n=0;n",e}toText(){return this.children.map(e=>e.toText()).join("")}},Jf=class{static{o(this,"TextNode")}constructor(e){this.text=void 0,this.text=e}toNode(){return document.createTextNode(this.text)}toMarkup(){return Jt.escape(this.toText())}toText(){return this.text}},D7=class{static{o(this,"SpaceNode")}constructor(e){this.width=void 0,this.character=void 0,this.width=e,e>=.05555&&e<=.05556?this.character="\u200A":e>=.1666&&e<=.1667?this.character="\u2009":e>=.2222&&e<=.2223?this.character="\u2005":e>=.2777&&e<=.2778?this.character="\u2005\u200A":e>=-.05556&&e<=-.05555?this.character="\u200A\u2063":e>=-.1667&&e<=-.1666?this.character="\u2009\u2063":e>=-.2223&&e<=-.2222?this.character="\u205F\u2063":e>=-.2778&&e<=-.2777?this.character="\u2005\u2063":this.character=null}toNode(){if(this.character)return document.createTextNode(this.character);var e=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return e.setAttribute("width",kt(this.width)),e}toMarkup(){return this.character?""+this.character+"":''}toText(){return this.character?this.character:" "}},dt={MathNode:ws,TextNode:Jf,SpaceNode:D7,newDocumentFragment:Qz},Co=o(function(e,r,n){return An[r][e]&&An[r][e].replace&&e.charCodeAt(0)!==55349&&!(Hz.hasOwnProperty(e)&&n&&(n.fontFamily&&n.fontFamily.slice(4,6)==="tt"||n.font&&n.font.slice(4,6)==="tt"))&&(e=An[r][e].replace),new dt.TextNode(e)},"makeText"),F7=o(function(e){return e.length===1?e[0]:new dt.MathNode("mrow",e)},"makeRow"),$7=o(function(e,r){if(r.fontFamily==="texttt")return"monospace";if(r.fontFamily==="textsf")return r.fontShape==="textit"&&r.fontWeight==="textbf"?"sans-serif-bold-italic":r.fontShape==="textit"?"sans-serif-italic":r.fontWeight==="textbf"?"bold-sans-serif":"sans-serif";if(r.fontShape==="textit"&&r.fontWeight==="textbf")return"bold-italic";if(r.fontShape==="textit")return"italic";if(r.fontWeight==="textbf")return"bold";var n=r.font;if(!n||n==="mathnormal")return null;var i=e.mode;if(n==="mathit")return"italic";if(n==="boldsymbol")return e.type==="textord"?"bold":"bold-italic";if(n==="mathbf")return"bold";if(n==="mathbb")return"double-struck";if(n==="mathfrak")return"fraktur";if(n==="mathscr"||n==="mathcal")return"script";if(n==="mathsf")return"sans-serif";if(n==="mathtt")return"monospace";var a=e.text;if(Jt.contains(["\\imath","\\jmath"],a))return null;An[i][a]&&An[i][a].replace&&(a=An[i][a].replace);var s=Be.fontMap[n].fontName;return P7(a,s,i)?Be.fontMap[n].variant:null},"getVariant"),ks=o(function(e,r,n){if(e.length===1){var i=yn(e[0],r);return n&&i instanceof ws&&i.type==="mo"&&(i.setAttribute("lspace","0em"),i.setAttribute("rspace","0em")),[i]}for(var a=[],s,l=0;l0&&(d.text=d.text.slice(0,1)+"\u0338"+d.text.slice(1),a.pop())}}}a.push(u),s=u}return a},"buildExpression"),dh=o(function(e,r,n){return F7(ks(e,r,n))},"buildExpressionRow"),yn=o(function(e,r){if(!e)return new dt.MathNode("mrow");if(m3[e.type]){var n=m3[e.type](e,r);return n}else throw new gt("Got group of unknown type: '"+e.type+"'")},"buildGroup");o(gz,"buildMathML");Zz=o(function(e){return new f3({style:e.displayMode?tr.DISPLAY:tr.TEXT,maxSize:e.maxSize,minRuleThickness:e.minRuleThickness})},"optionsFromSettings"),Jz=o(function(e,r){if(r.displayMode){var n=["katex-display"];r.leqno&&n.push("leqno"),r.fleqn&&n.push("fleqn"),e=Be.makeSpan(n,[e])}return e},"displayWrap"),t4e=o(function(e,r,n){var i=Zz(n),a;if(n.output==="mathml")return gz(e,r,i,n.displayMode,!0);if(n.output==="html"){var s=_7(e,i);a=Be.makeSpan(["katex"],[s])}else{var l=gz(e,r,i,n.displayMode,!1),u=_7(e,i);a=Be.makeSpan(["katex"],[l,u])}return Jz(a,n)},"buildTree"),r4e=o(function(e,r,n){var i=Zz(n),a=_7(e,i),s=Be.makeSpan(["katex"],[a]);return Jz(s,n)},"buildHTMLTree"),n4e={widehat:"^",widecheck:"\u02C7",widetilde:"~",utilde:"~",overleftarrow:"\u2190",underleftarrow:"\u2190",xleftarrow:"\u2190",overrightarrow:"\u2192",underrightarrow:"\u2192",xrightarrow:"\u2192",underbrace:"\u23DF",overbrace:"\u23DE",overgroup:"\u23E0",undergroup:"\u23E1",overleftrightarrow:"\u2194",underleftrightarrow:"\u2194",xleftrightarrow:"\u2194",Overrightarrow:"\u21D2",xRightarrow:"\u21D2",overleftharpoon:"\u21BC",xleftharpoonup:"\u21BC",overrightharpoon:"\u21C0",xrightharpoonup:"\u21C0",xLeftarrow:"\u21D0",xLeftrightarrow:"\u21D4",xhookleftarrow:"\u21A9",xhookrightarrow:"\u21AA",xmapsto:"\u21A6",xrightharpoondown:"\u21C1",xleftharpoondown:"\u21BD",xrightleftharpoons:"\u21CC",xleftrightharpoons:"\u21CB",xtwoheadleftarrow:"\u219E",xtwoheadrightarrow:"\u21A0",xlongequal:"=",xtofrom:"\u21C4",xrightleftarrows:"\u21C4",xrightequilibrium:"\u21CC",xleftequilibrium:"\u21CB","\\cdrightarrow":"\u2192","\\cdleftarrow":"\u2190","\\cdlongequal":"="},i4e=o(function(e){var r=new dt.MathNode("mo",[new dt.TextNode(n4e[e.replace(/^\\/,"")])]);return r.setAttribute("stretchy","true"),r},"mathMLnode"),a4e={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]},s4e=o(function(e){return e.type==="ordgroup"?e.body.length:1},"groupLength"),o4e=o(function(e,r){function n(){var l=4e5,u=e.label.slice(1);if(Jt.contains(["widehat","widecheck","widetilde","utilde"],u)){var h=e,f=s4e(h.base),d,p,m;if(f>5)u==="widehat"||u==="widecheck"?(d=420,l=2364,m=.42,p=u+"4"):(d=312,l=2340,m=.34,p="tilde4");else{var g=[1,1,2,2,3,3][f];u==="widehat"||u==="widecheck"?(l=[0,1062,2364,2364,2364][g],d=[0,239,300,360,420][g],m=[0,.24,.3,.3,.36,.42][g],p=u+g):(l=[0,600,1033,2339,2340][g],d=[0,260,286,306,312][g],m=[0,.26,.286,.3,.306,.34][g],p="tilde"+g)}var y=new Kl(p),v=new ll([y],{width:"100%",height:kt(m),viewBox:"0 0 "+l+" "+d,preserveAspectRatio:"none"});return{span:Be.makeSvgSpan([],[v],r),minWidth:0,height:m}}else{var x=[],b=a4e[u],[w,C,T]=b,E=T/1e3,A=w.length,S,_;if(A===1){var I=b[3];S=["hide-tail"],_=[I]}else if(A===2)S=["halfarrow-left","halfarrow-right"],_=["xMinYMin","xMaxYMin"];else if(A===3)S=["brace-left","brace-center","brace-right"],_=["xMinYMin","xMidYMin","xMaxYMin"];else throw new Error(`Correct katexImagesData or update code here to support + `+A+" children.");for(var D=0;D0&&(i.style.minWidth=kt(a)),i},"svgSpan"),l4e=o(function(e,r,n,i,a){var s,l=e.height+e.depth+n+i;if(/fbox|color|angl/.test(r)){if(s=Be.makeSpan(["stretchy",r],[],a),r==="fbox"){var u=a.color&&a.getColor();u&&(s.style.borderColor=u)}}else{var h=[];/^[bx]cancel$/.test(r)&&h.push(new Uy({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(r)&&h.push(new Uy({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));var f=new ll(h,{width:"100%",height:kt(l)});s=Be.makeSvgSpan([],[f],a)}return s.height=l,s.style.height=kt(l),s},"encloseSpan"),cu={encloseSpan:l4e,mathMLnode:i4e,svgSpan:o4e};o(xr,"assertNodeType");o(z7,"assertSymbolNodeType");o(w3,"checkSymbolNodeType");G7=o((t,e)=>{var r,n,i;t&&t.type==="supsub"?(n=xr(t.base,"accent"),r=n.base,t.base=r,i=Nbe(Fr(t,e)),t.base=n):(n=xr(t,"accent"),r=n.base);var a=Fr(r,e.havingCrampedStyle()),s=n.isShifty&&Jt.isCharacterBox(r),l=0;if(s){var u=Jt.getBaseElem(r),h=Fr(u,e.havingCrampedStyle());l=hz(h).skew}var f=n.label==="\\c",d=f?a.height+a.depth:Math.min(a.height,e.fontMetrics().xHeight),p;if(n.isStretchy)p=cu.svgSpan(n,e),p=Be.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"elem",elem:p,wrapperClasses:["svg-align"],wrapperStyle:l>0?{width:"calc(100% - "+kt(2*l)+")",marginLeft:kt(2*l)}:void 0}]},e);else{var m,g;n.label==="\\vec"?(m=Be.staticSvg("vec",e),g=Be.svgData.vec[1]):(m=Be.makeOrd({mode:n.mode,text:n.label},e,"textord"),m=hz(m),m.italic=0,g=m.width,f&&(d+=m.depth)),p=Be.makeSpan(["accent-body"],[m]);var y=n.label==="\\textcircled";y&&(p.classes.push("accent-full"),d=a.height);var v=l;y||(v-=g/2),p.style.left=kt(v),n.label==="\\textcircled"&&(p.style.top=".2em"),p=Be.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"kern",size:-d},{type:"elem",elem:p}]},e)}var x=Be.makeSpan(["mord","accent"],[p],e);return i?(i.children[0]=x,i.height=Math.max(x.height,i.height),i.classes[0]="mord",i):x},"htmlBuilder$a"),eG=o((t,e)=>{var r=t.isStretchy?cu.mathMLnode(t.label):new dt.MathNode("mo",[Co(t.label,t.mode)]),n=new dt.MathNode("mover",[yn(t.base,e),r]);return n.setAttribute("accent","true"),n},"mathmlBuilder$9"),c4e=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map(t=>"\\"+t).join("|"));Nt({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],props:{numArgs:1},handler:o((t,e)=>{var r=g3(e[0]),n=!c4e.test(t.funcName),i=!n||t.funcName==="\\widehat"||t.funcName==="\\widetilde"||t.funcName==="\\widecheck";return{type:"accent",mode:t.parser.mode,label:t.funcName,isStretchy:n,isShifty:i,base:r}},"handler"),htmlBuilder:G7,mathmlBuilder:eG});Nt({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],props:{numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"]},handler:o((t,e)=>{var r=e[0],n=t.parser.mode;return n==="math"&&(t.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+t.funcName+" works only in text mode"),n="text"),{type:"accent",mode:n,label:t.funcName,isStretchy:!1,isShifty:!0,base:r}},"handler"),htmlBuilder:G7,mathmlBuilder:eG});Nt({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],props:{numArgs:1},handler:o((t,e)=>{var{parser:r,funcName:n}=t,i=e[0];return{type:"accentUnder",mode:r.mode,label:n,base:i}},"handler"),htmlBuilder:o((t,e)=>{var r=Fr(t.base,e),n=cu.svgSpan(t,e),i=t.label==="\\utilde"?.12:0,a=Be.makeVList({positionType:"top",positionData:r.height,children:[{type:"elem",elem:n,wrapperClasses:["svg-align"]},{type:"kern",size:i},{type:"elem",elem:r}]},e);return Be.makeSpan(["mord","accentunder"],[a],e)},"htmlBuilder"),mathmlBuilder:o((t,e)=>{var r=cu.mathMLnode(t.label),n=new dt.MathNode("munder",[yn(t.base,e),r]);return n.setAttribute("accentunder","true"),n},"mathmlBuilder")});s3=o(t=>{var e=new dt.MathNode("mpadded",t?[t]:[]);return e.setAttribute("width","+0.6em"),e.setAttribute("lspace","0.3em"),e},"paddedNode");Nt({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],props:{numArgs:1,numOptionalArgs:1},handler(t,e,r){var{parser:n,funcName:i}=t;return{type:"xArrow",mode:n.mode,label:i,body:e[0],below:r[0]}},htmlBuilder(t,e){var r=e.style,n=e.havingStyle(r.sup()),i=Be.wrapFragment(Fr(t.body,n,e),e),a=t.label.slice(0,2)==="\\x"?"x":"cd";i.classes.push(a+"-arrow-pad");var s;t.below&&(n=e.havingStyle(r.sub()),s=Be.wrapFragment(Fr(t.below,n,e),e),s.classes.push(a+"-arrow-pad"));var l=cu.svgSpan(t,e),u=-e.fontMetrics().axisHeight+.5*l.height,h=-e.fontMetrics().axisHeight-.5*l.height-.111;(i.depth>.25||t.label==="\\xleftequilibrium")&&(h-=i.depth);var f;if(s){var d=-e.fontMetrics().axisHeight+s.height+.5*l.height+.111;f=Be.makeVList({positionType:"individualShift",children:[{type:"elem",elem:i,shift:h},{type:"elem",elem:l,shift:u},{type:"elem",elem:s,shift:d}]},e)}else f=Be.makeVList({positionType:"individualShift",children:[{type:"elem",elem:i,shift:h},{type:"elem",elem:l,shift:u}]},e);return f.children[0].children[0].children[1].classes.push("svg-align"),Be.makeSpan(["mrel","x-arrow"],[f],e)},mathmlBuilder(t,e){var r=cu.mathMLnode(t.label);r.setAttribute("minsize",t.label.charAt(0)==="x"?"1.75em":"3.0em");var n;if(t.body){var i=s3(yn(t.body,e));if(t.below){var a=s3(yn(t.below,e));n=new dt.MathNode("munderover",[r,a,i])}else n=new dt.MathNode("mover",[r,i])}else if(t.below){var s=s3(yn(t.below,e));n=new dt.MathNode("munder",[r,s])}else n=s3(),n=new dt.MathNode("mover",[r,n]);return n}});u4e=Be.makeSpan;o(tG,"htmlBuilder$9");o(rG,"mathmlBuilder$8");Nt({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],props:{numArgs:1,primitive:!0},handler(t,e){var{parser:r,funcName:n}=t,i=e[0];return{type:"mclass",mode:r.mode,mclass:"m"+n.slice(5),body:di(i),isCharacterBox:Jt.isCharacterBox(i)}},htmlBuilder:tG,mathmlBuilder:rG});T3=o(t=>{var e=t.type==="ordgroup"&&t.body.length?t.body[0]:t;return e.type==="atom"&&(e.family==="bin"||e.family==="rel")?"m"+e.family:"mord"},"binrelClass");Nt({type:"mclass",names:["\\@binrel"],props:{numArgs:2},handler(t,e){var{parser:r}=t;return{type:"mclass",mode:r.mode,mclass:T3(e[0]),body:di(e[1]),isCharacterBox:Jt.isCharacterBox(e[1])}}});Nt({type:"mclass",names:["\\stackrel","\\overset","\\underset"],props:{numArgs:2},handler(t,e){var{parser:r,funcName:n}=t,i=e[1],a=e[0],s;n!=="\\stackrel"?s=T3(i):s="mrel";var l={type:"op",mode:i.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:n!=="\\stackrel",body:di(i)},u={type:"supsub",mode:a.mode,base:l,sup:n==="\\underset"?null:a,sub:n==="\\underset"?a:null};return{type:"mclass",mode:r.mode,mclass:s,body:[u],isCharacterBox:Jt.isCharacterBox(u)}},htmlBuilder:tG,mathmlBuilder:rG});Nt({type:"pmb",names:["\\pmb"],props:{numArgs:1,allowedInText:!0},handler(t,e){var{parser:r}=t;return{type:"pmb",mode:r.mode,mclass:T3(e[0]),body:di(e[0])}},htmlBuilder(t,e){var r=Pi(t.body,e,!0),n=Be.makeSpan([t.mclass],r,e);return n.style.textShadow="0.02em 0.01em 0.04px",n},mathmlBuilder(t,e){var r=ks(t.body,e),n=new dt.MathNode("mstyle",r);return n.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),n}});h4e={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},yz=o(()=>({type:"styling",body:[],mode:"math",style:"display"}),"newCell"),vz=o(t=>t.type==="textord"&&t.text==="@","isStartOfArrow"),f4e=o((t,e)=>(t.type==="mathord"||t.type==="atom")&&t.text===e,"isLabelEnd");o(d4e,"cdArrow");o(p4e,"parseCD");Nt({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],props:{numArgs:1},handler(t,e){var{parser:r,funcName:n}=t;return{type:"cdlabel",mode:r.mode,side:n.slice(4),label:e[0]}},htmlBuilder(t,e){var r=e.havingStyle(e.style.sup()),n=Be.wrapFragment(Fr(t.label,r,e),e);return n.classes.push("cd-label-"+t.side),n.style.bottom=kt(.8-n.depth),n.height=0,n.depth=0,n},mathmlBuilder(t,e){var r=new dt.MathNode("mrow",[yn(t.label,e)]);return r=new dt.MathNode("mpadded",[r]),r.setAttribute("width","0"),t.side==="left"&&r.setAttribute("lspace","-1width"),r.setAttribute("voffset","0.7em"),r=new dt.MathNode("mstyle",[r]),r.setAttribute("displaystyle","false"),r.setAttribute("scriptlevel","1"),r}});Nt({type:"cdlabelparent",names:["\\\\cdparent"],props:{numArgs:1},handler(t,e){var{parser:r}=t;return{type:"cdlabelparent",mode:r.mode,fragment:e[0]}},htmlBuilder(t,e){var r=Be.wrapFragment(Fr(t.fragment,e),e);return r.classes.push("cd-vert-arrow"),r},mathmlBuilder(t,e){return new dt.MathNode("mrow",[yn(t.fragment,e)])}});Nt({type:"textord",names:["\\@char"],props:{numArgs:1,allowedInText:!0},handler(t,e){for(var{parser:r}=t,n=xr(e[0],"ordgroup"),i=n.body,a="",s=0;s=1114111)throw new gt("\\@char with invalid code point "+a);return u<=65535?h=String.fromCharCode(u):(u-=65536,h=String.fromCharCode((u>>10)+55296,(u&1023)+56320)),{type:"textord",mode:r.mode,text:h}}});nG=o((t,e)=>{var r=Pi(t.body,e.withColor(t.color),!1);return Be.makeFragment(r)},"htmlBuilder$8"),iG=o((t,e)=>{var r=ks(t.body,e.withColor(t.color)),n=new dt.MathNode("mstyle",r);return n.setAttribute("mathcolor",t.color),n},"mathmlBuilder$7");Nt({type:"color",names:["\\textcolor"],props:{numArgs:2,allowedInText:!0,argTypes:["color","original"]},handler(t,e){var{parser:r}=t,n=xr(e[0],"color-token").color,i=e[1];return{type:"color",mode:r.mode,color:n,body:di(i)}},htmlBuilder:nG,mathmlBuilder:iG});Nt({type:"color",names:["\\color"],props:{numArgs:1,allowedInText:!0,argTypes:["color"]},handler(t,e){var{parser:r,breakOnTokenText:n}=t,i=xr(e[0],"color-token").color;r.gullet.macros.set("\\current@color",i);var a=r.parseExpression(!0,n);return{type:"color",mode:r.mode,color:i,body:a}},htmlBuilder:nG,mathmlBuilder:iG});Nt({type:"cr",names:["\\\\"],props:{numArgs:0,numOptionalArgs:0,allowedInText:!0},handler(t,e,r){var{parser:n}=t,i=n.gullet.future().text==="["?n.parseSizeGroup(!0):null,a=!n.settings.displayMode||!n.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:n.mode,newLine:a,size:i&&xr(i,"size").value}},htmlBuilder(t,e){var r=Be.makeSpan(["mspace"],[],e);return t.newLine&&(r.classes.push("newline"),t.size&&(r.style.marginTop=kt(ti(t.size,e)))),r},mathmlBuilder(t,e){var r=new dt.MathNode("mspace");return t.newLine&&(r.setAttribute("linebreak","newline"),t.size&&r.setAttribute("height",kt(ti(t.size,e)))),r}});L7={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},aG=o(t=>{var e=t.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(e))throw new gt("Expected a control sequence",t);return e},"checkControlSequence"),m4e=o(t=>{var e=t.gullet.popToken();return e.text==="="&&(e=t.gullet.popToken(),e.text===" "&&(e=t.gullet.popToken())),e},"getRHS"),sG=o((t,e,r,n)=>{var i=t.gullet.macros.get(r.text);i==null&&(r.noexpand=!0,i={tokens:[r],numArgs:0,unexpandable:!t.gullet.isExpandable(r.text)}),t.gullet.macros.set(e,i,n)},"letCommand");Nt({type:"internal",names:["\\global","\\long","\\\\globallong"],props:{numArgs:0,allowedInText:!0},handler(t){var{parser:e,funcName:r}=t;e.consumeSpaces();var n=e.fetch();if(L7[n.text])return(r==="\\global"||r==="\\\\globallong")&&(n.text=L7[n.text]),xr(e.parseFunction(),"internal");throw new gt("Invalid token after macro prefix",n)}});Nt({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(t){var{parser:e,funcName:r}=t,n=e.gullet.popToken(),i=n.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(i))throw new gt("Expected a control sequence",n);for(var a=0,s,l=[[]];e.gullet.future().text!=="{";)if(n=e.gullet.popToken(),n.text==="#"){if(e.gullet.future().text==="{"){s=e.gullet.future(),l[a].push("{");break}if(n=e.gullet.popToken(),!/^[1-9]$/.test(n.text))throw new gt('Invalid argument number "'+n.text+'"');if(parseInt(n.text)!==a+1)throw new gt('Argument number "'+n.text+'" out of order');a++,l.push([])}else{if(n.text==="EOF")throw new gt("Expected a macro definition");l[a].push(n.text)}var{tokens:u}=e.gullet.consumeArg();return s&&u.unshift(s),(r==="\\edef"||r==="\\xdef")&&(u=e.gullet.expandTokens(u),u.reverse()),e.gullet.macros.set(i,{tokens:u,numArgs:a,delimiters:l},r===L7[r]),{type:"internal",mode:e.mode}}});Nt({type:"internal",names:["\\let","\\\\globallet"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(t){var{parser:e,funcName:r}=t,n=aG(e.gullet.popToken());e.gullet.consumeSpaces();var i=m4e(e);return sG(e,n,i,r==="\\\\globallet"),{type:"internal",mode:e.mode}}});Nt({type:"internal",names:["\\futurelet","\\\\globalfuture"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(t){var{parser:e,funcName:r}=t,n=aG(e.gullet.popToken()),i=e.gullet.popToken(),a=e.gullet.popToken();return sG(e,n,a,r==="\\\\globalfuture"),e.gullet.pushToken(a),e.gullet.pushToken(i),{type:"internal",mode:e.mode}}});Fy=o(function(e,r,n){var i=An.math[e]&&An.math[e].replace,a=P7(i||e,r,n);if(!a)throw new Error("Unsupported symbol "+e+" and font size "+r+".");return a},"getMetrics"),V7=o(function(e,r,n,i){var a=n.havingBaseStyle(r),s=Be.makeSpan(i.concat(a.sizingClasses(n)),[e],n),l=a.sizeMultiplier/n.sizeMultiplier;return s.height*=l,s.depth*=l,s.maxFontSize=a.sizeMultiplier,s},"styleWrap"),oG=o(function(e,r,n){var i=r.havingBaseStyle(n),a=(1-r.sizeMultiplier/i.sizeMultiplier)*r.fontMetrics().axisHeight;e.classes.push("delimcenter"),e.style.top=kt(a),e.height-=a,e.depth+=a},"centerSpan"),g4e=o(function(e,r,n,i,a,s){var l=Be.makeSymbol(e,"Main-Regular",a,i),u=V7(l,r,i,s);return n&&oG(u,i,r),u},"makeSmallDelim"),y4e=o(function(e,r,n,i){return Be.makeSymbol(e,"Size"+r+"-Regular",n,i)},"mathrmSize"),lG=o(function(e,r,n,i,a,s){var l=y4e(e,r,a,i),u=V7(Be.makeSpan(["delimsizing","size"+r],[l],i),tr.TEXT,i,s);return n&&oG(u,i,tr.TEXT),u},"makeLargeDelim"),p7=o(function(e,r,n){var i;r==="Size1-Regular"?i="delim-size1":i="delim-size4";var a=Be.makeSpan(["delimsizinginner",i],[Be.makeSpan([],[Be.makeSymbol(e,r,n)])]);return{type:"elem",elem:a}},"makeGlyphSpan"),m7=o(function(e,r,n){var i=jl["Size4-Regular"][e.charCodeAt(0)]?jl["Size4-Regular"][e.charCodeAt(0)][4]:jl["Size1-Regular"][e.charCodeAt(0)][4],a=new Kl("inner",Sbe(e,Math.round(1e3*r))),s=new ll([a],{width:kt(i),height:kt(r),style:"width:"+kt(i),viewBox:"0 0 "+1e3*i+" "+Math.round(1e3*r),preserveAspectRatio:"xMinYMin"}),l=Be.makeSvgSpan([],[s],n);return l.height=r,l.style.height=kt(r),l.style.width=kt(i),{type:"elem",elem:l}},"makeInner"),R7=.008,o3={type:"kern",size:-1*R7},v4e=["|","\\lvert","\\rvert","\\vert"],x4e=["\\|","\\lVert","\\rVert","\\Vert"],cG=o(function(e,r,n,i,a,s){var l,u,h,f,d="",p=0;l=h=f=e,u=null;var m="Size1-Regular";e==="\\uparrow"?h=f="\u23D0":e==="\\Uparrow"?h=f="\u2016":e==="\\downarrow"?l=h="\u23D0":e==="\\Downarrow"?l=h="\u2016":e==="\\updownarrow"?(l="\\uparrow",h="\u23D0",f="\\downarrow"):e==="\\Updownarrow"?(l="\\Uparrow",h="\u2016",f="\\Downarrow"):Jt.contains(v4e,e)?(h="\u2223",d="vert",p=333):Jt.contains(x4e,e)?(h="\u2225",d="doublevert",p=556):e==="["||e==="\\lbrack"?(l="\u23A1",h="\u23A2",f="\u23A3",m="Size4-Regular",d="lbrack",p=667):e==="]"||e==="\\rbrack"?(l="\u23A4",h="\u23A5",f="\u23A6",m="Size4-Regular",d="rbrack",p=667):e==="\\lfloor"||e==="\u230A"?(h=l="\u23A2",f="\u23A3",m="Size4-Regular",d="lfloor",p=667):e==="\\lceil"||e==="\u2308"?(l="\u23A1",h=f="\u23A2",m="Size4-Regular",d="lceil",p=667):e==="\\rfloor"||e==="\u230B"?(h=l="\u23A5",f="\u23A6",m="Size4-Regular",d="rfloor",p=667):e==="\\rceil"||e==="\u2309"?(l="\u23A4",h=f="\u23A5",m="Size4-Regular",d="rceil",p=667):e==="("||e==="\\lparen"?(l="\u239B",h="\u239C",f="\u239D",m="Size4-Regular",d="lparen",p=875):e===")"||e==="\\rparen"?(l="\u239E",h="\u239F",f="\u23A0",m="Size4-Regular",d="rparen",p=875):e==="\\{"||e==="\\lbrace"?(l="\u23A7",u="\u23A8",f="\u23A9",h="\u23AA",m="Size4-Regular"):e==="\\}"||e==="\\rbrace"?(l="\u23AB",u="\u23AC",f="\u23AD",h="\u23AA",m="Size4-Regular"):e==="\\lgroup"||e==="\u27EE"?(l="\u23A7",f="\u23A9",h="\u23AA",m="Size4-Regular"):e==="\\rgroup"||e==="\u27EF"?(l="\u23AB",f="\u23AD",h="\u23AA",m="Size4-Regular"):e==="\\lmoustache"||e==="\u23B0"?(l="\u23A7",f="\u23AD",h="\u23AA",m="Size4-Regular"):(e==="\\rmoustache"||e==="\u23B1")&&(l="\u23AB",f="\u23A9",h="\u23AA",m="Size4-Regular");var g=Fy(l,m,a),y=g.height+g.depth,v=Fy(h,m,a),x=v.height+v.depth,b=Fy(f,m,a),w=b.height+b.depth,C=0,T=1;if(u!==null){var E=Fy(u,m,a);C=E.height+E.depth,T=2}var A=y+w+C,S=Math.max(0,Math.ceil((r-A)/(T*x))),_=A+S*T*x,I=i.fontMetrics().axisHeight;n&&(I*=i.sizeMultiplier);var D=_/2-I,k=[];if(d.length>0){var L=_-y-w,R=Math.round(_*1e3),O=Cbe(d,Math.round(L*1e3)),M=new Kl(d,O),B=(p/1e3).toFixed(3)+"em",F=(R/1e3).toFixed(3)+"em",P=new ll([M],{width:B,height:F,viewBox:"0 0 "+p+" "+R}),z=Be.makeSvgSpan([],[P],i);z.height=R/1e3,z.style.width=B,z.style.height=F,k.push({type:"elem",elem:z})}else{if(k.push(p7(f,m,a)),k.push(o3),u===null){var $=_-y-w+2*R7;k.push(m7(h,$,i))}else{var H=(_-y-w-C)/2+2*R7;k.push(m7(h,H,i)),k.push(o3),k.push(p7(u,m,a)),k.push(o3),k.push(m7(h,H,i))}k.push(o3),k.push(p7(l,m,a))}var Q=i.havingBaseStyle(tr.TEXT),j=Be.makeVList({positionType:"bottom",positionData:D,children:k},Q);return V7(Be.makeSpan(["delimsizing","mult"],[j],Q),tr.TEXT,i,s)},"makeStackedDelim"),g7=80,y7=.08,v7=o(function(e,r,n,i,a){var s=Ebe(e,i,n),l=new Kl(e,s),u=new ll([l],{width:"400em",height:kt(r),viewBox:"0 0 400000 "+n,preserveAspectRatio:"xMinYMin slice"});return Be.makeSvgSpan(["hide-tail"],[u],a)},"sqrtSvg"),b4e=o(function(e,r){var n=r.havingBaseSizing(),i=dG("\\surd",e*n.sizeMultiplier,fG,n),a=n.sizeMultiplier,s=Math.max(0,r.minRuleThickness-r.fontMetrics().sqrtRuleThickness),l,u=0,h=0,f=0,d;return i.type==="small"?(f=1e3+1e3*s+g7,e<1?a=1:e<1.4&&(a=.7),u=(1+s+y7)/a,h=(1+s)/a,l=v7("sqrtMain",u,f,s,r),l.style.minWidth="0.853em",d=.833/a):i.type==="large"?(f=(1e3+g7)*$y[i.size],h=($y[i.size]+s)/a,u=($y[i.size]+s+y7)/a,l=v7("sqrtSize"+i.size,u,f,s,r),l.style.minWidth="1.02em",d=1/a):(u=e+s+y7,h=e+s,f=Math.floor(1e3*e+s)+g7,l=v7("sqrtTall",u,f,s,r),l.style.minWidth="0.742em",d=1.056),l.height=h,l.style.height=kt(u),{span:l,advanceWidth:d,ruleWidth:(r.fontMetrics().sqrtRuleThickness+s)*a}},"makeSqrtImage"),uG=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230A","\u230B","\\lceil","\\rceil","\u2308","\u2309","\\surd"],w4e=["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27EE","\u27EF","\\lmoustache","\\rmoustache","\u23B0","\u23B1"],hG=["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],$y=[0,1.2,1.8,2.4,3],T4e=o(function(e,r,n,i,a){if(e==="<"||e==="\\lt"||e==="\u27E8"?e="\\langle":(e===">"||e==="\\gt"||e==="\u27E9")&&(e="\\rangle"),Jt.contains(uG,e)||Jt.contains(hG,e))return lG(e,r,!1,n,i,a);if(Jt.contains(w4e,e))return cG(e,$y[r],!1,n,i,a);throw new gt("Illegal delimiter: '"+e+"'")},"makeSizedDelim"),k4e=[{type:"small",style:tr.SCRIPTSCRIPT},{type:"small",style:tr.SCRIPT},{type:"small",style:tr.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],E4e=[{type:"small",style:tr.SCRIPTSCRIPT},{type:"small",style:tr.SCRIPT},{type:"small",style:tr.TEXT},{type:"stack"}],fG=[{type:"small",style:tr.SCRIPTSCRIPT},{type:"small",style:tr.SCRIPT},{type:"small",style:tr.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],S4e=o(function(e){if(e.type==="small")return"Main-Regular";if(e.type==="large")return"Size"+e.size+"-Regular";if(e.type==="stack")return"Size4-Regular";throw new Error("Add support for delim type '"+e.type+"' here.")},"delimTypeToFont"),dG=o(function(e,r,n,i){for(var a=Math.min(2,3-i.style.size),s=a;sr)return n[s]}return n[n.length-1]},"traverseSequence"),pG=o(function(e,r,n,i,a,s){e==="<"||e==="\\lt"||e==="\u27E8"?e="\\langle":(e===">"||e==="\\gt"||e==="\u27E9")&&(e="\\rangle");var l;Jt.contains(hG,e)?l=k4e:Jt.contains(uG,e)?l=fG:l=E4e;var u=dG(e,r,l,i);return u.type==="small"?g4e(e,u.style,n,i,a,s):u.type==="large"?lG(e,u.size,n,i,a,s):cG(e,r,n,i,a,s)},"makeCustomSizedDelim"),C4e=o(function(e,r,n,i,a,s){var l=i.fontMetrics().axisHeight*i.sizeMultiplier,u=901,h=5/i.fontMetrics().ptPerEm,f=Math.max(r-l,n+l),d=Math.max(f/500*u,2*f-h);return pG(e,d,!0,i,a,s)},"makeLeftRightDelim"),ou={sqrtImage:b4e,sizedDelim:T4e,sizeToMaxHeight:$y,customSizedDelim:pG,leftRightDelim:C4e},xz={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},A4e=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230A","\u230B","\\lceil","\\rceil","\u2308","\u2309","<",">","\\langle","\u27E8","\\rangle","\u27E9","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27EE","\u27EF","\\lmoustache","\\rmoustache","\u23B0","\u23B1","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];o(k3,"checkDelimiter");Nt({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],props:{numArgs:1,argTypes:["primitive"]},handler:o((t,e)=>{var r=k3(e[0],t);return{type:"delimsizing",mode:t.parser.mode,size:xz[t.funcName].size,mclass:xz[t.funcName].mclass,delim:r.text}},"handler"),htmlBuilder:o((t,e)=>t.delim==="."?Be.makeSpan([t.mclass]):ou.sizedDelim(t.delim,t.size,e,t.mode,[t.mclass]),"htmlBuilder"),mathmlBuilder:o(t=>{var e=[];t.delim!=="."&&e.push(Co(t.delim,t.mode));var r=new dt.MathNode("mo",e);t.mclass==="mopen"||t.mclass==="mclose"?r.setAttribute("fence","true"):r.setAttribute("fence","false"),r.setAttribute("stretchy","true");var n=kt(ou.sizeToMaxHeight[t.size]);return r.setAttribute("minsize",n),r.setAttribute("maxsize",n),r},"mathmlBuilder")});o(bz,"assertParsed");Nt({type:"leftright-right",names:["\\right"],props:{numArgs:1,primitive:!0},handler:o((t,e)=>{var r=t.parser.gullet.macros.get("\\current@color");if(r&&typeof r!="string")throw new gt("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:t.parser.mode,delim:k3(e[0],t).text,color:r}},"handler")});Nt({type:"leftright",names:["\\left"],props:{numArgs:1,primitive:!0},handler:o((t,e)=>{var r=k3(e[0],t),n=t.parser;++n.leftrightDepth;var i=n.parseExpression(!1);--n.leftrightDepth,n.expect("\\right",!1);var a=xr(n.parseFunction(),"leftright-right");return{type:"leftright",mode:n.mode,body:i,left:r.text,right:a.delim,rightColor:a.color}},"handler"),htmlBuilder:o((t,e)=>{bz(t);for(var r=Pi(t.body,e,!0,["mopen","mclose"]),n=0,i=0,a=!1,s=0;s{bz(t);var r=ks(t.body,e);if(t.left!=="."){var n=new dt.MathNode("mo",[Co(t.left,t.mode)]);n.setAttribute("fence","true"),r.unshift(n)}if(t.right!=="."){var i=new dt.MathNode("mo",[Co(t.right,t.mode)]);i.setAttribute("fence","true"),t.rightColor&&i.setAttribute("mathcolor",t.rightColor),r.push(i)}return F7(r)},"mathmlBuilder")});Nt({type:"middle",names:["\\middle"],props:{numArgs:1,primitive:!0},handler:o((t,e)=>{var r=k3(e[0],t);if(!t.parser.leftrightDepth)throw new gt("\\middle without preceding \\left",r);return{type:"middle",mode:t.parser.mode,delim:r.text}},"handler"),htmlBuilder:o((t,e)=>{var r;if(t.delim===".")r=Hy(e,[]);else{r=ou.sizedDelim(t.delim,1,e,t.mode,[]);var n={delim:t.delim,options:e};r.isMiddle=n}return r},"htmlBuilder"),mathmlBuilder:o((t,e)=>{var r=t.delim==="\\vert"||t.delim==="|"?Co("|","text"):Co(t.delim,t.mode),n=new dt.MathNode("mo",[r]);return n.setAttribute("fence","true"),n.setAttribute("lspace","0.05em"),n.setAttribute("rspace","0.05em"),n},"mathmlBuilder")});U7=o((t,e)=>{var r=Be.wrapFragment(Fr(t.body,e),e),n=t.label.slice(1),i=e.sizeMultiplier,a,s=0,l=Jt.isCharacterBox(t.body);if(n==="sout")a=Be.makeSpan(["stretchy","sout"]),a.height=e.fontMetrics().defaultRuleThickness/i,s=-.5*e.fontMetrics().xHeight;else if(n==="phase"){var u=ti({number:.6,unit:"pt"},e),h=ti({number:.35,unit:"ex"},e),f=e.havingBaseSizing();i=i/f.sizeMultiplier;var d=r.height+r.depth+u+h;r.style.paddingLeft=kt(d/2+u);var p=Math.floor(1e3*d*i),m=Tbe(p),g=new ll([new Kl("phase",m)],{width:"400em",height:kt(p/1e3),viewBox:"0 0 400000 "+p,preserveAspectRatio:"xMinYMin slice"});a=Be.makeSvgSpan(["hide-tail"],[g],e),a.style.height=kt(d),s=r.depth+u+h}else{/cancel/.test(n)?l||r.classes.push("cancel-pad"):n==="angl"?r.classes.push("anglpad"):r.classes.push("boxpad");var y=0,v=0,x=0;/box/.test(n)?(x=Math.max(e.fontMetrics().fboxrule,e.minRuleThickness),y=e.fontMetrics().fboxsep+(n==="colorbox"?0:x),v=y):n==="angl"?(x=Math.max(e.fontMetrics().defaultRuleThickness,e.minRuleThickness),y=4*x,v=Math.max(0,.25-r.depth)):(y=l?.2:0,v=y),a=cu.encloseSpan(r,n,y,v,e),/fbox|boxed|fcolorbox/.test(n)?(a.style.borderStyle="solid",a.style.borderWidth=kt(x)):n==="angl"&&x!==.049&&(a.style.borderTopWidth=kt(x),a.style.borderRightWidth=kt(x)),s=r.depth+v,t.backgroundColor&&(a.style.backgroundColor=t.backgroundColor,t.borderColor&&(a.style.borderColor=t.borderColor))}var b;if(t.backgroundColor)b=Be.makeVList({positionType:"individualShift",children:[{type:"elem",elem:a,shift:s},{type:"elem",elem:r,shift:0}]},e);else{var w=/cancel|phase/.test(n)?["svg-align"]:[];b=Be.makeVList({positionType:"individualShift",children:[{type:"elem",elem:r,shift:0},{type:"elem",elem:a,shift:s,wrapperClasses:w}]},e)}return/cancel/.test(n)&&(b.height=r.height,b.depth=r.depth),/cancel/.test(n)&&!l?Be.makeSpan(["mord","cancel-lap"],[b],e):Be.makeSpan(["mord"],[b],e)},"htmlBuilder$7"),H7=o((t,e)=>{var r=0,n=new dt.MathNode(t.label.indexOf("colorbox")>-1?"mpadded":"menclose",[yn(t.body,e)]);switch(t.label){case"\\cancel":n.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":n.setAttribute("notation","downdiagonalstrike");break;case"\\phase":n.setAttribute("notation","phasorangle");break;case"\\sout":n.setAttribute("notation","horizontalstrike");break;case"\\fbox":n.setAttribute("notation","box");break;case"\\angl":n.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(r=e.fontMetrics().fboxsep*e.fontMetrics().ptPerEm,n.setAttribute("width","+"+2*r+"pt"),n.setAttribute("height","+"+2*r+"pt"),n.setAttribute("lspace",r+"pt"),n.setAttribute("voffset",r+"pt"),t.label==="\\fcolorbox"){var i=Math.max(e.fontMetrics().fboxrule,e.minRuleThickness);n.setAttribute("style","border: "+i+"em solid "+String(t.borderColor))}break;case"\\xcancel":n.setAttribute("notation","updiagonalstrike downdiagonalstrike");break}return t.backgroundColor&&n.setAttribute("mathbackground",t.backgroundColor),n},"mathmlBuilder$6");Nt({type:"enclose",names:["\\colorbox"],props:{numArgs:2,allowedInText:!0,argTypes:["color","text"]},handler(t,e,r){var{parser:n,funcName:i}=t,a=xr(e[0],"color-token").color,s=e[1];return{type:"enclose",mode:n.mode,label:i,backgroundColor:a,body:s}},htmlBuilder:U7,mathmlBuilder:H7});Nt({type:"enclose",names:["\\fcolorbox"],props:{numArgs:3,allowedInText:!0,argTypes:["color","color","text"]},handler(t,e,r){var{parser:n,funcName:i}=t,a=xr(e[0],"color-token").color,s=xr(e[1],"color-token").color,l=e[2];return{type:"enclose",mode:n.mode,label:i,backgroundColor:s,borderColor:a,body:l}},htmlBuilder:U7,mathmlBuilder:H7});Nt({type:"enclose",names:["\\fbox"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!0},handler(t,e){var{parser:r}=t;return{type:"enclose",mode:r.mode,label:"\\fbox",body:e[0]}}});Nt({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\sout","\\phase"],props:{numArgs:1},handler(t,e){var{parser:r,funcName:n}=t,i=e[0];return{type:"enclose",mode:r.mode,label:n,body:i}},htmlBuilder:U7,mathmlBuilder:H7});Nt({type:"enclose",names:["\\angl"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!1},handler(t,e){var{parser:r}=t;return{type:"enclose",mode:r.mode,label:"\\angl",body:e[0]}}});mG={};o(Ql,"defineEnvironment");gG={};o(fe,"defineMacro");o(wz,"getHLines");E3=o(t=>{var e=t.parser.settings;if(!e.displayMode)throw new gt("{"+t.envName+"} can be used only in display mode.")},"validateAmsEnvironmentContext");o(W7,"getAutoTag");o(ph,"parseArray");o(q7,"dCellStyle");Zl=o(function(e,r){var n,i,a=e.body.length,s=e.hLinesBeforeRow,l=0,u=new Array(a),h=[],f=Math.max(r.fontMetrics().arrayRuleWidth,r.minRuleThickness),d=1/r.fontMetrics().ptPerEm,p=5*d;if(e.colSeparationType&&e.colSeparationType==="small"){var m=r.havingStyle(tr.SCRIPT).sizeMultiplier;p=.2778*(m/r.sizeMultiplier)}var g=e.colSeparationType==="CD"?ti({number:3,unit:"ex"},r):12*d,y=3*d,v=e.arraystretch*g,x=.7*v,b=.3*v,w=0;function C(ae){for(var Oe=0;Oe0&&(w+=.25),h.push({pos:w,isDashed:ae[Oe]})}for(o(C,"setHLinePos"),C(s[0]),n=0;n0&&(D+=b,Aae))for(n=0;n=l)){var le=void 0;(i>0||e.hskipBeforeAndAfter)&&(le=Jt.deflt(H.pregap,p),le!==0&&(O=Be.makeSpan(["arraycolsep"],[]),O.style.width=kt(le),R.push(O)));var he=[];for(n=0;n0){for(var J=Be.makeLineSpan("hline",r,f),se=Be.makeLineSpan("hdashline",r,f),ue=[{type:"elem",elem:u,shift:0}];h.length>0;){var Z=h.pop(),Se=Z.pos-k;Z.isDashed?ue.push({type:"elem",elem:se,shift:Se}):ue.push({type:"elem",elem:J,shift:Se})}u=Be.makeVList({positionType:"individualShift",children:ue},r)}if(B.length===0)return Be.makeSpan(["mord"],[u],r);var ce=Be.makeVList({positionType:"individualShift",children:B},r);return ce=Be.makeSpan(["tag"],[ce],r),Be.makeFragment([u,ce])},"htmlBuilder"),_4e={c:"center ",l:"left ",r:"right "},Jl=o(function(e,r){for(var n=[],i=new dt.MathNode("mtd",[],["mtr-glue"]),a=new dt.MathNode("mtd",[],["mml-eqn-num"]),s=0;s0){var g=e.cols,y="",v=!1,x=0,b=g.length;g[0].type==="separator"&&(p+="top ",x=1),g[g.length-1].type==="separator"&&(p+="bottom ",b-=1);for(var w=x;w0?"left ":"",p+=S[S.length-1].length>0?"right ":"";for(var _=1;_-1?"alignat":"align",a=e.envName==="split",s=ph(e.parser,{cols:n,addJot:!0,autoTag:a?void 0:W7(e.envName),emptySingleRow:!0,colSeparationType:i,maxNumCols:a?2:void 0,leqno:e.parser.settings.leqno},"display"),l,u=0,h={type:"ordgroup",mode:e.mode,body:[]};if(r[0]&&r[0].type==="ordgroup"){for(var f="",d=0;d0&&m&&(v=1),n[g]={type:"align",align:y,pregap:v,postgap:0}}return s.colSeparationType=m?"align":"alignat",s},"alignedHandler");Ql({type:"array",names:["array","darray"],props:{numArgs:1},handler(t,e){var r=w3(e[0]),n=r?[e[0]]:xr(e[0],"ordgroup").body,i=n.map(function(s){var l=z7(s),u=l.text;if("lcr".indexOf(u)!==-1)return{type:"align",align:u};if(u==="|")return{type:"separator",separator:"|"};if(u===":")return{type:"separator",separator:":"};throw new gt("Unknown column alignment: "+u,s)}),a={cols:i,hskipBeforeAndAfter:!0,maxNumCols:i.length};return ph(t.parser,a,q7(t.envName))},htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(t){var e={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[t.envName.replace("*","")],r="c",n={hskipBeforeAndAfter:!1,cols:[{type:"align",align:r}]};if(t.envName.charAt(t.envName.length-1)==="*"){var i=t.parser;if(i.consumeSpaces(),i.fetch().text==="["){if(i.consume(),i.consumeSpaces(),r=i.fetch().text,"lcr".indexOf(r)===-1)throw new gt("Expected l or c or r",i.nextToken);i.consume(),i.consumeSpaces(),i.expect("]"),i.consume(),n.cols=[{type:"align",align:r}]}}var a=ph(t.parser,n,q7(t.envName)),s=Math.max(0,...a.body.map(l=>l.length));return a.cols=new Array(s).fill({type:"align",align:r}),e?{type:"leftright",mode:t.mode,body:[a],left:e[0],right:e[1],rightColor:void 0}:a},htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(t){var e={arraystretch:.5},r=ph(t.parser,e,"script");return r.colSeparationType="small",r},htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["subarray"],props:{numArgs:1},handler(t,e){var r=w3(e[0]),n=r?[e[0]]:xr(e[0],"ordgroup").body,i=n.map(function(s){var l=z7(s),u=l.text;if("lc".indexOf(u)!==-1)return{type:"align",align:u};throw new gt("Unknown column alignment: "+u,s)});if(i.length>1)throw new gt("{subarray} can contain only one column");var a={cols:i,hskipBeforeAndAfter:!1,arraystretch:.5};if(a=ph(t.parser,a,"script"),a.body.length>0&&a.body[0].length>1)throw new gt("{subarray} can contain only one column");return a},htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(t){var e={arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},r=ph(t.parser,e,q7(t.envName));return{type:"leftright",mode:t.mode,body:[r],left:t.envName.indexOf("r")>-1?".":"\\{",right:t.envName.indexOf("r")>-1?"\\}":".",rightColor:void 0}},htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:yG,htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(t){Jt.contains(["gather","gather*"],t.envName)&&E3(t);var e={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:W7(t.envName),emptySingleRow:!0,leqno:t.parser.settings.leqno};return ph(t.parser,e,"display")},htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:yG,htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(t){E3(t);var e={autoTag:W7(t.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:t.parser.settings.leqno};return ph(t.parser,e,"display")},htmlBuilder:Zl,mathmlBuilder:Jl});Ql({type:"array",names:["CD"],props:{numArgs:0},handler(t){return E3(t),p4e(t.parser)},htmlBuilder:Zl,mathmlBuilder:Jl});fe("\\nonumber","\\gdef\\@eqnsw{0}");fe("\\notag","\\nonumber");Nt({type:"text",names:["\\hline","\\hdashline"],props:{numArgs:0,allowedInText:!0,allowedInMath:!0},handler(t,e){throw new gt(t.funcName+" valid only within array environment")}});Tz=mG;Nt({type:"environment",names:["\\begin","\\end"],props:{numArgs:1,argTypes:["text"]},handler(t,e){var{parser:r,funcName:n}=t,i=e[0];if(i.type!=="ordgroup")throw new gt("Invalid environment name",i);for(var a="",s=0;s{var r=t.font,n=e.withFont(r);return Fr(t.body,n)},"htmlBuilder$5"),xG=o((t,e)=>{var r=t.font,n=e.withFont(r);return yn(t.body,n)},"mathmlBuilder$4"),kz={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak","\\bm":"\\boldsymbol"};Nt({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],props:{numArgs:1,allowedInArgument:!0},handler:o((t,e)=>{var{parser:r,funcName:n}=t,i=g3(e[0]),a=n;return a in kz&&(a=kz[a]),{type:"font",mode:r.mode,font:a.slice(1),body:i}},"handler"),htmlBuilder:vG,mathmlBuilder:xG});Nt({type:"mclass",names:["\\boldsymbol","\\bm"],props:{numArgs:1},handler:o((t,e)=>{var{parser:r}=t,n=e[0],i=Jt.isCharacterBox(n);return{type:"mclass",mode:r.mode,mclass:T3(n),body:[{type:"font",mode:r.mode,font:"boldsymbol",body:n}],isCharacterBox:i}},"handler")});Nt({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],props:{numArgs:0,allowedInText:!0},handler:o((t,e)=>{var{parser:r,funcName:n,breakOnTokenText:i}=t,{mode:a}=r,s=r.parseExpression(!0,i),l="math"+n.slice(1);return{type:"font",mode:a,font:l,body:{type:"ordgroup",mode:r.mode,body:s}}},"handler"),htmlBuilder:vG,mathmlBuilder:xG});bG=o((t,e)=>{var r=e;return t==="display"?r=r.id>=tr.SCRIPT.id?r.text():tr.DISPLAY:t==="text"&&r.size===tr.DISPLAY.size?r=tr.TEXT:t==="script"?r=tr.SCRIPT:t==="scriptscript"&&(r=tr.SCRIPTSCRIPT),r},"adjustStyle"),Y7=o((t,e)=>{var r=bG(t.size,e.style),n=r.fracNum(),i=r.fracDen(),a;a=e.havingStyle(n);var s=Fr(t.numer,a,e);if(t.continued){var l=8.5/e.fontMetrics().ptPerEm,u=3.5/e.fontMetrics().ptPerEm;s.height=s.height0?g=3*p:g=7*p,y=e.fontMetrics().denom1):(d>0?(m=e.fontMetrics().num2,g=p):(m=e.fontMetrics().num3,g=3*p),y=e.fontMetrics().denom2);var v;if(f){var b=e.fontMetrics().axisHeight;m-s.depth-(b+.5*d){var r=new dt.MathNode("mfrac",[yn(t.numer,e),yn(t.denom,e)]);if(!t.hasBarLine)r.setAttribute("linethickness","0px");else if(t.barSize){var n=ti(t.barSize,e);r.setAttribute("linethickness",kt(n))}var i=bG(t.size,e.style);if(i.size!==e.style.size){r=new dt.MathNode("mstyle",[r]);var a=i.size===tr.DISPLAY.size?"true":"false";r.setAttribute("displaystyle",a),r.setAttribute("scriptlevel","0")}if(t.leftDelim!=null||t.rightDelim!=null){var s=[];if(t.leftDelim!=null){var l=new dt.MathNode("mo",[new dt.TextNode(t.leftDelim.replace("\\",""))]);l.setAttribute("fence","true"),s.push(l)}if(s.push(r),t.rightDelim!=null){var u=new dt.MathNode("mo",[new dt.TextNode(t.rightDelim.replace("\\",""))]);u.setAttribute("fence","true"),s.push(u)}return F7(s)}return r},"mathmlBuilder$3");Nt({type:"genfrac",names:["\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],props:{numArgs:2,allowedInArgument:!0},handler:o((t,e)=>{var{parser:r,funcName:n}=t,i=e[0],a=e[1],s,l=null,u=null,h="auto";switch(n){case"\\dfrac":case"\\frac":case"\\tfrac":s=!0;break;case"\\\\atopfrac":s=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":s=!1,l="(",u=")";break;case"\\\\bracefrac":s=!1,l="\\{",u="\\}";break;case"\\\\brackfrac":s=!1,l="[",u="]";break;default:throw new Error("Unrecognized genfrac command")}switch(n){case"\\dfrac":case"\\dbinom":h="display";break;case"\\tfrac":case"\\tbinom":h="text";break}return{type:"genfrac",mode:r.mode,continued:!1,numer:i,denom:a,hasBarLine:s,leftDelim:l,rightDelim:u,size:h,barSize:null}},"handler"),htmlBuilder:Y7,mathmlBuilder:X7});Nt({type:"genfrac",names:["\\cfrac"],props:{numArgs:2},handler:o((t,e)=>{var{parser:r,funcName:n}=t,i=e[0],a=e[1];return{type:"genfrac",mode:r.mode,continued:!0,numer:i,denom:a,hasBarLine:!0,leftDelim:null,rightDelim:null,size:"display",barSize:null}},"handler")});Nt({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],props:{numArgs:0,infix:!0},handler(t){var{parser:e,funcName:r,token:n}=t,i;switch(r){case"\\over":i="\\frac";break;case"\\choose":i="\\binom";break;case"\\atop":i="\\\\atopfrac";break;case"\\brace":i="\\\\bracefrac";break;case"\\brack":i="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:e.mode,replaceWith:i,token:n}}});Ez=["display","text","script","scriptscript"],Sz=o(function(e){var r=null;return e.length>0&&(r=e,r=r==="."?null:r),r},"delimFromValue");Nt({type:"genfrac",names:["\\genfrac"],props:{numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"]},handler(t,e){var{parser:r}=t,n=e[4],i=e[5],a=g3(e[0]),s=a.type==="atom"&&a.family==="open"?Sz(a.text):null,l=g3(e[1]),u=l.type==="atom"&&l.family==="close"?Sz(l.text):null,h=xr(e[2],"size"),f,d=null;h.isBlank?f=!0:(d=h.value,f=d.number>0);var p="auto",m=e[3];if(m.type==="ordgroup"){if(m.body.length>0){var g=xr(m.body[0],"textord");p=Ez[Number(g.text)]}}else m=xr(m,"textord"),p=Ez[Number(m.text)];return{type:"genfrac",mode:r.mode,numer:n,denom:i,continued:!1,hasBarLine:f,barSize:d,leftDelim:s,rightDelim:u,size:p}},htmlBuilder:Y7,mathmlBuilder:X7});Nt({type:"infix",names:["\\above"],props:{numArgs:1,argTypes:["size"],infix:!0},handler(t,e){var{parser:r,funcName:n,token:i}=t;return{type:"infix",mode:r.mode,replaceWith:"\\\\abovefrac",size:xr(e[0],"size").value,token:i}}});Nt({type:"genfrac",names:["\\\\abovefrac"],props:{numArgs:3,argTypes:["math","size","math"]},handler:o((t,e)=>{var{parser:r,funcName:n}=t,i=e[0],a=obe(xr(e[1],"infix").size),s=e[2],l=a.number>0;return{type:"genfrac",mode:r.mode,numer:i,denom:s,continued:!1,hasBarLine:l,barSize:a,leftDelim:null,rightDelim:null,size:"auto"}},"handler"),htmlBuilder:Y7,mathmlBuilder:X7});wG=o((t,e)=>{var r=e.style,n,i;t.type==="supsub"?(n=t.sup?Fr(t.sup,e.havingStyle(r.sup()),e):Fr(t.sub,e.havingStyle(r.sub()),e),i=xr(t.base,"horizBrace")):i=xr(t,"horizBrace");var a=Fr(i.base,e.havingBaseStyle(tr.DISPLAY)),s=cu.svgSpan(i,e),l;if(i.isOver?(l=Be.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:a},{type:"kern",size:.1},{type:"elem",elem:s}]},e),l.children[0].children[0].children[1].classes.push("svg-align")):(l=Be.makeVList({positionType:"bottom",positionData:a.depth+.1+s.height,children:[{type:"elem",elem:s},{type:"kern",size:.1},{type:"elem",elem:a}]},e),l.children[0].children[0].children[0].classes.push("svg-align")),n){var u=Be.makeSpan(["mord",i.isOver?"mover":"munder"],[l],e);i.isOver?l=Be.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:u},{type:"kern",size:.2},{type:"elem",elem:n}]},e):l=Be.makeVList({positionType:"bottom",positionData:u.depth+.2+n.height+n.depth,children:[{type:"elem",elem:n},{type:"kern",size:.2},{type:"elem",elem:u}]},e)}return Be.makeSpan(["mord",i.isOver?"mover":"munder"],[l],e)},"htmlBuilder$3"),D4e=o((t,e)=>{var r=cu.mathMLnode(t.label);return new dt.MathNode(t.isOver?"mover":"munder",[yn(t.base,e),r])},"mathmlBuilder$2");Nt({type:"horizBrace",names:["\\overbrace","\\underbrace"],props:{numArgs:1},handler(t,e){var{parser:r,funcName:n}=t;return{type:"horizBrace",mode:r.mode,label:n,isOver:/^\\over/.test(n),base:e[0]}},htmlBuilder:wG,mathmlBuilder:D4e});Nt({type:"href",names:["\\href"],props:{numArgs:2,argTypes:["url","original"],allowedInText:!0},handler:o((t,e)=>{var{parser:r}=t,n=e[1],i=xr(e[0],"url").url;return r.settings.isTrusted({command:"\\href",url:i})?{type:"href",mode:r.mode,href:i,body:di(n)}:r.formatUnsupportedCmd("\\href")},"handler"),htmlBuilder:o((t,e)=>{var r=Pi(t.body,e,!1);return Be.makeAnchor(t.href,[],r,e)},"htmlBuilder"),mathmlBuilder:o((t,e)=>{var r=dh(t.body,e);return r instanceof ws||(r=new ws("mrow",[r])),r.setAttribute("href",t.href),r},"mathmlBuilder")});Nt({type:"href",names:["\\url"],props:{numArgs:1,argTypes:["url"],allowedInText:!0},handler:o((t,e)=>{var{parser:r}=t,n=xr(e[0],"url").url;if(!r.settings.isTrusted({command:"\\url",url:n}))return r.formatUnsupportedCmd("\\url");for(var i=[],a=0;a{var{parser:r,funcName:n,token:i}=t,a=xr(e[0],"raw").string,s=e[1];r.settings.strict&&r.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");var l,u={};switch(n){case"\\htmlClass":u.class=a,l={command:"\\htmlClass",class:a};break;case"\\htmlId":u.id=a,l={command:"\\htmlId",id:a};break;case"\\htmlStyle":u.style=a,l={command:"\\htmlStyle",style:a};break;case"\\htmlData":{for(var h=a.split(","),f=0;f{var r=Pi(t.body,e,!1),n=["enclosing"];t.attributes.class&&n.push(...t.attributes.class.trim().split(/\s+/));var i=Be.makeSpan(n,r,e);for(var a in t.attributes)a!=="class"&&t.attributes.hasOwnProperty(a)&&i.setAttribute(a,t.attributes[a]);return i},"htmlBuilder"),mathmlBuilder:o((t,e)=>dh(t.body,e),"mathmlBuilder")});Nt({type:"htmlmathml",names:["\\html@mathml"],props:{numArgs:2,allowedInText:!0},handler:o((t,e)=>{var{parser:r}=t;return{type:"htmlmathml",mode:r.mode,html:di(e[0]),mathml:di(e[1])}},"handler"),htmlBuilder:o((t,e)=>{var r=Pi(t.html,e,!1);return Be.makeFragment(r)},"htmlBuilder"),mathmlBuilder:o((t,e)=>dh(t.mathml,e),"mathmlBuilder")});x7=o(function(e){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(e))return{number:+e,unit:"bp"};var r=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(e);if(!r)throw new gt("Invalid size: '"+e+"' in \\includegraphics");var n={number:+(r[1]+r[2]),unit:r[3]};if(!zz(n))throw new gt("Invalid unit: '"+n.unit+"' in \\includegraphics.");return n},"sizeData");Nt({type:"includegraphics",names:["\\includegraphics"],props:{numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1},handler:o((t,e,r)=>{var{parser:n}=t,i={number:0,unit:"em"},a={number:.9,unit:"em"},s={number:0,unit:"em"},l="";if(r[0])for(var u=xr(r[0],"raw").string,h=u.split(","),f=0;f{var r=ti(t.height,e),n=0;t.totalheight.number>0&&(n=ti(t.totalheight,e)-r);var i=0;t.width.number>0&&(i=ti(t.width,e));var a={height:kt(r+n)};i>0&&(a.width=kt(i)),n>0&&(a.verticalAlign=kt(-n));var s=new S7(t.src,t.alt,a);return s.height=r,s.depth=n,s},"htmlBuilder"),mathmlBuilder:o((t,e)=>{var r=new dt.MathNode("mglyph",[]);r.setAttribute("alt",t.alt);var n=ti(t.height,e),i=0;if(t.totalheight.number>0&&(i=ti(t.totalheight,e)-n,r.setAttribute("valign",kt(-i))),r.setAttribute("height",kt(n+i)),t.width.number>0){var a=ti(t.width,e);r.setAttribute("width",kt(a))}return r.setAttribute("src",t.src),r},"mathmlBuilder")});Nt({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],props:{numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0},handler(t,e){var{parser:r,funcName:n}=t,i=xr(e[0],"size");if(r.settings.strict){var a=n[1]==="m",s=i.value.unit==="mu";a?(s||r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" supports only mu units, "+("not "+i.value.unit+" units")),r.mode!=="math"&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" works only in math mode")):s&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" doesn't support mu units")}return{type:"kern",mode:r.mode,dimension:i.value}},htmlBuilder(t,e){return Be.makeGlue(t.dimension,e)},mathmlBuilder(t,e){var r=ti(t.dimension,e);return new dt.SpaceNode(r)}});Nt({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],props:{numArgs:1,allowedInText:!0},handler:o((t,e)=>{var{parser:r,funcName:n}=t,i=e[0];return{type:"lap",mode:r.mode,alignment:n.slice(5),body:i}},"handler"),htmlBuilder:o((t,e)=>{var r;t.alignment==="clap"?(r=Be.makeSpan([],[Fr(t.body,e)]),r=Be.makeSpan(["inner"],[r],e)):r=Be.makeSpan(["inner"],[Fr(t.body,e)]);var n=Be.makeSpan(["fix"],[]),i=Be.makeSpan([t.alignment],[r,n],e),a=Be.makeSpan(["strut"]);return a.style.height=kt(i.height+i.depth),i.depth&&(a.style.verticalAlign=kt(-i.depth)),i.children.unshift(a),i=Be.makeSpan(["thinbox"],[i],e),Be.makeSpan(["mord","vbox"],[i],e)},"htmlBuilder"),mathmlBuilder:o((t,e)=>{var r=new dt.MathNode("mpadded",[yn(t.body,e)]);if(t.alignment!=="rlap"){var n=t.alignment==="llap"?"-1":"-0.5";r.setAttribute("lspace",n+"width")}return r.setAttribute("width","0px"),r},"mathmlBuilder")});Nt({type:"styling",names:["\\(","$"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(t,e){var{funcName:r,parser:n}=t,i=n.mode;n.switchMode("math");var a=r==="\\("?"\\)":"$",s=n.parseExpression(!1,a);return n.expect(a),n.switchMode(i),{type:"styling",mode:n.mode,style:"text",body:s}}});Nt({type:"text",names:["\\)","\\]"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(t,e){throw new gt("Mismatched "+t.funcName)}});Cz=o((t,e)=>{switch(e.style.size){case tr.DISPLAY.size:return t.display;case tr.TEXT.size:return t.text;case tr.SCRIPT.size:return t.script;case tr.SCRIPTSCRIPT.size:return t.scriptscript;default:return t.text}},"chooseMathStyle");Nt({type:"mathchoice",names:["\\mathchoice"],props:{numArgs:4,primitive:!0},handler:o((t,e)=>{var{parser:r}=t;return{type:"mathchoice",mode:r.mode,display:di(e[0]),text:di(e[1]),script:di(e[2]),scriptscript:di(e[3])}},"handler"),htmlBuilder:o((t,e)=>{var r=Cz(t,e),n=Pi(r,e,!1);return Be.makeFragment(n)},"htmlBuilder"),mathmlBuilder:o((t,e)=>{var r=Cz(t,e);return dh(r,e)},"mathmlBuilder")});TG=o((t,e,r,n,i,a,s)=>{t=Be.makeSpan([],[t]);var l=r&&Jt.isCharacterBox(r),u,h;if(e){var f=Fr(e,n.havingStyle(i.sup()),n);h={elem:f,kern:Math.max(n.fontMetrics().bigOpSpacing1,n.fontMetrics().bigOpSpacing3-f.depth)}}if(r){var d=Fr(r,n.havingStyle(i.sub()),n);u={elem:d,kern:Math.max(n.fontMetrics().bigOpSpacing2,n.fontMetrics().bigOpSpacing4-d.height)}}var p;if(h&&u){var m=n.fontMetrics().bigOpSpacing5+u.elem.height+u.elem.depth+u.kern+t.depth+s;p=Be.makeVList({positionType:"bottom",positionData:m,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:u.elem,marginLeft:kt(-a)},{type:"kern",size:u.kern},{type:"elem",elem:t},{type:"kern",size:h.kern},{type:"elem",elem:h.elem,marginLeft:kt(a)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}else if(u){var g=t.height-s;p=Be.makeVList({positionType:"top",positionData:g,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:u.elem,marginLeft:kt(-a)},{type:"kern",size:u.kern},{type:"elem",elem:t}]},n)}else if(h){var y=t.depth+s;p=Be.makeVList({positionType:"bottom",positionData:y,children:[{type:"elem",elem:t},{type:"kern",size:h.kern},{type:"elem",elem:h.elem,marginLeft:kt(a)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}else return t;var v=[p];if(u&&a!==0&&!l){var x=Be.makeSpan(["mspace"],[],n);x.style.marginRight=kt(a),v.unshift(x)}return Be.makeSpan(["mop","op-limits"],v,n)},"assembleSupSub"),kG=["\\smallint"],m0=o((t,e)=>{var r,n,i=!1,a;t.type==="supsub"?(r=t.sup,n=t.sub,a=xr(t.base,"op"),i=!0):a=xr(t,"op");var s=e.style,l=!1;s.size===tr.DISPLAY.size&&a.symbol&&!Jt.contains(kG,a.name)&&(l=!0);var u;if(a.symbol){var h=l?"Size2-Regular":"Size1-Regular",f="";if((a.name==="\\oiint"||a.name==="\\oiiint")&&(f=a.name.slice(1),a.name=f==="oiint"?"\\iint":"\\iiint"),u=Be.makeSymbol(a.name,h,"math",e,["mop","op-symbol",l?"large-op":"small-op"]),f.length>0){var d=u.italic,p=Be.staticSvg(f+"Size"+(l?"2":"1"),e);u=Be.makeVList({positionType:"individualShift",children:[{type:"elem",elem:u,shift:0},{type:"elem",elem:p,shift:l?.08:0}]},e),a.name="\\"+f,u.classes.unshift("mop"),u.italic=d}}else if(a.body){var m=Pi(a.body,e,!0);m.length===1&&m[0]instanceof Ts?(u=m[0],u.classes[0]="mop"):u=Be.makeSpan(["mop"],m,e)}else{for(var g=[],y=1;y{var r;if(t.symbol)r=new ws("mo",[Co(t.name,t.mode)]),Jt.contains(kG,t.name)&&r.setAttribute("largeop","false");else if(t.body)r=new ws("mo",ks(t.body,e));else{r=new ws("mi",[new Jf(t.name.slice(1))]);var n=new ws("mo",[Co("\u2061","text")]);t.parentIsSupSub?r=new ws("mrow",[r,n]):r=Qz([r,n])}return r},"mathmlBuilder$1"),L4e={"\u220F":"\\prod","\u2210":"\\coprod","\u2211":"\\sum","\u22C0":"\\bigwedge","\u22C1":"\\bigvee","\u22C2":"\\bigcap","\u22C3":"\\bigcup","\u2A00":"\\bigodot","\u2A01":"\\bigoplus","\u2A02":"\\bigotimes","\u2A04":"\\biguplus","\u2A06":"\\bigsqcup"};Nt({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","\u220F","\u2210","\u2211","\u22C0","\u22C1","\u22C2","\u22C3","\u2A00","\u2A01","\u2A02","\u2A04","\u2A06"],props:{numArgs:0},handler:o((t,e)=>{var{parser:r,funcName:n}=t,i=n;return i.length===1&&(i=L4e[i]),{type:"op",mode:r.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:i}},"handler"),htmlBuilder:m0,mathmlBuilder:Wy});Nt({type:"op",names:["\\mathop"],props:{numArgs:1,primitive:!0},handler:o((t,e)=>{var{parser:r}=t,n=e[0];return{type:"op",mode:r.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:di(n)}},"handler"),htmlBuilder:m0,mathmlBuilder:Wy});R4e={"\u222B":"\\int","\u222C":"\\iint","\u222D":"\\iiint","\u222E":"\\oint","\u222F":"\\oiint","\u2230":"\\oiiint"};Nt({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],props:{numArgs:0},handler(t){var{parser:e,funcName:r}=t;return{type:"op",mode:e.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:m0,mathmlBuilder:Wy});Nt({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],props:{numArgs:0},handler(t){var{parser:e,funcName:r}=t;return{type:"op",mode:e.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:m0,mathmlBuilder:Wy});Nt({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","\u222B","\u222C","\u222D","\u222E","\u222F","\u2230"],props:{numArgs:0},handler(t){var{parser:e,funcName:r}=t,n=r;return n.length===1&&(n=R4e[n]),{type:"op",mode:e.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:n}},htmlBuilder:m0,mathmlBuilder:Wy});EG=o((t,e)=>{var r,n,i=!1,a;t.type==="supsub"?(r=t.sup,n=t.sub,a=xr(t.base,"operatorname"),i=!0):a=xr(t,"operatorname");var s;if(a.body.length>0){for(var l=a.body.map(d=>{var p=d.text;return typeof p=="string"?{type:"textord",mode:d.mode,text:p}:d}),u=Pi(l,e.withFont("mathrm"),!0),h=0;h{for(var r=ks(t.body,e.withFont("mathrm")),n=!0,i=0;if.toText()).join("");r=[new dt.TextNode(l)]}var u=new dt.MathNode("mi",r);u.setAttribute("mathvariant","normal");var h=new dt.MathNode("mo",[Co("\u2061","text")]);return t.parentIsSupSub?new dt.MathNode("mrow",[u,h]):dt.newDocumentFragment([u,h])},"mathmlBuilder");Nt({type:"operatorname",names:["\\operatorname@","\\operatornamewithlimits"],props:{numArgs:1},handler:o((t,e)=>{var{parser:r,funcName:n}=t,i=e[0];return{type:"operatorname",mode:r.mode,body:di(i),alwaysHandleSupSub:n==="\\operatornamewithlimits",limits:!1,parentIsSupSub:!1}},"handler"),htmlBuilder:EG,mathmlBuilder:N4e});fe("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@");rd({type:"ordgroup",htmlBuilder(t,e){return t.semisimple?Be.makeFragment(Pi(t.body,e,!1)):Be.makeSpan(["mord"],Pi(t.body,e,!0),e)},mathmlBuilder(t,e){return dh(t.body,e,!0)}});Nt({type:"overline",names:["\\overline"],props:{numArgs:1},handler(t,e){var{parser:r}=t,n=e[0];return{type:"overline",mode:r.mode,body:n}},htmlBuilder(t,e){var r=Fr(t.body,e.havingCrampedStyle()),n=Be.makeLineSpan("overline-line",e),i=e.fontMetrics().defaultRuleThickness,a=Be.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r},{type:"kern",size:3*i},{type:"elem",elem:n},{type:"kern",size:i}]},e);return Be.makeSpan(["mord","overline"],[a],e)},mathmlBuilder(t,e){var r=new dt.MathNode("mo",[new dt.TextNode("\u203E")]);r.setAttribute("stretchy","true");var n=new dt.MathNode("mover",[yn(t.body,e),r]);return n.setAttribute("accent","true"),n}});Nt({type:"phantom",names:["\\phantom"],props:{numArgs:1,allowedInText:!0},handler:o((t,e)=>{var{parser:r}=t,n=e[0];return{type:"phantom",mode:r.mode,body:di(n)}},"handler"),htmlBuilder:o((t,e)=>{var r=Pi(t.body,e.withPhantom(),!1);return Be.makeFragment(r)},"htmlBuilder"),mathmlBuilder:o((t,e)=>{var r=ks(t.body,e);return new dt.MathNode("mphantom",r)},"mathmlBuilder")});Nt({type:"hphantom",names:["\\hphantom"],props:{numArgs:1,allowedInText:!0},handler:o((t,e)=>{var{parser:r}=t,n=e[0];return{type:"hphantom",mode:r.mode,body:n}},"handler"),htmlBuilder:o((t,e)=>{var r=Be.makeSpan([],[Fr(t.body,e.withPhantom())]);if(r.height=0,r.depth=0,r.children)for(var n=0;n{var r=ks(di(t.body),e),n=new dt.MathNode("mphantom",r),i=new dt.MathNode("mpadded",[n]);return i.setAttribute("height","0px"),i.setAttribute("depth","0px"),i},"mathmlBuilder")});Nt({type:"vphantom",names:["\\vphantom"],props:{numArgs:1,allowedInText:!0},handler:o((t,e)=>{var{parser:r}=t,n=e[0];return{type:"vphantom",mode:r.mode,body:n}},"handler"),htmlBuilder:o((t,e)=>{var r=Be.makeSpan(["inner"],[Fr(t.body,e.withPhantom())]),n=Be.makeSpan(["fix"],[]);return Be.makeSpan(["mord","rlap"],[r,n],e)},"htmlBuilder"),mathmlBuilder:o((t,e)=>{var r=ks(di(t.body),e),n=new dt.MathNode("mphantom",r),i=new dt.MathNode("mpadded",[n]);return i.setAttribute("width","0px"),i},"mathmlBuilder")});Nt({type:"raisebox",names:["\\raisebox"],props:{numArgs:2,argTypes:["size","hbox"],allowedInText:!0},handler(t,e){var{parser:r}=t,n=xr(e[0],"size").value,i=e[1];return{type:"raisebox",mode:r.mode,dy:n,body:i}},htmlBuilder(t,e){var r=Fr(t.body,e),n=ti(t.dy,e);return Be.makeVList({positionType:"shift",positionData:-n,children:[{type:"elem",elem:r}]},e)},mathmlBuilder(t,e){var r=new dt.MathNode("mpadded",[yn(t.body,e)]),n=t.dy.number+t.dy.unit;return r.setAttribute("voffset",n),r}});Nt({type:"internal",names:["\\relax"],props:{numArgs:0,allowedInText:!0},handler(t){var{parser:e}=t;return{type:"internal",mode:e.mode}}});Nt({type:"rule",names:["\\rule"],props:{numArgs:2,numOptionalArgs:1,argTypes:["size","size","size"]},handler(t,e,r){var{parser:n}=t,i=r[0],a=xr(e[0],"size"),s=xr(e[1],"size");return{type:"rule",mode:n.mode,shift:i&&xr(i,"size").value,width:a.value,height:s.value}},htmlBuilder(t,e){var r=Be.makeSpan(["mord","rule"],[],e),n=ti(t.width,e),i=ti(t.height,e),a=t.shift?ti(t.shift,e):0;return r.style.borderRightWidth=kt(n),r.style.borderTopWidth=kt(i),r.style.bottom=kt(a),r.width=n,r.height=i+a,r.depth=-a,r.maxFontSize=i*1.125*e.sizeMultiplier,r},mathmlBuilder(t,e){var r=ti(t.width,e),n=ti(t.height,e),i=t.shift?ti(t.shift,e):0,a=e.color&&e.getColor()||"black",s=new dt.MathNode("mspace");s.setAttribute("mathbackground",a),s.setAttribute("width",kt(r)),s.setAttribute("height",kt(n));var l=new dt.MathNode("mpadded",[s]);return i>=0?l.setAttribute("height",kt(i)):(l.setAttribute("height",kt(i)),l.setAttribute("depth",kt(-i))),l.setAttribute("voffset",kt(i)),l}});o(SG,"sizingGroup");Az=["\\tiny","\\sixptsize","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"],M4e=o((t,e)=>{var r=e.havingSize(t.size);return SG(t.body,r,e)},"htmlBuilder");Nt({type:"sizing",names:Az,props:{numArgs:0,allowedInText:!0},handler:o((t,e)=>{var{breakOnTokenText:r,funcName:n,parser:i}=t,a=i.parseExpression(!1,r);return{type:"sizing",mode:i.mode,size:Az.indexOf(n)+1,body:a}},"handler"),htmlBuilder:M4e,mathmlBuilder:o((t,e)=>{var r=e.havingSize(t.size),n=ks(t.body,r),i=new dt.MathNode("mstyle",n);return i.setAttribute("mathsize",kt(r.sizeMultiplier)),i},"mathmlBuilder")});Nt({type:"smash",names:["\\smash"],props:{numArgs:1,numOptionalArgs:1,allowedInText:!0},handler:o((t,e,r)=>{var{parser:n}=t,i=!1,a=!1,s=r[0]&&xr(r[0],"ordgroup");if(s)for(var l="",u=0;u{var r=Be.makeSpan([],[Fr(t.body,e)]);if(!t.smashHeight&&!t.smashDepth)return r;if(t.smashHeight&&(r.height=0,r.children))for(var n=0;n{var r=new dt.MathNode("mpadded",[yn(t.body,e)]);return t.smashHeight&&r.setAttribute("height","0px"),t.smashDepth&&r.setAttribute("depth","0px"),r},"mathmlBuilder")});Nt({type:"sqrt",names:["\\sqrt"],props:{numArgs:1,numOptionalArgs:1},handler(t,e,r){var{parser:n}=t,i=r[0],a=e[0];return{type:"sqrt",mode:n.mode,body:a,index:i}},htmlBuilder(t,e){var r=Fr(t.body,e.havingCrampedStyle());r.height===0&&(r.height=e.fontMetrics().xHeight),r=Be.wrapFragment(r,e);var n=e.fontMetrics(),i=n.defaultRuleThickness,a=i;e.style.idr.height+r.depth+s&&(s=(s+d-r.height-r.depth)/2);var p=u.height-r.height-s-h;r.style.paddingLeft=kt(f);var m=Be.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:-(r.height+p)},{type:"elem",elem:u},{type:"kern",size:h}]},e);if(t.index){var g=e.havingStyle(tr.SCRIPTSCRIPT),y=Fr(t.index,g,e),v=.6*(m.height-m.depth),x=Be.makeVList({positionType:"shift",positionData:-v,children:[{type:"elem",elem:y}]},e),b=Be.makeSpan(["root"],[x]);return Be.makeSpan(["mord","sqrt"],[b,m],e)}else return Be.makeSpan(["mord","sqrt"],[m],e)},mathmlBuilder(t,e){var{body:r,index:n}=t;return n?new dt.MathNode("mroot",[yn(r,e),yn(n,e)]):new dt.MathNode("msqrt",[yn(r,e)])}});_z={display:tr.DISPLAY,text:tr.TEXT,script:tr.SCRIPT,scriptscript:tr.SCRIPTSCRIPT};Nt({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(t,e){var{breakOnTokenText:r,funcName:n,parser:i}=t,a=i.parseExpression(!0,r),s=n.slice(1,n.length-5);return{type:"styling",mode:i.mode,style:s,body:a}},htmlBuilder(t,e){var r=_z[t.style],n=e.havingStyle(r).withFont("");return SG(t.body,n,e)},mathmlBuilder(t,e){var r=_z[t.style],n=e.havingStyle(r),i=ks(t.body,n),a=new dt.MathNode("mstyle",i),s={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]},l=s[t.style];return a.setAttribute("scriptlevel",l[0]),a.setAttribute("displaystyle",l[1]),a}});I4e=o(function(e,r){var n=e.base;if(n)if(n.type==="op"){var i=n.limits&&(r.style.size===tr.DISPLAY.size||n.alwaysHandleSupSub);return i?m0:null}else if(n.type==="operatorname"){var a=n.alwaysHandleSupSub&&(r.style.size===tr.DISPLAY.size||n.limits);return a?EG:null}else{if(n.type==="accent")return Jt.isCharacterBox(n.base)?G7:null;if(n.type==="horizBrace"){var s=!e.sub;return s===n.isOver?wG:null}else return null}else return null},"htmlBuilderDelegate");rd({type:"supsub",htmlBuilder(t,e){var r=I4e(t,e);if(r)return r(t,e);var{base:n,sup:i,sub:a}=t,s=Fr(n,e),l,u,h=e.fontMetrics(),f=0,d=0,p=n&&Jt.isCharacterBox(n);if(i){var m=e.havingStyle(e.style.sup());l=Fr(i,m,e),p||(f=s.height-m.fontMetrics().supDrop*m.sizeMultiplier/e.sizeMultiplier)}if(a){var g=e.havingStyle(e.style.sub());u=Fr(a,g,e),p||(d=s.depth+g.fontMetrics().subDrop*g.sizeMultiplier/e.sizeMultiplier)}var y;e.style===tr.DISPLAY?y=h.sup1:e.style.cramped?y=h.sup3:y=h.sup2;var v=e.sizeMultiplier,x=kt(.5/h.ptPerEm/v),b=null;if(u){var w=t.base&&t.base.type==="op"&&t.base.name&&(t.base.name==="\\oiint"||t.base.name==="\\oiiint");(s instanceof Ts||w)&&(b=kt(-s.italic))}var C;if(l&&u){f=Math.max(f,y,l.depth+.25*h.xHeight),d=Math.max(d,h.sub2);var T=h.defaultRuleThickness,E=4*T;if(f-l.depth-(u.height-d)0&&(f+=A,d-=A)}var S=[{type:"elem",elem:u,shift:d,marginRight:x,marginLeft:b},{type:"elem",elem:l,shift:-f,marginRight:x}];C=Be.makeVList({positionType:"individualShift",children:S},e)}else if(u){d=Math.max(d,h.sub1,u.height-.8*h.xHeight);var _=[{type:"elem",elem:u,marginLeft:b,marginRight:x}];C=Be.makeVList({positionType:"shift",positionData:d,children:_},e)}else if(l)f=Math.max(f,y,l.depth+.25*h.xHeight),C=Be.makeVList({positionType:"shift",positionData:-f,children:[{type:"elem",elem:l,marginRight:x}]},e);else throw new Error("supsub must have either sup or sub.");var I=A7(s,"right")||"mord";return Be.makeSpan([I],[s,Be.makeSpan(["msupsub"],[C])],e)},mathmlBuilder(t,e){var r=!1,n,i;t.base&&t.base.type==="horizBrace"&&(i=!!t.sup,i===t.base.isOver&&(r=!0,n=t.base.isOver)),t.base&&(t.base.type==="op"||t.base.type==="operatorname")&&(t.base.parentIsSupSub=!0);var a=[yn(t.base,e)];t.sub&&a.push(yn(t.sub,e)),t.sup&&a.push(yn(t.sup,e));var s;if(r)s=n?"mover":"munder";else if(t.sub)if(t.sup){var h=t.base;h&&h.type==="op"&&h.limits&&e.style===tr.DISPLAY||h&&h.type==="operatorname"&&h.alwaysHandleSupSub&&(e.style===tr.DISPLAY||h.limits)?s="munderover":s="msubsup"}else{var u=t.base;u&&u.type==="op"&&u.limits&&(e.style===tr.DISPLAY||u.alwaysHandleSupSub)||u&&u.type==="operatorname"&&u.alwaysHandleSupSub&&(u.limits||e.style===tr.DISPLAY)?s="munder":s="msub"}else{var l=t.base;l&&l.type==="op"&&l.limits&&(e.style===tr.DISPLAY||l.alwaysHandleSupSub)||l&&l.type==="operatorname"&&l.alwaysHandleSupSub&&(l.limits||e.style===tr.DISPLAY)?s="mover":s="msup"}return new dt.MathNode(s,a)}});rd({type:"atom",htmlBuilder(t,e){return Be.mathsym(t.text,t.mode,e,["m"+t.family])},mathmlBuilder(t,e){var r=new dt.MathNode("mo",[Co(t.text,t.mode)]);if(t.family==="bin"){var n=$7(t,e);n==="bold-italic"&&r.setAttribute("mathvariant",n)}else t.family==="punct"?r.setAttribute("separator","true"):(t.family==="open"||t.family==="close")&&r.setAttribute("stretchy","false");return r}});CG={mi:"italic",mn:"normal",mtext:"normal"};rd({type:"mathord",htmlBuilder(t,e){return Be.makeOrd(t,e,"mathord")},mathmlBuilder(t,e){var r=new dt.MathNode("mi",[Co(t.text,t.mode,e)]),n=$7(t,e)||"italic";return n!==CG[r.type]&&r.setAttribute("mathvariant",n),r}});rd({type:"textord",htmlBuilder(t,e){return Be.makeOrd(t,e,"textord")},mathmlBuilder(t,e){var r=Co(t.text,t.mode,e),n=$7(t,e)||"normal",i;return t.mode==="text"?i=new dt.MathNode("mtext",[r]):/[0-9]/.test(t.text)?i=new dt.MathNode("mn",[r]):t.text==="\\prime"?i=new dt.MathNode("mo",[r]):i=new dt.MathNode("mi",[r]),n!==CG[i.type]&&i.setAttribute("mathvariant",n),i}});b7={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},w7={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};rd({type:"spacing",htmlBuilder(t,e){if(w7.hasOwnProperty(t.text)){var r=w7[t.text].className||"";if(t.mode==="text"){var n=Be.makeOrd(t,e,"textord");return n.classes.push(r),n}else return Be.makeSpan(["mspace",r],[Be.mathsym(t.text,t.mode,e)],e)}else{if(b7.hasOwnProperty(t.text))return Be.makeSpan(["mspace",b7[t.text]],[],e);throw new gt('Unknown type of space "'+t.text+'"')}},mathmlBuilder(t,e){var r;if(w7.hasOwnProperty(t.text))r=new dt.MathNode("mtext",[new dt.TextNode("\xA0")]);else{if(b7.hasOwnProperty(t.text))return new dt.MathNode("mspace");throw new gt('Unknown type of space "'+t.text+'"')}return r}});Dz=o(()=>{var t=new dt.MathNode("mtd",[]);return t.setAttribute("width","50%"),t},"pad");rd({type:"tag",mathmlBuilder(t,e){var r=new dt.MathNode("mtable",[new dt.MathNode("mtr",[Dz(),new dt.MathNode("mtd",[dh(t.body,e)]),Dz(),new dt.MathNode("mtd",[dh(t.tag,e)])])]);return r.setAttribute("width","100%"),r}});Lz={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},Rz={"\\textbf":"textbf","\\textmd":"textmd"},O4e={"\\textit":"textit","\\textup":"textup"},Nz=o((t,e)=>{var r=t.font;if(r){if(Lz[r])return e.withTextFontFamily(Lz[r]);if(Rz[r])return e.withTextFontWeight(Rz[r]);if(r==="\\emph")return e.fontShape==="textit"?e.withTextFontShape("textup"):e.withTextFontShape("textit")}else return e;return e.withTextFontShape(O4e[r])},"optionsWithFont");Nt({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup","\\emph"],props:{numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0},handler(t,e){var{parser:r,funcName:n}=t,i=e[0];return{type:"text",mode:r.mode,body:di(i),font:n}},htmlBuilder(t,e){var r=Nz(t,e),n=Pi(t.body,r,!0);return Be.makeSpan(["mord","text"],n,r)},mathmlBuilder(t,e){var r=Nz(t,e);return dh(t.body,r)}});Nt({type:"underline",names:["\\underline"],props:{numArgs:1,allowedInText:!0},handler(t,e){var{parser:r}=t;return{type:"underline",mode:r.mode,body:e[0]}},htmlBuilder(t,e){var r=Fr(t.body,e),n=Be.makeLineSpan("underline-line",e),i=e.fontMetrics().defaultRuleThickness,a=Be.makeVList({positionType:"top",positionData:r.height,children:[{type:"kern",size:i},{type:"elem",elem:n},{type:"kern",size:3*i},{type:"elem",elem:r}]},e);return Be.makeSpan(["mord","underline"],[a],e)},mathmlBuilder(t,e){var r=new dt.MathNode("mo",[new dt.TextNode("\u203E")]);r.setAttribute("stretchy","true");var n=new dt.MathNode("munder",[yn(t.body,e),r]);return n.setAttribute("accentunder","true"),n}});Nt({type:"vcenter",names:["\\vcenter"],props:{numArgs:1,argTypes:["original"],allowedInText:!1},handler(t,e){var{parser:r}=t;return{type:"vcenter",mode:r.mode,body:e[0]}},htmlBuilder(t,e){var r=Fr(t.body,e),n=e.fontMetrics().axisHeight,i=.5*(r.height-n-(r.depth+n));return Be.makeVList({positionType:"shift",positionData:i,children:[{type:"elem",elem:r}]},e)},mathmlBuilder(t,e){return new dt.MathNode("mpadded",[yn(t.body,e)],["vcenter"])}});Nt({type:"verb",names:["\\verb"],props:{numArgs:0,allowedInText:!0},handler(t,e,r){throw new gt("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(t,e){for(var r=Mz(t),n=[],i=e.havingStyle(e.style.text()),a=0;at.body.replace(/ /g,t.star?"\u2423":"\xA0"),"makeVerb"),hh=jz,AG=`[ \r + ]`,P4e="\\\\[a-zA-Z@]+",B4e="\\\\[^\uD800-\uDFFF]",F4e="("+P4e+")"+AG+"*",$4e=`\\\\( +|[ \r ]+ +?)[ \r ]*`,N7="[\u0300-\u036F]",z4e=new RegExp(N7+"+$"),G4e="("+AG+"+)|"+($4e+"|")+"([!-\\[\\]-\u2027\u202A-\uD7FF\uF900-\uFFFF]"+(N7+"*")+"|[\uD800-\uDBFF][\uDC00-\uDFFF]"+(N7+"*")+"|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5"+("|"+F4e)+("|"+B4e+")"),y3=class{static{o(this,"Lexer")}constructor(e,r){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=e,this.settings=r,this.tokenRegex=new RegExp(G4e,"g"),this.catcodes={"%":14,"~":13}}setCatcode(e,r){this.catcodes[e]=r}lex(){var e=this.input,r=this.tokenRegex.lastIndex;if(r===e.length)return new So("EOF",new Xs(this,r,r));var n=this.tokenRegex.exec(e);if(n===null||n.index!==r)throw new gt("Unexpected character: '"+e[r]+"'",new So(e[r],new Xs(this,r,r+1)));var i=n[6]||n[3]||(n[2]?"\\ ":" ");if(this.catcodes[i]===14){var a=e.indexOf(` +`,this.tokenRegex.lastIndex);return a===-1?(this.tokenRegex.lastIndex=e.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=a+1,this.lex()}return new So(i,new Xs(this,r,this.tokenRegex.lastIndex))}},M7=class{static{o(this,"Namespace")}constructor(e,r){e===void 0&&(e={}),r===void 0&&(r={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=r,this.builtins=e,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(this.undefStack.length===0)throw new gt("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");var e=this.undefStack.pop();for(var r in e)e.hasOwnProperty(r)&&(e[r]==null?delete this.current[r]:this.current[r]=e[r])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(e){return this.current.hasOwnProperty(e)||this.builtins.hasOwnProperty(e)}get(e){return this.current.hasOwnProperty(e)?this.current[e]:this.builtins[e]}set(e,r,n){if(n===void 0&&(n=!1),n){for(var i=0;i0&&(this.undefStack[this.undefStack.length-1][e]=r)}else{var a=this.undefStack[this.undefStack.length-1];a&&!a.hasOwnProperty(e)&&(a[e]=this.current[e])}r==null?delete this.current[e]:this.current[e]=r}},V4e=gG;fe("\\noexpand",function(t){var e=t.popToken();return t.isExpandable(e.text)&&(e.noexpand=!0,e.treatAsRelax=!0),{tokens:[e],numArgs:0}});fe("\\expandafter",function(t){var e=t.popToken();return t.expandOnce(!0),{tokens:[e],numArgs:0}});fe("\\@firstoftwo",function(t){var e=t.consumeArgs(2);return{tokens:e[0],numArgs:0}});fe("\\@secondoftwo",function(t){var e=t.consumeArgs(2);return{tokens:e[1],numArgs:0}});fe("\\@ifnextchar",function(t){var e=t.consumeArgs(3);t.consumeSpaces();var r=t.future();return e[0].length===1&&e[0][0].text===r.text?{tokens:e[1],numArgs:0}:{tokens:e[2],numArgs:0}});fe("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}");fe("\\TextOrMath",function(t){var e=t.consumeArgs(2);return t.mode==="text"?{tokens:e[0],numArgs:0}:{tokens:e[1],numArgs:0}});Iz={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};fe("\\char",function(t){var e=t.popToken(),r,n="";if(e.text==="'")r=8,e=t.popToken();else if(e.text==='"')r=16,e=t.popToken();else if(e.text==="`")if(e=t.popToken(),e.text[0]==="\\")n=e.text.charCodeAt(1);else{if(e.text==="EOF")throw new gt("\\char` missing argument");n=e.text.charCodeAt(0)}else r=10;if(r){if(n=Iz[e.text],n==null||n>=r)throw new gt("Invalid base-"+r+" digit "+e.text);for(var i;(i=Iz[t.future().text])!=null&&i{var n=t.consumeArg().tokens;if(n.length!==1)throw new gt("\\newcommand's first argument must be a macro name");var i=n[0].text,a=t.isDefined(i);if(a&&!e)throw new gt("\\newcommand{"+i+"} attempting to redefine "+(i+"; use \\renewcommand"));if(!a&&!r)throw new gt("\\renewcommand{"+i+"} when command "+i+" does not yet exist; use \\newcommand");var s=0;if(n=t.consumeArg().tokens,n.length===1&&n[0].text==="["){for(var l="",u=t.expandNextToken();u.text!=="]"&&u.text!=="EOF";)l+=u.text,u=t.expandNextToken();if(!l.match(/^\s*[0-9]+\s*$/))throw new gt("Invalid number of arguments: "+l);s=parseInt(l),n=t.consumeArg().tokens}return t.macros.set(i,{tokens:n,numArgs:s}),""},"newcommand");fe("\\newcommand",t=>j7(t,!1,!0));fe("\\renewcommand",t=>j7(t,!0,!1));fe("\\providecommand",t=>j7(t,!0,!0));fe("\\message",t=>{var e=t.consumeArgs(1)[0];return console.log(e.reverse().map(r=>r.text).join("")),""});fe("\\errmessage",t=>{var e=t.consumeArgs(1)[0];return console.error(e.reverse().map(r=>r.text).join("")),""});fe("\\show",t=>{var e=t.popToken(),r=e.text;return console.log(e,t.macros.get(r),hh[r],An.math[r],An.text[r]),""});fe("\\bgroup","{");fe("\\egroup","}");fe("~","\\nobreakspace");fe("\\lq","`");fe("\\rq","'");fe("\\aa","\\r a");fe("\\AA","\\r A");fe("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`\xA9}");fe("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}");fe("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`\xAE}");fe("\u212C","\\mathscr{B}");fe("\u2130","\\mathscr{E}");fe("\u2131","\\mathscr{F}");fe("\u210B","\\mathscr{H}");fe("\u2110","\\mathscr{I}");fe("\u2112","\\mathscr{L}");fe("\u2133","\\mathscr{M}");fe("\u211B","\\mathscr{R}");fe("\u212D","\\mathfrak{C}");fe("\u210C","\\mathfrak{H}");fe("\u2128","\\mathfrak{Z}");fe("\\Bbbk","\\Bbb{k}");fe("\xB7","\\cdotp");fe("\\llap","\\mathllap{\\textrm{#1}}");fe("\\rlap","\\mathrlap{\\textrm{#1}}");fe("\\clap","\\mathclap{\\textrm{#1}}");fe("\\mathstrut","\\vphantom{(}");fe("\\underbar","\\underline{\\text{#1}}");fe("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}}{\\char"338}');fe("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`\u2260}}");fe("\\ne","\\neq");fe("\u2260","\\neq");fe("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`\u2209}}");fe("\u2209","\\notin");fe("\u2258","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`\u2258}}");fe("\u2259","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`\u2258}}");fe("\u225A","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`\u225A}}");fe("\u225B","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`\u225B}}");fe("\u225D","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`\u225D}}");fe("\u225E","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`\u225E}}");fe("\u225F","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`\u225F}}");fe("\u27C2","\\perp");fe("\u203C","\\mathclose{!\\mkern-0.8mu!}");fe("\u220C","\\notni");fe("\u231C","\\ulcorner");fe("\u231D","\\urcorner");fe("\u231E","\\llcorner");fe("\u231F","\\lrcorner");fe("\xA9","\\copyright");fe("\xAE","\\textregistered");fe("\uFE0F","\\textregistered");fe("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}');fe("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}');fe("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}');fe("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}');fe("\\vdots","\\mathord{\\varvdots\\rule{0pt}{15pt}}");fe("\u22EE","\\vdots");fe("\\varGamma","\\mathit{\\Gamma}");fe("\\varDelta","\\mathit{\\Delta}");fe("\\varTheta","\\mathit{\\Theta}");fe("\\varLambda","\\mathit{\\Lambda}");fe("\\varXi","\\mathit{\\Xi}");fe("\\varPi","\\mathit{\\Pi}");fe("\\varSigma","\\mathit{\\Sigma}");fe("\\varUpsilon","\\mathit{\\Upsilon}");fe("\\varPhi","\\mathit{\\Phi}");fe("\\varPsi","\\mathit{\\Psi}");fe("\\varOmega","\\mathit{\\Omega}");fe("\\substack","\\begin{subarray}{c}#1\\end{subarray}");fe("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax");fe("\\boxed","\\fbox{$\\displaystyle{#1}$}");fe("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;");fe("\\implies","\\DOTSB\\;\\Longrightarrow\\;");fe("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");Oz={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"};fe("\\dots",function(t){var e="\\dotso",r=t.expandAfterFuture().text;return r in Oz?e=Oz[r]:(r.slice(0,4)==="\\not"||r in An.math&&Jt.contains(["bin","rel"],An.math[r].group))&&(e="\\dotsb"),e});K7={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};fe("\\dotso",function(t){var e=t.future().text;return e in K7?"\\ldots\\,":"\\ldots"});fe("\\dotsc",function(t){var e=t.future().text;return e in K7&&e!==","?"\\ldots\\,":"\\ldots"});fe("\\cdots",function(t){var e=t.future().text;return e in K7?"\\@cdots\\,":"\\@cdots"});fe("\\dotsb","\\cdots");fe("\\dotsm","\\cdots");fe("\\dotsi","\\!\\cdots");fe("\\dotsx","\\ldots\\,");fe("\\DOTSI","\\relax");fe("\\DOTSB","\\relax");fe("\\DOTSX","\\relax");fe("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax");fe("\\,","\\tmspace+{3mu}{.1667em}");fe("\\thinspace","\\,");fe("\\>","\\mskip{4mu}");fe("\\:","\\tmspace+{4mu}{.2222em}");fe("\\medspace","\\:");fe("\\;","\\tmspace+{5mu}{.2777em}");fe("\\thickspace","\\;");fe("\\!","\\tmspace-{3mu}{.1667em}");fe("\\negthinspace","\\!");fe("\\negmedspace","\\tmspace-{4mu}{.2222em}");fe("\\negthickspace","\\tmspace-{5mu}{.277em}");fe("\\enspace","\\kern.5em ");fe("\\enskip","\\hskip.5em\\relax");fe("\\quad","\\hskip1em\\relax");fe("\\qquad","\\hskip2em\\relax");fe("\\tag","\\@ifstar\\tag@literal\\tag@paren");fe("\\tag@paren","\\tag@literal{({#1})}");fe("\\tag@literal",t=>{if(t.macros.get("\\df@tag"))throw new gt("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"});fe("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}");fe("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)");fe("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}");fe("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1");fe("\\newline","\\\\\\relax");fe("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");_G=kt(jl["Main-Regular"][84][1]-.7*jl["Main-Regular"][65][1]);fe("\\LaTeX","\\textrm{\\html@mathml{"+("L\\kern-.36em\\raisebox{"+_G+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{LaTeX}}");fe("\\KaTeX","\\textrm{\\html@mathml{"+("K\\kern-.17em\\raisebox{"+_G+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{KaTeX}}");fe("\\hspace","\\@ifstar\\@hspacer\\@hspace");fe("\\@hspace","\\hskip #1\\relax");fe("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax");fe("\\ordinarycolon",":");fe("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}");fe("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}');fe("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}');fe("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}');fe("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}');fe("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}');fe("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}');fe("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}');fe("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}');fe("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}');fe("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}');fe("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}');fe("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}');fe("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}');fe("\u2237","\\dblcolon");fe("\u2239","\\eqcolon");fe("\u2254","\\coloneqq");fe("\u2255","\\eqqcolon");fe("\u2A74","\\Coloneqq");fe("\\ratio","\\vcentcolon");fe("\\coloncolon","\\dblcolon");fe("\\colonequals","\\coloneqq");fe("\\coloncolonequals","\\Coloneqq");fe("\\equalscolon","\\eqqcolon");fe("\\equalscoloncolon","\\Eqqcolon");fe("\\colonminus","\\coloneq");fe("\\coloncolonminus","\\Coloneq");fe("\\minuscolon","\\eqcolon");fe("\\minuscoloncolon","\\Eqcolon");fe("\\coloncolonapprox","\\Colonapprox");fe("\\coloncolonsim","\\Colonsim");fe("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}");fe("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}");fe("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}");fe("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}");fe("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`\u220C}}");fe("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}");fe("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}");fe("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}");fe("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}");fe("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}");fe("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}");fe("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}");fe("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}");fe("\\gvertneqq","\\html@mathml{\\@gvertneqq}{\u2269}");fe("\\lvertneqq","\\html@mathml{\\@lvertneqq}{\u2268}");fe("\\ngeqq","\\html@mathml{\\@ngeqq}{\u2271}");fe("\\ngeqslant","\\html@mathml{\\@ngeqslant}{\u2271}");fe("\\nleqq","\\html@mathml{\\@nleqq}{\u2270}");fe("\\nleqslant","\\html@mathml{\\@nleqslant}{\u2270}");fe("\\nshortmid","\\html@mathml{\\@nshortmid}{\u2224}");fe("\\nshortparallel","\\html@mathml{\\@nshortparallel}{\u2226}");fe("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{\u2288}");fe("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{\u2289}");fe("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{\u228A}");fe("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{\u2ACB}");fe("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{\u228B}");fe("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{\u2ACC}");fe("\\imath","\\html@mathml{\\@imath}{\u0131}");fe("\\jmath","\\html@mathml{\\@jmath}{\u0237}");fe("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`\u27E6}}");fe("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`\u27E7}}");fe("\u27E6","\\llbracket");fe("\u27E7","\\rrbracket");fe("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`\u2983}}");fe("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`\u2984}}");fe("\u2983","\\lBrace");fe("\u2984","\\rBrace");fe("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`\u29B5}}");fe("\u29B5","\\minuso");fe("\\darr","\\downarrow");fe("\\dArr","\\Downarrow");fe("\\Darr","\\Downarrow");fe("\\lang","\\langle");fe("\\rang","\\rangle");fe("\\uarr","\\uparrow");fe("\\uArr","\\Uparrow");fe("\\Uarr","\\Uparrow");fe("\\N","\\mathbb{N}");fe("\\R","\\mathbb{R}");fe("\\Z","\\mathbb{Z}");fe("\\alef","\\aleph");fe("\\alefsym","\\aleph");fe("\\Alpha","\\mathrm{A}");fe("\\Beta","\\mathrm{B}");fe("\\bull","\\bullet");fe("\\Chi","\\mathrm{X}");fe("\\clubs","\\clubsuit");fe("\\cnums","\\mathbb{C}");fe("\\Complex","\\mathbb{C}");fe("\\Dagger","\\ddagger");fe("\\diamonds","\\diamondsuit");fe("\\empty","\\emptyset");fe("\\Epsilon","\\mathrm{E}");fe("\\Eta","\\mathrm{H}");fe("\\exist","\\exists");fe("\\harr","\\leftrightarrow");fe("\\hArr","\\Leftrightarrow");fe("\\Harr","\\Leftrightarrow");fe("\\hearts","\\heartsuit");fe("\\image","\\Im");fe("\\infin","\\infty");fe("\\Iota","\\mathrm{I}");fe("\\isin","\\in");fe("\\Kappa","\\mathrm{K}");fe("\\larr","\\leftarrow");fe("\\lArr","\\Leftarrow");fe("\\Larr","\\Leftarrow");fe("\\lrarr","\\leftrightarrow");fe("\\lrArr","\\Leftrightarrow");fe("\\Lrarr","\\Leftrightarrow");fe("\\Mu","\\mathrm{M}");fe("\\natnums","\\mathbb{N}");fe("\\Nu","\\mathrm{N}");fe("\\Omicron","\\mathrm{O}");fe("\\plusmn","\\pm");fe("\\rarr","\\rightarrow");fe("\\rArr","\\Rightarrow");fe("\\Rarr","\\Rightarrow");fe("\\real","\\Re");fe("\\reals","\\mathbb{R}");fe("\\Reals","\\mathbb{R}");fe("\\Rho","\\mathrm{P}");fe("\\sdot","\\cdot");fe("\\sect","\\S");fe("\\spades","\\spadesuit");fe("\\sub","\\subset");fe("\\sube","\\subseteq");fe("\\supe","\\supseteq");fe("\\Tau","\\mathrm{T}");fe("\\thetasym","\\vartheta");fe("\\weierp","\\wp");fe("\\Zeta","\\mathrm{Z}");fe("\\argmin","\\DOTSB\\operatorname*{arg\\,min}");fe("\\argmax","\\DOTSB\\operatorname*{arg\\,max}");fe("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits");fe("\\bra","\\mathinner{\\langle{#1}|}");fe("\\ket","\\mathinner{|{#1}\\rangle}");fe("\\braket","\\mathinner{\\langle{#1}\\rangle}");fe("\\Bra","\\left\\langle#1\\right|");fe("\\Ket","\\left|#1\\right\\rangle");DG=o(t=>e=>{var r=e.consumeArg().tokens,n=e.consumeArg().tokens,i=e.consumeArg().tokens,a=e.consumeArg().tokens,s=e.macros.get("|"),l=e.macros.get("\\|");e.macros.beginGroup();var u=o(d=>p=>{t&&(p.macros.set("|",s),i.length&&p.macros.set("\\|",l));var m=d;if(!d&&i.length){var g=p.future();g.text==="|"&&(p.popToken(),m=!0)}return{tokens:m?i:n,numArgs:0}},"midMacro");e.macros.set("|",u(!1)),i.length&&e.macros.set("\\|",u(!0));var h=e.consumeArg().tokens,f=e.expandTokens([...a,...h,...r]);return e.macros.endGroup(),{tokens:f.reverse(),numArgs:0}},"braketHelper");fe("\\bra@ket",DG(!1));fe("\\bra@set",DG(!0));fe("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}");fe("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}");fe("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}");fe("\\angln","{\\angl n}");fe("\\blue","\\textcolor{##6495ed}{#1}");fe("\\orange","\\textcolor{##ffa500}{#1}");fe("\\pink","\\textcolor{##ff00af}{#1}");fe("\\red","\\textcolor{##df0030}{#1}");fe("\\green","\\textcolor{##28ae7b}{#1}");fe("\\gray","\\textcolor{gray}{#1}");fe("\\purple","\\textcolor{##9d38bd}{#1}");fe("\\blueA","\\textcolor{##ccfaff}{#1}");fe("\\blueB","\\textcolor{##80f6ff}{#1}");fe("\\blueC","\\textcolor{##63d9ea}{#1}");fe("\\blueD","\\textcolor{##11accd}{#1}");fe("\\blueE","\\textcolor{##0c7f99}{#1}");fe("\\tealA","\\textcolor{##94fff5}{#1}");fe("\\tealB","\\textcolor{##26edd5}{#1}");fe("\\tealC","\\textcolor{##01d1c1}{#1}");fe("\\tealD","\\textcolor{##01a995}{#1}");fe("\\tealE","\\textcolor{##208170}{#1}");fe("\\greenA","\\textcolor{##b6ffb0}{#1}");fe("\\greenB","\\textcolor{##8af281}{#1}");fe("\\greenC","\\textcolor{##74cf70}{#1}");fe("\\greenD","\\textcolor{##1fab54}{#1}");fe("\\greenE","\\textcolor{##0d923f}{#1}");fe("\\goldA","\\textcolor{##ffd0a9}{#1}");fe("\\goldB","\\textcolor{##ffbb71}{#1}");fe("\\goldC","\\textcolor{##ff9c39}{#1}");fe("\\goldD","\\textcolor{##e07d10}{#1}");fe("\\goldE","\\textcolor{##a75a05}{#1}");fe("\\redA","\\textcolor{##fca9a9}{#1}");fe("\\redB","\\textcolor{##ff8482}{#1}");fe("\\redC","\\textcolor{##f9685d}{#1}");fe("\\redD","\\textcolor{##e84d39}{#1}");fe("\\redE","\\textcolor{##bc2612}{#1}");fe("\\maroonA","\\textcolor{##ffbde0}{#1}");fe("\\maroonB","\\textcolor{##ff92c6}{#1}");fe("\\maroonC","\\textcolor{##ed5fa6}{#1}");fe("\\maroonD","\\textcolor{##ca337c}{#1}");fe("\\maroonE","\\textcolor{##9e034e}{#1}");fe("\\purpleA","\\textcolor{##ddd7ff}{#1}");fe("\\purpleB","\\textcolor{##c6b9fc}{#1}");fe("\\purpleC","\\textcolor{##aa87ff}{#1}");fe("\\purpleD","\\textcolor{##7854ab}{#1}");fe("\\purpleE","\\textcolor{##543b78}{#1}");fe("\\mintA","\\textcolor{##f5f9e8}{#1}");fe("\\mintB","\\textcolor{##edf2df}{#1}");fe("\\mintC","\\textcolor{##e0e5cc}{#1}");fe("\\grayA","\\textcolor{##f6f7f7}{#1}");fe("\\grayB","\\textcolor{##f0f1f2}{#1}");fe("\\grayC","\\textcolor{##e3e5e6}{#1}");fe("\\grayD","\\textcolor{##d6d8da}{#1}");fe("\\grayE","\\textcolor{##babec2}{#1}");fe("\\grayF","\\textcolor{##888d93}{#1}");fe("\\grayG","\\textcolor{##626569}{#1}");fe("\\grayH","\\textcolor{##3b3e40}{#1}");fe("\\grayI","\\textcolor{##21242c}{#1}");fe("\\kaBlue","\\textcolor{##314453}{#1}");fe("\\kaGreen","\\textcolor{##71B307}{#1}");LG={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0},I7=class{static{o(this,"MacroExpander")}constructor(e,r,n){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=r,this.expansionCount=0,this.feed(e),this.macros=new M7(V4e,r.macros),this.mode=n,this.stack=[]}feed(e){this.lexer=new y3(e,this.settings)}switchMode(e){this.mode=e}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return this.stack.length===0&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(e){this.stack.push(e)}pushTokens(e){this.stack.push(...e)}scanArgument(e){var r,n,i;if(e){if(this.consumeSpaces(),this.future().text!=="[")return null;r=this.popToken(),{tokens:i,end:n}=this.consumeArg(["]"])}else({tokens:i,start:r,end:n}=this.consumeArg());return this.pushToken(new So("EOF",n.loc)),this.pushTokens(i),r.range(n,"")}consumeSpaces(){for(;;){var e=this.future();if(e.text===" ")this.stack.pop();else break}}consumeArg(e){var r=[],n=e&&e.length>0;n||this.consumeSpaces();var i=this.future(),a,s=0,l=0;do{if(a=this.popToken(),r.push(a),a.text==="{")++s;else if(a.text==="}"){if(--s,s===-1)throw new gt("Extra }",a)}else if(a.text==="EOF")throw new gt("Unexpected end of input in a macro argument, expected '"+(e&&n?e[l]:"}")+"'",a);if(e&&n)if((s===0||s===1&&e[l]==="{")&&a.text===e[l]){if(++l,l===e.length){r.splice(-l,l);break}}else l=0}while(s!==0||n);return i.text==="{"&&r[r.length-1].text==="}"&&(r.pop(),r.shift()),r.reverse(),{tokens:r,start:i,end:a}}consumeArgs(e,r){if(r){if(r.length!==e+1)throw new gt("The length of delimiters doesn't match the number of args!");for(var n=r[0],i=0;ithis.settings.maxExpand)throw new gt("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(e){var r=this.popToken(),n=r.text,i=r.noexpand?null:this._getExpansion(n);if(i==null||e&&i.unexpandable){if(e&&i==null&&n[0]==="\\"&&!this.isDefined(n))throw new gt("Undefined control sequence: "+n);return this.pushToken(r),!1}this.countExpansion(1);var a=i.tokens,s=this.consumeArgs(i.numArgs,i.delimiters);if(i.numArgs){a=a.slice();for(var l=a.length-1;l>=0;--l){var u=a[l];if(u.text==="#"){if(l===0)throw new gt("Incomplete placeholder at end of macro body",u);if(u=a[--l],u.text==="#")a.splice(l+1,1);else if(/^[1-9]$/.test(u.text))a.splice(l,2,...s[+u.text-1]);else throw new gt("Not a valid argument number",u)}}}return this.pushTokens(a),a.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(this.expandOnce()===!1){var e=this.stack.pop();return e.treatAsRelax&&(e.text="\\relax"),e}throw new Error}expandMacro(e){return this.macros.has(e)?this.expandTokens([new So(e)]):void 0}expandTokens(e){var r=[],n=this.stack.length;for(this.pushTokens(e);this.stack.length>n;)if(this.expandOnce(!0)===!1){var i=this.stack.pop();i.treatAsRelax&&(i.noexpand=!1,i.treatAsRelax=!1),r.push(i)}return this.countExpansion(r.length),r}expandMacroAsText(e){var r=this.expandMacro(e);return r&&r.map(n=>n.text).join("")}_getExpansion(e){var r=this.macros.get(e);if(r==null)return r;if(e.length===1){var n=this.lexer.catcodes[e];if(n!=null&&n!==13)return}var i=typeof r=="function"?r(this):r;if(typeof i=="string"){var a=0;if(i.indexOf("#")!==-1)for(var s=i.replace(/##/g,"");s.indexOf("#"+(a+1))!==-1;)++a;for(var l=new y3(i,this.settings),u=[],h=l.lex();h.text!=="EOF";)u.push(h),h=l.lex();u.reverse();var f={tokens:u,numArgs:a};return f}return i}isDefined(e){return this.macros.has(e)||hh.hasOwnProperty(e)||An.math.hasOwnProperty(e)||An.text.hasOwnProperty(e)||LG.hasOwnProperty(e)}isExpandable(e){var r=this.macros.get(e);return r!=null?typeof r=="string"||typeof r=="function"||!r.unexpandable:hh.hasOwnProperty(e)&&!hh[e].primitive}},Pz=/^[₊₋₌₍₎₀₁₂₃₄₅₆₇₈₉ₐₑₕᵢⱼₖₗₘₙₒₚᵣₛₜᵤᵥₓᵦᵧᵨᵩᵪ]/,l3=Object.freeze({"\u208A":"+","\u208B":"-","\u208C":"=","\u208D":"(","\u208E":")","\u2080":"0","\u2081":"1","\u2082":"2","\u2083":"3","\u2084":"4","\u2085":"5","\u2086":"6","\u2087":"7","\u2088":"8","\u2089":"9","\u2090":"a","\u2091":"e","\u2095":"h","\u1D62":"i","\u2C7C":"j","\u2096":"k","\u2097":"l","\u2098":"m","\u2099":"n","\u2092":"o","\u209A":"p","\u1D63":"r","\u209B":"s","\u209C":"t","\u1D64":"u","\u1D65":"v","\u2093":"x","\u1D66":"\u03B2","\u1D67":"\u03B3","\u1D68":"\u03C1","\u1D69":"\u03D5","\u1D6A":"\u03C7","\u207A":"+","\u207B":"-","\u207C":"=","\u207D":"(","\u207E":")","\u2070":"0","\xB9":"1","\xB2":"2","\xB3":"3","\u2074":"4","\u2075":"5","\u2076":"6","\u2077":"7","\u2078":"8","\u2079":"9","\u1D2C":"A","\u1D2E":"B","\u1D30":"D","\u1D31":"E","\u1D33":"G","\u1D34":"H","\u1D35":"I","\u1D36":"J","\u1D37":"K","\u1D38":"L","\u1D39":"M","\u1D3A":"N","\u1D3C":"O","\u1D3E":"P","\u1D3F":"R","\u1D40":"T","\u1D41":"U","\u2C7D":"V","\u1D42":"W","\u1D43":"a","\u1D47":"b","\u1D9C":"c","\u1D48":"d","\u1D49":"e","\u1DA0":"f","\u1D4D":"g",\u02B0:"h","\u2071":"i",\u02B2:"j","\u1D4F":"k",\u02E1:"l","\u1D50":"m",\u207F:"n","\u1D52":"o","\u1D56":"p",\u02B3:"r",\u02E2:"s","\u1D57":"t","\u1D58":"u","\u1D5B":"v",\u02B7:"w",\u02E3:"x",\u02B8:"y","\u1DBB":"z","\u1D5D":"\u03B2","\u1D5E":"\u03B3","\u1D5F":"\u03B4","\u1D60":"\u03D5","\u1D61":"\u03C7","\u1DBF":"\u03B8"}),T7={"\u0301":{text:"\\'",math:"\\acute"},"\u0300":{text:"\\`",math:"\\grave"},"\u0308":{text:'\\"',math:"\\ddot"},"\u0303":{text:"\\~",math:"\\tilde"},"\u0304":{text:"\\=",math:"\\bar"},"\u0306":{text:"\\u",math:"\\breve"},"\u030C":{text:"\\v",math:"\\check"},"\u0302":{text:"\\^",math:"\\hat"},"\u0307":{text:"\\.",math:"\\dot"},"\u030A":{text:"\\r",math:"\\mathring"},"\u030B":{text:"\\H"},"\u0327":{text:"\\c"}},Bz={\u00E1:"a\u0301",\u00E0:"a\u0300",\u00E4:"a\u0308",\u01DF:"a\u0308\u0304",\u00E3:"a\u0303",\u0101:"a\u0304",\u0103:"a\u0306",\u1EAF:"a\u0306\u0301",\u1EB1:"a\u0306\u0300",\u1EB5:"a\u0306\u0303",\u01CE:"a\u030C",\u00E2:"a\u0302",\u1EA5:"a\u0302\u0301",\u1EA7:"a\u0302\u0300",\u1EAB:"a\u0302\u0303",\u0227:"a\u0307",\u01E1:"a\u0307\u0304",\u00E5:"a\u030A",\u01FB:"a\u030A\u0301",\u1E03:"b\u0307",\u0107:"c\u0301",\u1E09:"c\u0327\u0301",\u010D:"c\u030C",\u0109:"c\u0302",\u010B:"c\u0307",\u00E7:"c\u0327",\u010F:"d\u030C",\u1E0B:"d\u0307",\u1E11:"d\u0327",\u00E9:"e\u0301",\u00E8:"e\u0300",\u00EB:"e\u0308",\u1EBD:"e\u0303",\u0113:"e\u0304",\u1E17:"e\u0304\u0301",\u1E15:"e\u0304\u0300",\u0115:"e\u0306",\u1E1D:"e\u0327\u0306",\u011B:"e\u030C",\u00EA:"e\u0302",\u1EBF:"e\u0302\u0301",\u1EC1:"e\u0302\u0300",\u1EC5:"e\u0302\u0303",\u0117:"e\u0307",\u0229:"e\u0327",\u1E1F:"f\u0307",\u01F5:"g\u0301",\u1E21:"g\u0304",\u011F:"g\u0306",\u01E7:"g\u030C",\u011D:"g\u0302",\u0121:"g\u0307",\u0123:"g\u0327",\u1E27:"h\u0308",\u021F:"h\u030C",\u0125:"h\u0302",\u1E23:"h\u0307",\u1E29:"h\u0327",\u00ED:"i\u0301",\u00EC:"i\u0300",\u00EF:"i\u0308",\u1E2F:"i\u0308\u0301",\u0129:"i\u0303",\u012B:"i\u0304",\u012D:"i\u0306",\u01D0:"i\u030C",\u00EE:"i\u0302",\u01F0:"j\u030C",\u0135:"j\u0302",\u1E31:"k\u0301",\u01E9:"k\u030C",\u0137:"k\u0327",\u013A:"l\u0301",\u013E:"l\u030C",\u013C:"l\u0327",\u1E3F:"m\u0301",\u1E41:"m\u0307",\u0144:"n\u0301",\u01F9:"n\u0300",\u00F1:"n\u0303",\u0148:"n\u030C",\u1E45:"n\u0307",\u0146:"n\u0327",\u00F3:"o\u0301",\u00F2:"o\u0300",\u00F6:"o\u0308",\u022B:"o\u0308\u0304",\u00F5:"o\u0303",\u1E4D:"o\u0303\u0301",\u1E4F:"o\u0303\u0308",\u022D:"o\u0303\u0304",\u014D:"o\u0304",\u1E53:"o\u0304\u0301",\u1E51:"o\u0304\u0300",\u014F:"o\u0306",\u01D2:"o\u030C",\u00F4:"o\u0302",\u1ED1:"o\u0302\u0301",\u1ED3:"o\u0302\u0300",\u1ED7:"o\u0302\u0303",\u022F:"o\u0307",\u0231:"o\u0307\u0304",\u0151:"o\u030B",\u1E55:"p\u0301",\u1E57:"p\u0307",\u0155:"r\u0301",\u0159:"r\u030C",\u1E59:"r\u0307",\u0157:"r\u0327",\u015B:"s\u0301",\u1E65:"s\u0301\u0307",\u0161:"s\u030C",\u1E67:"s\u030C\u0307",\u015D:"s\u0302",\u1E61:"s\u0307",\u015F:"s\u0327",\u1E97:"t\u0308",\u0165:"t\u030C",\u1E6B:"t\u0307",\u0163:"t\u0327",\u00FA:"u\u0301",\u00F9:"u\u0300",\u00FC:"u\u0308",\u01D8:"u\u0308\u0301",\u01DC:"u\u0308\u0300",\u01D6:"u\u0308\u0304",\u01DA:"u\u0308\u030C",\u0169:"u\u0303",\u1E79:"u\u0303\u0301",\u016B:"u\u0304",\u1E7B:"u\u0304\u0308",\u016D:"u\u0306",\u01D4:"u\u030C",\u00FB:"u\u0302",\u016F:"u\u030A",\u0171:"u\u030B",\u1E7D:"v\u0303",\u1E83:"w\u0301",\u1E81:"w\u0300",\u1E85:"w\u0308",\u0175:"w\u0302",\u1E87:"w\u0307",\u1E98:"w\u030A",\u1E8D:"x\u0308",\u1E8B:"x\u0307",\u00FD:"y\u0301",\u1EF3:"y\u0300",\u00FF:"y\u0308",\u1EF9:"y\u0303",\u0233:"y\u0304",\u0177:"y\u0302",\u1E8F:"y\u0307",\u1E99:"y\u030A",\u017A:"z\u0301",\u017E:"z\u030C",\u1E91:"z\u0302",\u017C:"z\u0307",\u00C1:"A\u0301",\u00C0:"A\u0300",\u00C4:"A\u0308",\u01DE:"A\u0308\u0304",\u00C3:"A\u0303",\u0100:"A\u0304",\u0102:"A\u0306",\u1EAE:"A\u0306\u0301",\u1EB0:"A\u0306\u0300",\u1EB4:"A\u0306\u0303",\u01CD:"A\u030C",\u00C2:"A\u0302",\u1EA4:"A\u0302\u0301",\u1EA6:"A\u0302\u0300",\u1EAA:"A\u0302\u0303",\u0226:"A\u0307",\u01E0:"A\u0307\u0304",\u00C5:"A\u030A",\u01FA:"A\u030A\u0301",\u1E02:"B\u0307",\u0106:"C\u0301",\u1E08:"C\u0327\u0301",\u010C:"C\u030C",\u0108:"C\u0302",\u010A:"C\u0307",\u00C7:"C\u0327",\u010E:"D\u030C",\u1E0A:"D\u0307",\u1E10:"D\u0327",\u00C9:"E\u0301",\u00C8:"E\u0300",\u00CB:"E\u0308",\u1EBC:"E\u0303",\u0112:"E\u0304",\u1E16:"E\u0304\u0301",\u1E14:"E\u0304\u0300",\u0114:"E\u0306",\u1E1C:"E\u0327\u0306",\u011A:"E\u030C",\u00CA:"E\u0302",\u1EBE:"E\u0302\u0301",\u1EC0:"E\u0302\u0300",\u1EC4:"E\u0302\u0303",\u0116:"E\u0307",\u0228:"E\u0327",\u1E1E:"F\u0307",\u01F4:"G\u0301",\u1E20:"G\u0304",\u011E:"G\u0306",\u01E6:"G\u030C",\u011C:"G\u0302",\u0120:"G\u0307",\u0122:"G\u0327",\u1E26:"H\u0308",\u021E:"H\u030C",\u0124:"H\u0302",\u1E22:"H\u0307",\u1E28:"H\u0327",\u00CD:"I\u0301",\u00CC:"I\u0300",\u00CF:"I\u0308",\u1E2E:"I\u0308\u0301",\u0128:"I\u0303",\u012A:"I\u0304",\u012C:"I\u0306",\u01CF:"I\u030C",\u00CE:"I\u0302",\u0130:"I\u0307",\u0134:"J\u0302",\u1E30:"K\u0301",\u01E8:"K\u030C",\u0136:"K\u0327",\u0139:"L\u0301",\u013D:"L\u030C",\u013B:"L\u0327",\u1E3E:"M\u0301",\u1E40:"M\u0307",\u0143:"N\u0301",\u01F8:"N\u0300",\u00D1:"N\u0303",\u0147:"N\u030C",\u1E44:"N\u0307",\u0145:"N\u0327",\u00D3:"O\u0301",\u00D2:"O\u0300",\u00D6:"O\u0308",\u022A:"O\u0308\u0304",\u00D5:"O\u0303",\u1E4C:"O\u0303\u0301",\u1E4E:"O\u0303\u0308",\u022C:"O\u0303\u0304",\u014C:"O\u0304",\u1E52:"O\u0304\u0301",\u1E50:"O\u0304\u0300",\u014E:"O\u0306",\u01D1:"O\u030C",\u00D4:"O\u0302",\u1ED0:"O\u0302\u0301",\u1ED2:"O\u0302\u0300",\u1ED6:"O\u0302\u0303",\u022E:"O\u0307",\u0230:"O\u0307\u0304",\u0150:"O\u030B",\u1E54:"P\u0301",\u1E56:"P\u0307",\u0154:"R\u0301",\u0158:"R\u030C",\u1E58:"R\u0307",\u0156:"R\u0327",\u015A:"S\u0301",\u1E64:"S\u0301\u0307",\u0160:"S\u030C",\u1E66:"S\u030C\u0307",\u015C:"S\u0302",\u1E60:"S\u0307",\u015E:"S\u0327",\u0164:"T\u030C",\u1E6A:"T\u0307",\u0162:"T\u0327",\u00DA:"U\u0301",\u00D9:"U\u0300",\u00DC:"U\u0308",\u01D7:"U\u0308\u0301",\u01DB:"U\u0308\u0300",\u01D5:"U\u0308\u0304",\u01D9:"U\u0308\u030C",\u0168:"U\u0303",\u1E78:"U\u0303\u0301",\u016A:"U\u0304",\u1E7A:"U\u0304\u0308",\u016C:"U\u0306",\u01D3:"U\u030C",\u00DB:"U\u0302",\u016E:"U\u030A",\u0170:"U\u030B",\u1E7C:"V\u0303",\u1E82:"W\u0301",\u1E80:"W\u0300",\u1E84:"W\u0308",\u0174:"W\u0302",\u1E86:"W\u0307",\u1E8C:"X\u0308",\u1E8A:"X\u0307",\u00DD:"Y\u0301",\u1EF2:"Y\u0300",\u0178:"Y\u0308",\u1EF8:"Y\u0303",\u0232:"Y\u0304",\u0176:"Y\u0302",\u1E8E:"Y\u0307",\u0179:"Z\u0301",\u017D:"Z\u030C",\u1E90:"Z\u0302",\u017B:"Z\u0307",\u03AC:"\u03B1\u0301",\u1F70:"\u03B1\u0300",\u1FB1:"\u03B1\u0304",\u1FB0:"\u03B1\u0306",\u03AD:"\u03B5\u0301",\u1F72:"\u03B5\u0300",\u03AE:"\u03B7\u0301",\u1F74:"\u03B7\u0300",\u03AF:"\u03B9\u0301",\u1F76:"\u03B9\u0300",\u03CA:"\u03B9\u0308",\u0390:"\u03B9\u0308\u0301",\u1FD2:"\u03B9\u0308\u0300",\u1FD1:"\u03B9\u0304",\u1FD0:"\u03B9\u0306",\u03CC:"\u03BF\u0301",\u1F78:"\u03BF\u0300",\u03CD:"\u03C5\u0301",\u1F7A:"\u03C5\u0300",\u03CB:"\u03C5\u0308",\u03B0:"\u03C5\u0308\u0301",\u1FE2:"\u03C5\u0308\u0300",\u1FE1:"\u03C5\u0304",\u1FE0:"\u03C5\u0306",\u03CE:"\u03C9\u0301",\u1F7C:"\u03C9\u0300",\u038E:"\u03A5\u0301",\u1FEA:"\u03A5\u0300",\u03AB:"\u03A5\u0308",\u1FE9:"\u03A5\u0304",\u1FE8:"\u03A5\u0306",\u038F:"\u03A9\u0301",\u1FFA:"\u03A9\u0300"},v3=class t{static{o(this,"Parser")}constructor(e,r){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new I7(e,r,this.mode),this.settings=r,this.leftrightDepth=0}expect(e,r){if(r===void 0&&(r=!0),this.fetch().text!==e)throw new gt("Expected '"+e+"', got '"+this.fetch().text+"'",this.fetch());r&&this.consume()}consume(){this.nextToken=null}fetch(){return this.nextToken==null&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(e){this.mode=e,this.gullet.switchMode(e)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{var e=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),e}finally{this.gullet.endGroups()}}subparse(e){var r=this.nextToken;this.consume(),this.gullet.pushToken(new So("}")),this.gullet.pushTokens(e);var n=this.parseExpression(!1);return this.expect("}"),this.nextToken=r,n}parseExpression(e,r){for(var n=[];;){this.mode==="math"&&this.consumeSpaces();var i=this.fetch();if(t.endOfExpression.indexOf(i.text)!==-1||r&&i.text===r||e&&hh[i.text]&&hh[i.text].infix)break;var a=this.parseAtom(r);if(a){if(a.type==="internal")continue}else break;n.push(a)}return this.mode==="text"&&this.formLigatures(n),this.handleInfixNodes(n)}handleInfixNodes(e){for(var r=-1,n,i=0;i=0&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+r[0]+'" used in math mode',e);var l=An[this.mode][r].group,u=Xs.range(e),h;if(Mbe.hasOwnProperty(l)){var f=l;h={type:"atom",mode:this.mode,family:f,loc:u,text:r}}else h={type:l,mode:this.mode,loc:u,text:r};s=h}else if(r.charCodeAt(0)>=128)this.settings.strict&&($z(r.charCodeAt(0))?this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+r[0]+'" used in math mode',e):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+r[0]+'"'+(" ("+r.charCodeAt(0)+")"),e)),s={type:"textord",mode:"text",loc:Xs.range(e),text:r};else return null;if(this.consume(),a)for(var d=0;d{e instanceof Element&&e.tagName==="A"&&e.hasAttribute("target")&&e.setAttribute(t,e.getAttribute("target")??"")}),ch.addHook("afterSanitizeAttributes",e=>{e instanceof Element&&e.tagName==="A"&&e.hasAttribute(t)&&(e.setAttribute("target",e.getAttribute(t)??""),e.removeAttribute(t),e.getAttribute("target")==="_blank"&&e.setAttribute("rel","noopener"))})}var nd,Y4e,X4e,BG,OG,Tr,K4e,Q4e,Z4e,J4e,FG,e3e,fr,t3e,r3e,ec,J7,n3e,i3e,PG,eA,pi,id,mh,Ze,gr=N(()=>{"use strict";u7();nd=//gi,Y4e=o(t=>t?FG(t).replace(/\\n/g,"#br#").split("#br#"):[""],"getRows"),X4e=(()=>{let t=!1;return()=>{t||(j4e(),t=!0)}})();o(j4e,"setupDompurifyHooks");BG=o(t=>(X4e(),ch.sanitize(t)),"removeScript"),OG=o((t,e)=>{if(e.flowchart?.htmlLabels!==!1){let r=e.securityLevel;r==="antiscript"||r==="strict"?t=BG(t):r!=="loose"&&(t=FG(t),t=t.replace(//g,">"),t=t.replace(/=/g,"="),t=J4e(t))}return t},"sanitizeMore"),Tr=o((t,e)=>t&&(e.dompurifyConfig?t=ch.sanitize(OG(t,e),e.dompurifyConfig).toString():t=ch.sanitize(OG(t,e),{FORBID_TAGS:["style"]}).toString(),t),"sanitizeText"),K4e=o((t,e)=>typeof t=="string"?Tr(t,e):t.flat().map(r=>Tr(r,e)),"sanitizeTextOrArray"),Q4e=o(t=>nd.test(t),"hasBreaks"),Z4e=o(t=>t.split(nd),"splitBreaks"),J4e=o(t=>t.replace(/#br#/g,"
"),"placeholderToBreak"),FG=o(t=>t.replace(nd,"#br#"),"breakToPlaceholder"),e3e=o(t=>{let e="";return t&&(e=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,e=e.replaceAll(/\(/g,"\\("),e=e.replaceAll(/\)/g,"\\)")),e},"getUrl"),fr=o(t=>!(t===!1||["false","null","0"].includes(String(t).trim().toLowerCase())),"evaluate"),t3e=o(function(...t){let e=t.filter(r=>!isNaN(r));return Math.max(...e)},"getMax"),r3e=o(function(...t){let e=t.filter(r=>!isNaN(r));return Math.min(...e)},"getMin"),ec=o(function(t){let e=t.split(/(,)/),r=[];for(let n=0;n0&&n+1Math.max(0,t.split(e).length-1),"countOccurrence"),n3e=o((t,e)=>{let r=J7(t,"~"),n=J7(e,"~");return r===1&&n===1},"shouldCombineSets"),i3e=o(t=>{let e=J7(t,"~"),r=!1;if(e<=1)return t;e%2!==0&&t.startsWith("~")&&(t=t.substring(1),r=!0);let n=[...t],i=n.indexOf("~"),a=n.lastIndexOf("~");for(;i!==-1&&a!==-1&&i!==a;)n[i]="<",n[a]=">",i=n.indexOf("~"),a=n.lastIndexOf("~");return r&&n.unshift("~"),n.join("")},"processSet"),PG=o(()=>window.MathMLElement!==void 0,"isMathMLSupported"),eA=/\$\$(.*)\$\$/g,pi=o(t=>(t.match(eA)?.length??0)>0,"hasKatex"),id=o(async(t,e)=>{t=await mh(t,e);let r=document.createElement("div");r.innerHTML=t,r.id="katex-temp",r.style.visibility="hidden",r.style.position="absolute",r.style.top="0",document.querySelector("body")?.insertAdjacentElement("beforeend",r);let i={width:r.clientWidth,height:r.clientHeight};return r.remove(),i},"calculateMathMLDimensions"),mh=o(async(t,e)=>{if(!pi(t))return t;if(!(PG()||e.legacyMathML||e.forceLegacyMathML))return t.replace(eA,"MathML is unsupported in this environment.");let{default:r}=await Promise.resolve().then(()=>(IG(),MG)),n=e.forceLegacyMathML||!PG()&&e.legacyMathML?"htmlAndMathml":"mathml";return t.split(nd).map(i=>pi(i)?`
${i}
`:`
${i}
`).join("").replace(eA,(i,a)=>r.renderToString(a,{throwOnError:!0,displayMode:!0,output:n}).replace(/\n/g," ").replace(//g,""))},"renderKatex"),Ze={getRows:Y4e,sanitizeText:Tr,sanitizeTextOrArray:K4e,hasBreaks:Q4e,splitBreaks:Z4e,lineBreakRegex:nd,removeScript:BG,getUrl:e3e,evaluate:fr,getMax:t3e,getMin:r3e}});var a3e,s3e,vn,Ao,Ei=N(()=>{"use strict";vt();a3e=o(function(t,e){for(let r of e)t.attr(r[0],r[1])},"d3Attrs"),s3e=o(function(t,e,r){let n=new Map;return r?(n.set("width","100%"),n.set("style",`max-width: ${e}px;`)):(n.set("height",t),n.set("width",e)),n},"calculateSvgSizeAttrs"),vn=o(function(t,e,r,n){let i=s3e(e,r,n);a3e(t,i)},"configureSvgSize"),Ao=o(function(t,e,r,n){let i=e.node().getBBox(),a=i.width,s=i.height;Y.info(`SVG bounds: ${a}x${s}`,i);let l=0,u=0;Y.info(`Graph bounds: ${l}x${u}`,t),l=a+r*2,u=s+r*2,Y.info(`Calculated bounds: ${l}x${u}`),vn(e,u,l,n);let h=`${i.x-r} ${i.y-r} ${i.width+2*r} ${i.height+2*r}`;e.attr("viewBox",h)},"setupGraphViewbox")});var S3,o3e,$G,zG,tA=N(()=>{"use strict";vt();S3={},o3e=o((t,e,r)=>{let n="";return t in S3&&S3[t]?n=S3[t](r):Y.warn(`No theme found for ${t}`),` & { + font-family: ${r.fontFamily}; + font-size: ${r.fontSize}; + fill: ${r.textColor} + } + @keyframes edge-animation-frame { + from { + stroke-dashoffset: 0; + } + } + @keyframes dash { + to { + stroke-dashoffset: 0; + } + } + & .edge-animation-slow { + stroke-dasharray: 9,5 !important; + stroke-dashoffset: 900; + animation: dash 50s linear infinite; + stroke-linecap: round; + } + & .edge-animation-fast { + stroke-dasharray: 9,5 !important; + stroke-dashoffset: 900; + animation: dash 20s linear infinite; + stroke-linecap: round; + } + /* Classes common for multiple diagrams */ + + & .error-icon { + fill: ${r.errorBkgColor}; + } + & .error-text { + fill: ${r.errorTextColor}; + stroke: ${r.errorTextColor}; + } + + & .edge-thickness-normal { + stroke-width: 1px; + } + & .edge-thickness-thick { + stroke-width: 3.5px + } + & .edge-pattern-solid { + stroke-dasharray: 0; + } + & .edge-thickness-invisible { + stroke-width: 0; + fill: none; + } + & .edge-pattern-dashed{ + stroke-dasharray: 3; + } + .edge-pattern-dotted { + stroke-dasharray: 2; + } + + & .marker { + fill: ${r.lineColor}; + stroke: ${r.lineColor}; + } + & .marker.cross { + stroke: ${r.lineColor}; + } + + & svg { + font-family: ${r.fontFamily}; + font-size: ${r.fontSize}; + } + & p { + margin: 0 + } + + ${n} + + ${e} +`},"getStyles"),$G=o((t,e)=>{e!==void 0&&(S3[t]=e)},"addStylesForDiagram"),zG=o3e});var qy={};hr(qy,{clear:()=>Ar,getAccDescription:()=>Mr,getAccTitle:()=>Rr,getDiagramTitle:()=>Ir,setAccDescription:()=>Nr,setAccTitle:()=>Lr,setDiagramTitle:()=>$r});var rA,nA,iA,aA,Ar,Lr,Rr,Nr,Mr,$r,Ir,mi=N(()=>{"use strict";gr();ji();rA="",nA="",iA="",aA=o(t=>Tr(t,cr()),"sanitizeText"),Ar=o(()=>{rA="",iA="",nA=""},"clear"),Lr=o(t=>{rA=aA(t).replace(/^\s+/g,"")},"setAccTitle"),Rr=o(()=>rA,"getAccTitle"),Nr=o(t=>{iA=aA(t).replace(/\n\s+/g,` +`)},"setAccDescription"),Mr=o(()=>iA,"getAccDescription"),$r=o(t=>{nA=aA(t)},"setDiagramTitle"),Ir=o(()=>nA,"getDiagramTitle")});var GG,l3e,me,Yy,A3,Xy,oA,c3e,C3,ad,jy,sA,zt=N(()=>{"use strict";Xf();vt();ji();gr();Ei();tA();mi();GG=Y,l3e=wy,me=cr,Yy=X4,A3=lh,Xy=o(t=>Tr(t,me()),"sanitizeText"),oA=Ao,c3e=o(()=>qy,"getCommonDb"),C3={},ad=o((t,e,r)=>{C3[t]&&GG.warn(`Diagram with id ${t} already registered. Overwriting.`),C3[t]=e,r&&FC(t,r),$G(t,e.styles),e.injectUtils?.(GG,l3e,me,Xy,oA,c3e(),()=>{})},"registerDiagram"),jy=o(t=>{if(t in C3)return C3[t];throw new sA(t)},"getDiagram"),sA=class extends Error{static{o(this,"DiagramNotFoundError")}constructor(e){super(`Diagram ${e} not found.`)}}});var ul,gh,Ja,cl,tc,Ky,lA,cA,_3,D3,VG,u3e,h3e,f3e,d3e,p3e,m3e,g3e,y3e,v3e,x3e,b3e,w3e,T3e,k3e,E3e,S3e,C3e,UG,A3e,_3e,HG,D3e,L3e,R3e,N3e,yh,M3e,I3e,O3e,P3e,B3e,Qy,uA=N(()=>{"use strict";zt();gr();mi();ul=[],gh=[""],Ja="global",cl="",tc=[{alias:"global",label:{text:"global"},type:{text:"global"},tags:null,link:null,parentBoundary:""}],Ky=[],lA="",cA=!1,_3=4,D3=2,u3e=o(function(){return VG},"getC4Type"),h3e=o(function(t){VG=Tr(t,me())},"setC4Type"),f3e=o(function(t,e,r,n,i,a,s,l,u){if(t==null||e===void 0||e===null||r===void 0||r===null||n===void 0||n===null)return;let h={},f=Ky.find(d=>d.from===e&&d.to===r);if(f?h=f:Ky.push(h),h.type=t,h.from=e,h.to=r,h.label={text:n},i==null)h.techn={text:""};else if(typeof i=="object"){let[d,p]=Object.entries(i)[0];h[d]={text:p}}else h.techn={text:i};if(a==null)h.descr={text:""};else if(typeof a=="object"){let[d,p]=Object.entries(a)[0];h[d]={text:p}}else h.descr={text:a};if(typeof s=="object"){let[d,p]=Object.entries(s)[0];h[d]=p}else h.sprite=s;if(typeof l=="object"){let[d,p]=Object.entries(l)[0];h[d]=p}else h.tags=l;if(typeof u=="object"){let[d,p]=Object.entries(u)[0];h[d]=p}else h.link=u;h.wrap=yh()},"addRel"),d3e=o(function(t,e,r,n,i,a,s){if(e===null||r===null)return;let l={},u=ul.find(h=>h.alias===e);if(u&&e===u.alias?l=u:(l.alias=e,ul.push(l)),r==null?l.label={text:""}:l.label={text:r},n==null)l.descr={text:""};else if(typeof n=="object"){let[h,f]=Object.entries(n)[0];l[h]={text:f}}else l.descr={text:n};if(typeof i=="object"){let[h,f]=Object.entries(i)[0];l[h]=f}else l.sprite=i;if(typeof a=="object"){let[h,f]=Object.entries(a)[0];l[h]=f}else l.tags=a;if(typeof s=="object"){let[h,f]=Object.entries(s)[0];l[h]=f}else l.link=s;l.typeC4Shape={text:t},l.parentBoundary=Ja,l.wrap=yh()},"addPersonOrSystem"),p3e=o(function(t,e,r,n,i,a,s,l){if(e===null||r===null)return;let u={},h=ul.find(f=>f.alias===e);if(h&&e===h.alias?u=h:(u.alias=e,ul.push(u)),r==null?u.label={text:""}:u.label={text:r},n==null)u.techn={text:""};else if(typeof n=="object"){let[f,d]=Object.entries(n)[0];u[f]={text:d}}else u.techn={text:n};if(i==null)u.descr={text:""};else if(typeof i=="object"){let[f,d]=Object.entries(i)[0];u[f]={text:d}}else u.descr={text:i};if(typeof a=="object"){let[f,d]=Object.entries(a)[0];u[f]=d}else u.sprite=a;if(typeof s=="object"){let[f,d]=Object.entries(s)[0];u[f]=d}else u.tags=s;if(typeof l=="object"){let[f,d]=Object.entries(l)[0];u[f]=d}else u.link=l;u.wrap=yh(),u.typeC4Shape={text:t},u.parentBoundary=Ja},"addContainer"),m3e=o(function(t,e,r,n,i,a,s,l){if(e===null||r===null)return;let u={},h=ul.find(f=>f.alias===e);if(h&&e===h.alias?u=h:(u.alias=e,ul.push(u)),r==null?u.label={text:""}:u.label={text:r},n==null)u.techn={text:""};else if(typeof n=="object"){let[f,d]=Object.entries(n)[0];u[f]={text:d}}else u.techn={text:n};if(i==null)u.descr={text:""};else if(typeof i=="object"){let[f,d]=Object.entries(i)[0];u[f]={text:d}}else u.descr={text:i};if(typeof a=="object"){let[f,d]=Object.entries(a)[0];u[f]=d}else u.sprite=a;if(typeof s=="object"){let[f,d]=Object.entries(s)[0];u[f]=d}else u.tags=s;if(typeof l=="object"){let[f,d]=Object.entries(l)[0];u[f]=d}else u.link=l;u.wrap=yh(),u.typeC4Shape={text:t},u.parentBoundary=Ja},"addComponent"),g3e=o(function(t,e,r,n,i){if(t===null||e===null)return;let a={},s=tc.find(l=>l.alias===t);if(s&&t===s.alias?a=s:(a.alias=t,tc.push(a)),e==null?a.label={text:""}:a.label={text:e},r==null)a.type={text:"system"};else if(typeof r=="object"){let[l,u]=Object.entries(r)[0];a[l]={text:u}}else a.type={text:r};if(typeof n=="object"){let[l,u]=Object.entries(n)[0];a[l]=u}else a.tags=n;if(typeof i=="object"){let[l,u]=Object.entries(i)[0];a[l]=u}else a.link=i;a.parentBoundary=Ja,a.wrap=yh(),cl=Ja,Ja=t,gh.push(cl)},"addPersonOrSystemBoundary"),y3e=o(function(t,e,r,n,i){if(t===null||e===null)return;let a={},s=tc.find(l=>l.alias===t);if(s&&t===s.alias?a=s:(a.alias=t,tc.push(a)),e==null?a.label={text:""}:a.label={text:e},r==null)a.type={text:"container"};else if(typeof r=="object"){let[l,u]=Object.entries(r)[0];a[l]={text:u}}else a.type={text:r};if(typeof n=="object"){let[l,u]=Object.entries(n)[0];a[l]=u}else a.tags=n;if(typeof i=="object"){let[l,u]=Object.entries(i)[0];a[l]=u}else a.link=i;a.parentBoundary=Ja,a.wrap=yh(),cl=Ja,Ja=t,gh.push(cl)},"addContainerBoundary"),v3e=o(function(t,e,r,n,i,a,s,l){if(e===null||r===null)return;let u={},h=tc.find(f=>f.alias===e);if(h&&e===h.alias?u=h:(u.alias=e,tc.push(u)),r==null?u.label={text:""}:u.label={text:r},n==null)u.type={text:"node"};else if(typeof n=="object"){let[f,d]=Object.entries(n)[0];u[f]={text:d}}else u.type={text:n};if(i==null)u.descr={text:""};else if(typeof i=="object"){let[f,d]=Object.entries(i)[0];u[f]={text:d}}else u.descr={text:i};if(typeof s=="object"){let[f,d]=Object.entries(s)[0];u[f]=d}else u.tags=s;if(typeof l=="object"){let[f,d]=Object.entries(l)[0];u[f]=d}else u.link=l;u.nodeType=t,u.parentBoundary=Ja,u.wrap=yh(),cl=Ja,Ja=e,gh.push(cl)},"addDeploymentNode"),x3e=o(function(){Ja=cl,gh.pop(),cl=gh.pop(),gh.push(cl)},"popBoundaryParseStack"),b3e=o(function(t,e,r,n,i,a,s,l,u,h,f){let d=ul.find(p=>p.alias===e);if(!(d===void 0&&(d=tc.find(p=>p.alias===e),d===void 0))){if(r!=null)if(typeof r=="object"){let[p,m]=Object.entries(r)[0];d[p]=m}else d.bgColor=r;if(n!=null)if(typeof n=="object"){let[p,m]=Object.entries(n)[0];d[p]=m}else d.fontColor=n;if(i!=null)if(typeof i=="object"){let[p,m]=Object.entries(i)[0];d[p]=m}else d.borderColor=i;if(a!=null)if(typeof a=="object"){let[p,m]=Object.entries(a)[0];d[p]=m}else d.shadowing=a;if(s!=null)if(typeof s=="object"){let[p,m]=Object.entries(s)[0];d[p]=m}else d.shape=s;if(l!=null)if(typeof l=="object"){let[p,m]=Object.entries(l)[0];d[p]=m}else d.sprite=l;if(u!=null)if(typeof u=="object"){let[p,m]=Object.entries(u)[0];d[p]=m}else d.techn=u;if(h!=null)if(typeof h=="object"){let[p,m]=Object.entries(h)[0];d[p]=m}else d.legendText=h;if(f!=null)if(typeof f=="object"){let[p,m]=Object.entries(f)[0];d[p]=m}else d.legendSprite=f}},"updateElStyle"),w3e=o(function(t,e,r,n,i,a,s){let l=Ky.find(u=>u.from===e&&u.to===r);if(l!==void 0){if(n!=null)if(typeof n=="object"){let[u,h]=Object.entries(n)[0];l[u]=h}else l.textColor=n;if(i!=null)if(typeof i=="object"){let[u,h]=Object.entries(i)[0];l[u]=h}else l.lineColor=i;if(a!=null)if(typeof a=="object"){let[u,h]=Object.entries(a)[0];l[u]=parseInt(h)}else l.offsetX=parseInt(a);if(s!=null)if(typeof s=="object"){let[u,h]=Object.entries(s)[0];l[u]=parseInt(h)}else l.offsetY=parseInt(s)}},"updateRelStyle"),T3e=o(function(t,e,r){let n=_3,i=D3;if(typeof e=="object"){let a=Object.values(e)[0];n=parseInt(a)}else n=parseInt(e);if(typeof r=="object"){let a=Object.values(r)[0];i=parseInt(a)}else i=parseInt(r);n>=1&&(_3=n),i>=1&&(D3=i)},"updateLayoutConfig"),k3e=o(function(){return _3},"getC4ShapeInRow"),E3e=o(function(){return D3},"getC4BoundaryInRow"),S3e=o(function(){return Ja},"getCurrentBoundaryParse"),C3e=o(function(){return cl},"getParentBoundaryParse"),UG=o(function(t){return t==null?ul:ul.filter(e=>e.parentBoundary===t)},"getC4ShapeArray"),A3e=o(function(t){return ul.find(e=>e.alias===t)},"getC4Shape"),_3e=o(function(t){return Object.keys(UG(t))},"getC4ShapeKeys"),HG=o(function(t){return t==null?tc:tc.filter(e=>e.parentBoundary===t)},"getBoundaries"),D3e=HG,L3e=o(function(){return Ky},"getRels"),R3e=o(function(){return lA},"getTitle"),N3e=o(function(t){cA=t},"setWrap"),yh=o(function(){return cA},"autoWrap"),M3e=o(function(){ul=[],tc=[{alias:"global",label:{text:"global"},type:{text:"global"},tags:null,link:null,parentBoundary:""}],cl="",Ja="global",gh=[""],Ky=[],gh=[""],lA="",cA=!1,_3=4,D3=2},"clear"),I3e={SOLID:0,DOTTED:1,NOTE:2,SOLID_CROSS:3,DOTTED_CROSS:4,SOLID_OPEN:5,DOTTED_OPEN:6,LOOP_START:10,LOOP_END:11,ALT_START:12,ALT_ELSE:13,ALT_END:14,OPT_START:15,OPT_END:16,ACTIVE_START:17,ACTIVE_END:18,PAR_START:19,PAR_AND:20,PAR_END:21,RECT_START:22,RECT_END:23,SOLID_POINT:24,DOTTED_POINT:25},O3e={FILLED:0,OPEN:1},P3e={LEFTOF:0,RIGHTOF:1,OVER:2},B3e=o(function(t){lA=Tr(t,me())},"setTitle"),Qy={addPersonOrSystem:d3e,addPersonOrSystemBoundary:g3e,addContainer:p3e,addContainerBoundary:y3e,addComponent:m3e,addDeploymentNode:v3e,popBoundaryParseStack:x3e,addRel:f3e,updateElStyle:b3e,updateRelStyle:w3e,updateLayoutConfig:T3e,autoWrap:yh,setWrap:N3e,getC4ShapeArray:UG,getC4Shape:A3e,getC4ShapeKeys:_3e,getBoundaries:HG,getBoundarys:D3e,getCurrentBoundaryParse:S3e,getParentBoundaryParse:C3e,getRels:L3e,getTitle:R3e,getC4Type:u3e,getC4ShapeInRow:k3e,getC4BoundaryInRow:E3e,setAccTitle:Lr,getAccTitle:Rr,getAccDescription:Mr,setAccDescription:Nr,getConfig:o(()=>me().c4,"getConfig"),clear:M3e,LINETYPE:I3e,ARROWTYPE:O3e,PLACEMENT:P3e,setTitle:B3e,setC4Type:h3e}});function sd(t,e){return t==null||e==null?NaN:te?1:t>=e?0:NaN}var hA=N(()=>{"use strict";o(sd,"ascending")});function fA(t,e){return t==null||e==null?NaN:et?1:e>=t?0:NaN}var WG=N(()=>{"use strict";o(fA,"descending")});function od(t){let e,r,n;t.length!==2?(e=sd,r=o((l,u)=>sd(t(l),u),"compare2"),n=o((l,u)=>t(l)-u,"delta")):(e=t===sd||t===fA?t:F3e,r=t,n=t);function i(l,u,h=0,f=l.length){if(h>>1;r(l[d],u)<0?h=d+1:f=d}while(h>>1;r(l[d],u)<=0?h=d+1:f=d}while(hh&&n(l[d-1],u)>-n(l[d],u)?d-1:d}return o(s,"center"),{left:i,center:s,right:a}}function F3e(){return 0}var dA=N(()=>{"use strict";hA();WG();o(od,"bisector");o(F3e,"zero")});function pA(t){return t===null?NaN:+t}var qG=N(()=>{"use strict";o(pA,"number")});var YG,XG,$3e,z3e,mA,jG=N(()=>{"use strict";hA();dA();qG();YG=od(sd),XG=YG.right,$3e=YG.left,z3e=od(pA).center,mA=XG});function KG({_intern:t,_key:e},r){let n=e(r);return t.has(n)?t.get(n):r}function G3e({_intern:t,_key:e},r){let n=e(r);return t.has(n)?t.get(n):(t.set(n,r),r)}function V3e({_intern:t,_key:e},r){let n=e(r);return t.has(n)&&(r=t.get(n),t.delete(n)),r}function U3e(t){return t!==null&&typeof t=="object"?t.valueOf():t}var g0,QG=N(()=>{"use strict";g0=class extends Map{static{o(this,"InternMap")}constructor(e,r=U3e){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:r}}),e!=null)for(let[n,i]of e)this.set(n,i)}get(e){return super.get(KG(this,e))}has(e){return super.has(KG(this,e))}set(e,r){return super.set(G3e(this,e),r)}delete(e){return super.delete(V3e(this,e))}};o(KG,"intern_get");o(G3e,"intern_set");o(V3e,"intern_delete");o(U3e,"keyof")});function L3(t,e,r){let n=(e-t)/Math.max(0,r),i=Math.floor(Math.log10(n)),a=n/Math.pow(10,i),s=a>=H3e?10:a>=W3e?5:a>=q3e?2:1,l,u,h;return i<0?(h=Math.pow(10,-i)/s,l=Math.round(t*h),u=Math.round(e*h),l/he&&--u,h=-h):(h=Math.pow(10,i)*s,l=Math.round(t/h),u=Math.round(e/h),l*he&&--u),u0))return[];if(t===e)return[t];let n=e=i))return[];let l=a-i+1,u=new Array(l);if(n)if(s<0)for(let h=0;h{"use strict";H3e=Math.sqrt(50),W3e=Math.sqrt(10),q3e=Math.sqrt(2);o(L3,"tickSpec");o(R3,"ticks");o(Zy,"tickIncrement");o(y0,"tickStep")});function N3(t,e){let r;if(e===void 0)for(let n of t)n!=null&&(r=n)&&(r=n);else{let n=-1;for(let i of t)(i=e(i,++n,t))!=null&&(r=i)&&(r=i)}return r}var JG=N(()=>{"use strict";o(N3,"max")});function M3(t,e){let r;if(e===void 0)for(let n of t)n!=null&&(r>n||r===void 0&&n>=n)&&(r=n);else{let n=-1;for(let i of t)(i=e(i,++n,t))!=null&&(r>i||r===void 0&&i>=i)&&(r=i)}return r}var eV=N(()=>{"use strict";o(M3,"min")});function I3(t,e,r){t=+t,e=+e,r=(i=arguments.length)<2?(e=t,t=0,1):i<3?1:+r;for(var n=-1,i=Math.max(0,Math.ceil((e-t)/r))|0,a=new Array(i);++n{"use strict";o(I3,"range")});var vh=N(()=>{"use strict";jG();dA();JG();eV();tV();ZG();QG()});function gA(t){return t}var rV=N(()=>{"use strict";o(gA,"default")});function Y3e(t){return"translate("+t+",0)"}function X3e(t){return"translate(0,"+t+")"}function j3e(t){return e=>+t(e)}function K3e(t,e){return e=Math.max(0,t.bandwidth()-e*2)/2,t.round()&&(e=Math.round(e)),r=>+t(r)+e}function Q3e(){return!this.__axis}function iV(t,e){var r=[],n=null,i=null,a=6,s=6,l=3,u=typeof window<"u"&&window.devicePixelRatio>1?0:.5,h=t===P3||t===O3?-1:1,f=t===O3||t===yA?"x":"y",d=t===P3||t===vA?Y3e:X3e;function p(m){var g=n??(e.ticks?e.ticks.apply(e,r):e.domain()),y=i??(e.tickFormat?e.tickFormat.apply(e,r):gA),v=Math.max(a,0)+l,x=e.range(),b=+x[0]+u,w=+x[x.length-1]+u,C=(e.bandwidth?K3e:j3e)(e.copy(),u),T=m.selection?m.selection():m,E=T.selectAll(".domain").data([null]),A=T.selectAll(".tick").data(g,e).order(),S=A.exit(),_=A.enter().append("g").attr("class","tick"),I=A.select("line"),D=A.select("text");E=E.merge(E.enter().insert("path",".tick").attr("class","domain").attr("stroke","currentColor")),A=A.merge(_),I=I.merge(_.append("line").attr("stroke","currentColor").attr(f+"2",h*a)),D=D.merge(_.append("text").attr("fill","currentColor").attr(f,h*v).attr("dy",t===P3?"0em":t===vA?"0.71em":"0.32em")),m!==T&&(E=E.transition(m),A=A.transition(m),I=I.transition(m),D=D.transition(m),S=S.transition(m).attr("opacity",nV).attr("transform",function(k){return isFinite(k=C(k))?d(k+u):this.getAttribute("transform")}),_.attr("opacity",nV).attr("transform",function(k){var L=this.parentNode.__axis;return d((L&&isFinite(L=L(k))?L:C(k))+u)})),S.remove(),E.attr("d",t===O3||t===yA?s?"M"+h*s+","+b+"H"+u+"V"+w+"H"+h*s:"M"+u+","+b+"V"+w:s?"M"+b+","+h*s+"V"+u+"H"+w+"V"+h*s:"M"+b+","+u+"H"+w),A.attr("opacity",1).attr("transform",function(k){return d(C(k)+u)}),I.attr(f+"2",h*a),D.attr(f,h*v).text(y),T.filter(Q3e).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===yA?"start":t===O3?"end":"middle"),T.each(function(){this.__axis=C})}return o(p,"axis"),p.scale=function(m){return arguments.length?(e=m,p):e},p.ticks=function(){return r=Array.from(arguments),p},p.tickArguments=function(m){return arguments.length?(r=m==null?[]:Array.from(m),p):r.slice()},p.tickValues=function(m){return arguments.length?(n=m==null?null:Array.from(m),p):n&&n.slice()},p.tickFormat=function(m){return arguments.length?(i=m,p):i},p.tickSize=function(m){return arguments.length?(a=s=+m,p):a},p.tickSizeInner=function(m){return arguments.length?(a=+m,p):a},p.tickSizeOuter=function(m){return arguments.length?(s=+m,p):s},p.tickPadding=function(m){return arguments.length?(l=+m,p):l},p.offset=function(m){return arguments.length?(u=+m,p):u},p}function xA(t){return iV(P3,t)}function bA(t){return iV(vA,t)}var P3,yA,vA,O3,nV,aV=N(()=>{"use strict";rV();P3=1,yA=2,vA=3,O3=4,nV=1e-6;o(Y3e,"translateX");o(X3e,"translateY");o(j3e,"number");o(K3e,"center");o(Q3e,"entering");o(iV,"axis");o(xA,"axisTop");o(bA,"axisBottom")});var sV=N(()=>{"use strict";aV()});function lV(){for(var t=0,e=arguments.length,r={},n;t=0&&(n=r.slice(i+1),r=r.slice(0,i)),r&&!e.hasOwnProperty(r))throw new Error("unknown type: "+r);return{type:r,name:n}})}function e5e(t,e){for(var r=0,n=t.length,i;r{"use strict";Z3e={value:o(()=>{},"value")};o(lV,"dispatch");o(B3,"Dispatch");o(J3e,"parseTypenames");B3.prototype=lV.prototype={constructor:B3,on:o(function(t,e){var r=this._,n=J3e(t+"",r),i,a=-1,s=n.length;if(arguments.length<2){for(;++a0)for(var r=new Array(i),n=0,i,a;n{"use strict";cV()});var F3,kA,EA=N(()=>{"use strict";F3="http://www.w3.org/1999/xhtml",kA={svg:"http://www.w3.org/2000/svg",xhtml:F3,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"}});function rc(t){var e=t+="",r=e.indexOf(":");return r>=0&&(e=t.slice(0,r))!=="xmlns"&&(t=t.slice(r+1)),kA.hasOwnProperty(e)?{space:kA[e],local:t}:t}var $3=N(()=>{"use strict";EA();o(rc,"default")});function t5e(t){return function(){var e=this.ownerDocument,r=this.namespaceURI;return r===F3&&e.documentElement.namespaceURI===F3?e.createElement(t):e.createElementNS(r,t)}}function r5e(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}function Jy(t){var e=rc(t);return(e.local?r5e:t5e)(e)}var SA=N(()=>{"use strict";$3();EA();o(t5e,"creatorInherit");o(r5e,"creatorFixed");o(Jy,"default")});function n5e(){}function xh(t){return t==null?n5e:function(){return this.querySelector(t)}}var z3=N(()=>{"use strict";o(n5e,"none");o(xh,"default")});function CA(t){typeof t!="function"&&(t=xh(t));for(var e=this._groups,r=e.length,n=new Array(r),i=0;i{"use strict";hl();z3();o(CA,"default")});function AA(t){return t==null?[]:Array.isArray(t)?t:Array.from(t)}var hV=N(()=>{"use strict";o(AA,"array")});function i5e(){return[]}function v0(t){return t==null?i5e:function(){return this.querySelectorAll(t)}}var _A=N(()=>{"use strict";o(i5e,"empty");o(v0,"default")});function a5e(t){return function(){return AA(t.apply(this,arguments))}}function DA(t){typeof t=="function"?t=a5e(t):t=v0(t);for(var e=this._groups,r=e.length,n=[],i=[],a=0;a{"use strict";hl();hV();_A();o(a5e,"arrayAll");o(DA,"default")});function x0(t){return function(){return this.matches(t)}}function G3(t){return function(e){return e.matches(t)}}var ev=N(()=>{"use strict";o(x0,"default");o(G3,"childMatcher")});function o5e(t){return function(){return s5e.call(this.children,t)}}function l5e(){return this.firstElementChild}function LA(t){return this.select(t==null?l5e:o5e(typeof t=="function"?t:G3(t)))}var s5e,dV=N(()=>{"use strict";ev();s5e=Array.prototype.find;o(o5e,"childFind");o(l5e,"childFirst");o(LA,"default")});function u5e(){return Array.from(this.children)}function h5e(t){return function(){return c5e.call(this.children,t)}}function RA(t){return this.selectAll(t==null?u5e:h5e(typeof t=="function"?t:G3(t)))}var c5e,pV=N(()=>{"use strict";ev();c5e=Array.prototype.filter;o(u5e,"children");o(h5e,"childrenFilter");o(RA,"default")});function NA(t){typeof t!="function"&&(t=x0(t));for(var e=this._groups,r=e.length,n=new Array(r),i=0;i{"use strict";hl();ev();o(NA,"default")});function tv(t){return new Array(t.length)}var MA=N(()=>{"use strict";o(tv,"default")});function IA(){return new oi(this._enter||this._groups.map(tv),this._parents)}function rv(t,e){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=e}var OA=N(()=>{"use strict";MA();hl();o(IA,"default");o(rv,"EnterNode");rv.prototype={constructor:rv,appendChild:o(function(t){return this._parent.insertBefore(t,this._next)},"appendChild"),insertBefore:o(function(t,e){return this._parent.insertBefore(t,e)},"insertBefore"),querySelector:o(function(t){return this._parent.querySelector(t)},"querySelector"),querySelectorAll:o(function(t){return this._parent.querySelectorAll(t)},"querySelectorAll")}});function PA(t){return function(){return t}}var gV=N(()=>{"use strict";o(PA,"default")});function f5e(t,e,r,n,i,a){for(var s=0,l,u=e.length,h=a.length;s=w&&(w=b+1);!(T=v[w])&&++w{"use strict";hl();OA();gV();o(f5e,"bindIndex");o(d5e,"bindKey");o(p5e,"datum");o(BA,"default");o(m5e,"arraylike")});function FA(){return new oi(this._exit||this._groups.map(tv),this._parents)}var vV=N(()=>{"use strict";MA();hl();o(FA,"default")});function $A(t,e,r){var n=this.enter(),i=this,a=this.exit();return typeof t=="function"?(n=t(n),n&&(n=n.selection())):n=n.append(t+""),e!=null&&(i=e(i),i&&(i=i.selection())),r==null?a.remove():r(a),n&&i?n.merge(i).order():i}var xV=N(()=>{"use strict";o($A,"default")});function zA(t){for(var e=t.selection?t.selection():t,r=this._groups,n=e._groups,i=r.length,a=n.length,s=Math.min(i,a),l=new Array(i),u=0;u{"use strict";hl();o(zA,"default")});function GA(){for(var t=this._groups,e=-1,r=t.length;++e=0;)(s=n[i])&&(a&&s.compareDocumentPosition(a)^4&&a.parentNode.insertBefore(s,a),a=s);return this}var wV=N(()=>{"use strict";o(GA,"default")});function VA(t){t||(t=g5e);function e(d,p){return d&&p?t(d.__data__,p.__data__):!d-!p}o(e,"compareNode");for(var r=this._groups,n=r.length,i=new Array(n),a=0;ae?1:t>=e?0:NaN}var TV=N(()=>{"use strict";hl();o(VA,"default");o(g5e,"ascending")});function UA(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this}var kV=N(()=>{"use strict";o(UA,"default")});function HA(){return Array.from(this)}var EV=N(()=>{"use strict";o(HA,"default")});function WA(){for(var t=this._groups,e=0,r=t.length;e{"use strict";o(WA,"default")});function qA(){let t=0;for(let e of this)++t;return t}var CV=N(()=>{"use strict";o(qA,"default")});function YA(){return!this.node()}var AV=N(()=>{"use strict";o(YA,"default")});function XA(t){for(var e=this._groups,r=0,n=e.length;r{"use strict";o(XA,"default")});function y5e(t){return function(){this.removeAttribute(t)}}function v5e(t){return function(){this.removeAttributeNS(t.space,t.local)}}function x5e(t,e){return function(){this.setAttribute(t,e)}}function b5e(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function w5e(t,e){return function(){var r=e.apply(this,arguments);r==null?this.removeAttribute(t):this.setAttribute(t,r)}}function T5e(t,e){return function(){var r=e.apply(this,arguments);r==null?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,r)}}function jA(t,e){var r=rc(t);if(arguments.length<2){var n=this.node();return r.local?n.getAttributeNS(r.space,r.local):n.getAttribute(r)}return this.each((e==null?r.local?v5e:y5e:typeof e=="function"?r.local?T5e:w5e:r.local?b5e:x5e)(r,e))}var DV=N(()=>{"use strict";$3();o(y5e,"attrRemove");o(v5e,"attrRemoveNS");o(x5e,"attrConstant");o(b5e,"attrConstantNS");o(w5e,"attrFunction");o(T5e,"attrFunctionNS");o(jA,"default")});function nv(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}var KA=N(()=>{"use strict";o(nv,"default")});function k5e(t){return function(){this.style.removeProperty(t)}}function E5e(t,e,r){return function(){this.style.setProperty(t,e,r)}}function S5e(t,e,r){return function(){var n=e.apply(this,arguments);n==null?this.style.removeProperty(t):this.style.setProperty(t,n,r)}}function QA(t,e,r){return arguments.length>1?this.each((e==null?k5e:typeof e=="function"?S5e:E5e)(t,e,r??"")):bh(this.node(),t)}function bh(t,e){return t.style.getPropertyValue(e)||nv(t).getComputedStyle(t,null).getPropertyValue(e)}var ZA=N(()=>{"use strict";KA();o(k5e,"styleRemove");o(E5e,"styleConstant");o(S5e,"styleFunction");o(QA,"default");o(bh,"styleValue")});function C5e(t){return function(){delete this[t]}}function A5e(t,e){return function(){this[t]=e}}function _5e(t,e){return function(){var r=e.apply(this,arguments);r==null?delete this[t]:this[t]=r}}function JA(t,e){return arguments.length>1?this.each((e==null?C5e:typeof e=="function"?_5e:A5e)(t,e)):this.node()[t]}var LV=N(()=>{"use strict";o(C5e,"propertyRemove");o(A5e,"propertyConstant");o(_5e,"propertyFunction");o(JA,"default")});function RV(t){return t.trim().split(/^|\s+/)}function e8(t){return t.classList||new NV(t)}function NV(t){this._node=t,this._names=RV(t.getAttribute("class")||"")}function MV(t,e){for(var r=e8(t),n=-1,i=e.length;++n{"use strict";o(RV,"classArray");o(e8,"classList");o(NV,"ClassList");NV.prototype={add:o(function(t){var e=this._names.indexOf(t);e<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},"add"),remove:o(function(t){var e=this._names.indexOf(t);e>=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},"remove"),contains:o(function(t){return this._names.indexOf(t)>=0},"contains")};o(MV,"classedAdd");o(IV,"classedRemove");o(D5e,"classedTrue");o(L5e,"classedFalse");o(R5e,"classedFunction");o(t8,"default")});function N5e(){this.textContent=""}function M5e(t){return function(){this.textContent=t}}function I5e(t){return function(){var e=t.apply(this,arguments);this.textContent=e??""}}function r8(t){return arguments.length?this.each(t==null?N5e:(typeof t=="function"?I5e:M5e)(t)):this.node().textContent}var PV=N(()=>{"use strict";o(N5e,"textRemove");o(M5e,"textConstant");o(I5e,"textFunction");o(r8,"default")});function O5e(){this.innerHTML=""}function P5e(t){return function(){this.innerHTML=t}}function B5e(t){return function(){var e=t.apply(this,arguments);this.innerHTML=e??""}}function n8(t){return arguments.length?this.each(t==null?O5e:(typeof t=="function"?B5e:P5e)(t)):this.node().innerHTML}var BV=N(()=>{"use strict";o(O5e,"htmlRemove");o(P5e,"htmlConstant");o(B5e,"htmlFunction");o(n8,"default")});function F5e(){this.nextSibling&&this.parentNode.appendChild(this)}function i8(){return this.each(F5e)}var FV=N(()=>{"use strict";o(F5e,"raise");o(i8,"default")});function $5e(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function a8(){return this.each($5e)}var $V=N(()=>{"use strict";o($5e,"lower");o(a8,"default")});function s8(t){var e=typeof t=="function"?t:Jy(t);return this.select(function(){return this.appendChild(e.apply(this,arguments))})}var zV=N(()=>{"use strict";SA();o(s8,"default")});function z5e(){return null}function o8(t,e){var r=typeof t=="function"?t:Jy(t),n=e==null?z5e:typeof e=="function"?e:xh(e);return this.select(function(){return this.insertBefore(r.apply(this,arguments),n.apply(this,arguments)||null)})}var GV=N(()=>{"use strict";SA();z3();o(z5e,"constantNull");o(o8,"default")});function G5e(){var t=this.parentNode;t&&t.removeChild(this)}function l8(){return this.each(G5e)}var VV=N(()=>{"use strict";o(G5e,"remove");o(l8,"default")});function V5e(){var t=this.cloneNode(!1),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function U5e(){var t=this.cloneNode(!0),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function c8(t){return this.select(t?U5e:V5e)}var UV=N(()=>{"use strict";o(V5e,"selection_cloneShallow");o(U5e,"selection_cloneDeep");o(c8,"default")});function u8(t){return arguments.length?this.property("__data__",t):this.node().__data__}var HV=N(()=>{"use strict";o(u8,"default")});function H5e(t){return function(e){t.call(this,e,this.__data__)}}function W5e(t){return t.trim().split(/^|\s+/).map(function(e){var r="",n=e.indexOf(".");return n>=0&&(r=e.slice(n+1),e=e.slice(0,n)),{type:e,name:r}})}function q5e(t){return function(){var e=this.__on;if(e){for(var r=0,n=-1,i=e.length,a;r{"use strict";o(H5e,"contextListener");o(W5e,"parseTypenames");o(q5e,"onRemove");o(Y5e,"onAdd");o(h8,"default")});function qV(t,e,r){var n=nv(t),i=n.CustomEvent;typeof i=="function"?i=new i(e,r):(i=n.document.createEvent("Event"),r?(i.initEvent(e,r.bubbles,r.cancelable),i.detail=r.detail):i.initEvent(e,!1,!1)),t.dispatchEvent(i)}function X5e(t,e){return function(){return qV(this,t,e)}}function j5e(t,e){return function(){return qV(this,t,e.apply(this,arguments))}}function f8(t,e){return this.each((typeof e=="function"?j5e:X5e)(t,e))}var YV=N(()=>{"use strict";KA();o(qV,"dispatchEvent");o(X5e,"dispatchConstant");o(j5e,"dispatchFunction");o(f8,"default")});function*d8(){for(var t=this._groups,e=0,r=t.length;e{"use strict";o(d8,"default")});function oi(t,e){this._groups=t,this._parents=e}function jV(){return new oi([[document.documentElement]],p8)}function K5e(){return this}var p8,hu,hl=N(()=>{"use strict";uV();fV();dV();pV();mV();yV();OA();vV();xV();bV();wV();TV();kV();EV();SV();CV();AV();_V();DV();ZA();LV();OV();PV();BV();FV();$V();zV();GV();VV();UV();HV();WV();YV();XV();p8=[null];o(oi,"Selection");o(jV,"selection");o(K5e,"selection_selection");oi.prototype=jV.prototype={constructor:oi,select:CA,selectAll:DA,selectChild:LA,selectChildren:RA,filter:NA,data:BA,enter:IA,exit:FA,join:$A,merge:zA,selection:K5e,order:GA,sort:VA,call:UA,nodes:HA,node:WA,size:qA,empty:YA,each:XA,attr:jA,style:QA,property:JA,classed:t8,text:r8,html:n8,raise:i8,lower:a8,append:s8,insert:o8,remove:l8,clone:c8,datum:u8,on:h8,dispatch:f8,[Symbol.iterator]:d8};hu=jV});function Ge(t){return typeof t=="string"?new oi([[document.querySelector(t)]],[document.documentElement]):new oi([[t]],p8)}var KV=N(()=>{"use strict";hl();o(Ge,"default")});var fl=N(()=>{"use strict";ev();$3();KV();hl();z3();_A();ZA()});var QV=N(()=>{"use strict"});function wh(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function b0(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}var m8=N(()=>{"use strict";o(wh,"default");o(b0,"extend")});function Th(){}function JV(){return this.rgb().formatHex()}function iwe(){return this.rgb().formatHex8()}function awe(){return sU(this).formatHsl()}function eU(){return this.rgb().formatRgb()}function pl(t){var e,r;return t=(t+"").trim().toLowerCase(),(e=Q5e.exec(t))?(r=e[1].length,e=parseInt(e[1],16),r===6?tU(e):r===3?new ua(e>>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):r===8?V3(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):r===4?V3(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|e&240,((e&15)<<4|e&15)/255):null):(e=Z5e.exec(t))?new ua(e[1],e[2],e[3],1):(e=J5e.exec(t))?new ua(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=ewe.exec(t))?V3(e[1],e[2],e[3],e[4]):(e=twe.exec(t))?V3(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=rwe.exec(t))?iU(e[1],e[2]/100,e[3]/100,1):(e=nwe.exec(t))?iU(e[1],e[2]/100,e[3]/100,e[4]):ZV.hasOwnProperty(t)?tU(ZV[t]):t==="transparent"?new ua(NaN,NaN,NaN,0):null}function tU(t){return new ua(t>>16&255,t>>8&255,t&255,1)}function V3(t,e,r,n){return n<=0&&(t=e=r=NaN),new ua(t,e,r,n)}function y8(t){return t instanceof Th||(t=pl(t)),t?(t=t.rgb(),new ua(t.r,t.g,t.b,t.opacity)):new ua}function T0(t,e,r,n){return arguments.length===1?y8(t):new ua(t,e,r,n??1)}function ua(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function rU(){return`#${ld(this.r)}${ld(this.g)}${ld(this.b)}`}function swe(){return`#${ld(this.r)}${ld(this.g)}${ld(this.b)}${ld((isNaN(this.opacity)?1:this.opacity)*255)}`}function nU(){let t=W3(this.opacity);return`${t===1?"rgb(":"rgba("}${cd(this.r)}, ${cd(this.g)}, ${cd(this.b)}${t===1?")":`, ${t})`}`}function W3(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function cd(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function ld(t){return t=cd(t),(t<16?"0":"")+t.toString(16)}function iU(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new dl(t,e,r,n)}function sU(t){if(t instanceof dl)return new dl(t.h,t.s,t.l,t.opacity);if(t instanceof Th||(t=pl(t)),!t)return new dl;if(t instanceof dl)return t;t=t.rgb();var e=t.r/255,r=t.g/255,n=t.b/255,i=Math.min(e,r,n),a=Math.max(e,r,n),s=NaN,l=a-i,u=(a+i)/2;return l?(e===a?s=(r-n)/l+(r0&&u<1?0:s,new dl(s,l,u,t.opacity)}function oU(t,e,r,n){return arguments.length===1?sU(t):new dl(t,e,r,n??1)}function dl(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function aU(t){return t=(t||0)%360,t<0?t+360:t}function U3(t){return Math.max(0,Math.min(1,t||0))}function g8(t,e,r){return(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)*255}var iv,H3,w0,av,nc,Q5e,Z5e,J5e,ewe,twe,rwe,nwe,ZV,v8=N(()=>{"use strict";m8();o(Th,"Color");iv=.7,H3=1/iv,w0="\\s*([+-]?\\d+)\\s*",av="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",nc="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Q5e=/^#([0-9a-f]{3,8})$/,Z5e=new RegExp(`^rgb\\(${w0},${w0},${w0}\\)$`),J5e=new RegExp(`^rgb\\(${nc},${nc},${nc}\\)$`),ewe=new RegExp(`^rgba\\(${w0},${w0},${w0},${av}\\)$`),twe=new RegExp(`^rgba\\(${nc},${nc},${nc},${av}\\)$`),rwe=new RegExp(`^hsl\\(${av},${nc},${nc}\\)$`),nwe=new RegExp(`^hsla\\(${av},${nc},${nc},${av}\\)$`),ZV={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};wh(Th,pl,{copy(t){return Object.assign(new this.constructor,this,t)},displayable(){return this.rgb().displayable()},hex:JV,formatHex:JV,formatHex8:iwe,formatHsl:awe,formatRgb:eU,toString:eU});o(JV,"color_formatHex");o(iwe,"color_formatHex8");o(awe,"color_formatHsl");o(eU,"color_formatRgb");o(pl,"color");o(tU,"rgbn");o(V3,"rgba");o(y8,"rgbConvert");o(T0,"rgb");o(ua,"Rgb");wh(ua,T0,b0(Th,{brighter(t){return t=t==null?H3:Math.pow(H3,t),new ua(this.r*t,this.g*t,this.b*t,this.opacity)},darker(t){return t=t==null?iv:Math.pow(iv,t),new ua(this.r*t,this.g*t,this.b*t,this.opacity)},rgb(){return this},clamp(){return new ua(cd(this.r),cd(this.g),cd(this.b),W3(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:rU,formatHex:rU,formatHex8:swe,formatRgb:nU,toString:nU}));o(rU,"rgb_formatHex");o(swe,"rgb_formatHex8");o(nU,"rgb_formatRgb");o(W3,"clampa");o(cd,"clampi");o(ld,"hex");o(iU,"hsla");o(sU,"hslConvert");o(oU,"hsl");o(dl,"Hsl");wh(dl,oU,b0(Th,{brighter(t){return t=t==null?H3:Math.pow(H3,t),new dl(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?iv:Math.pow(iv,t),new dl(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=this.h%360+(this.h<0)*360,e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,i=2*r-n;return new ua(g8(t>=240?t-240:t+120,i,n),g8(t,i,n),g8(t<120?t+240:t-120,i,n),this.opacity)},clamp(){return new dl(aU(this.h),U3(this.s),U3(this.l),W3(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){let t=W3(this.opacity);return`${t===1?"hsl(":"hsla("}${aU(this.h)}, ${U3(this.s)*100}%, ${U3(this.l)*100}%${t===1?")":`, ${t})`}`}}));o(aU,"clamph");o(U3,"clampt");o(g8,"hsl2rgb")});var lU,cU,uU=N(()=>{"use strict";lU=Math.PI/180,cU=180/Math.PI});function gU(t){if(t instanceof ic)return new ic(t.l,t.a,t.b,t.opacity);if(t instanceof fu)return yU(t);t instanceof ua||(t=y8(t));var e=T8(t.r),r=T8(t.g),n=T8(t.b),i=x8((.2225045*e+.7168786*r+.0606169*n)/fU),a,s;return e===r&&r===n?a=s=i:(a=x8((.4360747*e+.3850649*r+.1430804*n)/hU),s=x8((.0139322*e+.0971045*r+.7141733*n)/dU)),new ic(116*i-16,500*(a-i),200*(i-s),t.opacity)}function k8(t,e,r,n){return arguments.length===1?gU(t):new ic(t,e,r,n??1)}function ic(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function x8(t){return t>owe?Math.pow(t,1/3):t/mU+pU}function b8(t){return t>k0?t*t*t:mU*(t-pU)}function w8(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function T8(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function lwe(t){if(t instanceof fu)return new fu(t.h,t.c,t.l,t.opacity);if(t instanceof ic||(t=gU(t)),t.a===0&&t.b===0)return new fu(NaN,0{"use strict";m8();v8();uU();q3=18,hU=.96422,fU=1,dU=.82521,pU=4/29,k0=6/29,mU=3*k0*k0,owe=k0*k0*k0;o(gU,"labConvert");o(k8,"lab");o(ic,"Lab");wh(ic,k8,b0(Th,{brighter(t){return new ic(this.l+q3*(t??1),this.a,this.b,this.opacity)},darker(t){return new ic(this.l-q3*(t??1),this.a,this.b,this.opacity)},rgb(){var t=(this.l+16)/116,e=isNaN(this.a)?t:t+this.a/500,r=isNaN(this.b)?t:t-this.b/200;return e=hU*b8(e),t=fU*b8(t),r=dU*b8(r),new ua(w8(3.1338561*e-1.6168667*t-.4906146*r),w8(-.9787684*e+1.9161415*t+.033454*r),w8(.0719453*e-.2289914*t+1.4052427*r),this.opacity)}}));o(x8,"xyz2lab");o(b8,"lab2xyz");o(w8,"lrgb2rgb");o(T8,"rgb2lrgb");o(lwe,"hclConvert");o(sv,"hcl");o(fu,"Hcl");o(yU,"hcl2lab");wh(fu,sv,b0(Th,{brighter(t){return new fu(this.h,this.c,this.l+q3*(t??1),this.opacity)},darker(t){return new fu(this.h,this.c,this.l-q3*(t??1),this.opacity)},rgb(){return yU(this).rgb()}}))});var E0=N(()=>{"use strict";v8();vU()});function E8(t,e,r,n,i){var a=t*t,s=a*t;return((1-3*t+3*a-s)*e+(4-6*a+3*s)*r+(1+3*t+3*a-3*s)*n+s*i)/6}function S8(t){var e=t.length-1;return function(r){var n=r<=0?r=0:r>=1?(r=1,e-1):Math.floor(r*e),i=t[n],a=t[n+1],s=n>0?t[n-1]:2*i-a,l=n{"use strict";o(E8,"basis");o(S8,"default")});function A8(t){var e=t.length;return function(r){var n=Math.floor(((r%=1)<0?++r:r)*e),i=t[(n+e-1)%e],a=t[n%e],s=t[(n+1)%e],l=t[(n+2)%e];return E8((r-n/e)*e,i,a,s,l)}}var xU=N(()=>{"use strict";C8();o(A8,"default")});var S0,_8=N(()=>{"use strict";S0=o(t=>()=>t,"default")});function bU(t,e){return function(r){return t+r*e}}function cwe(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}function wU(t,e){var r=e-t;return r?bU(t,r>180||r<-180?r-360*Math.round(r/360):r):S0(isNaN(t)?e:t)}function TU(t){return(t=+t)==1?du:function(e,r){return r-e?cwe(e,r,t):S0(isNaN(e)?r:e)}}function du(t,e){var r=e-t;return r?bU(t,r):S0(isNaN(t)?e:t)}var D8=N(()=>{"use strict";_8();o(bU,"linear");o(cwe,"exponential");o(wU,"hue");o(TU,"gamma");o(du,"nogamma")});function kU(t){return function(e){var r=e.length,n=new Array(r),i=new Array(r),a=new Array(r),s,l;for(s=0;s{"use strict";E0();C8();xU();D8();ud=o(function t(e){var r=TU(e);function n(i,a){var s=r((i=T0(i)).r,(a=T0(a)).r),l=r(i.g,a.g),u=r(i.b,a.b),h=du(i.opacity,a.opacity);return function(f){return i.r=s(f),i.g=l(f),i.b=u(f),i.opacity=h(f),i+""}}return o(n,"rgb"),n.gamma=t,n},"rgbGamma")(1);o(kU,"rgbSpline");uwe=kU(S8),hwe=kU(A8)});function R8(t,e){e||(e=[]);var r=t?Math.min(e.length,t.length):0,n=e.slice(),i;return function(a){for(i=0;i{"use strict";o(R8,"default");o(EU,"isNumberArray")});function CU(t,e){var r=e?e.length:0,n=t?Math.min(r,t.length):0,i=new Array(n),a=new Array(r),s;for(s=0;s{"use strict";Y3();o(CU,"genericArray")});function N8(t,e){var r=new Date;return t=+t,e=+e,function(n){return r.setTime(t*(1-n)+e*n),r}}var _U=N(()=>{"use strict";o(N8,"default")});function Ki(t,e){return t=+t,e=+e,function(r){return t*(1-r)+e*r}}var ov=N(()=>{"use strict";o(Ki,"default")});function M8(t,e){var r={},n={},i;(t===null||typeof t!="object")&&(t={}),(e===null||typeof e!="object")&&(e={});for(i in e)i in t?r[i]=kh(t[i],e[i]):n[i]=e[i];return function(a){for(i in r)n[i]=r[i](a);return n}}var DU=N(()=>{"use strict";Y3();o(M8,"default")});function fwe(t){return function(){return t}}function dwe(t){return function(e){return t(e)+""}}function C0(t,e){var r=O8.lastIndex=I8.lastIndex=0,n,i,a,s=-1,l=[],u=[];for(t=t+"",e=e+"";(n=O8.exec(t))&&(i=I8.exec(e));)(a=i.index)>r&&(a=e.slice(r,a),l[s]?l[s]+=a:l[++s]=a),(n=n[0])===(i=i[0])?l[s]?l[s]+=i:l[++s]=i:(l[++s]=null,u.push({i:s,x:Ki(n,i)})),r=I8.lastIndex;return r{"use strict";ov();O8=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,I8=new RegExp(O8.source,"g");o(fwe,"zero");o(dwe,"one");o(C0,"default")});function kh(t,e){var r=typeof e,n;return e==null||r==="boolean"?S0(e):(r==="number"?Ki:r==="string"?(n=pl(e))?(e=n,ud):C0:e instanceof pl?ud:e instanceof Date?N8:EU(e)?R8:Array.isArray(e)?CU:typeof e.valueOf!="function"&&typeof e.toString!="function"||isNaN(e)?M8:Ki)(t,e)}var Y3=N(()=>{"use strict";E0();L8();AU();_U();ov();DU();P8();_8();SU();o(kh,"default")});function X3(t,e){return t=+t,e=+e,function(r){return Math.round(t*(1-r)+e*r)}}var LU=N(()=>{"use strict";o(X3,"default")});function K3(t,e,r,n,i,a){var s,l,u;return(s=Math.sqrt(t*t+e*e))&&(t/=s,e/=s),(u=t*r+e*n)&&(r-=t*u,n-=e*u),(l=Math.sqrt(r*r+n*n))&&(r/=l,n/=l,u/=l),t*n{"use strict";RU=180/Math.PI,j3={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};o(K3,"default")});function MU(t){let e=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(t+"");return e.isIdentity?j3:K3(e.a,e.b,e.c,e.d,e.e,e.f)}function IU(t){return t==null?j3:(Q3||(Q3=document.createElementNS("http://www.w3.org/2000/svg","g")),Q3.setAttribute("transform",t),(t=Q3.transform.baseVal.consolidate())?(t=t.matrix,K3(t.a,t.b,t.c,t.d,t.e,t.f)):j3)}var Q3,OU=N(()=>{"use strict";NU();o(MU,"parseCss");o(IU,"parseSvg")});function PU(t,e,r,n){function i(h){return h.length?h.pop()+" ":""}o(i,"pop");function a(h,f,d,p,m,g){if(h!==d||f!==p){var y=m.push("translate(",null,e,null,r);g.push({i:y-4,x:Ki(h,d)},{i:y-2,x:Ki(f,p)})}else(d||p)&&m.push("translate("+d+e+p+r)}o(a,"translate");function s(h,f,d,p){h!==f?(h-f>180?f+=360:f-h>180&&(h+=360),p.push({i:d.push(i(d)+"rotate(",null,n)-2,x:Ki(h,f)})):f&&d.push(i(d)+"rotate("+f+n)}o(s,"rotate");function l(h,f,d,p){h!==f?p.push({i:d.push(i(d)+"skewX(",null,n)-2,x:Ki(h,f)}):f&&d.push(i(d)+"skewX("+f+n)}o(l,"skewX");function u(h,f,d,p,m,g){if(h!==d||f!==p){var y=m.push(i(m)+"scale(",null,",",null,")");g.push({i:y-4,x:Ki(h,d)},{i:y-2,x:Ki(f,p)})}else(d!==1||p!==1)&&m.push(i(m)+"scale("+d+","+p+")")}return o(u,"scale"),function(h,f){var d=[],p=[];return h=t(h),f=t(f),a(h.translateX,h.translateY,f.translateX,f.translateY,d,p),s(h.rotate,f.rotate,d,p),l(h.skewX,f.skewX,d,p),u(h.scaleX,h.scaleY,f.scaleX,f.scaleY,d,p),h=f=null,function(m){for(var g=-1,y=p.length,v;++g{"use strict";ov();OU();o(PU,"interpolateTransform");B8=PU(MU,"px, ","px)","deg)"),F8=PU(IU,", ",")",")")});function FU(t){return function(e,r){var n=t((e=sv(e)).h,(r=sv(r)).h),i=du(e.c,r.c),a=du(e.l,r.l),s=du(e.opacity,r.opacity);return function(l){return e.h=n(l),e.c=i(l),e.l=a(l),e.opacity=s(l),e+""}}}var $8,pwe,$U=N(()=>{"use strict";E0();D8();o(FU,"hcl");$8=FU(wU),pwe=FU(du)});var A0=N(()=>{"use strict";Y3();ov();LU();P8();BU();L8();$U()});function dv(){return hd||(VU(mwe),hd=hv.now()+e5)}function mwe(){hd=0}function fv(){this._call=this._time=this._next=null}function t5(t,e,r){var n=new fv;return n.restart(t,e,r),n}function UU(){dv(),++_0;for(var t=Z3,e;t;)(e=hd-t._time)>=0&&t._call.call(void 0,e),t=t._next;--_0}function zU(){hd=(J3=hv.now())+e5,_0=cv=0;try{UU()}finally{_0=0,ywe(),hd=0}}function gwe(){var t=hv.now(),e=t-J3;e>GU&&(e5-=e,J3=t)}function ywe(){for(var t,e=Z3,r,n=1/0;e;)e._call?(n>e._time&&(n=e._time),t=e,e=e._next):(r=e._next,e._next=null,e=t?t._next=r:Z3=r);uv=t,z8(n)}function z8(t){if(!_0){cv&&(cv=clearTimeout(cv));var e=t-hd;e>24?(t<1/0&&(cv=setTimeout(zU,t-hv.now()-e5)),lv&&(lv=clearInterval(lv))):(lv||(J3=hv.now(),lv=setInterval(gwe,GU)),_0=1,VU(zU))}}var _0,cv,lv,GU,Z3,uv,J3,hd,e5,hv,VU,G8=N(()=>{"use strict";_0=0,cv=0,lv=0,GU=1e3,J3=0,hd=0,e5=0,hv=typeof performance=="object"&&performance.now?performance:Date,VU=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};o(dv,"now");o(mwe,"clearNow");o(fv,"Timer");fv.prototype=t5.prototype={constructor:fv,restart:o(function(t,e,r){if(typeof t!="function")throw new TypeError("callback is not a function");r=(r==null?dv():+r)+(e==null?0:+e),!this._next&&uv!==this&&(uv?uv._next=this:Z3=this,uv=this),this._call=t,this._time=r,z8()},"restart"),stop:o(function(){this._call&&(this._call=null,this._time=1/0,z8())},"stop")};o(t5,"timer");o(UU,"timerFlush");o(zU,"wake");o(gwe,"poke");o(ywe,"nap");o(z8,"sleep")});function pv(t,e,r){var n=new fv;return e=e==null?0:+e,n.restart(i=>{n.stop(),t(i+e)},e,r),n}var HU=N(()=>{"use strict";G8();o(pv,"default")});var r5=N(()=>{"use strict";G8();HU()});function pu(t,e,r,n,i,a){var s=t.__transition;if(!s)t.__transition={};else if(r in s)return;bwe(t,r,{name:e,index:n,group:i,on:vwe,tween:xwe,time:a.time,delay:a.delay,duration:a.duration,ease:a.ease,timer:null,state:YU})}function gv(t,e){var r=Bi(t,e);if(r.state>YU)throw new Error("too late; already scheduled");return r}function ha(t,e){var r=Bi(t,e);if(r.state>n5)throw new Error("too late; already running");return r}function Bi(t,e){var r=t.__transition;if(!r||!(r=r[e]))throw new Error("transition not found");return r}function bwe(t,e,r){var n=t.__transition,i;n[e]=r,r.timer=t5(a,0,r.time);function a(h){r.state=WU,r.timer.restart(s,r.delay,r.time),r.delay<=h&&s(h-r.delay)}o(a,"schedule");function s(h){var f,d,p,m;if(r.state!==WU)return u();for(f in n)if(m=n[f],m.name===r.name){if(m.state===n5)return pv(s);m.state===qU?(m.state=mv,m.timer.stop(),m.on.call("interrupt",t,t.__data__,m.index,m.group),delete n[f]):+f{"use strict";TA();r5();vwe=wA("start","end","cancel","interrupt"),xwe=[],YU=0,WU=1,i5=2,n5=3,qU=4,a5=5,mv=6;o(pu,"default");o(gv,"init");o(ha,"set");o(Bi,"get");o(bwe,"create")});function yv(t,e){var r=t.__transition,n,i,a=!0,s;if(r){e=e==null?null:e+"";for(s in r){if((n=r[s]).name!==e){a=!1;continue}i=n.state>i5&&n.state{"use strict";Es();o(yv,"default")});function V8(t){return this.each(function(){yv(this,t)})}var jU=N(()=>{"use strict";XU();o(V8,"default")});function wwe(t,e){var r,n;return function(){var i=ha(this,t),a=i.tween;if(a!==r){n=r=a;for(var s=0,l=n.length;s{"use strict";Es();o(wwe,"tweenRemove");o(Twe,"tweenFunction");o(U8,"default");o(D0,"tweenValue")});function xv(t,e){var r;return(typeof e=="number"?Ki:e instanceof pl?ud:(r=pl(e))?(e=r,ud):C0)(t,e)}var H8=N(()=>{"use strict";E0();A0();o(xv,"default")});function kwe(t){return function(){this.removeAttribute(t)}}function Ewe(t){return function(){this.removeAttributeNS(t.space,t.local)}}function Swe(t,e,r){var n,i=r+"",a;return function(){var s=this.getAttribute(t);return s===i?null:s===n?a:a=e(n=s,r)}}function Cwe(t,e,r){var n,i=r+"",a;return function(){var s=this.getAttributeNS(t.space,t.local);return s===i?null:s===n?a:a=e(n=s,r)}}function Awe(t,e,r){var n,i,a;return function(){var s,l=r(this),u;return l==null?void this.removeAttribute(t):(s=this.getAttribute(t),u=l+"",s===u?null:s===n&&u===i?a:(i=u,a=e(n=s,l)))}}function _we(t,e,r){var n,i,a;return function(){var s,l=r(this),u;return l==null?void this.removeAttributeNS(t.space,t.local):(s=this.getAttributeNS(t.space,t.local),u=l+"",s===u?null:s===n&&u===i?a:(i=u,a=e(n=s,l)))}}function W8(t,e){var r=rc(t),n=r==="transform"?F8:xv;return this.attrTween(t,typeof e=="function"?(r.local?_we:Awe)(r,n,D0(this,"attr."+t,e)):e==null?(r.local?Ewe:kwe)(r):(r.local?Cwe:Swe)(r,n,e))}var KU=N(()=>{"use strict";A0();fl();vv();H8();o(kwe,"attrRemove");o(Ewe,"attrRemoveNS");o(Swe,"attrConstant");o(Cwe,"attrConstantNS");o(Awe,"attrFunction");o(_we,"attrFunctionNS");o(W8,"default")});function Dwe(t,e){return function(r){this.setAttribute(t,e.call(this,r))}}function Lwe(t,e){return function(r){this.setAttributeNS(t.space,t.local,e.call(this,r))}}function Rwe(t,e){var r,n;function i(){var a=e.apply(this,arguments);return a!==n&&(r=(n=a)&&Lwe(t,a)),r}return o(i,"tween"),i._value=e,i}function Nwe(t,e){var r,n;function i(){var a=e.apply(this,arguments);return a!==n&&(r=(n=a)&&Dwe(t,a)),r}return o(i,"tween"),i._value=e,i}function q8(t,e){var r="attr."+t;if(arguments.length<2)return(r=this.tween(r))&&r._value;if(e==null)return this.tween(r,null);if(typeof e!="function")throw new Error;var n=rc(t);return this.tween(r,(n.local?Rwe:Nwe)(n,e))}var QU=N(()=>{"use strict";fl();o(Dwe,"attrInterpolate");o(Lwe,"attrInterpolateNS");o(Rwe,"attrTweenNS");o(Nwe,"attrTween");o(q8,"default")});function Mwe(t,e){return function(){gv(this,t).delay=+e.apply(this,arguments)}}function Iwe(t,e){return e=+e,function(){gv(this,t).delay=e}}function Y8(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?Mwe:Iwe)(e,t)):Bi(this.node(),e).delay}var ZU=N(()=>{"use strict";Es();o(Mwe,"delayFunction");o(Iwe,"delayConstant");o(Y8,"default")});function Owe(t,e){return function(){ha(this,t).duration=+e.apply(this,arguments)}}function Pwe(t,e){return e=+e,function(){ha(this,t).duration=e}}function X8(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?Owe:Pwe)(e,t)):Bi(this.node(),e).duration}var JU=N(()=>{"use strict";Es();o(Owe,"durationFunction");o(Pwe,"durationConstant");o(X8,"default")});function Bwe(t,e){if(typeof e!="function")throw new Error;return function(){ha(this,t).ease=e}}function j8(t){var e=this._id;return arguments.length?this.each(Bwe(e,t)):Bi(this.node(),e).ease}var eH=N(()=>{"use strict";Es();o(Bwe,"easeConstant");o(j8,"default")});function Fwe(t,e){return function(){var r=e.apply(this,arguments);if(typeof r!="function")throw new Error;ha(this,t).ease=r}}function K8(t){if(typeof t!="function")throw new Error;return this.each(Fwe(this._id,t))}var tH=N(()=>{"use strict";Es();o(Fwe,"easeVarying");o(K8,"default")});function Q8(t){typeof t!="function"&&(t=x0(t));for(var e=this._groups,r=e.length,n=new Array(r),i=0;i{"use strict";fl();fd();o(Q8,"default")});function Z8(t){if(t._id!==this._id)throw new Error;for(var e=this._groups,r=t._groups,n=e.length,i=r.length,a=Math.min(n,i),s=new Array(n),l=0;l{"use strict";fd();o(Z8,"default")});function $we(t){return(t+"").trim().split(/^|\s+/).every(function(e){var r=e.indexOf(".");return r>=0&&(e=e.slice(0,r)),!e||e==="start"})}function zwe(t,e,r){var n,i,a=$we(e)?gv:ha;return function(){var s=a(this,t),l=s.on;l!==n&&(i=(n=l).copy()).on(e,r),s.on=i}}function J8(t,e){var r=this._id;return arguments.length<2?Bi(this.node(),r).on.on(t):this.each(zwe(r,t,e))}var iH=N(()=>{"use strict";Es();o($we,"start");o(zwe,"onFunction");o(J8,"default")});function Gwe(t){return function(){var e=this.parentNode;for(var r in this.__transition)if(+r!==t)return;e&&e.removeChild(this)}}function e_(){return this.on("end.remove",Gwe(this._id))}var aH=N(()=>{"use strict";o(Gwe,"removeFunction");o(e_,"default")});function t_(t){var e=this._name,r=this._id;typeof t!="function"&&(t=xh(t));for(var n=this._groups,i=n.length,a=new Array(i),s=0;s{"use strict";fl();fd();Es();o(t_,"default")});function r_(t){var e=this._name,r=this._id;typeof t!="function"&&(t=v0(t));for(var n=this._groups,i=n.length,a=[],s=[],l=0;l{"use strict";fl();fd();Es();o(r_,"default")});function n_(){return new Vwe(this._groups,this._parents)}var Vwe,lH=N(()=>{"use strict";fl();Vwe=hu.prototype.constructor;o(n_,"default")});function Uwe(t,e){var r,n,i;return function(){var a=bh(this,t),s=(this.style.removeProperty(t),bh(this,t));return a===s?null:a===r&&s===n?i:i=e(r=a,n=s)}}function cH(t){return function(){this.style.removeProperty(t)}}function Hwe(t,e,r){var n,i=r+"",a;return function(){var s=bh(this,t);return s===i?null:s===n?a:a=e(n=s,r)}}function Wwe(t,e,r){var n,i,a;return function(){var s=bh(this,t),l=r(this),u=l+"";return l==null&&(u=l=(this.style.removeProperty(t),bh(this,t))),s===u?null:s===n&&u===i?a:(i=u,a=e(n=s,l))}}function qwe(t,e){var r,n,i,a="style."+e,s="end."+a,l;return function(){var u=ha(this,t),h=u.on,f=u.value[a]==null?l||(l=cH(e)):void 0;(h!==r||i!==f)&&(n=(r=h).copy()).on(s,i=f),u.on=n}}function i_(t,e,r){var n=(t+="")=="transform"?B8:xv;return e==null?this.styleTween(t,Uwe(t,n)).on("end.style."+t,cH(t)):typeof e=="function"?this.styleTween(t,Wwe(t,n,D0(this,"style."+t,e))).each(qwe(this._id,t)):this.styleTween(t,Hwe(t,n,e),r).on("end.style."+t,null)}var uH=N(()=>{"use strict";A0();fl();Es();vv();H8();o(Uwe,"styleNull");o(cH,"styleRemove");o(Hwe,"styleConstant");o(Wwe,"styleFunction");o(qwe,"styleMaybeRemove");o(i_,"default")});function Ywe(t,e,r){return function(n){this.style.setProperty(t,e.call(this,n),r)}}function Xwe(t,e,r){var n,i;function a(){var s=e.apply(this,arguments);return s!==i&&(n=(i=s)&&Ywe(t,s,r)),n}return o(a,"tween"),a._value=e,a}function a_(t,e,r){var n="style."+(t+="");if(arguments.length<2)return(n=this.tween(n))&&n._value;if(e==null)return this.tween(n,null);if(typeof e!="function")throw new Error;return this.tween(n,Xwe(t,e,r??""))}var hH=N(()=>{"use strict";o(Ywe,"styleInterpolate");o(Xwe,"styleTween");o(a_,"default")});function jwe(t){return function(){this.textContent=t}}function Kwe(t){return function(){var e=t(this);this.textContent=e??""}}function s_(t){return this.tween("text",typeof t=="function"?Kwe(D0(this,"text",t)):jwe(t==null?"":t+""))}var fH=N(()=>{"use strict";vv();o(jwe,"textConstant");o(Kwe,"textFunction");o(s_,"default")});function Qwe(t){return function(e){this.textContent=t.call(this,e)}}function Zwe(t){var e,r;function n(){var i=t.apply(this,arguments);return i!==r&&(e=(r=i)&&Qwe(i)),e}return o(n,"tween"),n._value=t,n}function o_(t){var e="text";if(arguments.length<1)return(e=this.tween(e))&&e._value;if(t==null)return this.tween(e,null);if(typeof t!="function")throw new Error;return this.tween(e,Zwe(t))}var dH=N(()=>{"use strict";o(Qwe,"textInterpolate");o(Zwe,"textTween");o(o_,"default")});function l_(){for(var t=this._name,e=this._id,r=s5(),n=this._groups,i=n.length,a=0;a{"use strict";fd();Es();o(l_,"default")});function c_(){var t,e,r=this,n=r._id,i=r.size();return new Promise(function(a,s){var l={value:s},u={value:o(function(){--i===0&&a()},"value")};r.each(function(){var h=ha(this,n),f=h.on;f!==t&&(e=(t=f).copy(),e._.cancel.push(l),e._.interrupt.push(l),e._.end.push(u)),h.on=e}),i===0&&a()})}var mH=N(()=>{"use strict";Es();o(c_,"default")});function es(t,e,r,n){this._groups=t,this._parents=e,this._name=r,this._id=n}function gH(t){return hu().transition(t)}function s5(){return++Jwe}var Jwe,mu,fd=N(()=>{"use strict";fl();KU();QU();ZU();JU();eH();tH();rH();nH();iH();aH();sH();oH();lH();uH();hH();fH();dH();pH();vv();mH();Jwe=0;o(es,"Transition");o(gH,"transition");o(s5,"newId");mu=hu.prototype;es.prototype=gH.prototype={constructor:es,select:t_,selectAll:r_,selectChild:mu.selectChild,selectChildren:mu.selectChildren,filter:Q8,merge:Z8,selection:n_,transition:l_,call:mu.call,nodes:mu.nodes,node:mu.node,size:mu.size,empty:mu.empty,each:mu.each,on:J8,attr:W8,attrTween:q8,style:i_,styleTween:a_,text:s_,textTween:o_,remove:e_,tween:U8,delay:Y8,duration:X8,ease:j8,easeVarying:K8,end:c_,[Symbol.iterator]:mu[Symbol.iterator]}});function o5(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}var yH=N(()=>{"use strict";o(o5,"cubicInOut")});var u_=N(()=>{"use strict";yH()});function tTe(t,e){for(var r;!(r=t.__transition)||!(r=r[e]);)if(!(t=t.parentNode))throw new Error(`transition ${e} not found`);return r}function h_(t){var e,r;t instanceof es?(e=t._id,t=t._name):(e=s5(),(r=eTe).time=dv(),t=t==null?null:t+"");for(var n=this._groups,i=n.length,a=0;a{"use strict";fd();Es();u_();r5();eTe={time:null,delay:0,duration:250,ease:o5};o(tTe,"inherit");o(h_,"default")});var xH=N(()=>{"use strict";fl();jU();vH();hu.prototype.interrupt=V8;hu.prototype.transition=h_});var l5=N(()=>{"use strict";xH()});var bH=N(()=>{"use strict"});var wH=N(()=>{"use strict"});var TH=N(()=>{"use strict"});function kH(t){return[+t[0],+t[1]]}function rTe(t){return[kH(t[0]),kH(t[1])]}function f_(t){return{type:t}}var Z0t,J0t,emt,tmt,rmt,nmt,EH=N(()=>{"use strict";l5();bH();wH();TH();({abs:Z0t,max:J0t,min:emt}=Math);o(kH,"number1");o(rTe,"number2");tmt={name:"x",handles:["w","e"].map(f_),input:o(function(t,e){return t==null?null:[[+t[0],e[0][1]],[+t[1],e[1][1]]]},"input"),output:o(function(t){return t&&[t[0][0],t[1][0]]},"output")},rmt={name:"y",handles:["n","s"].map(f_),input:o(function(t,e){return t==null?null:[[e[0][0],+t[0]],[e[1][0],+t[1]]]},"input"),output:o(function(t){return t&&[t[0][1],t[1][1]]},"output")},nmt={name:"xy",handles:["n","w","e","s","nw","ne","sw","se"].map(f_),input:o(function(t){return t==null?null:rTe(t)},"input"),output:o(function(t){return t},"output")};o(f_,"type")});var SH=N(()=>{"use strict";EH()});function CH(t){this._+=t[0];for(let e=1,r=t.length;e=0))throw new Error(`invalid digits: ${t}`);if(e>15)return CH;let r=10**e;return function(n){this._+=n[0];for(let i=1,a=n.length;i{"use strict";d_=Math.PI,p_=2*d_,dd=1e-6,nTe=p_-dd;o(CH,"append");o(iTe,"appendRound");pd=class{static{o(this,"Path")}constructor(e){this._x0=this._y0=this._x1=this._y1=null,this._="",this._append=e==null?CH:iTe(e)}moveTo(e,r){this._append`M${this._x0=this._x1=+e},${this._y0=this._y1=+r}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._append`Z`)}lineTo(e,r){this._append`L${this._x1=+e},${this._y1=+r}`}quadraticCurveTo(e,r,n,i){this._append`Q${+e},${+r},${this._x1=+n},${this._y1=+i}`}bezierCurveTo(e,r,n,i,a,s){this._append`C${+e},${+r},${+n},${+i},${this._x1=+a},${this._y1=+s}`}arcTo(e,r,n,i,a){if(e=+e,r=+r,n=+n,i=+i,a=+a,a<0)throw new Error(`negative radius: ${a}`);let s=this._x1,l=this._y1,u=n-e,h=i-r,f=s-e,d=l-r,p=f*f+d*d;if(this._x1===null)this._append`M${this._x1=e},${this._y1=r}`;else if(p>dd)if(!(Math.abs(d*u-h*f)>dd)||!a)this._append`L${this._x1=e},${this._y1=r}`;else{let m=n-s,g=i-l,y=u*u+h*h,v=m*m+g*g,x=Math.sqrt(y),b=Math.sqrt(p),w=a*Math.tan((d_-Math.acos((y+p-v)/(2*x*b)))/2),C=w/b,T=w/x;Math.abs(C-1)>dd&&this._append`L${e+C*f},${r+C*d}`,this._append`A${a},${a},0,0,${+(d*m>f*g)},${this._x1=e+T*u},${this._y1=r+T*h}`}}arc(e,r,n,i,a,s){if(e=+e,r=+r,n=+n,s=!!s,n<0)throw new Error(`negative radius: ${n}`);let l=n*Math.cos(i),u=n*Math.sin(i),h=e+l,f=r+u,d=1^s,p=s?i-a:a-i;this._x1===null?this._append`M${h},${f}`:(Math.abs(this._x1-h)>dd||Math.abs(this._y1-f)>dd)&&this._append`L${h},${f}`,n&&(p<0&&(p=p%p_+p_),p>nTe?this._append`A${n},${n},0,1,${d},${e-l},${r-u}A${n},${n},0,1,${d},${this._x1=h},${this._y1=f}`:p>dd&&this._append`A${n},${n},0,${+(p>=d_)},${d},${this._x1=e+n*Math.cos(a)},${this._y1=r+n*Math.sin(a)}`)}rect(e,r,n,i){this._append`M${this._x0=this._x1=+e},${this._y0=this._y1=+r}h${n=+n}v${+i}h${-n}Z`}toString(){return this._}};o(AH,"path");AH.prototype=pd.prototype});var m_=N(()=>{"use strict";_H()});var DH=N(()=>{"use strict"});var LH=N(()=>{"use strict"});var RH=N(()=>{"use strict"});var NH=N(()=>{"use strict"});var MH=N(()=>{"use strict"});var IH=N(()=>{"use strict"});var OH=N(()=>{"use strict"});function g_(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)}function md(t,e){if((r=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"))<0)return null;var r,n=t.slice(0,r);return[n.length>1?n[0]+n.slice(2):n,+t.slice(r+1)]}var bv=N(()=>{"use strict";o(g_,"default");o(md,"formatDecimalParts")});function ml(t){return t=md(Math.abs(t)),t?t[1]:NaN}var wv=N(()=>{"use strict";bv();o(ml,"default")});function y_(t,e){return function(r,n){for(var i=r.length,a=[],s=0,l=t[0],u=0;i>0&&l>0&&(u+l+1>n&&(l=Math.max(1,n-u)),a.push(r.substring(i-=l,i+l)),!((u+=l+1)>n));)l=t[s=(s+1)%t.length];return a.reverse().join(e)}}var PH=N(()=>{"use strict";o(y_,"default")});function v_(t){return function(e){return e.replace(/[0-9]/g,function(r){return t[+r]})}}var BH=N(()=>{"use strict";o(v_,"default")});function Eh(t){if(!(e=aTe.exec(t)))throw new Error("invalid format: "+t);var e;return new c5({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function c5(t){this.fill=t.fill===void 0?" ":t.fill+"",this.align=t.align===void 0?">":t.align+"",this.sign=t.sign===void 0?"-":t.sign+"",this.symbol=t.symbol===void 0?"":t.symbol+"",this.zero=!!t.zero,this.width=t.width===void 0?void 0:+t.width,this.comma=!!t.comma,this.precision=t.precision===void 0?void 0:+t.precision,this.trim=!!t.trim,this.type=t.type===void 0?"":t.type+""}var aTe,x_=N(()=>{"use strict";aTe=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;o(Eh,"formatSpecifier");Eh.prototype=c5.prototype;o(c5,"FormatSpecifier");c5.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type}});function b_(t){e:for(var e=t.length,r=1,n=-1,i;r0&&(n=0);break}return n>0?t.slice(0,n)+t.slice(i+1):t}var FH=N(()=>{"use strict";o(b_,"default")});function T_(t,e){var r=md(t,e);if(!r)return t+"";var n=r[0],i=r[1],a=i-(w_=Math.max(-8,Math.min(8,Math.floor(i/3)))*3)+1,s=n.length;return a===s?n:a>s?n+new Array(a-s+1).join("0"):a>0?n.slice(0,a)+"."+n.slice(a):"0."+new Array(1-a).join("0")+md(t,Math.max(0,e+a-1))[0]}var w_,k_=N(()=>{"use strict";bv();o(T_,"default")});function u5(t,e){var r=md(t,e);if(!r)return t+"";var n=r[0],i=r[1];return i<0?"0."+new Array(-i).join("0")+n:n.length>i+1?n.slice(0,i+1)+"."+n.slice(i+1):n+new Array(i-n.length+2).join("0")}var $H=N(()=>{"use strict";bv();o(u5,"default")});var E_,zH=N(()=>{"use strict";bv();k_();$H();E_={"%":o((t,e)=>(t*100).toFixed(e),"%"),b:o(t=>Math.round(t).toString(2),"b"),c:o(t=>t+"","c"),d:g_,e:o((t,e)=>t.toExponential(e),"e"),f:o((t,e)=>t.toFixed(e),"f"),g:o((t,e)=>t.toPrecision(e),"g"),o:o(t=>Math.round(t).toString(8),"o"),p:o((t,e)=>u5(t*100,e),"p"),r:u5,s:T_,X:o(t=>Math.round(t).toString(16).toUpperCase(),"X"),x:o(t=>Math.round(t).toString(16),"x")}});function h5(t){return t}var GH=N(()=>{"use strict";o(h5,"default")});function S_(t){var e=t.grouping===void 0||t.thousands===void 0?h5:y_(VH.call(t.grouping,Number),t.thousands+""),r=t.currency===void 0?"":t.currency[0]+"",n=t.currency===void 0?"":t.currency[1]+"",i=t.decimal===void 0?".":t.decimal+"",a=t.numerals===void 0?h5:v_(VH.call(t.numerals,String)),s=t.percent===void 0?"%":t.percent+"",l=t.minus===void 0?"\u2212":t.minus+"",u=t.nan===void 0?"NaN":t.nan+"";function h(d){d=Eh(d);var p=d.fill,m=d.align,g=d.sign,y=d.symbol,v=d.zero,x=d.width,b=d.comma,w=d.precision,C=d.trim,T=d.type;T==="n"?(b=!0,T="g"):E_[T]||(w===void 0&&(w=12),C=!0,T="g"),(v||p==="0"&&m==="=")&&(v=!0,p="0",m="=");var E=y==="$"?r:y==="#"&&/[boxX]/.test(T)?"0"+T.toLowerCase():"",A=y==="$"?n:/[%p]/.test(T)?s:"",S=E_[T],_=/[defgprs%]/.test(T);w=w===void 0?6:/[gprs]/.test(T)?Math.max(1,Math.min(21,w)):Math.max(0,Math.min(20,w));function I(D){var k=E,L=A,R,O,M;if(T==="c")L=S(D)+L,D="";else{D=+D;var B=D<0||1/D<0;if(D=isNaN(D)?u:S(Math.abs(D),w),C&&(D=b_(D)),B&&+D==0&&g!=="+"&&(B=!1),k=(B?g==="("?g:l:g==="-"||g==="("?"":g)+k,L=(T==="s"?UH[8+w_/3]:"")+L+(B&&g==="("?")":""),_){for(R=-1,O=D.length;++RM||M>57){L=(M===46?i+D.slice(R+1):D.slice(R))+L,D=D.slice(0,R);break}}}b&&!v&&(D=e(D,1/0));var F=k.length+D.length+L.length,P=F>1)+k+D+L+P.slice(F);break;default:D=P+k+D+L;break}return a(D)}return o(I,"format"),I.toString=function(){return d+""},I}o(h,"newFormat");function f(d,p){var m=h((d=Eh(d),d.type="f",d)),g=Math.max(-8,Math.min(8,Math.floor(ml(p)/3)))*3,y=Math.pow(10,-g),v=UH[8+g/3];return function(x){return m(y*x)+v}}return o(f,"formatPrefix"),{format:h,formatPrefix:f}}var VH,UH,HH=N(()=>{"use strict";wv();PH();BH();x_();FH();zH();k_();GH();VH=Array.prototype.map,UH=["y","z","a","f","p","n","\xB5","m","","k","M","G","T","P","E","Z","Y"];o(S_,"default")});function C_(t){return f5=S_(t),d5=f5.format,p5=f5.formatPrefix,f5}var f5,d5,p5,WH=N(()=>{"use strict";HH();C_({thousands:",",grouping:[3],currency:["$",""]});o(C_,"defaultLocale")});function m5(t){return Math.max(0,-ml(Math.abs(t)))}var qH=N(()=>{"use strict";wv();o(m5,"default")});function g5(t,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(ml(e)/3)))*3-ml(Math.abs(t)))}var YH=N(()=>{"use strict";wv();o(g5,"default")});function y5(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,ml(e)-ml(t))+1}var XH=N(()=>{"use strict";wv();o(y5,"default")});var A_=N(()=>{"use strict";WH();x_();qH();YH();XH()});var jH=N(()=>{"use strict"});var KH=N(()=>{"use strict"});var QH=N(()=>{"use strict"});var ZH=N(()=>{"use strict"});function Sh(t,e){switch(arguments.length){case 0:break;case 1:this.range(t);break;default:this.range(e).domain(t);break}return this}var Tv=N(()=>{"use strict";o(Sh,"initRange")});function gu(){var t=new g0,e=[],r=[],n=__;function i(a){let s=t.get(a);if(s===void 0){if(n!==__)return n;t.set(a,s=e.push(a)-1)}return r[s%r.length]}return o(i,"scale"),i.domain=function(a){if(!arguments.length)return e.slice();e=[],t=new g0;for(let s of a)t.has(s)||t.set(s,e.push(s)-1);return i},i.range=function(a){return arguments.length?(r=Array.from(a),i):r.slice()},i.unknown=function(a){return arguments.length?(n=a,i):n},i.copy=function(){return gu(e,r).unknown(n)},Sh.apply(i,arguments),i}var __,D_=N(()=>{"use strict";vh();Tv();__=Symbol("implicit");o(gu,"ordinal")});function L0(){var t=gu().unknown(void 0),e=t.domain,r=t.range,n=0,i=1,a,s,l=!1,u=0,h=0,f=.5;delete t.unknown;function d(){var p=e().length,m=i{"use strict";vh();Tv();D_();o(L0,"band")});function L_(t){return function(){return t}}var eW=N(()=>{"use strict";o(L_,"constants")});function R_(t){return+t}var tW=N(()=>{"use strict";o(R_,"number")});function R0(t){return t}function N_(t,e){return(e-=t=+t)?function(r){return(r-t)/e}:L_(isNaN(e)?NaN:.5)}function sTe(t,e){var r;return t>e&&(r=t,t=e,e=r),function(n){return Math.max(t,Math.min(e,n))}}function oTe(t,e,r){var n=t[0],i=t[1],a=e[0],s=e[1];return i2?lTe:oTe,u=h=null,d}o(f,"rescale");function d(p){return p==null||isNaN(p=+p)?a:(u||(u=l(t.map(n),e,r)))(n(s(p)))}return o(d,"scale"),d.invert=function(p){return s(i((h||(h=l(e,t.map(n),Ki)))(p)))},d.domain=function(p){return arguments.length?(t=Array.from(p,R_),f()):t.slice()},d.range=function(p){return arguments.length?(e=Array.from(p),f()):e.slice()},d.rangeRound=function(p){return e=Array.from(p),r=X3,f()},d.clamp=function(p){return arguments.length?(s=p?!0:R0,f()):s!==R0},d.interpolate=function(p){return arguments.length?(r=p,f()):r},d.unknown=function(p){return arguments.length?(a=p,d):a},function(p,m){return n=p,i=m,f()}}function kv(){return cTe()(R0,R0)}var rW,M_=N(()=>{"use strict";vh();A0();eW();tW();rW=[0,1];o(R0,"identity");o(N_,"normalize");o(sTe,"clamper");o(oTe,"bimap");o(lTe,"polymap");o(v5,"copy");o(cTe,"transformer");o(kv,"continuous")});function I_(t,e,r,n){var i=y0(t,e,r),a;switch(n=Eh(n??",f"),n.type){case"s":{var s=Math.max(Math.abs(t),Math.abs(e));return n.precision==null&&!isNaN(a=g5(i,s))&&(n.precision=a),p5(n,s)}case"":case"e":case"g":case"p":case"r":{n.precision==null&&!isNaN(a=y5(i,Math.max(Math.abs(t),Math.abs(e))))&&(n.precision=a-(n.type==="e"));break}case"f":case"%":{n.precision==null&&!isNaN(a=m5(i))&&(n.precision=a-(n.type==="%")*2);break}}return d5(n)}var nW=N(()=>{"use strict";vh();A_();o(I_,"tickFormat")});function uTe(t){var e=t.domain;return t.ticks=function(r){var n=e();return R3(n[0],n[n.length-1],r??10)},t.tickFormat=function(r,n){var i=e();return I_(i[0],i[i.length-1],r??10,n)},t.nice=function(r){r==null&&(r=10);var n=e(),i=0,a=n.length-1,s=n[i],l=n[a],u,h,f=10;for(l0;){if(h=Zy(s,l,r),h===u)return n[i]=s,n[a]=l,e(n);if(h>0)s=Math.floor(s/h)*h,l=Math.ceil(l/h)*h;else if(h<0)s=Math.ceil(s*h)/h,l=Math.floor(l*h)/h;else break;u=h}return t},t}function gl(){var t=kv();return t.copy=function(){return v5(t,gl())},Sh.apply(t,arguments),uTe(t)}var iW=N(()=>{"use strict";vh();M_();Tv();nW();o(uTe,"linearish");o(gl,"linear")});function O_(t,e){t=t.slice();var r=0,n=t.length-1,i=t[r],a=t[n],s;return a{"use strict";o(O_,"nice")});function xn(t,e,r,n){function i(a){return t(a=arguments.length===0?new Date:new Date(+a)),a}return o(i,"interval"),i.floor=a=>(t(a=new Date(+a)),a),i.ceil=a=>(t(a=new Date(a-1)),e(a,1),t(a),a),i.round=a=>{let s=i(a),l=i.ceil(a);return a-s(e(a=new Date(+a),s==null?1:Math.floor(s)),a),i.range=(a,s,l)=>{let u=[];if(a=i.ceil(a),l=l==null?1:Math.floor(l),!(a0))return u;let h;do u.push(h=new Date(+a)),e(a,l),t(a);while(hxn(s=>{if(s>=s)for(;t(s),!a(s);)s.setTime(s-1)},(s,l)=>{if(s>=s)if(l<0)for(;++l<=0;)for(;e(s,-1),!a(s););else for(;--l>=0;)for(;e(s,1),!a(s););}),r&&(i.count=(a,s)=>(P_.setTime(+a),B_.setTime(+s),t(P_),t(B_),Math.floor(r(P_,B_))),i.every=a=>(a=Math.floor(a),!isFinite(a)||!(a>0)?null:a>1?i.filter(n?s=>n(s)%a===0:s=>i.count(0,s)%a===0):i)),i}var P_,B_,yu=N(()=>{"use strict";P_=new Date,B_=new Date;o(xn,"timeInterval")});var ac,sW,F_=N(()=>{"use strict";yu();ac=xn(()=>{},(t,e)=>{t.setTime(+t+e)},(t,e)=>e-t);ac.every=t=>(t=Math.floor(t),!isFinite(t)||!(t>0)?null:t>1?xn(e=>{e.setTime(Math.floor(e/t)*t)},(e,r)=>{e.setTime(+e+r*t)},(e,r)=>(r-e)/t):ac);sW=ac.range});var Ks,oW,$_=N(()=>{"use strict";yu();Ks=xn(t=>{t.setTime(t-t.getMilliseconds())},(t,e)=>{t.setTime(+t+e*1e3)},(t,e)=>(e-t)/1e3,t=>t.getUTCSeconds()),oW=Ks.range});var vu,hTe,x5,fTe,z_=N(()=>{"use strict";yu();vu=xn(t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*1e3)},(t,e)=>{t.setTime(+t+e*6e4)},(t,e)=>(e-t)/6e4,t=>t.getMinutes()),hTe=vu.range,x5=xn(t=>{t.setUTCSeconds(0,0)},(t,e)=>{t.setTime(+t+e*6e4)},(t,e)=>(e-t)/6e4,t=>t.getUTCMinutes()),fTe=x5.range});var xu,dTe,b5,pTe,G_=N(()=>{"use strict";yu();xu=xn(t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*1e3-t.getMinutes()*6e4)},(t,e)=>{t.setTime(+t+e*36e5)},(t,e)=>(e-t)/36e5,t=>t.getHours()),dTe=xu.range,b5=xn(t=>{t.setUTCMinutes(0,0,0)},(t,e)=>{t.setTime(+t+e*36e5)},(t,e)=>(e-t)/36e5,t=>t.getUTCHours()),pTe=b5.range});var _o,mTe,Sv,gTe,w5,yTe,V_=N(()=>{"use strict";yu();_o=xn(t=>t.setHours(0,0,0,0),(t,e)=>t.setDate(t.getDate()+e),(t,e)=>(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*6e4)/864e5,t=>t.getDate()-1),mTe=_o.range,Sv=xn(t=>{t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCDate(t.getUTCDate()+e)},(t,e)=>(e-t)/864e5,t=>t.getUTCDate()-1),gTe=Sv.range,w5=xn(t=>{t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCDate(t.getUTCDate()+e)},(t,e)=>(e-t)/864e5,t=>Math.floor(t/864e5)),yTe=w5.range});function vd(t){return xn(e=>{e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)},(e,r)=>{e.setDate(e.getDate()+r*7)},(e,r)=>(r-e-(r.getTimezoneOffset()-e.getTimezoneOffset())*6e4)/6048e5)}function xd(t){return xn(e=>{e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)},(e,r)=>{e.setUTCDate(e.getUTCDate()+r*7)},(e,r)=>(r-e)/6048e5)}var yl,Ch,T5,k5,oc,E5,S5,cW,vTe,xTe,bTe,wTe,TTe,kTe,bd,N0,uW,hW,Ah,fW,dW,pW,ETe,STe,CTe,ATe,_Te,DTe,U_=N(()=>{"use strict";yu();o(vd,"timeWeekday");yl=vd(0),Ch=vd(1),T5=vd(2),k5=vd(3),oc=vd(4),E5=vd(5),S5=vd(6),cW=yl.range,vTe=Ch.range,xTe=T5.range,bTe=k5.range,wTe=oc.range,TTe=E5.range,kTe=S5.range;o(xd,"utcWeekday");bd=xd(0),N0=xd(1),uW=xd(2),hW=xd(3),Ah=xd(4),fW=xd(5),dW=xd(6),pW=bd.range,ETe=N0.range,STe=uW.range,CTe=hW.range,ATe=Ah.range,_Te=fW.range,DTe=dW.range});var bu,LTe,C5,RTe,H_=N(()=>{"use strict";yu();bu=xn(t=>{t.setDate(1),t.setHours(0,0,0,0)},(t,e)=>{t.setMonth(t.getMonth()+e)},(t,e)=>e.getMonth()-t.getMonth()+(e.getFullYear()-t.getFullYear())*12,t=>t.getMonth()),LTe=bu.range,C5=xn(t=>{t.setUTCDate(1),t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCMonth(t.getUTCMonth()+e)},(t,e)=>e.getUTCMonth()-t.getUTCMonth()+(e.getUTCFullYear()-t.getUTCFullYear())*12,t=>t.getUTCMonth()),RTe=C5.range});var Qs,NTe,vl,MTe,W_=N(()=>{"use strict";yu();Qs=xn(t=>{t.setMonth(0,1),t.setHours(0,0,0,0)},(t,e)=>{t.setFullYear(t.getFullYear()+e)},(t,e)=>e.getFullYear()-t.getFullYear(),t=>t.getFullYear());Qs.every=t=>!isFinite(t=Math.floor(t))||!(t>0)?null:xn(e=>{e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)},(e,r)=>{e.setFullYear(e.getFullYear()+r*t)});NTe=Qs.range,vl=xn(t=>{t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCFullYear(t.getUTCFullYear()+e)},(t,e)=>e.getUTCFullYear()-t.getUTCFullYear(),t=>t.getUTCFullYear());vl.every=t=>!isFinite(t=Math.floor(t))||!(t>0)?null:xn(e=>{e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)},(e,r)=>{e.setUTCFullYear(e.getUTCFullYear()+r*t)});MTe=vl.range});function gW(t,e,r,n,i,a){let s=[[Ks,1,1e3],[Ks,5,5*1e3],[Ks,15,15*1e3],[Ks,30,30*1e3],[a,1,6e4],[a,5,5*6e4],[a,15,15*6e4],[a,30,30*6e4],[i,1,36e5],[i,3,3*36e5],[i,6,6*36e5],[i,12,12*36e5],[n,1,864e5],[n,2,2*864e5],[r,1,6048e5],[e,1,2592e6],[e,3,3*2592e6],[t,1,31536e6]];function l(h,f,d){let p=fv).right(s,p);if(m===s.length)return t.every(y0(h/31536e6,f/31536e6,d));if(m===0)return ac.every(Math.max(y0(h,f,d),1));let[g,y]=s[p/s[m-1][2]{"use strict";vh();F_();$_();z_();G_();V_();U_();H_();W_();o(gW,"ticker");[OTe,PTe]=gW(vl,C5,bd,w5,b5,x5),[q_,Y_]=gW(Qs,bu,yl,_o,xu,vu)});var A5=N(()=>{"use strict";F_();$_();z_();G_();V_();U_();H_();W_();yW()});function X_(t){if(0<=t.y&&t.y<100){var e=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return e.setFullYear(t.y),e}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function j_(t){if(0<=t.y&&t.y<100){var e=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return e.setUTCFullYear(t.y),e}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function Cv(t,e,r){return{y:t,m:e,d:r,H:0,M:0,S:0,L:0}}function K_(t){var e=t.dateTime,r=t.date,n=t.time,i=t.periods,a=t.days,s=t.shortDays,l=t.months,u=t.shortMonths,h=Av(i),f=_v(i),d=Av(a),p=_v(a),m=Av(s),g=_v(s),y=Av(l),v=_v(l),x=Av(u),b=_v(u),w={a:B,A:F,b:P,B:z,c:null,d:kW,e:kW,f:ake,g:mke,G:yke,H:rke,I:nke,j:ike,L:_W,m:ske,M:oke,p:$,q:H,Q:CW,s:AW,S:lke,u:cke,U:uke,V:hke,w:fke,W:dke,x:null,X:null,y:pke,Y:gke,Z:vke,"%":SW},C={a:Q,A:j,b:ie,B:ne,c:null,d:EW,e:EW,f:Tke,g:Nke,G:Ike,H:xke,I:bke,j:wke,L:LW,m:kke,M:Eke,p:le,q:he,Q:CW,s:AW,S:Ske,u:Cke,U:Ake,V:_ke,w:Dke,W:Lke,x:null,X:null,y:Rke,Y:Mke,Z:Oke,"%":SW},T={a:I,A:D,b:k,B:L,c:R,d:wW,e:wW,f:ZTe,g:bW,G:xW,H:TW,I:TW,j:XTe,L:QTe,m:YTe,M:jTe,p:_,q:qTe,Q:eke,s:tke,S:KTe,u:GTe,U:VTe,V:UTe,w:zTe,W:HTe,x:O,X:M,y:bW,Y:xW,Z:WTe,"%":JTe};w.x=E(r,w),w.X=E(n,w),w.c=E(e,w),C.x=E(r,C),C.X=E(n,C),C.c=E(e,C);function E(K,X){return function(te){var J=[],se=-1,ue=0,Z=K.length,Se,ce,ae;for(te instanceof Date||(te=new Date(+te));++se53)return null;"w"in J||(J.w=1),"Z"in J?(ue=j_(Cv(J.y,0,1)),Z=ue.getUTCDay(),ue=Z>4||Z===0?N0.ceil(ue):N0(ue),ue=Sv.offset(ue,(J.V-1)*7),J.y=ue.getUTCFullYear(),J.m=ue.getUTCMonth(),J.d=ue.getUTCDate()+(J.w+6)%7):(ue=X_(Cv(J.y,0,1)),Z=ue.getDay(),ue=Z>4||Z===0?Ch.ceil(ue):Ch(ue),ue=_o.offset(ue,(J.V-1)*7),J.y=ue.getFullYear(),J.m=ue.getMonth(),J.d=ue.getDate()+(J.w+6)%7)}else("W"in J||"U"in J)&&("w"in J||(J.w="u"in J?J.u%7:"W"in J?1:0),Z="Z"in J?j_(Cv(J.y,0,1)).getUTCDay():X_(Cv(J.y,0,1)).getDay(),J.m=0,J.d="W"in J?(J.w+6)%7+J.W*7-(Z+5)%7:J.w+J.U*7-(Z+6)%7);return"Z"in J?(J.H+=J.Z/100|0,J.M+=J.Z%100,j_(J)):X_(J)}}o(A,"newParse");function S(K,X,te,J){for(var se=0,ue=X.length,Z=te.length,Se,ce;se=Z)return-1;if(Se=X.charCodeAt(se++),Se===37){if(Se=X.charAt(se++),ce=T[Se in vW?X.charAt(se++):Se],!ce||(J=ce(K,te,J))<0)return-1}else if(Se!=te.charCodeAt(J++))return-1}return J}o(S,"parseSpecifier");function _(K,X,te){var J=h.exec(X.slice(te));return J?(K.p=f.get(J[0].toLowerCase()),te+J[0].length):-1}o(_,"parsePeriod");function I(K,X,te){var J=m.exec(X.slice(te));return J?(K.w=g.get(J[0].toLowerCase()),te+J[0].length):-1}o(I,"parseShortWeekday");function D(K,X,te){var J=d.exec(X.slice(te));return J?(K.w=p.get(J[0].toLowerCase()),te+J[0].length):-1}o(D,"parseWeekday");function k(K,X,te){var J=x.exec(X.slice(te));return J?(K.m=b.get(J[0].toLowerCase()),te+J[0].length):-1}o(k,"parseShortMonth");function L(K,X,te){var J=y.exec(X.slice(te));return J?(K.m=v.get(J[0].toLowerCase()),te+J[0].length):-1}o(L,"parseMonth");function R(K,X,te){return S(K,e,X,te)}o(R,"parseLocaleDateTime");function O(K,X,te){return S(K,r,X,te)}o(O,"parseLocaleDate");function M(K,X,te){return S(K,n,X,te)}o(M,"parseLocaleTime");function B(K){return s[K.getDay()]}o(B,"formatShortWeekday");function F(K){return a[K.getDay()]}o(F,"formatWeekday");function P(K){return u[K.getMonth()]}o(P,"formatShortMonth");function z(K){return l[K.getMonth()]}o(z,"formatMonth");function $(K){return i[+(K.getHours()>=12)]}o($,"formatPeriod");function H(K){return 1+~~(K.getMonth()/3)}o(H,"formatQuarter");function Q(K){return s[K.getUTCDay()]}o(Q,"formatUTCShortWeekday");function j(K){return a[K.getUTCDay()]}o(j,"formatUTCWeekday");function ie(K){return u[K.getUTCMonth()]}o(ie,"formatUTCShortMonth");function ne(K){return l[K.getUTCMonth()]}o(ne,"formatUTCMonth");function le(K){return i[+(K.getUTCHours()>=12)]}o(le,"formatUTCPeriod");function he(K){return 1+~~(K.getUTCMonth()/3)}return o(he,"formatUTCQuarter"),{format:o(function(K){var X=E(K+="",w);return X.toString=function(){return K},X},"format"),parse:o(function(K){var X=A(K+="",!1);return X.toString=function(){return K},X},"parse"),utcFormat:o(function(K){var X=E(K+="",C);return X.toString=function(){return K},X},"utcFormat"),utcParse:o(function(K){var X=A(K+="",!0);return X.toString=function(){return K},X},"utcParse")}}function Wr(t,e,r){var n=t<0?"-":"",i=(n?-t:t)+"",a=i.length;return n+(a[e.toLowerCase(),r]))}function zTe(t,e,r){var n=Qi.exec(e.slice(r,r+1));return n?(t.w=+n[0],r+n[0].length):-1}function GTe(t,e,r){var n=Qi.exec(e.slice(r,r+1));return n?(t.u=+n[0],r+n[0].length):-1}function VTe(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.U=+n[0],r+n[0].length):-1}function UTe(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.V=+n[0],r+n[0].length):-1}function HTe(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.W=+n[0],r+n[0].length):-1}function xW(t,e,r){var n=Qi.exec(e.slice(r,r+4));return n?(t.y=+n[0],r+n[0].length):-1}function bW(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.y=+n[0]+(+n[0]>68?1900:2e3),r+n[0].length):-1}function WTe(t,e,r){var n=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(r,r+6));return n?(t.Z=n[1]?0:-(n[2]+(n[3]||"00")),r+n[0].length):-1}function qTe(t,e,r){var n=Qi.exec(e.slice(r,r+1));return n?(t.q=n[0]*3-3,r+n[0].length):-1}function YTe(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.m=n[0]-1,r+n[0].length):-1}function wW(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.d=+n[0],r+n[0].length):-1}function XTe(t,e,r){var n=Qi.exec(e.slice(r,r+3));return n?(t.m=0,t.d=+n[0],r+n[0].length):-1}function TW(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.H=+n[0],r+n[0].length):-1}function jTe(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.M=+n[0],r+n[0].length):-1}function KTe(t,e,r){var n=Qi.exec(e.slice(r,r+2));return n?(t.S=+n[0],r+n[0].length):-1}function QTe(t,e,r){var n=Qi.exec(e.slice(r,r+3));return n?(t.L=+n[0],r+n[0].length):-1}function ZTe(t,e,r){var n=Qi.exec(e.slice(r,r+6));return n?(t.L=Math.floor(n[0]/1e3),r+n[0].length):-1}function JTe(t,e,r){var n=BTe.exec(e.slice(r,r+1));return n?r+n[0].length:-1}function eke(t,e,r){var n=Qi.exec(e.slice(r));return n?(t.Q=+n[0],r+n[0].length):-1}function tke(t,e,r){var n=Qi.exec(e.slice(r));return n?(t.s=+n[0],r+n[0].length):-1}function kW(t,e){return Wr(t.getDate(),e,2)}function rke(t,e){return Wr(t.getHours(),e,2)}function nke(t,e){return Wr(t.getHours()%12||12,e,2)}function ike(t,e){return Wr(1+_o.count(Qs(t),t),e,3)}function _W(t,e){return Wr(t.getMilliseconds(),e,3)}function ake(t,e){return _W(t,e)+"000"}function ske(t,e){return Wr(t.getMonth()+1,e,2)}function oke(t,e){return Wr(t.getMinutes(),e,2)}function lke(t,e){return Wr(t.getSeconds(),e,2)}function cke(t){var e=t.getDay();return e===0?7:e}function uke(t,e){return Wr(yl.count(Qs(t)-1,t),e,2)}function DW(t){var e=t.getDay();return e>=4||e===0?oc(t):oc.ceil(t)}function hke(t,e){return t=DW(t),Wr(oc.count(Qs(t),t)+(Qs(t).getDay()===4),e,2)}function fke(t){return t.getDay()}function dke(t,e){return Wr(Ch.count(Qs(t)-1,t),e,2)}function pke(t,e){return Wr(t.getFullYear()%100,e,2)}function mke(t,e){return t=DW(t),Wr(t.getFullYear()%100,e,2)}function gke(t,e){return Wr(t.getFullYear()%1e4,e,4)}function yke(t,e){var r=t.getDay();return t=r>=4||r===0?oc(t):oc.ceil(t),Wr(t.getFullYear()%1e4,e,4)}function vke(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+Wr(e/60|0,"0",2)+Wr(e%60,"0",2)}function EW(t,e){return Wr(t.getUTCDate(),e,2)}function xke(t,e){return Wr(t.getUTCHours(),e,2)}function bke(t,e){return Wr(t.getUTCHours()%12||12,e,2)}function wke(t,e){return Wr(1+Sv.count(vl(t),t),e,3)}function LW(t,e){return Wr(t.getUTCMilliseconds(),e,3)}function Tke(t,e){return LW(t,e)+"000"}function kke(t,e){return Wr(t.getUTCMonth()+1,e,2)}function Eke(t,e){return Wr(t.getUTCMinutes(),e,2)}function Ske(t,e){return Wr(t.getUTCSeconds(),e,2)}function Cke(t){var e=t.getUTCDay();return e===0?7:e}function Ake(t,e){return Wr(bd.count(vl(t)-1,t),e,2)}function RW(t){var e=t.getUTCDay();return e>=4||e===0?Ah(t):Ah.ceil(t)}function _ke(t,e){return t=RW(t),Wr(Ah.count(vl(t),t)+(vl(t).getUTCDay()===4),e,2)}function Dke(t){return t.getUTCDay()}function Lke(t,e){return Wr(N0.count(vl(t)-1,t),e,2)}function Rke(t,e){return Wr(t.getUTCFullYear()%100,e,2)}function Nke(t,e){return t=RW(t),Wr(t.getUTCFullYear()%100,e,2)}function Mke(t,e){return Wr(t.getUTCFullYear()%1e4,e,4)}function Ike(t,e){var r=t.getUTCDay();return t=r>=4||r===0?Ah(t):Ah.ceil(t),Wr(t.getUTCFullYear()%1e4,e,4)}function Oke(){return"+0000"}function SW(){return"%"}function CW(t){return+t}function AW(t){return Math.floor(+t/1e3)}var vW,Qi,BTe,FTe,NW=N(()=>{"use strict";A5();o(X_,"localDate");o(j_,"utcDate");o(Cv,"newDate");o(K_,"formatLocale");vW={"-":"",_:" ",0:"0"},Qi=/^\s*\d+/,BTe=/^%/,FTe=/[\\^$*+?|[\]().{}]/g;o(Wr,"pad");o($Te,"requote");o(Av,"formatRe");o(_v,"formatLookup");o(zTe,"parseWeekdayNumberSunday");o(GTe,"parseWeekdayNumberMonday");o(VTe,"parseWeekNumberSunday");o(UTe,"parseWeekNumberISO");o(HTe,"parseWeekNumberMonday");o(xW,"parseFullYear");o(bW,"parseYear");o(WTe,"parseZone");o(qTe,"parseQuarter");o(YTe,"parseMonthNumber");o(wW,"parseDayOfMonth");o(XTe,"parseDayOfYear");o(TW,"parseHour24");o(jTe,"parseMinutes");o(KTe,"parseSeconds");o(QTe,"parseMilliseconds");o(ZTe,"parseMicroseconds");o(JTe,"parseLiteralPercent");o(eke,"parseUnixTimestamp");o(tke,"parseUnixTimestampSeconds");o(kW,"formatDayOfMonth");o(rke,"formatHour24");o(nke,"formatHour12");o(ike,"formatDayOfYear");o(_W,"formatMilliseconds");o(ake,"formatMicroseconds");o(ske,"formatMonthNumber");o(oke,"formatMinutes");o(lke,"formatSeconds");o(cke,"formatWeekdayNumberMonday");o(uke,"formatWeekNumberSunday");o(DW,"dISO");o(hke,"formatWeekNumberISO");o(fke,"formatWeekdayNumberSunday");o(dke,"formatWeekNumberMonday");o(pke,"formatYear");o(mke,"formatYearISO");o(gke,"formatFullYear");o(yke,"formatFullYearISO");o(vke,"formatZone");o(EW,"formatUTCDayOfMonth");o(xke,"formatUTCHour24");o(bke,"formatUTCHour12");o(wke,"formatUTCDayOfYear");o(LW,"formatUTCMilliseconds");o(Tke,"formatUTCMicroseconds");o(kke,"formatUTCMonthNumber");o(Eke,"formatUTCMinutes");o(Ske,"formatUTCSeconds");o(Cke,"formatUTCWeekdayNumberMonday");o(Ake,"formatUTCWeekNumberSunday");o(RW,"UTCdISO");o(_ke,"formatUTCWeekNumberISO");o(Dke,"formatUTCWeekdayNumberSunday");o(Lke,"formatUTCWeekNumberMonday");o(Rke,"formatUTCYear");o(Nke,"formatUTCYearISO");o(Mke,"formatUTCFullYear");o(Ike,"formatUTCFullYearISO");o(Oke,"formatUTCZone");o(SW,"formatLiteralPercent");o(CW,"formatUnixTimestamp");o(AW,"formatUnixTimestampSeconds")});function Q_(t){return M0=K_(t),wd=M0.format,MW=M0.parse,IW=M0.utcFormat,OW=M0.utcParse,M0}var M0,wd,MW,IW,OW,PW=N(()=>{"use strict";NW();Q_({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});o(Q_,"defaultLocale")});var Z_=N(()=>{"use strict";PW()});function Pke(t){return new Date(t)}function Bke(t){return t instanceof Date?+t:+new Date(+t)}function BW(t,e,r,n,i,a,s,l,u,h){var f=kv(),d=f.invert,p=f.domain,m=h(".%L"),g=h(":%S"),y=h("%I:%M"),v=h("%I %p"),x=h("%a %d"),b=h("%b %d"),w=h("%B"),C=h("%Y");function T(E){return(u(E){"use strict";A5();Z_();M_();Tv();aW();o(Pke,"date");o(Bke,"number");o(BW,"calendar");o(_5,"time")});var $W=N(()=>{"use strict";JH();iW();D_();FW()});function J_(t){for(var e=t.length/6|0,r=new Array(e),n=0;n{"use strict";o(J_,"default")});var e9,GW=N(()=>{"use strict";zW();e9=J_("4e79a7f28e2ce1575976b7b259a14fedc949af7aa1ff9da79c755fbab0ab")});var VW=N(()=>{"use strict";GW()});function Bn(t){return o(function(){return t},"constant")}var D5=N(()=>{"use strict";o(Bn,"default")});function HW(t){return t>1?0:t<-1?I0:Math.acos(t)}function r9(t){return t>=1?Dv:t<=-1?-Dv:Math.asin(t)}var t9,fa,_h,UW,L5,xl,Td,Zi,I0,Dv,O0,R5=N(()=>{"use strict";t9=Math.abs,fa=Math.atan2,_h=Math.cos,UW=Math.max,L5=Math.min,xl=Math.sin,Td=Math.sqrt,Zi=1e-12,I0=Math.PI,Dv=I0/2,O0=2*I0;o(HW,"acos");o(r9,"asin")});function N5(t){let e=3;return t.digits=function(r){if(!arguments.length)return e;if(r==null)e=null;else{let n=Math.floor(r);if(!(n>=0))throw new RangeError(`invalid digits: ${r}`);e=n}return t},()=>new pd(e)}var n9=N(()=>{"use strict";m_();o(N5,"withPath")});function Fke(t){return t.innerRadius}function $ke(t){return t.outerRadius}function zke(t){return t.startAngle}function Gke(t){return t.endAngle}function Vke(t){return t&&t.padAngle}function Uke(t,e,r,n,i,a,s,l){var u=r-t,h=n-e,f=s-i,d=l-a,p=d*u-f*h;if(!(p*pR*R+O*O&&(S=I,_=D),{cx:S,cy:_,x01:-f,y01:-d,x11:S*(i/T-1),y11:_*(i/T-1)}}function bl(){var t=Fke,e=$ke,r=Bn(0),n=null,i=zke,a=Gke,s=Vke,l=null,u=N5(h);function h(){var f,d,p=+t.apply(this,arguments),m=+e.apply(this,arguments),g=i.apply(this,arguments)-Dv,y=a.apply(this,arguments)-Dv,v=t9(y-g),x=y>g;if(l||(l=f=u()),mZi))l.moveTo(0,0);else if(v>O0-Zi)l.moveTo(m*_h(g),m*xl(g)),l.arc(0,0,m,g,y,!x),p>Zi&&(l.moveTo(p*_h(y),p*xl(y)),l.arc(0,0,p,y,g,x));else{var b=g,w=y,C=g,T=y,E=v,A=v,S=s.apply(this,arguments)/2,_=S>Zi&&(n?+n.apply(this,arguments):Td(p*p+m*m)),I=L5(t9(m-p)/2,+r.apply(this,arguments)),D=I,k=I,L,R;if(_>Zi){var O=r9(_/p*xl(S)),M=r9(_/m*xl(S));(E-=O*2)>Zi?(O*=x?1:-1,C+=O,T-=O):(E=0,C=T=(g+y)/2),(A-=M*2)>Zi?(M*=x?1:-1,b+=M,w-=M):(A=0,b=w=(g+y)/2)}var B=m*_h(b),F=m*xl(b),P=p*_h(T),z=p*xl(T);if(I>Zi){var $=m*_h(w),H=m*xl(w),Q=p*_h(C),j=p*xl(C),ie;if(vZi?k>Zi?(L=M5(Q,j,B,F,m,k,x),R=M5($,H,P,z,m,k,x),l.moveTo(L.cx+L.x01,L.cy+L.y01),kZi)||!(E>Zi)?l.lineTo(P,z):D>Zi?(L=M5(P,z,$,H,p,-D,x),R=M5(B,F,Q,j,p,-D,x),l.lineTo(L.cx+L.x01,L.cy+L.y01),D{"use strict";D5();R5();n9();o(Fke,"arcInnerRadius");o($ke,"arcOuterRadius");o(zke,"arcStartAngle");o(Gke,"arcEndAngle");o(Vke,"arcPadAngle");o(Uke,"intersect");o(M5,"cornerTangents");o(bl,"default")});function Lv(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}var Nyt,i9=N(()=>{"use strict";Nyt=Array.prototype.slice;o(Lv,"default")});function qW(t){this._context=t}function wu(t){return new qW(t)}var a9=N(()=>{"use strict";o(qW,"Linear");qW.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._point=0},"lineStart"),lineEnd:o(function(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},"lineEnd"),point:o(function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e);break}},"point")};o(wu,"default")});function YW(t){return t[0]}function XW(t){return t[1]}var jW=N(()=>{"use strict";o(YW,"x");o(XW,"y")});function wl(t,e){var r=Bn(!0),n=null,i=wu,a=null,s=N5(l);t=typeof t=="function"?t:t===void 0?YW:Bn(t),e=typeof e=="function"?e:e===void 0?XW:Bn(e);function l(u){var h,f=(u=Lv(u)).length,d,p=!1,m;for(n==null&&(a=i(m=s())),h=0;h<=f;++h)!(h{"use strict";i9();D5();a9();n9();jW();o(wl,"default")});function s9(t,e){return et?1:e>=t?0:NaN}var QW=N(()=>{"use strict";o(s9,"default")});function o9(t){return t}var ZW=N(()=>{"use strict";o(o9,"default")});function I5(){var t=o9,e=s9,r=null,n=Bn(0),i=Bn(O0),a=Bn(0);function s(l){var u,h=(l=Lv(l)).length,f,d,p=0,m=new Array(h),g=new Array(h),y=+n.apply(this,arguments),v=Math.min(O0,Math.max(-O0,i.apply(this,arguments)-y)),x,b=Math.min(Math.abs(v)/h,a.apply(this,arguments)),w=b*(v<0?-1:1),C;for(u=0;u0&&(p+=C);for(e!=null?m.sort(function(T,E){return e(g[T],g[E])}):r!=null&&m.sort(function(T,E){return r(l[T],l[E])}),u=0,d=p?(v-h*w)/p:0;u0?C*d:0)+w,g[f]={data:l[f],index:u,value:C,startAngle:y,endAngle:x,padAngle:b};return g}return o(s,"pie"),s.value=function(l){return arguments.length?(t=typeof l=="function"?l:Bn(+l),s):t},s.sortValues=function(l){return arguments.length?(e=l,r=null,s):e},s.sort=function(l){return arguments.length?(r=l,e=null,s):r},s.startAngle=function(l){return arguments.length?(n=typeof l=="function"?l:Bn(+l),s):n},s.endAngle=function(l){return arguments.length?(i=typeof l=="function"?l:Bn(+l),s):i},s.padAngle=function(l){return arguments.length?(a=typeof l=="function"?l:Bn(+l),s):a},s}var JW=N(()=>{"use strict";i9();D5();QW();ZW();R5();o(I5,"default")});function Rv(t){return new O5(t,!0)}function Nv(t){return new O5(t,!1)}var O5,eq=N(()=>{"use strict";O5=class{static{o(this,"Bump")}constructor(e,r){this._context=e,this._x=r}areaStart(){this._line=0}areaEnd(){this._line=NaN}lineStart(){this._point=0}lineEnd(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line}point(e,r){switch(e=+e,r=+r,this._point){case 0:{this._point=1,this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break}case 1:this._point=2;default:{this._x?this._context.bezierCurveTo(this._x0=(this._x0+e)/2,this._y0,this._x0,r,e,r):this._context.bezierCurveTo(this._x0,this._y0=(this._y0+r)/2,e,this._y0,e,r);break}}this._x0=e,this._y0=r}};o(Rv,"bumpX");o(Nv,"bumpY")});function Zs(){}var Mv=N(()=>{"use strict";o(Zs,"default")});function P0(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function Iv(t){this._context=t}function Do(t){return new Iv(t)}var Ov=N(()=>{"use strict";o(P0,"point");o(Iv,"Basis");Iv.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},"lineStart"),lineEnd:o(function(){switch(this._point){case 3:P0(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},"lineEnd"),point:o(function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:P0(this,t,e);break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e},"point")};o(Do,"default")});function tq(t){this._context=t}function P5(t){return new tq(t)}var rq=N(()=>{"use strict";Mv();Ov();o(tq,"BasisClosed");tq.prototype={areaStart:Zs,areaEnd:Zs,lineStart:o(function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},"lineStart"),lineEnd:o(function(){switch(this._point){case 1:{this._context.moveTo(this._x2,this._y2),this._context.closePath();break}case 2:{this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break}case 3:{this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4);break}}},"lineEnd"),point:o(function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:P0(this,t,e);break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e},"point")};o(P5,"default")});function nq(t){this._context=t}function B5(t){return new nq(t)}var iq=N(()=>{"use strict";Ov();o(nq,"BasisOpen");nq.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},"lineStart"),lineEnd:o(function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},"lineEnd"),point:o(function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:P0(this,t,e);break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e},"point")};o(B5,"default")});function aq(t,e){this._basis=new Iv(t),this._beta=e}var l9,sq=N(()=>{"use strict";Ov();o(aq,"Bundle");aq.prototype={lineStart:o(function(){this._x=[],this._y=[],this._basis.lineStart()},"lineStart"),lineEnd:o(function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n=t[0],i=e[0],a=t[r]-n,s=e[r]-i,l=-1,u;++l<=r;)u=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(n+u*a),this._beta*e[l]+(1-this._beta)*(i+u*s));this._x=this._y=null,this._basis.lineEnd()},"lineEnd"),point:o(function(t,e){this._x.push(+t),this._y.push(+e)},"point")};l9=o(function t(e){function r(n){return e===1?new Iv(n):new aq(n,e)}return o(r,"bundle"),r.beta=function(n){return t(+n)},r},"custom")(.85)});function B0(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function F5(t,e){this._context=t,this._k=(1-e)/6}var Pv,Bv=N(()=>{"use strict";o(B0,"point");o(F5,"Cardinal");F5.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},"lineStart"),lineEnd:o(function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:B0(this,this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},"lineEnd"),point:o(function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:B0(this,t,e);break}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e},"point")};Pv=o(function t(e){function r(n){return new F5(n,e)}return o(r,"cardinal"),r.tension=function(n){return t(+n)},r},"custom")(0)});function $5(t,e){this._context=t,this._k=(1-e)/6}var c9,u9=N(()=>{"use strict";Mv();Bv();o($5,"CardinalClosed");$5.prototype={areaStart:Zs,areaEnd:Zs,lineStart:o(function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},"lineStart"),lineEnd:o(function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},"lineEnd"),point:o(function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:B0(this,t,e);break}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e},"point")};c9=o(function t(e){function r(n){return new $5(n,e)}return o(r,"cardinal"),r.tension=function(n){return t(+n)},r},"custom")(0)});function z5(t,e){this._context=t,this._k=(1-e)/6}var h9,f9=N(()=>{"use strict";Bv();o(z5,"CardinalOpen");z5.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},"lineStart"),lineEnd:o(function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},"lineEnd"),point:o(function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:B0(this,t,e);break}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e},"point")};h9=o(function t(e){function r(n){return new z5(n,e)}return o(r,"cardinal"),r.tension=function(n){return t(+n)},r},"custom")(0)});function Fv(t,e,r){var n=t._x1,i=t._y1,a=t._x2,s=t._y2;if(t._l01_a>Zi){var l=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,u=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*l-t._x0*t._l12_2a+t._x2*t._l01_2a)/u,i=(i*l-t._y0*t._l12_2a+t._y2*t._l01_2a)/u}if(t._l23_a>Zi){var h=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,f=3*t._l23_a*(t._l23_a+t._l12_a);a=(a*h+t._x1*t._l23_2a-e*t._l12_2a)/f,s=(s*h+t._y1*t._l23_2a-r*t._l12_2a)/f}t._context.bezierCurveTo(n,i,a,s,t._x2,t._y2)}function oq(t,e){this._context=t,this._alpha=e}var $v,G5=N(()=>{"use strict";R5();Bv();o(Fv,"point");o(oq,"CatmullRom");oq.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},"lineStart"),lineEnd:o(function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},"lineEnd"),point:o(function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:Fv(this,t,e);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e},"point")};$v=o(function t(e){function r(n){return e?new oq(n,e):new F5(n,0)}return o(r,"catmullRom"),r.alpha=function(n){return t(+n)},r},"custom")(.5)});function lq(t,e){this._context=t,this._alpha=e}var d9,cq=N(()=>{"use strict";u9();Mv();G5();o(lq,"CatmullRomClosed");lq.prototype={areaStart:Zs,areaEnd:Zs,lineStart:o(function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},"lineStart"),lineEnd:o(function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},"lineEnd"),point:o(function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:Fv(this,t,e);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e},"point")};d9=o(function t(e){function r(n){return e?new lq(n,e):new $5(n,0)}return o(r,"catmullRom"),r.alpha=function(n){return t(+n)},r},"custom")(.5)});function uq(t,e){this._context=t,this._alpha=e}var p9,hq=N(()=>{"use strict";f9();G5();o(uq,"CatmullRomOpen");uq.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},"lineStart"),lineEnd:o(function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},"lineEnd"),point:o(function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Fv(this,t,e);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e},"point")};p9=o(function t(e){function r(n){return e?new uq(n,e):new z5(n,0)}return o(r,"catmullRom"),r.alpha=function(n){return t(+n)},r},"custom")(.5)});function fq(t){this._context=t}function V5(t){return new fq(t)}var dq=N(()=>{"use strict";Mv();o(fq,"LinearClosed");fq.prototype={areaStart:Zs,areaEnd:Zs,lineStart:o(function(){this._point=0},"lineStart"),lineEnd:o(function(){this._point&&this._context.closePath()},"lineEnd"),point:o(function(t,e){t=+t,e=+e,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))},"point")};o(V5,"default")});function pq(t){return t<0?-1:1}function mq(t,e,r){var n=t._x1-t._x0,i=e-t._x1,a=(t._y1-t._y0)/(n||i<0&&-0),s=(r-t._y1)/(i||n<0&&-0),l=(a*i+s*n)/(n+i);return(pq(a)+pq(s))*Math.min(Math.abs(a),Math.abs(s),.5*Math.abs(l))||0}function gq(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function m9(t,e,r){var n=t._x0,i=t._y0,a=t._x1,s=t._y1,l=(a-n)/3;t._context.bezierCurveTo(n+l,i+l*e,a-l,s-l*r,a,s)}function U5(t){this._context=t}function yq(t){this._context=new vq(t)}function vq(t){this._context=t}function zv(t){return new U5(t)}function Gv(t){return new yq(t)}var xq=N(()=>{"use strict";o(pq,"sign");o(mq,"slope3");o(gq,"slope2");o(m9,"point");o(U5,"MonotoneX");U5.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},"lineStart"),lineEnd:o(function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:m9(this,this._t0,gq(this,this._t0));break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},"lineEnd"),point:o(function(t,e){var r=NaN;if(t=+t,e=+e,!(t===this._x1&&e===this._y1)){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,m9(this,gq(this,r=mq(this,t,e)),r);break;default:m9(this,this._t0,r=mq(this,t,e));break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=r}},"point")};o(yq,"MonotoneY");(yq.prototype=Object.create(U5.prototype)).point=function(t,e){U5.prototype.point.call(this,e,t)};o(vq,"ReflectContext");vq.prototype={moveTo:o(function(t,e){this._context.moveTo(e,t)},"moveTo"),closePath:o(function(){this._context.closePath()},"closePath"),lineTo:o(function(t,e){this._context.lineTo(e,t)},"lineTo"),bezierCurveTo:o(function(t,e,r,n,i,a){this._context.bezierCurveTo(e,t,n,r,a,i)},"bezierCurveTo")};o(zv,"monotoneX");o(Gv,"monotoneY")});function wq(t){this._context=t}function bq(t){var e,r=t.length-1,n,i=new Array(r),a=new Array(r),s=new Array(r);for(i[0]=0,a[0]=2,s[0]=t[0]+2*t[1],e=1;e=0;--e)i[e]=(s[e]-i[e+1])/a[e];for(a[r-1]=(t[r]+i[r-1])/2,e=0;e{"use strict";o(wq,"Natural");wq.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x=[],this._y=[]},"lineStart"),lineEnd:o(function(){var t=this._x,e=this._y,r=t.length;if(r)if(this._line?this._context.lineTo(t[0],e[0]):this._context.moveTo(t[0],e[0]),r===2)this._context.lineTo(t[1],e[1]);else for(var n=bq(t),i=bq(e),a=0,s=1;s{"use strict";o(H5,"Step");H5.prototype={areaStart:o(function(){this._line=0},"areaStart"),areaEnd:o(function(){this._line=NaN},"areaEnd"),lineStart:o(function(){this._x=this._y=NaN,this._point=0},"lineStart"),lineEnd:o(function(){0=0&&(this._t=1-this._t,this._line=1-this._line)},"lineEnd"),point:o(function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:{if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}break}}this._x=t,this._y=e},"point")};o($0,"default");o(Vv,"stepBefore");o(Uv,"stepAfter")});var Eq=N(()=>{"use strict";WW();KW();JW();rq();iq();Ov();eq();sq();u9();f9();Bv();cq();hq();G5();dq();a9();xq();Tq();kq()});var Sq=N(()=>{"use strict"});var Cq=N(()=>{"use strict"});function Dh(t,e,r){this.k=t,this.x=e,this.y=r}function y9(t){for(;!t.__zoom;)if(!(t=t.parentNode))return g9;return t.__zoom}var g9,v9=N(()=>{"use strict";o(Dh,"Transform");Dh.prototype={constructor:Dh,scale:o(function(t){return t===1?this:new Dh(this.k*t,this.x,this.y)},"scale"),translate:o(function(t,e){return t===0&e===0?this:new Dh(this.k,this.x+this.k*t,this.y+this.k*e)},"translate"),apply:o(function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},"apply"),applyX:o(function(t){return t*this.k+this.x},"applyX"),applyY:o(function(t){return t*this.k+this.y},"applyY"),invert:o(function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},"invert"),invertX:o(function(t){return(t-this.x)/this.k},"invertX"),invertY:o(function(t){return(t-this.y)/this.k},"invertY"),rescaleX:o(function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},"rescaleX"),rescaleY:o(function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},"rescaleY"),toString:o(function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"},"toString")};g9=new Dh(1,0,0);y9.prototype=Dh.prototype;o(y9,"transform")});var Aq=N(()=>{"use strict"});var _q=N(()=>{"use strict";l5();Sq();Cq();v9();Aq()});var Dq=N(()=>{"use strict";_q();v9()});var dr=N(()=>{"use strict";vh();sV();SH();DH();E0();LH();RH();TA();QV();NH();u_();MH();OH();A_();jH();KH();A0();m_();QH();IH();ZH();$W();VW();fl();Eq();A5();Z_();r5();l5();Dq()});var Lq=Mi(Ji=>{"use strict";Object.defineProperty(Ji,"__esModule",{value:!0});Ji.BLANK_URL=Ji.relativeFirstCharacters=Ji.whitespaceEscapeCharsRegex=Ji.urlSchemeRegex=Ji.ctrlCharactersRegex=Ji.htmlCtrlEntityRegex=Ji.htmlEntitiesRegex=Ji.invalidProtocolRegex=void 0;Ji.invalidProtocolRegex=/^([^\w]*)(javascript|data|vbscript)/im;Ji.htmlEntitiesRegex=/&#(\w+)(^\w|;)?/g;Ji.htmlCtrlEntityRegex=/&(newline|tab);/gi;Ji.ctrlCharactersRegex=/[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim;Ji.urlSchemeRegex=/^.+(:|:)/gim;Ji.whitespaceEscapeCharsRegex=/(\\|%5[cC])((%(6[eE]|72|74))|[nrt])/g;Ji.relativeFirstCharacters=[".","/"];Ji.BLANK_URL="about:blank"});var z0=Mi(W5=>{"use strict";Object.defineProperty(W5,"__esModule",{value:!0});W5.sanitizeUrl=void 0;var Aa=Lq();function Hke(t){return Aa.relativeFirstCharacters.indexOf(t[0])>-1}o(Hke,"isRelativeUrlWithoutProtocol");function Wke(t){var e=t.replace(Aa.ctrlCharactersRegex,"");return e.replace(Aa.htmlEntitiesRegex,function(r,n){return String.fromCharCode(n)})}o(Wke,"decodeHtmlCharacters");function qke(t){return URL.canParse(t)}o(qke,"isValidUrl");function Rq(t){try{return decodeURIComponent(t)}catch{return t}}o(Rq,"decodeURI");function Yke(t){if(!t)return Aa.BLANK_URL;var e,r=Rq(t.trim());do r=Wke(r).replace(Aa.htmlCtrlEntityRegex,"").replace(Aa.ctrlCharactersRegex,"").replace(Aa.whitespaceEscapeCharsRegex,"").trim(),r=Rq(r),e=r.match(Aa.ctrlCharactersRegex)||r.match(Aa.htmlEntitiesRegex)||r.match(Aa.htmlCtrlEntityRegex)||r.match(Aa.whitespaceEscapeCharsRegex);while(e&&e.length>0);var n=r;if(!n)return Aa.BLANK_URL;if(Hke(n))return n;var i=n.trimStart(),a=i.match(Aa.urlSchemeRegex);if(!a)return n;var s=a[0].toLowerCase().trim();if(Aa.invalidProtocolRegex.test(s))return Aa.BLANK_URL;var l=i.replace(/\\/g,"/");if(s==="mailto:"||s.includes("://"))return l;if(s==="http:"||s==="https:"){if(!qke(l))return Aa.BLANK_URL;var u=new URL(l);return u.protocol=u.protocol.toLowerCase(),u.hostname=u.hostname.toLowerCase(),u.toString()}return l}o(Yke,"sanitizeUrl");W5.sanitizeUrl=Yke});var x9,kd,q5,Nq,Mq,Iq,Tl,Hv,Wv=N(()=>{"use strict";x9=Sa(z0(),1);gr();kd=o((t,e)=>{let r=t.append("rect");if(r.attr("x",e.x),r.attr("y",e.y),r.attr("fill",e.fill),r.attr("stroke",e.stroke),r.attr("width",e.width),r.attr("height",e.height),e.name&&r.attr("name",e.name),e.rx&&r.attr("rx",e.rx),e.ry&&r.attr("ry",e.ry),e.attrs!==void 0)for(let n in e.attrs)r.attr(n,e.attrs[n]);return e.class&&r.attr("class",e.class),r},"drawRect"),q5=o((t,e)=>{let r={x:e.startx,y:e.starty,width:e.stopx-e.startx,height:e.stopy-e.starty,fill:e.fill,stroke:e.stroke,class:"rect"};kd(t,r).lower()},"drawBackgroundRect"),Nq=o((t,e)=>{let r=e.text.replace(nd," "),n=t.append("text");n.attr("x",e.x),n.attr("y",e.y),n.attr("class","legend"),n.style("text-anchor",e.anchor),e.class&&n.attr("class",e.class);let i=n.append("tspan");return i.attr("x",e.x+e.textMargin*2),i.text(r),n},"drawText"),Mq=o((t,e,r,n)=>{let i=t.append("image");i.attr("x",e),i.attr("y",r);let a=(0,x9.sanitizeUrl)(n);i.attr("xlink:href",a)},"drawImage"),Iq=o((t,e,r,n)=>{let i=t.append("use");i.attr("x",e),i.attr("y",r);let a=(0,x9.sanitizeUrl)(n);i.attr("xlink:href",`#${a}`)},"drawEmbeddedImage"),Tl=o(()=>({x:0,y:0,width:100,height:100,fill:"#EDF2AE",stroke:"#666",anchor:"start",rx:0,ry:0}),"getNoteRect"),Hv=o(()=>({x:0,y:0,width:100,height:100,"text-anchor":"start",style:"#666",textMargin:0,rx:0,ry:0,tspan:!0}),"getTextObj")});var Oq,b9,Pq,Xke,jke,Kke,Qke,Zke,Jke,eEe,tEe,rEe,nEe,iEe,aEe,Tu,kl,Bq=N(()=>{"use strict";gr();Wv();Oq=Sa(z0(),1),b9=o(function(t,e){return kd(t,e)},"drawRect"),Pq=o(function(t,e,r,n,i,a){let s=t.append("image");s.attr("width",e),s.attr("height",r),s.attr("x",n),s.attr("y",i);let l=a.startsWith("data:image/png;base64")?a:(0,Oq.sanitizeUrl)(a);s.attr("xlink:href",l)},"drawImage"),Xke=o((t,e,r)=>{let n=t.append("g"),i=0;for(let a of e){let s=a.textColor?a.textColor:"#444444",l=a.lineColor?a.lineColor:"#444444",u=a.offsetX?parseInt(a.offsetX):0,h=a.offsetY?parseInt(a.offsetY):0,f="";if(i===0){let p=n.append("line");p.attr("x1",a.startPoint.x),p.attr("y1",a.startPoint.y),p.attr("x2",a.endPoint.x),p.attr("y2",a.endPoint.y),p.attr("stroke-width","1"),p.attr("stroke",l),p.style("fill","none"),a.type!=="rel_b"&&p.attr("marker-end","url("+f+"#arrowhead)"),(a.type==="birel"||a.type==="rel_b")&&p.attr("marker-start","url("+f+"#arrowend)"),i=-1}else{let p=n.append("path");p.attr("fill","none").attr("stroke-width","1").attr("stroke",l).attr("d","Mstartx,starty Qcontrolx,controly stopx,stopy ".replaceAll("startx",a.startPoint.x).replaceAll("starty",a.startPoint.y).replaceAll("controlx",a.startPoint.x+(a.endPoint.x-a.startPoint.x)/2-(a.endPoint.x-a.startPoint.x)/4).replaceAll("controly",a.startPoint.y+(a.endPoint.y-a.startPoint.y)/2).replaceAll("stopx",a.endPoint.x).replaceAll("stopy",a.endPoint.y)),a.type!=="rel_b"&&p.attr("marker-end","url("+f+"#arrowhead)"),(a.type==="birel"||a.type==="rel_b")&&p.attr("marker-start","url("+f+"#arrowend)")}let d=r.messageFont();Tu(r)(a.label.text,n,Math.min(a.startPoint.x,a.endPoint.x)+Math.abs(a.endPoint.x-a.startPoint.x)/2+u,Math.min(a.startPoint.y,a.endPoint.y)+Math.abs(a.endPoint.y-a.startPoint.y)/2+h,a.label.width,a.label.height,{fill:s},d),a.techn&&a.techn.text!==""&&(d=r.messageFont(),Tu(r)("["+a.techn.text+"]",n,Math.min(a.startPoint.x,a.endPoint.x)+Math.abs(a.endPoint.x-a.startPoint.x)/2+u,Math.min(a.startPoint.y,a.endPoint.y)+Math.abs(a.endPoint.y-a.startPoint.y)/2+r.messageFontSize+5+h,Math.max(a.label.width,a.techn.width),a.techn.height,{fill:s,"font-style":"italic"},d))}},"drawRels"),jke=o(function(t,e,r){let n=t.append("g"),i=e.bgColor?e.bgColor:"none",a=e.borderColor?e.borderColor:"#444444",s=e.fontColor?e.fontColor:"black",l={"stroke-width":1,"stroke-dasharray":"7.0,7.0"};e.nodeType&&(l={"stroke-width":1});let u={x:e.x,y:e.y,fill:i,stroke:a,width:e.width,height:e.height,rx:2.5,ry:2.5,attrs:l};b9(n,u);let h=r.boundaryFont();h.fontWeight="bold",h.fontSize=h.fontSize+2,h.fontColor=s,Tu(r)(e.label.text,n,e.x,e.y+e.label.Y,e.width,e.height,{fill:"#444444"},h),e.type&&e.type.text!==""&&(h=r.boundaryFont(),h.fontColor=s,Tu(r)(e.type.text,n,e.x,e.y+e.type.Y,e.width,e.height,{fill:"#444444"},h)),e.descr&&e.descr.text!==""&&(h=r.boundaryFont(),h.fontSize=h.fontSize-2,h.fontColor=s,Tu(r)(e.descr.text,n,e.x,e.y+e.descr.Y,e.width,e.height,{fill:"#444444"},h))},"drawBoundary"),Kke=o(function(t,e,r){let n=e.bgColor?e.bgColor:r[e.typeC4Shape.text+"_bg_color"],i=e.borderColor?e.borderColor:r[e.typeC4Shape.text+"_border_color"],a=e.fontColor?e.fontColor:"#FFFFFF",s="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAACD0lEQVR4Xu2YoU4EMRCGT+4j8Ai8AhaH4QHgAUjQuFMECUgMIUgwJAgMhgQsAYUiJCiQIBBY+EITsjfTdme6V24v4c8vyGbb+ZjOtN0bNcvjQXmkH83WvYBWto6PLm6v7p7uH1/w2fXD+PBycX1Pv2l3IdDm/vn7x+dXQiAubRzoURa7gRZWd0iGRIiJbOnhnfYBQZNJjNbuyY2eJG8fkDE3bbG4ep6MHUAsgYxmE3nVs6VsBWJSGccsOlFPmLIViMzLOB7pCVO2AtHJMohH7Fh6zqitQK7m0rJvAVYgGcEpe//PLdDz65sM4pF9N7ICcXDKIB5Nv6j7tD0NoSdM2QrU9Gg0ewE1LqBhHR3BBdvj2vapnidjHxD/q6vd7Pvhr31AwcY8eXMTXAKECZZJFXuEq27aLgQK5uLMohCenGGuGewOxSjBvYBqeG6B+Nqiblggdjnc+ZXDy+FNFpFzw76O3UBAROuXh6FoiAcf5g9eTvUgzy0nWg6I8cXHRUpg5bOVBCo+KDpFajOf23GgPme7RSQ+lacIENUgJ6gg1k6HjgOlqnLqip4tEuhv0hNEMXUD0clyXE3p6pZA0S2nnvTlXwLJEZWlb7cTQH1+USgTN4VhAenm/wea1OCAOmqo6fE1WCb9WSKBah+rbUWPWAmE2Rvk0ApiB45eOyNAzU8xcTvj8KvkKEoOaIYeHNA3ZuygAvFMUO0AAAAASUVORK5CYII=";switch(e.typeC4Shape.text){case"person":s="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAACD0lEQVR4Xu2YoU4EMRCGT+4j8Ai8AhaH4QHgAUjQuFMECUgMIUgwJAgMhgQsAYUiJCiQIBBY+EITsjfTdme6V24v4c8vyGbb+ZjOtN0bNcvjQXmkH83WvYBWto6PLm6v7p7uH1/w2fXD+PBycX1Pv2l3IdDm/vn7x+dXQiAubRzoURa7gRZWd0iGRIiJbOnhnfYBQZNJjNbuyY2eJG8fkDE3bbG4ep6MHUAsgYxmE3nVs6VsBWJSGccsOlFPmLIViMzLOB7pCVO2AtHJMohH7Fh6zqitQK7m0rJvAVYgGcEpe//PLdDz65sM4pF9N7ICcXDKIB5Nv6j7tD0NoSdM2QrU9Gg0ewE1LqBhHR3BBdvj2vapnidjHxD/q6vd7Pvhr31AwcY8eXMTXAKECZZJFXuEq27aLgQK5uLMohCenGGuGewOxSjBvYBqeG6B+Nqiblggdjnc+ZXDy+FNFpFzw76O3UBAROuXh6FoiAcf5g9eTvUgzy0nWg6I8cXHRUpg5bOVBCo+KDpFajOf23GgPme7RSQ+lacIENUgJ6gg1k6HjgOlqnLqip4tEuhv0hNEMXUD0clyXE3p6pZA0S2nnvTlXwLJEZWlb7cTQH1+USgTN4VhAenm/wea1OCAOmqo6fE1WCb9WSKBah+rbUWPWAmE2Rvk0ApiB45eOyNAzU8xcTvj8KvkKEoOaIYeHNA3ZuygAvFMUO0AAAAASUVORK5CYII=";break;case"external_person":s="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAAB6ElEQVR4Xu2YLY+EMBCG9+dWr0aj0Wg0Go1Go0+j8Xdv2uTCvv1gpt0ebHKPuhDaeW4605Z9mJvx4AdXUyTUdd08z+u6flmWZRnHsWkafk9DptAwDPu+f0eAYtu2PEaGWuj5fCIZrBAC2eLBAnRCsEkkxmeaJp7iDJ2QMDdHsLg8SxKFEJaAo8lAXnmuOFIhTMpxxKATebo4UiFknuNo4OniSIXQyRxEA3YsnjGCVEjVXD7yLUAqxBGUyPv/Y4W2beMgGuS7kVQIBycH0fD+oi5pezQETxdHKmQKGk1eQEYldK+jw5GxPfZ9z7Mk0Qnhf1W1m3w//EUn5BDmSZsbR44QQLBEqrBHqOrmSKaQAxdnLArCrxZcM7A7ZKs4ioRq8LFC+NpC3WCBJsvpVw5edm9iEXFuyNfxXAgSwfrFQ1c0iNda8AdejvUgnktOtJQQxmcfFzGglc5WVCj7oDgFqU18boeFSs52CUh8LE8BIVQDT1ABrB0HtgSEYlX5doJnCwv9TXocKCaKbnwhdDKPq4lf3SwU3HLq4V/+WYhHVMa/3b4IlfyikAduCkcBc7mQ3/z/Qq/cTuikhkzB12Ae/mcJC9U+Vo8Ej1gWAtgbeGgFsAMHr50BIWOLCbezvhpBFUdY6EJuJ/QDW0XoMX60zZ0AAAAASUVORK5CYII=";break}let l=t.append("g");l.attr("class","person-man");let u=Tl();switch(e.typeC4Shape.text){case"person":case"external_person":case"system":case"external_system":case"container":case"external_container":case"component":case"external_component":u.x=e.x,u.y=e.y,u.fill=n,u.width=e.width,u.height=e.height,u.stroke=i,u.rx=2.5,u.ry=2.5,u.attrs={"stroke-width":.5},b9(l,u);break;case"system_db":case"external_system_db":case"container_db":case"external_container_db":case"component_db":case"external_component_db":l.append("path").attr("fill",n).attr("stroke-width","0.5").attr("stroke",i).attr("d","Mstartx,startyc0,-10 half,-10 half,-10c0,0 half,0 half,10l0,heightc0,10 -half,10 -half,10c0,0 -half,0 -half,-10l0,-height".replaceAll("startx",e.x).replaceAll("starty",e.y).replaceAll("half",e.width/2).replaceAll("height",e.height)),l.append("path").attr("fill","none").attr("stroke-width","0.5").attr("stroke",i).attr("d","Mstartx,startyc0,10 half,10 half,10c0,0 half,0 half,-10".replaceAll("startx",e.x).replaceAll("starty",e.y).replaceAll("half",e.width/2));break;case"system_queue":case"external_system_queue":case"container_queue":case"external_container_queue":case"component_queue":case"external_component_queue":l.append("path").attr("fill",n).attr("stroke-width","0.5").attr("stroke",i).attr("d","Mstartx,startylwidth,0c5,0 5,half 5,halfc0,0 0,half -5,halfl-width,0c-5,0 -5,-half -5,-halfc0,0 0,-half 5,-half".replaceAll("startx",e.x).replaceAll("starty",e.y).replaceAll("width",e.width).replaceAll("half",e.height/2)),l.append("path").attr("fill","none").attr("stroke-width","0.5").attr("stroke",i).attr("d","Mstartx,startyc-5,0 -5,half -5,halfc0,half 5,half 5,half".replaceAll("startx",e.x+e.width).replaceAll("starty",e.y).replaceAll("half",e.height/2));break}let h=aEe(r,e.typeC4Shape.text);switch(l.append("text").attr("fill",a).attr("font-family",h.fontFamily).attr("font-size",h.fontSize-2).attr("font-style","italic").attr("lengthAdjust","spacing").attr("textLength",e.typeC4Shape.width).attr("x",e.x+e.width/2-e.typeC4Shape.width/2).attr("y",e.y+e.typeC4Shape.Y).text("<<"+e.typeC4Shape.text+">>"),e.typeC4Shape.text){case"person":case"external_person":Pq(l,48,48,e.x+e.width/2-24,e.y+e.image.Y,s);break}let f=r[e.typeC4Shape.text+"Font"]();return f.fontWeight="bold",f.fontSize=f.fontSize+2,f.fontColor=a,Tu(r)(e.label.text,l,e.x,e.y+e.label.Y,e.width,e.height,{fill:a},f),f=r[e.typeC4Shape.text+"Font"](),f.fontColor=a,e.techn&&e.techn?.text!==""?Tu(r)(e.techn.text,l,e.x,e.y+e.techn.Y,e.width,e.height,{fill:a,"font-style":"italic"},f):e.type&&e.type.text!==""&&Tu(r)(e.type.text,l,e.x,e.y+e.type.Y,e.width,e.height,{fill:a,"font-style":"italic"},f),e.descr&&e.descr.text!==""&&(f=r.personFont(),f.fontColor=a,Tu(r)(e.descr.text,l,e.x,e.y+e.descr.Y,e.width,e.height,{fill:a},f)),e.height},"drawC4Shape"),Qke=o(function(t){t.append("defs").append("symbol").attr("id","database").attr("fill-rule","evenodd").attr("clip-rule","evenodd").append("path").attr("transform","scale(.5)").attr("d","M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z")},"insertDatabaseIcon"),Zke=o(function(t){t.append("defs").append("symbol").attr("id","computer").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z")},"insertComputerIcon"),Jke=o(function(t){t.append("defs").append("symbol").attr("id","clock").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z")},"insertClockIcon"),eEe=o(function(t){t.append("defs").append("marker").attr("id","arrowhead").attr("refX",9).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 0 0 L 10 5 L 0 10 z")},"insertArrowHead"),tEe=o(function(t){t.append("defs").append("marker").attr("id","arrowend").attr("refX",1).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 10 0 L 0 5 L 10 10 z")},"insertArrowEnd"),rEe=o(function(t){t.append("defs").append("marker").attr("id","filled-head").attr("refX",18).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L14,7 L9,1 Z")},"insertArrowFilledHead"),nEe=o(function(t){t.append("defs").append("marker").attr("id","sequencenumber").attr("refX",15).attr("refY",15).attr("markerWidth",60).attr("markerHeight",40).attr("orient","auto").append("circle").attr("cx",15).attr("cy",15).attr("r",6)},"insertDynamicNumber"),iEe=o(function(t){let r=t.append("defs").append("marker").attr("id","crosshead").attr("markerWidth",15).attr("markerHeight",8).attr("orient","auto").attr("refX",16).attr("refY",4);r.append("path").attr("fill","black").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1px").attr("d","M 9,2 V 6 L16,4 Z"),r.append("path").attr("fill","none").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1px").attr("d","M 0,1 L 6,7 M 6,1 L 0,7")},"insertArrowCrossHead"),aEe=o((t,e)=>({fontFamily:t[e+"FontFamily"],fontSize:t[e+"FontSize"],fontWeight:t[e+"FontWeight"]}),"getC4ShapeFont"),Tu=function(){function t(i,a,s,l,u,h,f){let d=a.append("text").attr("x",s+u/2).attr("y",l+h/2+5).style("text-anchor","middle").text(i);n(d,f)}o(t,"byText");function e(i,a,s,l,u,h,f,d){let{fontSize:p,fontFamily:m,fontWeight:g}=d,y=i.split(Ze.lineBreakRegex);for(let v=0;v{"use strict";sEe=typeof global=="object"&&global&&global.Object===Object&&global,X5=sEe});var oEe,lEe,li,Lo=N(()=>{"use strict";w9();oEe=typeof self=="object"&&self&&self.Object===Object&&self,lEe=X5||oEe||Function("return this")(),li=lEe});var cEe,ea,Ed=N(()=>{"use strict";Lo();cEe=li.Symbol,ea=cEe});function fEe(t){var e=uEe.call(t,qv),r=t[qv];try{t[qv]=void 0;var n=!0}catch{}var i=hEe.call(t);return n&&(e?t[qv]=r:delete t[qv]),i}var Fq,uEe,hEe,qv,$q,zq=N(()=>{"use strict";Ed();Fq=Object.prototype,uEe=Fq.hasOwnProperty,hEe=Fq.toString,qv=ea?ea.toStringTag:void 0;o(fEe,"getRawTag");$q=fEe});function mEe(t){return pEe.call(t)}var dEe,pEe,Gq,Vq=N(()=>{"use strict";dEe=Object.prototype,pEe=dEe.toString;o(mEe,"objectToString");Gq=mEe});function vEe(t){return t==null?t===void 0?yEe:gEe:Uq&&Uq in Object(t)?$q(t):Gq(t)}var gEe,yEe,Uq,da,ku=N(()=>{"use strict";Ed();zq();Vq();gEe="[object Null]",yEe="[object Undefined]",Uq=ea?ea.toStringTag:void 0;o(vEe,"baseGetTag");da=vEe});function xEe(t){var e=typeof t;return t!=null&&(e=="object"||e=="function")}var bn,Js=N(()=>{"use strict";o(xEe,"isObject");bn=xEe});function EEe(t){if(!bn(t))return!1;var e=da(t);return e==wEe||e==TEe||e==bEe||e==kEe}var bEe,wEe,TEe,kEe,Si,Yv=N(()=>{"use strict";ku();Js();bEe="[object AsyncFunction]",wEe="[object Function]",TEe="[object GeneratorFunction]",kEe="[object Proxy]";o(EEe,"isFunction");Si=EEe});var SEe,j5,Hq=N(()=>{"use strict";Lo();SEe=li["__core-js_shared__"],j5=SEe});function CEe(t){return!!Wq&&Wq in t}var Wq,qq,Yq=N(()=>{"use strict";Hq();Wq=function(){var t=/[^.]+$/.exec(j5&&j5.keys&&j5.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}();o(CEe,"isMasked");qq=CEe});function DEe(t){if(t!=null){try{return _Ee.call(t)}catch{}try{return t+""}catch{}}return""}var AEe,_Ee,Eu,T9=N(()=>{"use strict";AEe=Function.prototype,_Ee=AEe.toString;o(DEe,"toSource");Eu=DEe});function BEe(t){if(!bn(t)||qq(t))return!1;var e=Si(t)?PEe:REe;return e.test(Eu(t))}var LEe,REe,NEe,MEe,IEe,OEe,PEe,Xq,jq=N(()=>{"use strict";Yv();Yq();Js();T9();LEe=/[\\^$.*+?()[\]{}|]/g,REe=/^\[object .+?Constructor\]$/,NEe=Function.prototype,MEe=Object.prototype,IEe=NEe.toString,OEe=MEe.hasOwnProperty,PEe=RegExp("^"+IEe.call(OEe).replace(LEe,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");o(BEe,"baseIsNative");Xq=BEe});function FEe(t,e){return t?.[e]}var Kq,Qq=N(()=>{"use strict";o(FEe,"getValue");Kq=FEe});function $Ee(t,e){var r=Kq(t,e);return Xq(r)?r:void 0}var Ss,Lh=N(()=>{"use strict";jq();Qq();o($Ee,"getNative");Ss=$Ee});var zEe,Su,Xv=N(()=>{"use strict";Lh();zEe=Ss(Object,"create"),Su=zEe});function GEe(){this.__data__=Su?Su(null):{},this.size=0}var Zq,Jq=N(()=>{"use strict";Xv();o(GEe,"hashClear");Zq=GEe});function VEe(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}var eY,tY=N(()=>{"use strict";o(VEe,"hashDelete");eY=VEe});function qEe(t){var e=this.__data__;if(Su){var r=e[t];return r===UEe?void 0:r}return WEe.call(e,t)?e[t]:void 0}var UEe,HEe,WEe,rY,nY=N(()=>{"use strict";Xv();UEe="__lodash_hash_undefined__",HEe=Object.prototype,WEe=HEe.hasOwnProperty;o(qEe,"hashGet");rY=qEe});function jEe(t){var e=this.__data__;return Su?e[t]!==void 0:XEe.call(e,t)}var YEe,XEe,iY,aY=N(()=>{"use strict";Xv();YEe=Object.prototype,XEe=YEe.hasOwnProperty;o(jEe,"hashHas");iY=jEe});function QEe(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=Su&&e===void 0?KEe:e,this}var KEe,sY,oY=N(()=>{"use strict";Xv();KEe="__lodash_hash_undefined__";o(QEe,"hashSet");sY=QEe});function G0(t){var e=-1,r=t==null?0:t.length;for(this.clear();++e{"use strict";Jq();tY();nY();aY();oY();o(G0,"Hash");G0.prototype.clear=Zq;G0.prototype.delete=eY;G0.prototype.get=rY;G0.prototype.has=iY;G0.prototype.set=sY;k9=G0});function ZEe(){this.__data__=[],this.size=0}var cY,uY=N(()=>{"use strict";o(ZEe,"listCacheClear");cY=ZEe});function JEe(t,e){return t===e||t!==t&&e!==e}var Ro,Sd=N(()=>{"use strict";o(JEe,"eq");Ro=JEe});function e6e(t,e){for(var r=t.length;r--;)if(Ro(t[r][0],e))return r;return-1}var Rh,jv=N(()=>{"use strict";Sd();o(e6e,"assocIndexOf");Rh=e6e});function n6e(t){var e=this.__data__,r=Rh(e,t);if(r<0)return!1;var n=e.length-1;return r==n?e.pop():r6e.call(e,r,1),--this.size,!0}var t6e,r6e,hY,fY=N(()=>{"use strict";jv();t6e=Array.prototype,r6e=t6e.splice;o(n6e,"listCacheDelete");hY=n6e});function i6e(t){var e=this.__data__,r=Rh(e,t);return r<0?void 0:e[r][1]}var dY,pY=N(()=>{"use strict";jv();o(i6e,"listCacheGet");dY=i6e});function a6e(t){return Rh(this.__data__,t)>-1}var mY,gY=N(()=>{"use strict";jv();o(a6e,"listCacheHas");mY=a6e});function s6e(t,e){var r=this.__data__,n=Rh(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this}var yY,vY=N(()=>{"use strict";jv();o(s6e,"listCacheSet");yY=s6e});function V0(t){var e=-1,r=t==null?0:t.length;for(this.clear();++e{"use strict";uY();fY();pY();gY();vY();o(V0,"ListCache");V0.prototype.clear=cY;V0.prototype.delete=hY;V0.prototype.get=dY;V0.prototype.has=mY;V0.prototype.set=yY;Nh=V0});var o6e,Mh,K5=N(()=>{"use strict";Lh();Lo();o6e=Ss(li,"Map"),Mh=o6e});function l6e(){this.size=0,this.__data__={hash:new k9,map:new(Mh||Nh),string:new k9}}var xY,bY=N(()=>{"use strict";lY();Kv();K5();o(l6e,"mapCacheClear");xY=l6e});function c6e(t){var e=typeof t;return e=="string"||e=="number"||e=="symbol"||e=="boolean"?t!=="__proto__":t===null}var wY,TY=N(()=>{"use strict";o(c6e,"isKeyable");wY=c6e});function u6e(t,e){var r=t.__data__;return wY(e)?r[typeof e=="string"?"string":"hash"]:r.map}var Ih,Qv=N(()=>{"use strict";TY();o(u6e,"getMapData");Ih=u6e});function h6e(t){var e=Ih(this,t).delete(t);return this.size-=e?1:0,e}var kY,EY=N(()=>{"use strict";Qv();o(h6e,"mapCacheDelete");kY=h6e});function f6e(t){return Ih(this,t).get(t)}var SY,CY=N(()=>{"use strict";Qv();o(f6e,"mapCacheGet");SY=f6e});function d6e(t){return Ih(this,t).has(t)}var AY,_Y=N(()=>{"use strict";Qv();o(d6e,"mapCacheHas");AY=d6e});function p6e(t,e){var r=Ih(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this}var DY,LY=N(()=>{"use strict";Qv();o(p6e,"mapCacheSet");DY=p6e});function U0(t){var e=-1,r=t==null?0:t.length;for(this.clear();++e{"use strict";bY();EY();CY();_Y();LY();o(U0,"MapCache");U0.prototype.clear=xY;U0.prototype.delete=kY;U0.prototype.get=SY;U0.prototype.has=AY;U0.prototype.set=DY;Cd=U0});function E9(t,e){if(typeof t!="function"||e!=null&&typeof e!="function")throw new TypeError(m6e);var r=o(function(){var n=arguments,i=e?e.apply(this,n):n[0],a=r.cache;if(a.has(i))return a.get(i);var s=t.apply(this,n);return r.cache=a.set(i,s)||a,s},"memoized");return r.cache=new(E9.Cache||Cd),r}var m6e,H0,S9=N(()=>{"use strict";Q5();m6e="Expected a function";o(E9,"memoize");E9.Cache=Cd;H0=E9});function g6e(){this.__data__=new Nh,this.size=0}var RY,NY=N(()=>{"use strict";Kv();o(g6e,"stackClear");RY=g6e});function y6e(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r}var MY,IY=N(()=>{"use strict";o(y6e,"stackDelete");MY=y6e});function v6e(t){return this.__data__.get(t)}var OY,PY=N(()=>{"use strict";o(v6e,"stackGet");OY=v6e});function x6e(t){return this.__data__.has(t)}var BY,FY=N(()=>{"use strict";o(x6e,"stackHas");BY=x6e});function w6e(t,e){var r=this.__data__;if(r instanceof Nh){var n=r.__data__;if(!Mh||n.length{"use strict";Kv();K5();Q5();b6e=200;o(w6e,"stackSet");$Y=w6e});function W0(t){var e=this.__data__=new Nh(t);this.size=e.size}var lc,Zv=N(()=>{"use strict";Kv();NY();IY();PY();FY();zY();o(W0,"Stack");W0.prototype.clear=RY;W0.prototype.delete=MY;W0.prototype.get=OY;W0.prototype.has=BY;W0.prototype.set=$Y;lc=W0});var T6e,q0,C9=N(()=>{"use strict";Lh();T6e=function(){try{var t=Ss(Object,"defineProperty");return t({},"",{}),t}catch{}}(),q0=T6e});function k6e(t,e,r){e=="__proto__"&&q0?q0(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r}var cc,Y0=N(()=>{"use strict";C9();o(k6e,"baseAssignValue");cc=k6e});function E6e(t,e,r){(r!==void 0&&!Ro(t[e],r)||r===void 0&&!(e in t))&&cc(t,e,r)}var Jv,A9=N(()=>{"use strict";Y0();Sd();o(E6e,"assignMergeValue");Jv=E6e});function S6e(t){return function(e,r,n){for(var i=-1,a=Object(e),s=n(e),l=s.length;l--;){var u=s[t?l:++i];if(r(a[u],u,a)===!1)break}return e}}var GY,VY=N(()=>{"use strict";o(S6e,"createBaseFor");GY=S6e});var C6e,X0,Z5=N(()=>{"use strict";VY();C6e=GY(),X0=C6e});function _6e(t,e){if(e)return t.slice();var r=t.length,n=WY?WY(r):new t.constructor(r);return t.copy(n),n}var qY,UY,A6e,HY,WY,J5,_9=N(()=>{"use strict";Lo();qY=typeof exports=="object"&&exports&&!exports.nodeType&&exports,UY=qY&&typeof module=="object"&&module&&!module.nodeType&&module,A6e=UY&&UY.exports===qY,HY=A6e?li.Buffer:void 0,WY=HY?HY.allocUnsafe:void 0;o(_6e,"cloneBuffer");J5=_6e});var D6e,j0,D9=N(()=>{"use strict";Lo();D6e=li.Uint8Array,j0=D6e});function L6e(t){var e=new t.constructor(t.byteLength);return new j0(e).set(new j0(t)),e}var K0,ew=N(()=>{"use strict";D9();o(L6e,"cloneArrayBuffer");K0=L6e});function R6e(t,e){var r=e?K0(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}var tw,L9=N(()=>{"use strict";ew();o(R6e,"cloneTypedArray");tw=R6e});function N6e(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r{"use strict";o(N6e,"copyArray");rw=N6e});var YY,M6e,XY,jY=N(()=>{"use strict";Js();YY=Object.create,M6e=function(){function t(){}return o(t,"object"),function(e){if(!bn(e))return{};if(YY)return YY(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}(),XY=M6e});function I6e(t,e){return function(r){return t(e(r))}}var nw,N9=N(()=>{"use strict";o(I6e,"overArg");nw=I6e});var O6e,Q0,iw=N(()=>{"use strict";N9();O6e=nw(Object.getPrototypeOf,Object),Q0=O6e});function B6e(t){var e=t&&t.constructor,r=typeof e=="function"&&e.prototype||P6e;return t===r}var P6e,uc,Z0=N(()=>{"use strict";P6e=Object.prototype;o(B6e,"isPrototype");uc=B6e});function F6e(t){return typeof t.constructor=="function"&&!uc(t)?XY(Q0(t)):{}}var aw,M9=N(()=>{"use strict";jY();iw();Z0();o(F6e,"initCloneObject");aw=F6e});function $6e(t){return t!=null&&typeof t=="object"}var ri,No=N(()=>{"use strict";o($6e,"isObjectLike");ri=$6e});function G6e(t){return ri(t)&&da(t)==z6e}var z6e,I9,KY=N(()=>{"use strict";ku();No();z6e="[object Arguments]";o(G6e,"baseIsArguments");I9=G6e});var QY,V6e,U6e,H6e,El,J0=N(()=>{"use strict";KY();No();QY=Object.prototype,V6e=QY.hasOwnProperty,U6e=QY.propertyIsEnumerable,H6e=I9(function(){return arguments}())?I9:function(t){return ri(t)&&V6e.call(t,"callee")&&!U6e.call(t,"callee")},El=H6e});var W6e,Pt,Un=N(()=>{"use strict";W6e=Array.isArray,Pt=W6e});function Y6e(t){return typeof t=="number"&&t>-1&&t%1==0&&t<=q6e}var q6e,em,sw=N(()=>{"use strict";q6e=9007199254740991;o(Y6e,"isLength");em=Y6e});function X6e(t){return t!=null&&em(t.length)&&!Si(t)}var ci,Mo=N(()=>{"use strict";Yv();sw();o(X6e,"isArrayLike");ci=X6e});function j6e(t){return ri(t)&&ci(t)}var Ad,ow=N(()=>{"use strict";Mo();No();o(j6e,"isArrayLikeObject");Ad=j6e});function K6e(){return!1}var ZY,JY=N(()=>{"use strict";o(K6e,"stubFalse");ZY=K6e});var rX,eX,Q6e,tX,Z6e,J6e,Sl,tm=N(()=>{"use strict";Lo();JY();rX=typeof exports=="object"&&exports&&!exports.nodeType&&exports,eX=rX&&typeof module=="object"&&module&&!module.nodeType&&module,Q6e=eX&&eX.exports===rX,tX=Q6e?li.Buffer:void 0,Z6e=tX?tX.isBuffer:void 0,J6e=Z6e||ZY,Sl=J6e});function aSe(t){if(!ri(t)||da(t)!=eSe)return!1;var e=Q0(t);if(e===null)return!0;var r=nSe.call(e,"constructor")&&e.constructor;return typeof r=="function"&&r instanceof r&&nX.call(r)==iSe}var eSe,tSe,rSe,nX,nSe,iSe,iX,aX=N(()=>{"use strict";ku();iw();No();eSe="[object Object]",tSe=Function.prototype,rSe=Object.prototype,nX=tSe.toString,nSe=rSe.hasOwnProperty,iSe=nX.call(Object);o(aSe,"isPlainObject");iX=aSe});function LSe(t){return ri(t)&&em(t.length)&&!!Fn[da(t)]}var sSe,oSe,lSe,cSe,uSe,hSe,fSe,dSe,pSe,mSe,gSe,ySe,vSe,xSe,bSe,wSe,TSe,kSe,ESe,SSe,CSe,ASe,_Se,DSe,Fn,sX,oX=N(()=>{"use strict";ku();sw();No();sSe="[object Arguments]",oSe="[object Array]",lSe="[object Boolean]",cSe="[object Date]",uSe="[object Error]",hSe="[object Function]",fSe="[object Map]",dSe="[object Number]",pSe="[object Object]",mSe="[object RegExp]",gSe="[object Set]",ySe="[object String]",vSe="[object WeakMap]",xSe="[object ArrayBuffer]",bSe="[object DataView]",wSe="[object Float32Array]",TSe="[object Float64Array]",kSe="[object Int8Array]",ESe="[object Int16Array]",SSe="[object Int32Array]",CSe="[object Uint8Array]",ASe="[object Uint8ClampedArray]",_Se="[object Uint16Array]",DSe="[object Uint32Array]",Fn={};Fn[wSe]=Fn[TSe]=Fn[kSe]=Fn[ESe]=Fn[SSe]=Fn[CSe]=Fn[ASe]=Fn[_Se]=Fn[DSe]=!0;Fn[sSe]=Fn[oSe]=Fn[xSe]=Fn[lSe]=Fn[bSe]=Fn[cSe]=Fn[uSe]=Fn[hSe]=Fn[fSe]=Fn[dSe]=Fn[pSe]=Fn[mSe]=Fn[gSe]=Fn[ySe]=Fn[vSe]=!1;o(LSe,"baseIsTypedArray");sX=LSe});function RSe(t){return function(e){return t(e)}}var Io,_d=N(()=>{"use strict";o(RSe,"baseUnary");Io=RSe});var lX,e2,NSe,O9,MSe,Oo,t2=N(()=>{"use strict";w9();lX=typeof exports=="object"&&exports&&!exports.nodeType&&exports,e2=lX&&typeof module=="object"&&module&&!module.nodeType&&module,NSe=e2&&e2.exports===lX,O9=NSe&&X5.process,MSe=function(){try{var t=e2&&e2.require&&e2.require("util").types;return t||O9&&O9.binding&&O9.binding("util")}catch{}}(),Oo=MSe});var cX,ISe,Oh,r2=N(()=>{"use strict";oX();_d();t2();cX=Oo&&Oo.isTypedArray,ISe=cX?Io(cX):sX,Oh=ISe});function OSe(t,e){if(!(e==="constructor"&&typeof t[e]=="function")&&e!="__proto__")return t[e]}var n2,P9=N(()=>{"use strict";o(OSe,"safeGet");n2=OSe});function FSe(t,e,r){var n=t[e];(!(BSe.call(t,e)&&Ro(n,r))||r===void 0&&!(e in t))&&cc(t,e,r)}var PSe,BSe,hc,rm=N(()=>{"use strict";Y0();Sd();PSe=Object.prototype,BSe=PSe.hasOwnProperty;o(FSe,"assignValue");hc=FSe});function $Se(t,e,r,n){var i=!r;r||(r={});for(var a=-1,s=e.length;++a{"use strict";rm();Y0();o($Se,"copyObject");Po=$Se});function zSe(t,e){for(var r=-1,n=Array(t);++r{"use strict";o(zSe,"baseTimes");uX=zSe});function USe(t,e){var r=typeof t;return e=e??GSe,!!e&&(r=="number"||r!="symbol"&&VSe.test(t))&&t>-1&&t%1==0&&t{"use strict";GSe=9007199254740991,VSe=/^(?:0|[1-9]\d*)$/;o(USe,"isIndex");Ph=USe});function qSe(t,e){var r=Pt(t),n=!r&&El(t),i=!r&&!n&&Sl(t),a=!r&&!n&&!i&&Oh(t),s=r||n||i||a,l=s?uX(t.length,String):[],u=l.length;for(var h in t)(e||WSe.call(t,h))&&!(s&&(h=="length"||i&&(h=="offset"||h=="parent")||a&&(h=="buffer"||h=="byteLength"||h=="byteOffset")||Ph(h,u)))&&l.push(h);return l}var HSe,WSe,lw,B9=N(()=>{"use strict";hX();J0();Un();tm();i2();r2();HSe=Object.prototype,WSe=HSe.hasOwnProperty;o(qSe,"arrayLikeKeys");lw=qSe});function YSe(t){var e=[];if(t!=null)for(var r in Object(t))e.push(r);return e}var fX,dX=N(()=>{"use strict";o(YSe,"nativeKeysIn");fX=YSe});function KSe(t){if(!bn(t))return fX(t);var e=uc(t),r=[];for(var n in t)n=="constructor"&&(e||!jSe.call(t,n))||r.push(n);return r}var XSe,jSe,pX,mX=N(()=>{"use strict";Js();Z0();dX();XSe=Object.prototype,jSe=XSe.hasOwnProperty;o(KSe,"baseKeysIn");pX=KSe});function QSe(t){return ci(t)?lw(t,!0):pX(t)}var Cs,Bh=N(()=>{"use strict";B9();mX();Mo();o(QSe,"keysIn");Cs=QSe});function ZSe(t){return Po(t,Cs(t))}var gX,yX=N(()=>{"use strict";Dd();Bh();o(ZSe,"toPlainObject");gX=ZSe});function JSe(t,e,r,n,i,a,s){var l=n2(t,r),u=n2(e,r),h=s.get(u);if(h){Jv(t,r,h);return}var f=a?a(l,u,r+"",t,e,s):void 0,d=f===void 0;if(d){var p=Pt(u),m=!p&&Sl(u),g=!p&&!m&&Oh(u);f=u,p||m||g?Pt(l)?f=l:Ad(l)?f=rw(l):m?(d=!1,f=J5(u,!0)):g?(d=!1,f=tw(u,!0)):f=[]:iX(u)||El(u)?(f=l,El(l)?f=gX(l):(!bn(l)||Si(l))&&(f=aw(u))):d=!1}d&&(s.set(u,f),i(f,u,n,a,s),s.delete(u)),Jv(t,r,f)}var vX,xX=N(()=>{"use strict";A9();_9();L9();R9();M9();J0();Un();ow();tm();Yv();Js();aX();r2();P9();yX();o(JSe,"baseMergeDeep");vX=JSe});function bX(t,e,r,n,i){t!==e&&X0(e,function(a,s){if(i||(i=new lc),bn(a))vX(t,e,s,r,bX,n,i);else{var l=n?n(n2(t,s),a,s+"",t,e,i):void 0;l===void 0&&(l=a),Jv(t,s,l)}},Cs)}var wX,TX=N(()=>{"use strict";Zv();A9();Z5();xX();Js();Bh();P9();o(bX,"baseMerge");wX=bX});function eCe(t){return t}var ta,Cu=N(()=>{"use strict";o(eCe,"identity");ta=eCe});function tCe(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)}var kX,EX=N(()=>{"use strict";o(tCe,"apply");kX=tCe});function rCe(t,e,r){return e=SX(e===void 0?t.length-1:e,0),function(){for(var n=arguments,i=-1,a=SX(n.length-e,0),s=Array(a);++i{"use strict";EX();SX=Math.max;o(rCe,"overRest");cw=rCe});function nCe(t){return function(){return t}}var As,$9=N(()=>{"use strict";o(nCe,"constant");As=nCe});var iCe,CX,AX=N(()=>{"use strict";$9();C9();Cu();iCe=q0?function(t,e){return q0(t,"toString",{configurable:!0,enumerable:!1,value:As(e),writable:!0})}:ta,CX=iCe});function lCe(t){var e=0,r=0;return function(){var n=oCe(),i=sCe-(n-r);if(r=n,i>0){if(++e>=aCe)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}var aCe,sCe,oCe,_X,DX=N(()=>{"use strict";aCe=800,sCe=16,oCe=Date.now;o(lCe,"shortOut");_X=lCe});var cCe,uw,z9=N(()=>{"use strict";AX();DX();cCe=_X(CX),uw=cCe});function uCe(t,e){return uw(cw(t,e,ta),t+"")}var fc,nm=N(()=>{"use strict";Cu();F9();z9();o(uCe,"baseRest");fc=uCe});function hCe(t,e,r){if(!bn(r))return!1;var n=typeof e;return(n=="number"?ci(r)&&Ph(e,r.length):n=="string"&&e in r)?Ro(r[e],t):!1}var eo,Ld=N(()=>{"use strict";Sd();Mo();i2();Js();o(hCe,"isIterateeCall");eo=hCe});function fCe(t){return fc(function(e,r){var n=-1,i=r.length,a=i>1?r[i-1]:void 0,s=i>2?r[2]:void 0;for(a=t.length>3&&typeof a=="function"?(i--,a):void 0,s&&eo(r[0],r[1],s)&&(a=i<3?void 0:a,i=1),e=Object(e);++n{"use strict";nm();Ld();o(fCe,"createAssigner");hw=fCe});var dCe,Fh,V9=N(()=>{"use strict";TX();G9();dCe=hw(function(t,e,r){wX(t,e,r)}),Fh=dCe});function W9(t,e){if(!t)return e;let r=`curve${t.charAt(0).toUpperCase()+t.slice(1)}`;return pCe[r]??e}function vCe(t,e){let r=t.trim();if(r)return e.securityLevel!=="loose"?(0,NX.sanitizeUrl)(r):r}function OX(t,e){return!t||!e?0:Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))}function bCe(t){let e,r=0;t.forEach(i=>{r+=OX(i,e),e=i});let n=r/2;return q9(t,n)}function wCe(t){return t.length===1?t[0]:bCe(t)}function kCe(t,e,r){let n=structuredClone(r);Y.info("our points",n),e!=="start_left"&&e!=="start_right"&&n.reverse();let i=25+t,a=q9(n,i),s=10+t*.5,l=Math.atan2(n[0].y-a.y,n[0].x-a.x),u={x:0,y:0};return e==="start_left"?(u.x=Math.sin(l+Math.PI)*s+(n[0].x+a.x)/2,u.y=-Math.cos(l+Math.PI)*s+(n[0].y+a.y)/2):e==="end_right"?(u.x=Math.sin(l-Math.PI)*s+(n[0].x+a.x)/2-5,u.y=-Math.cos(l-Math.PI)*s+(n[0].y+a.y)/2-5):e==="end_left"?(u.x=Math.sin(l)*s+(n[0].x+a.x)/2-5,u.y=-Math.cos(l)*s+(n[0].y+a.y)/2-5):(u.x=Math.sin(l)*s+(n[0].x+a.x)/2,u.y=-Math.cos(l)*s+(n[0].y+a.y)/2),u}function Y9(t){let e="",r="";for(let n of t)n!==void 0&&(n.startsWith("color:")||n.startsWith("text-align:")?r=r+n+";":e=e+n+";");return{style:e,labelStyle:r}}function ECe(t){let e="",r="0123456789abcdef",n=r.length;for(let i=0;i{"use strict";NX=Sa(z0(),1);dr();gr();e7();vt();Xf();s0();S9();V9();$4();H9="\u200B",pCe={curveBasis:Do,curveBasisClosed:P5,curveBasisOpen:B5,curveBumpX:Rv,curveBumpY:Nv,curveBundle:l9,curveCardinalClosed:c9,curveCardinalOpen:h9,curveCardinal:Pv,curveCatmullRomClosed:d9,curveCatmullRomOpen:p9,curveCatmullRom:$v,curveLinear:wu,curveLinearClosed:V5,curveMonotoneX:zv,curveMonotoneY:Gv,curveNatural:F0,curveStep:$0,curveStepAfter:Uv,curveStepBefore:Vv},mCe=/\s*(?:(\w+)(?=:):|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi,gCe=o(function(t,e){let r=MX(t,/(?:init\b)|(?:initialize\b)/),n={};if(Array.isArray(r)){let s=r.map(l=>l.args);l0(s),n=Gn(n,[...s])}else n=r.args;if(!n)return;let i=a0(t,e),a="config";return n[a]!==void 0&&(i==="flowchart-v2"&&(i="flowchart"),n[i]=n[a],delete n[a]),n},"detectInit"),MX=o(function(t,e=null){try{let r=new RegExp(`[%]{2}(?![{]${mCe.source})(?=[}][%]{2}).* +`,"ig");t=t.trim().replace(r,"").replace(/'/gm,'"'),Y.debug(`Detecting diagram directive${e!==null?" type:"+e:""} based on the text:${t}`);let n,i=[];for(;(n=qf.exec(t))!==null;)if(n.index===qf.lastIndex&&qf.lastIndex++,n&&!e||e&&n[1]?.match(e)||e&&n[2]?.match(e)){let a=n[1]?n[1]:n[2],s=n[3]?n[3].trim():n[4]?JSON.parse(n[4].trim()):null;i.push({type:a,args:s})}return i.length===0?{type:t,args:null}:i.length===1?i[0]:i}catch(r){return Y.error(`ERROR: ${r.message} - Unable to parse directive type: '${e}' based on the text: '${t}'`),{type:void 0,args:null}}},"detectDirective"),IX=o(function(t){return t.replace(qf,"")},"removeDirectives"),yCe=o(function(t,e){for(let[r,n]of e.entries())if(n.match(t))return r;return-1},"isSubstringInArray");o(W9,"interpolateToCurve");o(vCe,"formatUrl");xCe=o((t,...e)=>{let r=t.split("."),n=r.length-1,i=r[n],a=window;for(let s=0;s{let r=Math.pow(10,e);return Math.round(t*r)/r},"roundNumber"),q9=o((t,e)=>{let r,n=e;for(let i of t){if(r){let a=OX(i,r);if(a===0)return r;if(a=1)return{x:i.x,y:i.y};if(s>0&&s<1)return{x:LX((1-s)*r.x+s*i.x,5),y:LX((1-s)*r.y+s*i.y,5)}}}r=i}throw new Error("Could not find a suitable point for the given distance")},"calculatePoint"),TCe=o((t,e,r)=>{Y.info(`our points ${JSON.stringify(e)}`),e[0]!==r&&(e=e.reverse());let i=q9(e,25),a=t?10:5,s=Math.atan2(e[0].y-i.y,e[0].x-i.x),l={x:0,y:0};return l.x=Math.sin(s)*a+(e[0].x+i.x)/2,l.y=-Math.cos(s)*a+(e[0].y+i.y)/2,l},"calcCardinalityPosition");o(kCe,"calcTerminalLabelPosition");o(Y9,"getStylesFromArray");RX=0,X9=o(()=>(RX++,"id-"+Math.random().toString(36).substr(2,12)+"-"+RX),"generateId");o(ECe,"makeRandomHex");j9=o(t=>ECe(t.length),"random"),SCe=o(function(){return{x:0,y:0,fill:void 0,anchor:"start",style:"#666",width:100,height:100,textMargin:0,rx:0,ry:0,valign:void 0,text:""}},"getTextObj"),CCe=o(function(t,e){let r=e.text.replace(Ze.lineBreakRegex," "),[,n]=Bo(e.fontSize),i=t.append("text");i.attr("x",e.x),i.attr("y",e.y),i.style("text-anchor",e.anchor),i.style("font-family",e.fontFamily),i.style("font-size",n),i.style("font-weight",e.fontWeight),i.attr("fill",e.fill),e.class!==void 0&&i.attr("class",e.class);let a=i.append("tspan");return a.attr("x",e.x+e.textMargin*2),a.attr("fill",e.fill),a.text(r),i},"drawSimpleText"),K9=H0((t,e,r)=>{if(!t||(r=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",joinWith:"
"},r),Ze.lineBreakRegex.test(t)))return t;let n=t.split(" ").filter(Boolean),i=[],a="";return n.forEach((s,l)=>{let u=ra(`${s} `,r),h=ra(a,r);if(u>e){let{hyphenatedStrings:p,remainingWord:m}=ACe(s,e,"-",r);i.push(a,...p),a=m}else h+u>=e?(i.push(a),a=s):a=[a,s].filter(Boolean).join(" ");l+1===n.length&&i.push(a)}),i.filter(s=>s!=="").join(r.joinWith)},(t,e,r)=>`${t}${e}${r.fontSize}${r.fontWeight}${r.fontFamily}${r.joinWith}`),ACe=H0((t,e,r="-",n)=>{n=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:0},n);let i=[...t],a=[],s="";return i.forEach((l,u)=>{let h=`${s}${l}`;if(ra(h,n)>=e){let d=u+1,p=i.length===d,m=`${h}${r}`;a.push(p?h:m),s=""}else s=h}),{hyphenatedStrings:a,remainingWord:s}},(t,e,r="-",n)=>`${t}${e}${r}${n.fontSize}${n.fontWeight}${n.fontFamily}`);o(dw,"calculateTextHeight");o(ra,"calculateTextWidth");Q9=H0((t,e)=>{let{fontSize:r=12,fontFamily:n="Arial",fontWeight:i=400}=e;if(!t)return{width:0,height:0};let[,a]=Bo(r),s=["sans-serif",n],l=t.split(Ze.lineBreakRegex),u=[],h=Ge("body");if(!h.remove)return{width:0,height:0,lineHeight:0};let f=h.append("svg");for(let p of s){let m=0,g={width:0,height:0,lineHeight:0};for(let y of l){let v=SCe();v.text=y||H9;let x=CCe(f,v).style("font-size",a).style("font-weight",i).style("font-family",p),b=(x._groups||x)[0][0].getBBox();if(b.width===0&&b.height===0)throw new Error("svg element not in render tree");g.width=Math.round(Math.max(g.width,b.width)),m=Math.round(b.height),g.height+=m,g.lineHeight=Math.round(Math.max(g.lineHeight,m))}u.push(g)}f.remove();let d=isNaN(u[1].height)||isNaN(u[1].width)||isNaN(u[1].lineHeight)||u[0].height>u[1].height&&u[0].width>u[1].width&&u[0].lineHeight>u[1].lineHeight?0:1;return u[d]},(t,e)=>`${t}${e.fontSize}${e.fontWeight}${e.fontFamily}`),U9=class{constructor(e=!1,r){this.count=0;this.count=r?r.length:0,this.next=e?()=>this.count++:()=>Date.now()}static{o(this,"InitIDGenerator")}},_Ce=o(function(t){return fw=fw||document.createElement("div"),t=escape(t).replace(/%26/g,"&").replace(/%23/g,"#").replace(/%3B/g,";"),fw.innerHTML=t,unescape(fw.textContent)},"entityDecode");o(Z9,"isDetailedError");DCe=o((t,e,r,n)=>{if(!n)return;let i=t.node()?.getBBox();i&&t.append("text").text(n).attr("text-anchor","middle").attr("x",i.x+i.width/2).attr("y",-r).attr("class",e)},"insertTitle"),Bo=o(t=>{if(typeof t=="number")return[t,t+"px"];let e=parseInt(t??"",10);return Number.isNaN(e)?[void 0,void 0]:t===String(e)?[e,t+"px"]:[e,t]},"parseFontSize");o(Fi,"cleanAndMerge");Gt={assignWithDepth:Gn,wrapLabel:K9,calculateTextHeight:dw,calculateTextWidth:ra,calculateTextDimensions:Q9,cleanAndMerge:Fi,detectInit:gCe,detectDirective:MX,isSubstringInArray:yCe,interpolateToCurve:W9,calcLabelPosition:wCe,calcCardinalityPosition:TCe,calcTerminalLabelPosition:kCe,formatUrl:vCe,getStylesFromArray:Y9,generateId:X9,random:j9,runFunc:xCe,entityDecode:_Ce,insertTitle:DCe,parseFontSize:Bo,InitIDGenerator:U9},PX=o(function(t){let e=t;return e=e.replace(/style.*:\S*#.*;/g,function(r){return r.substring(0,r.length-1)}),e=e.replace(/classDef.*:\S*#.*;/g,function(r){return r.substring(0,r.length-1)}),e=e.replace(/#\w+;/g,function(r){let n=r.substring(1,r.length-1);return/^\+?\d+$/.test(n)?"\uFB02\xB0\xB0"+n+"\xB6\xDF":"\uFB02\xB0"+n+"\xB6\xDF"}),e},"encodeEntities"),na=o(function(t){return t.replace(/fl°°/g,"&#").replace(/fl°/g,"&").replace(/¶ß/g,";")},"decodeEntities"),$h=o((t,e,{counter:r=0,prefix:n,suffix:i},a)=>a||`${n?`${n}_`:""}${t}_${e}_${r}${i?`_${i}`:""}`,"getEdgeId");o($n,"handleUndefinedAttr")});function Cl(t,e,r,n,i){if(!e[t].width)if(r)e[t].text=K9(e[t].text,i,n),e[t].textLines=e[t].text.split(Ze.lineBreakRegex).length,e[t].width=i,e[t].height=dw(e[t].text,n);else{let a=e[t].text.split(Ze.lineBreakRegex);e[t].textLines=a.length;let s=0;e[t].height=0,e[t].width=0;for(let l of a)e[t].width=Math.max(ra(l,n),e[t].width),s=dw(l,n),e[t].height=e[t].height+s}}function GX(t,e,r,n,i){let a=new yw(i);a.data.widthLimit=r.data.widthLimit/Math.min(J9,n.length);for(let[s,l]of n.entries()){let u=0;l.image={width:0,height:0,Y:0},l.sprite&&(l.image.width=48,l.image.height=48,l.image.Y=u,u=l.image.Y+l.image.height);let h=l.wrap&&Vt.wrap,f=pw(Vt);if(f.fontSize=f.fontSize+2,f.fontWeight="bold",Cl("label",l,h,f,a.data.widthLimit),l.label.Y=u+8,u=l.label.Y+l.label.height,l.type&&l.type.text!==""){l.type.text="["+l.type.text+"]";let g=pw(Vt);Cl("type",l,h,g,a.data.widthLimit),l.type.Y=u+5,u=l.type.Y+l.type.height}if(l.descr&&l.descr.text!==""){let g=pw(Vt);g.fontSize=g.fontSize-2,Cl("descr",l,h,g,a.data.widthLimit),l.descr.Y=u+20,u=l.descr.Y+l.descr.height}if(s==0||s%J9===0){let g=r.data.startx+Vt.diagramMarginX,y=r.data.stopy+Vt.diagramMarginY+u;a.setData(g,g,y,y)}else{let g=a.data.stopx!==a.data.startx?a.data.stopx+Vt.diagramMarginX:a.data.startx,y=a.data.starty;a.setData(g,g,y,y)}a.name=l.alias;let d=i.db.getC4ShapeArray(l.alias),p=i.db.getC4ShapeKeys(l.alias);p.length>0&&zX(a,t,d,p),e=l.alias;let m=i.db.getBoundarys(e);m.length>0&&GX(t,e,a,m,i),l.alias!=="global"&&$X(t,l,a),r.data.stopy=Math.max(a.data.stopy+Vt.c4ShapeMargin,r.data.stopy),r.data.stopx=Math.max(a.data.stopx+Vt.c4ShapeMargin,r.data.stopx),mw=Math.max(mw,r.data.stopx),gw=Math.max(gw,r.data.stopy)}}var mw,gw,FX,J9,Vt,yw,eD,a2,pw,LCe,$X,zX,_s,BX,RCe,NCe,MCe,tD,VX=N(()=>{"use strict";dr();Bq();vt();$C();gr();uA();zt();s0();ir();Ei();mw=0,gw=0,FX=4,J9=2;Ty.yy=Qy;Vt={},yw=class{static{o(this,"Bounds")}constructor(e){this.name="",this.data={},this.data.startx=void 0,this.data.stopx=void 0,this.data.starty=void 0,this.data.stopy=void 0,this.data.widthLimit=void 0,this.nextData={},this.nextData.startx=void 0,this.nextData.stopx=void 0,this.nextData.starty=void 0,this.nextData.stopy=void 0,this.nextData.cnt=0,eD(e.db.getConfig())}setData(e,r,n,i){this.nextData.startx=this.data.startx=e,this.nextData.stopx=this.data.stopx=r,this.nextData.starty=this.data.starty=n,this.nextData.stopy=this.data.stopy=i}updateVal(e,r,n,i){e[r]===void 0?e[r]=n:e[r]=i(n,e[r])}insert(e){this.nextData.cnt=this.nextData.cnt+1;let r=this.nextData.startx===this.nextData.stopx?this.nextData.stopx+e.margin:this.nextData.stopx+e.margin*2,n=r+e.width,i=this.nextData.starty+e.margin*2,a=i+e.height;(r>=this.data.widthLimit||n>=this.data.widthLimit||this.nextData.cnt>FX)&&(r=this.nextData.startx+e.margin+Vt.nextLinePaddingX,i=this.nextData.stopy+e.margin*2,this.nextData.stopx=n=r+e.width,this.nextData.starty=this.nextData.stopy,this.nextData.stopy=a=i+e.height,this.nextData.cnt=1),e.x=r,e.y=i,this.updateVal(this.data,"startx",r,Math.min),this.updateVal(this.data,"starty",i,Math.min),this.updateVal(this.data,"stopx",n,Math.max),this.updateVal(this.data,"stopy",a,Math.max),this.updateVal(this.nextData,"startx",r,Math.min),this.updateVal(this.nextData,"starty",i,Math.min),this.updateVal(this.nextData,"stopx",n,Math.max),this.updateVal(this.nextData,"stopy",a,Math.max)}init(e){this.name="",this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0,widthLimit:void 0},this.nextData={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0,cnt:0},eD(e.db.getConfig())}bumpLastMargin(e){this.data.stopx+=e,this.data.stopy+=e}},eD=o(function(t){Gn(Vt,t),t.fontFamily&&(Vt.personFontFamily=Vt.systemFontFamily=Vt.messageFontFamily=t.fontFamily),t.fontSize&&(Vt.personFontSize=Vt.systemFontSize=Vt.messageFontSize=t.fontSize),t.fontWeight&&(Vt.personFontWeight=Vt.systemFontWeight=Vt.messageFontWeight=t.fontWeight)},"setConf"),a2=o((t,e)=>({fontFamily:t[e+"FontFamily"],fontSize:t[e+"FontSize"],fontWeight:t[e+"FontWeight"]}),"c4ShapeFont"),pw=o(t=>({fontFamily:t.boundaryFontFamily,fontSize:t.boundaryFontSize,fontWeight:t.boundaryFontWeight}),"boundaryFont"),LCe=o(t=>({fontFamily:t.messageFontFamily,fontSize:t.messageFontSize,fontWeight:t.messageFontWeight}),"messageFont");o(Cl,"calcC4ShapeTextWH");$X=o(function(t,e,r){e.x=r.data.startx,e.y=r.data.starty,e.width=r.data.stopx-r.data.startx,e.height=r.data.stopy-r.data.starty,e.label.y=Vt.c4ShapeMargin-35;let n=e.wrap&&Vt.wrap,i=pw(Vt);i.fontSize=i.fontSize+2,i.fontWeight="bold";let a=ra(e.label.text,i);Cl("label",e,n,i,a),kl.drawBoundary(t,e,Vt)},"drawBoundary"),zX=o(function(t,e,r,n){let i=0;for(let a of n){i=0;let s=r[a],l=a2(Vt,s.typeC4Shape.text);switch(l.fontSize=l.fontSize-2,s.typeC4Shape.width=ra("\xAB"+s.typeC4Shape.text+"\xBB",l),s.typeC4Shape.height=l.fontSize+2,s.typeC4Shape.Y=Vt.c4ShapePadding,i=s.typeC4Shape.Y+s.typeC4Shape.height-4,s.image={width:0,height:0,Y:0},s.typeC4Shape.text){case"person":case"external_person":s.image.width=48,s.image.height=48,s.image.Y=i,i=s.image.Y+s.image.height;break}s.sprite&&(s.image.width=48,s.image.height=48,s.image.Y=i,i=s.image.Y+s.image.height);let u=s.wrap&&Vt.wrap,h=Vt.width-Vt.c4ShapePadding*2,f=a2(Vt,s.typeC4Shape.text);if(f.fontSize=f.fontSize+2,f.fontWeight="bold",Cl("label",s,u,f,h),s.label.Y=i+8,i=s.label.Y+s.label.height,s.type&&s.type.text!==""){s.type.text="["+s.type.text+"]";let m=a2(Vt,s.typeC4Shape.text);Cl("type",s,u,m,h),s.type.Y=i+5,i=s.type.Y+s.type.height}else if(s.techn&&s.techn.text!==""){s.techn.text="["+s.techn.text+"]";let m=a2(Vt,s.techn.text);Cl("techn",s,u,m,h),s.techn.Y=i+5,i=s.techn.Y+s.techn.height}let d=i,p=s.label.width;if(s.descr&&s.descr.text!==""){let m=a2(Vt,s.typeC4Shape.text);Cl("descr",s,u,m,h),s.descr.Y=i+20,i=s.descr.Y+s.descr.height,p=Math.max(s.label.width,s.descr.width),d=i-s.descr.textLines*5}p=p+Vt.c4ShapePadding,s.width=Math.max(s.width||Vt.width,p,Vt.width),s.height=Math.max(s.height||Vt.height,d,Vt.height),s.margin=s.margin||Vt.c4ShapeMargin,t.insert(s),kl.drawC4Shape(e,s,Vt)}t.bumpLastMargin(Vt.c4ShapeMargin)},"drawC4ShapeArray"),_s=class{static{o(this,"Point")}constructor(e,r){this.x=e,this.y=r}},BX=o(function(t,e){let r=t.x,n=t.y,i=e.x,a=e.y,s=r+t.width/2,l=n+t.height/2,u=Math.abs(r-i),h=Math.abs(n-a),f=h/u,d=t.height/t.width,p=null;return n==a&&ri?p=new _s(r,l):r==i&&na&&(p=new _s(s,n)),r>i&&n=f?p=new _s(r,l+f*t.width/2):p=new _s(s-u/h*t.height/2,n+t.height):r=f?p=new _s(r+t.width,l+f*t.width/2):p=new _s(s+u/h*t.height/2,n+t.height):ra?d>=f?p=new _s(r+t.width,l-f*t.width/2):p=new _s(s+t.height/2*u/h,n):r>i&&n>a&&(d>=f?p=new _s(r,l-t.width/2*f):p=new _s(s-t.height/2*u/h,n)),p},"getIntersectPoint"),RCe=o(function(t,e){let r={x:0,y:0};r.x=e.x+e.width/2,r.y=e.y+e.height/2;let n=BX(t,r);r.x=t.x+t.width/2,r.y=t.y+t.height/2;let i=BX(e,r);return{startPoint:n,endPoint:i}},"getIntersectPoints"),NCe=o(function(t,e,r,n){let i=0;for(let a of e){i=i+1;let s=a.wrap&&Vt.wrap,l=LCe(Vt);n.db.getC4Type()==="C4Dynamic"&&(a.label.text=i+": "+a.label.text);let h=ra(a.label.text,l);Cl("label",a,s,l,h),a.techn&&a.techn.text!==""&&(h=ra(a.techn.text,l),Cl("techn",a,s,l,h)),a.descr&&a.descr.text!==""&&(h=ra(a.descr.text,l),Cl("descr",a,s,l,h));let f=r(a.from),d=r(a.to),p=RCe(f,d);a.startPoint=p.startPoint,a.endPoint=p.endPoint}kl.drawRels(t,e,Vt)},"drawRels");o(GX,"drawInsideBoundary");MCe=o(function(t,e,r,n){Vt=me().c4;let i=me().securityLevel,a;i==="sandbox"&&(a=Ge("#i"+e));let s=i==="sandbox"?Ge(a.nodes()[0].contentDocument.body):Ge("body"),l=n.db;n.db.setWrap(Vt.wrap),FX=l.getC4ShapeInRow(),J9=l.getC4BoundaryInRow(),Y.debug(`C:${JSON.stringify(Vt,null,2)}`);let u=i==="sandbox"?s.select(`[id="${e}"]`):Ge(`[id="${e}"]`);kl.insertComputerIcon(u),kl.insertDatabaseIcon(u),kl.insertClockIcon(u);let h=new yw(n);h.setData(Vt.diagramMarginX,Vt.diagramMarginX,Vt.diagramMarginY,Vt.diagramMarginY),h.data.widthLimit=screen.availWidth,mw=Vt.diagramMarginX,gw=Vt.diagramMarginY;let f=n.db.getTitle(),d=n.db.getBoundarys("");GX(u,"",h,d,n),kl.insertArrowHead(u),kl.insertArrowEnd(u),kl.insertArrowCrossHead(u),kl.insertArrowFilledHead(u),NCe(u,n.db.getRels(),n.db.getC4Shape,n),h.data.stopx=mw,h.data.stopy=gw;let p=h.data,g=p.stopy-p.starty+2*Vt.diagramMarginY,v=p.stopx-p.startx+2*Vt.diagramMarginX;f&&u.append("text").text(f).attr("x",(p.stopx-p.startx)/2-4*Vt.diagramMarginX).attr("y",p.starty+Vt.diagramMarginY),vn(u,g,v,Vt.useMaxWidth);let x=f?60:0;u.attr("viewBox",p.startx-Vt.diagramMarginX+" -"+(Vt.diagramMarginY+x)+" "+v+" "+(g+x)),Y.debug("models:",p)},"draw"),tD={drawPersonOrSystemArray:zX,drawBoundary:$X,setConf:eD,draw:MCe}});var ICe,UX,HX=N(()=>{"use strict";ICe=o(t=>`.person { + stroke: ${t.personBorder}; + fill: ${t.personBkg}; + } +`,"getStyles"),UX=ICe});var WX={};hr(WX,{diagram:()=>OCe});var OCe,qX=N(()=>{"use strict";$C();uA();VX();HX();OCe={parser:JF,db:Qy,renderer:tD,styles:UX,init:o(({c4:t,wrap:e})=>{tD.setConf(t),Qy.setWrap(e)},"init")}});function uj(t){return typeof t>"u"||t===null}function $Ce(t){return typeof t=="object"&&t!==null}function zCe(t){return Array.isArray(t)?t:uj(t)?[]:[t]}function GCe(t,e){var r,n,i,a;if(e)for(a=Object.keys(e),r=0,n=a.length;rl&&(a=" ... ",e=n-l+a.length),r-n>l&&(s=" ...",r=n+l-s.length),{str:a+t.slice(e,r).replace(/\t/g,"\u2192")+s,pos:n-e+a.length}}function nD(t,e){return $i.repeat(" ",e-t.length)+t}function KCe(t,e){if(e=Object.create(e||null),!t.buffer)return null;e.maxLength||(e.maxLength=79),typeof e.indent!="number"&&(e.indent=1),typeof e.linesBefore!="number"&&(e.linesBefore=3),typeof e.linesAfter!="number"&&(e.linesAfter=2);for(var r=/\r?\n|\r|\0/g,n=[0],i=[],a,s=-1;a=r.exec(t.buffer);)i.push(a.index),n.push(a.index+a[0].length),t.position<=a.index&&s<0&&(s=n.length-2);s<0&&(s=n.length-1);var l="",u,h,f=Math.min(t.line+e.linesAfter,i.length).toString().length,d=e.maxLength-(e.indent+f+3);for(u=1;u<=e.linesBefore&&!(s-u<0);u++)h=rD(t.buffer,n[s-u],i[s-u],t.position-(n[s]-n[s-u]),d),l=$i.repeat(" ",e.indent)+nD((t.line-u+1).toString(),f)+" | "+h.str+` +`+l;for(h=rD(t.buffer,n[s],i[s],t.position,d),l+=$i.repeat(" ",e.indent)+nD((t.line+1).toString(),f)+" | "+h.str+` +`,l+=$i.repeat("-",e.indent+f+3+h.pos)+`^ +`,u=1;u<=e.linesAfter&&!(s+u>=i.length);u++)h=rD(t.buffer,n[s+u],i[s+u],t.position-(n[s]-n[s+u]),d),l+=$i.repeat(" ",e.indent)+nD((t.line+u+1).toString(),f)+" | "+h.str+` +`;return l.replace(/\n$/,"")}function e7e(t){var e={};return t!==null&&Object.keys(t).forEach(function(r){t[r].forEach(function(n){e[String(n)]=r})}),e}function t7e(t,e){if(e=e||{},Object.keys(e).forEach(function(r){if(ZCe.indexOf(r)===-1)throw new Ds('Unknown option "'+r+'" is met in definition of "'+t+'" YAML type.')}),this.options=e,this.tag=t,this.kind=e.kind||null,this.resolve=e.resolve||function(){return!0},this.construct=e.construct||function(r){return r},this.instanceOf=e.instanceOf||null,this.predicate=e.predicate||null,this.represent=e.represent||null,this.representName=e.representName||null,this.defaultStyle=e.defaultStyle||null,this.multi=e.multi||!1,this.styleAliases=e7e(e.styleAliases||null),JCe.indexOf(this.kind)===-1)throw new Ds('Unknown kind "'+this.kind+'" is specified for "'+t+'" YAML type.')}function jX(t,e){var r=[];return t[e].forEach(function(n){var i=r.length;r.forEach(function(a,s){a.tag===n.tag&&a.kind===n.kind&&a.multi===n.multi&&(i=s)}),r[i]=n}),r}function r7e(){var t={scalar:{},sequence:{},mapping:{},fallback:{},multi:{scalar:[],sequence:[],mapping:[],fallback:[]}},e,r;function n(i){i.multi?(t.multi[i.kind].push(i),t.multi.fallback.push(i)):t[i.kind][i.tag]=t.fallback[i.tag]=i}for(o(n,"collectType"),e=0,r=arguments.length;e=0&&(e=e.slice(1)),e===".inf"?r===1?Number.POSITIVE_INFINITY:Number.NEGATIVE_INFINITY:e===".nan"?NaN:r*parseFloat(e,10)}function A7e(t,e){var r;if(isNaN(t))switch(e){case"lowercase":return".nan";case"uppercase":return".NAN";case"camelcase":return".NaN"}else if(Number.POSITIVE_INFINITY===t)switch(e){case"lowercase":return".inf";case"uppercase":return".INF";case"camelcase":return".Inf"}else if(Number.NEGATIVE_INFINITY===t)switch(e){case"lowercase":return"-.inf";case"uppercase":return"-.INF";case"camelcase":return"-.Inf"}else if($i.isNegativeZero(t))return"-0.0";return r=t.toString(10),C7e.test(r)?r.replace("e",".e"):r}function _7e(t){return Object.prototype.toString.call(t)==="[object Number]"&&(t%1!==0||$i.isNegativeZero(t))}function R7e(t){return t===null?!1:dj.exec(t)!==null||pj.exec(t)!==null}function N7e(t){var e,r,n,i,a,s,l,u=0,h=null,f,d,p;if(e=dj.exec(t),e===null&&(e=pj.exec(t)),e===null)throw new Error("Date resolve error");if(r=+e[1],n=+e[2]-1,i=+e[3],!e[4])return new Date(Date.UTC(r,n,i));if(a=+e[4],s=+e[5],l=+e[6],e[7]){for(u=e[7].slice(0,3);u.length<3;)u+="0";u=+u}return e[9]&&(f=+e[10],d=+(e[11]||0),h=(f*60+d)*6e4,e[9]==="-"&&(h=-h)),p=new Date(Date.UTC(r,n,i,a,s,l,u)),h&&p.setTime(p.getTime()-h),p}function M7e(t){return t.toISOString()}function O7e(t){return t==="<<"||t===null}function B7e(t){if(t===null)return!1;var e,r,n=0,i=t.length,a=uD;for(r=0;r64)){if(e<0)return!1;n+=6}return n%8===0}function F7e(t){var e,r,n=t.replace(/[\r\n=]/g,""),i=n.length,a=uD,s=0,l=[];for(e=0;e>16&255),l.push(s>>8&255),l.push(s&255)),s=s<<6|a.indexOf(n.charAt(e));return r=i%4*6,r===0?(l.push(s>>16&255),l.push(s>>8&255),l.push(s&255)):r===18?(l.push(s>>10&255),l.push(s>>2&255)):r===12&&l.push(s>>4&255),new Uint8Array(l)}function $7e(t){var e="",r=0,n,i,a=t.length,s=uD;for(n=0;n>18&63],e+=s[r>>12&63],e+=s[r>>6&63],e+=s[r&63]),r=(r<<8)+t[n];return i=a%3,i===0?(e+=s[r>>18&63],e+=s[r>>12&63],e+=s[r>>6&63],e+=s[r&63]):i===2?(e+=s[r>>10&63],e+=s[r>>4&63],e+=s[r<<2&63],e+=s[64]):i===1&&(e+=s[r>>2&63],e+=s[r<<4&63],e+=s[64],e+=s[64]),e}function z7e(t){return Object.prototype.toString.call(t)==="[object Uint8Array]"}function H7e(t){if(t===null)return!0;var e=[],r,n,i,a,s,l=t;for(r=0,n=l.length;r>10)+55296,(t-65536&1023)+56320)}function cAe(t,e){this.input=t,this.filename=e.filename||null,this.schema=e.schema||mj,this.onWarning=e.onWarning||null,this.legacy=e.legacy||!1,this.json=e.json||!1,this.listener=e.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typeMap=this.schema.compiledTypeMap,this.length=t.length,this.position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.firstTabInLine=-1,this.documents=[]}function Tj(t,e){var r={name:t.filename,buffer:t.input.slice(0,-1),position:t.position,line:t.line,column:t.position-t.lineStart};return r.snippet=QCe(r),new Ds(e,r)}function Qt(t,e){throw Tj(t,e)}function bw(t,e){t.onWarning&&t.onWarning.call(null,Tj(t,e))}function zh(t,e,r,n){var i,a,s,l;if(e1&&(t.result+=$i.repeat(` +`,e-1))}function uAe(t,e,r){var n,i,a,s,l,u,h,f,d=t.kind,p=t.result,m;if(m=t.input.charCodeAt(t.position),Ls(m)||am(m)||m===35||m===38||m===42||m===33||m===124||m===62||m===39||m===34||m===37||m===64||m===96||(m===63||m===45)&&(i=t.input.charCodeAt(t.position+1),Ls(i)||r&&am(i)))return!1;for(t.kind="scalar",t.result="",a=s=t.position,l=!1;m!==0;){if(m===58){if(i=t.input.charCodeAt(t.position+1),Ls(i)||r&&am(i))break}else if(m===35){if(n=t.input.charCodeAt(t.position-1),Ls(n))break}else{if(t.position===t.lineStart&&kw(t)||r&&am(m))break;if(dc(m))if(u=t.line,h=t.lineStart,f=t.lineIndent,Ci(t,!1,-1),t.lineIndent>=e){l=!0,m=t.input.charCodeAt(t.position);continue}else{t.position=s,t.line=u,t.lineStart=h,t.lineIndent=f;break}}l&&(zh(t,a,s,!1),fD(t,t.line-u),a=s=t.position,l=!1),Nd(m)||(s=t.position+1),m=t.input.charCodeAt(++t.position)}return zh(t,a,s,!1),t.result?!0:(t.kind=d,t.result=p,!1)}function hAe(t,e){var r,n,i;if(r=t.input.charCodeAt(t.position),r!==39)return!1;for(t.kind="scalar",t.result="",t.position++,n=i=t.position;(r=t.input.charCodeAt(t.position))!==0;)if(r===39)if(zh(t,n,t.position,!0),r=t.input.charCodeAt(++t.position),r===39)n=t.position,t.position++,i=t.position;else return!0;else dc(r)?(zh(t,n,i,!0),fD(t,Ci(t,!1,e)),n=i=t.position):t.position===t.lineStart&&kw(t)?Qt(t,"unexpected end of the document within a single quoted scalar"):(t.position++,i=t.position);Qt(t,"unexpected end of the stream within a single quoted scalar")}function fAe(t,e){var r,n,i,a,s,l;if(l=t.input.charCodeAt(t.position),l!==34)return!1;for(t.kind="scalar",t.result="",t.position++,r=n=t.position;(l=t.input.charCodeAt(t.position))!==0;){if(l===34)return zh(t,r,t.position,!0),t.position++,!0;if(l===92){if(zh(t,r,t.position,!0),l=t.input.charCodeAt(++t.position),dc(l))Ci(t,!1,e);else if(l<256&&bj[l])t.result+=wj[l],t.position++;else if((s=sAe(l))>0){for(i=s,a=0;i>0;i--)l=t.input.charCodeAt(++t.position),(s=aAe(l))>=0?a=(a<<4)+s:Qt(t,"expected hexadecimal character");t.result+=lAe(a),t.position++}else Qt(t,"unknown escape sequence");r=n=t.position}else dc(l)?(zh(t,r,n,!0),fD(t,Ci(t,!1,e)),r=n=t.position):t.position===t.lineStart&&kw(t)?Qt(t,"unexpected end of the document within a double quoted scalar"):(t.position++,n=t.position)}Qt(t,"unexpected end of the stream within a double quoted scalar")}function dAe(t,e){var r=!0,n,i,a,s=t.tag,l,u=t.anchor,h,f,d,p,m,g=Object.create(null),y,v,x,b;if(b=t.input.charCodeAt(t.position),b===91)f=93,m=!1,l=[];else if(b===123)f=125,m=!0,l={};else return!1;for(t.anchor!==null&&(t.anchorMap[t.anchor]=l),b=t.input.charCodeAt(++t.position);b!==0;){if(Ci(t,!0,e),b=t.input.charCodeAt(t.position),b===f)return t.position++,t.tag=s,t.anchor=u,t.kind=m?"mapping":"sequence",t.result=l,!0;r?b===44&&Qt(t,"expected the node content, but found ','"):Qt(t,"missed comma between flow collection entries"),v=y=x=null,d=p=!1,b===63&&(h=t.input.charCodeAt(t.position+1),Ls(h)&&(d=p=!0,t.position++,Ci(t,!0,e))),n=t.line,i=t.lineStart,a=t.position,om(t,e,vw,!1,!0),v=t.tag,y=t.result,Ci(t,!0,e),b=t.input.charCodeAt(t.position),(p||t.line===n)&&b===58&&(d=!0,b=t.input.charCodeAt(++t.position),Ci(t,!0,e),om(t,e,vw,!1,!0),x=t.result),m?sm(t,l,g,v,y,x,n,i,a):d?l.push(sm(t,null,g,v,y,x,n,i,a)):l.push(y),Ci(t,!0,e),b=t.input.charCodeAt(t.position),b===44?(r=!0,b=t.input.charCodeAt(++t.position)):r=!1}Qt(t,"unexpected end of the stream within a flow collection")}function pAe(t,e){var r,n,i=iD,a=!1,s=!1,l=e,u=0,h=!1,f,d;if(d=t.input.charCodeAt(t.position),d===124)n=!1;else if(d===62)n=!0;else return!1;for(t.kind="scalar",t.result="";d!==0;)if(d=t.input.charCodeAt(++t.position),d===43||d===45)iD===i?i=d===43?KX:tAe:Qt(t,"repeat of a chomping mode identifier");else if((f=oAe(d))>=0)f===0?Qt(t,"bad explicit indentation width of a block scalar; it cannot be less than one"):s?Qt(t,"repeat of an indentation width identifier"):(l=e+f-1,s=!0);else break;if(Nd(d)){do d=t.input.charCodeAt(++t.position);while(Nd(d));if(d===35)do d=t.input.charCodeAt(++t.position);while(!dc(d)&&d!==0)}for(;d!==0;){for(hD(t),t.lineIndent=0,d=t.input.charCodeAt(t.position);(!s||t.lineIndentl&&(l=t.lineIndent),dc(d)){u++;continue}if(t.lineIndente)&&u!==0)Qt(t,"bad indentation of a sequence entry");else if(t.lineIndente)&&(v&&(s=t.line,l=t.lineStart,u=t.position),om(t,e,xw,!0,i)&&(v?g=t.result:y=t.result),v||(sm(t,d,p,m,g,y,s,l,u),m=g=y=null),Ci(t,!0,-1),b=t.input.charCodeAt(t.position)),(t.line===a||t.lineIndent>e)&&b!==0)Qt(t,"bad indentation of a mapping entry");else if(t.lineIndente?u=1:t.lineIndent===e?u=0:t.lineIndente?u=1:t.lineIndent===e?u=0:t.lineIndent tag; it should be "scalar", not "'+t.kind+'"'),d=0,p=t.implicitTypes.length;d"),t.result!==null&&g.kind!==t.kind&&Qt(t,"unacceptable node kind for !<"+t.tag+'> tag; it should be "'+g.kind+'", not "'+t.kind+'"'),g.resolve(t.result,t.tag)?(t.result=g.construct(t.result,t.tag),t.anchor!==null&&(t.anchorMap[t.anchor]=t.result)):Qt(t,"cannot resolve a node with !<"+t.tag+"> explicit tag")}return t.listener!==null&&t.listener("close",t),t.tag!==null||t.anchor!==null||f}function xAe(t){var e=t.position,r,n,i,a=!1,s;for(t.version=null,t.checkLineBreaks=t.legacy,t.tagMap=Object.create(null),t.anchorMap=Object.create(null);(s=t.input.charCodeAt(t.position))!==0&&(Ci(t,!0,-1),s=t.input.charCodeAt(t.position),!(t.lineIndent>0||s!==37));){for(a=!0,s=t.input.charCodeAt(++t.position),r=t.position;s!==0&&!Ls(s);)s=t.input.charCodeAt(++t.position);for(n=t.input.slice(r,t.position),i=[],n.length<1&&Qt(t,"directive name must not be less than one character in length");s!==0;){for(;Nd(s);)s=t.input.charCodeAt(++t.position);if(s===35){do s=t.input.charCodeAt(++t.position);while(s!==0&&!dc(s));break}if(dc(s))break;for(r=t.position;s!==0&&!Ls(s);)s=t.input.charCodeAt(++t.position);i.push(t.input.slice(r,t.position))}s!==0&&hD(t),Gh.call(JX,n)?JX[n](t,n,i):bw(t,'unknown document directive "'+n+'"')}if(Ci(t,!0,-1),t.lineIndent===0&&t.input.charCodeAt(t.position)===45&&t.input.charCodeAt(t.position+1)===45&&t.input.charCodeAt(t.position+2)===45?(t.position+=3,Ci(t,!0,-1)):a&&Qt(t,"directives end mark is expected"),om(t,t.lineIndent-1,xw,!1,!0),Ci(t,!0,-1),t.checkLineBreaks&&nAe.test(t.input.slice(e,t.position))&&bw(t,"non-ASCII line breaks are interpreted as content"),t.documents.push(t.result),t.position===t.lineStart&&kw(t)){t.input.charCodeAt(t.position)===46&&(t.position+=3,Ci(t,!0,-1));return}if(t.position"u"&&(r=e,e=null);var n=kj(t,r);if(typeof e!="function")return n;for(var i=0,a=n.length;i=55296&&r<=56319&&e+1=56320&&n<=57343)?(r-55296)*1024+n-56320+65536:r}function Nj(t){var e=/^\n* /;return e.test(t)}function jAe(t,e,r,n,i,a,s,l){var u,h=0,f=null,d=!1,p=!1,m=n!==-1,g=-1,y=YAe(s2(t,0))&&XAe(s2(t,t.length-1));if(e||s)for(u=0;u=65536?u+=2:u++){if(h=s2(t,u),!u2(h))return im;y=y&&ij(h,f,l),f=h}else{for(u=0;u=65536?u+=2:u++){if(h=s2(t,u),h===l2)d=!0,m&&(p=p||u-g-1>n&&t[g+1]!==" ",g=u);else if(!u2(h))return im;y=y&&ij(h,f,l),f=h}p=p||m&&u-g-1>n&&t[g+1]!==" "}return!d&&!p?y&&!s&&!i(t)?Mj:a===c2?im:lD:r>9&&Nj(t)?im:s?a===c2?im:lD:p?Oj:Ij}function KAe(t,e,r,n,i){t.dump=function(){if(e.length===0)return t.quotingType===c2?'""':"''";if(!t.noCompatMode&&(zAe.indexOf(e)!==-1||GAe.test(e)))return t.quotingType===c2?'"'+e+'"':"'"+e+"'";var a=t.indent*Math.max(1,r),s=t.lineWidth===-1?-1:Math.max(Math.min(t.lineWidth,40),t.lineWidth-a),l=n||t.flowLevel>-1&&r>=t.flowLevel;function u(h){return qAe(t,h)}switch(o(u,"testAmbiguity"),jAe(e,l,t.indent,s,u,t.quotingType,t.forceQuotes&&!n,i)){case Mj:return e;case lD:return"'"+e.replace(/'/g,"''")+"'";case Ij:return"|"+aj(e,t.indent)+sj(rj(e,a));case Oj:return">"+aj(e,t.indent)+sj(rj(QAe(e,s),a));case im:return'"'+ZAe(e)+'"';default:throw new Ds("impossible error: invalid scalar style")}}()}function aj(t,e){var r=Nj(t)?String(e):"",n=t[t.length-1]===` +`,i=n&&(t[t.length-2]===` +`||t===` +`),a=i?"+":n?"":"-";return r+a+` +`}function sj(t){return t[t.length-1]===` +`?t.slice(0,-1):t}function QAe(t,e){for(var r=/(\n+)([^\n]*)/g,n=function(){var h=t.indexOf(` +`);return h=h!==-1?h:t.length,r.lastIndex=h,oj(t.slice(0,h),e)}(),i=t[0]===` +`||t[0]===" ",a,s;s=r.exec(t);){var l=s[1],u=s[2];a=u[0]===" ",n+=l+(!i&&!a&&u!==""?` +`:"")+oj(u,e),i=a}return n}function oj(t,e){if(t===""||t[0]===" ")return t;for(var r=/ [^ ]/g,n,i=0,a,s=0,l=0,u="";n=r.exec(t);)l=n.index,l-i>e&&(a=s>i?s:l,u+=` +`+t.slice(i,a),i=a+1),s=l;return u+=` +`,t.length-i>e&&s>i?u+=t.slice(i,s)+` +`+t.slice(s+1):u+=t.slice(i),u.slice(1)}function ZAe(t){for(var e="",r=0,n,i=0;i=65536?i+=2:i++)r=s2(t,i),n=Da[r],!n&&u2(r)?(e+=t[i],r>=65536&&(e+=t[i+1])):e+=n||UAe(r);return e}function JAe(t,e,r){var n="",i=t.tag,a,s,l;for(a=0,s=r.length;a"u"&&Au(t,e,null,!1,!1))&&(n!==""&&(n+=","+(t.condenseFlow?"":" ")),n+=t.dump);t.tag=i,t.dump="["+n+"]"}function lj(t,e,r,n){var i="",a=t.tag,s,l,u;for(s=0,l=r.length;s"u"&&Au(t,e+1,null,!0,!0,!1,!0))&&((!n||i!=="")&&(i+=oD(t,e)),t.dump&&l2===t.dump.charCodeAt(0)?i+="-":i+="- ",i+=t.dump);t.tag=a,t.dump=i||"[]"}function e8e(t,e,r){var n="",i=t.tag,a=Object.keys(r),s,l,u,h,f;for(s=0,l=a.length;s1024&&(f+="? "),f+=t.dump+(t.condenseFlow?'"':"")+":"+(t.condenseFlow?"":" "),Au(t,e,h,!1,!1)&&(f+=t.dump,n+=f));t.tag=i,t.dump="{"+n+"}"}function t8e(t,e,r,n){var i="",a=t.tag,s=Object.keys(r),l,u,h,f,d,p;if(t.sortKeys===!0)s.sort();else if(typeof t.sortKeys=="function")s.sort(t.sortKeys);else if(t.sortKeys)throw new Ds("sortKeys must be a boolean or a function");for(l=0,u=s.length;l1024,d&&(t.dump&&l2===t.dump.charCodeAt(0)?p+="?":p+="? "),p+=t.dump,d&&(p+=oD(t,e)),Au(t,e+1,f,!0,d)&&(t.dump&&l2===t.dump.charCodeAt(0)?p+=":":p+=": ",p+=t.dump,i+=p));t.tag=a,t.dump=i||"{}"}function cj(t,e,r){var n,i,a,s,l,u;for(i=r?t.explicitTypes:t.implicitTypes,a=0,s=i.length;a tag resolver accepts not "'+u+'" style');t.dump=n}return!0}return!1}function Au(t,e,r,n,i,a,s){t.tag=null,t.dump=r,cj(t,r,!1)||cj(t,r,!0);var l=Sj.call(t.dump),u=n,h;n&&(n=t.flowLevel<0||t.flowLevel>e);var f=l==="[object Object]"||l==="[object Array]",d,p;if(f&&(d=t.duplicates.indexOf(r),p=d!==-1),(t.tag!==null&&t.tag!=="?"||p||t.indent!==2&&e>0)&&(i=!1),p&&t.usedDuplicates[d])t.dump="*ref_"+d;else{if(f&&p&&!t.usedDuplicates[d]&&(t.usedDuplicates[d]=!0),l==="[object Object]")n&&Object.keys(t.dump).length!==0?(t8e(t,e,t.dump,i),p&&(t.dump="&ref_"+d+t.dump)):(e8e(t,e,t.dump),p&&(t.dump="&ref_"+d+" "+t.dump));else if(l==="[object Array]")n&&t.dump.length!==0?(t.noArrayIndent&&!s&&e>0?lj(t,e-1,t.dump,i):lj(t,e,t.dump,i),p&&(t.dump="&ref_"+d+t.dump)):(JAe(t,e,t.dump),p&&(t.dump="&ref_"+d+" "+t.dump));else if(l==="[object String]")t.tag!=="?"&&KAe(t,t.dump,e,a,u);else{if(l==="[object Undefined]")return!1;if(t.skipInvalid)return!1;throw new Ds("unacceptable kind of an object to dump "+l)}t.tag!==null&&t.tag!=="?"&&(h=encodeURI(t.tag[0]==="!"?t.tag.slice(1):t.tag).replace(/!/g,"%21"),t.tag[0]==="!"?h="!"+h:h.slice(0,18)==="tag:yaml.org,2002:"?h="!!"+h.slice(18):h="!<"+h+">",t.dump=h+" "+t.dump)}return!0}function r8e(t,e){var r=[],n=[],i,a;for(cD(t,r,n),i=0,a=n.length;i{"use strict";o(uj,"isNothing");o($Ce,"isObject");o(zCe,"toArray");o(GCe,"extend");o(VCe,"repeat");o(UCe,"isNegativeZero");HCe=uj,WCe=$Ce,qCe=zCe,YCe=VCe,XCe=UCe,jCe=GCe,$i={isNothing:HCe,isObject:WCe,toArray:qCe,repeat:YCe,isNegativeZero:XCe,extend:jCe};o(hj,"formatError");o(o2,"YAMLException$1");o2.prototype=Object.create(Error.prototype);o2.prototype.constructor=o2;o2.prototype.toString=o(function(e){return this.name+": "+hj(this,e)},"toString");Ds=o2;o(rD,"getLine");o(nD,"padStart");o(KCe,"makeSnippet");QCe=KCe,ZCe=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"],JCe=["scalar","sequence","mapping"];o(e7e,"compileStyleAliases");o(t7e,"Type$1");_a=t7e;o(jX,"compileList");o(r7e,"compileMap");o(aD,"Schema$1");aD.prototype.extend=o(function(e){var r=[],n=[];if(e instanceof _a)n.push(e);else if(Array.isArray(e))n=n.concat(e);else if(e&&(Array.isArray(e.implicit)||Array.isArray(e.explicit)))e.implicit&&(r=r.concat(e.implicit)),e.explicit&&(n=n.concat(e.explicit));else throw new Ds("Schema.extend argument should be a Type, [ Type ], or a schema definition ({ implicit: [...], explicit: [...] })");r.forEach(function(a){if(!(a instanceof _a))throw new Ds("Specified list of YAML types (or a single Type object) contains a non-Type object.");if(a.loadKind&&a.loadKind!=="scalar")throw new Ds("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.");if(a.multi)throw new Ds("There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.")}),n.forEach(function(a){if(!(a instanceof _a))throw new Ds("Specified list of YAML types (or a single Type object) contains a non-Type object.")});var i=Object.create(aD.prototype);return i.implicit=(this.implicit||[]).concat(r),i.explicit=(this.explicit||[]).concat(n),i.compiledImplicit=jX(i,"implicit"),i.compiledExplicit=jX(i,"explicit"),i.compiledTypeMap=r7e(i.compiledImplicit,i.compiledExplicit),i},"extend");n7e=aD,i7e=new _a("tag:yaml.org,2002:str",{kind:"scalar",construct:o(function(t){return t!==null?t:""},"construct")}),a7e=new _a("tag:yaml.org,2002:seq",{kind:"sequence",construct:o(function(t){return t!==null?t:[]},"construct")}),s7e=new _a("tag:yaml.org,2002:map",{kind:"mapping",construct:o(function(t){return t!==null?t:{}},"construct")}),o7e=new n7e({explicit:[i7e,a7e,s7e]});o(l7e,"resolveYamlNull");o(c7e,"constructYamlNull");o(u7e,"isNull");h7e=new _a("tag:yaml.org,2002:null",{kind:"scalar",resolve:l7e,construct:c7e,predicate:u7e,represent:{canonical:o(function(){return"~"},"canonical"),lowercase:o(function(){return"null"},"lowercase"),uppercase:o(function(){return"NULL"},"uppercase"),camelcase:o(function(){return"Null"},"camelcase"),empty:o(function(){return""},"empty")},defaultStyle:"lowercase"});o(f7e,"resolveYamlBoolean");o(d7e,"constructYamlBoolean");o(p7e,"isBoolean");m7e=new _a("tag:yaml.org,2002:bool",{kind:"scalar",resolve:f7e,construct:d7e,predicate:p7e,represent:{lowercase:o(function(t){return t?"true":"false"},"lowercase"),uppercase:o(function(t){return t?"TRUE":"FALSE"},"uppercase"),camelcase:o(function(t){return t?"True":"False"},"camelcase")},defaultStyle:"lowercase"});o(g7e,"isHexCode");o(y7e,"isOctCode");o(v7e,"isDecCode");o(x7e,"resolveYamlInteger");o(b7e,"constructYamlInteger");o(w7e,"isInteger");T7e=new _a("tag:yaml.org,2002:int",{kind:"scalar",resolve:x7e,construct:b7e,predicate:w7e,represent:{binary:o(function(t){return t>=0?"0b"+t.toString(2):"-0b"+t.toString(2).slice(1)},"binary"),octal:o(function(t){return t>=0?"0o"+t.toString(8):"-0o"+t.toString(8).slice(1)},"octal"),decimal:o(function(t){return t.toString(10)},"decimal"),hexadecimal:o(function(t){return t>=0?"0x"+t.toString(16).toUpperCase():"-0x"+t.toString(16).toUpperCase().slice(1)},"hexadecimal")},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}}),k7e=new RegExp("^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");o(E7e,"resolveYamlFloat");o(S7e,"constructYamlFloat");C7e=/^[-+]?[0-9]+e/;o(A7e,"representYamlFloat");o(_7e,"isFloat");D7e=new _a("tag:yaml.org,2002:float",{kind:"scalar",resolve:E7e,construct:S7e,predicate:_7e,represent:A7e,defaultStyle:"lowercase"}),fj=o7e.extend({implicit:[h7e,m7e,T7e,D7e]}),L7e=fj,dj=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),pj=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$");o(R7e,"resolveYamlTimestamp");o(N7e,"constructYamlTimestamp");o(M7e,"representYamlTimestamp");I7e=new _a("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:R7e,construct:N7e,instanceOf:Date,represent:M7e});o(O7e,"resolveYamlMerge");P7e=new _a("tag:yaml.org,2002:merge",{kind:"scalar",resolve:O7e}),uD=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/= +\r`;o(B7e,"resolveYamlBinary");o(F7e,"constructYamlBinary");o($7e,"representYamlBinary");o(z7e,"isBinary");G7e=new _a("tag:yaml.org,2002:binary",{kind:"scalar",resolve:B7e,construct:F7e,predicate:z7e,represent:$7e}),V7e=Object.prototype.hasOwnProperty,U7e=Object.prototype.toString;o(H7e,"resolveYamlOmap");o(W7e,"constructYamlOmap");q7e=new _a("tag:yaml.org,2002:omap",{kind:"sequence",resolve:H7e,construct:W7e}),Y7e=Object.prototype.toString;o(X7e,"resolveYamlPairs");o(j7e,"constructYamlPairs");K7e=new _a("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:X7e,construct:j7e}),Q7e=Object.prototype.hasOwnProperty;o(Z7e,"resolveYamlSet");o(J7e,"constructYamlSet");eAe=new _a("tag:yaml.org,2002:set",{kind:"mapping",resolve:Z7e,construct:J7e}),mj=L7e.extend({implicit:[I7e,P7e],explicit:[G7e,q7e,K7e,eAe]}),Gh=Object.prototype.hasOwnProperty,vw=1,gj=2,yj=3,xw=4,iD=1,tAe=2,KX=3,rAe=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,nAe=/[\x85\u2028\u2029]/,iAe=/[,\[\]\{\}]/,vj=/^(?:!|!!|![a-z\-]+!)$/i,xj=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;o(QX,"_class");o(dc,"is_EOL");o(Nd,"is_WHITE_SPACE");o(Ls,"is_WS_OR_EOL");o(am,"is_FLOW_INDICATOR");o(aAe,"fromHexCode");o(sAe,"escapedHexLen");o(oAe,"fromDecimalCode");o(ZX,"simpleEscapeSequence");o(lAe,"charFromCodepoint");bj=new Array(256),wj=new Array(256);for(Rd=0;Rd<256;Rd++)bj[Rd]=ZX(Rd)?1:0,wj[Rd]=ZX(Rd);o(cAe,"State$1");o(Tj,"generateError");o(Qt,"throwError");o(bw,"throwWarning");JX={YAML:o(function(e,r,n){var i,a,s;e.version!==null&&Qt(e,"duplication of %YAML directive"),n.length!==1&&Qt(e,"YAML directive accepts exactly one argument"),i=/^([0-9]+)\.([0-9]+)$/.exec(n[0]),i===null&&Qt(e,"ill-formed argument of the YAML directive"),a=parseInt(i[1],10),s=parseInt(i[2],10),a!==1&&Qt(e,"unacceptable YAML version of the document"),e.version=n[0],e.checkLineBreaks=s<2,s!==1&&s!==2&&bw(e,"unsupported YAML version of the document")},"handleYamlDirective"),TAG:o(function(e,r,n){var i,a;n.length!==2&&Qt(e,"TAG directive accepts exactly two arguments"),i=n[0],a=n[1],vj.test(i)||Qt(e,"ill-formed tag handle (first argument) of the TAG directive"),Gh.call(e.tagMap,i)&&Qt(e,'there is a previously declared suffix for "'+i+'" tag handle'),xj.test(a)||Qt(e,"ill-formed tag prefix (second argument) of the TAG directive");try{a=decodeURIComponent(a)}catch{Qt(e,"tag prefix is malformed: "+a)}e.tagMap[i]=a},"handleTagDirective")};o(zh,"captureSegment");o(ej,"mergeMappings");o(sm,"storeMappingPair");o(hD,"readLineBreak");o(Ci,"skipSeparationSpace");o(kw,"testDocumentSeparator");o(fD,"writeFoldedLines");o(uAe,"readPlainScalar");o(hAe,"readSingleQuotedScalar");o(fAe,"readDoubleQuotedScalar");o(dAe,"readFlowCollection");o(pAe,"readBlockScalar");o(tj,"readBlockSequence");o(mAe,"readBlockMapping");o(gAe,"readTagProperty");o(yAe,"readAnchorProperty");o(vAe,"readAlias");o(om,"composeNode");o(xAe,"readDocument");o(kj,"loadDocuments");o(bAe,"loadAll$1");o(wAe,"load$1");TAe=bAe,kAe=wAe,Ej={loadAll:TAe,load:kAe},Sj=Object.prototype.toString,Cj=Object.prototype.hasOwnProperty,dD=65279,EAe=9,l2=10,SAe=13,CAe=32,AAe=33,_Ae=34,sD=35,DAe=37,LAe=38,RAe=39,NAe=42,Aj=44,MAe=45,ww=58,IAe=61,OAe=62,PAe=63,BAe=64,_j=91,Dj=93,FAe=96,Lj=123,$Ae=124,Rj=125,Da={};Da[0]="\\0";Da[7]="\\a";Da[8]="\\b";Da[9]="\\t";Da[10]="\\n";Da[11]="\\v";Da[12]="\\f";Da[13]="\\r";Da[27]="\\e";Da[34]='\\"';Da[92]="\\\\";Da[133]="\\N";Da[160]="\\_";Da[8232]="\\L";Da[8233]="\\P";zAe=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"],GAe=/^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;o(VAe,"compileStyleMap");o(UAe,"encodeHex");HAe=1,c2=2;o(WAe,"State");o(rj,"indentString");o(oD,"generateNextLine");o(qAe,"testImplicitResolving");o(Tw,"isWhitespace");o(u2,"isPrintable");o(nj,"isNsCharOrWhitespace");o(ij,"isPlainSafe");o(YAe,"isPlainSafeFirst");o(XAe,"isPlainSafeLast");o(s2,"codePointAt");o(Nj,"needIndentIndicator");Mj=1,lD=2,Ij=3,Oj=4,im=5;o(jAe,"chooseScalarStyle");o(KAe,"writeScalar");o(aj,"blockHeader");o(sj,"dropEndingNewline");o(QAe,"foldString");o(oj,"foldLine");o(ZAe,"escapeString");o(JAe,"writeFlowSequence");o(lj,"writeBlockSequence");o(e8e,"writeFlowMapping");o(t8e,"writeBlockMapping");o(cj,"detectType");o(Au,"writeNode");o(r8e,"getDuplicateReferences");o(cD,"inspectNode");o(n8e,"dump$1");i8e=n8e,a8e={dump:i8e};o(pD,"renamed");lm=fj,cm=Ej.load,okt=Ej.loadAll,lkt=a8e.dump,ckt=pD("safeLoad","load"),ukt=pD("safeLoadAll","loadAll"),hkt=pD("safeDump","dump")});function vD(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}function Gj(t){Id=t}function nn(t,e=""){let r=typeof t=="string"?t:t.source,n={replace:o((i,a)=>{let s=typeof a=="string"?a:a.source;return s=s.replace(ts.caret,"$1"),r=r.replace(i,s),n},"replace"),getRegex:o(()=>new RegExp(r,e),"getRegex")};return n}function pc(t,e){if(e){if(ts.escapeTest.test(t))return t.replace(ts.escapeReplace,Bj)}else if(ts.escapeTestNoEncode.test(t))return t.replace(ts.escapeReplaceNoEncode,Bj);return t}function Fj(t){try{t=encodeURI(t).replace(ts.percentDecode,"%")}catch{return null}return t}function $j(t,e){let r=t.replace(ts.findPipe,(a,s,l)=>{let u=!1,h=s;for(;--h>=0&&l[h]==="\\";)u=!u;return u?"|":" |"}),n=r.split(ts.splitPipe),i=0;if(n[0].trim()||n.shift(),n.length>0&&!n.at(-1)?.trim()&&n.pop(),e)if(n.length>e)n.splice(e);else for(;n.length{let s=a.match(r.other.beginningSpace);if(s===null)return a;let[l]=s;return l.length>=i.length?a.slice(i.length):a}).join(` +`)}function Jr(t,e){return Md.parse(t,e)}var Id,d2,ts,s8e,o8e,l8e,m2,c8e,xD,Vj,Uj,u8e,bD,h8e,wD,f8e,d8e,Aw,TD,p8e,Hj,m8e,kD,Pj,g8e,y8e,v8e,x8e,Wj,b8e,_w,ED,qj,w8e,Yj,T8e,k8e,E8e,Xj,S8e,C8e,jj,A8e,_8e,D8e,L8e,R8e,N8e,M8e,Cw,I8e,Kj,Qj,O8e,SD,P8e,gD,B8e,Sw,h2,F8e,Bj,hm,Al,fm,p2,_l,um,yD,Md,dkt,pkt,mkt,gkt,ykt,vkt,xkt,Zj=N(()=>{"use strict";o(vD,"_getDefaults");Id=vD();o(Gj,"changeDefaults");d2={exec:o(()=>null,"exec")};o(nn,"edit");ts={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] /,listReplaceTask:/^\[[ xX]\] +/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,unescapeTest:/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:o(t=>new RegExp(`^( {0,3}${t})((?:[ ][^\\n]*)?(?:\\n|$))`),"listItemRegex"),nextBulletRegex:o(t=>new RegExp(`^ {0,${Math.min(3,t-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),"nextBulletRegex"),hrRegex:o(t=>new RegExp(`^ {0,${Math.min(3,t-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),"hrRegex"),fencesBeginRegex:o(t=>new RegExp(`^ {0,${Math.min(3,t-1)}}(?:\`\`\`|~~~)`),"fencesBeginRegex"),headingBeginRegex:o(t=>new RegExp(`^ {0,${Math.min(3,t-1)}}#`),"headingBeginRegex"),htmlBeginRegex:o(t=>new RegExp(`^ {0,${Math.min(3,t-1)}}<(?:[a-z].*>|!--)`,"i"),"htmlBeginRegex")},s8e=/^(?:[ \t]*(?:\n|$))+/,o8e=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,l8e=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,m2=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,c8e=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,xD=/(?:[*+-]|\d{1,9}[.)])/,Vj=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,Uj=nn(Vj).replace(/bull/g,xD).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),u8e=nn(Vj).replace(/bull/g,xD).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),bD=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,h8e=/^[^\n]+/,wD=/(?!\s*\])(?:\\.|[^\[\]\\])+/,f8e=nn(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",wD).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),d8e=nn(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,xD).getRegex(),Aw="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",TD=/|$))/,p8e=nn("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",TD).replace("tag",Aw).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),Hj=nn(bD).replace("hr",m2).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Aw).getRegex(),m8e=nn(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",Hj).getRegex(),kD={blockquote:m8e,code:o8e,def:f8e,fences:l8e,heading:c8e,hr:m2,html:p8e,lheading:Uj,list:d8e,newline:s8e,paragraph:Hj,table:d2,text:h8e},Pj=nn("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",m2).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Aw).getRegex(),g8e={...kD,lheading:u8e,table:Pj,paragraph:nn(bD).replace("hr",m2).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",Pj).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Aw).getRegex()},y8e={...kD,html:nn(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",TD).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:d2,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:nn(bD).replace("hr",m2).replace("heading",` *#{1,6} *[^ +]`).replace("lheading",Uj).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},v8e=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,x8e=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,Wj=/^( {2,}|\\)\n(?!\s*$)/,b8e=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\]*?>/g,Xj=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,S8e=nn(Xj,"u").replace(/punct/g,_w).getRegex(),C8e=nn(Xj,"u").replace(/punct/g,Yj).getRegex(),jj="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",A8e=nn(jj,"gu").replace(/notPunctSpace/g,qj).replace(/punctSpace/g,ED).replace(/punct/g,_w).getRegex(),_8e=nn(jj,"gu").replace(/notPunctSpace/g,k8e).replace(/punctSpace/g,T8e).replace(/punct/g,Yj).getRegex(),D8e=nn("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,qj).replace(/punctSpace/g,ED).replace(/punct/g,_w).getRegex(),L8e=nn(/\\(punct)/,"gu").replace(/punct/g,_w).getRegex(),R8e=nn(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),N8e=nn(TD).replace("(?:-->|$)","-->").getRegex(),M8e=nn("^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^").replace("comment",N8e).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),Cw=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,I8e=nn(/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/).replace("label",Cw).replace("href",/<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),Kj=nn(/^!?\[(label)\]\[(ref)\]/).replace("label",Cw).replace("ref",wD).getRegex(),Qj=nn(/^!?\[(ref)\](?:\[\])?/).replace("ref",wD).getRegex(),O8e=nn("reflink|nolink(?!\\()","g").replace("reflink",Kj).replace("nolink",Qj).getRegex(),SD={_backpedal:d2,anyPunctuation:L8e,autolink:R8e,blockSkip:E8e,br:Wj,code:x8e,del:d2,emStrongLDelim:S8e,emStrongRDelimAst:A8e,emStrongRDelimUnd:D8e,escape:v8e,link:I8e,nolink:Qj,punctuation:w8e,reflink:Kj,reflinkSearch:O8e,tag:M8e,text:b8e,url:d2},P8e={...SD,link:nn(/^!?\[(label)\]\((.*?)\)/).replace("label",Cw).getRegex(),reflink:nn(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",Cw).getRegex()},gD={...SD,emStrongRDelimAst:_8e,emStrongLDelim:C8e,url:nn(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,"i").replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\.|[^\\])*?(?:\\.|[^\s~\\]))\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\":">",'"':""","'":"'"},Bj=o(t=>F8e[t],"getEscapeReplacement");o(pc,"escape");o(Fj,"cleanUrl");o($j,"splitCells");o(f2,"rtrim");o($8e,"findClosingBracket");o(zj,"outputLink");o(z8e,"indentCodeCompensation");hm=class{static{o(this,"_Tokenizer")}options;rules;lexer;constructor(e){this.options=e||Id}space(e){let r=this.rules.block.newline.exec(e);if(r&&r[0].length>0)return{type:"space",raw:r[0]}}code(e){let r=this.rules.block.code.exec(e);if(r){let n=r[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:r[0],codeBlockStyle:"indented",text:this.options.pedantic?n:f2(n,` +`)}}}fences(e){let r=this.rules.block.fences.exec(e);if(r){let n=r[0],i=z8e(n,r[3]||"",this.rules);return{type:"code",raw:n,lang:r[2]?r[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):r[2],text:i}}}heading(e){let r=this.rules.block.heading.exec(e);if(r){let n=r[2].trim();if(this.rules.other.endingHash.test(n)){let i=f2(n,"#");(this.options.pedantic||!i||this.rules.other.endingSpaceChar.test(i))&&(n=i.trim())}return{type:"heading",raw:r[0],depth:r[1].length,text:n,tokens:this.lexer.inline(n)}}}hr(e){let r=this.rules.block.hr.exec(e);if(r)return{type:"hr",raw:f2(r[0],` +`)}}blockquote(e){let r=this.rules.block.blockquote.exec(e);if(r){let n=f2(r[0],` +`).split(` +`),i="",a="",s=[];for(;n.length>0;){let l=!1,u=[],h;for(h=0;h1,a={type:"list",raw:"",ordered:i,start:i?+n.slice(0,-1):"",loose:!1,items:[]};n=i?`\\d{1,9}\\${n.slice(-1)}`:`\\${n}`,this.options.pedantic&&(n=i?n:"[*+-]");let s=this.rules.other.listItemRegex(n),l=!1;for(;e;){let h=!1,f="",d="";if(!(r=s.exec(e))||this.rules.block.hr.test(e))break;f=r[0],e=e.substring(f.length);let p=r[2].split(` +`,1)[0].replace(this.rules.other.listReplaceTabs,b=>" ".repeat(3*b.length)),m=e.split(` +`,1)[0],g=!p.trim(),y=0;if(this.options.pedantic?(y=2,d=p.trimStart()):g?y=r[1].length+1:(y=r[2].search(this.rules.other.nonSpaceChar),y=y>4?1:y,d=p.slice(y),y+=r[1].length),g&&this.rules.other.blankLine.test(m)&&(f+=m+` +`,e=e.substring(m.length+1),h=!0),!h){let b=this.rules.other.nextBulletRegex(y),w=this.rules.other.hrRegex(y),C=this.rules.other.fencesBeginRegex(y),T=this.rules.other.headingBeginRegex(y),E=this.rules.other.htmlBeginRegex(y);for(;e;){let A=e.split(` +`,1)[0],S;if(m=A,this.options.pedantic?(m=m.replace(this.rules.other.listReplaceNesting," "),S=m):S=m.replace(this.rules.other.tabCharGlobal," "),C.test(m)||T.test(m)||E.test(m)||b.test(m)||w.test(m))break;if(S.search(this.rules.other.nonSpaceChar)>=y||!m.trim())d+=` +`+S.slice(y);else{if(g||p.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||C.test(p)||T.test(p)||w.test(p))break;d+=` +`+m}!g&&!m.trim()&&(g=!0),f+=A+` +`,e=e.substring(A.length+1),p=S.slice(y)}}a.loose||(l?a.loose=!0:this.rules.other.doubleBlankLine.test(f)&&(l=!0));let v=null,x;this.options.gfm&&(v=this.rules.other.listIsTask.exec(d),v&&(x=v[0]!=="[ ] ",d=d.replace(this.rules.other.listReplaceTask,""))),a.items.push({type:"list_item",raw:f,task:!!v,checked:x,loose:!1,text:d,tokens:[]}),a.raw+=f}let u=a.items.at(-1);if(u)u.raw=u.raw.trimEnd(),u.text=u.text.trimEnd();else return;a.raw=a.raw.trimEnd();for(let h=0;hp.type==="space"),d=f.length>0&&f.some(p=>this.rules.other.anyLine.test(p.raw));a.loose=d}if(a.loose)for(let h=0;h({text:u,tokens:this.lexer.inline(u),header:!1,align:s.align[h]})));return s}}lheading(e){let r=this.rules.block.lheading.exec(e);if(r)return{type:"heading",raw:r[0],depth:r[2].charAt(0)==="="?1:2,text:r[1],tokens:this.lexer.inline(r[1])}}paragraph(e){let r=this.rules.block.paragraph.exec(e);if(r){let n=r[1].charAt(r[1].length-1)===` +`?r[1].slice(0,-1):r[1];return{type:"paragraph",raw:r[0],text:n,tokens:this.lexer.inline(n)}}}text(e){let r=this.rules.block.text.exec(e);if(r)return{type:"text",raw:r[0],text:r[0],tokens:this.lexer.inline(r[0])}}escape(e){let r=this.rules.inline.escape.exec(e);if(r)return{type:"escape",raw:r[0],text:r[1]}}tag(e){let r=this.rules.inline.tag.exec(e);if(r)return!this.lexer.state.inLink&&this.rules.other.startATag.test(r[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(r[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(r[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(r[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:r[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:r[0]}}link(e){let r=this.rules.inline.link.exec(e);if(r){let n=r[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(n)){if(!this.rules.other.endAngleBracket.test(n))return;let s=f2(n.slice(0,-1),"\\");if((n.length-s.length)%2===0)return}else{let s=$8e(r[2],"()");if(s>-1){let u=(r[0].indexOf("!")===0?5:4)+r[1].length+s;r[2]=r[2].substring(0,s),r[0]=r[0].substring(0,u).trim(),r[3]=""}}let i=r[2],a="";if(this.options.pedantic){let s=this.rules.other.pedanticHrefTitle.exec(i);s&&(i=s[1],a=s[3])}else a=r[3]?r[3].slice(1,-1):"";return i=i.trim(),this.rules.other.startAngleBracket.test(i)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(n)?i=i.slice(1):i=i.slice(1,-1)),zj(r,{href:i&&i.replace(this.rules.inline.anyPunctuation,"$1"),title:a&&a.replace(this.rules.inline.anyPunctuation,"$1")},r[0],this.lexer,this.rules)}}reflink(e,r){let n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){let i=(n[2]||n[1]).replace(this.rules.other.multipleSpaceGlobal," "),a=r[i.toLowerCase()];if(!a){let s=n[0].charAt(0);return{type:"text",raw:s,text:s}}return zj(n,a,n[0],this.lexer,this.rules)}}emStrong(e,r,n=""){let i=this.rules.inline.emStrongLDelim.exec(e);if(!i||i[3]&&n.match(this.rules.other.unicodeAlphaNumeric))return;if(!(i[1]||i[2]||"")||!n||this.rules.inline.punctuation.exec(n)){let s=[...i[0]].length-1,l,u,h=s,f=0,d=i[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(d.lastIndex=0,r=r.slice(-1*e.length+s);(i=d.exec(r))!=null;){if(l=i[1]||i[2]||i[3]||i[4]||i[5]||i[6],!l)continue;if(u=[...l].length,i[3]||i[4]){h+=u;continue}else if((i[5]||i[6])&&s%3&&!((s+u)%3)){f+=u;continue}if(h-=u,h>0)continue;u=Math.min(u,u+h+f);let p=[...i[0]][0].length,m=e.slice(0,s+i.index+p+u);if(Math.min(s,u)%2){let y=m.slice(1,-1);return{type:"em",raw:m,text:y,tokens:this.lexer.inlineTokens(y)}}let g=m.slice(2,-2);return{type:"strong",raw:m,text:g,tokens:this.lexer.inlineTokens(g)}}}}codespan(e){let r=this.rules.inline.code.exec(e);if(r){let n=r[2].replace(this.rules.other.newLineCharGlobal," "),i=this.rules.other.nonSpaceChar.test(n),a=this.rules.other.startingSpaceChar.test(n)&&this.rules.other.endingSpaceChar.test(n);return i&&a&&(n=n.substring(1,n.length-1)),{type:"codespan",raw:r[0],text:n}}}br(e){let r=this.rules.inline.br.exec(e);if(r)return{type:"br",raw:r[0]}}del(e){let r=this.rules.inline.del.exec(e);if(r)return{type:"del",raw:r[0],text:r[2],tokens:this.lexer.inlineTokens(r[2])}}autolink(e){let r=this.rules.inline.autolink.exec(e);if(r){let n,i;return r[2]==="@"?(n=r[1],i="mailto:"+n):(n=r[1],i=n),{type:"link",raw:r[0],text:n,href:i,tokens:[{type:"text",raw:n,text:n}]}}}url(e){let r;if(r=this.rules.inline.url.exec(e)){let n,i;if(r[2]==="@")n=r[0],i="mailto:"+n;else{let a;do a=r[0],r[0]=this.rules.inline._backpedal.exec(r[0])?.[0]??"";while(a!==r[0]);n=r[0],r[1]==="www."?i="http://"+r[0]:i=r[0]}return{type:"link",raw:r[0],text:n,href:i,tokens:[{type:"text",raw:n,text:n}]}}}inlineText(e){let r=this.rules.inline.text.exec(e);if(r){let n=this.lexer.state.inRawBlock;return{type:"text",raw:r[0],text:r[0],escaped:n}}}},Al=class t{static{o(this,"_Lexer")}tokens;options;state;tokenizer;inlineQueue;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||Id,this.options.tokenizer=this.options.tokenizer||new hm,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let r={other:ts,block:Sw.normal,inline:h2.normal};this.options.pedantic?(r.block=Sw.pedantic,r.inline=h2.pedantic):this.options.gfm&&(r.block=Sw.gfm,this.options.breaks?r.inline=h2.breaks:r.inline=h2.gfm),this.tokenizer.rules=r}static get rules(){return{block:Sw,inline:h2}}static lex(e,r){return new t(r).lex(e)}static lexInline(e,r){return new t(r).inlineTokens(e)}lex(e){e=e.replace(ts.carriageReturn,` +`),this.blockTokens(e,this.tokens);for(let r=0;r(i=s.call({lexer:this},e,r))?(e=e.substring(i.raw.length),r.push(i),!0):!1))continue;if(i=this.tokenizer.space(e)){e=e.substring(i.raw.length);let s=r.at(-1);i.raw.length===1&&s!==void 0?s.raw+=` +`:r.push(i);continue}if(i=this.tokenizer.code(e)){e=e.substring(i.raw.length);let s=r.at(-1);s?.type==="paragraph"||s?.type==="text"?(s.raw+=` +`+i.raw,s.text+=` +`+i.text,this.inlineQueue.at(-1).src=s.text):r.push(i);continue}if(i=this.tokenizer.fences(e)){e=e.substring(i.raw.length),r.push(i);continue}if(i=this.tokenizer.heading(e)){e=e.substring(i.raw.length),r.push(i);continue}if(i=this.tokenizer.hr(e)){e=e.substring(i.raw.length),r.push(i);continue}if(i=this.tokenizer.blockquote(e)){e=e.substring(i.raw.length),r.push(i);continue}if(i=this.tokenizer.list(e)){e=e.substring(i.raw.length),r.push(i);continue}if(i=this.tokenizer.html(e)){e=e.substring(i.raw.length),r.push(i);continue}if(i=this.tokenizer.def(e)){e=e.substring(i.raw.length);let s=r.at(-1);s?.type==="paragraph"||s?.type==="text"?(s.raw+=` +`+i.raw,s.text+=` +`+i.raw,this.inlineQueue.at(-1).src=s.text):this.tokens.links[i.tag]||(this.tokens.links[i.tag]={href:i.href,title:i.title});continue}if(i=this.tokenizer.table(e)){e=e.substring(i.raw.length),r.push(i);continue}if(i=this.tokenizer.lheading(e)){e=e.substring(i.raw.length),r.push(i);continue}let a=e;if(this.options.extensions?.startBlock){let s=1/0,l=e.slice(1),u;this.options.extensions.startBlock.forEach(h=>{u=h.call({lexer:this},l),typeof u=="number"&&u>=0&&(s=Math.min(s,u))}),s<1/0&&s>=0&&(a=e.substring(0,s+1))}if(this.state.top&&(i=this.tokenizer.paragraph(a))){let s=r.at(-1);n&&s?.type==="paragraph"?(s.raw+=` +`+i.raw,s.text+=` +`+i.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=s.text):r.push(i),n=a.length!==e.length,e=e.substring(i.raw.length);continue}if(i=this.tokenizer.text(e)){e=e.substring(i.raw.length);let s=r.at(-1);s?.type==="text"?(s.raw+=` +`+i.raw,s.text+=` +`+i.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=s.text):r.push(i);continue}if(e){let s="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(s);break}else throw new Error(s)}}return this.state.top=!0,r}inline(e,r=[]){return this.inlineQueue.push({src:e,tokens:r}),r}inlineTokens(e,r=[]){let n=e,i=null;if(this.tokens.links){let l=Object.keys(this.tokens.links);if(l.length>0)for(;(i=this.tokenizer.rules.inline.reflinkSearch.exec(n))!=null;)l.includes(i[0].slice(i[0].lastIndexOf("[")+1,-1))&&(n=n.slice(0,i.index)+"["+"a".repeat(i[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(i=this.tokenizer.rules.inline.blockSkip.exec(n))!=null;)n=n.slice(0,i.index)+"["+"a".repeat(i[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;(i=this.tokenizer.rules.inline.anyPunctuation.exec(n))!=null;)n=n.slice(0,i.index)+"++"+n.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);let a=!1,s="";for(;e;){a||(s=""),a=!1;let l;if(this.options.extensions?.inline?.some(h=>(l=h.call({lexer:this},e,r))?(e=e.substring(l.raw.length),r.push(l),!0):!1))continue;if(l=this.tokenizer.escape(e)){e=e.substring(l.raw.length),r.push(l);continue}if(l=this.tokenizer.tag(e)){e=e.substring(l.raw.length),r.push(l);continue}if(l=this.tokenizer.link(e)){e=e.substring(l.raw.length),r.push(l);continue}if(l=this.tokenizer.reflink(e,this.tokens.links)){e=e.substring(l.raw.length);let h=r.at(-1);l.type==="text"&&h?.type==="text"?(h.raw+=l.raw,h.text+=l.text):r.push(l);continue}if(l=this.tokenizer.emStrong(e,n,s)){e=e.substring(l.raw.length),r.push(l);continue}if(l=this.tokenizer.codespan(e)){e=e.substring(l.raw.length),r.push(l);continue}if(l=this.tokenizer.br(e)){e=e.substring(l.raw.length),r.push(l);continue}if(l=this.tokenizer.del(e)){e=e.substring(l.raw.length),r.push(l);continue}if(l=this.tokenizer.autolink(e)){e=e.substring(l.raw.length),r.push(l);continue}if(!this.state.inLink&&(l=this.tokenizer.url(e))){e=e.substring(l.raw.length),r.push(l);continue}let u=e;if(this.options.extensions?.startInline){let h=1/0,f=e.slice(1),d;this.options.extensions.startInline.forEach(p=>{d=p.call({lexer:this},f),typeof d=="number"&&d>=0&&(h=Math.min(h,d))}),h<1/0&&h>=0&&(u=e.substring(0,h+1))}if(l=this.tokenizer.inlineText(u)){e=e.substring(l.raw.length),l.raw.slice(-1)!=="_"&&(s=l.raw.slice(-1)),a=!0;let h=r.at(-1);h?.type==="text"?(h.raw+=l.raw,h.text+=l.text):r.push(l);continue}if(e){let h="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(h);break}else throw new Error(h)}}return r}},fm=class{static{o(this,"_Renderer")}options;parser;constructor(e){this.options=e||Id}space(e){return""}code({text:e,lang:r,escaped:n}){let i=(r||"").match(ts.notSpaceStart)?.[0],a=e.replace(ts.endingNewline,"")+` +`;return i?'
'+(n?a:pc(a,!0))+`
+`:"
"+(n?a:pc(a,!0))+`
+`}blockquote({tokens:e}){return`
+${this.parser.parse(e)}
+`}html({text:e}){return e}heading({tokens:e,depth:r}){return`${this.parser.parseInline(e)} +`}hr(e){return`
+`}list(e){let r=e.ordered,n=e.start,i="";for(let l=0;l +`+i+" +`}listitem(e){let r="";if(e.task){let n=this.checkbox({checked:!!e.checked});e.loose?e.tokens[0]?.type==="paragraph"?(e.tokens[0].text=n+" "+e.tokens[0].text,e.tokens[0].tokens&&e.tokens[0].tokens.length>0&&e.tokens[0].tokens[0].type==="text"&&(e.tokens[0].tokens[0].text=n+" "+pc(e.tokens[0].tokens[0].text),e.tokens[0].tokens[0].escaped=!0)):e.tokens.unshift({type:"text",raw:n+" ",text:n+" ",escaped:!0}):r+=n+" "}return r+=this.parser.parse(e.tokens,!!e.loose),`
  • ${r}
  • +`}checkbox({checked:e}){return"'}paragraph({tokens:e}){return`

    ${this.parser.parseInline(e)}

    +`}table(e){let r="",n="";for(let a=0;a${i}`),` + +`+r+` +`+i+`
    +`}tablerow({text:e}){return` +${e} +`}tablecell(e){let r=this.parser.parseInline(e.tokens),n=e.header?"th":"td";return(e.align?`<${n} align="${e.align}">`:`<${n}>`)+r+` +`}strong({tokens:e}){return`${this.parser.parseInline(e)}`}em({tokens:e}){return`${this.parser.parseInline(e)}`}codespan({text:e}){return`${pc(e,!0)}`}br(e){return"
    "}del({tokens:e}){return`${this.parser.parseInline(e)}`}link({href:e,title:r,tokens:n}){let i=this.parser.parseInline(n),a=Fj(e);if(a===null)return i;e=a;let s='
    ",s}image({href:e,title:r,text:n}){let i=Fj(e);if(i===null)return pc(n);e=i;let a=`${n}{let l=a[s].flat(1/0);n=n.concat(this.walkTokens(l,r))}):a.tokens&&(n=n.concat(this.walkTokens(a.tokens,r)))}}return n}use(...e){let r=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(n=>{let i={...n};if(i.async=this.defaults.async||i.async||!1,n.extensions&&(n.extensions.forEach(a=>{if(!a.name)throw new Error("extension name required");if("renderer"in a){let s=r.renderers[a.name];s?r.renderers[a.name]=function(...l){let u=a.renderer.apply(this,l);return u===!1&&(u=s.apply(this,l)),u}:r.renderers[a.name]=a.renderer}if("tokenizer"in a){if(!a.level||a.level!=="block"&&a.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let s=r[a.level];s?s.unshift(a.tokenizer):r[a.level]=[a.tokenizer],a.start&&(a.level==="block"?r.startBlock?r.startBlock.push(a.start):r.startBlock=[a.start]:a.level==="inline"&&(r.startInline?r.startInline.push(a.start):r.startInline=[a.start]))}"childTokens"in a&&a.childTokens&&(r.childTokens[a.name]=a.childTokens)}),i.extensions=r),n.renderer){let a=this.defaults.renderer||new fm(this.defaults);for(let s in n.renderer){if(!(s in a))throw new Error(`renderer '${s}' does not exist`);if(["options","parser"].includes(s))continue;let l=s,u=n.renderer[l],h=a[l];a[l]=(...f)=>{let d=u.apply(a,f);return d===!1&&(d=h.apply(a,f)),d||""}}i.renderer=a}if(n.tokenizer){let a=this.defaults.tokenizer||new hm(this.defaults);for(let s in n.tokenizer){if(!(s in a))throw new Error(`tokenizer '${s}' does not exist`);if(["options","rules","lexer"].includes(s))continue;let l=s,u=n.tokenizer[l],h=a[l];a[l]=(...f)=>{let d=u.apply(a,f);return d===!1&&(d=h.apply(a,f)),d}}i.tokenizer=a}if(n.hooks){let a=this.defaults.hooks||new um;for(let s in n.hooks){if(!(s in a))throw new Error(`hook '${s}' does not exist`);if(["options","block"].includes(s))continue;let l=s,u=n.hooks[l],h=a[l];um.passThroughHooks.has(s)?a[l]=f=>{if(this.defaults.async)return Promise.resolve(u.call(a,f)).then(p=>h.call(a,p));let d=u.call(a,f);return h.call(a,d)}:a[l]=(...f)=>{let d=u.apply(a,f);return d===!1&&(d=h.apply(a,f)),d}}i.hooks=a}if(n.walkTokens){let a=this.defaults.walkTokens,s=n.walkTokens;i.walkTokens=function(l){let u=[];return u.push(s.call(this,l)),a&&(u=u.concat(a.call(this,l))),u}}this.defaults={...this.defaults,...i}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,r){return Al.lex(e,r??this.defaults)}parser(e,r){return _l.parse(e,r??this.defaults)}parseMarkdown(e){return o((n,i)=>{let a={...i},s={...this.defaults,...a},l=this.onError(!!s.silent,!!s.async);if(this.defaults.async===!0&&a.async===!1)return l(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof n>"u"||n===null)return l(new Error("marked(): input parameter is undefined or null"));if(typeof n!="string")return l(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(n)+", string expected"));s.hooks&&(s.hooks.options=s,s.hooks.block=e);let u=s.hooks?s.hooks.provideLexer():e?Al.lex:Al.lexInline,h=s.hooks?s.hooks.provideParser():e?_l.parse:_l.parseInline;if(s.async)return Promise.resolve(s.hooks?s.hooks.preprocess(n):n).then(f=>u(f,s)).then(f=>s.hooks?s.hooks.processAllTokens(f):f).then(f=>s.walkTokens?Promise.all(this.walkTokens(f,s.walkTokens)).then(()=>f):f).then(f=>h(f,s)).then(f=>s.hooks?s.hooks.postprocess(f):f).catch(l);try{s.hooks&&(n=s.hooks.preprocess(n));let f=u(n,s);s.hooks&&(f=s.hooks.processAllTokens(f)),s.walkTokens&&this.walkTokens(f,s.walkTokens);let d=h(f,s);return s.hooks&&(d=s.hooks.postprocess(d)),d}catch(f){return l(f)}},"parse")}onError(e,r){return n=>{if(n.message+=` +Please report this to https://github.com/markedjs/marked.`,e){let i="

    An error occurred:

    "+pc(n.message+"",!0)+"
    ";return r?Promise.resolve(i):i}if(r)return Promise.reject(n);throw n}}},Md=new yD;o(Jr,"marked");Jr.options=Jr.setOptions=function(t){return Md.setOptions(t),Jr.defaults=Md.defaults,Gj(Jr.defaults),Jr};Jr.getDefaults=vD;Jr.defaults=Id;Jr.use=function(...t){return Md.use(...t),Jr.defaults=Md.defaults,Gj(Jr.defaults),Jr};Jr.walkTokens=function(t,e){return Md.walkTokens(t,e)};Jr.parseInline=Md.parseInline;Jr.Parser=_l;Jr.parser=_l.parse;Jr.Renderer=fm;Jr.TextRenderer=p2;Jr.Lexer=Al;Jr.lexer=Al.lex;Jr.Tokenizer=hm;Jr.Hooks=um;Jr.parse=Jr;dkt=Jr.options,pkt=Jr.setOptions,mkt=Jr.use,gkt=Jr.walkTokens,ykt=Jr.parseInline,vkt=_l.parse,xkt=Al.lex});function G8e(t,{markdownAutoWrap:e}){let n=t.replace(//g,` +`).replace(/\n{2,}/g,` +`),i=B4(n);return e===!1?i.replace(/ /g," "):i}function Jj(t,e={}){let r=G8e(t,e),n=Jr.lexer(r),i=[[]],a=0;function s(l,u="normal"){l.type==="text"?l.text.split(` +`).forEach((f,d)=>{d!==0&&(a++,i.push([])),f.split(" ").forEach(p=>{p=p.replace(/'/g,"'"),p&&i[a].push({content:p,type:u})})}):l.type==="strong"||l.type==="em"?l.tokens.forEach(h=>{s(h,l.type)}):l.type==="html"&&i[a].push({content:l.text,type:"normal"})}return o(s,"processNode"),n.forEach(l=>{l.type==="paragraph"?l.tokens?.forEach(u=>{s(u)}):l.type==="html"&&i[a].push({content:l.text,type:"normal"})}),i}function eK(t,{markdownAutoWrap:e}={}){let r=Jr.lexer(t);function n(i){return i.type==="text"?e===!1?i.text.replace(/\n */g,"
    ").replace(/ /g," "):i.text.replace(/\n */g,"
    "):i.type==="strong"?`${i.tokens?.map(n).join("")}`:i.type==="em"?`${i.tokens?.map(n).join("")}`:i.type==="paragraph"?`

    ${i.tokens?.map(n).join("")}

    `:i.type==="space"?"":i.type==="html"?`${i.text}`:i.type==="escape"?i.text:`Unsupported markdown: ${i.type}`}return o(n,"output"),r.map(n).join("")}var tK=N(()=>{"use strict";Zj();PC();o(G8e,"preprocessMarkdown");o(Jj,"markdownToLines");o(eK,"markdownToHTML")});function V8e(t){return Intl.Segmenter?[...new Intl.Segmenter().segment(t)].map(e=>e.segment):[...t]}function U8e(t,e){let r=V8e(e.content);return rK(t,[],r,e.type)}function rK(t,e,r,n){if(r.length===0)return[{content:e.join(""),type:n},{content:"",type:n}];let[i,...a]=r,s=[...e,i];return t([{content:s.join(""),type:n}])?rK(t,s,a,n):(e.length===0&&i&&(e.push(i),r.shift()),[{content:e.join(""),type:n},{content:r.join(""),type:n}])}function nK(t,e){if(t.some(({content:r})=>r.includes(` +`)))throw new Error("splitLineToFitWidth does not support newlines in the line");return CD(t,e)}function CD(t,e,r=[],n=[]){if(t.length===0)return n.length>0&&r.push(n),r.length>0?r:[];let i="";t[0].content===" "&&(i=" ",t.shift());let a=t.shift()??{content:" ",type:"normal"},s=[...n];if(i!==""&&s.push({content:i,type:"normal"}),s.push(a),e(s))return CD(t,e,r,s);if(n.length>0)r.push(n),t.unshift(a);else if(a.content){let[l,u]=U8e(e,a);r.push([l]),u.content&&t.unshift(u)}return CD(t,e,r)}var iK=N(()=>{"use strict";o(V8e,"splitTextToChars");o(U8e,"splitWordToFitWidth");o(rK,"splitWordToFitWidthRecursion");o(nK,"splitLineToFitWidth");o(CD,"splitLineToFitWidthRecursion")});function aK(t,e){e&&t.attr("style",e)}async function H8e(t,e,r,n,i=!1){let a=t.append("foreignObject");a.attr("width",`${10*r}px`),a.attr("height",`${10*r}px`);let s=a.append("xhtml:div"),l=e.label;e.label&&pi(e.label)&&(l=await mh(e.label.replace(Ze.lineBreakRegex,` +`),me()));let u=e.isNode?"nodeLabel":"edgeLabel",h=s.append("span");h.html(l),aK(h,e.labelStyle),h.attr("class",`${u} ${n}`),aK(s,e.labelStyle),s.style("display","table-cell"),s.style("white-space","nowrap"),s.style("line-height","1.5"),s.style("max-width",r+"px"),s.style("text-align","center"),s.attr("xmlns","http://www.w3.org/1999/xhtml"),i&&s.attr("class","labelBkg");let f=s.node().getBoundingClientRect();return f.width===r&&(s.style("display","table"),s.style("white-space","break-spaces"),s.style("width",r+"px"),f=s.node().getBoundingClientRect()),a.node()}function AD(t,e,r){return t.append("tspan").attr("class","text-outer-tspan").attr("x",0).attr("y",e*r-.1+"em").attr("dy",r+"em")}function W8e(t,e,r){let n=t.append("text"),i=AD(n,1,e);_D(i,r);let a=i.node().getComputedTextLength();return n.remove(),a}function sK(t,e,r){let n=t.append("text"),i=AD(n,1,e);_D(i,[{content:r,type:"normal"}]);let a=i.node()?.getBoundingClientRect();return a&&n.remove(),a}function q8e(t,e,r,n=!1){let a=e.append("g"),s=a.insert("rect").attr("class","background").attr("style","stroke: none"),l=a.append("text").attr("y","-10.1"),u=0;for(let h of r){let f=o(p=>W8e(a,1.1,p)<=t,"checkWidth"),d=f(h)?[h]:nK(h,f);for(let p of d){let m=AD(l,u,1.1);_D(m,p),u++}}if(n){let h=l.node().getBBox(),f=2;return s.attr("x",h.x-f).attr("y",h.y-f).attr("width",h.width+2*f).attr("height",h.height+2*f),a.node()}else return l.node()}function _D(t,e){t.text(""),e.forEach((r,n)=>{let i=t.append("tspan").attr("font-style",r.type==="em"?"italic":"normal").attr("class","text-inner-tspan").attr("font-weight",r.type==="strong"?"bold":"normal");n===0?i.text(r.content):i.text(" "+r.content)})}function DD(t){return t.replace(/fa[bklrs]?:fa-[\w-]+/g,e=>``)}var Hn,to=N(()=>{"use strict";zt();gr();dr();vt();tK();ir();iK();o(aK,"applyStyle");o(H8e,"addHtmlSpan");o(AD,"createTspan");o(W8e,"computeWidthOfText");o(sK,"computeDimensionOfText");o(q8e,"createFormattedText");o(_D,"updateTextContentAndStyles");o(DD,"replaceIconSubstring");Hn=o(async(t,e="",{style:r="",isTitle:n=!1,classes:i="",useHtmlLabels:a=!0,isNode:s=!0,width:l=200,addSvgBackground:u=!1}={},h)=>{if(Y.debug("XYZ createText",e,r,n,i,a,s,"addSvgBackground: ",u),a){let f=eK(e,h),d=DD(na(f)),p=e.replace(/\\\\/g,"\\"),m={isNode:s,label:pi(e)?p:d,labelStyle:r.replace("fill:","color:")};return await H8e(t,m,l,i,u)}else{let f=e.replace(//g,"
    "),d=Jj(f.replace("
    ","
    "),h),p=q8e(l,t,d,e?u:!1);if(s){/stroke:/.exec(r)&&(r=r.replace("stroke:","lineColor:"));let m=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/color:/g,"fill:");Ge(p).attr("style",m)}else{let m=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/background:/g,"fill:");Ge(p).select("rect").attr("style",m.replace(/background:/g,"fill:"));let g=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/color:/g,"fill:");Ge(p).select("text").attr("style",g)}return p}},"createText")});function Xt(t){let e=t.map((r,n)=>`${n===0?"M":"L"}${r.x},${r.y}`);return e.push("Z"),e.join(" ")}function Fo(t,e,r,n,i,a){let s=[],u=r-t,h=n-e,f=u/a,d=2*Math.PI/f,p=e+h/2;for(let m=0;m<=50;m++){let g=m/50,y=t+g*u,v=p+i*Math.sin(d*(y-t));s.push({x:y,y:v})}return s}function Lw(t,e,r,n,i,a){let s=[],l=i*Math.PI/180,f=(a*Math.PI/180-l)/(n-1);for(let d=0;d{"use strict";to();zt();dr();Ya();gr();ir();pt=o(async(t,e,r)=>{let n,i=e.useHtmlLabels||fr(me()?.htmlLabels);r?n=r:n="node default";let a=t.insert("g").attr("class",n).attr("id",e.domId||e.id),s=a.insert("g").attr("class","label").attr("style",$n(e.labelStyle)),l;e.label===void 0?l="":l=typeof e.label=="string"?e.label:e.label[0];let u=await Hn(s,Tr(na(l),me()),{useHtmlLabels:i,width:e.width||me().flowchart?.wrappingWidth,cssClasses:"markdown-node-label",style:e.labelStyle,addSvgBackground:!!e.icon||!!e.img}),h=u.getBBox(),f=(e?.padding??0)/2;if(i){let d=u.children[0],p=Ge(u),m=d.getElementsByTagName("img");if(m){let g=l.replace(/]*>/g,"").trim()==="";await Promise.all([...m].map(y=>new Promise(v=>{function x(){if(y.style.display="flex",y.style.flexDirection="column",g){let b=me().fontSize?me().fontSize:window.getComputedStyle(document.body).fontSize,w=5,[C=or.fontSize]=Bo(b),T=C*w+"px";y.style.minWidth=T,y.style.maxWidth=T}else y.style.width="100%";v(y)}o(x,"setupImage"),setTimeout(()=>{y.complete&&x()}),y.addEventListener("error",x),y.addEventListener("load",x)})))}h=d.getBoundingClientRect(),p.attr("width",h.width),p.attr("height",h.height)}return i?s.attr("transform","translate("+-h.width/2+", "+-h.height/2+")"):s.attr("transform","translate(0, "+-h.height/2+")"),e.centerLabel&&s.attr("transform","translate("+-h.width/2+", "+-h.height/2+")"),s.insert("rect",":first-child"),{shapeSvg:a,bbox:h,halfPadding:f,label:s}},"labelHelper"),Dw=o(async(t,e,r)=>{let n=r.useHtmlLabels||fr(me()?.flowchart?.htmlLabels),i=t.insert("g").attr("class","label").attr("style",r.labelStyle||""),a=await Hn(i,Tr(na(e),me()),{useHtmlLabels:n,width:r.width||me()?.flowchart?.wrappingWidth,style:r.labelStyle,addSvgBackground:!!r.icon||!!r.img}),s=a.getBBox(),l=r.padding/2;if(fr(me()?.flowchart?.htmlLabels)){let u=a.children[0],h=Ge(a);s=u.getBoundingClientRect(),h.attr("width",s.width),h.attr("height",s.height)}return n?i.attr("transform","translate("+-s.width/2+", "+-s.height/2+")"):i.attr("transform","translate(0, "+-s.height/2+")"),r.centerLabel&&i.attr("transform","translate("+-s.width/2+", "+-s.height/2+")"),i.insert("rect",":first-child"),{shapeSvg:t,bbox:s,halfPadding:l,label:i}},"insertLabel"),je=o((t,e)=>{let r=e.node().getBBox();t.width=r.width,t.height=r.height},"updateNodeBounds"),ht=o((t,e)=>(t.look==="handDrawn"?"rough-node":"node")+" "+t.cssClasses+" "+(e||""),"getNodeClasses");o(Xt,"createPathFromPoints");o(Fo,"generateFullSineWavePoints");o(Lw,"generateCirclePoints")});function Y8e(t,e){return t.intersect(e)}var oK,lK=N(()=>{"use strict";o(Y8e,"intersectNode");oK=Y8e});function X8e(t,e,r,n){var i=t.x,a=t.y,s=i-n.x,l=a-n.y,u=Math.sqrt(e*e*l*l+r*r*s*s),h=Math.abs(e*r*s/u);n.x{"use strict";o(X8e,"intersectEllipse");Rw=X8e});function j8e(t,e,r){return Rw(t,e,e,r)}var cK,uK=N(()=>{"use strict";LD();o(j8e,"intersectCircle");cK=j8e});function K8e(t,e,r,n){var i,a,s,l,u,h,f,d,p,m,g,y,v,x,b;if(i=e.y-t.y,s=t.x-e.x,u=e.x*t.y-t.x*e.y,p=i*r.x+s*r.y+u,m=i*n.x+s*n.y+u,!(p!==0&&m!==0&&hK(p,m))&&(a=n.y-r.y,l=r.x-n.x,h=n.x*r.y-r.x*n.y,f=a*t.x+l*t.y+h,d=a*e.x+l*e.y+h,!(f!==0&&d!==0&&hK(f,d))&&(g=i*l-a*s,g!==0)))return y=Math.abs(g/2),v=s*h-l*u,x=v<0?(v-y)/g:(v+y)/g,v=a*u-i*h,b=v<0?(v-y)/g:(v+y)/g,{x,y:b}}function hK(t,e){return t*e>0}var fK,dK=N(()=>{"use strict";o(K8e,"intersectLine");o(hK,"sameSign");fK=K8e});function Q8e(t,e,r){let n=t.x,i=t.y,a=[],s=Number.POSITIVE_INFINITY,l=Number.POSITIVE_INFINITY;typeof e.forEach=="function"?e.forEach(function(f){s=Math.min(s,f.x),l=Math.min(l,f.y)}):(s=Math.min(s,e.x),l=Math.min(l,e.y));let u=n-t.width/2-s,h=i-t.height/2-l;for(let f=0;f1&&a.sort(function(f,d){let p=f.x-r.x,m=f.y-r.y,g=Math.sqrt(p*p+m*m),y=d.x-r.x,v=d.y-r.y,x=Math.sqrt(y*y+v*v);return g{"use strict";dK();o(Q8e,"intersectPolygon");pK=Q8e});var Z8e,Vh,RD=N(()=>{"use strict";Z8e=o((t,e)=>{var r=t.x,n=t.y,i=e.x-r,a=e.y-n,s=t.width/2,l=t.height/2,u,h;return Math.abs(a)*s>Math.abs(i)*l?(a<0&&(l=-l),u=a===0?0:l*i/a,h=l):(i<0&&(s=-s),u=s,h=i===0?0:s*a/i),{x:r+u,y:n+h}},"intersectRect"),Vh=Z8e});var Ye,Ht=N(()=>{"use strict";lK();uK();LD();mK();RD();Ye={node:oK,circle:cK,ellipse:Rw,polygon:pK,rect:Vh}});var gK,mc,J8e,ND,Qe,Ke,Ut=N(()=>{"use strict";zt();gK=o(t=>{let{handDrawnSeed:e}=me();return{fill:t,hachureAngle:120,hachureGap:4,fillWeight:2,roughness:.7,stroke:t,seed:e}},"solidStateFill"),mc=o(t=>{let e=J8e([...t.cssCompiledStyles||[],...t.cssStyles||[]]);return{stylesMap:e,stylesArray:[...e]}},"compileStyles"),J8e=o(t=>{let e=new Map;return t.forEach(r=>{let[n,i]=r.split(":");e.set(n.trim(),i?.trim())}),e},"styles2Map"),ND=o(t=>t==="color"||t==="font-size"||t==="font-family"||t==="font-weight"||t==="font-style"||t==="text-decoration"||t==="text-align"||t==="text-transform"||t==="line-height"||t==="letter-spacing"||t==="word-spacing"||t==="text-shadow"||t==="text-overflow"||t==="white-space"||t==="word-wrap"||t==="word-break"||t==="overflow-wrap"||t==="hyphens","isLabelStyle"),Qe=o(t=>{let{stylesArray:e}=mc(t),r=[],n=[],i=[],a=[];return e.forEach(s=>{let l=s[0];ND(l)?r.push(s.join(":")+" !important"):(n.push(s.join(":")+" !important"),l.includes("stroke")&&i.push(s.join(":")+" !important"),l==="fill"&&a.push(s.join(":")+" !important"))}),{labelStyles:r.join(";"),nodeStyles:n.join(";"),stylesArray:e,borderStyles:i,backgroundStyles:a}},"styles2String"),Ke=o((t,e)=>{let{themeVariables:r,handDrawnSeed:n}=me(),{nodeBorder:i,mainBkg:a}=r,{stylesMap:s}=mc(t);return Object.assign({roughness:.7,fill:s.get("fill")||a,fillStyle:"hachure",fillWeight:4,hachureGap:5.2,stroke:s.get("stroke")||i,seed:n,strokeWidth:s.get("stroke-width")?.replace("px","")||1.3,fillLineDash:[0,0]},e)},"userNodeOverrides")});function MD(t,e,r){if(t&&t.length){let[n,i]=e,a=Math.PI/180*r,s=Math.cos(a),l=Math.sin(a);for(let u of t){let[h,f]=u;u[0]=(h-n)*s-(f-i)*l+n,u[1]=(h-n)*l+(f-i)*s+i}}}function e_e(t,e){return t[0]===e[0]&&t[1]===e[1]}function t_e(t,e,r,n=1){let i=r,a=Math.max(e,.1),s=t[0]&&t[0][0]&&typeof t[0][0]=="number"?[t]:t,l=[0,0];if(i)for(let h of s)MD(h,l,i);let u=function(h,f,d){let p=[];for(let b of h){let w=[...b];e_e(w[0],w[w.length-1])||w.push([w[0][0],w[0][1]]),w.length>2&&p.push(w)}let m=[];f=Math.max(f,.1);let g=[];for(let b of p)for(let w=0;wb.yminw.ymin?1:b.xw.x?1:b.ymax===w.ymax?0:(b.ymax-w.ymax)/Math.abs(b.ymax-w.ymax)),!g.length)return m;let y=[],v=g[0].ymin,x=0;for(;y.length||g.length;){if(g.length){let b=-1;for(let w=0;wv);w++)b=w;g.splice(0,b+1).forEach(w=>{y.push({s:v,edge:w})})}if(y=y.filter(b=>!(b.edge.ymax<=v)),y.sort((b,w)=>b.edge.x===w.edge.x?0:(b.edge.x-w.edge.x)/Math.abs(b.edge.x-w.edge.x)),(d!==1||x%f==0)&&y.length>1)for(let b=0;b=y.length)break;let C=y[b].edge,T=y[w].edge;m.push([[Math.round(C.x),v],[Math.round(T.x),v]])}v+=d,y.forEach(b=>{b.edge.x=b.edge.x+d*b.edge.islope}),x++}return m}(s,a,n);if(i){for(let h of s)MD(h,l,-i);(function(h,f,d){let p=[];h.forEach(m=>p.push(...m)),MD(p,f,d)})(u,l,-i)}return u}function x2(t,e){var r;let n=e.hachureAngle+90,i=e.hachureGap;i<0&&(i=4*e.strokeWidth),i=Math.round(Math.max(i,.1));let a=1;return e.roughness>=1&&(((r=e.randomizer)===null||r===void 0?void 0:r.next())||Math.random())>.7&&(a=i),t_e(t,i,n,a||1)}function zw(t){let e=t[0],r=t[1];return Math.sqrt(Math.pow(e[0]-r[0],2)+Math.pow(e[1]-r[1],2))}function OD(t,e){return t.type===e}function jD(t){let e=[],r=function(s){let l=new Array;for(;s!=="";)if(s.match(/^([ \t\r\n,]+)/))s=s.substr(RegExp.$1.length);else if(s.match(/^([aAcChHlLmMqQsStTvVzZ])/))l[l.length]={type:r_e,text:RegExp.$1},s=s.substr(RegExp.$1.length);else{if(!s.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/))return[];l[l.length]={type:ID,text:`${parseFloat(RegExp.$1)}`},s=s.substr(RegExp.$1.length)}return l[l.length]={type:yK,text:""},l}(t),n="BOD",i=0,a=r[i];for(;!OD(a,yK);){let s=0,l=[];if(n==="BOD"){if(a.text!=="M"&&a.text!=="m")return jD("M0,0"+t);i++,s=Nw[a.text],n=a.text}else OD(a,ID)?s=Nw[n]:(i++,s=Nw[a.text],n=a.text);if(!(i+sf%2?h+r:h+e);a.push({key:"C",data:u}),e=u[4],r=u[5];break}case"Q":a.push({key:"Q",data:[...l]}),e=l[2],r=l[3];break;case"q":{let u=l.map((h,f)=>f%2?h+r:h+e);a.push({key:"Q",data:u}),e=u[2],r=u[3];break}case"A":a.push({key:"A",data:[...l]}),e=l[5],r=l[6];break;case"a":e+=l[5],r+=l[6],a.push({key:"A",data:[l[0],l[1],l[2],l[3],l[4],e,r]});break;case"H":a.push({key:"H",data:[...l]}),e=l[0];break;case"h":e+=l[0],a.push({key:"H",data:[e]});break;case"V":a.push({key:"V",data:[...l]}),r=l[0];break;case"v":r+=l[0],a.push({key:"V",data:[r]});break;case"S":a.push({key:"S",data:[...l]}),e=l[2],r=l[3];break;case"s":{let u=l.map((h,f)=>f%2?h+r:h+e);a.push({key:"S",data:u}),e=u[2],r=u[3];break}case"T":a.push({key:"T",data:[...l]}),e=l[0],r=l[1];break;case"t":e+=l[0],r+=l[1],a.push({key:"T",data:[e,r]});break;case"Z":case"z":a.push({key:"Z",data:[]}),e=n,r=i}return a}function CK(t){let e=[],r="",n=0,i=0,a=0,s=0,l=0,u=0;for(let{key:h,data:f}of t){switch(h){case"M":e.push({key:"M",data:[...f]}),[n,i]=f,[a,s]=f;break;case"C":e.push({key:"C",data:[...f]}),n=f[4],i=f[5],l=f[2],u=f[3];break;case"L":e.push({key:"L",data:[...f]}),[n,i]=f;break;case"H":n=f[0],e.push({key:"L",data:[n,i]});break;case"V":i=f[0],e.push({key:"L",data:[n,i]});break;case"S":{let d=0,p=0;r==="C"||r==="S"?(d=n+(n-l),p=i+(i-u)):(d=n,p=i),e.push({key:"C",data:[d,p,...f]}),l=f[0],u=f[1],n=f[2],i=f[3];break}case"T":{let[d,p]=f,m=0,g=0;r==="Q"||r==="T"?(m=n+(n-l),g=i+(i-u)):(m=n,g=i);let y=n+2*(m-n)/3,v=i+2*(g-i)/3,x=d+2*(m-d)/3,b=p+2*(g-p)/3;e.push({key:"C",data:[y,v,x,b,d,p]}),l=m,u=g,n=d,i=p;break}case"Q":{let[d,p,m,g]=f,y=n+2*(d-n)/3,v=i+2*(p-i)/3,x=m+2*(d-m)/3,b=g+2*(p-g)/3;e.push({key:"C",data:[y,v,x,b,m,g]}),l=d,u=p,n=m,i=g;break}case"A":{let d=Math.abs(f[0]),p=Math.abs(f[1]),m=f[2],g=f[3],y=f[4],v=f[5],x=f[6];d===0||p===0?(e.push({key:"C",data:[n,i,v,x,v,x]}),n=v,i=x):(n!==v||i!==x)&&(AK(n,i,v,x,d,p,m,g,y).forEach(function(b){e.push({key:"C",data:b})}),n=v,i=x);break}case"Z":e.push({key:"Z",data:[]}),n=a,i=s}r=h}return e}function g2(t,e,r){return[t*Math.cos(r)-e*Math.sin(r),t*Math.sin(r)+e*Math.cos(r)]}function AK(t,e,r,n,i,a,s,l,u,h){let f=(d=s,Math.PI*d/180);var d;let p=[],m=0,g=0,y=0,v=0;if(h)[m,g,y,v]=h;else{[t,e]=g2(t,e,-f),[r,n]=g2(r,n,-f);let L=(t-r)/2,R=(e-n)/2,O=L*L/(i*i)+R*R/(a*a);O>1&&(O=Math.sqrt(O),i*=O,a*=O);let M=i*i,B=a*a,F=M*B-M*R*R-B*L*L,P=M*R*R+B*L*L,z=(l===u?-1:1)*Math.sqrt(Math.abs(F/P));y=z*i*R/a+(t+r)/2,v=z*-a*L/i+(e+n)/2,m=Math.asin(parseFloat(((e-v)/a).toFixed(9))),g=Math.asin(parseFloat(((n-v)/a).toFixed(9))),tg&&(m-=2*Math.PI),!u&&g>m&&(g-=2*Math.PI)}let x=g-m;if(Math.abs(x)>120*Math.PI/180){let L=g,R=r,O=n;g=u&&g>m?m+120*Math.PI/180*1:m+120*Math.PI/180*-1,p=AK(r=y+i*Math.cos(g),n=v+a*Math.sin(g),R,O,i,a,s,0,u,[g,L,y,v])}x=g-m;let b=Math.cos(m),w=Math.sin(m),C=Math.cos(g),T=Math.sin(g),E=Math.tan(x/4),A=4/3*i*E,S=4/3*a*E,_=[t,e],I=[t+A*w,e-S*b],D=[r+A*T,n-S*C],k=[r,n];if(I[0]=2*_[0]-I[0],I[1]=2*_[1]-I[1],h)return[I,D,k].concat(p);{p=[I,D,k].concat(p);let L=[];for(let R=0;R2){let i=[];for(let a=0;a2*Math.PI&&(m=0,g=2*Math.PI);let y=2*Math.PI/u.curveStepCount,v=Math.min(y/2,(g-m)/2),x=kK(v,h,f,d,p,m,g,1,u);if(!u.disableMultiStroke){let b=kK(v,h,f,d,p,m,g,1.5,u);x.push(...b)}return s&&(l?x.push(...Uh(h,f,h+d*Math.cos(m),f+p*Math.sin(m),u),...Uh(h,f,h+d*Math.cos(g),f+p*Math.sin(g),u)):x.push({op:"lineTo",data:[h,f]},{op:"lineTo",data:[h+d*Math.cos(m),f+p*Math.sin(m)]})),{type:"path",ops:x}}function bK(t,e){let r=CK(SK(jD(t))),n=[],i=[0,0],a=[0,0];for(let{key:s,data:l}of r)switch(s){case"M":a=[l[0],l[1]],i=[l[0],l[1]];break;case"L":n.push(...Uh(a[0],a[1],l[0],l[1],e)),a=[l[0],l[1]];break;case"C":{let[u,h,f,d,p,m]=l;n.push(...a_e(u,h,f,d,p,m,a,e)),a=[p,m];break}case"Z":n.push(...Uh(a[0],a[1],i[0],i[1],e)),a=[i[0],i[1]]}return{type:"path",ops:n}}function PD(t,e){let r=[];for(let n of t)if(n.length){let i=e.maxRandomnessOffset||0,a=n.length;if(a>2){r.push({op:"move",data:[n[0][0]+nr(i,e),n[0][1]+nr(i,e)]});for(let s=1;s500?.4:-.0016668*u+1.233334;let f=i.maxRandomnessOffset||0;f*f*100>l&&(f=u/10);let d=f/2,p=.2+.2*LK(i),m=i.bowing*i.maxRandomnessOffset*(n-e)/200,g=i.bowing*i.maxRandomnessOffset*(t-r)/200;m=nr(m,i,h),g=nr(g,i,h);let y=[],v=o(()=>nr(d,i,h),"M"),x=o(()=>nr(f,i,h),"k"),b=i.preserveVertices;return a&&(s?y.push({op:"move",data:[t+(b?0:v()),e+(b?0:v())]}):y.push({op:"move",data:[t+(b?0:nr(f,i,h)),e+(b?0:nr(f,i,h))]})),s?y.push({op:"bcurveTo",data:[m+t+(r-t)*p+v(),g+e+(n-e)*p+v(),m+t+2*(r-t)*p+v(),g+e+2*(n-e)*p+v(),r+(b?0:v()),n+(b?0:v())]}):y.push({op:"bcurveTo",data:[m+t+(r-t)*p+x(),g+e+(n-e)*p+x(),m+t+2*(r-t)*p+x(),g+e+2*(n-e)*p+x(),r+(b?0:x()),n+(b?0:x())]}),y}function Mw(t,e,r){if(!t.length)return[];let n=[];n.push([t[0][0]+nr(e,r),t[0][1]+nr(e,r)]),n.push([t[0][0]+nr(e,r),t[0][1]+nr(e,r)]);for(let i=1;i3){let a=[],s=1-r.curveTightness;i.push({op:"move",data:[t[1][0],t[1][1]]});for(let l=1;l+21&&i.push(l)):i.push(l),i.push(t[e+3])}else{let u=t[e+0],h=t[e+1],f=t[e+2],d=t[e+3],p=Od(u,h,.5),m=Od(h,f,.5),g=Od(f,d,.5),y=Od(p,m,.5),v=Od(m,g,.5),x=Od(y,v,.5);qD([u,p,y,x],0,r,i),qD([x,v,g,d],0,r,i)}var a,s;return i}function o_e(t,e){return $w(t,0,t.length,e)}function $w(t,e,r,n,i){let a=i||[],s=t[e],l=t[r-1],u=0,h=1;for(let f=e+1;fu&&(u=d,h=f)}return Math.sqrt(u)>n?($w(t,e,h+1,n,a),$w(t,h,r,n,a)):(a.length||a.push(s),a.push(l)),a}function BD(t,e=.15,r){let n=[],i=(t.length-1)/3;for(let a=0;a0?$w(n,0,n.length,r):n}var v2,FD,$D,zD,GD,VD,Rs,UD,r_e,ID,yK,Nw,n_e,ro,pm,YD,Iw,XD,Xe,Wt=N(()=>{"use strict";o(MD,"t");o(e_e,"e");o(t_e,"s");o(x2,"n");v2=class{static{o(this,"o")}constructor(e){this.helper=e}fillPolygons(e,r){return this._fillPolygons(e,r)}_fillPolygons(e,r){let n=x2(e,r);return{type:"fillSketch",ops:this.renderLines(n,r)}}renderLines(e,r){let n=[];for(let i of e)n.push(...this.helper.doubleLineOps(i[0][0],i[0][1],i[1][0],i[1][1],r));return n}};o(zw,"a");FD=class extends v2{static{o(this,"h")}fillPolygons(e,r){let n=r.hachureGap;n<0&&(n=4*r.strokeWidth),n=Math.max(n,.1);let i=x2(e,Object.assign({},r,{hachureGap:n})),a=Math.PI/180*r.hachureAngle,s=[],l=.5*n*Math.cos(a),u=.5*n*Math.sin(a);for(let[h,f]of i)zw([h,f])&&s.push([[h[0]-l,h[1]+u],[...f]],[[h[0]+l,h[1]-u],[...f]]);return{type:"fillSketch",ops:this.renderLines(s,r)}}},$D=class extends v2{static{o(this,"r")}fillPolygons(e,r){let n=this._fillPolygons(e,r),i=Object.assign({},r,{hachureAngle:r.hachureAngle+90}),a=this._fillPolygons(e,i);return n.ops=n.ops.concat(a.ops),n}},zD=class{static{o(this,"i")}constructor(e){this.helper=e}fillPolygons(e,r){let n=x2(e,r=Object.assign({},r,{hachureAngle:0}));return this.dotsOnLines(n,r)}dotsOnLines(e,r){let n=[],i=r.hachureGap;i<0&&(i=4*r.strokeWidth),i=Math.max(i,.1);let a=r.fillWeight;a<0&&(a=r.strokeWidth/2);let s=i/4;for(let l of e){let u=zw(l),h=u/i,f=Math.ceil(h)-1,d=u-f*i,p=(l[0][0]+l[1][0])/2-i/4,m=Math.min(l[0][1],l[1][1]);for(let g=0;g{let l=zw(s),u=Math.floor(l/(n+i)),h=(l+i-u*(n+i))/2,f=s[0],d=s[1];f[0]>d[0]&&(f=s[1],d=s[0]);let p=Math.atan((d[1]-f[1])/(d[0]-f[0]));for(let m=0;m{let s=zw(a),l=Math.round(s/(2*r)),u=a[0],h=a[1];u[0]>h[0]&&(u=a[1],h=a[0]);let f=Math.atan((h[1]-u[1])/(h[0]-u[0]));for(let d=0;d2*Math.PI&&(A=0,S=2*Math.PI);let _=(S-A)/b.curveStepCount,I=[];for(let D=A;D<=S;D+=_)I.push([w+T*Math.cos(D),C+E*Math.sin(D)]);return I.push([w+T*Math.cos(S),C+E*Math.sin(S)]),I.push([w,C]),dm([I],b)}(e,r,n,i,a,s,h));return h.stroke!==ro&&f.push(d),this._d("arc",f,h)}curve(e,r){let n=this._o(r),i=[],a=vK(e,n);if(n.fill&&n.fill!==ro)if(n.fillStyle==="solid"){let s=vK(e,Object.assign(Object.assign({},n),{disableMultiStroke:!0,roughness:n.roughness?n.roughness+n.fillShapeRoughnessGain:0}));i.push({type:"fillPath",ops:this._mergedShape(s.ops)})}else{let s=[],l=e;if(l.length){let u=typeof l[0][0]=="number"?[l]:l;for(let h of u)h.length<3?s.push(...h):h.length===3?s.push(...BD(EK([h[0],h[0],h[1],h[2]]),10,(1+n.roughness)/2)):s.push(...BD(EK(h),10,(1+n.roughness)/2))}s.length&&i.push(dm([s],n))}return n.stroke!==ro&&i.push(a),this._d("curve",i,n)}polygon(e,r){let n=this._o(r),i=[],a=Ow(e,!0,n);return n.fill&&(n.fillStyle==="solid"?i.push(PD([e],n)):i.push(dm([e],n))),n.stroke!==ro&&i.push(a),this._d("polygon",i,n)}path(e,r){let n=this._o(r),i=[];if(!e)return this._d("path",i,n);e=(e||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");let a=n.fill&&n.fill!=="transparent"&&n.fill!==ro,s=n.stroke!==ro,l=!!(n.simplification&&n.simplification<1),u=function(f,d,p){let m=CK(SK(jD(f))),g=[],y=[],v=[0,0],x=[],b=o(()=>{x.length>=4&&y.push(...BD(x,d)),x=[]},"i"),w=o(()=>{b(),y.length&&(g.push(y),y=[])},"c");for(let{key:T,data:E}of m)switch(T){case"M":w(),v=[E[0],E[1]],y.push(v);break;case"L":b(),y.push([E[0],E[1]]);break;case"C":if(!x.length){let A=y.length?y[y.length-1]:v;x.push([A[0],A[1]])}x.push([E[0],E[1]]),x.push([E[2],E[3]]),x.push([E[4],E[5]]);break;case"Z":b(),y.push([v[0],v[1]])}if(w(),!p)return g;let C=[];for(let T of g){let E=o_e(T,p);E.length&&C.push(E)}return C}(e,1,l?4-4*(n.simplification||1):(1+n.roughness)/2),h=bK(e,n);if(a)if(n.fillStyle==="solid")if(u.length===1){let f=bK(e,Object.assign(Object.assign({},n),{disableMultiStroke:!0,roughness:n.roughness?n.roughness+n.fillShapeRoughnessGain:0}));i.push({type:"fillPath",ops:this._mergedShape(f.ops)})}else i.push(PD(u,n));else i.push(dm(u,n));return s&&(l?u.forEach(f=>{i.push(Ow(f,!1,n))}):i.push(h)),this._d("path",i,n)}opsToPath(e,r){let n="";for(let i of e.ops){let a=typeof r=="number"&&r>=0?i.data.map(s=>+s.toFixed(r)):i.data;switch(i.op){case"move":n+=`M${a[0]} ${a[1]} `;break;case"bcurveTo":n+=`C${a[0]} ${a[1]}, ${a[2]} ${a[3]}, ${a[4]} ${a[5]} `;break;case"lineTo":n+=`L${a[0]} ${a[1]} `}}return n.trim()}toPaths(e){let r=e.sets||[],n=e.options||this.defaultOptions,i=[];for(let a of r){let s=null;switch(a.type){case"path":s={d:this.opsToPath(a),stroke:n.stroke,strokeWidth:n.strokeWidth,fill:ro};break;case"fillPath":s={d:this.opsToPath(a),stroke:ro,strokeWidth:0,fill:n.fill||ro};break;case"fillSketch":s=this.fillSketch(a,n)}s&&i.push(s)}return i}fillSketch(e,r){let n=r.fillWeight;return n<0&&(n=r.strokeWidth/2),{d:this.opsToPath(e),stroke:r.fill||ro,strokeWidth:n,fill:ro}}_mergedShape(e){return e.filter((r,n)=>n===0||r.op!=="move")}},YD=class{static{o(this,"st")}constructor(e,r){this.canvas=e,this.ctx=this.canvas.getContext("2d"),this.gen=new pm(r)}draw(e){let r=e.sets||[],n=e.options||this.getDefaultOptions(),i=this.ctx,a=e.options.fixedDecimalPlaceDigits;for(let s of r)switch(s.type){case"path":i.save(),i.strokeStyle=n.stroke==="none"?"transparent":n.stroke,i.lineWidth=n.strokeWidth,n.strokeLineDash&&i.setLineDash(n.strokeLineDash),n.strokeLineDashOffset&&(i.lineDashOffset=n.strokeLineDashOffset),this._drawToContext(i,s,a),i.restore();break;case"fillPath":{i.save(),i.fillStyle=n.fill||"";let l=e.shape==="curve"||e.shape==="polygon"||e.shape==="path"?"evenodd":"nonzero";this._drawToContext(i,s,a,l),i.restore();break}case"fillSketch":this.fillSketch(i,s,n)}}fillSketch(e,r,n){let i=n.fillWeight;i<0&&(i=n.strokeWidth/2),e.save(),n.fillLineDash&&e.setLineDash(n.fillLineDash),n.fillLineDashOffset&&(e.lineDashOffset=n.fillLineDashOffset),e.strokeStyle=n.fill||"",e.lineWidth=i,this._drawToContext(e,r,n.fixedDecimalPlaceDigits),e.restore()}_drawToContext(e,r,n,i="nonzero"){e.beginPath();for(let a of r.ops){let s=typeof n=="number"&&n>=0?a.data.map(l=>+l.toFixed(n)):a.data;switch(a.op){case"move":e.moveTo(s[0],s[1]);break;case"bcurveTo":e.bezierCurveTo(s[0],s[1],s[2],s[3],s[4],s[5]);break;case"lineTo":e.lineTo(s[0],s[1])}}r.type==="fillPath"?e.fill(i):e.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(e,r,n,i,a){let s=this.gen.line(e,r,n,i,a);return this.draw(s),s}rectangle(e,r,n,i,a){let s=this.gen.rectangle(e,r,n,i,a);return this.draw(s),s}ellipse(e,r,n,i,a){let s=this.gen.ellipse(e,r,n,i,a);return this.draw(s),s}circle(e,r,n,i){let a=this.gen.circle(e,r,n,i);return this.draw(a),a}linearPath(e,r){let n=this.gen.linearPath(e,r);return this.draw(n),n}polygon(e,r){let n=this.gen.polygon(e,r);return this.draw(n),n}arc(e,r,n,i,a,s,l=!1,u){let h=this.gen.arc(e,r,n,i,a,s,l,u);return this.draw(h),h}curve(e,r){let n=this.gen.curve(e,r);return this.draw(n),n}path(e,r){let n=this.gen.path(e,r);return this.draw(n),n}},Iw="http://www.w3.org/2000/svg",XD=class{static{o(this,"ot")}constructor(e,r){this.svg=e,this.gen=new pm(r)}draw(e){let r=e.sets||[],n=e.options||this.getDefaultOptions(),i=this.svg.ownerDocument||window.document,a=i.createElementNS(Iw,"g"),s=e.options.fixedDecimalPlaceDigits;for(let l of r){let u=null;switch(l.type){case"path":u=i.createElementNS(Iw,"path"),u.setAttribute("d",this.opsToPath(l,s)),u.setAttribute("stroke",n.stroke),u.setAttribute("stroke-width",n.strokeWidth+""),u.setAttribute("fill","none"),n.strokeLineDash&&u.setAttribute("stroke-dasharray",n.strokeLineDash.join(" ").trim()),n.strokeLineDashOffset&&u.setAttribute("stroke-dashoffset",`${n.strokeLineDashOffset}`);break;case"fillPath":u=i.createElementNS(Iw,"path"),u.setAttribute("d",this.opsToPath(l,s)),u.setAttribute("stroke","none"),u.setAttribute("stroke-width","0"),u.setAttribute("fill",n.fill||""),e.shape!=="curve"&&e.shape!=="polygon"||u.setAttribute("fill-rule","evenodd");break;case"fillSketch":u=this.fillSketch(i,l,n)}u&&a.appendChild(u)}return a}fillSketch(e,r,n){let i=n.fillWeight;i<0&&(i=n.strokeWidth/2);let a=e.createElementNS(Iw,"path");return a.setAttribute("d",this.opsToPath(r,n.fixedDecimalPlaceDigits)),a.setAttribute("stroke",n.fill||""),a.setAttribute("stroke-width",i+""),a.setAttribute("fill","none"),n.fillLineDash&&a.setAttribute("stroke-dasharray",n.fillLineDash.join(" ").trim()),n.fillLineDashOffset&&a.setAttribute("stroke-dashoffset",`${n.fillLineDashOffset}`),a}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(e,r){return this.gen.opsToPath(e,r)}line(e,r,n,i,a){let s=this.gen.line(e,r,n,i,a);return this.draw(s)}rectangle(e,r,n,i,a){let s=this.gen.rectangle(e,r,n,i,a);return this.draw(s)}ellipse(e,r,n,i,a){let s=this.gen.ellipse(e,r,n,i,a);return this.draw(s)}circle(e,r,n,i){let a=this.gen.circle(e,r,n,i);return this.draw(a)}linearPath(e,r){let n=this.gen.linearPath(e,r);return this.draw(n)}polygon(e,r){let n=this.gen.polygon(e,r);return this.draw(n)}arc(e,r,n,i,a,s,l=!1,u){let h=this.gen.arc(e,r,n,i,a,s,l,u);return this.draw(h)}curve(e,r){let n=this.gen.curve(e,r);return this.draw(n)}path(e,r){let n=this.gen.path(e,r);return this.draw(n)}},Xe={canvas:o((t,e)=>new YD(t,e),"canvas"),svg:o((t,e)=>new XD(t,e),"svg"),generator:o(t=>new pm(t),"generator"),newSeed:o(()=>pm.newSeed(),"newSeed")}});function RK(t,e){let{labelStyles:r}=Qe(e);e.labelStyle=r;let n=ht(e),i=n;n||(i="anchor");let a=t.insert("g").attr("class",i).attr("id",e.domId||e.id),s=1,{cssStyles:l}=e,u=Xe.svg(a),h=Ke(e,{fill:"black",stroke:"none",fillStyle:"solid"});e.look!=="handDrawn"&&(h.roughness=0);let f=u.circle(0,0,s*2,h),d=a.insert(()=>f,":first-child");return d.attr("class","anchor").attr("style",$n(l)),je(e,d),e.intersect=function(p){return Y.info("Circle intersect",e,s,p),Ye.circle(e,s,p)},a}var NK=N(()=>{"use strict";vt();Ft();Ht();Ut();Wt();ir();o(RK,"anchor")});function MK(t,e,r,n,i,a,s){let u=(t+r)/2,h=(e+n)/2,f=Math.atan2(n-e,r-t),d=(r-t)/2,p=(n-e)/2,m=d/i,g=p/a,y=Math.sqrt(m**2+g**2);if(y>1)throw new Error("The given radii are too small to create an arc between the points.");let v=Math.sqrt(1-y**2),x=u+v*a*Math.sin(f)*(s?-1:1),b=h-v*i*Math.cos(f)*(s?-1:1),w=Math.atan2((e-b)/a,(t-x)/i),T=Math.atan2((n-b)/a,(r-x)/i)-w;s&&T<0&&(T+=2*Math.PI),!s&&T>0&&(T-=2*Math.PI);let E=[];for(let A=0;A<20;A++){let S=A/19,_=w+S*T,I=x+i*Math.cos(_),D=b+a*Math.sin(_);E.push({x:I,y:D})}return E}async function IK(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=a.width+e.padding+20,l=a.height+e.padding,u=l/2,h=u/(2.5+l/50),{cssStyles:f}=e,d=[{x:s/2,y:-l/2},{x:-s/2,y:-l/2},...MK(-s/2,-l/2,-s/2,l/2,h,u,!1),{x:s/2,y:l/2},...MK(s/2,l/2,s/2,-l/2,h,u,!0)],p=Xe.svg(i),m=Ke(e,{});e.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");let g=Xt(d),y=p.path(g,m),v=i.insert(()=>y,":first-child");return v.attr("class","basic label-container"),f&&e.look!=="handDrawn"&&v.selectAll("path").attr("style",f),n&&e.look!=="handDrawn"&&v.selectAll("path").attr("style",n),v.attr("transform",`translate(${h/2}, 0)`),je(e,v),e.intersect=function(x){return Ye.polygon(e,d,x)},i}var OK=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(MK,"generateArcPoints");o(IK,"bowTieRect")});function La(t,e,r,n){return t.insert("polygon",":first-child").attr("points",n.map(function(i){return i.x+","+i.y}).join(" ")).attr("class","label-container").attr("transform","translate("+-e/2+","+r/2+")")}var _u=N(()=>{"use strict";o(La,"insertPolygonShape")});async function PK(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=a.height+e.padding,l=12,u=a.width+e.padding+l,h=0,f=u,d=-s,p=0,m=[{x:h+l,y:d},{x:f,y:d},{x:f,y:p},{x:h,y:p},{x:h,y:d+l},{x:h+l,y:d}],g,{cssStyles:y}=e;if(e.look==="handDrawn"){let v=Xe.svg(i),x=Ke(e,{}),b=Xt(m),w=v.path(b,x);g=i.insert(()=>w,":first-child").attr("transform",`translate(${-u/2}, ${s/2})`),y&&g.attr("style",y)}else g=La(i,u,s,m);return n&&g.attr("style",n),je(e,g),e.intersect=function(v){return Ye.polygon(e,m,v)},i}var BK=N(()=>{"use strict";Ft();Ht();Ut();Wt();_u();Ft();o(PK,"card")});function FK(t,e){let{nodeStyles:r}=Qe(e);e.label="";let n=t.insert("g").attr("class",ht(e)).attr("id",e.domId??e.id),{cssStyles:i}=e,a=Math.max(28,e.width??0),s=[{x:0,y:a/2},{x:a/2,y:0},{x:0,y:-a/2},{x:-a/2,y:0}],l=Xe.svg(n),u=Ke(e,{});e.look!=="handDrawn"&&(u.roughness=0,u.fillStyle="solid");let h=Xt(s),f=l.path(h,u),d=n.insert(()=>f,":first-child");return i&&e.look!=="handDrawn"&&d.selectAll("path").attr("style",i),r&&e.look!=="handDrawn"&&d.selectAll("path").attr("style",r),e.width=28,e.height=28,e.intersect=function(p){return Ye.polygon(e,s,p)},n}var $K=N(()=>{"use strict";Ht();Wt();Ut();Ft();o(FK,"choice")});async function zK(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,halfPadding:s}=await pt(t,e,ht(e)),l=a.width/2+s,u,{cssStyles:h}=e;if(e.look==="handDrawn"){let f=Xe.svg(i),d=Ke(e,{}),p=f.circle(0,0,l*2,d);u=i.insert(()=>p,":first-child"),u.attr("class","basic label-container").attr("style",$n(h))}else u=i.insert("circle",":first-child").attr("class","basic label-container").attr("style",n).attr("r",l).attr("cx",0).attr("cy",0);return je(e,u),e.intersect=function(f){return Y.info("Circle intersect",e,l,f),Ye.circle(e,l,f)},i}var GK=N(()=>{"use strict";vt();Ft();Ht();Ut();Wt();ir();o(zK,"circle")});function l_e(t){let e=Math.cos(Math.PI/4),r=Math.sin(Math.PI/4),n=t*2,i={x:n/2*e,y:n/2*r},a={x:-(n/2)*e,y:n/2*r},s={x:-(n/2)*e,y:-(n/2)*r},l={x:n/2*e,y:-(n/2)*r};return`M ${a.x},${a.y} L ${l.x},${l.y} + M ${i.x},${i.y} L ${s.x},${s.y}`}function VK(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r,e.label="";let i=t.insert("g").attr("class",ht(e)).attr("id",e.domId??e.id),a=Math.max(30,e?.width??0),{cssStyles:s}=e,l=Xe.svg(i),u=Ke(e,{});e.look!=="handDrawn"&&(u.roughness=0,u.fillStyle="solid");let h=l.circle(0,0,a*2,u),f=l_e(a),d=l.path(f,u),p=i.insert(()=>h,":first-child");return p.insert(()=>d),s&&e.look!=="handDrawn"&&p.selectAll("path").attr("style",s),n&&e.look!=="handDrawn"&&p.selectAll("path").attr("style",n),je(e,p),e.intersect=function(m){return Y.info("crossedCircle intersect",e,{radius:a,point:m}),Ye.circle(e,a,m)},i}var UK=N(()=>{"use strict";vt();Ft();Ut();Wt();Ht();o(l_e,"createLine");o(VK,"crossedCircle")});function Hh(t,e,r,n=100,i=0,a=180){let s=[],l=i*Math.PI/180,f=(a*Math.PI/180-l)/(n-1);for(let d=0;dw,":first-child").attr("stroke-opacity",0),C.insert(()=>x,":first-child"),C.attr("class","text"),f&&e.look!=="handDrawn"&&C.selectAll("path").attr("style",f),n&&e.look!=="handDrawn"&&C.selectAll("path").attr("style",n),C.attr("transform",`translate(${h}, 0)`),s.attr("transform",`translate(${-l/2+h-(a.x-(a.left??0))},${-u/2+(e.padding??0)/2-(a.y-(a.top??0))})`),je(e,C),e.intersect=function(T){return Ye.polygon(e,p,T)},i}var WK=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(Hh,"generateCirclePoints");o(HK,"curlyBraceLeft")});function Wh(t,e,r,n=100,i=0,a=180){let s=[],l=i*Math.PI/180,f=(a*Math.PI/180-l)/(n-1);for(let d=0;dw,":first-child").attr("stroke-opacity",0),C.insert(()=>x,":first-child"),C.attr("class","text"),f&&e.look!=="handDrawn"&&C.selectAll("path").attr("style",f),n&&e.look!=="handDrawn"&&C.selectAll("path").attr("style",n),C.attr("transform",`translate(${-h}, 0)`),s.attr("transform",`translate(${-l/2+(e.padding??0)/2-(a.x-(a.left??0))},${-u/2+(e.padding??0)/2-(a.y-(a.top??0))})`),je(e,C),e.intersect=function(T){return Ye.polygon(e,p,T)},i}var YK=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(Wh,"generateCirclePoints");o(qK,"curlyBraceRight")});function Ra(t,e,r,n=100,i=0,a=180){let s=[],l=i*Math.PI/180,f=(a*Math.PI/180-l)/(n-1);for(let d=0;dA,":first-child").attr("stroke-opacity",0),S.insert(()=>b,":first-child"),S.insert(()=>T,":first-child"),S.attr("class","text"),f&&e.look!=="handDrawn"&&S.selectAll("path").attr("style",f),n&&e.look!=="handDrawn"&&S.selectAll("path").attr("style",n),S.attr("transform",`translate(${h-h/4}, 0)`),s.attr("transform",`translate(${-l/2+(e.padding??0)/2-(a.x-(a.left??0))},${-u/2+(e.padding??0)/2-(a.y-(a.top??0))})`),je(e,S),e.intersect=function(_){return Ye.polygon(e,m,_)},i}var jK=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(Ra,"generateCirclePoints");o(XK,"curlyBraces")});async function KK(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=80,l=20,u=Math.max(s,(a.width+(e.padding??0)*2)*1.25,e?.width??0),h=Math.max(l,a.height+(e.padding??0)*2,e?.height??0),f=h/2,{cssStyles:d}=e,p=Xe.svg(i),m=Ke(e,{});e.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");let g=u,y=h,v=g-f,x=y/4,b=[{x:v,y:0},{x,y:0},{x:0,y:y/2},{x,y},{x:v,y},...Lw(-v,-y/2,f,50,270,90)],w=Xt(b),C=p.path(w,m),T=i.insert(()=>C,":first-child");return T.attr("class","basic label-container"),d&&e.look!=="handDrawn"&&T.selectChildren("path").attr("style",d),n&&e.look!=="handDrawn"&&T.selectChildren("path").attr("style",n),T.attr("transform",`translate(${-u/2}, ${-h/2})`),je(e,T),e.intersect=function(E){return Ye.polygon(e,b,E)},i}var QK=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(KK,"curvedTrapezoid")});async function ZK(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+e.padding,e.width??0),u=l/2,h=u/(2.5+l/50),f=Math.max(a.height+h+e.padding,e.height??0),d,{cssStyles:p}=e;if(e.look==="handDrawn"){let m=Xe.svg(i),g=u_e(0,0,l,f,u,h),y=h_e(0,h,l,f,u,h),v=m.path(g,Ke(e,{})),x=m.path(y,Ke(e,{fill:"none"}));d=i.insert(()=>x,":first-child"),d=i.insert(()=>v,":first-child"),d.attr("class","basic label-container"),p&&d.attr("style",p)}else{let m=c_e(0,0,l,f,u,h);d=i.insert("path",":first-child").attr("d",m).attr("class","basic label-container").attr("style",$n(p)).attr("style",n)}return d.attr("label-offset-y",h),d.attr("transform",`translate(${-l/2}, ${-(f/2+h)})`),je(e,d),s.attr("transform",`translate(${-(a.width/2)-(a.x-(a.left??0))}, ${-(a.height/2)+(e.padding??0)/1.5-(a.y-(a.top??0))})`),e.intersect=function(m){let g=Ye.rect(e,m),y=g.x-(e.x??0);if(u!=0&&(Math.abs(y)<(e.width??0)/2||Math.abs(y)==(e.width??0)/2&&Math.abs(g.y-(e.y??0))>(e.height??0)/2-h)){let v=h*h*(1-y*y/(u*u));v>0&&(v=Math.sqrt(v)),v=h-v,m.y-(e.y??0)>0&&(v=-v),g.y+=v}return g},i}var c_e,u_e,h_e,JK=N(()=>{"use strict";Ft();Ht();Ut();Wt();ir();c_e=o((t,e,r,n,i,a)=>[`M${t},${e+a}`,`a${i},${a} 0,0,0 ${r},0`,`a${i},${a} 0,0,0 ${-r},0`,`l0,${n}`,`a${i},${a} 0,0,0 ${r},0`,`l0,${-n}`].join(" "),"createCylinderPathD"),u_e=o((t,e,r,n,i,a)=>[`M${t},${e+a}`,`M${t+r},${e+a}`,`a${i},${a} 0,0,0 ${-r},0`,`l0,${n}`,`a${i},${a} 0,0,0 ${r},0`,`l0,${-n}`].join(" "),"createOuterCylinderPathD"),h_e=o((t,e,r,n,i,a)=>[`M${t-r/2},${-n/2}`,`a${i},${a} 0,0,0 ${r},0`].join(" "),"createInnerCylinderPathD");o(ZK,"cylinder")});async function eQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=a.width+e.padding,u=a.height+e.padding,h=u*.2,f=-l/2,d=-u/2-h/2,{cssStyles:p}=e,m=Xe.svg(i),g=Ke(e,{});e.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");let y=[{x:f,y:d+h},{x:-f,y:d+h},{x:-f,y:-d},{x:f,y:-d},{x:f,y:d},{x:-f,y:d},{x:-f,y:d+h}],v=m.polygon(y.map(b=>[b.x,b.y]),g),x=i.insert(()=>v,":first-child");return x.attr("class","basic label-container"),p&&e.look!=="handDrawn"&&x.selectAll("path").attr("style",p),n&&e.look!=="handDrawn"&&x.selectAll("path").attr("style",n),s.attr("transform",`translate(${f+(e.padding??0)/2-(a.x-(a.left??0))}, ${d+h+(e.padding??0)/2-(a.y-(a.top??0))})`),je(e,x),e.intersect=function(b){return Ye.rect(e,b)},i}var tQ=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(eQ,"dividedRectangle")});async function rQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,halfPadding:s}=await pt(t,e,ht(e)),u=a.width/2+s+5,h=a.width/2+s,f,{cssStyles:d}=e;if(e.look==="handDrawn"){let p=Xe.svg(i),m=Ke(e,{roughness:.2,strokeWidth:2.5}),g=Ke(e,{roughness:.2,strokeWidth:1.5}),y=p.circle(0,0,u*2,m),v=p.circle(0,0,h*2,g);f=i.insert("g",":first-child"),f.attr("class",$n(e.cssClasses)).attr("style",$n(d)),f.node()?.appendChild(y),f.node()?.appendChild(v)}else{f=i.insert("g",":first-child");let p=f.insert("circle",":first-child"),m=f.insert("circle");f.attr("class","basic label-container").attr("style",n),p.attr("class","outer-circle").attr("style",n).attr("r",u).attr("cx",0).attr("cy",0),m.attr("class","inner-circle").attr("style",n).attr("r",h).attr("cx",0).attr("cy",0)}return je(e,f),e.intersect=function(p){return Y.info("DoubleCircle intersect",e,u,p),Ye.circle(e,u,p)},i}var nQ=N(()=>{"use strict";vt();Ft();Ht();Ut();Wt();ir();o(rQ,"doublecircle")});function iQ(t,e,{config:{themeVariables:r}}){let{labelStyles:n,nodeStyles:i}=Qe(e);e.label="",e.labelStyle=n;let a=t.insert("g").attr("class",ht(e)).attr("id",e.domId??e.id),s=7,{cssStyles:l}=e,u=Xe.svg(a),{nodeBorder:h}=r,f=Ke(e,{fillStyle:"solid"});e.look!=="handDrawn"&&(f.roughness=0);let d=u.circle(0,0,s*2,f),p=a.insert(()=>d,":first-child");return p.selectAll("path").attr("style",`fill: ${h} !important;`),l&&l.length>0&&e.look!=="handDrawn"&&p.selectAll("path").attr("style",l),i&&e.look!=="handDrawn"&&p.selectAll("path").attr("style",i),je(e,p),e.intersect=function(m){return Y.info("filledCircle intersect",e,{radius:s,point:m}),Ye.circle(e,s,m)},a}var aQ=N(()=>{"use strict";Wt();vt();Ht();Ut();Ft();o(iQ,"filledCircle")});async function sQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=a.width+(e.padding??0),u=l+a.height,h=l+a.height,f=[{x:0,y:-u},{x:h,y:-u},{x:h/2,y:0}],{cssStyles:d}=e,p=Xe.svg(i),m=Ke(e,{});e.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");let g=Xt(f),y=p.path(g,m),v=i.insert(()=>y,":first-child").attr("transform",`translate(${-u/2}, ${u/2})`);return d&&e.look!=="handDrawn"&&v.selectChildren("path").attr("style",d),n&&e.look!=="handDrawn"&&v.selectChildren("path").attr("style",n),e.width=l,e.height=u,je(e,v),s.attr("transform",`translate(${-a.width/2-(a.x-(a.left??0))}, ${-u/2+(e.padding??0)/2+(a.y-(a.top??0))})`),e.intersect=function(x){return Y.info("Triangle intersect",e,f,x),Ye.polygon(e,f,x)},i}var oQ=N(()=>{"use strict";vt();Ft();Ht();Ut();Wt();Ft();o(sQ,"flippedTriangle")});function lQ(t,e,{dir:r,config:{state:n,themeVariables:i}}){let{nodeStyles:a}=Qe(e);e.label="";let s=t.insert("g").attr("class",ht(e)).attr("id",e.domId??e.id),{cssStyles:l}=e,u=Math.max(70,e?.width??0),h=Math.max(10,e?.height??0);r==="LR"&&(u=Math.max(10,e?.width??0),h=Math.max(70,e?.height??0));let f=-1*u/2,d=-1*h/2,p=Xe.svg(s),m=Ke(e,{stroke:i.lineColor,fill:i.lineColor});e.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");let g=p.rectangle(f,d,u,h,m),y=s.insert(()=>g,":first-child");l&&e.look!=="handDrawn"&&y.selectAll("path").attr("style",l),a&&e.look!=="handDrawn"&&y.selectAll("path").attr("style",a),je(e,y);let v=n?.padding??0;return e.width&&e.height&&(e.width+=v/2||0,e.height+=v/2||0),e.intersect=function(x){return Ye.rect(e,x)},s}var cQ=N(()=>{"use strict";Wt();Ht();Ut();Ft();o(lQ,"forkJoin")});async function uQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let i=80,a=50,{shapeSvg:s,bbox:l}=await pt(t,e,ht(e)),u=Math.max(i,l.width+(e.padding??0)*2,e?.width??0),h=Math.max(a,l.height+(e.padding??0)*2,e?.height??0),f=h/2,{cssStyles:d}=e,p=Xe.svg(s),m=Ke(e,{});e.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");let g=[{x:-u/2,y:-h/2},{x:u/2-f,y:-h/2},...Lw(-u/2+f,0,f,50,90,270),{x:u/2-f,y:h/2},{x:-u/2,y:h/2}],y=Xt(g),v=p.path(y,m),x=s.insert(()=>v,":first-child");return x.attr("class","basic label-container"),d&&e.look!=="handDrawn"&&x.selectChildren("path").attr("style",d),n&&e.look!=="handDrawn"&&x.selectChildren("path").attr("style",n),je(e,x),e.intersect=function(b){return Y.info("Pill intersect",e,{radius:f,point:b}),Ye.polygon(e,g,b)},s}var hQ=N(()=>{"use strict";vt();Ft();Ht();Ut();Wt();o(uQ,"halfRoundedRectangle")});async function fQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=4,l=a.height+e.padding,u=l/s,h=a.width+2*u+e.padding,f=[{x:u,y:0},{x:h-u,y:0},{x:h,y:-l/2},{x:h-u,y:-l},{x:u,y:-l},{x:0,y:-l/2}],d,{cssStyles:p}=e;if(e.look==="handDrawn"){let m=Xe.svg(i),g=Ke(e,{}),y=f_e(0,0,h,l,u),v=m.path(y,g);d=i.insert(()=>v,":first-child").attr("transform",`translate(${-h/2}, ${l/2})`),p&&d.attr("style",p)}else d=La(i,h,l,f);return n&&d.attr("style",n),e.width=h,e.height=l,je(e,d),e.intersect=function(m){return Ye.polygon(e,f,m)},i}var f_e,dQ=N(()=>{"use strict";Ft();Ht();Ut();Wt();_u();f_e=o((t,e,r,n,i)=>[`M${t+i},${e}`,`L${t+r-i},${e}`,`L${t+r},${e-n/2}`,`L${t+r-i},${e-n}`,`L${t+i},${e-n}`,`L${t},${e-n/2}`,"Z"].join(" "),"createHexagonPathD");o(fQ,"hexagon")});async function pQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.label="",e.labelStyle=r;let{shapeSvg:i}=await pt(t,e,ht(e)),a=Math.max(30,e?.width??0),s=Math.max(30,e?.height??0),{cssStyles:l}=e,u=Xe.svg(i),h=Ke(e,{});e.look!=="handDrawn"&&(h.roughness=0,h.fillStyle="solid");let f=[{x:0,y:0},{x:a,y:0},{x:0,y:s},{x:a,y:s}],d=Xt(f),p=u.path(d,h),m=i.insert(()=>p,":first-child");return m.attr("class","basic label-container"),l&&e.look!=="handDrawn"&&m.selectChildren("path").attr("style",l),n&&e.look!=="handDrawn"&&m.selectChildren("path").attr("style",n),m.attr("transform",`translate(${-a/2}, ${-s/2})`),je(e,m),e.intersect=function(g){return Y.info("Pill intersect",e,{points:f}),Ye.polygon(e,f,g)},i}var mQ=N(()=>{"use strict";vt();Ft();Ht();Ut();Wt();o(pQ,"hourglass")});async function gQ(t,e,{config:{themeVariables:r,flowchart:n}}){let{labelStyles:i}=Qe(e);e.labelStyle=i;let a=e.assetHeight??48,s=e.assetWidth??48,l=Math.max(a,s),u=n?.wrappingWidth;e.width=Math.max(l,u??0);let{shapeSvg:h,bbox:f,label:d}=await pt(t,e,"icon-shape default"),p=e.pos==="t",m=l,g=l,{nodeBorder:y}=r,{stylesMap:v}=mc(e),x=-g/2,b=-m/2,w=e.label?8:0,C=Xe.svg(h),T=Ke(e,{stroke:"none",fill:"none"});e.look!=="handDrawn"&&(T.roughness=0,T.fillStyle="solid");let E=C.rectangle(x,b,g,m,T),A=Math.max(g,f.width),S=m+f.height+w,_=C.rectangle(-A/2,-S/2,A,S,{...T,fill:"transparent",stroke:"none"}),I=h.insert(()=>E,":first-child"),D=h.insert(()=>_);if(e.icon){let k=h.append("g");k.html(`${await wo(e.icon,{height:l,width:l,fallbackPrefix:""})}`);let L=k.node().getBBox(),R=L.width,O=L.height,M=L.x,B=L.y;k.attr("transform",`translate(${-R/2-M},${p?f.height/2+w/2-O/2-B:-f.height/2-w/2-O/2-B})`),k.attr("style",`color: ${v.get("stroke")??y};`)}return d.attr("transform",`translate(${-f.width/2-(f.x-(f.left??0))},${p?-S/2:S/2-f.height})`),I.attr("transform",`translate(0,${p?f.height/2+w/2:-f.height/2-w/2})`),je(e,D),e.intersect=function(k){if(Y.info("iconSquare intersect",e,k),!e.label)return Ye.rect(e,k);let L=e.x??0,R=e.y??0,O=e.height??0,M=[];return p?M=[{x:L-f.width/2,y:R-O/2},{x:L+f.width/2,y:R-O/2},{x:L+f.width/2,y:R-O/2+f.height+w},{x:L+g/2,y:R-O/2+f.height+w},{x:L+g/2,y:R+O/2},{x:L-g/2,y:R+O/2},{x:L-g/2,y:R-O/2+f.height+w},{x:L-f.width/2,y:R-O/2+f.height+w}]:M=[{x:L-g/2,y:R-O/2},{x:L+g/2,y:R-O/2},{x:L+g/2,y:R-O/2+m},{x:L+f.width/2,y:R-O/2+m},{x:L+f.width/2/2,y:R+O/2},{x:L-f.width/2,y:R+O/2},{x:L-f.width/2,y:R-O/2+m},{x:L-g/2,y:R-O/2+m}],Ye.polygon(e,M,k)},h}var yQ=N(()=>{"use strict";Wt();vt();tu();Ht();Ut();Ft();o(gQ,"icon")});async function vQ(t,e,{config:{themeVariables:r,flowchart:n}}){let{labelStyles:i}=Qe(e);e.labelStyle=i;let a=e.assetHeight??48,s=e.assetWidth??48,l=Math.max(a,s),u=n?.wrappingWidth;e.width=Math.max(l,u??0);let{shapeSvg:h,bbox:f,label:d}=await pt(t,e,"icon-shape default"),p=20,m=e.label?8:0,g=e.pos==="t",{nodeBorder:y,mainBkg:v}=r,{stylesMap:x}=mc(e),b=Xe.svg(h),w=Ke(e,{});e.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");let C=x.get("fill");w.stroke=C??v;let T=h.append("g");e.icon&&T.html(`${await wo(e.icon,{height:l,width:l,fallbackPrefix:""})}`);let E=T.node().getBBox(),A=E.width,S=E.height,_=E.x,I=E.y,D=Math.max(A,S)*Math.SQRT2+p*2,k=b.circle(0,0,D,w),L=Math.max(D,f.width),R=D+f.height+m,O=b.rectangle(-L/2,-R/2,L,R,{...w,fill:"transparent",stroke:"none"}),M=h.insert(()=>k,":first-child"),B=h.insert(()=>O);return T.attr("transform",`translate(${-A/2-_},${g?f.height/2+m/2-S/2-I:-f.height/2-m/2-S/2-I})`),T.attr("style",`color: ${x.get("stroke")??y};`),d.attr("transform",`translate(${-f.width/2-(f.x-(f.left??0))},${g?-R/2:R/2-f.height})`),M.attr("transform",`translate(0,${g?f.height/2+m/2:-f.height/2-m/2})`),je(e,B),e.intersect=function(F){return Y.info("iconSquare intersect",e,F),Ye.rect(e,F)},h}var xQ=N(()=>{"use strict";Wt();vt();tu();Ht();Ut();Ft();o(vQ,"iconCircle")});var Na,qh=N(()=>{"use strict";Na=o((t,e,r,n,i)=>["M",t+i,e,"H",t+r-i,"A",i,i,0,0,1,t+r,e+i,"V",e+n-i,"A",i,i,0,0,1,t+r-i,e+n,"H",t+i,"A",i,i,0,0,1,t,e+n-i,"V",e+i,"A",i,i,0,0,1,t+i,e,"Z"].join(" "),"createRoundedRectPathD")});async function bQ(t,e,{config:{themeVariables:r,flowchart:n}}){let{labelStyles:i}=Qe(e);e.labelStyle=i;let a=e.assetHeight??48,s=e.assetWidth??48,l=Math.max(a,s),u=n?.wrappingWidth;e.width=Math.max(l,u??0);let{shapeSvg:h,bbox:f,halfPadding:d,label:p}=await pt(t,e,"icon-shape default"),m=e.pos==="t",g=l+d*2,y=l+d*2,{nodeBorder:v,mainBkg:x}=r,{stylesMap:b}=mc(e),w=-y/2,C=-g/2,T=e.label?8:0,E=Xe.svg(h),A=Ke(e,{});e.look!=="handDrawn"&&(A.roughness=0,A.fillStyle="solid");let S=b.get("fill");A.stroke=S??x;let _=E.path(Na(w,C,y,g,5),A),I=Math.max(y,f.width),D=g+f.height+T,k=E.rectangle(-I/2,-D/2,I,D,{...A,fill:"transparent",stroke:"none"}),L=h.insert(()=>_,":first-child").attr("class","icon-shape2"),R=h.insert(()=>k);if(e.icon){let O=h.append("g");O.html(`${await wo(e.icon,{height:l,width:l,fallbackPrefix:""})}`);let M=O.node().getBBox(),B=M.width,F=M.height,P=M.x,z=M.y;O.attr("transform",`translate(${-B/2-P},${m?f.height/2+T/2-F/2-z:-f.height/2-T/2-F/2-z})`),O.attr("style",`color: ${b.get("stroke")??v};`)}return p.attr("transform",`translate(${-f.width/2-(f.x-(f.left??0))},${m?-D/2:D/2-f.height})`),L.attr("transform",`translate(0,${m?f.height/2+T/2:-f.height/2-T/2})`),je(e,R),e.intersect=function(O){if(Y.info("iconSquare intersect",e,O),!e.label)return Ye.rect(e,O);let M=e.x??0,B=e.y??0,F=e.height??0,P=[];return m?P=[{x:M-f.width/2,y:B-F/2},{x:M+f.width/2,y:B-F/2},{x:M+f.width/2,y:B-F/2+f.height+T},{x:M+y/2,y:B-F/2+f.height+T},{x:M+y/2,y:B+F/2},{x:M-y/2,y:B+F/2},{x:M-y/2,y:B-F/2+f.height+T},{x:M-f.width/2,y:B-F/2+f.height+T}]:P=[{x:M-y/2,y:B-F/2},{x:M+y/2,y:B-F/2},{x:M+y/2,y:B-F/2+g},{x:M+f.width/2,y:B-F/2+g},{x:M+f.width/2/2,y:B+F/2},{x:M-f.width/2,y:B+F/2},{x:M-f.width/2,y:B-F/2+g},{x:M-y/2,y:B-F/2+g}],Ye.polygon(e,P,O)},h}var wQ=N(()=>{"use strict";Wt();vt();tu();Ht();Ut();qh();Ft();o(bQ,"iconRounded")});async function TQ(t,e,{config:{themeVariables:r,flowchart:n}}){let{labelStyles:i}=Qe(e);e.labelStyle=i;let a=e.assetHeight??48,s=e.assetWidth??48,l=Math.max(a,s),u=n?.wrappingWidth;e.width=Math.max(l,u??0);let{shapeSvg:h,bbox:f,halfPadding:d,label:p}=await pt(t,e,"icon-shape default"),m=e.pos==="t",g=l+d*2,y=l+d*2,{nodeBorder:v,mainBkg:x}=r,{stylesMap:b}=mc(e),w=-y/2,C=-g/2,T=e.label?8:0,E=Xe.svg(h),A=Ke(e,{});e.look!=="handDrawn"&&(A.roughness=0,A.fillStyle="solid");let S=b.get("fill");A.stroke=S??x;let _=E.path(Na(w,C,y,g,.1),A),I=Math.max(y,f.width),D=g+f.height+T,k=E.rectangle(-I/2,-D/2,I,D,{...A,fill:"transparent",stroke:"none"}),L=h.insert(()=>_,":first-child"),R=h.insert(()=>k);if(e.icon){let O=h.append("g");O.html(`${await wo(e.icon,{height:l,width:l,fallbackPrefix:""})}`);let M=O.node().getBBox(),B=M.width,F=M.height,P=M.x,z=M.y;O.attr("transform",`translate(${-B/2-P},${m?f.height/2+T/2-F/2-z:-f.height/2-T/2-F/2-z})`),O.attr("style",`color: ${b.get("stroke")??v};`)}return p.attr("transform",`translate(${-f.width/2-(f.x-(f.left??0))},${m?-D/2:D/2-f.height})`),L.attr("transform",`translate(0,${m?f.height/2+T/2:-f.height/2-T/2})`),je(e,R),e.intersect=function(O){if(Y.info("iconSquare intersect",e,O),!e.label)return Ye.rect(e,O);let M=e.x??0,B=e.y??0,F=e.height??0,P=[];return m?P=[{x:M-f.width/2,y:B-F/2},{x:M+f.width/2,y:B-F/2},{x:M+f.width/2,y:B-F/2+f.height+T},{x:M+y/2,y:B-F/2+f.height+T},{x:M+y/2,y:B+F/2},{x:M-y/2,y:B+F/2},{x:M-y/2,y:B-F/2+f.height+T},{x:M-f.width/2,y:B-F/2+f.height+T}]:P=[{x:M-y/2,y:B-F/2},{x:M+y/2,y:B-F/2},{x:M+y/2,y:B-F/2+g},{x:M+f.width/2,y:B-F/2+g},{x:M+f.width/2/2,y:B+F/2},{x:M-f.width/2,y:B+F/2},{x:M-f.width/2,y:B-F/2+g},{x:M-y/2,y:B-F/2+g}],Ye.polygon(e,P,O)},h}var kQ=N(()=>{"use strict";Wt();vt();tu();Ht();qh();Ut();Ft();o(TQ,"iconSquare")});async function EQ(t,e,{config:{flowchart:r}}){let n=new Image;n.src=e?.img??"",await n.decode();let i=Number(n.naturalWidth.toString().replace("px","")),a=Number(n.naturalHeight.toString().replace("px",""));e.imageAspectRatio=i/a;let{labelStyles:s}=Qe(e);e.labelStyle=s;let l=r?.wrappingWidth;e.defaultWidth=r?.wrappingWidth;let u=Math.max(e.label?l??0:0,e?.assetWidth??i),h=e.constraint==="on"&&e?.assetHeight?e.assetHeight*e.imageAspectRatio:u,f=e.constraint==="on"?h/e.imageAspectRatio:e?.assetHeight??a;e.width=Math.max(h,l??0);let{shapeSvg:d,bbox:p,label:m}=await pt(t,e,"image-shape default"),g=e.pos==="t",y=-h/2,v=-f/2,x=e.label?8:0,b=Xe.svg(d),w=Ke(e,{});e.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");let C=b.rectangle(y,v,h,f,w),T=Math.max(h,p.width),E=f+p.height+x,A=b.rectangle(-T/2,-E/2,T,E,{...w,fill:"none",stroke:"none"}),S=d.insert(()=>C,":first-child"),_=d.insert(()=>A);if(e.img){let I=d.append("image");I.attr("href",e.img),I.attr("width",h),I.attr("height",f),I.attr("preserveAspectRatio","none"),I.attr("transform",`translate(${-h/2},${g?E/2-f:-E/2})`)}return m.attr("transform",`translate(${-p.width/2-(p.x-(p.left??0))},${g?-f/2-p.height/2-x/2:f/2-p.height/2+x/2})`),S.attr("transform",`translate(0,${g?p.height/2+x/2:-p.height/2-x/2})`),je(e,_),e.intersect=function(I){if(Y.info("iconSquare intersect",e,I),!e.label)return Ye.rect(e,I);let D=e.x??0,k=e.y??0,L=e.height??0,R=[];return g?R=[{x:D-p.width/2,y:k-L/2},{x:D+p.width/2,y:k-L/2},{x:D+p.width/2,y:k-L/2+p.height+x},{x:D+h/2,y:k-L/2+p.height+x},{x:D+h/2,y:k+L/2},{x:D-h/2,y:k+L/2},{x:D-h/2,y:k-L/2+p.height+x},{x:D-p.width/2,y:k-L/2+p.height+x}]:R=[{x:D-h/2,y:k-L/2},{x:D+h/2,y:k-L/2},{x:D+h/2,y:k-L/2+f},{x:D+p.width/2,y:k-L/2+f},{x:D+p.width/2/2,y:k+L/2},{x:D-p.width/2,y:k+L/2},{x:D-p.width/2,y:k-L/2+f},{x:D-h/2,y:k-L/2+f}],Ye.polygon(e,R,I)},d}var SQ=N(()=>{"use strict";Wt();vt();Ht();Ut();Ft();o(EQ,"imageSquare")});async function CQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=Math.max(a.width+(e.padding??0)*2,e?.width??0),l=Math.max(a.height+(e.padding??0)*2,e?.height??0),u=[{x:0,y:0},{x:s,y:0},{x:s+3*l/6,y:-l},{x:-3*l/6,y:-l}],h,{cssStyles:f}=e;if(e.look==="handDrawn"){let d=Xe.svg(i),p=Ke(e,{}),m=Xt(u),g=d.path(m,p);h=i.insert(()=>g,":first-child").attr("transform",`translate(${-s/2}, ${l/2})`),f&&h.attr("style",f)}else h=La(i,s,l,u);return n&&h.attr("style",n),e.width=s,e.height=l,je(e,h),e.intersect=function(d){return Ye.polygon(e,u,d)},i}var AQ=N(()=>{"use strict";Ft();Ht();Ut();Wt();_u();o(CQ,"inv_trapezoid")});async function Du(t,e,r){let{labelStyles:n,nodeStyles:i}=Qe(e);e.labelStyle=n;let{shapeSvg:a,bbox:s}=await pt(t,e,ht(e)),l=Math.max(s.width+r.labelPaddingX*2,e?.width||0),u=Math.max(s.height+r.labelPaddingY*2,e?.height||0),h=-l/2,f=-u/2,d,{rx:p,ry:m}=e,{cssStyles:g}=e;if(r?.rx&&r.ry&&(p=r.rx,m=r.ry),e.look==="handDrawn"){let y=Xe.svg(a),v=Ke(e,{}),x=p||m?y.path(Na(h,f,l,u,p||0),v):y.rectangle(h,f,l,u,v);d=a.insert(()=>x,":first-child"),d.attr("class","basic label-container").attr("style",$n(g))}else d=a.insert("rect",":first-child"),d.attr("class","basic label-container").attr("style",i).attr("rx",$n(p)).attr("ry",$n(m)).attr("x",h).attr("y",f).attr("width",l).attr("height",u);return je(e,d),e.intersect=function(y){return Ye.rect(e,y)},a}var mm=N(()=>{"use strict";Ft();Ht();qh();Ut();Wt();ir();o(Du,"drawRect")});async function _Q(t,e){let{shapeSvg:r,bbox:n,label:i}=await pt(t,e,"label"),a=r.insert("rect",":first-child");return a.attr("width",.1).attr("height",.1),r.attr("class","label edgeLabel"),i.attr("transform",`translate(${-(n.width/2)-(n.x-(n.left??0))}, ${-(n.height/2)-(n.y-(n.top??0))})`),je(e,a),e.intersect=function(u){return Ye.rect(e,u)},r}var DQ=N(()=>{"use strict";mm();Ft();Ht();o(_Q,"labelRect")});async function LQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=Math.max(a.width+(e.padding??0),e?.width??0),l=Math.max(a.height+(e.padding??0),e?.height??0),u=[{x:0,y:0},{x:s+3*l/6,y:0},{x:s,y:-l},{x:-(3*l)/6,y:-l}],h,{cssStyles:f}=e;if(e.look==="handDrawn"){let d=Xe.svg(i),p=Ke(e,{}),m=Xt(u),g=d.path(m,p);h=i.insert(()=>g,":first-child").attr("transform",`translate(${-s/2}, ${l/2})`),f&&h.attr("style",f)}else h=La(i,s,l,u);return n&&h.attr("style",n),e.width=s,e.height=l,je(e,h),e.intersect=function(d){return Ye.polygon(e,u,d)},i}var RQ=N(()=>{"use strict";Ft();Ht();Ut();Wt();_u();o(LQ,"lean_left")});async function NQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=Math.max(a.width+(e.padding??0),e?.width??0),l=Math.max(a.height+(e.padding??0),e?.height??0),u=[{x:-3*l/6,y:0},{x:s,y:0},{x:s+3*l/6,y:-l},{x:0,y:-l}],h,{cssStyles:f}=e;if(e.look==="handDrawn"){let d=Xe.svg(i),p=Ke(e,{}),m=Xt(u),g=d.path(m,p);h=i.insert(()=>g,":first-child").attr("transform",`translate(${-s/2}, ${l/2})`),f&&h.attr("style",f)}else h=La(i,s,l,u);return n&&h.attr("style",n),e.width=s,e.height=l,je(e,h),e.intersect=function(d){return Ye.polygon(e,u,d)},i}var MQ=N(()=>{"use strict";Ft();Ht();Ut();Wt();_u();o(NQ,"lean_right")});function IQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.label="",e.labelStyle=r;let i=t.insert("g").attr("class",ht(e)).attr("id",e.domId??e.id),{cssStyles:a}=e,s=Math.max(35,e?.width??0),l=Math.max(35,e?.height??0),u=7,h=[{x:s,y:0},{x:0,y:l+u/2},{x:s-2*u,y:l+u/2},{x:0,y:2*l},{x:s,y:l-u/2},{x:2*u,y:l-u/2}],f=Xe.svg(i),d=Ke(e,{});e.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");let p=Xt(h),m=f.path(p,d),g=i.insert(()=>m,":first-child");return a&&e.look!=="handDrawn"&&g.selectAll("path").attr("style",a),n&&e.look!=="handDrawn"&&g.selectAll("path").attr("style",n),g.attr("transform",`translate(-${s/2},${-l})`),je(e,g),e.intersect=function(y){return Y.info("lightningBolt intersect",e,y),Ye.polygon(e,h,y)},i}var OQ=N(()=>{"use strict";vt();Ft();Ut();Wt();Ht();Ft();o(IQ,"lightningBolt")});async function PQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0),e.width??0),u=l/2,h=u/(2.5+l/50),f=Math.max(a.height+h+(e.padding??0),e.height??0),d=f*.1,p,{cssStyles:m}=e;if(e.look==="handDrawn"){let g=Xe.svg(i),y=p_e(0,0,l,f,u,h,d),v=m_e(0,h,l,f,u,h),x=Ke(e,{}),b=g.path(y,x),w=g.path(v,x);i.insert(()=>w,":first-child").attr("class","line"),p=i.insert(()=>b,":first-child"),p.attr("class","basic label-container"),m&&p.attr("style",m)}else{let g=d_e(0,0,l,f,u,h,d);p=i.insert("path",":first-child").attr("d",g).attr("class","basic label-container").attr("style",$n(m)).attr("style",n)}return p.attr("label-offset-y",h),p.attr("transform",`translate(${-l/2}, ${-(f/2+h)})`),je(e,p),s.attr("transform",`translate(${-(a.width/2)-(a.x-(a.left??0))}, ${-(a.height/2)+h-(a.y-(a.top??0))})`),e.intersect=function(g){let y=Ye.rect(e,g),v=y.x-(e.x??0);if(u!=0&&(Math.abs(v)<(e.width??0)/2||Math.abs(v)==(e.width??0)/2&&Math.abs(y.y-(e.y??0))>(e.height??0)/2-h)){let x=h*h*(1-v*v/(u*u));x>0&&(x=Math.sqrt(x)),x=h-x,g.y-(e.y??0)>0&&(x=-x),y.y+=x}return y},i}var d_e,p_e,m_e,BQ=N(()=>{"use strict";Ft();Ht();Ut();Wt();ir();d_e=o((t,e,r,n,i,a,s)=>[`M${t},${e+a}`,`a${i},${a} 0,0,0 ${r},0`,`a${i},${a} 0,0,0 ${-r},0`,`l0,${n}`,`a${i},${a} 0,0,0 ${r},0`,`l0,${-n}`,`M${t},${e+a+s}`,`a${i},${a} 0,0,0 ${r},0`].join(" "),"createCylinderPathD"),p_e=o((t,e,r,n,i,a,s)=>[`M${t},${e+a}`,`M${t+r},${e+a}`,`a${i},${a} 0,0,0 ${-r},0`,`l0,${n}`,`a${i},${a} 0,0,0 ${r},0`,`l0,${-n}`,`M${t},${e+a+s}`,`a${i},${a} 0,0,0 ${r},0`].join(" "),"createOuterCylinderPathD"),m_e=o((t,e,r,n,i,a)=>[`M${t-r/2},${-n/2}`,`a${i},${a} 0,0,0 ${r},0`].join(" "),"createInnerCylinderPathD");o(PQ,"linedCylinder")});async function FQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0)*2,e?.width??0),u=Math.max(a.height+(e.padding??0)*2,e?.height??0),h=u/4,f=u+h,{cssStyles:d}=e,p=Xe.svg(i),m=Ke(e,{});e.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");let g=[{x:-l/2-l/2*.1,y:-f/2},{x:-l/2-l/2*.1,y:f/2},...Fo(-l/2-l/2*.1,f/2,l/2+l/2*.1,f/2,h,.8),{x:l/2+l/2*.1,y:-f/2},{x:-l/2-l/2*.1,y:-f/2},{x:-l/2,y:-f/2},{x:-l/2,y:f/2*1.1},{x:-l/2,y:-f/2}],y=p.polygon(g.map(x=>[x.x,x.y]),m),v=i.insert(()=>y,":first-child");return v.attr("class","basic label-container"),d&&e.look!=="handDrawn"&&v.selectAll("path").attr("style",d),n&&e.look!=="handDrawn"&&v.selectAll("path").attr("style",n),v.attr("transform",`translate(0,${-h/2})`),s.attr("transform",`translate(${-l/2+(e.padding??0)+l/2*.1/2-(a.x-(a.left??0))},${-u/2+(e.padding??0)-h/2-(a.y-(a.top??0))})`),je(e,v),e.intersect=function(x){return Ye.polygon(e,g,x)},i}var $Q=N(()=>{"use strict";Ft();Ht();Wt();Ut();o(FQ,"linedWaveEdgedRect")});async function zQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0)*2,e?.width??0),u=Math.max(a.height+(e.padding??0)*2,e?.height??0),h=5,f=-l/2,d=-u/2,{cssStyles:p}=e,m=Xe.svg(i),g=Ke(e,{}),y=[{x:f-h,y:d+h},{x:f-h,y:d+u+h},{x:f+l-h,y:d+u+h},{x:f+l-h,y:d+u},{x:f+l,y:d+u},{x:f+l,y:d+u-h},{x:f+l+h,y:d+u-h},{x:f+l+h,y:d-h},{x:f+h,y:d-h},{x:f+h,y:d},{x:f,y:d},{x:f,y:d+h}],v=[{x:f,y:d+h},{x:f+l-h,y:d+h},{x:f+l-h,y:d+u},{x:f+l,y:d+u},{x:f+l,y:d},{x:f,y:d}];e.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");let x=Xt(y),b=m.path(x,g),w=Xt(v),C=m.path(w,{...g,fill:"none"}),T=i.insert(()=>C,":first-child");return T.insert(()=>b,":first-child"),T.attr("class","basic label-container"),p&&e.look!=="handDrawn"&&T.selectAll("path").attr("style",p),n&&e.look!=="handDrawn"&&T.selectAll("path").attr("style",n),s.attr("transform",`translate(${-(a.width/2)-h-(a.x-(a.left??0))}, ${-(a.height/2)+h-(a.y-(a.top??0))})`),je(e,T),e.intersect=function(E){return Ye.polygon(e,y,E)},i}var GQ=N(()=>{"use strict";Ft();Ut();Wt();Ht();o(zQ,"multiRect")});async function VQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0)*2,e?.width??0),u=Math.max(a.height+(e.padding??0)*2,e?.height??0),h=u/4,f=u+h,d=-l/2,p=-f/2,m=5,{cssStyles:g}=e,y=Fo(d-m,p+f+m,d+l-m,p+f+m,h,.8),v=y?.[y.length-1],x=[{x:d-m,y:p+m},{x:d-m,y:p+f+m},...y,{x:d+l-m,y:v.y-m},{x:d+l,y:v.y-m},{x:d+l,y:v.y-2*m},{x:d+l+m,y:v.y-2*m},{x:d+l+m,y:p-m},{x:d+m,y:p-m},{x:d+m,y:p},{x:d,y:p},{x:d,y:p+m}],b=[{x:d,y:p+m},{x:d+l-m,y:p+m},{x:d+l-m,y:v.y-m},{x:d+l,y:v.y-m},{x:d+l,y:p},{x:d,y:p}],w=Xe.svg(i),C=Ke(e,{});e.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");let T=Xt(x),E=w.path(T,C),A=Xt(b),S=w.path(A,C),_=i.insert(()=>E,":first-child");return _.insert(()=>S),_.attr("class","basic label-container"),g&&e.look!=="handDrawn"&&_.selectAll("path").attr("style",g),n&&e.look!=="handDrawn"&&_.selectAll("path").attr("style",n),_.attr("transform",`translate(0,${-h/2})`),s.attr("transform",`translate(${-(a.width/2)-m-(a.x-(a.left??0))}, ${-(a.height/2)+m-h/2-(a.y-(a.top??0))})`),je(e,_),e.intersect=function(I){return Ye.polygon(e,x,I)},i}var UQ=N(()=>{"use strict";Ft();Ht();Wt();Ut();o(VQ,"multiWaveEdgedRectangle")});async function HQ(t,e,{config:{themeVariables:r}}){let{labelStyles:n,nodeStyles:i}=Qe(e);e.labelStyle=n,e.useHtmlLabels||cr().flowchart?.htmlLabels!==!1||(e.centerLabel=!0);let{shapeSvg:s,bbox:l}=await pt(t,e,ht(e)),u=Math.max(l.width+(e.padding??0)*2,e?.width??0),h=Math.max(l.height+(e.padding??0)*2,e?.height??0),f=-u/2,d=-h/2,{cssStyles:p}=e,m=Xe.svg(s),g=Ke(e,{fill:r.noteBkgColor,stroke:r.noteBorderColor});e.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");let y=m.rectangle(f,d,u,h,g),v=s.insert(()=>y,":first-child");return v.attr("class","basic label-container"),p&&e.look!=="handDrawn"&&v.selectAll("path").attr("style",p),i&&e.look!=="handDrawn"&&v.selectAll("path").attr("style",i),je(e,v),e.intersect=function(x){return Ye.rect(e,x)},s}var WQ=N(()=>{"use strict";Wt();Ht();Ut();Ft();ji();o(HQ,"note")});async function qQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=a.width+e.padding,l=a.height+e.padding,u=s+l,h=[{x:u/2,y:0},{x:u,y:-u/2},{x:u/2,y:-u},{x:0,y:-u/2}],f,{cssStyles:d}=e;if(e.look==="handDrawn"){let p=Xe.svg(i),m=Ke(e,{}),g=g_e(0,0,u),y=p.path(g,m);f=i.insert(()=>y,":first-child").attr("transform",`translate(${-u/2}, ${u/2})`),d&&f.attr("style",d)}else f=La(i,u,u,h);return n&&f.attr("style",n),je(e,f),e.intersect=function(p){return Y.debug(`APA12 Intersect called SPLIT +point:`,p,` +node: +`,e,` +res:`,Ye.polygon(e,h,p)),Ye.polygon(e,h,p)},i}var g_e,YQ=N(()=>{"use strict";vt();Ft();Ht();Ut();Wt();_u();g_e=o((t,e,r)=>[`M${t+r/2},${e}`,`L${t+r},${e-r/2}`,`L${t+r/2},${e-r}`,`L${t},${e-r/2}`,"Z"].join(" "),"createDecisionBoxPathD");o(qQ,"question")});async function XQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0),e?.width??0),u=Math.max(a.height+(e.padding??0),e?.height??0),h=-l/2,f=-u/2,d=f/2,p=[{x:h+d,y:f},{x:h,y:0},{x:h+d,y:-f},{x:-h,y:-f},{x:-h,y:f}],{cssStyles:m}=e,g=Xe.svg(i),y=Ke(e,{});e.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");let v=Xt(p),x=g.path(v,y),b=i.insert(()=>x,":first-child");return b.attr("class","basic label-container"),m&&e.look!=="handDrawn"&&b.selectAll("path").attr("style",m),n&&e.look!=="handDrawn"&&b.selectAll("path").attr("style",n),b.attr("transform",`translate(${-d/2},0)`),s.attr("transform",`translate(${-d/2-a.width/2-(a.x-(a.left??0))}, ${-(a.height/2)-(a.y-(a.top??0))})`),je(e,b),e.intersect=function(w){return Ye.polygon(e,p,w)},i}var jQ=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(XQ,"rect_left_inv_arrow")});function y_e(t,e){e&&t.attr("style",e)}async function v_e(t){let e=Ge(document.createElementNS("http://www.w3.org/2000/svg","foreignObject")),r=e.append("xhtml:div"),n=t.label;t.label&&pi(t.label)&&(n=await mh(t.label.replace(Ze.lineBreakRegex,` +`),me()));let i=t.isNode?"nodeLabel":"edgeLabel";return r.html('"+n+""),y_e(r,t.labelStyle),r.style("display","inline-block"),r.style("padding-right","1px"),r.style("white-space","nowrap"),r.attr("xmlns","http://www.w3.org/1999/xhtml"),e.node()}var x_e,gc,Gw=N(()=>{"use strict";dr();vt();zt();gr();ir();o(y_e,"applyStyle");o(v_e,"addHtmlLabel");x_e=o(async(t,e,r,n)=>{let i=t||"";if(typeof i=="object"&&(i=i[0]),fr(me().flowchart.htmlLabels)){i=i.replace(/\\n|\n/g,"
    "),Y.info("vertexText"+i);let a={isNode:n,label:na(i).replace(/fa[blrs]?:fa-[\w-]+/g,l=>``),labelStyle:e&&e.replace("fill:","color:")};return await v_e(a)}else{let a=document.createElementNS("http://www.w3.org/2000/svg","text");a.setAttribute("style",e.replace("color:","fill:"));let s=[];typeof i=="string"?s=i.split(/\\n|\n|/gi):Array.isArray(i)?s=i:s=[];for(let l of s){let u=document.createElementNS("http://www.w3.org/2000/svg","tspan");u.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),u.setAttribute("dy","1em"),u.setAttribute("x","0"),r?u.setAttribute("class","title-row"):u.setAttribute("class","row"),u.textContent=l.trim(),a.appendChild(u)}return a}},"createLabel"),gc=x_e});async function KQ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let i;e.cssClasses?i="node "+e.cssClasses:i="node default";let a=t.insert("g").attr("class",i).attr("id",e.domId||e.id),s=a.insert("g"),l=a.insert("g").attr("class","label").attr("style",n),u=e.description,h=e.label,f=l.node().appendChild(await gc(h,e.labelStyle,!0,!0)),d={width:0,height:0};if(fr(me()?.flowchart?.htmlLabels)){let S=f.children[0],_=Ge(f);d=S.getBoundingClientRect(),_.attr("width",d.width),_.attr("height",d.height)}Y.info("Text 2",u);let p=u||[],m=f.getBBox(),g=l.node().appendChild(await gc(p.join?p.join("
    "):p,e.labelStyle,!0,!0)),y=g.children[0],v=Ge(g);d=y.getBoundingClientRect(),v.attr("width",d.width),v.attr("height",d.height);let x=(e.padding||0)/2;Ge(g).attr("transform","translate( "+(d.width>m.width?0:(m.width-d.width)/2)+", "+(m.height+x+5)+")"),Ge(f).attr("transform","translate( "+(d.width(Y.debug("Rough node insert CXC",I),D),":first-child"),E=a.insert(()=>(Y.debug("Rough node insert CXC",I),I),":first-child")}else E=s.insert("rect",":first-child"),A=s.insert("line"),E.attr("class","outer title-state").attr("style",n).attr("x",-d.width/2-x).attr("y",-d.height/2-x).attr("width",d.width+(e.padding||0)).attr("height",d.height+(e.padding||0)),A.attr("class","divider").attr("x1",-d.width/2-x).attr("x2",d.width/2+x).attr("y1",-d.height/2-x+m.height+x).attr("y2",-d.height/2-x+m.height+x);return je(e,E),e.intersect=function(S){return Ye.rect(e,S)},a}var QQ=N(()=>{"use strict";dr();gr();Ft();Gw();Ht();Ut();Wt();zt();qh();vt();o(KQ,"rectWithTitle")});async function ZQ(t,e){let r={rx:5,ry:5,classes:"",labelPaddingX:(e?.padding||0)*1,labelPaddingY:(e?.padding||0)*1};return Du(t,e,r)}var JQ=N(()=>{"use strict";mm();o(ZQ,"roundedRect")});async function eZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=e?.padding??0,u=Math.max(a.width+(e.padding??0)*2,e?.width??0),h=Math.max(a.height+(e.padding??0)*2,e?.height??0),f=-a.width/2-l,d=-a.height/2-l,{cssStyles:p}=e,m=Xe.svg(i),g=Ke(e,{});e.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");let y=[{x:f,y:d},{x:f+u+8,y:d},{x:f+u+8,y:d+h},{x:f-8,y:d+h},{x:f-8,y:d},{x:f,y:d},{x:f,y:d+h}],v=m.polygon(y.map(b=>[b.x,b.y]),g),x=i.insert(()=>v,":first-child");return x.attr("class","basic label-container").attr("style",$n(p)),n&&e.look!=="handDrawn"&&x.selectAll("path").attr("style",n),p&&e.look!=="handDrawn"&&x.selectAll("path").attr("style",n),s.attr("transform",`translate(${-u/2+4+(e.padding??0)-(a.x-(a.left??0))},${-h/2+(e.padding??0)-(a.y-(a.top??0))})`),je(e,x),e.intersect=function(b){return Ye.rect(e,b)},i}var tZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();ir();o(eZ,"shadedProcess")});async function rZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0)*2,e?.width??0),u=Math.max(a.height+(e.padding??0)*2,e?.height??0),h=-l/2,f=-u/2,{cssStyles:d}=e,p=Xe.svg(i),m=Ke(e,{});e.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");let g=[{x:h,y:f},{x:h,y:f+u},{x:h+l,y:f+u},{x:h+l,y:f-u/2}],y=Xt(g),v=p.path(y,m),x=i.insert(()=>v,":first-child");return x.attr("class","basic label-container"),d&&e.look!=="handDrawn"&&x.selectChildren("path").attr("style",d),n&&e.look!=="handDrawn"&&x.selectChildren("path").attr("style",n),x.attr("transform",`translate(0, ${u/4})`),s.attr("transform",`translate(${-l/2+(e.padding??0)-(a.x-(a.left??0))}, ${-u/4+(e.padding??0)-(a.y-(a.top??0))})`),je(e,x),e.intersect=function(b){return Ye.polygon(e,g,b)},i}var nZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(rZ,"slopedRect")});async function iZ(t,e){let r={rx:0,ry:0,classes:"",labelPaddingX:(e?.padding||0)*2,labelPaddingY:(e?.padding||0)*1};return Du(t,e,r)}var aZ=N(()=>{"use strict";mm();o(iZ,"squareRect")});async function sZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=a.height+e.padding,l=a.width+s/4+e.padding,u,{cssStyles:h}=e;if(e.look==="handDrawn"){let f=Xe.svg(i),d=Ke(e,{}),p=Na(-l/2,-s/2,l,s,s/2),m=f.path(p,d);u=i.insert(()=>m,":first-child"),u.attr("class","basic label-container").attr("style",$n(h))}else u=i.insert("rect",":first-child"),u.attr("class","basic label-container").attr("style",n).attr("rx",s/2).attr("ry",s/2).attr("x",-l/2).attr("y",-s/2).attr("width",l).attr("height",s);return je(e,u),e.intersect=function(f){return Ye.rect(e,f)},i}var oZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();qh();ir();o(sZ,"stadium")});async function lZ(t,e){return Du(t,e,{rx:5,ry:5,classes:"flowchart-node"})}var cZ=N(()=>{"use strict";mm();o(lZ,"state")});function uZ(t,e,{config:{themeVariables:r}}){let{labelStyles:n,nodeStyles:i}=Qe(e);e.labelStyle=n;let{cssStyles:a}=e,{lineColor:s,stateBorder:l,nodeBorder:u}=r,h=t.insert("g").attr("class","node default").attr("id",e.domId||e.id),f=Xe.svg(h),d=Ke(e,{});e.look!=="handDrawn"&&(d.roughness=0,d.fillStyle="solid");let p=f.circle(0,0,14,{...d,stroke:s,strokeWidth:2}),m=l??u,g=f.circle(0,0,5,{...d,fill:m,stroke:m,strokeWidth:2,fillStyle:"solid"}),y=h.insert(()=>p,":first-child");return y.insert(()=>g),a&&y.selectAll("path").attr("style",a),i&&y.selectAll("path").attr("style",i),je(e,y),e.intersect=function(v){return Ye.circle(e,7,v)},h}var hZ=N(()=>{"use strict";Wt();Ht();Ut();Ft();o(uZ,"stateEnd")});function fZ(t,e,{config:{themeVariables:r}}){let{lineColor:n}=r,i=t.insert("g").attr("class","node default").attr("id",e.domId||e.id),a;if(e.look==="handDrawn"){let l=Xe.svg(i).circle(0,0,14,gK(n));a=i.insert(()=>l),a.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14)}else a=i.insert("circle",":first-child"),a.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14);return je(e,a),e.intersect=function(s){return Ye.circle(e,7,s)},i}var dZ=N(()=>{"use strict";Wt();Ht();Ut();Ft();o(fZ,"stateStart")});async function pZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=(e?.padding||0)/2,l=a.width+e.padding,u=a.height+e.padding,h=-a.width/2-s,f=-a.height/2-s,d=[{x:0,y:0},{x:l,y:0},{x:l,y:-u},{x:0,y:-u},{x:0,y:0},{x:-8,y:0},{x:l+8,y:0},{x:l+8,y:-u},{x:-8,y:-u},{x:-8,y:0}];if(e.look==="handDrawn"){let p=Xe.svg(i),m=Ke(e,{}),g=p.rectangle(h-8,f,l+16,u,m),y=p.line(h,f,h,f+u,m),v=p.line(h+l,f,h+l,f+u,m);i.insert(()=>y,":first-child"),i.insert(()=>v,":first-child");let x=i.insert(()=>g,":first-child"),{cssStyles:b}=e;x.attr("class","basic label-container").attr("style",$n(b)),je(e,x)}else{let p=La(i,l,u,d);n&&p.attr("style",n),je(e,p)}return e.intersect=function(p){return Ye.polygon(e,d,p)},i}var mZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();_u();ir();o(pZ,"subroutine")});async function gZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=Math.max(a.width+(e.padding??0)*2,e?.width??0),l=Math.max(a.height+(e.padding??0)*2,e?.height??0),u=-s/2,h=-l/2,f=.2*l,d=.2*l,{cssStyles:p}=e,m=Xe.svg(i),g=Ke(e,{}),y=[{x:u-f/2,y:h},{x:u+s+f/2,y:h},{x:u+s+f/2,y:h+l},{x:u-f/2,y:h+l}],v=[{x:u+s-f/2,y:h+l},{x:u+s+f/2,y:h+l},{x:u+s+f/2,y:h+l-d}];e.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");let x=Xt(y),b=m.path(x,g),w=Xt(v),C=m.path(w,{...g,fillStyle:"solid"}),T=i.insert(()=>C,":first-child");return T.insert(()=>b,":first-child"),T.attr("class","basic label-container"),p&&e.look!=="handDrawn"&&T.selectAll("path").attr("style",p),n&&e.look!=="handDrawn"&&T.selectAll("path").attr("style",n),je(e,T),e.intersect=function(E){return Ye.polygon(e,y,E)},i}var yZ=N(()=>{"use strict";Ft();Ut();Wt();Ht();o(gZ,"taggedRect")});async function vZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0)*2,e?.width??0),u=Math.max(a.height+(e.padding??0)*2,e?.height??0),h=u/4,f=.2*l,d=.2*u,p=u+h,{cssStyles:m}=e,g=Xe.svg(i),y=Ke(e,{});e.look!=="handDrawn"&&(y.roughness=0,y.fillStyle="solid");let v=[{x:-l/2-l/2*.1,y:p/2},...Fo(-l/2-l/2*.1,p/2,l/2+l/2*.1,p/2,h,.8),{x:l/2+l/2*.1,y:-p/2},{x:-l/2-l/2*.1,y:-p/2}],x=-l/2+l/2*.1,b=-p/2-d*.4,w=[{x:x+l-f,y:(b+u)*1.4},{x:x+l,y:b+u-d},{x:x+l,y:(b+u)*.9},...Fo(x+l,(b+u)*1.3,x+l-f,(b+u)*1.5,-u*.03,.5)],C=Xt(v),T=g.path(C,y),E=Xt(w),A=g.path(E,{...y,fillStyle:"solid"}),S=i.insert(()=>A,":first-child");return S.insert(()=>T,":first-child"),S.attr("class","basic label-container"),m&&e.look!=="handDrawn"&&S.selectAll("path").attr("style",m),n&&e.look!=="handDrawn"&&S.selectAll("path").attr("style",n),S.attr("transform",`translate(0,${-h/2})`),s.attr("transform",`translate(${-l/2+(e.padding??0)-(a.x-(a.left??0))},${-u/2+(e.padding??0)-h/2-(a.y-(a.top??0))})`),je(e,S),e.intersect=function(_){return Ye.polygon(e,v,_)},i}var xZ=N(()=>{"use strict";Ft();Ht();Wt();Ut();o(vZ,"taggedWaveEdgedRectangle")});async function bZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=Math.max(a.width+e.padding,e?.width||0),l=Math.max(a.height+e.padding,e?.height||0),u=-s/2,h=-l/2,f=i.insert("rect",":first-child");return f.attr("class","text").attr("style",n).attr("rx",0).attr("ry",0).attr("x",u).attr("y",h).attr("width",s).attr("height",l),je(e,f),e.intersect=function(d){return Ye.rect(e,d)},i}var wZ=N(()=>{"use strict";Ft();Ht();Ut();o(bZ,"text")});async function TZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s,halfPadding:l}=await pt(t,e,ht(e)),u=e.look==="neo"?l*2:l,h=a.height+u,f=h/2,d=f/(2.5+h/50),p=a.width+d+u,{cssStyles:m}=e,g;if(e.look==="handDrawn"){let y=Xe.svg(i),v=w_e(0,0,p,h,d,f),x=T_e(0,0,p,h,d,f),b=y.path(v,Ke(e,{})),w=y.path(x,Ke(e,{fill:"none"}));g=i.insert(()=>w,":first-child"),g=i.insert(()=>b,":first-child"),g.attr("class","basic label-container"),m&&g.attr("style",m)}else{let y=b_e(0,0,p,h,d,f);g=i.insert("path",":first-child").attr("d",y).attr("class","basic label-container").attr("style",$n(m)).attr("style",n),g.attr("class","basic label-container"),m&&g.selectAll("path").attr("style",m),n&&g.selectAll("path").attr("style",n)}return g.attr("label-offset-x",d),g.attr("transform",`translate(${-p/2}, ${h/2} )`),s.attr("transform",`translate(${-(a.width/2)-d-(a.x-(a.left??0))}, ${-(a.height/2)-(a.y-(a.top??0))})`),je(e,g),e.intersect=function(y){let v=Ye.rect(e,y),x=v.y-(e.y??0);if(f!=0&&(Math.abs(x)<(e.height??0)/2||Math.abs(x)==(e.height??0)/2&&Math.abs(v.x-(e.x??0))>(e.width??0)/2-d)){let b=d*d*(1-x*x/(f*f));b!=0&&(b=Math.sqrt(Math.abs(b))),b=d-b,y.x-(e.x??0)>0&&(b=-b),v.x+=b}return v},i}var b_e,w_e,T_e,kZ=N(()=>{"use strict";Ft();Ut();Wt();Ht();ir();b_e=o((t,e,r,n,i,a)=>`M${t},${e} + a${i},${a} 0,0,1 0,${-n} + l${r},0 + a${i},${a} 0,0,1 0,${n} + M${r},${-n} + a${i},${a} 0,0,0 0,${n} + l${-r},0`,"createCylinderPathD"),w_e=o((t,e,r,n,i,a)=>[`M${t},${e}`,`M${t+r},${e}`,`a${i},${a} 0,0,0 0,${-n}`,`l${-r},0`,`a${i},${a} 0,0,0 0,${n}`,`l${r},0`].join(" "),"createOuterCylinderPathD"),T_e=o((t,e,r,n,i,a)=>[`M${t+r/2},${-n/2}`,`a${i},${a} 0,0,0 0,${n}`].join(" "),"createInnerCylinderPathD");o(TZ,"tiltedCylinder")});async function EZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=a.width+e.padding,l=a.height+e.padding,u=[{x:-3*l/6,y:0},{x:s+3*l/6,y:0},{x:s,y:-l},{x:0,y:-l}],h,{cssStyles:f}=e;if(e.look==="handDrawn"){let d=Xe.svg(i),p=Ke(e,{}),m=Xt(u),g=d.path(m,p);h=i.insert(()=>g,":first-child").attr("transform",`translate(${-s/2}, ${l/2})`),f&&h.attr("style",f)}else h=La(i,s,l,u);return n&&h.attr("style",n),e.width=s,e.height=l,je(e,h),e.intersect=function(d){return Ye.polygon(e,u,d)},i}var SZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();_u();o(EZ,"trapezoid")});async function CZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=60,l=20,u=Math.max(s,a.width+(e.padding??0)*2,e?.width??0),h=Math.max(l,a.height+(e.padding??0)*2,e?.height??0),{cssStyles:f}=e,d=Xe.svg(i),p=Ke(e,{});e.look!=="handDrawn"&&(p.roughness=0,p.fillStyle="solid");let m=[{x:-u/2*.8,y:-h/2},{x:u/2*.8,y:-h/2},{x:u/2,y:-h/2*.6},{x:u/2,y:h/2},{x:-u/2,y:h/2},{x:-u/2,y:-h/2*.6}],g=Xt(m),y=d.path(g,p),v=i.insert(()=>y,":first-child");return v.attr("class","basic label-container"),f&&e.look!=="handDrawn"&&v.selectChildren("path").attr("style",f),n&&e.look!=="handDrawn"&&v.selectChildren("path").attr("style",n),je(e,v),e.intersect=function(x){return Ye.polygon(e,m,x)},i}var AZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(CZ,"trapezoidalPentagon")});async function _Z(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=fr(me().flowchart?.htmlLabels),u=a.width+(e.padding??0),h=u+a.height,f=u+a.height,d=[{x:0,y:0},{x:f,y:0},{x:f/2,y:-h}],{cssStyles:p}=e,m=Xe.svg(i),g=Ke(e,{});e.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");let y=Xt(d),v=m.path(y,g),x=i.insert(()=>v,":first-child").attr("transform",`translate(${-h/2}, ${h/2})`);return p&&e.look!=="handDrawn"&&x.selectChildren("path").attr("style",p),n&&e.look!=="handDrawn"&&x.selectChildren("path").attr("style",n),e.width=u,e.height=h,je(e,x),s.attr("transform",`translate(${-a.width/2-(a.x-(a.left??0))}, ${h/2-(a.height+(e.padding??0)/(l?2:1)-(a.y-(a.top??0)))})`),e.intersect=function(b){return Y.info("Triangle intersect",e,d,b),Ye.polygon(e,d,b)},i}var DZ=N(()=>{"use strict";vt();Ft();Ht();Ut();Wt();Ft();gr();zt();o(_Z,"triangle")});async function LZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0)*2,e?.width??0),u=Math.max(a.height+(e.padding??0)*2,e?.height??0),h=u/8,f=u+h,{cssStyles:d}=e,m=70-l,g=m>0?m/2:0,y=Xe.svg(i),v=Ke(e,{});e.look!=="handDrawn"&&(v.roughness=0,v.fillStyle="solid");let x=[{x:-l/2-g,y:f/2},...Fo(-l/2-g,f/2,l/2+g,f/2,h,.8),{x:l/2+g,y:-f/2},{x:-l/2-g,y:-f/2}],b=Xt(x),w=y.path(b,v),C=i.insert(()=>w,":first-child");return C.attr("class","basic label-container"),d&&e.look!=="handDrawn"&&C.selectAll("path").attr("style",d),n&&e.look!=="handDrawn"&&C.selectAll("path").attr("style",n),C.attr("transform",`translate(0,${-h/2})`),s.attr("transform",`translate(${-l/2+(e.padding??0)-(a.x-(a.left??0))},${-u/2+(e.padding??0)-h-(a.y-(a.top??0))})`),je(e,C),e.intersect=function(T){return Ye.polygon(e,x,T)},i}var RZ=N(()=>{"use strict";Ft();Ht();Wt();Ut();o(LZ,"waveEdgedRectangle")});async function NZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a}=await pt(t,e,ht(e)),s=100,l=50,u=Math.max(a.width+(e.padding??0)*2,e?.width??0),h=Math.max(a.height+(e.padding??0)*2,e?.height??0),f=u/h,d=u,p=h;d>p*f?p=d/f:d=p*f,d=Math.max(d,s),p=Math.max(p,l);let m=Math.min(p*.2,p/4),g=p+m*2,{cssStyles:y}=e,v=Xe.svg(i),x=Ke(e,{});e.look!=="handDrawn"&&(x.roughness=0,x.fillStyle="solid");let b=[{x:-d/2,y:g/2},...Fo(-d/2,g/2,d/2,g/2,m,1),{x:d/2,y:-g/2},...Fo(d/2,-g/2,-d/2,-g/2,m,-1)],w=Xt(b),C=v.path(w,x),T=i.insert(()=>C,":first-child");return T.attr("class","basic label-container"),y&&e.look!=="handDrawn"&&T.selectAll("path").attr("style",y),n&&e.look!=="handDrawn"&&T.selectAll("path").attr("style",n),je(e,T),e.intersect=function(E){return Ye.polygon(e,b,E)},i}var MZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();o(NZ,"waveRectangle")});async function IZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let{shapeSvg:i,bbox:a,label:s}=await pt(t,e,ht(e)),l=Math.max(a.width+(e.padding??0)*2,e?.width??0),u=Math.max(a.height+(e.padding??0)*2,e?.height??0),h=5,f=-l/2,d=-u/2,{cssStyles:p}=e,m=Xe.svg(i),g=Ke(e,{}),y=[{x:f-h,y:d-h},{x:f-h,y:d+u},{x:f+l,y:d+u},{x:f+l,y:d-h}],v=`M${f-h},${d-h} L${f+l},${d-h} L${f+l},${d+u} L${f-h},${d+u} L${f-h},${d-h} + M${f-h},${d} L${f+l},${d} + M${f},${d-h} L${f},${d+u}`;e.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");let x=m.path(v,g),b=i.insert(()=>x,":first-child");return b.attr("transform",`translate(${h/2}, ${h/2})`),b.attr("class","basic label-container"),p&&e.look!=="handDrawn"&&b.selectAll("path").attr("style",p),n&&e.look!=="handDrawn"&&b.selectAll("path").attr("style",n),s.attr("transform",`translate(${-(a.width/2)+h/2-(a.x-(a.left??0))}, ${-(a.height/2)+h/2-(a.y-(a.top??0))})`),je(e,b),e.intersect=function(w){return Ye.polygon(e,y,w)},i}var OZ=N(()=>{"use strict";Ft();Ut();Wt();Ht();o(IZ,"windowPane")});async function KD(t,e){let r=e;if(r.alias&&(e.label=r.alias),e.look==="handDrawn"){let{themeVariables:P}=cr(),{background:z}=P,$={...e,id:e.id+"-background",look:"default",cssStyles:["stroke: none",`fill: ${z}`]};await KD(t,$)}let n=cr();e.useHtmlLabels=n.htmlLabels;let i=n.er?.diagramPadding??10,a=n.er?.entityPadding??6,{cssStyles:s}=e,{labelStyles:l}=Qe(e);if(r.attributes.length===0&&e.label){let P={rx:0,ry:0,labelPaddingX:i,labelPaddingY:i*1.5,classes:""};ra(e.label,n)+P.labelPaddingX*20){let P=f.width+i*2-(m+g+y+v);m+=P/w,g+=P/w,y>0&&(y+=P/w),v>0&&(v+=P/w)}let T=m+g+y+v,E=Xe.svg(h),A=Ke(e,{});e.look!=="handDrawn"&&(A.roughness=0,A.fillStyle="solid");let S=Math.max(C.width+i*2,e?.width||0,T),_=Math.max(C.height+(p[0]||d)+a,e?.height||0),I=-S/2,D=-_/2;h.selectAll("g:not(:first-child)").each((P,z,$)=>{let H=Ge($[z]),Q=H.attr("transform"),j=0,ie=0;if(Q){let le=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(Q);le&&(j=parseFloat(le[1]),ie=parseFloat(le[2]),H.attr("class").includes("attribute-name")?j+=m:H.attr("class").includes("attribute-keys")?j+=m+g:H.attr("class").includes("attribute-comment")&&(j+=m+g+y))}H.attr("transform",`translate(${I+i/2+j}, ${ie+D+f.height+a/2})`)}),h.select(".name").attr("transform","translate("+-f.width/2+", "+(D+a/2)+")");let k=E.rectangle(I,D,S,_,A),L=h.insert(()=>k,":first-child").attr("style",s.join("")),{themeVariables:R}=cr(),{rowEven:O,rowOdd:M,nodeBorder:B}=R;p.push(0);for(let[P,z]of p.entries()){if(P===0&&p.length>1)continue;let $=P%2===0&&z!==0,H=E.rectangle(I,f.height+D+z,S,f.height,{...A,fill:$?O:M,stroke:B});h.insert(()=>H,"g.label").attr("style",s.join("")).attr("class",`row-rect-${P%2===0?"even":"odd"}`)}let F=E.line(I,f.height+D,S+I,f.height+D,A);h.insert(()=>F).attr("class","divider"),F=E.line(m+I,f.height+D,m+I,_+D,A),h.insert(()=>F).attr("class","divider"),x&&(F=E.line(m+g+I,f.height+D,m+g+I,_+D,A),h.insert(()=>F).attr("class","divider")),b&&(F=E.line(m+g+y+I,f.height+D,m+g+y+I,_+D,A),h.insert(()=>F).attr("class","divider"));for(let P of p)F=E.line(I,f.height+D+P,S+I,f.height+D+P,A),h.insert(()=>F).attr("class","divider");return je(e,L),e.intersect=function(P){return Ye.rect(e,P)},h}async function b2(t,e,r,n=0,i=0,a=[],s=""){let l=t.insert("g").attr("class",`label ${a.join(" ")}`).attr("transform",`translate(${n}, ${i})`).attr("style",s);e!==ec(e)&&(e=ec(e),e=e.replaceAll("<","<").replaceAll(">",">"));let u=l.node().appendChild(await Hn(l,e,{width:ra(e,r)+100,style:s,useHtmlLabels:r.htmlLabels},r));if(e.includes("<")||e.includes(">")){let f=u.children[0];for(f.textContent=f.textContent.replaceAll("<","<").replaceAll(">",">");f.childNodes[0];)f=f.childNodes[0],f.textContent=f.textContent.replaceAll("<","<").replaceAll(">",">")}let h=u.getBBox();if(fr(r.htmlLabels)){let f=u.children[0];f.style.textAlign="start";let d=Ge(u);h=f.getBoundingClientRect(),d.attr("width",h.width),d.attr("height",h.height)}return h}var PZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();mm();ji();to();gr();dr();ir();o(KD,"erBox");o(b2,"addText")});async function BZ(t,e,r,n,i=r.class.padding??12){let a=n?0:3,s=t.insert("g").attr("class",ht(e)).attr("id",e.domId||e.id),l=null,u=null,h=null,f=null,d=0,p=0,m=0;if(l=s.insert("g").attr("class","annotation-group text"),e.annotations.length>0){let b=e.annotations[0];await Vw(l,{text:`\xAB${b}\xBB`},0),d=l.node().getBBox().height}u=s.insert("g").attr("class","label-group text"),await Vw(u,e,0,["font-weight: bolder"]);let g=u.node().getBBox();p=g.height,h=s.insert("g").attr("class","members-group text");let y=0;for(let b of e.members){let w=await Vw(h,b,y,[b.parseClassifier()]);y+=w+a}m=h.node().getBBox().height,m<=0&&(m=i/2),f=s.insert("g").attr("class","methods-group text");let v=0;for(let b of e.methods){let w=await Vw(f,b,v,[b.parseClassifier()]);v+=w+a}let x=s.node().getBBox();if(l!==null){let b=l.node().getBBox();l.attr("transform",`translate(${-b.width/2})`)}return u.attr("transform",`translate(${-g.width/2}, ${d})`),x=s.node().getBBox(),h.attr("transform",`translate(0, ${d+p+i*2})`),x=s.node().getBBox(),f.attr("transform",`translate(0, ${d+p+(m?m+i*4:i*2)})`),x=s.node().getBBox(),{shapeSvg:s,bbox:x}}async function Vw(t,e,r,n=[]){let i=t.insert("g").attr("class","label").attr("style",n.join("; ")),a=cr(),s="useHtmlLabels"in e?e.useHtmlLabels:fr(a.htmlLabels)??!0,l="";"text"in e?l=e.text:l=e.label,!s&&l.startsWith("\\")&&(l=l.substring(1)),pi(l)&&(s=!0);let u=await Hn(i,Xy(na(l)),{width:ra(l,a)+50,classes:"markdown-node-label",useHtmlLabels:s},a),h,f=1;if(s){let d=u.children[0],p=Ge(u);f=d.innerHTML.split("
    ").length,d.innerHTML.includes("")&&(f+=d.innerHTML.split("").length-1);let m=d.getElementsByTagName("img");if(m){let g=l.replace(/]*>/g,"").trim()==="";await Promise.all([...m].map(y=>new Promise(v=>{function x(){if(y.style.display="flex",y.style.flexDirection="column",g){let b=a.fontSize?.toString()??window.getComputedStyle(document.body).fontSize,C=parseInt(b,10)*5+"px";y.style.minWidth=C,y.style.maxWidth=C}else y.style.width="100%";v(y)}o(x,"setupImage"),setTimeout(()=>{y.complete&&x()}),y.addEventListener("error",x),y.addEventListener("load",x)})))}h=d.getBoundingClientRect(),p.attr("width",h.width),p.attr("height",h.height)}else{n.includes("font-weight: bolder")&&Ge(u).selectAll("tspan").attr("font-weight",""),f=u.children.length;let d=u.children[0];(u.textContent===""||u.textContent.includes(">"))&&(d.textContent=l[0]+l.substring(1).replaceAll(">",">").replaceAll("<","<").trim(),l[1]===" "&&(d.textContent=d.textContent[0]+" "+d.textContent.substring(1))),d.textContent==="undefined"&&(d.textContent=""),h=u.getBBox()}return i.attr("transform","translate(0,"+(-h.height/(2*f)+r)+")"),h.height}var FZ=N(()=>{"use strict";dr();ji();Ft();ir();zt();to();gr();o(BZ,"textHelper");o(Vw,"addText")});async function $Z(t,e){let r=me(),n=r.class.padding??12,i=n,a=e.useHtmlLabels??fr(r.htmlLabels)??!0,s=e;s.annotations=s.annotations??[],s.members=s.members??[],s.methods=s.methods??[];let{shapeSvg:l,bbox:u}=await BZ(t,e,r,a,i),{labelStyles:h,nodeStyles:f}=Qe(e);e.labelStyle=h,e.cssStyles=s.styles||"";let d=s.styles?.join(";")||f||"";e.cssStyles||(e.cssStyles=d.replaceAll("!important","").split(";"));let p=s.members.length===0&&s.methods.length===0&&!r.class?.hideEmptyMembersBox,m=Xe.svg(l),g=Ke(e,{});e.look!=="handDrawn"&&(g.roughness=0,g.fillStyle="solid");let y=u.width,v=u.height;s.members.length===0&&s.methods.length===0?v+=i:s.members.length>0&&s.methods.length===0&&(v+=i*2);let x=-y/2,b=-v/2,w=m.rectangle(x-n,b-n-(p?n:s.members.length===0&&s.methods.length===0?-n/2:0),y+2*n,v+2*n+(p?n*2:s.members.length===0&&s.methods.length===0?-n:0),g),C=l.insert(()=>w,":first-child");C.attr("class","basic label-container");let T=C.node().getBBox();l.selectAll(".text").each((_,I,D)=>{let k=Ge(D[I]),L=k.attr("transform"),R=0;if(L){let F=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(L);F&&(R=parseFloat(F[2]))}let O=R+b+n-(p?n:s.members.length===0&&s.methods.length===0?-n/2:0);a||(O-=4);let M=x;(k.attr("class").includes("label-group")||k.attr("class").includes("annotation-group"))&&(M=-k.node()?.getBBox().width/2||0,l.selectAll("text").each(function(B,F,P){window.getComputedStyle(P[F]).textAnchor==="middle"&&(M=0)})),k.attr("transform",`translate(${M}, ${O})`)});let E=l.select(".annotation-group").node().getBBox().height-(p?n/2:0)||0,A=l.select(".label-group").node().getBBox().height-(p?n/2:0)||0,S=l.select(".members-group").node().getBBox().height-(p?n/2:0)||0;if(s.members.length>0||s.methods.length>0||p){let _=m.line(T.x,E+A+b+n,T.x+T.width,E+A+b+n,g);l.insert(()=>_).attr("class","divider").attr("style",d)}if(p||s.members.length>0||s.methods.length>0){let _=m.line(T.x,E+A+S+b+i*2+n,T.x+T.width,E+A+S+b+n+i*2,g);l.insert(()=>_).attr("class","divider").attr("style",d)}if(s.look!=="handDrawn"&&l.selectAll("path").attr("style",d),C.select(":nth-child(2)").attr("style",d),l.selectAll(".divider").select("path").attr("style",d),e.labelStyle?l.selectAll("span").attr("style",e.labelStyle):l.selectAll("span").attr("style",d),!a){let _=RegExp(/color\s*:\s*([^;]*)/),I=_.exec(d);if(I){let D=I[0].replace("color","fill");l.selectAll("tspan").attr("style",D)}else if(h){let D=_.exec(h);if(D){let k=D[0].replace("color","fill");l.selectAll("tspan").attr("style",k)}}}return je(e,C),e.intersect=function(_){return Ye.rect(e,_)},l}var zZ=N(()=>{"use strict";Ft();zt();dr();Wt();Ut();Ht();FZ();gr();o($Z,"classBox")});async function GZ(t,e){let{labelStyles:r,nodeStyles:n}=Qe(e);e.labelStyle=r;let i=e,a=e,s=20,l=20,u="verifyMethod"in e,h=ht(e),f=t.insert("g").attr("class",h).attr("id",e.domId??e.id),d;u?d=await Lu(f,`<<${i.type}>>`,0,e.labelStyle):d=await Lu(f,"<<Element>>",0,e.labelStyle);let p=d,m=await Lu(f,i.name,p,e.labelStyle+"; font-weight: bold;");if(p+=m+l,u){let E=await Lu(f,`${i.requirementId?`Id: ${i.requirementId}`:""}`,p,e.labelStyle);p+=E;let A=await Lu(f,`${i.text?`Text: ${i.text}`:""}`,p,e.labelStyle);p+=A;let S=await Lu(f,`${i.risk?`Risk: ${i.risk}`:""}`,p,e.labelStyle);p+=S,await Lu(f,`${i.verifyMethod?`Verification: ${i.verifyMethod}`:""}`,p,e.labelStyle)}else{let E=await Lu(f,`${a.type?`Type: ${a.type}`:""}`,p,e.labelStyle);p+=E,await Lu(f,`${a.docRef?`Doc Ref: ${a.docRef}`:""}`,p,e.labelStyle)}let g=(f.node()?.getBBox().width??200)+s,y=(f.node()?.getBBox().height??200)+s,v=-g/2,x=-y/2,b=Xe.svg(f),w=Ke(e,{});e.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");let C=b.rectangle(v,x,g,y,w),T=f.insert(()=>C,":first-child");if(T.attr("class","basic label-container").attr("style",n),f.selectAll(".label").each((E,A,S)=>{let _=Ge(S[A]),I=_.attr("transform"),D=0,k=0;if(I){let M=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(I);M&&(D=parseFloat(M[1]),k=parseFloat(M[2]))}let L=k-y/2,R=v+s/2;(A===0||A===1)&&(R=D),_.attr("transform",`translate(${R}, ${L+s})`)}),p>d+m+l){let E=b.line(v,x+d+m+l,v+g,x+d+m+l,w);f.insert(()=>E).attr("style",n)}return je(e,T),e.intersect=function(E){return Ye.rect(e,E)},f}async function Lu(t,e,r,n=""){if(e==="")return 0;let i=t.insert("g").attr("class","label").attr("style",n),a=me(),s=a.htmlLabels??!0,l=await Hn(i,Xy(na(e)),{width:ra(e,a)+50,classes:"markdown-node-label",useHtmlLabels:s,style:n},a),u;if(s){let h=l.children[0],f=Ge(l);u=h.getBoundingClientRect(),f.attr("width",u.width),f.attr("height",u.height)}else{let h=l.children[0];for(let f of h.children)f.textContent=f.textContent.replaceAll(">",">").replaceAll("<","<"),n&&f.setAttribute("style",n);u=l.getBBox(),u.height+=6}return i.attr("transform",`translate(${-u.width/2},${-u.height/2+r})`),u.height}var VZ=N(()=>{"use strict";Ft();Ht();Ut();Wt();ir();zt();to();dr();o(GZ,"requirementBox");o(Lu,"addText")});async function UZ(t,e,{config:r}){let{labelStyles:n,nodeStyles:i}=Qe(e);e.labelStyle=n||"";let a=10,s=e.width;e.width=(e.width??200)-10;let{shapeSvg:l,bbox:u,label:h}=await pt(t,e,ht(e)),f=e.padding||10,d="",p;"ticket"in e&&e.ticket&&r?.kanban?.ticketBaseUrl&&(d=r?.kanban?.ticketBaseUrl.replace("#TICKET#",e.ticket),p=l.insert("svg:a",":first-child").attr("class","kanban-ticket-link").attr("xlink:href",d).attr("target","_blank"));let m={useHtmlLabels:e.useHtmlLabels,labelStyle:e.labelStyle||"",width:e.width,img:e.img,padding:e.padding||8,centerLabel:!1},g,y;p?{label:g,bbox:y}=await Dw(p,"ticket"in e&&e.ticket||"",m):{label:g,bbox:y}=await Dw(l,"ticket"in e&&e.ticket||"",m);let{label:v,bbox:x}=await Dw(l,"assigned"in e&&e.assigned||"",m);e.width=s;let b=10,w=e?.width||0,C=Math.max(y.height,x.height)/2,T=Math.max(u.height+b*2,e?.height||0)+C,E=-w/2,A=-T/2;h.attr("transform","translate("+(f-w/2)+", "+(-C-u.height/2)+")"),g.attr("transform","translate("+(f-w/2)+", "+(-C+u.height/2)+")"),v.attr("transform","translate("+(f+w/2-x.width-2*a)+", "+(-C+u.height/2)+")");let S,{rx:_,ry:I}=e,{cssStyles:D}=e;if(e.look==="handDrawn"){let k=Xe.svg(l),L=Ke(e,{}),R=_||I?k.path(Na(E,A,w,T,_||0),L):k.rectangle(E,A,w,T,L);S=l.insert(()=>R,":first-child"),S.attr("class","basic label-container").attr("style",D||null)}else{S=l.insert("rect",":first-child"),S.attr("class","basic label-container __APA__").attr("style",i).attr("rx",_??5).attr("ry",I??5).attr("x",E).attr("y",A).attr("width",w).attr("height",T);let k="priority"in e&&e.priority;if(k){let L=l.append("line"),R=E+2,O=A+Math.floor((_??0)/2),M=A+T-Math.floor((_??0)/2);L.attr("x1",R).attr("y1",O).attr("x2",R).attr("y2",M).attr("stroke-width","4").attr("stroke",k_e(k))}}return je(e,S),e.height=T,e.intersect=function(k){return Ye.rect(e,k)},l}var k_e,HZ=N(()=>{"use strict";Ft();Ht();qh();Ut();Wt();k_e=o(t=>{switch(t){case"Very High":return"red";case"High":return"orange";case"Medium":return null;case"Low":return"blue";case"Very Low":return"lightblue"}},"colorFromPriority");o(UZ,"kanbanItem")});function WZ(t){return t in QD}var E_e,S_e,QD,ZD=N(()=>{"use strict";NK();OK();BK();$K();GK();UK();WK();YK();jK();QK();JK();tQ();nQ();aQ();oQ();cQ();hQ();dQ();mQ();yQ();xQ();wQ();kQ();SQ();AQ();DQ();RQ();MQ();OQ();BQ();$Q();GQ();UQ();WQ();YQ();jQ();QQ();JQ();tZ();nZ();aZ();oZ();cZ();hZ();dZ();mZ();yZ();xZ();wZ();kZ();SZ();AZ();DZ();RZ();MZ();OZ();PZ();zZ();VZ();HZ();E_e=[{semanticName:"Process",name:"Rectangle",shortName:"rect",description:"Standard process shape",aliases:["proc","process","rectangle"],internalAliases:["squareRect"],handler:iZ},{semanticName:"Event",name:"Rounded Rectangle",shortName:"rounded",description:"Represents an event",aliases:["event"],internalAliases:["roundedRect"],handler:ZQ},{semanticName:"Terminal Point",name:"Stadium",shortName:"stadium",description:"Terminal point",aliases:["terminal","pill"],handler:sZ},{semanticName:"Subprocess",name:"Framed Rectangle",shortName:"fr-rect",description:"Subprocess",aliases:["subprocess","subproc","framed-rectangle","subroutine"],handler:pZ},{semanticName:"Database",name:"Cylinder",shortName:"cyl",description:"Database storage",aliases:["db","database","cylinder"],handler:ZK},{semanticName:"Start",name:"Circle",shortName:"circle",description:"Starting point",aliases:["circ"],handler:zK},{semanticName:"Decision",name:"Diamond",shortName:"diam",description:"Decision-making step",aliases:["decision","diamond","question"],handler:qQ},{semanticName:"Prepare Conditional",name:"Hexagon",shortName:"hex",description:"Preparation or condition step",aliases:["hexagon","prepare"],handler:fQ},{semanticName:"Data Input/Output",name:"Lean Right",shortName:"lean-r",description:"Represents input or output",aliases:["lean-right","in-out"],internalAliases:["lean_right"],handler:NQ},{semanticName:"Data Input/Output",name:"Lean Left",shortName:"lean-l",description:"Represents output or input",aliases:["lean-left","out-in"],internalAliases:["lean_left"],handler:LQ},{semanticName:"Priority Action",name:"Trapezoid Base Bottom",shortName:"trap-b",description:"Priority action",aliases:["priority","trapezoid-bottom","trapezoid"],handler:EZ},{semanticName:"Manual Operation",name:"Trapezoid Base Top",shortName:"trap-t",description:"Represents a manual task",aliases:["manual","trapezoid-top","inv-trapezoid"],internalAliases:["inv_trapezoid"],handler:CQ},{semanticName:"Stop",name:"Double Circle",shortName:"dbl-circ",description:"Represents a stop point",aliases:["double-circle"],internalAliases:["doublecircle"],handler:rQ},{semanticName:"Text Block",name:"Text Block",shortName:"text",description:"Text block",handler:bZ},{semanticName:"Card",name:"Notched Rectangle",shortName:"notch-rect",description:"Represents a card",aliases:["card","notched-rectangle"],handler:PK},{semanticName:"Lined/Shaded Process",name:"Lined Rectangle",shortName:"lin-rect",description:"Lined process shape",aliases:["lined-rectangle","lined-process","lin-proc","shaded-process"],handler:eZ},{semanticName:"Start",name:"Small Circle",shortName:"sm-circ",description:"Small starting point",aliases:["start","small-circle"],internalAliases:["stateStart"],handler:fZ},{semanticName:"Stop",name:"Framed Circle",shortName:"fr-circ",description:"Stop point",aliases:["stop","framed-circle"],internalAliases:["stateEnd"],handler:uZ},{semanticName:"Fork/Join",name:"Filled Rectangle",shortName:"fork",description:"Fork or join in process flow",aliases:["join"],internalAliases:["forkJoin"],handler:lQ},{semanticName:"Collate",name:"Hourglass",shortName:"hourglass",description:"Represents a collate operation",aliases:["hourglass","collate"],handler:pQ},{semanticName:"Comment",name:"Curly Brace",shortName:"brace",description:"Adds a comment",aliases:["comment","brace-l"],handler:HK},{semanticName:"Comment Right",name:"Curly Brace",shortName:"brace-r",description:"Adds a comment",handler:qK},{semanticName:"Comment with braces on both sides",name:"Curly Braces",shortName:"braces",description:"Adds a comment",handler:XK},{semanticName:"Com Link",name:"Lightning Bolt",shortName:"bolt",description:"Communication link",aliases:["com-link","lightning-bolt"],handler:IQ},{semanticName:"Document",name:"Document",shortName:"doc",description:"Represents a document",aliases:["doc","document"],handler:LZ},{semanticName:"Delay",name:"Half-Rounded Rectangle",shortName:"delay",description:"Represents a delay",aliases:["half-rounded-rectangle"],handler:uQ},{semanticName:"Direct Access Storage",name:"Horizontal Cylinder",shortName:"h-cyl",description:"Direct access storage",aliases:["das","horizontal-cylinder"],handler:TZ},{semanticName:"Disk Storage",name:"Lined Cylinder",shortName:"lin-cyl",description:"Disk storage",aliases:["disk","lined-cylinder"],handler:PQ},{semanticName:"Display",name:"Curved Trapezoid",shortName:"curv-trap",description:"Represents a display",aliases:["curved-trapezoid","display"],handler:KK},{semanticName:"Divided Process",name:"Divided Rectangle",shortName:"div-rect",description:"Divided process shape",aliases:["div-proc","divided-rectangle","divided-process"],handler:eQ},{semanticName:"Extract",name:"Triangle",shortName:"tri",description:"Extraction process",aliases:["extract","triangle"],handler:_Z},{semanticName:"Internal Storage",name:"Window Pane",shortName:"win-pane",description:"Internal storage",aliases:["internal-storage","window-pane"],handler:IZ},{semanticName:"Junction",name:"Filled Circle",shortName:"f-circ",description:"Junction point",aliases:["junction","filled-circle"],handler:iQ},{semanticName:"Loop Limit",name:"Trapezoidal Pentagon",shortName:"notch-pent",description:"Loop limit step",aliases:["loop-limit","notched-pentagon"],handler:CZ},{semanticName:"Manual File",name:"Flipped Triangle",shortName:"flip-tri",description:"Manual file operation",aliases:["manual-file","flipped-triangle"],handler:sQ},{semanticName:"Manual Input",name:"Sloped Rectangle",shortName:"sl-rect",description:"Manual input step",aliases:["manual-input","sloped-rectangle"],handler:rZ},{semanticName:"Multi-Document",name:"Stacked Document",shortName:"docs",description:"Multiple documents",aliases:["documents","st-doc","stacked-document"],handler:VQ},{semanticName:"Multi-Process",name:"Stacked Rectangle",shortName:"st-rect",description:"Multiple processes",aliases:["procs","processes","stacked-rectangle"],handler:zQ},{semanticName:"Stored Data",name:"Bow Tie Rectangle",shortName:"bow-rect",description:"Stored data",aliases:["stored-data","bow-tie-rectangle"],handler:IK},{semanticName:"Summary",name:"Crossed Circle",shortName:"cross-circ",description:"Summary",aliases:["summary","crossed-circle"],handler:VK},{semanticName:"Tagged Document",name:"Tagged Document",shortName:"tag-doc",description:"Tagged document",aliases:["tag-doc","tagged-document"],handler:vZ},{semanticName:"Tagged Process",name:"Tagged Rectangle",shortName:"tag-rect",description:"Tagged process",aliases:["tagged-rectangle","tag-proc","tagged-process"],handler:gZ},{semanticName:"Paper Tape",name:"Flag",shortName:"flag",description:"Paper tape",aliases:["paper-tape"],handler:NZ},{semanticName:"Odd",name:"Odd",shortName:"odd",description:"Odd shape",internalAliases:["rect_left_inv_arrow"],handler:XQ},{semanticName:"Lined Document",name:"Lined Document",shortName:"lin-doc",description:"Lined document",aliases:["lined-document"],handler:FQ}],S_e=o(()=>{let e=[...Object.entries({state:lZ,choice:FK,note:HQ,rectWithTitle:KQ,labelRect:_Q,iconSquare:TQ,iconCircle:vQ,icon:gQ,iconRounded:bQ,imageSquare:EQ,anchor:RK,kanbanItem:UZ,classBox:$Z,erBox:KD,requirementBox:GZ}),...E_e.flatMap(r=>[r.shortName,..."aliases"in r?r.aliases:[],..."internalAliases"in r?r.internalAliases:[]].map(i=>[i,r.handler]))];return Object.fromEntries(e)},"generateShapeMap"),QD=S_e();o(WZ,"isValidShape")});var C_e,Uw,qZ=N(()=>{"use strict";dr();Ew();zt();vt();ZD();ir();gr();mi();C_e="flowchart-",Uw=class{constructor(){this.vertexCounter=0;this.config=me();this.vertices=new Map;this.edges=[];this.classes=new Map;this.subGraphs=[];this.subGraphLookup=new Map;this.tooltips=new Map;this.subCount=0;this.firstGraphFlag=!0;this.secCount=-1;this.posCrossRef=[];this.funs=[];this.setAccTitle=Lr;this.setAccDescription=Nr;this.setDiagramTitle=$r;this.getAccTitle=Rr;this.getAccDescription=Mr;this.getDiagramTitle=Ir;this.funs.push(this.setupToolTips.bind(this)),this.addVertex=this.addVertex.bind(this),this.firstGraph=this.firstGraph.bind(this),this.setDirection=this.setDirection.bind(this),this.addSubGraph=this.addSubGraph.bind(this),this.addLink=this.addLink.bind(this),this.setLink=this.setLink.bind(this),this.updateLink=this.updateLink.bind(this),this.addClass=this.addClass.bind(this),this.setClass=this.setClass.bind(this),this.destructLink=this.destructLink.bind(this),this.setClickEvent=this.setClickEvent.bind(this),this.setTooltip=this.setTooltip.bind(this),this.updateLinkInterpolate=this.updateLinkInterpolate.bind(this),this.setClickFun=this.setClickFun.bind(this),this.bindFunctions=this.bindFunctions.bind(this),this.lex={firstGraph:this.firstGraph.bind(this)},this.clear(),this.setGen("gen-2")}static{o(this,"FlowDB")}sanitizeText(e){return Ze.sanitizeText(e,this.config)}lookUpDomId(e){for(let r of this.vertices.values())if(r.id===e)return r.domId;return e}addVertex(e,r,n,i,a,s,l={},u){if(!e||e.trim().length===0)return;let h;if(u!==void 0){let m;u.includes(` +`)?m=u+` +`:m=`{ +`+u+` +}`,h=cm(m,{schema:lm})}let f=this.edges.find(m=>m.id===e);if(f){let m=h;m?.animate!==void 0&&(f.animate=m.animate),m?.animation!==void 0&&(f.animation=m.animation);return}let d,p=this.vertices.get(e);if(p===void 0&&(p={id:e,labelType:"text",domId:C_e+e+"-"+this.vertexCounter,styles:[],classes:[]},this.vertices.set(e,p)),this.vertexCounter++,r!==void 0?(this.config=me(),d=this.sanitizeText(r.text.trim()),p.labelType=r.type,d.startsWith('"')&&d.endsWith('"')&&(d=d.substring(1,d.length-1)),p.text=d):p.text===void 0&&(p.text=e),n!==void 0&&(p.type=n),i?.forEach(m=>{p.styles.push(m)}),a?.forEach(m=>{p.classes.push(m)}),s!==void 0&&(p.dir=s),p.props===void 0?p.props=l:l!==void 0&&Object.assign(p.props,l),h!==void 0){if(h.shape){if(h.shape!==h.shape.toLowerCase()||h.shape.includes("_"))throw new Error(`No such shape: ${h.shape}. Shape names should be lowercase.`);if(!WZ(h.shape))throw new Error(`No such shape: ${h.shape}.`);p.type=h?.shape}h?.label&&(p.text=h?.label),h?.icon&&(p.icon=h?.icon,!h.label?.trim()&&p.text===e&&(p.text="")),h?.form&&(p.form=h?.form),h?.pos&&(p.pos=h?.pos),h?.img&&(p.img=h?.img,!h.label?.trim()&&p.text===e&&(p.text="")),h?.constraint&&(p.constraint=h.constraint),h.w&&(p.assetWidth=Number(h.w)),h.h&&(p.assetHeight=Number(h.h))}}addSingleLink(e,r,n,i){let l={start:e,end:r,type:void 0,text:"",labelType:"text",classes:[],isUserDefinedId:!1,interpolate:this.edges.defaultInterpolate};Y.info("abc78 Got edge...",l);let u=n.text;if(u!==void 0&&(l.text=this.sanitizeText(u.text.trim()),l.text.startsWith('"')&&l.text.endsWith('"')&&(l.text=l.text.substring(1,l.text.length-1)),l.labelType=u.type),n!==void 0&&(l.type=n.type,l.stroke=n.stroke,l.length=n.length>10?10:n.length),i&&!this.edges.some(h=>h.id===i))l.id=i,l.isUserDefinedId=!0;else{let h=this.edges.filter(f=>f.start===l.start&&f.end===l.end);h.length===0?l.id=$h(l.start,l.end,{counter:0,prefix:"L"}):l.id=$h(l.start,l.end,{counter:h.length+1,prefix:"L"})}if(this.edges.length<(this.config.maxEdges??500))Y.info("Pushing edge..."),this.edges.push(l);else throw new Error(`Edge limit exceeded. ${this.edges.length} edges found, but the limit is ${this.config.maxEdges}. + +Initialize mermaid with maxEdges set to a higher number to allow more edges. +You cannot set this config via configuration inside the diagram as it is a secure config. +You have to call mermaid.initialize.`)}isLinkData(e){return e!==null&&typeof e=="object"&&"id"in e&&typeof e.id=="string"}addLink(e,r,n){let i=this.isLinkData(n)?n.id.replace("@",""):void 0;Y.info("addLink",e,r,i);for(let a of e)for(let s of r){let l=a===e[e.length-1],u=s===r[0];l&&u?this.addSingleLink(a,s,n,i):this.addSingleLink(a,s,n,void 0)}}updateLinkInterpolate(e,r){e.forEach(n=>{n==="default"?this.edges.defaultInterpolate=r:this.edges[n].interpolate=r})}updateLink(e,r){e.forEach(n=>{if(typeof n=="number"&&n>=this.edges.length)throw new Error(`The index ${n} for linkStyle is out of bounds. Valid indices for linkStyle are between 0 and ${this.edges.length-1}. (Help: Ensure that the index is within the range of existing edges.)`);n==="default"?this.edges.defaultStyle=r:(this.edges[n].style=r,(this.edges[n]?.style?.length??0)>0&&!this.edges[n]?.style?.some(i=>i?.startsWith("fill"))&&this.edges[n]?.style?.push("fill:none"))})}addClass(e,r){let n=r.join().replace(/\\,/g,"\xA7\xA7\xA7").replace(/,/g,";").replace(/§§§/g,",").split(";");e.split(",").forEach(i=>{let a=this.classes.get(i);a===void 0&&(a={id:i,styles:[],textStyles:[]},this.classes.set(i,a)),n?.forEach(s=>{if(/color/.exec(s)){let l=s.replace("fill","bgFill");a.textStyles.push(l)}a.styles.push(s)})})}setDirection(e){this.direction=e,/.*/.exec(this.direction)&&(this.direction="LR"),/.*v/.exec(this.direction)&&(this.direction="TB"),this.direction==="TD"&&(this.direction="TB")}setClass(e,r){for(let n of e.split(",")){let i=this.vertices.get(n);i&&i.classes.push(r);let a=this.edges.find(l=>l.id===n);a&&a.classes.push(r);let s=this.subGraphLookup.get(n);s&&s.classes.push(r)}}setTooltip(e,r){if(r!==void 0){r=this.sanitizeText(r);for(let n of e.split(","))this.tooltips.set(this.version==="gen-1"?this.lookUpDomId(n):n,r)}}setClickFun(e,r,n){let i=this.lookUpDomId(e);if(me().securityLevel!=="loose"||r===void 0)return;let a=[];if(typeof n=="string"){a=n.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let l=0;l{let l=document.querySelector(`[id="${i}"]`);l!==null&&l.addEventListener("click",()=>{Gt.runFunc(r,...a)},!1)}))}setLink(e,r,n){e.split(",").forEach(i=>{let a=this.vertices.get(i);a!==void 0&&(a.link=Gt.formatUrl(r,this.config),a.linkTarget=n)}),this.setClass(e,"clickable")}getTooltip(e){return this.tooltips.get(e)}setClickEvent(e,r,n){e.split(",").forEach(i=>{this.setClickFun(i,r,n)}),this.setClass(e,"clickable")}bindFunctions(e){this.funs.forEach(r=>{r(e)})}getDirection(){return this.direction?.trim()}getVertices(){return this.vertices}getEdges(){return this.edges}getClasses(){return this.classes}setupToolTips(e){let r=Ge(".mermaidTooltip");(r._groups||r)[0][0]===null&&(r=Ge("body").append("div").attr("class","mermaidTooltip").style("opacity",0)),Ge(e).select("svg").selectAll("g.node").on("mouseover",a=>{let s=Ge(a.currentTarget);if(s.attr("title")===null)return;let u=a.currentTarget?.getBoundingClientRect();r.transition().duration(200).style("opacity",".9"),r.text(s.attr("title")).style("left",window.scrollX+u.left+(u.right-u.left)/2+"px").style("top",window.scrollY+u.bottom+"px"),r.html(r.html().replace(/<br\/>/g,"
    ")),s.classed("hover",!0)}).on("mouseout",a=>{r.transition().duration(500).style("opacity",0),Ge(a.currentTarget).classed("hover",!1)})}clear(e="gen-2"){this.vertices=new Map,this.classes=new Map,this.edges=[],this.funs=[this.setupToolTips.bind(this)],this.subGraphs=[],this.subGraphLookup=new Map,this.subCount=0,this.tooltips=new Map,this.firstGraphFlag=!0,this.version=e,this.config=me(),Ar()}setGen(e){this.version=e||"gen-2"}defaultStyle(){return"fill:#ffa;stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;fill:#ffa;stroke: #666;"}addSubGraph(e,r,n){let i=e.text.trim(),a=n.text;e===n&&/\s/.exec(n.text)&&(i=void 0);let s=o(f=>{let d={boolean:{},number:{},string:{}},p=[],m;return{nodeList:f.filter(function(y){let v=typeof y;return y.stmt&&y.stmt==="dir"?(m=y.value,!1):y.trim()===""?!1:v in d?d[v].hasOwnProperty(y)?!1:d[v][y]=!0:p.includes(y)?!1:p.push(y)}),dir:m}},"uniq"),{nodeList:l,dir:u}=s(r.flat());if(this.version==="gen-1")for(let f=0;f2e3)return{result:!1,count:0};if(this.posCrossRef[this.secCount]=r,this.subGraphs[r].id===e)return{result:!0,count:0};let i=0,a=1;for(;i=0){let l=this.indexNodes2(e,s);if(l.result)return{result:!0,count:a+l.count};a=a+l.count}i=i+1}return{result:!1,count:a}}getDepthFirstPos(e){return this.posCrossRef[e]}indexNodes(){this.secCount=-1,this.subGraphs.length>0&&this.indexNodes2("none",this.subGraphs.length-1)}getSubGraphs(){return this.subGraphs}firstGraph(){return this.firstGraphFlag?(this.firstGraphFlag=!1,!0):!1}destructStartLink(e){let r=e.trim(),n="arrow_open";switch(r[0]){case"<":n="arrow_point",r=r.slice(1);break;case"x":n="arrow_cross",r=r.slice(1);break;case"o":n="arrow_circle",r=r.slice(1);break}let i="normal";return r.includes("=")&&(i="thick"),r.includes(".")&&(i="dotted"),{type:n,stroke:i}}countChar(e,r){let n=r.length,i=0;for(let a=0;a":i="arrow_point",r.startsWith("<")&&(i="double_"+i,n=n.slice(1));break;case"o":i="arrow_circle",r.startsWith("o")&&(i="double_"+i,n=n.slice(1));break}let a="normal",s=n.length-1;n.startsWith("=")&&(a="thick"),n.startsWith("~")&&(a="invisible");let l=this.countChar(".",n);return l&&(a="dotted",s=l),{type:i,stroke:a,length:s}}destructLink(e,r){let n=this.destructEndLink(e),i;if(r){if(i=this.destructStartLink(r),i.stroke!==n.stroke)return{type:"INVALID",stroke:"INVALID"};if(i.type==="arrow_open")i.type=n.type;else{if(i.type!==n.type)return{type:"INVALID",stroke:"INVALID"};i.type="double_"+i.type}return i.type==="double_arrow"&&(i.type="double_arrow_point"),i.length=n.length,i}return n}exists(e,r){for(let n of e)if(n.nodes.includes(r))return!0;return!1}makeUniq(e,r){let n=[];return e.nodes.forEach((i,a)=>{this.exists(r,i)||n.push(e.nodes[a])}),{nodes:n}}getTypeFromVertex(e){if(e.img)return"imageSquare";if(e.icon)return e.form==="circle"?"iconCircle":e.form==="square"?"iconSquare":e.form==="rounded"?"iconRounded":"icon";switch(e.type){case"square":case void 0:return"squareRect";case"round":return"roundedRect";case"ellipse":return"ellipse";default:return e.type}}findNode(e,r){return e.find(n=>n.id===r)}destructEdgeType(e){let r="none",n="arrow_point";switch(e){case"arrow_point":case"arrow_circle":case"arrow_cross":n=e;break;case"double_arrow_point":case"double_arrow_circle":case"double_arrow_cross":r=e.replace("double_",""),n=r;break}return{arrowTypeStart:r,arrowTypeEnd:n}}addNodeFromVertex(e,r,n,i,a,s){let l=n.get(e.id),u=i.get(e.id)??!1,h=this.findNode(r,e.id);if(h)h.cssStyles=e.styles,h.cssCompiledStyles=this.getCompiledStyles(e.classes),h.cssClasses=e.classes.join(" ");else{let f={id:e.id,label:e.text,labelStyle:"",parentId:l,padding:a.flowchart?.padding||8,cssStyles:e.styles,cssCompiledStyles:this.getCompiledStyles(["default","node",...e.classes]),cssClasses:"default "+e.classes.join(" "),dir:e.dir,domId:e.domId,look:s,link:e.link,linkTarget:e.linkTarget,tooltip:this.getTooltip(e.id),icon:e.icon,pos:e.pos,img:e.img,assetWidth:e.assetWidth,assetHeight:e.assetHeight,constraint:e.constraint};u?r.push({...f,isGroup:!0,shape:"rect"}):r.push({...f,isGroup:!1,shape:this.getTypeFromVertex(e)})}}getCompiledStyles(e){let r=[];for(let n of e){let i=this.classes.get(n);i?.styles&&(r=[...r,...i.styles??[]].map(a=>a.trim())),i?.textStyles&&(r=[...r,...i.textStyles??[]].map(a=>a.trim()))}return r}getData(){let e=me(),r=[],n=[],i=this.getSubGraphs(),a=new Map,s=new Map;for(let h=i.length-1;h>=0;h--){let f=i[h];f.nodes.length>0&&s.set(f.id,!0);for(let d of f.nodes)a.set(d,f.id)}for(let h=i.length-1;h>=0;h--){let f=i[h];r.push({id:f.id,label:f.title,labelStyle:"",parentId:a.get(f.id),padding:8,cssCompiledStyles:this.getCompiledStyles(f.classes),cssClasses:f.classes.join(" "),shape:"rect",dir:f.dir,isGroup:!0,look:e.look})}this.getVertices().forEach(h=>{this.addNodeFromVertex(h,r,a,s,e,e.look||"classic")});let u=this.getEdges();return u.forEach((h,f)=>{let{arrowTypeStart:d,arrowTypeEnd:p}=this.destructEdgeType(h.type),m=[...u.defaultStyle??[]];h.style&&m.push(...h.style);let g={id:$h(h.start,h.end,{counter:f,prefix:"L"},h.id),isUserDefinedId:h.isUserDefinedId,start:h.start,end:h.end,type:h.type??"normal",label:h.text,labelpos:"c",thickness:h.stroke,minlen:h.length,classes:h?.stroke==="invisible"?"":"edge-thickness-normal edge-pattern-solid flowchart-link",arrowTypeStart:h?.stroke==="invisible"||h?.type==="arrow_open"?"none":d,arrowTypeEnd:h?.stroke==="invisible"||h?.type==="arrow_open"?"none":p,arrowheadStyle:"fill: #333",cssCompiledStyles:this.getCompiledStyles(h.classes),labelStyle:m,style:m,pattern:h.stroke,look:e.look,animate:h.animate,animation:h.animation,curve:h.interpolate||this.edges.defaultInterpolate||e.flowchart?.curve};n.push(g)}),{nodes:r,edges:n,other:{},config:e}}defaultConfig(){return A3.flowchart}}});var yc,gm=N(()=>{"use strict";dr();yc=o((t,e)=>{let r;return e==="sandbox"&&(r=Ge("#i"+t)),(e==="sandbox"?Ge(r.nodes()[0].contentDocument.body):Ge("body")).select(`[id="${t}"]`)},"getDiagramElement")});var Ru,w2=N(()=>{"use strict";Ru=o(({flowchart:t})=>{let e=t?.subGraphTitleMargin?.top??0,r=t?.subGraphTitleMargin?.bottom??0,n=e+r;return{subGraphTitleTopMargin:e,subGraphTitleBottomMargin:r,subGraphTitleTotalMargin:n}},"getSubGraphTitleMargins")});var YZ,A_e,__e,D_e,L_e,R_e,N_e,XZ,ym,jZ,Hw=N(()=>{"use strict";zt();gr();vt();w2();dr();Wt();to();RD();Gw();qh();Ut();YZ=o(async(t,e)=>{Y.info("Creating subgraph rect for ",e.id,e);let r=me(),{themeVariables:n,handDrawnSeed:i}=r,{clusterBkg:a,clusterBorder:s}=n,{labelStyles:l,nodeStyles:u,borderStyles:h,backgroundStyles:f}=Qe(e),d=t.insert("g").attr("class","cluster "+e.cssClasses).attr("id",e.id).attr("data-look",e.look),p=fr(r.flowchart.htmlLabels),m=d.insert("g").attr("class","cluster-label "),g=await Hn(m,e.label,{style:e.labelStyle,useHtmlLabels:p,isNode:!0}),y=g.getBBox();if(fr(r.flowchart.htmlLabels)){let A=g.children[0],S=Ge(g);y=A.getBoundingClientRect(),S.attr("width",y.width),S.attr("height",y.height)}let v=e.width<=y.width+e.padding?y.width+e.padding:e.width;e.width<=y.width+e.padding?e.diff=(v-e.width)/2-e.padding:e.diff=-e.padding;let x=e.height,b=e.x-v/2,w=e.y-x/2;Y.trace("Data ",e,JSON.stringify(e));let C;if(e.look==="handDrawn"){let A=Xe.svg(d),S=Ke(e,{roughness:.7,fill:a,stroke:s,fillWeight:3,seed:i}),_=A.path(Na(b,w,v,x,0),S);C=d.insert(()=>(Y.debug("Rough node insert CXC",_),_),":first-child"),C.select("path:nth-child(2)").attr("style",h.join(";")),C.select("path").attr("style",f.join(";").replace("fill","stroke"))}else C=d.insert("rect",":first-child"),C.attr("style",u).attr("rx",e.rx).attr("ry",e.ry).attr("x",b).attr("y",w).attr("width",v).attr("height",x);let{subGraphTitleTopMargin:T}=Ru(r);if(m.attr("transform",`translate(${e.x-y.width/2}, ${e.y-e.height/2+T})`),l){let A=m.select("span");A&&A.attr("style",l)}let E=C.node().getBBox();return e.offsetX=0,e.width=E.width,e.height=E.height,e.offsetY=y.height-e.padding/2,e.intersect=function(A){return Vh(e,A)},{cluster:d,labelBBox:y}},"rect"),A_e=o((t,e)=>{let r=t.insert("g").attr("class","note-cluster").attr("id",e.id),n=r.insert("rect",":first-child"),i=0*e.padding,a=i/2;n.attr("rx",e.rx).attr("ry",e.ry).attr("x",e.x-e.width/2-a).attr("y",e.y-e.height/2-a).attr("width",e.width+i).attr("height",e.height+i).attr("fill","none");let s=n.node().getBBox();return e.width=s.width,e.height=s.height,e.intersect=function(l){return Vh(e,l)},{cluster:r,labelBBox:{width:0,height:0}}},"noteGroup"),__e=o(async(t,e)=>{let r=me(),{themeVariables:n,handDrawnSeed:i}=r,{altBackground:a,compositeBackground:s,compositeTitleBackground:l,nodeBorder:u}=n,h=t.insert("g").attr("class",e.cssClasses).attr("id",e.id).attr("data-id",e.id).attr("data-look",e.look),f=h.insert("g",":first-child"),d=h.insert("g").attr("class","cluster-label"),p=h.append("rect"),m=d.node().appendChild(await gc(e.label,e.labelStyle,void 0,!0)),g=m.getBBox();if(fr(r.flowchart.htmlLabels)){let _=m.children[0],I=Ge(m);g=_.getBoundingClientRect(),I.attr("width",g.width),I.attr("height",g.height)}let y=0*e.padding,v=y/2,x=(e.width<=g.width+e.padding?g.width+e.padding:e.width)+y;e.width<=g.width+e.padding?e.diff=(x-e.width)/2-e.padding:e.diff=-e.padding;let b=e.height+y,w=e.height+y-g.height-6,C=e.x-x/2,T=e.y-b/2;e.width=x;let E=e.y-e.height/2-v+g.height+2,A;if(e.look==="handDrawn"){let _=e.cssClasses.includes("statediagram-cluster-alt"),I=Xe.svg(h),D=e.rx||e.ry?I.path(Na(C,T,x,b,10),{roughness:.7,fill:l,fillStyle:"solid",stroke:u,seed:i}):I.rectangle(C,T,x,b,{seed:i});A=h.insert(()=>D,":first-child");let k=I.rectangle(C,E,x,w,{fill:_?a:s,fillStyle:_?"hachure":"solid",stroke:u,seed:i});A=h.insert(()=>D,":first-child"),p=h.insert(()=>k)}else A=f.insert("rect",":first-child"),A.attr("class","outer").attr("x",C).attr("y",T).attr("width",x).attr("height",b).attr("data-look",e.look),p.attr("class","inner").attr("x",C).attr("y",E).attr("width",x).attr("height",w);d.attr("transform",`translate(${e.x-g.width/2}, ${T+1-(fr(r.flowchart.htmlLabels)?0:3)})`);let S=A.node().getBBox();return e.height=S.height,e.offsetX=0,e.offsetY=g.height-e.padding/2,e.labelBBox=g,e.intersect=function(_){return Vh(e,_)},{cluster:h,labelBBox:g}},"roundedWithTitle"),D_e=o(async(t,e)=>{Y.info("Creating subgraph rect for ",e.id,e);let r=me(),{themeVariables:n,handDrawnSeed:i}=r,{clusterBkg:a,clusterBorder:s}=n,{labelStyles:l,nodeStyles:u,borderStyles:h,backgroundStyles:f}=Qe(e),d=t.insert("g").attr("class","cluster "+e.cssClasses).attr("id",e.id).attr("data-look",e.look),p=fr(r.flowchart.htmlLabels),m=d.insert("g").attr("class","cluster-label "),g=await Hn(m,e.label,{style:e.labelStyle,useHtmlLabels:p,isNode:!0,width:e.width}),y=g.getBBox();if(fr(r.flowchart.htmlLabels)){let A=g.children[0],S=Ge(g);y=A.getBoundingClientRect(),S.attr("width",y.width),S.attr("height",y.height)}let v=e.width<=y.width+e.padding?y.width+e.padding:e.width;e.width<=y.width+e.padding?e.diff=(v-e.width)/2-e.padding:e.diff=-e.padding;let x=e.height,b=e.x-v/2,w=e.y-x/2;Y.trace("Data ",e,JSON.stringify(e));let C;if(e.look==="handDrawn"){let A=Xe.svg(d),S=Ke(e,{roughness:.7,fill:a,stroke:s,fillWeight:4,seed:i}),_=A.path(Na(b,w,v,x,e.rx),S);C=d.insert(()=>(Y.debug("Rough node insert CXC",_),_),":first-child"),C.select("path:nth-child(2)").attr("style",h.join(";")),C.select("path").attr("style",f.join(";").replace("fill","stroke"))}else C=d.insert("rect",":first-child"),C.attr("style",u).attr("rx",e.rx).attr("ry",e.ry).attr("x",b).attr("y",w).attr("width",v).attr("height",x);let{subGraphTitleTopMargin:T}=Ru(r);if(m.attr("transform",`translate(${e.x-y.width/2}, ${e.y-e.height/2+T})`),l){let A=m.select("span");A&&A.attr("style",l)}let E=C.node().getBBox();return e.offsetX=0,e.width=E.width,e.height=E.height,e.offsetY=y.height-e.padding/2,e.intersect=function(A){return Vh(e,A)},{cluster:d,labelBBox:y}},"kanbanSection"),L_e=o((t,e)=>{let r=me(),{themeVariables:n,handDrawnSeed:i}=r,{nodeBorder:a}=n,s=t.insert("g").attr("class",e.cssClasses).attr("id",e.id).attr("data-look",e.look),l=s.insert("g",":first-child"),u=0*e.padding,h=e.width+u;e.diff=-e.padding;let f=e.height+u,d=e.x-h/2,p=e.y-f/2;e.width=h;let m;if(e.look==="handDrawn"){let v=Xe.svg(s).rectangle(d,p,h,f,{fill:"lightgrey",roughness:.5,strokeLineDash:[5],stroke:a,seed:i});m=s.insert(()=>v,":first-child")}else m=l.insert("rect",":first-child"),m.attr("class","divider").attr("x",d).attr("y",p).attr("width",h).attr("height",f).attr("data-look",e.look);let g=m.node().getBBox();return e.height=g.height,e.offsetX=0,e.offsetY=0,e.intersect=function(y){return Vh(e,y)},{cluster:s,labelBBox:{}}},"divider"),R_e=YZ,N_e={rect:YZ,squareRect:R_e,roundedWithTitle:__e,noteGroup:A_e,divider:L_e,kanbanSection:D_e},XZ=new Map,ym=o(async(t,e)=>{let r=e.shape||"rect",n=await N_e[r](t,e);return XZ.set(e.id,n),n},"insertCluster"),jZ=o(()=>{XZ=new Map},"clear")});function Ww(t,e){if(t===void 0||e===void 0)return{angle:0,deltaX:0,deltaY:0};t=Wn(t),e=Wn(e);let[r,n]=[t.x,t.y],[i,a]=[e.x,e.y],s=i-r,l=a-n;return{angle:Math.atan(l/s),deltaX:s,deltaY:l}}var $o,Wn,qw,JD=N(()=>{"use strict";$o={aggregation:18,extension:18,composition:18,dependency:6,lollipop:13.5,arrow_point:4};o(Ww,"calculateDeltaAndAngle");Wn=o(t=>Array.isArray(t)?{x:t[0],y:t[1]}:t,"pointTransformer"),qw=o(t=>({x:o(function(e,r,n){let i=0,a=Wn(n[0]).x=0?1:-1)}else if(r===n.length-1&&Object.hasOwn($o,t.arrowTypeEnd)){let{angle:m,deltaX:g}=Ww(n[n.length-1],n[n.length-2]);i=$o[t.arrowTypeEnd]*Math.cos(m)*(g>=0?1:-1)}let s=Math.abs(Wn(e).x-Wn(n[n.length-1]).x),l=Math.abs(Wn(e).y-Wn(n[n.length-1]).y),u=Math.abs(Wn(e).x-Wn(n[0]).x),h=Math.abs(Wn(e).y-Wn(n[0]).y),f=$o[t.arrowTypeStart],d=$o[t.arrowTypeEnd],p=1;if(s0&&l0&&h=0?1:-1)}else if(r===n.length-1&&Object.hasOwn($o,t.arrowTypeEnd)){let{angle:m,deltaY:g}=Ww(n[n.length-1],n[n.length-2]);i=$o[t.arrowTypeEnd]*Math.abs(Math.sin(m))*(g>=0?1:-1)}let s=Math.abs(Wn(e).y-Wn(n[n.length-1]).y),l=Math.abs(Wn(e).x-Wn(n[n.length-1]).x),u=Math.abs(Wn(e).y-Wn(n[0]).y),h=Math.abs(Wn(e).x-Wn(n[0]).x),f=$o[t.arrowTypeStart],d=$o[t.arrowTypeEnd],p=1;if(s0&&l0&&h{"use strict";vt();QZ=o((t,e,r,n,i,a)=>{e.arrowTypeStart&&KZ(t,"start",e.arrowTypeStart,r,n,i,a),e.arrowTypeEnd&&KZ(t,"end",e.arrowTypeEnd,r,n,i,a)},"addEdgeMarkers"),M_e={arrow_cross:{type:"cross",fill:!1},arrow_point:{type:"point",fill:!0},arrow_barb:{type:"barb",fill:!0},arrow_circle:{type:"circle",fill:!1},aggregation:{type:"aggregation",fill:!1},extension:{type:"extension",fill:!1},composition:{type:"composition",fill:!0},dependency:{type:"dependency",fill:!0},lollipop:{type:"lollipop",fill:!1},only_one:{type:"onlyOne",fill:!1},zero_or_one:{type:"zeroOrOne",fill:!1},one_or_more:{type:"oneOrMore",fill:!1},zero_or_more:{type:"zeroOrMore",fill:!1},requirement_arrow:{type:"requirement_arrow",fill:!1},requirement_contains:{type:"requirement_contains",fill:!1}},KZ=o((t,e,r,n,i,a,s)=>{let l=M_e[r];if(!l){Y.warn(`Unknown arrow type: ${r}`);return}let u=l.type,f=`${i}_${a}-${u}${e==="start"?"Start":"End"}`;if(s&&s.trim()!==""){let d=s.replace(/[^\dA-Za-z]/g,"_"),p=`${f}_${d}`;if(!document.getElementById(p)){let m=document.getElementById(f);if(m){let g=m.cloneNode(!0);g.id=p,g.querySelectorAll("path, circle, line").forEach(v=>{v.setAttribute("stroke",s),l.fill&&v.setAttribute("fill",s)}),m.parentNode?.appendChild(g)}}t.attr(`marker-${e}`,`url(${n}#${p})`)}else t.attr(`marker-${e}`,`url(${n}#${f})`)},"addEdgeMarker")});function Yw(t,e){me().flowchart.htmlLabels&&t&&(t.style.width=e.length*9+"px",t.style.height="12px")}function P_e(t){let e=[],r=[];for(let n=1;n5&&Math.abs(a.y-i.y)>5||i.y===a.y&&a.x===s.x&&Math.abs(a.x-i.x)>5&&Math.abs(a.y-s.y)>5)&&(e.push(a),r.push(n))}return{cornerPoints:e,cornerPointPositions:r}}var Xw,pa,tJ,T2,jw,Kw,I_e,O_e,JZ,eJ,B_e,Qw,eL=N(()=>{"use strict";zt();gr();vt();to();ir();JD();w2();dr();Wt();Gw();ZZ();Ut();Xw=new Map,pa=new Map,tJ=o(()=>{Xw.clear(),pa.clear()},"clear"),T2=o(t=>t?t.reduce((r,n)=>r+";"+n,""):"","getLabelStyles"),jw=o(async(t,e)=>{let r=fr(me().flowchart.htmlLabels),n=await Hn(t,e.label,{style:T2(e.labelStyle),useHtmlLabels:r,addSvgBackground:!0,isNode:!1});Y.info("abc82",e,e.labelType);let i=t.insert("g").attr("class","edgeLabel"),a=i.insert("g").attr("class","label");a.node().appendChild(n);let s=n.getBBox();if(r){let u=n.children[0],h=Ge(n);s=u.getBoundingClientRect(),h.attr("width",s.width),h.attr("height",s.height)}a.attr("transform","translate("+-s.width/2+", "+-s.height/2+")"),Xw.set(e.id,i),e.width=s.width,e.height=s.height;let l;if(e.startLabelLeft){let u=await gc(e.startLabelLeft,T2(e.labelStyle)),h=t.insert("g").attr("class","edgeTerminals"),f=h.insert("g").attr("class","inner");l=f.node().appendChild(u);let d=u.getBBox();f.attr("transform","translate("+-d.width/2+", "+-d.height/2+")"),pa.get(e.id)||pa.set(e.id,{}),pa.get(e.id).startLeft=h,Yw(l,e.startLabelLeft)}if(e.startLabelRight){let u=await gc(e.startLabelRight,T2(e.labelStyle)),h=t.insert("g").attr("class","edgeTerminals"),f=h.insert("g").attr("class","inner");l=h.node().appendChild(u),f.node().appendChild(u);let d=u.getBBox();f.attr("transform","translate("+-d.width/2+", "+-d.height/2+")"),pa.get(e.id)||pa.set(e.id,{}),pa.get(e.id).startRight=h,Yw(l,e.startLabelRight)}if(e.endLabelLeft){let u=await gc(e.endLabelLeft,T2(e.labelStyle)),h=t.insert("g").attr("class","edgeTerminals"),f=h.insert("g").attr("class","inner");l=f.node().appendChild(u);let d=u.getBBox();f.attr("transform","translate("+-d.width/2+", "+-d.height/2+")"),h.node().appendChild(u),pa.get(e.id)||pa.set(e.id,{}),pa.get(e.id).endLeft=h,Yw(l,e.endLabelLeft)}if(e.endLabelRight){let u=await gc(e.endLabelRight,T2(e.labelStyle)),h=t.insert("g").attr("class","edgeTerminals"),f=h.insert("g").attr("class","inner");l=f.node().appendChild(u);let d=u.getBBox();f.attr("transform","translate("+-d.width/2+", "+-d.height/2+")"),h.node().appendChild(u),pa.get(e.id)||pa.set(e.id,{}),pa.get(e.id).endRight=h,Yw(l,e.endLabelRight)}return n},"insertEdgeLabel");o(Yw,"setTerminalWidth");Kw=o((t,e)=>{Y.debug("Moving label abc88 ",t.id,t.label,Xw.get(t.id),e);let r=e.updatedPath?e.updatedPath:e.originalPath,n=me(),{subGraphTitleTotalMargin:i}=Ru(n);if(t.label){let a=Xw.get(t.id),s=t.x,l=t.y;if(r){let u=Gt.calcLabelPosition(r);Y.debug("Moving label "+t.label+" from (",s,",",l,") to (",u.x,",",u.y,") abc88"),e.updatedPath&&(s=u.x,l=u.y)}a.attr("transform",`translate(${s}, ${l+i/2})`)}if(t.startLabelLeft){let a=pa.get(t.id).startLeft,s=t.x,l=t.y;if(r){let u=Gt.calcTerminalLabelPosition(t.arrowTypeStart?10:0,"start_left",r);s=u.x,l=u.y}a.attr("transform",`translate(${s}, ${l})`)}if(t.startLabelRight){let a=pa.get(t.id).startRight,s=t.x,l=t.y;if(r){let u=Gt.calcTerminalLabelPosition(t.arrowTypeStart?10:0,"start_right",r);s=u.x,l=u.y}a.attr("transform",`translate(${s}, ${l})`)}if(t.endLabelLeft){let a=pa.get(t.id).endLeft,s=t.x,l=t.y;if(r){let u=Gt.calcTerminalLabelPosition(t.arrowTypeEnd?10:0,"end_left",r);s=u.x,l=u.y}a.attr("transform",`translate(${s}, ${l})`)}if(t.endLabelRight){let a=pa.get(t.id).endRight,s=t.x,l=t.y;if(r){let u=Gt.calcTerminalLabelPosition(t.arrowTypeEnd?10:0,"end_right",r);s=u.x,l=u.y}a.attr("transform",`translate(${s}, ${l})`)}},"positionEdgeLabel"),I_e=o((t,e)=>{let r=t.x,n=t.y,i=Math.abs(e.x-r),a=Math.abs(e.y-n),s=t.width/2,l=t.height/2;return i>=s||a>=l},"outsideNode"),O_e=o((t,e,r)=>{Y.debug(`intersection calc abc89: + outsidePoint: ${JSON.stringify(e)} + insidePoint : ${JSON.stringify(r)} + node : x:${t.x} y:${t.y} w:${t.width} h:${t.height}`);let n=t.x,i=t.y,a=Math.abs(n-r.x),s=t.width/2,l=r.xMath.abs(n-e.x)*u){let d=r.y{Y.warn("abc88 cutPathAtIntersect",t,e);let r=[],n=t[0],i=!1;return t.forEach(a=>{if(Y.info("abc88 checking point",a,e),!I_e(e,a)&&!i){let s=O_e(e,n,a);Y.debug("abc88 inside",a,n,s),Y.debug("abc88 intersection",s,e);let l=!1;r.forEach(u=>{l=l||u.x===s.x&&u.y===s.y}),r.some(u=>u.x===s.x&&u.y===s.y)?Y.warn("abc88 no intersect",s,r):r.push(s),i=!0}else Y.warn("abc88 outside",a,n),n=a,i||r.push(a)}),Y.debug("returning points",r),r},"cutPathAtIntersect");o(P_e,"extractCornerPoints");eJ=o(function(t,e,r){let n=e.x-t.x,i=e.y-t.y,a=Math.sqrt(n*n+i*i),s=r/a;return{x:e.x-s*n,y:e.y-s*i}},"findAdjacentPoint"),B_e=o(function(t){let{cornerPointPositions:e}=P_e(t),r=[];for(let n=0;n10&&Math.abs(a.y-i.y)>=10){Y.debug("Corner point fixing",Math.abs(a.x-i.x),Math.abs(a.y-i.y));let m=5;s.x===l.x?p={x:h<0?l.x-m+d:l.x+m-d,y:f<0?l.y-d:l.y+d}:p={x:h<0?l.x-d:l.x+d,y:f<0?l.y-m+d:l.y+m-d}}else Y.debug("Corner point skipping fixing",Math.abs(a.x-i.x),Math.abs(a.y-i.y));r.push(p,u)}else r.push(t[n]);return r},"fixCorners"),Qw=o(function(t,e,r,n,i,a,s){let{handDrawnSeed:l}=me(),u=e.points,h=!1,f=i;var d=a;let p=[];for(let _ in e.cssCompiledStyles)ND(_)||p.push(e.cssCompiledStyles[_]);d.intersect&&f.intersect&&(u=u.slice(1,e.points.length-1),u.unshift(f.intersect(u[0])),Y.debug("Last point APA12",e.start,"-->",e.end,u[u.length-1],d,d.intersect(u[u.length-1])),u.push(d.intersect(u[u.length-1]))),e.toCluster&&(Y.info("to cluster abc88",r.get(e.toCluster)),u=JZ(e.points,r.get(e.toCluster).node),h=!0),e.fromCluster&&(Y.debug("from cluster abc88",r.get(e.fromCluster),JSON.stringify(u,null,2)),u=JZ(u.reverse(),r.get(e.fromCluster).node).reverse(),h=!0);let m=u.filter(_=>!Number.isNaN(_.y));m=B_e(m);let g=Do;switch(g=wu,e.curve){case"linear":g=wu;break;case"basis":g=Do;break;case"cardinal":g=Pv;break;case"bumpX":g=Rv;break;case"bumpY":g=Nv;break;case"catmullRom":g=$v;break;case"monotoneX":g=zv;break;case"monotoneY":g=Gv;break;case"natural":g=F0;break;case"step":g=$0;break;case"stepAfter":g=Uv;break;case"stepBefore":g=Vv;break;default:g=Do}let{x:y,y:v}=qw(e),x=wl().x(y).y(v).curve(g),b;switch(e.thickness){case"normal":b="edge-thickness-normal";break;case"thick":b="edge-thickness-thick";break;case"invisible":b="edge-thickness-invisible";break;default:b="edge-thickness-normal"}switch(e.pattern){case"solid":b+=" edge-pattern-solid";break;case"dotted":b+=" edge-pattern-dotted";break;case"dashed":b+=" edge-pattern-dashed";break;default:b+=" edge-pattern-solid"}let w,C=x(m),T=Array.isArray(e.style)?e.style:[e.style],E=T.find(_=>_?.startsWith("stroke:"));if(e.look==="handDrawn"){let _=Xe.svg(t);Object.assign([],m);let I=_.path(C,{roughness:.3,seed:l});b+=" transition",w=Ge(I).select("path").attr("id",e.id).attr("class"," "+b+(e.classes?" "+e.classes:"")).attr("style",T?T.reduce((k,L)=>k+";"+L,""):"");let D=w.attr("d");w.attr("d",D),t.node().appendChild(w.node())}else{let _=p.join(";"),I=T?T.reduce((L,R)=>L+R+";",""):"",D="";e.animate&&(D=" edge-animation-fast"),e.animation&&(D=" edge-animation-"+e.animation);let k=_?_+";"+I+";":I;w=t.append("path").attr("d",C).attr("id",e.id).attr("class"," "+b+(e.classes?" "+e.classes:"")+(D??"")).attr("style",k),E=k.match(/stroke:([^;]+)/)?.[1]}let A="";(me().flowchart.arrowMarkerAbsolute||me().state.arrowMarkerAbsolute)&&(A=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,A=A.replace(/\(/g,"\\(").replace(/\)/g,"\\)")),Y.info("arrowTypeStart",e.arrowTypeStart),Y.info("arrowTypeEnd",e.arrowTypeEnd),QZ(w,e,A,s,n,E);let S={};return h&&(S.updatedPath=u),S.originalPath=e.points,S},"insertEdge")});var F_e,$_e,z_e,G_e,V_e,U_e,H_e,W_e,q_e,Y_e,X_e,j_e,K_e,Q_e,Z_e,J_e,e9e,Zw,tL=N(()=>{"use strict";vt();F_e=o((t,e,r,n)=>{e.forEach(i=>{e9e[i](t,r,n)})},"insertMarkers"),$_e=o((t,e,r)=>{Y.trace("Making markers for ",r),t.append("defs").append("marker").attr("id",r+"_"+e+"-extensionStart").attr("class","marker extension "+e).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 1,7 L18,13 V 1 Z"),t.append("defs").append("marker").attr("id",r+"_"+e+"-extensionEnd").attr("class","marker extension "+e).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 1,1 V 13 L18,7 Z")},"extension"),z_e=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-compositionStart").attr("class","marker composition "+e).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),t.append("defs").append("marker").attr("id",r+"_"+e+"-compositionEnd").attr("class","marker composition "+e).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z")},"composition"),G_e=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-aggregationStart").attr("class","marker aggregation "+e).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),t.append("defs").append("marker").attr("id",r+"_"+e+"-aggregationEnd").attr("class","marker aggregation "+e).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z")},"aggregation"),V_e=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-dependencyStart").attr("class","marker dependency "+e).attr("refX",6).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 5,7 L9,13 L1,7 L9,1 Z"),t.append("defs").append("marker").attr("id",r+"_"+e+"-dependencyEnd").attr("class","marker dependency "+e).attr("refX",13).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L14,7 L9,1 Z")},"dependency"),U_e=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-lollipopStart").attr("class","marker lollipop "+e).attr("refX",13).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("circle").attr("stroke","black").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6),t.append("defs").append("marker").attr("id",r+"_"+e+"-lollipopEnd").attr("class","marker lollipop "+e).attr("refX",1).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("circle").attr("stroke","black").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6)},"lollipop"),H_e=o((t,e,r)=>{t.append("marker").attr("id",r+"_"+e+"-pointEnd").attr("class","marker "+e).attr("viewBox","0 0 10 10").attr("refX",5).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",8).attr("markerHeight",8).attr("orient","auto").append("path").attr("d","M 0 0 L 10 5 L 0 10 z").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),t.append("marker").attr("id",r+"_"+e+"-pointStart").attr("class","marker "+e).attr("viewBox","0 0 10 10").attr("refX",4.5).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",8).attr("markerHeight",8).attr("orient","auto").append("path").attr("d","M 0 5 L 10 10 L 10 0 z").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0")},"point"),W_e=o((t,e,r)=>{t.append("marker").attr("id",r+"_"+e+"-circleEnd").attr("class","marker "+e).attr("viewBox","0 0 10 10").attr("refX",11).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),t.append("marker").attr("id",r+"_"+e+"-circleStart").attr("class","marker "+e).attr("viewBox","0 0 10 10").attr("refX",-1).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0")},"circle"),q_e=o((t,e,r)=>{t.append("marker").attr("id",r+"_"+e+"-crossEnd").attr("class","marker cross "+e).attr("viewBox","0 0 11 11").attr("refX",12).attr("refY",5.2).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("path").attr("d","M 1,1 l 9,9 M 10,1 l -9,9").attr("class","arrowMarkerPath").style("stroke-width",2).style("stroke-dasharray","1,0"),t.append("marker").attr("id",r+"_"+e+"-crossStart").attr("class","marker cross "+e).attr("viewBox","0 0 11 11").attr("refX",-1).attr("refY",5.2).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("path").attr("d","M 1,1 l 9,9 M 10,1 l -9,9").attr("class","arrowMarkerPath").style("stroke-width",2).style("stroke-dasharray","1,0")},"cross"),Y_e=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-barbEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",14).attr("markerUnits","userSpaceOnUse").attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},"barb"),X_e=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-onlyOneStart").attr("class","marker onlyOne "+e).attr("refX",0).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("d","M9,0 L9,18 M15,0 L15,18"),t.append("defs").append("marker").attr("id",r+"_"+e+"-onlyOneEnd").attr("class","marker onlyOne "+e).attr("refX",18).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("d","M3,0 L3,18 M9,0 L9,18")},"only_one"),j_e=o((t,e,r)=>{let n=t.append("defs").append("marker").attr("id",r+"_"+e+"-zeroOrOneStart").attr("class","marker zeroOrOne "+e).attr("refX",0).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto");n.append("circle").attr("fill","white").attr("cx",21).attr("cy",9).attr("r",6),n.append("path").attr("d","M9,0 L9,18");let i=t.append("defs").append("marker").attr("id",r+"_"+e+"-zeroOrOneEnd").attr("class","marker zeroOrOne "+e).attr("refX",30).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto");i.append("circle").attr("fill","white").attr("cx",9).attr("cy",9).attr("r",6),i.append("path").attr("d","M21,0 L21,18")},"zero_or_one"),K_e=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-oneOrMoreStart").attr("class","marker oneOrMore "+e).attr("refX",18).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("d","M0,18 Q 18,0 36,18 Q 18,36 0,18 M42,9 L42,27"),t.append("defs").append("marker").attr("id",r+"_"+e+"-oneOrMoreEnd").attr("class","marker oneOrMore "+e).attr("refX",27).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("d","M3,9 L3,27 M9,18 Q27,0 45,18 Q27,36 9,18")},"one_or_more"),Q_e=o((t,e,r)=>{let n=t.append("defs").append("marker").attr("id",r+"_"+e+"-zeroOrMoreStart").attr("class","marker zeroOrMore "+e).attr("refX",18).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto");n.append("circle").attr("fill","white").attr("cx",48).attr("cy",18).attr("r",6),n.append("path").attr("d","M0,18 Q18,0 36,18 Q18,36 0,18");let i=t.append("defs").append("marker").attr("id",r+"_"+e+"-zeroOrMoreEnd").attr("class","marker zeroOrMore "+e).attr("refX",39).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto");i.append("circle").attr("fill","white").attr("cx",9).attr("cy",18).attr("r",6),i.append("path").attr("d","M21,18 Q39,0 57,18 Q39,36 21,18")},"zero_or_more"),Z_e=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-requirement_arrowEnd").attr("refX",20).attr("refY",10).attr("markerWidth",20).attr("markerHeight",20).attr("orient","auto").append("path").attr("d",`M0,0 + L20,10 + M20,10 + L0,20`)},"requirement_arrow"),J_e=o((t,e,r)=>{let n=t.append("defs").append("marker").attr("id",r+"_"+e+"-requirement_containsStart").attr("refX",0).attr("refY",10).attr("markerWidth",20).attr("markerHeight",20).attr("orient","auto").append("g");n.append("circle").attr("cx",10).attr("cy",10).attr("r",9).attr("fill","none"),n.append("line").attr("x1",1).attr("x2",19).attr("y1",10).attr("y2",10),n.append("line").attr("y1",1).attr("y2",19).attr("x1",10).attr("x2",10)},"requirement_contains"),e9e={extension:$_e,composition:z_e,aggregation:G_e,dependency:V_e,lollipop:U_e,point:H_e,circle:W_e,cross:q_e,barb:Y_e,only_one:X_e,zero_or_one:j_e,one_or_more:K_e,zero_or_more:Q_e,requirement_arrow:Z_e,requirement_contains:J_e},Zw=F_e});async function vm(t,e,r){let n,i;e.shape==="rect"&&(e.rx&&e.ry?e.shape="roundedRect":e.shape="squareRect");let a=e.shape?QD[e.shape]:void 0;if(!a)throw new Error(`No such shape: ${e.shape}. Please check your syntax.`);if(e.link){let s;r.config.securityLevel==="sandbox"?s="_top":e.linkTarget&&(s=e.linkTarget||"_blank"),n=t.insert("svg:a").attr("xlink:href",e.link).attr("target",s??null),i=await a(n,e,r)}else i=await a(t,e,r),n=i;return e.tooltip&&i.attr("title",e.tooltip),Jw.set(e.id,n),e.haveCallback&&n.attr("class",n.attr("class")+" clickable"),n}var Jw,rJ,nJ,k2,eT=N(()=>{"use strict";vt();ZD();Jw=new Map;o(vm,"insertNode");rJ=o((t,e)=>{Jw.set(e.id,t)},"setNodeElem"),nJ=o(()=>{Jw.clear()},"clear"),k2=o(t=>{let e=Jw.get(t.id);Y.trace("Transforming node",t.diff,t,"translate("+(t.x-t.width/2-5)+", "+t.width/2+")");let r=8,n=t.diff||0;return t.clusterNode?e.attr("transform","translate("+(t.x+n-t.width/2)+", "+(t.y-t.height/2-r)+")"):e.attr("transform","translate("+t.x+", "+t.y+")"),n},"positionNode")});var iJ,aJ=N(()=>{"use strict";ji();gr();vt();Hw();eL();tL();eT();Ft();ir();iJ={common:Ze,getConfig:cr,insertCluster:ym,insertEdge:Qw,insertEdgeLabel:jw,insertMarkers:Zw,insertNode:vm,interpolateToCurve:W9,labelHelper:pt,log:Y,positionEdgeLabel:Kw}});function r9e(t){return typeof t=="symbol"||ri(t)&&da(t)==t9e}var t9e,no,Pd=N(()=>{"use strict";ku();No();t9e="[object Symbol]";o(r9e,"isSymbol");no=r9e});function n9e(t,e){for(var r=-1,n=t==null?0:t.length,i=Array(n);++r{"use strict";o(n9e,"arrayMap");Ns=n9e});function lJ(t){if(typeof t=="string")return t;if(Pt(t))return Ns(t,lJ)+"";if(no(t))return oJ?oJ.call(t):"";var e=t+"";return e=="0"&&1/t==-i9e?"-0":e}var i9e,sJ,oJ,cJ,uJ=N(()=>{"use strict";Ed();Bd();Un();Pd();i9e=1/0,sJ=ea?ea.prototype:void 0,oJ=sJ?sJ.toString:void 0;o(lJ,"baseToString");cJ=lJ});function s9e(t){for(var e=t.length;e--&&a9e.test(t.charAt(e)););return e}var a9e,hJ,fJ=N(()=>{"use strict";a9e=/\s/;o(s9e,"trimmedEndIndex");hJ=s9e});function l9e(t){return t&&t.slice(0,hJ(t)+1).replace(o9e,"")}var o9e,dJ,pJ=N(()=>{"use strict";fJ();o9e=/^\s+/;o(l9e,"baseTrim");dJ=l9e});function d9e(t){if(typeof t=="number")return t;if(no(t))return mJ;if(bn(t)){var e=typeof t.valueOf=="function"?t.valueOf():t;t=bn(e)?e+"":e}if(typeof t!="string")return t===0?t:+t;t=dJ(t);var r=u9e.test(t);return r||h9e.test(t)?f9e(t.slice(2),r?2:8):c9e.test(t)?mJ:+t}var mJ,c9e,u9e,h9e,f9e,gJ,yJ=N(()=>{"use strict";pJ();Js();Pd();mJ=NaN,c9e=/^[-+]0x[0-9a-f]+$/i,u9e=/^0b[01]+$/i,h9e=/^0o[0-7]+$/i,f9e=parseInt;o(d9e,"toNumber");gJ=d9e});function m9e(t){if(!t)return t===0?t:0;if(t=gJ(t),t===vJ||t===-vJ){var e=t<0?-1:1;return e*p9e}return t===t?t:0}var vJ,p9e,xm,rL=N(()=>{"use strict";yJ();vJ=1/0,p9e=17976931348623157e292;o(m9e,"toFinite");xm=m9e});function g9e(t){var e=xm(t),r=e%1;return e===e?r?e-r:e:0}var vc,bm=N(()=>{"use strict";rL();o(g9e,"toInteger");vc=g9e});var y9e,tT,xJ=N(()=>{"use strict";Lh();Lo();y9e=Ss(li,"WeakMap"),tT=y9e});function v9e(){}var ni,nL=N(()=>{"use strict";o(v9e,"noop");ni=v9e});function x9e(t,e){for(var r=-1,n=t==null?0:t.length;++r{"use strict";o(x9e,"arrayEach");rT=x9e});function b9e(t,e,r,n){for(var i=t.length,a=r+(n?1:-1);n?a--:++a{"use strict";o(b9e,"baseFindIndex");nT=b9e});function w9e(t){return t!==t}var bJ,wJ=N(()=>{"use strict";o(w9e,"baseIsNaN");bJ=w9e});function T9e(t,e,r){for(var n=r-1,i=t.length;++n{"use strict";o(T9e,"strictIndexOf");TJ=T9e});function k9e(t,e,r){return e===e?TJ(t,e,r):nT(t,bJ,r)}var wm,iT=N(()=>{"use strict";aL();wJ();kJ();o(k9e,"baseIndexOf");wm=k9e});function E9e(t,e){var r=t==null?0:t.length;return!!r&&wm(t,e,0)>-1}var aT,sL=N(()=>{"use strict";iT();o(E9e,"arrayIncludes");aT=E9e});var S9e,EJ,SJ=N(()=>{"use strict";N9();S9e=nw(Object.keys,Object),EJ=S9e});function _9e(t){if(!uc(t))return EJ(t);var e=[];for(var r in Object(t))A9e.call(t,r)&&r!="constructor"&&e.push(r);return e}var C9e,A9e,Tm,sT=N(()=>{"use strict";Z0();SJ();C9e=Object.prototype,A9e=C9e.hasOwnProperty;o(_9e,"baseKeys");Tm=_9e});function D9e(t){return ci(t)?lw(t):Tm(t)}var zr,xc=N(()=>{"use strict";B9();sT();Mo();o(D9e,"keys");zr=D9e});var L9e,R9e,N9e,ma,CJ=N(()=>{"use strict";rm();Dd();G9();Mo();Z0();xc();L9e=Object.prototype,R9e=L9e.hasOwnProperty,N9e=hw(function(t,e){if(uc(e)||ci(e)){Po(e,zr(e),t);return}for(var r in e)R9e.call(e,r)&&hc(t,r,e[r])}),ma=N9e});function O9e(t,e){if(Pt(t))return!1;var r=typeof t;return r=="number"||r=="symbol"||r=="boolean"||t==null||no(t)?!0:I9e.test(t)||!M9e.test(t)||e!=null&&t in Object(e)}var M9e,I9e,km,oT=N(()=>{"use strict";Un();Pd();M9e=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,I9e=/^\w*$/;o(O9e,"isKey");km=O9e});function B9e(t){var e=H0(t,function(n){return r.size===P9e&&r.clear(),n}),r=e.cache;return e}var P9e,AJ,_J=N(()=>{"use strict";S9();P9e=500;o(B9e,"memoizeCapped");AJ=B9e});var F9e,$9e,z9e,DJ,LJ=N(()=>{"use strict";_J();F9e=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,$9e=/\\(\\)?/g,z9e=AJ(function(t){var e=[];return t.charCodeAt(0)===46&&e.push(""),t.replace(F9e,function(r,n,i,a){e.push(i?a.replace($9e,"$1"):n||r)}),e}),DJ=z9e});function G9e(t){return t==null?"":cJ(t)}var lT,oL=N(()=>{"use strict";uJ();o(G9e,"toString");lT=G9e});function V9e(t,e){return Pt(t)?t:km(t,e)?[t]:DJ(lT(t))}var Yh,E2=N(()=>{"use strict";Un();oT();LJ();oL();o(V9e,"castPath");Yh=V9e});function H9e(t){if(typeof t=="string"||no(t))return t;var e=t+"";return e=="0"&&1/t==-U9e?"-0":e}var U9e,bc,Em=N(()=>{"use strict";Pd();U9e=1/0;o(H9e,"toKey");bc=H9e});function W9e(t,e){e=Yh(e,t);for(var r=0,n=e.length;t!=null&&r{"use strict";E2();Em();o(W9e,"baseGet");Xh=W9e});function q9e(t,e,r){var n=t==null?void 0:Xh(t,e);return n===void 0?r:n}var RJ,NJ=N(()=>{"use strict";S2();o(q9e,"get");RJ=q9e});function Y9e(t,e){for(var r=-1,n=e.length,i=t.length;++r{"use strict";o(Y9e,"arrayPush");Sm=Y9e});function X9e(t){return Pt(t)||El(t)||!!(MJ&&t&&t[MJ])}var MJ,IJ,OJ=N(()=>{"use strict";Ed();J0();Un();MJ=ea?ea.isConcatSpreadable:void 0;o(X9e,"isFlattenable");IJ=X9e});function PJ(t,e,r,n,i){var a=-1,s=t.length;for(r||(r=IJ),i||(i=[]);++a0&&r(l)?e>1?PJ(l,e-1,r,n,i):Sm(i,l):n||(i[i.length]=l)}return i}var wc,Cm=N(()=>{"use strict";cT();OJ();o(PJ,"baseFlatten");wc=PJ});function j9e(t){var e=t==null?0:t.length;return e?wc(t,1):[]}var qr,uT=N(()=>{"use strict";Cm();o(j9e,"flatten");qr=j9e});function K9e(t){return uw(cw(t,void 0,qr),t+"")}var BJ,FJ=N(()=>{"use strict";uT();F9();z9();o(K9e,"flatRest");BJ=K9e});function Q9e(t,e,r){var n=-1,i=t.length;e<0&&(e=-e>i?0:i+e),r=r>i?i:r,r<0&&(r+=i),i=e>r?0:r-e>>>0,e>>>=0;for(var a=Array(i);++n{"use strict";o(Q9e,"baseSlice");hT=Q9e});function sDe(t){return aDe.test(t)}var Z9e,J9e,eDe,tDe,rDe,nDe,iDe,aDe,$J,zJ=N(()=>{"use strict";Z9e="\\ud800-\\udfff",J9e="\\u0300-\\u036f",eDe="\\ufe20-\\ufe2f",tDe="\\u20d0-\\u20ff",rDe=J9e+eDe+tDe,nDe="\\ufe0e\\ufe0f",iDe="\\u200d",aDe=RegExp("["+iDe+Z9e+rDe+nDe+"]");o(sDe,"hasUnicode");$J=sDe});function oDe(t,e,r,n){var i=-1,a=t==null?0:t.length;for(n&&a&&(r=t[++i]);++i{"use strict";o(oDe,"arrayReduce");GJ=oDe});function lDe(t,e){return t&&Po(e,zr(e),t)}var UJ,HJ=N(()=>{"use strict";Dd();xc();o(lDe,"baseAssign");UJ=lDe});function cDe(t,e){return t&&Po(e,Cs(e),t)}var WJ,qJ=N(()=>{"use strict";Dd();Bh();o(cDe,"baseAssignIn");WJ=cDe});function uDe(t,e){for(var r=-1,n=t==null?0:t.length,i=0,a=[];++r{"use strict";o(uDe,"arrayFilter");Am=uDe});function hDe(){return[]}var dT,cL=N(()=>{"use strict";o(hDe,"stubArray");dT=hDe});var fDe,dDe,YJ,pDe,_m,pT=N(()=>{"use strict";fT();cL();fDe=Object.prototype,dDe=fDe.propertyIsEnumerable,YJ=Object.getOwnPropertySymbols,pDe=YJ?function(t){return t==null?[]:(t=Object(t),Am(YJ(t),function(e){return dDe.call(t,e)}))}:dT,_m=pDe});function mDe(t,e){return Po(t,_m(t),e)}var XJ,jJ=N(()=>{"use strict";Dd();pT();o(mDe,"copySymbols");XJ=mDe});var gDe,yDe,mT,uL=N(()=>{"use strict";cT();iw();pT();cL();gDe=Object.getOwnPropertySymbols,yDe=gDe?function(t){for(var e=[];t;)Sm(e,_m(t)),t=Q0(t);return e}:dT,mT=yDe});function vDe(t,e){return Po(t,mT(t),e)}var KJ,QJ=N(()=>{"use strict";Dd();uL();o(vDe,"copySymbolsIn");KJ=vDe});function xDe(t,e,r){var n=e(t);return Pt(t)?n:Sm(n,r(t))}var gT,hL=N(()=>{"use strict";cT();Un();o(xDe,"baseGetAllKeys");gT=xDe});function bDe(t){return gT(t,zr,_m)}var C2,fL=N(()=>{"use strict";hL();pT();xc();o(bDe,"getAllKeys");C2=bDe});function wDe(t){return gT(t,Cs,mT)}var yT,dL=N(()=>{"use strict";hL();uL();Bh();o(wDe,"getAllKeysIn");yT=wDe});var TDe,vT,ZJ=N(()=>{"use strict";Lh();Lo();TDe=Ss(li,"DataView"),vT=TDe});var kDe,xT,JJ=N(()=>{"use strict";Lh();Lo();kDe=Ss(li,"Promise"),xT=kDe});var EDe,jh,pL=N(()=>{"use strict";Lh();Lo();EDe=Ss(li,"Set"),jh=EDe});var eee,SDe,tee,ree,nee,iee,CDe,ADe,_De,DDe,LDe,Fd,io,$d=N(()=>{"use strict";ZJ();K5();JJ();pL();xJ();ku();T9();eee="[object Map]",SDe="[object Object]",tee="[object Promise]",ree="[object Set]",nee="[object WeakMap]",iee="[object DataView]",CDe=Eu(vT),ADe=Eu(Mh),_De=Eu(xT),DDe=Eu(jh),LDe=Eu(tT),Fd=da;(vT&&Fd(new vT(new ArrayBuffer(1)))!=iee||Mh&&Fd(new Mh)!=eee||xT&&Fd(xT.resolve())!=tee||jh&&Fd(new jh)!=ree||tT&&Fd(new tT)!=nee)&&(Fd=o(function(t){var e=da(t),r=e==SDe?t.constructor:void 0,n=r?Eu(r):"";if(n)switch(n){case CDe:return iee;case ADe:return eee;case _De:return tee;case DDe:return ree;case LDe:return nee}return e},"getTag"));io=Fd});function MDe(t){var e=t.length,r=new t.constructor(e);return e&&typeof t[0]=="string"&&NDe.call(t,"index")&&(r.index=t.index,r.input=t.input),r}var RDe,NDe,aee,see=N(()=>{"use strict";RDe=Object.prototype,NDe=RDe.hasOwnProperty;o(MDe,"initCloneArray");aee=MDe});function IDe(t,e){var r=e?K0(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}var oee,lee=N(()=>{"use strict";ew();o(IDe,"cloneDataView");oee=IDe});function PDe(t){var e=new t.constructor(t.source,ODe.exec(t));return e.lastIndex=t.lastIndex,e}var ODe,cee,uee=N(()=>{"use strict";ODe=/\w*$/;o(PDe,"cloneRegExp");cee=PDe});function BDe(t){return fee?Object(fee.call(t)):{}}var hee,fee,dee,pee=N(()=>{"use strict";Ed();hee=ea?ea.prototype:void 0,fee=hee?hee.valueOf:void 0;o(BDe,"cloneSymbol");dee=BDe});function nLe(t,e,r){var n=t.constructor;switch(e){case qDe:return K0(t);case FDe:case $De:return new n(+t);case YDe:return oee(t,r);case XDe:case jDe:case KDe:case QDe:case ZDe:case JDe:case eLe:case tLe:case rLe:return tw(t,r);case zDe:return new n;case GDe:case HDe:return new n(t);case VDe:return cee(t);case UDe:return new n;case WDe:return dee(t)}}var FDe,$De,zDe,GDe,VDe,UDe,HDe,WDe,qDe,YDe,XDe,jDe,KDe,QDe,ZDe,JDe,eLe,tLe,rLe,mee,gee=N(()=>{"use strict";ew();lee();uee();pee();L9();FDe="[object Boolean]",$De="[object Date]",zDe="[object Map]",GDe="[object Number]",VDe="[object RegExp]",UDe="[object Set]",HDe="[object String]",WDe="[object Symbol]",qDe="[object ArrayBuffer]",YDe="[object DataView]",XDe="[object Float32Array]",jDe="[object Float64Array]",KDe="[object Int8Array]",QDe="[object Int16Array]",ZDe="[object Int32Array]",JDe="[object Uint8Array]",eLe="[object Uint8ClampedArray]",tLe="[object Uint16Array]",rLe="[object Uint32Array]";o(nLe,"initCloneByTag");mee=nLe});function aLe(t){return ri(t)&&io(t)==iLe}var iLe,yee,vee=N(()=>{"use strict";$d();No();iLe="[object Map]";o(aLe,"baseIsMap");yee=aLe});var xee,sLe,bee,wee=N(()=>{"use strict";vee();_d();t2();xee=Oo&&Oo.isMap,sLe=xee?Io(xee):yee,bee=sLe});function lLe(t){return ri(t)&&io(t)==oLe}var oLe,Tee,kee=N(()=>{"use strict";$d();No();oLe="[object Set]";o(lLe,"baseIsSet");Tee=lLe});var Eee,cLe,See,Cee=N(()=>{"use strict";kee();_d();t2();Eee=Oo&&Oo.isSet,cLe=Eee?Io(Eee):Tee,See=cLe});function bT(t,e,r,n,i,a){var s,l=e&uLe,u=e&hLe,h=e&fLe;if(r&&(s=i?r(t,n,i,a):r(t)),s!==void 0)return s;if(!bn(t))return t;var f=Pt(t);if(f){if(s=aee(t),!l)return rw(t,s)}else{var d=io(t),p=d==_ee||d==yLe;if(Sl(t))return J5(t,l);if(d==Dee||d==Aee||p&&!i){if(s=u||p?{}:aw(t),!l)return u?KJ(t,WJ(s,t)):XJ(t,UJ(s,t))}else{if(!_n[d])return i?t:{};s=mee(t,d,l)}}a||(a=new lc);var m=a.get(t);if(m)return m;a.set(t,s),See(t)?t.forEach(function(v){s.add(bT(v,e,r,v,t,a))}):bee(t)&&t.forEach(function(v,x){s.set(x,bT(v,e,r,x,t,a))});var g=h?u?yT:C2:u?Cs:zr,y=f?void 0:g(t);return rT(y||t,function(v,x){y&&(x=v,v=t[x]),hc(s,x,bT(v,e,r,x,t,a))}),s}var uLe,hLe,fLe,Aee,dLe,pLe,mLe,gLe,_ee,yLe,vLe,xLe,Dee,bLe,wLe,TLe,kLe,ELe,SLe,CLe,ALe,_Le,DLe,LLe,RLe,NLe,MLe,ILe,OLe,_n,wT,mL=N(()=>{"use strict";Zv();iL();rm();HJ();qJ();_9();R9();jJ();QJ();fL();dL();$d();see();gee();M9();Un();tm();wee();Js();Cee();xc();Bh();uLe=1,hLe=2,fLe=4,Aee="[object Arguments]",dLe="[object Array]",pLe="[object Boolean]",mLe="[object Date]",gLe="[object Error]",_ee="[object Function]",yLe="[object GeneratorFunction]",vLe="[object Map]",xLe="[object Number]",Dee="[object Object]",bLe="[object RegExp]",wLe="[object Set]",TLe="[object String]",kLe="[object Symbol]",ELe="[object WeakMap]",SLe="[object ArrayBuffer]",CLe="[object DataView]",ALe="[object Float32Array]",_Le="[object Float64Array]",DLe="[object Int8Array]",LLe="[object Int16Array]",RLe="[object Int32Array]",NLe="[object Uint8Array]",MLe="[object Uint8ClampedArray]",ILe="[object Uint16Array]",OLe="[object Uint32Array]",_n={};_n[Aee]=_n[dLe]=_n[SLe]=_n[CLe]=_n[pLe]=_n[mLe]=_n[ALe]=_n[_Le]=_n[DLe]=_n[LLe]=_n[RLe]=_n[vLe]=_n[xLe]=_n[Dee]=_n[bLe]=_n[wLe]=_n[TLe]=_n[kLe]=_n[NLe]=_n[MLe]=_n[ILe]=_n[OLe]=!0;_n[gLe]=_n[_ee]=_n[ELe]=!1;o(bT,"baseClone");wT=bT});function BLe(t){return wT(t,PLe)}var PLe,an,gL=N(()=>{"use strict";mL();PLe=4;o(BLe,"clone");an=BLe});function zLe(t){return wT(t,FLe|$Le)}var FLe,$Le,yL,Lee=N(()=>{"use strict";mL();FLe=1,$Le=4;o(zLe,"cloneDeep");yL=zLe});function GLe(t){for(var e=-1,r=t==null?0:t.length,n=0,i=[];++e{"use strict";o(GLe,"compact");Tc=GLe});function ULe(t){return this.__data__.set(t,VLe),this}var VLe,Nee,Mee=N(()=>{"use strict";VLe="__lodash_hash_undefined__";o(ULe,"setCacheAdd");Nee=ULe});function HLe(t){return this.__data__.has(t)}var Iee,Oee=N(()=>{"use strict";o(HLe,"setCacheHas");Iee=HLe});function TT(t){var e=-1,r=t==null?0:t.length;for(this.__data__=new Cd;++e{"use strict";Q5();Mee();Oee();o(TT,"SetCache");TT.prototype.add=TT.prototype.push=Nee;TT.prototype.has=Iee;Dm=TT});function WLe(t,e){for(var r=-1,n=t==null?0:t.length;++r{"use strict";o(WLe,"arraySome");ET=WLe});function qLe(t,e){return t.has(e)}var Lm,ST=N(()=>{"use strict";o(qLe,"cacheHas");Lm=qLe});function jLe(t,e,r,n,i,a){var s=r&YLe,l=t.length,u=e.length;if(l!=u&&!(s&&u>l))return!1;var h=a.get(t),f=a.get(e);if(h&&f)return h==e&&f==t;var d=-1,p=!0,m=r&XLe?new Dm:void 0;for(a.set(t,e),a.set(e,t);++d{"use strict";kT();vL();ST();YLe=1,XLe=2;o(jLe,"equalArrays");CT=jLe});function KLe(t){var e=-1,r=Array(t.size);return t.forEach(function(n,i){r[++e]=[i,n]}),r}var Pee,Bee=N(()=>{"use strict";o(KLe,"mapToArray");Pee=KLe});function QLe(t){var e=-1,r=Array(t.size);return t.forEach(function(n){r[++e]=n}),r}var Rm,AT=N(()=>{"use strict";o(QLe,"setToArray");Rm=QLe});function hRe(t,e,r,n,i,a,s){switch(r){case uRe:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case cRe:return!(t.byteLength!=e.byteLength||!a(new j0(t),new j0(e)));case eRe:case tRe:case iRe:return Ro(+t,+e);case rRe:return t.name==e.name&&t.message==e.message;case aRe:case oRe:return t==e+"";case nRe:var l=Pee;case sRe:var u=n&ZLe;if(l||(l=Rm),t.size!=e.size&&!u)return!1;var h=s.get(t);if(h)return h==e;n|=JLe,s.set(t,e);var f=CT(l(t),l(e),n,i,a,s);return s.delete(t),f;case lRe:if(bL)return bL.call(t)==bL.call(e)}return!1}var ZLe,JLe,eRe,tRe,rRe,nRe,iRe,aRe,sRe,oRe,lRe,cRe,uRe,Fee,bL,$ee,zee=N(()=>{"use strict";Ed();D9();Sd();xL();Bee();AT();ZLe=1,JLe=2,eRe="[object Boolean]",tRe="[object Date]",rRe="[object Error]",nRe="[object Map]",iRe="[object Number]",aRe="[object RegExp]",sRe="[object Set]",oRe="[object String]",lRe="[object Symbol]",cRe="[object ArrayBuffer]",uRe="[object DataView]",Fee=ea?ea.prototype:void 0,bL=Fee?Fee.valueOf:void 0;o(hRe,"equalByTag");$ee=hRe});function mRe(t,e,r,n,i,a){var s=r&fRe,l=C2(t),u=l.length,h=C2(e),f=h.length;if(u!=f&&!s)return!1;for(var d=u;d--;){var p=l[d];if(!(s?p in e:pRe.call(e,p)))return!1}var m=a.get(t),g=a.get(e);if(m&&g)return m==e&&g==t;var y=!0;a.set(t,e),a.set(e,t);for(var v=s;++d{"use strict";fL();fRe=1,dRe=Object.prototype,pRe=dRe.hasOwnProperty;o(mRe,"equalObjects");Gee=mRe});function vRe(t,e,r,n,i,a){var s=Pt(t),l=Pt(e),u=s?Hee:io(t),h=l?Hee:io(e);u=u==Uee?_T:u,h=h==Uee?_T:h;var f=u==_T,d=h==_T,p=u==h;if(p&&Sl(t)){if(!Sl(e))return!1;s=!0,f=!1}if(p&&!f)return a||(a=new lc),s||Oh(t)?CT(t,e,r,n,i,a):$ee(t,e,u,r,n,i,a);if(!(r&gRe)){var m=f&&Wee.call(t,"__wrapped__"),g=d&&Wee.call(e,"__wrapped__");if(m||g){var y=m?t.value():t,v=g?e.value():e;return a||(a=new lc),i(y,v,r,n,a)}}return p?(a||(a=new lc),Gee(t,e,r,n,i,a)):!1}var gRe,Uee,Hee,_T,yRe,Wee,qee,Yee=N(()=>{"use strict";Zv();xL();zee();Vee();$d();Un();tm();r2();gRe=1,Uee="[object Arguments]",Hee="[object Array]",_T="[object Object]",yRe=Object.prototype,Wee=yRe.hasOwnProperty;o(vRe,"baseIsEqualDeep");qee=vRe});function Xee(t,e,r,n,i){return t===e?!0:t==null||e==null||!ri(t)&&!ri(e)?t!==t&&e!==e:qee(t,e,r,n,Xee,i)}var DT,wL=N(()=>{"use strict";Yee();No();o(Xee,"baseIsEqual");DT=Xee});function wRe(t,e,r,n){var i=r.length,a=i,s=!n;if(t==null)return!a;for(t=Object(t);i--;){var l=r[i];if(s&&l[2]?l[1]!==t[l[0]]:!(l[0]in t))return!1}for(;++i{"use strict";Zv();wL();xRe=1,bRe=2;o(wRe,"baseIsMatch");jee=wRe});function TRe(t){return t===t&&!bn(t)}var LT,TL=N(()=>{"use strict";Js();o(TRe,"isStrictComparable");LT=TRe});function kRe(t){for(var e=zr(t),r=e.length;r--;){var n=e[r],i=t[n];e[r]=[n,i,LT(i)]}return e}var Qee,Zee=N(()=>{"use strict";TL();xc();o(kRe,"getMatchData");Qee=kRe});function ERe(t,e){return function(r){return r==null?!1:r[t]===e&&(e!==void 0||t in Object(r))}}var RT,kL=N(()=>{"use strict";o(ERe,"matchesStrictComparable");RT=ERe});function SRe(t){var e=Qee(t);return e.length==1&&e[0][2]?RT(e[0][0],e[0][1]):function(r){return r===t||jee(r,t,e)}}var Jee,ete=N(()=>{"use strict";Kee();Zee();kL();o(SRe,"baseMatches");Jee=SRe});function CRe(t,e){return t!=null&&e in Object(t)}var tte,rte=N(()=>{"use strict";o(CRe,"baseHasIn");tte=CRe});function ARe(t,e,r){e=Yh(e,t);for(var n=-1,i=e.length,a=!1;++n{"use strict";E2();J0();Un();i2();sw();Em();o(ARe,"hasPath");NT=ARe});function _Re(t,e){return t!=null&&NT(t,e,tte)}var MT,SL=N(()=>{"use strict";rte();EL();o(_Re,"hasIn");MT=_Re});function RRe(t,e){return km(t)&<(e)?RT(bc(t),e):function(r){var n=RJ(r,t);return n===void 0&&n===e?MT(r,t):DT(e,n,DRe|LRe)}}var DRe,LRe,nte,ite=N(()=>{"use strict";wL();NJ();SL();oT();TL();kL();Em();DRe=1,LRe=2;o(RRe,"baseMatchesProperty");nte=RRe});function NRe(t){return function(e){return e?.[t]}}var IT,CL=N(()=>{"use strict";o(NRe,"baseProperty");IT=NRe});function MRe(t){return function(e){return Xh(e,t)}}var ate,ste=N(()=>{"use strict";S2();o(MRe,"basePropertyDeep");ate=MRe});function IRe(t){return km(t)?IT(bc(t)):ate(t)}var ote,lte=N(()=>{"use strict";CL();ste();oT();Em();o(IRe,"property");ote=IRe});function ORe(t){return typeof t=="function"?t:t==null?ta:typeof t=="object"?Pt(t)?nte(t[0],t[1]):Jee(t):ote(t)}var pn,rs=N(()=>{"use strict";ete();ite();Cu();Un();lte();o(ORe,"baseIteratee");pn=ORe});function PRe(t,e,r,n){for(var i=-1,a=t==null?0:t.length;++i{"use strict";o(PRe,"arrayAggregator");cte=PRe});function BRe(t,e){return t&&X0(t,e,zr)}var Nm,OT=N(()=>{"use strict";Z5();xc();o(BRe,"baseForOwn");Nm=BRe});function FRe(t,e){return function(r,n){if(r==null)return r;if(!ci(r))return t(r,n);for(var i=r.length,a=e?i:-1,s=Object(r);(e?a--:++a{"use strict";Mo();o(FRe,"createBaseEach");hte=FRe});var $Re,Ms,Kh=N(()=>{"use strict";OT();fte();$Re=hte(Nm),Ms=$Re});function zRe(t,e,r,n){return Ms(t,function(i,a,s){e(n,i,r(i),s)}),n}var dte,pte=N(()=>{"use strict";Kh();o(zRe,"baseAggregator");dte=zRe});function GRe(t,e){return function(r,n){var i=Pt(r)?cte:dte,a=e?e():{};return i(r,t,pn(n,2),a)}}var mte,gte=N(()=>{"use strict";ute();pte();rs();Un();o(GRe,"createAggregator");mte=GRe});var VRe,PT,yte=N(()=>{"use strict";Lo();VRe=o(function(){return li.Date.now()},"now"),PT=VRe});var vte,URe,HRe,Qh,xte=N(()=>{"use strict";nm();Sd();Ld();Bh();vte=Object.prototype,URe=vte.hasOwnProperty,HRe=fc(function(t,e){t=Object(t);var r=-1,n=e.length,i=n>2?e[2]:void 0;for(i&&eo(e[0],e[1],i)&&(n=1);++r{"use strict";o(WRe,"arrayIncludesWith");BT=WRe});function YRe(t,e,r,n){var i=-1,a=aT,s=!0,l=t.length,u=[],h=e.length;if(!l)return u;r&&(e=Ns(e,Io(r))),n?(a=BT,s=!1):e.length>=qRe&&(a=Lm,s=!1,e=new Dm(e));e:for(;++i{"use strict";kT();sL();AL();Bd();_d();ST();qRe=200;o(YRe,"baseDifference");bte=YRe});var XRe,Zh,Tte=N(()=>{"use strict";wte();Cm();nm();ow();XRe=fc(function(t,e){return Ad(t)?bte(t,wc(e,1,Ad,!0)):[]}),Zh=XRe});function jRe(t){var e=t==null?0:t.length;return e?t[e-1]:void 0}var ga,kte=N(()=>{"use strict";o(jRe,"last");ga=jRe});function KRe(t,e,r){var n=t==null?0:t.length;return n?(e=r||e===void 0?1:vc(e),hT(t,e<0?0:e,n)):[]}var gi,Ete=N(()=>{"use strict";lL();bm();o(KRe,"drop");gi=KRe});function QRe(t,e,r){var n=t==null?0:t.length;return n?(e=r||e===void 0?1:vc(e),e=n-e,hT(t,0,e<0?0:e)):[]}var Nu,Ste=N(()=>{"use strict";lL();bm();o(QRe,"dropRight");Nu=QRe});function ZRe(t){return typeof t=="function"?t:ta}var Mm,FT=N(()=>{"use strict";Cu();o(ZRe,"castFunction");Mm=ZRe});function JRe(t,e){var r=Pt(t)?rT:Ms;return r(t,Mm(e))}var Ae,$T=N(()=>{"use strict";iL();Kh();FT();Un();o(JRe,"forEach");Ae=JRe});var Cte=N(()=>{"use strict";$T()});function eNe(t,e){for(var r=-1,n=t==null?0:t.length;++r{"use strict";o(eNe,"arrayEvery");Ate=eNe});function tNe(t,e){var r=!0;return Ms(t,function(n,i,a){return r=!!e(n,i,a),r}),r}var Dte,Lte=N(()=>{"use strict";Kh();o(tNe,"baseEvery");Dte=tNe});function rNe(t,e,r){var n=Pt(t)?Ate:Dte;return r&&eo(t,e,r)&&(e=void 0),n(t,pn(e,3))}var Ma,Rte=N(()=>{"use strict";_te();Lte();rs();Un();Ld();o(rNe,"every");Ma=rNe});function nNe(t,e){var r=[];return Ms(t,function(n,i,a){e(n,i,a)&&r.push(n)}),r}var zT,_L=N(()=>{"use strict";Kh();o(nNe,"baseFilter");zT=nNe});function iNe(t,e){var r=Pt(t)?Am:zT;return r(t,pn(e,3))}var Yr,DL=N(()=>{"use strict";fT();_L();rs();Un();o(iNe,"filter");Yr=iNe});function aNe(t){return function(e,r,n){var i=Object(e);if(!ci(e)){var a=pn(r,3);e=zr(e),r=o(function(l){return a(i[l],l,i)},"predicate")}var s=t(e,r,n);return s>-1?i[a?e[s]:s]:void 0}}var Nte,Mte=N(()=>{"use strict";rs();Mo();xc();o(aNe,"createFind");Nte=aNe});function oNe(t,e,r){var n=t==null?0:t.length;if(!n)return-1;var i=r==null?0:vc(r);return i<0&&(i=sNe(n+i,0)),nT(t,pn(e,3),i)}var sNe,Ite,Ote=N(()=>{"use strict";aL();rs();bm();sNe=Math.max;o(oNe,"findIndex");Ite=oNe});var lNe,ns,Pte=N(()=>{"use strict";Mte();Ote();lNe=Nte(Ite),ns=lNe});function cNe(t){return t&&t.length?t[0]:void 0}var ia,Bte=N(()=>{"use strict";o(cNe,"head");ia=cNe});var Fte=N(()=>{"use strict";Bte()});function uNe(t,e){var r=-1,n=ci(t)?Array(t.length):[];return Ms(t,function(i,a,s){n[++r]=e(i,a,s)}),n}var GT,LL=N(()=>{"use strict";Kh();Mo();o(uNe,"baseMap");GT=uNe});function hNe(t,e){var r=Pt(t)?Ns:GT;return r(t,pn(e,3))}var Je,Im=N(()=>{"use strict";Bd();rs();LL();Un();o(hNe,"map");Je=hNe});function fNe(t,e){return wc(Je(t,e),1)}var ya,RL=N(()=>{"use strict";Cm();Im();o(fNe,"flatMap");ya=fNe});function dNe(t,e){return t==null?t:X0(t,Mm(e),Cs)}var NL,$te=N(()=>{"use strict";Z5();FT();Bh();o(dNe,"forIn");NL=dNe});function pNe(t,e){return t&&Nm(t,Mm(e))}var ML,zte=N(()=>{"use strict";OT();FT();o(pNe,"forOwn");ML=pNe});var mNe,gNe,yNe,IL,Gte=N(()=>{"use strict";Y0();gte();mNe=Object.prototype,gNe=mNe.hasOwnProperty,yNe=mte(function(t,e,r){gNe.call(t,r)?t[r].push(e):cc(t,r,[e])}),IL=yNe});function vNe(t,e){return t>e}var Vte,Ute=N(()=>{"use strict";o(vNe,"baseGt");Vte=vNe});function wNe(t,e){return t!=null&&bNe.call(t,e)}var xNe,bNe,Hte,Wte=N(()=>{"use strict";xNe=Object.prototype,bNe=xNe.hasOwnProperty;o(wNe,"baseHas");Hte=wNe});function TNe(t,e){return t!=null&&NT(t,e,Hte)}var Bt,qte=N(()=>{"use strict";Wte();EL();o(TNe,"has");Bt=TNe});function ENe(t){return typeof t=="string"||!Pt(t)&&ri(t)&&da(t)==kNe}var kNe,yi,VT=N(()=>{"use strict";ku();Un();No();kNe="[object String]";o(ENe,"isString");yi=ENe});function SNe(t,e){return Ns(e,function(r){return t[r]})}var Yte,Xte=N(()=>{"use strict";Bd();o(SNe,"baseValues");Yte=SNe});function CNe(t){return t==null?[]:Yte(t,zr(t))}var br,OL=N(()=>{"use strict";Xte();xc();o(CNe,"values");br=CNe});function _Ne(t,e,r,n){t=ci(t)?t:br(t),r=r&&!n?vc(r):0;var i=t.length;return r<0&&(r=ANe(i+r,0)),yi(t)?r<=i&&t.indexOf(e,r)>-1:!!i&&wm(t,e,r)>-1}var ANe,qn,jte=N(()=>{"use strict";iT();Mo();VT();bm();OL();ANe=Math.max;o(_Ne,"includes");qn=_Ne});function LNe(t,e,r){var n=t==null?0:t.length;if(!n)return-1;var i=r==null?0:vc(r);return i<0&&(i=DNe(n+i,0)),wm(t,e,i)}var DNe,UT,Kte=N(()=>{"use strict";iT();bm();DNe=Math.max;o(LNe,"indexOf");UT=LNe});function ONe(t){if(t==null)return!0;if(ci(t)&&(Pt(t)||typeof t=="string"||typeof t.splice=="function"||Sl(t)||Oh(t)||El(t)))return!t.length;var e=io(t);if(e==RNe||e==NNe)return!t.size;if(uc(t))return!Tm(t).length;for(var r in t)if(INe.call(t,r))return!1;return!0}var RNe,NNe,MNe,INe,ur,HT=N(()=>{"use strict";sT();$d();J0();Un();Mo();tm();Z0();r2();RNe="[object Map]",NNe="[object Set]",MNe=Object.prototype,INe=MNe.hasOwnProperty;o(ONe,"isEmpty");ur=ONe});function BNe(t){return ri(t)&&da(t)==PNe}var PNe,Qte,Zte=N(()=>{"use strict";ku();No();PNe="[object RegExp]";o(BNe,"baseIsRegExp");Qte=BNe});var Jte,FNe,zo,ere=N(()=>{"use strict";Zte();_d();t2();Jte=Oo&&Oo.isRegExp,FNe=Jte?Io(Jte):Qte,zo=FNe});function $Ne(t){return t===void 0}var pr,tre=N(()=>{"use strict";o($Ne,"isUndefined");pr=$Ne});function zNe(t,e){return t{"use strict";o(zNe,"baseLt");WT=zNe});function GNe(t,e){var r={};return e=pn(e,3),Nm(t,function(n,i,a){cc(r,i,e(n,i,a))}),r}var zd,rre=N(()=>{"use strict";Y0();OT();rs();o(GNe,"mapValues");zd=GNe});function VNe(t,e,r){for(var n=-1,i=t.length;++n{"use strict";Pd();o(VNe,"baseExtremum");Om=VNe});function UNe(t){return t&&t.length?Om(t,ta,Vte):void 0}var Is,nre=N(()=>{"use strict";qT();Ute();Cu();o(UNe,"max");Is=UNe});function HNe(t){return t&&t.length?Om(t,ta,WT):void 0}var Dl,BL=N(()=>{"use strict";qT();PL();Cu();o(HNe,"min");Dl=HNe});function WNe(t,e){return t&&t.length?Om(t,pn(e,2),WT):void 0}var Gd,ire=N(()=>{"use strict";qT();rs();PL();o(WNe,"minBy");Gd=WNe});function YNe(t){if(typeof t!="function")throw new TypeError(qNe);return function(){var e=arguments;switch(e.length){case 0:return!t.call(this);case 1:return!t.call(this,e[0]);case 2:return!t.call(this,e[0],e[1]);case 3:return!t.call(this,e[0],e[1],e[2])}return!t.apply(this,e)}}var qNe,are,sre=N(()=>{"use strict";qNe="Expected a function";o(YNe,"negate");are=YNe});function XNe(t,e,r,n){if(!bn(t))return t;e=Yh(e,t);for(var i=-1,a=e.length,s=a-1,l=t;l!=null&&++i{"use strict";rm();E2();i2();Js();Em();o(XNe,"baseSet");ore=XNe});function jNe(t,e,r){for(var n=-1,i=e.length,a={};++n{"use strict";S2();lre();E2();o(jNe,"basePickBy");YT=jNe});function KNe(t,e){if(t==null)return{};var r=Ns(yT(t),function(n){return[n]});return e=pn(e),YT(t,r,function(n,i){return e(n,i[0])})}var Os,cre=N(()=>{"use strict";Bd();rs();FL();dL();o(KNe,"pickBy");Os=KNe});function QNe(t,e){var r=t.length;for(t.sort(e);r--;)t[r]=t[r].value;return t}var ure,hre=N(()=>{"use strict";o(QNe,"baseSortBy");ure=QNe});function ZNe(t,e){if(t!==e){var r=t!==void 0,n=t===null,i=t===t,a=no(t),s=e!==void 0,l=e===null,u=e===e,h=no(e);if(!l&&!h&&!a&&t>e||a&&s&&u&&!l&&!h||n&&s&&u||!r&&u||!i)return 1;if(!n&&!a&&!h&&t{"use strict";Pd();o(ZNe,"compareAscending");fre=ZNe});function JNe(t,e,r){for(var n=-1,i=t.criteria,a=e.criteria,s=i.length,l=r.length;++n=l)return u;var h=r[n];return u*(h=="desc"?-1:1)}}return t.index-e.index}var pre,mre=N(()=>{"use strict";dre();o(JNe,"compareMultiple");pre=JNe});function eMe(t,e,r){e.length?e=Ns(e,function(a){return Pt(a)?function(s){return Xh(s,a.length===1?a[0]:a)}:a}):e=[ta];var n=-1;e=Ns(e,Io(pn));var i=GT(t,function(a,s,l){var u=Ns(e,function(h){return h(a)});return{criteria:u,index:++n,value:a}});return ure(i,function(a,s){return pre(a,s,r)})}var gre,yre=N(()=>{"use strict";Bd();S2();rs();LL();hre();_d();mre();Cu();Un();o(eMe,"baseOrderBy");gre=eMe});var tMe,vre,xre=N(()=>{"use strict";CL();tMe=IT("length"),vre=tMe});function dMe(t){for(var e=bre.lastIndex=0;bre.test(t);)++e;return e}var wre,rMe,nMe,iMe,aMe,sMe,oMe,$L,zL,lMe,Tre,kre,Ere,cMe,Sre,Cre,uMe,hMe,fMe,bre,Are,_re=N(()=>{"use strict";wre="\\ud800-\\udfff",rMe="\\u0300-\\u036f",nMe="\\ufe20-\\ufe2f",iMe="\\u20d0-\\u20ff",aMe=rMe+nMe+iMe,sMe="\\ufe0e\\ufe0f",oMe="["+wre+"]",$L="["+aMe+"]",zL="\\ud83c[\\udffb-\\udfff]",lMe="(?:"+$L+"|"+zL+")",Tre="[^"+wre+"]",kre="(?:\\ud83c[\\udde6-\\uddff]){2}",Ere="[\\ud800-\\udbff][\\udc00-\\udfff]",cMe="\\u200d",Sre=lMe+"?",Cre="["+sMe+"]?",uMe="(?:"+cMe+"(?:"+[Tre,kre,Ere].join("|")+")"+Cre+Sre+")*",hMe=Cre+Sre+uMe,fMe="(?:"+[Tre+$L+"?",$L,kre,Ere,oMe].join("|")+")",bre=RegExp(zL+"(?="+zL+")|"+fMe+hMe,"g");o(dMe,"unicodeSize");Are=dMe});function pMe(t){return $J(t)?Are(t):vre(t)}var Dre,Lre=N(()=>{"use strict";xre();zJ();_re();o(pMe,"stringSize");Dre=pMe});function mMe(t,e){return YT(t,e,function(r,n){return MT(t,n)})}var Rre,Nre=N(()=>{"use strict";FL();SL();o(mMe,"basePick");Rre=mMe});var gMe,Vd,Mre=N(()=>{"use strict";Nre();FJ();gMe=BJ(function(t,e){return t==null?{}:Rre(t,e)}),Vd=gMe});function xMe(t,e,r,n){for(var i=-1,a=vMe(yMe((e-t)/(r||1)),0),s=Array(a);a--;)s[n?a:++i]=t,t+=r;return s}var yMe,vMe,Ire,Ore=N(()=>{"use strict";yMe=Math.ceil,vMe=Math.max;o(xMe,"baseRange");Ire=xMe});function bMe(t){return function(e,r,n){return n&&typeof n!="number"&&eo(e,r,n)&&(r=n=void 0),e=xm(e),r===void 0?(r=e,e=0):r=xm(r),n=n===void 0?e{"use strict";Ore();Ld();rL();o(bMe,"createRange");Pre=bMe});var wMe,Go,Fre=N(()=>{"use strict";Bre();wMe=Pre(),Go=wMe});function TMe(t,e,r,n,i){return i(t,function(a,s,l){r=n?(n=!1,a):e(r,a,s,l)}),r}var $re,zre=N(()=>{"use strict";o(TMe,"baseReduce");$re=TMe});function kMe(t,e,r){var n=Pt(t)?GJ:$re,i=arguments.length<3;return n(t,pn(e,4),r,i,Ms)}var Xr,GL=N(()=>{"use strict";VJ();Kh();rs();zre();Un();o(kMe,"reduce");Xr=kMe});function EMe(t,e){var r=Pt(t)?Am:zT;return r(t,are(pn(e,3)))}var Jh,Gre=N(()=>{"use strict";fT();_L();rs();Un();sre();o(EMe,"reject");Jh=EMe});function AMe(t){if(t==null)return 0;if(ci(t))return yi(t)?Dre(t):t.length;var e=io(t);return e==SMe||e==CMe?t.size:Tm(t).length}var SMe,CMe,VL,Vre=N(()=>{"use strict";sT();$d();Mo();VT();Lre();SMe="[object Map]",CMe="[object Set]";o(AMe,"size");VL=AMe});function _Me(t,e){var r;return Ms(t,function(n,i,a){return r=e(n,i,a),!r}),!!r}var Ure,Hre=N(()=>{"use strict";Kh();o(_Me,"baseSome");Ure=_Me});function DMe(t,e,r){var n=Pt(t)?ET:Ure;return r&&eo(t,e,r)&&(e=void 0),n(t,pn(e,3))}var A2,Wre=N(()=>{"use strict";vL();rs();Hre();Un();Ld();o(DMe,"some");A2=DMe});var LMe,kc,qre=N(()=>{"use strict";Cm();yre();nm();Ld();LMe=fc(function(t,e){if(t==null)return[];var r=e.length;return r>1&&eo(t,e[0],e[1])?e=[]:r>2&&eo(e[0],e[1],e[2])&&(e=[e[0]]),gre(t,wc(e,1),[])}),kc=LMe});var RMe,NMe,Yre,Xre=N(()=>{"use strict";pL();nL();AT();RMe=1/0,NMe=jh&&1/Rm(new jh([,-0]))[1]==RMe?function(t){return new jh(t)}:ni,Yre=NMe});function IMe(t,e,r){var n=-1,i=aT,a=t.length,s=!0,l=[],u=l;if(r)s=!1,i=BT;else if(a>=MMe){var h=e?null:Yre(t);if(h)return Rm(h);s=!1,i=Lm,u=new Dm}else u=e?[]:l;e:for(;++n{"use strict";kT();sL();AL();ST();Xre();AT();MMe=200;o(IMe,"baseUniq");Pm=IMe});var OMe,UL,jre=N(()=>{"use strict";Cm();nm();XT();ow();OMe=fc(function(t){return Pm(wc(t,1,Ad,!0))}),UL=OMe});function PMe(t){return t&&t.length?Pm(t):[]}var Bm,Kre=N(()=>{"use strict";XT();o(PMe,"uniq");Bm=PMe});function BMe(t,e){return t&&t.length?Pm(t,pn(e,2)):[]}var Qre,Zre=N(()=>{"use strict";rs();XT();o(BMe,"uniqBy");Qre=BMe});function $Me(t){var e=++FMe;return lT(t)+e}var FMe,Ud,Jre=N(()=>{"use strict";oL();FMe=0;o($Me,"uniqueId");Ud=$Me});function zMe(t,e,r){for(var n=-1,i=t.length,a=e.length,s={};++n{"use strict";o(zMe,"baseZipObject");ene=zMe});function GMe(t,e){return ene(t||[],e||[],hc)}var jT,rne=N(()=>{"use strict";rm();tne();o(GMe,"zipObject");jT=GMe});var qt=N(()=>{"use strict";CJ();gL();Lee();Ree();$9();xte();Tte();Ete();Ste();Cte();Rte();DL();Pte();Fte();RL();uT();$T();$te();zte();Gte();qte();Cu();jte();Kte();Un();HT();Yv();Js();ere();VT();tre();xc();kte();Im();rre();nre();V9();BL();ire();nL();yte();Mre();cre();Fre();GL();Gre();Vre();Wre();qre();jre();Kre();Jre();OL();rne();});function ine(t,e){t[e]?t[e]++:t[e]=1}function ane(t,e){--t[e]||delete t[e]}function _2(t,e,r,n){var i=""+e,a=""+r;if(!t&&i>a){var s=i;i=a,a=s}return i+nne+a+nne+(pr(n)?VMe:n)}function UMe(t,e,r,n){var i=""+e,a=""+r;if(!t&&i>a){var s=i;i=a,a=s}var l={v:i,w:a};return n&&(l.name=n),l}function HL(t,e){return _2(t,e.v,e.w,e.name)}var VMe,Hd,nne,sn,KT=N(()=>{"use strict";qt();VMe="\0",Hd="\0",nne="",sn=class{static{o(this,"Graph")}constructor(e={}){this._isDirected=Object.prototype.hasOwnProperty.call(e,"directed")?e.directed:!0,this._isMultigraph=Object.prototype.hasOwnProperty.call(e,"multigraph")?e.multigraph:!1,this._isCompound=Object.prototype.hasOwnProperty.call(e,"compound")?e.compound:!1,this._label=void 0,this._defaultNodeLabelFn=As(void 0),this._defaultEdgeLabelFn=As(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children[Hd]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={}}isDirected(){return this._isDirected}isMultigraph(){return this._isMultigraph}isCompound(){return this._isCompound}setGraph(e){return this._label=e,this}graph(){return this._label}setDefaultNodeLabel(e){return Si(e)||(e=As(e)),this._defaultNodeLabelFn=e,this}nodeCount(){return this._nodeCount}nodes(){return zr(this._nodes)}sources(){var e=this;return Yr(this.nodes(),function(r){return ur(e._in[r])})}sinks(){var e=this;return Yr(this.nodes(),function(r){return ur(e._out[r])})}setNodes(e,r){var n=arguments,i=this;return Ae(e,function(a){n.length>1?i.setNode(a,r):i.setNode(a)}),this}setNode(e,r){return Object.prototype.hasOwnProperty.call(this._nodes,e)?(arguments.length>1&&(this._nodes[e]=r),this):(this._nodes[e]=arguments.length>1?r:this._defaultNodeLabelFn(e),this._isCompound&&(this._parent[e]=Hd,this._children[e]={},this._children[Hd][e]=!0),this._in[e]={},this._preds[e]={},this._out[e]={},this._sucs[e]={},++this._nodeCount,this)}node(e){return this._nodes[e]}hasNode(e){return Object.prototype.hasOwnProperty.call(this._nodes,e)}removeNode(e){if(Object.prototype.hasOwnProperty.call(this._nodes,e)){var r=o(n=>this.removeEdge(this._edgeObjs[n]),"removeEdge");delete this._nodes[e],this._isCompound&&(this._removeFromParentsChildList(e),delete this._parent[e],Ae(this.children(e),n=>{this.setParent(n)}),delete this._children[e]),Ae(zr(this._in[e]),r),delete this._in[e],delete this._preds[e],Ae(zr(this._out[e]),r),delete this._out[e],delete this._sucs[e],--this._nodeCount}return this}setParent(e,r){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(pr(r))r=Hd;else{r+="";for(var n=r;!pr(n);n=this.parent(n))if(n===e)throw new Error("Setting "+r+" as parent of "+e+" would create a cycle");this.setNode(r)}return this.setNode(e),this._removeFromParentsChildList(e),this._parent[e]=r,this._children[r][e]=!0,this}_removeFromParentsChildList(e){delete this._children[this._parent[e]][e]}parent(e){if(this._isCompound){var r=this._parent[e];if(r!==Hd)return r}}children(e){if(pr(e)&&(e=Hd),this._isCompound){var r=this._children[e];if(r)return zr(r)}else{if(e===Hd)return this.nodes();if(this.hasNode(e))return[]}}predecessors(e){var r=this._preds[e];if(r)return zr(r)}successors(e){var r=this._sucs[e];if(r)return zr(r)}neighbors(e){var r=this.predecessors(e);if(r)return UL(r,this.successors(e))}isLeaf(e){var r;return this.isDirected()?r=this.successors(e):r=this.neighbors(e),r.length===0}filterNodes(e){var r=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});r.setGraph(this.graph());var n=this;Ae(this._nodes,function(s,l){e(l)&&r.setNode(l,s)}),Ae(this._edgeObjs,function(s){r.hasNode(s.v)&&r.hasNode(s.w)&&r.setEdge(s,n.edge(s))});var i={};function a(s){var l=n.parent(s);return l===void 0||r.hasNode(l)?(i[s]=l,l):l in i?i[l]:a(l)}return o(a,"findParent"),this._isCompound&&Ae(r.nodes(),function(s){r.setParent(s,a(s))}),r}setDefaultEdgeLabel(e){return Si(e)||(e=As(e)),this._defaultEdgeLabelFn=e,this}edgeCount(){return this._edgeCount}edges(){return br(this._edgeObjs)}setPath(e,r){var n=this,i=arguments;return Xr(e,function(a,s){return i.length>1?n.setEdge(a,s,r):n.setEdge(a,s),s}),this}setEdge(){var e,r,n,i,a=!1,s=arguments[0];typeof s=="object"&&s!==null&&"v"in s?(e=s.v,r=s.w,n=s.name,arguments.length===2&&(i=arguments[1],a=!0)):(e=s,r=arguments[1],n=arguments[3],arguments.length>2&&(i=arguments[2],a=!0)),e=""+e,r=""+r,pr(n)||(n=""+n);var l=_2(this._isDirected,e,r,n);if(Object.prototype.hasOwnProperty.call(this._edgeLabels,l))return a&&(this._edgeLabels[l]=i),this;if(!pr(n)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(e),this.setNode(r),this._edgeLabels[l]=a?i:this._defaultEdgeLabelFn(e,r,n);var u=UMe(this._isDirected,e,r,n);return e=u.v,r=u.w,Object.freeze(u),this._edgeObjs[l]=u,ine(this._preds[r],e),ine(this._sucs[e],r),this._in[r][l]=u,this._out[e][l]=u,this._edgeCount++,this}edge(e,r,n){var i=arguments.length===1?HL(this._isDirected,arguments[0]):_2(this._isDirected,e,r,n);return this._edgeLabels[i]}hasEdge(e,r,n){var i=arguments.length===1?HL(this._isDirected,arguments[0]):_2(this._isDirected,e,r,n);return Object.prototype.hasOwnProperty.call(this._edgeLabels,i)}removeEdge(e,r,n){var i=arguments.length===1?HL(this._isDirected,arguments[0]):_2(this._isDirected,e,r,n),a=this._edgeObjs[i];return a&&(e=a.v,r=a.w,delete this._edgeLabels[i],delete this._edgeObjs[i],ane(this._preds[r],e),ane(this._sucs[e],r),delete this._in[r][i],delete this._out[e][i],this._edgeCount--),this}inEdges(e,r){var n=this._in[e];if(n){var i=br(n);return r?Yr(i,function(a){return a.v===r}):i}}outEdges(e,r){var n=this._out[e];if(n){var i=br(n);return r?Yr(i,function(a){return a.w===r}):i}}nodeEdges(e,r){var n=this.inEdges(e,r);if(n)return n.concat(this.outEdges(e,r))}};sn.prototype._nodeCount=0;sn.prototype._edgeCount=0;o(ine,"incrementOrInitEntry");o(ane,"decrementOrRemoveEntry");o(_2,"edgeArgsToId");o(UMe,"edgeArgsToObj");o(HL,"edgeObjToId")});var Vo=N(()=>{"use strict";KT()});function sne(t){t._prev._next=t._next,t._next._prev=t._prev,delete t._next,delete t._prev}function HMe(t,e){if(t!=="_next"&&t!=="_prev")return e}var ZT,one=N(()=>{"use strict";ZT=class{static{o(this,"List")}constructor(){var e={};e._next=e._prev=e,this._sentinel=e}dequeue(){var e=this._sentinel,r=e._prev;if(r!==e)return sne(r),r}enqueue(e){var r=this._sentinel;e._prev&&e._next&&sne(e),e._next=r._next,r._next._prev=e,r._next=e,e._prev=r}toString(){for(var e=[],r=this._sentinel,n=r._prev;n!==r;)e.push(JSON.stringify(n,HMe)),n=n._prev;return"["+e.join(", ")+"]"}};o(sne,"unlink");o(HMe,"filterOutLinks")});function lne(t,e){if(t.nodeCount()<=1)return[];var r=YMe(t,e||WMe),n=qMe(r.graph,r.buckets,r.zeroIdx);return qr(Je(n,function(i){return t.outEdges(i.v,i.w)}))}function qMe(t,e,r){for(var n=[],i=e[e.length-1],a=e[0],s;t.nodeCount();){for(;s=a.dequeue();)WL(t,e,r,s);for(;s=i.dequeue();)WL(t,e,r,s);if(t.nodeCount()){for(var l=e.length-2;l>0;--l)if(s=e[l].dequeue(),s){n=n.concat(WL(t,e,r,s,!0));break}}}return n}function WL(t,e,r,n,i){var a=i?[]:void 0;return Ae(t.inEdges(n.v),function(s){var l=t.edge(s),u=t.node(s.v);i&&a.push({v:s.v,w:s.w}),u.out-=l,qL(e,r,u)}),Ae(t.outEdges(n.v),function(s){var l=t.edge(s),u=s.w,h=t.node(u);h.in-=l,qL(e,r,h)}),t.removeNode(n.v),a}function YMe(t,e){var r=new sn,n=0,i=0;Ae(t.nodes(),function(l){r.setNode(l,{v:l,in:0,out:0})}),Ae(t.edges(),function(l){var u=r.edge(l.v,l.w)||0,h=e(l),f=u+h;r.setEdge(l.v,l.w,f),i=Math.max(i,r.node(l.v).out+=h),n=Math.max(n,r.node(l.w).in+=h)});var a=Go(i+n+3).map(function(){return new ZT}),s=n+1;return Ae(r.nodes(),function(l){qL(a,s,r.node(l))}),{graph:r,buckets:a,zeroIdx:s}}function qL(t,e,r){r.out?r.in?t[r.out-r.in+e].enqueue(r):t[t.length-1].enqueue(r):t[0].enqueue(r)}var WMe,cne=N(()=>{"use strict";qt();Vo();one();WMe=As(1);o(lne,"greedyFAS");o(qMe,"doGreedyFAS");o(WL,"removeNode");o(YMe,"buildState");o(qL,"assignBucket")});function une(t){var e=t.graph().acyclicer==="greedy"?lne(t,r(t)):XMe(t);Ae(e,function(n){var i=t.edge(n);t.removeEdge(n),i.forwardName=n.name,i.reversed=!0,t.setEdge(n.w,n.v,i,Ud("rev"))});function r(n){return function(i){return n.edge(i).weight}}o(r,"weightFn")}function XMe(t){var e=[],r={},n={};function i(a){Object.prototype.hasOwnProperty.call(n,a)||(n[a]=!0,r[a]=!0,Ae(t.outEdges(a),function(s){Object.prototype.hasOwnProperty.call(r,s.w)?e.push(s):i(s.w)}),delete r[a])}return o(i,"dfs"),Ae(t.nodes(),i),e}function hne(t){Ae(t.edges(),function(e){var r=t.edge(e);if(r.reversed){t.removeEdge(e);var n=r.forwardName;delete r.reversed,delete r.forwardName,t.setEdge(e.w,e.v,r,n)}})}var YL=N(()=>{"use strict";qt();cne();o(une,"run");o(XMe,"dfsFAS");o(hne,"undo")});function Ec(t,e,r,n){var i;do i=Ud(n);while(t.hasNode(i));return r.dummy=e,t.setNode(i,r),i}function dne(t){var e=new sn().setGraph(t.graph());return Ae(t.nodes(),function(r){e.setNode(r,t.node(r))}),Ae(t.edges(),function(r){var n=e.edge(r.v,r.w)||{weight:0,minlen:1},i=t.edge(r);e.setEdge(r.v,r.w,{weight:n.weight+i.weight,minlen:Math.max(n.minlen,i.minlen)})}),e}function JT(t){var e=new sn({multigraph:t.isMultigraph()}).setGraph(t.graph());return Ae(t.nodes(),function(r){t.children(r).length||e.setNode(r,t.node(r))}),Ae(t.edges(),function(r){e.setEdge(r,t.edge(r))}),e}function XL(t,e){var r=t.x,n=t.y,i=e.x-r,a=e.y-n,s=t.width/2,l=t.height/2;if(!i&&!a)throw new Error("Not possible to find intersection inside of the rectangle");var u,h;return Math.abs(a)*s>Math.abs(i)*l?(a<0&&(l=-l),u=l*i/a,h=l):(i<0&&(s=-s),u=s,h=s*a/i),{x:r+u,y:n+h}}function ef(t){var e=Je(Go(KL(t)+1),function(){return[]});return Ae(t.nodes(),function(r){var n=t.node(r),i=n.rank;pr(i)||(e[i][n.order]=r)}),e}function pne(t){var e=Dl(Je(t.nodes(),function(r){return t.node(r).rank}));Ae(t.nodes(),function(r){var n=t.node(r);Bt(n,"rank")&&(n.rank-=e)})}function mne(t){var e=Dl(Je(t.nodes(),function(a){return t.node(a).rank})),r=[];Ae(t.nodes(),function(a){var s=t.node(a).rank-e;r[s]||(r[s]=[]),r[s].push(a)});var n=0,i=t.graph().nodeRankFactor;Ae(r,function(a,s){pr(a)&&s%i!==0?--n:n&&Ae(a,function(l){t.node(l).rank+=n})})}function jL(t,e,r,n){var i={width:0,height:0};return arguments.length>=4&&(i.rank=r,i.order=n),Ec(t,"border",i,e)}function KL(t){return Is(Je(t.nodes(),function(e){var r=t.node(e).rank;if(!pr(r))return r}))}function gne(t,e){var r={lhs:[],rhs:[]};return Ae(t,function(n){e(n)?r.lhs.push(n):r.rhs.push(n)}),r}function yne(t,e){var r=PT();try{return e()}finally{console.log(t+" time: "+(PT()-r)+"ms")}}function vne(t,e){return e()}var Sc=N(()=>{"use strict";qt();Vo();o(Ec,"addDummyNode");o(dne,"simplify");o(JT,"asNonCompoundGraph");o(XL,"intersectRect");o(ef,"buildLayerMatrix");o(pne,"normalizeRanks");o(mne,"removeEmptyRanks");o(jL,"addBorderNode");o(KL,"maxRank");o(gne,"partition");o(yne,"time");o(vne,"notime")});function bne(t){function e(r){var n=t.children(r),i=t.node(r);if(n.length&&Ae(n,e),Object.prototype.hasOwnProperty.call(i,"minRank")){i.borderLeft=[],i.borderRight=[];for(var a=i.minRank,s=i.maxRank+1;a{"use strict";qt();Sc();o(bne,"addBorderSegments");o(xne,"addBorderNode")});function kne(t){var e=t.graph().rankdir.toLowerCase();(e==="lr"||e==="rl")&&Sne(t)}function Ene(t){var e=t.graph().rankdir.toLowerCase();(e==="bt"||e==="rl")&&jMe(t),(e==="lr"||e==="rl")&&(KMe(t),Sne(t))}function Sne(t){Ae(t.nodes(),function(e){Tne(t.node(e))}),Ae(t.edges(),function(e){Tne(t.edge(e))})}function Tne(t){var e=t.width;t.width=t.height,t.height=e}function jMe(t){Ae(t.nodes(),function(e){QL(t.node(e))}),Ae(t.edges(),function(e){var r=t.edge(e);Ae(r.points,QL),Object.prototype.hasOwnProperty.call(r,"y")&&QL(r)})}function QL(t){t.y=-t.y}function KMe(t){Ae(t.nodes(),function(e){ZL(t.node(e))}),Ae(t.edges(),function(e){var r=t.edge(e);Ae(r.points,ZL),Object.prototype.hasOwnProperty.call(r,"x")&&ZL(r)})}function ZL(t){var e=t.x;t.x=t.y,t.y=e}var Cne=N(()=>{"use strict";qt();o(kne,"adjust");o(Ene,"undo");o(Sne,"swapWidthHeight");o(Tne,"swapWidthHeightOne");o(jMe,"reverseY");o(QL,"reverseYOne");o(KMe,"swapXY");o(ZL,"swapXYOne")});function Ane(t){t.graph().dummyChains=[],Ae(t.edges(),function(e){ZMe(t,e)})}function ZMe(t,e){var r=e.v,n=t.node(r).rank,i=e.w,a=t.node(i).rank,s=e.name,l=t.edge(e),u=l.labelRank;if(a!==n+1){t.removeEdge(e);var h=void 0,f,d;for(d=0,++n;n{"use strict";qt();Sc();o(Ane,"run");o(ZMe,"normalizeEdge");o(_ne,"undo")});function D2(t){var e={};function r(n){var i=t.node(n);if(Object.prototype.hasOwnProperty.call(e,n))return i.rank;e[n]=!0;var a=Dl(Je(t.outEdges(n),function(s){return r(s.w)-t.edge(s).minlen}));return(a===Number.POSITIVE_INFINITY||a===void 0||a===null)&&(a=0),i.rank=a}o(r,"dfs"),Ae(t.sources(),r)}function Wd(t,e){return t.node(e.w).rank-t.node(e.v).rank-t.edge(e).minlen}var ek=N(()=>{"use strict";qt();o(D2,"longestPath");o(Wd,"slack")});function tk(t){var e=new sn({directed:!1}),r=t.nodes()[0],n=t.nodeCount();e.setNode(r,{});for(var i,a;JMe(e,t){"use strict";qt();Vo();ek();o(tk,"feasibleTree");o(JMe,"tightTree");o(eIe,"findMinSlackEdge");o(tIe,"shiftRanks")});var Lne=N(()=>{"use strict"});var tR=N(()=>{"use strict"});var cWt,rR=N(()=>{"use strict";qt();tR();cWt=As(1)});var Rne=N(()=>{"use strict";rR()});var nR=N(()=>{"use strict"});var Nne=N(()=>{"use strict";nR()});var bWt,Mne=N(()=>{"use strict";qt();bWt=As(1)});function iR(t){var e={},r={},n=[];function i(a){if(Object.prototype.hasOwnProperty.call(r,a))throw new L2;Object.prototype.hasOwnProperty.call(e,a)||(r[a]=!0,e[a]=!0,Ae(t.predecessors(a),i),delete r[a],n.push(a))}if(o(i,"visit"),Ae(t.sinks(),i),VL(e)!==t.nodeCount())throw new L2;return n}function L2(){}var aR=N(()=>{"use strict";qt();iR.CycleException=L2;o(iR,"topsort");o(L2,"CycleException");L2.prototype=new Error});var Ine=N(()=>{"use strict";aR()});function rk(t,e,r){Pt(e)||(e=[e]);var n=(t.isDirected()?t.successors:t.neighbors).bind(t),i=[],a={};return Ae(e,function(s){if(!t.hasNode(s))throw new Error("Graph does not have node: "+s);One(t,s,r==="post",a,n,i)}),i}function One(t,e,r,n,i,a){Object.prototype.hasOwnProperty.call(n,e)||(n[e]=!0,r||a.push(e),Ae(i(e),function(s){One(t,s,r,n,i,a)}),r&&a.push(e))}var sR=N(()=>{"use strict";qt();o(rk,"dfs");o(One,"doDfs")});function oR(t,e){return rk(t,e,"post")}var Pne=N(()=>{"use strict";sR();o(oR,"postorder")});function lR(t,e){return rk(t,e,"pre")}var Bne=N(()=>{"use strict";sR();o(lR,"preorder")});var Fne=N(()=>{"use strict";tR();KT()});var $ne=N(()=>{"use strict";Lne();rR();Rne();Nne();Mne();Ine();Pne();Bne();Fne();nR();aR()});function rf(t){t=dne(t),D2(t);var e=tk(t);uR(e),cR(e,t);for(var r,n;r=Une(e);)n=Hne(e,t,r),Wne(e,t,r,n)}function cR(t,e){var r=oR(t,t.nodes());r=r.slice(0,r.length-1),Ae(r,function(n){sIe(t,e,n)})}function sIe(t,e,r){var n=t.node(r),i=n.parent;t.edge(r,i).cutvalue=Gne(t,e,r)}function Gne(t,e,r){var n=t.node(r),i=n.parent,a=!0,s=e.edge(r,i),l=0;return s||(a=!1,s=e.edge(i,r)),l=s.weight,Ae(e.nodeEdges(r),function(u){var h=u.v===r,f=h?u.w:u.v;if(f!==i){var d=h===a,p=e.edge(u).weight;if(l+=d?p:-p,lIe(t,r,f)){var m=t.edge(r,f).cutvalue;l+=d?-m:m}}}),l}function uR(t,e){arguments.length<2&&(e=t.nodes()[0]),Vne(t,{},1,e)}function Vne(t,e,r,n,i){var a=r,s=t.node(n);return e[n]=!0,Ae(t.neighbors(n),function(l){Object.prototype.hasOwnProperty.call(e,l)||(r=Vne(t,e,r,l,n))}),s.low=a,s.lim=r++,i?s.parent=i:delete s.parent,r}function Une(t){return ns(t.edges(),function(e){return t.edge(e).cutvalue<0})}function Hne(t,e,r){var n=r.v,i=r.w;e.hasEdge(n,i)||(n=r.w,i=r.v);var a=t.node(n),s=t.node(i),l=a,u=!1;a.lim>s.lim&&(l=s,u=!0);var h=Yr(e.edges(),function(f){return u===zne(t,t.node(f.v),l)&&u!==zne(t,t.node(f.w),l)});return Gd(h,function(f){return Wd(e,f)})}function Wne(t,e,r,n){var i=r.v,a=r.w;t.removeEdge(i,a),t.setEdge(n.v,n.w,{}),uR(t),cR(t,e),oIe(t,e)}function oIe(t,e){var r=ns(t.nodes(),function(i){return!e.node(i).parent}),n=lR(t,r);n=n.slice(1),Ae(n,function(i){var a=t.node(i).parent,s=e.edge(i,a),l=!1;s||(s=e.edge(a,i),l=!0),e.node(i).rank=e.node(a).rank+(l?s.minlen:-s.minlen)})}function lIe(t,e,r){return t.hasEdge(e,r)}function zne(t,e,r){return r.low<=e.lim&&e.lim<=r.lim}var qne=N(()=>{"use strict";qt();$ne();Sc();eR();ek();rf.initLowLimValues=uR;rf.initCutValues=cR;rf.calcCutValue=Gne;rf.leaveEdge=Une;rf.enterEdge=Hne;rf.exchangeEdges=Wne;o(rf,"networkSimplex");o(cR,"initCutValues");o(sIe,"assignCutValue");o(Gne,"calcCutValue");o(uR,"initLowLimValues");o(Vne,"dfsAssignLowLim");o(Une,"leaveEdge");o(Hne,"enterEdge");o(Wne,"exchangeEdges");o(oIe,"updateRanks");o(lIe,"isTreeEdge");o(zne,"isDescendant")});function hR(t){switch(t.graph().ranker){case"network-simplex":Yne(t);break;case"tight-tree":uIe(t);break;case"longest-path":cIe(t);break;default:Yne(t)}}function uIe(t){D2(t),tk(t)}function Yne(t){rf(t)}var cIe,fR=N(()=>{"use strict";eR();qne();ek();o(hR,"rank");cIe=D2;o(uIe,"tightTreeRanker");o(Yne,"networkSimplexRanker")});function Xne(t){var e=Ec(t,"root",{},"_root"),r=hIe(t),n=Is(br(r))-1,i=2*n+1;t.graph().nestingRoot=e,Ae(t.edges(),function(s){t.edge(s).minlen*=i});var a=fIe(t)+1;Ae(t.children(),function(s){jne(t,e,i,a,n,r,s)}),t.graph().nodeRankFactor=i}function jne(t,e,r,n,i,a,s){var l=t.children(s);if(!l.length){s!==e&&t.setEdge(e,s,{weight:0,minlen:r});return}var u=jL(t,"_bt"),h=jL(t,"_bb"),f=t.node(s);t.setParent(u,s),f.borderTop=u,t.setParent(h,s),f.borderBottom=h,Ae(l,function(d){jne(t,e,r,n,i,a,d);var p=t.node(d),m=p.borderTop?p.borderTop:d,g=p.borderBottom?p.borderBottom:d,y=p.borderTop?n:2*n,v=m!==g?1:i-a[s]+1;t.setEdge(u,m,{weight:y,minlen:v,nestingEdge:!0}),t.setEdge(g,h,{weight:y,minlen:v,nestingEdge:!0})}),t.parent(s)||t.setEdge(e,u,{weight:0,minlen:i+a[s]})}function hIe(t){var e={};function r(n,i){var a=t.children(n);a&&a.length&&Ae(a,function(s){r(s,i+1)}),e[n]=i}return o(r,"dfs"),Ae(t.children(),function(n){r(n,1)}),e}function fIe(t){return Xr(t.edges(),function(e,r){return e+t.edge(r).weight},0)}function Kne(t){var e=t.graph();t.removeNode(e.nestingRoot),delete e.nestingRoot,Ae(t.edges(),function(r){var n=t.edge(r);n.nestingEdge&&t.removeEdge(r)})}var Qne=N(()=>{"use strict";qt();Sc();o(Xne,"run");o(jne,"dfs");o(hIe,"treeDepths");o(fIe,"sumWeights");o(Kne,"cleanup")});function Zne(t,e,r){var n={},i;Ae(r,function(a){for(var s=t.parent(a),l,u;s;){if(l=t.parent(s),l?(u=n[l],n[l]=s):(u=i,i=s),u&&u!==s){e.setEdge(u,s);return}s=l}})}var Jne=N(()=>{"use strict";qt();o(Zne,"addSubgraphConstraints")});function eie(t,e,r){var n=pIe(t),i=new sn({compound:!0}).setGraph({root:n}).setDefaultNodeLabel(function(a){return t.node(a)});return Ae(t.nodes(),function(a){var s=t.node(a),l=t.parent(a);(s.rank===e||s.minRank<=e&&e<=s.maxRank)&&(i.setNode(a),i.setParent(a,l||n),Ae(t[r](a),function(u){var h=u.v===a?u.w:u.v,f=i.edge(h,a),d=pr(f)?0:f.weight;i.setEdge(h,a,{weight:t.edge(u).weight+d})}),Object.prototype.hasOwnProperty.call(s,"minRank")&&i.setNode(a,{borderLeft:s.borderLeft[e],borderRight:s.borderRight[e]}))}),i}function pIe(t){for(var e;t.hasNode(e=Ud("_root")););return e}var tie=N(()=>{"use strict";qt();Vo();o(eie,"buildLayerGraph");o(pIe,"createRootNode")});function rie(t,e){for(var r=0,n=1;n0;)f%2&&(d+=l[f+1]),f=f-1>>1,l[f]+=h.weight;u+=h.weight*d})),u}var nie=N(()=>{"use strict";qt();o(rie,"crossCount");o(mIe,"twoLayerCrossCount")});function iie(t){var e={},r=Yr(t.nodes(),function(l){return!t.children(l).length}),n=Is(Je(r,function(l){return t.node(l).rank})),i=Je(Go(n+1),function(){return[]});function a(l){if(!Bt(e,l)){e[l]=!0;var u=t.node(l);i[u.rank].push(l),Ae(t.successors(l),a)}}o(a,"dfs");var s=kc(r,function(l){return t.node(l).rank});return Ae(s,a),i}var aie=N(()=>{"use strict";qt();o(iie,"initOrder")});function sie(t,e){return Je(e,function(r){var n=t.inEdges(r);if(n.length){var i=Xr(n,function(a,s){var l=t.edge(s),u=t.node(s.v);return{sum:a.sum+l.weight*u.order,weight:a.weight+l.weight}},{sum:0,weight:0});return{v:r,barycenter:i.sum/i.weight,weight:i.weight}}else return{v:r}})}var oie=N(()=>{"use strict";qt();o(sie,"barycenter")});function lie(t,e){var r={};Ae(t,function(i,a){var s=r[i.v]={indegree:0,in:[],out:[],vs:[i.v],i:a};pr(i.barycenter)||(s.barycenter=i.barycenter,s.weight=i.weight)}),Ae(e.edges(),function(i){var a=r[i.v],s=r[i.w];!pr(a)&&!pr(s)&&(s.indegree++,a.out.push(r[i.w]))});var n=Yr(r,function(i){return!i.indegree});return gIe(n)}function gIe(t){var e=[];function r(a){return function(s){s.merged||(pr(s.barycenter)||pr(a.barycenter)||s.barycenter>=a.barycenter)&&yIe(a,s)}}o(r,"handleIn");function n(a){return function(s){s.in.push(a),--s.indegree===0&&t.push(s)}}for(o(n,"handleOut");t.length;){var i=t.pop();e.push(i),Ae(i.in.reverse(),r(i)),Ae(i.out,n(i))}return Je(Yr(e,function(a){return!a.merged}),function(a){return Vd(a,["vs","i","barycenter","weight"])})}function yIe(t,e){var r=0,n=0;t.weight&&(r+=t.barycenter*t.weight,n+=t.weight),e.weight&&(r+=e.barycenter*e.weight,n+=e.weight),t.vs=e.vs.concat(t.vs),t.barycenter=r/n,t.weight=n,t.i=Math.min(e.i,t.i),e.merged=!0}var cie=N(()=>{"use strict";qt();o(lie,"resolveConflicts");o(gIe,"doResolveConflicts");o(yIe,"mergeEntries")});function hie(t,e){var r=gne(t,function(f){return Object.prototype.hasOwnProperty.call(f,"barycenter")}),n=r.lhs,i=kc(r.rhs,function(f){return-f.i}),a=[],s=0,l=0,u=0;n.sort(vIe(!!e)),u=uie(a,i,u),Ae(n,function(f){u+=f.vs.length,a.push(f.vs),s+=f.barycenter*f.weight,l+=f.weight,u=uie(a,i,u)});var h={vs:qr(a)};return l&&(h.barycenter=s/l,h.weight=l),h}function uie(t,e,r){for(var n;e.length&&(n=ga(e)).i<=r;)e.pop(),t.push(n.vs),r++;return r}function vIe(t){return function(e,r){return e.barycenterr.barycenter?1:t?r.i-e.i:e.i-r.i}}var fie=N(()=>{"use strict";qt();Sc();o(hie,"sort");o(uie,"consumeUnsortable");o(vIe,"compareWithBias")});function dR(t,e,r,n){var i=t.children(e),a=t.node(e),s=a?a.borderLeft:void 0,l=a?a.borderRight:void 0,u={};s&&(i=Yr(i,function(g){return g!==s&&g!==l}));var h=sie(t,i);Ae(h,function(g){if(t.children(g.v).length){var y=dR(t,g.v,r,n);u[g.v]=y,Object.prototype.hasOwnProperty.call(y,"barycenter")&&bIe(g,y)}});var f=lie(h,r);xIe(f,u);var d=hie(f,n);if(s&&(d.vs=qr([s,d.vs,l]),t.predecessors(s).length)){var p=t.node(t.predecessors(s)[0]),m=t.node(t.predecessors(l)[0]);Object.prototype.hasOwnProperty.call(d,"barycenter")||(d.barycenter=0,d.weight=0),d.barycenter=(d.barycenter*d.weight+p.order+m.order)/(d.weight+2),d.weight+=2}return d}function xIe(t,e){Ae(t,function(r){r.vs=qr(r.vs.map(function(n){return e[n]?e[n].vs:n}))})}function bIe(t,e){pr(t.barycenter)?(t.barycenter=e.barycenter,t.weight=e.weight):(t.barycenter=(t.barycenter*t.weight+e.barycenter*e.weight)/(t.weight+e.weight),t.weight+=e.weight)}var die=N(()=>{"use strict";qt();oie();cie();fie();o(dR,"sortSubgraph");o(xIe,"expandSubgraphs");o(bIe,"mergeBarycenters")});function gie(t){var e=KL(t),r=pie(t,Go(1,e+1),"inEdges"),n=pie(t,Go(e-1,-1,-1),"outEdges"),i=iie(t);mie(t,i);for(var a=Number.POSITIVE_INFINITY,s,l=0,u=0;u<4;++l,++u){wIe(l%2?r:n,l%4>=2),i=ef(t);var h=rie(t,i);h{"use strict";qt();Vo();Sc();Jne();tie();nie();aie();die();o(gie,"order");o(pie,"buildLayerGraphs");o(wIe,"sweepLayerGraphs");o(mie,"assignOrder")});function vie(t){var e=kIe(t);Ae(t.graph().dummyChains,function(r){for(var n=t.node(r),i=n.edgeObj,a=TIe(t,e,i.v,i.w),s=a.path,l=a.lca,u=0,h=s[u],f=!0;r!==i.w;){if(n=t.node(r),f){for(;(h=s[u])!==l&&t.node(h).maxRanks||l>e[u].lim));for(h=u,u=n;(u=t.parent(u))!==h;)a.push(u);return{path:i.concat(a.reverse()),lca:h}}function kIe(t){var e={},r=0;function n(i){var a=r;Ae(t.children(i),n),e[i]={low:a,lim:r++}}return o(n,"dfs"),Ae(t.children(),n),e}var xie=N(()=>{"use strict";qt();o(vie,"parentDummyChains");o(TIe,"findPath");o(kIe,"postorder")});function EIe(t,e){var r={};function n(i,a){var s=0,l=0,u=i.length,h=ga(a);return Ae(a,function(f,d){var p=CIe(t,f),m=p?t.node(p).order:u;(p||f===h)&&(Ae(a.slice(l,d+1),function(g){Ae(t.predecessors(g),function(y){var v=t.node(y),x=v.order;(xh)&&bie(r,p,f)})})}o(n,"scan");function i(a,s){var l=-1,u,h=0;return Ae(s,function(f,d){if(t.node(f).dummy==="border"){var p=t.predecessors(f);p.length&&(u=t.node(p[0]).order,n(s,h,d,l,u),h=d,l=u)}n(s,h,s.length,u,a.length)}),s}return o(i,"visitLayer"),Xr(e,i),r}function CIe(t,e){if(t.node(e).dummy)return ns(t.predecessors(e),function(r){return t.node(r).dummy})}function bie(t,e,r){if(e>r){var n=e;e=r,r=n}var i=t[e];i||(t[e]=i={}),i[r]=!0}function AIe(t,e,r){if(e>r){var n=e;e=r,r=n}return!!t[e]&&Object.prototype.hasOwnProperty.call(t[e],r)}function _Ie(t,e,r,n){var i={},a={},s={};return Ae(e,function(l){Ae(l,function(u,h){i[u]=u,a[u]=u,s[u]=h})}),Ae(e,function(l){var u=-1;Ae(l,function(h){var f=n(h);if(f.length){f=kc(f,function(y){return s[y]});for(var d=(f.length-1)/2,p=Math.floor(d),m=Math.ceil(d);p<=m;++p){var g=f[p];a[h]===h&&u{"use strict";qt();Vo();Sc();o(EIe,"findType1Conflicts");o(SIe,"findType2Conflicts");o(CIe,"findOtherInnerSegmentNode");o(bie,"addConflict");o(AIe,"hasConflict");o(_Ie,"verticalAlignment");o(DIe,"horizontalCompaction");o(LIe,"buildBlockGraph");o(RIe,"findSmallestWidthAlignment");o(NIe,"alignCoordinates");o(MIe,"balance");o(wie,"positionX");o(IIe,"sep");o(OIe,"width")});function kie(t){t=JT(t),PIe(t),ML(wie(t),function(e,r){t.node(r).x=e})}function PIe(t){var e=ef(t),r=t.graph().ranksep,n=0;Ae(e,function(i){var a=Is(Je(i,function(s){return t.node(s).height}));Ae(i,function(s){t.node(s).y=n+a/2}),n+=a+r})}var Eie=N(()=>{"use strict";qt();Sc();Tie();o(kie,"position");o(PIe,"positionY")});function R2(t,e){var r=e&&e.debugTiming?yne:vne;r("layout",()=>{var n=r(" buildLayoutGraph",()=>YIe(t));r(" runLayout",()=>BIe(n,r)),r(" updateInputGraph",()=>FIe(t,n))})}function BIe(t,e){e(" makeSpaceForEdgeLabels",()=>XIe(t)),e(" removeSelfEdges",()=>nOe(t)),e(" acyclic",()=>une(t)),e(" nestingGraph.run",()=>Xne(t)),e(" rank",()=>hR(JT(t))),e(" injectEdgeLabelProxies",()=>jIe(t)),e(" removeEmptyRanks",()=>mne(t)),e(" nestingGraph.cleanup",()=>Kne(t)),e(" normalizeRanks",()=>pne(t)),e(" assignRankMinMax",()=>KIe(t)),e(" removeEdgeLabelProxies",()=>QIe(t)),e(" normalize.run",()=>Ane(t)),e(" parentDummyChains",()=>vie(t)),e(" addBorderSegments",()=>bne(t)),e(" order",()=>gie(t)),e(" insertSelfEdges",()=>iOe(t)),e(" adjustCoordinateSystem",()=>kne(t)),e(" position",()=>kie(t)),e(" positionSelfEdges",()=>aOe(t)),e(" removeBorderNodes",()=>rOe(t)),e(" normalize.undo",()=>_ne(t)),e(" fixupEdgeLabelCoords",()=>eOe(t)),e(" undoCoordinateSystem",()=>Ene(t)),e(" translateGraph",()=>ZIe(t)),e(" assignNodeIntersects",()=>JIe(t)),e(" reversePoints",()=>tOe(t)),e(" acyclic.undo",()=>hne(t))}function FIe(t,e){Ae(t.nodes(),function(r){var n=t.node(r),i=e.node(r);n&&(n.x=i.x,n.y=i.y,e.children(r).length&&(n.width=i.width,n.height=i.height))}),Ae(t.edges(),function(r){var n=t.edge(r),i=e.edge(r);n.points=i.points,Object.prototype.hasOwnProperty.call(i,"x")&&(n.x=i.x,n.y=i.y)}),t.graph().width=e.graph().width,t.graph().height=e.graph().height}function YIe(t){var e=new sn({multigraph:!0,compound:!0}),r=mR(t.graph());return e.setGraph(Fh({},zIe,pR(r,$Ie),Vd(r,GIe))),Ae(t.nodes(),function(n){var i=mR(t.node(n));e.setNode(n,Qh(pR(i,VIe),UIe)),e.setParent(n,t.parent(n))}),Ae(t.edges(),function(n){var i=mR(t.edge(n));e.setEdge(n,Fh({},WIe,pR(i,HIe),Vd(i,qIe)))}),e}function XIe(t){var e=t.graph();e.ranksep/=2,Ae(t.edges(),function(r){var n=t.edge(r);n.minlen*=2,n.labelpos.toLowerCase()!=="c"&&(e.rankdir==="TB"||e.rankdir==="BT"?n.width+=n.labeloffset:n.height+=n.labeloffset)})}function jIe(t){Ae(t.edges(),function(e){var r=t.edge(e);if(r.width&&r.height){var n=t.node(e.v),i=t.node(e.w),a={rank:(i.rank-n.rank)/2+n.rank,e};Ec(t,"edge-proxy",a,"_ep")}})}function KIe(t){var e=0;Ae(t.nodes(),function(r){var n=t.node(r);n.borderTop&&(n.minRank=t.node(n.borderTop).rank,n.maxRank=t.node(n.borderBottom).rank,e=Is(e,n.maxRank))}),t.graph().maxRank=e}function QIe(t){Ae(t.nodes(),function(e){var r=t.node(e);r.dummy==="edge-proxy"&&(t.edge(r.e).labelRank=r.rank,t.removeNode(e))})}function ZIe(t){var e=Number.POSITIVE_INFINITY,r=0,n=Number.POSITIVE_INFINITY,i=0,a=t.graph(),s=a.marginx||0,l=a.marginy||0;function u(h){var f=h.x,d=h.y,p=h.width,m=h.height;e=Math.min(e,f-p/2),r=Math.max(r,f+p/2),n=Math.min(n,d-m/2),i=Math.max(i,d+m/2)}o(u,"getExtremes"),Ae(t.nodes(),function(h){u(t.node(h))}),Ae(t.edges(),function(h){var f=t.edge(h);Object.prototype.hasOwnProperty.call(f,"x")&&u(f)}),e-=s,n-=l,Ae(t.nodes(),function(h){var f=t.node(h);f.x-=e,f.y-=n}),Ae(t.edges(),function(h){var f=t.edge(h);Ae(f.points,function(d){d.x-=e,d.y-=n}),Object.prototype.hasOwnProperty.call(f,"x")&&(f.x-=e),Object.prototype.hasOwnProperty.call(f,"y")&&(f.y-=n)}),a.width=r-e+s,a.height=i-n+l}function JIe(t){Ae(t.edges(),function(e){var r=t.edge(e),n=t.node(e.v),i=t.node(e.w),a,s;r.points?(a=r.points[0],s=r.points[r.points.length-1]):(r.points=[],a=i,s=n),r.points.unshift(XL(n,a)),r.points.push(XL(i,s))})}function eOe(t){Ae(t.edges(),function(e){var r=t.edge(e);if(Object.prototype.hasOwnProperty.call(r,"x"))switch((r.labelpos==="l"||r.labelpos==="r")&&(r.width-=r.labeloffset),r.labelpos){case"l":r.x-=r.width/2+r.labeloffset;break;case"r":r.x+=r.width/2+r.labeloffset;break}})}function tOe(t){Ae(t.edges(),function(e){var r=t.edge(e);r.reversed&&r.points.reverse()})}function rOe(t){Ae(t.nodes(),function(e){if(t.children(e).length){var r=t.node(e),n=t.node(r.borderTop),i=t.node(r.borderBottom),a=t.node(ga(r.borderLeft)),s=t.node(ga(r.borderRight));r.width=Math.abs(s.x-a.x),r.height=Math.abs(i.y-n.y),r.x=a.x+r.width/2,r.y=n.y+r.height/2}}),Ae(t.nodes(),function(e){t.node(e).dummy==="border"&&t.removeNode(e)})}function nOe(t){Ae(t.edges(),function(e){if(e.v===e.w){var r=t.node(e.v);r.selfEdges||(r.selfEdges=[]),r.selfEdges.push({e,label:t.edge(e)}),t.removeEdge(e)}})}function iOe(t){var e=ef(t);Ae(e,function(r){var n=0;Ae(r,function(i,a){var s=t.node(i);s.order=a+n,Ae(s.selfEdges,function(l){Ec(t,"selfedge",{width:l.label.width,height:l.label.height,rank:s.rank,order:a+ ++n,e:l.e,label:l.label},"_se")}),delete s.selfEdges})})}function aOe(t){Ae(t.nodes(),function(e){var r=t.node(e);if(r.dummy==="selfedge"){var n=t.node(r.e.v),i=n.x+n.width/2,a=n.y,s=r.x-i,l=n.height/2;t.setEdge(r.e,r.label),t.removeNode(e),r.label.points=[{x:i+2*s/3,y:a-l},{x:i+5*s/6,y:a-l},{x:i+s,y:a},{x:i+5*s/6,y:a+l},{x:i+2*s/3,y:a+l}],r.label.x=r.x,r.label.y=r.y}})}function pR(t,e){return zd(Vd(t,e),Number)}function mR(t){var e={};return Ae(t,function(r,n){e[n.toLowerCase()]=r}),e}var $Ie,zIe,GIe,VIe,UIe,HIe,WIe,qIe,Sie=N(()=>{"use strict";qt();Vo();wne();Cne();YL();JL();fR();Qne();yie();xie();Eie();Sc();o(R2,"layout");o(BIe,"runLayout");o(FIe,"updateInputGraph");$Ie=["nodesep","edgesep","ranksep","marginx","marginy"],zIe={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},GIe=["acyclicer","ranker","rankdir","align"],VIe=["width","height"],UIe={width:0,height:0},HIe=["minlen","weight","width","height","labeloffset"],WIe={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},qIe=["labelpos"];o(YIe,"buildLayoutGraph");o(XIe,"makeSpaceForEdgeLabels");o(jIe,"injectEdgeLabelProxies");o(KIe,"assignRankMinMax");o(QIe,"removeEdgeLabelProxies");o(ZIe,"translateGraph");o(JIe,"assignNodeIntersects");o(eOe,"fixupEdgeLabelCoords");o(tOe,"reversePointsForReversedEdges");o(rOe,"removeBorderNodes");o(nOe,"removeSelfEdges");o(iOe,"insertSelfEdges");o(aOe,"positionSelfEdges");o(pR,"selectNumberAttrs");o(mR,"canonicalize")});var gR=N(()=>{"use strict";YL();Sie();JL();fR()});function Uo(t){var e={options:{directed:t.isDirected(),multigraph:t.isMultigraph(),compound:t.isCompound()},nodes:sOe(t),edges:oOe(t)};return pr(t.graph())||(e.value=an(t.graph())),e}function sOe(t){return Je(t.nodes(),function(e){var r=t.node(e),n=t.parent(e),i={v:e};return pr(r)||(i.value=r),pr(n)||(i.parent=n),i})}function oOe(t){return Je(t.edges(),function(e){var r=t.edge(e),n={v:e.v,w:e.w};return pr(e.name)||(n.name=e.name),pr(r)||(n.value=r),n})}var yR=N(()=>{"use strict";qt();KT();o(Uo,"write");o(sOe,"writeNodes");o(oOe,"writeEdges")});var wr,qd,_ie,Die,nk,lOe,Lie,Rie,cOe,Fm,Aie,Nie,Mie,Iie,Oie,Pie=N(()=>{"use strict";vt();Vo();yR();wr=new Map,qd=new Map,_ie=new Map,Die=o(()=>{qd.clear(),_ie.clear(),wr.clear()},"clear"),nk=o((t,e)=>{let r=qd.get(e)||[];return Y.trace("In isDescendant",e," ",t," = ",r.includes(t)),r.includes(t)},"isDescendant"),lOe=o((t,e)=>{let r=qd.get(e)||[];return Y.info("Descendants of ",e," is ",r),Y.info("Edge is ",t),t.v===e||t.w===e?!1:r?r.includes(t.v)||nk(t.v,e)||nk(t.w,e)||r.includes(t.w):(Y.debug("Tilt, ",e,",not in descendants"),!1)},"edgeInCluster"),Lie=o((t,e,r,n)=>{Y.warn("Copying children of ",t,"root",n,"data",e.node(t),n);let i=e.children(t)||[];t!==n&&i.push(t),Y.warn("Copying (nodes) clusterId",t,"nodes",i),i.forEach(a=>{if(e.children(a).length>0)Lie(a,e,r,n);else{let s=e.node(a);Y.info("cp ",a," to ",n," with parent ",t),r.setNode(a,s),n!==e.parent(a)&&(Y.warn("Setting parent",a,e.parent(a)),r.setParent(a,e.parent(a))),t!==n&&a!==t?(Y.debug("Setting parent",a,t),r.setParent(a,t)):(Y.info("In copy ",t,"root",n,"data",e.node(t),n),Y.debug("Not Setting parent for node=",a,"cluster!==rootId",t!==n,"node!==clusterId",a!==t));let l=e.edges(a);Y.debug("Copying Edges",l),l.forEach(u=>{Y.info("Edge",u);let h=e.edge(u.v,u.w,u.name);Y.info("Edge data",h,n);try{lOe(u,n)?(Y.info("Copying as ",u.v,u.w,h,u.name),r.setEdge(u.v,u.w,h,u.name),Y.info("newGraph edges ",r.edges(),r.edge(r.edges()[0]))):Y.info("Skipping copy of edge ",u.v,"-->",u.w," rootId: ",n," clusterId:",t)}catch(f){Y.error(f)}})}Y.debug("Removing node",a),e.removeNode(a)})},"copy"),Rie=o((t,e)=>{let r=e.children(t),n=[...r];for(let i of r)_ie.set(i,t),n=[...n,...Rie(i,e)];return n},"extractDescendants"),cOe=o((t,e,r)=>{let n=t.edges().filter(u=>u.v===e||u.w===e),i=t.edges().filter(u=>u.v===r||u.w===r),a=n.map(u=>({v:u.v===e?r:u.v,w:u.w===e?e:u.w})),s=i.map(u=>({v:u.v,w:u.w}));return a.filter(u=>s.some(h=>u.v===h.v&&u.w===h.w))},"findCommonEdges"),Fm=o((t,e,r)=>{let n=e.children(t);if(Y.trace("Searching children of id ",t,n),n.length<1)return t;let i;for(let a of n){let s=Fm(a,e,r),l=cOe(e,r,s);if(s)if(l.length>0)i=s;else return s}return i},"findNonClusterChild"),Aie=o(t=>!wr.has(t)||!wr.get(t).externalConnections?t:wr.has(t)?wr.get(t).id:t,"getAnchorId"),Nie=o((t,e)=>{if(!t||e>10){Y.debug("Opting out, no graph ");return}else Y.debug("Opting in, graph ");t.nodes().forEach(function(r){t.children(r).length>0&&(Y.warn("Cluster identified",r," Replacement id in edges: ",Fm(r,t,r)),qd.set(r,Rie(r,t)),wr.set(r,{id:Fm(r,t,r),clusterData:t.node(r)}))}),t.nodes().forEach(function(r){let n=t.children(r),i=t.edges();n.length>0?(Y.debug("Cluster identified",r,qd),i.forEach(a=>{let s=nk(a.v,r),l=nk(a.w,r);s^l&&(Y.warn("Edge: ",a," leaves cluster ",r),Y.warn("Descendants of XXX ",r,": ",qd.get(r)),wr.get(r).externalConnections=!0)})):Y.debug("Not a cluster ",r,qd)});for(let r of wr.keys()){let n=wr.get(r).id,i=t.parent(n);i!==r&&wr.has(i)&&!wr.get(i).externalConnections&&(wr.get(r).id=i)}t.edges().forEach(function(r){let n=t.edge(r);Y.warn("Edge "+r.v+" -> "+r.w+": "+JSON.stringify(r)),Y.warn("Edge "+r.v+" -> "+r.w+": "+JSON.stringify(t.edge(r)));let i=r.v,a=r.w;if(Y.warn("Fix XXX",wr,"ids:",r.v,r.w,"Translating: ",wr.get(r.v)," --- ",wr.get(r.w)),wr.get(r.v)||wr.get(r.w)){if(Y.warn("Fixing and trying - removing XXX",r.v,r.w,r.name),i=Aie(r.v),a=Aie(r.w),t.removeEdge(r.v,r.w,r.name),i!==r.v){let s=t.parent(i);wr.get(s).externalConnections=!0,n.fromCluster=r.v}if(a!==r.w){let s=t.parent(a);wr.get(s).externalConnections=!0,n.toCluster=r.w}Y.warn("Fix Replacing with XXX",i,a,r.name),t.setEdge(i,a,n,r.name)}}),Y.warn("Adjusted Graph",Uo(t)),Mie(t,0),Y.trace(wr)},"adjustClustersAndEdges"),Mie=o((t,e)=>{if(Y.warn("extractor - ",e,Uo(t),t.children("D")),e>10){Y.error("Bailing out");return}let r=t.nodes(),n=!1;for(let i of r){let a=t.children(i);n=n||a.length>0}if(!n){Y.debug("Done, no node has children",t.nodes());return}Y.debug("Nodes = ",r,e);for(let i of r)if(Y.debug("Extracting node",i,wr,wr.has(i)&&!wr.get(i).externalConnections,!t.parent(i),t.node(i),t.children("D")," Depth ",e),!wr.has(i))Y.debug("Not a cluster",i,e);else if(!wr.get(i).externalConnections&&t.children(i)&&t.children(i).length>0){Y.warn("Cluster without external connections, without a parent and with children",i,e);let s=t.graph().rankdir==="TB"?"LR":"TB";wr.get(i)?.clusterData?.dir&&(s=wr.get(i).clusterData.dir,Y.warn("Fixing dir",wr.get(i).clusterData.dir,s));let l=new sn({multigraph:!0,compound:!0}).setGraph({rankdir:s,nodesep:50,ranksep:50,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}});Y.warn("Old graph before copy",Uo(t)),Lie(i,t,l,i),t.setNode(i,{clusterNode:!0,id:i,clusterData:wr.get(i).clusterData,label:wr.get(i).label,graph:l}),Y.warn("New graph after copy node: (",i,")",Uo(l)),Y.debug("Old graph after copy",Uo(t))}else Y.warn("Cluster ** ",i," **not meeting the criteria !externalConnections:",!wr.get(i).externalConnections," no parent: ",!t.parent(i)," children ",t.children(i)&&t.children(i).length>0,t.children("D"),e),Y.debug(wr);r=t.nodes(),Y.warn("New list of nodes",r);for(let i of r){let a=t.node(i);Y.warn(" Now next level",i,a),a?.clusterNode&&Mie(a.graph,e+1)}},"extractor"),Iie=o((t,e)=>{if(e.length===0)return[];let r=Object.assign([],e);return e.forEach(n=>{let i=t.children(n),a=Iie(t,i);r=[...r,...a]}),r},"sorter"),Oie=o(t=>Iie(t,t.children()),"sortNodesByHierarchy")});var Fie={};hr(Fie,{render:()=>uOe});var Bie,uOe,$ie=N(()=>{"use strict";gR();yR();Vo();tL();Ft();Pie();eT();Hw();eL();vt();w2();zt();Bie=o(async(t,e,r,n,i,a)=>{Y.warn("Graph in recursive render:XAX",Uo(e),i);let s=e.graph().rankdir;Y.trace("Dir in recursive render - dir:",s);let l=t.insert("g").attr("class","root");e.nodes()?Y.info("Recursive render XXX",e.nodes()):Y.info("No nodes found for",e),e.edges().length>0&&Y.info("Recursive edges",e.edge(e.edges()[0]));let u=l.insert("g").attr("class","clusters"),h=l.insert("g").attr("class","edgePaths"),f=l.insert("g").attr("class","edgeLabels"),d=l.insert("g").attr("class","nodes");await Promise.all(e.nodes().map(async function(y){let v=e.node(y);if(i!==void 0){let x=JSON.parse(JSON.stringify(i.clusterData));Y.trace(`Setting data for parent cluster XXX + Node.id = `,y,` + data=`,x.height,` +Parent cluster`,i.height),e.setNode(i.id,x),e.parent(y)||(Y.trace("Setting parent",y,i.id),e.setParent(y,i.id,x))}if(Y.info("(Insert) Node XXX"+y+": "+JSON.stringify(e.node(y))),v?.clusterNode){Y.info("Cluster identified XBX",y,v.width,e.node(y));let{ranksep:x,nodesep:b}=e.graph();v.graph.setGraph({...v.graph.graph(),ranksep:x+25,nodesep:b});let w=await Bie(d,v.graph,r,n,e.node(y),a),C=w.elem;je(v,C),v.diff=w.diff||0,Y.info("New compound node after recursive render XAX",y,"width",v.width,"height",v.height),rJ(C,v)}else e.children(y).length>0?(Y.trace("Cluster - the non recursive path XBX",y,v.id,v,v.width,"Graph:",e),Y.trace(Fm(v.id,e)),wr.set(v.id,{id:Fm(v.id,e),node:v})):(Y.trace("Node - the non recursive path XAX",y,d,e.node(y),s),await vm(d,e.node(y),{config:a,dir:s}))})),await o(async()=>{let y=e.edges().map(async function(v){let x=e.edge(v.v,v.w,v.name);Y.info("Edge "+v.v+" -> "+v.w+": "+JSON.stringify(v)),Y.info("Edge "+v.v+" -> "+v.w+": ",v," ",JSON.stringify(e.edge(v))),Y.info("Fix",wr,"ids:",v.v,v.w,"Translating: ",wr.get(v.v),wr.get(v.w)),await jw(f,x)});await Promise.all(y)},"processEdges")(),Y.info("Graph before layout:",JSON.stringify(Uo(e))),Y.info("############################################# XXX"),Y.info("### Layout ### XXX"),Y.info("############################################# XXX"),R2(e),Y.info("Graph after layout:",JSON.stringify(Uo(e)));let m=0,{subGraphTitleTotalMargin:g}=Ru(a);return await Promise.all(Oie(e).map(async function(y){let v=e.node(y);if(Y.info("Position XBX => "+y+": ("+v.x,","+v.y,") width: ",v.width," height: ",v.height),v?.clusterNode)v.y+=g,Y.info("A tainted cluster node XBX1",y,v.id,v.width,v.height,v.x,v.y,e.parent(y)),wr.get(v.id).node=v,k2(v);else if(e.children(y).length>0){Y.info("A pure cluster node XBX1",y,v.id,v.x,v.y,v.width,v.height,e.parent(y)),v.height+=g,e.node(v.parentId);let x=v?.padding/2||0,b=v?.labelBBox?.height||0,w=b-x||0;Y.debug("OffsetY",w,"labelHeight",b,"halfPadding",x),await ym(u,v),wr.get(v.id).node=v}else{let x=e.node(v.parentId);v.y+=g/2,Y.info("A regular node XBX1 - using the padding",v.id,"parent",v.parentId,v.width,v.height,v.x,v.y,"offsetY",v.offsetY,"parent",x,x?.offsetY,v),k2(v)}})),e.edges().forEach(function(y){let v=e.edge(y);Y.info("Edge "+y.v+" -> "+y.w+": "+JSON.stringify(v),v),v.points.forEach(C=>C.y+=g/2);let x=e.node(y.v);var b=e.node(y.w);let w=Qw(h,v,wr,r,x,b,n);Kw(v,w)}),e.nodes().forEach(function(y){let v=e.node(y);Y.info(y,v.type,v.diff),v.isGroup&&(m=v.diff)}),Y.warn("Returning from recursive render XAX",l,m),{elem:l,diff:m}},"recursiveRender"),uOe=o(async(t,e)=>{let r=new sn({multigraph:!0,compound:!0}).setGraph({rankdir:t.direction,nodesep:t.config?.nodeSpacing||t.config?.flowchart?.nodeSpacing||t.nodeSpacing,ranksep:t.config?.rankSpacing||t.config?.flowchart?.rankSpacing||t.rankSpacing,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}}),n=e.select("g");Zw(n,t.markers,t.type,t.diagramId),nJ(),tJ(),jZ(),Die(),t.nodes.forEach(a=>{r.setNode(a.id,{...a}),a.parentId&&r.setParent(a.id,a.parentId)}),Y.debug("Edges:",t.edges),t.edges.forEach(a=>{if(a.start===a.end){let s=a.start,l=s+"---"+s+"---1",u=s+"---"+s+"---2",h=r.node(s);r.setNode(l,{domId:l,id:l,parentId:h.parentId,labelStyle:"",label:"",padding:0,shape:"labelRect",style:"",width:10,height:10}),r.setParent(l,h.parentId),r.setNode(u,{domId:u,id:u,parentId:h.parentId,labelStyle:"",padding:0,shape:"labelRect",label:"",style:"",width:10,height:10}),r.setParent(u,h.parentId);let f=structuredClone(a),d=structuredClone(a),p=structuredClone(a);f.label="",f.arrowTypeEnd="none",f.id=s+"-cyclic-special-1",d.arrowTypeStart="none",d.arrowTypeEnd="none",d.id=s+"-cyclic-special-mid",p.label="",h.isGroup&&(f.fromCluster=s,p.toCluster=s),p.id=s+"-cyclic-special-2",p.arrowTypeStart="none",r.setEdge(s,l,f,s+"-cyclic-special-0"),r.setEdge(l,u,d,s+"-cyclic-special-1"),r.setEdge(u,s,p,s+"-cyc{"use strict";aJ();vt();N2={},vR=o(t=>{for(let e of t)N2[e.name]=e},"registerLayoutLoaders"),hOe=o(()=>{vR([{name:"dagre",loader:o(async()=>await Promise.resolve().then(()=>($ie(),Fie)),"loader")}])},"registerDefaultLayoutLoaders");hOe();Cc=o(async(t,e)=>{if(!(t.layoutAlgorithm in N2))throw new Error(`Unknown layout algorithm: ${t.layoutAlgorithm}`);let r=N2[t.layoutAlgorithm];return(await r.loader()).render(t,e,iJ,{algorithm:r.algorithm})},"render"),nf=o((t="",{fallback:e="dagre"}={})=>{if(t in N2)return t;if(e in N2)return Y.warn(`Layout algorithm ${t} is not registered. Using ${e} as fallback.`),e;throw new Error(`Both layout algorithms ${t} and ${e} are not registered.`)},"getRegisteredLayoutAlgorithm")});var Ac,fOe,dOe,$m=N(()=>{"use strict";Ei();vt();Ac=o((t,e,r,n)=>{t.attr("class",r);let{width:i,height:a,x:s,y:l}=fOe(t,e);vn(t,a,i,n);let u=dOe(s,l,i,a,e);t.attr("viewBox",u),Y.debug(`viewBox configured: ${u} with padding: ${e}`)},"setupViewPortForSVG"),fOe=o((t,e)=>{let r=t.node()?.getBBox()||{width:0,height:0,x:0,y:0};return{width:r.width+e*2,height:r.height+e*2,x:r.x,y:r.y}},"calculateDimensionsWithPadding"),dOe=o((t,e,r,n,i)=>`${t-i} ${e-i} ${r} ${n}`,"createViewBox")});var pOe,mOe,zie,Gie=N(()=>{"use strict";dr();zt();vt();gm();Yd();$m();ir();pOe=o(function(t,e){return e.db.getClasses()},"getClasses"),mOe=o(async function(t,e,r,n){Y.info("REF0:"),Y.info("Drawing state diagram (v2)",e);let{securityLevel:i,flowchart:a,layout:s}=me(),l;i==="sandbox"&&(l=Ge("#i"+e));let u=i==="sandbox"?l.nodes()[0].contentDocument:document;Y.debug("Before getData: ");let h=n.db.getData();Y.debug("Data: ",h);let f=yc(e,i),d=n.db.getDirection();h.type=n.type,h.layoutAlgorithm=nf(s),h.layoutAlgorithm==="dagre"&&s==="elk"&&Y.warn("flowchart-elk was moved to an external package in Mermaid v11. Please refer [release notes](https://github.com/mermaid-js/mermaid/releases/tag/v11.0.0) for more details. This diagram will be rendered using `dagre` layout as a fallback."),h.direction=d,h.nodeSpacing=a?.nodeSpacing||50,h.rankSpacing=a?.rankSpacing||50,h.markers=["point","circle","cross"],h.diagramId=e,Y.debug("REF1:",h),await Cc(h,f);let p=h.config.flowchart?.diagramPadding??8;Gt.insertTitle(f,"flowchartTitleText",a?.titleTopMargin||0,n.db.getDiagramTitle()),Ac(f,p,"flowchart",a?.useMaxWidth||!1);for(let m of h.nodes){let g=Ge(`#${e} [id="${m.id}"]`);if(!g||!m.link)continue;let y=u.createElementNS("http://www.w3.org/2000/svg","a");y.setAttributeNS("http://www.w3.org/2000/svg","class",m.cssClasses),y.setAttributeNS("http://www.w3.org/2000/svg","rel","noopener"),i==="sandbox"?y.setAttributeNS("http://www.w3.org/2000/svg","target","_top"):m.linkTarget&&y.setAttributeNS("http://www.w3.org/2000/svg","target",m.linkTarget);let v=g.insert(function(){return y},":first-child"),x=g.select(".label-container");x&&v.append(function(){return x.node()});let b=g.select(".label");b&&v.append(function(){return b.node()})}},"draw"),zie={getClasses:pOe,draw:mOe}});var xR,bR,Vie=N(()=>{"use strict";xR=function(){var t=o(function(Hr,et,mt,Kt){for(mt=mt||{},Kt=Hr.length;Kt--;mt[Hr[Kt]]=et);return mt},"o"),e=[1,4],r=[1,3],n=[1,5],i=[1,8,9,10,11,27,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],a=[2,2],s=[1,13],l=[1,14],u=[1,15],h=[1,16],f=[1,23],d=[1,25],p=[1,26],m=[1,27],g=[1,49],y=[1,48],v=[1,29],x=[1,30],b=[1,31],w=[1,32],C=[1,33],T=[1,44],E=[1,46],A=[1,42],S=[1,47],_=[1,43],I=[1,50],D=[1,45],k=[1,51],L=[1,52],R=[1,34],O=[1,35],M=[1,36],B=[1,37],F=[1,57],P=[1,8,9,10,11,27,32,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],z=[1,61],$=[1,60],H=[1,62],Q=[8,9,11,75,77,78],j=[1,78],ie=[1,91],ne=[1,96],le=[1,95],he=[1,92],K=[1,88],X=[1,94],te=[1,90],J=[1,97],se=[1,93],ue=[1,98],Z=[1,89],Se=[8,9,10,11,40,75,77,78],ce=[8,9,10,11,40,46,75,77,78],ae=[8,9,10,11,29,40,44,46,48,50,52,54,56,58,60,63,65,67,68,70,75,77,78,89,102,105,106,109,111,114,115,116],Oe=[8,9,11,44,60,75,77,78,89,102,105,106,109,111,114,115,116],ge=[44,60,89,102,105,106,109,111,114,115,116],ze=[1,121],He=[1,122],$e=[1,124],Re=[1,123],Ie=[44,60,62,74,89,102,105,106,109,111,114,115,116],be=[1,133],W=[1,147],de=[1,148],re=[1,149],oe=[1,150],V=[1,135],xe=[1,137],q=[1,141],pe=[1,142],ve=[1,143],Pe=[1,144],_e=[1,145],we=[1,146],Ve=[1,151],De=[1,152],qe=[1,131],at=[1,132],Rt=[1,139],st=[1,134],Ue=[1,138],ct=[1,136],We=[8,9,10,11,27,32,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],ot=[1,154],Yt=[1,156],bt=[8,9,11],Mt=[8,9,10,11,14,44,60,89,105,106,109,111,114,115,116],xt=[1,176],ut=[1,172],Et=[1,173],ft=[1,177],yt=[1,174],nt=[1,175],dn=[77,116,119],Tt=[8,9,10,11,12,14,27,29,32,44,60,75,84,85,86,87,88,89,90,105,109,111,114,115,116],On=[10,106],tn=[31,49,51,53,55,57,62,64,66,67,69,71,116,117,118],_r=[1,247],Dr=[1,245],Pn=[1,249],At=[1,243],Ce=[1,244],tt=[1,246],St=[1,248],mr=[1,250],rn=[1,268],gn=[8,9,11,106],Zr=[8,9,10,11,60,84,105,106,109,110,111,112],Ni={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,graphConfig:4,document:5,line:6,statement:7,SEMI:8,NEWLINE:9,SPACE:10,EOF:11,GRAPH:12,NODIR:13,DIR:14,FirstStmtSeparator:15,ending:16,endToken:17,spaceList:18,spaceListNewline:19,vertexStatement:20,separator:21,styleStatement:22,linkStyleStatement:23,classDefStatement:24,classStatement:25,clickStatement:26,subgraph:27,textNoTags:28,SQS:29,text:30,SQE:31,end:32,direction:33,acc_title:34,acc_title_value:35,acc_descr:36,acc_descr_value:37,acc_descr_multiline_value:38,shapeData:39,SHAPE_DATA:40,link:41,node:42,styledVertex:43,AMP:44,vertex:45,STYLE_SEPARATOR:46,idString:47,DOUBLECIRCLESTART:48,DOUBLECIRCLEEND:49,PS:50,PE:51,"(-":52,"-)":53,STADIUMSTART:54,STADIUMEND:55,SUBROUTINESTART:56,SUBROUTINEEND:57,VERTEX_WITH_PROPS_START:58,"NODE_STRING[field]":59,COLON:60,"NODE_STRING[value]":61,PIPE:62,CYLINDERSTART:63,CYLINDEREND:64,DIAMOND_START:65,DIAMOND_STOP:66,TAGEND:67,TRAPSTART:68,TRAPEND:69,INVTRAPSTART:70,INVTRAPEND:71,linkStatement:72,arrowText:73,TESTSTR:74,START_LINK:75,edgeText:76,LINK:77,LINK_ID:78,edgeTextToken:79,STR:80,MD_STR:81,textToken:82,keywords:83,STYLE:84,LINKSTYLE:85,CLASSDEF:86,CLASS:87,CLICK:88,DOWN:89,UP:90,textNoTagsToken:91,stylesOpt:92,"idString[vertex]":93,"idString[class]":94,CALLBACKNAME:95,CALLBACKARGS:96,HREF:97,LINK_TARGET:98,"STR[link]":99,"STR[tooltip]":100,alphaNum:101,DEFAULT:102,numList:103,INTERPOLATE:104,NUM:105,COMMA:106,style:107,styleComponent:108,NODE_STRING:109,UNIT:110,BRKT:111,PCT:112,idStringToken:113,MINUS:114,MULT:115,UNICODE_TEXT:116,TEXT:117,TAGSTART:118,EDGE_TEXT:119,alphaNumToken:120,direction_tb:121,direction_bt:122,direction_rl:123,direction_lr:124,$accept:0,$end:1},terminals_:{2:"error",8:"SEMI",9:"NEWLINE",10:"SPACE",11:"EOF",12:"GRAPH",13:"NODIR",14:"DIR",27:"subgraph",29:"SQS",31:"SQE",32:"end",34:"acc_title",35:"acc_title_value",36:"acc_descr",37:"acc_descr_value",38:"acc_descr_multiline_value",40:"SHAPE_DATA",44:"AMP",46:"STYLE_SEPARATOR",48:"DOUBLECIRCLESTART",49:"DOUBLECIRCLEEND",50:"PS",51:"PE",52:"(-",53:"-)",54:"STADIUMSTART",55:"STADIUMEND",56:"SUBROUTINESTART",57:"SUBROUTINEEND",58:"VERTEX_WITH_PROPS_START",59:"NODE_STRING[field]",60:"COLON",61:"NODE_STRING[value]",62:"PIPE",63:"CYLINDERSTART",64:"CYLINDEREND",65:"DIAMOND_START",66:"DIAMOND_STOP",67:"TAGEND",68:"TRAPSTART",69:"TRAPEND",70:"INVTRAPSTART",71:"INVTRAPEND",74:"TESTSTR",75:"START_LINK",77:"LINK",78:"LINK_ID",80:"STR",81:"MD_STR",84:"STYLE",85:"LINKSTYLE",86:"CLASSDEF",87:"CLASS",88:"CLICK",89:"DOWN",90:"UP",93:"idString[vertex]",94:"idString[class]",95:"CALLBACKNAME",96:"CALLBACKARGS",97:"HREF",98:"LINK_TARGET",99:"STR[link]",100:"STR[tooltip]",102:"DEFAULT",104:"INTERPOLATE",105:"NUM",106:"COMMA",109:"NODE_STRING",110:"UNIT",111:"BRKT",112:"PCT",114:"MINUS",115:"MULT",116:"UNICODE_TEXT",117:"TEXT",118:"TAGSTART",119:"EDGE_TEXT",121:"direction_tb",122:"direction_bt",123:"direction_rl",124:"direction_lr"},productions_:[0,[3,2],[5,0],[5,2],[6,1],[6,1],[6,1],[6,1],[6,1],[4,2],[4,2],[4,2],[4,3],[16,2],[16,1],[17,1],[17,1],[17,1],[15,1],[15,1],[15,2],[19,2],[19,2],[19,1],[19,1],[18,2],[18,1],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,9],[7,6],[7,4],[7,1],[7,2],[7,2],[7,1],[21,1],[21,1],[21,1],[39,2],[39,1],[20,4],[20,3],[20,4],[20,2],[20,2],[20,1],[42,1],[42,6],[42,5],[43,1],[43,3],[45,4],[45,4],[45,6],[45,4],[45,4],[45,4],[45,8],[45,4],[45,4],[45,4],[45,6],[45,4],[45,4],[45,4],[45,4],[45,4],[45,1],[41,2],[41,3],[41,3],[41,1],[41,3],[41,4],[76,1],[76,2],[76,1],[76,1],[72,1],[72,2],[73,3],[30,1],[30,2],[30,1],[30,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[28,1],[28,2],[28,1],[28,1],[24,5],[25,5],[26,2],[26,4],[26,3],[26,5],[26,3],[26,5],[26,5],[26,7],[26,2],[26,4],[26,2],[26,4],[26,4],[26,6],[22,5],[23,5],[23,5],[23,9],[23,9],[23,7],[23,7],[103,1],[103,3],[92,1],[92,3],[107,1],[107,2],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[82,1],[82,1],[82,1],[82,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[79,1],[79,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[47,1],[47,2],[101,1],[101,2],[33,1],[33,1],[33,1],[33,1]],performAction:o(function(et,mt,Kt,lt,Cn,ye,Vf){var Te=ye.length-1;switch(Cn){case 2:this.$=[];break;case 3:(!Array.isArray(ye[Te])||ye[Te].length>0)&&ye[Te-1].push(ye[Te]),this.$=ye[Te-1];break;case 4:case 183:this.$=ye[Te];break;case 11:lt.setDirection("TB"),this.$="TB";break;case 12:lt.setDirection(ye[Te-1]),this.$=ye[Te-1];break;case 27:this.$=ye[Te-1].nodes;break;case 28:case 29:case 30:case 31:case 32:this.$=[];break;case 33:this.$=lt.addSubGraph(ye[Te-6],ye[Te-1],ye[Te-4]);break;case 34:this.$=lt.addSubGraph(ye[Te-3],ye[Te-1],ye[Te-3]);break;case 35:this.$=lt.addSubGraph(void 0,ye[Te-1],void 0);break;case 37:this.$=ye[Te].trim(),lt.setAccTitle(this.$);break;case 38:case 39:this.$=ye[Te].trim(),lt.setAccDescription(this.$);break;case 43:this.$=ye[Te-1]+ye[Te];break;case 44:this.$=ye[Te];break;case 45:lt.addVertex(ye[Te-1][ye[Te-1].length-1],void 0,void 0,void 0,void 0,void 0,void 0,ye[Te]),lt.addLink(ye[Te-3].stmt,ye[Te-1],ye[Te-2]),this.$={stmt:ye[Te-1],nodes:ye[Te-1].concat(ye[Te-3].nodes)};break;case 46:lt.addLink(ye[Te-2].stmt,ye[Te],ye[Te-1]),this.$={stmt:ye[Te],nodes:ye[Te].concat(ye[Te-2].nodes)};break;case 47:lt.addLink(ye[Te-3].stmt,ye[Te-1],ye[Te-2]),this.$={stmt:ye[Te-1],nodes:ye[Te-1].concat(ye[Te-3].nodes)};break;case 48:this.$={stmt:ye[Te-1],nodes:ye[Te-1]};break;case 49:lt.addVertex(ye[Te-1][ye[Te-1].length-1],void 0,void 0,void 0,void 0,void 0,void 0,ye[Te]),this.$={stmt:ye[Te-1],nodes:ye[Te-1],shapeData:ye[Te]};break;case 50:this.$={stmt:ye[Te],nodes:ye[Te]};break;case 51:this.$=[ye[Te]];break;case 52:lt.addVertex(ye[Te-5][ye[Te-5].length-1],void 0,void 0,void 0,void 0,void 0,void 0,ye[Te-4]),this.$=ye[Te-5].concat(ye[Te]);break;case 53:this.$=ye[Te-4].concat(ye[Te]);break;case 54:this.$=ye[Te];break;case 55:this.$=ye[Te-2],lt.setClass(ye[Te-2],ye[Te]);break;case 56:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"square");break;case 57:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"doublecircle");break;case 58:this.$=ye[Te-5],lt.addVertex(ye[Te-5],ye[Te-2],"circle");break;case 59:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"ellipse");break;case 60:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"stadium");break;case 61:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"subroutine");break;case 62:this.$=ye[Te-7],lt.addVertex(ye[Te-7],ye[Te-1],"rect",void 0,void 0,void 0,Object.fromEntries([[ye[Te-5],ye[Te-3]]]));break;case 63:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"cylinder");break;case 64:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"round");break;case 65:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"diamond");break;case 66:this.$=ye[Te-5],lt.addVertex(ye[Te-5],ye[Te-2],"hexagon");break;case 67:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"odd");break;case 68:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"trapezoid");break;case 69:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"inv_trapezoid");break;case 70:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"lean_right");break;case 71:this.$=ye[Te-3],lt.addVertex(ye[Te-3],ye[Te-1],"lean_left");break;case 72:this.$=ye[Te],lt.addVertex(ye[Te]);break;case 73:ye[Te-1].text=ye[Te],this.$=ye[Te-1];break;case 74:case 75:ye[Te-2].text=ye[Te-1],this.$=ye[Te-2];break;case 76:this.$=ye[Te];break;case 77:var wi=lt.destructLink(ye[Te],ye[Te-2]);this.$={type:wi.type,stroke:wi.stroke,length:wi.length,text:ye[Te-1]};break;case 78:var wi=lt.destructLink(ye[Te],ye[Te-2]);this.$={type:wi.type,stroke:wi.stroke,length:wi.length,text:ye[Te-1],id:ye[Te-3]};break;case 79:this.$={text:ye[Te],type:"text"};break;case 80:this.$={text:ye[Te-1].text+""+ye[Te],type:ye[Te-1].type};break;case 81:this.$={text:ye[Te],type:"string"};break;case 82:this.$={text:ye[Te],type:"markdown"};break;case 83:var wi=lt.destructLink(ye[Te]);this.$={type:wi.type,stroke:wi.stroke,length:wi.length};break;case 84:var wi=lt.destructLink(ye[Te]);this.$={type:wi.type,stroke:wi.stroke,length:wi.length,id:ye[Te-1]};break;case 85:this.$=ye[Te-1];break;case 86:this.$={text:ye[Te],type:"text"};break;case 87:this.$={text:ye[Te-1].text+""+ye[Te],type:ye[Te-1].type};break;case 88:this.$={text:ye[Te],type:"string"};break;case 89:case 104:this.$={text:ye[Te],type:"markdown"};break;case 101:this.$={text:ye[Te],type:"text"};break;case 102:this.$={text:ye[Te-1].text+""+ye[Te],type:ye[Te-1].type};break;case 103:this.$={text:ye[Te],type:"text"};break;case 105:this.$=ye[Te-4],lt.addClass(ye[Te-2],ye[Te]);break;case 106:this.$=ye[Te-4],lt.setClass(ye[Te-2],ye[Te]);break;case 107:case 115:this.$=ye[Te-1],lt.setClickEvent(ye[Te-1],ye[Te]);break;case 108:case 116:this.$=ye[Te-3],lt.setClickEvent(ye[Te-3],ye[Te-2]),lt.setTooltip(ye[Te-3],ye[Te]);break;case 109:this.$=ye[Te-2],lt.setClickEvent(ye[Te-2],ye[Te-1],ye[Te]);break;case 110:this.$=ye[Te-4],lt.setClickEvent(ye[Te-4],ye[Te-3],ye[Te-2]),lt.setTooltip(ye[Te-4],ye[Te]);break;case 111:this.$=ye[Te-2],lt.setLink(ye[Te-2],ye[Te]);break;case 112:this.$=ye[Te-4],lt.setLink(ye[Te-4],ye[Te-2]),lt.setTooltip(ye[Te-4],ye[Te]);break;case 113:this.$=ye[Te-4],lt.setLink(ye[Te-4],ye[Te-2],ye[Te]);break;case 114:this.$=ye[Te-6],lt.setLink(ye[Te-6],ye[Te-4],ye[Te]),lt.setTooltip(ye[Te-6],ye[Te-2]);break;case 117:this.$=ye[Te-1],lt.setLink(ye[Te-1],ye[Te]);break;case 118:this.$=ye[Te-3],lt.setLink(ye[Te-3],ye[Te-2]),lt.setTooltip(ye[Te-3],ye[Te]);break;case 119:this.$=ye[Te-3],lt.setLink(ye[Te-3],ye[Te-2],ye[Te]);break;case 120:this.$=ye[Te-5],lt.setLink(ye[Te-5],ye[Te-4],ye[Te]),lt.setTooltip(ye[Te-5],ye[Te-2]);break;case 121:this.$=ye[Te-4],lt.addVertex(ye[Te-2],void 0,void 0,ye[Te]);break;case 122:this.$=ye[Te-4],lt.updateLink([ye[Te-2]],ye[Te]);break;case 123:this.$=ye[Te-4],lt.updateLink(ye[Te-2],ye[Te]);break;case 124:this.$=ye[Te-8],lt.updateLinkInterpolate([ye[Te-6]],ye[Te-2]),lt.updateLink([ye[Te-6]],ye[Te]);break;case 125:this.$=ye[Te-8],lt.updateLinkInterpolate(ye[Te-6],ye[Te-2]),lt.updateLink(ye[Te-6],ye[Te]);break;case 126:this.$=ye[Te-6],lt.updateLinkInterpolate([ye[Te-4]],ye[Te]);break;case 127:this.$=ye[Te-6],lt.updateLinkInterpolate(ye[Te-4],ye[Te]);break;case 128:case 130:this.$=[ye[Te]];break;case 129:case 131:ye[Te-2].push(ye[Te]),this.$=ye[Te-2];break;case 133:this.$=ye[Te-1]+ye[Te];break;case 181:this.$=ye[Te];break;case 182:this.$=ye[Te-1]+""+ye[Te];break;case 184:this.$=ye[Te-1]+""+ye[Te];break;case 185:this.$={stmt:"dir",value:"TB"};break;case 186:this.$={stmt:"dir",value:"BT"};break;case 187:this.$={stmt:"dir",value:"RL"};break;case 188:this.$={stmt:"dir",value:"LR"};break}},"anonymous"),table:[{3:1,4:2,9:e,10:r,12:n},{1:[3]},t(i,a,{5:6}),{4:7,9:e,10:r,12:n},{4:8,9:e,10:r,12:n},{13:[1,9],14:[1,10]},{1:[2,1],6:11,7:12,8:s,9:l,10:u,11:h,20:17,22:18,23:19,24:20,25:21,26:22,27:f,33:24,34:d,36:p,38:m,42:28,43:38,44:g,45:39,47:40,60:y,84:v,85:x,86:b,87:w,88:C,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L,121:R,122:O,123:M,124:B},t(i,[2,9]),t(i,[2,10]),t(i,[2,11]),{8:[1,54],9:[1,55],10:F,15:53,18:56},t(P,[2,3]),t(P,[2,4]),t(P,[2,5]),t(P,[2,6]),t(P,[2,7]),t(P,[2,8]),{8:z,9:$,11:H,21:58,41:59,72:63,75:[1,64],77:[1,66],78:[1,65]},{8:z,9:$,11:H,21:67},{8:z,9:$,11:H,21:68},{8:z,9:$,11:H,21:69},{8:z,9:$,11:H,21:70},{8:z,9:$,11:H,21:71},{8:z,9:$,10:[1,72],11:H,21:73},t(P,[2,36]),{35:[1,74]},{37:[1,75]},t(P,[2,39]),t(Q,[2,50],{18:76,39:77,10:F,40:j}),{10:[1,79]},{10:[1,80]},{10:[1,81]},{10:[1,82]},{14:ie,44:ne,60:le,80:[1,86],89:he,95:[1,83],97:[1,84],101:85,105:K,106:X,109:te,111:J,114:se,115:ue,116:Z,120:87},t(P,[2,185]),t(P,[2,186]),t(P,[2,187]),t(P,[2,188]),t(Se,[2,51]),t(Se,[2,54],{46:[1,99]}),t(ce,[2,72],{113:112,29:[1,100],44:g,48:[1,101],50:[1,102],52:[1,103],54:[1,104],56:[1,105],58:[1,106],60:y,63:[1,107],65:[1,108],67:[1,109],68:[1,110],70:[1,111],89:T,102:E,105:A,106:S,109:_,111:I,114:D,115:k,116:L}),t(ae,[2,181]),t(ae,[2,142]),t(ae,[2,143]),t(ae,[2,144]),t(ae,[2,145]),t(ae,[2,146]),t(ae,[2,147]),t(ae,[2,148]),t(ae,[2,149]),t(ae,[2,150]),t(ae,[2,151]),t(ae,[2,152]),t(i,[2,12]),t(i,[2,18]),t(i,[2,19]),{9:[1,113]},t(Oe,[2,26],{18:114,10:F}),t(P,[2,27]),{42:115,43:38,44:g,45:39,47:40,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L},t(P,[2,40]),t(P,[2,41]),t(P,[2,42]),t(ge,[2,76],{73:116,62:[1,118],74:[1,117]}),{76:119,79:120,80:ze,81:He,116:$e,119:Re},{75:[1,125],77:[1,126]},t(Ie,[2,83]),t(P,[2,28]),t(P,[2,29]),t(P,[2,30]),t(P,[2,31]),t(P,[2,32]),{10:be,12:W,14:de,27:re,28:127,32:oe,44:V,60:xe,75:q,80:[1,129],81:[1,130],83:140,84:pe,85:ve,86:Pe,87:_e,88:we,89:Ve,90:De,91:128,105:qe,109:at,111:Rt,114:st,115:Ue,116:ct},t(We,a,{5:153}),t(P,[2,37]),t(P,[2,38]),t(Q,[2,48],{44:ot}),t(Q,[2,49],{18:155,10:F,40:Yt}),t(Se,[2,44]),{44:g,47:157,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L},{102:[1,158],103:159,105:[1,160]},{44:g,47:161,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L},{44:g,47:162,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L},t(bt,[2,107],{10:[1,163],96:[1,164]}),{80:[1,165]},t(bt,[2,115],{120:167,10:[1,166],14:ie,44:ne,60:le,89:he,105:K,106:X,109:te,111:J,114:se,115:ue,116:Z}),t(bt,[2,117],{10:[1,168]}),t(Mt,[2,183]),t(Mt,[2,170]),t(Mt,[2,171]),t(Mt,[2,172]),t(Mt,[2,173]),t(Mt,[2,174]),t(Mt,[2,175]),t(Mt,[2,176]),t(Mt,[2,177]),t(Mt,[2,178]),t(Mt,[2,179]),t(Mt,[2,180]),{44:g,47:169,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L},{30:170,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:178,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:180,50:[1,179],67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:181,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:182,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:183,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{109:[1,184]},{30:185,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:186,65:[1,187],67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:188,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:189,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{30:190,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},t(ae,[2,182]),t(i,[2,20]),t(Oe,[2,25]),t(Q,[2,46],{39:191,18:192,10:F,40:j}),t(ge,[2,73],{10:[1,193]}),{10:[1,194]},{30:195,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{77:[1,196],79:197,116:$e,119:Re},t(dn,[2,79]),t(dn,[2,81]),t(dn,[2,82]),t(dn,[2,168]),t(dn,[2,169]),{76:198,79:120,80:ze,81:He,116:$e,119:Re},t(Ie,[2,84]),{8:z,9:$,10:be,11:H,12:W,14:de,21:200,27:re,29:[1,199],32:oe,44:V,60:xe,75:q,83:140,84:pe,85:ve,86:Pe,87:_e,88:we,89:Ve,90:De,91:201,105:qe,109:at,111:Rt,114:st,115:Ue,116:ct},t(Tt,[2,101]),t(Tt,[2,103]),t(Tt,[2,104]),t(Tt,[2,157]),t(Tt,[2,158]),t(Tt,[2,159]),t(Tt,[2,160]),t(Tt,[2,161]),t(Tt,[2,162]),t(Tt,[2,163]),t(Tt,[2,164]),t(Tt,[2,165]),t(Tt,[2,166]),t(Tt,[2,167]),t(Tt,[2,90]),t(Tt,[2,91]),t(Tt,[2,92]),t(Tt,[2,93]),t(Tt,[2,94]),t(Tt,[2,95]),t(Tt,[2,96]),t(Tt,[2,97]),t(Tt,[2,98]),t(Tt,[2,99]),t(Tt,[2,100]),{6:11,7:12,8:s,9:l,10:u,11:h,20:17,22:18,23:19,24:20,25:21,26:22,27:f,32:[1,202],33:24,34:d,36:p,38:m,42:28,43:38,44:g,45:39,47:40,60:y,84:v,85:x,86:b,87:w,88:C,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L,121:R,122:O,123:M,124:B},{10:F,18:203},{44:[1,204]},t(Se,[2,43]),{10:[1,205],44:g,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:112,114:D,115:k,116:L},{10:[1,206]},{10:[1,207],106:[1,208]},t(On,[2,128]),{10:[1,209],44:g,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:112,114:D,115:k,116:L},{10:[1,210],44:g,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:112,114:D,115:k,116:L},{80:[1,211]},t(bt,[2,109],{10:[1,212]}),t(bt,[2,111],{10:[1,213]}),{80:[1,214]},t(Mt,[2,184]),{80:[1,215],98:[1,216]},t(Se,[2,55],{113:112,44:g,60:y,89:T,102:E,105:A,106:S,109:_,111:I,114:D,115:k,116:L}),{31:[1,217],67:xt,82:218,116:ft,117:yt,118:nt},t(tn,[2,86]),t(tn,[2,88]),t(tn,[2,89]),t(tn,[2,153]),t(tn,[2,154]),t(tn,[2,155]),t(tn,[2,156]),{49:[1,219],67:xt,82:218,116:ft,117:yt,118:nt},{30:220,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{51:[1,221],67:xt,82:218,116:ft,117:yt,118:nt},{53:[1,222],67:xt,82:218,116:ft,117:yt,118:nt},{55:[1,223],67:xt,82:218,116:ft,117:yt,118:nt},{57:[1,224],67:xt,82:218,116:ft,117:yt,118:nt},{60:[1,225]},{64:[1,226],67:xt,82:218,116:ft,117:yt,118:nt},{66:[1,227],67:xt,82:218,116:ft,117:yt,118:nt},{30:228,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},{31:[1,229],67:xt,82:218,116:ft,117:yt,118:nt},{67:xt,69:[1,230],71:[1,231],82:218,116:ft,117:yt,118:nt},{67:xt,69:[1,233],71:[1,232],82:218,116:ft,117:yt,118:nt},t(Q,[2,45],{18:155,10:F,40:Yt}),t(Q,[2,47],{44:ot}),t(ge,[2,75]),t(ge,[2,74]),{62:[1,234],67:xt,82:218,116:ft,117:yt,118:nt},t(ge,[2,77]),t(dn,[2,80]),{77:[1,235],79:197,116:$e,119:Re},{30:236,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},t(We,a,{5:237}),t(Tt,[2,102]),t(P,[2,35]),{43:238,44:g,45:39,47:40,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L},{10:F,18:239},{10:_r,60:Dr,84:Pn,92:240,105:At,107:241,108:242,109:Ce,110:tt,111:St,112:mr},{10:_r,60:Dr,84:Pn,92:251,104:[1,252],105:At,107:241,108:242,109:Ce,110:tt,111:St,112:mr},{10:_r,60:Dr,84:Pn,92:253,104:[1,254],105:At,107:241,108:242,109:Ce,110:tt,111:St,112:mr},{105:[1,255]},{10:_r,60:Dr,84:Pn,92:256,105:At,107:241,108:242,109:Ce,110:tt,111:St,112:mr},{44:g,47:257,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L},t(bt,[2,108]),{80:[1,258]},{80:[1,259],98:[1,260]},t(bt,[2,116]),t(bt,[2,118],{10:[1,261]}),t(bt,[2,119]),t(ce,[2,56]),t(tn,[2,87]),t(ce,[2,57]),{51:[1,262],67:xt,82:218,116:ft,117:yt,118:nt},t(ce,[2,64]),t(ce,[2,59]),t(ce,[2,60]),t(ce,[2,61]),{109:[1,263]},t(ce,[2,63]),t(ce,[2,65]),{66:[1,264],67:xt,82:218,116:ft,117:yt,118:nt},t(ce,[2,67]),t(ce,[2,68]),t(ce,[2,70]),t(ce,[2,69]),t(ce,[2,71]),t([10,44,60,89,102,105,106,109,111,114,115,116],[2,85]),t(ge,[2,78]),{31:[1,265],67:xt,82:218,116:ft,117:yt,118:nt},{6:11,7:12,8:s,9:l,10:u,11:h,20:17,22:18,23:19,24:20,25:21,26:22,27:f,32:[1,266],33:24,34:d,36:p,38:m,42:28,43:38,44:g,45:39,47:40,60:y,84:v,85:x,86:b,87:w,88:C,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L,121:R,122:O,123:M,124:B},t(Se,[2,53]),{43:267,44:g,45:39,47:40,60:y,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L},t(bt,[2,121],{106:rn}),t(gn,[2,130],{108:269,10:_r,60:Dr,84:Pn,105:At,109:Ce,110:tt,111:St,112:mr}),t(Zr,[2,132]),t(Zr,[2,134]),t(Zr,[2,135]),t(Zr,[2,136]),t(Zr,[2,137]),t(Zr,[2,138]),t(Zr,[2,139]),t(Zr,[2,140]),t(Zr,[2,141]),t(bt,[2,122],{106:rn}),{10:[1,270]},t(bt,[2,123],{106:rn}),{10:[1,271]},t(On,[2,129]),t(bt,[2,105],{106:rn}),t(bt,[2,106],{113:112,44:g,60:y,89:T,102:E,105:A,106:S,109:_,111:I,114:D,115:k,116:L}),t(bt,[2,110]),t(bt,[2,112],{10:[1,272]}),t(bt,[2,113]),{98:[1,273]},{51:[1,274]},{62:[1,275]},{66:[1,276]},{8:z,9:$,11:H,21:277},t(P,[2,34]),t(Se,[2,52]),{10:_r,60:Dr,84:Pn,105:At,107:278,108:242,109:Ce,110:tt,111:St,112:mr},t(Zr,[2,133]),{14:ie,44:ne,60:le,89:he,101:279,105:K,106:X,109:te,111:J,114:se,115:ue,116:Z,120:87},{14:ie,44:ne,60:le,89:he,101:280,105:K,106:X,109:te,111:J,114:se,115:ue,116:Z,120:87},{98:[1,281]},t(bt,[2,120]),t(ce,[2,58]),{30:282,67:xt,80:ut,81:Et,82:171,116:ft,117:yt,118:nt},t(ce,[2,66]),t(We,a,{5:283}),t(gn,[2,131],{108:269,10:_r,60:Dr,84:Pn,105:At,109:Ce,110:tt,111:St,112:mr}),t(bt,[2,126],{120:167,10:[1,284],14:ie,44:ne,60:le,89:he,105:K,106:X,109:te,111:J,114:se,115:ue,116:Z}),t(bt,[2,127],{120:167,10:[1,285],14:ie,44:ne,60:le,89:he,105:K,106:X,109:te,111:J,114:se,115:ue,116:Z}),t(bt,[2,114]),{31:[1,286],67:xt,82:218,116:ft,117:yt,118:nt},{6:11,7:12,8:s,9:l,10:u,11:h,20:17,22:18,23:19,24:20,25:21,26:22,27:f,32:[1,287],33:24,34:d,36:p,38:m,42:28,43:38,44:g,45:39,47:40,60:y,84:v,85:x,86:b,87:w,88:C,89:T,102:E,105:A,106:S,109:_,111:I,113:41,114:D,115:k,116:L,121:R,122:O,123:M,124:B},{10:_r,60:Dr,84:Pn,92:288,105:At,107:241,108:242,109:Ce,110:tt,111:St,112:mr},{10:_r,60:Dr,84:Pn,92:289,105:At,107:241,108:242,109:Ce,110:tt,111:St,112:mr},t(ce,[2,62]),t(P,[2,33]),t(bt,[2,124],{106:rn}),t(bt,[2,125],{106:rn})],defaultActions:{},parseError:o(function(et,mt){if(mt.recoverable)this.trace(et);else{var Kt=new Error(et);throw Kt.hash=mt,Kt}},"parseError"),parse:o(function(et){var mt=this,Kt=[0],lt=[],Cn=[null],ye=[],Vf=this.table,Te="",wi=0,TF=0,kF=0,M2e=2,EF=1,I2e=ye.slice.call(arguments,1),Xi=Object.create(this.lexer),Uf={yy:{}};for(var xC in this.yy)Object.prototype.hasOwnProperty.call(this.yy,xC)&&(Uf.yy[xC]=this.yy[xC]);Xi.setInput(et,Uf.yy),Uf.yy.lexer=Xi,Uf.yy.parser=this,typeof Xi.yylloc>"u"&&(Xi.yylloc={});var bC=Xi.yylloc;ye.push(bC);var O2e=Xi.options&&Xi.options.ranges;typeof Uf.yy.parseError=="function"?this.parseError=Uf.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function wnt(Ws){Kt.length=Kt.length-2*Ws,Cn.length=Cn.length-Ws,ye.length=ye.length-Ws}o(wnt,"popStack");function P2e(){var Ws;return Ws=lt.pop()||Xi.lex()||EF,typeof Ws!="number"&&(Ws instanceof Array&&(lt=Ws,Ws=lt.pop()),Ws=mt.symbols_[Ws]||Ws),Ws}o(P2e,"lex");for(var Wa,wC,Hf,xo,Tnt,TC,Jp={},_4,Jc,SF,D4;;){if(Hf=Kt[Kt.length-1],this.defaultActions[Hf]?xo=this.defaultActions[Hf]:((Wa===null||typeof Wa>"u")&&(Wa=P2e()),xo=Vf[Hf]&&Vf[Hf][Wa]),typeof xo>"u"||!xo.length||!xo[0]){var kC="";D4=[];for(_4 in Vf[Hf])this.terminals_[_4]&&_4>M2e&&D4.push("'"+this.terminals_[_4]+"'");Xi.showPosition?kC="Parse error on line "+(wi+1)+`: +`+Xi.showPosition()+` +Expecting `+D4.join(", ")+", got '"+(this.terminals_[Wa]||Wa)+"'":kC="Parse error on line "+(wi+1)+": Unexpected "+(Wa==EF?"end of input":"'"+(this.terminals_[Wa]||Wa)+"'"),this.parseError(kC,{text:Xi.match,token:this.terminals_[Wa]||Wa,line:Xi.yylineno,loc:bC,expected:D4})}if(xo[0]instanceof Array&&xo.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Hf+", token: "+Wa);switch(xo[0]){case 1:Kt.push(Wa),Cn.push(Xi.yytext),ye.push(Xi.yylloc),Kt.push(xo[1]),Wa=null,wC?(Wa=wC,wC=null):(TF=Xi.yyleng,Te=Xi.yytext,wi=Xi.yylineno,bC=Xi.yylloc,kF>0&&kF--);break;case 2:if(Jc=this.productions_[xo[1]][1],Jp.$=Cn[Cn.length-Jc],Jp._$={first_line:ye[ye.length-(Jc||1)].first_line,last_line:ye[ye.length-1].last_line,first_column:ye[ye.length-(Jc||1)].first_column,last_column:ye[ye.length-1].last_column},O2e&&(Jp._$.range=[ye[ye.length-(Jc||1)].range[0],ye[ye.length-1].range[1]]),TC=this.performAction.apply(Jp,[Te,TF,wi,Uf.yy,xo[1],Cn,ye].concat(I2e)),typeof TC<"u")return TC;Jc&&(Kt=Kt.slice(0,-1*Jc*2),Cn=Cn.slice(0,-1*Jc),ye=ye.slice(0,-1*Jc)),Kt.push(this.productions_[xo[1]][0]),Cn.push(Jp.$),ye.push(Jp._$),SF=Vf[Kt[Kt.length-2]][Kt[Kt.length-1]],Kt.push(SF);break;case 3:return!0}}return!0},"parse")},Zn=function(){var Hr={EOF:1,parseError:o(function(mt,Kt){if(this.yy.parser)this.yy.parser.parseError(mt,Kt);else throw new Error(mt)},"parseError"),setInput:o(function(et,mt){return this.yy=mt||this.yy||{},this._input=et,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var et=this._input[0];this.yytext+=et,this.yyleng++,this.offset++,this.match+=et,this.matched+=et;var mt=et.match(/(?:\r\n?|\n).*/g);return mt?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),et},"input"),unput:o(function(et){var mt=et.length,Kt=et.split(/(?:\r\n?|\n)/g);this._input=et+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-mt),this.offset-=mt;var lt=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Kt.length-1&&(this.yylineno-=Kt.length-1);var Cn=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Kt?(Kt.length===lt.length?this.yylloc.first_column:0)+lt[lt.length-Kt.length].length-Kt[0].length:this.yylloc.first_column-mt},this.options.ranges&&(this.yylloc.range=[Cn[0],Cn[0]+this.yyleng-mt]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(et){this.unput(this.match.slice(et))},"less"),pastInput:o(function(){var et=this.matched.substr(0,this.matched.length-this.match.length);return(et.length>20?"...":"")+et.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var et=this.match;return et.length<20&&(et+=this._input.substr(0,20-et.length)),(et.substr(0,20)+(et.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var et=this.pastInput(),mt=new Array(et.length+1).join("-");return et+this.upcomingInput()+` +`+mt+"^"},"showPosition"),test_match:o(function(et,mt){var Kt,lt,Cn;if(this.options.backtrack_lexer&&(Cn={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Cn.yylloc.range=this.yylloc.range.slice(0))),lt=et[0].match(/(?:\r\n?|\n).*/g),lt&&(this.yylineno+=lt.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:lt?lt[lt.length-1].length-lt[lt.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+et[0].length},this.yytext+=et[0],this.match+=et[0],this.matches=et,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(et[0].length),this.matched+=et[0],Kt=this.performAction.call(this,this.yy,this,mt,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Kt)return Kt;if(this._backtrack){for(var ye in Cn)this[ye]=Cn[ye];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var et,mt,Kt,lt;this._more||(this.yytext="",this.match="");for(var Cn=this._currentRules(),ye=0;yemt[0].length)){if(mt=Kt,lt=ye,this.options.backtrack_lexer){if(et=this.test_match(Kt,Cn[ye]),et!==!1)return et;if(this._backtrack){mt=!1;continue}else return!1}else if(!this.options.flex)break}return mt?(et=this.test_match(mt,Cn[lt]),et!==!1?et:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var mt=this.next();return mt||this.lex()},"lex"),begin:o(function(mt){this.conditionStack.push(mt)},"begin"),popState:o(function(){var mt=this.conditionStack.length-1;return mt>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(mt){return mt=this.conditionStack.length-1-Math.abs(mt||0),mt>=0?this.conditionStack[mt]:"INITIAL"},"topState"),pushState:o(function(mt){this.begin(mt)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:o(function(mt,Kt,lt,Cn){var ye=Cn;switch(lt){case 0:return this.begin("acc_title"),34;break;case 1:return this.popState(),"acc_title_value";break;case 2:return this.begin("acc_descr"),36;break;case 3:return this.popState(),"acc_descr_value";break;case 4:this.begin("acc_descr_multiline");break;case 5:this.popState();break;case 6:return"acc_descr_multiline_value";case 7:return this.pushState("shapeData"),Kt.yytext="",40;break;case 8:return this.pushState("shapeDataStr"),40;break;case 9:return this.popState(),40;break;case 10:let Vf=/\n\s*/g;return Kt.yytext=Kt.yytext.replace(Vf,"
    "),40;break;case 11:return 40;case 12:this.popState();break;case 13:this.begin("callbackname");break;case 14:this.popState();break;case 15:this.popState(),this.begin("callbackargs");break;case 16:return 95;case 17:this.popState();break;case 18:return 96;case 19:return"MD_STR";case 20:this.popState();break;case 21:this.begin("md_string");break;case 22:return"STR";case 23:this.popState();break;case 24:this.pushState("string");break;case 25:return 84;case 26:return 102;case 27:return 85;case 28:return 104;case 29:return 86;case 30:return 87;case 31:return 97;case 32:this.begin("click");break;case 33:this.popState();break;case 34:return 88;case 35:return mt.lex.firstGraph()&&this.begin("dir"),12;break;case 36:return mt.lex.firstGraph()&&this.begin("dir"),12;break;case 37:return mt.lex.firstGraph()&&this.begin("dir"),12;break;case 38:return 27;case 39:return 32;case 40:return 98;case 41:return 98;case 42:return 98;case 43:return 98;case 44:return this.popState(),13;break;case 45:return this.popState(),14;break;case 46:return this.popState(),14;break;case 47:return this.popState(),14;break;case 48:return this.popState(),14;break;case 49:return this.popState(),14;break;case 50:return this.popState(),14;break;case 51:return this.popState(),14;break;case 52:return this.popState(),14;break;case 53:return this.popState(),14;break;case 54:return this.popState(),14;break;case 55:return 121;case 56:return 122;case 57:return 123;case 58:return 124;case 59:return 78;case 60:return 105;case 61:return 111;case 62:return 46;case 63:return 60;case 64:return 44;case 65:return 8;case 66:return 106;case 67:return 115;case 68:return this.popState(),77;break;case 69:return this.pushState("edgeText"),75;break;case 70:return 119;case 71:return this.popState(),77;break;case 72:return this.pushState("thickEdgeText"),75;break;case 73:return 119;case 74:return this.popState(),77;break;case 75:return this.pushState("dottedEdgeText"),75;break;case 76:return 119;case 77:return 77;case 78:return this.popState(),53;break;case 79:return"TEXT";case 80:return this.pushState("ellipseText"),52;break;case 81:return this.popState(),55;break;case 82:return this.pushState("text"),54;break;case 83:return this.popState(),57;break;case 84:return this.pushState("text"),56;break;case 85:return 58;case 86:return this.pushState("text"),67;break;case 87:return this.popState(),64;break;case 88:return this.pushState("text"),63;break;case 89:return this.popState(),49;break;case 90:return this.pushState("text"),48;break;case 91:return this.popState(),69;break;case 92:return this.popState(),71;break;case 93:return 117;case 94:return this.pushState("trapText"),68;break;case 95:return this.pushState("trapText"),70;break;case 96:return 118;case 97:return 67;case 98:return 90;case 99:return"SEP";case 100:return 89;case 101:return 115;case 102:return 111;case 103:return 44;case 104:return 109;case 105:return 114;case 106:return 116;case 107:return this.popState(),62;break;case 108:return this.pushState("text"),62;break;case 109:return this.popState(),51;break;case 110:return this.pushState("text"),50;break;case 111:return this.popState(),31;break;case 112:return this.pushState("text"),29;break;case 113:return this.popState(),66;break;case 114:return this.pushState("text"),65;break;case 115:return"TEXT";case 116:return"QUOTE";case 117:return 9;case 118:return 10;case 119:return 11}},"anonymous"),rules:[/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:@\{)/,/^(?:["])/,/^(?:["])/,/^(?:[^\"]+)/,/^(?:[^}^"]+)/,/^(?:\})/,/^(?:call[\s]+)/,/^(?:\([\s]*\))/,/^(?:\()/,/^(?:[^(]*)/,/^(?:\))/,/^(?:[^)]*)/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["][`])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:["])/,/^(?:style\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\b)/,/^(?:class\b)/,/^(?:href[\s])/,/^(?:click[\s]+)/,/^(?:[\s\n])/,/^(?:[^\s\n]*)/,/^(?:flowchart-elk\b)/,/^(?:graph\b)/,/^(?:flowchart\b)/,/^(?:subgraph\b)/,/^(?:end\b\s*)/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:(\r?\n)*\s*\n)/,/^(?:\s*LR\b)/,/^(?:\s*RL\b)/,/^(?:\s*TB\b)/,/^(?:\s*BT\b)/,/^(?:\s*TD\b)/,/^(?:\s*BR\b)/,/^(?:\s*<)/,/^(?:\s*>)/,/^(?:\s*\^)/,/^(?:\s*v\b)/,/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:[^\s\"]+@(?=[^\{\"]))/,/^(?:[0-9]+)/,/^(?:#)/,/^(?::::)/,/^(?::)/,/^(?:&)/,/^(?:;)/,/^(?:,)/,/^(?:\*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:[^-]|-(?!-)+)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:[^=]|=(?!))/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:[^\.]|\.(?!))/,/^(?:\s*~~[\~]+\s*)/,/^(?:[-/\)][\)])/,/^(?:[^\(\)\[\]\{\}]|!\)+)/,/^(?:\(-)/,/^(?:\]\))/,/^(?:\(\[)/,/^(?:\]\])/,/^(?:\[\[)/,/^(?:\[\|)/,/^(?:>)/,/^(?:\)\])/,/^(?:\[\()/,/^(?:\)\)\))/,/^(?:\(\(\()/,/^(?:[\\(?=\])][\]])/,/^(?:\/(?=\])\])/,/^(?:\/(?!\])|\\(?!\])|[^\\\[\]\(\)\{\}\/]+)/,/^(?:\[\/)/,/^(?:\[\\)/,/^(?:<)/,/^(?:>)/,/^(?:\^)/,/^(?:\\\|)/,/^(?:v\b)/,/^(?:\*)/,/^(?:#)/,/^(?:&)/,/^(?:([A-Za-z0-9!"\#$%&'*+\.`?\\_\/]|-(?=[^\>\-\.])|(?!))+)/,/^(?:-)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\|)/,/^(?:\|)/,/^(?:\))/,/^(?:\()/,/^(?:\])/,/^(?:\[)/,/^(?:(\}))/,/^(?:\{)/,/^(?:[^\[\]\(\)\{\}\|\"]+)/,/^(?:")/,/^(?:(\r?\n)+)/,/^(?:\s)/,/^(?:$)/],conditions:{shapeDataEndBracket:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},shapeDataStr:{rules:[9,10,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},shapeData:{rules:[8,11,12,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},callbackargs:{rules:[17,18,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},callbackname:{rules:[14,15,16,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},href:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},click:{rules:[21,24,33,34,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},dottedEdgeText:{rules:[21,24,74,76,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},thickEdgeText:{rules:[21,24,71,73,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},edgeText:{rules:[21,24,68,70,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},trapText:{rules:[21,24,77,80,82,84,88,90,91,92,93,94,95,108,110,112,114],inclusive:!1},ellipseText:{rules:[21,24,77,78,79,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},text:{rules:[21,24,77,80,81,82,83,84,87,88,89,90,94,95,107,108,109,110,111,112,113,114,115],inclusive:!1},vertex:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},dir:{rules:[21,24,44,45,46,47,48,49,50,51,52,53,54,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_descr_multiline:{rules:[5,6,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_descr:{rules:[3,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_title:{rules:[1,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},md_string:{rules:[19,20,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},string:{rules:[21,22,23,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},INITIAL:{rules:[0,2,4,7,13,21,24,25,26,27,28,29,30,31,32,35,36,37,38,39,40,41,42,43,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74,75,77,80,82,84,85,86,88,90,94,95,96,97,98,99,100,101,102,103,104,105,106,108,110,112,114,116,117,118,119],inclusive:!0}}};return Hr}();Ni.lexer=Zn;function Sn(){this.yy={}}return o(Sn,"Parser"),Sn.prototype=Ni,Ni.Parser=Sn,new Sn}();xR.parser=xR;bR=xR});var Uie,Hie,Wie=N(()=>{"use strict";Vie();Uie=Object.assign({},bR);Uie.parse=t=>{let e=t.replace(/}\s*\n/g,`} +`);return bR.parse(e)};Hie=Uie});var gOe,yOe,qie,Yie=N(()=>{"use strict";Ys();gOe=o((t,e)=>{let r=Kf,n=r(t,"r"),i=r(t,"g"),a=r(t,"b");return qa(n,i,a,e)},"fade"),yOe=o(t=>`.label { + font-family: ${t.fontFamily}; + color: ${t.nodeTextColor||t.textColor}; + } + .cluster-label text { + fill: ${t.titleColor}; + } + .cluster-label span { + color: ${t.titleColor}; + } + .cluster-label span p { + background-color: transparent; + } + + .label text,span { + fill: ${t.nodeTextColor||t.textColor}; + color: ${t.nodeTextColor||t.textColor}; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${t.mainBkg}; + stroke: ${t.nodeBorder}; + stroke-width: 1px; + } + .rough-node .label text , .node .label text, .image-shape .label, .icon-shape .label { + text-anchor: middle; + } + // .flowchart-label .text-outer-tspan { + // text-anchor: middle; + // } + // .flowchart-label .text-inner-tspan { + // text-anchor: start; + // } + + .node .katex path { + fill: #000; + stroke: #000; + stroke-width: 1px; + } + + .rough-node .label,.node .label, .image-shape .label, .icon-shape .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + + .root .anchor path { + fill: ${t.lineColor} !important; + stroke-width: 0; + stroke: ${t.lineColor}; + } + + .arrowheadPath { + fill: ${t.arrowheadColor}; + } + + .edgePath .path { + stroke: ${t.lineColor}; + stroke-width: 2.0px; + } + + .flowchart-link { + stroke: ${t.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${t.edgeLabelBackground}; + p { + background-color: ${t.edgeLabelBackground}; + } + rect { + opacity: 0.5; + background-color: ${t.edgeLabelBackground}; + fill: ${t.edgeLabelBackground}; + } + text-align: center; + } + + /* For html labels only */ + .labelBkg { + background-color: ${gOe(t.edgeLabelBackground,.5)}; + // background-color: + } + + .cluster rect { + fill: ${t.clusterBkg}; + stroke: ${t.clusterBorder}; + stroke-width: 1px; + } + + .cluster text { + fill: ${t.titleColor}; + } + + .cluster span { + color: ${t.titleColor}; + } + /* .cluster div { + color: ${t.titleColor}; + } */ + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${t.fontFamily}; + font-size: 12px; + background: ${t.tertiaryColor}; + border: 1px solid ${t.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .flowchartTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${t.textColor}; + } + + rect.text { + fill: none; + stroke-width: 0; + } + + .icon-shape, .image-shape { + background-color: ${t.edgeLabelBackground}; + p { + background-color: ${t.edgeLabelBackground}; + padding: 2px; + } + rect { + opacity: 0.5; + background-color: ${t.edgeLabelBackground}; + fill: ${t.edgeLabelBackground}; + } + text-align: center; + } +`,"getStyles"),qie=yOe});var ik={};hr(ik,{diagram:()=>vOe});var vOe,ak=N(()=>{"use strict";zt();qZ();Gie();Wie();Yie();vOe={parser:Hie,get db(){return new Uw},renderer:zie,styles:qie,init:o(t=>{t.flowchart||(t.flowchart={}),t.layout&&Yy({layout:t.layout}),t.flowchart.arrowMarkerAbsolute=t.arrowMarkerAbsolute,Yy({flowchart:{arrowMarkerAbsolute:t.arrowMarkerAbsolute}})},"init")}});var wR,Zie,Jie=N(()=>{"use strict";wR=function(){var t=o(function(J,se,ue,Z){for(ue=ue||{},Z=J.length;Z--;ue[J[Z]]=se);return ue},"o"),e=[6,8,10,22,24,26,28,33,34,35,36,37,40,43,44,50],r=[1,10],n=[1,11],i=[1,12],a=[1,13],s=[1,20],l=[1,21],u=[1,22],h=[1,23],f=[1,24],d=[1,19],p=[1,25],m=[1,26],g=[1,18],y=[1,33],v=[1,34],x=[1,35],b=[1,36],w=[1,37],C=[6,8,10,13,15,17,20,21,22,24,26,28,33,34,35,36,37,40,43,44,50,63,64,65,66,67],T=[1,42],E=[1,43],A=[1,52],S=[40,50,68,69],_=[1,63],I=[1,61],D=[1,58],k=[1,62],L=[1,64],R=[6,8,10,13,17,22,24,26,28,33,34,35,36,37,40,41,42,43,44,48,49,50,63,64,65,66,67],O=[63,64,65,66,67],M=[1,81],B=[1,80],F=[1,78],P=[1,79],z=[6,10,42,47],$=[6,10,13,41,42,47,48,49],H=[1,89],Q=[1,88],j=[1,87],ie=[19,56],ne=[1,98],le=[1,97],he=[19,56,58,60],K={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,ER_DIAGRAM:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,entityName:11,relSpec:12,COLON:13,role:14,STYLE_SEPARATOR:15,idList:16,BLOCK_START:17,attributes:18,BLOCK_STOP:19,SQS:20,SQE:21,title:22,title_value:23,acc_title:24,acc_title_value:25,acc_descr:26,acc_descr_value:27,acc_descr_multiline_value:28,direction:29,classDefStatement:30,classStatement:31,styleStatement:32,direction_tb:33,direction_bt:34,direction_rl:35,direction_lr:36,CLASSDEF:37,stylesOpt:38,separator:39,UNICODE_TEXT:40,STYLE_TEXT:41,COMMA:42,CLASS:43,STYLE:44,style:45,styleComponent:46,SEMI:47,NUM:48,BRKT:49,ENTITY_NAME:50,attribute:51,attributeType:52,attributeName:53,attributeKeyTypeList:54,attributeComment:55,ATTRIBUTE_WORD:56,attributeKeyType:57,",":58,ATTRIBUTE_KEY:59,COMMENT:60,cardinality:61,relType:62,ZERO_OR_ONE:63,ZERO_OR_MORE:64,ONE_OR_MORE:65,ONLY_ONE:66,MD_PARENT:67,NON_IDENTIFYING:68,IDENTIFYING:69,WORD:70,$accept:0,$end:1},terminals_:{2:"error",4:"ER_DIAGRAM",6:"EOF",8:"SPACE",10:"NEWLINE",13:"COLON",15:"STYLE_SEPARATOR",17:"BLOCK_START",19:"BLOCK_STOP",20:"SQS",21:"SQE",22:"title",23:"title_value",24:"acc_title",25:"acc_title_value",26:"acc_descr",27:"acc_descr_value",28:"acc_descr_multiline_value",33:"direction_tb",34:"direction_bt",35:"direction_rl",36:"direction_lr",37:"CLASSDEF",40:"UNICODE_TEXT",41:"STYLE_TEXT",42:"COMMA",43:"CLASS",44:"STYLE",47:"SEMI",48:"NUM",49:"BRKT",50:"ENTITY_NAME",56:"ATTRIBUTE_WORD",58:",",59:"ATTRIBUTE_KEY",60:"COMMENT",63:"ZERO_OR_ONE",64:"ZERO_OR_MORE",65:"ONE_OR_MORE",66:"ONLY_ONE",67:"MD_PARENT",68:"NON_IDENTIFYING",69:"IDENTIFYING",70:"WORD"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,5],[9,9],[9,7],[9,7],[9,4],[9,6],[9,3],[9,5],[9,1],[9,3],[9,7],[9,9],[9,6],[9,8],[9,4],[9,6],[9,2],[9,2],[9,2],[9,1],[9,1],[9,1],[9,1],[9,1],[29,1],[29,1],[29,1],[29,1],[30,4],[16,1],[16,1],[16,3],[16,3],[31,3],[32,4],[38,1],[38,3],[45,1],[45,2],[39,1],[39,1],[39,1],[46,1],[46,1],[46,1],[46,1],[11,1],[11,1],[18,1],[18,2],[51,2],[51,3],[51,3],[51,4],[52,1],[53,1],[54,1],[54,3],[57,1],[55,1],[12,3],[61,1],[61,1],[61,1],[61,1],[61,1],[62,1],[62,1],[14,1],[14,1],[14,1]],performAction:o(function(se,ue,Z,Se,ce,ae,Oe){var ge=ae.length-1;switch(ce){case 1:break;case 2:this.$=[];break;case 3:ae[ge-1].push(ae[ge]),this.$=ae[ge-1];break;case 4:case 5:this.$=ae[ge];break;case 6:case 7:this.$=[];break;case 8:Se.addEntity(ae[ge-4]),Se.addEntity(ae[ge-2]),Se.addRelationship(ae[ge-4],ae[ge],ae[ge-2],ae[ge-3]);break;case 9:Se.addEntity(ae[ge-8]),Se.addEntity(ae[ge-4]),Se.addRelationship(ae[ge-8],ae[ge],ae[ge-4],ae[ge-5]),Se.setClass([ae[ge-8]],ae[ge-6]),Se.setClass([ae[ge-4]],ae[ge-2]);break;case 10:Se.addEntity(ae[ge-6]),Se.addEntity(ae[ge-2]),Se.addRelationship(ae[ge-6],ae[ge],ae[ge-2],ae[ge-3]),Se.setClass([ae[ge-6]],ae[ge-4]);break;case 11:Se.addEntity(ae[ge-6]),Se.addEntity(ae[ge-4]),Se.addRelationship(ae[ge-6],ae[ge],ae[ge-4],ae[ge-5]),Se.setClass([ae[ge-4]],ae[ge-2]);break;case 12:Se.addEntity(ae[ge-3]),Se.addAttributes(ae[ge-3],ae[ge-1]);break;case 13:Se.addEntity(ae[ge-5]),Se.addAttributes(ae[ge-5],ae[ge-1]),Se.setClass([ae[ge-5]],ae[ge-3]);break;case 14:Se.addEntity(ae[ge-2]);break;case 15:Se.addEntity(ae[ge-4]),Se.setClass([ae[ge-4]],ae[ge-2]);break;case 16:Se.addEntity(ae[ge]);break;case 17:Se.addEntity(ae[ge-2]),Se.setClass([ae[ge-2]],ae[ge]);break;case 18:Se.addEntity(ae[ge-6],ae[ge-4]),Se.addAttributes(ae[ge-6],ae[ge-1]);break;case 19:Se.addEntity(ae[ge-8],ae[ge-6]),Se.addAttributes(ae[ge-8],ae[ge-1]),Se.setClass([ae[ge-8]],ae[ge-3]);break;case 20:Se.addEntity(ae[ge-5],ae[ge-3]);break;case 21:Se.addEntity(ae[ge-7],ae[ge-5]),Se.setClass([ae[ge-7]],ae[ge-2]);break;case 22:Se.addEntity(ae[ge-3],ae[ge-1]);break;case 23:Se.addEntity(ae[ge-5],ae[ge-3]),Se.setClass([ae[ge-5]],ae[ge]);break;case 24:case 25:this.$=ae[ge].trim(),Se.setAccTitle(this.$);break;case 26:case 27:this.$=ae[ge].trim(),Se.setAccDescription(this.$);break;case 32:Se.setDirection("TB");break;case 33:Se.setDirection("BT");break;case 34:Se.setDirection("RL");break;case 35:Se.setDirection("LR");break;case 36:this.$=ae[ge-3],Se.addClass(ae[ge-2],ae[ge-1]);break;case 37:case 38:case 56:case 64:this.$=[ae[ge]];break;case 39:case 40:this.$=ae[ge-2].concat([ae[ge]]);break;case 41:this.$=ae[ge-2],Se.setClass(ae[ge-1],ae[ge]);break;case 42:this.$=ae[ge-3],Se.addCssStyles(ae[ge-2],ae[ge-1]);break;case 43:this.$=[ae[ge]];break;case 44:ae[ge-2].push(ae[ge]),this.$=ae[ge-2];break;case 46:this.$=ae[ge-1]+ae[ge];break;case 54:case 76:case 77:this.$=ae[ge].replace(/"/g,"");break;case 55:case 78:this.$=ae[ge];break;case 57:ae[ge].push(ae[ge-1]),this.$=ae[ge];break;case 58:this.$={type:ae[ge-1],name:ae[ge]};break;case 59:this.$={type:ae[ge-2],name:ae[ge-1],keys:ae[ge]};break;case 60:this.$={type:ae[ge-2],name:ae[ge-1],comment:ae[ge]};break;case 61:this.$={type:ae[ge-3],name:ae[ge-2],keys:ae[ge-1],comment:ae[ge]};break;case 62:case 63:case 66:this.$=ae[ge];break;case 65:ae[ge-2].push(ae[ge]),this.$=ae[ge-2];break;case 67:this.$=ae[ge].replace(/"/g,"");break;case 68:this.$={cardA:ae[ge],relType:ae[ge-1],cardB:ae[ge-2]};break;case 69:this.$=Se.Cardinality.ZERO_OR_ONE;break;case 70:this.$=Se.Cardinality.ZERO_OR_MORE;break;case 71:this.$=Se.Cardinality.ONE_OR_MORE;break;case 72:this.$=Se.Cardinality.ONLY_ONE;break;case 73:this.$=Se.Cardinality.MD_PARENT;break;case 74:this.$=Se.Identification.NON_IDENTIFYING;break;case 75:this.$=Se.Identification.IDENTIFYING;break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},t(e,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:9,22:r,24:n,26:i,28:a,29:14,30:15,31:16,32:17,33:s,34:l,35:u,36:h,37:f,40:d,43:p,44:m,50:g},t(e,[2,7],{1:[2,1]}),t(e,[2,3]),{9:27,11:9,22:r,24:n,26:i,28:a,29:14,30:15,31:16,32:17,33:s,34:l,35:u,36:h,37:f,40:d,43:p,44:m,50:g},t(e,[2,5]),t(e,[2,6]),t(e,[2,16],{12:28,61:32,15:[1,29],17:[1,30],20:[1,31],63:y,64:v,65:x,66:b,67:w}),{23:[1,38]},{25:[1,39]},{27:[1,40]},t(e,[2,27]),t(e,[2,28]),t(e,[2,29]),t(e,[2,30]),t(e,[2,31]),t(C,[2,54]),t(C,[2,55]),t(e,[2,32]),t(e,[2,33]),t(e,[2,34]),t(e,[2,35]),{16:41,40:T,41:E},{16:44,40:T,41:E},{16:45,40:T,41:E},t(e,[2,4]),{11:46,40:d,50:g},{16:47,40:T,41:E},{18:48,19:[1,49],51:50,52:51,56:A},{11:53,40:d,50:g},{62:54,68:[1,55],69:[1,56]},t(S,[2,69]),t(S,[2,70]),t(S,[2,71]),t(S,[2,72]),t(S,[2,73]),t(e,[2,24]),t(e,[2,25]),t(e,[2,26]),{13:_,38:57,41:I,42:D,45:59,46:60,48:k,49:L},t(R,[2,37]),t(R,[2,38]),{16:65,40:T,41:E,42:D},{13:_,38:66,41:I,42:D,45:59,46:60,48:k,49:L},{13:[1,67],15:[1,68]},t(e,[2,17],{61:32,12:69,17:[1,70],42:D,63:y,64:v,65:x,66:b,67:w}),{19:[1,71]},t(e,[2,14]),{18:72,19:[2,56],51:50,52:51,56:A},{53:73,56:[1,74]},{56:[2,62]},{21:[1,75]},{61:76,63:y,64:v,65:x,66:b,67:w},t(O,[2,74]),t(O,[2,75]),{6:M,10:B,39:77,42:F,47:P},{40:[1,82],41:[1,83]},t(z,[2,43],{46:84,13:_,41:I,48:k,49:L}),t($,[2,45]),t($,[2,50]),t($,[2,51]),t($,[2,52]),t($,[2,53]),t(e,[2,41],{42:D}),{6:M,10:B,39:85,42:F,47:P},{14:86,40:H,50:Q,70:j},{16:90,40:T,41:E},{11:91,40:d,50:g},{18:92,19:[1,93],51:50,52:51,56:A},t(e,[2,12]),{19:[2,57]},t(ie,[2,58],{54:94,55:95,57:96,59:ne,60:le}),t([19,56,59,60],[2,63]),t(e,[2,22],{15:[1,100],17:[1,99]}),t([40,50],[2,68]),t(e,[2,36]),{13:_,41:I,45:101,46:60,48:k,49:L},t(e,[2,47]),t(e,[2,48]),t(e,[2,49]),t(R,[2,39]),t(R,[2,40]),t($,[2,46]),t(e,[2,42]),t(e,[2,8]),t(e,[2,76]),t(e,[2,77]),t(e,[2,78]),{13:[1,102],42:D},{13:[1,104],15:[1,103]},{19:[1,105]},t(e,[2,15]),t(ie,[2,59],{55:106,58:[1,107],60:le}),t(ie,[2,60]),t(he,[2,64]),t(ie,[2,67]),t(he,[2,66]),{18:108,19:[1,109],51:50,52:51,56:A},{16:110,40:T,41:E},t(z,[2,44],{46:84,13:_,41:I,48:k,49:L}),{14:111,40:H,50:Q,70:j},{16:112,40:T,41:E},{14:113,40:H,50:Q,70:j},t(e,[2,13]),t(ie,[2,61]),{57:114,59:ne},{19:[1,115]},t(e,[2,20]),t(e,[2,23],{17:[1,116],42:D}),t(e,[2,11]),{13:[1,117],42:D},t(e,[2,10]),t(he,[2,65]),t(e,[2,18]),{18:118,19:[1,119],51:50,52:51,56:A},{14:120,40:H,50:Q,70:j},{19:[1,121]},t(e,[2,21]),t(e,[2,9]),t(e,[2,19])],defaultActions:{52:[2,62],72:[2,57]},parseError:o(function(se,ue){if(ue.recoverable)this.trace(se);else{var Z=new Error(se);throw Z.hash=ue,Z}},"parseError"),parse:o(function(se){var ue=this,Z=[0],Se=[],ce=[null],ae=[],Oe=this.table,ge="",ze=0,He=0,$e=0,Re=2,Ie=1,be=ae.slice.call(arguments,1),W=Object.create(this.lexer),de={yy:{}};for(var re in this.yy)Object.prototype.hasOwnProperty.call(this.yy,re)&&(de.yy[re]=this.yy[re]);W.setInput(se,de.yy),de.yy.lexer=W,de.yy.parser=this,typeof W.yylloc>"u"&&(W.yylloc={});var oe=W.yylloc;ae.push(oe);var V=W.options&&W.options.ranges;typeof de.yy.parseError=="function"?this.parseError=de.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function xe(ct){Z.length=Z.length-2*ct,ce.length=ce.length-ct,ae.length=ae.length-ct}o(xe,"popStack");function q(){var ct;return ct=Se.pop()||W.lex()||Ie,typeof ct!="number"&&(ct instanceof Array&&(Se=ct,ct=Se.pop()),ct=ue.symbols_[ct]||ct),ct}o(q,"lex");for(var pe,ve,Pe,_e,we,Ve,De={},qe,at,Rt,st;;){if(Pe=Z[Z.length-1],this.defaultActions[Pe]?_e=this.defaultActions[Pe]:((pe===null||typeof pe>"u")&&(pe=q()),_e=Oe[Pe]&&Oe[Pe][pe]),typeof _e>"u"||!_e.length||!_e[0]){var Ue="";st=[];for(qe in Oe[Pe])this.terminals_[qe]&&qe>Re&&st.push("'"+this.terminals_[qe]+"'");W.showPosition?Ue="Parse error on line "+(ze+1)+`: +`+W.showPosition()+` +Expecting `+st.join(", ")+", got '"+(this.terminals_[pe]||pe)+"'":Ue="Parse error on line "+(ze+1)+": Unexpected "+(pe==Ie?"end of input":"'"+(this.terminals_[pe]||pe)+"'"),this.parseError(Ue,{text:W.match,token:this.terminals_[pe]||pe,line:W.yylineno,loc:oe,expected:st})}if(_e[0]instanceof Array&&_e.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Pe+", token: "+pe);switch(_e[0]){case 1:Z.push(pe),ce.push(W.yytext),ae.push(W.yylloc),Z.push(_e[1]),pe=null,ve?(pe=ve,ve=null):(He=W.yyleng,ge=W.yytext,ze=W.yylineno,oe=W.yylloc,$e>0&&$e--);break;case 2:if(at=this.productions_[_e[1]][1],De.$=ce[ce.length-at],De._$={first_line:ae[ae.length-(at||1)].first_line,last_line:ae[ae.length-1].last_line,first_column:ae[ae.length-(at||1)].first_column,last_column:ae[ae.length-1].last_column},V&&(De._$.range=[ae[ae.length-(at||1)].range[0],ae[ae.length-1].range[1]]),Ve=this.performAction.apply(De,[ge,He,ze,de.yy,_e[1],ce,ae].concat(be)),typeof Ve<"u")return Ve;at&&(Z=Z.slice(0,-1*at*2),ce=ce.slice(0,-1*at),ae=ae.slice(0,-1*at)),Z.push(this.productions_[_e[1]][0]),ce.push(De.$),ae.push(De._$),Rt=Oe[Z[Z.length-2]][Z[Z.length-1]],Z.push(Rt);break;case 3:return!0}}return!0},"parse")},X=function(){var J={EOF:1,parseError:o(function(ue,Z){if(this.yy.parser)this.yy.parser.parseError(ue,Z);else throw new Error(ue)},"parseError"),setInput:o(function(se,ue){return this.yy=ue||this.yy||{},this._input=se,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var se=this._input[0];this.yytext+=se,this.yyleng++,this.offset++,this.match+=se,this.matched+=se;var ue=se.match(/(?:\r\n?|\n).*/g);return ue?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),se},"input"),unput:o(function(se){var ue=se.length,Z=se.split(/(?:\r\n?|\n)/g);this._input=se+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-ue),this.offset-=ue;var Se=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Z.length-1&&(this.yylineno-=Z.length-1);var ce=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Z?(Z.length===Se.length?this.yylloc.first_column:0)+Se[Se.length-Z.length].length-Z[0].length:this.yylloc.first_column-ue},this.options.ranges&&(this.yylloc.range=[ce[0],ce[0]+this.yyleng-ue]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(se){this.unput(this.match.slice(se))},"less"),pastInput:o(function(){var se=this.matched.substr(0,this.matched.length-this.match.length);return(se.length>20?"...":"")+se.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var se=this.match;return se.length<20&&(se+=this._input.substr(0,20-se.length)),(se.substr(0,20)+(se.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var se=this.pastInput(),ue=new Array(se.length+1).join("-");return se+this.upcomingInput()+` +`+ue+"^"},"showPosition"),test_match:o(function(se,ue){var Z,Se,ce;if(this.options.backtrack_lexer&&(ce={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(ce.yylloc.range=this.yylloc.range.slice(0))),Se=se[0].match(/(?:\r\n?|\n).*/g),Se&&(this.yylineno+=Se.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Se?Se[Se.length-1].length-Se[Se.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+se[0].length},this.yytext+=se[0],this.match+=se[0],this.matches=se,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(se[0].length),this.matched+=se[0],Z=this.performAction.call(this,this.yy,this,ue,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Z)return Z;if(this._backtrack){for(var ae in ce)this[ae]=ce[ae];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var se,ue,Z,Se;this._more||(this.yytext="",this.match="");for(var ce=this._currentRules(),ae=0;aeue[0].length)){if(ue=Z,Se=ae,this.options.backtrack_lexer){if(se=this.test_match(Z,ce[ae]),se!==!1)return se;if(this._backtrack){ue=!1;continue}else return!1}else if(!this.options.flex)break}return ue?(se=this.test_match(ue,ce[Se]),se!==!1?se:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var ue=this.next();return ue||this.lex()},"lex"),begin:o(function(ue){this.conditionStack.push(ue)},"begin"),popState:o(function(){var ue=this.conditionStack.length-1;return ue>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(ue){return ue=this.conditionStack.length-1-Math.abs(ue||0),ue>=0?this.conditionStack[ue]:"INITIAL"},"topState"),pushState:o(function(ue){this.begin(ue)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(ue,Z,Se,ce){var ae=ce;switch(Se){case 0:return this.begin("acc_title"),24;break;case 1:return this.popState(),"acc_title_value";break;case 2:return this.begin("acc_descr"),26;break;case 3:return this.popState(),"acc_descr_value";break;case 4:this.begin("acc_descr_multiline");break;case 5:this.popState();break;case 6:return"acc_descr_multiline_value";case 7:return 33;case 8:return 34;case 9:return 35;case 10:return 36;case 11:return 10;case 12:break;case 13:return 8;case 14:return 50;case 15:return 70;case 16:return 4;case 17:return this.begin("block"),17;break;case 18:return 49;case 19:return 49;case 20:return 42;case 21:return 15;case 22:return 13;case 23:break;case 24:return 59;case 25:return 56;case 26:return 56;case 27:return 60;case 28:break;case 29:return this.popState(),19;break;case 30:return Z.yytext[0];case 31:return 20;case 32:return 21;case 33:return this.begin("style"),44;break;case 34:return this.popState(),10;break;case 35:break;case 36:return 13;case 37:return 42;case 38:return 49;case 39:return this.begin("style"),37;break;case 40:return 43;case 41:return 63;case 42:return 65;case 43:return 65;case 44:return 65;case 45:return 63;case 46:return 63;case 47:return 64;case 48:return 64;case 49:return 64;case 50:return 64;case 51:return 64;case 52:return 65;case 53:return 64;case 54:return 65;case 55:return 66;case 56:return 66;case 57:return 66;case 58:return 66;case 59:return 63;case 60:return 64;case 61:return 65;case 62:return 67;case 63:return 68;case 64:return 69;case 65:return 69;case 66:return 68;case 67:return 68;case 68:return 68;case 69:return 41;case 70:return 47;case 71:return 40;case 72:return 48;case 73:return Z.yytext[0];case 74:return 6}},"anonymous"),rules:[/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:[\s]+)/i,/^(?:"[^"%\r\n\v\b\\]+")/i,/^(?:"[^"]*")/i,/^(?:erDiagram\b)/i,/^(?:\{)/i,/^(?:#)/i,/^(?:#)/i,/^(?:,)/i,/^(?::::)/i,/^(?::)/i,/^(?:\s+)/i,/^(?:\b((?:PK)|(?:FK)|(?:UK))\b)/i,/^(?:([^\s]*)[~].*[~]([^\s]*))/i,/^(?:([\*A-Za-z_\u00C0-\uFFFF][A-Za-z0-9\-\_\[\]\(\)\u00C0-\uFFFF\*]*))/i,/^(?:"[^"]*")/i,/^(?:[\n]+)/i,/^(?:\})/i,/^(?:.)/i,/^(?:\[)/i,/^(?:\])/i,/^(?:style\b)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?::)/i,/^(?:,)/i,/^(?:#)/i,/^(?:classDef\b)/i,/^(?:class\b)/i,/^(?:one or zero\b)/i,/^(?:one or more\b)/i,/^(?:one or many\b)/i,/^(?:1\+)/i,/^(?:\|o\b)/i,/^(?:zero or one\b)/i,/^(?:zero or more\b)/i,/^(?:zero or many\b)/i,/^(?:0\+)/i,/^(?:\}o\b)/i,/^(?:many\(0\))/i,/^(?:many\(1\))/i,/^(?:many\b)/i,/^(?:\}\|)/i,/^(?:one\b)/i,/^(?:only one\b)/i,/^(?:1\b)/i,/^(?:\|\|)/i,/^(?:o\|)/i,/^(?:o\{)/i,/^(?:\|\{)/i,/^(?:\s*u\b)/i,/^(?:\.\.)/i,/^(?:--)/i,/^(?:to\b)/i,/^(?:optionally to\b)/i,/^(?:\.-)/i,/^(?:-\.)/i,/^(?:([^\x00-\x7F]|\w|-|\*)+)/i,/^(?:;)/i,/^(?:([^\x00-\x7F]|\w|-|\*)+)/i,/^(?:[0-9])/i,/^(?:.)/i,/^(?:$)/i],conditions:{style:{rules:[34,35,36,37,38,69,70],inclusive:!1},acc_descr_multiline:{rules:[5,6],inclusive:!1},acc_descr:{rules:[3],inclusive:!1},acc_title:{rules:[1],inclusive:!1},block:{rules:[23,24,25,26,27,28,29,30],inclusive:!1},INITIAL:{rules:[0,2,4,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,31,32,33,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74],inclusive:!0}}};return J}();K.lexer=X;function te(){this.yy={}}return o(te,"Parser"),te.prototype=K,K.Parser=te,new te}();wR.parser=wR;Zie=wR});var sk,eae=N(()=>{"use strict";vt();zt();mi();ir();sk=class{constructor(){this.entities=new Map;this.relationships=[];this.classes=new Map;this.direction="TB";this.Cardinality={ZERO_OR_ONE:"ZERO_OR_ONE",ZERO_OR_MORE:"ZERO_OR_MORE",ONE_OR_MORE:"ONE_OR_MORE",ONLY_ONE:"ONLY_ONE",MD_PARENT:"MD_PARENT"};this.Identification={NON_IDENTIFYING:"NON_IDENTIFYING",IDENTIFYING:"IDENTIFYING"};this.setAccTitle=Lr;this.getAccTitle=Rr;this.setAccDescription=Nr;this.getAccDescription=Mr;this.setDiagramTitle=$r;this.getDiagramTitle=Ir;this.getConfig=o(()=>me().er,"getConfig");this.clear(),this.addEntity=this.addEntity.bind(this),this.addAttributes=this.addAttributes.bind(this),this.addRelationship=this.addRelationship.bind(this),this.setDirection=this.setDirection.bind(this),this.addCssStyles=this.addCssStyles.bind(this),this.addClass=this.addClass.bind(this),this.setClass=this.setClass.bind(this),this.setAccTitle=this.setAccTitle.bind(this),this.setAccDescription=this.setAccDescription.bind(this)}static{o(this,"ErDB")}addEntity(e,r=""){return this.entities.has(e)?!this.entities.get(e)?.alias&&r&&(this.entities.get(e).alias=r,Y.info(`Add alias '${r}' to entity '${e}'`)):(this.entities.set(e,{id:`entity-${e}-${this.entities.size}`,label:e,attributes:[],alias:r,shape:"erBox",look:me().look??"default",cssClasses:"default",cssStyles:[]}),Y.info("Added new entity :",e)),this.entities.get(e)}getEntity(e){return this.entities.get(e)}getEntities(){return this.entities}getClasses(){return this.classes}addAttributes(e,r){let n=this.addEntity(e),i;for(i=r.length-1;i>=0;i--)r[i].keys||(r[i].keys=[]),r[i].comment||(r[i].comment=""),n.attributes.push(r[i]),Y.debug("Added attribute ",r[i].name)}addRelationship(e,r,n,i){let a=this.entities.get(e),s=this.entities.get(n);if(!a||!s)return;let l={entityA:a.id,roleA:r,entityB:s.id,relSpec:i};this.relationships.push(l),Y.debug("Added new relationship :",l)}getRelationships(){return this.relationships}getDirection(){return this.direction}setDirection(e){this.direction=e}getCompiledStyles(e){let r=[];for(let n of e){let i=this.classes.get(n);i?.styles&&(r=[...r,...i.styles??[]].map(a=>a.trim())),i?.textStyles&&(r=[...r,...i.textStyles??[]].map(a=>a.trim()))}return r}addCssStyles(e,r){for(let n of e){let i=this.entities.get(n);if(!r||!i)return;for(let a of r)i.cssStyles.push(a)}}addClass(e,r){e.forEach(n=>{let i=this.classes.get(n);i===void 0&&(i={id:n,styles:[],textStyles:[]},this.classes.set(n,i)),r&&r.forEach(function(a){if(/color/.exec(a)){let s=a.replace("fill","bgFill");i.textStyles.push(s)}i.styles.push(a)})})}setClass(e,r){for(let n of e){let i=this.entities.get(n);if(i)for(let a of r)i.cssClasses+=" "+a}}clear(){this.entities=new Map,this.classes=new Map,this.relationships=[],Ar()}getData(){let e=[],r=[],n=me();for(let a of this.entities.keys()){let s=this.entities.get(a);s&&(s.cssCompiledStyles=this.getCompiledStyles(s.cssClasses.split(" ")),e.push(s))}let i=0;for(let a of this.relationships){let s={id:$h(a.entityA,a.entityB,{prefix:"id",counter:i++}),type:"normal",curve:"basis",start:a.entityA,end:a.entityB,label:a.roleA,labelpos:"c",thickness:"normal",classes:"relationshipLine",arrowTypeStart:a.relSpec.cardB.toLowerCase(),arrowTypeEnd:a.relSpec.cardA.toLowerCase(),pattern:a.relSpec.relType=="IDENTIFYING"?"solid":"dashed",look:n.look};r.push(s)}return{nodes:e,edges:r,other:{},config:n,direction:"TB"}}}});var TR={};hr(TR,{draw:()=>SOe});var SOe,tae=N(()=>{"use strict";zt();vt();gm();Yd();$m();ir();dr();SOe=o(async function(t,e,r,n){Y.info("REF0:"),Y.info("Drawing er diagram (unified)",e);let{securityLevel:i,er:a,layout:s}=me(),l=n.db.getData(),u=yc(e,i);l.type=n.type,l.layoutAlgorithm=nf(s),l.config.flowchart.nodeSpacing=a?.nodeSpacing||140,l.config.flowchart.rankSpacing=a?.rankSpacing||80,l.direction=n.db.getDirection(),l.markers=["only_one","zero_or_one","one_or_more","zero_or_more"],l.diagramId=e,await Cc(l,u),l.layoutAlgorithm==="elk"&&u.select(".edges").lower();let h=u.selectAll('[id*="-background"]');Array.from(h).length>0&&h.each(function(){let d=Ge(this),m=d.attr("id").replace("-background",""),g=u.select(`#${CSS.escape(m)}`);if(!g.empty()){let y=g.attr("transform");d.attr("transform",y)}});let f=8;Gt.insertTitle(u,"erDiagramTitleText",a?.titleTopMargin??25,n.db.getDiagramTitle()),Ac(u,f,"erDiagram",a?.useMaxWidth??!0)},"draw")});var COe,AOe,rae,nae=N(()=>{"use strict";Ys();COe=o((t,e)=>{let r=Kf,n=r(t,"r"),i=r(t,"g"),a=r(t,"b");return qa(n,i,a,e)},"fade"),AOe=o(t=>` + .entityBox { + fill: ${t.mainBkg}; + stroke: ${t.nodeBorder}; + } + + .relationshipLabelBox { + fill: ${t.tertiaryColor}; + opacity: 0.7; + background-color: ${t.tertiaryColor}; + rect { + opacity: 0.5; + } + } + + .labelBkg { + background-color: ${COe(t.tertiaryColor,.5)}; + } + + .edgeLabel .label { + fill: ${t.nodeBorder}; + font-size: 14px; + } + + .label { + font-family: ${t.fontFamily}; + color: ${t.nodeTextColor||t.textColor}; + } + + .edge-pattern-dashed { + stroke-dasharray: 8,8; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon + { + fill: ${t.mainBkg}; + stroke: ${t.nodeBorder}; + stroke-width: 1px; + } + + .relationshipLine { + stroke: ${t.lineColor}; + stroke-width: 1; + fill: none; + } + + .marker { + fill: none !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; + } +`,"getStyles"),rae=AOe});var iae={};hr(iae,{diagram:()=>_Oe});var _Oe,aae=N(()=>{"use strict";Jie();eae();tae();nae();_Oe={parser:Zie,get db(){return new sk},renderer:TR,styles:rae}});function ii(t){return typeof t=="object"&&t!==null&&typeof t.$type=="string"}function va(t){return typeof t=="object"&&t!==null&&typeof t.$refText=="string"}function kR(t){return typeof t=="object"&&t!==null&&typeof t.name=="string"&&typeof t.type=="string"&&typeof t.path=="string"}function jd(t){return typeof t=="object"&&t!==null&&ii(t.container)&&va(t.reference)&&typeof t.message=="string"}function Ll(t){return typeof t=="object"&&t!==null&&Array.isArray(t.content)}function af(t){return typeof t=="object"&&t!==null&&typeof t.tokenType=="object"}function M2(t){return Ll(t)&&typeof t.fullText=="string"}var Xd,Rl=N(()=>{"use strict";o(ii,"isAstNode");o(va,"isReference");o(kR,"isAstNodeDescription");o(jd,"isLinkingError");Xd=class{static{o(this,"AbstractAstReflection")}constructor(){this.subtypes={},this.allSubtypes={}}isInstance(e,r){return ii(e)&&this.isSubtype(e.$type,r)}isSubtype(e,r){if(e===r)return!0;let n=this.subtypes[e];n||(n=this.subtypes[e]={});let i=n[r];if(i!==void 0)return i;{let a=this.computeIsSubtype(e,r);return n[r]=a,a}}getAllSubTypes(e){let r=this.allSubtypes[e];if(r)return r;{let n=this.getAllTypes(),i=[];for(let a of n)this.isSubtype(a,e)&&i.push(a);return this.allSubtypes[e]=i,i}}};o(Ll,"isCompositeCstNode");o(af,"isLeafCstNode");o(M2,"isRootCstNode")});function NOe(t){return typeof t=="string"?t:typeof t>"u"?"undefined":typeof t.toString=="function"?t.toString():Object.prototype.toString.call(t)}function ok(t){return!!t&&typeof t[Symbol.iterator]=="function"}function en(...t){if(t.length===1){let e=t[0];if(e instanceof ao)return e;if(ok(e))return new ao(()=>e[Symbol.iterator](),r=>r.next());if(typeof e.length=="number")return new ao(()=>({index:0}),r=>r.index1?new ao(()=>({collIndex:0,arrIndex:0}),e=>{do{if(e.iterator){let r=e.iterator.next();if(!r.done)return r;e.iterator=void 0}if(e.array){if(e.arrIndex{"use strict";ao=class t{static{o(this,"StreamImpl")}constructor(e,r){this.startFn=e,this.nextFn=r}iterator(){let e={state:this.startFn(),next:o(()=>this.nextFn(e.state),"next"),[Symbol.iterator]:()=>e};return e}[Symbol.iterator](){return this.iterator()}isEmpty(){return!!this.iterator().next().done}count(){let e=this.iterator(),r=0,n=e.next();for(;!n.done;)r++,n=e.next();return r}toArray(){let e=[],r=this.iterator(),n;do n=r.next(),n.value!==void 0&&e.push(n.value);while(!n.done);return e}toSet(){return new Set(this)}toMap(e,r){let n=this.map(i=>[e?e(i):i,r?r(i):i]);return new Map(n)}toString(){return this.join()}concat(e){return new t(()=>({first:this.startFn(),firstDone:!1,iterator:e[Symbol.iterator]()}),r=>{let n;if(!r.firstDone){do if(n=this.nextFn(r.first),!n.done)return n;while(!n.done);r.firstDone=!0}do if(n=r.iterator.next(),!n.done)return n;while(!n.done);return Ia})}join(e=","){let r=this.iterator(),n="",i,a=!1;do i=r.next(),i.done||(a&&(n+=e),n+=NOe(i.value)),a=!0;while(!i.done);return n}indexOf(e,r=0){let n=this.iterator(),i=0,a=n.next();for(;!a.done;){if(i>=r&&a.value===e)return i;a=n.next(),i++}return-1}every(e){let r=this.iterator(),n=r.next();for(;!n.done;){if(!e(n.value))return!1;n=r.next()}return!0}some(e){let r=this.iterator(),n=r.next();for(;!n.done;){if(e(n.value))return!0;n=r.next()}return!1}forEach(e){let r=this.iterator(),n=0,i=r.next();for(;!i.done;)e(i.value,n),i=r.next(),n++}map(e){return new t(this.startFn,r=>{let{done:n,value:i}=this.nextFn(r);return n?Ia:{done:!1,value:e(i)}})}filter(e){return new t(this.startFn,r=>{let n;do if(n=this.nextFn(r),!n.done&&e(n.value))return n;while(!n.done);return Ia})}nonNullable(){return this.filter(e=>e!=null)}reduce(e,r){let n=this.iterator(),i=r,a=n.next();for(;!a.done;)i===void 0?i=a.value:i=e(i,a.value),a=n.next();return i}reduceRight(e,r){return this.recursiveReduce(this.iterator(),e,r)}recursiveReduce(e,r,n){let i=e.next();if(i.done)return n;let a=this.recursiveReduce(e,r,n);return a===void 0?i.value:r(a,i.value)}find(e){let r=this.iterator(),n=r.next();for(;!n.done;){if(e(n.value))return n.value;n=r.next()}}findIndex(e){let r=this.iterator(),n=0,i=r.next();for(;!i.done;){if(e(i.value))return n;i=r.next(),n++}return-1}includes(e){let r=this.iterator(),n=r.next();for(;!n.done;){if(n.value===e)return!0;n=r.next()}return!1}flatMap(e){return new t(()=>({this:this.startFn()}),r=>{do{if(r.iterator){let a=r.iterator.next();if(a.done)r.iterator=void 0;else return a}let{done:n,value:i}=this.nextFn(r.this);if(!n){let a=e(i);if(ok(a))r.iterator=a[Symbol.iterator]();else return{done:!1,value:a}}}while(r.iterator);return Ia})}flat(e){if(e===void 0&&(e=1),e<=0)return this;let r=e>1?this.flat(e-1):this;return new t(()=>({this:r.startFn()}),n=>{do{if(n.iterator){let s=n.iterator.next();if(s.done)n.iterator=void 0;else return s}let{done:i,value:a}=r.nextFn(n.this);if(!i)if(ok(a))n.iterator=a[Symbol.iterator]();else return{done:!1,value:a}}while(n.iterator);return Ia})}head(){let r=this.iterator().next();if(!r.done)return r.value}tail(e=1){return new t(()=>{let r=this.startFn();for(let n=0;n({size:0,state:this.startFn()}),r=>(r.size++,r.size>e?Ia:this.nextFn(r.state)))}distinct(e){return new t(()=>({set:new Set,internalState:this.startFn()}),r=>{let n;do if(n=this.nextFn(r.internalState),!n.done){let i=e?e(n.value):n.value;if(!r.set.has(i))return r.set.add(i),n}while(!n.done);return Ia})}exclude(e,r){let n=new Set;for(let i of e){let a=r?r(i):i;n.add(a)}return this.filter(i=>{let a=r?r(i):i;return!n.has(a)})}};o(NOe,"toString");o(ok,"isIterable");I2=new ao(()=>{},()=>Ia),Ia=Object.freeze({done:!0,value:void 0});o(en,"stream");_c=class extends ao{static{o(this,"TreeStreamImpl")}constructor(e,r,n){super(()=>({iterators:n?.includeRoot?[[e][Symbol.iterator]()]:[r(e)[Symbol.iterator]()],pruned:!1}),i=>{for(i.pruned&&(i.iterators.pop(),i.pruned=!1);i.iterators.length>0;){let s=i.iterators[i.iterators.length-1].next();if(s.done)i.iterators.pop();else return i.iterators.push(r(s.value)[Symbol.iterator]()),s}return Ia})}iterator(){let e={state:this.startFn(),next:o(()=>this.nextFn(e.state),"next"),prune:o(()=>{e.state.pruned=!0},"prune"),[Symbol.iterator]:()=>e};return e}};(function(t){function e(a){return a.reduce((s,l)=>s+l,0)}o(e,"sum"),t.sum=e;function r(a){return a.reduce((s,l)=>s*l,0)}o(r,"product"),t.product=r;function n(a){return a.reduce((s,l)=>Math.min(s,l))}o(n,"min"),t.min=n;function i(a){return a.reduce((s,l)=>Math.max(s,l))}o(i,"max"),t.max=i})(zm||(zm={}))});var ck={};hr(ck,{DefaultNameRegexp:()=>lk,RangeComparison:()=>Dc,compareRange:()=>cae,findCommentNode:()=>AR,findDeclarationNodeAtOffset:()=>IOe,findLeafNodeAtOffset:()=>_R,findLeafNodeBeforeOffset:()=>uae,flattenCst:()=>MOe,getInteriorNodes:()=>BOe,getNextNode:()=>OOe,getPreviousNode:()=>fae,getStartlineNode:()=>POe,inRange:()=>CR,isChildNode:()=>SR,isCommentNode:()=>ER,streamCst:()=>Kd,toDocumentSegment:()=>Qd,tokenToRange:()=>Gm});function Kd(t){return new _c(t,e=>Ll(e)?e.content:[],{includeRoot:!0})}function MOe(t){return Kd(t).filter(af)}function SR(t,e){for(;t.container;)if(t=t.container,t===e)return!0;return!1}function Gm(t){return{start:{character:t.startColumn-1,line:t.startLine-1},end:{character:t.endColumn,line:t.endLine-1}}}function Qd(t){if(!t)return;let{offset:e,end:r,range:n}=t;return{range:n,offset:e,end:r,length:r-e}}function cae(t,e){if(t.end.linee.end.line||t.start.line===e.end.line&&t.start.character>=e.end.character)return Dc.After;let r=t.start.line>e.start.line||t.start.line===e.start.line&&t.start.character>=e.start.character,n=t.end.lineDc.After}function IOe(t,e,r=lk){if(t){if(e>0){let n=e-t.offset,i=t.text.charAt(n);r.test(i)||e--}return _R(t,e)}}function AR(t,e){if(t){let r=fae(t,!0);if(r&&ER(r,e))return r;if(M2(t)){let n=t.content.findIndex(i=>!i.hidden);for(let i=n-1;i>=0;i--){let a=t.content[i];if(ER(a,e))return a}}}}function ER(t,e){return af(t)&&e.includes(t.tokenType.name)}function _R(t,e){if(af(t))return t;if(Ll(t)){let r=hae(t,e,!1);if(r)return _R(r,e)}}function uae(t,e){if(af(t))return t;if(Ll(t)){let r=hae(t,e,!0);if(r)return uae(r,e)}}function hae(t,e,r){let n=0,i=t.content.length-1,a;for(;n<=i;){let s=Math.floor((n+i)/2),l=t.content[s];if(l.offset<=e&&l.end>e)return l;l.end<=e?(a=r?l:void 0,n=s+1):i=s-1}return a}function fae(t,e=!0){for(;t.container;){let r=t.container,n=r.content.indexOf(t);for(;n>0;){n--;let i=r.content[n];if(e||!i.hidden)return i}t=r}}function OOe(t,e=!0){for(;t.container;){let r=t.container,n=r.content.indexOf(t),i=r.content.length-1;for(;n{"use strict";Rl();Ps();o(Kd,"streamCst");o(MOe,"flattenCst");o(SR,"isChildNode");o(Gm,"tokenToRange");o(Qd,"toDocumentSegment");(function(t){t[t.Before=0]="Before",t[t.After=1]="After",t[t.OverlapFront=2]="OverlapFront",t[t.OverlapBack=3]="OverlapBack",t[t.Inside=4]="Inside",t[t.Outside=5]="Outside"})(Dc||(Dc={}));o(cae,"compareRange");o(CR,"inRange");lk=/^[\w\p{L}]$/u;o(IOe,"findDeclarationNodeAtOffset");o(AR,"findCommentNode");o(ER,"isCommentNode");o(_R,"findLeafNodeAtOffset");o(uae,"findLeafNodeBeforeOffset");o(hae,"binarySearch");o(fae,"getPreviousNode");o(OOe,"getNextNode");o(POe,"getStartlineNode");o(BOe,"getInteriorNodes");o(FOe,"getCommonParent");o(lae,"getParentChain")});function Lc(t){throw new Error("Error! The input value was not handled.")}var Zd,uk=N(()=>{"use strict";Zd=class extends Error{static{o(this,"ErrorWithLocation")}constructor(e,r){super(e?`${r} at ${e.range.start.line}:${e.range.start.character}`:r)}};o(Lc,"assertUnreachable")});var U2={};hr(U2,{AbstractElement:()=>Hm,AbstractRule:()=>Vm,AbstractType:()=>Um,Action:()=>cg,Alternatives:()=>ug,ArrayLiteral:()=>Wm,ArrayType:()=>qm,Assignment:()=>hg,BooleanLiteral:()=>Ym,CharacterRange:()=>fg,Condition:()=>O2,Conjunction:()=>Xm,CrossReference:()=>dg,Disjunction:()=>jm,EndOfFile:()=>pg,Grammar:()=>Km,GrammarImport:()=>B2,Group:()=>mg,InferredType:()=>Qm,Interface:()=>Zm,Keyword:()=>gg,LangiumGrammarAstReflection:()=>Cg,LangiumGrammarTerminals:()=>$Oe,NamedArgument:()=>F2,NegatedToken:()=>yg,Negation:()=>Jm,NumberLiteral:()=>eg,Parameter:()=>tg,ParameterReference:()=>rg,ParserRule:()=>ng,ReferenceType:()=>ig,RegexToken:()=>vg,ReturnType:()=>$2,RuleCall:()=>xg,SimpleType:()=>ag,StringLiteral:()=>sg,TerminalAlternatives:()=>bg,TerminalGroup:()=>wg,TerminalRule:()=>Jd,TerminalRuleCall:()=>Tg,Type:()=>og,TypeAttribute:()=>z2,TypeDefinition:()=>hk,UnionType:()=>lg,UnorderedGroup:()=>kg,UntilToken:()=>Eg,ValueLiteral:()=>P2,Wildcard:()=>Sg,isAbstractElement:()=>G2,isAbstractRule:()=>zOe,isAbstractType:()=>GOe,isAction:()=>Mu,isAlternatives:()=>mk,isArrayLiteral:()=>qOe,isArrayType:()=>DR,isAssignment:()=>Ml,isBooleanLiteral:()=>LR,isCharacterRange:()=>FR,isCondition:()=>VOe,isConjunction:()=>RR,isCrossReference:()=>ep,isDisjunction:()=>NR,isEndOfFile:()=>$R,isFeatureName:()=>UOe,isGrammar:()=>YOe,isGrammarImport:()=>XOe,isGroup:()=>sf,isInferredType:()=>fk,isInterface:()=>dk,isKeyword:()=>Ho,isNamedArgument:()=>jOe,isNegatedToken:()=>zR,isNegation:()=>MR,isNumberLiteral:()=>KOe,isParameter:()=>QOe,isParameterReference:()=>IR,isParserRule:()=>Oa,isPrimitiveType:()=>dae,isReferenceType:()=>OR,isRegexToken:()=>GR,isReturnType:()=>PR,isRuleCall:()=>Il,isSimpleType:()=>pk,isStringLiteral:()=>ZOe,isTerminalAlternatives:()=>VR,isTerminalGroup:()=>UR,isTerminalRule:()=>so,isTerminalRuleCall:()=>gk,isType:()=>V2,isTypeAttribute:()=>JOe,isTypeDefinition:()=>HOe,isUnionType:()=>BR,isUnorderedGroup:()=>yk,isUntilToken:()=>HR,isValueLiteral:()=>WOe,isWildcard:()=>WR,reflection:()=>lr});function zOe(t){return lr.isInstance(t,Vm)}function GOe(t){return lr.isInstance(t,Um)}function VOe(t){return lr.isInstance(t,O2)}function UOe(t){return dae(t)||t==="current"||t==="entry"||t==="extends"||t==="false"||t==="fragment"||t==="grammar"||t==="hidden"||t==="import"||t==="interface"||t==="returns"||t==="terminal"||t==="true"||t==="type"||t==="infer"||t==="infers"||t==="with"||typeof t=="string"&&/\^?[_a-zA-Z][\w_]*/.test(t)}function dae(t){return t==="string"||t==="number"||t==="boolean"||t==="Date"||t==="bigint"}function HOe(t){return lr.isInstance(t,hk)}function WOe(t){return lr.isInstance(t,P2)}function G2(t){return lr.isInstance(t,Hm)}function qOe(t){return lr.isInstance(t,Wm)}function DR(t){return lr.isInstance(t,qm)}function LR(t){return lr.isInstance(t,Ym)}function RR(t){return lr.isInstance(t,Xm)}function NR(t){return lr.isInstance(t,jm)}function YOe(t){return lr.isInstance(t,Km)}function XOe(t){return lr.isInstance(t,B2)}function fk(t){return lr.isInstance(t,Qm)}function dk(t){return lr.isInstance(t,Zm)}function jOe(t){return lr.isInstance(t,F2)}function MR(t){return lr.isInstance(t,Jm)}function KOe(t){return lr.isInstance(t,eg)}function QOe(t){return lr.isInstance(t,tg)}function IR(t){return lr.isInstance(t,rg)}function Oa(t){return lr.isInstance(t,ng)}function OR(t){return lr.isInstance(t,ig)}function PR(t){return lr.isInstance(t,$2)}function pk(t){return lr.isInstance(t,ag)}function ZOe(t){return lr.isInstance(t,sg)}function so(t){return lr.isInstance(t,Jd)}function V2(t){return lr.isInstance(t,og)}function JOe(t){return lr.isInstance(t,z2)}function BR(t){return lr.isInstance(t,lg)}function Mu(t){return lr.isInstance(t,cg)}function mk(t){return lr.isInstance(t,ug)}function Ml(t){return lr.isInstance(t,hg)}function FR(t){return lr.isInstance(t,fg)}function ep(t){return lr.isInstance(t,dg)}function $R(t){return lr.isInstance(t,pg)}function sf(t){return lr.isInstance(t,mg)}function Ho(t){return lr.isInstance(t,gg)}function zR(t){return lr.isInstance(t,yg)}function GR(t){return lr.isInstance(t,vg)}function Il(t){return lr.isInstance(t,xg)}function VR(t){return lr.isInstance(t,bg)}function UR(t){return lr.isInstance(t,wg)}function gk(t){return lr.isInstance(t,Tg)}function yk(t){return lr.isInstance(t,kg)}function HR(t){return lr.isInstance(t,Eg)}function WR(t){return lr.isInstance(t,Sg)}var $Oe,Vm,Um,O2,hk,P2,Hm,Wm,qm,Ym,Xm,jm,Km,B2,Qm,Zm,F2,Jm,eg,tg,rg,ng,ig,$2,ag,sg,Jd,og,z2,lg,cg,ug,hg,fg,dg,pg,mg,gg,yg,vg,xg,bg,wg,Tg,kg,Eg,Sg,Cg,lr,Rc=N(()=>{"use strict";Rl();$Oe={ID:/\^?[_a-zA-Z][\w_]*/,STRING:/"(\\.|[^"\\])*"|'(\\.|[^'\\])*'/,NUMBER:/NaN|-?((\d*\.\d+|\d+)([Ee][+-]?\d+)?|Infinity)/,RegexLiteral:/\/(?![*+?])(?:[^\r\n\[/\\]|\\.|\[(?:[^\r\n\]\\]|\\.)*\])+\/[a-z]*/,WS:/\s+/,ML_COMMENT:/\/\*[\s\S]*?\*\//,SL_COMMENT:/\/\/[^\n\r]*/},Vm="AbstractRule";o(zOe,"isAbstractRule");Um="AbstractType";o(GOe,"isAbstractType");O2="Condition";o(VOe,"isCondition");o(UOe,"isFeatureName");o(dae,"isPrimitiveType");hk="TypeDefinition";o(HOe,"isTypeDefinition");P2="ValueLiteral";o(WOe,"isValueLiteral");Hm="AbstractElement";o(G2,"isAbstractElement");Wm="ArrayLiteral";o(qOe,"isArrayLiteral");qm="ArrayType";o(DR,"isArrayType");Ym="BooleanLiteral";o(LR,"isBooleanLiteral");Xm="Conjunction";o(RR,"isConjunction");jm="Disjunction";o(NR,"isDisjunction");Km="Grammar";o(YOe,"isGrammar");B2="GrammarImport";o(XOe,"isGrammarImport");Qm="InferredType";o(fk,"isInferredType");Zm="Interface";o(dk,"isInterface");F2="NamedArgument";o(jOe,"isNamedArgument");Jm="Negation";o(MR,"isNegation");eg="NumberLiteral";o(KOe,"isNumberLiteral");tg="Parameter";o(QOe,"isParameter");rg="ParameterReference";o(IR,"isParameterReference");ng="ParserRule";o(Oa,"isParserRule");ig="ReferenceType";o(OR,"isReferenceType");$2="ReturnType";o(PR,"isReturnType");ag="SimpleType";o(pk,"isSimpleType");sg="StringLiteral";o(ZOe,"isStringLiteral");Jd="TerminalRule";o(so,"isTerminalRule");og="Type";o(V2,"isType");z2="TypeAttribute";o(JOe,"isTypeAttribute");lg="UnionType";o(BR,"isUnionType");cg="Action";o(Mu,"isAction");ug="Alternatives";o(mk,"isAlternatives");hg="Assignment";o(Ml,"isAssignment");fg="CharacterRange";o(FR,"isCharacterRange");dg="CrossReference";o(ep,"isCrossReference");pg="EndOfFile";o($R,"isEndOfFile");mg="Group";o(sf,"isGroup");gg="Keyword";o(Ho,"isKeyword");yg="NegatedToken";o(zR,"isNegatedToken");vg="RegexToken";o(GR,"isRegexToken");xg="RuleCall";o(Il,"isRuleCall");bg="TerminalAlternatives";o(VR,"isTerminalAlternatives");wg="TerminalGroup";o(UR,"isTerminalGroup");Tg="TerminalRuleCall";o(gk,"isTerminalRuleCall");kg="UnorderedGroup";o(yk,"isUnorderedGroup");Eg="UntilToken";o(HR,"isUntilToken");Sg="Wildcard";o(WR,"isWildcard");Cg=class extends Xd{static{o(this,"LangiumGrammarAstReflection")}getAllTypes(){return[Hm,Vm,Um,cg,ug,Wm,qm,hg,Ym,fg,O2,Xm,dg,jm,pg,Km,B2,mg,Qm,Zm,gg,F2,yg,Jm,eg,tg,rg,ng,ig,vg,$2,xg,ag,sg,bg,wg,Jd,Tg,og,z2,hk,lg,kg,Eg,P2,Sg]}computeIsSubtype(e,r){switch(e){case cg:case ug:case hg:case fg:case dg:case pg:case mg:case gg:case yg:case vg:case xg:case bg:case wg:case Tg:case kg:case Eg:case Sg:return this.isSubtype(Hm,r);case Wm:case eg:case sg:return this.isSubtype(P2,r);case qm:case ig:case ag:case lg:return this.isSubtype(hk,r);case Ym:return this.isSubtype(O2,r)||this.isSubtype(P2,r);case Xm:case jm:case Jm:case rg:return this.isSubtype(O2,r);case Qm:case Zm:case og:return this.isSubtype(Um,r);case ng:return this.isSubtype(Vm,r)||this.isSubtype(Um,r);case Jd:return this.isSubtype(Vm,r);default:return!1}}getReferenceType(e){let r=`${e.container.$type}:${e.property}`;switch(r){case"Action:type":case"CrossReference:type":case"Interface:superTypes":case"ParserRule:returnType":case"SimpleType:typeRef":return Um;case"Grammar:hiddenTokens":case"ParserRule:hiddenTokens":case"RuleCall:rule":return Vm;case"Grammar:usedGrammars":return Km;case"NamedArgument:parameter":case"ParameterReference:parameter":return tg;case"TerminalRuleCall:rule":return Jd;default:throw new Error(`${r} is not a valid reference id.`)}}getTypeMetaData(e){switch(e){case Hm:return{name:Hm,properties:[{name:"cardinality"},{name:"lookahead"}]};case Wm:return{name:Wm,properties:[{name:"elements",defaultValue:[]}]};case qm:return{name:qm,properties:[{name:"elementType"}]};case Ym:return{name:Ym,properties:[{name:"true",defaultValue:!1}]};case Xm:return{name:Xm,properties:[{name:"left"},{name:"right"}]};case jm:return{name:jm,properties:[{name:"left"},{name:"right"}]};case Km:return{name:Km,properties:[{name:"definesHiddenTokens",defaultValue:!1},{name:"hiddenTokens",defaultValue:[]},{name:"imports",defaultValue:[]},{name:"interfaces",defaultValue:[]},{name:"isDeclared",defaultValue:!1},{name:"name"},{name:"rules",defaultValue:[]},{name:"types",defaultValue:[]},{name:"usedGrammars",defaultValue:[]}]};case B2:return{name:B2,properties:[{name:"path"}]};case Qm:return{name:Qm,properties:[{name:"name"}]};case Zm:return{name:Zm,properties:[{name:"attributes",defaultValue:[]},{name:"name"},{name:"superTypes",defaultValue:[]}]};case F2:return{name:F2,properties:[{name:"calledByName",defaultValue:!1},{name:"parameter"},{name:"value"}]};case Jm:return{name:Jm,properties:[{name:"value"}]};case eg:return{name:eg,properties:[{name:"value"}]};case tg:return{name:tg,properties:[{name:"name"}]};case rg:return{name:rg,properties:[{name:"parameter"}]};case ng:return{name:ng,properties:[{name:"dataType"},{name:"definesHiddenTokens",defaultValue:!1},{name:"definition"},{name:"entry",defaultValue:!1},{name:"fragment",defaultValue:!1},{name:"hiddenTokens",defaultValue:[]},{name:"inferredType"},{name:"name"},{name:"parameters",defaultValue:[]},{name:"returnType"},{name:"wildcard",defaultValue:!1}]};case ig:return{name:ig,properties:[{name:"referenceType"}]};case $2:return{name:$2,properties:[{name:"name"}]};case ag:return{name:ag,properties:[{name:"primitiveType"},{name:"stringType"},{name:"typeRef"}]};case sg:return{name:sg,properties:[{name:"value"}]};case Jd:return{name:Jd,properties:[{name:"definition"},{name:"fragment",defaultValue:!1},{name:"hidden",defaultValue:!1},{name:"name"},{name:"type"}]};case og:return{name:og,properties:[{name:"name"},{name:"type"}]};case z2:return{name:z2,properties:[{name:"defaultValue"},{name:"isOptional",defaultValue:!1},{name:"name"},{name:"type"}]};case lg:return{name:lg,properties:[{name:"types",defaultValue:[]}]};case cg:return{name:cg,properties:[{name:"cardinality"},{name:"feature"},{name:"inferredType"},{name:"lookahead"},{name:"operator"},{name:"type"}]};case ug:return{name:ug,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"lookahead"}]};case hg:return{name:hg,properties:[{name:"cardinality"},{name:"feature"},{name:"lookahead"},{name:"operator"},{name:"terminal"}]};case fg:return{name:fg,properties:[{name:"cardinality"},{name:"left"},{name:"lookahead"},{name:"right"}]};case dg:return{name:dg,properties:[{name:"cardinality"},{name:"deprecatedSyntax",defaultValue:!1},{name:"lookahead"},{name:"terminal"},{name:"type"}]};case pg:return{name:pg,properties:[{name:"cardinality"},{name:"lookahead"}]};case mg:return{name:mg,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"guardCondition"},{name:"lookahead"}]};case gg:return{name:gg,properties:[{name:"cardinality"},{name:"lookahead"},{name:"value"}]};case yg:return{name:yg,properties:[{name:"cardinality"},{name:"lookahead"},{name:"terminal"}]};case vg:return{name:vg,properties:[{name:"cardinality"},{name:"lookahead"},{name:"regex"}]};case xg:return{name:xg,properties:[{name:"arguments",defaultValue:[]},{name:"cardinality"},{name:"lookahead"},{name:"rule"}]};case bg:return{name:bg,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"lookahead"}]};case wg:return{name:wg,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"lookahead"}]};case Tg:return{name:Tg,properties:[{name:"cardinality"},{name:"lookahead"},{name:"rule"}]};case kg:return{name:kg,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"lookahead"}]};case Eg:return{name:Eg,properties:[{name:"cardinality"},{name:"lookahead"},{name:"terminal"}]};case Sg:return{name:Sg,properties:[{name:"cardinality"},{name:"lookahead"}]};default:return{name:e,properties:[]}}}},lr=new Cg});var xk={};hr(xk,{assignMandatoryProperties:()=>XR,copyAstNode:()=>YR,findLocalReferences:()=>tPe,findRootNode:()=>H2,getContainerOfType:()=>tp,getDocument:()=>Pa,hasContainerOfType:()=>ePe,linkContentToContainer:()=>vk,streamAllContents:()=>Nc,streamAst:()=>Wo,streamContents:()=>W2,streamReferences:()=>Ag});function vk(t){for(let[e,r]of Object.entries(t))e.startsWith("$")||(Array.isArray(r)?r.forEach((n,i)=>{ii(n)&&(n.$container=t,n.$containerProperty=e,n.$containerIndex=i)}):ii(r)&&(r.$container=t,r.$containerProperty=e))}function tp(t,e){let r=t;for(;r;){if(e(r))return r;r=r.$container}}function ePe(t,e){let r=t;for(;r;){if(e(r))return!0;r=r.$container}return!1}function Pa(t){let r=H2(t).$document;if(!r)throw new Error("AST node has no document.");return r}function H2(t){for(;t.$container;)t=t.$container;return t}function W2(t,e){if(!t)throw new Error("Node must be an AstNode.");let r=e?.range;return new ao(()=>({keys:Object.keys(t),keyIndex:0,arrayIndex:0}),n=>{for(;n.keyIndexW2(r,e))}function Wo(t,e){if(t){if(e?.range&&!qR(t,e.range))return new _c(t,()=>[])}else throw new Error("Root node must be an AstNode.");return new _c(t,r=>W2(r,e),{includeRoot:!0})}function qR(t,e){var r;if(!e)return!0;let n=(r=t.$cstNode)===null||r===void 0?void 0:r.range;return n?CR(n,e):!1}function Ag(t){return new ao(()=>({keys:Object.keys(t),keyIndex:0,arrayIndex:0}),e=>{for(;e.keyIndex{Ag(n).forEach(i=>{i.reference.ref===t&&r.push(i.reference)})}),en(r)}function XR(t,e){let r=t.getTypeMetaData(e.$type),n=e;for(let i of r.properties)i.defaultValue!==void 0&&n[i.name]===void 0&&(n[i.name]=pae(i.defaultValue))}function pae(t){return Array.isArray(t)?[...t.map(pae)]:t}function YR(t,e){let r={$type:t.$type};for(let[n,i]of Object.entries(t))if(!n.startsWith("$"))if(ii(i))r[n]=YR(i,e);else if(va(i))r[n]=e(r,n,i.$refNode,i.$refText);else if(Array.isArray(i)){let a=[];for(let s of i)ii(s)?a.push(YR(s,e)):va(s)?a.push(e(r,n,s.$refNode,s.$refText)):a.push(s);r[n]=a}else r[n]=i;return vk(r),r}var is=N(()=>{"use strict";Rl();Ps();Nl();o(vk,"linkContentToContainer");o(tp,"getContainerOfType");o(ePe,"hasContainerOfType");o(Pa,"getDocument");o(H2,"findRootNode");o(W2,"streamContents");o(Nc,"streamAllContents");o(Wo,"streamAst");o(qR,"isAstNodeInRange");o(Ag,"streamReferences");o(tPe,"findLocalReferences");o(XR,"assignMandatoryProperties");o(pae,"copyDefaultValue");o(YR,"copyAstNode")});function ar(t){return t.charCodeAt(0)}function bk(t,e){Array.isArray(t)?t.forEach(function(r){e.push(r)}):e.push(t)}function _g(t,e){if(t[e]===!0)throw"duplicate flag "+e;let r=t[e];t[e]=!0}function rp(t){if(t===void 0)throw Error("Internal Error - Should never get here!");return!0}function q2(){throw Error("Internal Error - Should never get here!")}function jR(t){return t.type==="Character"}var KR=N(()=>{"use strict";o(ar,"cc");o(bk,"insertToSet");o(_g,"addFlag");o(rp,"ASSERT_EXISTS");o(q2,"ASSERT_NEVER_REACH_HERE");o(jR,"isCharacter")});var Y2,X2,QR,mae=N(()=>{"use strict";KR();Y2=[];for(let t=ar("0");t<=ar("9");t++)Y2.push(t);X2=[ar("_")].concat(Y2);for(let t=ar("a");t<=ar("z");t++)X2.push(t);for(let t=ar("A");t<=ar("Z");t++)X2.push(t);QR=[ar(" "),ar("\f"),ar(` +`),ar("\r"),ar(" "),ar("\v"),ar(" "),ar("\xA0"),ar("\u1680"),ar("\u2000"),ar("\u2001"),ar("\u2002"),ar("\u2003"),ar("\u2004"),ar("\u2005"),ar("\u2006"),ar("\u2007"),ar("\u2008"),ar("\u2009"),ar("\u200A"),ar("\u2028"),ar("\u2029"),ar("\u202F"),ar("\u205F"),ar("\u3000"),ar("\uFEFF")]});var rPe,wk,nPe,np,gae=N(()=>{"use strict";KR();mae();rPe=/[0-9a-fA-F]/,wk=/[0-9]/,nPe=/[1-9]/,np=class{static{o(this,"RegExpParser")}constructor(){this.idx=0,this.input="",this.groupIdx=0}saveState(){return{idx:this.idx,input:this.input,groupIdx:this.groupIdx}}restoreState(e){this.idx=e.idx,this.input=e.input,this.groupIdx=e.groupIdx}pattern(e){this.idx=0,this.input=e,this.groupIdx=0,this.consumeChar("/");let r=this.disjunction();this.consumeChar("/");let n={type:"Flags",loc:{begin:this.idx,end:e.length},global:!1,ignoreCase:!1,multiLine:!1,unicode:!1,sticky:!1};for(;this.isRegExpFlag();)switch(this.popChar()){case"g":_g(n,"global");break;case"i":_g(n,"ignoreCase");break;case"m":_g(n,"multiLine");break;case"u":_g(n,"unicode");break;case"y":_g(n,"sticky");break}if(this.idx!==this.input.length)throw Error("Redundant input: "+this.input.substring(this.idx));return{type:"Pattern",flags:n,value:r,loc:this.loc(0)}}disjunction(){let e=[],r=this.idx;for(e.push(this.alternative());this.peekChar()==="|";)this.consumeChar("|"),e.push(this.alternative());return{type:"Disjunction",value:e,loc:this.loc(r)}}alternative(){let e=[],r=this.idx;for(;this.isTerm();)e.push(this.term());return{type:"Alternative",value:e,loc:this.loc(r)}}term(){return this.isAssertion()?this.assertion():this.atom()}assertion(){let e=this.idx;switch(this.popChar()){case"^":return{type:"StartAnchor",loc:this.loc(e)};case"$":return{type:"EndAnchor",loc:this.loc(e)};case"\\":switch(this.popChar()){case"b":return{type:"WordBoundary",loc:this.loc(e)};case"B":return{type:"NonWordBoundary",loc:this.loc(e)}}throw Error("Invalid Assertion Escape");case"(":this.consumeChar("?");let r;switch(this.popChar()){case"=":r="Lookahead";break;case"!":r="NegativeLookahead";break}rp(r);let n=this.disjunction();return this.consumeChar(")"),{type:r,value:n,loc:this.loc(e)}}return q2()}quantifier(e=!1){let r,n=this.idx;switch(this.popChar()){case"*":r={atLeast:0,atMost:1/0};break;case"+":r={atLeast:1,atMost:1/0};break;case"?":r={atLeast:0,atMost:1};break;case"{":let i=this.integerIncludingZero();switch(this.popChar()){case"}":r={atLeast:i,atMost:i};break;case",":let a;this.isDigit()?(a=this.integerIncludingZero(),r={atLeast:i,atMost:a}):r={atLeast:i,atMost:1/0},this.consumeChar("}");break}if(e===!0&&r===void 0)return;rp(r);break}if(!(e===!0&&r===void 0)&&rp(r))return this.peekChar(0)==="?"?(this.consumeChar("?"),r.greedy=!1):r.greedy=!0,r.type="Quantifier",r.loc=this.loc(n),r}atom(){let e,r=this.idx;switch(this.peekChar()){case".":e=this.dotAll();break;case"\\":e=this.atomEscape();break;case"[":e=this.characterClass();break;case"(":e=this.group();break}return e===void 0&&this.isPatternCharacter()&&(e=this.patternCharacter()),rp(e)?(e.loc=this.loc(r),this.isQuantifier()&&(e.quantifier=this.quantifier()),e):q2()}dotAll(){return this.consumeChar("."),{type:"Set",complement:!0,value:[ar(` +`),ar("\r"),ar("\u2028"),ar("\u2029")]}}atomEscape(){switch(this.consumeChar("\\"),this.peekChar()){case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":return this.decimalEscapeAtom();case"d":case"D":case"s":case"S":case"w":case"W":return this.characterClassEscape();case"f":case"n":case"r":case"t":case"v":return this.controlEscapeAtom();case"c":return this.controlLetterEscapeAtom();case"0":return this.nulCharacterAtom();case"x":return this.hexEscapeSequenceAtom();case"u":return this.regExpUnicodeEscapeSequenceAtom();default:return this.identityEscapeAtom()}}decimalEscapeAtom(){return{type:"GroupBackReference",value:this.positiveInteger()}}characterClassEscape(){let e,r=!1;switch(this.popChar()){case"d":e=Y2;break;case"D":e=Y2,r=!0;break;case"s":e=QR;break;case"S":e=QR,r=!0;break;case"w":e=X2;break;case"W":e=X2,r=!0;break}return rp(e)?{type:"Set",value:e,complement:r}:q2()}controlEscapeAtom(){let e;switch(this.popChar()){case"f":e=ar("\f");break;case"n":e=ar(` +`);break;case"r":e=ar("\r");break;case"t":e=ar(" ");break;case"v":e=ar("\v");break}return rp(e)?{type:"Character",value:e}:q2()}controlLetterEscapeAtom(){this.consumeChar("c");let e=this.popChar();if(/[a-zA-Z]/.test(e)===!1)throw Error("Invalid ");return{type:"Character",value:e.toUpperCase().charCodeAt(0)-64}}nulCharacterAtom(){return this.consumeChar("0"),{type:"Character",value:ar("\0")}}hexEscapeSequenceAtom(){return this.consumeChar("x"),this.parseHexDigits(2)}regExpUnicodeEscapeSequenceAtom(){return this.consumeChar("u"),this.parseHexDigits(4)}identityEscapeAtom(){let e=this.popChar();return{type:"Character",value:ar(e)}}classPatternCharacterAtom(){switch(this.peekChar()){case` +`:case"\r":case"\u2028":case"\u2029":case"\\":case"]":throw Error("TBD");default:let e=this.popChar();return{type:"Character",value:ar(e)}}}characterClass(){let e=[],r=!1;for(this.consumeChar("["),this.peekChar(0)==="^"&&(this.consumeChar("^"),r=!0);this.isClassAtom();){let n=this.classAtom(),i=n.type==="Character";if(jR(n)&&this.isRangeDash()){this.consumeChar("-");let a=this.classAtom(),s=a.type==="Character";if(jR(a)){if(a.value=this.input.length)throw Error("Unexpected end of input");this.idx++}loc(e){return{begin:e,end:this.idx}}}});var Mc,yae=N(()=>{"use strict";Mc=class{static{o(this,"BaseRegExpVisitor")}visitChildren(e){for(let r in e){let n=e[r];e.hasOwnProperty(r)&&(n.type!==void 0?this.visit(n):Array.isArray(n)&&n.forEach(i=>{this.visit(i)},this))}}visit(e){switch(e.type){case"Pattern":this.visitPattern(e);break;case"Flags":this.visitFlags(e);break;case"Disjunction":this.visitDisjunction(e);break;case"Alternative":this.visitAlternative(e);break;case"StartAnchor":this.visitStartAnchor(e);break;case"EndAnchor":this.visitEndAnchor(e);break;case"WordBoundary":this.visitWordBoundary(e);break;case"NonWordBoundary":this.visitNonWordBoundary(e);break;case"Lookahead":this.visitLookahead(e);break;case"NegativeLookahead":this.visitNegativeLookahead(e);break;case"Character":this.visitCharacter(e);break;case"Set":this.visitSet(e);break;case"Group":this.visitGroup(e);break;case"GroupBackReference":this.visitGroupBackReference(e);break;case"Quantifier":this.visitQuantifier(e);break}this.visitChildren(e)}visitPattern(e){}visitFlags(e){}visitDisjunction(e){}visitAlternative(e){}visitStartAnchor(e){}visitEndAnchor(e){}visitWordBoundary(e){}visitNonWordBoundary(e){}visitLookahead(e){}visitNegativeLookahead(e){}visitCharacter(e){}visitSet(e){}visitGroup(e){}visitGroupBackReference(e){}visitQuantifier(e){}}});var j2=N(()=>{"use strict";gae();yae()});var Tk={};hr(Tk,{NEWLINE_REGEXP:()=>JR,escapeRegExp:()=>ap,getCaseInsensitivePattern:()=>tN,getTerminalParts:()=>iPe,isMultilineComment:()=>eN,isWhitespace:()=>Dg,partialMatches:()=>rN,partialRegExp:()=>bae,whitespaceCharacters:()=>xae});function iPe(t){try{typeof t!="string"&&(t=t.source),t=`/${t}/`;let e=vae.pattern(t),r=[];for(let n of e.value.value)ip.reset(t),ip.visit(n),r.push({start:ip.startRegexp,end:ip.endRegex});return r}catch{return[]}}function eN(t){try{return typeof t=="string"&&(t=new RegExp(t)),t=t.toString(),ip.reset(t),ip.visit(vae.pattern(t)),ip.multiline}catch{return!1}}function Dg(t){let e=typeof t=="string"?new RegExp(t):t;return xae.some(r=>e.test(r))}function ap(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function tN(t){return Array.prototype.map.call(t,e=>/\w/.test(e)?`[${e.toLowerCase()}${e.toUpperCase()}]`:ap(e)).join("")}function rN(t,e){let r=bae(t),n=e.match(r);return!!n&&n[0].length>0}function bae(t){typeof t=="string"&&(t=new RegExp(t));let e=t,r=t.source,n=0;function i(){let a="",s;function l(h){a+=r.substr(n,h),n+=h}o(l,"appendRaw");function u(h){a+="(?:"+r.substr(n,h)+"|$)",n+=h}for(o(u,"appendOptional");n",n)-n+1);break;default:u(2);break}break;case"[":s=/\[(?:\\.|.)*?\]/g,s.lastIndex=n,s=s.exec(r)||[],u(s[0].length);break;case"|":case"^":case"$":case"*":case"+":case"?":l(1);break;case"{":s=/\{\d+,?\d*\}/g,s.lastIndex=n,s=s.exec(r),s?l(s[0].length):u(1);break;case"(":if(r[n+1]==="?")switch(r[n+2]){case":":a+="(?:",n+=3,a+=i()+"|$)";break;case"=":a+="(?=",n+=3,a+=i()+")";break;case"!":s=n,n+=3,i(),a+=r.substr(s,n-s);break;case"<":switch(r[n+3]){case"=":case"!":s=n,n+=4,i(),a+=r.substr(s,n-s);break;default:l(r.indexOf(">",n)-n+1),a+=i()+"|$)";break}break}else l(1),a+=i()+"|$)";break;case")":return++n,a;default:u(1);break}return a}return o(i,"process"),new RegExp(i(),t.flags)}var JR,vae,ZR,ip,xae,Lg=N(()=>{"use strict";j2();JR=/\r?\n/gm,vae=new np,ZR=class extends Mc{static{o(this,"TerminalRegExpVisitor")}constructor(){super(...arguments),this.isStarting=!0,this.endRegexpStack=[],this.multiline=!1}get endRegex(){return this.endRegexpStack.join("")}reset(e){this.multiline=!1,this.regex=e,this.startRegexp="",this.isStarting=!0,this.endRegexpStack=[]}visitGroup(e){e.quantifier&&(this.isStarting=!1,this.endRegexpStack=[])}visitCharacter(e){let r=String.fromCharCode(e.value);if(!this.multiline&&r===` +`&&(this.multiline=!0),e.quantifier)this.isStarting=!1,this.endRegexpStack=[];else{let n=ap(r);this.endRegexpStack.push(n),this.isStarting&&(this.startRegexp+=n)}}visitSet(e){if(!this.multiline){let r=this.regex.substring(e.loc.begin,e.loc.end),n=new RegExp(r);this.multiline=!!` +`.match(n)}if(e.quantifier)this.isStarting=!1,this.endRegexpStack=[];else{let r=this.regex.substring(e.loc.begin,e.loc.end);this.endRegexpStack.push(r),this.isStarting&&(this.startRegexp+=r)}}visitChildren(e){e.type==="Group"&&e.quantifier||super.visitChildren(e)}},ip=new ZR;o(iPe,"getTerminalParts");o(eN,"isMultilineComment");xae=`\f +\r \v \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF`.split("");o(Dg,"isWhitespace");o(ap,"escapeRegExp");o(tN,"getCaseInsensitivePattern");o(rN,"partialMatches");o(bae,"partialRegExp")});var Ek={};hr(Ek,{findAssignment:()=>hN,findNameAssignment:()=>kk,findNodeForKeyword:()=>cN,findNodeForProperty:()=>Q2,findNodesForKeyword:()=>aPe,findNodesForKeywordInternal:()=>uN,findNodesForProperty:()=>oN,getActionAtElement:()=>Sae,getActionType:()=>Aae,getAllReachableRules:()=>K2,getCrossReferenceTerminal:()=>aN,getEntryRule:()=>wae,getExplicitRuleType:()=>Rg,getHiddenRules:()=>Tae,getRuleType:()=>fN,getRuleTypeName:()=>uPe,getTypeName:()=>J2,isArrayCardinality:()=>oPe,isArrayOperator:()=>lPe,isCommentTerminal:()=>sN,isDataType:()=>cPe,isDataTypeRule:()=>Z2,isOptionalCardinality:()=>sPe,terminalRegex:()=>Ng});function wae(t){return t.rules.find(e=>Oa(e)&&e.entry)}function Tae(t){return t.rules.filter(e=>so(e)&&e.hidden)}function K2(t,e){let r=new Set,n=wae(t);if(!n)return new Set(t.rules);let i=[n].concat(Tae(t));for(let s of i)kae(s,r,e);let a=new Set;for(let s of t.rules)(r.has(s.name)||so(s)&&s.hidden)&&a.add(s);return a}function kae(t,e,r){e.add(t.name),Nc(t).forEach(n=>{if(Il(n)||r&&gk(n)){let i=n.rule.ref;i&&!e.has(i.name)&&kae(i,e,r)}})}function aN(t){if(t.terminal)return t.terminal;if(t.type.ref){let e=kk(t.type.ref);return e?.terminal}}function sN(t){return t.hidden&&!Dg(Ng(t))}function oN(t,e){return!t||!e?[]:lN(t,e,t.astNode,!0)}function Q2(t,e,r){if(!t||!e)return;let n=lN(t,e,t.astNode,!0);if(n.length!==0)return r!==void 0?r=Math.max(0,Math.min(r,n.length-1)):r=0,n[r]}function lN(t,e,r,n){if(!n){let i=tp(t.grammarSource,Ml);if(i&&i.feature===e)return[t]}return Ll(t)&&t.astNode===r?t.content.flatMap(i=>lN(i,e,r,!1)):[]}function aPe(t,e){return t?uN(t,e,t?.astNode):[]}function cN(t,e,r){if(!t)return;let n=uN(t,e,t?.astNode);if(n.length!==0)return r!==void 0?r=Math.max(0,Math.min(r,n.length-1)):r=0,n[r]}function uN(t,e,r){if(t.astNode!==r)return[];if(Ho(t.grammarSource)&&t.grammarSource.value===e)return[t];let n=Kd(t).iterator(),i,a=[];do if(i=n.next(),!i.done){let s=i.value;s.astNode===r?Ho(s.grammarSource)&&s.grammarSource.value===e&&a.push(s):n.prune()}while(!i.done);return a}function hN(t){var e;let r=t.astNode;for(;r===((e=t.container)===null||e===void 0?void 0:e.astNode);){let n=tp(t.grammarSource,Ml);if(n)return n;t=t.container}}function kk(t){let e=t;return fk(e)&&(Mu(e.$container)?e=e.$container.$container:Oa(e.$container)?e=e.$container:Lc(e.$container)),Eae(t,e,new Map)}function Eae(t,e,r){var n;function i(a,s){let l;return tp(a,Ml)||(l=Eae(s,s,r)),r.set(t,l),l}if(o(i,"go"),r.has(t))return r.get(t);r.set(t,void 0);for(let a of Nc(e)){if(Ml(a)&&a.feature.toLowerCase()==="name")return r.set(t,a),a;if(Il(a)&&Oa(a.rule.ref))return i(a,a.rule.ref);if(pk(a)&&(!((n=a.typeRef)===null||n===void 0)&&n.ref))return i(a,a.typeRef.ref)}}function Sae(t){let e=t.$container;if(sf(e)){let r=e.elements,n=r.indexOf(t);for(let i=n-1;i>=0;i--){let a=r[i];if(Mu(a))return a;{let s=Nc(r[i]).find(Mu);if(s)return s}}}if(G2(e))return Sae(e)}function sPe(t,e){return t==="?"||t==="*"||sf(e)&&!!e.guardCondition}function oPe(t){return t==="*"||t==="+"}function lPe(t){return t==="+="}function Z2(t){return Cae(t,new Set)}function Cae(t,e){if(e.has(t))return!0;e.add(t);for(let r of Nc(t))if(Il(r)){if(!r.rule.ref||Oa(r.rule.ref)&&!Cae(r.rule.ref,e))return!1}else{if(Ml(r))return!1;if(Mu(r))return!1}return!!t.definition}function cPe(t){return iN(t.type,new Set)}function iN(t,e){if(e.has(t))return!0;if(e.add(t),DR(t))return!1;if(OR(t))return!1;if(BR(t))return t.types.every(r=>iN(r,e));if(pk(t)){if(t.primitiveType!==void 0)return!0;if(t.stringType!==void 0)return!0;if(t.typeRef!==void 0){let r=t.typeRef.ref;return V2(r)?iN(r.type,e):!1}else return!1}else return!1}function Rg(t){if(t.inferredType)return t.inferredType.name;if(t.dataType)return t.dataType;if(t.returnType){let e=t.returnType.ref;if(e){if(Oa(e))return e.name;if(dk(e)||V2(e))return e.name}}}function J2(t){var e;if(Oa(t))return Z2(t)?t.name:(e=Rg(t))!==null&&e!==void 0?e:t.name;if(dk(t)||V2(t)||PR(t))return t.name;if(Mu(t)){let r=Aae(t);if(r)return r}else if(fk(t))return t.name;throw new Error("Cannot get name of Unknown Type")}function Aae(t){var e;if(t.inferredType)return t.inferredType.name;if(!((e=t.type)===null||e===void 0)&&e.ref)return J2(t.type.ref)}function uPe(t){var e,r,n;return so(t)?(r=(e=t.type)===null||e===void 0?void 0:e.name)!==null&&r!==void 0?r:"string":Z2(t)?t.name:(n=Rg(t))!==null&&n!==void 0?n:t.name}function fN(t){var e,r,n;return so(t)?(r=(e=t.type)===null||e===void 0?void 0:e.name)!==null&&r!==void 0?r:"string":(n=Rg(t))!==null&&n!==void 0?n:t.name}function Ng(t){let e={s:!1,i:!1,u:!1},r=Mg(t.definition,e),n=Object.entries(e).filter(([,i])=>i).map(([i])=>i).join("");return new RegExp(r,n)}function Mg(t,e){if(VR(t))return hPe(t);if(UR(t))return fPe(t);if(FR(t))return mPe(t);if(gk(t)){let r=t.rule.ref;if(!r)throw new Error("Missing rule reference.");return Iu(Mg(r.definition),{cardinality:t.cardinality,lookahead:t.lookahead})}else{if(zR(t))return pPe(t);if(HR(t))return dPe(t);if(GR(t)){let r=t.regex.lastIndexOf("/"),n=t.regex.substring(1,r),i=t.regex.substring(r+1);return e&&(e.i=i.includes("i"),e.s=i.includes("s"),e.u=i.includes("u")),Iu(n,{cardinality:t.cardinality,lookahead:t.lookahead,wrap:!1})}else{if(WR(t))return Iu(dN,{cardinality:t.cardinality,lookahead:t.lookahead});throw new Error(`Invalid terminal element: ${t?.$type}`)}}}function hPe(t){return Iu(t.elements.map(e=>Mg(e)).join("|"),{cardinality:t.cardinality,lookahead:t.lookahead})}function fPe(t){return Iu(t.elements.map(e=>Mg(e)).join(""),{cardinality:t.cardinality,lookahead:t.lookahead})}function dPe(t){return Iu(`${dN}*?${Mg(t.terminal)}`,{cardinality:t.cardinality,lookahead:t.lookahead})}function pPe(t){return Iu(`(?!${Mg(t.terminal)})${dN}*?`,{cardinality:t.cardinality,lookahead:t.lookahead})}function mPe(t){return t.right?Iu(`[${nN(t.left)}-${nN(t.right)}]`,{cardinality:t.cardinality,lookahead:t.lookahead,wrap:!1}):Iu(nN(t.left),{cardinality:t.cardinality,lookahead:t.lookahead,wrap:!1})}function nN(t){return ap(t.value)}function Iu(t,e){var r;return(e.wrap!==!1||e.lookahead)&&(t=`(${(r=e.lookahead)!==null&&r!==void 0?r:""}${t})`),e.cardinality?`${t}${e.cardinality}`:t}var dN,Ol=N(()=>{"use strict";uk();Rc();Rl();is();Nl();Lg();o(wae,"getEntryRule");o(Tae,"getHiddenRules");o(K2,"getAllReachableRules");o(kae,"ruleDfs");o(aN,"getCrossReferenceTerminal");o(sN,"isCommentTerminal");o(oN,"findNodesForProperty");o(Q2,"findNodeForProperty");o(lN,"findNodesForPropertyInternal");o(aPe,"findNodesForKeyword");o(cN,"findNodeForKeyword");o(uN,"findNodesForKeywordInternal");o(hN,"findAssignment");o(kk,"findNameAssignment");o(Eae,"findNameAssignmentInternal");o(Sae,"getActionAtElement");o(sPe,"isOptionalCardinality");o(oPe,"isArrayCardinality");o(lPe,"isArrayOperator");o(Z2,"isDataTypeRule");o(Cae,"isDataTypeRuleInternal");o(cPe,"isDataType");o(iN,"isDataTypeInternal");o(Rg,"getExplicitRuleType");o(J2,"getTypeName");o(Aae,"getActionType");o(uPe,"getRuleTypeName");o(fN,"getRuleType");o(Ng,"terminalRegex");dN=/[\s\S]/.source;o(Mg,"abstractElementToRegex");o(hPe,"terminalAlternativesToRegex");o(fPe,"terminalGroupToRegex");o(dPe,"untilTokenToRegex");o(pPe,"negateTokenToRegex");o(mPe,"characterRangeToRegex");o(nN,"keywordToRegex");o(Iu,"withCardinality")});function pN(t){let e=[],r=t.Grammar;for(let n of r.rules)so(n)&&sN(n)&&eN(Ng(n))&&e.push(n.name);return{multilineCommentRules:e,nameRegexp:lk}}var mN=N(()=>{"use strict";Nl();Ol();Lg();Rc();o(pN,"createGrammarConfig")});var gN=N(()=>{"use strict"});function Ig(t){console&&console.error&&console.error(`Error: ${t}`)}function ex(t){console&&console.warn&&console.warn(`Warning: ${t}`)}var _ae=N(()=>{"use strict";o(Ig,"PRINT_ERROR");o(ex,"PRINT_WARNING")});function tx(t){let e=new Date().getTime(),r=t();return{time:new Date().getTime()-e,value:r}}var Dae=N(()=>{"use strict";o(tx,"timer")});function rx(t){function e(){}o(e,"FakeConstructor"),e.prototype=t;let r=new e;function n(){return typeof r.bar}return o(n,"fakeAccess"),n(),n(),t;(0,eval)(t)}var Lae=N(()=>{"use strict";o(rx,"toFastProperties")});var Og=N(()=>{"use strict";_ae();Dae();Lae()});function gPe(t){return yPe(t)?t.LABEL:t.name}function yPe(t){return yi(t.LABEL)&&t.LABEL!==""}function Sk(t){return Je(t,Pg)}function Pg(t){function e(r){return Je(r,Pg)}if(o(e,"convertDefinition"),t instanceof on){let r={type:"NonTerminal",name:t.nonTerminalName,idx:t.idx};return yi(t.label)&&(r.label=t.label),r}else{if(t instanceof Dn)return{type:"Alternative",definition:e(t.definition)};if(t instanceof ln)return{type:"Option",idx:t.idx,definition:e(t.definition)};if(t instanceof Ln)return{type:"RepetitionMandatory",idx:t.idx,definition:e(t.definition)};if(t instanceof Rn)return{type:"RepetitionMandatoryWithSeparator",idx:t.idx,separator:Pg(new kr({terminalType:t.separator})),definition:e(t.definition)};if(t instanceof wn)return{type:"RepetitionWithSeparator",idx:t.idx,separator:Pg(new kr({terminalType:t.separator})),definition:e(t.definition)};if(t instanceof Or)return{type:"Repetition",idx:t.idx,definition:e(t.definition)};if(t instanceof Tn)return{type:"Alternation",idx:t.idx,definition:e(t.definition)};if(t instanceof kr){let r={type:"Terminal",name:t.terminalType.name,label:gPe(t.terminalType),idx:t.idx};yi(t.label)&&(r.terminalLabel=t.label);let n=t.terminalType.PATTERN;return t.terminalType.PATTERN&&(r.pattern=zo(n)?n.source:n),r}else{if(t instanceof as)return{type:"Rule",name:t.name,orgText:t.orgText,definition:e(t.definition)};throw Error("non exhaustive match")}}}var oo,on,as,Dn,ln,Ln,Rn,Or,wn,Tn,kr,Ck=N(()=>{"use strict";qt();o(gPe,"tokenLabel");o(yPe,"hasTokenLabel");oo=class{static{o(this,"AbstractProduction")}get definition(){return this._definition}set definition(e){this._definition=e}constructor(e){this._definition=e}accept(e){e.visit(this),Ae(this.definition,r=>{r.accept(e)})}},on=class extends oo{static{o(this,"NonTerminal")}constructor(e){super([]),this.idx=1,ma(this,Os(e,r=>r!==void 0))}set definition(e){}get definition(){return this.referencedRule!==void 0?this.referencedRule.definition:[]}accept(e){e.visit(this)}},as=class extends oo{static{o(this,"Rule")}constructor(e){super(e.definition),this.orgText="",ma(this,Os(e,r=>r!==void 0))}},Dn=class extends oo{static{o(this,"Alternative")}constructor(e){super(e.definition),this.ignoreAmbiguities=!1,ma(this,Os(e,r=>r!==void 0))}},ln=class extends oo{static{o(this,"Option")}constructor(e){super(e.definition),this.idx=1,ma(this,Os(e,r=>r!==void 0))}},Ln=class extends oo{static{o(this,"RepetitionMandatory")}constructor(e){super(e.definition),this.idx=1,ma(this,Os(e,r=>r!==void 0))}},Rn=class extends oo{static{o(this,"RepetitionMandatoryWithSeparator")}constructor(e){super(e.definition),this.idx=1,ma(this,Os(e,r=>r!==void 0))}},Or=class extends oo{static{o(this,"Repetition")}constructor(e){super(e.definition),this.idx=1,ma(this,Os(e,r=>r!==void 0))}},wn=class extends oo{static{o(this,"RepetitionWithSeparator")}constructor(e){super(e.definition),this.idx=1,ma(this,Os(e,r=>r!==void 0))}},Tn=class extends oo{static{o(this,"Alternation")}get definition(){return this._definition}set definition(e){this._definition=e}constructor(e){super(e.definition),this.idx=1,this.ignoreAmbiguities=!1,this.hasPredicates=!1,ma(this,Os(e,r=>r!==void 0))}},kr=class{static{o(this,"Terminal")}constructor(e){this.idx=1,ma(this,Os(e,r=>r!==void 0))}accept(e){e.visit(this)}};o(Sk,"serializeGrammar");o(Pg,"serializeProduction")});var ss,Rae=N(()=>{"use strict";Ck();ss=class{static{o(this,"GAstVisitor")}visit(e){let r=e;switch(r.constructor){case on:return this.visitNonTerminal(r);case Dn:return this.visitAlternative(r);case ln:return this.visitOption(r);case Ln:return this.visitRepetitionMandatory(r);case Rn:return this.visitRepetitionMandatoryWithSeparator(r);case wn:return this.visitRepetitionWithSeparator(r);case Or:return this.visitRepetition(r);case Tn:return this.visitAlternation(r);case kr:return this.visitTerminal(r);case as:return this.visitRule(r);default:throw Error("non exhaustive match")}}visitNonTerminal(e){}visitAlternative(e){}visitOption(e){}visitRepetition(e){}visitRepetitionMandatory(e){}visitRepetitionMandatoryWithSeparator(e){}visitRepetitionWithSeparator(e){}visitAlternation(e){}visitTerminal(e){}visitRule(e){}}});function yN(t){return t instanceof Dn||t instanceof ln||t instanceof Or||t instanceof Ln||t instanceof Rn||t instanceof wn||t instanceof kr||t instanceof as}function sp(t,e=[]){return t instanceof ln||t instanceof Or||t instanceof wn?!0:t instanceof Tn?A2(t.definition,n=>sp(n,e)):t instanceof on&&qn(e,t)?!1:t instanceof oo?(t instanceof on&&e.push(t),Ma(t.definition,n=>sp(n,e))):!1}function vN(t){return t instanceof Tn}function Bs(t){if(t instanceof on)return"SUBRULE";if(t instanceof ln)return"OPTION";if(t instanceof Tn)return"OR";if(t instanceof Ln)return"AT_LEAST_ONE";if(t instanceof Rn)return"AT_LEAST_ONE_SEP";if(t instanceof wn)return"MANY_SEP";if(t instanceof Or)return"MANY";if(t instanceof kr)return"CONSUME";throw Error("non exhaustive match")}var Nae=N(()=>{"use strict";qt();Ck();o(yN,"isSequenceProd");o(sp,"isOptionalProd");o(vN,"isBranchingProd");o(Bs,"getProductionDslName")});var os=N(()=>{"use strict";Ck();Rae();Nae()});function Mae(t,e,r){return[new ln({definition:[new kr({terminalType:t.separator})].concat(t.definition)})].concat(e,r)}var Ou,Ak=N(()=>{"use strict";qt();os();Ou=class{static{o(this,"RestWalker")}walk(e,r=[]){Ae(e.definition,(n,i)=>{let a=gi(e.definition,i+1);if(n instanceof on)this.walkProdRef(n,a,r);else if(n instanceof kr)this.walkTerminal(n,a,r);else if(n instanceof Dn)this.walkFlat(n,a,r);else if(n instanceof ln)this.walkOption(n,a,r);else if(n instanceof Ln)this.walkAtLeastOne(n,a,r);else if(n instanceof Rn)this.walkAtLeastOneSep(n,a,r);else if(n instanceof wn)this.walkManySep(n,a,r);else if(n instanceof Or)this.walkMany(n,a,r);else if(n instanceof Tn)this.walkOr(n,a,r);else throw Error("non exhaustive match")})}walkTerminal(e,r,n){}walkProdRef(e,r,n){}walkFlat(e,r,n){let i=r.concat(n);this.walk(e,i)}walkOption(e,r,n){let i=r.concat(n);this.walk(e,i)}walkAtLeastOne(e,r,n){let i=[new ln({definition:e.definition})].concat(r,n);this.walk(e,i)}walkAtLeastOneSep(e,r,n){let i=Mae(e,r,n);this.walk(e,i)}walkMany(e,r,n){let i=[new ln({definition:e.definition})].concat(r,n);this.walk(e,i)}walkManySep(e,r,n){let i=Mae(e,r,n);this.walk(e,i)}walkOr(e,r,n){let i=r.concat(n);Ae(e.definition,a=>{let s=new Dn({definition:[a]});this.walk(s,i)})}};o(Mae,"restForRepetitionWithSeparator")});function op(t){if(t instanceof on)return op(t.referencedRule);if(t instanceof kr)return bPe(t);if(yN(t))return vPe(t);if(vN(t))return xPe(t);throw Error("non exhaustive match")}function vPe(t){let e=[],r=t.definition,n=0,i=r.length>n,a,s=!0;for(;i&&s;)a=r[n],s=sp(a),e=e.concat(op(a)),n=n+1,i=r.length>n;return Bm(e)}function xPe(t){let e=Je(t.definition,r=>op(r));return Bm(qr(e))}function bPe(t){return[t.terminalType]}var xN=N(()=>{"use strict";qt();os();o(op,"first");o(vPe,"firstForSequence");o(xPe,"firstForBranching");o(bPe,"firstForTerminal")});var _k,bN=N(()=>{"use strict";_k="_~IN~_"});function Iae(t){let e={};return Ae(t,r=>{let n=new wN(r).startWalking();ma(e,n)}),e}function wPe(t,e){return t.name+e+_k}var wN,Oae=N(()=>{"use strict";Ak();xN();qt();bN();os();wN=class extends Ou{static{o(this,"ResyncFollowsWalker")}constructor(e){super(),this.topProd=e,this.follows={}}startWalking(){return this.walk(this.topProd),this.follows}walkTerminal(e,r,n){}walkProdRef(e,r,n){let i=wPe(e.referencedRule,e.idx)+this.topProd.name,a=r.concat(n),s=new Dn({definition:a}),l=op(s);this.follows[i]=l}};o(Iae,"computeAllProdsFollows");o(wPe,"buildBetweenProdsFollowPrefix")});function Bg(t){let e=t.toString();if(Dk.hasOwnProperty(e))return Dk[e];{let r=TPe.pattern(e);return Dk[e]=r,r}}function Pae(){Dk={}}var Dk,TPe,Lk=N(()=>{"use strict";j2();Dk={},TPe=new np;o(Bg,"getRegExpAst");o(Pae,"clearRegExpParserCache")});function $ae(t,e=!1){try{let r=Bg(t);return TN(r.value,{},r.flags.ignoreCase)}catch(r){if(r.message===Fae)e&&ex(`${nx} Unable to optimize: < ${t.toString()} > + Complement Sets cannot be automatically optimized. + This will disable the lexer's first char optimizations. + See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#COMPLEMENT for details.`);else{let n="";e&&(n=` + This will disable the lexer's first char optimizations. + See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#REGEXP_PARSING for details.`),Ig(`${nx} + Failed parsing: < ${t.toString()} > + Using the @chevrotain/regexp-to-ast library + Please open an issue at: https://github.com/chevrotain/chevrotain/issues`+n)}}return[]}function TN(t,e,r){switch(t.type){case"Disjunction":for(let i=0;i{if(typeof u=="number")Rk(u,e,r);else{let h=u;if(r===!0)for(let f=h.from;f<=h.to;f++)Rk(f,e,r);else{for(let f=h.from;f<=h.to&&f=Fg){let f=h.from>=Fg?h.from:Fg,d=h.to,p=Ic(f),m=Ic(d);for(let g=p;g<=m;g++)e[g]=g}}}});break;case"Group":TN(s.value,e,r);break;default:throw Error("Non Exhaustive Match")}let l=s.quantifier!==void 0&&s.quantifier.atLeast===0;if(s.type==="Group"&&kN(s)===!1||s.type!=="Group"&&l===!1)break}break;default:throw Error("non exhaustive match!")}return br(e)}function Rk(t,e,r){let n=Ic(t);e[n]=n,r===!0&&kPe(t,e)}function kPe(t,e){let r=String.fromCharCode(t),n=r.toUpperCase();if(n!==r){let i=Ic(n.charCodeAt(0));e[i]=i}else{let i=r.toLowerCase();if(i!==r){let a=Ic(i.charCodeAt(0));e[a]=a}}}function Bae(t,e){return ns(t.value,r=>{if(typeof r=="number")return qn(e,r);{let n=r;return ns(e,i=>n.from<=i&&i<=n.to)!==void 0}})}function kN(t){let e=t.quantifier;return e&&e.atLeast===0?!0:t.value?Pt(t.value)?Ma(t.value,kN):kN(t.value):!1}function Nk(t,e){if(e instanceof RegExp){let r=Bg(e),n=new EN(t);return n.visit(r),n.found}else return ns(e,r=>qn(t,r.charCodeAt(0)))!==void 0}var Fae,nx,EN,zae=N(()=>{"use strict";j2();qt();Og();Lk();SN();Fae="Complement Sets are not supported for first char optimization",nx=`Unable to use "first char" lexer optimizations: +`;o($ae,"getOptimizedStartCodesIndices");o(TN,"firstCharOptimizedIndices");o(Rk,"addOptimizedIdxToResult");o(kPe,"handleIgnoreCase");o(Bae,"findCode");o(kN,"isWholeOptional");EN=class extends Mc{static{o(this,"CharCodeFinder")}constructor(e){super(),this.targetCharCodes=e,this.found=!1}visitChildren(e){if(this.found!==!0){switch(e.type){case"Lookahead":this.visitLookahead(e);return;case"NegativeLookahead":this.visitNegativeLookahead(e);return}super.visitChildren(e)}}visitCharacter(e){qn(this.targetCharCodes,e.value)&&(this.found=!0)}visitSet(e){e.complement?Bae(e,this.targetCharCodes)===void 0&&(this.found=!0):Bae(e,this.targetCharCodes)!==void 0&&(this.found=!0)}};o(Nk,"canMatchCharCode")});function Uae(t,e){e=Qh(e,{useSticky:AN,debug:!1,safeMode:!1,positionTracking:"full",lineTerminatorCharacters:["\r",` +`],tracer:o((b,w)=>w(),"tracer")});let r=e.tracer;r("initCharCodeToOptimizedIndexMap",()=>{GPe()});let n;r("Reject Lexer.NA",()=>{n=Jh(t,b=>b[lp]===Xn.NA)});let i=!1,a;r("Transform Patterns",()=>{i=!1,a=Je(n,b=>{let w=b[lp];if(zo(w)){let C=w.source;return C.length===1&&C!=="^"&&C!=="$"&&C!=="."&&!w.ignoreCase?C:C.length===2&&C[0]==="\\"&&!qn(["d","D","s","S","t","r","n","t","0","c","b","B","f","v","w","W"],C[1])?C[1]:e.useSticky?Vae(w):Gae(w)}else{if(Si(w))return i=!0,{exec:w};if(typeof w=="object")return i=!0,w;if(typeof w=="string"){if(w.length===1)return w;{let C=w.replace(/[\\^$.*+?()[\]{}|]/g,"\\$&"),T=new RegExp(C);return e.useSticky?Vae(T):Gae(T)}}else throw Error("non exhaustive match")}})});let s,l,u,h,f;r("misc mapping",()=>{s=Je(n,b=>b.tokenTypeIdx),l=Je(n,b=>{let w=b.GROUP;if(w!==Xn.SKIPPED){if(yi(w))return w;if(pr(w))return!1;throw Error("non exhaustive match")}}),u=Je(n,b=>{let w=b.LONGER_ALT;if(w)return Pt(w)?Je(w,T=>UT(n,T)):[UT(n,w)]}),h=Je(n,b=>b.PUSH_MODE),f=Je(n,b=>Bt(b,"POP_MODE"))});let d;r("Line Terminator Handling",()=>{let b=Qae(e.lineTerminatorCharacters);d=Je(n,w=>!1),e.positionTracking!=="onlyOffset"&&(d=Je(n,w=>Bt(w,"LINE_BREAKS")?!!w.LINE_BREAKS:Kae(w,b)===!1&&Nk(b,w.PATTERN)))});let p,m,g,y;r("Misc Mapping #2",()=>{p=Je(n,Xae),m=Je(a,$Pe),g=Xr(n,(b,w)=>{let C=w.GROUP;return yi(C)&&C!==Xn.SKIPPED&&(b[C]=[]),b},{}),y=Je(a,(b,w)=>({pattern:a[w],longerAlt:u[w],canLineTerminator:d[w],isCustom:p[w],short:m[w],group:l[w],push:h[w],pop:f[w],tokenTypeIdx:s[w],tokenType:n[w]}))});let v=!0,x=[];return e.safeMode||r("First Char Optimization",()=>{x=Xr(n,(b,w,C)=>{if(typeof w.PATTERN=="string"){let T=w.PATTERN.charCodeAt(0),E=Ic(T);CN(b,E,y[C])}else if(Pt(w.START_CHARS_HINT)){let T;Ae(w.START_CHARS_HINT,E=>{let A=typeof E=="string"?E.charCodeAt(0):E,S=Ic(A);T!==S&&(T=S,CN(b,S,y[C]))})}else if(zo(w.PATTERN))if(w.PATTERN.unicode)v=!1,e.ensureOptimizations&&Ig(`${nx} Unable to analyze < ${w.PATTERN.toString()} > pattern. + The regexp unicode flag is not currently supported by the regexp-to-ast library. + This will disable the lexer's first char optimizations. + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#UNICODE_OPTIMIZE`);else{let T=$ae(w.PATTERN,e.ensureOptimizations);ur(T)&&(v=!1),Ae(T,E=>{CN(b,E,y[C])})}else e.ensureOptimizations&&Ig(`${nx} TokenType: <${w.name}> is using a custom token pattern without providing parameter. + This will disable the lexer's first char optimizations. + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#CUSTOM_OPTIMIZE`),v=!1;return b},[])}),{emptyGroups:g,patternIdxToConfig:y,charCodeToPatternIdxToConfig:x,hasCustom:i,canBeOptimized:v}}function Hae(t,e){let r=[],n=SPe(t);r=r.concat(n.errors);let i=CPe(n.valid),a=i.valid;return r=r.concat(i.errors),r=r.concat(EPe(a)),r=r.concat(IPe(a)),r=r.concat(OPe(a,e)),r=r.concat(PPe(a)),r}function EPe(t){let e=[],r=Yr(t,n=>zo(n[lp]));return e=e.concat(_Pe(r)),e=e.concat(RPe(r)),e=e.concat(NPe(r)),e=e.concat(MPe(r)),e=e.concat(DPe(r)),e}function SPe(t){let e=Yr(t,i=>!Bt(i,lp)),r=Je(e,i=>({message:"Token Type: ->"+i.name+"<- missing static 'PATTERN' property",type:Yn.MISSING_PATTERN,tokenTypes:[i]})),n=Zh(t,e);return{errors:r,valid:n}}function CPe(t){let e=Yr(t,i=>{let a=i[lp];return!zo(a)&&!Si(a)&&!Bt(a,"exec")&&!yi(a)}),r=Je(e,i=>({message:"Token Type: ->"+i.name+"<- static 'PATTERN' can only be a RegExp, a Function matching the {CustomPatternMatcherFunc} type or an Object matching the {ICustomPattern} interface.",type:Yn.INVALID_PATTERN,tokenTypes:[i]})),n=Zh(t,e);return{errors:r,valid:n}}function _Pe(t){class e extends Mc{static{o(this,"EndAnchorFinder")}constructor(){super(...arguments),this.found=!1}visitEndAnchor(a){this.found=!0}}let r=Yr(t,i=>{let a=i.PATTERN;try{let s=Bg(a),l=new e;return l.visit(s),l.found}catch{return APe.test(a.source)}});return Je(r,i=>({message:`Unexpected RegExp Anchor Error: + Token Type: ->`+i.name+`<- static 'PATTERN' cannot contain end of input anchor '$' + See chevrotain.io/docs/guide/resolving_lexer_errors.html#ANCHORS for details.`,type:Yn.EOI_ANCHOR_FOUND,tokenTypes:[i]}))}function DPe(t){let e=Yr(t,n=>n.PATTERN.test(""));return Je(e,n=>({message:"Token Type: ->"+n.name+"<- static 'PATTERN' must not match an empty string",type:Yn.EMPTY_MATCH_PATTERN,tokenTypes:[n]}))}function RPe(t){class e extends Mc{static{o(this,"StartAnchorFinder")}constructor(){super(...arguments),this.found=!1}visitStartAnchor(a){this.found=!0}}let r=Yr(t,i=>{let a=i.PATTERN;try{let s=Bg(a),l=new e;return l.visit(s),l.found}catch{return LPe.test(a.source)}});return Je(r,i=>({message:`Unexpected RegExp Anchor Error: + Token Type: ->`+i.name+`<- static 'PATTERN' cannot contain start of input anchor '^' + See https://chevrotain.io/docs/guide/resolving_lexer_errors.html#ANCHORS for details.`,type:Yn.SOI_ANCHOR_FOUND,tokenTypes:[i]}))}function NPe(t){let e=Yr(t,n=>{let i=n[lp];return i instanceof RegExp&&(i.multiline||i.global)});return Je(e,n=>({message:"Token Type: ->"+n.name+"<- static 'PATTERN' may NOT contain global('g') or multiline('m')",type:Yn.UNSUPPORTED_FLAGS_FOUND,tokenTypes:[n]}))}function MPe(t){let e=[],r=Je(t,a=>Xr(t,(s,l)=>(a.PATTERN.source===l.PATTERN.source&&!qn(e,l)&&l.PATTERN!==Xn.NA&&(e.push(l),s.push(l)),s),[]));r=Tc(r);let n=Yr(r,a=>a.length>1);return Je(n,a=>{let s=Je(a,u=>u.name);return{message:`The same RegExp pattern ->${ia(a).PATTERN}<-has been used in all of the following Token Types: ${s.join(", ")} <-`,type:Yn.DUPLICATE_PATTERNS_FOUND,tokenTypes:a}})}function IPe(t){let e=Yr(t,n=>{if(!Bt(n,"GROUP"))return!1;let i=n.GROUP;return i!==Xn.SKIPPED&&i!==Xn.NA&&!yi(i)});return Je(e,n=>({message:"Token Type: ->"+n.name+"<- static 'GROUP' can only be Lexer.SKIPPED/Lexer.NA/A String",type:Yn.INVALID_GROUP_TYPE_FOUND,tokenTypes:[n]}))}function OPe(t,e){let r=Yr(t,i=>i.PUSH_MODE!==void 0&&!qn(e,i.PUSH_MODE));return Je(r,i=>({message:`Token Type: ->${i.name}<- static 'PUSH_MODE' value cannot refer to a Lexer Mode ->${i.PUSH_MODE}<-which does not exist`,type:Yn.PUSH_MODE_DOES_NOT_EXIST,tokenTypes:[i]}))}function PPe(t){let e=[],r=Xr(t,(n,i,a)=>{let s=i.PATTERN;return s===Xn.NA||(yi(s)?n.push({str:s,idx:a,tokenType:i}):zo(s)&&FPe(s)&&n.push({str:s.source,idx:a,tokenType:i})),n},[]);return Ae(t,(n,i)=>{Ae(r,({str:a,idx:s,tokenType:l})=>{if(i${l.name}<- can never be matched. +Because it appears AFTER the Token Type ->${n.name}<-in the lexer's definition. +See https://chevrotain.io/docs/guide/resolving_lexer_errors.html#UNREACHABLE`;e.push({message:u,type:Yn.UNREACHABLE_PATTERN,tokenTypes:[n,l]})}})}),e}function BPe(t,e){if(zo(e)){let r=e.exec(t);return r!==null&&r.index===0}else{if(Si(e))return e(t,0,[],{});if(Bt(e,"exec"))return e.exec(t,0,[],{});if(typeof e=="string")return e===t;throw Error("non exhaustive match")}}function FPe(t){return ns([".","\\","[","]","|","^","$","(",")","?","*","+","{"],r=>t.source.indexOf(r)!==-1)===void 0}function Gae(t){let e=t.ignoreCase?"i":"";return new RegExp(`^(?:${t.source})`,e)}function Vae(t){let e=t.ignoreCase?"iy":"y";return new RegExp(`${t.source}`,e)}function Wae(t,e,r){let n=[];return Bt(t,$g)||n.push({message:"A MultiMode Lexer cannot be initialized without a <"+$g+`> property in its definition +`,type:Yn.MULTI_MODE_LEXER_WITHOUT_DEFAULT_MODE}),Bt(t,Mk)||n.push({message:"A MultiMode Lexer cannot be initialized without a <"+Mk+`> property in its definition +`,type:Yn.MULTI_MODE_LEXER_WITHOUT_MODES_PROPERTY}),Bt(t,Mk)&&Bt(t,$g)&&!Bt(t.modes,t.defaultMode)&&n.push({message:`A MultiMode Lexer cannot be initialized with a ${$g}: <${t.defaultMode}>which does not exist +`,type:Yn.MULTI_MODE_LEXER_DEFAULT_MODE_VALUE_DOES_NOT_EXIST}),Bt(t,Mk)&&Ae(t.modes,(i,a)=>{Ae(i,(s,l)=>{if(pr(s))n.push({message:`A Lexer cannot be initialized using an undefined Token Type. Mode:<${a}> at index: <${l}> +`,type:Yn.LEXER_DEFINITION_CANNOT_CONTAIN_UNDEFINED});else if(Bt(s,"LONGER_ALT")){let u=Pt(s.LONGER_ALT)?s.LONGER_ALT:[s.LONGER_ALT];Ae(u,h=>{!pr(h)&&!qn(i,h)&&n.push({message:`A MultiMode Lexer cannot be initialized with a longer_alt <${h.name}> on token <${s.name}> outside of mode <${a}> +`,type:Yn.MULTI_MODE_LEXER_LONGER_ALT_NOT_IN_CURRENT_MODE})})}})}),n}function qae(t,e,r){let n=[],i=!1,a=Tc(qr(br(t.modes))),s=Jh(a,u=>u[lp]===Xn.NA),l=Qae(r);return e&&Ae(s,u=>{let h=Kae(u,l);if(h!==!1){let d={message:zPe(u,h),type:h.issue,tokenType:u};n.push(d)}else Bt(u,"LINE_BREAKS")?u.LINE_BREAKS===!0&&(i=!0):Nk(l,u.PATTERN)&&(i=!0)}),e&&!i&&n.push({message:`Warning: No LINE_BREAKS Found. + This Lexer has been defined to track line and column information, + But none of the Token Types can be identified as matching a line terminator. + See https://chevrotain.io/docs/guide/resolving_lexer_errors.html#LINE_BREAKS + for details.`,type:Yn.NO_LINE_BREAKS_FLAGS}),n}function Yae(t){let e={},r=zr(t);return Ae(r,n=>{let i=t[n];if(Pt(i))e[n]=[];else throw Error("non exhaustive match")}),e}function Xae(t){let e=t.PATTERN;if(zo(e))return!1;if(Si(e))return!0;if(Bt(e,"exec"))return!0;if(yi(e))return!1;throw Error("non exhaustive match")}function $Pe(t){return yi(t)&&t.length===1?t.charCodeAt(0):!1}function Kae(t,e){if(Bt(t,"LINE_BREAKS"))return!1;if(zo(t.PATTERN)){try{Nk(e,t.PATTERN)}catch(r){return{issue:Yn.IDENTIFY_TERMINATOR,errMsg:r.message}}return!1}else{if(yi(t.PATTERN))return!1;if(Xae(t))return{issue:Yn.CUSTOM_LINE_BREAK};throw Error("non exhaustive match")}}function zPe(t,e){if(e.issue===Yn.IDENTIFY_TERMINATOR)return`Warning: unable to identify line terminator usage in pattern. + The problem is in the <${t.name}> Token Type + Root cause: ${e.errMsg}. + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#IDENTIFY_TERMINATOR`;if(e.issue===Yn.CUSTOM_LINE_BREAK)return`Warning: A Custom Token Pattern should specify the option. + The problem is in the <${t.name}> Token Type + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#CUSTOM_LINE_BREAK`;throw Error("non exhaustive match")}function Qae(t){return Je(t,r=>yi(r)?r.charCodeAt(0):r)}function CN(t,e,r){t[e]===void 0?t[e]=[r]:t[e].push(r)}function Ic(t){return t255?255+~~(t/255):t}}var lp,$g,Mk,AN,APe,LPe,jae,Fg,Ik,SN=N(()=>{"use strict";j2();ix();qt();Og();zae();Lk();lp="PATTERN",$g="defaultMode",Mk="modes",AN=typeof new RegExp("(?:)").sticky=="boolean";o(Uae,"analyzeTokenTypes");o(Hae,"validatePatterns");o(EPe,"validateRegExpPattern");o(SPe,"findMissingPatterns");o(CPe,"findInvalidPatterns");APe=/[^\\][$]/;o(_Pe,"findEndOfInputAnchor");o(DPe,"findEmptyMatchRegExps");LPe=/[^\\[][\^]|^\^/;o(RPe,"findStartOfInputAnchor");o(NPe,"findUnsupportedFlags");o(MPe,"findDuplicatePatterns");o(IPe,"findInvalidGroupType");o(OPe,"findModesThatDoNotExist");o(PPe,"findUnreachablePatterns");o(BPe,"testTokenType");o(FPe,"noMetaChar");o(Gae,"addStartOfInput");o(Vae,"addStickyFlag");o(Wae,"performRuntimeChecks");o(qae,"performWarningRuntimeChecks");o(Yae,"cloneEmptyGroups");o(Xae,"isCustomPattern");o($Pe,"isShortPattern");jae={test:o(function(t){let e=t.length;for(let r=this.lastIndex;r{r.isParent=r.categoryMatches.length>0})}function VPe(t){let e=an(t),r=t,n=!0;for(;n;){r=Tc(qr(Je(r,a=>a.CATEGORIES)));let i=Zh(r,e);e=e.concat(i),ur(i)?n=!1:r=i}return e}function UPe(t){Ae(t,e=>{_N(e)||(ese[Zae]=e,e.tokenTypeIdx=Zae++),Jae(e)&&!Pt(e.CATEGORIES)&&(e.CATEGORIES=[e.CATEGORIES]),Jae(e)||(e.CATEGORIES=[]),qPe(e)||(e.categoryMatches=[]),YPe(e)||(e.categoryMatchesMap={})})}function HPe(t){Ae(t,e=>{e.categoryMatches=[],Ae(e.categoryMatchesMap,(r,n)=>{e.categoryMatches.push(ese[n].tokenTypeIdx)})})}function WPe(t){Ae(t,e=>{tse([],e)})}function tse(t,e){Ae(t,r=>{e.categoryMatchesMap[r.tokenTypeIdx]=!0}),Ae(e.CATEGORIES,r=>{let n=t.concat(e);qn(n,r)||tse(n,r)})}function _N(t){return Bt(t,"tokenTypeIdx")}function Jae(t){return Bt(t,"CATEGORIES")}function qPe(t){return Bt(t,"categoryMatches")}function YPe(t){return Bt(t,"categoryMatchesMap")}function rse(t){return Bt(t,"tokenTypeIdx")}var Zae,ese,cp=N(()=>{"use strict";qt();o(Pu,"tokenStructuredMatcher");o(zg,"tokenStructuredMatcherNoCategories");Zae=1,ese={};o(Bu,"augmentTokenTypes");o(VPe,"expandCategories");o(UPe,"assignTokenDefaultProps");o(HPe,"assignCategoriesTokensProp");o(WPe,"assignCategoriesMapProp");o(tse,"singleAssignCategoriesToksMap");o(_N,"hasShortKeyProperty");o(Jae,"hasCategoriesProperty");o(qPe,"hasExtendingTokensTypesProperty");o(YPe,"hasExtendingTokensTypesMapProperty");o(rse,"isTokenType")});var Gg,DN=N(()=>{"use strict";Gg={buildUnableToPopLexerModeMessage(t){return`Unable to pop Lexer Mode after encountering Token ->${t.image}<- The Mode Stack is empty`},buildUnexpectedCharactersMessage(t,e,r,n,i){return`unexpected character: ->${t.charAt(e)}<- at offset: ${e}, skipped ${r} characters.`}}});var Yn,ax,Xn,ix=N(()=>{"use strict";SN();qt();Og();cp();DN();Lk();(function(t){t[t.MISSING_PATTERN=0]="MISSING_PATTERN",t[t.INVALID_PATTERN=1]="INVALID_PATTERN",t[t.EOI_ANCHOR_FOUND=2]="EOI_ANCHOR_FOUND",t[t.UNSUPPORTED_FLAGS_FOUND=3]="UNSUPPORTED_FLAGS_FOUND",t[t.DUPLICATE_PATTERNS_FOUND=4]="DUPLICATE_PATTERNS_FOUND",t[t.INVALID_GROUP_TYPE_FOUND=5]="INVALID_GROUP_TYPE_FOUND",t[t.PUSH_MODE_DOES_NOT_EXIST=6]="PUSH_MODE_DOES_NOT_EXIST",t[t.MULTI_MODE_LEXER_WITHOUT_DEFAULT_MODE=7]="MULTI_MODE_LEXER_WITHOUT_DEFAULT_MODE",t[t.MULTI_MODE_LEXER_WITHOUT_MODES_PROPERTY=8]="MULTI_MODE_LEXER_WITHOUT_MODES_PROPERTY",t[t.MULTI_MODE_LEXER_DEFAULT_MODE_VALUE_DOES_NOT_EXIST=9]="MULTI_MODE_LEXER_DEFAULT_MODE_VALUE_DOES_NOT_EXIST",t[t.LEXER_DEFINITION_CANNOT_CONTAIN_UNDEFINED=10]="LEXER_DEFINITION_CANNOT_CONTAIN_UNDEFINED",t[t.SOI_ANCHOR_FOUND=11]="SOI_ANCHOR_FOUND",t[t.EMPTY_MATCH_PATTERN=12]="EMPTY_MATCH_PATTERN",t[t.NO_LINE_BREAKS_FLAGS=13]="NO_LINE_BREAKS_FLAGS",t[t.UNREACHABLE_PATTERN=14]="UNREACHABLE_PATTERN",t[t.IDENTIFY_TERMINATOR=15]="IDENTIFY_TERMINATOR",t[t.CUSTOM_LINE_BREAK=16]="CUSTOM_LINE_BREAK",t[t.MULTI_MODE_LEXER_LONGER_ALT_NOT_IN_CURRENT_MODE=17]="MULTI_MODE_LEXER_LONGER_ALT_NOT_IN_CURRENT_MODE"})(Yn||(Yn={}));ax={deferDefinitionErrorsHandling:!1,positionTracking:"full",lineTerminatorsPattern:/\n|\r\n?/g,lineTerminatorCharacters:[` +`,"\r"],ensureOptimizations:!1,safeMode:!1,errorMessageProvider:Gg,traceInitPerf:!1,skipValidations:!1,recoveryEnabled:!0};Object.freeze(ax);Xn=class{static{o(this,"Lexer")}constructor(e,r=ax){if(this.lexerDefinition=e,this.lexerDefinitionErrors=[],this.lexerDefinitionWarning=[],this.patternIdxToConfig={},this.charCodeToPatternIdxToConfig={},this.modes=[],this.emptyGroups={},this.trackStartLines=!0,this.trackEndLines=!0,this.hasCustom=!1,this.canModeBeOptimized={},this.TRACE_INIT=(i,a)=>{if(this.traceInitPerf===!0){this.traceInitIndent++;let s=new Array(this.traceInitIndent+1).join(" ");this.traceInitIndent <${i}>`);let{time:l,value:u}=tx(a),h=l>10?console.warn:console.log;return this.traceInitIndent time: ${l}ms`),this.traceInitIndent--,u}else return a()},typeof r=="boolean")throw Error(`The second argument to the Lexer constructor is now an ILexerConfig Object. +a boolean 2nd argument is no longer supported`);this.config=ma({},ax,r);let n=this.config.traceInitPerf;n===!0?(this.traceInitMaxIdent=1/0,this.traceInitPerf=!0):typeof n=="number"&&(this.traceInitMaxIdent=n,this.traceInitPerf=!0),this.traceInitIndent=-1,this.TRACE_INIT("Lexer Constructor",()=>{let i,a=!0;this.TRACE_INIT("Lexer Config handling",()=>{if(this.config.lineTerminatorsPattern===ax.lineTerminatorsPattern)this.config.lineTerminatorsPattern=jae;else if(this.config.lineTerminatorCharacters===ax.lineTerminatorCharacters)throw Error(`Error: Missing property on the Lexer config. + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#MISSING_LINE_TERM_CHARS`);if(r.safeMode&&r.ensureOptimizations)throw Error('"safeMode" and "ensureOptimizations" flags are mutually exclusive.');this.trackStartLines=/full|onlyStart/i.test(this.config.positionTracking),this.trackEndLines=/full/i.test(this.config.positionTracking),Pt(e)?i={modes:{defaultMode:an(e)},defaultMode:$g}:(a=!1,i=an(e))}),this.config.skipValidations===!1&&(this.TRACE_INIT("performRuntimeChecks",()=>{this.lexerDefinitionErrors=this.lexerDefinitionErrors.concat(Wae(i,this.trackStartLines,this.config.lineTerminatorCharacters))}),this.TRACE_INIT("performWarningRuntimeChecks",()=>{this.lexerDefinitionWarning=this.lexerDefinitionWarning.concat(qae(i,this.trackStartLines,this.config.lineTerminatorCharacters))})),i.modes=i.modes?i.modes:{},Ae(i.modes,(l,u)=>{i.modes[u]=Jh(l,h=>pr(h))});let s=zr(i.modes);if(Ae(i.modes,(l,u)=>{this.TRACE_INIT(`Mode: <${u}> processing`,()=>{if(this.modes.push(u),this.config.skipValidations===!1&&this.TRACE_INIT("validatePatterns",()=>{this.lexerDefinitionErrors=this.lexerDefinitionErrors.concat(Hae(l,s))}),ur(this.lexerDefinitionErrors)){Bu(l);let h;this.TRACE_INIT("analyzeTokenTypes",()=>{h=Uae(l,{lineTerminatorCharacters:this.config.lineTerminatorCharacters,positionTracking:r.positionTracking,ensureOptimizations:r.ensureOptimizations,safeMode:r.safeMode,tracer:this.TRACE_INIT})}),this.patternIdxToConfig[u]=h.patternIdxToConfig,this.charCodeToPatternIdxToConfig[u]=h.charCodeToPatternIdxToConfig,this.emptyGroups=ma({},this.emptyGroups,h.emptyGroups),this.hasCustom=h.hasCustom||this.hasCustom,this.canModeBeOptimized[u]=h.canBeOptimized}})}),this.defaultMode=i.defaultMode,!ur(this.lexerDefinitionErrors)&&!this.config.deferDefinitionErrorsHandling){let u=Je(this.lexerDefinitionErrors,h=>h.message).join(`----------------------- +`);throw new Error(`Errors detected in definition of Lexer: +`+u)}Ae(this.lexerDefinitionWarning,l=>{ex(l.message)}),this.TRACE_INIT("Choosing sub-methods implementations",()=>{if(AN?(this.chopInput=ta,this.match=this.matchWithTest):(this.updateLastIndex=ni,this.match=this.matchWithExec),a&&(this.handleModes=ni),this.trackStartLines===!1&&(this.computeNewColumn=ta),this.trackEndLines===!1&&(this.updateTokenEndLineColumnLocation=ni),/full/i.test(this.config.positionTracking))this.createTokenInstance=this.createFullToken;else if(/onlyStart/i.test(this.config.positionTracking))this.createTokenInstance=this.createStartOnlyToken;else if(/onlyOffset/i.test(this.config.positionTracking))this.createTokenInstance=this.createOffsetOnlyToken;else throw Error(`Invalid config option: "${this.config.positionTracking}"`);this.hasCustom?(this.addToken=this.addTokenUsingPush,this.handlePayload=this.handlePayloadWithCustom):(this.addToken=this.addTokenUsingMemberAccess,this.handlePayload=this.handlePayloadNoCustom)}),this.TRACE_INIT("Failed Optimization Warnings",()=>{let l=Xr(this.canModeBeOptimized,(u,h,f)=>(h===!1&&u.push(f),u),[]);if(r.ensureOptimizations&&!ur(l))throw Error(`Lexer Modes: < ${l.join(", ")} > cannot be optimized. + Disable the "ensureOptimizations" lexer config flag to silently ignore this and run the lexer in an un-optimized mode. + Or inspect the console log for details on how to resolve these issues.`)}),this.TRACE_INIT("clearRegExpParserCache",()=>{Pae()}),this.TRACE_INIT("toFastProperties",()=>{rx(this)})})}tokenize(e,r=this.defaultMode){if(!ur(this.lexerDefinitionErrors)){let i=Je(this.lexerDefinitionErrors,a=>a.message).join(`----------------------- +`);throw new Error(`Unable to Tokenize because Errors detected in definition of Lexer: +`+i)}return this.tokenizeInternal(e,r)}tokenizeInternal(e,r){let n,i,a,s,l,u,h,f,d,p,m,g,y,v,x,b,w=e,C=w.length,T=0,E=0,A=this.hasCustom?0:Math.floor(e.length/10),S=new Array(A),_=[],I=this.trackStartLines?1:void 0,D=this.trackStartLines?1:void 0,k=Yae(this.emptyGroups),L=this.trackStartLines,R=this.config.lineTerminatorsPattern,O=0,M=[],B=[],F=[],P=[];Object.freeze(P);let z;function $(){return M}o($,"getPossiblePatternsSlow");function H(le){let he=Ic(le),K=B[he];return K===void 0?P:K}o(H,"getPossiblePatternsOptimized");let Q=o(le=>{if(F.length===1&&le.tokenType.PUSH_MODE===void 0){let he=this.config.errorMessageProvider.buildUnableToPopLexerModeMessage(le);_.push({offset:le.startOffset,line:le.startLine,column:le.startColumn,length:le.image.length,message:he})}else{F.pop();let he=ga(F);M=this.patternIdxToConfig[he],B=this.charCodeToPatternIdxToConfig[he],O=M.length;let K=this.canModeBeOptimized[he]&&this.config.safeMode===!1;B&&K?z=H:z=$}},"pop_mode");function j(le){F.push(le),B=this.charCodeToPatternIdxToConfig[le],M=this.patternIdxToConfig[le],O=M.length,O=M.length;let he=this.canModeBeOptimized[le]&&this.config.safeMode===!1;B&&he?z=H:z=$}o(j,"push_mode"),j.call(this,r);let ie,ne=this.config.recoveryEnabled;for(;Tu.length){u=s,h=f,ie=se;break}}}break}}if(u!==null){if(d=u.length,p=ie.group,p!==void 0&&(m=ie.tokenTypeIdx,g=this.createTokenInstance(u,T,m,ie.tokenType,I,D,d),this.handlePayload(g,h),p===!1?E=this.addToken(S,E,g):k[p].push(g)),e=this.chopInput(e,d),T=T+d,D=this.computeNewColumn(D,d),L===!0&&ie.canLineTerminator===!0){let X=0,te,J;R.lastIndex=0;do te=R.test(u),te===!0&&(J=R.lastIndex-1,X++);while(te===!0);X!==0&&(I=I+X,D=d-J,this.updateTokenEndLineColumnLocation(g,p,J,X,I,D,d))}this.handleModes(ie,Q,j,g)}else{let X=T,te=I,J=D,se=ne===!1;for(;se===!1&&T{"use strict";qt();ix();cp();o(Fu,"tokenLabel");o(LN,"hasTokenLabel");XPe="parent",nse="categories",ise="label",ase="group",sse="push_mode",ose="pop_mode",lse="longer_alt",cse="line_breaks",use="start_chars_hint";o(of,"createToken");o(jPe,"createTokenInternal");lo=of({name:"EOF",pattern:Xn.NA});Bu([lo]);o($u,"createTokenInstance");o(sx,"tokenMatcher")});var zu,hse,Pl,Vg=N(()=>{"use strict";up();qt();os();zu={buildMismatchTokenMessage({expected:t,actual:e,previous:r,ruleName:n}){return`Expecting ${LN(t)?`--> ${Fu(t)} <--`:`token of type --> ${t.name} <--`} but found --> '${e.image}' <--`},buildNotAllInputParsedMessage({firstRedundant:t,ruleName:e}){return"Redundant input, expecting EOF but found: "+t.image},buildNoViableAltMessage({expectedPathsPerAlt:t,actual:e,previous:r,customUserDescription:n,ruleName:i}){let a="Expecting: ",l=` +but found: '`+ia(e).image+"'";if(n)return a+n+l;{let u=Xr(t,(p,m)=>p.concat(m),[]),h=Je(u,p=>`[${Je(p,m=>Fu(m)).join(", ")}]`),d=`one of these possible Token sequences: +${Je(h,(p,m)=>` ${m+1}. ${p}`).join(` +`)}`;return a+d+l}},buildEarlyExitMessage({expectedIterationPaths:t,actual:e,customUserDescription:r,ruleName:n}){let i="Expecting: ",s=` +but found: '`+ia(e).image+"'";if(r)return i+r+s;{let u=`expecting at least one iteration which starts with one of these possible Token sequences:: + <${Je(t,h=>`[${Je(h,f=>Fu(f)).join(",")}]`).join(" ,")}>`;return i+u+s}}};Object.freeze(zu);hse={buildRuleNotFoundError(t,e){return"Invalid grammar, reference to a rule which is not defined: ->"+e.nonTerminalName+`<- +inside top level rule: ->`+t.name+"<-"}},Pl={buildDuplicateFoundError(t,e){function r(f){return f instanceof kr?f.terminalType.name:f instanceof on?f.nonTerminalName:""}o(r,"getExtraProductionArgument");let n=t.name,i=ia(e),a=i.idx,s=Bs(i),l=r(i),u=a>0,h=`->${s}${u?a:""}<- ${l?`with argument: ->${l}<-`:""} + appears more than once (${e.length} times) in the top level rule: ->${n}<-. + For further details see: https://chevrotain.io/docs/FAQ.html#NUMERICAL_SUFFIXES + `;return h=h.replace(/[ \t]+/g," "),h=h.replace(/\s\s+/g,` +`),h},buildNamespaceConflictError(t){return`Namespace conflict found in grammar. +The grammar has both a Terminal(Token) and a Non-Terminal(Rule) named: <${t.name}>. +To resolve this make sure each Terminal and Non-Terminal names are unique +This is easy to accomplish by using the convention that Terminal names start with an uppercase letter +and Non-Terminal names start with a lower case letter.`},buildAlternationPrefixAmbiguityError(t){let e=Je(t.prefixPath,i=>Fu(i)).join(", "),r=t.alternation.idx===0?"":t.alternation.idx;return`Ambiguous alternatives: <${t.ambiguityIndices.join(" ,")}> due to common lookahead prefix +in inside <${t.topLevelRule.name}> Rule, +<${e}> may appears as a prefix path in all these alternatives. +See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#COMMON_PREFIX +For Further details.`},buildAlternationAmbiguityError(t){let e=Je(t.prefixPath,i=>Fu(i)).join(", "),r=t.alternation.idx===0?"":t.alternation.idx,n=`Ambiguous Alternatives Detected: <${t.ambiguityIndices.join(" ,")}> in inside <${t.topLevelRule.name}> Rule, +<${e}> may appears as a prefix path in all these alternatives. +`;return n=n+`See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#AMBIGUOUS_ALTERNATIVES +For Further details.`,n},buildEmptyRepetitionError(t){let e=Bs(t.repetition);return t.repetition.idx!==0&&(e+=t.repetition.idx),`The repetition <${e}> within Rule <${t.topLevelRule.name}> can never consume any tokens. +This could lead to an infinite loop.`},buildTokenNameError(t){return"deprecated"},buildEmptyAlternationError(t){return`Ambiguous empty alternative: <${t.emptyChoiceIdx+1}> in inside <${t.topLevelRule.name}> Rule. +Only the last alternative may be an empty alternative.`},buildTooManyAlternativesError(t){return`An Alternation cannot have more than 256 alternatives: + inside <${t.topLevelRule.name}> Rule. + has ${t.alternation.definition.length+1} alternatives.`},buildLeftRecursionError(t){let e=t.topLevelRule.name,r=Je(t.leftRecursionPath,a=>a.name),n=`${e} --> ${r.concat([e]).join(" --> ")}`;return`Left Recursion found in grammar. +rule: <${e}> can be invoked from itself (directly or indirectly) +without consuming any Tokens. The grammar path that causes this is: + ${n} + To fix this refactor your grammar to remove the left recursion. +see: https://en.wikipedia.org/wiki/LL_parser#Left_factoring.`},buildInvalidRuleNameError(t){return"deprecated"},buildDuplicateRuleNameError(t){let e;return t.topLevelRule instanceof as?e=t.topLevelRule.name:e=t.topLevelRule,`Duplicate definition, rule: ->${e}<- is already defined in the grammar: ->${t.grammarName}<-`}}});function fse(t,e){let r=new RN(t,e);return r.resolveRefs(),r.errors}var RN,dse=N(()=>{"use strict";Fs();qt();os();o(fse,"resolveGrammar");RN=class extends ss{static{o(this,"GastRefResolverVisitor")}constructor(e,r){super(),this.nameToTopRule=e,this.errMsgProvider=r,this.errors=[]}resolveRefs(){Ae(br(this.nameToTopRule),e=>{this.currTopLevel=e,e.accept(this)})}visitNonTerminal(e){let r=this.nameToTopRule[e.nonTerminalName];if(r)e.referencedRule=r;else{let n=this.errMsgProvider.buildRuleNotFoundError(this.currTopLevel,e);this.errors.push({message:n,type:zi.UNRESOLVED_SUBRULE_REF,ruleName:this.currTopLevel.name,unresolvedRefName:e.nonTerminalName})}}}});function Fk(t,e,r=[]){r=an(r);let n=[],i=0;function a(l){return l.concat(gi(t,i+1))}o(a,"remainingPathWith");function s(l){let u=Fk(a(l),e,r);return n.concat(u)}for(o(s,"getAlternativesForProd");r.length{ur(u.definition)===!1&&(n=s(u.definition))}),n;if(l instanceof kr)r.push(l.terminalType);else throw Error("non exhaustive match")}i++}return n.push({partialPath:r,suffixDef:gi(t,i)}),n}function $k(t,e,r,n){let i="EXIT_NONE_TERMINAL",a=[i],s="EXIT_ALTERNATIVE",l=!1,u=e.length,h=u-n-1,f=[],d=[];for(d.push({idx:-1,def:t,ruleStack:[],occurrenceStack:[]});!ur(d);){let p=d.pop();if(p===s){l&&ga(d).idx<=h&&d.pop();continue}let m=p.def,g=p.idx,y=p.ruleStack,v=p.occurrenceStack;if(ur(m))continue;let x=m[0];if(x===i){let b={idx:g,def:gi(m),ruleStack:Nu(y),occurrenceStack:Nu(v)};d.push(b)}else if(x instanceof kr)if(g=0;b--){let w=x.definition[b],C={idx:g,def:w.definition.concat(gi(m)),ruleStack:y,occurrenceStack:v};d.push(C),d.push(s)}else if(x instanceof Dn)d.push({idx:g,def:x.definition.concat(gi(m)),ruleStack:y,occurrenceStack:v});else if(x instanceof as)d.push(KPe(x,g,y,v));else throw Error("non exhaustive match")}return f}function KPe(t,e,r,n){let i=an(r);i.push(t.name);let a=an(n);return a.push(1),{idx:e,def:t.definition,ruleStack:i,occurrenceStack:a}}var NN,Ok,Ug,Pk,ox,Bk,lx,cx=N(()=>{"use strict";qt();xN();Ak();os();NN=class extends Ou{static{o(this,"AbstractNextPossibleTokensWalker")}constructor(e,r){super(),this.topProd=e,this.path=r,this.possibleTokTypes=[],this.nextProductionName="",this.nextProductionOccurrence=0,this.found=!1,this.isAtEndOfPath=!1}startWalking(){if(this.found=!1,this.path.ruleStack[0]!==this.topProd.name)throw Error("The path does not start with the walker's top Rule!");return this.ruleStack=an(this.path.ruleStack).reverse(),this.occurrenceStack=an(this.path.occurrenceStack).reverse(),this.ruleStack.pop(),this.occurrenceStack.pop(),this.updateExpectedNext(),this.walk(this.topProd),this.possibleTokTypes}walk(e,r=[]){this.found||super.walk(e,r)}walkProdRef(e,r,n){if(e.referencedRule.name===this.nextProductionName&&e.idx===this.nextProductionOccurrence){let i=r.concat(n);this.updateExpectedNext(),this.walk(e.referencedRule,i)}}updateExpectedNext(){ur(this.ruleStack)?(this.nextProductionName="",this.nextProductionOccurrence=0,this.isAtEndOfPath=!0):(this.nextProductionName=this.ruleStack.pop(),this.nextProductionOccurrence=this.occurrenceStack.pop())}},Ok=class extends NN{static{o(this,"NextAfterTokenWalker")}constructor(e,r){super(e,r),this.path=r,this.nextTerminalName="",this.nextTerminalOccurrence=0,this.nextTerminalName=this.path.lastTok.name,this.nextTerminalOccurrence=this.path.lastTokOccurrence}walkTerminal(e,r,n){if(this.isAtEndOfPath&&e.terminalType.name===this.nextTerminalName&&e.idx===this.nextTerminalOccurrence&&!this.found){let i=r.concat(n),a=new Dn({definition:i});this.possibleTokTypes=op(a),this.found=!0}}},Ug=class extends Ou{static{o(this,"AbstractNextTerminalAfterProductionWalker")}constructor(e,r){super(),this.topRule=e,this.occurrence=r,this.result={token:void 0,occurrence:void 0,isEndOfRule:void 0}}startWalking(){return this.walk(this.topRule),this.result}},Pk=class extends Ug{static{o(this,"NextTerminalAfterManyWalker")}walkMany(e,r,n){if(e.idx===this.occurrence){let i=ia(r.concat(n));this.result.isEndOfRule=i===void 0,i instanceof kr&&(this.result.token=i.terminalType,this.result.occurrence=i.idx)}else super.walkMany(e,r,n)}},ox=class extends Ug{static{o(this,"NextTerminalAfterManySepWalker")}walkManySep(e,r,n){if(e.idx===this.occurrence){let i=ia(r.concat(n));this.result.isEndOfRule=i===void 0,i instanceof kr&&(this.result.token=i.terminalType,this.result.occurrence=i.idx)}else super.walkManySep(e,r,n)}},Bk=class extends Ug{static{o(this,"NextTerminalAfterAtLeastOneWalker")}walkAtLeastOne(e,r,n){if(e.idx===this.occurrence){let i=ia(r.concat(n));this.result.isEndOfRule=i===void 0,i instanceof kr&&(this.result.token=i.terminalType,this.result.occurrence=i.idx)}else super.walkAtLeastOne(e,r,n)}},lx=class extends Ug{static{o(this,"NextTerminalAfterAtLeastOneSepWalker")}walkAtLeastOneSep(e,r,n){if(e.idx===this.occurrence){let i=ia(r.concat(n));this.result.isEndOfRule=i===void 0,i instanceof kr&&(this.result.token=i.terminalType,this.result.occurrence=i.idx)}else super.walkAtLeastOneSep(e,r,n)}};o(Fk,"possiblePathsFrom");o($k,"nextPossibleTokensAfter");o(KPe,"expandTopLevelRule")});function ux(t){if(t instanceof ln||t==="Option")return jn.OPTION;if(t instanceof Or||t==="Repetition")return jn.REPETITION;if(t instanceof Ln||t==="RepetitionMandatory")return jn.REPETITION_MANDATORY;if(t instanceof Rn||t==="RepetitionMandatoryWithSeparator")return jn.REPETITION_MANDATORY_WITH_SEPARATOR;if(t instanceof wn||t==="RepetitionWithSeparator")return jn.REPETITION_WITH_SEPARATOR;if(t instanceof Tn||t==="Alternation")return jn.ALTERNATION;throw Error("non exhaustive match")}function Gk(t){let{occurrence:e,rule:r,prodType:n,maxLookahead:i}=t,a=ux(n);return a===jn.ALTERNATION?Hg(e,r,i):Wg(e,r,a,i)}function mse(t,e,r,n,i,a){let s=Hg(t,e,r),l=wse(s)?zg:Pu;return a(s,n,l,i)}function gse(t,e,r,n,i,a){let s=Wg(t,e,i,r),l=wse(s)?zg:Pu;return a(s[0],l,n)}function yse(t,e,r,n){let i=t.length,a=Ma(t,s=>Ma(s,l=>l.length===1));if(e)return function(s){let l=Je(s,u=>u.GATE);for(let u=0;uqr(u)),l=Xr(s,(u,h,f)=>(Ae(h,d=>{Bt(u,d.tokenTypeIdx)||(u[d.tokenTypeIdx]=f),Ae(d.categoryMatches,p=>{Bt(u,p)||(u[p]=f)})}),u),{});return function(){let u=this.LA(1);return l[u.tokenTypeIdx]}}else return function(){for(let s=0;sa.length===1),i=t.length;if(n&&!r){let a=qr(t);if(a.length===1&&ur(a[0].categoryMatches)){let l=a[0].tokenTypeIdx;return function(){return this.LA(1).tokenTypeIdx===l}}else{let s=Xr(a,(l,u,h)=>(l[u.tokenTypeIdx]=!0,Ae(u.categoryMatches,f=>{l[f]=!0}),l),[]);return function(){let l=this.LA(1);return s[l.tokenTypeIdx]===!0}}}else return function(){e:for(let a=0;aFk([s],1)),n=pse(r.length),i=Je(r,s=>{let l={};return Ae(s,u=>{let h=MN(u.partialPath);Ae(h,f=>{l[f]=!0})}),l}),a=r;for(let s=1;s<=e;s++){let l=a;a=pse(l.length);for(let u=0;u{let x=MN(v.partialPath);Ae(x,b=>{i[u][b]=!0})})}}}}return n}function Hg(t,e,r,n){let i=new zk(t,jn.ALTERNATION,n);return e.accept(i),xse(i.result,r)}function Wg(t,e,r,n){let i=new zk(t,r);e.accept(i);let a=i.result,l=new IN(e,t,r).startWalking(),u=new Dn({definition:a}),h=new Dn({definition:l});return xse([u,h],n)}function Vk(t,e){e:for(let r=0;r{let i=e[n];return r===i||i.categoryMatchesMap[r.tokenTypeIdx]})}function wse(t){return Ma(t,e=>Ma(e,r=>Ma(r,n=>ur(n.categoryMatches))))}var jn,IN,zk,qg=N(()=>{"use strict";qt();cx();Ak();cp();os();(function(t){t[t.OPTION=0]="OPTION",t[t.REPETITION=1]="REPETITION",t[t.REPETITION_MANDATORY=2]="REPETITION_MANDATORY",t[t.REPETITION_MANDATORY_WITH_SEPARATOR=3]="REPETITION_MANDATORY_WITH_SEPARATOR",t[t.REPETITION_WITH_SEPARATOR=4]="REPETITION_WITH_SEPARATOR",t[t.ALTERNATION=5]="ALTERNATION"})(jn||(jn={}));o(ux,"getProdType");o(Gk,"getLookaheadPaths");o(mse,"buildLookaheadFuncForOr");o(gse,"buildLookaheadFuncForOptionalProd");o(yse,"buildAlternativesLookAheadFunc");o(vse,"buildSingleAlternativeLookaheadFunction");IN=class extends Ou{static{o(this,"RestDefinitionFinderWalker")}constructor(e,r,n){super(),this.topProd=e,this.targetOccurrence=r,this.targetProdType=n}startWalking(){return this.walk(this.topProd),this.restDef}checkIsTarget(e,r,n,i){return e.idx===this.targetOccurrence&&this.targetProdType===r?(this.restDef=n.concat(i),!0):!1}walkOption(e,r,n){this.checkIsTarget(e,jn.OPTION,r,n)||super.walkOption(e,r,n)}walkAtLeastOne(e,r,n){this.checkIsTarget(e,jn.REPETITION_MANDATORY,r,n)||super.walkOption(e,r,n)}walkAtLeastOneSep(e,r,n){this.checkIsTarget(e,jn.REPETITION_MANDATORY_WITH_SEPARATOR,r,n)||super.walkOption(e,r,n)}walkMany(e,r,n){this.checkIsTarget(e,jn.REPETITION,r,n)||super.walkOption(e,r,n)}walkManySep(e,r,n){this.checkIsTarget(e,jn.REPETITION_WITH_SEPARATOR,r,n)||super.walkOption(e,r,n)}},zk=class extends ss{static{o(this,"InsideDefinitionFinderVisitor")}constructor(e,r,n){super(),this.targetOccurrence=e,this.targetProdType=r,this.targetRef=n,this.result=[]}checkIsTarget(e,r){e.idx===this.targetOccurrence&&this.targetProdType===r&&(this.targetRef===void 0||e===this.targetRef)&&(this.result=e.definition)}visitOption(e){this.checkIsTarget(e,jn.OPTION)}visitRepetition(e){this.checkIsTarget(e,jn.REPETITION)}visitRepetitionMandatory(e){this.checkIsTarget(e,jn.REPETITION_MANDATORY)}visitRepetitionMandatoryWithSeparator(e){this.checkIsTarget(e,jn.REPETITION_MANDATORY_WITH_SEPARATOR)}visitRepetitionWithSeparator(e){this.checkIsTarget(e,jn.REPETITION_WITH_SEPARATOR)}visitAlternation(e){this.checkIsTarget(e,jn.ALTERNATION)}};o(pse,"initializeArrayOfArrays");o(MN,"pathToHashKeys");o(QPe,"isUniquePrefixHash");o(xse,"lookAheadSequenceFromAlternatives");o(Hg,"getLookaheadPathsForOr");o(Wg,"getLookaheadPathsForOptionalProd");o(Vk,"containsPath");o(bse,"isStrictPrefixOfPath");o(wse,"areTokenCategoriesNotUsed")});function Tse(t){let e=t.lookaheadStrategy.validate({rules:t.rules,tokenTypes:t.tokenTypes,grammarName:t.grammarName});return Je(e,r=>Object.assign({type:zi.CUSTOM_LOOKAHEAD_VALIDATION},r))}function kse(t,e,r,n){let i=ya(t,u=>ZPe(u,r)),a=iBe(t,e,r),s=ya(t,u=>tBe(u,r)),l=ya(t,u=>eBe(u,t,n,r));return i.concat(a,s,l)}function ZPe(t,e){let r=new ON;t.accept(r);let n=r.allProductions,i=IL(n,JPe),a=Os(i,l=>l.length>1);return Je(br(a),l=>{let u=ia(l),h=e.buildDuplicateFoundError(t,l),f=Bs(u),d={message:h,type:zi.DUPLICATE_PRODUCTIONS,ruleName:t.name,dslName:f,occurrence:u.idx},p=Ese(u);return p&&(d.parameter=p),d})}function JPe(t){return`${Bs(t)}_#_${t.idx}_#_${Ese(t)}`}function Ese(t){return t instanceof kr?t.terminalType.name:t instanceof on?t.nonTerminalName:""}function eBe(t,e,r,n){let i=[];if(Xr(e,(s,l)=>l.name===t.name?s+1:s,0)>1){let s=n.buildDuplicateRuleNameError({topLevelRule:t,grammarName:r});i.push({message:s,type:zi.DUPLICATE_RULE_NAME,ruleName:t.name})}return i}function Sse(t,e,r){let n=[],i;return qn(e,t)||(i=`Invalid rule override, rule: ->${t}<- cannot be overridden in the grammar: ->${r}<-as it is not defined in any of the super grammars `,n.push({message:i,type:zi.INVALID_RULE_OVERRIDE,ruleName:t})),n}function BN(t,e,r,n=[]){let i=[],a=Uk(e.definition);if(ur(a))return[];{let s=t.name;qn(a,t)&&i.push({message:r.buildLeftRecursionError({topLevelRule:t,leftRecursionPath:n}),type:zi.LEFT_RECURSION,ruleName:s});let u=Zh(a,n.concat([t])),h=ya(u,f=>{let d=an(n);return d.push(f),BN(t,f,r,d)});return i.concat(h)}}function Uk(t){let e=[];if(ur(t))return e;let r=ia(t);if(r instanceof on)e.push(r.referencedRule);else if(r instanceof Dn||r instanceof ln||r instanceof Ln||r instanceof Rn||r instanceof wn||r instanceof Or)e=e.concat(Uk(r.definition));else if(r instanceof Tn)e=qr(Je(r.definition,a=>Uk(a.definition)));else if(!(r instanceof kr))throw Error("non exhaustive match");let n=sp(r),i=t.length>1;if(n&&i){let a=gi(t);return e.concat(Uk(a))}else return e}function Cse(t,e){let r=new hx;t.accept(r);let n=r.alternations;return ya(n,a=>{let s=Nu(a.definition);return ya(s,(l,u)=>{let h=$k([l],[],Pu,1);return ur(h)?[{message:e.buildEmptyAlternationError({topLevelRule:t,alternation:a,emptyChoiceIdx:u}),type:zi.NONE_LAST_EMPTY_ALT,ruleName:t.name,occurrence:a.idx,alternative:u+1}]:[]})})}function Ase(t,e,r){let n=new hx;t.accept(n);let i=n.alternations;return i=Jh(i,s=>s.ignoreAmbiguities===!0),ya(i,s=>{let l=s.idx,u=s.maxLookahead||e,h=Hg(l,t,u,s),f=rBe(h,s,t,r),d=nBe(h,s,t,r);return f.concat(d)})}function tBe(t,e){let r=new hx;t.accept(r);let n=r.alternations;return ya(n,a=>a.definition.length>255?[{message:e.buildTooManyAlternativesError({topLevelRule:t,alternation:a}),type:zi.TOO_MANY_ALTS,ruleName:t.name,occurrence:a.idx}]:[])}function _se(t,e,r){let n=[];return Ae(t,i=>{let a=new PN;i.accept(a);let s=a.allProductions;Ae(s,l=>{let u=ux(l),h=l.maxLookahead||e,f=l.idx,p=Wg(f,i,u,h)[0];if(ur(qr(p))){let m=r.buildEmptyRepetitionError({topLevelRule:i,repetition:l});n.push({message:m,type:zi.NO_NON_EMPTY_LOOKAHEAD,ruleName:i.name})}})}),n}function rBe(t,e,r,n){let i=[],a=Xr(t,(l,u,h)=>(e.definition[h].ignoreAmbiguities===!0||Ae(u,f=>{let d=[h];Ae(t,(p,m)=>{h!==m&&Vk(p,f)&&e.definition[m].ignoreAmbiguities!==!0&&d.push(m)}),d.length>1&&!Vk(i,f)&&(i.push(f),l.push({alts:d,path:f}))}),l),[]);return Je(a,l=>{let u=Je(l.alts,f=>f+1);return{message:n.buildAlternationAmbiguityError({topLevelRule:r,alternation:e,ambiguityIndices:u,prefixPath:l.path}),type:zi.AMBIGUOUS_ALTS,ruleName:r.name,occurrence:e.idx,alternatives:l.alts}})}function nBe(t,e,r,n){let i=Xr(t,(s,l,u)=>{let h=Je(l,f=>({idx:u,path:f}));return s.concat(h)},[]);return Tc(ya(i,s=>{if(e.definition[s.idx].ignoreAmbiguities===!0)return[];let u=s.idx,h=s.path,f=Yr(i,p=>e.definition[p.idx].ignoreAmbiguities!==!0&&p.idx{let m=[p.idx+1,u+1],g=e.idx===0?"":e.idx;return{message:n.buildAlternationPrefixAmbiguityError({topLevelRule:r,alternation:e,ambiguityIndices:m,prefixPath:p.path}),type:zi.AMBIGUOUS_PREFIX_ALTS,ruleName:r.name,occurrence:g,alternatives:m}})}))}function iBe(t,e,r){let n=[],i=Je(e,a=>a.name);return Ae(t,a=>{let s=a.name;if(qn(i,s)){let l=r.buildNamespaceConflictError(a);n.push({message:l,type:zi.CONFLICT_TOKENS_RULES_NAMESPACE,ruleName:s})}}),n}var ON,hx,PN,fx=N(()=>{"use strict";qt();Fs();os();qg();cx();cp();o(Tse,"validateLookahead");o(kse,"validateGrammar");o(ZPe,"validateDuplicateProductions");o(JPe,"identifyProductionForDuplicates");o(Ese,"getExtraProductionArgument");ON=class extends ss{static{o(this,"OccurrenceValidationCollector")}constructor(){super(...arguments),this.allProductions=[]}visitNonTerminal(e){this.allProductions.push(e)}visitOption(e){this.allProductions.push(e)}visitRepetitionWithSeparator(e){this.allProductions.push(e)}visitRepetitionMandatory(e){this.allProductions.push(e)}visitRepetitionMandatoryWithSeparator(e){this.allProductions.push(e)}visitRepetition(e){this.allProductions.push(e)}visitAlternation(e){this.allProductions.push(e)}visitTerminal(e){this.allProductions.push(e)}};o(eBe,"validateRuleDoesNotAlreadyExist");o(Sse,"validateRuleIsOverridden");o(BN,"validateNoLeftRecursion");o(Uk,"getFirstNoneTerminal");hx=class extends ss{static{o(this,"OrCollector")}constructor(){super(...arguments),this.alternations=[]}visitAlternation(e){this.alternations.push(e)}};o(Cse,"validateEmptyOrAlternative");o(Ase,"validateAmbiguousAlternationAlternatives");PN=class extends ss{static{o(this,"RepetitionCollector")}constructor(){super(...arguments),this.allProductions=[]}visitRepetitionWithSeparator(e){this.allProductions.push(e)}visitRepetitionMandatory(e){this.allProductions.push(e)}visitRepetitionMandatoryWithSeparator(e){this.allProductions.push(e)}visitRepetition(e){this.allProductions.push(e)}};o(tBe,"validateTooManyAlts");o(_se,"validateSomeNonEmptyLookaheadPath");o(rBe,"checkAlternativesAmbiguities");o(nBe,"checkPrefixAlternativesAmbiguities");o(iBe,"checkTerminalAndNoneTerminalsNameSpace")});function Dse(t){let e=Qh(t,{errMsgProvider:hse}),r={};return Ae(t.rules,n=>{r[n.name]=n}),fse(r,e.errMsgProvider)}function Lse(t){return t=Qh(t,{errMsgProvider:Pl}),kse(t.rules,t.tokenTypes,t.errMsgProvider,t.grammarName)}var Rse=N(()=>{"use strict";qt();dse();fx();Vg();o(Dse,"resolveGrammar");o(Lse,"validateGrammar")});function lf(t){return qn(Pse,t.name)}var Nse,Mse,Ise,Ose,Pse,Yg,hp,dx,px,mx,Xg=N(()=>{"use strict";qt();Nse="MismatchedTokenException",Mse="NoViableAltException",Ise="EarlyExitException",Ose="NotAllInputParsedException",Pse=[Nse,Mse,Ise,Ose];Object.freeze(Pse);o(lf,"isRecognitionException");Yg=class extends Error{static{o(this,"RecognitionException")}constructor(e,r){super(e),this.token=r,this.resyncedTokens=[],Object.setPrototypeOf(this,new.target.prototype),Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}},hp=class extends Yg{static{o(this,"MismatchedTokenException")}constructor(e,r,n){super(e,r),this.previousToken=n,this.name=Nse}},dx=class extends Yg{static{o(this,"NoViableAltException")}constructor(e,r,n){super(e,r),this.previousToken=n,this.name=Mse}},px=class extends Yg{static{o(this,"NotAllInputParsedException")}constructor(e,r){super(e,r),this.name=Ose}},mx=class extends Yg{static{o(this,"EarlyExitException")}constructor(e,r,n){super(e,r),this.previousToken=n,this.name=Ise}}});function aBe(t,e,r,n,i,a,s){let l=this.getKeyForAutomaticLookahead(n,i),u=this.firstAfterRepMap[l];if(u===void 0){let p=this.getCurrRuleFullName(),m=this.getGAstProductions()[p];u=new a(m,i).startWalking(),this.firstAfterRepMap[l]=u}let h=u.token,f=u.occurrence,d=u.isEndOfRule;this.RULE_STACK.length===1&&d&&h===void 0&&(h=lo,f=1),!(h===void 0||f===void 0)&&this.shouldInRepetitionRecoveryBeTried(h,f,s)&&this.tryInRepetitionRecovery(t,e,r,h)}var FN,zN,$N,Hk,GN=N(()=>{"use strict";up();qt();Xg();bN();Fs();FN={},zN="InRuleRecoveryException",$N=class extends Error{static{o(this,"InRuleRecoveryException")}constructor(e){super(e),this.name=zN}},Hk=class{static{o(this,"Recoverable")}initRecoverable(e){this.firstAfterRepMap={},this.resyncFollows={},this.recoveryEnabled=Bt(e,"recoveryEnabled")?e.recoveryEnabled:ls.recoveryEnabled,this.recoveryEnabled&&(this.attemptInRepetitionRecovery=aBe)}getTokenToInsert(e){let r=$u(e,"",NaN,NaN,NaN,NaN,NaN,NaN);return r.isInsertedInRecovery=!0,r}canTokenTypeBeInsertedInRecovery(e){return!0}canTokenTypeBeDeletedInRecovery(e){return!0}tryInRepetitionRecovery(e,r,n,i){let a=this.findReSyncTokenType(),s=this.exportLexerState(),l=[],u=!1,h=this.LA(1),f=this.LA(1),d=o(()=>{let p=this.LA(0),m=this.errorMessageProvider.buildMismatchTokenMessage({expected:i,actual:h,previous:p,ruleName:this.getCurrRuleFullName()}),g=new hp(m,h,this.LA(0));g.resyncedTokens=Nu(l),this.SAVE_ERROR(g)},"generateErrorMessage");for(;!u;)if(this.tokenMatcher(f,i)){d();return}else if(n.call(this)){d(),e.apply(this,r);return}else this.tokenMatcher(f,a)?u=!0:(f=this.SKIP_TOKEN(),this.addToResyncTokens(f,l));this.importLexerState(s)}shouldInRepetitionRecoveryBeTried(e,r,n){return!(n===!1||this.tokenMatcher(this.LA(1),e)||this.isBackTracking()||this.canPerformInRuleRecovery(e,this.getFollowsForInRuleRecovery(e,r)))}getFollowsForInRuleRecovery(e,r){let n=this.getCurrentGrammarPath(e,r);return this.getNextPossibleTokenTypes(n)}tryInRuleRecovery(e,r){if(this.canRecoverWithSingleTokenInsertion(e,r))return this.getTokenToInsert(e);if(this.canRecoverWithSingleTokenDeletion(e)){let n=this.SKIP_TOKEN();return this.consumeToken(),n}throw new $N("sad sad panda")}canPerformInRuleRecovery(e,r){return this.canRecoverWithSingleTokenInsertion(e,r)||this.canRecoverWithSingleTokenDeletion(e)}canRecoverWithSingleTokenInsertion(e,r){if(!this.canTokenTypeBeInsertedInRecovery(e)||ur(r))return!1;let n=this.LA(1);return ns(r,a=>this.tokenMatcher(n,a))!==void 0}canRecoverWithSingleTokenDeletion(e){return this.canTokenTypeBeDeletedInRecovery(e)?this.tokenMatcher(this.LA(2),e):!1}isInCurrentRuleReSyncSet(e){let r=this.getCurrFollowKey(),n=this.getFollowSetFromFollowKey(r);return qn(n,e)}findReSyncTokenType(){let e=this.flattenFollowSet(),r=this.LA(1),n=2;for(;;){let i=ns(e,a=>sx(r,a));if(i!==void 0)return i;r=this.LA(n),n++}}getCurrFollowKey(){if(this.RULE_STACK.length===1)return FN;let e=this.getLastExplicitRuleShortName(),r=this.getLastExplicitRuleOccurrenceIndex(),n=this.getPreviousExplicitRuleShortName();return{ruleName:this.shortRuleNameToFullName(e),idxInCallingRule:r,inRule:this.shortRuleNameToFullName(n)}}buildFullFollowKeyStack(){let e=this.RULE_STACK,r=this.RULE_OCCURRENCE_STACK;return Je(e,(n,i)=>i===0?FN:{ruleName:this.shortRuleNameToFullName(n),idxInCallingRule:r[i],inRule:this.shortRuleNameToFullName(e[i-1])})}flattenFollowSet(){let e=Je(this.buildFullFollowKeyStack(),r=>this.getFollowSetFromFollowKey(r));return qr(e)}getFollowSetFromFollowKey(e){if(e===FN)return[lo];let r=e.ruleName+e.idxInCallingRule+_k+e.inRule;return this.resyncFollows[r]}addToResyncTokens(e,r){return this.tokenMatcher(e,lo)||r.push(e),r}reSyncTo(e){let r=[],n=this.LA(1);for(;this.tokenMatcher(n,e)===!1;)n=this.SKIP_TOKEN(),this.addToResyncTokens(n,r);return Nu(r)}attemptInRepetitionRecovery(e,r,n,i,a,s,l){}getCurrentGrammarPath(e,r){let n=this.getHumanReadableRuleStack(),i=an(this.RULE_OCCURRENCE_STACK);return{ruleStack:n,occurrenceStack:i,lastTok:e,lastTokOccurrence:r}}getHumanReadableRuleStack(){return Je(this.RULE_STACK,e=>this.shortRuleNameToFullName(e))}};o(aBe,"attemptInRepetitionRecovery")});function Wk(t,e,r){return r|e|t}var qk=N(()=>{"use strict";o(Wk,"getKeyForAutomaticLookahead")});var Gu,VN=N(()=>{"use strict";qt();Vg();Fs();fx();qg();Gu=class{static{o(this,"LLkLookaheadStrategy")}constructor(e){var r;this.maxLookahead=(r=e?.maxLookahead)!==null&&r!==void 0?r:ls.maxLookahead}validate(e){let r=this.validateNoLeftRecursion(e.rules);if(ur(r)){let n=this.validateEmptyOrAlternatives(e.rules),i=this.validateAmbiguousAlternationAlternatives(e.rules,this.maxLookahead),a=this.validateSomeNonEmptyLookaheadPath(e.rules,this.maxLookahead);return[...r,...n,...i,...a]}return r}validateNoLeftRecursion(e){return ya(e,r=>BN(r,r,Pl))}validateEmptyOrAlternatives(e){return ya(e,r=>Cse(r,Pl))}validateAmbiguousAlternationAlternatives(e,r){return ya(e,n=>Ase(n,r,Pl))}validateSomeNonEmptyLookaheadPath(e,r){return _se(e,r,Pl)}buildLookaheadForAlternation(e){return mse(e.prodOccurrence,e.rule,e.maxLookahead,e.hasPredicates,e.dynamicTokensEnabled,yse)}buildLookaheadForOptional(e){return gse(e.prodOccurrence,e.rule,e.maxLookahead,e.dynamicTokensEnabled,ux(e.prodType),vse)}}});function sBe(t){Yk.reset(),t.accept(Yk);let e=Yk.dslMethods;return Yk.reset(),e}var Xk,UN,Yk,Bse=N(()=>{"use strict";qt();Fs();qk();os();VN();Xk=class{static{o(this,"LooksAhead")}initLooksAhead(e){this.dynamicTokensEnabled=Bt(e,"dynamicTokensEnabled")?e.dynamicTokensEnabled:ls.dynamicTokensEnabled,this.maxLookahead=Bt(e,"maxLookahead")?e.maxLookahead:ls.maxLookahead,this.lookaheadStrategy=Bt(e,"lookaheadStrategy")?e.lookaheadStrategy:new Gu({maxLookahead:this.maxLookahead}),this.lookAheadFuncsCache=new Map}preComputeLookaheadFunctions(e){Ae(e,r=>{this.TRACE_INIT(`${r.name} Rule Lookahead`,()=>{let{alternation:n,repetition:i,option:a,repetitionMandatory:s,repetitionMandatoryWithSeparator:l,repetitionWithSeparator:u}=sBe(r);Ae(n,h=>{let f=h.idx===0?"":h.idx;this.TRACE_INIT(`${Bs(h)}${f}`,()=>{let d=this.lookaheadStrategy.buildLookaheadForAlternation({prodOccurrence:h.idx,rule:r,maxLookahead:h.maxLookahead||this.maxLookahead,hasPredicates:h.hasPredicates,dynamicTokensEnabled:this.dynamicTokensEnabled}),p=Wk(this.fullRuleNameToShort[r.name],256,h.idx);this.setLaFuncCache(p,d)})}),Ae(i,h=>{this.computeLookaheadFunc(r,h.idx,768,"Repetition",h.maxLookahead,Bs(h))}),Ae(a,h=>{this.computeLookaheadFunc(r,h.idx,512,"Option",h.maxLookahead,Bs(h))}),Ae(s,h=>{this.computeLookaheadFunc(r,h.idx,1024,"RepetitionMandatory",h.maxLookahead,Bs(h))}),Ae(l,h=>{this.computeLookaheadFunc(r,h.idx,1536,"RepetitionMandatoryWithSeparator",h.maxLookahead,Bs(h))}),Ae(u,h=>{this.computeLookaheadFunc(r,h.idx,1280,"RepetitionWithSeparator",h.maxLookahead,Bs(h))})})})}computeLookaheadFunc(e,r,n,i,a,s){this.TRACE_INIT(`${s}${r===0?"":r}`,()=>{let l=this.lookaheadStrategy.buildLookaheadForOptional({prodOccurrence:r,rule:e,maxLookahead:a||this.maxLookahead,dynamicTokensEnabled:this.dynamicTokensEnabled,prodType:i}),u=Wk(this.fullRuleNameToShort[e.name],n,r);this.setLaFuncCache(u,l)})}getKeyForAutomaticLookahead(e,r){let n=this.getLastExplicitRuleShortName();return Wk(n,e,r)}getLaFuncFromCache(e){return this.lookAheadFuncsCache.get(e)}setLaFuncCache(e,r){this.lookAheadFuncsCache.set(e,r)}},UN=class extends ss{static{o(this,"DslMethodsCollectorVisitor")}constructor(){super(...arguments),this.dslMethods={option:[],alternation:[],repetition:[],repetitionWithSeparator:[],repetitionMandatory:[],repetitionMandatoryWithSeparator:[]}}reset(){this.dslMethods={option:[],alternation:[],repetition:[],repetitionWithSeparator:[],repetitionMandatory:[],repetitionMandatoryWithSeparator:[]}}visitOption(e){this.dslMethods.option.push(e)}visitRepetitionWithSeparator(e){this.dslMethods.repetitionWithSeparator.push(e)}visitRepetitionMandatory(e){this.dslMethods.repetitionMandatory.push(e)}visitRepetitionMandatoryWithSeparator(e){this.dslMethods.repetitionMandatoryWithSeparator.push(e)}visitRepetition(e){this.dslMethods.repetition.push(e)}visitAlternation(e){this.dslMethods.alternation.push(e)}},Yk=new UN;o(sBe,"collectMethods")});function qN(t,e){isNaN(t.startOffset)===!0?(t.startOffset=e.startOffset,t.endOffset=e.endOffset):t.endOffset{"use strict";o(qN,"setNodeLocationOnlyOffset");o(YN,"setNodeLocationFull");o(Fse,"addTerminalToCst");o($se,"addNoneTerminalToCst")});function XN(t,e){Object.defineProperty(t,oBe,{enumerable:!1,configurable:!0,writable:!1,value:e})}var oBe,Gse=N(()=>{"use strict";oBe="name";o(XN,"defineNameProp")});function lBe(t,e){let r=zr(t),n=r.length;for(let i=0;is.msg);throw Error(`Errors Detected in CST Visitor <${this.constructor.name}>: + ${a.join(` + +`).replace(/\n/g,` + `)}`)}},"validateVisitor")};return r.prototype=n,r.prototype.constructor=r,r._RULE_NAMES=e,r}function Use(t,e,r){let n=o(function(){},"derivedConstructor");XN(n,t+"BaseSemanticsWithDefaults");let i=Object.create(r.prototype);return Ae(e,a=>{i[a]=lBe}),n.prototype=i,n.prototype.constructor=n,n}function cBe(t,e){return uBe(t,e)}function uBe(t,e){let r=Yr(e,i=>Si(t[i])===!1),n=Je(r,i=>({msg:`Missing visitor method: <${i}> on ${t.constructor.name} CST Visitor.`,type:jN.MISSING_METHOD,methodName:i}));return Tc(n)}var jN,Hse=N(()=>{"use strict";qt();Gse();o(lBe,"defaultVisit");o(Vse,"createBaseSemanticVisitorConstructor");o(Use,"createBaseVisitorConstructorWithDefaults");(function(t){t[t.REDUNDANT_METHOD=0]="REDUNDANT_METHOD",t[t.MISSING_METHOD=1]="MISSING_METHOD"})(jN||(jN={}));o(cBe,"validateVisitor");o(uBe,"validateMissingCstMethods")});var Zk,Wse=N(()=>{"use strict";zse();qt();Hse();Fs();Zk=class{static{o(this,"TreeBuilder")}initTreeBuilder(e){if(this.CST_STACK=[],this.outputCst=e.outputCst,this.nodeLocationTracking=Bt(e,"nodeLocationTracking")?e.nodeLocationTracking:ls.nodeLocationTracking,!this.outputCst)this.cstInvocationStateUpdate=ni,this.cstFinallyStateUpdate=ni,this.cstPostTerminal=ni,this.cstPostNonTerminal=ni,this.cstPostRule=ni;else if(/full/i.test(this.nodeLocationTracking))this.recoveryEnabled?(this.setNodeLocationFromToken=YN,this.setNodeLocationFromNode=YN,this.cstPostRule=ni,this.setInitialNodeLocation=this.setInitialNodeLocationFullRecovery):(this.setNodeLocationFromToken=ni,this.setNodeLocationFromNode=ni,this.cstPostRule=this.cstPostRuleFull,this.setInitialNodeLocation=this.setInitialNodeLocationFullRegular);else if(/onlyOffset/i.test(this.nodeLocationTracking))this.recoveryEnabled?(this.setNodeLocationFromToken=qN,this.setNodeLocationFromNode=qN,this.cstPostRule=ni,this.setInitialNodeLocation=this.setInitialNodeLocationOnlyOffsetRecovery):(this.setNodeLocationFromToken=ni,this.setNodeLocationFromNode=ni,this.cstPostRule=this.cstPostRuleOnlyOffset,this.setInitialNodeLocation=this.setInitialNodeLocationOnlyOffsetRegular);else if(/none/i.test(this.nodeLocationTracking))this.setNodeLocationFromToken=ni,this.setNodeLocationFromNode=ni,this.cstPostRule=ni,this.setInitialNodeLocation=ni;else throw Error(`Invalid config option: "${e.nodeLocationTracking}"`)}setInitialNodeLocationOnlyOffsetRecovery(e){e.location={startOffset:NaN,endOffset:NaN}}setInitialNodeLocationOnlyOffsetRegular(e){e.location={startOffset:this.LA(1).startOffset,endOffset:NaN}}setInitialNodeLocationFullRecovery(e){e.location={startOffset:NaN,startLine:NaN,startColumn:NaN,endOffset:NaN,endLine:NaN,endColumn:NaN}}setInitialNodeLocationFullRegular(e){let r=this.LA(1);e.location={startOffset:r.startOffset,startLine:r.startLine,startColumn:r.startColumn,endOffset:NaN,endLine:NaN,endColumn:NaN}}cstInvocationStateUpdate(e){let r={name:e,children:Object.create(null)};this.setInitialNodeLocation(r),this.CST_STACK.push(r)}cstFinallyStateUpdate(){this.CST_STACK.pop()}cstPostRuleFull(e){let r=this.LA(0),n=e.location;n.startOffset<=r.startOffset?(n.endOffset=r.endOffset,n.endLine=r.endLine,n.endColumn=r.endColumn):(n.startOffset=NaN,n.startLine=NaN,n.startColumn=NaN)}cstPostRuleOnlyOffset(e){let r=this.LA(0),n=e.location;n.startOffset<=r.startOffset?n.endOffset=r.endOffset:n.startOffset=NaN}cstPostTerminal(e,r){let n=this.CST_STACK[this.CST_STACK.length-1];Fse(n,r,e),this.setNodeLocationFromToken(n.location,r)}cstPostNonTerminal(e,r){let n=this.CST_STACK[this.CST_STACK.length-1];$se(n,r,e),this.setNodeLocationFromNode(n.location,e.location)}getBaseCstVisitorConstructor(){if(pr(this.baseCstVisitorConstructor)){let e=Vse(this.className,zr(this.gastProductionsCache));return this.baseCstVisitorConstructor=e,e}return this.baseCstVisitorConstructor}getBaseCstVisitorConstructorWithDefaults(){if(pr(this.baseCstVisitorWithDefaultsConstructor)){let e=Use(this.className,zr(this.gastProductionsCache),this.getBaseCstVisitorConstructor());return this.baseCstVisitorWithDefaultsConstructor=e,e}return this.baseCstVisitorWithDefaultsConstructor}getLastExplicitRuleShortName(){let e=this.RULE_STACK;return e[e.length-1]}getPreviousExplicitRuleShortName(){let e=this.RULE_STACK;return e[e.length-2]}getLastExplicitRuleOccurrenceIndex(){let e=this.RULE_OCCURRENCE_STACK;return e[e.length-1]}}});var Jk,qse=N(()=>{"use strict";Fs();Jk=class{static{o(this,"LexerAdapter")}initLexerAdapter(){this.tokVector=[],this.tokVectorLength=0,this.currIdx=-1}set input(e){if(this.selfAnalysisDone!==!0)throw Error("Missing invocation at the end of the Parser's constructor.");this.reset(),this.tokVector=e,this.tokVectorLength=e.length}get input(){return this.tokVector}SKIP_TOKEN(){return this.currIdx<=this.tokVector.length-2?(this.consumeToken(),this.LA(1)):jg}LA(e){let r=this.currIdx+e;return r<0||this.tokVectorLength<=r?jg:this.tokVector[r]}consumeToken(){this.currIdx++}exportLexerState(){return this.currIdx}importLexerState(e){this.currIdx=e}resetLexerState(){this.currIdx=-1}moveToTerminatedState(){this.currIdx=this.tokVector.length-1}getLexerPosition(){return this.exportLexerState()}}});var eE,Yse=N(()=>{"use strict";qt();Xg();Fs();Vg();fx();os();eE=class{static{o(this,"RecognizerApi")}ACTION(e){return e.call(this)}consume(e,r,n){return this.consumeInternal(r,e,n)}subrule(e,r,n){return this.subruleInternal(r,e,n)}option(e,r){return this.optionInternal(r,e)}or(e,r){return this.orInternal(r,e)}many(e,r){return this.manyInternal(e,r)}atLeastOne(e,r){return this.atLeastOneInternal(e,r)}CONSUME(e,r){return this.consumeInternal(e,0,r)}CONSUME1(e,r){return this.consumeInternal(e,1,r)}CONSUME2(e,r){return this.consumeInternal(e,2,r)}CONSUME3(e,r){return this.consumeInternal(e,3,r)}CONSUME4(e,r){return this.consumeInternal(e,4,r)}CONSUME5(e,r){return this.consumeInternal(e,5,r)}CONSUME6(e,r){return this.consumeInternal(e,6,r)}CONSUME7(e,r){return this.consumeInternal(e,7,r)}CONSUME8(e,r){return this.consumeInternal(e,8,r)}CONSUME9(e,r){return this.consumeInternal(e,9,r)}SUBRULE(e,r){return this.subruleInternal(e,0,r)}SUBRULE1(e,r){return this.subruleInternal(e,1,r)}SUBRULE2(e,r){return this.subruleInternal(e,2,r)}SUBRULE3(e,r){return this.subruleInternal(e,3,r)}SUBRULE4(e,r){return this.subruleInternal(e,4,r)}SUBRULE5(e,r){return this.subruleInternal(e,5,r)}SUBRULE6(e,r){return this.subruleInternal(e,6,r)}SUBRULE7(e,r){return this.subruleInternal(e,7,r)}SUBRULE8(e,r){return this.subruleInternal(e,8,r)}SUBRULE9(e,r){return this.subruleInternal(e,9,r)}OPTION(e){return this.optionInternal(e,0)}OPTION1(e){return this.optionInternal(e,1)}OPTION2(e){return this.optionInternal(e,2)}OPTION3(e){return this.optionInternal(e,3)}OPTION4(e){return this.optionInternal(e,4)}OPTION5(e){return this.optionInternal(e,5)}OPTION6(e){return this.optionInternal(e,6)}OPTION7(e){return this.optionInternal(e,7)}OPTION8(e){return this.optionInternal(e,8)}OPTION9(e){return this.optionInternal(e,9)}OR(e){return this.orInternal(e,0)}OR1(e){return this.orInternal(e,1)}OR2(e){return this.orInternal(e,2)}OR3(e){return this.orInternal(e,3)}OR4(e){return this.orInternal(e,4)}OR5(e){return this.orInternal(e,5)}OR6(e){return this.orInternal(e,6)}OR7(e){return this.orInternal(e,7)}OR8(e){return this.orInternal(e,8)}OR9(e){return this.orInternal(e,9)}MANY(e){this.manyInternal(0,e)}MANY1(e){this.manyInternal(1,e)}MANY2(e){this.manyInternal(2,e)}MANY3(e){this.manyInternal(3,e)}MANY4(e){this.manyInternal(4,e)}MANY5(e){this.manyInternal(5,e)}MANY6(e){this.manyInternal(6,e)}MANY7(e){this.manyInternal(7,e)}MANY8(e){this.manyInternal(8,e)}MANY9(e){this.manyInternal(9,e)}MANY_SEP(e){this.manySepFirstInternal(0,e)}MANY_SEP1(e){this.manySepFirstInternal(1,e)}MANY_SEP2(e){this.manySepFirstInternal(2,e)}MANY_SEP3(e){this.manySepFirstInternal(3,e)}MANY_SEP4(e){this.manySepFirstInternal(4,e)}MANY_SEP5(e){this.manySepFirstInternal(5,e)}MANY_SEP6(e){this.manySepFirstInternal(6,e)}MANY_SEP7(e){this.manySepFirstInternal(7,e)}MANY_SEP8(e){this.manySepFirstInternal(8,e)}MANY_SEP9(e){this.manySepFirstInternal(9,e)}AT_LEAST_ONE(e){this.atLeastOneInternal(0,e)}AT_LEAST_ONE1(e){return this.atLeastOneInternal(1,e)}AT_LEAST_ONE2(e){this.atLeastOneInternal(2,e)}AT_LEAST_ONE3(e){this.atLeastOneInternal(3,e)}AT_LEAST_ONE4(e){this.atLeastOneInternal(4,e)}AT_LEAST_ONE5(e){this.atLeastOneInternal(5,e)}AT_LEAST_ONE6(e){this.atLeastOneInternal(6,e)}AT_LEAST_ONE7(e){this.atLeastOneInternal(7,e)}AT_LEAST_ONE8(e){this.atLeastOneInternal(8,e)}AT_LEAST_ONE9(e){this.atLeastOneInternal(9,e)}AT_LEAST_ONE_SEP(e){this.atLeastOneSepFirstInternal(0,e)}AT_LEAST_ONE_SEP1(e){this.atLeastOneSepFirstInternal(1,e)}AT_LEAST_ONE_SEP2(e){this.atLeastOneSepFirstInternal(2,e)}AT_LEAST_ONE_SEP3(e){this.atLeastOneSepFirstInternal(3,e)}AT_LEAST_ONE_SEP4(e){this.atLeastOneSepFirstInternal(4,e)}AT_LEAST_ONE_SEP5(e){this.atLeastOneSepFirstInternal(5,e)}AT_LEAST_ONE_SEP6(e){this.atLeastOneSepFirstInternal(6,e)}AT_LEAST_ONE_SEP7(e){this.atLeastOneSepFirstInternal(7,e)}AT_LEAST_ONE_SEP8(e){this.atLeastOneSepFirstInternal(8,e)}AT_LEAST_ONE_SEP9(e){this.atLeastOneSepFirstInternal(9,e)}RULE(e,r,n=Kg){if(qn(this.definedRulesNames,e)){let s={message:Pl.buildDuplicateRuleNameError({topLevelRule:e,grammarName:this.className}),type:zi.DUPLICATE_RULE_NAME,ruleName:e};this.definitionErrors.push(s)}this.definedRulesNames.push(e);let i=this.defineRule(e,r,n);return this[e]=i,i}OVERRIDE_RULE(e,r,n=Kg){let i=Sse(e,this.definedRulesNames,this.className);this.definitionErrors=this.definitionErrors.concat(i);let a=this.defineRule(e,r,n);return this[e]=a,a}BACKTRACK(e,r){return function(){this.isBackTrackingStack.push(1);let n=this.saveRecogState();try{return e.apply(this,r),!0}catch(i){if(lf(i))return!1;throw i}finally{this.reloadRecogState(n),this.isBackTrackingStack.pop()}}}getGAstProductions(){return this.gastProductionsCache}getSerializedGastProductions(){return Sk(br(this.gastProductionsCache))}}});var tE,Xse=N(()=>{"use strict";qt();qk();Xg();qg();cx();Fs();GN();up();cp();tE=class{static{o(this,"RecognizerEngine")}initRecognizerEngine(e,r){if(this.className=this.constructor.name,this.shortRuleNameToFull={},this.fullRuleNameToShort={},this.ruleShortNameIdx=256,this.tokenMatcher=zg,this.subruleIdx=0,this.definedRulesNames=[],this.tokensMap={},this.isBackTrackingStack=[],this.RULE_STACK=[],this.RULE_OCCURRENCE_STACK=[],this.gastProductionsCache={},Bt(r,"serializedGrammar"))throw Error(`The Parser's configuration can no longer contain a property. + See: https://chevrotain.io/docs/changes/BREAKING_CHANGES.html#_6-0-0 + For Further details.`);if(Pt(e)){if(ur(e))throw Error(`A Token Vocabulary cannot be empty. + Note that the first argument for the parser constructor + is no longer a Token vector (since v4.0).`);if(typeof e[0].startOffset=="number")throw Error(`The Parser constructor no longer accepts a token vector as the first argument. + See: https://chevrotain.io/docs/changes/BREAKING_CHANGES.html#_4-0-0 + For Further details.`)}if(Pt(e))this.tokensMap=Xr(e,(a,s)=>(a[s.name]=s,a),{});else if(Bt(e,"modes")&&Ma(qr(br(e.modes)),rse)){let a=qr(br(e.modes)),s=Bm(a);this.tokensMap=Xr(s,(l,u)=>(l[u.name]=u,l),{})}else if(bn(e))this.tokensMap=an(e);else throw new Error(" argument must be An Array of Token constructors, A dictionary of Token constructors or an IMultiModeLexerDefinition");this.tokensMap.EOF=lo;let n=Bt(e,"modes")?qr(br(e.modes)):br(e),i=Ma(n,a=>ur(a.categoryMatches));this.tokenMatcher=i?zg:Pu,Bu(br(this.tokensMap))}defineRule(e,r,n){if(this.selfAnalysisDone)throw Error(`Grammar rule <${e}> may not be defined after the 'performSelfAnalysis' method has been called' +Make sure that all grammar rule definitions are done before 'performSelfAnalysis' is called.`);let i=Bt(n,"resyncEnabled")?n.resyncEnabled:Kg.resyncEnabled,a=Bt(n,"recoveryValueFunc")?n.recoveryValueFunc:Kg.recoveryValueFunc,s=this.ruleShortNameIdx<<12;this.ruleShortNameIdx++,this.shortRuleNameToFull[s]=e,this.fullRuleNameToShort[e]=s;let l;return this.outputCst===!0?l=o(function(...f){try{this.ruleInvocationStateUpdate(s,e,this.subruleIdx),r.apply(this,f);let d=this.CST_STACK[this.CST_STACK.length-1];return this.cstPostRule(d),d}catch(d){return this.invokeRuleCatch(d,i,a)}finally{this.ruleFinallyStateUpdate()}},"invokeRuleWithTry"):l=o(function(...f){try{return this.ruleInvocationStateUpdate(s,e,this.subruleIdx),r.apply(this,f)}catch(d){return this.invokeRuleCatch(d,i,a)}finally{this.ruleFinallyStateUpdate()}},"invokeRuleWithTryCst"),Object.assign(l,{ruleName:e,originalGrammarAction:r})}invokeRuleCatch(e,r,n){let i=this.RULE_STACK.length===1,a=r&&!this.isBackTracking()&&this.recoveryEnabled;if(lf(e)){let s=e;if(a){let l=this.findReSyncTokenType();if(this.isInCurrentRuleReSyncSet(l))if(s.resyncedTokens=this.reSyncTo(l),this.outputCst){let u=this.CST_STACK[this.CST_STACK.length-1];return u.recoveredNode=!0,u}else return n(e);else{if(this.outputCst){let u=this.CST_STACK[this.CST_STACK.length-1];u.recoveredNode=!0,s.partialCstResult=u}throw s}}else{if(i)return this.moveToTerminatedState(),n(e);throw s}}else throw e}optionInternal(e,r){let n=this.getKeyForAutomaticLookahead(512,r);return this.optionInternalLogic(e,r,n)}optionInternalLogic(e,r,n){let i=this.getLaFuncFromCache(n),a;if(typeof e!="function"){a=e.DEF;let s=e.GATE;if(s!==void 0){let l=i;i=o(()=>s.call(this)&&l.call(this),"lookAheadFunc")}}else a=e;if(i.call(this)===!0)return a.call(this)}atLeastOneInternal(e,r){let n=this.getKeyForAutomaticLookahead(1024,e);return this.atLeastOneInternalLogic(e,r,n)}atLeastOneInternalLogic(e,r,n){let i=this.getLaFuncFromCache(n),a;if(typeof r!="function"){a=r.DEF;let s=r.GATE;if(s!==void 0){let l=i;i=o(()=>s.call(this)&&l.call(this),"lookAheadFunc")}}else a=r;if(i.call(this)===!0){let s=this.doSingleRepetition(a);for(;i.call(this)===!0&&s===!0;)s=this.doSingleRepetition(a)}else throw this.raiseEarlyExitException(e,jn.REPETITION_MANDATORY,r.ERR_MSG);this.attemptInRepetitionRecovery(this.atLeastOneInternal,[e,r],i,1024,e,Bk)}atLeastOneSepFirstInternal(e,r){let n=this.getKeyForAutomaticLookahead(1536,e);this.atLeastOneSepFirstInternalLogic(e,r,n)}atLeastOneSepFirstInternalLogic(e,r,n){let i=r.DEF,a=r.SEP;if(this.getLaFuncFromCache(n).call(this)===!0){i.call(this);let l=o(()=>this.tokenMatcher(this.LA(1),a),"separatorLookAheadFunc");for(;this.tokenMatcher(this.LA(1),a)===!0;)this.CONSUME(a),i.call(this);this.attemptInRepetitionRecovery(this.repetitionSepSecondInternal,[e,a,l,i,lx],l,1536,e,lx)}else throw this.raiseEarlyExitException(e,jn.REPETITION_MANDATORY_WITH_SEPARATOR,r.ERR_MSG)}manyInternal(e,r){let n=this.getKeyForAutomaticLookahead(768,e);return this.manyInternalLogic(e,r,n)}manyInternalLogic(e,r,n){let i=this.getLaFuncFromCache(n),a;if(typeof r!="function"){a=r.DEF;let l=r.GATE;if(l!==void 0){let u=i;i=o(()=>l.call(this)&&u.call(this),"lookaheadFunction")}}else a=r;let s=!0;for(;i.call(this)===!0&&s===!0;)s=this.doSingleRepetition(a);this.attemptInRepetitionRecovery(this.manyInternal,[e,r],i,768,e,Pk,s)}manySepFirstInternal(e,r){let n=this.getKeyForAutomaticLookahead(1280,e);this.manySepFirstInternalLogic(e,r,n)}manySepFirstInternalLogic(e,r,n){let i=r.DEF,a=r.SEP;if(this.getLaFuncFromCache(n).call(this)===!0){i.call(this);let l=o(()=>this.tokenMatcher(this.LA(1),a),"separatorLookAheadFunc");for(;this.tokenMatcher(this.LA(1),a)===!0;)this.CONSUME(a),i.call(this);this.attemptInRepetitionRecovery(this.repetitionSepSecondInternal,[e,a,l,i,ox],l,1280,e,ox)}}repetitionSepSecondInternal(e,r,n,i,a){for(;n();)this.CONSUME(r),i.call(this);this.attemptInRepetitionRecovery(this.repetitionSepSecondInternal,[e,r,n,i,a],n,1536,e,a)}doSingleRepetition(e){let r=this.getLexerPosition();return e.call(this),this.getLexerPosition()>r}orInternal(e,r){let n=this.getKeyForAutomaticLookahead(256,r),i=Pt(e)?e:e.DEF,s=this.getLaFuncFromCache(n).call(this,i);if(s!==void 0)return i[s].ALT.call(this);this.raiseNoAltException(r,e.ERR_MSG)}ruleFinallyStateUpdate(){if(this.RULE_STACK.pop(),this.RULE_OCCURRENCE_STACK.pop(),this.cstFinallyStateUpdate(),this.RULE_STACK.length===0&&this.isAtEndOfInput()===!1){let e=this.LA(1),r=this.errorMessageProvider.buildNotAllInputParsedMessage({firstRedundant:e,ruleName:this.getCurrRuleFullName()});this.SAVE_ERROR(new px(r,e))}}subruleInternal(e,r,n){let i;try{let a=n!==void 0?n.ARGS:void 0;return this.subruleIdx=r,i=e.apply(this,a),this.cstPostNonTerminal(i,n!==void 0&&n.LABEL!==void 0?n.LABEL:e.ruleName),i}catch(a){throw this.subruleInternalError(a,n,e.ruleName)}}subruleInternalError(e,r,n){throw lf(e)&&e.partialCstResult!==void 0&&(this.cstPostNonTerminal(e.partialCstResult,r!==void 0&&r.LABEL!==void 0?r.LABEL:n),delete e.partialCstResult),e}consumeInternal(e,r,n){let i;try{let a=this.LA(1);this.tokenMatcher(a,e)===!0?(this.consumeToken(),i=a):this.consumeInternalError(e,a,n)}catch(a){i=this.consumeInternalRecovery(e,r,a)}return this.cstPostTerminal(n!==void 0&&n.LABEL!==void 0?n.LABEL:e.name,i),i}consumeInternalError(e,r,n){let i,a=this.LA(0);throw n!==void 0&&n.ERR_MSG?i=n.ERR_MSG:i=this.errorMessageProvider.buildMismatchTokenMessage({expected:e,actual:r,previous:a,ruleName:this.getCurrRuleFullName()}),this.SAVE_ERROR(new hp(i,r,a))}consumeInternalRecovery(e,r,n){if(this.recoveryEnabled&&n.name==="MismatchedTokenException"&&!this.isBackTracking()){let i=this.getFollowsForInRuleRecovery(e,r);try{return this.tryInRuleRecovery(e,i)}catch(a){throw a.name===zN?n:a}}else throw n}saveRecogState(){let e=this.errors,r=an(this.RULE_STACK);return{errors:e,lexerState:this.exportLexerState(),RULE_STACK:r,CST_STACK:this.CST_STACK}}reloadRecogState(e){this.errors=e.errors,this.importLexerState(e.lexerState),this.RULE_STACK=e.RULE_STACK}ruleInvocationStateUpdate(e,r,n){this.RULE_OCCURRENCE_STACK.push(n),this.RULE_STACK.push(e),this.cstInvocationStateUpdate(r)}isBackTracking(){return this.isBackTrackingStack.length!==0}getCurrRuleFullName(){let e=this.getLastExplicitRuleShortName();return this.shortRuleNameToFull[e]}shortRuleNameToFullName(e){return this.shortRuleNameToFull[e]}isAtEndOfInput(){return this.tokenMatcher(this.LA(1),lo)}reset(){this.resetLexerState(),this.subruleIdx=0,this.isBackTrackingStack=[],this.errors=[],this.RULE_STACK=[],this.CST_STACK=[],this.RULE_OCCURRENCE_STACK=[]}}});var rE,jse=N(()=>{"use strict";Xg();qt();qg();Fs();rE=class{static{o(this,"ErrorHandler")}initErrorHandler(e){this._errors=[],this.errorMessageProvider=Bt(e,"errorMessageProvider")?e.errorMessageProvider:ls.errorMessageProvider}SAVE_ERROR(e){if(lf(e))return e.context={ruleStack:this.getHumanReadableRuleStack(),ruleOccurrenceStack:an(this.RULE_OCCURRENCE_STACK)},this._errors.push(e),e;throw Error("Trying to save an Error which is not a RecognitionException")}get errors(){return an(this._errors)}set errors(e){this._errors=e}raiseEarlyExitException(e,r,n){let i=this.getCurrRuleFullName(),a=this.getGAstProductions()[i],l=Wg(e,a,r,this.maxLookahead)[0],u=[];for(let f=1;f<=this.maxLookahead;f++)u.push(this.LA(f));let h=this.errorMessageProvider.buildEarlyExitMessage({expectedIterationPaths:l,actual:u,previous:this.LA(0),customUserDescription:n,ruleName:i});throw this.SAVE_ERROR(new mx(h,this.LA(1),this.LA(0)))}raiseNoAltException(e,r){let n=this.getCurrRuleFullName(),i=this.getGAstProductions()[n],a=Hg(e,i,this.maxLookahead),s=[];for(let h=1;h<=this.maxLookahead;h++)s.push(this.LA(h));let l=this.LA(0),u=this.errorMessageProvider.buildNoViableAltMessage({expectedPathsPerAlt:a,actual:s,previous:l,customUserDescription:r,ruleName:this.getCurrRuleFullName()});throw this.SAVE_ERROR(new dx(u,this.LA(1),l))}}});var nE,Kse=N(()=>{"use strict";cx();qt();nE=class{static{o(this,"ContentAssist")}initContentAssist(){}computeContentAssist(e,r){let n=this.gastProductionsCache[e];if(pr(n))throw Error(`Rule ->${e}<- does not exist in this grammar.`);return $k([n],r,this.tokenMatcher,this.maxLookahead)}getNextPossibleTokenTypes(e){let r=ia(e.ruleStack),i=this.getGAstProductions()[r];return new Ok(i,e).startWalking()}}});function yx(t,e,r,n=!1){aE(r);let i=ga(this.recordingProdStack),a=Si(e)?e:e.DEF,s=new t({definition:[],idx:r});return n&&(s.separator=e.SEP),Bt(e,"MAX_LOOKAHEAD")&&(s.maxLookahead=e.MAX_LOOKAHEAD),this.recordingProdStack.push(s),a.call(this),i.definition.push(s),this.recordingProdStack.pop(),sE}function dBe(t,e){aE(e);let r=ga(this.recordingProdStack),n=Pt(t)===!1,i=n===!1?t:t.DEF,a=new Tn({definition:[],idx:e,ignoreAmbiguities:n&&t.IGNORE_AMBIGUITIES===!0});Bt(t,"MAX_LOOKAHEAD")&&(a.maxLookahead=t.MAX_LOOKAHEAD);let s=A2(i,l=>Si(l.GATE));return a.hasPredicates=s,r.definition.push(a),Ae(i,l=>{let u=new Dn({definition:[]});a.definition.push(u),Bt(l,"IGNORE_AMBIGUITIES")?u.ignoreAmbiguities=l.IGNORE_AMBIGUITIES:Bt(l,"GATE")&&(u.ignoreAmbiguities=!0),this.recordingProdStack.push(u),l.ALT.call(this),this.recordingProdStack.pop()}),sE}function Jse(t){return t===0?"":`${t}`}function aE(t){if(t<0||t>Zse){let e=new Error(`Invalid DSL Method idx value: <${t}> + Idx value must be a none negative value smaller than ${Zse+1}`);throw e.KNOWN_RECORDER_ERROR=!0,e}}var sE,Qse,Zse,eoe,toe,fBe,iE,roe=N(()=>{"use strict";qt();os();ix();cp();up();Fs();qk();sE={description:"This Object indicates the Parser is during Recording Phase"};Object.freeze(sE);Qse=!0,Zse=Math.pow(2,8)-1,eoe=of({name:"RECORDING_PHASE_TOKEN",pattern:Xn.NA});Bu([eoe]);toe=$u(eoe,`This IToken indicates the Parser is in Recording Phase + See: https://chevrotain.io/docs/guide/internals.html#grammar-recording for details`,-1,-1,-1,-1,-1,-1);Object.freeze(toe);fBe={name:`This CSTNode indicates the Parser is in Recording Phase + See: https://chevrotain.io/docs/guide/internals.html#grammar-recording for details`,children:{}},iE=class{static{o(this,"GastRecorder")}initGastRecorder(e){this.recordingProdStack=[],this.RECORDING_PHASE=!1}enableRecording(){this.RECORDING_PHASE=!0,this.TRACE_INIT("Enable Recording",()=>{for(let e=0;e<10;e++){let r=e>0?e:"";this[`CONSUME${r}`]=function(n,i){return this.consumeInternalRecord(n,e,i)},this[`SUBRULE${r}`]=function(n,i){return this.subruleInternalRecord(n,e,i)},this[`OPTION${r}`]=function(n){return this.optionInternalRecord(n,e)},this[`OR${r}`]=function(n){return this.orInternalRecord(n,e)},this[`MANY${r}`]=function(n){this.manyInternalRecord(e,n)},this[`MANY_SEP${r}`]=function(n){this.manySepFirstInternalRecord(e,n)},this[`AT_LEAST_ONE${r}`]=function(n){this.atLeastOneInternalRecord(e,n)},this[`AT_LEAST_ONE_SEP${r}`]=function(n){this.atLeastOneSepFirstInternalRecord(e,n)}}this.consume=function(e,r,n){return this.consumeInternalRecord(r,e,n)},this.subrule=function(e,r,n){return this.subruleInternalRecord(r,e,n)},this.option=function(e,r){return this.optionInternalRecord(r,e)},this.or=function(e,r){return this.orInternalRecord(r,e)},this.many=function(e,r){this.manyInternalRecord(e,r)},this.atLeastOne=function(e,r){this.atLeastOneInternalRecord(e,r)},this.ACTION=this.ACTION_RECORD,this.BACKTRACK=this.BACKTRACK_RECORD,this.LA=this.LA_RECORD})}disableRecording(){this.RECORDING_PHASE=!1,this.TRACE_INIT("Deleting Recording methods",()=>{let e=this;for(let r=0;r<10;r++){let n=r>0?r:"";delete e[`CONSUME${n}`],delete e[`SUBRULE${n}`],delete e[`OPTION${n}`],delete e[`OR${n}`],delete e[`MANY${n}`],delete e[`MANY_SEP${n}`],delete e[`AT_LEAST_ONE${n}`],delete e[`AT_LEAST_ONE_SEP${n}`]}delete e.consume,delete e.subrule,delete e.option,delete e.or,delete e.many,delete e.atLeastOne,delete e.ACTION,delete e.BACKTRACK,delete e.LA})}ACTION_RECORD(e){}BACKTRACK_RECORD(e,r){return()=>!0}LA_RECORD(e){return jg}topLevelRuleRecord(e,r){try{let n=new as({definition:[],name:e});return n.name=e,this.recordingProdStack.push(n),r.call(this),this.recordingProdStack.pop(),n}catch(n){if(n.KNOWN_RECORDER_ERROR!==!0)try{n.message=n.message+` + This error was thrown during the "grammar recording phase" For more info see: + https://chevrotain.io/docs/guide/internals.html#grammar-recording`}catch{throw n}throw n}}optionInternalRecord(e,r){return yx.call(this,ln,e,r)}atLeastOneInternalRecord(e,r){yx.call(this,Ln,r,e)}atLeastOneSepFirstInternalRecord(e,r){yx.call(this,Rn,r,e,Qse)}manyInternalRecord(e,r){yx.call(this,Or,r,e)}manySepFirstInternalRecord(e,r){yx.call(this,wn,r,e,Qse)}orInternalRecord(e,r){return dBe.call(this,e,r)}subruleInternalRecord(e,r,n){if(aE(r),!e||Bt(e,"ruleName")===!1){let l=new Error(` argument is invalid expecting a Parser method reference but got: <${JSON.stringify(e)}> + inside top level rule: <${this.recordingProdStack[0].name}>`);throw l.KNOWN_RECORDER_ERROR=!0,l}let i=ga(this.recordingProdStack),a=e.ruleName,s=new on({idx:r,nonTerminalName:a,label:n?.LABEL,referencedRule:void 0});return i.definition.push(s),this.outputCst?fBe:sE}consumeInternalRecord(e,r,n){if(aE(r),!_N(e)){let s=new Error(` argument is invalid expecting a TokenType reference but got: <${JSON.stringify(e)}> + inside top level rule: <${this.recordingProdStack[0].name}>`);throw s.KNOWN_RECORDER_ERROR=!0,s}let i=ga(this.recordingProdStack),a=new kr({idx:r,terminalType:e,label:n?.LABEL});return i.definition.push(a),toe}};o(yx,"recordProd");o(dBe,"recordOrProd");o(Jse,"getIdxSuffix");o(aE,"assertMethodIdxIsValid")});var oE,noe=N(()=>{"use strict";qt();Og();Fs();oE=class{static{o(this,"PerformanceTracer")}initPerformanceTracer(e){if(Bt(e,"traceInitPerf")){let r=e.traceInitPerf,n=typeof r=="number";this.traceInitMaxIdent=n?r:1/0,this.traceInitPerf=n?r>0:r}else this.traceInitMaxIdent=0,this.traceInitPerf=ls.traceInitPerf;this.traceInitIndent=-1}TRACE_INIT(e,r){if(this.traceInitPerf===!0){this.traceInitIndent++;let n=new Array(this.traceInitIndent+1).join(" ");this.traceInitIndent <${e}>`);let{time:i,value:a}=tx(r),s=i>10?console.warn:console.log;return this.traceInitIndent time: ${i}ms`),this.traceInitIndent--,a}else return r()}}});function ioe(t,e){e.forEach(r=>{let n=r.prototype;Object.getOwnPropertyNames(n).forEach(i=>{if(i==="constructor")return;let a=Object.getOwnPropertyDescriptor(n,i);a&&(a.get||a.set)?Object.defineProperty(t.prototype,i,a):t.prototype[i]=r.prototype[i]})})}var aoe=N(()=>{"use strict";o(ioe,"applyMixins")});function lE(t=void 0){return function(){return t}}var jg,ls,Kg,zi,vx,xx,Fs=N(()=>{"use strict";qt();Og();Oae();up();Vg();Rse();GN();Bse();Wse();qse();Yse();Xse();jse();Kse();roe();noe();aoe();fx();jg=$u(lo,"",NaN,NaN,NaN,NaN,NaN,NaN);Object.freeze(jg);ls=Object.freeze({recoveryEnabled:!1,maxLookahead:3,dynamicTokensEnabled:!1,outputCst:!0,errorMessageProvider:zu,nodeLocationTracking:"none",traceInitPerf:!1,skipValidations:!1}),Kg=Object.freeze({recoveryValueFunc:o(()=>{},"recoveryValueFunc"),resyncEnabled:!0});(function(t){t[t.INVALID_RULE_NAME=0]="INVALID_RULE_NAME",t[t.DUPLICATE_RULE_NAME=1]="DUPLICATE_RULE_NAME",t[t.INVALID_RULE_OVERRIDE=2]="INVALID_RULE_OVERRIDE",t[t.DUPLICATE_PRODUCTIONS=3]="DUPLICATE_PRODUCTIONS",t[t.UNRESOLVED_SUBRULE_REF=4]="UNRESOLVED_SUBRULE_REF",t[t.LEFT_RECURSION=5]="LEFT_RECURSION",t[t.NONE_LAST_EMPTY_ALT=6]="NONE_LAST_EMPTY_ALT",t[t.AMBIGUOUS_ALTS=7]="AMBIGUOUS_ALTS",t[t.CONFLICT_TOKENS_RULES_NAMESPACE=8]="CONFLICT_TOKENS_RULES_NAMESPACE",t[t.INVALID_TOKEN_NAME=9]="INVALID_TOKEN_NAME",t[t.NO_NON_EMPTY_LOOKAHEAD=10]="NO_NON_EMPTY_LOOKAHEAD",t[t.AMBIGUOUS_PREFIX_ALTS=11]="AMBIGUOUS_PREFIX_ALTS",t[t.TOO_MANY_ALTS=12]="TOO_MANY_ALTS",t[t.CUSTOM_LOOKAHEAD_VALIDATION=13]="CUSTOM_LOOKAHEAD_VALIDATION"})(zi||(zi={}));o(lE,"EMPTY_ALT");vx=class t{static{o(this,"Parser")}static performSelfAnalysis(e){throw Error("The **static** `performSelfAnalysis` method has been deprecated. \nUse the **instance** method with the same name instead.")}performSelfAnalysis(){this.TRACE_INIT("performSelfAnalysis",()=>{let e;this.selfAnalysisDone=!0;let r=this.className;this.TRACE_INIT("toFastProps",()=>{rx(this)}),this.TRACE_INIT("Grammar Recording",()=>{try{this.enableRecording(),Ae(this.definedRulesNames,i=>{let s=this[i].originalGrammarAction,l;this.TRACE_INIT(`${i} Rule`,()=>{l=this.topLevelRuleRecord(i,s)}),this.gastProductionsCache[i]=l})}finally{this.disableRecording()}});let n=[];if(this.TRACE_INIT("Grammar Resolving",()=>{n=Dse({rules:br(this.gastProductionsCache)}),this.definitionErrors=this.definitionErrors.concat(n)}),this.TRACE_INIT("Grammar Validations",()=>{if(ur(n)&&this.skipValidations===!1){let i=Lse({rules:br(this.gastProductionsCache),tokenTypes:br(this.tokensMap),errMsgProvider:Pl,grammarName:r}),a=Tse({lookaheadStrategy:this.lookaheadStrategy,rules:br(this.gastProductionsCache),tokenTypes:br(this.tokensMap),grammarName:r});this.definitionErrors=this.definitionErrors.concat(i,a)}}),ur(this.definitionErrors)&&(this.recoveryEnabled&&this.TRACE_INIT("computeAllProdsFollows",()=>{let i=Iae(br(this.gastProductionsCache));this.resyncFollows=i}),this.TRACE_INIT("ComputeLookaheadFunctions",()=>{var i,a;(a=(i=this.lookaheadStrategy).initialize)===null||a===void 0||a.call(i,{rules:br(this.gastProductionsCache)}),this.preComputeLookaheadFunctions(br(this.gastProductionsCache))})),!t.DEFER_DEFINITION_ERRORS_HANDLING&&!ur(this.definitionErrors))throw e=Je(this.definitionErrors,i=>i.message),new Error(`Parser Definition Errors detected: + ${e.join(` +------------------------------- +`)}`)})}constructor(e,r){this.definitionErrors=[],this.selfAnalysisDone=!1;let n=this;if(n.initErrorHandler(r),n.initLexerAdapter(),n.initLooksAhead(r),n.initRecognizerEngine(e,r),n.initRecoverable(r),n.initTreeBuilder(r),n.initContentAssist(),n.initGastRecorder(r),n.initPerformanceTracer(r),Bt(r,"ignoredIssues"))throw new Error(`The IParserConfig property has been deprecated. + Please use the flag on the relevant DSL method instead. + See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#IGNORING_AMBIGUITIES + For further details.`);this.skipValidations=Bt(r,"skipValidations")?r.skipValidations:ls.skipValidations}};vx.DEFER_DEFINITION_ERRORS_HANDLING=!1;ioe(vx,[Hk,Xk,Zk,Jk,tE,eE,rE,nE,iE,oE]);xx=class extends vx{static{o(this,"EmbeddedActionsParser")}constructor(e,r=ls){let n=an(r);n.outputCst=!1,super(e,n)}}});var soe=N(()=>{"use strict";os()});var ooe=N(()=>{"use strict"});var loe=N(()=>{"use strict";soe();ooe()});var coe=N(()=>{"use strict";gN()});var cf=N(()=>{"use strict";gN();Fs();ix();up();qg();VN();Vg();Xg();DN();os();os();loe();coe()});function fp(t,e,r){return`${t.name}_${e}_${r}`}function doe(t){let e={decisionMap:{},decisionStates:[],ruleToStartState:new Map,ruleToStopState:new Map,states:[]};bBe(e,t);let r=t.length;for(let n=0;npoe(t,e,s));return e1(t,e,n,r,...i)}function CBe(t,e,r){let n=aa(t,e,r,{type:uf});hf(t,n);let i=e1(t,e,n,r,dp(t,e,r));return ABe(t,e,r,i)}function dp(t,e,r){let n=Yr(Je(r.definition,i=>poe(t,e,i)),i=>i!==void 0);return n.length===1?n[0]:n.length===0?void 0:DBe(t,n)}function moe(t,e,r,n,i){let a=n.left,s=n.right,l=aa(t,e,r,{type:xBe});hf(t,l);let u=aa(t,e,r,{type:foe});return a.loopback=l,u.loopback=l,t.decisionMap[fp(e,i?"RepetitionMandatoryWithSeparator":"RepetitionMandatory",r.idx)]=l,Ai(s,l),i===void 0?(Ai(l,a),Ai(l,u)):(Ai(l,u),Ai(l,i.left),Ai(i.right,a)),{left:a,right:u}}function goe(t,e,r,n,i){let a=n.left,s=n.right,l=aa(t,e,r,{type:vBe});hf(t,l);let u=aa(t,e,r,{type:foe}),h=aa(t,e,r,{type:yBe});return l.loopback=h,u.loopback=h,Ai(l,a),Ai(l,u),Ai(s,h),i!==void 0?(Ai(h,u),Ai(h,i.left),Ai(i.right,a)):Ai(h,l),t.decisionMap[fp(e,i?"RepetitionWithSeparator":"Repetition",r.idx)]=l,{left:l,right:u}}function ABe(t,e,r,n){let i=n.left,a=n.right;return Ai(i,a),t.decisionMap[fp(e,"Option",r.idx)]=i,n}function hf(t,e){return t.decisionStates.push(e),e.decision=t.decisionStates.length-1,e.decision}function e1(t,e,r,n,...i){let a=aa(t,e,n,{type:gBe,start:r});r.end=a;for(let l of i)l!==void 0?(Ai(r,l.left),Ai(l.right,a)):Ai(r,a);let s={left:r,right:a};return t.decisionMap[fp(e,_Be(n),n.idx)]=r,s}function _Be(t){if(t instanceof Tn)return"Alternation";if(t instanceof ln)return"Option";if(t instanceof Or)return"Repetition";if(t instanceof wn)return"RepetitionWithSeparator";if(t instanceof Ln)return"RepetitionMandatory";if(t instanceof Rn)return"RepetitionMandatoryWithSeparator";throw new Error("Invalid production type encountered")}function DBe(t,e){let r=e.length;for(let a=0;a{"use strict";Im();DL();cf();o(fp,"buildATNKey");uf=1,mBe=2,uoe=4,hoe=5,Jg=7,gBe=8,yBe=9,vBe=10,xBe=11,foe=12,bx=class{static{o(this,"AbstractTransition")}constructor(e){this.target=e}isEpsilon(){return!1}},Qg=class extends bx{static{o(this,"AtomTransition")}constructor(e,r){super(e),this.tokenType=r}},wx=class extends bx{static{o(this,"EpsilonTransition")}constructor(e){super(e)}isEpsilon(){return!0}},Zg=class extends bx{static{o(this,"RuleTransition")}constructor(e,r,n){super(e),this.rule=r,this.followState=n}isEpsilon(){return!0}};o(doe,"createATN");o(bBe,"createRuleStartAndStopATNStates");o(poe,"atom");o(wBe,"repetition");o(TBe,"repetitionSep");o(kBe,"repetitionMandatory");o(EBe,"repetitionMandatorySep");o(SBe,"alternation");o(CBe,"option");o(dp,"block");o(moe,"plus");o(goe,"star");o(ABe,"optional");o(hf,"defineDecisionState");o(e1,"makeAlts");o(_Be,"getProdType");o(DBe,"makeBlock");o(QN,"tokenRef");o(LBe,"ruleRef");o(RBe,"buildRuleHandle");o(Ai,"epsilon");o(aa,"newState");o(ZN,"addTransition");o(NBe,"removeState")});function JN(t,e=!0){return`${e?`a${t.alt}`:""}s${t.state.stateNumber}:${t.stack.map(r=>r.stateNumber.toString()).join("_")}`}var Tx,t1,voe=N(()=>{"use strict";Im();Tx={},t1=class{static{o(this,"ATNConfigSet")}constructor(){this.map={},this.configs=[]}get size(){return this.configs.length}finalize(){this.map={}}add(e){let r=JN(e);r in this.map||(this.map[r]=this.configs.length,this.configs.push(e))}get elements(){return this.configs}get alts(){return Je(this.configs,e=>e.alt)}get key(){let e="";for(let r in this.map)e+=r+":";return e}};o(JN,"getATNConfigKey")});function MBe(t,e){let r={};return n=>{let i=n.toString(),a=r[i];return a!==void 0||(a={atnStartState:t,decision:e,states:{}},r[i]=a),a}}function boe(t,e=!0){let r=new Set;for(let n of t){let i=new Set;for(let a of n){if(a===void 0){if(e)break;return!1}let s=[a.tokenTypeIdx].concat(a.categoryMatches);for(let l of s)if(r.has(l)){if(!i.has(l))return!1}else r.add(l),i.add(l)}}return!0}function IBe(t){let e=t.decisionStates.length,r=Array(e);for(let n=0;nFu(i)).join(", "),r=t.production.idx===0?"":t.production.idx,n=`Ambiguous Alternatives Detected: <${t.ambiguityIndices.join(", ")}> in <${$Be(t.production)}${r}> inside <${t.topLevelRule.name}> Rule, +<${e}> may appears as a prefix path in all these alternatives. +`;return n=n+`See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#AMBIGUOUS_ALTERNATIVES +For Further details.`,n}function $Be(t){if(t instanceof on)return"SUBRULE";if(t instanceof ln)return"OPTION";if(t instanceof Tn)return"OR";if(t instanceof Ln)return"AT_LEAST_ONE";if(t instanceof Rn)return"AT_LEAST_ONE_SEP";if(t instanceof wn)return"MANY_SEP";if(t instanceof Or)return"MANY";if(t instanceof kr)return"CONSUME";throw Error("non exhaustive match")}function zBe(t,e,r){let n=ya(e.configs.elements,a=>a.state.transitions),i=Qre(n.filter(a=>a instanceof Qg).map(a=>a.tokenType),a=>a.tokenTypeIdx);return{actualToken:r,possibleTokenTypes:i,tokenPath:t}}function GBe(t,e){return t.edges[e.tokenTypeIdx]}function VBe(t,e,r){let n=new t1,i=[];for(let s of t.elements){if(r.is(s.alt)===!1)continue;if(s.state.type===Jg){i.push(s);continue}let l=s.state.transitions.length;for(let u=0;u0&&!YBe(a))for(let s of i)a.add(s);return a}function UBe(t,e){if(t instanceof Qg&&sx(e,t.tokenType))return t.target}function HBe(t,e){let r;for(let n of t.elements)if(e.is(n.alt)===!0){if(r===void 0)r=n.alt;else if(r!==n.alt)return}return r}function Toe(t){return{configs:t,edges:{},isAcceptState:!1,prediction:-1}}function woe(t,e,r,n){return n=koe(t,n),e.edges[r.tokenTypeIdx]=n,n}function koe(t,e){if(e===Tx)return e;let r=e.configs.key,n=t.states[r];return n!==void 0?n:(e.configs.finalize(),t.states[r]=e,e)}function WBe(t){let e=new t1,r=t.transitions.length;for(let n=0;n0){let i=[...t.stack],s={state:i.pop(),alt:t.alt,stack:i};uE(s,e)}else e.add(t);return}r.epsilonOnlyTransitions||e.add(t);let n=r.transitions.length;for(let i=0;i1)return!0;return!1}function ZBe(t){for(let e of Array.from(t.values()))if(Object.keys(e).length===1)return!0;return!1}var cE,xoe,kx,Eoe=N(()=>{"use strict";cf();yoe();voe();BL();RL();Zre();Im();uT();$T();HT();GL();o(MBe,"createDFACache");cE=class{static{o(this,"PredicateSet")}constructor(){this.predicates=[]}is(e){return e>=this.predicates.length||this.predicates[e]}set(e,r){this.predicates[e]=r}toString(){let e="",r=this.predicates.length;for(let n=0;nconsole.log(n)}initialize(e){this.atn=doe(e.rules),this.dfas=IBe(this.atn)}validateAmbiguousAlternationAlternatives(){return[]}validateEmptyOrAlternatives(){return[]}buildLookaheadForAlternation(e){let{prodOccurrence:r,rule:n,hasPredicates:i,dynamicTokensEnabled:a}=e,s=this.dfas,l=this.logging,u=fp(n,"Alternation",r),f=this.atn.decisionMap[u].decision,d=Je(Gk({maxLookahead:1,occurrence:r,prodType:"Alternation",rule:n}),p=>Je(p,m=>m[0]));if(boe(d,!1)&&!a){let p=Xr(d,(m,g,y)=>(Ae(g,v=>{v&&(m[v.tokenTypeIdx]=y,Ae(v.categoryMatches,x=>{m[x]=y}))}),m),{});return i?function(m){var g;let y=this.LA(1),v=p[y.tokenTypeIdx];if(m!==void 0&&v!==void 0){let x=(g=m[v])===null||g===void 0?void 0:g.GATE;if(x!==void 0&&x.call(this)===!1)return}return v}:function(){let m=this.LA(1);return p[m.tokenTypeIdx]}}else return i?function(p){let m=new cE,g=p===void 0?0:p.length;for(let v=0;vJe(p,m=>m[0]));if(boe(d)&&d[0][0]&&!a){let p=d[0],m=qr(p);if(m.length===1&&ur(m[0].categoryMatches)){let y=m[0].tokenTypeIdx;return function(){return this.LA(1).tokenTypeIdx===y}}else{let g=Xr(m,(y,v)=>(v!==void 0&&(y[v.tokenTypeIdx]=!0,Ae(v.categoryMatches,x=>{y[x]=!0})),y),{});return function(){let y=this.LA(1);return g[y.tokenTypeIdx]===!0}}}return function(){let p=eM.call(this,s,f,xoe,l);return typeof p=="object"?!1:p===0}}};o(boe,"isLL1Sequence");o(IBe,"initATNSimulator");o(eM,"adaptivePredict");o(OBe,"performLookahead");o(PBe,"computeLookaheadTarget");o(BBe,"reportLookaheadAmbiguity");o(FBe,"buildAmbiguityError");o($Be,"getProductionDslName");o(zBe,"buildAdaptivePredictError");o(GBe,"getExistingTargetState");o(VBe,"computeReachSet");o(UBe,"getReachableTarget");o(HBe,"getUniqueAlt");o(Toe,"newDFAState");o(woe,"addDFAEdge");o(koe,"addDFAState");o(WBe,"computeStartState");o(uE,"closure");o(qBe,"getEpsilonTarget");o(YBe,"hasConfigInRuleStopState");o(XBe,"allConfigsInRuleStopStates");o(jBe,"hasConflictTerminatingPrediction");o(KBe,"getConflictingAltSets");o(QBe,"hasConflictingAltSet");o(ZBe,"hasStateAssociatedWithOneAlt")});var Soe=N(()=>{"use strict";Eoe()});var Coe,tM,Aoe,hE,jr,Pr,fE,_oe,rM,Doe,Loe,Roe,Noe,nM,Moe,Ioe,Ooe,dE,r1,n1,iM,i1,Poe,aM,sM,oM,lM,cM,Boe,Foe,uM,$oe,hM,Ex,zoe,Goe,Voe,Uoe,Hoe,Woe,qoe,Yoe,pE,Xoe,joe,Koe,Qoe,Zoe,Joe,ele,tle,rle,nle,ile,mE,ale,sle,ole,lle,cle,ule,hle,fle,dle,ple,mle,gle,yle,fM,dM,vle,xle,ble,wle,Tle,kle,Ele,Sle,Cle,pM,Fe,mM=N(()=>{"use strict";(function(t){function e(r){return typeof r=="string"}o(e,"is"),t.is=e})(Coe||(Coe={}));(function(t){function e(r){return typeof r=="string"}o(e,"is"),t.is=e})(tM||(tM={}));(function(t){t.MIN_VALUE=-2147483648,t.MAX_VALUE=2147483647;function e(r){return typeof r=="number"&&t.MIN_VALUE<=r&&r<=t.MAX_VALUE}o(e,"is"),t.is=e})(Aoe||(Aoe={}));(function(t){t.MIN_VALUE=0,t.MAX_VALUE=2147483647;function e(r){return typeof r=="number"&&t.MIN_VALUE<=r&&r<=t.MAX_VALUE}o(e,"is"),t.is=e})(hE||(hE={}));(function(t){function e(n,i){return n===Number.MAX_VALUE&&(n=hE.MAX_VALUE),i===Number.MAX_VALUE&&(i=hE.MAX_VALUE),{line:n,character:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Fe.uinteger(i.line)&&Fe.uinteger(i.character)}o(r,"is"),t.is=r})(jr||(jr={}));(function(t){function e(n,i,a,s){if(Fe.uinteger(n)&&Fe.uinteger(i)&&Fe.uinteger(a)&&Fe.uinteger(s))return{start:jr.create(n,i),end:jr.create(a,s)};if(jr.is(n)&&jr.is(i))return{start:n,end:i};throw new Error(`Range#create called with invalid arguments[${n}, ${i}, ${a}, ${s}]`)}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&jr.is(i.start)&&jr.is(i.end)}o(r,"is"),t.is=r})(Pr||(Pr={}));(function(t){function e(n,i){return{uri:n,range:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Pr.is(i.range)&&(Fe.string(i.uri)||Fe.undefined(i.uri))}o(r,"is"),t.is=r})(fE||(fE={}));(function(t){function e(n,i,a,s){return{targetUri:n,targetRange:i,targetSelectionRange:a,originSelectionRange:s}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Pr.is(i.targetRange)&&Fe.string(i.targetUri)&&Pr.is(i.targetSelectionRange)&&(Pr.is(i.originSelectionRange)||Fe.undefined(i.originSelectionRange))}o(r,"is"),t.is=r})(_oe||(_oe={}));(function(t){function e(n,i,a,s){return{red:n,green:i,blue:a,alpha:s}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Fe.numberRange(i.red,0,1)&&Fe.numberRange(i.green,0,1)&&Fe.numberRange(i.blue,0,1)&&Fe.numberRange(i.alpha,0,1)}o(r,"is"),t.is=r})(rM||(rM={}));(function(t){function e(n,i){return{range:n,color:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Pr.is(i.range)&&rM.is(i.color)}o(r,"is"),t.is=r})(Doe||(Doe={}));(function(t){function e(n,i,a){return{label:n,textEdit:i,additionalTextEdits:a}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Fe.string(i.label)&&(Fe.undefined(i.textEdit)||n1.is(i))&&(Fe.undefined(i.additionalTextEdits)||Fe.typedArray(i.additionalTextEdits,n1.is))}o(r,"is"),t.is=r})(Loe||(Loe={}));(function(t){t.Comment="comment",t.Imports="imports",t.Region="region"})(Roe||(Roe={}));(function(t){function e(n,i,a,s,l,u){let h={startLine:n,endLine:i};return Fe.defined(a)&&(h.startCharacter=a),Fe.defined(s)&&(h.endCharacter=s),Fe.defined(l)&&(h.kind=l),Fe.defined(u)&&(h.collapsedText=u),h}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Fe.uinteger(i.startLine)&&Fe.uinteger(i.startLine)&&(Fe.undefined(i.startCharacter)||Fe.uinteger(i.startCharacter))&&(Fe.undefined(i.endCharacter)||Fe.uinteger(i.endCharacter))&&(Fe.undefined(i.kind)||Fe.string(i.kind))}o(r,"is"),t.is=r})(Noe||(Noe={}));(function(t){function e(n,i){return{location:n,message:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&fE.is(i.location)&&Fe.string(i.message)}o(r,"is"),t.is=r})(nM||(nM={}));(function(t){t.Error=1,t.Warning=2,t.Information=3,t.Hint=4})(Moe||(Moe={}));(function(t){t.Unnecessary=1,t.Deprecated=2})(Ioe||(Ioe={}));(function(t){function e(r){let n=r;return Fe.objectLiteral(n)&&Fe.string(n.href)}o(e,"is"),t.is=e})(Ooe||(Ooe={}));(function(t){function e(n,i,a,s,l,u){let h={range:n,message:i};return Fe.defined(a)&&(h.severity=a),Fe.defined(s)&&(h.code=s),Fe.defined(l)&&(h.source=l),Fe.defined(u)&&(h.relatedInformation=u),h}o(e,"create"),t.create=e;function r(n){var i;let a=n;return Fe.defined(a)&&Pr.is(a.range)&&Fe.string(a.message)&&(Fe.number(a.severity)||Fe.undefined(a.severity))&&(Fe.integer(a.code)||Fe.string(a.code)||Fe.undefined(a.code))&&(Fe.undefined(a.codeDescription)||Fe.string((i=a.codeDescription)===null||i===void 0?void 0:i.href))&&(Fe.string(a.source)||Fe.undefined(a.source))&&(Fe.undefined(a.relatedInformation)||Fe.typedArray(a.relatedInformation,nM.is))}o(r,"is"),t.is=r})(dE||(dE={}));(function(t){function e(n,i,...a){let s={title:n,command:i};return Fe.defined(a)&&a.length>0&&(s.arguments=a),s}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Fe.string(i.title)&&Fe.string(i.command)}o(r,"is"),t.is=r})(r1||(r1={}));(function(t){function e(a,s){return{range:a,newText:s}}o(e,"replace"),t.replace=e;function r(a,s){return{range:{start:a,end:a},newText:s}}o(r,"insert"),t.insert=r;function n(a){return{range:a,newText:""}}o(n,"del"),t.del=n;function i(a){let s=a;return Fe.objectLiteral(s)&&Fe.string(s.newText)&&Pr.is(s.range)}o(i,"is"),t.is=i})(n1||(n1={}));(function(t){function e(n,i,a){let s={label:n};return i!==void 0&&(s.needsConfirmation=i),a!==void 0&&(s.description=a),s}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Fe.string(i.label)&&(Fe.boolean(i.needsConfirmation)||i.needsConfirmation===void 0)&&(Fe.string(i.description)||i.description===void 0)}o(r,"is"),t.is=r})(iM||(iM={}));(function(t){function e(r){let n=r;return Fe.string(n)}o(e,"is"),t.is=e})(i1||(i1={}));(function(t){function e(a,s,l){return{range:a,newText:s,annotationId:l}}o(e,"replace"),t.replace=e;function r(a,s,l){return{range:{start:a,end:a},newText:s,annotationId:l}}o(r,"insert"),t.insert=r;function n(a,s){return{range:a,newText:"",annotationId:s}}o(n,"del"),t.del=n;function i(a){let s=a;return n1.is(s)&&(iM.is(s.annotationId)||i1.is(s.annotationId))}o(i,"is"),t.is=i})(Poe||(Poe={}));(function(t){function e(n,i){return{textDocument:n,edits:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&uM.is(i.textDocument)&&Array.isArray(i.edits)}o(r,"is"),t.is=r})(aM||(aM={}));(function(t){function e(n,i,a){let s={kind:"create",uri:n};return i!==void 0&&(i.overwrite!==void 0||i.ignoreIfExists!==void 0)&&(s.options=i),a!==void 0&&(s.annotationId=a),s}o(e,"create"),t.create=e;function r(n){let i=n;return i&&i.kind==="create"&&Fe.string(i.uri)&&(i.options===void 0||(i.options.overwrite===void 0||Fe.boolean(i.options.overwrite))&&(i.options.ignoreIfExists===void 0||Fe.boolean(i.options.ignoreIfExists)))&&(i.annotationId===void 0||i1.is(i.annotationId))}o(r,"is"),t.is=r})(sM||(sM={}));(function(t){function e(n,i,a,s){let l={kind:"rename",oldUri:n,newUri:i};return a!==void 0&&(a.overwrite!==void 0||a.ignoreIfExists!==void 0)&&(l.options=a),s!==void 0&&(l.annotationId=s),l}o(e,"create"),t.create=e;function r(n){let i=n;return i&&i.kind==="rename"&&Fe.string(i.oldUri)&&Fe.string(i.newUri)&&(i.options===void 0||(i.options.overwrite===void 0||Fe.boolean(i.options.overwrite))&&(i.options.ignoreIfExists===void 0||Fe.boolean(i.options.ignoreIfExists)))&&(i.annotationId===void 0||i1.is(i.annotationId))}o(r,"is"),t.is=r})(oM||(oM={}));(function(t){function e(n,i,a){let s={kind:"delete",uri:n};return i!==void 0&&(i.recursive!==void 0||i.ignoreIfNotExists!==void 0)&&(s.options=i),a!==void 0&&(s.annotationId=a),s}o(e,"create"),t.create=e;function r(n){let i=n;return i&&i.kind==="delete"&&Fe.string(i.uri)&&(i.options===void 0||(i.options.recursive===void 0||Fe.boolean(i.options.recursive))&&(i.options.ignoreIfNotExists===void 0||Fe.boolean(i.options.ignoreIfNotExists)))&&(i.annotationId===void 0||i1.is(i.annotationId))}o(r,"is"),t.is=r})(lM||(lM={}));(function(t){function e(r){let n=r;return n&&(n.changes!==void 0||n.documentChanges!==void 0)&&(n.documentChanges===void 0||n.documentChanges.every(i=>Fe.string(i.kind)?sM.is(i)||oM.is(i)||lM.is(i):aM.is(i)))}o(e,"is"),t.is=e})(cM||(cM={}));(function(t){function e(n){return{uri:n}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Fe.string(i.uri)}o(r,"is"),t.is=r})(Boe||(Boe={}));(function(t){function e(n,i){return{uri:n,version:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Fe.string(i.uri)&&Fe.integer(i.version)}o(r,"is"),t.is=r})(Foe||(Foe={}));(function(t){function e(n,i){return{uri:n,version:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Fe.string(i.uri)&&(i.version===null||Fe.integer(i.version))}o(r,"is"),t.is=r})(uM||(uM={}));(function(t){function e(n,i,a,s){return{uri:n,languageId:i,version:a,text:s}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Fe.string(i.uri)&&Fe.string(i.languageId)&&Fe.integer(i.version)&&Fe.string(i.text)}o(r,"is"),t.is=r})($oe||($oe={}));(function(t){t.PlainText="plaintext",t.Markdown="markdown";function e(r){let n=r;return n===t.PlainText||n===t.Markdown}o(e,"is"),t.is=e})(hM||(hM={}));(function(t){function e(r){let n=r;return Fe.objectLiteral(r)&&hM.is(n.kind)&&Fe.string(n.value)}o(e,"is"),t.is=e})(Ex||(Ex={}));(function(t){t.Text=1,t.Method=2,t.Function=3,t.Constructor=4,t.Field=5,t.Variable=6,t.Class=7,t.Interface=8,t.Module=9,t.Property=10,t.Unit=11,t.Value=12,t.Enum=13,t.Keyword=14,t.Snippet=15,t.Color=16,t.File=17,t.Reference=18,t.Folder=19,t.EnumMember=20,t.Constant=21,t.Struct=22,t.Event=23,t.Operator=24,t.TypeParameter=25})(zoe||(zoe={}));(function(t){t.PlainText=1,t.Snippet=2})(Goe||(Goe={}));(function(t){t.Deprecated=1})(Voe||(Voe={}));(function(t){function e(n,i,a){return{newText:n,insert:i,replace:a}}o(e,"create"),t.create=e;function r(n){let i=n;return i&&Fe.string(i.newText)&&Pr.is(i.insert)&&Pr.is(i.replace)}o(r,"is"),t.is=r})(Uoe||(Uoe={}));(function(t){t.asIs=1,t.adjustIndentation=2})(Hoe||(Hoe={}));(function(t){function e(r){let n=r;return n&&(Fe.string(n.detail)||n.detail===void 0)&&(Fe.string(n.description)||n.description===void 0)}o(e,"is"),t.is=e})(Woe||(Woe={}));(function(t){function e(r){return{label:r}}o(e,"create"),t.create=e})(qoe||(qoe={}));(function(t){function e(r,n){return{items:r||[],isIncomplete:!!n}}o(e,"create"),t.create=e})(Yoe||(Yoe={}));(function(t){function e(n){return n.replace(/[\\`*_{}[\]()#+\-.!]/g,"\\$&")}o(e,"fromPlainText"),t.fromPlainText=e;function r(n){let i=n;return Fe.string(i)||Fe.objectLiteral(i)&&Fe.string(i.language)&&Fe.string(i.value)}o(r,"is"),t.is=r})(pE||(pE={}));(function(t){function e(r){let n=r;return!!n&&Fe.objectLiteral(n)&&(Ex.is(n.contents)||pE.is(n.contents)||Fe.typedArray(n.contents,pE.is))&&(r.range===void 0||Pr.is(r.range))}o(e,"is"),t.is=e})(Xoe||(Xoe={}));(function(t){function e(r,n){return n?{label:r,documentation:n}:{label:r}}o(e,"create"),t.create=e})(joe||(joe={}));(function(t){function e(r,n,...i){let a={label:r};return Fe.defined(n)&&(a.documentation=n),Fe.defined(i)?a.parameters=i:a.parameters=[],a}o(e,"create"),t.create=e})(Koe||(Koe={}));(function(t){t.Text=1,t.Read=2,t.Write=3})(Qoe||(Qoe={}));(function(t){function e(r,n){let i={range:r};return Fe.number(n)&&(i.kind=n),i}o(e,"create"),t.create=e})(Zoe||(Zoe={}));(function(t){t.File=1,t.Module=2,t.Namespace=3,t.Package=4,t.Class=5,t.Method=6,t.Property=7,t.Field=8,t.Constructor=9,t.Enum=10,t.Interface=11,t.Function=12,t.Variable=13,t.Constant=14,t.String=15,t.Number=16,t.Boolean=17,t.Array=18,t.Object=19,t.Key=20,t.Null=21,t.EnumMember=22,t.Struct=23,t.Event=24,t.Operator=25,t.TypeParameter=26})(Joe||(Joe={}));(function(t){t.Deprecated=1})(ele||(ele={}));(function(t){function e(r,n,i,a,s){let l={name:r,kind:n,location:{uri:a,range:i}};return s&&(l.containerName=s),l}o(e,"create"),t.create=e})(tle||(tle={}));(function(t){function e(r,n,i,a){return a!==void 0?{name:r,kind:n,location:{uri:i,range:a}}:{name:r,kind:n,location:{uri:i}}}o(e,"create"),t.create=e})(rle||(rle={}));(function(t){function e(n,i,a,s,l,u){let h={name:n,detail:i,kind:a,range:s,selectionRange:l};return u!==void 0&&(h.children=u),h}o(e,"create"),t.create=e;function r(n){let i=n;return i&&Fe.string(i.name)&&Fe.number(i.kind)&&Pr.is(i.range)&&Pr.is(i.selectionRange)&&(i.detail===void 0||Fe.string(i.detail))&&(i.deprecated===void 0||Fe.boolean(i.deprecated))&&(i.children===void 0||Array.isArray(i.children))&&(i.tags===void 0||Array.isArray(i.tags))}o(r,"is"),t.is=r})(nle||(nle={}));(function(t){t.Empty="",t.QuickFix="quickfix",t.Refactor="refactor",t.RefactorExtract="refactor.extract",t.RefactorInline="refactor.inline",t.RefactorRewrite="refactor.rewrite",t.Source="source",t.SourceOrganizeImports="source.organizeImports",t.SourceFixAll="source.fixAll"})(ile||(ile={}));(function(t){t.Invoked=1,t.Automatic=2})(mE||(mE={}));(function(t){function e(n,i,a){let s={diagnostics:n};return i!=null&&(s.only=i),a!=null&&(s.triggerKind=a),s}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Fe.typedArray(i.diagnostics,dE.is)&&(i.only===void 0||Fe.typedArray(i.only,Fe.string))&&(i.triggerKind===void 0||i.triggerKind===mE.Invoked||i.triggerKind===mE.Automatic)}o(r,"is"),t.is=r})(ale||(ale={}));(function(t){function e(n,i,a){let s={title:n},l=!0;return typeof i=="string"?(l=!1,s.kind=i):r1.is(i)?s.command=i:s.edit=i,l&&a!==void 0&&(s.kind=a),s}o(e,"create"),t.create=e;function r(n){let i=n;return i&&Fe.string(i.title)&&(i.diagnostics===void 0||Fe.typedArray(i.diagnostics,dE.is))&&(i.kind===void 0||Fe.string(i.kind))&&(i.edit!==void 0||i.command!==void 0)&&(i.command===void 0||r1.is(i.command))&&(i.isPreferred===void 0||Fe.boolean(i.isPreferred))&&(i.edit===void 0||cM.is(i.edit))}o(r,"is"),t.is=r})(sle||(sle={}));(function(t){function e(n,i){let a={range:n};return Fe.defined(i)&&(a.data=i),a}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Pr.is(i.range)&&(Fe.undefined(i.command)||r1.is(i.command))}o(r,"is"),t.is=r})(ole||(ole={}));(function(t){function e(n,i){return{tabSize:n,insertSpaces:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Fe.uinteger(i.tabSize)&&Fe.boolean(i.insertSpaces)}o(r,"is"),t.is=r})(lle||(lle={}));(function(t){function e(n,i,a){return{range:n,target:i,data:a}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Pr.is(i.range)&&(Fe.undefined(i.target)||Fe.string(i.target))}o(r,"is"),t.is=r})(cle||(cle={}));(function(t){function e(n,i){return{range:n,parent:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&Pr.is(i.range)&&(i.parent===void 0||t.is(i.parent))}o(r,"is"),t.is=r})(ule||(ule={}));(function(t){t.namespace="namespace",t.type="type",t.class="class",t.enum="enum",t.interface="interface",t.struct="struct",t.typeParameter="typeParameter",t.parameter="parameter",t.variable="variable",t.property="property",t.enumMember="enumMember",t.event="event",t.function="function",t.method="method",t.macro="macro",t.keyword="keyword",t.modifier="modifier",t.comment="comment",t.string="string",t.number="number",t.regexp="regexp",t.operator="operator",t.decorator="decorator"})(hle||(hle={}));(function(t){t.declaration="declaration",t.definition="definition",t.readonly="readonly",t.static="static",t.deprecated="deprecated",t.abstract="abstract",t.async="async",t.modification="modification",t.documentation="documentation",t.defaultLibrary="defaultLibrary"})(fle||(fle={}));(function(t){function e(r){let n=r;return Fe.objectLiteral(n)&&(n.resultId===void 0||typeof n.resultId=="string")&&Array.isArray(n.data)&&(n.data.length===0||typeof n.data[0]=="number")}o(e,"is"),t.is=e})(dle||(dle={}));(function(t){function e(n,i){return{range:n,text:i}}o(e,"create"),t.create=e;function r(n){let i=n;return i!=null&&Pr.is(i.range)&&Fe.string(i.text)}o(r,"is"),t.is=r})(ple||(ple={}));(function(t){function e(n,i,a){return{range:n,variableName:i,caseSensitiveLookup:a}}o(e,"create"),t.create=e;function r(n){let i=n;return i!=null&&Pr.is(i.range)&&Fe.boolean(i.caseSensitiveLookup)&&(Fe.string(i.variableName)||i.variableName===void 0)}o(r,"is"),t.is=r})(mle||(mle={}));(function(t){function e(n,i){return{range:n,expression:i}}o(e,"create"),t.create=e;function r(n){let i=n;return i!=null&&Pr.is(i.range)&&(Fe.string(i.expression)||i.expression===void 0)}o(r,"is"),t.is=r})(gle||(gle={}));(function(t){function e(n,i){return{frameId:n,stoppedLocation:i}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.defined(i)&&Pr.is(n.stoppedLocation)}o(r,"is"),t.is=r})(yle||(yle={}));(function(t){t.Type=1,t.Parameter=2;function e(r){return r===1||r===2}o(e,"is"),t.is=e})(fM||(fM={}));(function(t){function e(n){return{value:n}}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&(i.tooltip===void 0||Fe.string(i.tooltip)||Ex.is(i.tooltip))&&(i.location===void 0||fE.is(i.location))&&(i.command===void 0||r1.is(i.command))}o(r,"is"),t.is=r})(dM||(dM={}));(function(t){function e(n,i,a){let s={position:n,label:i};return a!==void 0&&(s.kind=a),s}o(e,"create"),t.create=e;function r(n){let i=n;return Fe.objectLiteral(i)&&jr.is(i.position)&&(Fe.string(i.label)||Fe.typedArray(i.label,dM.is))&&(i.kind===void 0||fM.is(i.kind))&&i.textEdits===void 0||Fe.typedArray(i.textEdits,n1.is)&&(i.tooltip===void 0||Fe.string(i.tooltip)||Ex.is(i.tooltip))&&(i.paddingLeft===void 0||Fe.boolean(i.paddingLeft))&&(i.paddingRight===void 0||Fe.boolean(i.paddingRight))}o(r,"is"),t.is=r})(vle||(vle={}));(function(t){function e(r){return{kind:"snippet",value:r}}o(e,"createSnippet"),t.createSnippet=e})(xle||(xle={}));(function(t){function e(r,n,i,a){return{insertText:r,filterText:n,range:i,command:a}}o(e,"create"),t.create=e})(ble||(ble={}));(function(t){function e(r){return{items:r}}o(e,"create"),t.create=e})(wle||(wle={}));(function(t){t.Invoked=0,t.Automatic=1})(Tle||(Tle={}));(function(t){function e(r,n){return{range:r,text:n}}o(e,"create"),t.create=e})(kle||(kle={}));(function(t){function e(r,n){return{triggerKind:r,selectedCompletionInfo:n}}o(e,"create"),t.create=e})(Ele||(Ele={}));(function(t){function e(r){let n=r;return Fe.objectLiteral(n)&&tM.is(n.uri)&&Fe.string(n.name)}o(e,"is"),t.is=e})(Sle||(Sle={}));(function(t){function e(a,s,l,u){return new pM(a,s,l,u)}o(e,"create"),t.create=e;function r(a){let s=a;return!!(Fe.defined(s)&&Fe.string(s.uri)&&(Fe.undefined(s.languageId)||Fe.string(s.languageId))&&Fe.uinteger(s.lineCount)&&Fe.func(s.getText)&&Fe.func(s.positionAt)&&Fe.func(s.offsetAt))}o(r,"is"),t.is=r;function n(a,s){let l=a.getText(),u=i(s,(f,d)=>{let p=f.range.start.line-d.range.start.line;return p===0?f.range.start.character-d.range.start.character:p}),h=l.length;for(let f=u.length-1;f>=0;f--){let d=u[f],p=a.offsetAt(d.range.start),m=a.offsetAt(d.range.end);if(m<=h)l=l.substring(0,p)+d.newText+l.substring(m,l.length);else throw new Error("Overlapping edit");h=p}return l}o(n,"applyEdits"),t.applyEdits=n;function i(a,s){if(a.length<=1)return a;let l=a.length/2|0,u=a.slice(0,l),h=a.slice(l);i(u,s),i(h,s);let f=0,d=0,p=0;for(;f0&&e.push(r.length),this._lineOffsets=e}return this._lineOffsets}positionAt(e){e=Math.max(Math.min(e,this._content.length),0);let r=this.getLineOffsets(),n=0,i=r.length;if(i===0)return jr.create(0,e);for(;ne?i=s:n=s+1}let a=n-1;return jr.create(a,e-r[a])}offsetAt(e){let r=this.getLineOffsets();if(e.line>=r.length)return this._content.length;if(e.line<0)return 0;let n=r[e.line],i=e.line+1"u"}o(n,"undefined"),t.undefined=n;function i(m){return m===!0||m===!1}o(i,"boolean"),t.boolean=i;function a(m){return e.call(m)==="[object String]"}o(a,"string"),t.string=a;function s(m){return e.call(m)==="[object Number]"}o(s,"number"),t.number=s;function l(m,g,y){return e.call(m)==="[object Number]"&&g<=m&&m<=y}o(l,"numberRange"),t.numberRange=l;function u(m){return e.call(m)==="[object Number]"&&-2147483648<=m&&m<=2147483647}o(u,"integer"),t.integer=u;function h(m){return e.call(m)==="[object Number]"&&0<=m&&m<=2147483647}o(h,"uinteger"),t.uinteger=h;function f(m){return e.call(m)==="[object Function]"}o(f,"func"),t.func=f;function d(m){return m!==null&&typeof m=="object"}o(d,"objectLiteral"),t.objectLiteral=d;function p(m,g){return Array.isArray(m)&&m.every(g)}o(p,"typedArray"),t.typedArray=p})(Fe||(Fe={}))});var Sx,Cx,pp,mp,gM,a1,gE=N(()=>{"use strict";mM();Nl();Sx=class{static{o(this,"CstNodeBuilder")}constructor(){this.nodeStack=[]}get current(){var e;return(e=this.nodeStack[this.nodeStack.length-1])!==null&&e!==void 0?e:this.rootNode}buildRootNode(e){return this.rootNode=new a1(e),this.rootNode.root=this.rootNode,this.nodeStack=[this.rootNode],this.rootNode}buildCompositeNode(e){let r=new mp;return r.grammarSource=e,r.root=this.rootNode,this.current.content.push(r),this.nodeStack.push(r),r}buildLeafNode(e,r){let n=new pp(e.startOffset,e.image.length,Gm(e),e.tokenType,!r);return n.grammarSource=r,n.root=this.rootNode,this.current.content.push(n),n}removeNode(e){let r=e.container;if(r){let n=r.content.indexOf(e);n>=0&&r.content.splice(n,1)}}addHiddenNodes(e){let r=[];for(let a of e){let s=new pp(a.startOffset,a.image.length,Gm(a),a.tokenType,!0);s.root=this.rootNode,r.push(s)}let n=this.current,i=!1;if(n.content.length>0){n.content.push(...r);return}for(;n.container;){let a=n.container.content.indexOf(n);if(a>0){n.container.content.splice(a,0,...r),i=!0;break}n=n.container}i||this.rootNode.content.unshift(...r)}construct(e){let r=this.current;typeof e.$type=="string"&&(this.current.astNode=e),e.$cstNode=r;let n=this.nodeStack.pop();n?.content.length===0&&this.removeNode(n)}},Cx=class{static{o(this,"AbstractCstNode")}get parent(){return this.container}get feature(){return this.grammarSource}get hidden(){return!1}get astNode(){var e,r;let n=typeof((e=this._astNode)===null||e===void 0?void 0:e.$type)=="string"?this._astNode:(r=this.container)===null||r===void 0?void 0:r.astNode;if(!n)throw new Error("This node has no associated AST element");return n}set astNode(e){this._astNode=e}get element(){return this.astNode}get text(){return this.root.fullText.substring(this.offset,this.end)}},pp=class extends Cx{static{o(this,"LeafCstNodeImpl")}get offset(){return this._offset}get length(){return this._length}get end(){return this._offset+this._length}get hidden(){return this._hidden}get tokenType(){return this._tokenType}get range(){return this._range}constructor(e,r,n,i,a=!1){super(),this._hidden=a,this._offset=e,this._tokenType=i,this._length=r,this._range=n}},mp=class extends Cx{static{o(this,"CompositeCstNodeImpl")}constructor(){super(...arguments),this.content=new gM(this)}get children(){return this.content}get offset(){var e,r;return(r=(e=this.firstNonHiddenNode)===null||e===void 0?void 0:e.offset)!==null&&r!==void 0?r:0}get length(){return this.end-this.offset}get end(){var e,r;return(r=(e=this.lastNonHiddenNode)===null||e===void 0?void 0:e.end)!==null&&r!==void 0?r:0}get range(){let e=this.firstNonHiddenNode,r=this.lastNonHiddenNode;if(e&&r){if(this._rangeCache===void 0){let{range:n}=e,{range:i}=r;this._rangeCache={start:n.start,end:i.end.line=0;e--){let r=this.content[e];if(!r.hidden)return r}return this.content[this.content.length-1]}},gM=class t extends Array{static{o(this,"CstNodeContainer")}constructor(e){super(),this.parent=e,Object.setPrototypeOf(this,t.prototype)}push(...e){return this.addParents(e),super.push(...e)}unshift(...e){return this.addParents(e),super.unshift(...e)}splice(e,r,...n){return this.addParents(n),super.splice(e,r,...n)}addParents(e){for(let r of e)r.container=this.parent}},a1=class extends mp{static{o(this,"RootCstNodeImpl")}get text(){return this._text.substring(this.offset,this.end)}get fullText(){return this._text}constructor(e){super(),this._text="",this._text=e??""}}});function yM(t){return t.$type===yE}var yE,Ale,_le,Ax,_x,vE,s1,Dx,JBe,vM,Lx=N(()=>{"use strict";cf();Soe();Rc();Ol();is();gE();yE=Symbol("Datatype");o(yM,"isDataTypeNode");Ale="\u200B",_le=o(t=>t.endsWith(Ale)?t:t+Ale,"withRuleSuffix"),Ax=class{static{o(this,"AbstractLangiumParser")}constructor(e){this._unorderedGroups=new Map,this.allRules=new Map,this.lexer=e.parser.Lexer;let r=this.lexer.definition,n=e.LanguageMetaData.mode==="production";this.wrapper=new vM(r,Object.assign(Object.assign({},e.parser.ParserConfig),{skipValidations:n,errorMessageProvider:e.parser.ParserErrorMessageProvider}))}alternatives(e,r){this.wrapper.wrapOr(e,r)}optional(e,r){this.wrapper.wrapOption(e,r)}many(e,r){this.wrapper.wrapMany(e,r)}atLeastOne(e,r){this.wrapper.wrapAtLeastOne(e,r)}getRule(e){return this.allRules.get(e)}isRecording(){return this.wrapper.IS_RECORDING}get unorderedGroups(){return this._unorderedGroups}getRuleStack(){return this.wrapper.RULE_STACK}finalize(){this.wrapper.wrapSelfAnalysis()}},_x=class extends Ax{static{o(this,"LangiumParser")}get current(){return this.stack[this.stack.length-1]}constructor(e){super(e),this.nodeBuilder=new Sx,this.stack=[],this.assignmentMap=new Map,this.linker=e.references.Linker,this.converter=e.parser.ValueConverter,this.astReflection=e.shared.AstReflection}rule(e,r){let n=this.computeRuleType(e),i=this.wrapper.DEFINE_RULE(_le(e.name),this.startImplementation(n,r).bind(this));return this.allRules.set(e.name,i),e.entry&&(this.mainRule=i),i}computeRuleType(e){if(!e.fragment){if(Z2(e))return yE;{let r=Rg(e);return r??e.name}}}parse(e,r={}){this.nodeBuilder.buildRootNode(e);let n=this.lexerResult=this.lexer.tokenize(e);this.wrapper.input=n.tokens;let i=r.rule?this.allRules.get(r.rule):this.mainRule;if(!i)throw new Error(r.rule?`No rule found with name '${r.rule}'`:"No main rule available.");let a=i.call(this.wrapper,{});return this.nodeBuilder.addHiddenNodes(n.hidden),this.unorderedGroups.clear(),this.lexerResult=void 0,{value:a,lexerErrors:n.errors,lexerReport:n.report,parserErrors:this.wrapper.errors}}startImplementation(e,r){return n=>{let i=!this.isRecording()&&e!==void 0;if(i){let s={$type:e};this.stack.push(s),e===yE&&(s.value="")}let a;try{a=r(n)}catch{a=void 0}return a===void 0&&i&&(a=this.construct()),a}}extractHiddenTokens(e){let r=this.lexerResult.hidden;if(!r.length)return[];let n=e.startOffset;for(let i=0;in)return r.splice(0,i);return r.splice(0,r.length)}consume(e,r,n){let i=this.wrapper.wrapConsume(e,r);if(!this.isRecording()&&this.isValidToken(i)){let a=this.extractHiddenTokens(i);this.nodeBuilder.addHiddenNodes(a);let s=this.nodeBuilder.buildLeafNode(i,n),{assignment:l,isCrossRef:u}=this.getAssignment(n),h=this.current;if(l){let f=Ho(n)?i.image:this.converter.convert(i.image,s);this.assign(l.operator,l.feature,f,s,u)}else if(yM(h)){let f=i.image;Ho(n)||(f=this.converter.convert(f,s).toString()),h.value+=f}}}isValidToken(e){return!e.isInsertedInRecovery&&!isNaN(e.startOffset)&&typeof e.endOffset=="number"&&!isNaN(e.endOffset)}subrule(e,r,n,i,a){let s;!this.isRecording()&&!n&&(s=this.nodeBuilder.buildCompositeNode(i));let l=this.wrapper.wrapSubrule(e,r,a);!this.isRecording()&&s&&s.length>0&&this.performSubruleAssignment(l,i,s)}performSubruleAssignment(e,r,n){let{assignment:i,isCrossRef:a}=this.getAssignment(r);if(i)this.assign(i.operator,i.feature,e,n,a);else if(!i){let s=this.current;if(yM(s))s.value+=e.toString();else if(typeof e=="object"&&e){let u=this.assignWithoutOverride(e,s);this.stack.pop(),this.stack.push(u)}}}action(e,r){if(!this.isRecording()){let n=this.current;if(r.feature&&r.operator){n=this.construct(),this.nodeBuilder.removeNode(n.$cstNode),this.nodeBuilder.buildCompositeNode(r).content.push(n.$cstNode);let a={$type:e};this.stack.push(a),this.assign(r.operator,r.feature,n,n.$cstNode,!1)}else n.$type=e}}construct(){if(this.isRecording())return;let e=this.current;return vk(e),this.nodeBuilder.construct(e),this.stack.pop(),yM(e)?this.converter.convert(e.value,e.$cstNode):(XR(this.astReflection,e),e)}getAssignment(e){if(!this.assignmentMap.has(e)){let r=tp(e,Ml);this.assignmentMap.set(e,{assignment:r,isCrossRef:r?ep(r.terminal):!1})}return this.assignmentMap.get(e)}assign(e,r,n,i,a){let s=this.current,l;switch(a&&typeof n=="string"?l=this.linker.buildReference(s,r,i,n):l=n,e){case"=":{s[r]=l;break}case"?=":{s[r]=!0;break}case"+=":Array.isArray(s[r])||(s[r]=[]),s[r].push(l)}}assignWithoutOverride(e,r){for(let[i,a]of Object.entries(r)){let s=e[i];s===void 0?e[i]=a:Array.isArray(s)&&Array.isArray(a)&&(a.push(...s),e[i]=a)}let n=e.$cstNode;return n&&(n.astNode=void 0,e.$cstNode=void 0),e}get definitionErrors(){return this.wrapper.definitionErrors}},vE=class{static{o(this,"AbstractParserErrorMessageProvider")}buildMismatchTokenMessage(e){return zu.buildMismatchTokenMessage(e)}buildNotAllInputParsedMessage(e){return zu.buildNotAllInputParsedMessage(e)}buildNoViableAltMessage(e){return zu.buildNoViableAltMessage(e)}buildEarlyExitMessage(e){return zu.buildEarlyExitMessage(e)}},s1=class extends vE{static{o(this,"LangiumParserErrorMessageProvider")}buildMismatchTokenMessage({expected:e,actual:r}){return`Expecting ${e.LABEL?"`"+e.LABEL+"`":e.name.endsWith(":KW")?`keyword '${e.name.substring(0,e.name.length-3)}'`:`token of type '${e.name}'`} but found \`${r.image}\`.`}buildNotAllInputParsedMessage({firstRedundant:e}){return`Expecting end of file but found \`${e.image}\`.`}},Dx=class extends Ax{static{o(this,"LangiumCompletionParser")}constructor(){super(...arguments),this.tokens=[],this.elementStack=[],this.lastElementStack=[],this.nextTokenIndex=0,this.stackSize=0}action(){}construct(){}parse(e){this.resetState();let r=this.lexer.tokenize(e,{mode:"partial"});return this.tokens=r.tokens,this.wrapper.input=[...this.tokens],this.mainRule.call(this.wrapper,{}),this.unorderedGroups.clear(),{tokens:this.tokens,elementStack:[...this.lastElementStack],tokenIndex:this.nextTokenIndex}}rule(e,r){let n=this.wrapper.DEFINE_RULE(_le(e.name),this.startImplementation(r).bind(this));return this.allRules.set(e.name,n),e.entry&&(this.mainRule=n),n}resetState(){this.elementStack=[],this.lastElementStack=[],this.nextTokenIndex=0,this.stackSize=0}startImplementation(e){return r=>{let n=this.keepStackSize();try{e(r)}finally{this.resetStackSize(n)}}}removeUnexpectedElements(){this.elementStack.splice(this.stackSize)}keepStackSize(){let e=this.elementStack.length;return this.stackSize=e,e}resetStackSize(e){this.removeUnexpectedElements(),this.stackSize=e}consume(e,r,n){this.wrapper.wrapConsume(e,r),this.isRecording()||(this.lastElementStack=[...this.elementStack,n],this.nextTokenIndex=this.currIdx+1)}subrule(e,r,n,i,a){this.before(i),this.wrapper.wrapSubrule(e,r,a),this.after(i)}before(e){this.isRecording()||this.elementStack.push(e)}after(e){if(!this.isRecording()){let r=this.elementStack.lastIndexOf(e);r>=0&&this.elementStack.splice(r)}}get currIdx(){return this.wrapper.currIdx}},JBe={recoveryEnabled:!0,nodeLocationTracking:"full",skipValidations:!0,errorMessageProvider:new s1},vM=class extends xx{static{o(this,"ChevrotainWrapper")}constructor(e,r){let n=r&&"maxLookahead"in r;super(e,Object.assign(Object.assign(Object.assign({},JBe),{lookaheadStrategy:n?new Gu({maxLookahead:r.maxLookahead}):new kx({logging:r.skipValidations?()=>{}:void 0})}),r))}get IS_RECORDING(){return this.RECORDING_PHASE}DEFINE_RULE(e,r){return this.RULE(e,r)}wrapSelfAnalysis(){this.performSelfAnalysis()}wrapConsume(e,r){return this.consume(e,r)}wrapSubrule(e,r,n){return this.subrule(e,r,{ARGS:[n]})}wrapOr(e,r){this.or(e,r)}wrapOption(e,r){this.option(e,r)}wrapMany(e,r){this.many(e,r)}wrapAtLeastOne(e,r){this.atLeastOne(e,r)}}});function Rx(t,e,r){return eFe({parser:e,tokens:r,ruleNames:new Map},t),e}function eFe(t,e){let r=K2(e,!1),n=en(e.rules).filter(Oa).filter(i=>r.has(i));for(let i of n){let a=Object.assign(Object.assign({},t),{consume:1,optional:1,subrule:1,many:1,or:1});t.parser.rule(i,gp(a,i.definition))}}function gp(t,e,r=!1){let n;if(Ho(e))n=oFe(t,e);else if(Mu(e))n=tFe(t,e);else if(Ml(e))n=gp(t,e.terminal);else if(ep(e))n=Dle(t,e);else if(Il(e))n=rFe(t,e);else if(mk(e))n=iFe(t,e);else if(yk(e))n=aFe(t,e);else if(sf(e))n=sFe(t,e);else if($R(e)){let i=t.consume++;n=o(()=>t.parser.consume(i,lo,e),"method")}else throw new Zd(e.$cstNode,`Unexpected element type: ${e.$type}`);return Lle(t,r?void 0:xE(e),n,e.cardinality)}function tFe(t,e){let r=J2(e);return()=>t.parser.action(r,e)}function rFe(t,e){let r=e.rule.ref;if(Oa(r)){let n=t.subrule++,i=r.fragment,a=e.arguments.length>0?nFe(r,e.arguments):()=>({});return s=>t.parser.subrule(n,Rle(t,r),i,e,a(s))}else if(so(r)){let n=t.consume++,i=xM(t,r.name);return()=>t.parser.consume(n,i,e)}else if(r)Lc(r);else throw new Zd(e.$cstNode,`Undefined rule: ${e.rule.$refText}`)}function nFe(t,e){let r=e.map(n=>Vu(n.value));return n=>{let i={};for(let a=0;ae(n)||r(n)}else if(RR(t)){let e=Vu(t.left),r=Vu(t.right);return n=>e(n)&&r(n)}else if(MR(t)){let e=Vu(t.value);return r=>!e(r)}else if(IR(t)){let e=t.parameter.ref.name;return r=>r!==void 0&&r[e]===!0}else if(LR(t)){let e=!!t.true;return()=>e}Lc(t)}function iFe(t,e){if(e.elements.length===1)return gp(t,e.elements[0]);{let r=[];for(let i of e.elements){let a={ALT:gp(t,i,!0)},s=xE(i);s&&(a.GATE=Vu(s)),r.push(a)}let n=t.or++;return i=>t.parser.alternatives(n,r.map(a=>{let s={ALT:o(()=>a.ALT(i),"ALT")},l=a.GATE;return l&&(s.GATE=()=>l(i)),s}))}}function aFe(t,e){if(e.elements.length===1)return gp(t,e.elements[0]);let r=[];for(let l of e.elements){let u={ALT:gp(t,l,!0)},h=xE(l);h&&(u.GATE=Vu(h)),r.push(u)}let n=t.or++,i=o((l,u)=>{let h=u.getRuleStack().join("-");return`uGroup_${l}_${h}`},"idFunc"),a=o(l=>t.parser.alternatives(n,r.map((u,h)=>{let f={ALT:o(()=>!0,"ALT")},d=t.parser;f.ALT=()=>{if(u.ALT(l),!d.isRecording()){let m=i(n,d);d.unorderedGroups.get(m)||d.unorderedGroups.set(m,[]);let g=d.unorderedGroups.get(m);typeof g?.[h]>"u"&&(g[h]=!0)}};let p=u.GATE;return p?f.GATE=()=>p(l):f.GATE=()=>{let m=d.unorderedGroups.get(i(n,d));return!m?.[h]},f})),"alternatives"),s=Lle(t,xE(e),a,"*");return l=>{s(l),t.parser.isRecording()||t.parser.unorderedGroups.delete(i(n,t.parser))}}function sFe(t,e){let r=e.elements.map(n=>gp(t,n));return n=>r.forEach(i=>i(n))}function xE(t){if(sf(t))return t.guardCondition}function Dle(t,e,r=e.terminal){if(r)if(Il(r)&&Oa(r.rule.ref)){let n=r.rule.ref,i=t.subrule++;return a=>t.parser.subrule(i,Rle(t,n),!1,e,a)}else if(Il(r)&&so(r.rule.ref)){let n=t.consume++,i=xM(t,r.rule.ref.name);return()=>t.parser.consume(n,i,e)}else if(Ho(r)){let n=t.consume++,i=xM(t,r.value);return()=>t.parser.consume(n,i,e)}else throw new Error("Could not build cross reference parser");else{if(!e.type.ref)throw new Error("Could not resolve reference to type: "+e.type.$refText);let n=kk(e.type.ref),i=n?.terminal;if(!i)throw new Error("Could not find name assignment for type: "+J2(e.type.ref));return Dle(t,e,i)}}function oFe(t,e){let r=t.consume++,n=t.tokens[e.value];if(!n)throw new Error("Could not find token for keyword: "+e.value);return()=>t.parser.consume(r,n,e)}function Lle(t,e,r,n){let i=e&&Vu(e);if(!n)if(i){let a=t.or++;return s=>t.parser.alternatives(a,[{ALT:o(()=>r(s),"ALT"),GATE:o(()=>i(s),"GATE")},{ALT:lE(),GATE:o(()=>!i(s),"GATE")}])}else return r;if(n==="*"){let a=t.many++;return s=>t.parser.many(a,{DEF:o(()=>r(s),"DEF"),GATE:i?()=>i(s):void 0})}else if(n==="+"){let a=t.many++;if(i){let s=t.or++;return l=>t.parser.alternatives(s,[{ALT:o(()=>t.parser.atLeastOne(a,{DEF:o(()=>r(l),"DEF")}),"ALT"),GATE:o(()=>i(l),"GATE")},{ALT:lE(),GATE:o(()=>!i(l),"GATE")}])}else return s=>t.parser.atLeastOne(a,{DEF:o(()=>r(s),"DEF")})}else if(n==="?"){let a=t.optional++;return s=>t.parser.optional(a,{DEF:o(()=>r(s),"DEF"),GATE:i?()=>i(s):void 0})}else Lc(n)}function Rle(t,e){let r=lFe(t,e),n=t.parser.getRule(r);if(!n)throw new Error(`Rule "${r}" not found."`);return n}function lFe(t,e){if(Oa(e))return e.name;if(t.ruleNames.has(e))return t.ruleNames.get(e);{let r=e,n=r.$container,i=e.$type;for(;!Oa(n);)(sf(n)||mk(n)||yk(n))&&(i=n.elements.indexOf(r).toString()+":"+i),r=n,n=n.$container;return i=n.name+":"+i,t.ruleNames.set(e,i),i}}function xM(t,e){let r=t.tokens[e];if(!r)throw new Error(`Token "${e}" not found."`);return r}var bE=N(()=>{"use strict";cf();Rc();uk();Ps();Ol();o(Rx,"createParser");o(eFe,"buildRules");o(gp,"buildElement");o(tFe,"buildAction");o(rFe,"buildRuleCall");o(nFe,"buildRuleCallPredicate");o(Vu,"buildPredicate");o(iFe,"buildAlternatives");o(aFe,"buildUnorderedGroup");o(sFe,"buildGroup");o(xE,"getGuardCondition");o(Dle,"buildCrossReference");o(oFe,"buildKeyword");o(Lle,"wrap");o(Rle,"getRule");o(lFe,"getRuleName");o(xM,"getToken")});function bM(t){let e=t.Grammar,r=t.parser.Lexer,n=new Dx(t);return Rx(e,n,r.definition),n.finalize(),n}var wM=N(()=>{"use strict";Lx();bE();o(bM,"createCompletionParser")});function TM(t){let e=Nle(t);return e.finalize(),e}function Nle(t){let e=t.Grammar,r=t.parser.Lexer,n=new _x(t);return Rx(e,n,r.definition)}var kM=N(()=>{"use strict";Lx();bE();o(TM,"createLangiumParser");o(Nle,"prepareLangiumParser")});var Uu,wE=N(()=>{"use strict";cf();Rc();is();Ol();Lg();Ps();Uu=class{static{o(this,"DefaultTokenBuilder")}constructor(){this.diagnostics=[]}buildTokens(e,r){let n=en(K2(e,!1)),i=this.buildTerminalTokens(n),a=this.buildKeywordTokens(n,i,r);return i.forEach(s=>{let l=s.PATTERN;typeof l=="object"&&l&&"test"in l&&Dg(l)?a.unshift(s):a.push(s)}),a}flushLexingReport(e){return{diagnostics:this.popDiagnostics()}}popDiagnostics(){let e=[...this.diagnostics];return this.diagnostics=[],e}buildTerminalTokens(e){return e.filter(so).filter(r=>!r.fragment).map(r=>this.buildTerminalToken(r)).toArray()}buildTerminalToken(e){let r=Ng(e),n=this.requiresCustomPattern(r)?this.regexPatternFunction(r):r,i={name:e.name,PATTERN:n};return typeof n=="function"&&(i.LINE_BREAKS=!0),e.hidden&&(i.GROUP=Dg(r)?Xn.SKIPPED:"hidden"),i}requiresCustomPattern(e){return e.flags.includes("u")||e.flags.includes("s")?!0:!!(e.source.includes("?<=")||e.source.includes("?(r.lastIndex=i,r.exec(n))}buildKeywordTokens(e,r,n){return e.filter(Oa).flatMap(i=>Nc(i).filter(Ho)).distinct(i=>i.value).toArray().sort((i,a)=>a.value.length-i.value.length).map(i=>this.buildKeywordToken(i,r,!!n?.caseInsensitive))}buildKeywordToken(e,r,n){let i=this.buildKeywordPattern(e,n),a={name:e.value,PATTERN:i,LONGER_ALT:this.findLongerAlt(e,r)};return typeof i=="function"&&(a.LINE_BREAKS=!0),a}buildKeywordPattern(e,r){return r?new RegExp(tN(e.value)):e.value}findLongerAlt(e,r){return r.reduce((n,i)=>{let a=i?.PATTERN;return a?.source&&rN("^"+a.source+"$",e.value)&&n.push(i),n},[])}}});var yp,Oc,EM=N(()=>{"use strict";Rc();Ol();yp=class{static{o(this,"DefaultValueConverter")}convert(e,r){let n=r.grammarSource;if(ep(n)&&(n=aN(n)),Il(n)){let i=n.rule.ref;if(!i)throw new Error("This cst node was not parsed by a rule.");return this.runConverter(i,e,r)}return e}runConverter(e,r,n){var i;switch(e.name.toUpperCase()){case"INT":return Oc.convertInt(r);case"STRING":return Oc.convertString(r);case"ID":return Oc.convertID(r)}switch((i=fN(e))===null||i===void 0?void 0:i.toLowerCase()){case"number":return Oc.convertNumber(r);case"boolean":return Oc.convertBoolean(r);case"bigint":return Oc.convertBigint(r);case"date":return Oc.convertDate(r);default:return r}}};(function(t){function e(h){let f="";for(let d=1;d{"use strict";Object.defineProperty(AM,"__esModule",{value:!0});var SM;function CM(){if(SM===void 0)throw new Error("No runtime abstraction layer installed");return SM}o(CM,"RAL");(function(t){function e(r){if(r===void 0)throw new Error("No runtime abstraction layer provided");SM=r}o(e,"install"),t.install=e})(CM||(CM={}));AM.default=CM});var Ole=Mi(Ba=>{"use strict";Object.defineProperty(Ba,"__esModule",{value:!0});Ba.stringArray=Ba.array=Ba.func=Ba.error=Ba.number=Ba.string=Ba.boolean=void 0;function cFe(t){return t===!0||t===!1}o(cFe,"boolean");Ba.boolean=cFe;function Mle(t){return typeof t=="string"||t instanceof String}o(Mle,"string");Ba.string=Mle;function uFe(t){return typeof t=="number"||t instanceof Number}o(uFe,"number");Ba.number=uFe;function hFe(t){return t instanceof Error}o(hFe,"error");Ba.error=hFe;function fFe(t){return typeof t=="function"}o(fFe,"func");Ba.func=fFe;function Ile(t){return Array.isArray(t)}o(Ile,"array");Ba.array=Ile;function dFe(t){return Ile(t)&&t.every(e=>Mle(e))}o(dFe,"stringArray");Ba.stringArray=dFe});var LM=Mi(o1=>{"use strict";Object.defineProperty(o1,"__esModule",{value:!0});o1.Emitter=o1.Event=void 0;var pFe=_M(),Ple;(function(t){let e={dispose(){}};t.None=function(){return e}})(Ple||(o1.Event=Ple={}));var DM=class{static{o(this,"CallbackList")}add(e,r=null,n){this._callbacks||(this._callbacks=[],this._contexts=[]),this._callbacks.push(e),this._contexts.push(r),Array.isArray(n)&&n.push({dispose:o(()=>this.remove(e,r),"dispose")})}remove(e,r=null){if(!this._callbacks)return;let n=!1;for(let i=0,a=this._callbacks.length;i{this._callbacks||(this._callbacks=new DM),this._options&&this._options.onFirstListenerAdd&&this._callbacks.isEmpty()&&this._options.onFirstListenerAdd(this),this._callbacks.add(e,r);let i={dispose:o(()=>{this._callbacks&&(this._callbacks.remove(e,r),i.dispose=t._noop,this._options&&this._options.onLastListenerRemove&&this._callbacks.isEmpty()&&this._options.onLastListenerRemove(this))},"dispose")};return Array.isArray(n)&&n.push(i),i}),this._event}fire(e){this._callbacks&&this._callbacks.invoke.call(this._callbacks,e)}dispose(){this._callbacks&&(this._callbacks.dispose(),this._callbacks=void 0)}};o1.Emitter=TE;TE._noop=function(){}});var Ble=Mi(l1=>{"use strict";Object.defineProperty(l1,"__esModule",{value:!0});l1.CancellationTokenSource=l1.CancellationToken=void 0;var mFe=_M(),gFe=Ole(),RM=LM(),kE;(function(t){t.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:RM.Event.None}),t.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:RM.Event.None});function e(r){let n=r;return n&&(n===t.None||n===t.Cancelled||gFe.boolean(n.isCancellationRequested)&&!!n.onCancellationRequested)}o(e,"is"),t.is=e})(kE||(l1.CancellationToken=kE={}));var yFe=Object.freeze(function(t,e){let r=(0,mFe.default)().timer.setTimeout(t.bind(e),0);return{dispose(){r.dispose()}}}),EE=class{static{o(this,"MutableToken")}constructor(){this._isCancelled=!1}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?yFe:(this._emitter||(this._emitter=new RM.Emitter),this._emitter.event)}dispose(){this._emitter&&(this._emitter.dispose(),this._emitter=void 0)}},NM=class{static{o(this,"CancellationTokenSource")}get token(){return this._token||(this._token=new EE),this._token}cancel(){this._token?this._token.cancel():this._token=kE.Cancelled}dispose(){this._token?this._token instanceof EE&&this._token.dispose():this._token=kE.None}};l1.CancellationTokenSource=NM});var yr={};var qo=N(()=>{"use strict";Sr(yr,Sa(Ble(),1))});function MM(){return new Promise(t=>{typeof setImmediate>"u"?setTimeout(t,0):setImmediate(t)})}function CE(){return SE=performance.now(),new yr.CancellationTokenSource}function $le(t){Fle=t}function Bc(t){return t===Pc}async function xi(t){if(t===yr.CancellationToken.None)return;let e=performance.now();if(e-SE>=Fle&&(SE=e,await MM(),SE=performance.now()),t.isCancellationRequested)throw Pc}var SE,Fle,Pc,cs,Yo=N(()=>{"use strict";qo();o(MM,"delayNextTick");SE=0,Fle=10;o(CE,"startCancelableOperation");o($le,"setInterruptionPeriod");Pc=Symbol("OperationCancelled");o(Bc,"isOperationCancelled");o(xi,"interruptAndCheck");cs=class{static{o(this,"Deferred")}constructor(){this.promise=new Promise((e,r)=>{this.resolve=n=>(e(n),this),this.reject=n=>(r(n),this)})}}});function IM(t,e){if(t.length<=1)return t;let r=t.length/2|0,n=t.slice(0,r),i=t.slice(r);IM(n,e),IM(i,e);let a=0,s=0,l=0;for(;ar.line||e.line===r.line&&e.character>r.character?{start:r,end:e}:t}function vFe(t){let e=Vle(t.range);return e!==t.range?{newText:t.newText,range:e}:t}var AE,c1,Ule=N(()=>{"use strict";AE=class t{static{o(this,"FullTextDocument")}constructor(e,r,n,i){this._uri=e,this._languageId=r,this._version=n,this._content=i,this._lineOffsets=void 0}get uri(){return this._uri}get languageId(){return this._languageId}get version(){return this._version}getText(e){if(e){let r=this.offsetAt(e.start),n=this.offsetAt(e.end);return this._content.substring(r,n)}return this._content}update(e,r){for(let n of e)if(t.isIncremental(n)){let i=Vle(n.range),a=this.offsetAt(i.start),s=this.offsetAt(i.end);this._content=this._content.substring(0,a)+n.text+this._content.substring(s,this._content.length);let l=Math.max(i.start.line,0),u=Math.max(i.end.line,0),h=this._lineOffsets,f=zle(n.text,!1,a);if(u-l===f.length)for(let p=0,m=f.length;pe?i=s:n=s+1}let a=n-1;return e=this.ensureBeforeEOL(e,r[a]),{line:a,character:e-r[a]}}offsetAt(e){let r=this.getLineOffsets();if(e.line>=r.length)return this._content.length;if(e.line<0)return 0;let n=r[e.line];if(e.character<=0)return n;let i=e.line+1r&&Gle(this._content.charCodeAt(e-1));)e--;return e}get lineCount(){return this.getLineOffsets().length}static isIncremental(e){let r=e;return r!=null&&typeof r.text=="string"&&r.range!==void 0&&(r.rangeLength===void 0||typeof r.rangeLength=="number")}static isFull(e){let r=e;return r!=null&&typeof r.text=="string"&&r.range===void 0&&r.rangeLength===void 0}};(function(t){function e(i,a,s,l){return new AE(i,a,s,l)}o(e,"create"),t.create=e;function r(i,a,s){if(i instanceof AE)return i.update(a,s),i;throw new Error("TextDocument.update: document must be created by TextDocument.create")}o(r,"update"),t.update=r;function n(i,a){let s=i.getText(),l=IM(a.map(vFe),(f,d)=>{let p=f.range.start.line-d.range.start.line;return p===0?f.range.start.character-d.range.start.character:p}),u=0,h=[];for(let f of l){let d=i.offsetAt(f.range.start);if(du&&h.push(s.substring(u,d)),f.newText.length&&h.push(f.newText),u=i.offsetAt(f.range.end)}return h.push(s.substr(u)),h.join("")}o(n,"applyEdits"),t.applyEdits=n})(c1||(c1={}));o(IM,"mergeSort");o(zle,"computeLineOffsets");o(Gle,"isEOL");o(Vle,"getWellformedRange");o(vFe,"getWellformedEdit")});var Hle,us,u1,OM=N(()=>{"use strict";(()=>{"use strict";var t={470:i=>{function a(u){if(typeof u!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(u))}o(a,"e");function s(u,h){for(var f,d="",p=0,m=-1,g=0,y=0;y<=u.length;++y){if(y2){var v=d.lastIndexOf("/");if(v!==d.length-1){v===-1?(d="",p=0):p=(d=d.slice(0,v)).length-1-d.lastIndexOf("/"),m=y,g=0;continue}}else if(d.length===2||d.length===1){d="",p=0,m=y,g=0;continue}}h&&(d.length>0?d+="/..":d="..",p=2)}else d.length>0?d+="/"+u.slice(m+1,y):d=u.slice(m+1,y),p=y-m-1;m=y,g=0}else f===46&&g!==-1?++g:g=-1}return d}o(s,"r");var l={resolve:o(function(){for(var u,h="",f=!1,d=arguments.length-1;d>=-1&&!f;d--){var p;d>=0?p=arguments[d]:(u===void 0&&(u=process.cwd()),p=u),a(p),p.length!==0&&(h=p+"/"+h,f=p.charCodeAt(0)===47)}return h=s(h,!f),f?h.length>0?"/"+h:"/":h.length>0?h:"."},"resolve"),normalize:o(function(u){if(a(u),u.length===0)return".";var h=u.charCodeAt(0)===47,f=u.charCodeAt(u.length-1)===47;return(u=s(u,!h)).length!==0||h||(u="."),u.length>0&&f&&(u+="/"),h?"/"+u:u},"normalize"),isAbsolute:o(function(u){return a(u),u.length>0&&u.charCodeAt(0)===47},"isAbsolute"),join:o(function(){if(arguments.length===0)return".";for(var u,h=0;h0&&(u===void 0?u=f:u+="/"+f)}return u===void 0?".":l.normalize(u)},"join"),relative:o(function(u,h){if(a(u),a(h),u===h||(u=l.resolve(u))===(h=l.resolve(h)))return"";for(var f=1;fy){if(h.charCodeAt(m+x)===47)return h.slice(m+x+1);if(x===0)return h.slice(m+x)}else p>y&&(u.charCodeAt(f+x)===47?v=x:x===0&&(v=0));break}var b=u.charCodeAt(f+x);if(b!==h.charCodeAt(m+x))break;b===47&&(v=x)}var w="";for(x=f+v+1;x<=d;++x)x!==d&&u.charCodeAt(x)!==47||(w.length===0?w+="..":w+="/..");return w.length>0?w+h.slice(m+v):(m+=v,h.charCodeAt(m)===47&&++m,h.slice(m))},"relative"),_makeLong:o(function(u){return u},"_makeLong"),dirname:o(function(u){if(a(u),u.length===0)return".";for(var h=u.charCodeAt(0),f=h===47,d=-1,p=!0,m=u.length-1;m>=1;--m)if((h=u.charCodeAt(m))===47){if(!p){d=m;break}}else p=!1;return d===-1?f?"/":".":f&&d===1?"//":u.slice(0,d)},"dirname"),basename:o(function(u,h){if(h!==void 0&&typeof h!="string")throw new TypeError('"ext" argument must be a string');a(u);var f,d=0,p=-1,m=!0;if(h!==void 0&&h.length>0&&h.length<=u.length){if(h.length===u.length&&h===u)return"";var g=h.length-1,y=-1;for(f=u.length-1;f>=0;--f){var v=u.charCodeAt(f);if(v===47){if(!m){d=f+1;break}}else y===-1&&(m=!1,y=f+1),g>=0&&(v===h.charCodeAt(g)?--g==-1&&(p=f):(g=-1,p=y))}return d===p?p=y:p===-1&&(p=u.length),u.slice(d,p)}for(f=u.length-1;f>=0;--f)if(u.charCodeAt(f)===47){if(!m){d=f+1;break}}else p===-1&&(m=!1,p=f+1);return p===-1?"":u.slice(d,p)},"basename"),extname:o(function(u){a(u);for(var h=-1,f=0,d=-1,p=!0,m=0,g=u.length-1;g>=0;--g){var y=u.charCodeAt(g);if(y!==47)d===-1&&(p=!1,d=g+1),y===46?h===-1?h=g:m!==1&&(m=1):h!==-1&&(m=-1);else if(!p){f=g+1;break}}return h===-1||d===-1||m===0||m===1&&h===d-1&&h===f+1?"":u.slice(h,d)},"extname"),format:o(function(u){if(u===null||typeof u!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof u);return function(h,f){var d=f.dir||f.root,p=f.base||(f.name||"")+(f.ext||"");return d?d===f.root?d+p:d+"/"+p:p}(0,u)},"format"),parse:o(function(u){a(u);var h={root:"",dir:"",base:"",ext:"",name:""};if(u.length===0)return h;var f,d=u.charCodeAt(0),p=d===47;p?(h.root="/",f=1):f=0;for(var m=-1,g=0,y=-1,v=!0,x=u.length-1,b=0;x>=f;--x)if((d=u.charCodeAt(x))!==47)y===-1&&(v=!1,y=x+1),d===46?m===-1?m=x:b!==1&&(b=1):m!==-1&&(b=-1);else if(!v){g=x+1;break}return m===-1||y===-1||b===0||b===1&&m===y-1&&m===g+1?y!==-1&&(h.base=h.name=g===0&&p?u.slice(1,y):u.slice(g,y)):(g===0&&p?(h.name=u.slice(1,m),h.base=u.slice(1,y)):(h.name=u.slice(g,m),h.base=u.slice(g,y)),h.ext=u.slice(m,y)),g>0?h.dir=u.slice(0,g-1):p&&(h.dir="/"),h},"parse"),sep:"/",delimiter:":",win32:null,posix:null};l.posix=l,i.exports=l}},e={};function r(i){var a=e[i];if(a!==void 0)return a.exports;var s=e[i]={exports:{}};return t[i](s,s.exports,r),s.exports}o(r,"r"),r.d=(i,a)=>{for(var s in a)r.o(a,s)&&!r.o(i,s)&&Object.defineProperty(i,s,{enumerable:!0,get:a[s]})},r.o=(i,a)=>Object.prototype.hasOwnProperty.call(i,a),r.r=i=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(i,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(i,"__esModule",{value:!0})};var n={};(()=>{let i;r.r(n),r.d(n,{URI:o(()=>p,"URI"),Utils:o(()=>I,"Utils")}),typeof process=="object"?i=process.platform==="win32":typeof navigator=="object"&&(i=navigator.userAgent.indexOf("Windows")>=0);let a=/^\w[\w\d+.-]*$/,s=/^\//,l=/^\/\//;function u(D,k){if(!D.scheme&&k)throw new Error(`[UriError]: Scheme is missing: {scheme: "", authority: "${D.authority}", path: "${D.path}", query: "${D.query}", fragment: "${D.fragment}"}`);if(D.scheme&&!a.test(D.scheme))throw new Error("[UriError]: Scheme contains illegal characters.");if(D.path){if(D.authority){if(!s.test(D.path))throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character')}else if(l.test(D.path))throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")')}}o(u,"s");let h="",f="/",d=/^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/;class p{static{o(this,"f")}static isUri(k){return k instanceof p||!!k&&typeof k.authority=="string"&&typeof k.fragment=="string"&&typeof k.path=="string"&&typeof k.query=="string"&&typeof k.scheme=="string"&&typeof k.fsPath=="string"&&typeof k.with=="function"&&typeof k.toString=="function"}scheme;authority;path;query;fragment;constructor(k,L,R,O,M,B=!1){typeof k=="object"?(this.scheme=k.scheme||h,this.authority=k.authority||h,this.path=k.path||h,this.query=k.query||h,this.fragment=k.fragment||h):(this.scheme=function(F,P){return F||P?F:"file"}(k,B),this.authority=L||h,this.path=function(F,P){switch(F){case"https":case"http":case"file":P?P[0]!==f&&(P=f+P):P=f}return P}(this.scheme,R||h),this.query=O||h,this.fragment=M||h,u(this,B))}get fsPath(){return b(this,!1)}with(k){if(!k)return this;let{scheme:L,authority:R,path:O,query:M,fragment:B}=k;return L===void 0?L=this.scheme:L===null&&(L=h),R===void 0?R=this.authority:R===null&&(R=h),O===void 0?O=this.path:O===null&&(O=h),M===void 0?M=this.query:M===null&&(M=h),B===void 0?B=this.fragment:B===null&&(B=h),L===this.scheme&&R===this.authority&&O===this.path&&M===this.query&&B===this.fragment?this:new g(L,R,O,M,B)}static parse(k,L=!1){let R=d.exec(k);return R?new g(R[2]||h,E(R[4]||h),E(R[5]||h),E(R[7]||h),E(R[9]||h),L):new g(h,h,h,h,h)}static file(k){let L=h;if(i&&(k=k.replace(/\\/g,f)),k[0]===f&&k[1]===f){let R=k.indexOf(f,2);R===-1?(L=k.substring(2),k=f):(L=k.substring(2,R),k=k.substring(R)||f)}return new g("file",L,k,h,h)}static from(k){let L=new g(k.scheme,k.authority,k.path,k.query,k.fragment);return u(L,!0),L}toString(k=!1){return w(this,k)}toJSON(){return this}static revive(k){if(k){if(k instanceof p)return k;{let L=new g(k);return L._formatted=k.external,L._fsPath=k._sep===m?k.fsPath:null,L}}return k}}let m=i?1:void 0;class g extends p{static{o(this,"l")}_formatted=null;_fsPath=null;get fsPath(){return this._fsPath||(this._fsPath=b(this,!1)),this._fsPath}toString(k=!1){return k?w(this,!0):(this._formatted||(this._formatted=w(this,!1)),this._formatted)}toJSON(){let k={$mid:1};return this._fsPath&&(k.fsPath=this._fsPath,k._sep=m),this._formatted&&(k.external=this._formatted),this.path&&(k.path=this.path),this.scheme&&(k.scheme=this.scheme),this.authority&&(k.authority=this.authority),this.query&&(k.query=this.query),this.fragment&&(k.fragment=this.fragment),k}}let y={58:"%3A",47:"%2F",63:"%3F",35:"%23",91:"%5B",93:"%5D",64:"%40",33:"%21",36:"%24",38:"%26",39:"%27",40:"%28",41:"%29",42:"%2A",43:"%2B",44:"%2C",59:"%3B",61:"%3D",32:"%20"};function v(D,k,L){let R,O=-1;for(let M=0;M=97&&B<=122||B>=65&&B<=90||B>=48&&B<=57||B===45||B===46||B===95||B===126||k&&B===47||L&&B===91||L&&B===93||L&&B===58)O!==-1&&(R+=encodeURIComponent(D.substring(O,M)),O=-1),R!==void 0&&(R+=D.charAt(M));else{R===void 0&&(R=D.substr(0,M));let F=y[B];F!==void 0?(O!==-1&&(R+=encodeURIComponent(D.substring(O,M)),O=-1),R+=F):O===-1&&(O=M)}}return O!==-1&&(R+=encodeURIComponent(D.substring(O))),R!==void 0?R:D}o(v,"d");function x(D){let k;for(let L=0;L1&&D.scheme==="file"?`//${D.authority}${D.path}`:D.path.charCodeAt(0)===47&&(D.path.charCodeAt(1)>=65&&D.path.charCodeAt(1)<=90||D.path.charCodeAt(1)>=97&&D.path.charCodeAt(1)<=122)&&D.path.charCodeAt(2)===58?k?D.path.substr(1):D.path[1].toLowerCase()+D.path.substr(2):D.path,i&&(L=L.replace(/\//g,"\\")),L}o(b,"m");function w(D,k){let L=k?x:v,R="",{scheme:O,authority:M,path:B,query:F,fragment:P}=D;if(O&&(R+=O,R+=":"),(M||O==="file")&&(R+=f,R+=f),M){let z=M.indexOf("@");if(z!==-1){let $=M.substr(0,z);M=M.substr(z+1),z=$.lastIndexOf(":"),z===-1?R+=L($,!1,!1):(R+=L($.substr(0,z),!1,!1),R+=":",R+=L($.substr(z+1),!1,!0)),R+="@"}M=M.toLowerCase(),z=M.lastIndexOf(":"),z===-1?R+=L(M,!1,!0):(R+=L(M.substr(0,z),!1,!0),R+=M.substr(z))}if(B){if(B.length>=3&&B.charCodeAt(0)===47&&B.charCodeAt(2)===58){let z=B.charCodeAt(1);z>=65&&z<=90&&(B=`/${String.fromCharCode(z+32)}:${B.substr(3)}`)}else if(B.length>=2&&B.charCodeAt(1)===58){let z=B.charCodeAt(0);z>=65&&z<=90&&(B=`${String.fromCharCode(z+32)}:${B.substr(2)}`)}R+=L(B,!0,!1)}return F&&(R+="?",R+=L(F,!1,!1)),P&&(R+="#",R+=k?P:v(P,!1,!1)),R}o(w,"y");function C(D){try{return decodeURIComponent(D)}catch{return D.length>3?D.substr(0,3)+C(D.substr(3)):D}}o(C,"v");let T=/(%[0-9A-Za-z][0-9A-Za-z])+/g;function E(D){return D.match(T)?D.replace(T,k=>C(k)):D}o(E,"C");var A=r(470);let S=A.posix||A,_="/";var I;(function(D){D.joinPath=function(k,...L){return k.with({path:S.join(k.path,...L)})},D.resolvePath=function(k,...L){let R=k.path,O=!1;R[0]!==_&&(R=_+R,O=!0);let M=S.resolve(R,...L);return O&&M[0]===_&&!k.authority&&(M=M.substring(1)),k.with({path:M})},D.dirname=function(k){if(k.path.length===0||k.path===_)return k;let L=S.dirname(k.path);return L.length===1&&L.charCodeAt(0)===46&&(L=""),k.with({path:L})},D.basename=function(k){return S.basename(k.path)},D.extname=function(k){return S.extname(k.path)}})(I||(I={}))})(),Hle=n})();({URI:us,Utils:u1}=Hle)});var hs,Fc=N(()=>{"use strict";OM();(function(t){t.basename=u1.basename,t.dirname=u1.dirname,t.extname=u1.extname,t.joinPath=u1.joinPath,t.resolvePath=u1.resolvePath;function e(i,a){return i?.toString()===a?.toString()}o(e,"equals"),t.equals=e;function r(i,a){let s=typeof i=="string"?i:i.path,l=typeof a=="string"?a:a.path,u=s.split("/").filter(m=>m.length>0),h=l.split("/").filter(m=>m.length>0),f=0;for(;f{"use strict";Ule();h1();qo();Ps();Fc();(function(t){t[t.Changed=0]="Changed",t[t.Parsed=1]="Parsed",t[t.IndexedContent=2]="IndexedContent",t[t.ComputedScopes=3]="ComputedScopes",t[t.Linked=4]="Linked",t[t.IndexedReferences=5]="IndexedReferences",t[t.Validated=6]="Validated"})(kn||(kn={}));Nx=class{static{o(this,"DefaultLangiumDocumentFactory")}constructor(e){this.serviceRegistry=e.ServiceRegistry,this.textDocuments=e.workspace.TextDocuments,this.fileSystemProvider=e.workspace.FileSystemProvider}async fromUri(e,r=yr.CancellationToken.None){let n=await this.fileSystemProvider.readFile(e);return this.createAsync(e,n,r)}fromTextDocument(e,r,n){return r=r??us.parse(e.uri),yr.CancellationToken.is(n)?this.createAsync(r,e,n):this.create(r,e,n)}fromString(e,r,n){return yr.CancellationToken.is(n)?this.createAsync(r,e,n):this.create(r,e,n)}fromModel(e,r){return this.create(r,{$model:e})}create(e,r,n){if(typeof r=="string"){let i=this.parse(e,r,n);return this.createLangiumDocument(i,e,void 0,r)}else if("$model"in r){let i={value:r.$model,parserErrors:[],lexerErrors:[]};return this.createLangiumDocument(i,e)}else{let i=this.parse(e,r.getText(),n);return this.createLangiumDocument(i,e,r)}}async createAsync(e,r,n){if(typeof r=="string"){let i=await this.parseAsync(e,r,n);return this.createLangiumDocument(i,e,void 0,r)}else{let i=await this.parseAsync(e,r.getText(),n);return this.createLangiumDocument(i,e,r)}}createLangiumDocument(e,r,n,i){let a;if(n)a={parseResult:e,uri:r,state:kn.Parsed,references:[],textDocument:n};else{let s=this.createTextDocumentGetter(r,i);a={parseResult:e,uri:r,state:kn.Parsed,references:[],get textDocument(){return s()}}}return e.value.$document=a,a}async update(e,r){var n,i;let a=(n=e.parseResult.value.$cstNode)===null||n===void 0?void 0:n.root.fullText,s=(i=this.textDocuments)===null||i===void 0?void 0:i.get(e.uri.toString()),l=s?s.getText():await this.fileSystemProvider.readFile(e.uri);if(s)Object.defineProperty(e,"textDocument",{value:s});else{let u=this.createTextDocumentGetter(e.uri,l);Object.defineProperty(e,"textDocument",{get:u})}return a!==l&&(e.parseResult=await this.parseAsync(e.uri,l,r),e.parseResult.value.$document=e),e.state=kn.Parsed,e}parse(e,r,n){return this.serviceRegistry.getServices(e).parser.LangiumParser.parse(r,n)}parseAsync(e,r,n){return this.serviceRegistry.getServices(e).parser.AsyncParser.parse(r,n)}createTextDocumentGetter(e,r){let n=this.serviceRegistry,i;return()=>i??(i=c1.create(e.toString(),n.getServices(e).LanguageMetaData.languageId,0,r??""))}},Mx=class{static{o(this,"DefaultLangiumDocuments")}constructor(e){this.documentMap=new Map,this.langiumDocumentFactory=e.workspace.LangiumDocumentFactory,this.serviceRegistry=e.ServiceRegistry}get all(){return en(this.documentMap.values())}addDocument(e){let r=e.uri.toString();if(this.documentMap.has(r))throw new Error(`A document with the URI '${r}' is already present.`);this.documentMap.set(r,e)}getDocument(e){let r=e.toString();return this.documentMap.get(r)}async getOrCreateDocument(e,r){let n=this.getDocument(e);return n||(n=await this.langiumDocumentFactory.fromUri(e,r),this.addDocument(n),n)}createDocument(e,r,n){if(n)return this.langiumDocumentFactory.fromString(r,e,n).then(i=>(this.addDocument(i),i));{let i=this.langiumDocumentFactory.fromString(r,e);return this.addDocument(i),i}}hasDocument(e){return this.documentMap.has(e.toString())}invalidateDocument(e){let r=e.toString(),n=this.documentMap.get(r);return n&&(this.serviceRegistry.getServices(e).references.Linker.unlink(n),n.state=kn.Changed,n.precomputedScopes=void 0,n.diagnostics=void 0),n}deleteDocument(e){let r=e.toString(),n=this.documentMap.get(r);return n&&(n.state=kn.Changed,this.documentMap.delete(r)),n}}});var PM,Ix,BM=N(()=>{"use strict";qo();Rl();is();Yo();h1();PM=Symbol("ref_resolving"),Ix=class{static{o(this,"DefaultLinker")}constructor(e){this.reflection=e.shared.AstReflection,this.langiumDocuments=()=>e.shared.workspace.LangiumDocuments,this.scopeProvider=e.references.ScopeProvider,this.astNodeLocator=e.workspace.AstNodeLocator}async link(e,r=yr.CancellationToken.None){for(let n of Wo(e.parseResult.value))await xi(r),Ag(n).forEach(i=>this.doLink(i,e))}doLink(e,r){var n;let i=e.reference;if(i._ref===void 0){i._ref=PM;try{let a=this.getCandidate(e);if(jd(a))i._ref=a;else if(i._nodeDescription=a,this.langiumDocuments().hasDocument(a.documentUri)){let s=this.loadAstNode(a);i._ref=s??this.createLinkingError(e,a)}else i._ref=void 0}catch(a){console.error(`An error occurred while resolving reference to '${i.$refText}':`,a);let s=(n=a.message)!==null&&n!==void 0?n:String(a);i._ref=Object.assign(Object.assign({},e),{message:`An error occurred while resolving reference to '${i.$refText}': ${s}`})}r.references.push(i)}}unlink(e){for(let r of e.references)delete r._ref,delete r._nodeDescription;e.references=[]}getCandidate(e){let n=this.scopeProvider.getScope(e).getElement(e.reference.$refText);return n??this.createLinkingError(e)}buildReference(e,r,n,i){let a=this,s={$refNode:n,$refText:i,get ref(){var l;if(ii(this._ref))return this._ref;if(kR(this._nodeDescription)){let u=a.loadAstNode(this._nodeDescription);this._ref=u??a.createLinkingError({reference:s,container:e,property:r},this._nodeDescription)}else if(this._ref===void 0){this._ref=PM;let u=H2(e).$document,h=a.getLinkedNode({reference:s,container:e,property:r});if(h.error&&u&&u.state{"use strict";Ol();o(Wle,"isNamed");Ox=class{static{o(this,"DefaultNameProvider")}getName(e){if(Wle(e))return e.name}getNameNode(e){return Q2(e.$cstNode,"name")}}});var Px,$M=N(()=>{"use strict";Ol();Rl();is();Nl();Ps();Fc();Px=class{static{o(this,"DefaultReferences")}constructor(e){this.nameProvider=e.references.NameProvider,this.index=e.shared.workspace.IndexManager,this.nodeLocator=e.workspace.AstNodeLocator}findDeclaration(e){if(e){let r=hN(e),n=e.astNode;if(r&&n){let i=n[r.feature];if(va(i))return i.ref;if(Array.isArray(i)){for(let a of i)if(va(a)&&a.$refNode&&a.$refNode.offset<=e.offset&&a.$refNode.end>=e.end)return a.ref}}if(n){let i=this.nameProvider.getNameNode(n);if(i&&(i===e||SR(e,i)))return n}}}findDeclarationNode(e){let r=this.findDeclaration(e);if(r?.$cstNode){let n=this.nameProvider.getNameNode(r);return n??r.$cstNode}}findReferences(e,r){let n=[];if(r.includeDeclaration){let a=this.getReferenceToSelf(e);a&&n.push(a)}let i=this.index.findAllReferences(e,this.nodeLocator.getAstNodePath(e));return r.documentUri&&(i=i.filter(a=>hs.equals(a.sourceUri,r.documentUri))),n.push(...i),en(n)}getReferenceToSelf(e){let r=this.nameProvider.getNameNode(e);if(r){let n=Pa(e),i=this.nodeLocator.getAstNodePath(e);return{sourceUri:n.uri,sourcePath:i,targetUri:n.uri,targetPath:i,segment:Qd(r),local:!0}}}}});var Bl,vp,f1=N(()=>{"use strict";Ps();Bl=class{static{o(this,"MultiMap")}constructor(e){if(this.map=new Map,e)for(let[r,n]of e)this.add(r,n)}get size(){return zm.sum(en(this.map.values()).map(e=>e.length))}clear(){this.map.clear()}delete(e,r){if(r===void 0)return this.map.delete(e);{let n=this.map.get(e);if(n){let i=n.indexOf(r);if(i>=0)return n.length===1?this.map.delete(e):n.splice(i,1),!0}return!1}}get(e){var r;return(r=this.map.get(e))!==null&&r!==void 0?r:[]}has(e,r){if(r===void 0)return this.map.has(e);{let n=this.map.get(e);return n?n.indexOf(r)>=0:!1}}add(e,r){return this.map.has(e)?this.map.get(e).push(r):this.map.set(e,[r]),this}addAll(e,r){return this.map.has(e)?this.map.get(e).push(...r):this.map.set(e,Array.from(r)),this}forEach(e){this.map.forEach((r,n)=>r.forEach(i=>e(i,n,this)))}[Symbol.iterator](){return this.entries().iterator()}entries(){return en(this.map.entries()).flatMap(([e,r])=>r.map(n=>[e,n]))}keys(){return en(this.map.keys())}values(){return en(this.map.values()).flat()}entriesGroupedByKey(){return en(this.map.entries())}},vp=class{static{o(this,"BiMap")}get size(){return this.map.size}constructor(e){if(this.map=new Map,this.inverse=new Map,e)for(let[r,n]of e)this.set(r,n)}clear(){this.map.clear(),this.inverse.clear()}set(e,r){return this.map.set(e,r),this.inverse.set(r,e),this}get(e){return this.map.get(e)}getKey(e){return this.inverse.get(e)}delete(e){let r=this.map.get(e);return r!==void 0?(this.map.delete(e),this.inverse.delete(r),!0):!1}}});var Bx,zM=N(()=>{"use strict";qo();is();f1();Yo();Bx=class{static{o(this,"DefaultScopeComputation")}constructor(e){this.nameProvider=e.references.NameProvider,this.descriptions=e.workspace.AstNodeDescriptionProvider}async computeExports(e,r=yr.CancellationToken.None){return this.computeExportsForNode(e.parseResult.value,e,void 0,r)}async computeExportsForNode(e,r,n=W2,i=yr.CancellationToken.None){let a=[];this.exportNode(e,a,r);for(let s of n(e))await xi(i),this.exportNode(s,a,r);return a}exportNode(e,r,n){let i=this.nameProvider.getName(e);i&&r.push(this.descriptions.createDescription(e,i,n))}async computeLocalScopes(e,r=yr.CancellationToken.None){let n=e.parseResult.value,i=new Bl;for(let a of Nc(n))await xi(r),this.processNode(a,e,i);return i}processNode(e,r,n){let i=e.$container;if(i){let a=this.nameProvider.getName(e);a&&n.add(i,this.descriptions.createDescription(e,a,r))}}}});var d1,Fx,xFe,GM=N(()=>{"use strict";Ps();d1=class{static{o(this,"StreamScope")}constructor(e,r,n){var i;this.elements=e,this.outerScope=r,this.caseInsensitive=(i=n?.caseInsensitive)!==null&&i!==void 0?i:!1}getAllElements(){return this.outerScope?this.elements.concat(this.outerScope.getAllElements()):this.elements}getElement(e){let r=this.caseInsensitive?this.elements.find(n=>n.name.toLowerCase()===e.toLowerCase()):this.elements.find(n=>n.name===e);if(r)return r;if(this.outerScope)return this.outerScope.getElement(e)}},Fx=class{static{o(this,"MapScope")}constructor(e,r,n){var i;this.elements=new Map,this.caseInsensitive=(i=n?.caseInsensitive)!==null&&i!==void 0?i:!1;for(let a of e){let s=this.caseInsensitive?a.name.toLowerCase():a.name;this.elements.set(s,a)}this.outerScope=r}getElement(e){let r=this.caseInsensitive?e.toLowerCase():e,n=this.elements.get(r);if(n)return n;if(this.outerScope)return this.outerScope.getElement(e)}getAllElements(){let e=en(this.elements.values());return this.outerScope&&(e=e.concat(this.outerScope.getAllElements())),e}},xFe={getElement(){},getAllElements(){return I2}}});var p1,$x,xp,_E,m1,DE=N(()=>{"use strict";p1=class{static{o(this,"DisposableCache")}constructor(){this.toDispose=[],this.isDisposed=!1}onDispose(e){this.toDispose.push(e)}dispose(){this.throwIfDisposed(),this.clear(),this.isDisposed=!0,this.toDispose.forEach(e=>e.dispose())}throwIfDisposed(){if(this.isDisposed)throw new Error("This cache has already been disposed")}},$x=class extends p1{static{o(this,"SimpleCache")}constructor(){super(...arguments),this.cache=new Map}has(e){return this.throwIfDisposed(),this.cache.has(e)}set(e,r){this.throwIfDisposed(),this.cache.set(e,r)}get(e,r){if(this.throwIfDisposed(),this.cache.has(e))return this.cache.get(e);if(r){let n=r();return this.cache.set(e,n),n}else return}delete(e){return this.throwIfDisposed(),this.cache.delete(e)}clear(){this.throwIfDisposed(),this.cache.clear()}},xp=class extends p1{static{o(this,"ContextCache")}constructor(e){super(),this.cache=new Map,this.converter=e??(r=>r)}has(e,r){return this.throwIfDisposed(),this.cacheForContext(e).has(r)}set(e,r,n){this.throwIfDisposed(),this.cacheForContext(e).set(r,n)}get(e,r,n){this.throwIfDisposed();let i=this.cacheForContext(e);if(i.has(r))return i.get(r);if(n){let a=n();return i.set(r,a),a}else return}delete(e,r){return this.throwIfDisposed(),this.cacheForContext(e).delete(r)}clear(e){if(this.throwIfDisposed(),e){let r=this.converter(e);this.cache.delete(r)}else this.cache.clear()}cacheForContext(e){let r=this.converter(e),n=this.cache.get(r);return n||(n=new Map,this.cache.set(r,n)),n}},_E=class extends xp{static{o(this,"DocumentCache")}constructor(e,r){super(n=>n.toString()),r?(this.toDispose.push(e.workspace.DocumentBuilder.onDocumentPhase(r,n=>{this.clear(n.uri.toString())})),this.toDispose.push(e.workspace.DocumentBuilder.onUpdate((n,i)=>{for(let a of i)this.clear(a)}))):this.toDispose.push(e.workspace.DocumentBuilder.onUpdate((n,i)=>{let a=n.concat(i);for(let s of a)this.clear(s)}))}},m1=class extends $x{static{o(this,"WorkspaceCache")}constructor(e,r){super(),r?(this.toDispose.push(e.workspace.DocumentBuilder.onBuildPhase(r,()=>{this.clear()})),this.toDispose.push(e.workspace.DocumentBuilder.onUpdate((n,i)=>{i.length>0&&this.clear()}))):this.toDispose.push(e.workspace.DocumentBuilder.onUpdate(()=>{this.clear()}))}}});var zx,VM=N(()=>{"use strict";GM();is();Ps();DE();zx=class{static{o(this,"DefaultScopeProvider")}constructor(e){this.reflection=e.shared.AstReflection,this.nameProvider=e.references.NameProvider,this.descriptions=e.workspace.AstNodeDescriptionProvider,this.indexManager=e.shared.workspace.IndexManager,this.globalScopeCache=new m1(e.shared)}getScope(e){let r=[],n=this.reflection.getReferenceType(e),i=Pa(e.container).precomputedScopes;if(i){let s=e.container;do{let l=i.get(s);l.length>0&&r.push(en(l).filter(u=>this.reflection.isSubtype(u.type,n))),s=s.$container}while(s)}let a=this.getGlobalScope(n,e);for(let s=r.length-1;s>=0;s--)a=this.createScope(r[s],a);return a}createScope(e,r,n){return new d1(en(e),r,n)}createScopeForNodes(e,r,n){let i=en(e).map(a=>{let s=this.nameProvider.getName(a);if(s)return this.descriptions.createDescription(a,s)}).nonNullable();return new d1(i,r,n)}getGlobalScope(e,r){return this.globalScopeCache.get(e,()=>new Fx(this.indexManager.allElements(e)))}}});function UM(t){return typeof t.$comment=="string"}function qle(t){return typeof t=="object"&&!!t&&("$ref"in t||"$error"in t)}var Gx,LE=N(()=>{"use strict";OM();Rl();is();Ol();o(UM,"isAstNodeWithComment");o(qle,"isIntermediateReference");Gx=class{static{o(this,"DefaultJsonSerializer")}constructor(e){this.ignoreProperties=new Set(["$container","$containerProperty","$containerIndex","$document","$cstNode"]),this.langiumDocuments=e.shared.workspace.LangiumDocuments,this.astNodeLocator=e.workspace.AstNodeLocator,this.nameProvider=e.references.NameProvider,this.commentProvider=e.documentation.CommentProvider}serialize(e,r){let n=r??{},i=r?.replacer,a=o((l,u)=>this.replacer(l,u,n),"defaultReplacer"),s=i?(l,u)=>i(l,u,a):a;try{return this.currentDocument=Pa(e),JSON.stringify(e,s,r?.space)}finally{this.currentDocument=void 0}}deserialize(e,r){let n=r??{},i=JSON.parse(e);return this.linkNode(i,i,n),i}replacer(e,r,{refText:n,sourceText:i,textRegions:a,comments:s,uriConverter:l}){var u,h,f,d;if(!this.ignoreProperties.has(e))if(va(r)){let p=r.ref,m=n?r.$refText:void 0;if(p){let g=Pa(p),y="";this.currentDocument&&this.currentDocument!==g&&(l?y=l(g.uri,r):y=g.uri.toString());let v=this.astNodeLocator.getAstNodePath(p);return{$ref:`${y}#${v}`,$refText:m}}else return{$error:(h=(u=r.error)===null||u===void 0?void 0:u.message)!==null&&h!==void 0?h:"Could not resolve reference",$refText:m}}else if(ii(r)){let p;if(a&&(p=this.addAstNodeRegionWithAssignmentsTo(Object.assign({},r)),(!e||r.$document)&&p?.$textRegion&&(p.$textRegion.documentURI=(f=this.currentDocument)===null||f===void 0?void 0:f.uri.toString())),i&&!e&&(p??(p=Object.assign({},r)),p.$sourceText=(d=r.$cstNode)===null||d===void 0?void 0:d.text),s){p??(p=Object.assign({},r));let m=this.commentProvider.getComment(r);m&&(p.$comment=m.replace(/\r/g,""))}return p??r}else return r}addAstNodeRegionWithAssignmentsTo(e){let r=o(n=>({offset:n.offset,end:n.end,length:n.length,range:n.range}),"createDocumentSegment");if(e.$cstNode){let n=e.$textRegion=r(e.$cstNode),i=n.assignments={};return Object.keys(e).filter(a=>!a.startsWith("$")).forEach(a=>{let s=oN(e.$cstNode,a).map(r);s.length!==0&&(i[a]=s)}),e}}linkNode(e,r,n,i,a,s){for(let[u,h]of Object.entries(e))if(Array.isArray(h))for(let f=0;f{"use strict";Fc();Vx=class{static{o(this,"DefaultServiceRegistry")}get map(){return this.fileExtensionMap}constructor(e){this.languageIdMap=new Map,this.fileExtensionMap=new Map,this.textDocuments=e?.workspace.TextDocuments}register(e){let r=e.LanguageMetaData;for(let n of r.fileExtensions)this.fileExtensionMap.has(n)&&console.warn(`The file extension ${n} is used by multiple languages. It is now assigned to '${r.languageId}'.`),this.fileExtensionMap.set(n,e);this.languageIdMap.set(r.languageId,e),this.languageIdMap.size===1?this.singleton=e:this.singleton=void 0}getServices(e){var r,n;if(this.singleton!==void 0)return this.singleton;if(this.languageIdMap.size===0)throw new Error("The service registry is empty. Use `register` to register the services of a language.");let i=(n=(r=this.textDocuments)===null||r===void 0?void 0:r.get(e))===null||n===void 0?void 0:n.languageId;if(i!==void 0){let l=this.languageIdMap.get(i);if(l)return l}let a=hs.extname(e),s=this.fileExtensionMap.get(a);if(!s)throw i?new Error(`The service registry contains no services for the extension '${a}' for language '${i}'.`):new Error(`The service registry contains no services for the extension '${a}'.`);return s}hasServices(e){try{return this.getServices(e),!0}catch{return!1}}get all(){return Array.from(this.languageIdMap.values())}}});function bp(t){return{code:t}}var g1,Ux,Hx=N(()=>{"use strict";Xo();f1();Yo();Ps();o(bp,"diagnosticData");(function(t){t.all=["fast","slow","built-in"]})(g1||(g1={}));Ux=class{static{o(this,"ValidationRegistry")}constructor(e){this.entries=new Bl,this.entriesBefore=[],this.entriesAfter=[],this.reflection=e.shared.AstReflection}register(e,r=this,n="fast"){if(n==="built-in")throw new Error("The 'built-in' category is reserved for lexer, parser, and linker errors.");for(let[i,a]of Object.entries(e)){let s=a;if(Array.isArray(s))for(let l of s){let u={check:this.wrapValidationException(l,r),category:n};this.addEntry(i,u)}else if(typeof s=="function"){let l={check:this.wrapValidationException(s,r),category:n};this.addEntry(i,l)}else Lc(s)}}wrapValidationException(e,r){return async(n,i,a)=>{await this.handleException(()=>e.call(r,n,i,a),"An error occurred during validation",i,n)}}async handleException(e,r,n,i){try{await e()}catch(a){if(Bc(a))throw a;console.error(`${r}:`,a),a instanceof Error&&a.stack&&console.error(a.stack);let s=a instanceof Error?a.message:String(a);n("error",`${r}: ${s}`,{node:i})}}addEntry(e,r){if(e==="AstNode"){this.entries.add("AstNode",r);return}for(let n of this.reflection.getAllSubTypes(e))this.entries.add(n,r)}getChecks(e,r){let n=en(this.entries.get(e)).concat(this.entries.get("AstNode"));return r&&(n=n.filter(i=>r.includes(i.category))),n.map(i=>i.check)}registerBeforeDocument(e,r=this){this.entriesBefore.push(this.wrapPreparationException(e,"An error occurred during set-up of the validation",r))}registerAfterDocument(e,r=this){this.entriesAfter.push(this.wrapPreparationException(e,"An error occurred during tear-down of the validation",r))}wrapPreparationException(e,r,n){return async(i,a,s,l)=>{await this.handleException(()=>e.call(n,i,a,s,l),r,a,i)}}get checksBefore(){return this.entriesBefore}get checksAfter(){return this.entriesAfter}}});function Yle(t){if(t.range)return t.range;let e;return typeof t.property=="string"?e=Q2(t.node.$cstNode,t.property,t.index):typeof t.keyword=="string"&&(e=cN(t.node.$cstNode,t.keyword,t.index)),e??(e=t.node.$cstNode),e?e.range:{start:{line:0,character:0},end:{line:0,character:0}}}function RE(t){switch(t){case"error":return 1;case"warning":return 2;case"info":return 3;case"hint":return 4;default:throw new Error("Invalid diagnostic severity: "+t)}}function Xle(t){switch(t){case"error":return bp(jo.LexingError);case"warning":return bp(jo.LexingWarning);case"info":return bp(jo.LexingInfo);case"hint":return bp(jo.LexingHint);default:throw new Error("Invalid diagnostic severity: "+t)}}var Wx,jo,WM=N(()=>{"use strict";qo();Ol();is();Nl();Yo();Hx();Wx=class{static{o(this,"DefaultDocumentValidator")}constructor(e){this.validationRegistry=e.validation.ValidationRegistry,this.metadata=e.LanguageMetaData}async validateDocument(e,r={},n=yr.CancellationToken.None){let i=e.parseResult,a=[];if(await xi(n),(!r.categories||r.categories.includes("built-in"))&&(this.processLexingErrors(i,a,r),r.stopAfterLexingErrors&&a.some(s=>{var l;return((l=s.data)===null||l===void 0?void 0:l.code)===jo.LexingError})||(this.processParsingErrors(i,a,r),r.stopAfterParsingErrors&&a.some(s=>{var l;return((l=s.data)===null||l===void 0?void 0:l.code)===jo.ParsingError}))||(this.processLinkingErrors(e,a,r),r.stopAfterLinkingErrors&&a.some(s=>{var l;return((l=s.data)===null||l===void 0?void 0:l.code)===jo.LinkingError}))))return a;try{a.push(...await this.validateAst(i.value,r,n))}catch(s){if(Bc(s))throw s;console.error("An error occurred during validation:",s)}return await xi(n),a}processLexingErrors(e,r,n){var i,a,s;let l=[...e.lexerErrors,...(a=(i=e.lexerReport)===null||i===void 0?void 0:i.diagnostics)!==null&&a!==void 0?a:[]];for(let u of l){let h=(s=u.severity)!==null&&s!==void 0?s:"error",f={severity:RE(h),range:{start:{line:u.line-1,character:u.column-1},end:{line:u.line-1,character:u.column+u.length-1}},message:u.message,data:Xle(h),source:this.getSource()};r.push(f)}}processParsingErrors(e,r,n){for(let i of e.parserErrors){let a;if(isNaN(i.token.startOffset)){if("previousToken"in i){let s=i.previousToken;if(isNaN(s.startOffset)){let l={line:0,character:0};a={start:l,end:l}}else{let l={line:s.endLine-1,character:s.endColumn};a={start:l,end:l}}}}else a=Gm(i.token);if(a){let s={severity:RE("error"),range:a,message:i.message,data:bp(jo.ParsingError),source:this.getSource()};r.push(s)}}}processLinkingErrors(e,r,n){for(let i of e.references){let a=i.error;if(a){let s={node:a.container,property:a.property,index:a.index,data:{code:jo.LinkingError,containerType:a.container.$type,property:a.property,refText:a.reference.$refText}};r.push(this.toDiagnostic("error",a.message,s))}}}async validateAst(e,r,n=yr.CancellationToken.None){let i=[],a=o((s,l,u)=>{i.push(this.toDiagnostic(s,l,u))},"acceptor");return await this.validateAstBefore(e,r,a,n),await this.validateAstNodes(e,r,a,n),await this.validateAstAfter(e,r,a,n),i}async validateAstBefore(e,r,n,i=yr.CancellationToken.None){var a;let s=this.validationRegistry.checksBefore;for(let l of s)await xi(i),await l(e,n,(a=r.categories)!==null&&a!==void 0?a:[],i)}async validateAstNodes(e,r,n,i=yr.CancellationToken.None){await Promise.all(Wo(e).map(async a=>{await xi(i);let s=this.validationRegistry.getChecks(a.$type,r.categories);for(let l of s)await l(a,n,i)}))}async validateAstAfter(e,r,n,i=yr.CancellationToken.None){var a;let s=this.validationRegistry.checksAfter;for(let l of s)await xi(i),await l(e,n,(a=r.categories)!==null&&a!==void 0?a:[],i)}toDiagnostic(e,r,n){return{message:r,range:Yle(n),severity:RE(e),code:n.code,codeDescription:n.codeDescription,tags:n.tags,relatedInformation:n.relatedInformation,data:n.data,source:this.getSource()}}getSource(){return this.metadata.languageId}};o(Yle,"getDiagnosticRange");o(RE,"toDiagnosticSeverity");o(Xle,"toDiagnosticData");(function(t){t.LexingError="lexing-error",t.LexingWarning="lexing-warning",t.LexingInfo="lexing-info",t.LexingHint="lexing-hint",t.ParsingError="parsing-error",t.LinkingError="linking-error"})(jo||(jo={}))});var qx,Yx,qM=N(()=>{"use strict";qo();Rl();is();Nl();Yo();Fc();qx=class{static{o(this,"DefaultAstNodeDescriptionProvider")}constructor(e){this.astNodeLocator=e.workspace.AstNodeLocator,this.nameProvider=e.references.NameProvider}createDescription(e,r,n){let i=n??Pa(e);r??(r=this.nameProvider.getName(e));let a=this.astNodeLocator.getAstNodePath(e);if(!r)throw new Error(`Node at path ${a} has no name.`);let s,l=o(()=>{var u;return s??(s=Qd((u=this.nameProvider.getNameNode(e))!==null&&u!==void 0?u:e.$cstNode))},"nameSegmentGetter");return{node:e,name:r,get nameSegment(){return l()},selectionSegment:Qd(e.$cstNode),type:e.$type,documentUri:i.uri,path:a}}},Yx=class{static{o(this,"DefaultReferenceDescriptionProvider")}constructor(e){this.nodeLocator=e.workspace.AstNodeLocator}async createDescriptions(e,r=yr.CancellationToken.None){let n=[],i=e.parseResult.value;for(let a of Wo(i))await xi(r),Ag(a).filter(s=>!jd(s)).forEach(s=>{let l=this.createDescription(s);l&&n.push(l)});return n}createDescription(e){let r=e.reference.$nodeDescription,n=e.reference.$refNode;if(!r||!n)return;let i=Pa(e.container).uri;return{sourceUri:i,sourcePath:this.nodeLocator.getAstNodePath(e.container),targetUri:r.documentUri,targetPath:r.path,segment:Qd(n),local:hs.equals(r.documentUri,i)}}}});var Xx,YM=N(()=>{"use strict";Xx=class{static{o(this,"DefaultAstNodeLocator")}constructor(){this.segmentSeparator="/",this.indexSeparator="@"}getAstNodePath(e){if(e.$container){let r=this.getAstNodePath(e.$container),n=this.getPathSegment(e);return r+this.segmentSeparator+n}return""}getPathSegment({$containerProperty:e,$containerIndex:r}){if(!e)throw new Error("Missing '$containerProperty' in AST node.");return r!==void 0?e+this.indexSeparator+r:e}getAstNode(e,r){return r.split(this.segmentSeparator).reduce((i,a)=>{if(!i||a.length===0)return i;let s=a.indexOf(this.indexSeparator);if(s>0){let l=a.substring(0,s),u=parseInt(a.substring(s+1)),h=i[l];return h?.[u]}return i[a]},e)}}});var Kn={};var NE=N(()=>{"use strict";Sr(Kn,Sa(LM(),1))});var jx,XM=N(()=>{"use strict";NE();Yo();jx=class{static{o(this,"DefaultConfigurationProvider")}constructor(e){this._ready=new cs,this.settings={},this.workspaceConfig=!1,this.onConfigurationSectionUpdateEmitter=new Kn.Emitter,this.serviceRegistry=e.ServiceRegistry}get ready(){return this._ready.promise}initialize(e){var r,n;this.workspaceConfig=(n=(r=e.capabilities.workspace)===null||r===void 0?void 0:r.configuration)!==null&&n!==void 0?n:!1}async initialized(e){if(this.workspaceConfig){if(e.register){let r=this.serviceRegistry.all;e.register({section:r.map(n=>this.toSectionName(n.LanguageMetaData.languageId))})}if(e.fetchConfiguration){let r=this.serviceRegistry.all.map(i=>({section:this.toSectionName(i.LanguageMetaData.languageId)})),n=await e.fetchConfiguration(r);r.forEach((i,a)=>{this.updateSectionConfiguration(i.section,n[a])})}}this._ready.resolve()}updateConfiguration(e){e.settings&&Object.keys(e.settings).forEach(r=>{let n=e.settings[r];this.updateSectionConfiguration(r,n),this.onConfigurationSectionUpdateEmitter.fire({section:r,configuration:n})})}updateSectionConfiguration(e,r){this.settings[e]=r}async getConfiguration(e,r){await this.ready;let n=this.toSectionName(e);if(this.settings[n])return this.settings[n][r]}toSectionName(e){return`${e}`}get onConfigurationSectionUpdate(){return this.onConfigurationSectionUpdateEmitter.event}}});var ff,jM=N(()=>{"use strict";(function(t){function e(r){return{dispose:o(async()=>await r(),"dispose")}}o(e,"create"),t.create=e})(ff||(ff={}))});var Kx,KM=N(()=>{"use strict";qo();jM();f1();Yo();Ps();Hx();h1();Kx=class{static{o(this,"DefaultDocumentBuilder")}constructor(e){this.updateBuildOptions={validation:{categories:["built-in","fast"]}},this.updateListeners=[],this.buildPhaseListeners=new Bl,this.documentPhaseListeners=new Bl,this.buildState=new Map,this.documentBuildWaiters=new Map,this.currentState=kn.Changed,this.langiumDocuments=e.workspace.LangiumDocuments,this.langiumDocumentFactory=e.workspace.LangiumDocumentFactory,this.textDocuments=e.workspace.TextDocuments,this.indexManager=e.workspace.IndexManager,this.serviceRegistry=e.ServiceRegistry}async build(e,r={},n=yr.CancellationToken.None){var i,a;for(let s of e){let l=s.uri.toString();if(s.state===kn.Validated){if(typeof r.validation=="boolean"&&r.validation)s.state=kn.IndexedReferences,s.diagnostics=void 0,this.buildState.delete(l);else if(typeof r.validation=="object"){let u=this.buildState.get(l),h=(i=u?.result)===null||i===void 0?void 0:i.validationChecks;if(h){let d=((a=r.validation.categories)!==null&&a!==void 0?a:g1.all).filter(p=>!h.includes(p));d.length>0&&(this.buildState.set(l,{completed:!1,options:{validation:Object.assign(Object.assign({},r.validation),{categories:d})},result:u.result}),s.state=kn.IndexedReferences)}}}else this.buildState.delete(l)}this.currentState=kn.Changed,await this.emitUpdate(e.map(s=>s.uri),[]),await this.buildDocuments(e,r,n)}async update(e,r,n=yr.CancellationToken.None){this.currentState=kn.Changed;for(let s of r)this.langiumDocuments.deleteDocument(s),this.buildState.delete(s.toString()),this.indexManager.remove(s);for(let s of e){if(!this.langiumDocuments.invalidateDocument(s)){let u=this.langiumDocumentFactory.fromModel({$type:"INVALID"},s);u.state=kn.Changed,this.langiumDocuments.addDocument(u)}this.buildState.delete(s.toString())}let i=en(e).concat(r).map(s=>s.toString()).toSet();this.langiumDocuments.all.filter(s=>!i.has(s.uri.toString())&&this.shouldRelink(s,i)).forEach(s=>{this.serviceRegistry.getServices(s.uri).references.Linker.unlink(s),s.state=Math.min(s.state,kn.ComputedScopes),s.diagnostics=void 0}),await this.emitUpdate(e,r),await xi(n);let a=this.sortDocuments(this.langiumDocuments.all.filter(s=>{var l;return s.staten(e,r)))}sortDocuments(e){let r=0,n=e.length-1;for(;r=0&&!this.hasTextDocument(e[n]);)n--;rn.error!==void 0)?!0:this.indexManager.isAffected(e,r)}onUpdate(e){return this.updateListeners.push(e),ff.create(()=>{let r=this.updateListeners.indexOf(e);r>=0&&this.updateListeners.splice(r,1)})}async buildDocuments(e,r,n){this.prepareBuild(e,r),await this.runCancelable(e,kn.Parsed,n,a=>this.langiumDocumentFactory.update(a,n)),await this.runCancelable(e,kn.IndexedContent,n,a=>this.indexManager.updateContent(a,n)),await this.runCancelable(e,kn.ComputedScopes,n,async a=>{let s=this.serviceRegistry.getServices(a.uri).references.ScopeComputation;a.precomputedScopes=await s.computeLocalScopes(a,n)}),await this.runCancelable(e,kn.Linked,n,a=>this.serviceRegistry.getServices(a.uri).references.Linker.link(a,n)),await this.runCancelable(e,kn.IndexedReferences,n,a=>this.indexManager.updateReferences(a,n));let i=e.filter(a=>this.shouldValidate(a));await this.runCancelable(i,kn.Validated,n,a=>this.validate(a,n));for(let a of e){let s=this.buildState.get(a.uri.toString());s&&(s.completed=!0)}}prepareBuild(e,r){for(let n of e){let i=n.uri.toString(),a=this.buildState.get(i);(!a||a.completed)&&this.buildState.set(i,{completed:!1,options:r,result:a?.result})}}async runCancelable(e,r,n,i){let a=e.filter(l=>l.statel.state===r);await this.notifyBuildPhase(s,r,n),this.currentState=r}onBuildPhase(e,r){return this.buildPhaseListeners.add(e,r),ff.create(()=>{this.buildPhaseListeners.delete(e,r)})}onDocumentPhase(e,r){return this.documentPhaseListeners.add(e,r),ff.create(()=>{this.documentPhaseListeners.delete(e,r)})}waitUntil(e,r,n){let i;if(r&&"path"in r?i=r:n=r,n??(n=yr.CancellationToken.None),i){let a=this.langiumDocuments.getDocument(i);if(a&&a.state>e)return Promise.resolve(i)}return this.currentState>=e?Promise.resolve(void 0):n.isCancellationRequested?Promise.reject(Pc):new Promise((a,s)=>{let l=this.onBuildPhase(e,()=>{if(l.dispose(),u.dispose(),i){let h=this.langiumDocuments.getDocument(i);a(h?.uri)}else a(void 0)}),u=n.onCancellationRequested(()=>{l.dispose(),u.dispose(),s(Pc)})})}async notifyDocumentPhase(e,r,n){let a=this.documentPhaseListeners.get(r).slice();for(let s of a)try{await s(e,n)}catch(l){if(!Bc(l))throw l}}async notifyBuildPhase(e,r,n){if(e.length===0)return;let a=this.buildPhaseListeners.get(r).slice();for(let s of a)await xi(n),await s(e,n)}shouldValidate(e){return!!this.getBuildOptions(e).validation}async validate(e,r){var n,i;let a=this.serviceRegistry.getServices(e.uri).validation.DocumentValidator,s=this.getBuildOptions(e).validation,l=typeof s=="object"?s:void 0,u=await a.validateDocument(e,l,r);e.diagnostics?e.diagnostics.push(...u):e.diagnostics=u;let h=this.buildState.get(e.uri.toString());if(h){(n=h.result)!==null&&n!==void 0||(h.result={});let f=(i=l?.categories)!==null&&i!==void 0?i:g1.all;h.result.validationChecks?h.result.validationChecks.push(...f):h.result.validationChecks=[...f]}}getBuildOptions(e){var r,n;return(n=(r=this.buildState.get(e.uri.toString()))===null||r===void 0?void 0:r.options)!==null&&n!==void 0?n:{}}}});var Qx,QM=N(()=>{"use strict";is();DE();qo();Ps();Fc();Qx=class{static{o(this,"DefaultIndexManager")}constructor(e){this.symbolIndex=new Map,this.symbolByTypeIndex=new xp,this.referenceIndex=new Map,this.documents=e.workspace.LangiumDocuments,this.serviceRegistry=e.ServiceRegistry,this.astReflection=e.AstReflection}findAllReferences(e,r){let n=Pa(e).uri,i=[];return this.referenceIndex.forEach(a=>{a.forEach(s=>{hs.equals(s.targetUri,n)&&s.targetPath===r&&i.push(s)})}),en(i)}allElements(e,r){let n=en(this.symbolIndex.keys());return r&&(n=n.filter(i=>!r||r.has(i))),n.map(i=>this.getFileDescriptions(i,e)).flat()}getFileDescriptions(e,r){var n;return r?this.symbolByTypeIndex.get(e,r,()=>{var a;return((a=this.symbolIndex.get(e))!==null&&a!==void 0?a:[]).filter(l=>this.astReflection.isSubtype(l.type,r))}):(n=this.symbolIndex.get(e))!==null&&n!==void 0?n:[]}remove(e){let r=e.toString();this.symbolIndex.delete(r),this.symbolByTypeIndex.clear(r),this.referenceIndex.delete(r)}async updateContent(e,r=yr.CancellationToken.None){let i=await this.serviceRegistry.getServices(e.uri).references.ScopeComputation.computeExports(e,r),a=e.uri.toString();this.symbolIndex.set(a,i),this.symbolByTypeIndex.clear(a)}async updateReferences(e,r=yr.CancellationToken.None){let i=await this.serviceRegistry.getServices(e.uri).workspace.ReferenceDescriptionProvider.createDescriptions(e,r);this.referenceIndex.set(e.uri.toString(),i)}isAffected(e,r){let n=this.referenceIndex.get(e.uri.toString());return n?n.some(i=>!i.local&&r.has(i.targetUri.toString())):!1}}});var Zx,ZM=N(()=>{"use strict";qo();Yo();Fc();Zx=class{static{o(this,"DefaultWorkspaceManager")}constructor(e){this.initialBuildOptions={},this._ready=new cs,this.serviceRegistry=e.ServiceRegistry,this.langiumDocuments=e.workspace.LangiumDocuments,this.documentBuilder=e.workspace.DocumentBuilder,this.fileSystemProvider=e.workspace.FileSystemProvider,this.mutex=e.workspace.WorkspaceLock}get ready(){return this._ready.promise}get workspaceFolders(){return this.folders}initialize(e){var r;this.folders=(r=e.workspaceFolders)!==null&&r!==void 0?r:void 0}initialized(e){return this.mutex.write(r=>{var n;return this.initializeWorkspace((n=this.folders)!==null&&n!==void 0?n:[],r)})}async initializeWorkspace(e,r=yr.CancellationToken.None){let n=await this.performStartup(e);await xi(r),await this.documentBuilder.build(n,this.initialBuildOptions,r)}async performStartup(e){let r=this.serviceRegistry.all.flatMap(a=>a.LanguageMetaData.fileExtensions),n=[],i=o(a=>{n.push(a),this.langiumDocuments.hasDocument(a.uri)||this.langiumDocuments.addDocument(a)},"collector");return await this.loadAdditionalDocuments(e,i),await Promise.all(e.map(a=>[a,this.getRootFolder(a)]).map(async a=>this.traverseFolder(...a,r,i))),this._ready.resolve(),n}loadAdditionalDocuments(e,r){return Promise.resolve()}getRootFolder(e){return us.parse(e.uri)}async traverseFolder(e,r,n,i){let a=await this.fileSystemProvider.readDirectory(r);await Promise.all(a.map(async s=>{if(this.includeEntry(e,s,n)){if(s.isDirectory)await this.traverseFolder(e,s.uri,n,i);else if(s.isFile){let l=await this.langiumDocuments.getOrCreateDocument(s.uri);i(l)}}}))}includeEntry(e,r,n){let i=hs.basename(r.uri);if(i.startsWith("."))return!1;if(r.isDirectory)return i!=="node_modules"&&i!=="out";if(r.isFile){let a=hs.extname(r.uri);return n.includes(a)}return!1}}});function IE(t){return Array.isArray(t)&&(t.length===0||"name"in t[0])}function eI(t){return t&&"modes"in t&&"defaultMode"in t}function JM(t){return!IE(t)&&!eI(t)}var Jx,ME,wp,OE=N(()=>{"use strict";cf();Jx=class{static{o(this,"DefaultLexerErrorMessageProvider")}buildUnexpectedCharactersMessage(e,r,n,i,a){return Gg.buildUnexpectedCharactersMessage(e,r,n,i,a)}buildUnableToPopLexerModeMessage(e){return Gg.buildUnableToPopLexerModeMessage(e)}},ME={mode:"full"},wp=class{static{o(this,"DefaultLexer")}constructor(e){this.errorMessageProvider=e.parser.LexerErrorMessageProvider,this.tokenBuilder=e.parser.TokenBuilder;let r=this.tokenBuilder.buildTokens(e.Grammar,{caseInsensitive:e.LanguageMetaData.caseInsensitive});this.tokenTypes=this.toTokenTypeDictionary(r);let n=JM(r)?Object.values(r):r,i=e.LanguageMetaData.mode==="production";this.chevrotainLexer=new Xn(n,{positionTracking:"full",skipValidations:i,errorMessageProvider:this.errorMessageProvider})}get definition(){return this.tokenTypes}tokenize(e,r=ME){var n,i,a;let s=this.chevrotainLexer.tokenize(e);return{tokens:s.tokens,errors:s.errors,hidden:(n=s.groups.hidden)!==null&&n!==void 0?n:[],report:(a=(i=this.tokenBuilder).flushLexingReport)===null||a===void 0?void 0:a.call(i,e)}}toTokenTypeDictionary(e){if(JM(e))return e;let r=eI(e)?Object.values(e.modes).flat():e,n={};return r.forEach(i=>n[i.name]=i),n}};o(IE,"isTokenTypeArray");o(eI,"isIMultiModeLexerDefinition");o(JM,"isTokenTypeDictionary")});function nI(t,e,r){let n,i;typeof t=="string"?(i=e,n=r):(i=t.range.start,n=e),i||(i=jr.create(0,0));let a=Qle(t),s=aI(n),l=wFe({lines:a,position:i,options:s});return CFe({index:0,tokens:l,position:i})}function iI(t,e){let r=aI(e),n=Qle(t);if(n.length===0)return!1;let i=n[0],a=n[n.length-1],s=r.start,l=r.end;return!!s?.exec(i)&&!!l?.exec(a)}function Qle(t){let e="";return typeof t=="string"?e=t:e=t.text,e.split(JR)}function wFe(t){var e,r,n;let i=[],a=t.position.line,s=t.position.character;for(let l=0;l=f.length){if(i.length>0){let m=jr.create(a,s);i.push({type:"break",content:"",range:Pr.create(m,m)})}}else{jle.lastIndex=d;let m=jle.exec(f);if(m){let g=m[0],y=m[1],v=jr.create(a,s+d),x=jr.create(a,s+d+g.length);i.push({type:"tag",content:y,range:Pr.create(v,x)}),d+=g.length,d=rI(f,d)}if(d0&&i[i.length-1].type==="break"?i.slice(0,-1):i}function TFe(t,e,r,n){let i=[];if(t.length===0){let a=jr.create(r,n),s=jr.create(r,n+e.length);i.push({type:"text",content:e,range:Pr.create(a,s)})}else{let a=0;for(let l of t){let u=l.index,h=e.substring(a,u);h.length>0&&i.push({type:"text",content:e.substring(a,u),range:Pr.create(jr.create(r,a+n),jr.create(r,u+n))});let f=h.length+1,d=l[1];if(i.push({type:"inline-tag",content:d,range:Pr.create(jr.create(r,a+f+n),jr.create(r,a+f+d.length+n))}),f+=d.length,l.length===4){f+=l[2].length;let p=l[3];i.push({type:"text",content:p,range:Pr.create(jr.create(r,a+f+n),jr.create(r,a+f+p.length+n))})}else i.push({type:"text",content:"",range:Pr.create(jr.create(r,a+f+n),jr.create(r,a+f+n))});a=u+l[0].length}let s=e.substring(a);s.length>0&&i.push({type:"text",content:s,range:Pr.create(jr.create(r,a+n),jr.create(r,a+n+s.length))})}return i}function rI(t,e){let r=t.substring(e).match(kFe);return r?e+r.index:t.length}function SFe(t){let e=t.match(EFe);if(e&&typeof e.index=="number")return e.index}function CFe(t){var e,r,n,i;let a=jr.create(t.position.line,t.position.character);if(t.tokens.length===0)return new PE([],Pr.create(a,a));let s=[];for(;t.index0){let u=rI(e,a);s=e.substring(u),e=e.substring(0,a)}return(t==="linkcode"||t==="link"&&r.link==="code")&&(s=`\`${s}\``),(i=(n=r.renderLink)===null||n===void 0?void 0:n.call(r,e,s))!==null&&i!==void 0?i:RFe(e,s)}}function RFe(t,e){try{return us.parse(t,!0),`[${e}](${t})`}catch{return t}}function Kle(t){return t.endsWith(` +`)?` +`:` + +`}var jle,bFe,kFe,EFe,PE,eb,tb,BE,sI=N(()=>{"use strict";mM();Lg();Fc();o(nI,"parseJSDoc");o(iI,"isJSDoc");o(Qle,"getLines");jle=/\s*(@([\p{L}][\p{L}\p{N}]*)?)/uy,bFe=/\{(@[\p{L}][\p{L}\p{N}]*)(\s*)([^\r\n}]+)?\}/gu;o(wFe,"tokenize");o(TFe,"buildInlineTokens");kFe=/\S/,EFe=/\s*$/;o(rI,"skipWhitespace");o(SFe,"lastCharacter");o(CFe,"parseJSDocComment");o(AFe,"parseJSDocElement");o(_Fe,"appendEmptyLine");o(Zle,"parseJSDocText");o(DFe,"parseJSDocInline");o(Jle,"parseJSDocTag");o(ece,"parseJSDocLine");o(aI,"normalizeOptions");o(tI,"normalizeOption");PE=class{static{o(this,"JSDocCommentImpl")}constructor(e,r){this.elements=e,this.range=r}getTag(e){return this.getAllTags().find(r=>r.name===e)}getTags(e){return this.getAllTags().filter(r=>r.name===e)}getAllTags(){return this.elements.filter(e=>"name"in e)}toString(){let e="";for(let r of this.elements)if(e.length===0)e=r.toString();else{let n=r.toString();e+=Kle(e)+n}return e.trim()}toMarkdown(e){let r="";for(let n of this.elements)if(r.length===0)r=n.toMarkdown(e);else{let i=n.toMarkdown(e);r+=Kle(r)+i}return r.trim()}},eb=class{static{o(this,"JSDocTagImpl")}constructor(e,r,n,i){this.name=e,this.content=r,this.inline=n,this.range=i}toString(){let e=`@${this.name}`,r=this.content.toString();return this.content.inlines.length===1?e=`${e} ${r}`:this.content.inlines.length>1&&(e=`${e} +${r}`),this.inline?`{${e}}`:e}toMarkdown(e){var r,n;return(n=(r=e?.renderTag)===null||r===void 0?void 0:r.call(e,this))!==null&&n!==void 0?n:this.toMarkdownDefault(e)}toMarkdownDefault(e){let r=this.content.toMarkdown(e);if(this.inline){let a=LFe(this.name,r,e??{});if(typeof a=="string")return a}let n="";e?.tag==="italic"||e?.tag===void 0?n="*":e?.tag==="bold"?n="**":e?.tag==="bold-italic"&&(n="***");let i=`${n}@${this.name}${n}`;return this.content.inlines.length===1?i=`${i} \u2014 ${r}`:this.content.inlines.length>1&&(i=`${i} +${r}`),this.inline?`{${i}}`:i}};o(LFe,"renderInlineTag");o(RFe,"renderLinkDefault");tb=class{static{o(this,"JSDocTextImpl")}constructor(e,r){this.inlines=e,this.range=r}toString(){let e="";for(let r=0;rn.range.start.line&&(e+=` +`)}return e}toMarkdown(e){let r="";for(let n=0;ni.range.start.line&&(r+=` +`)}return r}},BE=class{static{o(this,"JSDocLineImpl")}constructor(e,r){this.text=e,this.range=r}toString(){return this.text}toMarkdown(){return this.text}};o(Kle,"fillNewlines")});var rb,oI=N(()=>{"use strict";is();sI();rb=class{static{o(this,"JSDocDocumentationProvider")}constructor(e){this.indexManager=e.shared.workspace.IndexManager,this.commentProvider=e.documentation.CommentProvider}getDocumentation(e){let r=this.commentProvider.getComment(e);if(r&&iI(r))return nI(r).toMarkdown({renderLink:o((i,a)=>this.documentationLinkRenderer(e,i,a),"renderLink"),renderTag:o(i=>this.documentationTagRenderer(e,i),"renderTag")})}documentationLinkRenderer(e,r,n){var i;let a=(i=this.findNameInPrecomputedScopes(e,r))!==null&&i!==void 0?i:this.findNameInGlobalScope(e,r);if(a&&a.nameSegment){let s=a.nameSegment.range.start.line+1,l=a.nameSegment.range.start.character+1,u=a.documentUri.with({fragment:`L${s},${l}`});return`[${n}](${u.toString()})`}else return}documentationTagRenderer(e,r){}findNameInPrecomputedScopes(e,r){let i=Pa(e).precomputedScopes;if(!i)return;let a=e;do{let l=i.get(a).find(u=>u.name===r);if(l)return l;a=a.$container}while(a)}findNameInGlobalScope(e,r){return this.indexManager.allElements().find(i=>i.name===r)}}});var nb,lI=N(()=>{"use strict";LE();Nl();nb=class{static{o(this,"DefaultCommentProvider")}constructor(e){this.grammarConfig=()=>e.parser.GrammarConfig}getComment(e){var r;return UM(e)?e.$comment:(r=AR(e.$cstNode,this.grammarConfig().multilineCommentRules))===null||r===void 0?void 0:r.text}}});var ib,cI,uI,hI=N(()=>{"use strict";Yo();NE();ib=class{static{o(this,"DefaultAsyncParser")}constructor(e){this.syncParser=e.parser.LangiumParser}parse(e,r){return Promise.resolve(this.syncParser.parse(e))}},cI=class{static{o(this,"AbstractThreadedAsyncParser")}constructor(e){this.threadCount=8,this.terminationDelay=200,this.workerPool=[],this.queue=[],this.hydrator=e.serializer.Hydrator}initializeWorkers(){for(;this.workerPool.length{if(this.queue.length>0){let r=this.queue.shift();r&&(e.lock(),r.resolve(e))}}),this.workerPool.push(e)}}async parse(e,r){let n=await this.acquireParserWorker(r),i=new cs,a,s=r.onCancellationRequested(()=>{a=setTimeout(()=>{this.terminateWorker(n)},this.terminationDelay)});return n.parse(e).then(l=>{let u=this.hydrator.hydrate(l);i.resolve(u)}).catch(l=>{i.reject(l)}).finally(()=>{s.dispose(),clearTimeout(a)}),i.promise}terminateWorker(e){e.terminate();let r=this.workerPool.indexOf(e);r>=0&&this.workerPool.splice(r,1)}async acquireParserWorker(e){this.initializeWorkers();for(let n of this.workerPool)if(n.ready)return n.lock(),n;let r=new cs;return e.onCancellationRequested(()=>{let n=this.queue.indexOf(r);n>=0&&this.queue.splice(n,1),r.reject(Pc)}),this.queue.push(r),r.promise}},uI=class{static{o(this,"ParserWorker")}get ready(){return this._ready}get onReady(){return this.onReadyEmitter.event}constructor(e,r,n,i){this.onReadyEmitter=new Kn.Emitter,this.deferred=new cs,this._ready=!0,this._parsing=!1,this.sendMessage=e,this._terminate=i,r(a=>{let s=a;this.deferred.resolve(s),this.unlock()}),n(a=>{this.deferred.reject(a),this.unlock()})}terminate(){this.deferred.reject(Pc),this._terminate()}lock(){this._ready=!1}unlock(){this._parsing=!1,this._ready=!0,this.onReadyEmitter.fire()}parse(e){if(this._parsing)throw new Error("Parser worker is busy");return this._parsing=!0,this.deferred=new cs,this.sendMessage(e),this.deferred.promise}}});var ab,fI=N(()=>{"use strict";qo();Yo();ab=class{static{o(this,"DefaultWorkspaceLock")}constructor(){this.previousTokenSource=new yr.CancellationTokenSource,this.writeQueue=[],this.readQueue=[],this.done=!0}write(e){this.cancelWrite();let r=CE();return this.previousTokenSource=r,this.enqueue(this.writeQueue,e,r.token)}read(e){return this.enqueue(this.readQueue,e)}enqueue(e,r,n=yr.CancellationToken.None){let i=new cs,a={action:r,deferred:i,cancellationToken:n};return e.push(a),this.performNextOperation(),i.promise}async performNextOperation(){if(!this.done)return;let e=[];if(this.writeQueue.length>0)e.push(this.writeQueue.shift());else if(this.readQueue.length>0)e.push(...this.readQueue.splice(0,this.readQueue.length));else return;this.done=!1,await Promise.all(e.map(async({action:r,deferred:n,cancellationToken:i})=>{try{let a=await Promise.resolve().then(()=>r(i));n.resolve(a)}catch(a){Bc(a)?n.resolve(void 0):n.reject(a)}})),this.done=!0,this.performNextOperation()}cancelWrite(){this.previousTokenSource.cancel()}}});var sb,dI=N(()=>{"use strict";gE();Rc();Rl();is();f1();Nl();sb=class{static{o(this,"DefaultHydrator")}constructor(e){this.grammarElementIdMap=new vp,this.tokenTypeIdMap=new vp,this.grammar=e.Grammar,this.lexer=e.parser.Lexer,this.linker=e.references.Linker}dehydrate(e){return{lexerErrors:e.lexerErrors,lexerReport:e.lexerReport?this.dehydrateLexerReport(e.lexerReport):void 0,parserErrors:e.parserErrors.map(r=>Object.assign(Object.assign({},r),{message:r.message})),value:this.dehydrateAstNode(e.value,this.createDehyrationContext(e.value))}}dehydrateLexerReport(e){return e}createDehyrationContext(e){let r=new Map,n=new Map;for(let i of Wo(e))r.set(i,{});if(e.$cstNode)for(let i of Kd(e.$cstNode))n.set(i,{});return{astNodes:r,cstNodes:n}}dehydrateAstNode(e,r){let n=r.astNodes.get(e);n.$type=e.$type,n.$containerIndex=e.$containerIndex,n.$containerProperty=e.$containerProperty,e.$cstNode!==void 0&&(n.$cstNode=this.dehydrateCstNode(e.$cstNode,r));for(let[i,a]of Object.entries(e))if(!i.startsWith("$"))if(Array.isArray(a)){let s=[];n[i]=s;for(let l of a)ii(l)?s.push(this.dehydrateAstNode(l,r)):va(l)?s.push(this.dehydrateReference(l,r)):s.push(l)}else ii(a)?n[i]=this.dehydrateAstNode(a,r):va(a)?n[i]=this.dehydrateReference(a,r):a!==void 0&&(n[i]=a);return n}dehydrateReference(e,r){let n={};return n.$refText=e.$refText,e.$refNode&&(n.$refNode=r.cstNodes.get(e.$refNode)),n}dehydrateCstNode(e,r){let n=r.cstNodes.get(e);return M2(e)?n.fullText=e.fullText:n.grammarSource=this.getGrammarElementId(e.grammarSource),n.hidden=e.hidden,n.astNode=r.astNodes.get(e.astNode),Ll(e)?n.content=e.content.map(i=>this.dehydrateCstNode(i,r)):af(e)&&(n.tokenType=e.tokenType.name,n.offset=e.offset,n.length=e.length,n.startLine=e.range.start.line,n.startColumn=e.range.start.character,n.endLine=e.range.end.line,n.endColumn=e.range.end.character),n}hydrate(e){let r=e.value,n=this.createHydrationContext(r);return"$cstNode"in r&&this.hydrateCstNode(r.$cstNode,n),{lexerErrors:e.lexerErrors,lexerReport:e.lexerReport,parserErrors:e.parserErrors,value:this.hydrateAstNode(r,n)}}createHydrationContext(e){let r=new Map,n=new Map;for(let a of Wo(e))r.set(a,{});let i;if(e.$cstNode)for(let a of Kd(e.$cstNode)){let s;"fullText"in a?(s=new a1(a.fullText),i=s):"content"in a?s=new mp:"tokenType"in a&&(s=this.hydrateCstLeafNode(a)),s&&(n.set(a,s),s.root=i)}return{astNodes:r,cstNodes:n}}hydrateAstNode(e,r){let n=r.astNodes.get(e);n.$type=e.$type,n.$containerIndex=e.$containerIndex,n.$containerProperty=e.$containerProperty,e.$cstNode&&(n.$cstNode=r.cstNodes.get(e.$cstNode));for(let[i,a]of Object.entries(e))if(!i.startsWith("$"))if(Array.isArray(a)){let s=[];n[i]=s;for(let l of a)ii(l)?s.push(this.setParent(this.hydrateAstNode(l,r),n)):va(l)?s.push(this.hydrateReference(l,n,i,r)):s.push(l)}else ii(a)?n[i]=this.setParent(this.hydrateAstNode(a,r),n):va(a)?n[i]=this.hydrateReference(a,n,i,r):a!==void 0&&(n[i]=a);return n}setParent(e,r){return e.$container=r,e}hydrateReference(e,r,n,i){return this.linker.buildReference(r,n,i.cstNodes.get(e.$refNode),e.$refText)}hydrateCstNode(e,r,n=0){let i=r.cstNodes.get(e);if(typeof e.grammarSource=="number"&&(i.grammarSource=this.getGrammarElement(e.grammarSource)),i.astNode=r.astNodes.get(e.astNode),Ll(i))for(let a of e.content){let s=this.hydrateCstNode(a,r,n++);i.content.push(s)}return i}hydrateCstLeafNode(e){let r=this.getTokenType(e.tokenType),n=e.offset,i=e.length,a=e.startLine,s=e.startColumn,l=e.endLine,u=e.endColumn,h=e.hidden;return new pp(n,i,{start:{line:a,character:s},end:{line:l,character:u}},r,h)}getTokenType(e){return this.lexer.definition[e]}getGrammarElementId(e){if(e)return this.grammarElementIdMap.size===0&&this.createGrammarElementIdMap(),this.grammarElementIdMap.get(e)}getGrammarElement(e){return this.grammarElementIdMap.size===0&&this.createGrammarElementIdMap(),this.grammarElementIdMap.getKey(e)}createGrammarElementIdMap(){let e=0;for(let r of Wo(this.grammar))G2(r)&&this.grammarElementIdMap.set(r,e++)}}});function fs(t){return{documentation:{CommentProvider:o(e=>new nb(e),"CommentProvider"),DocumentationProvider:o(e=>new rb(e),"DocumentationProvider")},parser:{AsyncParser:o(e=>new ib(e),"AsyncParser"),GrammarConfig:o(e=>pN(e),"GrammarConfig"),LangiumParser:o(e=>TM(e),"LangiumParser"),CompletionParser:o(e=>bM(e),"CompletionParser"),ValueConverter:o(()=>new yp,"ValueConverter"),TokenBuilder:o(()=>new Uu,"TokenBuilder"),Lexer:o(e=>new wp(e),"Lexer"),ParserErrorMessageProvider:o(()=>new s1,"ParserErrorMessageProvider"),LexerErrorMessageProvider:o(()=>new Jx,"LexerErrorMessageProvider")},workspace:{AstNodeLocator:o(()=>new Xx,"AstNodeLocator"),AstNodeDescriptionProvider:o(e=>new qx(e),"AstNodeDescriptionProvider"),ReferenceDescriptionProvider:o(e=>new Yx(e),"ReferenceDescriptionProvider")},references:{Linker:o(e=>new Ix(e),"Linker"),NameProvider:o(()=>new Ox,"NameProvider"),ScopeProvider:o(e=>new zx(e),"ScopeProvider"),ScopeComputation:o(e=>new Bx(e),"ScopeComputation"),References:o(e=>new Px(e),"References")},serializer:{Hydrator:o(e=>new sb(e),"Hydrator"),JsonSerializer:o(e=>new Gx(e),"JsonSerializer")},validation:{DocumentValidator:o(e=>new Wx(e),"DocumentValidator"),ValidationRegistry:o(e=>new Ux(e),"ValidationRegistry")},shared:o(()=>t.shared,"shared")}}function ds(t){return{ServiceRegistry:o(e=>new Vx(e),"ServiceRegistry"),workspace:{LangiumDocuments:o(e=>new Mx(e),"LangiumDocuments"),LangiumDocumentFactory:o(e=>new Nx(e),"LangiumDocumentFactory"),DocumentBuilder:o(e=>new Kx(e),"DocumentBuilder"),IndexManager:o(e=>new Qx(e),"IndexManager"),WorkspaceManager:o(e=>new Zx(e),"WorkspaceManager"),FileSystemProvider:o(e=>t.fileSystemProvider(e),"FileSystemProvider"),WorkspaceLock:o(()=>new ab,"WorkspaceLock"),ConfigurationProvider:o(e=>new jx(e),"ConfigurationProvider")}}}var pI=N(()=>{"use strict";mN();wM();kM();wE();EM();BM();FM();$M();zM();VM();LE();HM();WM();Hx();qM();YM();XM();KM();h1();QM();ZM();OE();oI();lI();Lx();hI();fI();dI();o(fs,"createDefaultCoreModule");o(ds,"createDefaultSharedCoreModule")});function ui(t,e,r,n,i,a,s,l,u){let h=[t,e,r,n,i,a,s,l,u].reduce(FE,{});return ace(h)}function ice(t){if(t&&t[nce])for(let e of Object.values(t))ice(e);return t}function ace(t,e){let r=new Proxy({},{deleteProperty:o(()=>!1,"deleteProperty"),set:o(()=>{throw new Error("Cannot set property on injected service container")},"set"),get:o((n,i)=>i===nce?!0:rce(n,i,t,e||r),"get"),getOwnPropertyDescriptor:o((n,i)=>(rce(n,i,t,e||r),Object.getOwnPropertyDescriptor(n,i)),"getOwnPropertyDescriptor"),has:o((n,i)=>i in t,"has"),ownKeys:o(()=>[...Object.getOwnPropertyNames(t)],"ownKeys")});return r}function rce(t,e,r,n){if(e in t){if(t[e]instanceof Error)throw new Error("Construction failure. Please make sure that your dependencies are constructable.",{cause:t[e]});if(t[e]===tce)throw new Error('Cycle detected. Please make "'+String(e)+'" lazy. Visit https://langium.org/docs/reference/configuration-services/#resolving-cyclic-dependencies');return t[e]}else if(e in r){let i=r[e];t[e]=tce;try{t[e]=typeof i=="function"?i(n):ace(i,n)}catch(a){throw t[e]=a instanceof Error?a:void 0,a}return t[e]}else return}function FE(t,e){if(e){for(let[r,n]of Object.entries(e))if(n!==void 0){let i=t[r];i!==null&&n!==null&&typeof i=="object"&&typeof n=="object"?t[r]=FE(i,n):t[r]=n}}return t}var mI,nce,tce,gI=N(()=>{"use strict";(function(t){t.merge=(e,r)=>FE(FE({},e),r)})(mI||(mI={}));o(ui,"inject");nce=Symbol("isProxy");o(ice,"eagerLoad");o(ace,"_inject");tce=Symbol();o(rce,"_resolve");o(FE,"_merge")});var sce=N(()=>{"use strict"});var oce=N(()=>{"use strict";lI();oI();sI()});var lce=N(()=>{"use strict"});var cce=N(()=>{"use strict";mN();lce()});var yI,Tp,$E,vI,uce=N(()=>{"use strict";cf();wE();OE();yI={indentTokenName:"INDENT",dedentTokenName:"DEDENT",whitespaceTokenName:"WS",ignoreIndentationDelimiters:[]};(function(t){t.REGULAR="indentation-sensitive",t.IGNORE_INDENTATION="ignore-indentation"})(Tp||(Tp={}));$E=class extends Uu{static{o(this,"IndentationAwareTokenBuilder")}constructor(e=yI){super(),this.indentationStack=[0],this.whitespaceRegExp=/[ \t]+/y,this.options=Object.assign(Object.assign({},yI),e),this.indentTokenType=of({name:this.options.indentTokenName,pattern:this.indentMatcher.bind(this),line_breaks:!1}),this.dedentTokenType=of({name:this.options.dedentTokenName,pattern:this.dedentMatcher.bind(this),line_breaks:!1})}buildTokens(e,r){let n=super.buildTokens(e,r);if(!IE(n))throw new Error("Invalid tokens built by default builder");let{indentTokenName:i,dedentTokenName:a,whitespaceTokenName:s,ignoreIndentationDelimiters:l}=this.options,u,h,f,d=[];for(let p of n){for(let[m,g]of l)p.name===m?p.PUSH_MODE=Tp.IGNORE_INDENTATION:p.name===g&&(p.POP_MODE=!0);p.name===a?u=p:p.name===i?h=p:p.name===s?f=p:d.push(p)}if(!u||!h||!f)throw new Error("Some indentation/whitespace tokens not found!");return l.length>0?{modes:{[Tp.REGULAR]:[u,h,...d,f],[Tp.IGNORE_INDENTATION]:[...d,f]},defaultMode:Tp.REGULAR}:[u,h,f,...d]}flushLexingReport(e){let r=super.flushLexingReport(e);return Object.assign(Object.assign({},r),{remainingDedents:this.flushRemainingDedents(e)})}isStartOfLine(e,r){return r===0||`\r +`.includes(e[r-1])}matchWhitespace(e,r,n,i){var a;this.whitespaceRegExp.lastIndex=r;let s=this.whitespaceRegExp.exec(e);return{currIndentLevel:(a=s?.[0].length)!==null&&a!==void 0?a:0,prevIndentLevel:this.indentationStack.at(-1),match:s}}createIndentationTokenInstance(e,r,n,i){let a=this.getLineNumber(r,i);return $u(e,n,i,i+n.length,a,a,1,n.length)}getLineNumber(e,r){return e.substring(0,r).split(/\r\n|\r|\n/).length}indentMatcher(e,r,n,i){if(!this.isStartOfLine(e,r))return null;let{currIndentLevel:a,prevIndentLevel:s,match:l}=this.matchWhitespace(e,r,n,i);return a<=s?null:(this.indentationStack.push(a),l)}dedentMatcher(e,r,n,i){var a,s,l,u;if(!this.isStartOfLine(e,r))return null;let{currIndentLevel:h,prevIndentLevel:f,match:d}=this.matchWhitespace(e,r,n,i);if(h>=f)return null;let p=this.indentationStack.lastIndexOf(h);if(p===-1)return this.diagnostics.push({severity:"error",message:`Invalid dedent level ${h} at offset: ${r}. Current indentation stack: ${this.indentationStack}`,offset:r,length:(s=(a=d?.[0])===null||a===void 0?void 0:a.length)!==null&&s!==void 0?s:0,line:this.getLineNumber(e,r),column:1}),null;let m=this.indentationStack.length-p-1,g=(u=(l=e.substring(0,r).match(/[\r\n]+$/))===null||l===void 0?void 0:l[0].length)!==null&&u!==void 0?u:1;for(let y=0;y1;)r.push(this.createIndentationTokenInstance(this.dedentTokenType,e,"",e.length)),this.indentationStack.pop();return this.indentationStack=[0],r}},vI=class extends wp{static{o(this,"IndentationAwareLexer")}constructor(e){if(super(e),e.parser.TokenBuilder instanceof $E)this.indentationTokenBuilder=e.parser.TokenBuilder;else throw new Error("IndentationAwareLexer requires an accompanying IndentationAwareTokenBuilder")}tokenize(e,r=ME){let n=super.tokenize(e),i=n.report;r?.mode==="full"&&n.tokens.push(...i.remainingDedents),i.remainingDedents=[];let{indentTokenType:a,dedentTokenType:s}=this.indentationTokenBuilder,l=a.tokenTypeIdx,u=s.tokenTypeIdx,h=[],f=n.tokens.length-1;for(let d=0;d=0&&h.push(n.tokens[f]),n.tokens=h,n}}});var hce=N(()=>{"use strict"});var fce=N(()=>{"use strict";hI();wM();gE();uce();kM();Lx();OE();bE();hce();wE();EM()});var dce=N(()=>{"use strict";BM();FM();$M();GM();zM();VM()});var pce=N(()=>{"use strict";dI();LE()});var zE,ps,xI=N(()=>{"use strict";zE=class{static{o(this,"EmptyFileSystemProvider")}readFile(){throw new Error("No file system is available.")}async readDirectory(){return[]}},ps={fileSystemProvider:o(()=>new zE,"fileSystemProvider")}});function IFe(){let t=ui(ds(ps),MFe),e=ui(fs({shared:t}),NFe);return t.ServiceRegistry.register(e),e}function Hu(t){var e;let r=IFe(),n=r.serializer.JsonSerializer.deserialize(t);return r.shared.workspace.LangiumDocumentFactory.fromModel(n,us.parse(`memory://${(e=n.name)!==null&&e!==void 0?e:"grammar"}.langium`)),n}var NFe,MFe,mce=N(()=>{"use strict";pI();gI();Rc();xI();Fc();NFe={Grammar:o(()=>{},"Grammar"),LanguageMetaData:o(()=>({caseInsensitive:!1,fileExtensions:[".langium"],languageId:"langium"}),"LanguageMetaData")},MFe={AstReflection:o(()=>new Cg,"AstReflection")};o(IFe,"createMinimalGrammarServices");o(Hu,"loadGrammarFromJson")});var Gr={};hr(Gr,{AstUtils:()=>xk,BiMap:()=>vp,Cancellation:()=>yr,ContextCache:()=>xp,CstUtils:()=>ck,DONE_RESULT:()=>Ia,Deferred:()=>cs,Disposable:()=>ff,DisposableCache:()=>p1,DocumentCache:()=>_E,EMPTY_STREAM:()=>I2,ErrorWithLocation:()=>Zd,GrammarUtils:()=>Ek,MultiMap:()=>Bl,OperationCancelled:()=>Pc,Reduction:()=>zm,RegExpUtils:()=>Tk,SimpleCache:()=>$x,StreamImpl:()=>ao,TreeStreamImpl:()=>_c,URI:()=>us,UriUtils:()=>hs,WorkspaceCache:()=>m1,assertUnreachable:()=>Lc,delayNextTick:()=>MM,interruptAndCheck:()=>xi,isOperationCancelled:()=>Bc,loadGrammarFromJson:()=>Hu,setInterruptionPeriod:()=>$le,startCancelableOperation:()=>CE,stream:()=>en});var gce=N(()=>{"use strict";DE();NE();Sr(Gr,Kn);f1();jM();uk();mce();Yo();Ps();Fc();is();qo();Nl();Ol();Lg()});var yce=N(()=>{"use strict";WM();Hx()});var vce=N(()=>{"use strict";qM();YM();XM();KM();h1();xI();QM();fI();ZM()});var xa={};hr(xa,{AbstractAstReflection:()=>Xd,AbstractCstNode:()=>Cx,AbstractLangiumParser:()=>Ax,AbstractParserErrorMessageProvider:()=>vE,AbstractThreadedAsyncParser:()=>cI,AstUtils:()=>xk,BiMap:()=>vp,Cancellation:()=>yr,CompositeCstNodeImpl:()=>mp,ContextCache:()=>xp,CstNodeBuilder:()=>Sx,CstUtils:()=>ck,DEFAULT_TOKENIZE_OPTIONS:()=>ME,DONE_RESULT:()=>Ia,DatatypeSymbol:()=>yE,DefaultAstNodeDescriptionProvider:()=>qx,DefaultAstNodeLocator:()=>Xx,DefaultAsyncParser:()=>ib,DefaultCommentProvider:()=>nb,DefaultConfigurationProvider:()=>jx,DefaultDocumentBuilder:()=>Kx,DefaultDocumentValidator:()=>Wx,DefaultHydrator:()=>sb,DefaultIndexManager:()=>Qx,DefaultJsonSerializer:()=>Gx,DefaultLangiumDocumentFactory:()=>Nx,DefaultLangiumDocuments:()=>Mx,DefaultLexer:()=>wp,DefaultLexerErrorMessageProvider:()=>Jx,DefaultLinker:()=>Ix,DefaultNameProvider:()=>Ox,DefaultReferenceDescriptionProvider:()=>Yx,DefaultReferences:()=>Px,DefaultScopeComputation:()=>Bx,DefaultScopeProvider:()=>zx,DefaultServiceRegistry:()=>Vx,DefaultTokenBuilder:()=>Uu,DefaultValueConverter:()=>yp,DefaultWorkspaceLock:()=>ab,DefaultWorkspaceManager:()=>Zx,Deferred:()=>cs,Disposable:()=>ff,DisposableCache:()=>p1,DocumentCache:()=>_E,DocumentState:()=>kn,DocumentValidator:()=>jo,EMPTY_SCOPE:()=>xFe,EMPTY_STREAM:()=>I2,EmptyFileSystem:()=>ps,EmptyFileSystemProvider:()=>zE,ErrorWithLocation:()=>Zd,GrammarAST:()=>U2,GrammarUtils:()=>Ek,IndentationAwareLexer:()=>vI,IndentationAwareTokenBuilder:()=>$E,JSDocDocumentationProvider:()=>rb,LangiumCompletionParser:()=>Dx,LangiumParser:()=>_x,LangiumParserErrorMessageProvider:()=>s1,LeafCstNodeImpl:()=>pp,LexingMode:()=>Tp,MapScope:()=>Fx,Module:()=>mI,MultiMap:()=>Bl,OperationCancelled:()=>Pc,ParserWorker:()=>uI,Reduction:()=>zm,RegExpUtils:()=>Tk,RootCstNodeImpl:()=>a1,SimpleCache:()=>$x,StreamImpl:()=>ao,StreamScope:()=>d1,TextDocument:()=>c1,TreeStreamImpl:()=>_c,URI:()=>us,UriUtils:()=>hs,ValidationCategory:()=>g1,ValidationRegistry:()=>Ux,ValueConverter:()=>Oc,WorkspaceCache:()=>m1,assertUnreachable:()=>Lc,createCompletionParser:()=>bM,createDefaultCoreModule:()=>fs,createDefaultSharedCoreModule:()=>ds,createGrammarConfig:()=>pN,createLangiumParser:()=>TM,createParser:()=>Rx,delayNextTick:()=>MM,diagnosticData:()=>bp,eagerLoad:()=>ice,getDiagnosticRange:()=>Yle,indentationBuilderDefaultOptions:()=>yI,inject:()=>ui,interruptAndCheck:()=>xi,isAstNode:()=>ii,isAstNodeDescription:()=>kR,isAstNodeWithComment:()=>UM,isCompositeCstNode:()=>Ll,isIMultiModeLexerDefinition:()=>eI,isJSDoc:()=>iI,isLeafCstNode:()=>af,isLinkingError:()=>jd,isNamed:()=>Wle,isOperationCancelled:()=>Bc,isReference:()=>va,isRootCstNode:()=>M2,isTokenTypeArray:()=>IE,isTokenTypeDictionary:()=>JM,loadGrammarFromJson:()=>Hu,parseJSDoc:()=>nI,prepareLangiumParser:()=>Nle,setInterruptionPeriod:()=>$le,startCancelableOperation:()=>CE,stream:()=>en,toDiagnosticData:()=>Xle,toDiagnosticSeverity:()=>RE});var Xo=N(()=>{"use strict";pI();gI();HM();sce();Rl();oce();cce();fce();dce();pce();gce();Sr(xa,Gr);yce();vce();Rc()});function Sce(t){return Fl.isInstance(t,ob)}function Cce(t){return Fl.isInstance(t,y1)}function Ace(t){return Fl.isInstance(t,v1)}function _ce(t){return Fl.isInstance(t,WE)}function Dce(t){return Fl.isInstance(t,x1)}function Lce(t){return Fl.isInstance(t,lb)}function Rce(t){return Fl.isInstance(t,b1)}function Nce(t){return Fl.isInstance(t,cb)}function Mce(t){return Fl.isInstance(t,ub)}function Ice(t){return Fl.isInstance(t,hb)}function Oce(t){return Fl.isInstance(t,fb)}var OFe,Lt,AI,ob,GE,y1,VE,UE,v1,WE,bI,wI,TI,x1,kI,lb,EI,b1,SI,cb,ub,hb,fb,qE,CI,HE,Pce,Fl,xce,PFe,bce,BFe,wce,FFe,Tce,$Fe,kce,zFe,Ece,GFe,VFe,UFe,HFe,WFe,qFe,YFe,co,_I,DI,LI,RI,NI,MI,XFe,jFe,KFe,QFe,w1,Wu,$s,ZFe,zs=N(()=>{"use strict";Xo();Xo();Xo();Xo();OFe=Object.defineProperty,Lt=o((t,e)=>OFe(t,"name",{value:e,configurable:!0}),"__name"),AI="Statement",ob="Architecture";o(Sce,"isArchitecture");Lt(Sce,"isArchitecture");GE="Axis",y1="Branch";o(Cce,"isBranch");Lt(Cce,"isBranch");VE="Checkout",UE="CherryPicking",v1="Commit";o(Ace,"isCommit");Lt(Ace,"isCommit");WE="Common";o(_ce,"isCommon");Lt(_ce,"isCommon");bI="Curve",wI="Edge",TI="Entry",x1="GitGraph";o(Dce,"isGitGraph");Lt(Dce,"isGitGraph");kI="Group",lb="Info";o(Lce,"isInfo");Lt(Lce,"isInfo");EI="Junction",b1="Merge";o(Rce,"isMerge");Lt(Rce,"isMerge");SI="Option",cb="Packet";o(Nce,"isPacket");Lt(Nce,"isPacket");ub="PacketBlock";o(Mce,"isPacketBlock");Lt(Mce,"isPacketBlock");hb="Pie";o(Ice,"isPie");Lt(Ice,"isPie");fb="PieSection";o(Oce,"isPieSection");Lt(Oce,"isPieSection");qE="Radar",CI="Service",HE="Direction",Pce=class extends Xd{static{o(this,"MermaidAstReflection")}static{Lt(this,"MermaidAstReflection")}getAllTypes(){return[ob,GE,y1,VE,UE,v1,WE,bI,HE,wI,TI,x1,kI,lb,EI,b1,SI,cb,ub,hb,fb,qE,CI,AI]}computeIsSubtype(t,e){switch(t){case y1:case VE:case UE:case v1:case b1:return this.isSubtype(AI,e);case HE:return this.isSubtype(x1,e);default:return!1}}getReferenceType(t){let e=`${t.container.$type}:${t.property}`;switch(e){case"Entry:axis":return GE;default:throw new Error(`${e} is not a valid reference id.`)}}getTypeMetaData(t){switch(t){case ob:return{name:ob,properties:[{name:"accDescr"},{name:"accTitle"},{name:"edges",defaultValue:[]},{name:"groups",defaultValue:[]},{name:"junctions",defaultValue:[]},{name:"services",defaultValue:[]},{name:"title"}]};case GE:return{name:GE,properties:[{name:"label"},{name:"name"}]};case y1:return{name:y1,properties:[{name:"name"},{name:"order"}]};case VE:return{name:VE,properties:[{name:"branch"}]};case UE:return{name:UE,properties:[{name:"id"},{name:"parent"},{name:"tags",defaultValue:[]}]};case v1:return{name:v1,properties:[{name:"id"},{name:"message"},{name:"tags",defaultValue:[]},{name:"type"}]};case WE:return{name:WE,properties:[{name:"accDescr"},{name:"accTitle"},{name:"title"}]};case bI:return{name:bI,properties:[{name:"entries",defaultValue:[]},{name:"label"},{name:"name"}]};case wI:return{name:wI,properties:[{name:"lhsDir"},{name:"lhsGroup",defaultValue:!1},{name:"lhsId"},{name:"lhsInto",defaultValue:!1},{name:"rhsDir"},{name:"rhsGroup",defaultValue:!1},{name:"rhsId"},{name:"rhsInto",defaultValue:!1},{name:"title"}]};case TI:return{name:TI,properties:[{name:"axis"},{name:"value"}]};case x1:return{name:x1,properties:[{name:"accDescr"},{name:"accTitle"},{name:"statements",defaultValue:[]},{name:"title"}]};case kI:return{name:kI,properties:[{name:"icon"},{name:"id"},{name:"in"},{name:"title"}]};case lb:return{name:lb,properties:[{name:"accDescr"},{name:"accTitle"},{name:"title"}]};case EI:return{name:EI,properties:[{name:"id"},{name:"in"}]};case b1:return{name:b1,properties:[{name:"branch"},{name:"id"},{name:"tags",defaultValue:[]},{name:"type"}]};case SI:return{name:SI,properties:[{name:"name"},{name:"value",defaultValue:!1}]};case cb:return{name:cb,properties:[{name:"accDescr"},{name:"accTitle"},{name:"blocks",defaultValue:[]},{name:"title"}]};case ub:return{name:ub,properties:[{name:"end"},{name:"label"},{name:"start"}]};case hb:return{name:hb,properties:[{name:"accDescr"},{name:"accTitle"},{name:"sections",defaultValue:[]},{name:"showData",defaultValue:!1},{name:"title"}]};case fb:return{name:fb,properties:[{name:"label"},{name:"value"}]};case qE:return{name:qE,properties:[{name:"accDescr"},{name:"accTitle"},{name:"axes",defaultValue:[]},{name:"curves",defaultValue:[]},{name:"options",defaultValue:[]},{name:"title"}]};case CI:return{name:CI,properties:[{name:"icon"},{name:"iconText"},{name:"id"},{name:"in"},{name:"title"}]};case HE:return{name:HE,properties:[{name:"accDescr"},{name:"accTitle"},{name:"dir"},{name:"statements",defaultValue:[]},{name:"title"}]};default:return{name:t,properties:[]}}}},Fl=new Pce,PFe=Lt(()=>xce??(xce=Hu('{"$type":"Grammar","isDeclared":true,"name":"Info","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Info","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[],"cardinality":"*"},{"$type":"Keyword","value":"info"},{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[],"cardinality":"*"},{"$type":"Group","elements":[{"$type":"Keyword","value":"showInfo"},{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[],"cardinality":"*"}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[],"cardinality":"?"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[{"$type":"Interface","name":"Common","attributes":[{"$type":"TypeAttribute","name":"accDescr","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"accTitle","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"title","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}}],"superTypes":[]}],"types":[],"usedGrammars":[]}')),"InfoGrammar"),BFe=Lt(()=>bce??(bce=Hu(`{"$type":"Grammar","isDeclared":true,"name":"Packet","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Packet","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"*"},{"$type":"Keyword","value":"packet-beta"},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]},{"$type":"Assignment","feature":"blocks","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]},"cardinality":"*"}]},{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"+"},{"$type":"Assignment","feature":"blocks","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]},"cardinality":"+"}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"*"}]}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"PacketBlock","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"start","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":"-"},{"$type":"Assignment","feature":"end","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}}],"cardinality":"?"},{"$type":"Keyword","value":":"},{"$type":"Assignment","feature":"label","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"INT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/0|[1-9][0-9]*/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","definition":{"$type":"RegexToken","regex":"/\\"[^\\"]*\\"|'[^']*'/"},"fragment":false,"hidden":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[{"$type":"Interface","name":"Common","attributes":[{"$type":"TypeAttribute","name":"accDescr","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"accTitle","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"title","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}}],"superTypes":[]}],"types":[],"usedGrammars":[]}`)),"PacketGrammar"),FFe=Lt(()=>wce??(wce=Hu('{"$type":"Grammar","isDeclared":true,"name":"Pie","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Pie","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"*"},{"$type":"Keyword","value":"pie"},{"$type":"Assignment","feature":"showData","operator":"?=","terminal":{"$type":"Keyword","value":"showData"},"cardinality":"?"},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]},{"$type":"Assignment","feature":"sections","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]},"cardinality":"*"}]},{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"+"},{"$type":"Assignment","feature":"sections","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]},"cardinality":"+"}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"*"}]}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"PieSection","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"label","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}},{"$type":"Keyword","value":":"},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"PIE_SECTION_LABEL","definition":{"$type":"RegexToken","regex":"/\\"[^\\"]+\\"/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"PIE_SECTION_VALUE","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/(0|[1-9][0-9]*)(\\\\.[0-9]+)?/"},"fragment":false,"hidden":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[{"$type":"Interface","name":"Common","attributes":[{"$type":"TypeAttribute","name":"accDescr","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"accTitle","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"title","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}}],"superTypes":[]}],"types":[],"usedGrammars":[]}')),"PieGrammar"),$Fe=Lt(()=>Tce??(Tce=Hu('{"$type":"Grammar","isDeclared":true,"name":"Architecture","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Architecture","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[],"cardinality":"*"},{"$type":"Keyword","value":"architecture-beta"},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[]}]},{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[],"cardinality":"*"}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[],"cardinality":"*"}]}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"Statement","definition":{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"groups","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}},{"$type":"Assignment","feature":"services","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]}},{"$type":"Assignment","feature":"junctions","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]}},{"$type":"Assignment","feature":"edges","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"LeftPort","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":":"},{"$type":"Assignment","feature":"lhsDir","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"RightPort","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"rhsDir","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}},{"$type":"Keyword","value":":"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"Arrow","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]},{"$type":"Assignment","feature":"lhsInto","operator":"?=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@15"},"arguments":[]},"cardinality":"?"},{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"--"},{"$type":"Group","elements":[{"$type":"Keyword","value":"-"},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]}},{"$type":"Keyword","value":"-"}]}]},{"$type":"Assignment","feature":"rhsInto","operator":"?=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@15"},"arguments":[]},"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Group","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"group"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}},{"$type":"Assignment","feature":"icon","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]},"cardinality":"?"},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]},"cardinality":"?"},{"$type":"Group","elements":[{"$type":"Keyword","value":"in"},{"$type":"Assignment","feature":"in","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Service","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"service"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}},{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"iconText","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[]}},{"$type":"Assignment","feature":"icon","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}}],"cardinality":"?"},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]},"cardinality":"?"},{"$type":"Group","elements":[{"$type":"Keyword","value":"in"},{"$type":"Assignment","feature":"in","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Junction","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"junction"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":"in"},{"$type":"Assignment","feature":"in","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Edge","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"lhsId","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}},{"$type":"Assignment","feature":"lhsGroup","operator":"?=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@14"},"arguments":[]},"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]},{"$type":"Assignment","feature":"rhsId","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}},{"$type":"Assignment","feature":"rhsGroup","operator":"?=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@14"},"arguments":[]},"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"ARROW_DIRECTION","definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"L"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"R"}}]},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"T"}}]},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"B"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARCH_ID","definition":{"$type":"RegexToken","regex":"/[\\\\w]+/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARCH_TEXT_ICON","definition":{"$type":"RegexToken","regex":"/\\\\(\\"[^\\"]+\\"\\\\)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARCH_ICON","definition":{"$type":"RegexToken","regex":"/\\\\([\\\\w-:]+\\\\)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARCH_TITLE","definition":{"$type":"RegexToken","regex":"/\\\\[[\\\\w ]+\\\\]/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARROW_GROUP","definition":{"$type":"RegexToken","regex":"/\\\\{group\\\\}/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARROW_INTO","definition":{"$type":"RegexToken","regex":"/<|>/"},"fragment":false,"hidden":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@21"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[{"$type":"Interface","name":"Common","attributes":[{"$type":"TypeAttribute","name":"accDescr","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"accTitle","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"title","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}}],"superTypes":[]}],"types":[],"usedGrammars":[]}')),"ArchitectureGrammar"),zFe=Lt(()=>kce??(kce=Hu(`{"$type":"Grammar","isDeclared":true,"name":"GitGraph","interfaces":[{"$type":"Interface","name":"Common","attributes":[{"$type":"TypeAttribute","name":"accDescr","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"accTitle","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"title","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}}],"superTypes":[]}],"rules":[{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false},{"$type":"ParserRule","entry":true,"name":"GitGraph","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"gitGraph"},{"$type":"Group","elements":[{"$type":"Keyword","value":"gitGraph"},{"$type":"Keyword","value":":"}]},{"$type":"Keyword","value":"gitGraph:"},{"$type":"Group","elements":[{"$type":"Keyword","value":"gitGraph"},{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]},{"$type":"Keyword","value":":"}]}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@0"},"arguments":[]},{"$type":"Assignment","feature":"statements","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}],"cardinality":"*"}]}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Statement","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@14"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@15"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Direction","definition":{"$type":"Assignment","feature":"dir","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"LR"},{"$type":"Keyword","value":"TB"},{"$type":"Keyword","value":"BT"}]}},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Commit","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"commit"},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Keyword","value":"id:"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"msg:","cardinality":"?"},{"$type":"Assignment","feature":"message","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"tag:"},{"$type":"Assignment","feature":"tags","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"type:"},{"$type":"Assignment","feature":"type","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"NORMAL"},{"$type":"Keyword","value":"REVERSE"},{"$type":"Keyword","value":"HIGHLIGHT"}]}}]}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Branch","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"branch"},{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}]}},{"$type":"Group","elements":[{"$type":"Keyword","value":"order:"},{"$type":"Assignment","feature":"order","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[]}}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Merge","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"merge"},{"$type":"Assignment","feature":"branch","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}]}},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Keyword","value":"id:"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"tag:"},{"$type":"Assignment","feature":"tags","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"type:"},{"$type":"Assignment","feature":"type","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"NORMAL"},{"$type":"Keyword","value":"REVERSE"},{"$type":"Keyword","value":"HIGHLIGHT"}]}}]}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Checkout","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"checkout"},{"$type":"Keyword","value":"switch"}]},{"$type":"Assignment","feature":"branch","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"CherryPicking","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"cherry-pick"},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Keyword","value":"id:"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"tag:"},{"$type":"Assignment","feature":"tags","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"parent:"},{"$type":"Assignment","feature":"parent","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"INT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/[0-9]+(?=\\\\s)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/\\\\w([-\\\\./\\\\w]*[-\\\\w])?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","definition":{"$type":"RegexToken","regex":"/\\"[^\\"]*\\"|'[^']*'/"},"fragment":false,"hidden":false}],"definesHiddenTokens":false,"hiddenTokens":[],"imports":[],"types":[],"usedGrammars":[]}`)),"GitGraphGrammar"),GFe=Lt(()=>Ece??(Ece=Hu(`{"$type":"Grammar","isDeclared":true,"name":"Radar","interfaces":[{"$type":"Interface","name":"Common","attributes":[{"$type":"TypeAttribute","name":"accDescr","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"accTitle","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"title","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}}],"superTypes":[]},{"$type":"Interface","name":"Entry","attributes":[{"$type":"TypeAttribute","name":"axis","isOptional":true,"type":{"$type":"ReferenceType","referenceType":{"$type":"SimpleType","typeRef":{"$ref":"#/rules@12"}}}},{"$type":"TypeAttribute","name":"value","type":{"$type":"SimpleType","primitiveType":"number"},"isOptional":false}],"superTypes":[]}],"rules":[{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false},{"$type":"ParserRule","entry":true,"name":"Radar","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"radar-beta"},{"$type":"Keyword","value":"radar-beta:"},{"$type":"Group","elements":[{"$type":"Keyword","value":"radar-beta"},{"$type":"Keyword","value":":"}]}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@0"},"arguments":[]},{"$type":"Group","elements":[{"$type":"Keyword","value":"axis"},{"$type":"Assignment","feature":"axes","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"Assignment","feature":"axes","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}}],"cardinality":"*"}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"curve"},{"$type":"Assignment","feature":"curves","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"Assignment","feature":"curves","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]}}],"cardinality":"*"}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"options","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"Assignment","feature":"options","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}],"cardinality":"*"}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}],"cardinality":"*"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"Label","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"["},{"$type":"Assignment","feature":"label","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}},{"$type":"Keyword","value":"]"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Axis","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@21"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[],"cardinality":"?"}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Curve","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@21"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[],"cardinality":"?"},{"$type":"Keyword","value":"{"},{"$type":"RuleCall","rule":{"$ref":"#/rules@14"},"arguments":[]},{"$type":"Keyword","value":"}"}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"Entries","definition":{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Assignment","feature":"entries","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Assignment","feature":"entries","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[]}}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"}]},{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Assignment","feature":"entries","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@15"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"},{"$type":"Assignment","feature":"entries","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@15"},"arguments":[]}}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"*"}]}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"DetailedEntry","returnType":{"$ref":"#/interfaces@1"},"definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"axis","operator":"=","terminal":{"$type":"CrossReference","type":{"$ref":"#/rules@12"},"terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@21"},"arguments":[]},"deprecatedSyntax":false}},{"$type":"Keyword","value":":","cardinality":"?"},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[]}}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"NumberEntry","returnType":{"$ref":"#/interfaces@1"},"definition":{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[]}},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Option","definition":{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"showLegend"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"ticks"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"max"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"min"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"graticule"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"NUMBER","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/(0|[1-9][0-9]*)(\\\\.[0-9]+)?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"BOOLEAN","type":{"$type":"ReturnType","name":"boolean"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"true"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"false"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"GRATICULE","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"circle"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"polygon"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/[a-zA-Z_][a-zA-Z0-9\\\\-_]*/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","definition":{"$type":"RegexToken","regex":"/\\"[^\\"]*\\"|'[^']*'/"},"fragment":false,"hidden":false}],"definesHiddenTokens":false,"hiddenTokens":[],"imports":[],"types":[],"usedGrammars":[]}`)),"RadarGrammar"),VFe={languageId:"info",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},UFe={languageId:"packet",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},HFe={languageId:"pie",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},WFe={languageId:"architecture",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},qFe={languageId:"gitGraph",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},YFe={languageId:"radar",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},co={AstReflection:Lt(()=>new Pce,"AstReflection")},_I={Grammar:Lt(()=>PFe(),"Grammar"),LanguageMetaData:Lt(()=>VFe,"LanguageMetaData"),parser:{}},DI={Grammar:Lt(()=>BFe(),"Grammar"),LanguageMetaData:Lt(()=>UFe,"LanguageMetaData"),parser:{}},LI={Grammar:Lt(()=>FFe(),"Grammar"),LanguageMetaData:Lt(()=>HFe,"LanguageMetaData"),parser:{}},RI={Grammar:Lt(()=>$Fe(),"Grammar"),LanguageMetaData:Lt(()=>WFe,"LanguageMetaData"),parser:{}},NI={Grammar:Lt(()=>zFe(),"Grammar"),LanguageMetaData:Lt(()=>qFe,"LanguageMetaData"),parser:{}},MI={Grammar:Lt(()=>GFe(),"Grammar"),LanguageMetaData:Lt(()=>YFe,"LanguageMetaData"),parser:{}},XFe=/accDescr(?:[\t ]*:([^\n\r]*)|\s*{([^}]*)})/,jFe=/accTitle[\t ]*:([^\n\r]*)/,KFe=/title([\t ][^\n\r]*|)/,QFe={ACC_DESCR:XFe,ACC_TITLE:jFe,TITLE:KFe},w1=class extends yp{static{o(this,"AbstractMermaidValueConverter")}static{Lt(this,"AbstractMermaidValueConverter")}runConverter(t,e,r){let n=this.runCommonConverter(t,e,r);return n===void 0&&(n=this.runCustomConverter(t,e,r)),n===void 0?super.runConverter(t,e,r):n}runCommonConverter(t,e,r){let n=QFe[t.name];if(n===void 0)return;let i=n.exec(e);if(i!==null){if(i[1]!==void 0)return i[1].trim().replace(/[\t ]{2,}/gm," ");if(i[2]!==void 0)return i[2].replace(/^\s*/gm,"").replace(/\s+$/gm,"").replace(/[\t ]{2,}/gm," ").replace(/[\n\r]{2,}/gm,` +`)}}},Wu=class extends w1{static{o(this,"CommonValueConverter")}static{Lt(this,"CommonValueConverter")}runCustomConverter(t,e,r){}},$s=class extends Uu{static{o(this,"AbstractMermaidTokenBuilder")}static{Lt(this,"AbstractMermaidTokenBuilder")}constructor(t){super(),this.keywords=new Set(t)}buildKeywordTokens(t,e,r){let n=super.buildKeywordTokens(t,e,r);return n.forEach(i=>{this.keywords.has(i.name)&&i.PATTERN!==void 0&&(i.PATTERN=new RegExp(i.PATTERN.toString()+"(?:(?=%%)|(?!\\S))"))}),n}},ZFe=class extends $s{static{o(this,"CommonTokenBuilder")}static{Lt(this,"CommonTokenBuilder")}}});function XE(t=ps){let e=ui(ds(t),co),r=ui(fs({shared:e}),NI,YE);return e.ServiceRegistry.register(r),{shared:e,GitGraph:r}}var JFe,YE,II=N(()=>{"use strict";zs();Xo();JFe=class extends $s{static{o(this,"GitGraphTokenBuilder")}static{Lt(this,"GitGraphTokenBuilder")}constructor(){super(["gitGraph"])}},YE={parser:{TokenBuilder:Lt(()=>new JFe,"TokenBuilder"),ValueConverter:Lt(()=>new Wu,"ValueConverter")}};o(XE,"createGitGraphServices");Lt(XE,"createGitGraphServices")});function KE(t=ps){let e=ui(ds(t),co),r=ui(fs({shared:e}),_I,jE);return e.ServiceRegistry.register(r),{shared:e,Info:r}}var e$e,jE,OI=N(()=>{"use strict";zs();Xo();e$e=class extends $s{static{o(this,"InfoTokenBuilder")}static{Lt(this,"InfoTokenBuilder")}constructor(){super(["info","showInfo"])}},jE={parser:{TokenBuilder:Lt(()=>new e$e,"TokenBuilder"),ValueConverter:Lt(()=>new Wu,"ValueConverter")}};o(KE,"createInfoServices");Lt(KE,"createInfoServices")});function ZE(t=ps){let e=ui(ds(t),co),r=ui(fs({shared:e}),DI,QE);return e.ServiceRegistry.register(r),{shared:e,Packet:r}}var t$e,QE,PI=N(()=>{"use strict";zs();Xo();t$e=class extends $s{static{o(this,"PacketTokenBuilder")}static{Lt(this,"PacketTokenBuilder")}constructor(){super(["packet-beta"])}},QE={parser:{TokenBuilder:Lt(()=>new t$e,"TokenBuilder"),ValueConverter:Lt(()=>new Wu,"ValueConverter")}};o(ZE,"createPacketServices");Lt(ZE,"createPacketServices")});function e6(t=ps){let e=ui(ds(t),co),r=ui(fs({shared:e}),LI,JE);return e.ServiceRegistry.register(r),{shared:e,Pie:r}}var r$e,n$e,JE,BI=N(()=>{"use strict";zs();Xo();r$e=class extends $s{static{o(this,"PieTokenBuilder")}static{Lt(this,"PieTokenBuilder")}constructor(){super(["pie","showData"])}},n$e=class extends w1{static{o(this,"PieValueConverter")}static{Lt(this,"PieValueConverter")}runCustomConverter(t,e,r){if(t.name==="PIE_SECTION_LABEL")return e.replace(/"/g,"").trim()}},JE={parser:{TokenBuilder:Lt(()=>new r$e,"TokenBuilder"),ValueConverter:Lt(()=>new n$e,"ValueConverter")}};o(e6,"createPieServices");Lt(e6,"createPieServices")});function r6(t=ps){let e=ui(ds(t),co),r=ui(fs({shared:e}),RI,t6);return e.ServiceRegistry.register(r),{shared:e,Architecture:r}}var i$e,a$e,t6,FI=N(()=>{"use strict";zs();Xo();i$e=class extends $s{static{o(this,"ArchitectureTokenBuilder")}static{Lt(this,"ArchitectureTokenBuilder")}constructor(){super(["architecture"])}},a$e=class extends w1{static{o(this,"ArchitectureValueConverter")}static{Lt(this,"ArchitectureValueConverter")}runCustomConverter(t,e,r){if(t.name==="ARCH_ICON")return e.replace(/[()]/g,"").trim();if(t.name==="ARCH_TEXT_ICON")return e.replace(/["()]/g,"");if(t.name==="ARCH_TITLE")return e.replace(/[[\]]/g,"").trim()}},t6={parser:{TokenBuilder:Lt(()=>new i$e,"TokenBuilder"),ValueConverter:Lt(()=>new a$e,"ValueConverter")}};o(r6,"createArchitectureServices");Lt(r6,"createArchitectureServices")});function i6(t=ps){let e=ui(ds(t),co),r=ui(fs({shared:e}),MI,n6);return e.ServiceRegistry.register(r),{shared:e,Radar:r}}var s$e,n6,$I=N(()=>{"use strict";zs();Xo();s$e=class extends $s{static{o(this,"RadarTokenBuilder")}static{Lt(this,"RadarTokenBuilder")}constructor(){super(["radar-beta"])}},n6={parser:{TokenBuilder:Lt(()=>new s$e,"TokenBuilder"),ValueConverter:Lt(()=>new Wu,"ValueConverter")}};o(i6,"createRadarServices");Lt(i6,"createRadarServices")});var Bce={};hr(Bce,{InfoModule:()=>jE,createInfoServices:()=>KE});var Fce=N(()=>{"use strict";OI();zs()});var $ce={};hr($ce,{PacketModule:()=>QE,createPacketServices:()=>ZE});var zce=N(()=>{"use strict";PI();zs()});var Gce={};hr(Gce,{PieModule:()=>JE,createPieServices:()=>e6});var Vce=N(()=>{"use strict";BI();zs()});var Uce={};hr(Uce,{ArchitectureModule:()=>t6,createArchitectureServices:()=>r6});var Hce=N(()=>{"use strict";FI();zs()});var Wce={};hr(Wce,{GitGraphModule:()=>YE,createGitGraphServices:()=>XE});var qce=N(()=>{"use strict";II();zs()});var Yce={};hr(Yce,{RadarModule:()=>n6,createRadarServices:()=>i6});var Xce=N(()=>{"use strict";$I();zs()});async function uo(t,e){let r=o$e[t];if(!r)throw new Error(`Unknown diagram type: ${t}`);df[t]||await r();let i=df[t].parse(e);if(i.lexerErrors.length>0||i.parserErrors.length>0)throw new l$e(i);return i.value}var df,o$e,l$e,kp=N(()=>{"use strict";II();OI();PI();BI();FI();$I();zs();df={},o$e={info:Lt(async()=>{let{createInfoServices:t}=await Promise.resolve().then(()=>(Fce(),Bce)),e=t().Info.parser.LangiumParser;df.info=e},"info"),packet:Lt(async()=>{let{createPacketServices:t}=await Promise.resolve().then(()=>(zce(),$ce)),e=t().Packet.parser.LangiumParser;df.packet=e},"packet"),pie:Lt(async()=>{let{createPieServices:t}=await Promise.resolve().then(()=>(Vce(),Gce)),e=t().Pie.parser.LangiumParser;df.pie=e},"pie"),architecture:Lt(async()=>{let{createArchitectureServices:t}=await Promise.resolve().then(()=>(Hce(),Uce)),e=t().Architecture.parser.LangiumParser;df.architecture=e},"architecture"),gitGraph:Lt(async()=>{let{createGitGraphServices:t}=await Promise.resolve().then(()=>(qce(),Wce)),e=t().GitGraph.parser.LangiumParser;df.gitGraph=e},"gitGraph"),radar:Lt(async()=>{let{createRadarServices:t}=await Promise.resolve().then(()=>(Xce(),Yce)),e=t().Radar.parser.LangiumParser;df.radar=e},"radar")};o(uo,"parse");Lt(uo,"parse");l$e=class extends Error{static{o(this,"MermaidParseError")}constructor(t){let e=t.lexerErrors.map(n=>n.message).join(` +`),r=t.parserErrors.map(n=>n.message).join(` +`);super(`Parsing failed: ${e} ${r}`),this.result=t}static{Lt(this,"MermaidParseError")}}});function $c(t,e){t.accDescr&&e.setAccDescription?.(t.accDescr),t.accTitle&&e.setAccTitle?.(t.accTitle),t.title&&e.setDiagramTitle?.(t.title)}var T1=N(()=>{"use strict";o($c,"populateCommonDb")});var Kr,a6=N(()=>{"use strict";Kr={NORMAL:0,REVERSE:1,HIGHLIGHT:2,MERGE:3,CHERRY_PICK:4}});var pf,s6=N(()=>{"use strict";pf=class{constructor(e){this.init=e;this.records=this.init()}static{o(this,"ImperativeState")}reset(){this.records=this.init()}}});function zI(){return j9({length:7})}function u$e(t,e){let r=Object.create(null);return t.reduce((n,i)=>{let a=e(i);return r[a]||(r[a]=!0,n.push(i)),n},[])}function jce(t,e,r){let n=t.indexOf(e);n===-1?t.push(r):t.splice(n,1,r)}function Qce(t){let e=t.reduce((i,a)=>i.seq>a.seq?i:a,t[0]),r="";t.forEach(function(i){i===e?r+=" *":r+=" |"});let n=[r,e.id,e.seq];for(let i in _t.records.branches)_t.records.branches.get(i)===e.id&&n.push(i);if(Y.debug(n.join(" ")),e.parents&&e.parents.length==2&&e.parents[0]&&e.parents[1]){let i=_t.records.commits.get(e.parents[0]);jce(t,e,i),e.parents[1]&&t.push(_t.records.commits.get(e.parents[1]))}else{if(e.parents.length==0)return;if(e.parents[0]){let i=_t.records.commits.get(e.parents[0]);jce(t,e,i)}}t=u$e(t,i=>i.id),Qce(t)}var c$e,Ep,_t,h$e,f$e,d$e,p$e,m$e,g$e,y$e,Kce,v$e,x$e,b$e,w$e,T$e,Zce,k$e,E$e,S$e,o6,GI=N(()=>{"use strict";vt();ir();ji();gr();mi();a6();s6();Ya();c$e=or.gitGraph,Ep=o(()=>Fi({...c$e,...cr().gitGraph}),"getConfig"),_t=new pf(()=>{let t=Ep(),e=t.mainBranchName,r=t.mainBranchOrder;return{mainBranchName:e,commits:new Map,head:null,branchConfig:new Map([[e,{name:e,order:r}]]),branches:new Map([[e,null]]),currBranch:e,direction:"LR",seq:0,options:{}}});o(zI,"getID");o(u$e,"uniqBy");h$e=o(function(t){_t.records.direction=t},"setDirection"),f$e=o(function(t){Y.debug("options str",t),t=t?.trim(),t=t||"{}";try{_t.records.options=JSON.parse(t)}catch(e){Y.error("error while parsing gitGraph options",e.message)}},"setOptions"),d$e=o(function(){return _t.records.options},"getOptions"),p$e=o(function(t){let e=t.msg,r=t.id,n=t.type,i=t.tags;Y.info("commit",e,r,n,i),Y.debug("Entering commit:",e,r,n,i);let a=Ep();r=Ze.sanitizeText(r,a),e=Ze.sanitizeText(e,a),i=i?.map(l=>Ze.sanitizeText(l,a));let s={id:r||_t.records.seq+"-"+zI(),message:e,seq:_t.records.seq++,type:n??Kr.NORMAL,tags:i??[],parents:_t.records.head==null?[]:[_t.records.head.id],branch:_t.records.currBranch};_t.records.head=s,Y.info("main branch",a.mainBranchName),_t.records.commits.set(s.id,s),_t.records.branches.set(_t.records.currBranch,s.id),Y.debug("in pushCommit "+s.id)},"commit"),m$e=o(function(t){let e=t.name,r=t.order;if(e=Ze.sanitizeText(e,Ep()),_t.records.branches.has(e))throw new Error(`Trying to create an existing branch. (Help: Either use a new name if you want create a new branch or try using "checkout ${e}")`);_t.records.branches.set(e,_t.records.head!=null?_t.records.head.id:null),_t.records.branchConfig.set(e,{name:e,order:r}),Kce(e),Y.debug("in createBranch")},"branch"),g$e=o(t=>{let e=t.branch,r=t.id,n=t.type,i=t.tags,a=Ep();e=Ze.sanitizeText(e,a),r&&(r=Ze.sanitizeText(r,a));let s=_t.records.branches.get(_t.records.currBranch),l=_t.records.branches.get(e),u=s?_t.records.commits.get(s):void 0,h=l?_t.records.commits.get(l):void 0;if(u&&h&&u.branch===e)throw new Error(`Cannot merge branch '${e}' into itself.`);if(_t.records.currBranch===e){let p=new Error('Incorrect usage of "merge". Cannot merge a branch to itself');throw p.hash={text:`merge ${e}`,token:`merge ${e}`,expected:["branch abc"]},p}if(u===void 0||!u){let p=new Error(`Incorrect usage of "merge". Current branch (${_t.records.currBranch})has no commits`);throw p.hash={text:`merge ${e}`,token:`merge ${e}`,expected:["commit"]},p}if(!_t.records.branches.has(e)){let p=new Error('Incorrect usage of "merge". Branch to be merged ('+e+") does not exist");throw p.hash={text:`merge ${e}`,token:`merge ${e}`,expected:[`branch ${e}`]},p}if(h===void 0||!h){let p=new Error('Incorrect usage of "merge". Branch to be merged ('+e+") has no commits");throw p.hash={text:`merge ${e}`,token:`merge ${e}`,expected:['"commit"']},p}if(u===h){let p=new Error('Incorrect usage of "merge". Both branches have same head');throw p.hash={text:`merge ${e}`,token:`merge ${e}`,expected:["branch abc"]},p}if(r&&_t.records.commits.has(r)){let p=new Error('Incorrect usage of "merge". Commit with id:'+r+" already exists, use different custom Id");throw p.hash={text:`merge ${e} ${r} ${n} ${i?.join(" ")}`,token:`merge ${e} ${r} ${n} ${i?.join(" ")}`,expected:[`merge ${e} ${r}_UNIQUE ${n} ${i?.join(" ")}`]},p}let f=l||"",d={id:r||`${_t.records.seq}-${zI()}`,message:`merged branch ${e} into ${_t.records.currBranch}`,seq:_t.records.seq++,parents:_t.records.head==null?[]:[_t.records.head.id,f],branch:_t.records.currBranch,type:Kr.MERGE,customType:n,customId:!!r,tags:i??[]};_t.records.head=d,_t.records.commits.set(d.id,d),_t.records.branches.set(_t.records.currBranch,d.id),Y.debug(_t.records.branches),Y.debug("in mergeBranch")},"merge"),y$e=o(function(t){let e=t.id,r=t.targetId,n=t.tags,i=t.parent;Y.debug("Entering cherryPick:",e,r,n);let a=Ep();if(e=Ze.sanitizeText(e,a),r=Ze.sanitizeText(r,a),n=n?.map(u=>Ze.sanitizeText(u,a)),i=Ze.sanitizeText(i,a),!e||!_t.records.commits.has(e)){let u=new Error('Incorrect usage of "cherryPick". Source commit id should exist and provided');throw u.hash={text:`cherryPick ${e} ${r}`,token:`cherryPick ${e} ${r}`,expected:["cherry-pick abc"]},u}let s=_t.records.commits.get(e);if(s===void 0||!s)throw new Error('Incorrect usage of "cherryPick". Source commit id should exist and provided');if(i&&!(Array.isArray(s.parents)&&s.parents.includes(i)))throw new Error("Invalid operation: The specified parent commit is not an immediate parent of the cherry-picked commit.");let l=s.branch;if(s.type===Kr.MERGE&&!i)throw new Error("Incorrect usage of cherry-pick: If the source commit is a merge commit, an immediate parent commit must be specified.");if(!r||!_t.records.commits.has(r)){if(l===_t.records.currBranch){let d=new Error('Incorrect usage of "cherryPick". Source commit is already on current branch');throw d.hash={text:`cherryPick ${e} ${r}`,token:`cherryPick ${e} ${r}`,expected:["cherry-pick abc"]},d}let u=_t.records.branches.get(_t.records.currBranch);if(u===void 0||!u){let d=new Error(`Incorrect usage of "cherry-pick". Current branch (${_t.records.currBranch})has no commits`);throw d.hash={text:`cherryPick ${e} ${r}`,token:`cherryPick ${e} ${r}`,expected:["cherry-pick abc"]},d}let h=_t.records.commits.get(u);if(h===void 0||!h){let d=new Error(`Incorrect usage of "cherry-pick". Current branch (${_t.records.currBranch})has no commits`);throw d.hash={text:`cherryPick ${e} ${r}`,token:`cherryPick ${e} ${r}`,expected:["cherry-pick abc"]},d}let f={id:_t.records.seq+"-"+zI(),message:`cherry-picked ${s?.message} into ${_t.records.currBranch}`,seq:_t.records.seq++,parents:_t.records.head==null?[]:[_t.records.head.id,s.id],branch:_t.records.currBranch,type:Kr.CHERRY_PICK,tags:n?n.filter(Boolean):[`cherry-pick:${s.id}${s.type===Kr.MERGE?`|parent:${i}`:""}`]};_t.records.head=f,_t.records.commits.set(f.id,f),_t.records.branches.set(_t.records.currBranch,f.id),Y.debug(_t.records.branches),Y.debug("in cherryPick")}},"cherryPick"),Kce=o(function(t){if(t=Ze.sanitizeText(t,Ep()),_t.records.branches.has(t)){_t.records.currBranch=t;let e=_t.records.branches.get(_t.records.currBranch);e===void 0||!e?_t.records.head=null:_t.records.head=_t.records.commits.get(e)??null}else{let e=new Error(`Trying to checkout branch which is not yet created. (Help try using "branch ${t}")`);throw e.hash={text:`checkout ${t}`,token:`checkout ${t}`,expected:[`branch ${t}`]},e}},"checkout");o(jce,"upsert");o(Qce,"prettyPrintCommitHistory");v$e=o(function(){Y.debug(_t.records.commits);let t=Zce()[0];Qce([t])},"prettyPrint"),x$e=o(function(){_t.reset(),Ar()},"clear"),b$e=o(function(){return[..._t.records.branchConfig.values()].map((e,r)=>e.order!==null&&e.order!==void 0?e:{...e,order:parseFloat(`0.${r}`)}).sort((e,r)=>(e.order??0)-(r.order??0)).map(({name:e})=>({name:e}))},"getBranchesAsObjArray"),w$e=o(function(){return _t.records.branches},"getBranches"),T$e=o(function(){return _t.records.commits},"getCommits"),Zce=o(function(){let t=[..._t.records.commits.values()];return t.forEach(function(e){Y.debug(e.id)}),t.sort((e,r)=>e.seq-r.seq),t},"getCommitsArray"),k$e=o(function(){return _t.records.currBranch},"getCurrentBranch"),E$e=o(function(){return _t.records.direction},"getDirection"),S$e=o(function(){return _t.records.head},"getHead"),o6={commitType:Kr,getConfig:Ep,setDirection:h$e,setOptions:f$e,getOptions:d$e,commit:p$e,branch:m$e,merge:g$e,cherryPick:y$e,checkout:Kce,prettyPrint:v$e,clear:x$e,getBranchesAsObjArray:b$e,getBranches:w$e,getCommits:T$e,getCommitsArray:Zce,getCurrentBranch:k$e,getDirection:E$e,getHead:S$e,setAccTitle:Lr,getAccTitle:Rr,getAccDescription:Mr,setAccDescription:Nr,setDiagramTitle:$r,getDiagramTitle:Ir}});var C$e,A$e,_$e,D$e,L$e,R$e,N$e,Jce,eue=N(()=>{"use strict";kp();vt();T1();GI();a6();C$e=o((t,e)=>{$c(t,e),t.dir&&e.setDirection(t.dir);for(let r of t.statements)A$e(r,e)},"populate"),A$e=o((t,e)=>{let n={Commit:o(i=>e.commit(_$e(i)),"Commit"),Branch:o(i=>e.branch(D$e(i)),"Branch"),Merge:o(i=>e.merge(L$e(i)),"Merge"),Checkout:o(i=>e.checkout(R$e(i)),"Checkout"),CherryPicking:o(i=>e.cherryPick(N$e(i)),"CherryPicking")}[t.$type];n?n(t):Y.error(`Unknown statement type: ${t.$type}`)},"parseStatement"),_$e=o(t=>({id:t.id,msg:t.message??"",type:t.type!==void 0?Kr[t.type]:Kr.NORMAL,tags:t.tags??void 0}),"parseCommit"),D$e=o(t=>({name:t.name,order:t.order??0}),"parseBranch"),L$e=o(t=>({branch:t.branch,id:t.id??"",type:t.type!==void 0?Kr[t.type]:void 0,tags:t.tags??void 0}),"parseMerge"),R$e=o(t=>t.branch,"parseCheckout"),N$e=o(t=>({id:t.id,targetId:"",tags:t.tags?.length===0?void 0:t.tags,parent:t.parent}),"parseCherryPicking"),Jce={parse:o(async t=>{let e=await uo("gitGraph",t);Y.debug(e),C$e(e,o6)},"parse")}});var M$e,Ko,gf,yf,zc,qu,Sp,Gs,Vs,l6,db,c6,mf,Br,I$e,rue,nue,O$e,P$e,B$e,F$e,$$e,z$e,G$e,V$e,U$e,H$e,W$e,q$e,tue,Y$e,pb,X$e,j$e,K$e,Q$e,Z$e,iue,aue=N(()=>{"use strict";dr();zt();vt();ir();a6();M$e=me(),Ko=M$e?.gitGraph,gf=10,yf=40,zc=4,qu=2,Sp=8,Gs=new Map,Vs=new Map,l6=30,db=new Map,c6=[],mf=0,Br="LR",I$e=o(()=>{Gs.clear(),Vs.clear(),db.clear(),mf=0,c6=[],Br="LR"},"clear"),rue=o(t=>{let e=document.createElementNS("http://www.w3.org/2000/svg","text");return(typeof t=="string"?t.split(/\\n|\n|/gi):t).forEach(n=>{let i=document.createElementNS("http://www.w3.org/2000/svg","tspan");i.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),i.setAttribute("dy","1em"),i.setAttribute("x","0"),i.setAttribute("class","row"),i.textContent=n.trim(),e.appendChild(i)}),e},"drawText"),nue=o(t=>{let e,r,n;return Br==="BT"?(r=o((i,a)=>i<=a,"comparisonFunc"),n=1/0):(r=o((i,a)=>i>=a,"comparisonFunc"),n=0),t.forEach(i=>{let a=Br==="TB"||Br=="BT"?Vs.get(i)?.y:Vs.get(i)?.x;a!==void 0&&r(a,n)&&(e=i,n=a)}),e},"findClosestParent"),O$e=o(t=>{let e="",r=1/0;return t.forEach(n=>{let i=Vs.get(n).y;i<=r&&(e=n,r=i)}),e||void 0},"findClosestParentBT"),P$e=o((t,e,r)=>{let n=r,i=r,a=[];t.forEach(s=>{let l=e.get(s);if(!l)throw new Error(`Commit not found for key ${s}`);l.parents.length?(n=F$e(l),i=Math.max(n,i)):a.push(l),$$e(l,n)}),n=i,a.forEach(s=>{z$e(s,n,r)}),t.forEach(s=>{let l=e.get(s);if(l?.parents.length){let u=O$e(l.parents);n=Vs.get(u).y-yf,n<=i&&(i=n);let h=Gs.get(l.branch).pos,f=n-gf;Vs.set(l.id,{x:h,y:f})}})},"setParallelBTPos"),B$e=o(t=>{let e=nue(t.parents.filter(n=>n!==null));if(!e)throw new Error(`Closest parent not found for commit ${t.id}`);let r=Vs.get(e)?.y;if(r===void 0)throw new Error(`Closest parent position not found for commit ${t.id}`);return r},"findClosestParentPos"),F$e=o(t=>B$e(t)+yf,"calculateCommitPosition"),$$e=o((t,e)=>{let r=Gs.get(t.branch);if(!r)throw new Error(`Branch not found for commit ${t.id}`);let n=r.pos,i=e+gf;return Vs.set(t.id,{x:n,y:i}),{x:n,y:i}},"setCommitPosition"),z$e=o((t,e,r)=>{let n=Gs.get(t.branch);if(!n)throw new Error(`Branch not found for commit ${t.id}`);let i=e+r,a=n.pos;Vs.set(t.id,{x:a,y:i})},"setRootPosition"),G$e=o((t,e,r,n,i,a)=>{if(a===Kr.HIGHLIGHT)t.append("rect").attr("x",r.x-10).attr("y",r.y-10).attr("width",20).attr("height",20).attr("class",`commit ${e.id} commit-highlight${i%Sp} ${n}-outer`),t.append("rect").attr("x",r.x-6).attr("y",r.y-6).attr("width",12).attr("height",12).attr("class",`commit ${e.id} commit${i%Sp} ${n}-inner`);else if(a===Kr.CHERRY_PICK)t.append("circle").attr("cx",r.x).attr("cy",r.y).attr("r",10).attr("class",`commit ${e.id} ${n}`),t.append("circle").attr("cx",r.x-3).attr("cy",r.y+2).attr("r",2.75).attr("fill","#fff").attr("class",`commit ${e.id} ${n}`),t.append("circle").attr("cx",r.x+3).attr("cy",r.y+2).attr("r",2.75).attr("fill","#fff").attr("class",`commit ${e.id} ${n}`),t.append("line").attr("x1",r.x+3).attr("y1",r.y+1).attr("x2",r.x).attr("y2",r.y-5).attr("stroke","#fff").attr("class",`commit ${e.id} ${n}`),t.append("line").attr("x1",r.x-3).attr("y1",r.y+1).attr("x2",r.x).attr("y2",r.y-5).attr("stroke","#fff").attr("class",`commit ${e.id} ${n}`);else{let s=t.append("circle");if(s.attr("cx",r.x),s.attr("cy",r.y),s.attr("r",e.type===Kr.MERGE?9:10),s.attr("class",`commit ${e.id} commit${i%Sp}`),a===Kr.MERGE){let l=t.append("circle");l.attr("cx",r.x),l.attr("cy",r.y),l.attr("r",6),l.attr("class",`commit ${n} ${e.id} commit${i%Sp}`)}a===Kr.REVERSE&&t.append("path").attr("d",`M ${r.x-5},${r.y-5}L${r.x+5},${r.y+5}M${r.x-5},${r.y+5}L${r.x+5},${r.y-5}`).attr("class",`commit ${n} ${e.id} commit${i%Sp}`)}},"drawCommitBullet"),V$e=o((t,e,r,n)=>{if(e.type!==Kr.CHERRY_PICK&&(e.customId&&e.type===Kr.MERGE||e.type!==Kr.MERGE)&&Ko?.showCommitLabel){let i=t.append("g"),a=i.insert("rect").attr("class","commit-label-bkg"),s=i.append("text").attr("x",n).attr("y",r.y+25).attr("class","commit-label").text(e.id),l=s.node()?.getBBox();if(l&&(a.attr("x",r.posWithOffset-l.width/2-qu).attr("y",r.y+13.5).attr("width",l.width+2*qu).attr("height",l.height+2*qu),Br==="TB"||Br==="BT"?(a.attr("x",r.x-(l.width+4*zc+5)).attr("y",r.y-12),s.attr("x",r.x-(l.width+4*zc)).attr("y",r.y+l.height-12)):s.attr("x",r.posWithOffset-l.width/2),Ko.rotateCommitLabel))if(Br==="TB"||Br==="BT")s.attr("transform","rotate(-45, "+r.x+", "+r.y+")"),a.attr("transform","rotate(-45, "+r.x+", "+r.y+")");else{let u=-7.5-(l.width+10)/25*9.5,h=10+l.width/25*8.5;i.attr("transform","translate("+u+", "+h+") rotate(-45, "+n+", "+r.y+")")}}},"drawCommitLabel"),U$e=o((t,e,r,n)=>{if(e.tags.length>0){let i=0,a=0,s=0,l=[];for(let u of e.tags.reverse()){let h=t.insert("polygon"),f=t.append("circle"),d=t.append("text").attr("y",r.y-16-i).attr("class","tag-label").text(u),p=d.node()?.getBBox();if(!p)throw new Error("Tag bbox not found");a=Math.max(a,p.width),s=Math.max(s,p.height),d.attr("x",r.posWithOffset-p.width/2),l.push({tag:d,hole:f,rect:h,yOffset:i}),i+=20}for(let{tag:u,hole:h,rect:f,yOffset:d}of l){let p=s/2,m=r.y-19.2-d;if(f.attr("class","tag-label-bkg").attr("points",` + ${n-a/2-zc/2},${m+qu} + ${n-a/2-zc/2},${m-qu} + ${r.posWithOffset-a/2-zc},${m-p-qu} + ${r.posWithOffset+a/2+zc},${m-p-qu} + ${r.posWithOffset+a/2+zc},${m+p+qu} + ${r.posWithOffset-a/2-zc},${m+p+qu}`),h.attr("cy",m).attr("cx",n-a/2+zc/2).attr("r",1.5).attr("class","tag-hole"),Br==="TB"||Br==="BT"){let g=n+d;f.attr("class","tag-label-bkg").attr("points",` + ${r.x},${g+2} + ${r.x},${g-2} + ${r.x+gf},${g-p-2} + ${r.x+gf+a+4},${g-p-2} + ${r.x+gf+a+4},${g+p+2} + ${r.x+gf},${g+p+2}`).attr("transform","translate(12,12) rotate(45, "+r.x+","+n+")"),h.attr("cx",r.x+zc/2).attr("cy",g).attr("transform","translate(12,12) rotate(45, "+r.x+","+n+")"),u.attr("x",r.x+5).attr("y",g+3).attr("transform","translate(14,14) rotate(45, "+r.x+","+n+")")}}}},"drawCommitTags"),H$e=o(t=>{switch(t.customType??t.type){case Kr.NORMAL:return"commit-normal";case Kr.REVERSE:return"commit-reverse";case Kr.HIGHLIGHT:return"commit-highlight";case Kr.MERGE:return"commit-merge";case Kr.CHERRY_PICK:return"commit-cherry-pick";default:return"commit-normal"}},"getCommitClassType"),W$e=o((t,e,r,n)=>{let i={x:0,y:0};if(t.parents.length>0){let a=nue(t.parents);if(a){let s=n.get(a)??i;return e==="TB"?s.y+yf:e==="BT"?(n.get(t.id)??i).y-yf:s.x+yf}}else return e==="TB"?l6:e==="BT"?(n.get(t.id)??i).y-yf:0;return 0},"calculatePosition"),q$e=o((t,e,r)=>{let n=Br==="BT"&&r?e:e+gf,i=Br==="TB"||Br==="BT"?n:Gs.get(t.branch)?.pos,a=Br==="TB"||Br==="BT"?Gs.get(t.branch)?.pos:n;if(a===void 0||i===void 0)throw new Error(`Position were undefined for commit ${t.id}`);return{x:a,y:i,posWithOffset:n}},"getCommitPosition"),tue=o((t,e,r)=>{if(!Ko)throw new Error("GitGraph config not found");let n=t.append("g").attr("class","commit-bullets"),i=t.append("g").attr("class","commit-labels"),a=Br==="TB"||Br==="BT"?l6:0,s=[...e.keys()],l=Ko?.parallelCommits??!1,u=o((f,d)=>{let p=e.get(f)?.seq,m=e.get(d)?.seq;return p!==void 0&&m!==void 0?p-m:0},"sortKeys"),h=s.sort(u);Br==="BT"&&(l&&P$e(h,e,a),h=h.reverse()),h.forEach(f=>{let d=e.get(f);if(!d)throw new Error(`Commit not found for key ${f}`);l&&(a=W$e(d,Br,a,Vs));let p=q$e(d,a,l);if(r){let m=H$e(d),g=d.customType??d.type,y=Gs.get(d.branch)?.index??0;G$e(n,d,p,m,y,g),V$e(i,d,p,a),U$e(i,d,p,a)}Br==="TB"||Br==="BT"?Vs.set(d.id,{x:p.x,y:p.posWithOffset}):Vs.set(d.id,{x:p.posWithOffset,y:p.y}),a=Br==="BT"&&l?a+yf:a+yf+gf,a>mf&&(mf=a)})},"drawCommits"),Y$e=o((t,e,r,n,i)=>{let s=(Br==="TB"||Br==="BT"?r.xh.branch===s,"isOnBranchToGetCurve"),u=o(h=>h.seq>t.seq&&h.sequ(h)&&l(h))},"shouldRerouteArrow"),pb=o((t,e,r=0)=>{let n=t+Math.abs(t-e)/2;if(r>5)return n;if(c6.every(s=>Math.abs(s-n)>=10))return c6.push(n),n;let a=Math.abs(t-e);return pb(t,e-a/5,r+1)},"findLane"),X$e=o((t,e,r,n)=>{let i=Vs.get(e.id),a=Vs.get(r.id);if(i===void 0||a===void 0)throw new Error(`Commit positions not found for commits ${e.id} and ${r.id}`);let s=Y$e(e,r,i,a,n),l="",u="",h=0,f=0,d=Gs.get(r.branch)?.index;r.type===Kr.MERGE&&e.id!==r.parents[0]&&(d=Gs.get(e.branch)?.index);let p;if(s){l="A 10 10, 0, 0, 0,",u="A 10 10, 0, 0, 1,",h=10,f=10;let m=i.ya.x&&(l="A 20 20, 0, 0, 0,",u="A 20 20, 0, 0, 1,",h=20,f=20,r.type===Kr.MERGE&&e.id!==r.parents[0]?p=`M ${i.x} ${i.y} L ${i.x} ${a.y-h} ${u} ${i.x-f} ${a.y} L ${a.x} ${a.y}`:p=`M ${i.x} ${i.y} L ${a.x+h} ${i.y} ${l} ${a.x} ${i.y+f} L ${a.x} ${a.y}`),i.x===a.x&&(p=`M ${i.x} ${i.y} L ${a.x} ${a.y}`)):Br==="BT"?(i.xa.x&&(l="A 20 20, 0, 0, 0,",u="A 20 20, 0, 0, 1,",h=20,f=20,r.type===Kr.MERGE&&e.id!==r.parents[0]?p=`M ${i.x} ${i.y} L ${i.x} ${a.y+h} ${l} ${i.x-f} ${a.y} L ${a.x} ${a.y}`:p=`M ${i.x} ${i.y} L ${a.x-h} ${i.y} ${l} ${a.x} ${i.y-f} L ${a.x} ${a.y}`),i.x===a.x&&(p=`M ${i.x} ${i.y} L ${a.x} ${a.y}`)):(i.ya.y&&(r.type===Kr.MERGE&&e.id!==r.parents[0]?p=`M ${i.x} ${i.y} L ${a.x-h} ${i.y} ${l} ${a.x} ${i.y-f} L ${a.x} ${a.y}`:p=`M ${i.x} ${i.y} L ${i.x} ${a.y+h} ${u} ${i.x+f} ${a.y} L ${a.x} ${a.y}`),i.y===a.y&&(p=`M ${i.x} ${i.y} L ${a.x} ${a.y}`));if(p===void 0)throw new Error("Line definition not found");t.append("path").attr("d",p).attr("class","arrow arrow"+d%Sp)},"drawArrow"),j$e=o((t,e)=>{let r=t.append("g").attr("class","commit-arrows");[...e.keys()].forEach(n=>{let i=e.get(n);i.parents&&i.parents.length>0&&i.parents.forEach(a=>{X$e(r,e.get(a),i,e)})})},"drawArrows"),K$e=o((t,e)=>{let r=t.append("g");e.forEach((n,i)=>{let a=i%Sp,s=Gs.get(n.name)?.pos;if(s===void 0)throw new Error(`Position not found for branch ${n.name}`);let l=r.append("line");l.attr("x1",0),l.attr("y1",s),l.attr("x2",mf),l.attr("y2",s),l.attr("class","branch branch"+a),Br==="TB"?(l.attr("y1",l6),l.attr("x1",s),l.attr("y2",mf),l.attr("x2",s)):Br==="BT"&&(l.attr("y1",mf),l.attr("x1",s),l.attr("y2",l6),l.attr("x2",s)),c6.push(s);let u=n.name,h=rue(u),f=r.insert("rect"),p=r.insert("g").attr("class","branchLabel").insert("g").attr("class","label branch-label"+a);p.node().appendChild(h);let m=h.getBBox();f.attr("class","branchLabelBkg label"+a).attr("rx",4).attr("ry",4).attr("x",-m.width-4-(Ko?.rotateCommitLabel===!0?30:0)).attr("y",-m.height/2+8).attr("width",m.width+18).attr("height",m.height+4),p.attr("transform","translate("+(-m.width-14-(Ko?.rotateCommitLabel===!0?30:0))+", "+(s-m.height/2-1)+")"),Br==="TB"?(f.attr("x",s-m.width/2-10).attr("y",0),p.attr("transform","translate("+(s-m.width/2-5)+", 0)")):Br==="BT"?(f.attr("x",s-m.width/2-10).attr("y",mf),p.attr("transform","translate("+(s-m.width/2-5)+", "+mf+")")):f.attr("transform","translate(-19, "+(s-m.height/2)+")")})},"drawBranches"),Q$e=o(function(t,e,r,n,i){return Gs.set(t,{pos:e,index:r}),e+=50+(i?40:0)+(Br==="TB"||Br==="BT"?n.width/2:0),e},"setBranchPosition"),Z$e=o(function(t,e,r,n){if(I$e(),Y.debug("in gitgraph renderer",t+` +`,"id:",e,r),!Ko)throw new Error("GitGraph config not found");let i=Ko.rotateCommitLabel??!1,a=n.db;db=a.getCommits();let s=a.getBranchesAsObjArray();Br=a.getDirection();let l=Ge(`[id="${e}"]`),u=0;s.forEach((h,f)=>{let d=rue(h.name),p=l.append("g"),m=p.insert("g").attr("class","branchLabel"),g=m.insert("g").attr("class","label branch-label");g.node()?.appendChild(d);let y=d.getBBox();u=Q$e(h.name,u,f,y,i),g.remove(),m.remove(),p.remove()}),tue(l,db,!1),Ko.showBranches&&K$e(l,s),j$e(l,db),tue(l,db,!0),Gt.insertTitle(l,"gitTitleText",Ko.titleTopMargin??0,a.getDiagramTitle()),oA(void 0,l,Ko.diagramPadding,Ko.useMaxWidth)},"draw"),iue={draw:Z$e}});var J$e,sue,oue=N(()=>{"use strict";J$e=o(t=>` + .commit-id, + .commit-msg, + .branch-label { + fill: lightgrey; + color: lightgrey; + font-family: 'trebuchet ms', verdana, arial, sans-serif; + font-family: var(--mermaid-font-family); + } + ${[0,1,2,3,4,5,6,7].map(e=>` + .branch-label${e} { fill: ${t["gitBranchLabel"+e]}; } + .commit${e} { stroke: ${t["git"+e]}; fill: ${t["git"+e]}; } + .commit-highlight${e} { stroke: ${t["gitInv"+e]}; fill: ${t["gitInv"+e]}; } + .label${e} { fill: ${t["git"+e]}; } + .arrow${e} { stroke: ${t["git"+e]}; } + `).join(` +`)} + + .branch { + stroke-width: 1; + stroke: ${t.lineColor}; + stroke-dasharray: 2; + } + .commit-label { font-size: ${t.commitLabelFontSize}; fill: ${t.commitLabelColor};} + .commit-label-bkg { font-size: ${t.commitLabelFontSize}; fill: ${t.commitLabelBackground}; opacity: 0.5; } + .tag-label { font-size: ${t.tagLabelFontSize}; fill: ${t.tagLabelColor};} + .tag-label-bkg { fill: ${t.tagLabelBackground}; stroke: ${t.tagLabelBorder}; } + .tag-hole { fill: ${t.textColor}; } + + .commit-merge { + stroke: ${t.primaryColor}; + fill: ${t.primaryColor}; + } + .commit-reverse { + stroke: ${t.primaryColor}; + fill: ${t.primaryColor}; + stroke-width: 3; + } + .commit-highlight-outer { + } + .commit-highlight-inner { + stroke: ${t.primaryColor}; + fill: ${t.primaryColor}; + } + + .arrow { stroke-width: 8; stroke-linecap: round; fill: none} + .gitTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${t.textColor}; + } +`,"getStyles"),sue=J$e});var lue={};hr(lue,{diagram:()=>eze});var eze,cue=N(()=>{"use strict";eue();GI();aue();oue();eze={parser:Jce,db:o6,renderer:iue,styles:sue}});var VI,fue,due=N(()=>{"use strict";VI=function(){var t=o(function(L,R,O,M){for(O=O||{},M=L.length;M--;O[L[M]]=R);return O},"o"),e=[6,8,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,31,33,35,36,38,40],r=[1,26],n=[1,27],i=[1,28],a=[1,29],s=[1,30],l=[1,31],u=[1,32],h=[1,33],f=[1,34],d=[1,9],p=[1,10],m=[1,11],g=[1,12],y=[1,13],v=[1,14],x=[1,15],b=[1,16],w=[1,19],C=[1,20],T=[1,21],E=[1,22],A=[1,23],S=[1,25],_=[1,35],I={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,gantt:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NL:10,weekday:11,weekday_monday:12,weekday_tuesday:13,weekday_wednesday:14,weekday_thursday:15,weekday_friday:16,weekday_saturday:17,weekday_sunday:18,weekend:19,weekend_friday:20,weekend_saturday:21,dateFormat:22,inclusiveEndDates:23,topAxis:24,axisFormat:25,tickInterval:26,excludes:27,includes:28,todayMarker:29,title:30,acc_title:31,acc_title_value:32,acc_descr:33,acc_descr_value:34,acc_descr_multiline_value:35,section:36,clickStatement:37,taskTxt:38,taskData:39,click:40,callbackname:41,callbackargs:42,href:43,clickStatementDebug:44,$accept:0,$end:1},terminals_:{2:"error",4:"gantt",6:"EOF",8:"SPACE",10:"NL",12:"weekday_monday",13:"weekday_tuesday",14:"weekday_wednesday",15:"weekday_thursday",16:"weekday_friday",17:"weekday_saturday",18:"weekday_sunday",20:"weekend_friday",21:"weekend_saturday",22:"dateFormat",23:"inclusiveEndDates",24:"topAxis",25:"axisFormat",26:"tickInterval",27:"excludes",28:"includes",29:"todayMarker",30:"title",31:"acc_title",32:"acc_title_value",33:"acc_descr",34:"acc_descr_value",35:"acc_descr_multiline_value",36:"section",38:"taskTxt",39:"taskData",40:"click",41:"callbackname",42:"callbackargs",43:"href"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[11,1],[11,1],[11,1],[11,1],[11,1],[11,1],[11,1],[19,1],[19,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,1],[9,2],[37,2],[37,3],[37,3],[37,4],[37,3],[37,4],[37,2],[44,2],[44,3],[44,3],[44,4],[44,3],[44,4],[44,2]],performAction:o(function(R,O,M,B,F,P,z){var $=P.length-1;switch(F){case 1:return P[$-1];case 2:this.$=[];break;case 3:P[$-1].push(P[$]),this.$=P[$-1];break;case 4:case 5:this.$=P[$];break;case 6:case 7:this.$=[];break;case 8:B.setWeekday("monday");break;case 9:B.setWeekday("tuesday");break;case 10:B.setWeekday("wednesday");break;case 11:B.setWeekday("thursday");break;case 12:B.setWeekday("friday");break;case 13:B.setWeekday("saturday");break;case 14:B.setWeekday("sunday");break;case 15:B.setWeekend("friday");break;case 16:B.setWeekend("saturday");break;case 17:B.setDateFormat(P[$].substr(11)),this.$=P[$].substr(11);break;case 18:B.enableInclusiveEndDates(),this.$=P[$].substr(18);break;case 19:B.TopAxis(),this.$=P[$].substr(8);break;case 20:B.setAxisFormat(P[$].substr(11)),this.$=P[$].substr(11);break;case 21:B.setTickInterval(P[$].substr(13)),this.$=P[$].substr(13);break;case 22:B.setExcludes(P[$].substr(9)),this.$=P[$].substr(9);break;case 23:B.setIncludes(P[$].substr(9)),this.$=P[$].substr(9);break;case 24:B.setTodayMarker(P[$].substr(12)),this.$=P[$].substr(12);break;case 27:B.setDiagramTitle(P[$].substr(6)),this.$=P[$].substr(6);break;case 28:this.$=P[$].trim(),B.setAccTitle(this.$);break;case 29:case 30:this.$=P[$].trim(),B.setAccDescription(this.$);break;case 31:B.addSection(P[$].substr(8)),this.$=P[$].substr(8);break;case 33:B.addTask(P[$-1],P[$]),this.$="task";break;case 34:this.$=P[$-1],B.setClickEvent(P[$-1],P[$],null);break;case 35:this.$=P[$-2],B.setClickEvent(P[$-2],P[$-1],P[$]);break;case 36:this.$=P[$-2],B.setClickEvent(P[$-2],P[$-1],null),B.setLink(P[$-2],P[$]);break;case 37:this.$=P[$-3],B.setClickEvent(P[$-3],P[$-2],P[$-1]),B.setLink(P[$-3],P[$]);break;case 38:this.$=P[$-2],B.setClickEvent(P[$-2],P[$],null),B.setLink(P[$-2],P[$-1]);break;case 39:this.$=P[$-3],B.setClickEvent(P[$-3],P[$-1],P[$]),B.setLink(P[$-3],P[$-2]);break;case 40:this.$=P[$-1],B.setLink(P[$-1],P[$]);break;case 41:case 47:this.$=P[$-1]+" "+P[$];break;case 42:case 43:case 45:this.$=P[$-2]+" "+P[$-1]+" "+P[$];break;case 44:case 46:this.$=P[$-3]+" "+P[$-2]+" "+P[$-1]+" "+P[$];break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},t(e,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:17,12:r,13:n,14:i,15:a,16:s,17:l,18:u,19:18,20:h,21:f,22:d,23:p,24:m,25:g,26:y,27:v,28:x,29:b,30:w,31:C,33:T,35:E,36:A,37:24,38:S,40:_},t(e,[2,7],{1:[2,1]}),t(e,[2,3]),{9:36,11:17,12:r,13:n,14:i,15:a,16:s,17:l,18:u,19:18,20:h,21:f,22:d,23:p,24:m,25:g,26:y,27:v,28:x,29:b,30:w,31:C,33:T,35:E,36:A,37:24,38:S,40:_},t(e,[2,5]),t(e,[2,6]),t(e,[2,17]),t(e,[2,18]),t(e,[2,19]),t(e,[2,20]),t(e,[2,21]),t(e,[2,22]),t(e,[2,23]),t(e,[2,24]),t(e,[2,25]),t(e,[2,26]),t(e,[2,27]),{32:[1,37]},{34:[1,38]},t(e,[2,30]),t(e,[2,31]),t(e,[2,32]),{39:[1,39]},t(e,[2,8]),t(e,[2,9]),t(e,[2,10]),t(e,[2,11]),t(e,[2,12]),t(e,[2,13]),t(e,[2,14]),t(e,[2,15]),t(e,[2,16]),{41:[1,40],43:[1,41]},t(e,[2,4]),t(e,[2,28]),t(e,[2,29]),t(e,[2,33]),t(e,[2,34],{42:[1,42],43:[1,43]}),t(e,[2,40],{41:[1,44]}),t(e,[2,35],{43:[1,45]}),t(e,[2,36]),t(e,[2,38],{42:[1,46]}),t(e,[2,37]),t(e,[2,39])],defaultActions:{},parseError:o(function(R,O){if(O.recoverable)this.trace(R);else{var M=new Error(R);throw M.hash=O,M}},"parseError"),parse:o(function(R){var O=this,M=[0],B=[],F=[null],P=[],z=this.table,$="",H=0,Q=0,j=0,ie=2,ne=1,le=P.slice.call(arguments,1),he=Object.create(this.lexer),K={yy:{}};for(var X in this.yy)Object.prototype.hasOwnProperty.call(this.yy,X)&&(K.yy[X]=this.yy[X]);he.setInput(R,K.yy),K.yy.lexer=he,K.yy.parser=this,typeof he.yylloc>"u"&&(he.yylloc={});var te=he.yylloc;P.push(te);var J=he.options&&he.options.ranges;typeof K.yy.parseError=="function"?this.parseError=K.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function se(W){M.length=M.length-2*W,F.length=F.length-W,P.length=P.length-W}o(se,"popStack");function ue(){var W;return W=B.pop()||he.lex()||ne,typeof W!="number"&&(W instanceof Array&&(B=W,W=B.pop()),W=O.symbols_[W]||W),W}o(ue,"lex");for(var Z,Se,ce,ae,Oe,ge,ze={},He,$e,Re,Ie;;){if(ce=M[M.length-1],this.defaultActions[ce]?ae=this.defaultActions[ce]:((Z===null||typeof Z>"u")&&(Z=ue()),ae=z[ce]&&z[ce][Z]),typeof ae>"u"||!ae.length||!ae[0]){var be="";Ie=[];for(He in z[ce])this.terminals_[He]&&He>ie&&Ie.push("'"+this.terminals_[He]+"'");he.showPosition?be="Parse error on line "+(H+1)+`: +`+he.showPosition()+` +Expecting `+Ie.join(", ")+", got '"+(this.terminals_[Z]||Z)+"'":be="Parse error on line "+(H+1)+": Unexpected "+(Z==ne?"end of input":"'"+(this.terminals_[Z]||Z)+"'"),this.parseError(be,{text:he.match,token:this.terminals_[Z]||Z,line:he.yylineno,loc:te,expected:Ie})}if(ae[0]instanceof Array&&ae.length>1)throw new Error("Parse Error: multiple actions possible at state: "+ce+", token: "+Z);switch(ae[0]){case 1:M.push(Z),F.push(he.yytext),P.push(he.yylloc),M.push(ae[1]),Z=null,Se?(Z=Se,Se=null):(Q=he.yyleng,$=he.yytext,H=he.yylineno,te=he.yylloc,j>0&&j--);break;case 2:if($e=this.productions_[ae[1]][1],ze.$=F[F.length-$e],ze._$={first_line:P[P.length-($e||1)].first_line,last_line:P[P.length-1].last_line,first_column:P[P.length-($e||1)].first_column,last_column:P[P.length-1].last_column},J&&(ze._$.range=[P[P.length-($e||1)].range[0],P[P.length-1].range[1]]),ge=this.performAction.apply(ze,[$,Q,H,K.yy,ae[1],F,P].concat(le)),typeof ge<"u")return ge;$e&&(M=M.slice(0,-1*$e*2),F=F.slice(0,-1*$e),P=P.slice(0,-1*$e)),M.push(this.productions_[ae[1]][0]),F.push(ze.$),P.push(ze._$),Re=z[M[M.length-2]][M[M.length-1]],M.push(Re);break;case 3:return!0}}return!0},"parse")},D=function(){var L={EOF:1,parseError:o(function(O,M){if(this.yy.parser)this.yy.parser.parseError(O,M);else throw new Error(O)},"parseError"),setInput:o(function(R,O){return this.yy=O||this.yy||{},this._input=R,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var R=this._input[0];this.yytext+=R,this.yyleng++,this.offset++,this.match+=R,this.matched+=R;var O=R.match(/(?:\r\n?|\n).*/g);return O?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),R},"input"),unput:o(function(R){var O=R.length,M=R.split(/(?:\r\n?|\n)/g);this._input=R+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-O),this.offset-=O;var B=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),M.length-1&&(this.yylineno-=M.length-1);var F=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:M?(M.length===B.length?this.yylloc.first_column:0)+B[B.length-M.length].length-M[0].length:this.yylloc.first_column-O},this.options.ranges&&(this.yylloc.range=[F[0],F[0]+this.yyleng-O]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(R){this.unput(this.match.slice(R))},"less"),pastInput:o(function(){var R=this.matched.substr(0,this.matched.length-this.match.length);return(R.length>20?"...":"")+R.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var R=this.match;return R.length<20&&(R+=this._input.substr(0,20-R.length)),(R.substr(0,20)+(R.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var R=this.pastInput(),O=new Array(R.length+1).join("-");return R+this.upcomingInput()+` +`+O+"^"},"showPosition"),test_match:o(function(R,O){var M,B,F;if(this.options.backtrack_lexer&&(F={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(F.yylloc.range=this.yylloc.range.slice(0))),B=R[0].match(/(?:\r\n?|\n).*/g),B&&(this.yylineno+=B.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:B?B[B.length-1].length-B[B.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+R[0].length},this.yytext+=R[0],this.match+=R[0],this.matches=R,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(R[0].length),this.matched+=R[0],M=this.performAction.call(this,this.yy,this,O,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),M)return M;if(this._backtrack){for(var P in F)this[P]=F[P];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var R,O,M,B;this._more||(this.yytext="",this.match="");for(var F=this._currentRules(),P=0;PO[0].length)){if(O=M,B=P,this.options.backtrack_lexer){if(R=this.test_match(M,F[P]),R!==!1)return R;if(this._backtrack){O=!1;continue}else return!1}else if(!this.options.flex)break}return O?(R=this.test_match(O,F[B]),R!==!1?R:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var O=this.next();return O||this.lex()},"lex"),begin:o(function(O){this.conditionStack.push(O)},"begin"),popState:o(function(){var O=this.conditionStack.length-1;return O>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(O){return O=this.conditionStack.length-1-Math.abs(O||0),O>=0?this.conditionStack[O]:"INITIAL"},"topState"),pushState:o(function(O){this.begin(O)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(O,M,B,F){var P=F;switch(B){case 0:return this.begin("open_directive"),"open_directive";break;case 1:return this.begin("acc_title"),31;break;case 2:return this.popState(),"acc_title_value";break;case 3:return this.begin("acc_descr"),33;break;case 4:return this.popState(),"acc_descr_value";break;case 5:this.begin("acc_descr_multiline");break;case 6:this.popState();break;case 7:return"acc_descr_multiline_value";case 8:break;case 9:break;case 10:break;case 11:return 10;case 12:break;case 13:break;case 14:this.begin("href");break;case 15:this.popState();break;case 16:return 43;case 17:this.begin("callbackname");break;case 18:this.popState();break;case 19:this.popState(),this.begin("callbackargs");break;case 20:return 41;case 21:this.popState();break;case 22:return 42;case 23:this.begin("click");break;case 24:this.popState();break;case 25:return 40;case 26:return 4;case 27:return 22;case 28:return 23;case 29:return 24;case 30:return 25;case 31:return 26;case 32:return 28;case 33:return 27;case 34:return 29;case 35:return 12;case 36:return 13;case 37:return 14;case 38:return 15;case 39:return 16;case 40:return 17;case 41:return 18;case 42:return 20;case 43:return 21;case 44:return"date";case 45:return 30;case 46:return"accDescription";case 47:return 36;case 48:return 38;case 49:return 39;case 50:return":";case 51:return 6;case 52:return"INVALID"}},"anonymous"),rules:[/^(?:%%\{)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:%%(?!\{)*[^\n]*)/i,/^(?:[^\}]%%*[^\n]*)/i,/^(?:%%*[^\n]*[\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:%[^\n]*)/i,/^(?:href[\s]+["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:call[\s]+)/i,/^(?:\([\s]*\))/i,/^(?:\()/i,/^(?:[^(]*)/i,/^(?:\))/i,/^(?:[^)]*)/i,/^(?:click[\s]+)/i,/^(?:[\s\n])/i,/^(?:[^\s\n]*)/i,/^(?:gantt\b)/i,/^(?:dateFormat\s[^#\n;]+)/i,/^(?:inclusiveEndDates\b)/i,/^(?:topAxis\b)/i,/^(?:axisFormat\s[^#\n;]+)/i,/^(?:tickInterval\s[^#\n;]+)/i,/^(?:includes\s[^#\n;]+)/i,/^(?:excludes\s[^#\n;]+)/i,/^(?:todayMarker\s[^\n;]+)/i,/^(?:weekday\s+monday\b)/i,/^(?:weekday\s+tuesday\b)/i,/^(?:weekday\s+wednesday\b)/i,/^(?:weekday\s+thursday\b)/i,/^(?:weekday\s+friday\b)/i,/^(?:weekday\s+saturday\b)/i,/^(?:weekday\s+sunday\b)/i,/^(?:weekend\s+friday\b)/i,/^(?:weekend\s+saturday\b)/i,/^(?:\d\d\d\d-\d\d-\d\d\b)/i,/^(?:title\s[^\n]+)/i,/^(?:accDescription\s[^#\n;]+)/i,/^(?:section\s[^\n]+)/i,/^(?:[^:\n]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[6,7],inclusive:!1},acc_descr:{rules:[4],inclusive:!1},acc_title:{rules:[2],inclusive:!1},callbackargs:{rules:[21,22],inclusive:!1},callbackname:{rules:[18,19,20],inclusive:!1},href:{rules:[15,16],inclusive:!1},click:{rules:[24,25],inclusive:!1},INITIAL:{rules:[0,1,3,5,8,9,10,11,12,13,14,17,23,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52],inclusive:!0}}};return L}();I.lexer=D;function k(){this.yy={}}return o(k,"Parser"),k.prototype=I,I.Parser=k,new k}();VI.parser=VI;fue=VI});var pue=Mi((UI,HI)=>{"use strict";(function(t,e){typeof UI=="object"&&typeof HI<"u"?HI.exports=e():typeof define=="function"&&define.amd?define(e):(t=typeof globalThis<"u"?globalThis:t||self).dayjs_plugin_isoWeek=e()})(UI,function(){"use strict";var t="day";return function(e,r,n){var i=o(function(l){return l.add(4-l.isoWeekday(),t)},"a"),a=r.prototype;a.isoWeekYear=function(){return i(this).year()},a.isoWeek=function(l){if(!this.$utils().u(l))return this.add(7*(l-this.isoWeek()),t);var u,h,f,d,p=i(this),m=(u=this.isoWeekYear(),h=this.$u,f=(h?n.utc:n)().year(u).startOf("year"),d=4-f.isoWeekday(),f.isoWeekday()>4&&(d+=7),f.add(d,t));return p.diff(m,"week")+1},a.isoWeekday=function(l){return this.$utils().u(l)?this.day()||7:this.day(this.day()%7?l:l-7)};var s=a.startOf;a.startOf=function(l,u){var h=this.$utils(),f=!!h.u(u)||u;return h.p(l)==="isoweek"?f?this.date(this.date()-(this.isoWeekday()-1)).startOf("day"):this.date(this.date()-1-(this.isoWeekday()-1)+7).endOf("day"):s.bind(this)(l,u)}}})});var mue=Mi((WI,qI)=>{"use strict";(function(t,e){typeof WI=="object"&&typeof qI<"u"?qI.exports=e():typeof define=="function"&&define.amd?define(e):(t=typeof globalThis<"u"?globalThis:t||self).dayjs_plugin_customParseFormat=e()})(WI,function(){"use strict";var t={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},e=/(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g,r=/\d/,n=/\d\d/,i=/\d\d?/,a=/\d*[^-_:/,()\s\d]+/,s={},l=o(function(g){return(g=+g)+(g>68?1900:2e3)},"a"),u=o(function(g){return function(y){this[g]=+y}},"f"),h=[/[+-]\d\d:?(\d\d)?|Z/,function(g){(this.zone||(this.zone={})).offset=function(y){if(!y||y==="Z")return 0;var v=y.match(/([+-]|\d\d)/g),x=60*v[1]+(+v[2]||0);return x===0?0:v[0]==="+"?-x:x}(g)}],f=o(function(g){var y=s[g];return y&&(y.indexOf?y:y.s.concat(y.f))},"u"),d=o(function(g,y){var v,x=s.meridiem;if(x){for(var b=1;b<=24;b+=1)if(g.indexOf(x(b,0,y))>-1){v=b>12;break}}else v=g===(y?"pm":"PM");return v},"d"),p={A:[a,function(g){this.afternoon=d(g,!1)}],a:[a,function(g){this.afternoon=d(g,!0)}],Q:[r,function(g){this.month=3*(g-1)+1}],S:[r,function(g){this.milliseconds=100*+g}],SS:[n,function(g){this.milliseconds=10*+g}],SSS:[/\d{3}/,function(g){this.milliseconds=+g}],s:[i,u("seconds")],ss:[i,u("seconds")],m:[i,u("minutes")],mm:[i,u("minutes")],H:[i,u("hours")],h:[i,u("hours")],HH:[i,u("hours")],hh:[i,u("hours")],D:[i,u("day")],DD:[n,u("day")],Do:[a,function(g){var y=s.ordinal,v=g.match(/\d+/);if(this.day=v[0],y)for(var x=1;x<=31;x+=1)y(x).replace(/\[|\]/g,"")===g&&(this.day=x)}],w:[i,u("week")],ww:[n,u("week")],M:[i,u("month")],MM:[n,u("month")],MMM:[a,function(g){var y=f("months"),v=(f("monthsShort")||y.map(function(x){return x.slice(0,3)})).indexOf(g)+1;if(v<1)throw new Error;this.month=v%12||v}],MMMM:[a,function(g){var y=f("months").indexOf(g)+1;if(y<1)throw new Error;this.month=y%12||y}],Y:[/[+-]?\d+/,u("year")],YY:[n,function(g){this.year=l(g)}],YYYY:[/\d{4}/,u("year")],Z:h,ZZ:h};function m(g){var y,v;y=g,v=s&&s.formats;for(var x=(g=y.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(S,_,I){var D=I&&I.toUpperCase();return _||v[I]||t[I]||v[D].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(k,L,R){return L||R.slice(1)})})).match(e),b=x.length,w=0;w-1)return new Date((M==="X"?1e3:1)*O);var P=m(M)(O),z=P.year,$=P.month,H=P.day,Q=P.hours,j=P.minutes,ie=P.seconds,ne=P.milliseconds,le=P.zone,he=P.week,K=new Date,X=H||(z||$?1:K.getDate()),te=z||K.getFullYear(),J=0;z&&!$||(J=$>0?$-1:K.getMonth());var se,ue=Q||0,Z=j||0,Se=ie||0,ce=ne||0;return le?new Date(Date.UTC(te,J,X,ue,Z,Se,ce+60*le.offset*1e3)):B?new Date(Date.UTC(te,J,X,ue,Z,Se,ce)):(se=new Date(te,J,X,ue,Z,Se,ce),he&&(se=F(se).week(he).toDate()),se)}catch{return new Date("")}}(C,A,T,v),this.init(),D&&D!==!0&&(this.$L=this.locale(D).$L),I&&C!=this.format(A)&&(this.$d=new Date("")),s={}}else if(A instanceof Array)for(var k=A.length,L=1;L<=k;L+=1){E[1]=A[L-1];var R=v.apply(this,E);if(R.isValid()){this.$d=R.$d,this.$L=R.$L,this.init();break}L===k&&(this.$d=new Date(""))}else b.call(this,w)}}})});var gue=Mi((YI,XI)=>{"use strict";(function(t,e){typeof YI=="object"&&typeof XI<"u"?XI.exports=e():typeof define=="function"&&define.amd?define(e):(t=typeof globalThis<"u"?globalThis:t||self).dayjs_plugin_advancedFormat=e()})(YI,function(){"use strict";return function(t,e){var r=e.prototype,n=r.format;r.format=function(i){var a=this,s=this.$locale();if(!this.isValid())return n.bind(this)(i);var l=this.$utils(),u=(i||"YYYY-MM-DDTHH:mm:ssZ").replace(/\[([^\]]+)]|Q|wo|ww|w|WW|W|zzz|z|gggg|GGGG|Do|X|x|k{1,2}|S/g,function(h){switch(h){case"Q":return Math.ceil((a.$M+1)/3);case"Do":return s.ordinal(a.$D);case"gggg":return a.weekYear();case"GGGG":return a.isoWeekYear();case"wo":return s.ordinal(a.week(),"W");case"w":case"ww":return l.s(a.week(),h==="w"?1:2,"0");case"W":case"WW":return l.s(a.isoWeek(),h==="W"?1:2,"0");case"k":case"kk":return l.s(String(a.$H===0?24:a.$H),h==="k"?1:2,"0");case"X":return Math.floor(a.$d.getTime()/1e3);case"x":return a.$d.getTime();case"z":return"["+a.offsetName()+"]";case"zzz":return"["+a.offsetName("long")+"]";default:return h}});return n.bind(this)(u)}}})});function Nue(t,e,r){let n=!0;for(;n;)n=!1,r.forEach(function(i){let a="^\\s*"+i+"\\s*$",s=new RegExp(a);t[0].match(s)&&(e[i]=!0,t.shift(1),n=!0)})}var xue,ho,bue,wue,Tue,yue,Gc,ZI,JI,eO,mb,gb,tO,rO,f6,E1,nO,kue,iO,yb,aO,sO,d6,jI,ize,aze,sze,oze,lze,cze,uze,hze,fze,dze,pze,mze,gze,yze,vze,xze,bze,wze,Tze,kze,Eze,Sze,Cze,Eue,Aze,_ze,Dze,Sue,Lze,KI,Cue,Aue,u6,k1,Rze,Nze,QI,h6,Gi,_ue,Mze,Cp,Ize,vue,Oze,Due,Pze,Lue,Bze,Fze,Rue,Mue=N(()=>{"use strict";xue=Sa(z0(),1),ho=Sa(R4(),1),bue=Sa(pue(),1),wue=Sa(mue(),1),Tue=Sa(gue(),1);vt();zt();ir();mi();ho.default.extend(bue.default);ho.default.extend(wue.default);ho.default.extend(Tue.default);yue={friday:5,saturday:6},Gc="",ZI="",eO="",mb=[],gb=[],tO=new Map,rO=[],f6=[],E1="",nO="",kue=["active","done","crit","milestone"],iO=[],yb=!1,aO=!1,sO="sunday",d6="saturday",jI=0,ize=o(function(){rO=[],f6=[],E1="",iO=[],u6=0,QI=void 0,h6=void 0,Gi=[],Gc="",ZI="",nO="",JI=void 0,eO="",mb=[],gb=[],yb=!1,aO=!1,jI=0,tO=new Map,Ar(),sO="sunday",d6="saturday"},"clear"),aze=o(function(t){ZI=t},"setAxisFormat"),sze=o(function(){return ZI},"getAxisFormat"),oze=o(function(t){JI=t},"setTickInterval"),lze=o(function(){return JI},"getTickInterval"),cze=o(function(t){eO=t},"setTodayMarker"),uze=o(function(){return eO},"getTodayMarker"),hze=o(function(t){Gc=t},"setDateFormat"),fze=o(function(){yb=!0},"enableInclusiveEndDates"),dze=o(function(){return yb},"endDatesAreInclusive"),pze=o(function(){aO=!0},"enableTopAxis"),mze=o(function(){return aO},"topAxisEnabled"),gze=o(function(t){nO=t},"setDisplayMode"),yze=o(function(){return nO},"getDisplayMode"),vze=o(function(){return Gc},"getDateFormat"),xze=o(function(t){mb=t.toLowerCase().split(/[\s,]+/)},"setIncludes"),bze=o(function(){return mb},"getIncludes"),wze=o(function(t){gb=t.toLowerCase().split(/[\s,]+/)},"setExcludes"),Tze=o(function(){return gb},"getExcludes"),kze=o(function(){return tO},"getLinks"),Eze=o(function(t){E1=t,rO.push(t)},"addSection"),Sze=o(function(){return rO},"getSections"),Cze=o(function(){let t=vue(),e=10,r=0;for(;!t&&r[\d\w- ]+)/.exec(r);if(i!==null){let s=null;for(let u of i.groups.ids.split(" ")){let h=Cp(u);h!==void 0&&(!s||h.endTime>s.endTime)&&(s=h)}if(s)return s.endTime;let l=new Date;return l.setHours(0,0,0,0),l}let a=(0,ho.default)(r,e.trim(),!0);if(a.isValid())return a.toDate();{Y.debug("Invalid date:"+r),Y.debug("With date format:"+e.trim());let s=new Date(r);if(s===void 0||isNaN(s.getTime())||s.getFullYear()<-1e4||s.getFullYear()>1e4)throw new Error("Invalid date:"+r);return s}},"getStartDate"),Cue=o(function(t){let e=/^(\d+(?:\.\d+)?)([Mdhmswy]|ms)$/.exec(t.trim());return e!==null?[Number.parseFloat(e[1]),e[2]]:[NaN,"ms"]},"parseDuration"),Aue=o(function(t,e,r,n=!1){r=r.trim();let a=/^until\s+(?[\d\w- ]+)/.exec(r);if(a!==null){let f=null;for(let p of a.groups.ids.split(" ")){let m=Cp(p);m!==void 0&&(!f||m.startTime{window.open(r,"_self")}),tO.set(n,r))}),Due(t,"clickable")},"setLink"),Due=o(function(t,e){t.split(",").forEach(function(r){let n=Cp(r);n!==void 0&&n.classes.push(e)})},"setClass"),Pze=o(function(t,e,r){if(me().securityLevel!=="loose"||e===void 0)return;let n=[];if(typeof r=="string"){n=r.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let a=0;a{Gt.runFunc(e,...n)})},"setClickFun"),Lue=o(function(t,e){iO.push(function(){let r=document.querySelector(`[id="${t}"]`);r!==null&&r.addEventListener("click",function(){e()})},function(){let r=document.querySelector(`[id="${t}-text"]`);r!==null&&r.addEventListener("click",function(){e()})})},"pushFun"),Bze=o(function(t,e,r){t.split(",").forEach(function(n){Pze(n,e,r)}),Due(t,"clickable")},"setClickEvent"),Fze=o(function(t){iO.forEach(function(e){e(t)})},"bindFunctions"),Rue={getConfig:o(()=>me().gantt,"getConfig"),clear:ize,setDateFormat:hze,getDateFormat:vze,enableInclusiveEndDates:fze,endDatesAreInclusive:dze,enableTopAxis:pze,topAxisEnabled:mze,setAxisFormat:aze,getAxisFormat:sze,setTickInterval:oze,getTickInterval:lze,setTodayMarker:cze,getTodayMarker:uze,setAccTitle:Lr,getAccTitle:Rr,setDiagramTitle:$r,getDiagramTitle:Ir,setDisplayMode:gze,getDisplayMode:yze,setAccDescription:Nr,getAccDescription:Mr,addSection:Eze,getSections:Sze,getTasks:Cze,addTask:Mze,findTaskById:Cp,addTaskOrg:Ize,setIncludes:xze,getIncludes:bze,setExcludes:wze,getExcludes:Tze,setClickEvent:Bze,setLink:Oze,getLinks:kze,bindFunctions:Fze,parseDuration:Cue,isInvalidDate:Eue,setWeekday:Aze,getWeekday:_ze,setWeekend:Dze};o(Nue,"getTaskTags")});var p6,$ze,Iue,zze,Yu,Gze,Oue,Pue=N(()=>{"use strict";p6=Sa(R4(),1);vt();dr();gr();zt();Ei();$ze=o(function(){Y.debug("Something is calling, setConf, remove the call")},"setConf"),Iue={monday:Ch,tuesday:T5,wednesday:k5,thursday:oc,friday:E5,saturday:S5,sunday:yl},zze=o((t,e)=>{let r=[...t].map(()=>-1/0),n=[...t].sort((a,s)=>a.startTime-s.startTime||a.order-s.order),i=0;for(let a of n)for(let s=0;s=r[s]){r[s]=a.endTime,a.order=s+e,s>i&&(i=s);break}return i},"getMaxIntersections"),Gze=o(function(t,e,r,n){let i=me().gantt,a=me().securityLevel,s;a==="sandbox"&&(s=Ge("#i"+e));let l=a==="sandbox"?Ge(s.nodes()[0].contentDocument.body):Ge("body"),u=a==="sandbox"?s.nodes()[0].contentDocument:document,h=u.getElementById(e);Yu=h.parentElement.offsetWidth,Yu===void 0&&(Yu=1200),i.useWidth!==void 0&&(Yu=i.useWidth);let f=n.db.getTasks(),d=[];for(let S of f)d.push(S.type);d=A(d);let p={},m=2*i.topPadding;if(n.db.getDisplayMode()==="compact"||i.displayMode==="compact"){let S={};for(let I of f)S[I.section]===void 0?S[I.section]=[I]:S[I.section].push(I);let _=0;for(let I of Object.keys(S)){let D=zze(S[I],_)+1;_+=D,m+=D*(i.barHeight+i.barGap),p[I]=D}}else{m+=f.length*(i.barHeight+i.barGap);for(let S of d)p[S]=f.filter(_=>_.type===S).length}h.setAttribute("viewBox","0 0 "+Yu+" "+m);let g=l.select(`[id="${e}"]`),y=_5().domain([M3(f,function(S){return S.startTime}),N3(f,function(S){return S.endTime})]).rangeRound([0,Yu-i.leftPadding-i.rightPadding]);function v(S,_){let I=S.startTime,D=_.startTime,k=0;return I>D?k=1:Iz.order))].map(z=>S.find($=>$.order===z));g.append("g").selectAll("rect").data(M).enter().append("rect").attr("x",0).attr("y",function(z,$){return $=z.order,$*_+I-2}).attr("width",function(){return R-i.rightPadding/2}).attr("height",_).attr("class",function(z){for(let[$,H]of d.entries())if(z.type===H)return"section section"+$%i.numberSectionStyles;return"section section0"});let B=g.append("g").selectAll("rect").data(S).enter(),F=n.db.getLinks();if(B.append("rect").attr("id",function(z){return z.id}).attr("rx",3).attr("ry",3).attr("x",function(z){return z.milestone?y(z.startTime)+D+.5*(y(z.endTime)-y(z.startTime))-.5*k:y(z.startTime)+D}).attr("y",function(z,$){return $=z.order,$*_+I}).attr("width",function(z){return z.milestone?k:y(z.renderEndTime||z.endTime)-y(z.startTime)}).attr("height",k).attr("transform-origin",function(z,$){return $=z.order,(y(z.startTime)+D+.5*(y(z.endTime)-y(z.startTime))).toString()+"px "+($*_+I+.5*k).toString()+"px"}).attr("class",function(z){let $="task",H="";z.classes.length>0&&(H=z.classes.join(" "));let Q=0;for(let[ie,ne]of d.entries())z.type===ne&&(Q=ie%i.numberSectionStyles);let j="";return z.active?z.crit?j+=" activeCrit":j=" active":z.done?z.crit?j=" doneCrit":j=" done":z.crit&&(j+=" crit"),j.length===0&&(j=" task"),z.milestone&&(j=" milestone "+j),j+=Q,j+=" "+H,$+j}),B.append("text").attr("id",function(z){return z.id+"-text"}).text(function(z){return z.task}).attr("font-size",i.fontSize).attr("x",function(z){let $=y(z.startTime),H=y(z.renderEndTime||z.endTime);z.milestone&&($+=.5*(y(z.endTime)-y(z.startTime))-.5*k),z.milestone&&(H=$+k);let Q=this.getBBox().width;return Q>H-$?H+Q+1.5*i.leftPadding>R?$+D-5:H+D+5:(H-$)/2+$+D}).attr("y",function(z,$){return $=z.order,$*_+i.barHeight/2+(i.fontSize/2-2)+I}).attr("text-height",k).attr("class",function(z){let $=y(z.startTime),H=y(z.endTime);z.milestone&&(H=$+k);let Q=this.getBBox().width,j="";z.classes.length>0&&(j=z.classes.join(" "));let ie=0;for(let[le,he]of d.entries())z.type===he&&(ie=le%i.numberSectionStyles);let ne="";return z.active&&(z.crit?ne="activeCritText"+ie:ne="activeText"+ie),z.done?z.crit?ne=ne+" doneCritText"+ie:ne=ne+" doneText"+ie:z.crit&&(ne=ne+" critText"+ie),z.milestone&&(ne+=" milestoneText"),Q>H-$?H+Q+1.5*i.leftPadding>R?j+" taskTextOutsideLeft taskTextOutside"+ie+" "+ne:j+" taskTextOutsideRight taskTextOutside"+ie+" "+ne+" width-"+Q:j+" taskText taskText"+ie+" "+ne+" width-"+Q}),me().securityLevel==="sandbox"){let z;z=Ge("#i"+e);let $=z.nodes()[0].contentDocument;B.filter(function(H){return F.has(H.id)}).each(function(H){var Q=$.querySelector("#"+H.id),j=$.querySelector("#"+H.id+"-text");let ie=Q.parentNode;var ne=$.createElement("a");ne.setAttribute("xlink:href",F.get(H.id)),ne.setAttribute("target","_top"),ie.appendChild(ne),ne.appendChild(Q),ne.appendChild(j)})}}o(b,"drawRects");function w(S,_,I,D,k,L,R,O){if(R.length===0&&O.length===0)return;let M,B;for(let{startTime:Q,endTime:j}of L)(M===void 0||QB)&&(B=j);if(!M||!B)return;if((0,p6.default)(B).diff((0,p6.default)(M),"year")>5){Y.warn("The difference between the min and max time is more than 5 years. This will cause performance issues. Skipping drawing exclude days.");return}let F=n.db.getDateFormat(),P=[],z=null,$=(0,p6.default)(M);for(;$.valueOf()<=B;)n.db.isInvalidDate($,F,R,O)?z?z.end=$:z={start:$,end:$}:z&&(P.push(z),z=null),$=$.add(1,"d");g.append("g").selectAll("rect").data(P).enter().append("rect").attr("id",function(Q){return"exclude-"+Q.start.format("YYYY-MM-DD")}).attr("x",function(Q){return y(Q.start)+I}).attr("y",i.gridLineStartPadding).attr("width",function(Q){let j=Q.end.add(1,"day");return y(j)-y(Q.start)}).attr("height",k-_-i.gridLineStartPadding).attr("transform-origin",function(Q,j){return(y(Q.start)+I+.5*(y(Q.end)-y(Q.start))).toString()+"px "+(j*S+.5*k).toString()+"px"}).attr("class","exclude-range")}o(w,"drawExcludeDays");function C(S,_,I,D){let k=bA(y).tickSize(-D+_+i.gridLineStartPadding).tickFormat(wd(n.db.getAxisFormat()||i.axisFormat||"%Y-%m-%d")),R=/^([1-9]\d*)(millisecond|second|minute|hour|day|week|month)$/.exec(n.db.getTickInterval()||i.tickInterval);if(R!==null){let O=R[1],M=R[2],B=n.db.getWeekday()||i.weekday;switch(M){case"millisecond":k.ticks(ac.every(O));break;case"second":k.ticks(Ks.every(O));break;case"minute":k.ticks(vu.every(O));break;case"hour":k.ticks(xu.every(O));break;case"day":k.ticks(_o.every(O));break;case"week":k.ticks(Iue[B].every(O));break;case"month":k.ticks(bu.every(O));break}}if(g.append("g").attr("class","grid").attr("transform","translate("+S+", "+(D-50)+")").call(k).selectAll("text").style("text-anchor","middle").attr("fill","#000").attr("stroke","none").attr("font-size",10).attr("dy","1em"),n.db.topAxisEnabled()||i.topAxis){let O=xA(y).tickSize(-D+_+i.gridLineStartPadding).tickFormat(wd(n.db.getAxisFormat()||i.axisFormat||"%Y-%m-%d"));if(R!==null){let M=R[1],B=R[2],F=n.db.getWeekday()||i.weekday;switch(B){case"millisecond":O.ticks(ac.every(M));break;case"second":O.ticks(Ks.every(M));break;case"minute":O.ticks(vu.every(M));break;case"hour":O.ticks(xu.every(M));break;case"day":O.ticks(_o.every(M));break;case"week":O.ticks(Iue[F].every(M));break;case"month":O.ticks(bu.every(M));break}}g.append("g").attr("class","grid").attr("transform","translate("+S+", "+_+")").call(O).selectAll("text").style("text-anchor","middle").attr("fill","#000").attr("stroke","none").attr("font-size",10)}}o(C,"makeGrid");function T(S,_){let I=0,D=Object.keys(p).map(k=>[k,p[k]]);g.append("g").selectAll("text").data(D).enter().append(function(k){let L=k[0].split(Ze.lineBreakRegex),R=-(L.length-1)/2,O=u.createElementNS("http://www.w3.org/2000/svg","text");O.setAttribute("dy",R+"em");for(let[M,B]of L.entries()){let F=u.createElementNS("http://www.w3.org/2000/svg","tspan");F.setAttribute("alignment-baseline","central"),F.setAttribute("x","10"),M>0&&F.setAttribute("dy","1em"),F.textContent=B,O.appendChild(F)}return O}).attr("x",10).attr("y",function(k,L){if(L>0)for(let R=0;R{"use strict";Vze=o(t=>` + .mermaid-main-font { + font-family: ${t.fontFamily}; + } + + .exclude-range { + fill: ${t.excludeBkgColor}; + } + + .section { + stroke: none; + opacity: 0.2; + } + + .section0 { + fill: ${t.sectionBkgColor}; + } + + .section2 { + fill: ${t.sectionBkgColor2}; + } + + .section1, + .section3 { + fill: ${t.altSectionBkgColor}; + opacity: 0.2; + } + + .sectionTitle0 { + fill: ${t.titleColor}; + } + + .sectionTitle1 { + fill: ${t.titleColor}; + } + + .sectionTitle2 { + fill: ${t.titleColor}; + } + + .sectionTitle3 { + fill: ${t.titleColor}; + } + + .sectionTitle { + text-anchor: start; + font-family: ${t.fontFamily}; + } + + + /* Grid and axis */ + + .grid .tick { + stroke: ${t.gridColor}; + opacity: 0.8; + shape-rendering: crispEdges; + } + + .grid .tick text { + font-family: ${t.fontFamily}; + fill: ${t.textColor}; + } + + .grid path { + stroke-width: 0; + } + + + /* Today line */ + + .today { + fill: none; + stroke: ${t.todayLineColor}; + stroke-width: 2px; + } + + + /* Task styling */ + + /* Default task */ + + .task { + stroke-width: 2; + } + + .taskText { + text-anchor: middle; + font-family: ${t.fontFamily}; + } + + .taskTextOutsideRight { + fill: ${t.taskTextDarkColor}; + text-anchor: start; + font-family: ${t.fontFamily}; + } + + .taskTextOutsideLeft { + fill: ${t.taskTextDarkColor}; + text-anchor: end; + } + + + /* Special case clickable */ + + .task.clickable { + cursor: pointer; + } + + .taskText.clickable { + cursor: pointer; + fill: ${t.taskTextClickableColor} !important; + font-weight: bold; + } + + .taskTextOutsideLeft.clickable { + cursor: pointer; + fill: ${t.taskTextClickableColor} !important; + font-weight: bold; + } + + .taskTextOutsideRight.clickable { + cursor: pointer; + fill: ${t.taskTextClickableColor} !important; + font-weight: bold; + } + + + /* Specific task settings for the sections*/ + + .taskText0, + .taskText1, + .taskText2, + .taskText3 { + fill: ${t.taskTextColor}; + } + + .task0, + .task1, + .task2, + .task3 { + fill: ${t.taskBkgColor}; + stroke: ${t.taskBorderColor}; + } + + .taskTextOutside0, + .taskTextOutside2 + { + fill: ${t.taskTextOutsideColor}; + } + + .taskTextOutside1, + .taskTextOutside3 { + fill: ${t.taskTextOutsideColor}; + } + + + /* Active task */ + + .active0, + .active1, + .active2, + .active3 { + fill: ${t.activeTaskBkgColor}; + stroke: ${t.activeTaskBorderColor}; + } + + .activeText0, + .activeText1, + .activeText2, + .activeText3 { + fill: ${t.taskTextDarkColor} !important; + } + + + /* Completed task */ + + .done0, + .done1, + .done2, + .done3 { + stroke: ${t.doneTaskBorderColor}; + fill: ${t.doneTaskBkgColor}; + stroke-width: 2; + } + + .doneText0, + .doneText1, + .doneText2, + .doneText3 { + fill: ${t.taskTextDarkColor} !important; + } + + + /* Tasks on the critical line */ + + .crit0, + .crit1, + .crit2, + .crit3 { + stroke: ${t.critBorderColor}; + fill: ${t.critBkgColor}; + stroke-width: 2; + } + + .activeCrit0, + .activeCrit1, + .activeCrit2, + .activeCrit3 { + stroke: ${t.critBorderColor}; + fill: ${t.activeTaskBkgColor}; + stroke-width: 2; + } + + .doneCrit0, + .doneCrit1, + .doneCrit2, + .doneCrit3 { + stroke: ${t.critBorderColor}; + fill: ${t.doneTaskBkgColor}; + stroke-width: 2; + cursor: pointer; + shape-rendering: crispEdges; + } + + .milestone { + transform: rotate(45deg) scale(0.8,0.8); + } + + .milestoneText { + font-style: italic; + } + .doneCritText0, + .doneCritText1, + .doneCritText2, + .doneCritText3 { + fill: ${t.taskTextDarkColor} !important; + } + + .activeCritText0, + .activeCritText1, + .activeCritText2, + .activeCritText3 { + fill: ${t.taskTextDarkColor} !important; + } + + .titleText { + text-anchor: middle; + font-size: 18px; + fill: ${t.titleColor||t.textColor}; + font-family: ${t.fontFamily}; + } +`,"getStyles"),Bue=Vze});var $ue={};hr($ue,{diagram:()=>Uze});var Uze,zue=N(()=>{"use strict";due();Mue();Pue();Fue();Uze={parser:fue,db:Rue,renderer:Oue,styles:Bue}});var Uue,Hue=N(()=>{"use strict";kp();vt();Uue={parse:o(async t=>{let e=await uo("info",t);Y.debug(e)},"parse")}});var vb,oO=N(()=>{vb={name:"mermaid",version:"11.6.0",description:"Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.",type:"module",module:"./dist/mermaid.core.mjs",types:"./dist/mermaid.d.ts",exports:{".":{types:"./dist/mermaid.d.ts",import:"./dist/mermaid.core.mjs",default:"./dist/mermaid.core.mjs"},"./*":"./*"},keywords:["diagram","markdown","flowchart","sequence diagram","gantt","class diagram","git graph","mindmap","packet diagram","c4 diagram","er diagram","pie chart","pie diagram","quadrant chart","requirement diagram","graph"],scripts:{clean:"rimraf dist",dev:"pnpm -w dev","docs:code":"typedoc src/defaultConfig.ts src/config.ts src/mermaid.ts && prettier --write ./src/docs/config/setup","docs:build":"rimraf ../../docs && pnpm docs:code && pnpm docs:spellcheck && tsx scripts/docs.cli.mts","docs:verify":"pnpm docs:code && pnpm docs:spellcheck && tsx scripts/docs.cli.mts --verify","docs:pre:vitepress":"pnpm --filter ./src/docs prefetch && rimraf src/vitepress && pnpm docs:code && tsx scripts/docs.cli.mts --vitepress && pnpm --filter ./src/vitepress install --no-frozen-lockfile --ignore-scripts","docs:build:vitepress":"pnpm docs:pre:vitepress && (cd src/vitepress && pnpm run build) && cpy --flat src/docs/landing/ ./src/vitepress/.vitepress/dist/landing","docs:dev":'pnpm docs:pre:vitepress && concurrently "pnpm --filter ./src/vitepress dev" "tsx scripts/docs.cli.mts --watch --vitepress"',"docs:dev:docker":'pnpm docs:pre:vitepress && concurrently "pnpm --filter ./src/vitepress dev:docker" "tsx scripts/docs.cli.mts --watch --vitepress"',"docs:serve":"pnpm docs:build:vitepress && vitepress serve src/vitepress","docs:spellcheck":'cspell "src/docs/**/*.md"',"docs:release-version":"tsx scripts/update-release-version.mts","docs:verify-version":"tsx scripts/update-release-version.mts --verify","types:build-config":"tsx scripts/create-types-from-json-schema.mts","types:verify-config":"tsx scripts/create-types-from-json-schema.mts --verify",checkCircle:"npx madge --circular ./src",prepublishOnly:"pnpm docs:verify-version"},repository:{type:"git",url:"https://github.com/mermaid-js/mermaid"},author:"Knut Sveidqvist",license:"MIT",standard:{ignore:["**/parser/*.js","dist/**/*.js","cypress/**/*.js"],globals:["page"]},dependencies:{"@braintree/sanitize-url":"^7.0.4","@iconify/utils":"^2.1.33","@mermaid-js/parser":"workspace:^","@types/d3":"^7.4.3",cytoscape:"^3.29.3","cytoscape-cose-bilkent":"^4.1.0","cytoscape-fcose":"^2.2.0",d3:"^7.9.0","d3-sankey":"^0.12.3","dagre-d3-es":"7.0.11",dayjs:"^1.11.13",dompurify:"^3.2.4",katex:"^0.16.9",khroma:"^2.1.0","lodash-es":"^4.17.21",marked:"^15.0.7",roughjs:"^4.6.6",stylis:"^4.3.6","ts-dedent":"^2.2.0",uuid:"^11.1.0"},devDependencies:{"@adobe/jsonschema2md":"^8.0.2","@iconify/types":"^2.0.0","@types/cytoscape":"^3.21.9","@types/cytoscape-fcose":"^2.2.4","@types/d3-sankey":"^0.12.4","@types/d3-scale":"^4.0.9","@types/d3-scale-chromatic":"^3.1.0","@types/d3-selection":"^3.0.11","@types/d3-shape":"^3.1.7","@types/jsdom":"^21.1.7","@types/katex":"^0.16.7","@types/lodash-es":"^4.17.12","@types/micromatch":"^4.0.9","@types/stylis":"^4.2.7","@types/uuid":"^10.0.0",ajv:"^8.17.1",chokidar:"^4.0.3",concurrently:"^9.1.2","csstree-validator":"^4.0.1",globby:"^14.0.2",jison:"^0.4.18","js-base64":"^3.7.7",jsdom:"^26.0.0","json-schema-to-typescript":"^15.0.4",micromatch:"^4.0.8","path-browserify":"^1.0.1",prettier:"^3.5.2",remark:"^15.0.1","remark-frontmatter":"^5.0.0","remark-gfm":"^4.0.1",rimraf:"^6.0.1","start-server-and-test":"^2.0.10","type-fest":"^4.35.0",typedoc:"^0.27.8","typedoc-plugin-markdown":"^4.4.2",typescript:"~5.7.3","unist-util-flatmap":"^1.0.0","unist-util-visit":"^5.0.0",vitepress:"^1.0.2","vitepress-plugin-search":"1.0.4-alpha.22"},files:["dist/","README.md"],publishConfig:{access:"public"}}});var Xze,jze,Wue,que=N(()=>{"use strict";oO();Xze={version:vb.version},jze=o(()=>Xze.version,"getVersion"),Wue={getVersion:jze}});var sa,Vc=N(()=>{"use strict";dr();zt();sa=o(t=>{let{securityLevel:e}=me(),r=Ge("body");if(e==="sandbox"){let a=Ge(`#i${t}`).node()?.contentDocument??document;r=Ge(a.body)}return r.select(`#${t}`)},"selectSvgElement")});var Kze,Yue,Xue=N(()=>{"use strict";vt();Vc();Ei();Kze=o((t,e,r)=>{Y.debug(`rendering info diagram +`+t);let n=sa(e);vn(n,100,400,!0),n.append("g").append("text").attr("x",100).attr("y",40).attr("class","version").attr("font-size",32).style("text-anchor","middle").text(`v${r}`)},"draw"),Yue={draw:Kze}});var jue={};hr(jue,{diagram:()=>Qze});var Qze,Kue=N(()=>{"use strict";Hue();que();Xue();Qze={parser:Uue,db:Wue,renderer:Yue}});var Jue,lO,m6,cO,eGe,tGe,rGe,nGe,iGe,aGe,sGe,g6,uO=N(()=>{"use strict";vt();mi();Ya();Jue=or.pie,lO={sections:new Map,showData:!1,config:Jue},m6=lO.sections,cO=lO.showData,eGe=structuredClone(Jue),tGe=o(()=>structuredClone(eGe),"getConfig"),rGe=o(()=>{m6=new Map,cO=lO.showData,Ar()},"clear"),nGe=o(({label:t,value:e})=>{m6.has(t)||(m6.set(t,e),Y.debug(`added new section: ${t}, with value: ${e}`))},"addSection"),iGe=o(()=>m6,"getSections"),aGe=o(t=>{cO=t},"setShowData"),sGe=o(()=>cO,"getShowData"),g6={getConfig:tGe,clear:rGe,setDiagramTitle:$r,getDiagramTitle:Ir,setAccTitle:Lr,getAccTitle:Rr,setAccDescription:Nr,getAccDescription:Mr,addSection:nGe,getSections:iGe,setShowData:aGe,getShowData:sGe}});var oGe,ehe,the=N(()=>{"use strict";kp();vt();T1();uO();oGe=o((t,e)=>{$c(t,e),e.setShowData(t.showData),t.sections.map(e.addSection)},"populateDb"),ehe={parse:o(async t=>{let e=await uo("pie",t);Y.debug(e),oGe(e,g6)},"parse")}});var lGe,rhe,nhe=N(()=>{"use strict";lGe=o(t=>` + .pieCircle{ + stroke: ${t.pieStrokeColor}; + stroke-width : ${t.pieStrokeWidth}; + opacity : ${t.pieOpacity}; + } + .pieOuterCircle{ + stroke: ${t.pieOuterStrokeColor}; + stroke-width: ${t.pieOuterStrokeWidth}; + fill: none; + } + .pieTitleText { + text-anchor: middle; + font-size: ${t.pieTitleTextSize}; + fill: ${t.pieTitleTextColor}; + font-family: ${t.fontFamily}; + } + .slice { + font-family: ${t.fontFamily}; + fill: ${t.pieSectionTextColor}; + font-size:${t.pieSectionTextSize}; + // fill: white; + } + .legend text { + fill: ${t.pieLegendTextColor}; + font-family: ${t.fontFamily}; + font-size: ${t.pieLegendTextSize}; + } +`,"getStyles"),rhe=lGe});var cGe,uGe,ihe,ahe=N(()=>{"use strict";dr();zt();vt();Vc();Ei();ir();cGe=o(t=>{let e=[...t.entries()].map(n=>({label:n[0],value:n[1]})).sort((n,i)=>i.value-n.value);return I5().value(n=>n.value)(e)},"createPieArcs"),uGe=o((t,e,r,n)=>{Y.debug(`rendering pie chart +`+t);let i=n.db,a=me(),s=Fi(i.getConfig(),a.pie),l=40,u=18,h=4,f=450,d=f,p=sa(e),m=p.append("g");m.attr("transform","translate("+d/2+","+f/2+")");let{themeVariables:g}=a,[y]=Bo(g.pieOuterStrokeWidth);y??=2;let v=s.textPosition,x=Math.min(d,f)/2-l,b=bl().innerRadius(0).outerRadius(x),w=bl().innerRadius(x*v).outerRadius(x*v);m.append("circle").attr("cx",0).attr("cy",0).attr("r",x+y/2).attr("class","pieOuterCircle");let C=i.getSections(),T=cGe(C),E=[g.pie1,g.pie2,g.pie3,g.pie4,g.pie5,g.pie6,g.pie7,g.pie8,g.pie9,g.pie10,g.pie11,g.pie12],A=gu(E);m.selectAll("mySlices").data(T).enter().append("path").attr("d",b).attr("fill",k=>A(k.data.label)).attr("class","pieCircle");let S=0;C.forEach(k=>{S+=k}),m.selectAll("mySlices").data(T).enter().append("text").text(k=>(k.data.value/S*100).toFixed(0)+"%").attr("transform",k=>"translate("+w.centroid(k)+")").style("text-anchor","middle").attr("class","slice"),m.append("text").text(i.getDiagramTitle()).attr("x",0).attr("y",-(f-50)/2).attr("class","pieTitleText");let _=m.selectAll(".legend").data(A.domain()).enter().append("g").attr("class","legend").attr("transform",(k,L)=>{let R=u+h,O=R*A.domain().length/2,M=12*u,B=L*R-O;return"translate("+M+","+B+")"});_.append("rect").attr("width",u).attr("height",u).style("fill",A).style("stroke",A),_.data(T).append("text").attr("x",u+h).attr("y",u-h).text(k=>{let{label:L,value:R}=k.data;return i.getShowData()?`${L} [${R}]`:L});let I=Math.max(..._.selectAll("text").nodes().map(k=>k?.getBoundingClientRect().width??0)),D=d+l+u+h+I;p.attr("viewBox",`0 0 ${D} ${f}`),vn(p,f,D,s.useMaxWidth)},"draw"),ihe={draw:uGe}});var she={};hr(she,{diagram:()=>hGe});var hGe,ohe=N(()=>{"use strict";the();uO();nhe();ahe();hGe={parser:ehe,db:g6,renderer:ihe,styles:rhe}});var hO,uhe,hhe=N(()=>{"use strict";hO=function(){var t=o(function(xe,q,pe,ve){for(pe=pe||{},ve=xe.length;ve--;pe[xe[ve]]=q);return pe},"o"),e=[1,3],r=[1,4],n=[1,5],i=[1,6],a=[1,7],s=[1,4,5,10,12,13,14,18,25,35,37,39,41,42,48,50,51,52,53,54,55,56,57,60,61,63,64,65,66,67],l=[1,4,5,10,12,13,14,18,25,28,35,37,39,41,42,48,50,51,52,53,54,55,56,57,60,61,63,64,65,66,67],u=[55,56,57],h=[2,36],f=[1,37],d=[1,36],p=[1,38],m=[1,35],g=[1,43],y=[1,41],v=[1,14],x=[1,23],b=[1,18],w=[1,19],C=[1,20],T=[1,21],E=[1,22],A=[1,24],S=[1,25],_=[1,26],I=[1,27],D=[1,28],k=[1,29],L=[1,32],R=[1,33],O=[1,34],M=[1,39],B=[1,40],F=[1,42],P=[1,44],z=[1,62],$=[1,61],H=[4,5,8,10,12,13,14,18,44,47,49,55,56,57,63,64,65,66,67],Q=[1,65],j=[1,66],ie=[1,67],ne=[1,68],le=[1,69],he=[1,70],K=[1,71],X=[1,72],te=[1,73],J=[1,74],se=[1,75],ue=[1,76],Z=[4,5,6,7,8,9,10,11,12,13,14,15,18],Se=[1,90],ce=[1,91],ae=[1,92],Oe=[1,99],ge=[1,93],ze=[1,96],He=[1,94],$e=[1,95],Re=[1,97],Ie=[1,98],be=[1,102],W=[10,55,56,57],de=[4,5,6,8,10,11,13,17,18,19,20,55,56,57],re={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,idStringToken:3,ALPHA:4,NUM:5,NODE_STRING:6,DOWN:7,MINUS:8,DEFAULT:9,COMMA:10,COLON:11,AMP:12,BRKT:13,MULT:14,UNICODE_TEXT:15,styleComponent:16,UNIT:17,SPACE:18,STYLE:19,PCT:20,idString:21,style:22,stylesOpt:23,classDefStatement:24,CLASSDEF:25,start:26,eol:27,QUADRANT:28,document:29,line:30,statement:31,axisDetails:32,quadrantDetails:33,points:34,title:35,title_value:36,acc_title:37,acc_title_value:38,acc_descr:39,acc_descr_value:40,acc_descr_multiline_value:41,section:42,text:43,point_start:44,point_x:45,point_y:46,class_name:47,"X-AXIS":48,"AXIS-TEXT-DELIMITER":49,"Y-AXIS":50,QUADRANT_1:51,QUADRANT_2:52,QUADRANT_3:53,QUADRANT_4:54,NEWLINE:55,SEMI:56,EOF:57,alphaNumToken:58,textNoTagsToken:59,STR:60,MD_STR:61,alphaNum:62,PUNCTUATION:63,PLUS:64,EQUALS:65,DOT:66,UNDERSCORE:67,$accept:0,$end:1},terminals_:{2:"error",4:"ALPHA",5:"NUM",6:"NODE_STRING",7:"DOWN",8:"MINUS",9:"DEFAULT",10:"COMMA",11:"COLON",12:"AMP",13:"BRKT",14:"MULT",15:"UNICODE_TEXT",17:"UNIT",18:"SPACE",19:"STYLE",20:"PCT",25:"CLASSDEF",28:"QUADRANT",35:"title",36:"title_value",37:"acc_title",38:"acc_title_value",39:"acc_descr",40:"acc_descr_value",41:"acc_descr_multiline_value",42:"section",44:"point_start",45:"point_x",46:"point_y",47:"class_name",48:"X-AXIS",49:"AXIS-TEXT-DELIMITER",50:"Y-AXIS",51:"QUADRANT_1",52:"QUADRANT_2",53:"QUADRANT_3",54:"QUADRANT_4",55:"NEWLINE",56:"SEMI",57:"EOF",60:"STR",61:"MD_STR",63:"PUNCTUATION",64:"PLUS",65:"EQUALS",66:"DOT",67:"UNDERSCORE"},productions_:[0,[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[21,1],[21,2],[22,1],[22,2],[23,1],[23,3],[24,5],[26,2],[26,2],[26,2],[29,0],[29,2],[30,2],[31,0],[31,1],[31,2],[31,1],[31,1],[31,1],[31,2],[31,2],[31,2],[31,1],[31,1],[34,4],[34,5],[34,5],[34,6],[32,4],[32,3],[32,2],[32,4],[32,3],[32,2],[33,2],[33,2],[33,2],[33,2],[27,1],[27,1],[27,1],[43,1],[43,2],[43,1],[43,1],[62,1],[62,2],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[59,1],[59,1],[59,1]],performAction:o(function(q,pe,ve,Pe,_e,we,Ve){var De=we.length-1;switch(_e){case 23:this.$=we[De];break;case 24:this.$=we[De-1]+""+we[De];break;case 26:this.$=we[De-1]+we[De];break;case 27:this.$=[we[De].trim()];break;case 28:we[De-2].push(we[De].trim()),this.$=we[De-2];break;case 29:this.$=we[De-4],Pe.addClass(we[De-2],we[De]);break;case 37:this.$=[];break;case 42:this.$=we[De].trim(),Pe.setDiagramTitle(this.$);break;case 43:this.$=we[De].trim(),Pe.setAccTitle(this.$);break;case 44:case 45:this.$=we[De].trim(),Pe.setAccDescription(this.$);break;case 46:Pe.addSection(we[De].substr(8)),this.$=we[De].substr(8);break;case 47:Pe.addPoint(we[De-3],"",we[De-1],we[De],[]);break;case 48:Pe.addPoint(we[De-4],we[De-3],we[De-1],we[De],[]);break;case 49:Pe.addPoint(we[De-4],"",we[De-2],we[De-1],we[De]);break;case 50:Pe.addPoint(we[De-5],we[De-4],we[De-2],we[De-1],we[De]);break;case 51:Pe.setXAxisLeftText(we[De-2]),Pe.setXAxisRightText(we[De]);break;case 52:we[De-1].text+=" \u27F6 ",Pe.setXAxisLeftText(we[De-1]);break;case 53:Pe.setXAxisLeftText(we[De]);break;case 54:Pe.setYAxisBottomText(we[De-2]),Pe.setYAxisTopText(we[De]);break;case 55:we[De-1].text+=" \u27F6 ",Pe.setYAxisBottomText(we[De-1]);break;case 56:Pe.setYAxisBottomText(we[De]);break;case 57:Pe.setQuadrant1Text(we[De]);break;case 58:Pe.setQuadrant2Text(we[De]);break;case 59:Pe.setQuadrant3Text(we[De]);break;case 60:Pe.setQuadrant4Text(we[De]);break;case 64:this.$={text:we[De],type:"text"};break;case 65:this.$={text:we[De-1].text+""+we[De],type:we[De-1].type};break;case 66:this.$={text:we[De],type:"text"};break;case 67:this.$={text:we[De],type:"markdown"};break;case 68:this.$=we[De];break;case 69:this.$=we[De-1]+""+we[De];break}},"anonymous"),table:[{18:e,26:1,27:2,28:r,55:n,56:i,57:a},{1:[3]},{18:e,26:8,27:2,28:r,55:n,56:i,57:a},{18:e,26:9,27:2,28:r,55:n,56:i,57:a},t(s,[2,33],{29:10}),t(l,[2,61]),t(l,[2,62]),t(l,[2,63]),{1:[2,30]},{1:[2,31]},t(u,h,{30:11,31:12,24:13,32:15,33:16,34:17,43:30,58:31,1:[2,32],4:f,5:d,10:p,12:m,13:g,14:y,18:v,25:x,35:b,37:w,39:C,41:T,42:E,48:A,50:S,51:_,52:I,53:D,54:k,60:L,61:R,63:O,64:M,65:B,66:F,67:P}),t(s,[2,34]),{27:45,55:n,56:i,57:a},t(u,[2,37]),t(u,h,{24:13,32:15,33:16,34:17,43:30,58:31,31:46,4:f,5:d,10:p,12:m,13:g,14:y,18:v,25:x,35:b,37:w,39:C,41:T,42:E,48:A,50:S,51:_,52:I,53:D,54:k,60:L,61:R,63:O,64:M,65:B,66:F,67:P}),t(u,[2,39]),t(u,[2,40]),t(u,[2,41]),{36:[1,47]},{38:[1,48]},{40:[1,49]},t(u,[2,45]),t(u,[2,46]),{18:[1,50]},{4:f,5:d,10:p,12:m,13:g,14:y,43:51,58:31,60:L,61:R,63:O,64:M,65:B,66:F,67:P},{4:f,5:d,10:p,12:m,13:g,14:y,43:52,58:31,60:L,61:R,63:O,64:M,65:B,66:F,67:P},{4:f,5:d,10:p,12:m,13:g,14:y,43:53,58:31,60:L,61:R,63:O,64:M,65:B,66:F,67:P},{4:f,5:d,10:p,12:m,13:g,14:y,43:54,58:31,60:L,61:R,63:O,64:M,65:B,66:F,67:P},{4:f,5:d,10:p,12:m,13:g,14:y,43:55,58:31,60:L,61:R,63:O,64:M,65:B,66:F,67:P},{4:f,5:d,10:p,12:m,13:g,14:y,43:56,58:31,60:L,61:R,63:O,64:M,65:B,66:F,67:P},{4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,44:[1,57],47:[1,58],58:60,59:59,63:O,64:M,65:B,66:F,67:P},t(H,[2,64]),t(H,[2,66]),t(H,[2,67]),t(H,[2,70]),t(H,[2,71]),t(H,[2,72]),t(H,[2,73]),t(H,[2,74]),t(H,[2,75]),t(H,[2,76]),t(H,[2,77]),t(H,[2,78]),t(H,[2,79]),t(H,[2,80]),t(s,[2,35]),t(u,[2,38]),t(u,[2,42]),t(u,[2,43]),t(u,[2,44]),{3:64,4:Q,5:j,6:ie,7:ne,8:le,9:he,10:K,11:X,12:te,13:J,14:se,15:ue,21:63},t(u,[2,53],{59:59,58:60,4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,49:[1,77],63:O,64:M,65:B,66:F,67:P}),t(u,[2,56],{59:59,58:60,4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,49:[1,78],63:O,64:M,65:B,66:F,67:P}),t(u,[2,57],{59:59,58:60,4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,63:O,64:M,65:B,66:F,67:P}),t(u,[2,58],{59:59,58:60,4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,63:O,64:M,65:B,66:F,67:P}),t(u,[2,59],{59:59,58:60,4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,63:O,64:M,65:B,66:F,67:P}),t(u,[2,60],{59:59,58:60,4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,63:O,64:M,65:B,66:F,67:P}),{45:[1,79]},{44:[1,80]},t(H,[2,65]),t(H,[2,81]),t(H,[2,82]),t(H,[2,83]),{3:82,4:Q,5:j,6:ie,7:ne,8:le,9:he,10:K,11:X,12:te,13:J,14:se,15:ue,18:[1,81]},t(Z,[2,23]),t(Z,[2,1]),t(Z,[2,2]),t(Z,[2,3]),t(Z,[2,4]),t(Z,[2,5]),t(Z,[2,6]),t(Z,[2,7]),t(Z,[2,8]),t(Z,[2,9]),t(Z,[2,10]),t(Z,[2,11]),t(Z,[2,12]),t(u,[2,52],{58:31,43:83,4:f,5:d,10:p,12:m,13:g,14:y,60:L,61:R,63:O,64:M,65:B,66:F,67:P}),t(u,[2,55],{58:31,43:84,4:f,5:d,10:p,12:m,13:g,14:y,60:L,61:R,63:O,64:M,65:B,66:F,67:P}),{46:[1,85]},{45:[1,86]},{4:Se,5:ce,6:ae,8:Oe,11:ge,13:ze,16:89,17:He,18:$e,19:Re,20:Ie,22:88,23:87},t(Z,[2,24]),t(u,[2,51],{59:59,58:60,4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,63:O,64:M,65:B,66:F,67:P}),t(u,[2,54],{59:59,58:60,4:f,5:d,8:z,10:p,12:m,13:g,14:y,18:$,63:O,64:M,65:B,66:F,67:P}),t(u,[2,47],{22:88,16:89,23:100,4:Se,5:ce,6:ae,8:Oe,11:ge,13:ze,17:He,18:$e,19:Re,20:Ie}),{46:[1,101]},t(u,[2,29],{10:be}),t(W,[2,27],{16:103,4:Se,5:ce,6:ae,8:Oe,11:ge,13:ze,17:He,18:$e,19:Re,20:Ie}),t(de,[2,25]),t(de,[2,13]),t(de,[2,14]),t(de,[2,15]),t(de,[2,16]),t(de,[2,17]),t(de,[2,18]),t(de,[2,19]),t(de,[2,20]),t(de,[2,21]),t(de,[2,22]),t(u,[2,49],{10:be}),t(u,[2,48],{22:88,16:89,23:104,4:Se,5:ce,6:ae,8:Oe,11:ge,13:ze,17:He,18:$e,19:Re,20:Ie}),{4:Se,5:ce,6:ae,8:Oe,11:ge,13:ze,16:89,17:He,18:$e,19:Re,20:Ie,22:105},t(de,[2,26]),t(u,[2,50],{10:be}),t(W,[2,28],{16:103,4:Se,5:ce,6:ae,8:Oe,11:ge,13:ze,17:He,18:$e,19:Re,20:Ie})],defaultActions:{8:[2,30],9:[2,31]},parseError:o(function(q,pe){if(pe.recoverable)this.trace(q);else{var ve=new Error(q);throw ve.hash=pe,ve}},"parseError"),parse:o(function(q){var pe=this,ve=[0],Pe=[],_e=[null],we=[],Ve=this.table,De="",qe=0,at=0,Rt=0,st=2,Ue=1,ct=we.slice.call(arguments,1),We=Object.create(this.lexer),ot={yy:{}};for(var Yt in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Yt)&&(ot.yy[Yt]=this.yy[Yt]);We.setInput(q,ot.yy),ot.yy.lexer=We,ot.yy.parser=this,typeof We.yylloc>"u"&&(We.yylloc={});var bt=We.yylloc;we.push(bt);var Mt=We.options&&We.options.ranges;typeof ot.yy.parseError=="function"?this.parseError=ot.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function xt(Ce){ve.length=ve.length-2*Ce,_e.length=_e.length-Ce,we.length=we.length-Ce}o(xt,"popStack");function ut(){var Ce;return Ce=Pe.pop()||We.lex()||Ue,typeof Ce!="number"&&(Ce instanceof Array&&(Pe=Ce,Ce=Pe.pop()),Ce=pe.symbols_[Ce]||Ce),Ce}o(ut,"lex");for(var Et,ft,yt,nt,dn,Tt,On={},tn,_r,Dr,Pn;;){if(yt=ve[ve.length-1],this.defaultActions[yt]?nt=this.defaultActions[yt]:((Et===null||typeof Et>"u")&&(Et=ut()),nt=Ve[yt]&&Ve[yt][Et]),typeof nt>"u"||!nt.length||!nt[0]){var At="";Pn=[];for(tn in Ve[yt])this.terminals_[tn]&&tn>st&&Pn.push("'"+this.terminals_[tn]+"'");We.showPosition?At="Parse error on line "+(qe+1)+`: +`+We.showPosition()+` +Expecting `+Pn.join(", ")+", got '"+(this.terminals_[Et]||Et)+"'":At="Parse error on line "+(qe+1)+": Unexpected "+(Et==Ue?"end of input":"'"+(this.terminals_[Et]||Et)+"'"),this.parseError(At,{text:We.match,token:this.terminals_[Et]||Et,line:We.yylineno,loc:bt,expected:Pn})}if(nt[0]instanceof Array&&nt.length>1)throw new Error("Parse Error: multiple actions possible at state: "+yt+", token: "+Et);switch(nt[0]){case 1:ve.push(Et),_e.push(We.yytext),we.push(We.yylloc),ve.push(nt[1]),Et=null,ft?(Et=ft,ft=null):(at=We.yyleng,De=We.yytext,qe=We.yylineno,bt=We.yylloc,Rt>0&&Rt--);break;case 2:if(_r=this.productions_[nt[1]][1],On.$=_e[_e.length-_r],On._$={first_line:we[we.length-(_r||1)].first_line,last_line:we[we.length-1].last_line,first_column:we[we.length-(_r||1)].first_column,last_column:we[we.length-1].last_column},Mt&&(On._$.range=[we[we.length-(_r||1)].range[0],we[we.length-1].range[1]]),Tt=this.performAction.apply(On,[De,at,qe,ot.yy,nt[1],_e,we].concat(ct)),typeof Tt<"u")return Tt;_r&&(ve=ve.slice(0,-1*_r*2),_e=_e.slice(0,-1*_r),we=we.slice(0,-1*_r)),ve.push(this.productions_[nt[1]][0]),_e.push(On.$),we.push(On._$),Dr=Ve[ve[ve.length-2]][ve[ve.length-1]],ve.push(Dr);break;case 3:return!0}}return!0},"parse")},oe=function(){var xe={EOF:1,parseError:o(function(pe,ve){if(this.yy.parser)this.yy.parser.parseError(pe,ve);else throw new Error(pe)},"parseError"),setInput:o(function(q,pe){return this.yy=pe||this.yy||{},this._input=q,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var q=this._input[0];this.yytext+=q,this.yyleng++,this.offset++,this.match+=q,this.matched+=q;var pe=q.match(/(?:\r\n?|\n).*/g);return pe?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),q},"input"),unput:o(function(q){var pe=q.length,ve=q.split(/(?:\r\n?|\n)/g);this._input=q+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-pe),this.offset-=pe;var Pe=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),ve.length-1&&(this.yylineno-=ve.length-1);var _e=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:ve?(ve.length===Pe.length?this.yylloc.first_column:0)+Pe[Pe.length-ve.length].length-ve[0].length:this.yylloc.first_column-pe},this.options.ranges&&(this.yylloc.range=[_e[0],_e[0]+this.yyleng-pe]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(q){this.unput(this.match.slice(q))},"less"),pastInput:o(function(){var q=this.matched.substr(0,this.matched.length-this.match.length);return(q.length>20?"...":"")+q.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var q=this.match;return q.length<20&&(q+=this._input.substr(0,20-q.length)),(q.substr(0,20)+(q.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var q=this.pastInput(),pe=new Array(q.length+1).join("-");return q+this.upcomingInput()+` +`+pe+"^"},"showPosition"),test_match:o(function(q,pe){var ve,Pe,_e;if(this.options.backtrack_lexer&&(_e={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(_e.yylloc.range=this.yylloc.range.slice(0))),Pe=q[0].match(/(?:\r\n?|\n).*/g),Pe&&(this.yylineno+=Pe.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Pe?Pe[Pe.length-1].length-Pe[Pe.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+q[0].length},this.yytext+=q[0],this.match+=q[0],this.matches=q,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(q[0].length),this.matched+=q[0],ve=this.performAction.call(this,this.yy,this,pe,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),ve)return ve;if(this._backtrack){for(var we in _e)this[we]=_e[we];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var q,pe,ve,Pe;this._more||(this.yytext="",this.match="");for(var _e=this._currentRules(),we=0;we<_e.length;we++)if(ve=this._input.match(this.rules[_e[we]]),ve&&(!pe||ve[0].length>pe[0].length)){if(pe=ve,Pe=we,this.options.backtrack_lexer){if(q=this.test_match(ve,_e[we]),q!==!1)return q;if(this._backtrack){pe=!1;continue}else return!1}else if(!this.options.flex)break}return pe?(q=this.test_match(pe,_e[Pe]),q!==!1?q:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var pe=this.next();return pe||this.lex()},"lex"),begin:o(function(pe){this.conditionStack.push(pe)},"begin"),popState:o(function(){var pe=this.conditionStack.length-1;return pe>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(pe){return pe=this.conditionStack.length-1-Math.abs(pe||0),pe>=0?this.conditionStack[pe]:"INITIAL"},"topState"),pushState:o(function(pe){this.begin(pe)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(pe,ve,Pe,_e){var we=_e;switch(Pe){case 0:break;case 1:break;case 2:return 55;case 3:break;case 4:return this.begin("title"),35;break;case 5:return this.popState(),"title_value";break;case 6:return this.begin("acc_title"),37;break;case 7:return this.popState(),"acc_title_value";break;case 8:return this.begin("acc_descr"),39;break;case 9:return this.popState(),"acc_descr_value";break;case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:return 48;case 14:return 50;case 15:return 49;case 16:return 51;case 17:return 52;case 18:return 53;case 19:return 54;case 20:return 25;case 21:this.begin("md_string");break;case 22:return"MD_STR";case 23:this.popState();break;case 24:this.begin("string");break;case 25:this.popState();break;case 26:return"STR";case 27:this.begin("class_name");break;case 28:return this.popState(),47;break;case 29:return this.begin("point_start"),44;break;case 30:return this.begin("point_x"),45;break;case 31:this.popState();break;case 32:this.popState(),this.begin("point_y");break;case 33:return this.popState(),46;break;case 34:return 28;case 35:return 4;case 36:return 11;case 37:return 64;case 38:return 10;case 39:return 65;case 40:return 65;case 41:return 14;case 42:return 13;case 43:return 67;case 44:return 66;case 45:return 12;case 46:return 8;case 47:return 5;case 48:return 18;case 49:return 56;case 50:return 63;case 51:return 57}},"anonymous"),rules:[/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:title\b)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?: *x-axis *)/i,/^(?: *y-axis *)/i,/^(?: *--+> *)/i,/^(?: *quadrant-1 *)/i,/^(?: *quadrant-2 *)/i,/^(?: *quadrant-3 *)/i,/^(?: *quadrant-4 *)/i,/^(?:classDef\b)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?::::)/i,/^(?:^\w+)/i,/^(?:\s*:\s*\[\s*)/i,/^(?:(1)|(0(.\d+)?))/i,/^(?:\s*\] *)/i,/^(?:\s*,\s*)/i,/^(?:(1)|(0(.\d+)?))/i,/^(?: *quadrantChart *)/i,/^(?:[A-Za-z]+)/i,/^(?::)/i,/^(?:\+)/i,/^(?:,)/i,/^(?:=)/i,/^(?:=)/i,/^(?:\*)/i,/^(?:#)/i,/^(?:[\_])/i,/^(?:\.)/i,/^(?:&)/i,/^(?:-)/i,/^(?:[0-9]+)/i,/^(?:\s)/i,/^(?:;)/i,/^(?:[!"#$%&'*+,-.`?\\_/])/i,/^(?:$)/i],conditions:{class_name:{rules:[28],inclusive:!1},point_y:{rules:[33],inclusive:!1},point_x:{rules:[32],inclusive:!1},point_start:{rules:[30,31],inclusive:!1},acc_descr_multiline:{rules:[11,12],inclusive:!1},acc_descr:{rules:[9],inclusive:!1},acc_title:{rules:[7],inclusive:!1},title:{rules:[5],inclusive:!1},md_string:{rules:[22,23],inclusive:!1},string:{rules:[25,26],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,6,8,10,13,14,15,16,17,18,19,20,21,24,27,29,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],inclusive:!0}}};return xe}();re.lexer=oe;function V(){this.yy={}}return o(V,"Parser"),V.prototype=re,re.Parser=V,new V}();hO.parser=hO;uhe=hO});var ms,y6,fhe=N(()=>{"use strict";dr();Ya();vt();_y();ms=oh(),y6=class{constructor(){this.classes=new Map;this.config=this.getDefaultConfig(),this.themeConfig=this.getDefaultThemeConfig(),this.data=this.getDefaultData()}static{o(this,"QuadrantBuilder")}getDefaultData(){return{titleText:"",quadrant1Text:"",quadrant2Text:"",quadrant3Text:"",quadrant4Text:"",xAxisLeftText:"",xAxisRightText:"",yAxisBottomText:"",yAxisTopText:"",points:[]}}getDefaultConfig(){return{showXAxis:!0,showYAxis:!0,showTitle:!0,chartHeight:or.quadrantChart?.chartWidth||500,chartWidth:or.quadrantChart?.chartHeight||500,titlePadding:or.quadrantChart?.titlePadding||10,titleFontSize:or.quadrantChart?.titleFontSize||20,quadrantPadding:or.quadrantChart?.quadrantPadding||5,xAxisLabelPadding:or.quadrantChart?.xAxisLabelPadding||5,yAxisLabelPadding:or.quadrantChart?.yAxisLabelPadding||5,xAxisLabelFontSize:or.quadrantChart?.xAxisLabelFontSize||16,yAxisLabelFontSize:or.quadrantChart?.yAxisLabelFontSize||16,quadrantLabelFontSize:or.quadrantChart?.quadrantLabelFontSize||16,quadrantTextTopPadding:or.quadrantChart?.quadrantTextTopPadding||5,pointTextPadding:or.quadrantChart?.pointTextPadding||5,pointLabelFontSize:or.quadrantChart?.pointLabelFontSize||12,pointRadius:or.quadrantChart?.pointRadius||5,xAxisPosition:or.quadrantChart?.xAxisPosition||"top",yAxisPosition:or.quadrantChart?.yAxisPosition||"left",quadrantInternalBorderStrokeWidth:or.quadrantChart?.quadrantInternalBorderStrokeWidth||1,quadrantExternalBorderStrokeWidth:or.quadrantChart?.quadrantExternalBorderStrokeWidth||2}}getDefaultThemeConfig(){return{quadrant1Fill:ms.quadrant1Fill,quadrant2Fill:ms.quadrant2Fill,quadrant3Fill:ms.quadrant3Fill,quadrant4Fill:ms.quadrant4Fill,quadrant1TextFill:ms.quadrant1TextFill,quadrant2TextFill:ms.quadrant2TextFill,quadrant3TextFill:ms.quadrant3TextFill,quadrant4TextFill:ms.quadrant4TextFill,quadrantPointFill:ms.quadrantPointFill,quadrantPointTextFill:ms.quadrantPointTextFill,quadrantXAxisTextFill:ms.quadrantXAxisTextFill,quadrantYAxisTextFill:ms.quadrantYAxisTextFill,quadrantTitleFill:ms.quadrantTitleFill,quadrantInternalBorderStrokeFill:ms.quadrantInternalBorderStrokeFill,quadrantExternalBorderStrokeFill:ms.quadrantExternalBorderStrokeFill}}clear(){this.config=this.getDefaultConfig(),this.themeConfig=this.getDefaultThemeConfig(),this.data=this.getDefaultData(),this.classes=new Map,Y.info("clear called")}setData(e){this.data={...this.data,...e}}addPoints(e){this.data.points=[...e,...this.data.points]}addClass(e,r){this.classes.set(e,r)}setConfig(e){Y.trace("setConfig called with: ",e),this.config={...this.config,...e}}setThemeConfig(e){Y.trace("setThemeConfig called with: ",e),this.themeConfig={...this.themeConfig,...e}}calculateSpace(e,r,n,i){let a=this.config.xAxisLabelPadding*2+this.config.xAxisLabelFontSize,s={top:e==="top"&&r?a:0,bottom:e==="bottom"&&r?a:0},l=this.config.yAxisLabelPadding*2+this.config.yAxisLabelFontSize,u={left:this.config.yAxisPosition==="left"&&n?l:0,right:this.config.yAxisPosition==="right"&&n?l:0},h=this.config.titleFontSize+this.config.titlePadding*2,f={top:i?h:0},d=this.config.quadrantPadding+u.left,p=this.config.quadrantPadding+s.top+f.top,m=this.config.chartWidth-this.config.quadrantPadding*2-u.left-u.right,g=this.config.chartHeight-this.config.quadrantPadding*2-s.top-s.bottom-f.top,y=m/2,v=g/2;return{xAxisSpace:s,yAxisSpace:u,titleSpace:f,quadrantSpace:{quadrantLeft:d,quadrantTop:p,quadrantWidth:m,quadrantHalfWidth:y,quadrantHeight:g,quadrantHalfHeight:v}}}getAxisLabels(e,r,n,i){let{quadrantSpace:a,titleSpace:s}=i,{quadrantHalfHeight:l,quadrantHeight:u,quadrantLeft:h,quadrantHalfWidth:f,quadrantTop:d,quadrantWidth:p}=a,m=!!this.data.xAxisRightText,g=!!this.data.yAxisTopText,y=[];return this.data.xAxisLeftText&&r&&y.push({text:this.data.xAxisLeftText,fill:this.themeConfig.quadrantXAxisTextFill,x:h+(m?f/2:0),y:e==="top"?this.config.xAxisLabelPadding+s.top:this.config.xAxisLabelPadding+d+u+this.config.quadrantPadding,fontSize:this.config.xAxisLabelFontSize,verticalPos:m?"center":"left",horizontalPos:"top",rotation:0}),this.data.xAxisRightText&&r&&y.push({text:this.data.xAxisRightText,fill:this.themeConfig.quadrantXAxisTextFill,x:h+f+(m?f/2:0),y:e==="top"?this.config.xAxisLabelPadding+s.top:this.config.xAxisLabelPadding+d+u+this.config.quadrantPadding,fontSize:this.config.xAxisLabelFontSize,verticalPos:m?"center":"left",horizontalPos:"top",rotation:0}),this.data.yAxisBottomText&&n&&y.push({text:this.data.yAxisBottomText,fill:this.themeConfig.quadrantYAxisTextFill,x:this.config.yAxisPosition==="left"?this.config.yAxisLabelPadding:this.config.yAxisLabelPadding+h+p+this.config.quadrantPadding,y:d+u-(g?l/2:0),fontSize:this.config.yAxisLabelFontSize,verticalPos:g?"center":"left",horizontalPos:"top",rotation:-90}),this.data.yAxisTopText&&n&&y.push({text:this.data.yAxisTopText,fill:this.themeConfig.quadrantYAxisTextFill,x:this.config.yAxisPosition==="left"?this.config.yAxisLabelPadding:this.config.yAxisLabelPadding+h+p+this.config.quadrantPadding,y:d+l-(g?l/2:0),fontSize:this.config.yAxisLabelFontSize,verticalPos:g?"center":"left",horizontalPos:"top",rotation:-90}),y}getQuadrants(e){let{quadrantSpace:r}=e,{quadrantHalfHeight:n,quadrantLeft:i,quadrantHalfWidth:a,quadrantTop:s}=r,l=[{text:{text:this.data.quadrant1Text,fill:this.themeConfig.quadrant1TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:i+a,y:s,width:a,height:n,fill:this.themeConfig.quadrant1Fill},{text:{text:this.data.quadrant2Text,fill:this.themeConfig.quadrant2TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:i,y:s,width:a,height:n,fill:this.themeConfig.quadrant2Fill},{text:{text:this.data.quadrant3Text,fill:this.themeConfig.quadrant3TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:i,y:s+n,width:a,height:n,fill:this.themeConfig.quadrant3Fill},{text:{text:this.data.quadrant4Text,fill:this.themeConfig.quadrant4TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:i+a,y:s+n,width:a,height:n,fill:this.themeConfig.quadrant4Fill}];for(let u of l)u.text.x=u.x+u.width/2,this.data.points.length===0?(u.text.y=u.y+u.height/2,u.text.horizontalPos="middle"):(u.text.y=u.y+this.config.quadrantTextTopPadding,u.text.horizontalPos="top");return l}getQuadrantPoints(e){let{quadrantSpace:r}=e,{quadrantHeight:n,quadrantLeft:i,quadrantTop:a,quadrantWidth:s}=r,l=gl().domain([0,1]).range([i,s+i]),u=gl().domain([0,1]).range([n+a,a]);return this.data.points.map(f=>{let d=this.classes.get(f.className);return d&&(f={...d,...f}),{x:l(f.x),y:u(f.y),fill:f.color??this.themeConfig.quadrantPointFill,radius:f.radius??this.config.pointRadius,text:{text:f.text,fill:this.themeConfig.quadrantPointTextFill,x:l(f.x),y:u(f.y)+this.config.pointTextPadding,verticalPos:"center",horizontalPos:"top",fontSize:this.config.pointLabelFontSize,rotation:0},strokeColor:f.strokeColor??this.themeConfig.quadrantPointFill,strokeWidth:f.strokeWidth??"0px"}})}getBorders(e){let r=this.config.quadrantExternalBorderStrokeWidth/2,{quadrantSpace:n}=e,{quadrantHalfHeight:i,quadrantHeight:a,quadrantLeft:s,quadrantHalfWidth:l,quadrantTop:u,quadrantWidth:h}=n;return[{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:s-r,y1:u,x2:s+h+r,y2:u},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:s+h,y1:u+r,x2:s+h,y2:u+a-r},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:s-r,y1:u+a,x2:s+h+r,y2:u+a},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:s,y1:u+r,x2:s,y2:u+a-r},{strokeFill:this.themeConfig.quadrantInternalBorderStrokeFill,strokeWidth:this.config.quadrantInternalBorderStrokeWidth,x1:s+l,y1:u+r,x2:s+l,y2:u+a-r},{strokeFill:this.themeConfig.quadrantInternalBorderStrokeFill,strokeWidth:this.config.quadrantInternalBorderStrokeWidth,x1:s+r,y1:u+i,x2:s+h-r,y2:u+i}]}getTitle(e){if(e)return{text:this.data.titleText,fill:this.themeConfig.quadrantTitleFill,fontSize:this.config.titleFontSize,horizontalPos:"top",verticalPos:"center",rotation:0,y:this.config.titlePadding,x:this.config.chartWidth/2}}build(){let e=this.config.showXAxis&&!!(this.data.xAxisLeftText||this.data.xAxisRightText),r=this.config.showYAxis&&!!(this.data.yAxisTopText||this.data.yAxisBottomText),n=this.config.showTitle&&!!this.data.titleText,i=this.data.points.length>0?"bottom":this.config.xAxisPosition,a=this.calculateSpace(i,e,r,n);return{points:this.getQuadrantPoints(a),quadrants:this.getQuadrants(a),axisLabels:this.getAxisLabels(i,e,r,a),borderLines:this.getBorders(a),title:this.getTitle(n)}}}});function fO(t){return!/^#?([\dA-Fa-f]{6}|[\dA-Fa-f]{3})$/.test(t)}function dhe(t){return!/^\d+$/.test(t)}function phe(t){return!/^\d+px$/.test(t)}var Ap,mhe=N(()=>{"use strict";Ap=class extends Error{static{o(this,"InvalidStyleError")}constructor(e,r,n){super(`value for ${e} ${r} is invalid, please use a valid ${n}`),this.name="InvalidStyleError"}};o(fO,"validateHexCode");o(dhe,"validateNumber");o(phe,"validateSizeInPixels")});function Xu(t){return Tr(t.trim(),pGe)}function mGe(t){ba.setData({quadrant1Text:Xu(t.text)})}function gGe(t){ba.setData({quadrant2Text:Xu(t.text)})}function yGe(t){ba.setData({quadrant3Text:Xu(t.text)})}function vGe(t){ba.setData({quadrant4Text:Xu(t.text)})}function xGe(t){ba.setData({xAxisLeftText:Xu(t.text)})}function bGe(t){ba.setData({xAxisRightText:Xu(t.text)})}function wGe(t){ba.setData({yAxisTopText:Xu(t.text)})}function TGe(t){ba.setData({yAxisBottomText:Xu(t.text)})}function dO(t){let e={};for(let r of t){let[n,i]=r.trim().split(/\s*:\s*/);if(n==="radius"){if(dhe(i))throw new Ap(n,i,"number");e.radius=parseInt(i)}else if(n==="color"){if(fO(i))throw new Ap(n,i,"hex code");e.color=i}else if(n==="stroke-color"){if(fO(i))throw new Ap(n,i,"hex code");e.strokeColor=i}else if(n==="stroke-width"){if(phe(i))throw new Ap(n,i,"number of pixels (eg. 10px)");e.strokeWidth=i}else throw new Error(`style named ${n} is not supported.`)}return e}function kGe(t,e,r,n,i){let a=dO(i);ba.addPoints([{x:r,y:n,text:Xu(t.text),className:e,...a}])}function EGe(t,e){ba.addClass(t,dO(e))}function SGe(t){ba.setConfig({chartWidth:t})}function CGe(t){ba.setConfig({chartHeight:t})}function AGe(){let t=me(),{themeVariables:e,quadrantChart:r}=t;return r&&ba.setConfig(r),ba.setThemeConfig({quadrant1Fill:e.quadrant1Fill,quadrant2Fill:e.quadrant2Fill,quadrant3Fill:e.quadrant3Fill,quadrant4Fill:e.quadrant4Fill,quadrant1TextFill:e.quadrant1TextFill,quadrant2TextFill:e.quadrant2TextFill,quadrant3TextFill:e.quadrant3TextFill,quadrant4TextFill:e.quadrant4TextFill,quadrantPointFill:e.quadrantPointFill,quadrantPointTextFill:e.quadrantPointTextFill,quadrantXAxisTextFill:e.quadrantXAxisTextFill,quadrantYAxisTextFill:e.quadrantYAxisTextFill,quadrantExternalBorderStrokeFill:e.quadrantExternalBorderStrokeFill,quadrantInternalBorderStrokeFill:e.quadrantInternalBorderStrokeFill,quadrantTitleFill:e.quadrantTitleFill}),ba.setData({titleText:Ir()}),ba.build()}var pGe,ba,_Ge,ghe,yhe=N(()=>{"use strict";zt();gr();mi();fhe();mhe();pGe=me();o(Xu,"textSanitizer");ba=new y6;o(mGe,"setQuadrant1Text");o(gGe,"setQuadrant2Text");o(yGe,"setQuadrant3Text");o(vGe,"setQuadrant4Text");o(xGe,"setXAxisLeftText");o(bGe,"setXAxisRightText");o(wGe,"setYAxisTopText");o(TGe,"setYAxisBottomText");o(dO,"parseStyles");o(kGe,"addPoint");o(EGe,"addClass");o(SGe,"setWidth");o(CGe,"setHeight");o(AGe,"getQuadrantData");_Ge=o(function(){ba.clear(),Ar()},"clear"),ghe={setWidth:SGe,setHeight:CGe,setQuadrant1Text:mGe,setQuadrant2Text:gGe,setQuadrant3Text:yGe,setQuadrant4Text:vGe,setXAxisLeftText:xGe,setXAxisRightText:bGe,setYAxisTopText:wGe,setYAxisBottomText:TGe,parseStyles:dO,addPoint:kGe,addClass:EGe,getQuadrantData:AGe,clear:_Ge,setAccTitle:Lr,getAccTitle:Rr,setDiagramTitle:$r,getDiagramTitle:Ir,getAccDescription:Mr,setAccDescription:Nr}});var DGe,vhe,xhe=N(()=>{"use strict";dr();zt();vt();Ei();DGe=o((t,e,r,n)=>{function i(S){return S==="top"?"hanging":"middle"}o(i,"getDominantBaseLine");function a(S){return S==="left"?"start":"middle"}o(a,"getTextAnchor");function s(S){return`translate(${S.x}, ${S.y}) rotate(${S.rotation||0})`}o(s,"getTransformation");let l=me();Y.debug(`Rendering quadrant chart +`+t);let u=l.securityLevel,h;u==="sandbox"&&(h=Ge("#i"+e));let d=(u==="sandbox"?Ge(h.nodes()[0].contentDocument.body):Ge("body")).select(`[id="${e}"]`),p=d.append("g").attr("class","main"),m=l.quadrantChart?.chartWidth??500,g=l.quadrantChart?.chartHeight??500;vn(d,g,m,l.quadrantChart?.useMaxWidth??!0),d.attr("viewBox","0 0 "+m+" "+g),n.db.setHeight(g),n.db.setWidth(m);let y=n.db.getQuadrantData(),v=p.append("g").attr("class","quadrants"),x=p.append("g").attr("class","border"),b=p.append("g").attr("class","data-points"),w=p.append("g").attr("class","labels"),C=p.append("g").attr("class","title");y.title&&C.append("text").attr("x",0).attr("y",0).attr("fill",y.title.fill).attr("font-size",y.title.fontSize).attr("dominant-baseline",i(y.title.horizontalPos)).attr("text-anchor",a(y.title.verticalPos)).attr("transform",s(y.title)).text(y.title.text),y.borderLines&&x.selectAll("line").data(y.borderLines).enter().append("line").attr("x1",S=>S.x1).attr("y1",S=>S.y1).attr("x2",S=>S.x2).attr("y2",S=>S.y2).style("stroke",S=>S.strokeFill).style("stroke-width",S=>S.strokeWidth);let T=v.selectAll("g.quadrant").data(y.quadrants).enter().append("g").attr("class","quadrant");T.append("rect").attr("x",S=>S.x).attr("y",S=>S.y).attr("width",S=>S.width).attr("height",S=>S.height).attr("fill",S=>S.fill),T.append("text").attr("x",0).attr("y",0).attr("fill",S=>S.text.fill).attr("font-size",S=>S.text.fontSize).attr("dominant-baseline",S=>i(S.text.horizontalPos)).attr("text-anchor",S=>a(S.text.verticalPos)).attr("transform",S=>s(S.text)).text(S=>S.text.text),w.selectAll("g.label").data(y.axisLabels).enter().append("g").attr("class","label").append("text").attr("x",0).attr("y",0).text(S=>S.text).attr("fill",S=>S.fill).attr("font-size",S=>S.fontSize).attr("dominant-baseline",S=>i(S.horizontalPos)).attr("text-anchor",S=>a(S.verticalPos)).attr("transform",S=>s(S));let A=b.selectAll("g.data-point").data(y.points).enter().append("g").attr("class","data-point");A.append("circle").attr("cx",S=>S.x).attr("cy",S=>S.y).attr("r",S=>S.radius).attr("fill",S=>S.fill).attr("stroke",S=>S.strokeColor).attr("stroke-width",S=>S.strokeWidth),A.append("text").attr("x",0).attr("y",0).text(S=>S.text.text).attr("fill",S=>S.text.fill).attr("font-size",S=>S.text.fontSize).attr("dominant-baseline",S=>i(S.text.horizontalPos)).attr("text-anchor",S=>a(S.text.verticalPos)).attr("transform",S=>s(S.text))},"draw"),vhe={draw:DGe}});var bhe={};hr(bhe,{diagram:()=>LGe});var LGe,whe=N(()=>{"use strict";hhe();yhe();xhe();LGe={parser:uhe,db:ghe,renderer:vhe,styles:o(()=>"","styles")}});var pO,Ehe,She=N(()=>{"use strict";pO=function(){var t=o(function(O,M,B,F){for(B=B||{},F=O.length;F--;B[O[F]]=M);return B},"o"),e=[1,10,12,14,16,18,19,21,23],r=[2,6],n=[1,3],i=[1,5],a=[1,6],s=[1,7],l=[1,5,10,12,14,16,18,19,21,23,34,35,36],u=[1,25],h=[1,26],f=[1,28],d=[1,29],p=[1,30],m=[1,31],g=[1,32],y=[1,33],v=[1,34],x=[1,35],b=[1,36],w=[1,37],C=[1,43],T=[1,42],E=[1,47],A=[1,50],S=[1,10,12,14,16,18,19,21,23,34,35,36],_=[1,10,12,14,16,18,19,21,23,24,26,27,28,34,35,36],I=[1,10,12,14,16,18,19,21,23,24,26,27,28,34,35,36,41,42,43,44,45,46,47,48,49,50],D=[1,64],k={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,eol:4,XYCHART:5,chartConfig:6,document:7,CHART_ORIENTATION:8,statement:9,title:10,text:11,X_AXIS:12,parseXAxis:13,Y_AXIS:14,parseYAxis:15,LINE:16,plotData:17,BAR:18,acc_title:19,acc_title_value:20,acc_descr:21,acc_descr_value:22,acc_descr_multiline_value:23,SQUARE_BRACES_START:24,commaSeparatedNumbers:25,SQUARE_BRACES_END:26,NUMBER_WITH_DECIMAL:27,COMMA:28,xAxisData:29,bandData:30,ARROW_DELIMITER:31,commaSeparatedTexts:32,yAxisData:33,NEWLINE:34,SEMI:35,EOF:36,alphaNum:37,STR:38,MD_STR:39,alphaNumToken:40,AMP:41,NUM:42,ALPHA:43,PLUS:44,EQUALS:45,MULT:46,DOT:47,BRKT:48,MINUS:49,UNDERSCORE:50,$accept:0,$end:1},terminals_:{2:"error",5:"XYCHART",8:"CHART_ORIENTATION",10:"title",12:"X_AXIS",14:"Y_AXIS",16:"LINE",18:"BAR",19:"acc_title",20:"acc_title_value",21:"acc_descr",22:"acc_descr_value",23:"acc_descr_multiline_value",24:"SQUARE_BRACES_START",26:"SQUARE_BRACES_END",27:"NUMBER_WITH_DECIMAL",28:"COMMA",31:"ARROW_DELIMITER",34:"NEWLINE",35:"SEMI",36:"EOF",38:"STR",39:"MD_STR",41:"AMP",42:"NUM",43:"ALPHA",44:"PLUS",45:"EQUALS",46:"MULT",47:"DOT",48:"BRKT",49:"MINUS",50:"UNDERSCORE"},productions_:[0,[3,2],[3,3],[3,2],[3,1],[6,1],[7,0],[7,2],[9,2],[9,2],[9,2],[9,2],[9,2],[9,3],[9,2],[9,3],[9,2],[9,2],[9,1],[17,3],[25,3],[25,1],[13,1],[13,2],[13,1],[29,1],[29,3],[30,3],[32,3],[32,1],[15,1],[15,2],[15,1],[33,3],[4,1],[4,1],[4,1],[11,1],[11,1],[11,1],[37,1],[37,2],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1]],performAction:o(function(M,B,F,P,z,$,H){var Q=$.length-1;switch(z){case 5:P.setOrientation($[Q]);break;case 9:P.setDiagramTitle($[Q].text.trim());break;case 12:P.setLineData({text:"",type:"text"},$[Q]);break;case 13:P.setLineData($[Q-1],$[Q]);break;case 14:P.setBarData({text:"",type:"text"},$[Q]);break;case 15:P.setBarData($[Q-1],$[Q]);break;case 16:this.$=$[Q].trim(),P.setAccTitle(this.$);break;case 17:case 18:this.$=$[Q].trim(),P.setAccDescription(this.$);break;case 19:this.$=$[Q-1];break;case 20:this.$=[Number($[Q-2]),...$[Q]];break;case 21:this.$=[Number($[Q])];break;case 22:P.setXAxisTitle($[Q]);break;case 23:P.setXAxisTitle($[Q-1]);break;case 24:P.setXAxisTitle({type:"text",text:""});break;case 25:P.setXAxisBand($[Q]);break;case 26:P.setXAxisRangeData(Number($[Q-2]),Number($[Q]));break;case 27:this.$=$[Q-1];break;case 28:this.$=[$[Q-2],...$[Q]];break;case 29:this.$=[$[Q]];break;case 30:P.setYAxisTitle($[Q]);break;case 31:P.setYAxisTitle($[Q-1]);break;case 32:P.setYAxisTitle({type:"text",text:""});break;case 33:P.setYAxisRangeData(Number($[Q-2]),Number($[Q]));break;case 37:this.$={text:$[Q],type:"text"};break;case 38:this.$={text:$[Q],type:"text"};break;case 39:this.$={text:$[Q],type:"markdown"};break;case 40:this.$=$[Q];break;case 41:this.$=$[Q-1]+""+$[Q];break}},"anonymous"),table:[t(e,r,{3:1,4:2,7:4,5:n,34:i,35:a,36:s}),{1:[3]},t(e,r,{4:2,7:4,3:8,5:n,34:i,35:a,36:s}),t(e,r,{4:2,7:4,6:9,3:10,5:n,8:[1,11],34:i,35:a,36:s}),{1:[2,4],9:12,10:[1,13],12:[1,14],14:[1,15],16:[1,16],18:[1,17],19:[1,18],21:[1,19],23:[1,20]},t(l,[2,34]),t(l,[2,35]),t(l,[2,36]),{1:[2,1]},t(e,r,{4:2,7:4,3:21,5:n,34:i,35:a,36:s}),{1:[2,3]},t(l,[2,5]),t(e,[2,7],{4:22,34:i,35:a,36:s}),{11:23,37:24,38:u,39:h,40:27,41:f,42:d,43:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w},{11:39,13:38,24:C,27:T,29:40,30:41,37:24,38:u,39:h,40:27,41:f,42:d,43:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w},{11:45,15:44,27:E,33:46,37:24,38:u,39:h,40:27,41:f,42:d,43:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w},{11:49,17:48,24:A,37:24,38:u,39:h,40:27,41:f,42:d,43:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w},{11:52,17:51,24:A,37:24,38:u,39:h,40:27,41:f,42:d,43:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w},{20:[1,53]},{22:[1,54]},t(S,[2,18]),{1:[2,2]},t(S,[2,8]),t(S,[2,9]),t(_,[2,37],{40:55,41:f,42:d,43:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w}),t(_,[2,38]),t(_,[2,39]),t(I,[2,40]),t(I,[2,42]),t(I,[2,43]),t(I,[2,44]),t(I,[2,45]),t(I,[2,46]),t(I,[2,47]),t(I,[2,48]),t(I,[2,49]),t(I,[2,50]),t(I,[2,51]),t(S,[2,10]),t(S,[2,22],{30:41,29:56,24:C,27:T}),t(S,[2,24]),t(S,[2,25]),{31:[1,57]},{11:59,32:58,37:24,38:u,39:h,40:27,41:f,42:d,43:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w},t(S,[2,11]),t(S,[2,30],{33:60,27:E}),t(S,[2,32]),{31:[1,61]},t(S,[2,12]),{17:62,24:A},{25:63,27:D},t(S,[2,14]),{17:65,24:A},t(S,[2,16]),t(S,[2,17]),t(I,[2,41]),t(S,[2,23]),{27:[1,66]},{26:[1,67]},{26:[2,29],28:[1,68]},t(S,[2,31]),{27:[1,69]},t(S,[2,13]),{26:[1,70]},{26:[2,21],28:[1,71]},t(S,[2,15]),t(S,[2,26]),t(S,[2,27]),{11:59,32:72,37:24,38:u,39:h,40:27,41:f,42:d,43:p,44:m,45:g,46:y,47:v,48:x,49:b,50:w},t(S,[2,33]),t(S,[2,19]),{25:73,27:D},{26:[2,28]},{26:[2,20]}],defaultActions:{8:[2,1],10:[2,3],21:[2,2],72:[2,28],73:[2,20]},parseError:o(function(M,B){if(B.recoverable)this.trace(M);else{var F=new Error(M);throw F.hash=B,F}},"parseError"),parse:o(function(M){var B=this,F=[0],P=[],z=[null],$=[],H=this.table,Q="",j=0,ie=0,ne=0,le=2,he=1,K=$.slice.call(arguments,1),X=Object.create(this.lexer),te={yy:{}};for(var J in this.yy)Object.prototype.hasOwnProperty.call(this.yy,J)&&(te.yy[J]=this.yy[J]);X.setInput(M,te.yy),te.yy.lexer=X,te.yy.parser=this,typeof X.yylloc>"u"&&(X.yylloc={});var se=X.yylloc;$.push(se);var ue=X.options&&X.options.ranges;typeof te.yy.parseError=="function"?this.parseError=te.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Z(re){F.length=F.length-2*re,z.length=z.length-re,$.length=$.length-re}o(Z,"popStack");function Se(){var re;return re=P.pop()||X.lex()||he,typeof re!="number"&&(re instanceof Array&&(P=re,re=P.pop()),re=B.symbols_[re]||re),re}o(Se,"lex");for(var ce,ae,Oe,ge,ze,He,$e={},Re,Ie,be,W;;){if(Oe=F[F.length-1],this.defaultActions[Oe]?ge=this.defaultActions[Oe]:((ce===null||typeof ce>"u")&&(ce=Se()),ge=H[Oe]&&H[Oe][ce]),typeof ge>"u"||!ge.length||!ge[0]){var de="";W=[];for(Re in H[Oe])this.terminals_[Re]&&Re>le&&W.push("'"+this.terminals_[Re]+"'");X.showPosition?de="Parse error on line "+(j+1)+`: +`+X.showPosition()+` +Expecting `+W.join(", ")+", got '"+(this.terminals_[ce]||ce)+"'":de="Parse error on line "+(j+1)+": Unexpected "+(ce==he?"end of input":"'"+(this.terminals_[ce]||ce)+"'"),this.parseError(de,{text:X.match,token:this.terminals_[ce]||ce,line:X.yylineno,loc:se,expected:W})}if(ge[0]instanceof Array&&ge.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Oe+", token: "+ce);switch(ge[0]){case 1:F.push(ce),z.push(X.yytext),$.push(X.yylloc),F.push(ge[1]),ce=null,ae?(ce=ae,ae=null):(ie=X.yyleng,Q=X.yytext,j=X.yylineno,se=X.yylloc,ne>0&&ne--);break;case 2:if(Ie=this.productions_[ge[1]][1],$e.$=z[z.length-Ie],$e._$={first_line:$[$.length-(Ie||1)].first_line,last_line:$[$.length-1].last_line,first_column:$[$.length-(Ie||1)].first_column,last_column:$[$.length-1].last_column},ue&&($e._$.range=[$[$.length-(Ie||1)].range[0],$[$.length-1].range[1]]),He=this.performAction.apply($e,[Q,ie,j,te.yy,ge[1],z,$].concat(K)),typeof He<"u")return He;Ie&&(F=F.slice(0,-1*Ie*2),z=z.slice(0,-1*Ie),$=$.slice(0,-1*Ie)),F.push(this.productions_[ge[1]][0]),z.push($e.$),$.push($e._$),be=H[F[F.length-2]][F[F.length-1]],F.push(be);break;case 3:return!0}}return!0},"parse")},L=function(){var O={EOF:1,parseError:o(function(B,F){if(this.yy.parser)this.yy.parser.parseError(B,F);else throw new Error(B)},"parseError"),setInput:o(function(M,B){return this.yy=B||this.yy||{},this._input=M,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var M=this._input[0];this.yytext+=M,this.yyleng++,this.offset++,this.match+=M,this.matched+=M;var B=M.match(/(?:\r\n?|\n).*/g);return B?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),M},"input"),unput:o(function(M){var B=M.length,F=M.split(/(?:\r\n?|\n)/g);this._input=M+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-B),this.offset-=B;var P=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),F.length-1&&(this.yylineno-=F.length-1);var z=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:F?(F.length===P.length?this.yylloc.first_column:0)+P[P.length-F.length].length-F[0].length:this.yylloc.first_column-B},this.options.ranges&&(this.yylloc.range=[z[0],z[0]+this.yyleng-B]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(M){this.unput(this.match.slice(M))},"less"),pastInput:o(function(){var M=this.matched.substr(0,this.matched.length-this.match.length);return(M.length>20?"...":"")+M.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var M=this.match;return M.length<20&&(M+=this._input.substr(0,20-M.length)),(M.substr(0,20)+(M.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var M=this.pastInput(),B=new Array(M.length+1).join("-");return M+this.upcomingInput()+` +`+B+"^"},"showPosition"),test_match:o(function(M,B){var F,P,z;if(this.options.backtrack_lexer&&(z={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(z.yylloc.range=this.yylloc.range.slice(0))),P=M[0].match(/(?:\r\n?|\n).*/g),P&&(this.yylineno+=P.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:P?P[P.length-1].length-P[P.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+M[0].length},this.yytext+=M[0],this.match+=M[0],this.matches=M,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(M[0].length),this.matched+=M[0],F=this.performAction.call(this,this.yy,this,B,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),F)return F;if(this._backtrack){for(var $ in z)this[$]=z[$];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var M,B,F,P;this._more||(this.yytext="",this.match="");for(var z=this._currentRules(),$=0;$B[0].length)){if(B=F,P=$,this.options.backtrack_lexer){if(M=this.test_match(F,z[$]),M!==!1)return M;if(this._backtrack){B=!1;continue}else return!1}else if(!this.options.flex)break}return B?(M=this.test_match(B,z[P]),M!==!1?M:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var B=this.next();return B||this.lex()},"lex"),begin:o(function(B){this.conditionStack.push(B)},"begin"),popState:o(function(){var B=this.conditionStack.length-1;return B>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(B){return B=this.conditionStack.length-1-Math.abs(B||0),B>=0?this.conditionStack[B]:"INITIAL"},"topState"),pushState:o(function(B){this.begin(B)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(B,F,P,z){var $=z;switch(P){case 0:break;case 1:break;case 2:return this.popState(),34;break;case 3:return this.popState(),34;break;case 4:return 34;case 5:break;case 6:return 10;case 7:return this.pushState("acc_title"),19;break;case 8:return this.popState(),"acc_title_value";break;case 9:return this.pushState("acc_descr"),21;break;case 10:return this.popState(),"acc_descr_value";break;case 11:this.pushState("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 5;case 15:return 8;case 16:return this.pushState("axis_data"),"X_AXIS";break;case 17:return this.pushState("axis_data"),"Y_AXIS";break;case 18:return this.pushState("axis_band_data"),24;break;case 19:return 31;case 20:return this.pushState("data"),16;break;case 21:return this.pushState("data"),18;break;case 22:return this.pushState("data_inner"),24;break;case 23:return 27;case 24:return this.popState(),26;break;case 25:this.popState();break;case 26:this.pushState("string");break;case 27:this.popState();break;case 28:return"STR";case 29:return 24;case 30:return 26;case 31:return 43;case 32:return"COLON";case 33:return 44;case 34:return 28;case 35:return 45;case 36:return 46;case 37:return 48;case 38:return 50;case 39:return 47;case 40:return 41;case 41:return 49;case 42:return 42;case 43:break;case 44:return 35;case 45:return 36}},"anonymous"),rules:[/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:(\r?\n))/i,/^(?:(\r?\n))/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:title\b)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:\{)/i,/^(?:[^\}]*)/i,/^(?:xychart-beta\b)/i,/^(?:(?:vertical|horizontal))/i,/^(?:x-axis\b)/i,/^(?:y-axis\b)/i,/^(?:\[)/i,/^(?:-->)/i,/^(?:line\b)/i,/^(?:bar\b)/i,/^(?:\[)/i,/^(?:[+-]?(?:\d+(?:\.\d+)?|\.\d+))/i,/^(?:\])/i,/^(?:(?:`\) \{ this\.pushState\(md_string\); \}\n\(\?:\(\?!`"\)\.\)\+ \{ return MD_STR; \}\n\(\?:`))/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:\[)/i,/^(?:\])/i,/^(?:[A-Za-z]+)/i,/^(?::)/i,/^(?:\+)/i,/^(?:,)/i,/^(?:=)/i,/^(?:\*)/i,/^(?:#)/i,/^(?:[\_])/i,/^(?:\.)/i,/^(?:&)/i,/^(?:-)/i,/^(?:[0-9]+)/i,/^(?:\s+)/i,/^(?:;)/i,/^(?:$)/i],conditions:{data_inner:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,20,21,23,24,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0},data:{rules:[0,1,3,4,5,6,7,9,11,14,15,16,17,20,21,22,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0},axis_band_data:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,20,21,24,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0},axis_data:{rules:[0,1,2,4,5,6,7,9,11,14,15,16,17,18,19,20,21,23,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0},acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},title:{rules:[],inclusive:!1},md_string:{rules:[],inclusive:!1},string:{rules:[27,28],inclusive:!1},INITIAL:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,20,21,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0}}};return O}();k.lexer=L;function R(){this.yy={}}return o(R,"Parser"),R.prototype=k,k.Parser=R,new R}();pO.parser=pO;Ehe=pO});function mO(t){return t.type==="bar"}function v6(t){return t.type==="band"}function S1(t){return t.type==="linear"}var x6=N(()=>{"use strict";o(mO,"isBarPlot");o(v6,"isBandAxisData");o(S1,"isLinearAxisData")});var C1,gO=N(()=>{"use strict";to();C1=class{constructor(e){this.parentGroup=e}static{o(this,"TextDimensionCalculatorWithFont")}getMaxDimension(e,r){if(!this.parentGroup)return{width:e.reduce((a,s)=>Math.max(s.length,a),0)*r,height:r};let n={width:0,height:0},i=this.parentGroup.append("g").attr("visibility","hidden").attr("font-size",r);for(let a of e){let s=sK(i,1,a),l=s?s.width:a.length*r,u=s?s.height:r;n.width=Math.max(n.width,l),n.height=Math.max(n.height,u)}return i.remove(),n}}});var A1,yO=N(()=>{"use strict";A1=class{constructor(e,r,n,i){this.axisConfig=e;this.title=r;this.textDimensionCalculator=n;this.axisThemeConfig=i;this.boundingRect={x:0,y:0,width:0,height:0};this.axisPosition="left";this.showTitle=!1;this.showLabel=!1;this.showTick=!1;this.showAxisLine=!1;this.outerPadding=0;this.titleTextHeight=0;this.labelTextHeight=0;this.range=[0,10],this.boundingRect={x:0,y:0,width:0,height:0},this.axisPosition="left"}static{o(this,"BaseAxis")}setRange(e){this.range=e,this.axisPosition==="left"||this.axisPosition==="right"?this.boundingRect.height=e[1]-e[0]:this.boundingRect.width=e[1]-e[0],this.recalculateScale()}getRange(){return[this.range[0]+this.outerPadding,this.range[1]-this.outerPadding]}setAxisPosition(e){this.axisPosition=e,this.setRange(this.range)}getTickDistance(){let e=this.getRange();return Math.abs(e[0]-e[1])/this.getTickValues().length}getAxisOuterPadding(){return this.outerPadding}getLabelDimension(){return this.textDimensionCalculator.getMaxDimension(this.getTickValues().map(e=>e.toString()),this.axisConfig.labelFontSize)}recalculateOuterPaddingToDrawBar(){.7*this.getTickDistance()>this.outerPadding*2&&(this.outerPadding=Math.floor(.7*this.getTickDistance()/2)),this.recalculateScale()}calculateSpaceIfDrawnHorizontally(e){let r=e.height;if(this.axisConfig.showAxisLine&&r>this.axisConfig.axisLineWidth&&(r-=this.axisConfig.axisLineWidth,this.showAxisLine=!0),this.axisConfig.showLabel){let n=this.getLabelDimension(),i=.2*e.width;this.outerPadding=Math.min(n.width/2,i);let a=n.height+this.axisConfig.labelPadding*2;this.labelTextHeight=n.height,a<=r&&(r-=a,this.showLabel=!0)}if(this.axisConfig.showTick&&r>=this.axisConfig.tickLength&&(this.showTick=!0,r-=this.axisConfig.tickLength),this.axisConfig.showTitle&&this.title){let n=this.textDimensionCalculator.getMaxDimension([this.title],this.axisConfig.titleFontSize),i=n.height+this.axisConfig.titlePadding*2;this.titleTextHeight=n.height,i<=r&&(r-=i,this.showTitle=!0)}this.boundingRect.width=e.width,this.boundingRect.height=e.height-r}calculateSpaceIfDrawnVertical(e){let r=e.width;if(this.axisConfig.showAxisLine&&r>this.axisConfig.axisLineWidth&&(r-=this.axisConfig.axisLineWidth,this.showAxisLine=!0),this.axisConfig.showLabel){let n=this.getLabelDimension(),i=.2*e.height;this.outerPadding=Math.min(n.height/2,i);let a=n.width+this.axisConfig.labelPadding*2;a<=r&&(r-=a,this.showLabel=!0)}if(this.axisConfig.showTick&&r>=this.axisConfig.tickLength&&(this.showTick=!0,r-=this.axisConfig.tickLength),this.axisConfig.showTitle&&this.title){let n=this.textDimensionCalculator.getMaxDimension([this.title],this.axisConfig.titleFontSize),i=n.height+this.axisConfig.titlePadding*2;this.titleTextHeight=n.height,i<=r&&(r-=i,this.showTitle=!0)}this.boundingRect.width=e.width-r,this.boundingRect.height=e.height}calculateSpace(e){return this.axisPosition==="left"||this.axisPosition==="right"?this.calculateSpaceIfDrawnVertical(e):this.calculateSpaceIfDrawnHorizontally(e),this.recalculateScale(),{width:this.boundingRect.width,height:this.boundingRect.height}}setBoundingBoxXY(e){this.boundingRect.x=e.x,this.boundingRect.y=e.y}getDrawableElementsForLeftAxis(){let e=[];if(this.showAxisLine){let r=this.boundingRect.x+this.boundingRect.width-this.axisConfig.axisLineWidth/2;e.push({type:"path",groupTexts:["left-axis","axisl-line"],data:[{path:`M ${r},${this.boundingRect.y} L ${r},${this.boundingRect.y+this.boundingRect.height} `,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&e.push({type:"text",groupTexts:["left-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.boundingRect.x+this.boundingRect.width-(this.showLabel?this.axisConfig.labelPadding:0)-(this.showTick?this.axisConfig.tickLength:0)-(this.showAxisLine?this.axisConfig.axisLineWidth:0),y:this.getScaleValue(r),fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"middle",horizontalPos:"right"}))}),this.showTick){let r=this.boundingRect.x+this.boundingRect.width-(this.showAxisLine?this.axisConfig.axisLineWidth:0);e.push({type:"path",groupTexts:["left-axis","ticks"],data:this.getTickValues().map(n=>({path:`M ${r},${this.getScaleValue(n)} L ${r-this.axisConfig.tickLength},${this.getScaleValue(n)}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&e.push({type:"text",groupTexts:["left-axis","title"],data:[{text:this.title,x:this.boundingRect.x+this.axisConfig.titlePadding,y:this.boundingRect.y+this.boundingRect.height/2,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:270,verticalPos:"top",horizontalPos:"center"}]}),e}getDrawableElementsForBottomAxis(){let e=[];if(this.showAxisLine){let r=this.boundingRect.y+this.axisConfig.axisLineWidth/2;e.push({type:"path",groupTexts:["bottom-axis","axis-line"],data:[{path:`M ${this.boundingRect.x},${r} L ${this.boundingRect.x+this.boundingRect.width},${r}`,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&e.push({type:"text",groupTexts:["bottom-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.getScaleValue(r),y:this.boundingRect.y+this.axisConfig.labelPadding+(this.showTick?this.axisConfig.tickLength:0)+(this.showAxisLine?this.axisConfig.axisLineWidth:0),fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}))}),this.showTick){let r=this.boundingRect.y+(this.showAxisLine?this.axisConfig.axisLineWidth:0);e.push({type:"path",groupTexts:["bottom-axis","ticks"],data:this.getTickValues().map(n=>({path:`M ${this.getScaleValue(n)},${r} L ${this.getScaleValue(n)},${r+this.axisConfig.tickLength}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&e.push({type:"text",groupTexts:["bottom-axis","title"],data:[{text:this.title,x:this.range[0]+(this.range[1]-this.range[0])/2,y:this.boundingRect.y+this.boundingRect.height-this.axisConfig.titlePadding-this.titleTextHeight,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}]}),e}getDrawableElementsForTopAxis(){let e=[];if(this.showAxisLine){let r=this.boundingRect.y+this.boundingRect.height-this.axisConfig.axisLineWidth/2;e.push({type:"path",groupTexts:["top-axis","axis-line"],data:[{path:`M ${this.boundingRect.x},${r} L ${this.boundingRect.x+this.boundingRect.width},${r}`,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&e.push({type:"text",groupTexts:["top-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.getScaleValue(r),y:this.boundingRect.y+(this.showTitle?this.titleTextHeight+this.axisConfig.titlePadding*2:0)+this.axisConfig.labelPadding,fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}))}),this.showTick){let r=this.boundingRect.y;e.push({type:"path",groupTexts:["top-axis","ticks"],data:this.getTickValues().map(n=>({path:`M ${this.getScaleValue(n)},${r+this.boundingRect.height-(this.showAxisLine?this.axisConfig.axisLineWidth:0)} L ${this.getScaleValue(n)},${r+this.boundingRect.height-this.axisConfig.tickLength-(this.showAxisLine?this.axisConfig.axisLineWidth:0)}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&e.push({type:"text",groupTexts:["top-axis","title"],data:[{text:this.title,x:this.boundingRect.x+this.boundingRect.width/2,y:this.boundingRect.y+this.axisConfig.titlePadding,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}]}),e}getDrawableElements(){if(this.axisPosition==="left")return this.getDrawableElementsForLeftAxis();if(this.axisPosition==="right")throw Error("Drawing of right axis is not implemented");return this.axisPosition==="bottom"?this.getDrawableElementsForBottomAxis():this.axisPosition==="top"?this.getDrawableElementsForTopAxis():[]}}});var b6,Che=N(()=>{"use strict";dr();vt();yO();b6=class extends A1{static{o(this,"BandAxis")}constructor(e,r,n,i,a){super(e,i,a,r),this.categories=n,this.scale=L0().domain(this.categories).range(this.getRange())}setRange(e){super.setRange(e)}recalculateScale(){this.scale=L0().domain(this.categories).range(this.getRange()).paddingInner(1).paddingOuter(0).align(.5),Y.trace("BandAxis axis final categories, range: ",this.categories,this.getRange())}getTickValues(){return this.categories}getScaleValue(e){return this.scale(e)??this.getRange()[0]}}});var w6,Ahe=N(()=>{"use strict";dr();yO();w6=class extends A1{static{o(this,"LinearAxis")}constructor(e,r,n,i,a){super(e,i,a,r),this.domain=n,this.scale=gl().domain(this.domain).range(this.getRange())}getTickValues(){return this.scale.ticks()}recalculateScale(){let e=[...this.domain];this.axisPosition==="left"&&e.reverse(),this.scale=gl().domain(e).range(this.getRange())}getScaleValue(e){return this.scale(e)}}});function vO(t,e,r,n){let i=new C1(n);return v6(t)?new b6(e,r,t.categories,t.title,i):new w6(e,r,[t.min,t.max],t.title,i)}var _he=N(()=>{"use strict";x6();gO();Che();Ahe();o(vO,"getAxis")});function Dhe(t,e,r,n){let i=new C1(n);return new xO(i,t,e,r)}var xO,Lhe=N(()=>{"use strict";gO();xO=class{constructor(e,r,n,i){this.textDimensionCalculator=e;this.chartConfig=r;this.chartData=n;this.chartThemeConfig=i;this.boundingRect={x:0,y:0,width:0,height:0},this.showChartTitle=!1}static{o(this,"ChartTitle")}setBoundingBoxXY(e){this.boundingRect.x=e.x,this.boundingRect.y=e.y}calculateSpace(e){let r=this.textDimensionCalculator.getMaxDimension([this.chartData.title],this.chartConfig.titleFontSize),n=Math.max(r.width,e.width),i=r.height+2*this.chartConfig.titlePadding;return r.width<=n&&r.height<=i&&this.chartConfig.showTitle&&this.chartData.title&&(this.boundingRect.width=n,this.boundingRect.height=i,this.showChartTitle=!0),{width:this.boundingRect.width,height:this.boundingRect.height}}getDrawableElements(){let e=[];return this.showChartTitle&&e.push({groupTexts:["chart-title"],type:"text",data:[{fontSize:this.chartConfig.titleFontSize,text:this.chartData.title,verticalPos:"middle",horizontalPos:"center",x:this.boundingRect.x+this.boundingRect.width/2,y:this.boundingRect.y+this.boundingRect.height/2,fill:this.chartThemeConfig.titleColor,rotation:0}]}),e}};o(Dhe,"getChartTitleComponent")});var T6,Rhe=N(()=>{"use strict";dr();T6=class{constructor(e,r,n,i,a){this.plotData=e;this.xAxis=r;this.yAxis=n;this.orientation=i;this.plotIndex=a}static{o(this,"LinePlot")}getDrawableElement(){let e=this.plotData.data.map(n=>[this.xAxis.getScaleValue(n[0]),this.yAxis.getScaleValue(n[1])]),r;return this.orientation==="horizontal"?r=wl().y(n=>n[0]).x(n=>n[1])(e):r=wl().x(n=>n[0]).y(n=>n[1])(e),r?[{groupTexts:["plot",`line-plot-${this.plotIndex}`],type:"path",data:[{path:r,strokeFill:this.plotData.strokeFill,strokeWidth:this.plotData.strokeWidth}]}]:[]}}});var k6,Nhe=N(()=>{"use strict";k6=class{constructor(e,r,n,i,a,s){this.barData=e;this.boundingRect=r;this.xAxis=n;this.yAxis=i;this.orientation=a;this.plotIndex=s}static{o(this,"BarPlot")}getDrawableElement(){let e=this.barData.data.map(a=>[this.xAxis.getScaleValue(a[0]),this.yAxis.getScaleValue(a[1])]),n=Math.min(this.xAxis.getAxisOuterPadding()*2,this.xAxis.getTickDistance())*(1-.05),i=n/2;return this.orientation==="horizontal"?[{groupTexts:["plot",`bar-plot-${this.plotIndex}`],type:"rect",data:e.map(a=>({x:this.boundingRect.x,y:a[0]-i,height:n,width:a[1]-this.boundingRect.x,fill:this.barData.fill,strokeWidth:0,strokeFill:this.barData.fill}))}]:[{groupTexts:["plot",`bar-plot-${this.plotIndex}`],type:"rect",data:e.map(a=>({x:a[0]-i,y:a[1],width:n,height:this.boundingRect.y+this.boundingRect.height-a[1],fill:this.barData.fill,strokeWidth:0,strokeFill:this.barData.fill}))}]}}});function Mhe(t,e,r){return new bO(t,e,r)}var bO,Ihe=N(()=>{"use strict";Rhe();Nhe();bO=class{constructor(e,r,n){this.chartConfig=e;this.chartData=r;this.chartThemeConfig=n;this.boundingRect={x:0,y:0,width:0,height:0}}static{o(this,"BasePlot")}setAxes(e,r){this.xAxis=e,this.yAxis=r}setBoundingBoxXY(e){this.boundingRect.x=e.x,this.boundingRect.y=e.y}calculateSpace(e){return this.boundingRect.width=e.width,this.boundingRect.height=e.height,{width:this.boundingRect.width,height:this.boundingRect.height}}getDrawableElements(){if(!(this.xAxis&&this.yAxis))throw Error("Axes must be passed to render Plots");let e=[];for(let[r,n]of this.chartData.plots.entries())switch(n.type){case"line":{let i=new T6(n,this.xAxis,this.yAxis,this.chartConfig.chartOrientation,r);e.push(...i.getDrawableElement())}break;case"bar":{let i=new k6(n,this.boundingRect,this.xAxis,this.yAxis,this.chartConfig.chartOrientation,r);e.push(...i.getDrawableElement())}break}return e}};o(Mhe,"getPlotComponent")});var E6,Ohe=N(()=>{"use strict";_he();Lhe();Ihe();x6();E6=class{constructor(e,r,n,i){this.chartConfig=e;this.chartData=r;this.componentStore={title:Dhe(e,r,n,i),plot:Mhe(e,r,n),xAxis:vO(r.xAxis,e.xAxis,{titleColor:n.xAxisTitleColor,labelColor:n.xAxisLabelColor,tickColor:n.xAxisTickColor,axisLineColor:n.xAxisLineColor},i),yAxis:vO(r.yAxis,e.yAxis,{titleColor:n.yAxisTitleColor,labelColor:n.yAxisLabelColor,tickColor:n.yAxisTickColor,axisLineColor:n.yAxisLineColor},i)}}static{o(this,"Orchestrator")}calculateVerticalSpace(){let e=this.chartConfig.width,r=this.chartConfig.height,n=0,i=0,a=Math.floor(e*this.chartConfig.plotReservedSpacePercent/100),s=Math.floor(r*this.chartConfig.plotReservedSpacePercent/100),l=this.componentStore.plot.calculateSpace({width:a,height:s});e-=l.width,r-=l.height,l=this.componentStore.title.calculateSpace({width:this.chartConfig.width,height:r}),i=l.height,r-=l.height,this.componentStore.xAxis.setAxisPosition("bottom"),l=this.componentStore.xAxis.calculateSpace({width:e,height:r}),r-=l.height,this.componentStore.yAxis.setAxisPosition("left"),l=this.componentStore.yAxis.calculateSpace({width:e,height:r}),n=l.width,e-=l.width,e>0&&(a+=e,e=0),r>0&&(s+=r,r=0),this.componentStore.plot.calculateSpace({width:a,height:s}),this.componentStore.plot.setBoundingBoxXY({x:n,y:i}),this.componentStore.xAxis.setRange([n,n+a]),this.componentStore.xAxis.setBoundingBoxXY({x:n,y:i+s}),this.componentStore.yAxis.setRange([i,i+s]),this.componentStore.yAxis.setBoundingBoxXY({x:0,y:i}),this.chartData.plots.some(u=>mO(u))&&this.componentStore.xAxis.recalculateOuterPaddingToDrawBar()}calculateHorizontalSpace(){let e=this.chartConfig.width,r=this.chartConfig.height,n=0,i=0,a=0,s=Math.floor(e*this.chartConfig.plotReservedSpacePercent/100),l=Math.floor(r*this.chartConfig.plotReservedSpacePercent/100),u=this.componentStore.plot.calculateSpace({width:s,height:l});e-=u.width,r-=u.height,u=this.componentStore.title.calculateSpace({width:this.chartConfig.width,height:r}),n=u.height,r-=u.height,this.componentStore.xAxis.setAxisPosition("left"),u=this.componentStore.xAxis.calculateSpace({width:e,height:r}),e-=u.width,i=u.width,this.componentStore.yAxis.setAxisPosition("top"),u=this.componentStore.yAxis.calculateSpace({width:e,height:r}),r-=u.height,a=n+u.height,e>0&&(s+=e,e=0),r>0&&(l+=r,r=0),this.componentStore.plot.calculateSpace({width:s,height:l}),this.componentStore.plot.setBoundingBoxXY({x:i,y:a}),this.componentStore.yAxis.setRange([i,i+s]),this.componentStore.yAxis.setBoundingBoxXY({x:i,y:n}),this.componentStore.xAxis.setRange([a,a+l]),this.componentStore.xAxis.setBoundingBoxXY({x:0,y:a}),this.chartData.plots.some(h=>mO(h))&&this.componentStore.xAxis.recalculateOuterPaddingToDrawBar()}calculateSpace(){this.chartConfig.chartOrientation==="horizontal"?this.calculateHorizontalSpace():this.calculateVerticalSpace()}getDrawableElement(){this.calculateSpace();let e=[];this.componentStore.plot.setAxes(this.componentStore.xAxis,this.componentStore.yAxis);for(let r of Object.values(this.componentStore))e.push(...r.getDrawableElements());return e}}});var S6,Phe=N(()=>{"use strict";Ohe();S6=class{static{o(this,"XYChartBuilder")}static build(e,r,n,i){return new E6(e,r,n,i).getDrawableElement()}}});function Fhe(){let t=oh(),e=cr();return Fi(t.xyChart,e.themeVariables.xyChart)}function $he(){let t=cr();return Fi(or.xyChart,t.xyChart)}function zhe(){return{yAxis:{type:"linear",title:"",min:1/0,max:-1/0},xAxis:{type:"band",title:"",categories:[]},title:"",plots:[]}}function kO(t){let e=cr();return Tr(t.trim(),e)}function IGe(t){Bhe=t}function OGe(t){t==="horizontal"?bb.chartOrientation="horizontal":bb.chartOrientation="vertical"}function PGe(t){fn.xAxis.title=kO(t.text)}function Ghe(t,e){fn.xAxis={type:"linear",title:fn.xAxis.title,min:t,max:e},C6=!0}function BGe(t){fn.xAxis={type:"band",title:fn.xAxis.title,categories:t.map(e=>kO(e.text))},C6=!0}function FGe(t){fn.yAxis.title=kO(t.text)}function $Ge(t,e){fn.yAxis={type:"linear",title:fn.yAxis.title,min:t,max:e},TO=!0}function zGe(t){let e=Math.min(...t),r=Math.max(...t),n=S1(fn.yAxis)?fn.yAxis.min:1/0,i=S1(fn.yAxis)?fn.yAxis.max:-1/0;fn.yAxis={type:"linear",title:fn.yAxis.title,min:Math.min(n,e),max:Math.max(i,r)}}function Vhe(t){let e=[];if(t.length===0)return e;if(!C6){let r=S1(fn.xAxis)?fn.xAxis.min:1/0,n=S1(fn.xAxis)?fn.xAxis.max:-1/0;Ghe(Math.min(r,1),Math.max(n,t.length))}if(TO||zGe(t),v6(fn.xAxis)&&(e=fn.xAxis.categories.map((r,n)=>[r,t[n]])),S1(fn.xAxis)){let r=fn.xAxis.min,n=fn.xAxis.max,i=(n-r)/(t.length-1),a=[];for(let s=r;s<=n;s+=i)a.push(`${s}`);e=a.map((s,l)=>[s,t[l]])}return e}function Uhe(t){return wO[t===0?0:t%wO.length]}function GGe(t,e){let r=Vhe(e);fn.plots.push({type:"line",strokeFill:Uhe(xb),strokeWidth:2,data:r}),xb++}function VGe(t,e){let r=Vhe(e);fn.plots.push({type:"bar",fill:Uhe(xb),data:r}),xb++}function UGe(){if(fn.plots.length===0)throw Error("No Plot to render, please provide a plot with some data");return fn.title=Ir(),S6.build(bb,fn,wb,Bhe)}function HGe(){return wb}function WGe(){return bb}var xb,Bhe,bb,wb,fn,wO,C6,TO,qGe,Hhe,Whe=N(()=>{"use strict";ji();Ya();_y();ir();gr();mi();Phe();x6();xb=0,bb=$he(),wb=Fhe(),fn=zhe(),wO=wb.plotColorPalette.split(",").map(t=>t.trim()),C6=!1,TO=!1;o(Fhe,"getChartDefaultThemeConfig");o($he,"getChartDefaultConfig");o(zhe,"getChartDefaultData");o(kO,"textSanitizer");o(IGe,"setTmpSVGG");o(OGe,"setOrientation");o(PGe,"setXAxisTitle");o(Ghe,"setXAxisRangeData");o(BGe,"setXAxisBand");o(FGe,"setYAxisTitle");o($Ge,"setYAxisRangeData");o(zGe,"setYAxisRangeFromPlotData");o(Vhe,"transformDataWithoutCategory");o(Uhe,"getPlotColorFromPalette");o(GGe,"setLineData");o(VGe,"setBarData");o(UGe,"getDrawableElem");o(HGe,"getChartThemeConfig");o(WGe,"getChartConfig");qGe=o(function(){Ar(),xb=0,bb=$he(),fn=zhe(),wb=Fhe(),wO=wb.plotColorPalette.split(",").map(t=>t.trim()),C6=!1,TO=!1},"clear"),Hhe={getDrawableElem:UGe,clear:qGe,setAccTitle:Lr,getAccTitle:Rr,setDiagramTitle:$r,getDiagramTitle:Ir,getAccDescription:Mr,setAccDescription:Nr,setOrientation:OGe,setXAxisTitle:PGe,setXAxisRangeData:Ghe,setXAxisBand:BGe,setYAxisTitle:FGe,setYAxisRangeData:$Ge,setLineData:GGe,setBarData:VGe,setTmpSVGG:IGe,getChartThemeConfig:HGe,getChartConfig:WGe}});var YGe,qhe,Yhe=N(()=>{"use strict";vt();Vc();Ei();YGe=o((t,e,r,n)=>{let i=n.db,a=i.getChartThemeConfig(),s=i.getChartConfig();function l(v){return v==="top"?"text-before-edge":"middle"}o(l,"getDominantBaseLine");function u(v){return v==="left"?"start":v==="right"?"end":"middle"}o(u,"getTextAnchor");function h(v){return`translate(${v.x}, ${v.y}) rotate(${v.rotation||0})`}o(h,"getTextTransformation"),Y.debug(`Rendering xychart chart +`+t);let f=sa(e),d=f.append("g").attr("class","main"),p=d.append("rect").attr("width",s.width).attr("height",s.height).attr("class","background");vn(f,s.height,s.width,!0),f.attr("viewBox",`0 0 ${s.width} ${s.height}`),p.attr("fill",a.backgroundColor),i.setTmpSVGG(f.append("g").attr("class","mermaid-tmp-group"));let m=i.getDrawableElem(),g={};function y(v){let x=d,b="";for(let[w]of v.entries()){let C=d;w>0&&g[b]&&(C=g[b]),b+=v[w],x=g[b],x||(x=g[b]=C.append("g").attr("class",v[w]))}return x}o(y,"getGroup");for(let v of m){if(v.data.length===0)continue;let x=y(v.groupTexts);switch(v.type){case"rect":x.selectAll("rect").data(v.data).enter().append("rect").attr("x",b=>b.x).attr("y",b=>b.y).attr("width",b=>b.width).attr("height",b=>b.height).attr("fill",b=>b.fill).attr("stroke",b=>b.strokeFill).attr("stroke-width",b=>b.strokeWidth);break;case"text":x.selectAll("text").data(v.data).enter().append("text").attr("x",0).attr("y",0).attr("fill",b=>b.fill).attr("font-size",b=>b.fontSize).attr("dominant-baseline",b=>l(b.verticalPos)).attr("text-anchor",b=>u(b.horizontalPos)).attr("transform",b=>h(b)).text(b=>b.text);break;case"path":x.selectAll("path").data(v.data).enter().append("path").attr("d",b=>b.path).attr("fill",b=>b.fill?b.fill:"none").attr("stroke",b=>b.strokeFill).attr("stroke-width",b=>b.strokeWidth);break}}},"draw"),qhe={draw:YGe}});var Xhe={};hr(Xhe,{diagram:()=>XGe});var XGe,jhe=N(()=>{"use strict";She();Whe();Yhe();XGe={parser:Ehe,db:Hhe,renderer:qhe}});var EO,Zhe,Jhe=N(()=>{"use strict";EO=function(){var t=o(function(re,oe,V,xe){for(V=V||{},xe=re.length;xe--;V[re[xe]]=oe);return V},"o"),e=[1,3],r=[1,4],n=[1,5],i=[1,6],a=[5,6,8,9,11,13,21,22,23,24,41,42,43,44,45,46,54,72,74,77,89,90],s=[1,22],l=[2,7],u=[1,26],h=[1,27],f=[1,28],d=[1,29],p=[1,33],m=[1,34],g=[1,35],y=[1,36],v=[1,37],x=[1,38],b=[1,24],w=[1,31],C=[1,32],T=[1,30],E=[1,39],A=[1,40],S=[5,8,9,11,13,21,22,23,24,41,42,43,44,45,46,54,72,74,77,89,90],_=[1,61],I=[89,90],D=[5,8,9,11,13,21,22,23,24,27,29,41,42,43,44,45,46,54,61,63,72,74,75,76,77,80,81,82,83,84,85,86,87,88,89,90],k=[27,29],L=[1,70],R=[1,71],O=[1,72],M=[1,73],B=[1,74],F=[1,75],P=[1,76],z=[1,83],$=[1,80],H=[1,84],Q=[1,85],j=[1,86],ie=[1,87],ne=[1,88],le=[1,89],he=[1,90],K=[1,91],X=[1,92],te=[5,8,9,11,13,21,22,23,24,27,41,42,43,44,45,46,54,72,74,75,76,77,80,81,82,83,84,85,86,87,88,89,90],J=[63,64],se=[1,101],ue=[5,8,9,11,13,21,22,23,24,41,42,43,44,45,46,54,72,74,76,77,89,90],Z=[5,8,9,11,13,21,22,23,24,41,42,43,44,45,46,54,72,74,75,76,77,80,81,82,83,84,85,86,87,88,89,90],Se=[1,110],ce=[1,106],ae=[1,107],Oe=[1,108],ge=[1,109],ze=[1,111],He=[1,116],$e=[1,117],Re=[1,114],Ie=[1,115],be={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,directive:4,NEWLINE:5,RD:6,diagram:7,EOF:8,acc_title:9,acc_title_value:10,acc_descr:11,acc_descr_value:12,acc_descr_multiline_value:13,requirementDef:14,elementDef:15,relationshipDef:16,direction:17,styleStatement:18,classDefStatement:19,classStatement:20,direction_tb:21,direction_bt:22,direction_rl:23,direction_lr:24,requirementType:25,requirementName:26,STRUCT_START:27,requirementBody:28,STYLE_SEPARATOR:29,idList:30,ID:31,COLONSEP:32,id:33,TEXT:34,text:35,RISK:36,riskLevel:37,VERIFYMTHD:38,verifyType:39,STRUCT_STOP:40,REQUIREMENT:41,FUNCTIONAL_REQUIREMENT:42,INTERFACE_REQUIREMENT:43,PERFORMANCE_REQUIREMENT:44,PHYSICAL_REQUIREMENT:45,DESIGN_CONSTRAINT:46,LOW_RISK:47,MED_RISK:48,HIGH_RISK:49,VERIFY_ANALYSIS:50,VERIFY_DEMONSTRATION:51,VERIFY_INSPECTION:52,VERIFY_TEST:53,ELEMENT:54,elementName:55,elementBody:56,TYPE:57,type:58,DOCREF:59,ref:60,END_ARROW_L:61,relationship:62,LINE:63,END_ARROW_R:64,CONTAINS:65,COPIES:66,DERIVES:67,SATISFIES:68,VERIFIES:69,REFINES:70,TRACES:71,CLASSDEF:72,stylesOpt:73,CLASS:74,ALPHA:75,COMMA:76,STYLE:77,style:78,styleComponent:79,NUM:80,COLON:81,UNIT:82,SPACE:83,BRKT:84,PCT:85,MINUS:86,LABEL:87,SEMICOLON:88,unqString:89,qString:90,$accept:0,$end:1},terminals_:{2:"error",5:"NEWLINE",6:"RD",8:"EOF",9:"acc_title",10:"acc_title_value",11:"acc_descr",12:"acc_descr_value",13:"acc_descr_multiline_value",21:"direction_tb",22:"direction_bt",23:"direction_rl",24:"direction_lr",27:"STRUCT_START",29:"STYLE_SEPARATOR",31:"ID",32:"COLONSEP",34:"TEXT",36:"RISK",38:"VERIFYMTHD",40:"STRUCT_STOP",41:"REQUIREMENT",42:"FUNCTIONAL_REQUIREMENT",43:"INTERFACE_REQUIREMENT",44:"PERFORMANCE_REQUIREMENT",45:"PHYSICAL_REQUIREMENT",46:"DESIGN_CONSTRAINT",47:"LOW_RISK",48:"MED_RISK",49:"HIGH_RISK",50:"VERIFY_ANALYSIS",51:"VERIFY_DEMONSTRATION",52:"VERIFY_INSPECTION",53:"VERIFY_TEST",54:"ELEMENT",57:"TYPE",59:"DOCREF",61:"END_ARROW_L",63:"LINE",64:"END_ARROW_R",65:"CONTAINS",66:"COPIES",67:"DERIVES",68:"SATISFIES",69:"VERIFIES",70:"REFINES",71:"TRACES",72:"CLASSDEF",74:"CLASS",75:"ALPHA",76:"COMMA",77:"STYLE",80:"NUM",81:"COLON",82:"UNIT",83:"SPACE",84:"BRKT",85:"PCT",86:"MINUS",87:"LABEL",88:"SEMICOLON",89:"unqString",90:"qString"},productions_:[0,[3,3],[3,2],[3,4],[4,2],[4,2],[4,1],[7,0],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[17,1],[17,1],[17,1],[17,1],[14,5],[14,7],[28,5],[28,5],[28,5],[28,5],[28,2],[28,1],[25,1],[25,1],[25,1],[25,1],[25,1],[25,1],[37,1],[37,1],[37,1],[39,1],[39,1],[39,1],[39,1],[15,5],[15,7],[56,5],[56,5],[56,2],[56,1],[16,5],[16,5],[62,1],[62,1],[62,1],[62,1],[62,1],[62,1],[62,1],[19,3],[20,3],[20,3],[30,1],[30,3],[30,1],[30,3],[18,3],[73,1],[73,3],[78,1],[78,2],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[26,1],[26,1],[33,1],[33,1],[35,1],[35,1],[55,1],[55,1],[58,1],[58,1],[60,1],[60,1]],performAction:o(function(oe,V,xe,q,pe,ve,Pe){var _e=ve.length-1;switch(pe){case 4:this.$=ve[_e].trim(),q.setAccTitle(this.$);break;case 5:case 6:this.$=ve[_e].trim(),q.setAccDescription(this.$);break;case 7:this.$=[];break;case 17:q.setDirection("TB");break;case 18:q.setDirection("BT");break;case 19:q.setDirection("RL");break;case 20:q.setDirection("LR");break;case 21:q.addRequirement(ve[_e-3],ve[_e-4]);break;case 22:q.addRequirement(ve[_e-5],ve[_e-6]),q.setClass([ve[_e-5]],ve[_e-3]);break;case 23:q.setNewReqId(ve[_e-2]);break;case 24:q.setNewReqText(ve[_e-2]);break;case 25:q.setNewReqRisk(ve[_e-2]);break;case 26:q.setNewReqVerifyMethod(ve[_e-2]);break;case 29:this.$=q.RequirementType.REQUIREMENT;break;case 30:this.$=q.RequirementType.FUNCTIONAL_REQUIREMENT;break;case 31:this.$=q.RequirementType.INTERFACE_REQUIREMENT;break;case 32:this.$=q.RequirementType.PERFORMANCE_REQUIREMENT;break;case 33:this.$=q.RequirementType.PHYSICAL_REQUIREMENT;break;case 34:this.$=q.RequirementType.DESIGN_CONSTRAINT;break;case 35:this.$=q.RiskLevel.LOW_RISK;break;case 36:this.$=q.RiskLevel.MED_RISK;break;case 37:this.$=q.RiskLevel.HIGH_RISK;break;case 38:this.$=q.VerifyType.VERIFY_ANALYSIS;break;case 39:this.$=q.VerifyType.VERIFY_DEMONSTRATION;break;case 40:this.$=q.VerifyType.VERIFY_INSPECTION;break;case 41:this.$=q.VerifyType.VERIFY_TEST;break;case 42:q.addElement(ve[_e-3]);break;case 43:q.addElement(ve[_e-5]),q.setClass([ve[_e-5]],ve[_e-3]);break;case 44:q.setNewElementType(ve[_e-2]);break;case 45:q.setNewElementDocRef(ve[_e-2]);break;case 48:q.addRelationship(ve[_e-2],ve[_e],ve[_e-4]);break;case 49:q.addRelationship(ve[_e-2],ve[_e-4],ve[_e]);break;case 50:this.$=q.Relationships.CONTAINS;break;case 51:this.$=q.Relationships.COPIES;break;case 52:this.$=q.Relationships.DERIVES;break;case 53:this.$=q.Relationships.SATISFIES;break;case 54:this.$=q.Relationships.VERIFIES;break;case 55:this.$=q.Relationships.REFINES;break;case 56:this.$=q.Relationships.TRACES;break;case 57:this.$=ve[_e-2],q.defineClass(ve[_e-1],ve[_e]);break;case 58:q.setClass(ve[_e-1],ve[_e]);break;case 59:q.setClass([ve[_e-2]],ve[_e]);break;case 60:case 62:this.$=[ve[_e]];break;case 61:case 63:this.$=ve[_e-2].concat([ve[_e]]);break;case 64:this.$=ve[_e-2],q.setCssStyle(ve[_e-1],ve[_e]);break;case 65:this.$=[ve[_e]];break;case 66:ve[_e-2].push(ve[_e]),this.$=ve[_e-2];break;case 68:this.$=ve[_e-1]+ve[_e];break}},"anonymous"),table:[{3:1,4:2,6:e,9:r,11:n,13:i},{1:[3]},{3:8,4:2,5:[1,7],6:e,9:r,11:n,13:i},{5:[1,9]},{10:[1,10]},{12:[1,11]},t(a,[2,6]),{3:12,4:2,6:e,9:r,11:n,13:i},{1:[2,2]},{4:17,5:s,7:13,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},t(a,[2,4]),t(a,[2,5]),{1:[2,1]},{8:[1,41]},{4:17,5:s,7:42,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{4:17,5:s,7:43,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{4:17,5:s,7:44,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{4:17,5:s,7:45,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{4:17,5:s,7:46,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{4:17,5:s,7:47,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{4:17,5:s,7:48,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{4:17,5:s,7:49,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{4:17,5:s,7:50,8:l,9:r,11:n,13:i,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:u,22:h,23:f,24:d,25:23,33:25,41:p,42:m,43:g,44:y,45:v,46:x,54:b,72:w,74:C,77:T,89:E,90:A},{26:51,89:[1,52],90:[1,53]},{55:54,89:[1,55],90:[1,56]},{29:[1,59],61:[1,57],63:[1,58]},t(S,[2,17]),t(S,[2,18]),t(S,[2,19]),t(S,[2,20]),{30:60,33:62,75:_,89:E,90:A},{30:63,33:62,75:_,89:E,90:A},{30:64,33:62,75:_,89:E,90:A},t(I,[2,29]),t(I,[2,30]),t(I,[2,31]),t(I,[2,32]),t(I,[2,33]),t(I,[2,34]),t(D,[2,81]),t(D,[2,82]),{1:[2,3]},{8:[2,8]},{8:[2,9]},{8:[2,10]},{8:[2,11]},{8:[2,12]},{8:[2,13]},{8:[2,14]},{8:[2,15]},{8:[2,16]},{27:[1,65],29:[1,66]},t(k,[2,79]),t(k,[2,80]),{27:[1,67],29:[1,68]},t(k,[2,85]),t(k,[2,86]),{62:69,65:L,66:R,67:O,68:M,69:B,70:F,71:P},{62:77,65:L,66:R,67:O,68:M,69:B,70:F,71:P},{30:78,33:62,75:_,89:E,90:A},{73:79,75:z,76:$,78:81,79:82,80:H,81:Q,82:j,83:ie,84:ne,85:le,86:he,87:K,88:X},t(te,[2,60]),t(te,[2,62]),{73:93,75:z,76:$,78:81,79:82,80:H,81:Q,82:j,83:ie,84:ne,85:le,86:he,87:K,88:X},{30:94,33:62,75:_,76:$,89:E,90:A},{5:[1,95]},{30:96,33:62,75:_,89:E,90:A},{5:[1,97]},{30:98,33:62,75:_,89:E,90:A},{63:[1,99]},t(J,[2,50]),t(J,[2,51]),t(J,[2,52]),t(J,[2,53]),t(J,[2,54]),t(J,[2,55]),t(J,[2,56]),{64:[1,100]},t(S,[2,59],{76:$}),t(S,[2,64],{76:se}),{33:103,75:[1,102],89:E,90:A},t(ue,[2,65],{79:104,75:z,80:H,81:Q,82:j,83:ie,84:ne,85:le,86:he,87:K,88:X}),t(Z,[2,67]),t(Z,[2,69]),t(Z,[2,70]),t(Z,[2,71]),t(Z,[2,72]),t(Z,[2,73]),t(Z,[2,74]),t(Z,[2,75]),t(Z,[2,76]),t(Z,[2,77]),t(Z,[2,78]),t(S,[2,57],{76:se}),t(S,[2,58],{76:$}),{5:Se,28:105,31:ce,34:ae,36:Oe,38:ge,40:ze},{27:[1,112],76:$},{5:He,40:$e,56:113,57:Re,59:Ie},{27:[1,118],76:$},{33:119,89:E,90:A},{33:120,89:E,90:A},{75:z,78:121,79:82,80:H,81:Q,82:j,83:ie,84:ne,85:le,86:he,87:K,88:X},t(te,[2,61]),t(te,[2,63]),t(Z,[2,68]),t(S,[2,21]),{32:[1,122]},{32:[1,123]},{32:[1,124]},{32:[1,125]},{5:Se,28:126,31:ce,34:ae,36:Oe,38:ge,40:ze},t(S,[2,28]),{5:[1,127]},t(S,[2,42]),{32:[1,128]},{32:[1,129]},{5:He,40:$e,56:130,57:Re,59:Ie},t(S,[2,47]),{5:[1,131]},t(S,[2,48]),t(S,[2,49]),t(ue,[2,66],{79:104,75:z,80:H,81:Q,82:j,83:ie,84:ne,85:le,86:he,87:K,88:X}),{33:132,89:E,90:A},{35:133,89:[1,134],90:[1,135]},{37:136,47:[1,137],48:[1,138],49:[1,139]},{39:140,50:[1,141],51:[1,142],52:[1,143],53:[1,144]},t(S,[2,27]),{5:Se,28:145,31:ce,34:ae,36:Oe,38:ge,40:ze},{58:146,89:[1,147],90:[1,148]},{60:149,89:[1,150],90:[1,151]},t(S,[2,46]),{5:He,40:$e,56:152,57:Re,59:Ie},{5:[1,153]},{5:[1,154]},{5:[2,83]},{5:[2,84]},{5:[1,155]},{5:[2,35]},{5:[2,36]},{5:[2,37]},{5:[1,156]},{5:[2,38]},{5:[2,39]},{5:[2,40]},{5:[2,41]},t(S,[2,22]),{5:[1,157]},{5:[2,87]},{5:[2,88]},{5:[1,158]},{5:[2,89]},{5:[2,90]},t(S,[2,43]),{5:Se,28:159,31:ce,34:ae,36:Oe,38:ge,40:ze},{5:Se,28:160,31:ce,34:ae,36:Oe,38:ge,40:ze},{5:Se,28:161,31:ce,34:ae,36:Oe,38:ge,40:ze},{5:Se,28:162,31:ce,34:ae,36:Oe,38:ge,40:ze},{5:He,40:$e,56:163,57:Re,59:Ie},{5:He,40:$e,56:164,57:Re,59:Ie},t(S,[2,23]),t(S,[2,24]),t(S,[2,25]),t(S,[2,26]),t(S,[2,44]),t(S,[2,45])],defaultActions:{8:[2,2],12:[2,1],41:[2,3],42:[2,8],43:[2,9],44:[2,10],45:[2,11],46:[2,12],47:[2,13],48:[2,14],49:[2,15],50:[2,16],134:[2,83],135:[2,84],137:[2,35],138:[2,36],139:[2,37],141:[2,38],142:[2,39],143:[2,40],144:[2,41],147:[2,87],148:[2,88],150:[2,89],151:[2,90]},parseError:o(function(oe,V){if(V.recoverable)this.trace(oe);else{var xe=new Error(oe);throw xe.hash=V,xe}},"parseError"),parse:o(function(oe){var V=this,xe=[0],q=[],pe=[null],ve=[],Pe=this.table,_e="",we=0,Ve=0,De=0,qe=2,at=1,Rt=ve.slice.call(arguments,1),st=Object.create(this.lexer),Ue={yy:{}};for(var ct in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ct)&&(Ue.yy[ct]=this.yy[ct]);st.setInput(oe,Ue.yy),Ue.yy.lexer=st,Ue.yy.parser=this,typeof st.yylloc>"u"&&(st.yylloc={});var We=st.yylloc;ve.push(We);var ot=st.options&&st.options.ranges;typeof Ue.yy.parseError=="function"?this.parseError=Ue.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Yt(Dr){xe.length=xe.length-2*Dr,pe.length=pe.length-Dr,ve.length=ve.length-Dr}o(Yt,"popStack");function bt(){var Dr;return Dr=q.pop()||st.lex()||at,typeof Dr!="number"&&(Dr instanceof Array&&(q=Dr,Dr=q.pop()),Dr=V.symbols_[Dr]||Dr),Dr}o(bt,"lex");for(var Mt,xt,ut,Et,ft,yt,nt={},dn,Tt,On,tn;;){if(ut=xe[xe.length-1],this.defaultActions[ut]?Et=this.defaultActions[ut]:((Mt===null||typeof Mt>"u")&&(Mt=bt()),Et=Pe[ut]&&Pe[ut][Mt]),typeof Et>"u"||!Et.length||!Et[0]){var _r="";tn=[];for(dn in Pe[ut])this.terminals_[dn]&&dn>qe&&tn.push("'"+this.terminals_[dn]+"'");st.showPosition?_r="Parse error on line "+(we+1)+`: +`+st.showPosition()+` +Expecting `+tn.join(", ")+", got '"+(this.terminals_[Mt]||Mt)+"'":_r="Parse error on line "+(we+1)+": Unexpected "+(Mt==at?"end of input":"'"+(this.terminals_[Mt]||Mt)+"'"),this.parseError(_r,{text:st.match,token:this.terminals_[Mt]||Mt,line:st.yylineno,loc:We,expected:tn})}if(Et[0]instanceof Array&&Et.length>1)throw new Error("Parse Error: multiple actions possible at state: "+ut+", token: "+Mt);switch(Et[0]){case 1:xe.push(Mt),pe.push(st.yytext),ve.push(st.yylloc),xe.push(Et[1]),Mt=null,xt?(Mt=xt,xt=null):(Ve=st.yyleng,_e=st.yytext,we=st.yylineno,We=st.yylloc,De>0&&De--);break;case 2:if(Tt=this.productions_[Et[1]][1],nt.$=pe[pe.length-Tt],nt._$={first_line:ve[ve.length-(Tt||1)].first_line,last_line:ve[ve.length-1].last_line,first_column:ve[ve.length-(Tt||1)].first_column,last_column:ve[ve.length-1].last_column},ot&&(nt._$.range=[ve[ve.length-(Tt||1)].range[0],ve[ve.length-1].range[1]]),yt=this.performAction.apply(nt,[_e,Ve,we,Ue.yy,Et[1],pe,ve].concat(Rt)),typeof yt<"u")return yt;Tt&&(xe=xe.slice(0,-1*Tt*2),pe=pe.slice(0,-1*Tt),ve=ve.slice(0,-1*Tt)),xe.push(this.productions_[Et[1]][0]),pe.push(nt.$),ve.push(nt._$),On=Pe[xe[xe.length-2]][xe[xe.length-1]],xe.push(On);break;case 3:return!0}}return!0},"parse")},W=function(){var re={EOF:1,parseError:o(function(V,xe){if(this.yy.parser)this.yy.parser.parseError(V,xe);else throw new Error(V)},"parseError"),setInput:o(function(oe,V){return this.yy=V||this.yy||{},this._input=oe,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var oe=this._input[0];this.yytext+=oe,this.yyleng++,this.offset++,this.match+=oe,this.matched+=oe;var V=oe.match(/(?:\r\n?|\n).*/g);return V?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),oe},"input"),unput:o(function(oe){var V=oe.length,xe=oe.split(/(?:\r\n?|\n)/g);this._input=oe+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-V),this.offset-=V;var q=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),xe.length-1&&(this.yylineno-=xe.length-1);var pe=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:xe?(xe.length===q.length?this.yylloc.first_column:0)+q[q.length-xe.length].length-xe[0].length:this.yylloc.first_column-V},this.options.ranges&&(this.yylloc.range=[pe[0],pe[0]+this.yyleng-V]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(oe){this.unput(this.match.slice(oe))},"less"),pastInput:o(function(){var oe=this.matched.substr(0,this.matched.length-this.match.length);return(oe.length>20?"...":"")+oe.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var oe=this.match;return oe.length<20&&(oe+=this._input.substr(0,20-oe.length)),(oe.substr(0,20)+(oe.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var oe=this.pastInput(),V=new Array(oe.length+1).join("-");return oe+this.upcomingInput()+` +`+V+"^"},"showPosition"),test_match:o(function(oe,V){var xe,q,pe;if(this.options.backtrack_lexer&&(pe={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(pe.yylloc.range=this.yylloc.range.slice(0))),q=oe[0].match(/(?:\r\n?|\n).*/g),q&&(this.yylineno+=q.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:q?q[q.length-1].length-q[q.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+oe[0].length},this.yytext+=oe[0],this.match+=oe[0],this.matches=oe,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(oe[0].length),this.matched+=oe[0],xe=this.performAction.call(this,this.yy,this,V,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),xe)return xe;if(this._backtrack){for(var ve in pe)this[ve]=pe[ve];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var oe,V,xe,q;this._more||(this.yytext="",this.match="");for(var pe=this._currentRules(),ve=0;veV[0].length)){if(V=xe,q=ve,this.options.backtrack_lexer){if(oe=this.test_match(xe,pe[ve]),oe!==!1)return oe;if(this._backtrack){V=!1;continue}else return!1}else if(!this.options.flex)break}return V?(oe=this.test_match(V,pe[q]),oe!==!1?oe:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var V=this.next();return V||this.lex()},"lex"),begin:o(function(V){this.conditionStack.push(V)},"begin"),popState:o(function(){var V=this.conditionStack.length-1;return V>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(V){return V=this.conditionStack.length-1-Math.abs(V||0),V>=0?this.conditionStack[V]:"INITIAL"},"topState"),pushState:o(function(V){this.begin(V)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(V,xe,q,pe){var ve=pe;switch(q){case 0:return"title";case 1:return this.begin("acc_title"),9;break;case 2:return this.popState(),"acc_title_value";break;case 3:return this.begin("acc_descr"),11;break;case 4:return this.popState(),"acc_descr_value";break;case 5:this.begin("acc_descr_multiline");break;case 6:this.popState();break;case 7:return"acc_descr_multiline_value";case 8:return 21;case 9:return 22;case 10:return 23;case 11:return 24;case 12:return 5;case 13:break;case 14:break;case 15:break;case 16:return 8;case 17:return 6;case 18:return 27;case 19:return 40;case 20:return 29;case 21:return 32;case 22:return 31;case 23:return 34;case 24:return 36;case 25:return 38;case 26:return 41;case 27:return 42;case 28:return 43;case 29:return 44;case 30:return 45;case 31:return 46;case 32:return 47;case 33:return 48;case 34:return 49;case 35:return 50;case 36:return 51;case 37:return 52;case 38:return 53;case 39:return 54;case 40:return 65;case 41:return 66;case 42:return 67;case 43:return 68;case 44:return 69;case 45:return 70;case 46:return 71;case 47:return 57;case 48:return 59;case 49:return this.begin("style"),77;break;case 50:return 75;case 51:return 81;case 52:return 88;case 53:return"PERCENT";case 54:return 86;case 55:return 84;case 56:break;case 57:this.begin("string");break;case 58:this.popState();break;case 59:return this.begin("style"),72;break;case 60:return this.begin("style"),74;break;case 61:return 61;case 62:return 64;case 63:return 63;case 64:this.begin("string");break;case 65:this.popState();break;case 66:return"qString";case 67:return xe.yytext=xe.yytext.trim(),89;break;case 68:return 75;case 69:return 80;case 70:return 76}},"anonymous"),rules:[/^(?:title\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:(\r?\n)+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:$)/i,/^(?:requirementDiagram\b)/i,/^(?:\{)/i,/^(?:\})/i,/^(?::{3})/i,/^(?::)/i,/^(?:id\b)/i,/^(?:text\b)/i,/^(?:risk\b)/i,/^(?:verifyMethod\b)/i,/^(?:requirement\b)/i,/^(?:functionalRequirement\b)/i,/^(?:interfaceRequirement\b)/i,/^(?:performanceRequirement\b)/i,/^(?:physicalRequirement\b)/i,/^(?:designConstraint\b)/i,/^(?:low\b)/i,/^(?:medium\b)/i,/^(?:high\b)/i,/^(?:analysis\b)/i,/^(?:demonstration\b)/i,/^(?:inspection\b)/i,/^(?:test\b)/i,/^(?:element\b)/i,/^(?:contains\b)/i,/^(?:copies\b)/i,/^(?:derives\b)/i,/^(?:satisfies\b)/i,/^(?:verifies\b)/i,/^(?:refines\b)/i,/^(?:traces\b)/i,/^(?:type\b)/i,/^(?:docref\b)/i,/^(?:style\b)/i,/^(?:\w+)/i,/^(?::)/i,/^(?:;)/i,/^(?:%)/i,/^(?:-)/i,/^(?:#)/i,/^(?: )/i,/^(?:["])/i,/^(?:\n)/i,/^(?:classDef\b)/i,/^(?:class\b)/i,/^(?:<-)/i,/^(?:->)/i,/^(?:-)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[\w][^:,\r\n\{\<\>\-\=]*)/i,/^(?:\w+)/i,/^(?:[0-9]+)/i,/^(?:,)/i],conditions:{acc_descr_multiline:{rules:[6,7,68,69,70],inclusive:!1},acc_descr:{rules:[4,68,69,70],inclusive:!1},acc_title:{rules:[2,68,69,70],inclusive:!1},style:{rules:[50,51,52,53,54,55,56,57,58,68,69,70],inclusive:!1},unqString:{rules:[68,69,70],inclusive:!1},token:{rules:[68,69,70],inclusive:!1},string:{rules:[65,66,68,69,70],inclusive:!1},INITIAL:{rules:[0,1,3,5,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,59,60,61,62,63,64,67,68,69,70],inclusive:!0}}};return re}();be.lexer=W;function de(){this.yy={}}return o(de,"Parser"),de.prototype=be,be.Parser=de,new de}();EO.parser=EO;Zhe=EO});var A6,efe=N(()=>{"use strict";zt();vt();mi();A6=class{constructor(){this.relations=[];this.latestRequirement=this.getInitialRequirement();this.requirements=new Map;this.latestElement=this.getInitialElement();this.elements=new Map;this.classes=new Map;this.direction="TB";this.RequirementType={REQUIREMENT:"Requirement",FUNCTIONAL_REQUIREMENT:"Functional Requirement",INTERFACE_REQUIREMENT:"Interface Requirement",PERFORMANCE_REQUIREMENT:"Performance Requirement",PHYSICAL_REQUIREMENT:"Physical Requirement",DESIGN_CONSTRAINT:"Design Constraint"};this.RiskLevel={LOW_RISK:"Low",MED_RISK:"Medium",HIGH_RISK:"High"};this.VerifyType={VERIFY_ANALYSIS:"Analysis",VERIFY_DEMONSTRATION:"Demonstration",VERIFY_INSPECTION:"Inspection",VERIFY_TEST:"Test"};this.Relationships={CONTAINS:"contains",COPIES:"copies",DERIVES:"derives",SATISFIES:"satisfies",VERIFIES:"verifies",REFINES:"refines",TRACES:"traces"};this.setAccTitle=Lr;this.getAccTitle=Rr;this.setAccDescription=Nr;this.getAccDescription=Mr;this.setDiagramTitle=$r;this.getDiagramTitle=Ir;this.getConfig=o(()=>me().requirement,"getConfig");this.clear(),this.setDirection=this.setDirection.bind(this),this.addRequirement=this.addRequirement.bind(this),this.setNewReqId=this.setNewReqId.bind(this),this.setNewReqRisk=this.setNewReqRisk.bind(this),this.setNewReqText=this.setNewReqText.bind(this),this.setNewReqVerifyMethod=this.setNewReqVerifyMethod.bind(this),this.addElement=this.addElement.bind(this),this.setNewElementType=this.setNewElementType.bind(this),this.setNewElementDocRef=this.setNewElementDocRef.bind(this),this.addRelationship=this.addRelationship.bind(this),this.setCssStyle=this.setCssStyle.bind(this),this.setClass=this.setClass.bind(this),this.defineClass=this.defineClass.bind(this),this.setAccTitle=this.setAccTitle.bind(this),this.setAccDescription=this.setAccDescription.bind(this)}static{o(this,"RequirementDB")}getDirection(){return this.direction}setDirection(e){this.direction=e}resetLatestRequirement(){this.latestRequirement=this.getInitialRequirement()}resetLatestElement(){this.latestElement=this.getInitialElement()}getInitialRequirement(){return{requirementId:"",text:"",risk:"",verifyMethod:"",name:"",type:"",cssStyles:[],classes:["default"]}}getInitialElement(){return{name:"",type:"",docRef:"",cssStyles:[],classes:["default"]}}addRequirement(e,r){return this.requirements.has(e)||this.requirements.set(e,{name:e,type:r,requirementId:this.latestRequirement.requirementId,text:this.latestRequirement.text,risk:this.latestRequirement.risk,verifyMethod:this.latestRequirement.verifyMethod,cssStyles:[],classes:["default"]}),this.resetLatestRequirement(),this.requirements.get(e)}getRequirements(){return this.requirements}setNewReqId(e){this.latestRequirement!==void 0&&(this.latestRequirement.requirementId=e)}setNewReqText(e){this.latestRequirement!==void 0&&(this.latestRequirement.text=e)}setNewReqRisk(e){this.latestRequirement!==void 0&&(this.latestRequirement.risk=e)}setNewReqVerifyMethod(e){this.latestRequirement!==void 0&&(this.latestRequirement.verifyMethod=e)}addElement(e){return this.elements.has(e)||(this.elements.set(e,{name:e,type:this.latestElement.type,docRef:this.latestElement.docRef,cssStyles:[],classes:["default"]}),Y.info("Added new element: ",e)),this.resetLatestElement(),this.elements.get(e)}getElements(){return this.elements}setNewElementType(e){this.latestElement!==void 0&&(this.latestElement.type=e)}setNewElementDocRef(e){this.latestElement!==void 0&&(this.latestElement.docRef=e)}addRelationship(e,r,n){this.relations.push({type:e,src:r,dst:n})}getRelationships(){return this.relations}clear(){this.relations=[],this.resetLatestRequirement(),this.requirements=new Map,this.resetLatestElement(),this.elements=new Map,this.classes=new Map,Ar()}setCssStyle(e,r){for(let n of e){let i=this.requirements.get(n)??this.elements.get(n);if(!r||!i)return;for(let a of r)a.includes(",")?i.cssStyles.push(...a.split(",")):i.cssStyles.push(a)}}setClass(e,r){for(let n of e){let i=this.requirements.get(n)??this.elements.get(n);if(i)for(let a of r){i.classes.push(a);let s=this.classes.get(a)?.styles;s&&i.cssStyles.push(...s)}}}defineClass(e,r){for(let n of e){let i=this.classes.get(n);i===void 0&&(i={id:n,styles:[],textStyles:[]},this.classes.set(n,i)),r&&r.forEach(function(a){if(/color/.exec(a)){let s=a.replace("fill","bgFill");i.textStyles.push(s)}i.styles.push(a)}),this.requirements.forEach(a=>{a.classes.includes(n)&&a.cssStyles.push(...r.flatMap(s=>s.split(",")))}),this.elements.forEach(a=>{a.classes.includes(n)&&a.cssStyles.push(...r.flatMap(s=>s.split(",")))})}}getClasses(){return this.classes}getData(){let e=me(),r=[],n=[];for(let i of this.requirements.values()){let a=i;a.id=i.name,a.cssStyles=i.cssStyles,a.cssClasses=i.classes.join(" "),a.shape="requirementBox",a.look=e.look,r.push(a)}for(let i of this.elements.values()){let a=i;a.shape="requirementBox",a.look=e.look,a.id=i.name,a.cssStyles=i.cssStyles,a.cssClasses=i.classes.join(" "),r.push(a)}for(let i of this.relations){let a=0,s=i.type===this.Relationships.CONTAINS,l={id:`${i.src}-${i.dst}-${a}`,start:this.requirements.get(i.src)?.name??this.elements.get(i.src)?.name,end:this.requirements.get(i.dst)?.name??this.elements.get(i.dst)?.name,label:`<<${i.type}>>`,classes:"relationshipLine",style:["fill:none",s?"":"stroke-dasharray: 10,7"],labelpos:"c",thickness:"normal",type:"normal",pattern:s?"normal":"dashed",arrowTypeStart:s?"requirement_contains":"",arrowTypeEnd:s?"":"requirement_arrow",look:e.look};n.push(l),a++}return{nodes:r,edges:n,other:{},config:e,direction:this.getDirection()}}}});var ZGe,tfe,rfe=N(()=>{"use strict";ZGe=o(t=>` + + marker { + fill: ${t.relationColor}; + stroke: ${t.relationColor}; + } + + marker.cross { + stroke: ${t.lineColor}; + } + + svg { + font-family: ${t.fontFamily}; + font-size: ${t.fontSize}; + } + + .reqBox { + fill: ${t.requirementBackground}; + fill-opacity: 1.0; + stroke: ${t.requirementBorderColor}; + stroke-width: ${t.requirementBorderSize}; + } + + .reqTitle, .reqLabel{ + fill: ${t.requirementTextColor}; + } + .reqLabelBox { + fill: ${t.relationLabelBackground}; + fill-opacity: 1.0; + } + + .req-title-line { + stroke: ${t.requirementBorderColor}; + stroke-width: ${t.requirementBorderSize}; + } + .relationshipLine { + stroke: ${t.relationColor}; + stroke-width: 1; + } + .relationshipLabel { + fill: ${t.relationLabelColor}; + } + .divider { + stroke: ${t.nodeBorder}; + stroke-width: 1; + } + .label { + font-family: ${t.fontFamily}; + color: ${t.nodeTextColor||t.textColor}; + } + .label text,span { + fill: ${t.nodeTextColor||t.textColor}; + color: ${t.nodeTextColor||t.textColor}; + } + .labelBkg { + background-color: ${t.edgeLabelBackground}; + } + +`,"getStyles"),tfe=ZGe});var SO={};hr(SO,{draw:()=>JGe});var JGe,nfe=N(()=>{"use strict";zt();vt();gm();Yd();$m();ir();JGe=o(async function(t,e,r,n){Y.info("REF0:"),Y.info("Drawing requirement diagram (unified)",e);let{securityLevel:i,state:a,layout:s}=me(),l=n.db.getData(),u=yc(e,i);l.type=n.type,l.layoutAlgorithm=nf(s),l.nodeSpacing=a?.nodeSpacing??50,l.rankSpacing=a?.rankSpacing??50,l.markers=["requirement_contains","requirement_arrow"],l.diagramId=e,await Cc(l,u);let h=8;Gt.insertTitle(u,"requirementDiagramTitleText",a?.titleTopMargin??25,n.db.getDiagramTitle()),Ac(u,h,"requirementDiagram",a?.useMaxWidth??!0)},"draw")});var ife={};hr(ife,{diagram:()=>eVe});var eVe,afe=N(()=>{"use strict";Jhe();efe();rfe();nfe();eVe={parser:Zhe,get db(){return new A6},renderer:SO,styles:tfe}});var CO,lfe,cfe=N(()=>{"use strict";CO=function(){var t=o(function(K,X,te,J){for(te=te||{},J=K.length;J--;te[K[J]]=X);return te},"o"),e=[1,2],r=[1,3],n=[1,4],i=[2,4],a=[1,9],s=[1,11],l=[1,13],u=[1,14],h=[1,16],f=[1,17],d=[1,18],p=[1,24],m=[1,25],g=[1,26],y=[1,27],v=[1,28],x=[1,29],b=[1,30],w=[1,31],C=[1,32],T=[1,33],E=[1,34],A=[1,35],S=[1,36],_=[1,37],I=[1,38],D=[1,39],k=[1,41],L=[1,42],R=[1,43],O=[1,44],M=[1,45],B=[1,46],F=[1,4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,47,48,49,50,52,53,54,59,60,61,62,70],P=[4,5,16,50,52,53],z=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,50,52,53,54,59,60,61,62,70],$=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,49,50,52,53,54,59,60,61,62,70],H=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,48,50,52,53,54,59,60,61,62,70],Q=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,47,50,52,53,54,59,60,61,62,70],j=[68,69,70],ie=[1,122],ne={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,SPACE:4,NEWLINE:5,SD:6,document:7,line:8,statement:9,box_section:10,box_line:11,participant_statement:12,create:13,box:14,restOfLine:15,end:16,signal:17,autonumber:18,NUM:19,off:20,activate:21,actor:22,deactivate:23,note_statement:24,links_statement:25,link_statement:26,properties_statement:27,details_statement:28,title:29,legacy_title:30,acc_title:31,acc_title_value:32,acc_descr:33,acc_descr_value:34,acc_descr_multiline_value:35,loop:36,rect:37,opt:38,alt:39,else_sections:40,par:41,par_sections:42,par_over:43,critical:44,option_sections:45,break:46,option:47,and:48,else:49,participant:50,AS:51,participant_actor:52,destroy:53,note:54,placement:55,text2:56,over:57,actor_pair:58,links:59,link:60,properties:61,details:62,spaceList:63,",":64,left_of:65,right_of:66,signaltype:67,"+":68,"-":69,ACTOR:70,SOLID_OPEN_ARROW:71,DOTTED_OPEN_ARROW:72,SOLID_ARROW:73,BIDIRECTIONAL_SOLID_ARROW:74,DOTTED_ARROW:75,BIDIRECTIONAL_DOTTED_ARROW:76,SOLID_CROSS:77,DOTTED_CROSS:78,SOLID_POINT:79,DOTTED_POINT:80,TXT:81,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NEWLINE",6:"SD",13:"create",14:"box",15:"restOfLine",16:"end",18:"autonumber",19:"NUM",20:"off",21:"activate",23:"deactivate",29:"title",30:"legacy_title",31:"acc_title",32:"acc_title_value",33:"acc_descr",34:"acc_descr_value",35:"acc_descr_multiline_value",36:"loop",37:"rect",38:"opt",39:"alt",41:"par",43:"par_over",44:"critical",46:"break",47:"option",48:"and",49:"else",50:"participant",51:"AS",52:"participant_actor",53:"destroy",54:"note",57:"over",59:"links",60:"link",61:"properties",62:"details",64:",",65:"left_of",66:"right_of",68:"+",69:"-",70:"ACTOR",71:"SOLID_OPEN_ARROW",72:"DOTTED_OPEN_ARROW",73:"SOLID_ARROW",74:"BIDIRECTIONAL_SOLID_ARROW",75:"DOTTED_ARROW",76:"BIDIRECTIONAL_DOTTED_ARROW",77:"SOLID_CROSS",78:"DOTTED_CROSS",79:"SOLID_POINT",80:"DOTTED_POINT",81:"TXT"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[8,1],[8,1],[10,0],[10,2],[11,2],[11,1],[11,1],[9,1],[9,2],[9,4],[9,2],[9,4],[9,3],[9,3],[9,2],[9,3],[9,3],[9,2],[9,2],[9,2],[9,2],[9,2],[9,1],[9,1],[9,2],[9,2],[9,1],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[45,1],[45,4],[42,1],[42,4],[40,1],[40,4],[12,5],[12,3],[12,5],[12,3],[12,3],[24,4],[24,4],[25,3],[26,3],[27,3],[28,3],[63,2],[63,1],[58,3],[58,1],[55,1],[55,1],[17,5],[17,5],[17,4],[22,1],[67,1],[67,1],[67,1],[67,1],[67,1],[67,1],[67,1],[67,1],[67,1],[67,1],[56,1]],performAction:o(function(X,te,J,se,ue,Z,Se){var ce=Z.length-1;switch(ue){case 3:return se.apply(Z[ce]),Z[ce];break;case 4:case 9:this.$=[];break;case 5:case 10:Z[ce-1].push(Z[ce]),this.$=Z[ce-1];break;case 6:case 7:case 11:case 12:this.$=Z[ce];break;case 8:case 13:this.$=[];break;case 15:Z[ce].type="createParticipant",this.$=Z[ce];break;case 16:Z[ce-1].unshift({type:"boxStart",boxData:se.parseBoxData(Z[ce-2])}),Z[ce-1].push({type:"boxEnd",boxText:Z[ce-2]}),this.$=Z[ce-1];break;case 18:this.$={type:"sequenceIndex",sequenceIndex:Number(Z[ce-2]),sequenceIndexStep:Number(Z[ce-1]),sequenceVisible:!0,signalType:se.LINETYPE.AUTONUMBER};break;case 19:this.$={type:"sequenceIndex",sequenceIndex:Number(Z[ce-1]),sequenceIndexStep:1,sequenceVisible:!0,signalType:se.LINETYPE.AUTONUMBER};break;case 20:this.$={type:"sequenceIndex",sequenceVisible:!1,signalType:se.LINETYPE.AUTONUMBER};break;case 21:this.$={type:"sequenceIndex",sequenceVisible:!0,signalType:se.LINETYPE.AUTONUMBER};break;case 22:this.$={type:"activeStart",signalType:se.LINETYPE.ACTIVE_START,actor:Z[ce-1].actor};break;case 23:this.$={type:"activeEnd",signalType:se.LINETYPE.ACTIVE_END,actor:Z[ce-1].actor};break;case 29:se.setDiagramTitle(Z[ce].substring(6)),this.$=Z[ce].substring(6);break;case 30:se.setDiagramTitle(Z[ce].substring(7)),this.$=Z[ce].substring(7);break;case 31:this.$=Z[ce].trim(),se.setAccTitle(this.$);break;case 32:case 33:this.$=Z[ce].trim(),se.setAccDescription(this.$);break;case 34:Z[ce-1].unshift({type:"loopStart",loopText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.LOOP_START}),Z[ce-1].push({type:"loopEnd",loopText:Z[ce-2],signalType:se.LINETYPE.LOOP_END}),this.$=Z[ce-1];break;case 35:Z[ce-1].unshift({type:"rectStart",color:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.RECT_START}),Z[ce-1].push({type:"rectEnd",color:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.RECT_END}),this.$=Z[ce-1];break;case 36:Z[ce-1].unshift({type:"optStart",optText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.OPT_START}),Z[ce-1].push({type:"optEnd",optText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.OPT_END}),this.$=Z[ce-1];break;case 37:Z[ce-1].unshift({type:"altStart",altText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.ALT_START}),Z[ce-1].push({type:"altEnd",signalType:se.LINETYPE.ALT_END}),this.$=Z[ce-1];break;case 38:Z[ce-1].unshift({type:"parStart",parText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.PAR_START}),Z[ce-1].push({type:"parEnd",signalType:se.LINETYPE.PAR_END}),this.$=Z[ce-1];break;case 39:Z[ce-1].unshift({type:"parStart",parText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.PAR_OVER_START}),Z[ce-1].push({type:"parEnd",signalType:se.LINETYPE.PAR_END}),this.$=Z[ce-1];break;case 40:Z[ce-1].unshift({type:"criticalStart",criticalText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.CRITICAL_START}),Z[ce-1].push({type:"criticalEnd",signalType:se.LINETYPE.CRITICAL_END}),this.$=Z[ce-1];break;case 41:Z[ce-1].unshift({type:"breakStart",breakText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.BREAK_START}),Z[ce-1].push({type:"breakEnd",optText:se.parseMessage(Z[ce-2]),signalType:se.LINETYPE.BREAK_END}),this.$=Z[ce-1];break;case 43:this.$=Z[ce-3].concat([{type:"option",optionText:se.parseMessage(Z[ce-1]),signalType:se.LINETYPE.CRITICAL_OPTION},Z[ce]]);break;case 45:this.$=Z[ce-3].concat([{type:"and",parText:se.parseMessage(Z[ce-1]),signalType:se.LINETYPE.PAR_AND},Z[ce]]);break;case 47:this.$=Z[ce-3].concat([{type:"else",altText:se.parseMessage(Z[ce-1]),signalType:se.LINETYPE.ALT_ELSE},Z[ce]]);break;case 48:Z[ce-3].draw="participant",Z[ce-3].type="addParticipant",Z[ce-3].description=se.parseMessage(Z[ce-1]),this.$=Z[ce-3];break;case 49:Z[ce-1].draw="participant",Z[ce-1].type="addParticipant",this.$=Z[ce-1];break;case 50:Z[ce-3].draw="actor",Z[ce-3].type="addParticipant",Z[ce-3].description=se.parseMessage(Z[ce-1]),this.$=Z[ce-3];break;case 51:Z[ce-1].draw="actor",Z[ce-1].type="addParticipant",this.$=Z[ce-1];break;case 52:Z[ce-1].type="destroyParticipant",this.$=Z[ce-1];break;case 53:this.$=[Z[ce-1],{type:"addNote",placement:Z[ce-2],actor:Z[ce-1].actor,text:Z[ce]}];break;case 54:Z[ce-2]=[].concat(Z[ce-1],Z[ce-1]).slice(0,2),Z[ce-2][0]=Z[ce-2][0].actor,Z[ce-2][1]=Z[ce-2][1].actor,this.$=[Z[ce-1],{type:"addNote",placement:se.PLACEMENT.OVER,actor:Z[ce-2].slice(0,2),text:Z[ce]}];break;case 55:this.$=[Z[ce-1],{type:"addLinks",actor:Z[ce-1].actor,text:Z[ce]}];break;case 56:this.$=[Z[ce-1],{type:"addALink",actor:Z[ce-1].actor,text:Z[ce]}];break;case 57:this.$=[Z[ce-1],{type:"addProperties",actor:Z[ce-1].actor,text:Z[ce]}];break;case 58:this.$=[Z[ce-1],{type:"addDetails",actor:Z[ce-1].actor,text:Z[ce]}];break;case 61:this.$=[Z[ce-2],Z[ce]];break;case 62:this.$=Z[ce];break;case 63:this.$=se.PLACEMENT.LEFTOF;break;case 64:this.$=se.PLACEMENT.RIGHTOF;break;case 65:this.$=[Z[ce-4],Z[ce-1],{type:"addMessage",from:Z[ce-4].actor,to:Z[ce-1].actor,signalType:Z[ce-3],msg:Z[ce],activate:!0},{type:"activeStart",signalType:se.LINETYPE.ACTIVE_START,actor:Z[ce-1].actor}];break;case 66:this.$=[Z[ce-4],Z[ce-1],{type:"addMessage",from:Z[ce-4].actor,to:Z[ce-1].actor,signalType:Z[ce-3],msg:Z[ce]},{type:"activeEnd",signalType:se.LINETYPE.ACTIVE_END,actor:Z[ce-4].actor}];break;case 67:this.$=[Z[ce-3],Z[ce-1],{type:"addMessage",from:Z[ce-3].actor,to:Z[ce-1].actor,signalType:Z[ce-2],msg:Z[ce]}];break;case 68:this.$={type:"addParticipant",actor:Z[ce]};break;case 69:this.$=se.LINETYPE.SOLID_OPEN;break;case 70:this.$=se.LINETYPE.DOTTED_OPEN;break;case 71:this.$=se.LINETYPE.SOLID;break;case 72:this.$=se.LINETYPE.BIDIRECTIONAL_SOLID;break;case 73:this.$=se.LINETYPE.DOTTED;break;case 74:this.$=se.LINETYPE.BIDIRECTIONAL_DOTTED;break;case 75:this.$=se.LINETYPE.SOLID_CROSS;break;case 76:this.$=se.LINETYPE.DOTTED_CROSS;break;case 77:this.$=se.LINETYPE.SOLID_POINT;break;case 78:this.$=se.LINETYPE.DOTTED_POINT;break;case 79:this.$=se.parseMessage(Z[ce].trim().substring(1));break}},"anonymous"),table:[{3:1,4:e,5:r,6:n},{1:[3]},{3:5,4:e,5:r,6:n},{3:6,4:e,5:r,6:n},t([1,4,5,13,14,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,50,52,53,54,59,60,61,62,70],i,{7:7}),{1:[2,1]},{1:[2,2]},{1:[2,3],4:a,5:s,8:8,9:10,12:12,13:l,14:u,17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},t(F,[2,5]),{9:47,12:12,13:l,14:u,17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},t(F,[2,7]),t(F,[2,8]),t(F,[2,14]),{12:48,50:_,52:I,53:D},{15:[1,49]},{5:[1,50]},{5:[1,53],19:[1,51],20:[1,52]},{22:54,70:B},{22:55,70:B},{5:[1,56]},{5:[1,57]},{5:[1,58]},{5:[1,59]},{5:[1,60]},t(F,[2,29]),t(F,[2,30]),{32:[1,61]},{34:[1,62]},t(F,[2,33]),{15:[1,63]},{15:[1,64]},{15:[1,65]},{15:[1,66]},{15:[1,67]},{15:[1,68]},{15:[1,69]},{15:[1,70]},{22:71,70:B},{22:72,70:B},{22:73,70:B},{67:74,71:[1,75],72:[1,76],73:[1,77],74:[1,78],75:[1,79],76:[1,80],77:[1,81],78:[1,82],79:[1,83],80:[1,84]},{55:85,57:[1,86],65:[1,87],66:[1,88]},{22:89,70:B},{22:90,70:B},{22:91,70:B},{22:92,70:B},t([5,51,64,71,72,73,74,75,76,77,78,79,80,81],[2,68]),t(F,[2,6]),t(F,[2,15]),t(P,[2,9],{10:93}),t(F,[2,17]),{5:[1,95],19:[1,94]},{5:[1,96]},t(F,[2,21]),{5:[1,97]},{5:[1,98]},t(F,[2,24]),t(F,[2,25]),t(F,[2,26]),t(F,[2,27]),t(F,[2,28]),t(F,[2,31]),t(F,[2,32]),t(z,i,{7:99}),t(z,i,{7:100}),t(z,i,{7:101}),t($,i,{40:102,7:103}),t(H,i,{42:104,7:105}),t(H,i,{7:105,42:106}),t(Q,i,{45:107,7:108}),t(z,i,{7:109}),{5:[1,111],51:[1,110]},{5:[1,113],51:[1,112]},{5:[1,114]},{22:117,68:[1,115],69:[1,116],70:B},t(j,[2,69]),t(j,[2,70]),t(j,[2,71]),t(j,[2,72]),t(j,[2,73]),t(j,[2,74]),t(j,[2,75]),t(j,[2,76]),t(j,[2,77]),t(j,[2,78]),{22:118,70:B},{22:120,58:119,70:B},{70:[2,63]},{70:[2,64]},{56:121,81:ie},{56:123,81:ie},{56:124,81:ie},{56:125,81:ie},{4:[1,128],5:[1,130],11:127,12:129,16:[1,126],50:_,52:I,53:D},{5:[1,131]},t(F,[2,19]),t(F,[2,20]),t(F,[2,22]),t(F,[2,23]),{4:a,5:s,8:8,9:10,12:12,13:l,14:u,16:[1,132],17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},{4:a,5:s,8:8,9:10,12:12,13:l,14:u,16:[1,133],17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},{4:a,5:s,8:8,9:10,12:12,13:l,14:u,16:[1,134],17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},{16:[1,135]},{4:a,5:s,8:8,9:10,12:12,13:l,14:u,16:[2,46],17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,49:[1,136],50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},{16:[1,137]},{4:a,5:s,8:8,9:10,12:12,13:l,14:u,16:[2,44],17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,48:[1,138],50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},{16:[1,139]},{16:[1,140]},{4:a,5:s,8:8,9:10,12:12,13:l,14:u,16:[2,42],17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,47:[1,141],50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},{4:a,5:s,8:8,9:10,12:12,13:l,14:u,16:[1,142],17:15,18:h,21:f,22:40,23:d,24:19,25:20,26:21,27:22,28:23,29:p,30:m,31:g,33:y,35:v,36:x,37:b,38:w,39:C,41:T,43:E,44:A,46:S,50:_,52:I,53:D,54:k,59:L,60:R,61:O,62:M,70:B},{15:[1,143]},t(F,[2,49]),{15:[1,144]},t(F,[2,51]),t(F,[2,52]),{22:145,70:B},{22:146,70:B},{56:147,81:ie},{56:148,81:ie},{56:149,81:ie},{64:[1,150],81:[2,62]},{5:[2,55]},{5:[2,79]},{5:[2,56]},{5:[2,57]},{5:[2,58]},t(F,[2,16]),t(P,[2,10]),{12:151,50:_,52:I,53:D},t(P,[2,12]),t(P,[2,13]),t(F,[2,18]),t(F,[2,34]),t(F,[2,35]),t(F,[2,36]),t(F,[2,37]),{15:[1,152]},t(F,[2,38]),{15:[1,153]},t(F,[2,39]),t(F,[2,40]),{15:[1,154]},t(F,[2,41]),{5:[1,155]},{5:[1,156]},{56:157,81:ie},{56:158,81:ie},{5:[2,67]},{5:[2,53]},{5:[2,54]},{22:159,70:B},t(P,[2,11]),t($,i,{7:103,40:160}),t(H,i,{7:105,42:161}),t(Q,i,{7:108,45:162}),t(F,[2,48]),t(F,[2,50]),{5:[2,65]},{5:[2,66]},{81:[2,61]},{16:[2,47]},{16:[2,45]},{16:[2,43]}],defaultActions:{5:[2,1],6:[2,2],87:[2,63],88:[2,64],121:[2,55],122:[2,79],123:[2,56],124:[2,57],125:[2,58],147:[2,67],148:[2,53],149:[2,54],157:[2,65],158:[2,66],159:[2,61],160:[2,47],161:[2,45],162:[2,43]},parseError:o(function(X,te){if(te.recoverable)this.trace(X);else{var J=new Error(X);throw J.hash=te,J}},"parseError"),parse:o(function(X){var te=this,J=[0],se=[],ue=[null],Z=[],Se=this.table,ce="",ae=0,Oe=0,ge=0,ze=2,He=1,$e=Z.slice.call(arguments,1),Re=Object.create(this.lexer),Ie={yy:{}};for(var be in this.yy)Object.prototype.hasOwnProperty.call(this.yy,be)&&(Ie.yy[be]=this.yy[be]);Re.setInput(X,Ie.yy),Ie.yy.lexer=Re,Ie.yy.parser=this,typeof Re.yylloc>"u"&&(Re.yylloc={});var W=Re.yylloc;Z.push(W);var de=Re.options&&Re.options.ranges;typeof Ie.yy.parseError=="function"?this.parseError=Ie.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function re(Rt){J.length=J.length-2*Rt,ue.length=ue.length-Rt,Z.length=Z.length-Rt}o(re,"popStack");function oe(){var Rt;return Rt=se.pop()||Re.lex()||He,typeof Rt!="number"&&(Rt instanceof Array&&(se=Rt,Rt=se.pop()),Rt=te.symbols_[Rt]||Rt),Rt}o(oe,"lex");for(var V,xe,q,pe,ve,Pe,_e={},we,Ve,De,qe;;){if(q=J[J.length-1],this.defaultActions[q]?pe=this.defaultActions[q]:((V===null||typeof V>"u")&&(V=oe()),pe=Se[q]&&Se[q][V]),typeof pe>"u"||!pe.length||!pe[0]){var at="";qe=[];for(we in Se[q])this.terminals_[we]&&we>ze&&qe.push("'"+this.terminals_[we]+"'");Re.showPosition?at="Parse error on line "+(ae+1)+`: +`+Re.showPosition()+` +Expecting `+qe.join(", ")+", got '"+(this.terminals_[V]||V)+"'":at="Parse error on line "+(ae+1)+": Unexpected "+(V==He?"end of input":"'"+(this.terminals_[V]||V)+"'"),this.parseError(at,{text:Re.match,token:this.terminals_[V]||V,line:Re.yylineno,loc:W,expected:qe})}if(pe[0]instanceof Array&&pe.length>1)throw new Error("Parse Error: multiple actions possible at state: "+q+", token: "+V);switch(pe[0]){case 1:J.push(V),ue.push(Re.yytext),Z.push(Re.yylloc),J.push(pe[1]),V=null,xe?(V=xe,xe=null):(Oe=Re.yyleng,ce=Re.yytext,ae=Re.yylineno,W=Re.yylloc,ge>0&&ge--);break;case 2:if(Ve=this.productions_[pe[1]][1],_e.$=ue[ue.length-Ve],_e._$={first_line:Z[Z.length-(Ve||1)].first_line,last_line:Z[Z.length-1].last_line,first_column:Z[Z.length-(Ve||1)].first_column,last_column:Z[Z.length-1].last_column},de&&(_e._$.range=[Z[Z.length-(Ve||1)].range[0],Z[Z.length-1].range[1]]),Pe=this.performAction.apply(_e,[ce,Oe,ae,Ie.yy,pe[1],ue,Z].concat($e)),typeof Pe<"u")return Pe;Ve&&(J=J.slice(0,-1*Ve*2),ue=ue.slice(0,-1*Ve),Z=Z.slice(0,-1*Ve)),J.push(this.productions_[pe[1]][0]),ue.push(_e.$),Z.push(_e._$),De=Se[J[J.length-2]][J[J.length-1]],J.push(De);break;case 3:return!0}}return!0},"parse")},le=function(){var K={EOF:1,parseError:o(function(te,J){if(this.yy.parser)this.yy.parser.parseError(te,J);else throw new Error(te)},"parseError"),setInput:o(function(X,te){return this.yy=te||this.yy||{},this._input=X,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var X=this._input[0];this.yytext+=X,this.yyleng++,this.offset++,this.match+=X,this.matched+=X;var te=X.match(/(?:\r\n?|\n).*/g);return te?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),X},"input"),unput:o(function(X){var te=X.length,J=X.split(/(?:\r\n?|\n)/g);this._input=X+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-te),this.offset-=te;var se=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),J.length-1&&(this.yylineno-=J.length-1);var ue=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:J?(J.length===se.length?this.yylloc.first_column:0)+se[se.length-J.length].length-J[0].length:this.yylloc.first_column-te},this.options.ranges&&(this.yylloc.range=[ue[0],ue[0]+this.yyleng-te]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(X){this.unput(this.match.slice(X))},"less"),pastInput:o(function(){var X=this.matched.substr(0,this.matched.length-this.match.length);return(X.length>20?"...":"")+X.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var X=this.match;return X.length<20&&(X+=this._input.substr(0,20-X.length)),(X.substr(0,20)+(X.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var X=this.pastInput(),te=new Array(X.length+1).join("-");return X+this.upcomingInput()+` +`+te+"^"},"showPosition"),test_match:o(function(X,te){var J,se,ue;if(this.options.backtrack_lexer&&(ue={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(ue.yylloc.range=this.yylloc.range.slice(0))),se=X[0].match(/(?:\r\n?|\n).*/g),se&&(this.yylineno+=se.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:se?se[se.length-1].length-se[se.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+X[0].length},this.yytext+=X[0],this.match+=X[0],this.matches=X,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(X[0].length),this.matched+=X[0],J=this.performAction.call(this,this.yy,this,te,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),J)return J;if(this._backtrack){for(var Z in ue)this[Z]=ue[Z];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var X,te,J,se;this._more||(this.yytext="",this.match="");for(var ue=this._currentRules(),Z=0;Zte[0].length)){if(te=J,se=Z,this.options.backtrack_lexer){if(X=this.test_match(J,ue[Z]),X!==!1)return X;if(this._backtrack){te=!1;continue}else return!1}else if(!this.options.flex)break}return te?(X=this.test_match(te,ue[se]),X!==!1?X:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var te=this.next();return te||this.lex()},"lex"),begin:o(function(te){this.conditionStack.push(te)},"begin"),popState:o(function(){var te=this.conditionStack.length-1;return te>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(te){return te=this.conditionStack.length-1-Math.abs(te||0),te>=0?this.conditionStack[te]:"INITIAL"},"topState"),pushState:o(function(te){this.begin(te)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(te,J,se,ue){var Z=ue;switch(se){case 0:return 5;case 1:break;case 2:break;case 3:break;case 4:break;case 5:break;case 6:return 19;case 7:return this.begin("LINE"),14;break;case 8:return this.begin("ID"),50;break;case 9:return this.begin("ID"),52;break;case 10:return 13;case 11:return this.begin("ID"),53;break;case 12:return J.yytext=J.yytext.trim(),this.begin("ALIAS"),70;break;case 13:return this.popState(),this.popState(),this.begin("LINE"),51;break;case 14:return this.popState(),this.popState(),5;break;case 15:return this.begin("LINE"),36;break;case 16:return this.begin("LINE"),37;break;case 17:return this.begin("LINE"),38;break;case 18:return this.begin("LINE"),39;break;case 19:return this.begin("LINE"),49;break;case 20:return this.begin("LINE"),41;break;case 21:return this.begin("LINE"),43;break;case 22:return this.begin("LINE"),48;break;case 23:return this.begin("LINE"),44;break;case 24:return this.begin("LINE"),47;break;case 25:return this.begin("LINE"),46;break;case 26:return this.popState(),15;break;case 27:return 16;case 28:return 65;case 29:return 66;case 30:return 59;case 31:return 60;case 32:return 61;case 33:return 62;case 34:return 57;case 35:return 54;case 36:return this.begin("ID"),21;break;case 37:return this.begin("ID"),23;break;case 38:return 29;case 39:return 30;case 40:return this.begin("acc_title"),31;break;case 41:return this.popState(),"acc_title_value";break;case 42:return this.begin("acc_descr"),33;break;case 43:return this.popState(),"acc_descr_value";break;case 44:this.begin("acc_descr_multiline");break;case 45:this.popState();break;case 46:return"acc_descr_multiline_value";case 47:return 6;case 48:return 18;case 49:return 20;case 50:return 64;case 51:return 5;case 52:return J.yytext=J.yytext.trim(),70;break;case 53:return 73;case 54:return 74;case 55:return 75;case 56:return 76;case 57:return 71;case 58:return 72;case 59:return 77;case 60:return 78;case 61:return 79;case 62:return 80;case 63:return 81;case 64:return 68;case 65:return 69;case 66:return 5;case 67:return"INVALID"}},"anonymous"),rules:[/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[0-9]+(?=[ \n]+))/i,/^(?:box\b)/i,/^(?:participant\b)/i,/^(?:actor\b)/i,/^(?:create\b)/i,/^(?:destroy\b)/i,/^(?:[^\<->\->:\n,;]+?([\-]*[^\<->\->:\n,;]+?)*?(?=((?!\n)\s)+as(?!\n)\s|[#\n;]|$))/i,/^(?:as\b)/i,/^(?:(?:))/i,/^(?:loop\b)/i,/^(?:rect\b)/i,/^(?:opt\b)/i,/^(?:alt\b)/i,/^(?:else\b)/i,/^(?:par\b)/i,/^(?:par_over\b)/i,/^(?:and\b)/i,/^(?:critical\b)/i,/^(?:option\b)/i,/^(?:break\b)/i,/^(?:(?:[:]?(?:no)?wrap)?[^#\n;]*)/i,/^(?:end\b)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:links\b)/i,/^(?:link\b)/i,/^(?:properties\b)/i,/^(?:details\b)/i,/^(?:over\b)/i,/^(?:note\b)/i,/^(?:activate\b)/i,/^(?:deactivate\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:title:\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:sequenceDiagram\b)/i,/^(?:autonumber\b)/i,/^(?:off\b)/i,/^(?:,)/i,/^(?:;)/i,/^(?:[^\+\<->\->:\n,;]+((?!(-x|--x|-\)|--\)))[\-]*[^\+\<->\->:\n,;]+)*)/i,/^(?:->>)/i,/^(?:<<->>)/i,/^(?:-->>)/i,/^(?:<<-->>)/i,/^(?:->)/i,/^(?:-->)/i,/^(?:-[x])/i,/^(?:--[x])/i,/^(?:-[\)])/i,/^(?:--[\)])/i,/^(?::(?:(?:no)?wrap)?[^#\n;]+)/i,/^(?:\+)/i,/^(?:-)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[45,46],inclusive:!1},acc_descr:{rules:[43],inclusive:!1},acc_title:{rules:[41],inclusive:!1},ID:{rules:[2,3,12],inclusive:!1},ALIAS:{rules:[2,3,13,14],inclusive:!1},LINE:{rules:[2,3,26],inclusive:!1},INITIAL:{rules:[0,1,3,4,5,6,7,8,9,10,11,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,42,44,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67],inclusive:!0}}};return K}();ne.lexer=le;function he(){this.yy={}}return o(he,"Parser"),he.prototype=ne,ne.Parser=he,new he}();CO.parser=CO;lfe=CO});var iVe,aVe,sVe,_6,ufe=N(()=>{"use strict";zt();vt();s6();gr();mi();iVe={SOLID:0,DOTTED:1,NOTE:2,SOLID_CROSS:3,DOTTED_CROSS:4,SOLID_OPEN:5,DOTTED_OPEN:6,LOOP_START:10,LOOP_END:11,ALT_START:12,ALT_ELSE:13,ALT_END:14,OPT_START:15,OPT_END:16,ACTIVE_START:17,ACTIVE_END:18,PAR_START:19,PAR_AND:20,PAR_END:21,RECT_START:22,RECT_END:23,SOLID_POINT:24,DOTTED_POINT:25,AUTONUMBER:26,CRITICAL_START:27,CRITICAL_OPTION:28,CRITICAL_END:29,BREAK_START:30,BREAK_END:31,PAR_OVER_START:32,BIDIRECTIONAL_SOLID:33,BIDIRECTIONAL_DOTTED:34},aVe={FILLED:0,OPEN:1},sVe={LEFTOF:0,RIGHTOF:1,OVER:2},_6=class{constructor(){this.state=new pf(()=>({prevActor:void 0,actors:new Map,createdActors:new Map,destroyedActors:new Map,boxes:[],messages:[],notes:[],sequenceNumbersEnabled:!1,wrapEnabled:void 0,currentBox:void 0,lastCreated:void 0,lastDestroyed:void 0}));this.setAccTitle=Lr;this.setAccDescription=Nr;this.setDiagramTitle=$r;this.getAccTitle=Rr;this.getAccDescription=Mr;this.getDiagramTitle=Ir;this.apply=this.apply.bind(this),this.parseBoxData=this.parseBoxData.bind(this),this.parseMessage=this.parseMessage.bind(this),this.clear(),this.setWrap(me().wrap),this.LINETYPE=iVe,this.ARROWTYPE=aVe,this.PLACEMENT=sVe}static{o(this,"SequenceDB")}addBox(e){this.state.records.boxes.push({name:e.text,wrap:e.wrap??this.autoWrap(),fill:e.color,actorKeys:[]}),this.state.records.currentBox=this.state.records.boxes.slice(-1)[0]}addActor(e,r,n,i){let a=this.state.records.currentBox,s=this.state.records.actors.get(e);if(s){if(this.state.records.currentBox&&s.box&&this.state.records.currentBox!==s.box)throw new Error(`A same participant should only be defined in one Box: ${s.name} can't be in '${s.box.name}' and in '${this.state.records.currentBox.name}' at the same time.`);if(a=s.box?s.box:this.state.records.currentBox,s.box=a,s&&r===s.name&&n==null)return}if(n?.text==null&&(n={text:r,type:i}),(i==null||n.text==null)&&(n={text:r,type:i}),this.state.records.actors.set(e,{box:a,name:r,description:n.text,wrap:n.wrap??this.autoWrap(),prevActor:this.state.records.prevActor,links:{},properties:{},actorCnt:null,rectData:null,type:i??"participant"}),this.state.records.prevActor){let l=this.state.records.actors.get(this.state.records.prevActor);l&&(l.nextActor=e)}this.state.records.currentBox&&this.state.records.currentBox.actorKeys.push(e),this.state.records.prevActor=e}activationCount(e){let r,n=0;if(!e)return 0;for(r=0;r>-",token:"->>-",line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["'ACTIVE_PARTICIPANT'"]},l}return this.state.records.messages.push({id:this.state.records.messages.length.toString(),from:e,to:r,message:n?.text??"",wrap:n?.wrap??this.autoWrap(),type:i,activate:a}),!0}hasAtLeastOneBox(){return this.state.records.boxes.length>0}hasAtLeastOneBoxWithTitle(){return this.state.records.boxes.some(e=>e.name)}getMessages(){return this.state.records.messages}getBoxes(){return this.state.records.boxes}getActors(){return this.state.records.actors}getCreatedActors(){return this.state.records.createdActors}getDestroyedActors(){return this.state.records.destroyedActors}getActor(e){return this.state.records.actors.get(e)}getActorKeys(){return[...this.state.records.actors.keys()]}enableSequenceNumbers(){this.state.records.sequenceNumbersEnabled=!0}disableSequenceNumbers(){this.state.records.sequenceNumbersEnabled=!1}showSequenceNumbers(){return this.state.records.sequenceNumbersEnabled}setWrap(e){this.state.records.wrapEnabled=e}extractWrap(e){if(e===void 0)return{};e=e.trim();let r=/^:?wrap:/.exec(e)!==null?!0:/^:?nowrap:/.exec(e)!==null?!1:void 0;return{cleanedText:(r===void 0?e:e.replace(/^:?(?:no)?wrap:/,"")).trim(),wrap:r}}autoWrap(){return this.state.records.wrapEnabled!==void 0?this.state.records.wrapEnabled:me().sequence?.wrap??!1}clear(){this.state.reset(),Ar()}parseMessage(e){let r=e.trim(),{wrap:n,cleanedText:i}=this.extractWrap(r),a={text:i,wrap:n};return Y.debug(`parseMessage: ${JSON.stringify(a)}`),a}parseBoxData(e){let r=/^((?:rgba?|hsla?)\s*\(.*\)|\w*)(.*)$/.exec(e),n=r?.[1]?r[1].trim():"transparent",i=r?.[2]?r[2].trim():void 0;if(window?.CSS)window.CSS.supports("color",n)||(n="transparent",i=e.trim());else{let l=new Option().style;l.color=n,l.color!==n&&(n="transparent",i=e.trim())}let{wrap:a,cleanedText:s}=this.extractWrap(i);return{text:s?Tr(s,me()):void 0,color:n,wrap:a}}addNote(e,r,n){let i={actor:e,placement:r,message:n.text,wrap:n.wrap??this.autoWrap()},a=[].concat(e,e);this.state.records.notes.push(i),this.state.records.messages.push({id:this.state.records.messages.length.toString(),from:a[0],to:a[1],message:n.text,wrap:n.wrap??this.autoWrap(),type:this.LINETYPE.NOTE,placement:r})}addLinks(e,r){let n=this.getActor(e);try{let i=Tr(r.text,me());i=i.replace(/=/g,"="),i=i.replace(/&/g,"&");let a=JSON.parse(i);this.insertLinks(n,a)}catch(i){Y.error("error while parsing actor link text",i)}}addALink(e,r){let n=this.getActor(e);try{let i={},a=Tr(r.text,me()),s=a.indexOf("@");a=a.replace(/=/g,"="),a=a.replace(/&/g,"&");let l=a.slice(0,s-1).trim(),u=a.slice(s+1).trim();i[l]=u,this.insertLinks(n,i)}catch(i){Y.error("error while parsing actor link text",i)}}insertLinks(e,r){if(e.links==null)e.links=r;else for(let n in r)e.links[n]=r[n]}addProperties(e,r){let n=this.getActor(e);try{let i=Tr(r.text,me()),a=JSON.parse(i);this.insertProperties(n,a)}catch(i){Y.error("error while parsing actor properties text",i)}}insertProperties(e,r){if(e.properties==null)e.properties=r;else for(let n in r)e.properties[n]=r[n]}boxEnd(){this.state.records.currentBox=void 0}addDetails(e,r){let n=this.getActor(e),i=document.getElementById(r.text);try{let a=i.innerHTML,s=JSON.parse(a);s.properties&&this.insertProperties(n,s.properties),s.links&&this.insertLinks(n,s.links)}catch(a){Y.error("error while parsing actor details text",a)}}getActorProperty(e,r){if(e?.properties!==void 0)return e.properties[r]}apply(e){if(Array.isArray(e))e.forEach(r=>{this.apply(r)});else switch(e.type){case"sequenceIndex":this.state.records.messages.push({id:this.state.records.messages.length.toString(),from:void 0,to:void 0,message:{start:e.sequenceIndex,step:e.sequenceIndexStep,visible:e.sequenceVisible},wrap:!1,type:e.signalType});break;case"addParticipant":this.addActor(e.actor,e.actor,e.description,e.draw);break;case"createParticipant":if(this.state.records.actors.has(e.actor))throw new Error("It is not possible to have actors with the same id, even if one is destroyed before the next is created. Use 'AS' aliases to simulate the behavior");this.state.records.lastCreated=e.actor,this.addActor(e.actor,e.actor,e.description,e.draw),this.state.records.createdActors.set(e.actor,this.state.records.messages.length);break;case"destroyParticipant":this.state.records.lastDestroyed=e.actor,this.state.records.destroyedActors.set(e.actor,this.state.records.messages.length);break;case"activeStart":this.addSignal(e.actor,void 0,void 0,e.signalType);break;case"activeEnd":this.addSignal(e.actor,void 0,void 0,e.signalType);break;case"addNote":this.addNote(e.actor,e.placement,e.text);break;case"addLinks":this.addLinks(e.actor,e.text);break;case"addALink":this.addALink(e.actor,e.text);break;case"addProperties":this.addProperties(e.actor,e.text);break;case"addDetails":this.addDetails(e.actor,e.text);break;case"addMessage":if(this.state.records.lastCreated){if(e.to!==this.state.records.lastCreated)throw new Error("The created participant "+this.state.records.lastCreated.name+" does not have an associated creating message after its declaration. Please check the sequence diagram.");this.state.records.lastCreated=void 0}else if(this.state.records.lastDestroyed){if(e.to!==this.state.records.lastDestroyed&&e.from!==this.state.records.lastDestroyed)throw new Error("The destroyed participant "+this.state.records.lastDestroyed.name+" does not have an associated destroying message after its declaration. Please check the sequence diagram.");this.state.records.lastDestroyed=void 0}this.addSignal(e.from,e.to,e.msg,e.signalType,e.activate);break;case"boxStart":this.addBox(e.boxData);break;case"boxEnd":this.boxEnd();break;case"loopStart":this.addSignal(void 0,void 0,e.loopText,e.signalType);break;case"loopEnd":this.addSignal(void 0,void 0,void 0,e.signalType);break;case"rectStart":this.addSignal(void 0,void 0,e.color,e.signalType);break;case"rectEnd":this.addSignal(void 0,void 0,void 0,e.signalType);break;case"optStart":this.addSignal(void 0,void 0,e.optText,e.signalType);break;case"optEnd":this.addSignal(void 0,void 0,void 0,e.signalType);break;case"altStart":this.addSignal(void 0,void 0,e.altText,e.signalType);break;case"else":this.addSignal(void 0,void 0,e.altText,e.signalType);break;case"altEnd":this.addSignal(void 0,void 0,void 0,e.signalType);break;case"setAccTitle":Lr(e.text);break;case"parStart":this.addSignal(void 0,void 0,e.parText,e.signalType);break;case"and":this.addSignal(void 0,void 0,e.parText,e.signalType);break;case"parEnd":this.addSignal(void 0,void 0,void 0,e.signalType);break;case"criticalStart":this.addSignal(void 0,void 0,e.criticalText,e.signalType);break;case"option":this.addSignal(void 0,void 0,e.optionText,e.signalType);break;case"criticalEnd":this.addSignal(void 0,void 0,void 0,e.signalType);break;case"breakStart":this.addSignal(void 0,void 0,e.breakText,e.signalType);break;case"breakEnd":this.addSignal(void 0,void 0,void 0,e.signalType);break}}getConfig(){return me().sequence}}});var oVe,hfe,ffe=N(()=>{"use strict";oVe=o(t=>`.actor { + stroke: ${t.actorBorder}; + fill: ${t.actorBkg}; + } + + text.actor > tspan { + fill: ${t.actorTextColor}; + stroke: none; + } + + .actor-line { + stroke: ${t.actorLineColor}; + } + + .messageLine0 { + stroke-width: 1.5; + stroke-dasharray: none; + stroke: ${t.signalColor}; + } + + .messageLine1 { + stroke-width: 1.5; + stroke-dasharray: 2, 2; + stroke: ${t.signalColor}; + } + + #arrowhead path { + fill: ${t.signalColor}; + stroke: ${t.signalColor}; + } + + .sequenceNumber { + fill: ${t.sequenceNumberColor}; + } + + #sequencenumber { + fill: ${t.signalColor}; + } + + #crosshead path { + fill: ${t.signalColor}; + stroke: ${t.signalColor}; + } + + .messageText { + fill: ${t.signalTextColor}; + stroke: none; + } + + .labelBox { + stroke: ${t.labelBoxBorderColor}; + fill: ${t.labelBoxBkgColor}; + } + + .labelText, .labelText > tspan { + fill: ${t.labelTextColor}; + stroke: none; + } + + .loopText, .loopText > tspan { + fill: ${t.loopTextColor}; + stroke: none; + } + + .loopLine { + stroke-width: 2px; + stroke-dasharray: 2, 2; + stroke: ${t.labelBoxBorderColor}; + fill: ${t.labelBoxBorderColor}; + } + + .note { + //stroke: #decc93; + stroke: ${t.noteBorderColor}; + fill: ${t.noteBkgColor}; + } + + .noteText, .noteText > tspan { + fill: ${t.noteTextColor}; + stroke: none; + } + + .activation0 { + fill: ${t.activationBkgColor}; + stroke: ${t.activationBorderColor}; + } + + .activation1 { + fill: ${t.activationBkgColor}; + stroke: ${t.activationBorderColor}; + } + + .activation2 { + fill: ${t.activationBkgColor}; + stroke: ${t.activationBorderColor}; + } + + .actorPopupMenu { + position: absolute; + } + + .actorPopupMenuPanel { + position: absolute; + fill: ${t.actorBkg}; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4)); +} + .actor-man line { + stroke: ${t.actorBorder}; + fill: ${t.actorBkg}; + } + .actor-man circle, line { + stroke: ${t.actorBorder}; + fill: ${t.actorBkg}; + stroke-width: 2px; + } +`,"getStyles"),hfe=oVe});var AO,vf,pfe,mfe,lVe,dfe,_O,cVe,uVe,Tb,_p,gfe,Uc,DO,hVe,fVe,dVe,pVe,mVe,gVe,yVe,yfe,vVe,xVe,bVe,wVe,TVe,kVe,EVe,vfe,SVe,LO,CVe,hi,xfe=N(()=>{"use strict";gr();Wv();ir();AO=Sa(z0(),1);ji();vf=18*2,pfe="actor-top",mfe="actor-bottom",lVe="actor-box",dfe="actor-man",_O=o(function(t,e){return kd(t,e)},"drawRect"),cVe=o(function(t,e,r,n,i){if(e.links===void 0||e.links===null||Object.keys(e.links).length===0)return{height:0,width:0};let a=e.links,s=e.actorCnt,l=e.rectData;var u="none";i&&(u="block !important");let h=t.append("g");h.attr("id","actor"+s+"_popup"),h.attr("class","actorPopupMenu"),h.attr("display",u);var f="";l.class!==void 0&&(f=" "+l.class);let d=l.width>r?l.width:r,p=h.append("rect");if(p.attr("class","actorPopupMenuPanel"+f),p.attr("x",l.x),p.attr("y",l.height),p.attr("fill",l.fill),p.attr("stroke",l.stroke),p.attr("width",d),p.attr("height",l.height),p.attr("rx",l.rx),p.attr("ry",l.ry),a!=null){var m=20;for(let v in a){var g=h.append("a"),y=(0,AO.sanitizeUrl)(a[v]);g.attr("xlink:href",y),g.attr("target","_blank"),CVe(n)(v,g,l.x+10,l.height+m,d,20,{class:"actor"},n),m+=30}}return p.attr("height",m),{height:l.height+m,width:d}},"drawPopup"),uVe=o(function(t){return"var pu = document.getElementById('"+t+"'); if (pu != null) { pu.style.display = pu.style.display == 'block' ? 'none' : 'block'; }"},"popupMenuToggle"),Tb=o(async function(t,e,r=null){let n=t.append("foreignObject"),i=await mh(e.text,cr()),s=n.append("xhtml:div").attr("style","width: fit-content;").attr("xmlns","http://www.w3.org/1999/xhtml").html(i).node().getBoundingClientRect();if(n.attr("height",Math.round(s.height)).attr("width",Math.round(s.width)),e.class==="noteText"){let l=t.node().firstChild;l.setAttribute("height",s.height+2*e.textMargin);let u=l.getBBox();n.attr("x",Math.round(u.x+u.width/2-s.width/2)).attr("y",Math.round(u.y+u.height/2-s.height/2))}else if(r){let{startx:l,stopx:u,starty:h}=r;if(l>u){let f=l;l=u,u=f}n.attr("x",Math.round(l+Math.abs(l-u)/2-s.width/2)),e.class==="loopText"?n.attr("y",Math.round(h)):n.attr("y",Math.round(h-s.height))}return[n]},"drawKatex"),_p=o(function(t,e){let r=0,n=0,i=e.text.split(Ze.lineBreakRegex),[a,s]=Bo(e.fontSize),l=[],u=0,h=o(()=>e.y,"yfunc");if(e.valign!==void 0&&e.textMargin!==void 0&&e.textMargin>0)switch(e.valign){case"top":case"start":h=o(()=>Math.round(e.y+e.textMargin),"yfunc");break;case"middle":case"center":h=o(()=>Math.round(e.y+(r+n+e.textMargin)/2),"yfunc");break;case"bottom":case"end":h=o(()=>Math.round(e.y+(r+n+2*e.textMargin)-e.textMargin),"yfunc");break}if(e.anchor!==void 0&&e.textMargin!==void 0&&e.width!==void 0)switch(e.anchor){case"left":case"start":e.x=Math.round(e.x+e.textMargin),e.anchor="start",e.dominantBaseline="middle",e.alignmentBaseline="middle";break;case"middle":case"center":e.x=Math.round(e.x+e.width/2),e.anchor="middle",e.dominantBaseline="middle",e.alignmentBaseline="middle";break;case"right":case"end":e.x=Math.round(e.x+e.width-e.textMargin),e.anchor="end",e.dominantBaseline="middle",e.alignmentBaseline="middle";break}for(let[f,d]of i.entries()){e.textMargin!==void 0&&e.textMargin===0&&a!==void 0&&(u=f*a);let p=t.append("text");p.attr("x",e.x),p.attr("y",h()),e.anchor!==void 0&&p.attr("text-anchor",e.anchor).attr("dominant-baseline",e.dominantBaseline).attr("alignment-baseline",e.alignmentBaseline),e.fontFamily!==void 0&&p.style("font-family",e.fontFamily),s!==void 0&&p.style("font-size",s),e.fontWeight!==void 0&&p.style("font-weight",e.fontWeight),e.fill!==void 0&&p.attr("fill",e.fill),e.class!==void 0&&p.attr("class",e.class),e.dy!==void 0?p.attr("dy",e.dy):u!==0&&p.attr("dy",u);let m=d||H9;if(e.tspan){let g=p.append("tspan");g.attr("x",e.x),e.fill!==void 0&&g.attr("fill",e.fill),g.text(m)}else p.text(m);e.valign!==void 0&&e.textMargin!==void 0&&e.textMargin>0&&(n+=(p._groups||p)[0][0].getBBox().height,r=n),l.push(p)}return l},"drawText"),gfe=o(function(t,e){function r(i,a,s,l,u){return i+","+a+" "+(i+s)+","+a+" "+(i+s)+","+(a+l-u)+" "+(i+s-u*1.2)+","+(a+l)+" "+i+","+(a+l)}o(r,"genPoints");let n=t.append("polygon");return n.attr("points",r(e.x,e.y,e.width,e.height,7)),n.attr("class","labelBox"),e.y=e.y+e.height/2,_p(t,e),n},"drawLabel"),Uc=-1,DO=o((t,e,r,n)=>{t.select&&r.forEach(i=>{let a=e.get(i),s=t.select("#actor"+a.actorCnt);!n.mirrorActors&&a.stopy?s.attr("y2",a.stopy+a.height/2):n.mirrorActors&&s.attr("y2",a.stopy)})},"fixLifeLineHeights"),hVe=o(function(t,e,r,n){let i=n?e.stopy:e.starty,a=e.x+e.width/2,s=i+e.height,l=t.append("g").lower();var u=l;n||(Uc++,Object.keys(e.links||{}).length&&!r.forceMenus&&u.attr("onclick",uVe(`actor${Uc}_popup`)).attr("cursor","pointer"),u.append("line").attr("id","actor"+Uc).attr("x1",a).attr("y1",s).attr("x2",a).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",e.name),u=l.append("g"),e.actorCnt=Uc,e.links!=null&&u.attr("id","root-"+Uc));let h=Tl();var f="actor";e.properties?.class?f=e.properties.class:h.fill="#eaeaea",n?f+=` ${mfe}`:f+=` ${pfe}`,h.x=e.x,h.y=i,h.width=e.width,h.height=e.height,h.class=f,h.rx=3,h.ry=3,h.name=e.name;let d=_O(u,h);if(e.rectData=h,e.properties?.icon){let m=e.properties.icon.trim();m.charAt(0)==="@"?Iq(u,h.x+h.width-20,h.y+10,m.substr(1)):Mq(u,h.x+h.width-20,h.y+10,m)}LO(r,pi(e.description))(e.description,u,h.x,h.y,h.width,h.height,{class:`actor ${lVe}`},r);let p=e.height;if(d.node){let m=d.node().getBBox();e.height=m.height,p=m.height}return p},"drawActorTypeParticipant"),fVe=o(function(t,e,r,n){let i=n?e.stopy:e.starty,a=e.x+e.width/2,s=i+80,l=t.append("g").lower();n||(Uc++,l.append("line").attr("id","actor"+Uc).attr("x1",a).attr("y1",s).attr("x2",a).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",e.name),e.actorCnt=Uc);let u=t.append("g"),h=dfe;n?h+=` ${mfe}`:h+=` ${pfe}`,u.attr("class",h),u.attr("name",e.name);let f=Tl();f.x=e.x,f.y=i,f.fill="#eaeaea",f.width=e.width,f.height=e.height,f.class="actor",f.rx=3,f.ry=3,u.append("line").attr("id","actor-man-torso"+Uc).attr("x1",a).attr("y1",i+25).attr("x2",a).attr("y2",i+45),u.append("line").attr("id","actor-man-arms"+Uc).attr("x1",a-vf/2).attr("y1",i+33).attr("x2",a+vf/2).attr("y2",i+33),u.append("line").attr("x1",a-vf/2).attr("y1",i+60).attr("x2",a).attr("y2",i+45),u.append("line").attr("x1",a).attr("y1",i+45).attr("x2",a+vf/2-2).attr("y2",i+60);let d=u.append("circle");d.attr("cx",e.x+e.width/2),d.attr("cy",i+10),d.attr("r",15),d.attr("width",e.width),d.attr("height",e.height);let p=u.node().getBBox();return e.height=p.height,LO(r,pi(e.description))(e.description,u,f.x,f.y+35,f.width,f.height,{class:`actor ${dfe}`},r),e.height},"drawActorTypeActor"),dVe=o(async function(t,e,r,n){switch(e.type){case"actor":return await fVe(t,e,r,n);case"participant":return await hVe(t,e,r,n)}},"drawActor"),pVe=o(function(t,e,r){let i=t.append("g");yfe(i,e),e.name&&LO(r)(e.name,i,e.x,e.y+(e.textMaxHeight||0)/2,e.width,0,{class:"text"},r),i.lower()},"drawBox"),mVe=o(function(t){return t.append("g")},"anchorElement"),gVe=o(function(t,e,r,n,i){let a=Tl(),s=e.anchored;a.x=e.startx,a.y=e.starty,a.class="activation"+i%3,a.width=e.stopx-e.startx,a.height=r-e.starty,_O(s,a)},"drawActivation"),yVe=o(async function(t,e,r,n){let{boxMargin:i,boxTextMargin:a,labelBoxHeight:s,labelBoxWidth:l,messageFontFamily:u,messageFontSize:h,messageFontWeight:f}=n,d=t.append("g"),p=o(function(y,v,x,b){return d.append("line").attr("x1",y).attr("y1",v).attr("x2",x).attr("y2",b).attr("class","loopLine")},"drawLoopLine");p(e.startx,e.starty,e.stopx,e.starty),p(e.stopx,e.starty,e.stopx,e.stopy),p(e.startx,e.stopy,e.stopx,e.stopy),p(e.startx,e.starty,e.startx,e.stopy),e.sections!==void 0&&e.sections.forEach(function(y){p(e.startx,y.y,e.stopx,y.y).style("stroke-dasharray","3, 3")});let m=Hv();m.text=r,m.x=e.startx,m.y=e.starty,m.fontFamily=u,m.fontSize=h,m.fontWeight=f,m.anchor="middle",m.valign="middle",m.tspan=!1,m.width=l||50,m.height=s||20,m.textMargin=a,m.class="labelText",gfe(d,m),m=vfe(),m.text=e.title,m.x=e.startx+l/2+(e.stopx-e.startx)/2,m.y=e.starty+i+a,m.anchor="middle",m.valign="middle",m.textMargin=a,m.class="loopText",m.fontFamily=u,m.fontSize=h,m.fontWeight=f,m.wrap=!0;let g=pi(m.text)?await Tb(d,m,e):_p(d,m);if(e.sectionTitles!==void 0){for(let[y,v]of Object.entries(e.sectionTitles))if(v.message){m.text=v.message,m.x=e.startx+(e.stopx-e.startx)/2,m.y=e.sections[y].y+i+a,m.class="loopText",m.anchor="middle",m.valign="middle",m.tspan=!1,m.fontFamily=u,m.fontSize=h,m.fontWeight=f,m.wrap=e.wrap,pi(m.text)?(e.starty=e.sections[y].y,await Tb(d,m,e)):_p(d,m);let x=Math.round(g.map(b=>(b._groups||b)[0][0].getBBox().height).reduce((b,w)=>b+w));e.sections[y].height+=x-(i+a)}}return e.height=Math.round(e.stopy-e.starty),d},"drawLoop"),yfe=o(function(t,e){q5(t,e)},"drawBackgroundRect"),vVe=o(function(t){t.append("defs").append("symbol").attr("id","database").attr("fill-rule","evenodd").attr("clip-rule","evenodd").append("path").attr("transform","scale(.5)").attr("d","M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z")},"insertDatabaseIcon"),xVe=o(function(t){t.append("defs").append("symbol").attr("id","computer").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z")},"insertComputerIcon"),bVe=o(function(t){t.append("defs").append("symbol").attr("id","clock").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z")},"insertClockIcon"),wVe=o(function(t){t.append("defs").append("marker").attr("id","arrowhead").attr("refX",7.9).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto-start-reverse").append("path").attr("d","M -1 0 L 10 5 L 0 10 z")},"insertArrowHead"),TVe=o(function(t){t.append("defs").append("marker").attr("id","filled-head").attr("refX",15.5).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L14,7 L9,1 Z")},"insertArrowFilledHead"),kVe=o(function(t){t.append("defs").append("marker").attr("id","sequencenumber").attr("refX",15).attr("refY",15).attr("markerWidth",60).attr("markerHeight",40).attr("orient","auto").append("circle").attr("cx",15).attr("cy",15).attr("r",6)},"insertSequenceNumber"),EVe=o(function(t){t.append("defs").append("marker").attr("id","crosshead").attr("markerWidth",15).attr("markerHeight",8).attr("orient","auto").attr("refX",4).attr("refY",4.5).append("path").attr("fill","none").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1pt").attr("d","M 1,2 L 6,7 M 6,2 L 1,7")},"insertArrowCrossHead"),vfe=o(function(){return{x:0,y:0,fill:void 0,anchor:void 0,style:"#666",width:void 0,height:void 0,textMargin:0,rx:0,ry:0,tspan:!0,valign:void 0}},"getTextObj"),SVe=o(function(){return{x:0,y:0,fill:"#EDF2AE",stroke:"#666",width:100,anchor:"start",height:100,rx:0,ry:0}},"getNoteRect"),LO=function(){function t(a,s,l,u,h,f,d){let p=s.append("text").attr("x",l+h/2).attr("y",u+f/2+5).style("text-anchor","middle").text(a);i(p,d)}o(t,"byText");function e(a,s,l,u,h,f,d,p){let{actorFontSize:m,actorFontFamily:g,actorFontWeight:y}=p,[v,x]=Bo(m),b=a.split(Ze.lineBreakRegex);for(let w=0;w{let s=Dp(Ne),l=a.actorKeys.reduce((f,d)=>f+=t.get(d).width+(t.get(d).margin||0),0);l-=2*Ne.boxTextMargin,a.wrap&&(a.name=Gt.wrapLabel(a.name,l-2*Ne.wrapPadding,s));let u=Gt.calculateTextDimensions(a.name,s);i=Ze.getMax(u.height,i);let h=Ze.getMax(l,u.width+2*Ne.wrapPadding);if(a.margin=Ne.boxTextMargin,la.textMaxHeight=i),Ze.getMax(n,Ne.height)}var Ne,rt,AVe,Dp,_1,RO,DVe,LVe,NO,wfe,Tfe,D6,bfe,NVe,IVe,PVe,BVe,FVe,kfe,Efe=N(()=>{"use strict";dr();xfe();vt();gr();Wv();zt();s0();ir();Ei();Ne={},rt={data:{startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},verticalPos:0,sequenceItems:[],activations:[],models:{getHeight:o(function(){return Math.max.apply(null,this.actors.length===0?[0]:this.actors.map(t=>t.height||0))+(this.loops.length===0?0:this.loops.map(t=>t.height||0).reduce((t,e)=>t+e))+(this.messages.length===0?0:this.messages.map(t=>t.height||0).reduce((t,e)=>t+e))+(this.notes.length===0?0:this.notes.map(t=>t.height||0).reduce((t,e)=>t+e))},"getHeight"),clear:o(function(){this.actors=[],this.boxes=[],this.loops=[],this.messages=[],this.notes=[]},"clear"),addBox:o(function(t){this.boxes.push(t)},"addBox"),addActor:o(function(t){this.actors.push(t)},"addActor"),addLoop:o(function(t){this.loops.push(t)},"addLoop"),addMessage:o(function(t){this.messages.push(t)},"addMessage"),addNote:o(function(t){this.notes.push(t)},"addNote"),lastActor:o(function(){return this.actors[this.actors.length-1]},"lastActor"),lastLoop:o(function(){return this.loops[this.loops.length-1]},"lastLoop"),lastMessage:o(function(){return this.messages[this.messages.length-1]},"lastMessage"),lastNote:o(function(){return this.notes[this.notes.length-1]},"lastNote"),actors:[],boxes:[],loops:[],messages:[],notes:[]},init:o(function(){this.sequenceItems=[],this.activations=[],this.models.clear(),this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0,Tfe(me())},"init"),updateVal:o(function(t,e,r,n){t[e]===void 0?t[e]=r:t[e]=n(r,t[e])},"updateVal"),updateBounds:o(function(t,e,r,n){let i=this,a=0;function s(l){return o(function(h){a++;let f=i.sequenceItems.length-a+1;i.updateVal(h,"starty",e-f*Ne.boxMargin,Math.min),i.updateVal(h,"stopy",n+f*Ne.boxMargin,Math.max),i.updateVal(rt.data,"startx",t-f*Ne.boxMargin,Math.min),i.updateVal(rt.data,"stopx",r+f*Ne.boxMargin,Math.max),l!=="activation"&&(i.updateVal(h,"startx",t-f*Ne.boxMargin,Math.min),i.updateVal(h,"stopx",r+f*Ne.boxMargin,Math.max),i.updateVal(rt.data,"starty",e-f*Ne.boxMargin,Math.min),i.updateVal(rt.data,"stopy",n+f*Ne.boxMargin,Math.max))},"updateItemBounds")}o(s,"updateFn"),this.sequenceItems.forEach(s()),this.activations.forEach(s("activation"))},"updateBounds"),insert:o(function(t,e,r,n){let i=Ze.getMin(t,r),a=Ze.getMax(t,r),s=Ze.getMin(e,n),l=Ze.getMax(e,n);this.updateVal(rt.data,"startx",i,Math.min),this.updateVal(rt.data,"starty",s,Math.min),this.updateVal(rt.data,"stopx",a,Math.max),this.updateVal(rt.data,"stopy",l,Math.max),this.updateBounds(i,s,a,l)},"insert"),newActivation:o(function(t,e,r){let n=r.get(t.from),i=D6(t.from).length||0,a=n.x+n.width/2+(i-1)*Ne.activationWidth/2;this.activations.push({startx:a,starty:this.verticalPos+2,stopx:a+Ne.activationWidth,stopy:void 0,actor:t.from,anchored:hi.anchorElement(e)})},"newActivation"),endActivation:o(function(t){let e=this.activations.map(function(r){return r.actor}).lastIndexOf(t.from);return this.activations.splice(e,1)[0]},"endActivation"),createLoop:o(function(t={message:void 0,wrap:!1,width:void 0},e){return{startx:void 0,starty:this.verticalPos,stopx:void 0,stopy:void 0,title:t.message,wrap:t.wrap,width:t.width,height:0,fill:e}},"createLoop"),newLoop:o(function(t={message:void 0,wrap:!1,width:void 0},e){this.sequenceItems.push(this.createLoop(t,e))},"newLoop"),endLoop:o(function(){return this.sequenceItems.pop()},"endLoop"),isLoopOverlap:o(function(){return this.sequenceItems.length?this.sequenceItems[this.sequenceItems.length-1].overlap:!1},"isLoopOverlap"),addSectionToLoop:o(function(t){let e=this.sequenceItems.pop();e.sections=e.sections||[],e.sectionTitles=e.sectionTitles||[],e.sections.push({y:rt.getVerticalPos(),height:0}),e.sectionTitles.push(t),this.sequenceItems.push(e)},"addSectionToLoop"),saveVerticalPos:o(function(){this.isLoopOverlap()&&(this.savedVerticalPos=this.verticalPos)},"saveVerticalPos"),resetVerticalPos:o(function(){this.isLoopOverlap()&&(this.verticalPos=this.savedVerticalPos)},"resetVerticalPos"),bumpVerticalPos:o(function(t){this.verticalPos=this.verticalPos+t,this.data.stopy=Ze.getMax(this.data.stopy,this.verticalPos)},"bumpVerticalPos"),getVerticalPos:o(function(){return this.verticalPos},"getVerticalPos"),getBounds:o(function(){return{bounds:this.data,models:this.models}},"getBounds")},AVe=o(async function(t,e){rt.bumpVerticalPos(Ne.boxMargin),e.height=Ne.boxMargin,e.starty=rt.getVerticalPos();let r=Tl();r.x=e.startx,r.y=e.starty,r.width=e.width||Ne.width,r.class="note";let n=t.append("g"),i=hi.drawRect(n,r),a=Hv();a.x=e.startx,a.y=e.starty,a.width=r.width,a.dy="1em",a.text=e.message,a.class="noteText",a.fontFamily=Ne.noteFontFamily,a.fontSize=Ne.noteFontSize,a.fontWeight=Ne.noteFontWeight,a.anchor=Ne.noteAlign,a.textMargin=Ne.noteMargin,a.valign="center";let s=pi(a.text)?await Tb(n,a):_p(n,a),l=Math.round(s.map(u=>(u._groups||u)[0][0].getBBox().height).reduce((u,h)=>u+h));i.attr("height",l+2*Ne.noteMargin),e.height+=l+2*Ne.noteMargin,rt.bumpVerticalPos(l+2*Ne.noteMargin),e.stopy=e.starty+l+2*Ne.noteMargin,e.stopx=e.startx+r.width,rt.insert(e.startx,e.starty,e.stopx,e.stopy),rt.models.addNote(e)},"drawNote"),Dp=o(t=>({fontFamily:t.messageFontFamily,fontSize:t.messageFontSize,fontWeight:t.messageFontWeight}),"messageFont"),_1=o(t=>({fontFamily:t.noteFontFamily,fontSize:t.noteFontSize,fontWeight:t.noteFontWeight}),"noteFont"),RO=o(t=>({fontFamily:t.actorFontFamily,fontSize:t.actorFontSize,fontWeight:t.actorFontWeight}),"actorFont");o(_Ve,"boundMessage");DVe=o(async function(t,e,r,n){let{startx:i,stopx:a,starty:s,message:l,type:u,sequenceIndex:h,sequenceVisible:f}=e,d=Gt.calculateTextDimensions(l,Dp(Ne)),p=Hv();p.x=i,p.y=s+10,p.width=a-i,p.class="messageText",p.dy="1em",p.text=l,p.fontFamily=Ne.messageFontFamily,p.fontSize=Ne.messageFontSize,p.fontWeight=Ne.messageFontWeight,p.anchor=Ne.messageAlign,p.valign="center",p.textMargin=Ne.wrapPadding,p.tspan=!1,pi(p.text)?await Tb(t,p,{startx:i,stopx:a,starty:r}):_p(t,p);let m=d.width,g;i===a?Ne.rightAngles?g=t.append("path").attr("d",`M ${i},${r} H ${i+Ze.getMax(Ne.width/2,m/2)} V ${r+25} H ${i}`):g=t.append("path").attr("d","M "+i+","+r+" C "+(i+60)+","+(r-10)+" "+(i+60)+","+(r+30)+" "+i+","+(r+20)):(g=t.append("line"),g.attr("x1",i),g.attr("y1",r),g.attr("x2",a),g.attr("y2",r)),u===n.db.LINETYPE.DOTTED||u===n.db.LINETYPE.DOTTED_CROSS||u===n.db.LINETYPE.DOTTED_POINT||u===n.db.LINETYPE.DOTTED_OPEN||u===n.db.LINETYPE.BIDIRECTIONAL_DOTTED?(g.style("stroke-dasharray","3, 3"),g.attr("class","messageLine1")):g.attr("class","messageLine0");let y="";Ne.arrowMarkerAbsolute&&(y=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,y=y.replace(/\(/g,"\\("),y=y.replace(/\)/g,"\\)")),g.attr("stroke-width",2),g.attr("stroke","none"),g.style("fill","none"),(u===n.db.LINETYPE.SOLID||u===n.db.LINETYPE.DOTTED)&&g.attr("marker-end","url("+y+"#arrowhead)"),(u===n.db.LINETYPE.BIDIRECTIONAL_SOLID||u===n.db.LINETYPE.BIDIRECTIONAL_DOTTED)&&(g.attr("marker-start","url("+y+"#arrowhead)"),g.attr("marker-end","url("+y+"#arrowhead)")),(u===n.db.LINETYPE.SOLID_POINT||u===n.db.LINETYPE.DOTTED_POINT)&&g.attr("marker-end","url("+y+"#filled-head)"),(u===n.db.LINETYPE.SOLID_CROSS||u===n.db.LINETYPE.DOTTED_CROSS)&&g.attr("marker-end","url("+y+"#crosshead)"),(f||Ne.showSequenceNumbers)&&(g.attr("marker-start","url("+y+"#sequencenumber)"),t.append("text").attr("x",i).attr("y",r+4).attr("font-family","sans-serif").attr("font-size","12px").attr("text-anchor","middle").attr("class","sequenceNumber").text(h))},"drawMessage"),LVe=o(function(t,e,r,n,i,a,s){let l=0,u=0,h,f=0;for(let d of n){let p=e.get(d),m=p.box;h&&h!=m&&(s||rt.models.addBox(h),u+=Ne.boxMargin+h.margin),m&&m!=h&&(s||(m.x=l+u,m.y=i),u+=m.margin),p.width=p.width||Ne.width,p.height=Ze.getMax(p.height||Ne.height,Ne.height),p.margin=p.margin||Ne.actorMargin,f=Ze.getMax(f,p.height),r.get(p.name)&&(u+=p.width/2),p.x=l+u,p.starty=rt.getVerticalPos(),rt.insert(p.x,i,p.x+p.width,p.height),l+=p.width+u,p.box&&(p.box.width=l+m.margin-p.box.x),u=p.margin,h=p.box,rt.models.addActor(p)}h&&!s&&rt.models.addBox(h),rt.bumpVerticalPos(f)},"addActorRenderingData"),NO=o(async function(t,e,r,n){if(n){let i=0;rt.bumpVerticalPos(Ne.boxMargin*2);for(let a of r){let s=e.get(a);s.stopy||(s.stopy=rt.getVerticalPos());let l=await hi.drawActor(t,s,Ne,!0);i=Ze.getMax(i,l)}rt.bumpVerticalPos(i+Ne.boxMargin)}else for(let i of r){let a=e.get(i);await hi.drawActor(t,a,Ne,!1)}},"drawActors"),wfe=o(function(t,e,r,n){let i=0,a=0;for(let s of r){let l=e.get(s),u=IVe(l),h=hi.drawPopup(t,l,u,Ne,Ne.forceMenus,n);h.height>i&&(i=h.height),h.width+l.x>a&&(a=h.width+l.x)}return{maxHeight:i,maxWidth:a}},"drawActorsPopup"),Tfe=o(function(t){Gn(Ne,t),t.fontFamily&&(Ne.actorFontFamily=Ne.noteFontFamily=Ne.messageFontFamily=t.fontFamily),t.fontSize&&(Ne.actorFontSize=Ne.noteFontSize=Ne.messageFontSize=t.fontSize),t.fontWeight&&(Ne.actorFontWeight=Ne.noteFontWeight=Ne.messageFontWeight=t.fontWeight)},"setConf"),D6=o(function(t){return rt.activations.filter(function(e){return e.actor===t})},"actorActivations"),bfe=o(function(t,e){let r=e.get(t),n=D6(t),i=n.reduce(function(s,l){return Ze.getMin(s,l.startx)},r.x+r.width/2-1),a=n.reduce(function(s,l){return Ze.getMax(s,l.stopx)},r.x+r.width/2+1);return[i,a]},"activationBounds");o(Hc,"adjustLoopHeightForWrap");o(RVe,"adjustCreatedDestroyedData");NVe=o(async function(t,e,r,n){let{securityLevel:i,sequence:a}=me();Ne=a;let s;i==="sandbox"&&(s=Ge("#i"+e));let l=i==="sandbox"?Ge(s.nodes()[0].contentDocument.body):Ge("body"),u=i==="sandbox"?s.nodes()[0].contentDocument:document;rt.init(),Y.debug(n.db);let h=i==="sandbox"?l.select(`[id="${e}"]`):Ge(`[id="${e}"]`),f=n.db.getActors(),d=n.db.getCreatedActors(),p=n.db.getDestroyedActors(),m=n.db.getBoxes(),g=n.db.getActorKeys(),y=n.db.getMessages(),v=n.db.getDiagramTitle(),x=n.db.hasAtLeastOneBox(),b=n.db.hasAtLeastOneBoxWithTitle(),w=await MVe(f,y,n);if(Ne.height=await OVe(f,w,m),hi.insertComputerIcon(h),hi.insertDatabaseIcon(h),hi.insertClockIcon(h),x&&(rt.bumpVerticalPos(Ne.boxMargin),b&&rt.bumpVerticalPos(m[0].textMaxHeight)),Ne.hideUnusedParticipants===!0){let F=new Set;y.forEach(P=>{F.add(P.from),F.add(P.to)}),g=g.filter(P=>F.has(P))}LVe(h,f,d,g,0,y,!1);let C=await FVe(y,f,w,n);hi.insertArrowHead(h),hi.insertArrowCrossHead(h),hi.insertArrowFilledHead(h),hi.insertSequenceNumber(h);function T(F,P){let z=rt.endActivation(F);z.starty+18>P&&(z.starty=P-6,P+=12),hi.drawActivation(h,z,P,Ne,D6(F.from).length),rt.insert(z.startx,P-10,z.stopx,P)}o(T,"activeEnd");let E=1,A=1,S=[],_=[],I=0;for(let F of y){let P,z,$;switch(F.type){case n.db.LINETYPE.NOTE:rt.resetVerticalPos(),z=F.noteModel,await AVe(h,z);break;case n.db.LINETYPE.ACTIVE_START:rt.newActivation(F,h,f);break;case n.db.LINETYPE.ACTIVE_END:T(F,rt.getVerticalPos());break;case n.db.LINETYPE.LOOP_START:Hc(C,F,Ne.boxMargin,Ne.boxMargin+Ne.boxTextMargin,H=>rt.newLoop(H));break;case n.db.LINETYPE.LOOP_END:P=rt.endLoop(),await hi.drawLoop(h,P,"loop",Ne),rt.bumpVerticalPos(P.stopy-rt.getVerticalPos()),rt.models.addLoop(P);break;case n.db.LINETYPE.RECT_START:Hc(C,F,Ne.boxMargin,Ne.boxMargin,H=>rt.newLoop(void 0,H.message));break;case n.db.LINETYPE.RECT_END:P=rt.endLoop(),_.push(P),rt.models.addLoop(P),rt.bumpVerticalPos(P.stopy-rt.getVerticalPos());break;case n.db.LINETYPE.OPT_START:Hc(C,F,Ne.boxMargin,Ne.boxMargin+Ne.boxTextMargin,H=>rt.newLoop(H));break;case n.db.LINETYPE.OPT_END:P=rt.endLoop(),await hi.drawLoop(h,P,"opt",Ne),rt.bumpVerticalPos(P.stopy-rt.getVerticalPos()),rt.models.addLoop(P);break;case n.db.LINETYPE.ALT_START:Hc(C,F,Ne.boxMargin,Ne.boxMargin+Ne.boxTextMargin,H=>rt.newLoop(H));break;case n.db.LINETYPE.ALT_ELSE:Hc(C,F,Ne.boxMargin+Ne.boxTextMargin,Ne.boxMargin,H=>rt.addSectionToLoop(H));break;case n.db.LINETYPE.ALT_END:P=rt.endLoop(),await hi.drawLoop(h,P,"alt",Ne),rt.bumpVerticalPos(P.stopy-rt.getVerticalPos()),rt.models.addLoop(P);break;case n.db.LINETYPE.PAR_START:case n.db.LINETYPE.PAR_OVER_START:Hc(C,F,Ne.boxMargin,Ne.boxMargin+Ne.boxTextMargin,H=>rt.newLoop(H)),rt.saveVerticalPos();break;case n.db.LINETYPE.PAR_AND:Hc(C,F,Ne.boxMargin+Ne.boxTextMargin,Ne.boxMargin,H=>rt.addSectionToLoop(H));break;case n.db.LINETYPE.PAR_END:P=rt.endLoop(),await hi.drawLoop(h,P,"par",Ne),rt.bumpVerticalPos(P.stopy-rt.getVerticalPos()),rt.models.addLoop(P);break;case n.db.LINETYPE.AUTONUMBER:E=F.message.start||E,A=F.message.step||A,F.message.visible?n.db.enableSequenceNumbers():n.db.disableSequenceNumbers();break;case n.db.LINETYPE.CRITICAL_START:Hc(C,F,Ne.boxMargin,Ne.boxMargin+Ne.boxTextMargin,H=>rt.newLoop(H));break;case n.db.LINETYPE.CRITICAL_OPTION:Hc(C,F,Ne.boxMargin+Ne.boxTextMargin,Ne.boxMargin,H=>rt.addSectionToLoop(H));break;case n.db.LINETYPE.CRITICAL_END:P=rt.endLoop(),await hi.drawLoop(h,P,"critical",Ne),rt.bumpVerticalPos(P.stopy-rt.getVerticalPos()),rt.models.addLoop(P);break;case n.db.LINETYPE.BREAK_START:Hc(C,F,Ne.boxMargin,Ne.boxMargin+Ne.boxTextMargin,H=>rt.newLoop(H));break;case n.db.LINETYPE.BREAK_END:P=rt.endLoop(),await hi.drawLoop(h,P,"break",Ne),rt.bumpVerticalPos(P.stopy-rt.getVerticalPos()),rt.models.addLoop(P);break;default:try{$=F.msgModel,$.starty=rt.getVerticalPos(),$.sequenceIndex=E,$.sequenceVisible=n.db.showSequenceNumbers();let H=await _Ve(h,$);RVe(F,$,H,I,f,d,p),S.push({messageModel:$,lineStartY:H}),rt.models.addMessage($)}catch(H){Y.error("error while drawing message",H)}}[n.db.LINETYPE.SOLID_OPEN,n.db.LINETYPE.DOTTED_OPEN,n.db.LINETYPE.SOLID,n.db.LINETYPE.DOTTED,n.db.LINETYPE.SOLID_CROSS,n.db.LINETYPE.DOTTED_CROSS,n.db.LINETYPE.SOLID_POINT,n.db.LINETYPE.DOTTED_POINT,n.db.LINETYPE.BIDIRECTIONAL_SOLID,n.db.LINETYPE.BIDIRECTIONAL_DOTTED].includes(F.type)&&(E=E+A),I++}Y.debug("createdActors",d),Y.debug("destroyedActors",p),await NO(h,f,g,!1);for(let F of S)await DVe(h,F.messageModel,F.lineStartY,n);Ne.mirrorActors&&await NO(h,f,g,!0),_.forEach(F=>hi.drawBackgroundRect(h,F)),DO(h,f,g,Ne);for(let F of rt.models.boxes)F.height=rt.getVerticalPos()-F.y,rt.insert(F.x,F.y,F.x+F.width,F.height),F.startx=F.x,F.starty=F.y,F.stopx=F.startx+F.width,F.stopy=F.starty+F.height,F.stroke="rgb(0,0,0, 0.5)",hi.drawBox(h,F,Ne);x&&rt.bumpVerticalPos(Ne.boxMargin);let D=wfe(h,f,g,u),{bounds:k}=rt.getBounds();k.startx===void 0&&(k.startx=0),k.starty===void 0&&(k.starty=0),k.stopx===void 0&&(k.stopx=0),k.stopy===void 0&&(k.stopy=0);let L=k.stopy-k.starty;L2,d=o(y=>l?-y:y,"adjustValue");t.from===t.to?h=u:(t.activate&&!f&&(h+=d(Ne.activationWidth/2-1)),[r.db.LINETYPE.SOLID_OPEN,r.db.LINETYPE.DOTTED_OPEN].includes(t.type)||(h+=d(3)),[r.db.LINETYPE.BIDIRECTIONAL_SOLID,r.db.LINETYPE.BIDIRECTIONAL_DOTTED].includes(t.type)&&(u-=d(3)));let p=[n,i,a,s],m=Math.abs(u-h);t.wrap&&t.message&&(t.message=Gt.wrapLabel(t.message,Ze.getMax(m+2*Ne.wrapPadding,Ne.width),Dp(Ne)));let g=Gt.calculateTextDimensions(t.message,Dp(Ne));return{width:Ze.getMax(t.wrap?0:g.width+2*Ne.wrapPadding,m+2*Ne.wrapPadding,Ne.width),height:0,startx:u,stopx:h,starty:0,stopy:0,message:t.message,type:t.type,wrap:t.wrap,fromBounds:Math.min.apply(null,p),toBounds:Math.max.apply(null,p)}},"buildMessageModel"),FVe=o(async function(t,e,r,n){let i={},a=[],s,l,u;for(let h of t){switch(h.type){case n.db.LINETYPE.LOOP_START:case n.db.LINETYPE.ALT_START:case n.db.LINETYPE.OPT_START:case n.db.LINETYPE.PAR_START:case n.db.LINETYPE.PAR_OVER_START:case n.db.LINETYPE.CRITICAL_START:case n.db.LINETYPE.BREAK_START:a.push({id:h.id,msg:h.message,from:Number.MAX_SAFE_INTEGER,to:Number.MIN_SAFE_INTEGER,width:0});break;case n.db.LINETYPE.ALT_ELSE:case n.db.LINETYPE.PAR_AND:case n.db.LINETYPE.CRITICAL_OPTION:h.message&&(s=a.pop(),i[s.id]=s,i[h.id]=s,a.push(s));break;case n.db.LINETYPE.LOOP_END:case n.db.LINETYPE.ALT_END:case n.db.LINETYPE.OPT_END:case n.db.LINETYPE.PAR_END:case n.db.LINETYPE.CRITICAL_END:case n.db.LINETYPE.BREAK_END:s=a.pop(),i[s.id]=s;break;case n.db.LINETYPE.ACTIVE_START:{let d=e.get(h.from?h.from:h.to.actor),p=D6(h.from?h.from:h.to.actor).length,m=d.x+d.width/2+(p-1)*Ne.activationWidth/2,g={startx:m,stopx:m+Ne.activationWidth,actor:h.from,enabled:!0};rt.activations.push(g)}break;case n.db.LINETYPE.ACTIVE_END:{let d=rt.activations.map(p=>p.actor).lastIndexOf(h.from);rt.activations.splice(d,1).splice(0,1)}break}h.placement!==void 0?(l=await PVe(h,e,n),h.noteModel=l,a.forEach(d=>{s=d,s.from=Ze.getMin(s.from,l.startx),s.to=Ze.getMax(s.to,l.startx+l.width),s.width=Ze.getMax(s.width,Math.abs(s.from-s.to))-Ne.labelBoxWidth})):(u=BVe(h,e,n),h.msgModel=u,u.startx&&u.stopx&&a.length>0&&a.forEach(d=>{if(s=d,u.startx===u.stopx){let p=e.get(h.from),m=e.get(h.to);s.from=Ze.getMin(p.x-u.width/2,p.x-p.width/2,s.from),s.to=Ze.getMax(m.x+u.width/2,m.x+p.width/2,s.to),s.width=Ze.getMax(s.width,Math.abs(s.to-s.from))-Ne.labelBoxWidth}else s.from=Ze.getMin(u.startx,s.from),s.to=Ze.getMax(u.stopx,s.to),s.width=Ze.getMax(s.width,u.width)-Ne.labelBoxWidth}))}return rt.activations=[],Y.debug("Loop type widths:",i),i},"calculateLoopBounds"),kfe={bounds:rt,drawActors:NO,drawActorsPopup:wfe,setConf:Tfe,draw:NVe}});var Sfe={};hr(Sfe,{diagram:()=>$Ve});var $Ve,Cfe=N(()=>{"use strict";cfe();ufe();ffe();zt();Efe();$Ve={parser:lfe,get db(){return new _6},renderer:kfe,styles:hfe,init:o(t=>{t.sequence||(t.sequence={}),t.wrap&&(t.sequence.wrap=t.wrap,Yy({sequence:{wrap:t.wrap}}))},"init")}});var MO,L6,IO=N(()=>{"use strict";MO=function(){var t=o(function(Ie,be,W,de){for(W=W||{},de=Ie.length;de--;W[Ie[de]]=be);return W},"o"),e=[1,18],r=[1,19],n=[1,20],i=[1,41],a=[1,42],s=[1,26],l=[1,24],u=[1,25],h=[1,32],f=[1,33],d=[1,34],p=[1,45],m=[1,35],g=[1,36],y=[1,37],v=[1,38],x=[1,27],b=[1,28],w=[1,29],C=[1,30],T=[1,31],E=[1,44],A=[1,46],S=[1,43],_=[1,47],I=[1,9],D=[1,8,9],k=[1,58],L=[1,59],R=[1,60],O=[1,61],M=[1,62],B=[1,63],F=[1,64],P=[1,8,9,41],z=[1,76],$=[1,8,9,12,13,22,39,41,44,66,67,68,69,70,71,72,77,79],H=[1,8,9,12,13,17,20,22,39,41,44,48,58,66,67,68,69,70,71,72,77,79,84,99,101,102],Q=[13,58,84,99,101,102],j=[13,58,71,72,84,99,101,102],ie=[13,58,66,67,68,69,70,84,99,101,102],ne=[1,98],le=[1,115],he=[1,107],K=[1,113],X=[1,108],te=[1,109],J=[1,110],se=[1,111],ue=[1,112],Z=[1,114],Se=[22,58,59,80,84,85,86,87,88,89],ce=[1,8,9,39,41,44],ae=[1,8,9,22],Oe=[1,143],ge=[1,8,9,59],ze=[1,8,9,22,58,59,80,84,85,86,87,88,89],He={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mermaidDoc:4,statements:5,graphConfig:6,CLASS_DIAGRAM:7,NEWLINE:8,EOF:9,statement:10,classLabel:11,SQS:12,STR:13,SQE:14,namespaceName:15,alphaNumToken:16,DOT:17,className:18,classLiteralName:19,GENERICTYPE:20,relationStatement:21,LABEL:22,namespaceStatement:23,classStatement:24,memberStatement:25,annotationStatement:26,clickStatement:27,styleStatement:28,cssClassStatement:29,noteStatement:30,classDefStatement:31,direction:32,acc_title:33,acc_title_value:34,acc_descr:35,acc_descr_value:36,acc_descr_multiline_value:37,namespaceIdentifier:38,STRUCT_START:39,classStatements:40,STRUCT_STOP:41,NAMESPACE:42,classIdentifier:43,STYLE_SEPARATOR:44,members:45,CLASS:46,ANNOTATION_START:47,ANNOTATION_END:48,MEMBER:49,SEPARATOR:50,relation:51,NOTE_FOR:52,noteText:53,NOTE:54,CLASSDEF:55,classList:56,stylesOpt:57,ALPHA:58,COMMA:59,direction_tb:60,direction_bt:61,direction_rl:62,direction_lr:63,relationType:64,lineType:65,AGGREGATION:66,EXTENSION:67,COMPOSITION:68,DEPENDENCY:69,LOLLIPOP:70,LINE:71,DOTTED_LINE:72,CALLBACK:73,LINK:74,LINK_TARGET:75,CLICK:76,CALLBACK_NAME:77,CALLBACK_ARGS:78,HREF:79,STYLE:80,CSSCLASS:81,style:82,styleComponent:83,NUM:84,COLON:85,UNIT:86,SPACE:87,BRKT:88,PCT:89,commentToken:90,textToken:91,graphCodeTokens:92,textNoTagsToken:93,TAGSTART:94,TAGEND:95,"==":96,"--":97,DEFAULT:98,MINUS:99,keywords:100,UNICODE_TEXT:101,BQUOTE_STR:102,$accept:0,$end:1},terminals_:{2:"error",7:"CLASS_DIAGRAM",8:"NEWLINE",9:"EOF",12:"SQS",13:"STR",14:"SQE",17:"DOT",20:"GENERICTYPE",22:"LABEL",33:"acc_title",34:"acc_title_value",35:"acc_descr",36:"acc_descr_value",37:"acc_descr_multiline_value",39:"STRUCT_START",41:"STRUCT_STOP",42:"NAMESPACE",44:"STYLE_SEPARATOR",46:"CLASS",47:"ANNOTATION_START",48:"ANNOTATION_END",49:"MEMBER",50:"SEPARATOR",52:"NOTE_FOR",54:"NOTE",55:"CLASSDEF",58:"ALPHA",59:"COMMA",60:"direction_tb",61:"direction_bt",62:"direction_rl",63:"direction_lr",66:"AGGREGATION",67:"EXTENSION",68:"COMPOSITION",69:"DEPENDENCY",70:"LOLLIPOP",71:"LINE",72:"DOTTED_LINE",73:"CALLBACK",74:"LINK",75:"LINK_TARGET",76:"CLICK",77:"CALLBACK_NAME",78:"CALLBACK_ARGS",79:"HREF",80:"STYLE",81:"CSSCLASS",84:"NUM",85:"COLON",86:"UNIT",87:"SPACE",88:"BRKT",89:"PCT",92:"graphCodeTokens",94:"TAGSTART",95:"TAGEND",96:"==",97:"--",98:"DEFAULT",99:"MINUS",100:"keywords",101:"UNICODE_TEXT",102:"BQUOTE_STR"},productions_:[0,[3,1],[3,1],[4,1],[6,4],[5,1],[5,2],[5,3],[11,3],[15,1],[15,3],[15,2],[18,1],[18,3],[18,1],[18,2],[18,2],[18,2],[10,1],[10,2],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,2],[10,2],[10,1],[23,4],[23,5],[38,2],[40,1],[40,2],[40,3],[24,1],[24,3],[24,4],[24,6],[43,2],[43,3],[26,4],[45,1],[45,2],[25,1],[25,2],[25,1],[25,1],[21,3],[21,4],[21,4],[21,5],[30,3],[30,2],[31,3],[56,1],[56,3],[32,1],[32,1],[32,1],[32,1],[51,3],[51,2],[51,2],[51,1],[64,1],[64,1],[64,1],[64,1],[64,1],[65,1],[65,1],[27,3],[27,4],[27,3],[27,4],[27,4],[27,5],[27,3],[27,4],[27,4],[27,5],[27,4],[27,5],[27,5],[27,6],[28,3],[29,3],[57,1],[57,3],[82,1],[82,2],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[90,1],[90,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[93,1],[93,1],[93,1],[93,1],[16,1],[16,1],[16,1],[16,1],[19,1],[53,1]],performAction:o(function(be,W,de,re,oe,V,xe){var q=V.length-1;switch(oe){case 8:this.$=V[q-1];break;case 9:case 12:case 14:this.$=V[q];break;case 10:case 13:this.$=V[q-2]+"."+V[q];break;case 11:case 15:this.$=V[q-1]+V[q];break;case 16:case 17:this.$=V[q-1]+"~"+V[q]+"~";break;case 18:re.addRelation(V[q]);break;case 19:V[q-1].title=re.cleanupLabel(V[q]),re.addRelation(V[q-1]);break;case 30:this.$=V[q].trim(),re.setAccTitle(this.$);break;case 31:case 32:this.$=V[q].trim(),re.setAccDescription(this.$);break;case 33:re.addClassesToNamespace(V[q-3],V[q-1]);break;case 34:re.addClassesToNamespace(V[q-4],V[q-1]);break;case 35:this.$=V[q],re.addNamespace(V[q]);break;case 36:this.$=[V[q]];break;case 37:this.$=[V[q-1]];break;case 38:V[q].unshift(V[q-2]),this.$=V[q];break;case 40:re.setCssClass(V[q-2],V[q]);break;case 41:re.addMembers(V[q-3],V[q-1]);break;case 42:re.setCssClass(V[q-5],V[q-3]),re.addMembers(V[q-5],V[q-1]);break;case 43:this.$=V[q],re.addClass(V[q]);break;case 44:this.$=V[q-1],re.addClass(V[q-1]),re.setClassLabel(V[q-1],V[q]);break;case 45:re.addAnnotation(V[q],V[q-2]);break;case 46:case 59:this.$=[V[q]];break;case 47:V[q].push(V[q-1]),this.$=V[q];break;case 48:break;case 49:re.addMember(V[q-1],re.cleanupLabel(V[q]));break;case 50:break;case 51:break;case 52:this.$={id1:V[q-2],id2:V[q],relation:V[q-1],relationTitle1:"none",relationTitle2:"none"};break;case 53:this.$={id1:V[q-3],id2:V[q],relation:V[q-1],relationTitle1:V[q-2],relationTitle2:"none"};break;case 54:this.$={id1:V[q-3],id2:V[q],relation:V[q-2],relationTitle1:"none",relationTitle2:V[q-1]};break;case 55:this.$={id1:V[q-4],id2:V[q],relation:V[q-2],relationTitle1:V[q-3],relationTitle2:V[q-1]};break;case 56:re.addNote(V[q],V[q-1]);break;case 57:re.addNote(V[q]);break;case 58:this.$=V[q-2],re.defineClass(V[q-1],V[q]);break;case 60:this.$=V[q-2].concat([V[q]]);break;case 61:re.setDirection("TB");break;case 62:re.setDirection("BT");break;case 63:re.setDirection("RL");break;case 64:re.setDirection("LR");break;case 65:this.$={type1:V[q-2],type2:V[q],lineType:V[q-1]};break;case 66:this.$={type1:"none",type2:V[q],lineType:V[q-1]};break;case 67:this.$={type1:V[q-1],type2:"none",lineType:V[q]};break;case 68:this.$={type1:"none",type2:"none",lineType:V[q]};break;case 69:this.$=re.relationType.AGGREGATION;break;case 70:this.$=re.relationType.EXTENSION;break;case 71:this.$=re.relationType.COMPOSITION;break;case 72:this.$=re.relationType.DEPENDENCY;break;case 73:this.$=re.relationType.LOLLIPOP;break;case 74:this.$=re.lineType.LINE;break;case 75:this.$=re.lineType.DOTTED_LINE;break;case 76:case 82:this.$=V[q-2],re.setClickEvent(V[q-1],V[q]);break;case 77:case 83:this.$=V[q-3],re.setClickEvent(V[q-2],V[q-1]),re.setTooltip(V[q-2],V[q]);break;case 78:this.$=V[q-2],re.setLink(V[q-1],V[q]);break;case 79:this.$=V[q-3],re.setLink(V[q-2],V[q-1],V[q]);break;case 80:this.$=V[q-3],re.setLink(V[q-2],V[q-1]),re.setTooltip(V[q-2],V[q]);break;case 81:this.$=V[q-4],re.setLink(V[q-3],V[q-2],V[q]),re.setTooltip(V[q-3],V[q-1]);break;case 84:this.$=V[q-3],re.setClickEvent(V[q-2],V[q-1],V[q]);break;case 85:this.$=V[q-4],re.setClickEvent(V[q-3],V[q-2],V[q-1]),re.setTooltip(V[q-3],V[q]);break;case 86:this.$=V[q-3],re.setLink(V[q-2],V[q]);break;case 87:this.$=V[q-4],re.setLink(V[q-3],V[q-1],V[q]);break;case 88:this.$=V[q-4],re.setLink(V[q-3],V[q-1]),re.setTooltip(V[q-3],V[q]);break;case 89:this.$=V[q-5],re.setLink(V[q-4],V[q-2],V[q]),re.setTooltip(V[q-4],V[q-1]);break;case 90:this.$=V[q-2],re.setCssStyle(V[q-1],V[q]);break;case 91:re.setCssClass(V[q-1],V[q]);break;case 92:this.$=[V[q]];break;case 93:V[q-2].push(V[q]),this.$=V[q-2];break;case 95:this.$=V[q-1]+V[q];break}},"anonymous"),table:[{3:1,4:2,5:3,6:4,7:[1,6],10:5,16:39,18:21,19:40,21:7,23:8,24:9,25:10,26:11,27:12,28:13,29:14,30:15,31:16,32:17,33:e,35:r,37:n,38:22,42:i,43:23,46:a,47:s,49:l,50:u,52:h,54:f,55:d,58:p,60:m,61:g,62:y,63:v,73:x,74:b,76:w,80:C,81:T,84:E,99:A,101:S,102:_},{1:[3]},{1:[2,1]},{1:[2,2]},{1:[2,3]},t(I,[2,5],{8:[1,48]}),{8:[1,49]},t(D,[2,18],{22:[1,50]}),t(D,[2,20]),t(D,[2,21]),t(D,[2,22]),t(D,[2,23]),t(D,[2,24]),t(D,[2,25]),t(D,[2,26]),t(D,[2,27]),t(D,[2,28]),t(D,[2,29]),{34:[1,51]},{36:[1,52]},t(D,[2,32]),t(D,[2,48],{51:53,64:56,65:57,13:[1,54],22:[1,55],66:k,67:L,68:R,69:O,70:M,71:B,72:F}),{39:[1,65]},t(P,[2,39],{39:[1,67],44:[1,66]}),t(D,[2,50]),t(D,[2,51]),{16:68,58:p,84:E,99:A,101:S},{16:39,18:69,19:40,58:p,84:E,99:A,101:S,102:_},{16:39,18:70,19:40,58:p,84:E,99:A,101:S,102:_},{16:39,18:71,19:40,58:p,84:E,99:A,101:S,102:_},{58:[1,72]},{13:[1,73]},{16:39,18:74,19:40,58:p,84:E,99:A,101:S,102:_},{13:z,53:75},{56:77,58:[1,78]},t(D,[2,61]),t(D,[2,62]),t(D,[2,63]),t(D,[2,64]),t($,[2,12],{16:39,19:40,18:80,17:[1,79],20:[1,81],58:p,84:E,99:A,101:S,102:_}),t($,[2,14],{20:[1,82]}),{15:83,16:84,58:p,84:E,99:A,101:S},{16:39,18:85,19:40,58:p,84:E,99:A,101:S,102:_},t(H,[2,118]),t(H,[2,119]),t(H,[2,120]),t(H,[2,121]),t([1,8,9,12,13,20,22,39,41,44,66,67,68,69,70,71,72,77,79],[2,122]),t(I,[2,6],{10:5,21:7,23:8,24:9,25:10,26:11,27:12,28:13,29:14,30:15,31:16,32:17,18:21,38:22,43:23,16:39,19:40,5:86,33:e,35:r,37:n,42:i,46:a,47:s,49:l,50:u,52:h,54:f,55:d,58:p,60:m,61:g,62:y,63:v,73:x,74:b,76:w,80:C,81:T,84:E,99:A,101:S,102:_}),{5:87,10:5,16:39,18:21,19:40,21:7,23:8,24:9,25:10,26:11,27:12,28:13,29:14,30:15,31:16,32:17,33:e,35:r,37:n,38:22,42:i,43:23,46:a,47:s,49:l,50:u,52:h,54:f,55:d,58:p,60:m,61:g,62:y,63:v,73:x,74:b,76:w,80:C,81:T,84:E,99:A,101:S,102:_},t(D,[2,19]),t(D,[2,30]),t(D,[2,31]),{13:[1,89],16:39,18:88,19:40,58:p,84:E,99:A,101:S,102:_},{51:90,64:56,65:57,66:k,67:L,68:R,69:O,70:M,71:B,72:F},t(D,[2,49]),{65:91,71:B,72:F},t(Q,[2,68],{64:92,66:k,67:L,68:R,69:O,70:M}),t(j,[2,69]),t(j,[2,70]),t(j,[2,71]),t(j,[2,72]),t(j,[2,73]),t(ie,[2,74]),t(ie,[2,75]),{8:[1,94],24:95,40:93,43:23,46:a},{16:96,58:p,84:E,99:A,101:S},{45:97,49:ne},{48:[1,99]},{13:[1,100]},{13:[1,101]},{77:[1,102],79:[1,103]},{22:le,57:104,58:he,80:K,82:105,83:106,84:X,85:te,86:J,87:se,88:ue,89:Z},{58:[1,116]},{13:z,53:117},t(D,[2,57]),t(D,[2,123]),{22:le,57:118,58:he,59:[1,119],80:K,82:105,83:106,84:X,85:te,86:J,87:se,88:ue,89:Z},t(Se,[2,59]),{16:39,18:120,19:40,58:p,84:E,99:A,101:S,102:_},t($,[2,15]),t($,[2,16]),t($,[2,17]),{39:[2,35]},{15:122,16:84,17:[1,121],39:[2,9],58:p,84:E,99:A,101:S},t(ce,[2,43],{11:123,12:[1,124]}),t(I,[2,7]),{9:[1,125]},t(ae,[2,52]),{16:39,18:126,19:40,58:p,84:E,99:A,101:S,102:_},{13:[1,128],16:39,18:127,19:40,58:p,84:E,99:A,101:S,102:_},t(Q,[2,67],{64:129,66:k,67:L,68:R,69:O,70:M}),t(Q,[2,66]),{41:[1,130]},{24:95,40:131,43:23,46:a},{8:[1,132],41:[2,36]},t(P,[2,40],{39:[1,133]}),{41:[1,134]},{41:[2,46],45:135,49:ne},{16:39,18:136,19:40,58:p,84:E,99:A,101:S,102:_},t(D,[2,76],{13:[1,137]}),t(D,[2,78],{13:[1,139],75:[1,138]}),t(D,[2,82],{13:[1,140],78:[1,141]}),{13:[1,142]},t(D,[2,90],{59:Oe}),t(ge,[2,92],{83:144,22:le,58:he,80:K,84:X,85:te,86:J,87:se,88:ue,89:Z}),t(ze,[2,94]),t(ze,[2,96]),t(ze,[2,97]),t(ze,[2,98]),t(ze,[2,99]),t(ze,[2,100]),t(ze,[2,101]),t(ze,[2,102]),t(ze,[2,103]),t(ze,[2,104]),t(D,[2,91]),t(D,[2,56]),t(D,[2,58],{59:Oe}),{58:[1,145]},t($,[2,13]),{15:146,16:84,58:p,84:E,99:A,101:S},{39:[2,11]},t(ce,[2,44]),{13:[1,147]},{1:[2,4]},t(ae,[2,54]),t(ae,[2,53]),{16:39,18:148,19:40,58:p,84:E,99:A,101:S,102:_},t(Q,[2,65]),t(D,[2,33]),{41:[1,149]},{24:95,40:150,41:[2,37],43:23,46:a},{45:151,49:ne},t(P,[2,41]),{41:[2,47]},t(D,[2,45]),t(D,[2,77]),t(D,[2,79]),t(D,[2,80],{75:[1,152]}),t(D,[2,83]),t(D,[2,84],{13:[1,153]}),t(D,[2,86],{13:[1,155],75:[1,154]}),{22:le,58:he,80:K,82:156,83:106,84:X,85:te,86:J,87:se,88:ue,89:Z},t(ze,[2,95]),t(Se,[2,60]),{39:[2,10]},{14:[1,157]},t(ae,[2,55]),t(D,[2,34]),{41:[2,38]},{41:[1,158]},t(D,[2,81]),t(D,[2,85]),t(D,[2,87]),t(D,[2,88],{75:[1,159]}),t(ge,[2,93],{83:144,22:le,58:he,80:K,84:X,85:te,86:J,87:se,88:ue,89:Z}),t(ce,[2,8]),t(P,[2,42]),t(D,[2,89])],defaultActions:{2:[2,1],3:[2,2],4:[2,3],83:[2,35],122:[2,11],125:[2,4],135:[2,47],146:[2,10],150:[2,38]},parseError:o(function(be,W){if(W.recoverable)this.trace(be);else{var de=new Error(be);throw de.hash=W,de}},"parseError"),parse:o(function(be){var W=this,de=[0],re=[],oe=[null],V=[],xe=this.table,q="",pe=0,ve=0,Pe=0,_e=2,we=1,Ve=V.slice.call(arguments,1),De=Object.create(this.lexer),qe={yy:{}};for(var at in this.yy)Object.prototype.hasOwnProperty.call(this.yy,at)&&(qe.yy[at]=this.yy[at]);De.setInput(be,qe.yy),qe.yy.lexer=De,qe.yy.parser=this,typeof De.yylloc>"u"&&(De.yylloc={});var Rt=De.yylloc;V.push(Rt);var st=De.options&&De.options.ranges;typeof qe.yy.parseError=="function"?this.parseError=qe.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Ue(Tt){de.length=de.length-2*Tt,oe.length=oe.length-Tt,V.length=V.length-Tt}o(Ue,"popStack");function ct(){var Tt;return Tt=re.pop()||De.lex()||we,typeof Tt!="number"&&(Tt instanceof Array&&(re=Tt,Tt=re.pop()),Tt=W.symbols_[Tt]||Tt),Tt}o(ct,"lex");for(var We,ot,Yt,bt,Mt,xt,ut={},Et,ft,yt,nt;;){if(Yt=de[de.length-1],this.defaultActions[Yt]?bt=this.defaultActions[Yt]:((We===null||typeof We>"u")&&(We=ct()),bt=xe[Yt]&&xe[Yt][We]),typeof bt>"u"||!bt.length||!bt[0]){var dn="";nt=[];for(Et in xe[Yt])this.terminals_[Et]&&Et>_e&&nt.push("'"+this.terminals_[Et]+"'");De.showPosition?dn="Parse error on line "+(pe+1)+`: +`+De.showPosition()+` +Expecting `+nt.join(", ")+", got '"+(this.terminals_[We]||We)+"'":dn="Parse error on line "+(pe+1)+": Unexpected "+(We==we?"end of input":"'"+(this.terminals_[We]||We)+"'"),this.parseError(dn,{text:De.match,token:this.terminals_[We]||We,line:De.yylineno,loc:Rt,expected:nt})}if(bt[0]instanceof Array&&bt.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Yt+", token: "+We);switch(bt[0]){case 1:de.push(We),oe.push(De.yytext),V.push(De.yylloc),de.push(bt[1]),We=null,ot?(We=ot,ot=null):(ve=De.yyleng,q=De.yytext,pe=De.yylineno,Rt=De.yylloc,Pe>0&&Pe--);break;case 2:if(ft=this.productions_[bt[1]][1],ut.$=oe[oe.length-ft],ut._$={first_line:V[V.length-(ft||1)].first_line,last_line:V[V.length-1].last_line,first_column:V[V.length-(ft||1)].first_column,last_column:V[V.length-1].last_column},st&&(ut._$.range=[V[V.length-(ft||1)].range[0],V[V.length-1].range[1]]),xt=this.performAction.apply(ut,[q,ve,pe,qe.yy,bt[1],oe,V].concat(Ve)),typeof xt<"u")return xt;ft&&(de=de.slice(0,-1*ft*2),oe=oe.slice(0,-1*ft),V=V.slice(0,-1*ft)),de.push(this.productions_[bt[1]][0]),oe.push(ut.$),V.push(ut._$),yt=xe[de[de.length-2]][de[de.length-1]],de.push(yt);break;case 3:return!0}}return!0},"parse")},$e=function(){var Ie={EOF:1,parseError:o(function(W,de){if(this.yy.parser)this.yy.parser.parseError(W,de);else throw new Error(W)},"parseError"),setInput:o(function(be,W){return this.yy=W||this.yy||{},this._input=be,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var be=this._input[0];this.yytext+=be,this.yyleng++,this.offset++,this.match+=be,this.matched+=be;var W=be.match(/(?:\r\n?|\n).*/g);return W?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),be},"input"),unput:o(function(be){var W=be.length,de=be.split(/(?:\r\n?|\n)/g);this._input=be+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-W),this.offset-=W;var re=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),de.length-1&&(this.yylineno-=de.length-1);var oe=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:de?(de.length===re.length?this.yylloc.first_column:0)+re[re.length-de.length].length-de[0].length:this.yylloc.first_column-W},this.options.ranges&&(this.yylloc.range=[oe[0],oe[0]+this.yyleng-W]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(be){this.unput(this.match.slice(be))},"less"),pastInput:o(function(){var be=this.matched.substr(0,this.matched.length-this.match.length);return(be.length>20?"...":"")+be.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var be=this.match;return be.length<20&&(be+=this._input.substr(0,20-be.length)),(be.substr(0,20)+(be.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var be=this.pastInput(),W=new Array(be.length+1).join("-");return be+this.upcomingInput()+` +`+W+"^"},"showPosition"),test_match:o(function(be,W){var de,re,oe;if(this.options.backtrack_lexer&&(oe={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(oe.yylloc.range=this.yylloc.range.slice(0))),re=be[0].match(/(?:\r\n?|\n).*/g),re&&(this.yylineno+=re.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:re?re[re.length-1].length-re[re.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+be[0].length},this.yytext+=be[0],this.match+=be[0],this.matches=be,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(be[0].length),this.matched+=be[0],de=this.performAction.call(this,this.yy,this,W,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),de)return de;if(this._backtrack){for(var V in oe)this[V]=oe[V];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var be,W,de,re;this._more||(this.yytext="",this.match="");for(var oe=this._currentRules(),V=0;VW[0].length)){if(W=de,re=V,this.options.backtrack_lexer){if(be=this.test_match(de,oe[V]),be!==!1)return be;if(this._backtrack){W=!1;continue}else return!1}else if(!this.options.flex)break}return W?(be=this.test_match(W,oe[re]),be!==!1?be:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var W=this.next();return W||this.lex()},"lex"),begin:o(function(W){this.conditionStack.push(W)},"begin"),popState:o(function(){var W=this.conditionStack.length-1;return W>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(W){return W=this.conditionStack.length-1-Math.abs(W||0),W>=0?this.conditionStack[W]:"INITIAL"},"topState"),pushState:o(function(W){this.begin(W)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:o(function(W,de,re,oe){var V=oe;switch(re){case 0:return 60;case 1:return 61;case 2:return 62;case 3:return 63;case 4:break;case 5:break;case 6:return this.begin("acc_title"),33;break;case 7:return this.popState(),"acc_title_value";break;case 8:return this.begin("acc_descr"),35;break;case 9:return this.popState(),"acc_descr_value";break;case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:return 8;case 14:break;case 15:return 7;case 16:return 7;case 17:return"EDGE_STATE";case 18:this.begin("callback_name");break;case 19:this.popState();break;case 20:this.popState(),this.begin("callback_args");break;case 21:return 77;case 22:this.popState();break;case 23:return 78;case 24:this.popState();break;case 25:return"STR";case 26:this.begin("string");break;case 27:return 80;case 28:return 55;case 29:return this.begin("namespace"),42;break;case 30:return this.popState(),8;break;case 31:break;case 32:return this.begin("namespace-body"),39;break;case 33:return this.popState(),41;break;case 34:return"EOF_IN_STRUCT";case 35:return 8;case 36:break;case 37:return"EDGE_STATE";case 38:return this.begin("class"),46;break;case 39:return this.popState(),8;break;case 40:break;case 41:return this.popState(),this.popState(),41;break;case 42:return this.begin("class-body"),39;break;case 43:return this.popState(),41;break;case 44:return"EOF_IN_STRUCT";case 45:return"EDGE_STATE";case 46:return"OPEN_IN_STRUCT";case 47:break;case 48:return"MEMBER";case 49:return 81;case 50:return 73;case 51:return 74;case 52:return 76;case 53:return 52;case 54:return 54;case 55:return 47;case 56:return 48;case 57:return 79;case 58:this.popState();break;case 59:return"GENERICTYPE";case 60:this.begin("generic");break;case 61:this.popState();break;case 62:return"BQUOTE_STR";case 63:this.begin("bqstring");break;case 64:return 75;case 65:return 75;case 66:return 75;case 67:return 75;case 68:return 67;case 69:return 67;case 70:return 69;case 71:return 69;case 72:return 68;case 73:return 66;case 74:return 70;case 75:return 71;case 76:return 72;case 77:return 22;case 78:return 44;case 79:return 99;case 80:return 17;case 81:return"PLUS";case 82:return 85;case 83:return 59;case 84:return 88;case 85:return 88;case 86:return 89;case 87:return"EQUALS";case 88:return"EQUALS";case 89:return 58;case 90:return 12;case 91:return 14;case 92:return"PUNCTUATION";case 93:return 84;case 94:return 101;case 95:return 87;case 96:return 87;case 97:return 9}},"anonymous"),rules:[/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,/^(?:%%[^\n]*(\r?\n)*)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:classDiagram-v2\b)/,/^(?:classDiagram\b)/,/^(?:\[\*\])/,/^(?:call[\s]+)/,/^(?:\([\s]*\))/,/^(?:\()/,/^(?:[^(]*)/,/^(?:\))/,/^(?:[^)]*)/,/^(?:["])/,/^(?:[^"]*)/,/^(?:["])/,/^(?:style\b)/,/^(?:classDef\b)/,/^(?:namespace\b)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:[{])/,/^(?:[}])/,/^(?:$)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:\[\*\])/,/^(?:class\b)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:[}])/,/^(?:[{])/,/^(?:[}])/,/^(?:$)/,/^(?:\[\*\])/,/^(?:[{])/,/^(?:[\n])/,/^(?:[^{}\n]*)/,/^(?:cssClass\b)/,/^(?:callback\b)/,/^(?:link\b)/,/^(?:click\b)/,/^(?:note for\b)/,/^(?:note\b)/,/^(?:<<)/,/^(?:>>)/,/^(?:href\b)/,/^(?:[~])/,/^(?:[^~]*)/,/^(?:~)/,/^(?:[`])/,/^(?:[^`]+)/,/^(?:[`])/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:\s*<\|)/,/^(?:\s*\|>)/,/^(?:\s*>)/,/^(?:\s*<)/,/^(?:\s*\*)/,/^(?:\s*o\b)/,/^(?:\s*\(\))/,/^(?:--)/,/^(?:\.\.)/,/^(?::{1}[^:\n;]+)/,/^(?::{3})/,/^(?:-)/,/^(?:\.)/,/^(?:\+)/,/^(?::)/,/^(?:,)/,/^(?:#)/,/^(?:#)/,/^(?:%)/,/^(?:=)/,/^(?:=)/,/^(?:\w+)/,/^(?:\[)/,/^(?:\])/,/^(?:[!"#$%&'*+,-.`?\\/])/,/^(?:[0-9]+)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\s)/,/^(?:\s)/,/^(?:$)/],conditions:{"namespace-body":{rules:[26,33,34,35,36,37,38,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},namespace:{rules:[26,29,30,31,32,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},"class-body":{rules:[26,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},class:{rules:[26,39,40,41,42,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},acc_descr_multiline:{rules:[11,12,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},acc_descr:{rules:[9,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},acc_title:{rules:[7,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},callback_args:{rules:[22,23,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},callback_name:{rules:[19,20,21,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},href:{rules:[26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},struct:{rules:[26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},generic:{rules:[26,49,50,51,52,53,54,55,56,57,58,59,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},bqstring:{rules:[26,49,50,51,52,53,54,55,56,57,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},string:{rules:[24,25,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,8,10,13,14,15,16,17,18,26,27,28,29,38,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97],inclusive:!0}}};return Ie}();He.lexer=$e;function Re(){this.yy={}}return o(Re,"Parser"),Re.prototype=He,He.Parser=Re,new Re}();MO.parser=MO;L6=MO});var Dfe,kb,Lfe=N(()=>{"use strict";zt();gr();Dfe=["#","+","~","-",""],kb=class{static{o(this,"ClassMember")}constructor(e,r){this.memberType=r,this.visibility="",this.classifier="",this.text="";let n=Tr(e,me());this.parseMember(n)}getDisplayDetails(){let e=this.visibility+ec(this.id);this.memberType==="method"&&(e+=`(${ec(this.parameters.trim())})`,this.returnType&&(e+=" : "+ec(this.returnType))),e=e.trim();let r=this.parseClassifier();return{displayText:e,cssStyle:r}}parseMember(e){let r="";if(this.memberType==="method"){let a=/([#+~-])?(.+)\((.*)\)([\s$*])?(.*)([$*])?/.exec(e);if(a){let s=a[1]?a[1].trim():"";if(Dfe.includes(s)&&(this.visibility=s),this.id=a[2],this.parameters=a[3]?a[3].trim():"",r=a[4]?a[4].trim():"",this.returnType=a[5]?a[5].trim():"",r===""){let l=this.returnType.substring(this.returnType.length-1);/[$*]/.exec(l)&&(r=l,this.returnType=this.returnType.substring(0,this.returnType.length-1))}}}else{let i=e.length,a=e.substring(0,1),s=e.substring(i-1);Dfe.includes(a)&&(this.visibility=a),/[$*]/.exec(s)&&(r=s),this.id=e.substring(this.visibility===""?0:1,r===""?i:i-1)}this.classifier=r,this.id=this.id.startsWith(" ")?" "+this.id.trim():this.id.trim();let n=`${this.visibility?"\\"+this.visibility:""}${ec(this.id)}${this.memberType==="method"?`(${ec(this.parameters)})${this.returnType?" : "+ec(this.returnType):""}`:""}`;this.text=n.replaceAll("<","<").replaceAll(">",">"),this.text.startsWith("\\<")&&(this.text=this.text.replace("\\<","~"))}parseClassifier(){switch(this.classifier){case"*":return"font-style:italic;";case"$":return"text-decoration:underline;";default:return""}}}});var R6,Rfe,Lp,D1,OO=N(()=>{"use strict";dr();vt();zt();gr();ir();mi();Lfe();R6="classId-",Rfe=0,Lp=o(t=>Ze.sanitizeText(t,me()),"sanitizeText"),D1=class{constructor(){this.relations=[];this.classes=new Map;this.styleClasses=new Map;this.notes=[];this.interfaces=[];this.namespaces=new Map;this.namespaceCounter=0;this.functions=[];this.lineType={LINE:0,DOTTED_LINE:1};this.relationType={AGGREGATION:0,EXTENSION:1,COMPOSITION:2,DEPENDENCY:3,LOLLIPOP:4};this.setupToolTips=o(e=>{let r=Ge(".mermaidTooltip");(r._groups||r)[0][0]===null&&(r=Ge("body").append("div").attr("class","mermaidTooltip").style("opacity",0)),Ge(e).select("svg").selectAll("g.node").on("mouseover",a=>{let s=Ge(a.currentTarget);if(s.attr("title")===null)return;let u=this.getBoundingClientRect();r.transition().duration(200).style("opacity",".9"),r.text(s.attr("title")).style("left",window.scrollX+u.left+(u.right-u.left)/2+"px").style("top",window.scrollY+u.top-14+document.body.scrollTop+"px"),r.html(r.html().replace(/<br\/>/g,"
    ")),s.classed("hover",!0)}).on("mouseout",a=>{r.transition().duration(500).style("opacity",0),Ge(a.currentTarget).classed("hover",!1)})},"setupToolTips");this.direction="TB";this.setAccTitle=Lr;this.getAccTitle=Rr;this.setAccDescription=Nr;this.getAccDescription=Mr;this.setDiagramTitle=$r;this.getDiagramTitle=Ir;this.getConfig=o(()=>me().class,"getConfig");this.functions.push(this.setupToolTips.bind(this)),this.clear(),this.addRelation=this.addRelation.bind(this),this.addClassesToNamespace=this.addClassesToNamespace.bind(this),this.addNamespace=this.addNamespace.bind(this),this.setCssClass=this.setCssClass.bind(this),this.addMembers=this.addMembers.bind(this),this.addClass=this.addClass.bind(this),this.setClassLabel=this.setClassLabel.bind(this),this.addAnnotation=this.addAnnotation.bind(this),this.addMember=this.addMember.bind(this),this.cleanupLabel=this.cleanupLabel.bind(this),this.addNote=this.addNote.bind(this),this.defineClass=this.defineClass.bind(this),this.setDirection=this.setDirection.bind(this),this.setLink=this.setLink.bind(this),this.bindFunctions=this.bindFunctions.bind(this),this.clear=this.clear.bind(this),this.setTooltip=this.setTooltip.bind(this),this.setClickEvent=this.setClickEvent.bind(this),this.setCssStyle=this.setCssStyle.bind(this)}static{o(this,"ClassDB")}splitClassNameAndType(e){let r=Ze.sanitizeText(e,me()),n="",i=r;if(r.indexOf("~")>0){let a=r.split("~");i=Lp(a[0]),n=Lp(a[1])}return{className:i,type:n}}setClassLabel(e,r){let n=Ze.sanitizeText(e,me());r&&(r=Lp(r));let{className:i}=this.splitClassNameAndType(n);this.classes.get(i).label=r,this.classes.get(i).text=`${r}${this.classes.get(i).type?`<${this.classes.get(i).type}>`:""}`}addClass(e){let r=Ze.sanitizeText(e,me()),{className:n,type:i}=this.splitClassNameAndType(r);if(this.classes.has(n))return;let a=Ze.sanitizeText(n,me());this.classes.set(a,{id:a,type:i,label:a,text:`${a}${i?`<${i}>`:""}`,shape:"classBox",cssClasses:"default",methods:[],members:[],annotations:[],styles:[],domId:R6+a+"-"+Rfe}),Rfe++}addInterface(e,r){let n={id:`interface${this.interfaces.length}`,label:e,classId:r};this.interfaces.push(n)}lookUpDomId(e){let r=Ze.sanitizeText(e,me());if(this.classes.has(r))return this.classes.get(r).domId;throw new Error("Class not found: "+r)}clear(){this.relations=[],this.classes=new Map,this.notes=[],this.interfaces=[],this.functions=[],this.functions.push(this.setupToolTips.bind(this)),this.namespaces=new Map,this.namespaceCounter=0,this.direction="TB",Ar()}getClass(e){return this.classes.get(e)}getClasses(){return this.classes}getRelations(){return this.relations}getNotes(){return this.notes}addRelation(e){Y.debug("Adding relation: "+JSON.stringify(e));let r=[this.relationType.LOLLIPOP,this.relationType.AGGREGATION,this.relationType.COMPOSITION,this.relationType.DEPENDENCY,this.relationType.EXTENSION];e.relation.type1===this.relationType.LOLLIPOP&&!r.includes(e.relation.type2)?(this.addClass(e.id2),this.addInterface(e.id1,e.id2),e.id1=`interface${this.interfaces.length-1}`):e.relation.type2===this.relationType.LOLLIPOP&&!r.includes(e.relation.type1)?(this.addClass(e.id1),this.addInterface(e.id2,e.id1),e.id2=`interface${this.interfaces.length-1}`):(this.addClass(e.id1),this.addClass(e.id2)),e.id1=this.splitClassNameAndType(e.id1).className,e.id2=this.splitClassNameAndType(e.id2).className,e.relationTitle1=Ze.sanitizeText(e.relationTitle1.trim(),me()),e.relationTitle2=Ze.sanitizeText(e.relationTitle2.trim(),me()),this.relations.push(e)}addAnnotation(e,r){let n=this.splitClassNameAndType(e).className;this.classes.get(n).annotations.push(r)}addMember(e,r){this.addClass(e);let n=this.splitClassNameAndType(e).className,i=this.classes.get(n);if(typeof r=="string"){let a=r.trim();a.startsWith("<<")&&a.endsWith(">>")?i.annotations.push(Lp(a.substring(2,a.length-2))):a.indexOf(")")>0?i.methods.push(new kb(a,"method")):a&&i.members.push(new kb(a,"attribute"))}}addMembers(e,r){Array.isArray(r)&&(r.reverse(),r.forEach(n=>this.addMember(e,n)))}addNote(e,r){let n={id:`note${this.notes.length}`,class:r,text:e};this.notes.push(n)}cleanupLabel(e){return e.startsWith(":")&&(e=e.substring(1)),Lp(e.trim())}setCssClass(e,r){e.split(",").forEach(n=>{let i=n;/\d/.exec(n[0])&&(i=R6+i);let a=this.classes.get(i);a&&(a.cssClasses+=" "+r)})}defineClass(e,r){for(let n of e){let i=this.styleClasses.get(n);i===void 0&&(i={id:n,styles:[],textStyles:[]},this.styleClasses.set(n,i)),r&&r.forEach(a=>{if(/color/.exec(a)){let s=a.replace("fill","bgFill");i.textStyles.push(s)}i.styles.push(a)}),this.classes.forEach(a=>{a.cssClasses.includes(n)&&a.styles.push(...r.flatMap(s=>s.split(",")))})}}setTooltip(e,r){e.split(",").forEach(n=>{r!==void 0&&(this.classes.get(n).tooltip=Lp(r))})}getTooltip(e,r){return r&&this.namespaces.has(r)?this.namespaces.get(r).classes.get(e).tooltip:this.classes.get(e).tooltip}setLink(e,r,n){let i=me();e.split(",").forEach(a=>{let s=a;/\d/.exec(a[0])&&(s=R6+s);let l=this.classes.get(s);l&&(l.link=Gt.formatUrl(r,i),i.securityLevel==="sandbox"?l.linkTarget="_top":typeof n=="string"?l.linkTarget=Lp(n):l.linkTarget="_blank")}),this.setCssClass(e,"clickable")}setClickEvent(e,r,n){e.split(",").forEach(i=>{this.setClickFunc(i,r,n),this.classes.get(i).haveCallback=!0}),this.setCssClass(e,"clickable")}setClickFunc(e,r,n){let i=Ze.sanitizeText(e,me());if(me().securityLevel!=="loose"||r===void 0)return;let s=i;if(this.classes.has(s)){let l=this.lookUpDomId(s),u=[];if(typeof n=="string"){u=n.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let h=0;h{let h=document.querySelector(`[id="${l}"]`);h!==null&&h.addEventListener("click",()=>{Gt.runFunc(r,...u)},!1)})}}bindFunctions(e){this.functions.forEach(r=>{r(e)})}getDirection(){return this.direction}setDirection(e){this.direction=e}addNamespace(e){this.namespaces.has(e)||(this.namespaces.set(e,{id:e,classes:new Map,children:{},domId:R6+e+"-"+this.namespaceCounter}),this.namespaceCounter++)}getNamespace(e){return this.namespaces.get(e)}getNamespaces(){return this.namespaces}addClassesToNamespace(e,r){if(this.namespaces.has(e))for(let n of r){let{className:i}=this.splitClassNameAndType(n);this.classes.get(i).parent=e,this.namespaces.get(e).classes.set(i,this.classes.get(i))}}setCssStyle(e,r){let n=this.classes.get(e);if(!(!r||!n))for(let i of r)i.includes(",")?n.styles.push(...i.split(",")):n.styles.push(i)}getArrowMarker(e){let r;switch(e){case 0:r="aggregation";break;case 1:r="extension";break;case 2:r="composition";break;case 3:r="dependency";break;case 4:r="lollipop";break;default:r="none"}return r}getData(){let e=[],r=[],n=me();for(let a of this.namespaces.keys()){let s=this.namespaces.get(a);if(s){let l={id:s.id,label:s.id,isGroup:!0,padding:n.class.padding??16,shape:"rect",cssStyles:["fill: none","stroke: black"],look:n.look};e.push(l)}}for(let a of this.classes.keys()){let s=this.classes.get(a);if(s){let l=s;l.parentId=s.parent,l.look=n.look,e.push(l)}}let i=0;for(let a of this.notes){i++;let s={id:a.id,label:a.text,isGroup:!1,shape:"note",padding:n.class.padding??6,cssStyles:["text-align: left","white-space: nowrap",`fill: ${n.themeVariables.noteBkgColor}`,`stroke: ${n.themeVariables.noteBorderColor}`],look:n.look};e.push(s);let l=this.classes.get(a.class)?.id??"";if(l){let u={id:`edgeNote${i}`,start:a.id,end:l,type:"normal",thickness:"normal",classes:"relation",arrowTypeStart:"none",arrowTypeEnd:"none",arrowheadStyle:"",labelStyle:[""],style:["fill: none"],pattern:"dotted",look:n.look};r.push(u)}}for(let a of this.interfaces){let s={id:a.id,label:a.label,isGroup:!1,shape:"rect",cssStyles:["opacity: 0;"],look:n.look};e.push(s)}i=0;for(let a of this.relations){i++;let s={id:$h(a.id1,a.id2,{prefix:"id",counter:i}),start:a.id1,end:a.id2,type:"normal",label:a.title,labelpos:"c",thickness:"normal",classes:"relation",arrowTypeStart:this.getArrowMarker(a.relation.type1),arrowTypeEnd:this.getArrowMarker(a.relation.type2),startLabelRight:a.relationTitle1==="none"?"":a.relationTitle1,endLabelLeft:a.relationTitle2==="none"?"":a.relationTitle2,arrowheadStyle:"",labelStyle:["display: inline-block"],style:a.style||"",pattern:a.relation.lineType==1?"dashed":"solid",look:n.look};r.push(s)}return{nodes:e,edges:r,other:{},config:n,direction:this.getDirection()}}}});var UVe,N6,PO=N(()=>{"use strict";UVe=o(t=>`g.classGroup text { + fill: ${t.nodeBorder||t.classText}; + stroke: none; + font-family: ${t.fontFamily}; + font-size: 10px; + + .title { + font-weight: bolder; + } + +} + +.nodeLabel, .edgeLabel { + color: ${t.classText}; +} +.edgeLabel .label rect { + fill: ${t.mainBkg}; +} +.label text { + fill: ${t.classText}; +} + +.labelBkg { + background: ${t.mainBkg}; +} +.edgeLabel .label span { + background: ${t.mainBkg}; +} + +.classTitle { + font-weight: bolder; +} +.node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${t.mainBkg}; + stroke: ${t.nodeBorder}; + stroke-width: 1px; + } + + +.divider { + stroke: ${t.nodeBorder}; + stroke-width: 1; +} + +g.clickable { + cursor: pointer; +} + +g.classGroup rect { + fill: ${t.mainBkg}; + stroke: ${t.nodeBorder}; +} + +g.classGroup line { + stroke: ${t.nodeBorder}; + stroke-width: 1; +} + +.classLabel .box { + stroke: none; + stroke-width: 0; + fill: ${t.mainBkg}; + opacity: 0.5; +} + +.classLabel .label { + fill: ${t.nodeBorder}; + font-size: 10px; +} + +.relation { + stroke: ${t.lineColor}; + stroke-width: 1; + fill: none; +} + +.dashed-line{ + stroke-dasharray: 3; +} + +.dotted-line{ + stroke-dasharray: 1 2; +} + +#compositionStart, .composition { + fill: ${t.lineColor} !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#compositionEnd, .composition { + fill: ${t.lineColor} !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#dependencyStart, .dependency { + fill: ${t.lineColor} !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#dependencyStart, .dependency { + fill: ${t.lineColor} !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#extensionStart, .extension { + fill: transparent !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#extensionEnd, .extension { + fill: transparent !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#aggregationStart, .aggregation { + fill: transparent !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#aggregationEnd, .aggregation { + fill: transparent !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#lollipopStart, .lollipop { + fill: ${t.mainBkg} !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +#lollipopEnd, .lollipop { + fill: ${t.mainBkg} !important; + stroke: ${t.lineColor} !important; + stroke-width: 1; +} + +.edgeTerminals { + font-size: 11px; + line-height: initial; +} + +.classTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${t.textColor}; +} +`,"getStyles"),N6=UVe});var HVe,WVe,qVe,M6,BO=N(()=>{"use strict";zt();vt();gm();Yd();$m();ir();HVe=o((t,e="TB")=>{if(!t.doc)return e;let r=e;for(let n of t.doc)n.stmt==="dir"&&(r=n.value);return r},"getDir"),WVe=o(function(t,e){return e.db.getClasses()},"getClasses"),qVe=o(async function(t,e,r,n){Y.info("REF0:"),Y.info("Drawing class diagram (v3)",e);let{securityLevel:i,state:a,layout:s}=me(),l=n.db.getData(),u=yc(e,i);l.type=n.type,l.layoutAlgorithm=nf(s),l.nodeSpacing=a?.nodeSpacing||50,l.rankSpacing=a?.rankSpacing||50,l.markers=["aggregation","extension","composition","dependency","lollipop"],l.diagramId=e,await Cc(l,u);let h=8;Gt.insertTitle(u,"classDiagramTitleText",a?.titleTopMargin??25,n.db.getDiagramTitle()),Ac(u,h,"classDiagram",a?.useMaxWidth??!0)},"draw"),M6={getClasses:WVe,draw:qVe,getDir:HVe}});var Nfe={};hr(Nfe,{diagram:()=>YVe});var YVe,Mfe=N(()=>{"use strict";IO();OO();PO();BO();YVe={parser:L6,get db(){return new D1},renderer:M6,styles:N6,init:o(t=>{t.class||(t.class={}),t.class.arrowMarkerAbsolute=t.arrowMarkerAbsolute},"init")}});var Pfe={};hr(Pfe,{diagram:()=>QVe});var QVe,Bfe=N(()=>{"use strict";IO();OO();PO();BO();QVe={parser:L6,get db(){return new D1},renderer:M6,styles:N6,init:o(t=>{t.class||(t.class={}),t.class.arrowMarkerAbsolute=t.arrowMarkerAbsolute},"init")}});var FO,I6,$O=N(()=>{"use strict";FO=function(){var t=o(function(F,P,z,$){for(z=z||{},$=F.length;$--;z[F[$]]=P);return z},"o"),e=[1,2],r=[1,3],n=[1,4],i=[2,4],a=[1,9],s=[1,11],l=[1,16],u=[1,17],h=[1,18],f=[1,19],d=[1,32],p=[1,20],m=[1,21],g=[1,22],y=[1,23],v=[1,24],x=[1,26],b=[1,27],w=[1,28],C=[1,29],T=[1,30],E=[1,31],A=[1,34],S=[1,35],_=[1,36],I=[1,37],D=[1,33],k=[1,4,5,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,42,45,48,49,50,51,54],L=[1,4,5,14,15,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,42,45,48,49,50,51,54],R=[4,5,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,42,45,48,49,50,51,54],O={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,SPACE:4,NL:5,SD:6,document:7,line:8,statement:9,classDefStatement:10,styleStatement:11,cssClassStatement:12,idStatement:13,DESCR:14,"-->":15,HIDE_EMPTY:16,scale:17,WIDTH:18,COMPOSIT_STATE:19,STRUCT_START:20,STRUCT_STOP:21,STATE_DESCR:22,AS:23,ID:24,FORK:25,JOIN:26,CHOICE:27,CONCURRENT:28,note:29,notePosition:30,NOTE_TEXT:31,direction:32,acc_title:33,acc_title_value:34,acc_descr:35,acc_descr_value:36,acc_descr_multiline_value:37,classDef:38,CLASSDEF_ID:39,CLASSDEF_STYLEOPTS:40,DEFAULT:41,style:42,STYLE_IDS:43,STYLEDEF_STYLEOPTS:44,class:45,CLASSENTITY_IDS:46,STYLECLASS:47,direction_tb:48,direction_bt:49,direction_rl:50,direction_lr:51,eol:52,";":53,EDGE_STATE:54,STYLE_SEPARATOR:55,left_of:56,right_of:57,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NL",6:"SD",14:"DESCR",15:"-->",16:"HIDE_EMPTY",17:"scale",18:"WIDTH",19:"COMPOSIT_STATE",20:"STRUCT_START",21:"STRUCT_STOP",22:"STATE_DESCR",23:"AS",24:"ID",25:"FORK",26:"JOIN",27:"CHOICE",28:"CONCURRENT",29:"note",31:"NOTE_TEXT",33:"acc_title",34:"acc_title_value",35:"acc_descr",36:"acc_descr_value",37:"acc_descr_multiline_value",38:"classDef",39:"CLASSDEF_ID",40:"CLASSDEF_STYLEOPTS",41:"DEFAULT",42:"style",43:"STYLE_IDS",44:"STYLEDEF_STYLEOPTS",45:"class",46:"CLASSENTITY_IDS",47:"STYLECLASS",48:"direction_tb",49:"direction_bt",50:"direction_rl",51:"direction_lr",53:";",54:"EDGE_STATE",55:"STYLE_SEPARATOR",56:"left_of",57:"right_of"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[8,1],[8,1],[9,1],[9,1],[9,1],[9,1],[9,2],[9,3],[9,4],[9,1],[9,2],[9,1],[9,4],[9,3],[9,6],[9,1],[9,1],[9,1],[9,1],[9,4],[9,4],[9,1],[9,2],[9,2],[9,1],[10,3],[10,3],[11,3],[12,3],[32,1],[32,1],[32,1],[32,1],[52,1],[52,1],[13,1],[13,1],[13,3],[13,3],[30,1],[30,1]],performAction:o(function(P,z,$,H,Q,j,ie){var ne=j.length-1;switch(Q){case 3:return H.setRootDoc(j[ne]),j[ne];break;case 4:this.$=[];break;case 5:j[ne]!="nl"&&(j[ne-1].push(j[ne]),this.$=j[ne-1]);break;case 6:case 7:this.$=j[ne];break;case 8:this.$="nl";break;case 12:this.$=j[ne];break;case 13:let X=j[ne-1];X.description=H.trimColon(j[ne]),this.$=X;break;case 14:this.$={stmt:"relation",state1:j[ne-2],state2:j[ne]};break;case 15:let te=H.trimColon(j[ne]);this.$={stmt:"relation",state1:j[ne-3],state2:j[ne-1],description:te};break;case 19:this.$={stmt:"state",id:j[ne-3],type:"default",description:"",doc:j[ne-1]};break;case 20:var le=j[ne],he=j[ne-2].trim();if(j[ne].match(":")){var K=j[ne].split(":");le=K[0],he=[he,K[1]]}this.$={stmt:"state",id:le,type:"default",description:he};break;case 21:this.$={stmt:"state",id:j[ne-3],type:"default",description:j[ne-5],doc:j[ne-1]};break;case 22:this.$={stmt:"state",id:j[ne],type:"fork"};break;case 23:this.$={stmt:"state",id:j[ne],type:"join"};break;case 24:this.$={stmt:"state",id:j[ne],type:"choice"};break;case 25:this.$={stmt:"state",id:H.getDividerId(),type:"divider"};break;case 26:this.$={stmt:"state",id:j[ne-1].trim(),note:{position:j[ne-2].trim(),text:j[ne].trim()}};break;case 29:this.$=j[ne].trim(),H.setAccTitle(this.$);break;case 30:case 31:this.$=j[ne].trim(),H.setAccDescription(this.$);break;case 32:case 33:this.$={stmt:"classDef",id:j[ne-1].trim(),classes:j[ne].trim()};break;case 34:this.$={stmt:"style",id:j[ne-1].trim(),styleClass:j[ne].trim()};break;case 35:this.$={stmt:"applyClass",id:j[ne-1].trim(),styleClass:j[ne].trim()};break;case 36:H.setDirection("TB"),this.$={stmt:"dir",value:"TB"};break;case 37:H.setDirection("BT"),this.$={stmt:"dir",value:"BT"};break;case 38:H.setDirection("RL"),this.$={stmt:"dir",value:"RL"};break;case 39:H.setDirection("LR"),this.$={stmt:"dir",value:"LR"};break;case 42:case 43:this.$={stmt:"state",id:j[ne].trim(),type:"default",description:""};break;case 44:this.$={stmt:"state",id:j[ne-2].trim(),classes:[j[ne].trim()],type:"default",description:""};break;case 45:this.$={stmt:"state",id:j[ne-2].trim(),classes:[j[ne].trim()],type:"default",description:""};break}},"anonymous"),table:[{3:1,4:e,5:r,6:n},{1:[3]},{3:5,4:e,5:r,6:n},{3:6,4:e,5:r,6:n},t([1,4,5,16,17,19,22,24,25,26,27,28,29,33,35,37,38,42,45,48,49,50,51,54],i,{7:7}),{1:[2,1]},{1:[2,2]},{1:[2,3],4:a,5:s,8:8,9:10,10:12,11:13,12:14,13:15,16:l,17:u,19:h,22:f,24:d,25:p,26:m,27:g,28:y,29:v,32:25,33:x,35:b,37:w,38:C,42:T,45:E,48:A,49:S,50:_,51:I,54:D},t(k,[2,5]),{9:38,10:12,11:13,12:14,13:15,16:l,17:u,19:h,22:f,24:d,25:p,26:m,27:g,28:y,29:v,32:25,33:x,35:b,37:w,38:C,42:T,45:E,48:A,49:S,50:_,51:I,54:D},t(k,[2,7]),t(k,[2,8]),t(k,[2,9]),t(k,[2,10]),t(k,[2,11]),t(k,[2,12],{14:[1,39],15:[1,40]}),t(k,[2,16]),{18:[1,41]},t(k,[2,18],{20:[1,42]}),{23:[1,43]},t(k,[2,22]),t(k,[2,23]),t(k,[2,24]),t(k,[2,25]),{30:44,31:[1,45],56:[1,46],57:[1,47]},t(k,[2,28]),{34:[1,48]},{36:[1,49]},t(k,[2,31]),{39:[1,50],41:[1,51]},{43:[1,52]},{46:[1,53]},t(L,[2,42],{55:[1,54]}),t(L,[2,43],{55:[1,55]}),t(k,[2,36]),t(k,[2,37]),t(k,[2,38]),t(k,[2,39]),t(k,[2,6]),t(k,[2,13]),{13:56,24:d,54:D},t(k,[2,17]),t(R,i,{7:57}),{24:[1,58]},{24:[1,59]},{23:[1,60]},{24:[2,46]},{24:[2,47]},t(k,[2,29]),t(k,[2,30]),{40:[1,61]},{40:[1,62]},{44:[1,63]},{47:[1,64]},{24:[1,65]},{24:[1,66]},t(k,[2,14],{14:[1,67]}),{4:a,5:s,8:8,9:10,10:12,11:13,12:14,13:15,16:l,17:u,19:h,21:[1,68],22:f,24:d,25:p,26:m,27:g,28:y,29:v,32:25,33:x,35:b,37:w,38:C,42:T,45:E,48:A,49:S,50:_,51:I,54:D},t(k,[2,20],{20:[1,69]}),{31:[1,70]},{24:[1,71]},t(k,[2,32]),t(k,[2,33]),t(k,[2,34]),t(k,[2,35]),t(L,[2,44]),t(L,[2,45]),t(k,[2,15]),t(k,[2,19]),t(R,i,{7:72}),t(k,[2,26]),t(k,[2,27]),{4:a,5:s,8:8,9:10,10:12,11:13,12:14,13:15,16:l,17:u,19:h,21:[1,73],22:f,24:d,25:p,26:m,27:g,28:y,29:v,32:25,33:x,35:b,37:w,38:C,42:T,45:E,48:A,49:S,50:_,51:I,54:D},t(k,[2,21])],defaultActions:{5:[2,1],6:[2,2],46:[2,46],47:[2,47]},parseError:o(function(P,z){if(z.recoverable)this.trace(P);else{var $=new Error(P);throw $.hash=z,$}},"parseError"),parse:o(function(P){var z=this,$=[0],H=[],Q=[null],j=[],ie=this.table,ne="",le=0,he=0,K=0,X=2,te=1,J=j.slice.call(arguments,1),se=Object.create(this.lexer),ue={yy:{}};for(var Z in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Z)&&(ue.yy[Z]=this.yy[Z]);se.setInput(P,ue.yy),ue.yy.lexer=se,ue.yy.parser=this,typeof se.yylloc>"u"&&(se.yylloc={});var Se=se.yylloc;j.push(Se);var ce=se.options&&se.options.ranges;typeof ue.yy.parseError=="function"?this.parseError=ue.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function ae(xe){$.length=$.length-2*xe,Q.length=Q.length-xe,j.length=j.length-xe}o(ae,"popStack");function Oe(){var xe;return xe=H.pop()||se.lex()||te,typeof xe!="number"&&(xe instanceof Array&&(H=xe,xe=H.pop()),xe=z.symbols_[xe]||xe),xe}o(Oe,"lex");for(var ge,ze,He,$e,Re,Ie,be={},W,de,re,oe;;){if(He=$[$.length-1],this.defaultActions[He]?$e=this.defaultActions[He]:((ge===null||typeof ge>"u")&&(ge=Oe()),$e=ie[He]&&ie[He][ge]),typeof $e>"u"||!$e.length||!$e[0]){var V="";oe=[];for(W in ie[He])this.terminals_[W]&&W>X&&oe.push("'"+this.terminals_[W]+"'");se.showPosition?V="Parse error on line "+(le+1)+`: +`+se.showPosition()+` +Expecting `+oe.join(", ")+", got '"+(this.terminals_[ge]||ge)+"'":V="Parse error on line "+(le+1)+": Unexpected "+(ge==te?"end of input":"'"+(this.terminals_[ge]||ge)+"'"),this.parseError(V,{text:se.match,token:this.terminals_[ge]||ge,line:se.yylineno,loc:Se,expected:oe})}if($e[0]instanceof Array&&$e.length>1)throw new Error("Parse Error: multiple actions possible at state: "+He+", token: "+ge);switch($e[0]){case 1:$.push(ge),Q.push(se.yytext),j.push(se.yylloc),$.push($e[1]),ge=null,ze?(ge=ze,ze=null):(he=se.yyleng,ne=se.yytext,le=se.yylineno,Se=se.yylloc,K>0&&K--);break;case 2:if(de=this.productions_[$e[1]][1],be.$=Q[Q.length-de],be._$={first_line:j[j.length-(de||1)].first_line,last_line:j[j.length-1].last_line,first_column:j[j.length-(de||1)].first_column,last_column:j[j.length-1].last_column},ce&&(be._$.range=[j[j.length-(de||1)].range[0],j[j.length-1].range[1]]),Ie=this.performAction.apply(be,[ne,he,le,ue.yy,$e[1],Q,j].concat(J)),typeof Ie<"u")return Ie;de&&($=$.slice(0,-1*de*2),Q=Q.slice(0,-1*de),j=j.slice(0,-1*de)),$.push(this.productions_[$e[1]][0]),Q.push(be.$),j.push(be._$),re=ie[$[$.length-2]][$[$.length-1]],$.push(re);break;case 3:return!0}}return!0},"parse")},M=function(){var F={EOF:1,parseError:o(function(z,$){if(this.yy.parser)this.yy.parser.parseError(z,$);else throw new Error(z)},"parseError"),setInput:o(function(P,z){return this.yy=z||this.yy||{},this._input=P,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var P=this._input[0];this.yytext+=P,this.yyleng++,this.offset++,this.match+=P,this.matched+=P;var z=P.match(/(?:\r\n?|\n).*/g);return z?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),P},"input"),unput:o(function(P){var z=P.length,$=P.split(/(?:\r\n?|\n)/g);this._input=P+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-z),this.offset-=z;var H=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),$.length-1&&(this.yylineno-=$.length-1);var Q=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:$?($.length===H.length?this.yylloc.first_column:0)+H[H.length-$.length].length-$[0].length:this.yylloc.first_column-z},this.options.ranges&&(this.yylloc.range=[Q[0],Q[0]+this.yyleng-z]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(P){this.unput(this.match.slice(P))},"less"),pastInput:o(function(){var P=this.matched.substr(0,this.matched.length-this.match.length);return(P.length>20?"...":"")+P.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var P=this.match;return P.length<20&&(P+=this._input.substr(0,20-P.length)),(P.substr(0,20)+(P.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var P=this.pastInput(),z=new Array(P.length+1).join("-");return P+this.upcomingInput()+` +`+z+"^"},"showPosition"),test_match:o(function(P,z){var $,H,Q;if(this.options.backtrack_lexer&&(Q={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Q.yylloc.range=this.yylloc.range.slice(0))),H=P[0].match(/(?:\r\n?|\n).*/g),H&&(this.yylineno+=H.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:H?H[H.length-1].length-H[H.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+P[0].length},this.yytext+=P[0],this.match+=P[0],this.matches=P,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(P[0].length),this.matched+=P[0],$=this.performAction.call(this,this.yy,this,z,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),$)return $;if(this._backtrack){for(var j in Q)this[j]=Q[j];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var P,z,$,H;this._more||(this.yytext="",this.match="");for(var Q=this._currentRules(),j=0;jz[0].length)){if(z=$,H=j,this.options.backtrack_lexer){if(P=this.test_match($,Q[j]),P!==!1)return P;if(this._backtrack){z=!1;continue}else return!1}else if(!this.options.flex)break}return z?(P=this.test_match(z,Q[H]),P!==!1?P:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var z=this.next();return z||this.lex()},"lex"),begin:o(function(z){this.conditionStack.push(z)},"begin"),popState:o(function(){var z=this.conditionStack.length-1;return z>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(z){return z=this.conditionStack.length-1-Math.abs(z||0),z>=0?this.conditionStack[z]:"INITIAL"},"topState"),pushState:o(function(z){this.begin(z)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(z,$,H,Q){var j=Q;switch(H){case 0:return 41;case 1:return 48;case 2:return 49;case 3:return 50;case 4:return 51;case 5:break;case 6:break;case 7:return 5;case 8:break;case 9:break;case 10:break;case 11:break;case 12:return this.pushState("SCALE"),17;break;case 13:return 18;case 14:this.popState();break;case 15:return this.begin("acc_title"),33;break;case 16:return this.popState(),"acc_title_value";break;case 17:return this.begin("acc_descr"),35;break;case 18:return this.popState(),"acc_descr_value";break;case 19:this.begin("acc_descr_multiline");break;case 20:this.popState();break;case 21:return"acc_descr_multiline_value";case 22:return this.pushState("CLASSDEF"),38;break;case 23:return this.popState(),this.pushState("CLASSDEFID"),"DEFAULT_CLASSDEF_ID";break;case 24:return this.popState(),this.pushState("CLASSDEFID"),39;break;case 25:return this.popState(),40;break;case 26:return this.pushState("CLASS"),45;break;case 27:return this.popState(),this.pushState("CLASS_STYLE"),46;break;case 28:return this.popState(),47;break;case 29:return this.pushState("STYLE"),42;break;case 30:return this.popState(),this.pushState("STYLEDEF_STYLES"),43;break;case 31:return this.popState(),44;break;case 32:return this.pushState("SCALE"),17;break;case 33:return 18;case 34:this.popState();break;case 35:this.pushState("STATE");break;case 36:return this.popState(),$.yytext=$.yytext.slice(0,-8).trim(),25;break;case 37:return this.popState(),$.yytext=$.yytext.slice(0,-8).trim(),26;break;case 38:return this.popState(),$.yytext=$.yytext.slice(0,-10).trim(),27;break;case 39:return this.popState(),$.yytext=$.yytext.slice(0,-8).trim(),25;break;case 40:return this.popState(),$.yytext=$.yytext.slice(0,-8).trim(),26;break;case 41:return this.popState(),$.yytext=$.yytext.slice(0,-10).trim(),27;break;case 42:return 48;case 43:return 49;case 44:return 50;case 45:return 51;case 46:this.pushState("STATE_STRING");break;case 47:return this.pushState("STATE_ID"),"AS";break;case 48:return this.popState(),"ID";break;case 49:this.popState();break;case 50:return"STATE_DESCR";case 51:return 19;case 52:this.popState();break;case 53:return this.popState(),this.pushState("struct"),20;break;case 54:break;case 55:return this.popState(),21;break;case 56:break;case 57:return this.begin("NOTE"),29;break;case 58:return this.popState(),this.pushState("NOTE_ID"),56;break;case 59:return this.popState(),this.pushState("NOTE_ID"),57;break;case 60:this.popState(),this.pushState("FLOATING_NOTE");break;case 61:return this.popState(),this.pushState("FLOATING_NOTE_ID"),"AS";break;case 62:break;case 63:return"NOTE_TEXT";case 64:return this.popState(),"ID";break;case 65:return this.popState(),this.pushState("NOTE_TEXT"),24;break;case 66:return this.popState(),$.yytext=$.yytext.substr(2).trim(),31;break;case 67:return this.popState(),$.yytext=$.yytext.slice(0,-8).trim(),31;break;case 68:return 6;case 69:return 6;case 70:return 16;case 71:return 54;case 72:return 24;case 73:return $.yytext=$.yytext.trim(),14;break;case 74:return 15;case 75:return 28;case 76:return 55;case 77:return 5;case 78:return"INVALID"}},"anonymous"),rules:[/^(?:default\b)/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:[\s]+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:classDef\s+)/i,/^(?:DEFAULT\s+)/i,/^(?:\w+\s+)/i,/^(?:[^\n]*)/i,/^(?:class\s+)/i,/^(?:(\w+)+((,\s*\w+)*))/i,/^(?:[^\n]*)/i,/^(?:style\s+)/i,/^(?:[\w,]+\s+)/i,/^(?:[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:state\s+)/i,/^(?:.*<>)/i,/^(?:.*<>)/i,/^(?:.*<>)/i,/^(?:.*\[\[fork\]\])/i,/^(?:.*\[\[join\]\])/i,/^(?:.*\[\[choice\]\])/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:["])/i,/^(?:\s*as\s+)/i,/^(?:[^\n\{]*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n\s\{]+)/i,/^(?:\n)/i,/^(?:\{)/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:\})/i,/^(?:[\n])/i,/^(?:note\s+)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:")/i,/^(?:\s*as\s*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n]*)/i,/^(?:\s*[^:\n\s\-]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:[\s\S]*?end note\b)/i,/^(?:stateDiagram\s+)/i,/^(?:stateDiagram-v2\s+)/i,/^(?:hide empty description\b)/i,/^(?:\[\*\])/i,/^(?:[^:\n\s\-\{]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:-->)/i,/^(?:--)/i,/^(?::::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{LINE:{rules:[9,10],inclusive:!1},struct:{rules:[9,10,22,26,29,35,42,43,44,45,54,55,56,57,71,72,73,74,75],inclusive:!1},FLOATING_NOTE_ID:{rules:[64],inclusive:!1},FLOATING_NOTE:{rules:[61,62,63],inclusive:!1},NOTE_TEXT:{rules:[66,67],inclusive:!1},NOTE_ID:{rules:[65],inclusive:!1},NOTE:{rules:[58,59,60],inclusive:!1},STYLEDEF_STYLEOPTS:{rules:[],inclusive:!1},STYLEDEF_STYLES:{rules:[31],inclusive:!1},STYLE_IDS:{rules:[],inclusive:!1},STYLE:{rules:[30],inclusive:!1},CLASS_STYLE:{rules:[28],inclusive:!1},CLASS:{rules:[27],inclusive:!1},CLASSDEFID:{rules:[25],inclusive:!1},CLASSDEF:{rules:[23,24],inclusive:!1},acc_descr_multiline:{rules:[20,21],inclusive:!1},acc_descr:{rules:[18],inclusive:!1},acc_title:{rules:[16],inclusive:!1},SCALE:{rules:[13,14,33,34],inclusive:!1},ALIAS:{rules:[],inclusive:!1},STATE_ID:{rules:[48],inclusive:!1},STATE_STRING:{rules:[49,50],inclusive:!1},FORK_STATE:{rules:[],inclusive:!1},STATE:{rules:[9,10,36,37,38,39,40,41,46,47,51,52,53],inclusive:!1},ID:{rules:[9,10],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,10,11,12,15,17,19,22,26,29,32,35,53,57,68,69,70,71,72,73,74,76,77,78],inclusive:!0}}};return F}();O.lexer=M;function B(){this.yy={}}return o(B,"Parser"),B.prototype=O,O.Parser=B,new B}();FO.parser=FO;I6=FO});var zfe,O6,zO,L1,Eb,Gfe,Vfe,Ufe,Rp,P6,GO,VO,UO,HO,WO,B6,F6,Hfe,Wfe,qO,YO,qfe,Yfe,R1,tUe,Xfe,XO,rUe,nUe,jfe,Kfe,iUe,Qfe,aUe,Zfe,jO,KO,Jfe,$6,ede,QO,z6=N(()=>{"use strict";zfe="TB",O6="TB",zO="dir",L1="state",Eb="relation",Gfe="classDef",Vfe="style",Ufe="applyClass",Rp="default",P6="divider",GO="fill:none",VO="fill: #333",UO="c",HO="text",WO="normal",B6="rect",F6="rectWithTitle",Hfe="stateStart",Wfe="stateEnd",qO="divider",YO="roundedWithTitle",qfe="note",Yfe="noteGroup",R1="statediagram",tUe="state",Xfe=`${R1}-${tUe}`,XO="transition",rUe="note",nUe="note-edge",jfe=`${XO} ${nUe}`,Kfe=`${R1}-${rUe}`,iUe="cluster",Qfe=`${R1}-${iUe}`,aUe="cluster-alt",Zfe=`${R1}-${aUe}`,jO="parent",KO="note",Jfe="state",$6="----",ede=`${$6}${KO}`,QO=`${$6}${jO}`});function ZO(t="",e=0,r="",n=$6){let i=r!==null&&r.length>0?`${n}${r}`:"";return`${Jfe}-${t}${i}-${e}`}function G6(t,e,r){if(!e.id||e.id===""||e.id==="")return;e.cssClasses&&(Array.isArray(e.cssCompiledStyles)||(e.cssCompiledStyles=[]),e.cssClasses.split(" ").forEach(i=>{if(r.get(i)){let a=r.get(i);e.cssCompiledStyles=[...e.cssCompiledStyles,...a.styles]}}));let n=t.find(i=>i.id===e.id);n?Object.assign(n,e):t.push(e)}function oUe(t){return t?.classes?.join(" ")??""}function lUe(t){return t?.styles??[]}var V6,xf,sUe,tde,N1,rde,nde=N(()=>{"use strict";zt();vt();gr();z6();V6=new Map,xf=0;o(ZO,"stateDomId");sUe=o((t,e,r,n,i,a,s,l)=>{Y.trace("items",e),e.forEach(u=>{switch(u.stmt){case L1:N1(t,u,r,n,i,a,s,l);break;case Rp:N1(t,u,r,n,i,a,s,l);break;case Eb:{N1(t,u.state1,r,n,i,a,s,l),N1(t,u.state2,r,n,i,a,s,l);let h={id:"edge"+xf,start:u.state1.id,end:u.state2.id,arrowhead:"normal",arrowTypeEnd:"arrow_barb",style:GO,labelStyle:"",label:Ze.sanitizeText(u.description,me()),arrowheadStyle:VO,labelpos:UO,labelType:HO,thickness:WO,classes:XO,look:s};i.push(h),xf++}break}})},"setupDoc"),tde=o((t,e=O6)=>{let r=e;if(t.doc)for(let n of t.doc)n.stmt==="dir"&&(r=n.value);return r},"getDir");o(G6,"insertOrUpdateNode");o(oUe,"getClassesFromDbInfo");o(lUe,"getStylesFromDbInfo");N1=o((t,e,r,n,i,a,s,l)=>{let u=e.id,h=r.get(u),f=oUe(h),d=lUe(h);if(Y.info("dataFetcher parsedItem",e,h,d),u!=="root"){let p=B6;e.start===!0?p=Hfe:e.start===!1&&(p=Wfe),e.type!==Rp&&(p=e.type),V6.get(u)||V6.set(u,{id:u,shape:p,description:Ze.sanitizeText(u,me()),cssClasses:`${f} ${Xfe}`,cssStyles:d});let m=V6.get(u);e.description&&(Array.isArray(m.description)?(m.shape=F6,m.description.push(e.description)):m.description?.length>0?(m.shape=F6,m.description===u?m.description=[e.description]:m.description=[m.description,e.description]):(m.shape=B6,m.description=e.description),m.description=Ze.sanitizeTextOrArray(m.description,me())),m.description?.length===1&&m.shape===F6&&(m.type==="group"?m.shape=YO:m.shape=B6),!m.type&&e.doc&&(Y.info("Setting cluster for XCX",u,tde(e)),m.type="group",m.isGroup=!0,m.dir=tde(e),m.shape=e.type===P6?qO:YO,m.cssClasses=`${m.cssClasses} ${Qfe} ${a?Zfe:""}`);let g={labelStyle:"",shape:m.shape,label:m.description,cssClasses:m.cssClasses,cssCompiledStyles:[],cssStyles:m.cssStyles,id:u,dir:m.dir,domId:ZO(u,xf),type:m.type,isGroup:m.type==="group",padding:8,rx:10,ry:10,look:s};if(g.shape===qO&&(g.label=""),t&&t.id!=="root"&&(Y.trace("Setting node ",u," to be child of its parent ",t.id),g.parentId=t.id),g.centerLabel=!0,e.note){let y={labelStyle:"",shape:qfe,label:e.note.text,cssClasses:Kfe,cssStyles:[],cssCompilesStyles:[],id:u+ede+"-"+xf,domId:ZO(u,xf,KO),type:m.type,isGroup:m.type==="group",padding:me().flowchart.padding,look:s,position:e.note.position},v=u+QO,x={labelStyle:"",shape:Yfe,label:e.note.text,cssClasses:m.cssClasses,cssStyles:[],id:u+QO,domId:ZO(u,xf,jO),type:"group",isGroup:!0,padding:16,look:s,position:e.note.position};xf++,x.id=v,y.parentId=v,G6(n,x,l),G6(n,y,l),G6(n,g,l);let b=u,w=y.id;e.note.position==="left of"&&(b=y.id,w=u),i.push({id:b+"-"+w,start:b,end:w,arrowhead:"none",arrowTypeEnd:"",style:GO,labelStyle:"",classes:jfe,arrowheadStyle:VO,labelpos:UO,labelType:HO,thickness:WO,look:s})}else G6(n,g,l)}e.doc&&(Y.trace("Adding nodes children "),sUe(e,e.doc,r,n,i,!a,s,l))},"dataFetcher"),rde=o(()=>{V6.clear(),xf=0},"reset")});var JO,cUe,uUe,ide,eP=N(()=>{"use strict";zt();vt();gm();Yd();$m();ir();z6();JO=o((t,e=O6)=>{if(!t.doc)return e;let r=e;for(let n of t.doc)n.stmt==="dir"&&(r=n.value);return r},"getDir"),cUe=o(function(t,e){return e.db.getClasses()},"getClasses"),uUe=o(async function(t,e,r,n){Y.info("REF0:"),Y.info("Drawing state diagram (v2)",e);let{securityLevel:i,state:a,layout:s}=me();n.db.extract(n.db.getRootDocV2());let l=n.db.getData(),u=yc(e,i);l.type=n.type,l.layoutAlgorithm=s,l.nodeSpacing=a?.nodeSpacing||50,l.rankSpacing=a?.rankSpacing||50,l.markers=["barb"],l.diagramId=e,await Cc(l,u);let h=8;Gt.insertTitle(u,"statediagramTitleText",a?.titleTopMargin??25,n.db.getDiagramTitle()),Ac(u,h,R1,a?.useMaxWidth??!0)},"draw"),ide={getClasses:cUe,draw:uUe,getDir:JO}});function ude(){return new Map}var tP,ade,sde,ode,lde,cde,hUe,fUe,hde,U6,Qo,H6=N(()=>{"use strict";zt();vt();ir();gr();mi();nde();eP();z6();tP="[*]",ade="start",sde=tP,ode="end",lde="color",cde="fill",hUe="bgFill",fUe=",";o(ude,"newClassesList");hde=o(()=>({relations:[],states:new Map,documents:{}}),"newDoc"),U6=o(t=>JSON.parse(JSON.stringify(t)),"clone"),Qo=class{static{o(this,"StateDB")}constructor(e){this.clear(),this.version=e,this.setRootDoc=this.setRootDoc.bind(this),this.getDividerId=this.getDividerId.bind(this),this.setDirection=this.setDirection.bind(this),this.trimColon=this.trimColon.bind(this)}version;nodes=[];edges=[];rootDoc=[];classes=ude();documents={root:hde()};currentDocument=this.documents.root;startEndCount=0;dividerCnt=0;static relationType={AGGREGATION:0,EXTENSION:1,COMPOSITION:2,DEPENDENCY:3};setRootDoc(e){Y.info("Setting root doc",e),this.rootDoc=e,this.version===1?this.extract(e):this.extract(this.getRootDocV2())}getRootDoc(){return this.rootDoc}docTranslator(e,r,n){if(r.stmt===Eb)this.docTranslator(e,r.state1,!0),this.docTranslator(e,r.state2,!1);else if(r.stmt===L1&&(r.id==="[*]"?(r.id=n?e.id+"_start":e.id+"_end",r.start=n):r.id=r.id.trim()),r.doc){let i=[],a=[],s;for(s=0;s0&&a.length>0){let l={stmt:L1,id:X9(),type:"divider",doc:U6(a)};i.push(U6(l)),r.doc=i}r.doc.forEach(l=>this.docTranslator(r,l,!0))}}getRootDocV2(){return this.docTranslator({id:"root"},{id:"root",doc:this.rootDoc},!0),{id:"root",doc:this.rootDoc}}extract(e){let r;e.doc?r=e.doc:r=e,Y.info(r),this.clear(!0),Y.info("Extract initial document:",r),r.forEach(s=>{switch(Y.warn("Statement",s.stmt),s.stmt){case L1:this.addState(s.id.trim(),s.type,s.doc,s.description,s.note,s.classes,s.styles,s.textStyles);break;case Eb:this.addRelation(s.state1,s.state2,s.description);break;case Gfe:this.addStyleClass(s.id.trim(),s.classes);break;case Vfe:{let l=s.id.trim().split(","),u=s.styleClass.split(",");l.forEach(h=>{let f=this.getState(h);if(f===void 0){let d=h.trim();this.addState(d),f=this.getState(d)}f.styles=u.map(d=>d.replace(/;/g,"")?.trim())})}break;case Ufe:this.setCssClass(s.id.trim(),s.styleClass);break}});let n=this.getStates(),a=me().look;rde(),N1(void 0,this.getRootDocV2(),n,this.nodes,this.edges,!0,a,this.classes),this.nodes.forEach(s=>{if(Array.isArray(s.label)){if(s.description=s.label.slice(1),s.isGroup&&s.description.length>0)throw new Error("Group nodes can only have label. Remove the additional description for node ["+s.id+"]");s.label=s.label[0]}})}addState(e,r=Rp,n=null,i=null,a=null,s=null,l=null,u=null){let h=e?.trim();if(this.currentDocument.states.has(h)?(this.currentDocument.states.get(h).doc||(this.currentDocument.states.get(h).doc=n),this.currentDocument.states.get(h).type||(this.currentDocument.states.get(h).type=r)):(Y.info("Adding state ",h,i),this.currentDocument.states.set(h,{id:h,descriptions:[],type:r,doc:n,note:a,classes:[],styles:[],textStyles:[]})),i&&(Y.info("Setting state description",h,i),typeof i=="string"&&this.addDescription(h,i.trim()),typeof i=="object"&&i.forEach(f=>this.addDescription(h,f.trim()))),a){let f=this.currentDocument.states.get(h);f.note=a,f.note.text=Ze.sanitizeText(f.note.text,me())}s&&(Y.info("Setting state classes",h,s),(typeof s=="string"?[s]:s).forEach(d=>this.setCssClass(h,d.trim()))),l&&(Y.info("Setting state styles",h,l),(typeof l=="string"?[l]:l).forEach(d=>this.setStyle(h,d.trim()))),u&&(Y.info("Setting state styles",h,l),(typeof u=="string"?[u]:u).forEach(d=>this.setTextStyle(h,d.trim())))}clear(e){this.nodes=[],this.edges=[],this.documents={root:hde()},this.currentDocument=this.documents.root,this.startEndCount=0,this.classes=ude(),e||Ar()}getState(e){return this.currentDocument.states.get(e)}getStates(){return this.currentDocument.states}logDocuments(){Y.info("Documents = ",this.documents)}getRelations(){return this.currentDocument.relations}startIdIfNeeded(e=""){let r=e;return e===tP&&(this.startEndCount++,r=`${ade}${this.startEndCount}`),r}startTypeIfNeeded(e="",r=Rp){return e===tP?ade:r}endIdIfNeeded(e=""){let r=e;return e===sde&&(this.startEndCount++,r=`${ode}${this.startEndCount}`),r}endTypeIfNeeded(e="",r=Rp){return e===sde?ode:r}addRelationObjs(e,r,n){let i=this.startIdIfNeeded(e.id.trim()),a=this.startTypeIfNeeded(e.id.trim(),e.type),s=this.startIdIfNeeded(r.id.trim()),l=this.startTypeIfNeeded(r.id.trim(),r.type);this.addState(i,a,e.doc,e.description,e.note,e.classes,e.styles,e.textStyles),this.addState(s,l,r.doc,r.description,r.note,r.classes,r.styles,r.textStyles),this.currentDocument.relations.push({id1:i,id2:s,relationTitle:Ze.sanitizeText(n,me())})}addRelation(e,r,n){if(typeof e=="object")this.addRelationObjs(e,r,n);else{let i=this.startIdIfNeeded(e.trim()),a=this.startTypeIfNeeded(e),s=this.endIdIfNeeded(r.trim()),l=this.endTypeIfNeeded(r);this.addState(i,a),this.addState(s,l),this.currentDocument.relations.push({id1:i,id2:s,title:Ze.sanitizeText(n,me())})}}addDescription(e,r){let n=this.currentDocument.states.get(e),i=r.startsWith(":")?r.replace(":","").trim():r;n.descriptions.push(Ze.sanitizeText(i,me()))}cleanupLabel(e){return e.substring(0,1)===":"?e.substr(2).trim():e.trim()}getDividerId(){return this.dividerCnt++,"divider-id-"+this.dividerCnt}addStyleClass(e,r=""){this.classes.has(e)||this.classes.set(e,{id:e,styles:[],textStyles:[]});let n=this.classes.get(e);r?.split(fUe).forEach(i=>{let a=i.replace(/([^;]*);/,"$1").trim();if(RegExp(lde).exec(i)){let l=a.replace(cde,hUe).replace(lde,cde);n.textStyles.push(l)}n.styles.push(a)})}getClasses(){return this.classes}setCssClass(e,r){e.split(",").forEach(n=>{let i=this.getState(n);if(i===void 0){let a=n.trim();this.addState(a),i=this.getState(a)}i.classes.push(r)})}setStyle(e,r){let n=this.getState(e);n!==void 0&&n.styles.push(r)}setTextStyle(e,r){let n=this.getState(e);n!==void 0&&n.textStyles.push(r)}getDirectionStatement(){return this.rootDoc.find(e=>e.stmt===zO)}getDirection(){return this.getDirectionStatement()?.value??zfe}setDirection(e){let r=this.getDirectionStatement();r?r.value=e:this.rootDoc.unshift({stmt:zO,value:e})}trimColon(e){return e&&e[0]===":"?e.substr(1).trim():e.trim()}getData(){let e=me();return{nodes:this.nodes,edges:this.edges,other:{},config:e,direction:JO(this.getRootDocV2())}}getConfig(){return me().state}getAccTitle=Rr;setAccTitle=Lr;getAccDescription=Mr;setAccDescription=Nr;setDiagramTitle=$r;getDiagramTitle=Ir}});var dUe,W6,rP=N(()=>{"use strict";dUe=o(t=>` +defs #statediagram-barbEnd { + fill: ${t.transitionColor}; + stroke: ${t.transitionColor}; + } +g.stateGroup text { + fill: ${t.nodeBorder}; + stroke: none; + font-size: 10px; +} +g.stateGroup text { + fill: ${t.textColor}; + stroke: none; + font-size: 10px; + +} +g.stateGroup .state-title { + font-weight: bolder; + fill: ${t.stateLabelColor}; +} + +g.stateGroup rect { + fill: ${t.mainBkg}; + stroke: ${t.nodeBorder}; +} + +g.stateGroup line { + stroke: ${t.lineColor}; + stroke-width: 1; +} + +.transition { + stroke: ${t.transitionColor}; + stroke-width: 1; + fill: none; +} + +.stateGroup .composit { + fill: ${t.background}; + border-bottom: 1px +} + +.stateGroup .alt-composit { + fill: #e0e0e0; + border-bottom: 1px +} + +.state-note { + stroke: ${t.noteBorderColor}; + fill: ${t.noteBkgColor}; + + text { + fill: ${t.noteTextColor}; + stroke: none; + font-size: 10px; + } +} + +.stateLabel .box { + stroke: none; + stroke-width: 0; + fill: ${t.mainBkg}; + opacity: 0.5; +} + +.edgeLabel .label rect { + fill: ${t.labelBackgroundColor}; + opacity: 0.5; +} +.edgeLabel { + background-color: ${t.edgeLabelBackground}; + p { + background-color: ${t.edgeLabelBackground}; + } + rect { + opacity: 0.5; + background-color: ${t.edgeLabelBackground}; + fill: ${t.edgeLabelBackground}; + } + text-align: center; +} +.edgeLabel .label text { + fill: ${t.transitionLabelColor||t.tertiaryTextColor}; +} +.label div .edgeLabel { + color: ${t.transitionLabelColor||t.tertiaryTextColor}; +} + +.stateLabel text { + fill: ${t.stateLabelColor}; + font-size: 10px; + font-weight: bold; +} + +.node circle.state-start { + fill: ${t.specialStateColor}; + stroke: ${t.specialStateColor}; +} + +.node .fork-join { + fill: ${t.specialStateColor}; + stroke: ${t.specialStateColor}; +} + +.node circle.state-end { + fill: ${t.innerEndBackground}; + stroke: ${t.background}; + stroke-width: 1.5 +} +.end-state-inner { + fill: ${t.compositeBackground||t.background}; + // stroke: ${t.background}; + stroke-width: 1.5 +} + +.node rect { + fill: ${t.stateBkg||t.mainBkg}; + stroke: ${t.stateBorder||t.nodeBorder}; + stroke-width: 1px; +} +.node polygon { + fill: ${t.mainBkg}; + stroke: ${t.stateBorder||t.nodeBorder};; + stroke-width: 1px; +} +#statediagram-barbEnd { + fill: ${t.lineColor}; +} + +.statediagram-cluster rect { + fill: ${t.compositeTitleBackground}; + stroke: ${t.stateBorder||t.nodeBorder}; + stroke-width: 1px; +} + +.cluster-label, .nodeLabel { + color: ${t.stateLabelColor}; + // line-height: 1; +} + +.statediagram-cluster rect.outer { + rx: 5px; + ry: 5px; +} +.statediagram-state .divider { + stroke: ${t.stateBorder||t.nodeBorder}; +} + +.statediagram-state .title-state { + rx: 5px; + ry: 5px; +} +.statediagram-cluster.statediagram-cluster .inner { + fill: ${t.compositeBackground||t.background}; +} +.statediagram-cluster.statediagram-cluster-alt .inner { + fill: ${t.altBackground?t.altBackground:"#efefef"}; +} + +.statediagram-cluster .inner { + rx:0; + ry:0; +} + +.statediagram-state rect.basic { + rx: 5px; + ry: 5px; +} +.statediagram-state rect.divider { + stroke-dasharray: 10,10; + fill: ${t.altBackground?t.altBackground:"#efefef"}; +} + +.note-edge { + stroke-dasharray: 5; +} + +.statediagram-note rect { + fill: ${t.noteBkgColor}; + stroke: ${t.noteBorderColor}; + stroke-width: 1px; + rx: 0; + ry: 0; +} +.statediagram-note rect { + fill: ${t.noteBkgColor}; + stroke: ${t.noteBorderColor}; + stroke-width: 1px; + rx: 0; + ry: 0; +} + +.statediagram-note text { + fill: ${t.noteTextColor}; +} + +.statediagram-note .nodeLabel { + color: ${t.noteTextColor}; +} +.statediagram .edgeLabel { + color: red; // ${t.noteTextColor}; +} + +#dependencyStart, #dependencyEnd { + fill: ${t.lineColor}; + stroke: ${t.lineColor}; + stroke-width: 1; +} + +.statediagramTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${t.textColor}; +} +`,"getStyles"),W6=dUe});var nP,pUe,mUe,fde,gUe,dde,pde=N(()=>{"use strict";nP={},pUe=o((t,e)=>{nP[t]=e},"set"),mUe=o(t=>nP[t],"get"),fde=o(()=>Object.keys(nP),"keys"),gUe=o(()=>fde().length,"size"),dde={get:mUe,set:pUe,keys:fde,size:gUe}});var yUe,vUe,xUe,bUe,gde,wUe,TUe,kUe,EUe,iP,mde,yde,vde=N(()=>{"use strict";dr();pde();H6();ir();gr();zt();vt();yUe=o(t=>t.append("circle").attr("class","start-state").attr("r",me().state.sizeUnit).attr("cx",me().state.padding+me().state.sizeUnit).attr("cy",me().state.padding+me().state.sizeUnit),"drawStartState"),vUe=o(t=>t.append("line").style("stroke","grey").style("stroke-dasharray","3").attr("x1",me().state.textHeight).attr("class","divider").attr("x2",me().state.textHeight*2).attr("y1",0).attr("y2",0),"drawDivider"),xUe=o((t,e)=>{let r=t.append("text").attr("x",2*me().state.padding).attr("y",me().state.textHeight+2*me().state.padding).attr("font-size",me().state.fontSize).attr("class","state-title").text(e.id),n=r.node().getBBox();return t.insert("rect",":first-child").attr("x",me().state.padding).attr("y",me().state.padding).attr("width",n.width+2*me().state.padding).attr("height",n.height+2*me().state.padding).attr("rx",me().state.radius),r},"drawSimpleState"),bUe=o((t,e)=>{let r=o(function(p,m,g){let y=p.append("tspan").attr("x",2*me().state.padding).text(m);g||y.attr("dy",me().state.textHeight)},"addTspan"),i=t.append("text").attr("x",2*me().state.padding).attr("y",me().state.textHeight+1.3*me().state.padding).attr("font-size",me().state.fontSize).attr("class","state-title").text(e.descriptions[0]).node().getBBox(),a=i.height,s=t.append("text").attr("x",me().state.padding).attr("y",a+me().state.padding*.4+me().state.dividerMargin+me().state.textHeight).attr("class","state-description"),l=!0,u=!0;e.descriptions.forEach(function(p){l||(r(s,p,u),u=!1),l=!1});let h=t.append("line").attr("x1",me().state.padding).attr("y1",me().state.padding+a+me().state.dividerMargin/2).attr("y2",me().state.padding+a+me().state.dividerMargin/2).attr("class","descr-divider"),f=s.node().getBBox(),d=Math.max(f.width,i.width);return h.attr("x2",d+3*me().state.padding),t.insert("rect",":first-child").attr("x",me().state.padding).attr("y",me().state.padding).attr("width",d+2*me().state.padding).attr("height",f.height+a+2*me().state.padding).attr("rx",me().state.radius),t},"drawDescrState"),gde=o((t,e,r)=>{let n=me().state.padding,i=2*me().state.padding,a=t.node().getBBox(),s=a.width,l=a.x,u=t.append("text").attr("x",0).attr("y",me().state.titleShift).attr("font-size",me().state.fontSize).attr("class","state-title").text(e.id),f=u.node().getBBox().width+i,d=Math.max(f,s);d===s&&(d=d+i);let p,m=t.node().getBBox();e.doc,p=l-n,f>s&&(p=(s-d)/2+n),Math.abs(l-m.x)s&&(p=l-(f-s)/2);let g=1-me().state.textHeight;return t.insert("rect",":first-child").attr("x",p).attr("y",g).attr("class",r?"alt-composit":"composit").attr("width",d).attr("height",m.height+me().state.textHeight+me().state.titleShift+1).attr("rx","0"),u.attr("x",p+n),f<=s&&u.attr("x",l+(d-i)/2-f/2+n),t.insert("rect",":first-child").attr("x",p).attr("y",me().state.titleShift-me().state.textHeight-me().state.padding).attr("width",d).attr("height",me().state.textHeight*3).attr("rx",me().state.radius),t.insert("rect",":first-child").attr("x",p).attr("y",me().state.titleShift-me().state.textHeight-me().state.padding).attr("width",d).attr("height",m.height+3+2*me().state.textHeight).attr("rx",me().state.radius),t},"addTitleAndBox"),wUe=o(t=>(t.append("circle").attr("class","end-state-outer").attr("r",me().state.sizeUnit+me().state.miniPadding).attr("cx",me().state.padding+me().state.sizeUnit+me().state.miniPadding).attr("cy",me().state.padding+me().state.sizeUnit+me().state.miniPadding),t.append("circle").attr("class","end-state-inner").attr("r",me().state.sizeUnit).attr("cx",me().state.padding+me().state.sizeUnit+2).attr("cy",me().state.padding+me().state.sizeUnit+2)),"drawEndState"),TUe=o((t,e)=>{let r=me().state.forkWidth,n=me().state.forkHeight;if(e.parentId){let i=r;r=n,n=i}return t.append("rect").style("stroke","black").style("fill","black").attr("width",r).attr("height",n).attr("x",me().state.padding).attr("y",me().state.padding)},"drawForkJoinState"),kUe=o((t,e,r,n)=>{let i=0,a=n.append("text");a.style("text-anchor","start"),a.attr("class","noteText");let s=t.replace(/\r\n/g,"
    ");s=s.replace(/\n/g,"
    ");let l=s.split(Ze.lineBreakRegex),u=1.25*me().state.noteMargin;for(let h of l){let f=h.trim();if(f.length>0){let d=a.append("tspan");if(d.text(f),u===0){let p=d.node().getBBox();u+=p.height}i+=u,d.attr("x",e+me().state.noteMargin),d.attr("y",r+i+1.25*me().state.noteMargin)}}return{textWidth:a.node().getBBox().width,textHeight:i}},"_drawLongText"),EUe=o((t,e)=>{e.attr("class","state-note");let r=e.append("rect").attr("x",0).attr("y",me().state.padding),n=e.append("g"),{textWidth:i,textHeight:a}=kUe(t,0,0,n);return r.attr("height",a+2*me().state.noteMargin),r.attr("width",i+me().state.noteMargin*2),r},"drawNote"),iP=o(function(t,e){let r=e.id,n={id:r,label:e.id,width:0,height:0},i=t.append("g").attr("id",r).attr("class","stateGroup");e.type==="start"&&yUe(i),e.type==="end"&&wUe(i),(e.type==="fork"||e.type==="join")&&TUe(i,e),e.type==="note"&&EUe(e.note.text,i),e.type==="divider"&&vUe(i),e.type==="default"&&e.descriptions.length===0&&xUe(i,e),e.type==="default"&&e.descriptions.length>0&&bUe(i,e);let a=i.node().getBBox();return n.width=a.width+2*me().state.padding,n.height=a.height+2*me().state.padding,dde.set(r,n),n},"drawState"),mde=0,yde=o(function(t,e,r){let n=o(function(u){switch(u){case Qo.relationType.AGGREGATION:return"aggregation";case Qo.relationType.EXTENSION:return"extension";case Qo.relationType.COMPOSITION:return"composition";case Qo.relationType.DEPENDENCY:return"dependency"}},"getRelationType");e.points=e.points.filter(u=>!Number.isNaN(u.y));let i=e.points,a=wl().x(function(u){return u.x}).y(function(u){return u.y}).curve(Do),s=t.append("path").attr("d",a(i)).attr("id","edge"+mde).attr("class","transition"),l="";if(me().state.arrowMarkerAbsolute&&(l=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,l=l.replace(/\(/g,"\\("),l=l.replace(/\)/g,"\\)")),s.attr("marker-end","url("+l+"#"+n(Qo.relationType.DEPENDENCY)+"End)"),r.title!==void 0){let u=t.append("g").attr("class","stateLabel"),{x:h,y:f}=Gt.calcLabelPosition(e.points),d=Ze.getRows(r.title),p=0,m=[],g=0,y=0;for(let b=0;b<=d.length;b++){let w=u.append("text").attr("text-anchor","middle").text(d[b]).attr("x",h).attr("y",f+p),C=w.node().getBBox();g=Math.max(g,C.width),y=Math.min(y,C.x),Y.info(C.x,h,f+p),p===0&&(p=w.node().getBBox().height,Y.info("Title height",p,f)),m.push(w)}let v=p*d.length;if(d.length>1){let b=(d.length-1)*p*.5;m.forEach((w,C)=>w.attr("y",f+C*p-b)),v=p*d.length}let x=u.node().getBBox();u.insert("rect",":first-child").attr("class","box").attr("x",h-g/2-me().state.padding/2).attr("y",f-v/2-me().state.padding/2-3.5).attr("width",g+me().state.padding).attr("height",v+me().state.padding),Y.info(x)}mde++},"drawEdge")});var fo,aP,SUe,CUe,AUe,_Ue,xde,bde,wde=N(()=>{"use strict";dr();gR();Vo();vt();gr();vde();zt();Ei();aP={},SUe=o(function(){},"setConf"),CUe=o(function(t){t.append("defs").append("marker").attr("id","dependencyEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},"insertMarkers"),AUe=o(function(t,e,r,n){fo=me().state;let i=me().securityLevel,a;i==="sandbox"&&(a=Ge("#i"+e));let s=i==="sandbox"?Ge(a.nodes()[0].contentDocument.body):Ge("body"),l=i==="sandbox"?a.nodes()[0].contentDocument:document;Y.debug("Rendering diagram "+t);let u=s.select(`[id='${e}']`);CUe(u);let h=n.db.getRootDoc();xde(h,u,void 0,!1,s,l,n);let f=fo.padding,d=u.node().getBBox(),p=d.width+f*2,m=d.height+f*2,g=p*1.75;vn(u,m,g,fo.useMaxWidth),u.attr("viewBox",`${d.x-fo.padding} ${d.y-fo.padding} `+p+" "+m)},"draw"),_Ue=o(t=>t?t.length*fo.fontSizeFactor:1,"getLabelWidth"),xde=o((t,e,r,n,i,a,s)=>{let l=new sn({compound:!0,multigraph:!0}),u,h=!0;for(u=0;u{let T=C.parentElement,E=0,A=0;T&&(T.parentElement&&(E=T.parentElement.getBBox().width),A=parseInt(T.getAttribute("data-x-shift"),10),Number.isNaN(A)&&(A=0)),C.setAttribute("x1",0-A+8),C.setAttribute("x2",E-A-8)})):Y.debug("No Node "+b+": "+JSON.stringify(l.node(b)))});let v=y.getBBox();l.edges().forEach(function(b){b!==void 0&&l.edge(b)!==void 0&&(Y.debug("Edge "+b.v+" -> "+b.w+": "+JSON.stringify(l.edge(b))),yde(e,l.edge(b),l.edge(b).relation))}),v=y.getBBox();let x={id:r||"root",label:r||"root",width:0,height:0};return x.width=v.width+2*fo.padding,x.height=v.height+2*fo.padding,Y.debug("Doc rendered",x,l),x},"renderDoc"),bde={setConf:SUe,draw:AUe}});var Tde={};hr(Tde,{diagram:()=>DUe});var DUe,kde=N(()=>{"use strict";$O();H6();rP();wde();DUe={parser:I6,get db(){return new Qo(1)},renderer:bde,styles:W6,init:o(t=>{t.state||(t.state={}),t.state.arrowMarkerAbsolute=t.arrowMarkerAbsolute},"init")}});var Cde={};hr(Cde,{diagram:()=>MUe});var MUe,Ade=N(()=>{"use strict";$O();H6();rP();eP();MUe={parser:I6,get db(){return new Qo(2)},renderer:ide,styles:W6,init:o(t=>{t.state||(t.state={}),t.state.arrowMarkerAbsolute=t.arrowMarkerAbsolute},"init")}});var sP,Lde,Rde=N(()=>{"use strict";sP=function(){var t=o(function(d,p,m,g){for(m=m||{},g=d.length;g--;m[d[g]]=p);return m},"o"),e=[6,8,10,11,12,14,16,17,18],r=[1,9],n=[1,10],i=[1,11],a=[1,12],s=[1,13],l=[1,14],u={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,journey:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,title:11,acc_title:12,acc_title_value:13,acc_descr:14,acc_descr_value:15,acc_descr_multiline_value:16,section:17,taskName:18,taskData:19,$accept:0,$end:1},terminals_:{2:"error",4:"journey",6:"EOF",8:"SPACE",10:"NEWLINE",11:"title",12:"acc_title",13:"acc_title_value",14:"acc_descr",15:"acc_descr_value",16:"acc_descr_multiline_value",17:"section",18:"taskName",19:"taskData"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,2]],performAction:o(function(p,m,g,y,v,x,b){var w=x.length-1;switch(v){case 1:return x[w-1];case 2:this.$=[];break;case 3:x[w-1].push(x[w]),this.$=x[w-1];break;case 4:case 5:this.$=x[w];break;case 6:case 7:this.$=[];break;case 8:y.setDiagramTitle(x[w].substr(6)),this.$=x[w].substr(6);break;case 9:this.$=x[w].trim(),y.setAccTitle(this.$);break;case 10:case 11:this.$=x[w].trim(),y.setAccDescription(this.$);break;case 12:y.addSection(x[w].substr(8)),this.$=x[w].substr(8);break;case 13:y.addTask(x[w-1],x[w]),this.$="task";break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},t(e,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:r,12:n,14:i,16:a,17:s,18:l},t(e,[2,7],{1:[2,1]}),t(e,[2,3]),{9:15,11:r,12:n,14:i,16:a,17:s,18:l},t(e,[2,5]),t(e,[2,6]),t(e,[2,8]),{13:[1,16]},{15:[1,17]},t(e,[2,11]),t(e,[2,12]),{19:[1,18]},t(e,[2,4]),t(e,[2,9]),t(e,[2,10]),t(e,[2,13])],defaultActions:{},parseError:o(function(p,m){if(m.recoverable)this.trace(p);else{var g=new Error(p);throw g.hash=m,g}},"parseError"),parse:o(function(p){var m=this,g=[0],y=[],v=[null],x=[],b=this.table,w="",C=0,T=0,E=0,A=2,S=1,_=x.slice.call(arguments,1),I=Object.create(this.lexer),D={yy:{}};for(var k in this.yy)Object.prototype.hasOwnProperty.call(this.yy,k)&&(D.yy[k]=this.yy[k]);I.setInput(p,D.yy),D.yy.lexer=I,D.yy.parser=this,typeof I.yylloc>"u"&&(I.yylloc={});var L=I.yylloc;x.push(L);var R=I.options&&I.options.ranges;typeof D.yy.parseError=="function"?this.parseError=D.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function O(K){g.length=g.length-2*K,v.length=v.length-K,x.length=x.length-K}o(O,"popStack");function M(){var K;return K=y.pop()||I.lex()||S,typeof K!="number"&&(K instanceof Array&&(y=K,K=y.pop()),K=m.symbols_[K]||K),K}o(M,"lex");for(var B,F,P,z,$,H,Q={},j,ie,ne,le;;){if(P=g[g.length-1],this.defaultActions[P]?z=this.defaultActions[P]:((B===null||typeof B>"u")&&(B=M()),z=b[P]&&b[P][B]),typeof z>"u"||!z.length||!z[0]){var he="";le=[];for(j in b[P])this.terminals_[j]&&j>A&&le.push("'"+this.terminals_[j]+"'");I.showPosition?he="Parse error on line "+(C+1)+`: +`+I.showPosition()+` +Expecting `+le.join(", ")+", got '"+(this.terminals_[B]||B)+"'":he="Parse error on line "+(C+1)+": Unexpected "+(B==S?"end of input":"'"+(this.terminals_[B]||B)+"'"),this.parseError(he,{text:I.match,token:this.terminals_[B]||B,line:I.yylineno,loc:L,expected:le})}if(z[0]instanceof Array&&z.length>1)throw new Error("Parse Error: multiple actions possible at state: "+P+", token: "+B);switch(z[0]){case 1:g.push(B),v.push(I.yytext),x.push(I.yylloc),g.push(z[1]),B=null,F?(B=F,F=null):(T=I.yyleng,w=I.yytext,C=I.yylineno,L=I.yylloc,E>0&&E--);break;case 2:if(ie=this.productions_[z[1]][1],Q.$=v[v.length-ie],Q._$={first_line:x[x.length-(ie||1)].first_line,last_line:x[x.length-1].last_line,first_column:x[x.length-(ie||1)].first_column,last_column:x[x.length-1].last_column},R&&(Q._$.range=[x[x.length-(ie||1)].range[0],x[x.length-1].range[1]]),H=this.performAction.apply(Q,[w,T,C,D.yy,z[1],v,x].concat(_)),typeof H<"u")return H;ie&&(g=g.slice(0,-1*ie*2),v=v.slice(0,-1*ie),x=x.slice(0,-1*ie)),g.push(this.productions_[z[1]][0]),v.push(Q.$),x.push(Q._$),ne=b[g[g.length-2]][g[g.length-1]],g.push(ne);break;case 3:return!0}}return!0},"parse")},h=function(){var d={EOF:1,parseError:o(function(m,g){if(this.yy.parser)this.yy.parser.parseError(m,g);else throw new Error(m)},"parseError"),setInput:o(function(p,m){return this.yy=m||this.yy||{},this._input=p,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var p=this._input[0];this.yytext+=p,this.yyleng++,this.offset++,this.match+=p,this.matched+=p;var m=p.match(/(?:\r\n?|\n).*/g);return m?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),p},"input"),unput:o(function(p){var m=p.length,g=p.split(/(?:\r\n?|\n)/g);this._input=p+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-m),this.offset-=m;var y=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),g.length-1&&(this.yylineno-=g.length-1);var v=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:g?(g.length===y.length?this.yylloc.first_column:0)+y[y.length-g.length].length-g[0].length:this.yylloc.first_column-m},this.options.ranges&&(this.yylloc.range=[v[0],v[0]+this.yyleng-m]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(p){this.unput(this.match.slice(p))},"less"),pastInput:o(function(){var p=this.matched.substr(0,this.matched.length-this.match.length);return(p.length>20?"...":"")+p.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var p=this.match;return p.length<20&&(p+=this._input.substr(0,20-p.length)),(p.substr(0,20)+(p.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var p=this.pastInput(),m=new Array(p.length+1).join("-");return p+this.upcomingInput()+` +`+m+"^"},"showPosition"),test_match:o(function(p,m){var g,y,v;if(this.options.backtrack_lexer&&(v={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(v.yylloc.range=this.yylloc.range.slice(0))),y=p[0].match(/(?:\r\n?|\n).*/g),y&&(this.yylineno+=y.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:y?y[y.length-1].length-y[y.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+p[0].length},this.yytext+=p[0],this.match+=p[0],this.matches=p,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(p[0].length),this.matched+=p[0],g=this.performAction.call(this,this.yy,this,m,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),g)return g;if(this._backtrack){for(var x in v)this[x]=v[x];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var p,m,g,y;this._more||(this.yytext="",this.match="");for(var v=this._currentRules(),x=0;xm[0].length)){if(m=g,y=x,this.options.backtrack_lexer){if(p=this.test_match(g,v[x]),p!==!1)return p;if(this._backtrack){m=!1;continue}else return!1}else if(!this.options.flex)break}return m?(p=this.test_match(m,v[y]),p!==!1?p:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var m=this.next();return m||this.lex()},"lex"),begin:o(function(m){this.conditionStack.push(m)},"begin"),popState:o(function(){var m=this.conditionStack.length-1;return m>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(m){return m=this.conditionStack.length-1-Math.abs(m||0),m>=0?this.conditionStack[m]:"INITIAL"},"topState"),pushState:o(function(m){this.begin(m)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(m,g,y,v){var x=v;switch(y){case 0:break;case 1:break;case 2:return 10;case 3:break;case 4:break;case 5:return 4;case 6:return 11;case 7:return this.begin("acc_title"),12;break;case 8:return this.popState(),"acc_title_value";break;case 9:return this.begin("acc_descr"),14;break;case 10:return this.popState(),"acc_descr_value";break;case 11:this.begin("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 17;case 15:return 18;case 16:return 19;case 17:return":";case 18:return 6;case 19:return"INVALID"}},"anonymous"),rules:[/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:journey\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:section\s[^#:\n;]+)/i,/^(?:[^#:\n;]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,9,11,14,15,16,17,18,19],inclusive:!0}}};return d}();u.lexer=h;function f(){this.yy={}}return o(f,"Parser"),f.prototype=u,u.Parser=f,new f}();sP.parser=sP;Lde=sP});var M1,oP,Sb,Cb,BUe,FUe,$Ue,zUe,GUe,VUe,UUe,Nde,HUe,lP,Mde=N(()=>{"use strict";zt();mi();M1="",oP=[],Sb=[],Cb=[],BUe=o(function(){oP.length=0,Sb.length=0,M1="",Cb.length=0,Ar()},"clear"),FUe=o(function(t){M1=t,oP.push(t)},"addSection"),$Ue=o(function(){return oP},"getSections"),zUe=o(function(){let t=Nde(),e=100,r=0;for(;!t&&r{r.people&&t.push(...r.people)}),[...new Set(t)].sort()},"updateActors"),VUe=o(function(t,e){let r=e.substr(1).split(":"),n=0,i=[];r.length===1?(n=Number(r[0]),i=[]):(n=Number(r[0]),i=r[1].split(","));let a=i.map(l=>l.trim()),s={section:M1,type:M1,people:a,task:t,score:n};Cb.push(s)},"addTask"),UUe=o(function(t){let e={section:M1,type:M1,description:t,task:t,classes:[]};Sb.push(e)},"addTaskOrg"),Nde=o(function(){let t=o(function(r){return Cb[r].processed},"compileTask"),e=!0;for(let[r,n]of Cb.entries())t(r),e=e&&n.processed;return e},"compileTasks"),HUe=o(function(){return GUe()},"getActors"),lP={getConfig:o(()=>me().journey,"getConfig"),clear:BUe,setDiagramTitle:$r,getDiagramTitle:Ir,setAccTitle:Lr,getAccTitle:Rr,setAccDescription:Nr,getAccDescription:Mr,addSection:FUe,getSections:$Ue,getTasks:zUe,addTask:VUe,addTaskOrg:UUe,getActors:HUe}});var WUe,Ide,Ode=N(()=>{"use strict";WUe=o(t=>`.label { + font-family: ${t.fontFamily}; + color: ${t.textColor}; + } + .mouth { + stroke: #666; + } + + line { + stroke: ${t.textColor} + } + + .legend { + fill: ${t.textColor}; + font-family: ${t.fontFamily}; + } + + .label text { + fill: #333; + } + .label { + color: ${t.textColor} + } + + .face { + ${t.faceColor?`fill: ${t.faceColor}`:"fill: #FFF8DC"}; + stroke: #999; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${t.mainBkg}; + stroke: ${t.nodeBorder}; + stroke-width: 1px; + } + + .node .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + .arrowheadPath { + fill: ${t.arrowheadColor}; + } + + .edgePath .path { + stroke: ${t.lineColor}; + stroke-width: 1.5px; + } + + .flowchart-link { + stroke: ${t.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${t.edgeLabelBackground}; + rect { + opacity: 0.5; + } + text-align: center; + } + + .cluster rect { + } + + .cluster text { + fill: ${t.titleColor}; + } + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${t.fontFamily}; + font-size: 12px; + background: ${t.tertiaryColor}; + border: 1px solid ${t.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .task-type-0, .section-type-0 { + ${t.fillType0?`fill: ${t.fillType0}`:""}; + } + .task-type-1, .section-type-1 { + ${t.fillType0?`fill: ${t.fillType1}`:""}; + } + .task-type-2, .section-type-2 { + ${t.fillType0?`fill: ${t.fillType2}`:""}; + } + .task-type-3, .section-type-3 { + ${t.fillType0?`fill: ${t.fillType3}`:""}; + } + .task-type-4, .section-type-4 { + ${t.fillType0?`fill: ${t.fillType4}`:""}; + } + .task-type-5, .section-type-5 { + ${t.fillType0?`fill: ${t.fillType5}`:""}; + } + .task-type-6, .section-type-6 { + ${t.fillType0?`fill: ${t.fillType6}`:""}; + } + .task-type-7, .section-type-7 { + ${t.fillType0?`fill: ${t.fillType7}`:""}; + } + + .actor-0 { + ${t.actor0?`fill: ${t.actor0}`:""}; + } + .actor-1 { + ${t.actor1?`fill: ${t.actor1}`:""}; + } + .actor-2 { + ${t.actor2?`fill: ${t.actor2}`:""}; + } + .actor-3 { + ${t.actor3?`fill: ${t.actor3}`:""}; + } + .actor-4 { + ${t.actor4?`fill: ${t.actor4}`:""}; + } + .actor-5 { + ${t.actor5?`fill: ${t.actor5}`:""}; + } +`,"getStyles"),Ide=WUe});var cP,qUe,Bde,Fde,YUe,XUe,Pde,jUe,KUe,$de,QUe,I1,zde=N(()=>{"use strict";dr();Wv();cP=o(function(t,e){return kd(t,e)},"drawRect"),qUe=o(function(t,e){let n=t.append("circle").attr("cx",e.cx).attr("cy",e.cy).attr("class","face").attr("r",15).attr("stroke-width",2).attr("overflow","visible"),i=t.append("g");i.append("circle").attr("cx",e.cx-15/3).attr("cy",e.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666"),i.append("circle").attr("cx",e.cx+15/3).attr("cy",e.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666");function a(u){let h=bl().startAngle(Math.PI/2).endAngle(3*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);u.append("path").attr("class","mouth").attr("d",h).attr("transform","translate("+e.cx+","+(e.cy+2)+")")}o(a,"smile");function s(u){let h=bl().startAngle(3*Math.PI/2).endAngle(5*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);u.append("path").attr("class","mouth").attr("d",h).attr("transform","translate("+e.cx+","+(e.cy+7)+")")}o(s,"sad");function l(u){u.append("line").attr("class","mouth").attr("stroke",2).attr("x1",e.cx-5).attr("y1",e.cy+7).attr("x2",e.cx+5).attr("y2",e.cy+7).attr("class","mouth").attr("stroke-width","1px").attr("stroke","#666")}return o(l,"ambivalent"),e.score>3?a(i):e.score<3?s(i):l(i),n},"drawFace"),Bde=o(function(t,e){let r=t.append("circle");return r.attr("cx",e.cx),r.attr("cy",e.cy),r.attr("class","actor-"+e.pos),r.attr("fill",e.fill),r.attr("stroke",e.stroke),r.attr("r",e.r),r.class!==void 0&&r.attr("class",r.class),e.title!==void 0&&r.append("title").text(e.title),r},"drawCircle"),Fde=o(function(t,e){return Nq(t,e)},"drawText"),YUe=o(function(t,e){function r(i,a,s,l,u){return i+","+a+" "+(i+s)+","+a+" "+(i+s)+","+(a+l-u)+" "+(i+s-u*1.2)+","+(a+l)+" "+i+","+(a+l)}o(r,"genPoints");let n=t.append("polygon");n.attr("points",r(e.x,e.y,50,20,7)),n.attr("class","labelBox"),e.y=e.y+e.labelMargin,e.x=e.x+.5*e.labelMargin,Fde(t,e)},"drawLabel"),XUe=o(function(t,e,r){let n=t.append("g"),i=Tl();i.x=e.x,i.y=e.y,i.fill=e.fill,i.width=r.width*e.taskCount+r.diagramMarginX*(e.taskCount-1),i.height=r.height,i.class="journey-section section-type-"+e.num,i.rx=3,i.ry=3,cP(n,i),$de(r)(e.text,n,i.x,i.y,i.width,i.height,{class:"journey-section section-type-"+e.num},r,e.colour)},"drawSection"),Pde=-1,jUe=o(function(t,e,r){let n=e.x+r.width/2,i=t.append("g");Pde++;let a=300+5*30;i.append("line").attr("id","task"+Pde).attr("x1",n).attr("y1",e.y).attr("x2",n).attr("y2",a).attr("class","task-line").attr("stroke-width","1px").attr("stroke-dasharray","4 2").attr("stroke","#666"),qUe(i,{cx:n,cy:300+(5-e.score)*30,score:e.score});let s=Tl();s.x=e.x,s.y=e.y,s.fill=e.fill,s.width=r.width,s.height=r.height,s.class="task task-type-"+e.num,s.rx=3,s.ry=3,cP(i,s);let l=e.x+14;e.people.forEach(u=>{let h=e.actors[u].color,f={cx:l,cy:e.y,r:7,fill:h,stroke:"#000",title:u,pos:e.actors[u].position};Bde(i,f),l+=10}),$de(r)(e.task,i,s.x,s.y,s.width,s.height,{class:"task"},r,e.colour)},"drawTask"),KUe=o(function(t,e){q5(t,e)},"drawBackgroundRect"),$de=function(){function t(i,a,s,l,u,h,f,d){let p=a.append("text").attr("x",s+u/2).attr("y",l+h/2+5).style("font-color",d).style("text-anchor","middle").text(i);n(p,f)}o(t,"byText");function e(i,a,s,l,u,h,f,d,p){let{taskFontSize:m,taskFontFamily:g}=d,y=i.split(//gi);for(let v=0;v{let i=ju[n].color,a={cx:20,cy:r,r:7,fill:i,stroke:"#000",pos:ju[n].position};I1.drawCircle(t,a);let s={x:40,y:r+7,fill:"#666",text:n,textMargin:e.boxTextMargin|5};I1.drawText(t,s),r+=20})}var ZUe,ju,q6,Np,eHe,Zo,uP,Gde,tHe,hP,Vde=N(()=>{"use strict";dr();zde();zt();Ei();ZUe=o(function(t){Object.keys(t).forEach(function(r){q6[r]=t[r]})},"setConf"),ju={};o(JUe,"drawActorLegend");q6=me().journey,Np=q6.leftMargin,eHe=o(function(t,e,r,n){let i=me().journey,a=me().securityLevel,s;a==="sandbox"&&(s=Ge("#i"+e));let l=a==="sandbox"?Ge(s.nodes()[0].contentDocument.body):Ge("body");Zo.init();let u=l.select("#"+e);I1.initGraphics(u);let h=n.db.getTasks(),f=n.db.getDiagramTitle(),d=n.db.getActors();for(let x in ju)delete ju[x];let p=0;d.forEach(x=>{ju[x]={color:i.actorColours[p%i.actorColours.length],position:p},p++}),JUe(u),Zo.insert(0,0,Np,Object.keys(ju).length*50),tHe(u,h,0);let m=Zo.getBounds();f&&u.append("text").text(f).attr("x",Np).attr("font-size","4ex").attr("font-weight","bold").attr("y",25);let g=m.stopy-m.starty+2*i.diagramMarginY,y=Np+m.stopx+2*i.diagramMarginX;vn(u,g,y,i.useMaxWidth),u.append("line").attr("x1",Np).attr("y1",i.height*4).attr("x2",y-Np-4).attr("y2",i.height*4).attr("stroke-width",4).attr("stroke","black").attr("marker-end","url(#arrowhead)");let v=f?70:0;u.attr("viewBox",`${m.startx} -25 ${y} ${g+v}`),u.attr("preserveAspectRatio","xMinYMin meet"),u.attr("height",g+v+25)},"draw"),Zo={data:{startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},verticalPos:0,sequenceItems:[],init:o(function(){this.sequenceItems=[],this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0},"init"),updateVal:o(function(t,e,r,n){t[e]===void 0?t[e]=r:t[e]=n(r,t[e])},"updateVal"),updateBounds:o(function(t,e,r,n){let i=me().journey,a=this,s=0;function l(u){return o(function(f){s++;let d=a.sequenceItems.length-s+1;a.updateVal(f,"starty",e-d*i.boxMargin,Math.min),a.updateVal(f,"stopy",n+d*i.boxMargin,Math.max),a.updateVal(Zo.data,"startx",t-d*i.boxMargin,Math.min),a.updateVal(Zo.data,"stopx",r+d*i.boxMargin,Math.max),u!=="activation"&&(a.updateVal(f,"startx",t-d*i.boxMargin,Math.min),a.updateVal(f,"stopx",r+d*i.boxMargin,Math.max),a.updateVal(Zo.data,"starty",e-d*i.boxMargin,Math.min),a.updateVal(Zo.data,"stopy",n+d*i.boxMargin,Math.max))},"updateItemBounds")}o(l,"updateFn"),this.sequenceItems.forEach(l())},"updateBounds"),insert:o(function(t,e,r,n){let i=Math.min(t,r),a=Math.max(t,r),s=Math.min(e,n),l=Math.max(e,n);this.updateVal(Zo.data,"startx",i,Math.min),this.updateVal(Zo.data,"starty",s,Math.min),this.updateVal(Zo.data,"stopx",a,Math.max),this.updateVal(Zo.data,"stopy",l,Math.max),this.updateBounds(i,s,a,l)},"insert"),bumpVerticalPos:o(function(t){this.verticalPos=this.verticalPos+t,this.data.stopy=this.verticalPos},"bumpVerticalPos"),getVerticalPos:o(function(){return this.verticalPos},"getVerticalPos"),getBounds:o(function(){return this.data},"getBounds")},uP=q6.sectionFills,Gde=q6.sectionColours,tHe=o(function(t,e,r){let n=me().journey,i="",a=n.height*2+n.diagramMarginY,s=r+a,l=0,u="#CCC",h="black",f=0;for(let[d,p]of e.entries()){if(i!==p.section){u=uP[l%uP.length],f=l%uP.length,h=Gde[l%Gde.length];let g=0,y=p.section;for(let x=d;x(ju[y]&&(g[y]=ju[y]),g),{});p.x=d*n.taskMargin+d*n.width+Np,p.y=s,p.width=n.diagramMarginX,p.height=n.diagramMarginY,p.colour=h,p.fill=u,p.num=f,p.actors=m,I1.drawTask(t,p,n),Zo.insert(p.x,p.y,p.x+p.width+n.taskMargin,300+5*30)}},"drawTasks"),hP={setConf:ZUe,draw:eHe}});var Ude={};hr(Ude,{diagram:()=>rHe});var rHe,Hde=N(()=>{"use strict";Rde();Mde();Ode();Vde();rHe={parser:Lde,db:lP,renderer:hP,styles:Ide,init:o(t=>{hP.setConf(t.journey),lP.clear()},"init")}});var dP,Qde,Zde=N(()=>{"use strict";dP=function(){var t=o(function(p,m,g,y){for(g=g||{},y=p.length;y--;g[p[y]]=m);return g},"o"),e=[6,8,10,11,12,14,16,17,20,21],r=[1,9],n=[1,10],i=[1,11],a=[1,12],s=[1,13],l=[1,16],u=[1,17],h={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,timeline:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,title:11,acc_title:12,acc_title_value:13,acc_descr:14,acc_descr_value:15,acc_descr_multiline_value:16,section:17,period_statement:18,event_statement:19,period:20,event:21,$accept:0,$end:1},terminals_:{2:"error",4:"timeline",6:"EOF",8:"SPACE",10:"NEWLINE",11:"title",12:"acc_title",13:"acc_title_value",14:"acc_descr",15:"acc_descr_value",16:"acc_descr_multiline_value",17:"section",20:"period",21:"event"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,1],[9,1],[18,1],[19,1]],performAction:o(function(m,g,y,v,x,b,w){var C=b.length-1;switch(x){case 1:return b[C-1];case 2:this.$=[];break;case 3:b[C-1].push(b[C]),this.$=b[C-1];break;case 4:case 5:this.$=b[C];break;case 6:case 7:this.$=[];break;case 8:v.getCommonDb().setDiagramTitle(b[C].substr(6)),this.$=b[C].substr(6);break;case 9:this.$=b[C].trim(),v.getCommonDb().setAccTitle(this.$);break;case 10:case 11:this.$=b[C].trim(),v.getCommonDb().setAccDescription(this.$);break;case 12:v.addSection(b[C].substr(8)),this.$=b[C].substr(8);break;case 15:v.addTask(b[C],0,""),this.$=b[C];break;case 16:v.addEvent(b[C].substr(2)),this.$=b[C];break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},t(e,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:r,12:n,14:i,16:a,17:s,18:14,19:15,20:l,21:u},t(e,[2,7],{1:[2,1]}),t(e,[2,3]),{9:18,11:r,12:n,14:i,16:a,17:s,18:14,19:15,20:l,21:u},t(e,[2,5]),t(e,[2,6]),t(e,[2,8]),{13:[1,19]},{15:[1,20]},t(e,[2,11]),t(e,[2,12]),t(e,[2,13]),t(e,[2,14]),t(e,[2,15]),t(e,[2,16]),t(e,[2,4]),t(e,[2,9]),t(e,[2,10])],defaultActions:{},parseError:o(function(m,g){if(g.recoverable)this.trace(m);else{var y=new Error(m);throw y.hash=g,y}},"parseError"),parse:o(function(m){var g=this,y=[0],v=[],x=[null],b=[],w=this.table,C="",T=0,E=0,A=0,S=2,_=1,I=b.slice.call(arguments,1),D=Object.create(this.lexer),k={yy:{}};for(var L in this.yy)Object.prototype.hasOwnProperty.call(this.yy,L)&&(k.yy[L]=this.yy[L]);D.setInput(m,k.yy),k.yy.lexer=D,k.yy.parser=this,typeof D.yylloc>"u"&&(D.yylloc={});var R=D.yylloc;b.push(R);var O=D.options&&D.options.ranges;typeof k.yy.parseError=="function"?this.parseError=k.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function M(X){y.length=y.length-2*X,x.length=x.length-X,b.length=b.length-X}o(M,"popStack");function B(){var X;return X=v.pop()||D.lex()||_,typeof X!="number"&&(X instanceof Array&&(v=X,X=v.pop()),X=g.symbols_[X]||X),X}o(B,"lex");for(var F,P,z,$,H,Q,j={},ie,ne,le,he;;){if(z=y[y.length-1],this.defaultActions[z]?$=this.defaultActions[z]:((F===null||typeof F>"u")&&(F=B()),$=w[z]&&w[z][F]),typeof $>"u"||!$.length||!$[0]){var K="";he=[];for(ie in w[z])this.terminals_[ie]&&ie>S&&he.push("'"+this.terminals_[ie]+"'");D.showPosition?K="Parse error on line "+(T+1)+`: +`+D.showPosition()+` +Expecting `+he.join(", ")+", got '"+(this.terminals_[F]||F)+"'":K="Parse error on line "+(T+1)+": Unexpected "+(F==_?"end of input":"'"+(this.terminals_[F]||F)+"'"),this.parseError(K,{text:D.match,token:this.terminals_[F]||F,line:D.yylineno,loc:R,expected:he})}if($[0]instanceof Array&&$.length>1)throw new Error("Parse Error: multiple actions possible at state: "+z+", token: "+F);switch($[0]){case 1:y.push(F),x.push(D.yytext),b.push(D.yylloc),y.push($[1]),F=null,P?(F=P,P=null):(E=D.yyleng,C=D.yytext,T=D.yylineno,R=D.yylloc,A>0&&A--);break;case 2:if(ne=this.productions_[$[1]][1],j.$=x[x.length-ne],j._$={first_line:b[b.length-(ne||1)].first_line,last_line:b[b.length-1].last_line,first_column:b[b.length-(ne||1)].first_column,last_column:b[b.length-1].last_column},O&&(j._$.range=[b[b.length-(ne||1)].range[0],b[b.length-1].range[1]]),Q=this.performAction.apply(j,[C,E,T,k.yy,$[1],x,b].concat(I)),typeof Q<"u")return Q;ne&&(y=y.slice(0,-1*ne*2),x=x.slice(0,-1*ne),b=b.slice(0,-1*ne)),y.push(this.productions_[$[1]][0]),x.push(j.$),b.push(j._$),le=w[y[y.length-2]][y[y.length-1]],y.push(le);break;case 3:return!0}}return!0},"parse")},f=function(){var p={EOF:1,parseError:o(function(g,y){if(this.yy.parser)this.yy.parser.parseError(g,y);else throw new Error(g)},"parseError"),setInput:o(function(m,g){return this.yy=g||this.yy||{},this._input=m,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var m=this._input[0];this.yytext+=m,this.yyleng++,this.offset++,this.match+=m,this.matched+=m;var g=m.match(/(?:\r\n?|\n).*/g);return g?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),m},"input"),unput:o(function(m){var g=m.length,y=m.split(/(?:\r\n?|\n)/g);this._input=m+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-g),this.offset-=g;var v=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),y.length-1&&(this.yylineno-=y.length-1);var x=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:y?(y.length===v.length?this.yylloc.first_column:0)+v[v.length-y.length].length-y[0].length:this.yylloc.first_column-g},this.options.ranges&&(this.yylloc.range=[x[0],x[0]+this.yyleng-g]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(m){this.unput(this.match.slice(m))},"less"),pastInput:o(function(){var m=this.matched.substr(0,this.matched.length-this.match.length);return(m.length>20?"...":"")+m.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var m=this.match;return m.length<20&&(m+=this._input.substr(0,20-m.length)),(m.substr(0,20)+(m.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var m=this.pastInput(),g=new Array(m.length+1).join("-");return m+this.upcomingInput()+` +`+g+"^"},"showPosition"),test_match:o(function(m,g){var y,v,x;if(this.options.backtrack_lexer&&(x={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(x.yylloc.range=this.yylloc.range.slice(0))),v=m[0].match(/(?:\r\n?|\n).*/g),v&&(this.yylineno+=v.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:v?v[v.length-1].length-v[v.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+m[0].length},this.yytext+=m[0],this.match+=m[0],this.matches=m,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(m[0].length),this.matched+=m[0],y=this.performAction.call(this,this.yy,this,g,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),y)return y;if(this._backtrack){for(var b in x)this[b]=x[b];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var m,g,y,v;this._more||(this.yytext="",this.match="");for(var x=this._currentRules(),b=0;bg[0].length)){if(g=y,v=b,this.options.backtrack_lexer){if(m=this.test_match(y,x[b]),m!==!1)return m;if(this._backtrack){g=!1;continue}else return!1}else if(!this.options.flex)break}return g?(m=this.test_match(g,x[v]),m!==!1?m:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var g=this.next();return g||this.lex()},"lex"),begin:o(function(g){this.conditionStack.push(g)},"begin"),popState:o(function(){var g=this.conditionStack.length-1;return g>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(g){return g=this.conditionStack.length-1-Math.abs(g||0),g>=0?this.conditionStack[g]:"INITIAL"},"topState"),pushState:o(function(g){this.begin(g)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(g,y,v,x){var b=x;switch(v){case 0:break;case 1:break;case 2:return 10;case 3:break;case 4:break;case 5:return 4;case 6:return 11;case 7:return this.begin("acc_title"),12;break;case 8:return this.popState(),"acc_title_value";break;case 9:return this.begin("acc_descr"),14;break;case 10:return this.popState(),"acc_descr_value";break;case 11:this.begin("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 17;case 15:return 21;case 16:return 20;case 17:return 6;case 18:return"INVALID"}},"anonymous"),rules:[/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:timeline\b)/i,/^(?:title\s[^\n]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:section\s[^:\n]+)/i,/^(?::\s[^:\n]+)/i,/^(?:[^#:\n]+)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,9,11,14,15,16,17,18],inclusive:!0}}};return p}();h.lexer=f;function d(){this.yy={}}return o(d,"Parser"),d.prototype=h,h.Parser=d,new d}();dP.parser=dP;Qde=dP});var mP={};hr(mP,{addEvent:()=>ope,addSection:()=>npe,addTask:()=>spe,addTaskOrg:()=>lpe,clear:()=>rpe,default:()=>hHe,getCommonDb:()=>tpe,getSections:()=>ipe,getTasks:()=>ape});var O1,epe,pP,Y6,P1,tpe,rpe,npe,ipe,ape,spe,ope,lpe,Jde,hHe,cpe=N(()=>{"use strict";mi();O1="",epe=0,pP=[],Y6=[],P1=[],tpe=o(()=>qy,"getCommonDb"),rpe=o(function(){pP.length=0,Y6.length=0,O1="",P1.length=0,Ar()},"clear"),npe=o(function(t){O1=t,pP.push(t)},"addSection"),ipe=o(function(){return pP},"getSections"),ape=o(function(){let t=Jde(),e=100,r=0;for(;!t&&rr.id===epe-1).events.push(t)},"addEvent"),lpe=o(function(t){let e={section:O1,type:O1,description:t,task:t,classes:[]};Y6.push(e)},"addTaskOrg"),Jde=o(function(){let t=o(function(r){return P1[r].processed},"compileTask"),e=!0;for(let[r,n]of P1.entries())t(r),e=e&&n.processed;return e},"compileTasks"),hHe={clear:rpe,getCommonDb:tpe,addSection:npe,getSections:ipe,getTasks:ape,addTask:spe,addTaskOrg:lpe,addEvent:ope}});function dpe(t,e){t.each(function(){var r=Ge(this),n=r.text().split(/(\s+|
    )/).reverse(),i,a=[],s=1.1,l=r.attr("y"),u=parseFloat(r.attr("dy")),h=r.text(null).append("tspan").attr("x",0).attr("y",l).attr("dy",u+"em");for(let f=0;fe||i==="
    ")&&(a.pop(),h.text(a.join(" ").trim()),i==="
    "?a=[""]:a=[i],h=r.append("tspan").attr("x",0).attr("y",l).attr("dy",s+"em").text(i))})}var fHe,X6,dHe,pHe,hpe,mHe,gHe,upe,yHe,vHe,xHe,gP,fpe,bHe,wHe,THe,kHe,bf,ppe=N(()=>{"use strict";dr();fHe=12,X6=o(function(t,e){let r=t.append("rect");return r.attr("x",e.x),r.attr("y",e.y),r.attr("fill",e.fill),r.attr("stroke",e.stroke),r.attr("width",e.width),r.attr("height",e.height),r.attr("rx",e.rx),r.attr("ry",e.ry),e.class!==void 0&&r.attr("class",e.class),r},"drawRect"),dHe=o(function(t,e){let n=t.append("circle").attr("cx",e.cx).attr("cy",e.cy).attr("class","face").attr("r",15).attr("stroke-width",2).attr("overflow","visible"),i=t.append("g");i.append("circle").attr("cx",e.cx-15/3).attr("cy",e.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666"),i.append("circle").attr("cx",e.cx+15/3).attr("cy",e.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666");function a(u){let h=bl().startAngle(Math.PI/2).endAngle(3*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);u.append("path").attr("class","mouth").attr("d",h).attr("transform","translate("+e.cx+","+(e.cy+2)+")")}o(a,"smile");function s(u){let h=bl().startAngle(3*Math.PI/2).endAngle(5*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);u.append("path").attr("class","mouth").attr("d",h).attr("transform","translate("+e.cx+","+(e.cy+7)+")")}o(s,"sad");function l(u){u.append("line").attr("class","mouth").attr("stroke",2).attr("x1",e.cx-5).attr("y1",e.cy+7).attr("x2",e.cx+5).attr("y2",e.cy+7).attr("class","mouth").attr("stroke-width","1px").attr("stroke","#666")}return o(l,"ambivalent"),e.score>3?a(i):e.score<3?s(i):l(i),n},"drawFace"),pHe=o(function(t,e){let r=t.append("circle");return r.attr("cx",e.cx),r.attr("cy",e.cy),r.attr("class","actor-"+e.pos),r.attr("fill",e.fill),r.attr("stroke",e.stroke),r.attr("r",e.r),r.class!==void 0&&r.attr("class",r.class),e.title!==void 0&&r.append("title").text(e.title),r},"drawCircle"),hpe=o(function(t,e){let r=e.text.replace(//gi," "),n=t.append("text");n.attr("x",e.x),n.attr("y",e.y),n.attr("class","legend"),n.style("text-anchor",e.anchor),e.class!==void 0&&n.attr("class",e.class);let i=n.append("tspan");return i.attr("x",e.x+e.textMargin*2),i.text(r),n},"drawText"),mHe=o(function(t,e){function r(i,a,s,l,u){return i+","+a+" "+(i+s)+","+a+" "+(i+s)+","+(a+l-u)+" "+(i+s-u*1.2)+","+(a+l)+" "+i+","+(a+l)}o(r,"genPoints");let n=t.append("polygon");n.attr("points",r(e.x,e.y,50,20,7)),n.attr("class","labelBox"),e.y=e.y+e.labelMargin,e.x=e.x+.5*e.labelMargin,hpe(t,e)},"drawLabel"),gHe=o(function(t,e,r){let n=t.append("g"),i=gP();i.x=e.x,i.y=e.y,i.fill=e.fill,i.width=r.width,i.height=r.height,i.class="journey-section section-type-"+e.num,i.rx=3,i.ry=3,X6(n,i),fpe(r)(e.text,n,i.x,i.y,i.width,i.height,{class:"journey-section section-type-"+e.num},r,e.colour)},"drawSection"),upe=-1,yHe=o(function(t,e,r){let n=e.x+r.width/2,i=t.append("g");upe++;let a=300+5*30;i.append("line").attr("id","task"+upe).attr("x1",n).attr("y1",e.y).attr("x2",n).attr("y2",a).attr("class","task-line").attr("stroke-width","1px").attr("stroke-dasharray","4 2").attr("stroke","#666"),dHe(i,{cx:n,cy:300+(5-e.score)*30,score:e.score});let s=gP();s.x=e.x,s.y=e.y,s.fill=e.fill,s.width=r.width,s.height=r.height,s.class="task task-type-"+e.num,s.rx=3,s.ry=3,X6(i,s),fpe(r)(e.task,i,s.x,s.y,s.width,s.height,{class:"task"},r,e.colour)},"drawTask"),vHe=o(function(t,e){X6(t,{x:e.startx,y:e.starty,width:e.stopx-e.startx,height:e.stopy-e.starty,fill:e.fill,class:"rect"}).lower()},"drawBackgroundRect"),xHe=o(function(){return{x:0,y:0,fill:void 0,"text-anchor":"start",width:100,height:100,textMargin:0,rx:0,ry:0}},"getTextObj"),gP=o(function(){return{x:0,y:0,width:100,anchor:"start",height:100,rx:0,ry:0}},"getNoteRect"),fpe=function(){function t(i,a,s,l,u,h,f,d){let p=a.append("text").attr("x",s+u/2).attr("y",l+h/2+5).style("font-color",d).style("text-anchor","middle").text(i);n(p,f)}o(t,"byText");function e(i,a,s,l,u,h,f,d,p){let{taskFontSize:m,taskFontFamily:g}=d,y=i.split(//gi);for(let v=0;v{"use strict";dr();ppe();vt();zt();Ei();EHe=o(function(t,e,r,n){let i=me(),a=i.leftMargin??50;Y.debug("timeline",n.db);let s=i.securityLevel,l;s==="sandbox"&&(l=Ge("#i"+e));let h=(s==="sandbox"?Ge(l.nodes()[0].contentDocument.body):Ge("body")).select("#"+e);h.append("g");let f=n.db.getTasks(),d=n.db.getCommonDb().getDiagramTitle();Y.debug("task",f),bf.initGraphics(h);let p=n.db.getSections();Y.debug("sections",p);let m=0,g=0,y=0,v=0,x=50+a,b=50;v=50;let w=0,C=!0;p.forEach(function(_){let I={number:w,descr:_,section:w,width:150,padding:20,maxHeight:m},D=bf.getVirtualNodeHeight(h,I,i);Y.debug("sectionHeight before draw",D),m=Math.max(m,D+20)});let T=0,E=0;Y.debug("tasks.length",f.length);for(let[_,I]of f.entries()){let D={number:_,descr:I,section:I.section,width:150,padding:20,maxHeight:g},k=bf.getVirtualNodeHeight(h,D,i);Y.debug("taskHeight before draw",k),g=Math.max(g,k+20),T=Math.max(T,I.events.length);let L=0;for(let R of I.events){let O={descr:R,section:I.section,number:I.section,width:150,padding:20,maxHeight:50};L+=bf.getVirtualNodeHeight(h,O,i)}E=Math.max(E,L)}Y.debug("maxSectionHeight before draw",m),Y.debug("maxTaskHeight before draw",g),p&&p.length>0?p.forEach(_=>{let I=f.filter(R=>R.section===_),D={number:w,descr:_,section:w,width:200*Math.max(I.length,1)-50,padding:20,maxHeight:m};Y.debug("sectionNode",D);let k=h.append("g"),L=bf.drawNode(k,D,w,i);Y.debug("sectionNode output",L),k.attr("transform",`translate(${x}, ${v})`),b+=m+50,I.length>0&&mpe(h,I,w,x,b,g,i,T,E,m,!1),x+=200*Math.max(I.length,1),b=v,w++}):(C=!1,mpe(h,f,w,x,b,g,i,T,E,m,!0));let A=h.node().getBBox();Y.debug("bounds",A),d&&h.append("text").text(d).attr("x",A.width/2-a).attr("font-size","4ex").attr("font-weight","bold").attr("y",20),y=C?m+g+150:g+100,h.append("g").attr("class","lineWrapper").append("line").attr("x1",a).attr("y1",y).attr("x2",A.width+3*a).attr("y2",y).attr("stroke-width",4).attr("stroke","black").attr("marker-end","url(#arrowhead)"),Ao(void 0,h,i.timeline?.padding??50,i.timeline?.useMaxWidth??!1)},"draw"),mpe=o(function(t,e,r,n,i,a,s,l,u,h,f){for(let d of e){let p={descr:d.task,section:r,number:r,width:150,padding:20,maxHeight:a};Y.debug("taskNode",p);let m=t.append("g").attr("class","taskWrapper"),y=bf.drawNode(m,p,r,s).height;if(Y.debug("taskHeight after draw",y),m.attr("transform",`translate(${n}, ${i})`),a=Math.max(a,y),d.events){let v=t.append("g").attr("class","lineWrapper"),x=a;i+=100,x=x+SHe(t,d.events,r,n,i,s),i-=100,v.append("line").attr("x1",n+190/2).attr("y1",i+a).attr("x2",n+190/2).attr("y2",i+a+(f?a:h)+u+120).attr("stroke-width",2).attr("stroke","black").attr("marker-end","url(#arrowhead)").attr("stroke-dasharray","5,5")}n=n+200,f&&!s.timeline?.disableMulticolor&&r++}i=i-10},"drawTasks"),SHe=o(function(t,e,r,n,i,a){let s=0,l=i;i=i+100;for(let u of e){let h={descr:u,section:r,number:r,width:150,padding:20,maxHeight:50};Y.debug("eventNode",h);let f=t.append("g").attr("class","eventWrapper"),p=bf.drawNode(f,h,r,a).height;s=s+p,f.attr("transform",`translate(${n}, ${i})`),i=i+10+p}return i=l,s},"drawEvents"),gpe={setConf:o(()=>{},"setConf"),draw:EHe}});var CHe,AHe,vpe,xpe=N(()=>{"use strict";Ys();CHe=o(t=>{let e="";for(let r=0;r` + .edge { + stroke-width: 3; + } + ${CHe(t)} + .section-root rect, .section-root path, .section-root circle { + fill: ${t.git0}; + } + .section-root text { + fill: ${t.gitBranchLabel0}; + } + .icon-container { + height:100%; + display: flex; + justify-content: center; + align-items: center; + } + .edge { + fill: none; + } + .eventWrapper { + filter: brightness(120%); + } +`,"getStyles"),vpe=AHe});var bpe={};hr(bpe,{diagram:()=>_He});var _He,wpe=N(()=>{"use strict";Zde();cpe();ype();xpe();_He={db:mP,renderer:gpe,parser:Qde,styles:vpe}});var yP,Epe,Spe=N(()=>{"use strict";yP=function(){var t=o(function(C,T,E,A){for(E=E||{},A=C.length;A--;E[C[A]]=T);return E},"o"),e=[1,4],r=[1,13],n=[1,12],i=[1,15],a=[1,16],s=[1,20],l=[1,19],u=[6,7,8],h=[1,26],f=[1,24],d=[1,25],p=[6,7,11],m=[1,6,13,15,16,19,22],g=[1,33],y=[1,34],v=[1,6,7,11,13,15,16,19,22],x={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mindMap:4,spaceLines:5,SPACELINE:6,NL:7,MINDMAP:8,document:9,stop:10,EOF:11,statement:12,SPACELIST:13,node:14,ICON:15,CLASS:16,nodeWithId:17,nodeWithoutId:18,NODE_DSTART:19,NODE_DESCR:20,NODE_DEND:21,NODE_ID:22,$accept:0,$end:1},terminals_:{2:"error",6:"SPACELINE",7:"NL",8:"MINDMAP",11:"EOF",13:"SPACELIST",15:"ICON",16:"CLASS",19:"NODE_DSTART",20:"NODE_DESCR",21:"NODE_DEND",22:"NODE_ID"},productions_:[0,[3,1],[3,2],[5,1],[5,2],[5,2],[4,2],[4,3],[10,1],[10,1],[10,1],[10,2],[10,2],[9,3],[9,2],[12,2],[12,2],[12,2],[12,1],[12,1],[12,1],[12,1],[12,1],[14,1],[14,1],[18,3],[17,1],[17,4]],performAction:o(function(T,E,A,S,_,I,D){var k=I.length-1;switch(_){case 6:case 7:return S;case 8:S.getLogger().trace("Stop NL ");break;case 9:S.getLogger().trace("Stop EOF ");break;case 11:S.getLogger().trace("Stop NL2 ");break;case 12:S.getLogger().trace("Stop EOF2 ");break;case 15:S.getLogger().info("Node: ",I[k].id),S.addNode(I[k-1].length,I[k].id,I[k].descr,I[k].type);break;case 16:S.getLogger().trace("Icon: ",I[k]),S.decorateNode({icon:I[k]});break;case 17:case 21:S.decorateNode({class:I[k]});break;case 18:S.getLogger().trace("SPACELIST");break;case 19:S.getLogger().trace("Node: ",I[k].id),S.addNode(0,I[k].id,I[k].descr,I[k].type);break;case 20:S.decorateNode({icon:I[k]});break;case 25:S.getLogger().trace("node found ..",I[k-2]),this.$={id:I[k-1],descr:I[k-1],type:S.getType(I[k-2],I[k])};break;case 26:this.$={id:I[k],descr:I[k],type:S.nodeType.DEFAULT};break;case 27:S.getLogger().trace("node found ..",I[k-3]),this.$={id:I[k-3],descr:I[k-1],type:S.getType(I[k-2],I[k])};break}},"anonymous"),table:[{3:1,4:2,5:3,6:[1,5],8:e},{1:[3]},{1:[2,1]},{4:6,6:[1,7],7:[1,8],8:e},{6:r,7:[1,10],9:9,12:11,13:n,14:14,15:i,16:a,17:17,18:18,19:s,22:l},t(u,[2,3]),{1:[2,2]},t(u,[2,4]),t(u,[2,5]),{1:[2,6],6:r,12:21,13:n,14:14,15:i,16:a,17:17,18:18,19:s,22:l},{6:r,9:22,12:11,13:n,14:14,15:i,16:a,17:17,18:18,19:s,22:l},{6:h,7:f,10:23,11:d},t(p,[2,22],{17:17,18:18,14:27,15:[1,28],16:[1,29],19:s,22:l}),t(p,[2,18]),t(p,[2,19]),t(p,[2,20]),t(p,[2,21]),t(p,[2,23]),t(p,[2,24]),t(p,[2,26],{19:[1,30]}),{20:[1,31]},{6:h,7:f,10:32,11:d},{1:[2,7],6:r,12:21,13:n,14:14,15:i,16:a,17:17,18:18,19:s,22:l},t(m,[2,14],{7:g,11:y}),t(v,[2,8]),t(v,[2,9]),t(v,[2,10]),t(p,[2,15]),t(p,[2,16]),t(p,[2,17]),{20:[1,35]},{21:[1,36]},t(m,[2,13],{7:g,11:y}),t(v,[2,11]),t(v,[2,12]),{21:[1,37]},t(p,[2,25]),t(p,[2,27])],defaultActions:{2:[2,1],6:[2,2]},parseError:o(function(T,E){if(E.recoverable)this.trace(T);else{var A=new Error(T);throw A.hash=E,A}},"parseError"),parse:o(function(T){var E=this,A=[0],S=[],_=[null],I=[],D=this.table,k="",L=0,R=0,O=0,M=2,B=1,F=I.slice.call(arguments,1),P=Object.create(this.lexer),z={yy:{}};for(var $ in this.yy)Object.prototype.hasOwnProperty.call(this.yy,$)&&(z.yy[$]=this.yy[$]);P.setInput(T,z.yy),z.yy.lexer=P,z.yy.parser=this,typeof P.yylloc>"u"&&(P.yylloc={});var H=P.yylloc;I.push(H);var Q=P.options&&P.options.ranges;typeof z.yy.parseError=="function"?this.parseError=z.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function j(ae){A.length=A.length-2*ae,_.length=_.length-ae,I.length=I.length-ae}o(j,"popStack");function ie(){var ae;return ae=S.pop()||P.lex()||B,typeof ae!="number"&&(ae instanceof Array&&(S=ae,ae=S.pop()),ae=E.symbols_[ae]||ae),ae}o(ie,"lex");for(var ne,le,he,K,X,te,J={},se,ue,Z,Se;;){if(he=A[A.length-1],this.defaultActions[he]?K=this.defaultActions[he]:((ne===null||typeof ne>"u")&&(ne=ie()),K=D[he]&&D[he][ne]),typeof K>"u"||!K.length||!K[0]){var ce="";Se=[];for(se in D[he])this.terminals_[se]&&se>M&&Se.push("'"+this.terminals_[se]+"'");P.showPosition?ce="Parse error on line "+(L+1)+`: +`+P.showPosition()+` +Expecting `+Se.join(", ")+", got '"+(this.terminals_[ne]||ne)+"'":ce="Parse error on line "+(L+1)+": Unexpected "+(ne==B?"end of input":"'"+(this.terminals_[ne]||ne)+"'"),this.parseError(ce,{text:P.match,token:this.terminals_[ne]||ne,line:P.yylineno,loc:H,expected:Se})}if(K[0]instanceof Array&&K.length>1)throw new Error("Parse Error: multiple actions possible at state: "+he+", token: "+ne);switch(K[0]){case 1:A.push(ne),_.push(P.yytext),I.push(P.yylloc),A.push(K[1]),ne=null,le?(ne=le,le=null):(R=P.yyleng,k=P.yytext,L=P.yylineno,H=P.yylloc,O>0&&O--);break;case 2:if(ue=this.productions_[K[1]][1],J.$=_[_.length-ue],J._$={first_line:I[I.length-(ue||1)].first_line,last_line:I[I.length-1].last_line,first_column:I[I.length-(ue||1)].first_column,last_column:I[I.length-1].last_column},Q&&(J._$.range=[I[I.length-(ue||1)].range[0],I[I.length-1].range[1]]),te=this.performAction.apply(J,[k,R,L,z.yy,K[1],_,I].concat(F)),typeof te<"u")return te;ue&&(A=A.slice(0,-1*ue*2),_=_.slice(0,-1*ue),I=I.slice(0,-1*ue)),A.push(this.productions_[K[1]][0]),_.push(J.$),I.push(J._$),Z=D[A[A.length-2]][A[A.length-1]],A.push(Z);break;case 3:return!0}}return!0},"parse")},b=function(){var C={EOF:1,parseError:o(function(E,A){if(this.yy.parser)this.yy.parser.parseError(E,A);else throw new Error(E)},"parseError"),setInput:o(function(T,E){return this.yy=E||this.yy||{},this._input=T,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var T=this._input[0];this.yytext+=T,this.yyleng++,this.offset++,this.match+=T,this.matched+=T;var E=T.match(/(?:\r\n?|\n).*/g);return E?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),T},"input"),unput:o(function(T){var E=T.length,A=T.split(/(?:\r\n?|\n)/g);this._input=T+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-E),this.offset-=E;var S=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),A.length-1&&(this.yylineno-=A.length-1);var _=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:A?(A.length===S.length?this.yylloc.first_column:0)+S[S.length-A.length].length-A[0].length:this.yylloc.first_column-E},this.options.ranges&&(this.yylloc.range=[_[0],_[0]+this.yyleng-E]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(T){this.unput(this.match.slice(T))},"less"),pastInput:o(function(){var T=this.matched.substr(0,this.matched.length-this.match.length);return(T.length>20?"...":"")+T.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var T=this.match;return T.length<20&&(T+=this._input.substr(0,20-T.length)),(T.substr(0,20)+(T.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var T=this.pastInput(),E=new Array(T.length+1).join("-");return T+this.upcomingInput()+` +`+E+"^"},"showPosition"),test_match:o(function(T,E){var A,S,_;if(this.options.backtrack_lexer&&(_={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(_.yylloc.range=this.yylloc.range.slice(0))),S=T[0].match(/(?:\r\n?|\n).*/g),S&&(this.yylineno+=S.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:S?S[S.length-1].length-S[S.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+T[0].length},this.yytext+=T[0],this.match+=T[0],this.matches=T,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(T[0].length),this.matched+=T[0],A=this.performAction.call(this,this.yy,this,E,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),A)return A;if(this._backtrack){for(var I in _)this[I]=_[I];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var T,E,A,S;this._more||(this.yytext="",this.match="");for(var _=this._currentRules(),I=0;I<_.length;I++)if(A=this._input.match(this.rules[_[I]]),A&&(!E||A[0].length>E[0].length)){if(E=A,S=I,this.options.backtrack_lexer){if(T=this.test_match(A,_[I]),T!==!1)return T;if(this._backtrack){E=!1;continue}else return!1}else if(!this.options.flex)break}return E?(T=this.test_match(E,_[S]),T!==!1?T:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var E=this.next();return E||this.lex()},"lex"),begin:o(function(E){this.conditionStack.push(E)},"begin"),popState:o(function(){var E=this.conditionStack.length-1;return E>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(E){return E=this.conditionStack.length-1-Math.abs(E||0),E>=0?this.conditionStack[E]:"INITIAL"},"topState"),pushState:o(function(E){this.begin(E)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(E,A,S,_){var I=_;switch(S){case 0:return E.getLogger().trace("Found comment",A.yytext),6;break;case 1:return 8;case 2:this.begin("CLASS");break;case 3:return this.popState(),16;break;case 4:this.popState();break;case 5:E.getLogger().trace("Begin icon"),this.begin("ICON");break;case 6:return E.getLogger().trace("SPACELINE"),6;break;case 7:return 7;case 8:return 15;case 9:E.getLogger().trace("end icon"),this.popState();break;case 10:return E.getLogger().trace("Exploding node"),this.begin("NODE"),19;break;case 11:return E.getLogger().trace("Cloud"),this.begin("NODE"),19;break;case 12:return E.getLogger().trace("Explosion Bang"),this.begin("NODE"),19;break;case 13:return E.getLogger().trace("Cloud Bang"),this.begin("NODE"),19;break;case 14:return this.begin("NODE"),19;break;case 15:return this.begin("NODE"),19;break;case 16:return this.begin("NODE"),19;break;case 17:return this.begin("NODE"),19;break;case 18:return 13;case 19:return 22;case 20:return 11;case 21:this.begin("NSTR2");break;case 22:return"NODE_DESCR";case 23:this.popState();break;case 24:E.getLogger().trace("Starting NSTR"),this.begin("NSTR");break;case 25:return E.getLogger().trace("description:",A.yytext),"NODE_DESCR";break;case 26:this.popState();break;case 27:return this.popState(),E.getLogger().trace("node end ))"),"NODE_DEND";break;case 28:return this.popState(),E.getLogger().trace("node end )"),"NODE_DEND";break;case 29:return this.popState(),E.getLogger().trace("node end ...",A.yytext),"NODE_DEND";break;case 30:return this.popState(),E.getLogger().trace("node end (("),"NODE_DEND";break;case 31:return this.popState(),E.getLogger().trace("node end (-"),"NODE_DEND";break;case 32:return this.popState(),E.getLogger().trace("node end (-"),"NODE_DEND";break;case 33:return this.popState(),E.getLogger().trace("node end (("),"NODE_DEND";break;case 34:return this.popState(),E.getLogger().trace("node end (("),"NODE_DEND";break;case 35:return E.getLogger().trace("Long description:",A.yytext),20;break;case 36:return E.getLogger().trace("Long description:",A.yytext),20;break}},"anonymous"),rules:[/^(?:\s*%%.*)/i,/^(?:mindmap\b)/i,/^(?::::)/i,/^(?:.+)/i,/^(?:\n)/i,/^(?:::icon\()/i,/^(?:[\s]+[\n])/i,/^(?:[\n]+)/i,/^(?:[^\)]+)/i,/^(?:\))/i,/^(?:-\))/i,/^(?:\(-)/i,/^(?:\)\))/i,/^(?:\))/i,/^(?:\(\()/i,/^(?:\{\{)/i,/^(?:\()/i,/^(?:\[)/i,/^(?:[\s]+)/i,/^(?:[^\(\[\n\)\{\}]+)/i,/^(?:$)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:[^"]+)/i,/^(?:["])/i,/^(?:[\)]\))/i,/^(?:[\)])/i,/^(?:[\]])/i,/^(?:\}\})/i,/^(?:\(-)/i,/^(?:-\))/i,/^(?:\(\()/i,/^(?:\()/i,/^(?:[^\)\]\(\}]+)/i,/^(?:.+(?!\(\())/i],conditions:{CLASS:{rules:[3,4],inclusive:!1},ICON:{rules:[8,9],inclusive:!1},NSTR2:{rules:[22,23],inclusive:!1},NSTR:{rules:[25,26],inclusive:!1},NODE:{rules:[21,24,27,28,29,30,31,32,33,34,35,36],inclusive:!1},INITIAL:{rules:[0,1,2,5,6,7,10,11,12,13,14,15,16,17,18,19,20],inclusive:!0}}};return C}();x.lexer=b;function w(){this.yy={}}return o(w,"Parser"),w.prototype=x,x.Parser=w,new w}();yP.parser=yP;Epe=yP});var $l,Cpe,vP,NHe,MHe,IHe,OHe,Vi,PHe,BHe,FHe,$He,zHe,GHe,VHe,Ape,_pe=N(()=>{"use strict";zt();gr();vt();Ya();$l=[],Cpe=0,vP={},NHe=o(()=>{$l=[],Cpe=0,vP={}},"clear"),MHe=o(function(t){for(let e=$l.length-1;e>=0;e--)if($l[e].level$l.length>0?$l[0]:null,"getMindmap"),OHe=o((t,e,r,n)=>{Y.info("addNode",t,e,r,n);let i=me(),a=i.mindmap?.padding??or.mindmap.padding;switch(n){case Vi.ROUNDED_RECT:case Vi.RECT:case Vi.HEXAGON:a*=2}let s={id:Cpe++,nodeId:Tr(e,i),level:t,descr:Tr(r,i),type:n,children:[],width:i.mindmap?.maxNodeWidth??or.mindmap.maxNodeWidth,padding:a},l=MHe(t);if(l)l.children.push(s),$l.push(s);else if($l.length===0)$l.push(s);else throw new Error('There can be only one root. No parent could be found for ("'+s.descr+'")')},"addNode"),Vi={DEFAULT:0,NO_BORDER:0,ROUNDED_RECT:1,RECT:2,CIRCLE:3,CLOUD:4,BANG:5,HEXAGON:6},PHe=o((t,e)=>{switch(Y.debug("In get type",t,e),t){case"[":return Vi.RECT;case"(":return e===")"?Vi.ROUNDED_RECT:Vi.CLOUD;case"((":return Vi.CIRCLE;case")":return Vi.CLOUD;case"))":return Vi.BANG;case"{{":return Vi.HEXAGON;default:return Vi.DEFAULT}},"getType"),BHe=o((t,e)=>{vP[t]=e},"setElementForId"),FHe=o(t=>{if(!t)return;let e=me(),r=$l[$l.length-1];t.icon&&(r.icon=Tr(t.icon,e)),t.class&&(r.class=Tr(t.class,e))},"decorateNode"),$He=o(t=>{switch(t){case Vi.DEFAULT:return"no-border";case Vi.RECT:return"rect";case Vi.ROUNDED_RECT:return"rounded-rect";case Vi.CIRCLE:return"circle";case Vi.CLOUD:return"cloud";case Vi.BANG:return"bang";case Vi.HEXAGON:return"hexgon";default:return"no-border"}},"type2Str"),zHe=o(()=>Y,"getLogger"),GHe=o(t=>vP[t],"getElementById"),VHe={clear:NHe,addNode:OHe,getMindmap:IHe,nodeType:Vi,getType:PHe,setElementForId:BHe,decorateNode:FHe,type2Str:$He,getLogger:zHe,getElementById:GHe},Ape=VHe});function Wi(t){"@babel/helpers - typeof";return Wi=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Wi(t)}function Mf(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Dpe(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r=t.length?{done:!0}:{done:!1,value:t[n++]}},"n"),e:o(function(u){throw u},"e"),f:i}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var a=!0,s=!1,l;return{s:o(function(){r=r.call(t)},"s"),n:o(function(){var u=r.next();return a=u.done,u},"n"),e:o(function(u){s=!0,l=u},"e"),f:o(function(){try{!a&&r.return!=null&&r.return()}finally{if(s)throw l}},"f")}}function yWe(t){var e=typeof t;return t!=null&&(e=="object"||e=="function")}function vWe(t,e){return e={exports:{}},t(e,e.exports),e.exports}function SWe(t){for(var e=t.length;e--&&EWe.test(t.charAt(e)););return e}function _We(t){return t&&t.slice(0,CWe(t)+1).replace(AWe,"")}function MWe(t){var e=RWe.call(t,Ab),r=t[Ab];try{t[Ab]=void 0;var n=!0}catch{}var i=NWe.call(t);return n&&(e?t[Ab]=r:delete t[Ab]),i}function BWe(t){return PWe.call(t)}function GWe(t){return t==null?t===void 0?zWe:$We:Npe&&Npe in Object(t)?IWe(t):FWe(t)}function VWe(t){return t!=null&&typeof t=="object"}function WWe(t){return typeof t=="symbol"||UWe(t)&&ame(t)==HWe}function KWe(t){if(typeof t=="number")return t;if(r4(t))return Mpe;if(zp(t)){var e=typeof t.valueOf=="function"?t.valueOf():t;t=zp(e)?e+"":e}if(typeof t!="string")return t===0?t:+t;t=DWe(t);var r=YWe.test(t);return r||XWe.test(t)?jWe(t.slice(2),r?2:8):qWe.test(t)?Mpe:+t}function eqe(t,e,r){var n,i,a,s,l,u,h=0,f=!1,d=!1,p=!0;if(typeof t!="function")throw new TypeError(QWe);e=Ipe(e)||0,zp(r)&&(f=!!r.leading,d="maxWait"in r,a=d?ZWe(Ipe(r.maxWait)||0,e):a,p="trailing"in r?!!r.trailing:p);function m(E){var A=n,S=i;return n=i=void 0,h=E,s=t.apply(S,A),s}o(m,"invokeFunc");function g(E){return h=E,l=setTimeout(x,e),f?m(E):s}o(g,"leadingEdge");function y(E){var A=E-u,S=E-h,_=e-A;return d?JWe(_,a-S):_}o(y,"remainingWait");function v(E){var A=E-u,S=E-h;return u===void 0||A>=e||A<0||d&&S>=a}o(v,"shouldInvoke");function x(){var E=xP();if(v(E))return b(E);l=setTimeout(x,y(E))}o(x,"timerExpired");function b(E){return l=void 0,p&&n?m(E):(n=i=void 0,s)}o(b,"trailingEdge");function w(){l!==void 0&&clearTimeout(l),h=0,n=u=i=l=void 0}o(w,"cancel");function C(){return l===void 0?s:b(xP())}o(C,"flush");function T(){var E=xP(),A=v(E);if(n=arguments,i=this,u=E,A){if(l===void 0)return g(u);if(d)return clearTimeout(l),l=setTimeout(x,e),m(u)}return l===void 0&&(l=setTimeout(x,e)),s}return o(T,"debounced"),T.cancel=w,T.flush=C,T}function IS(t,e,r,n,i,a){var s;return si(t)?s=t:s=Q1[t]||Q1.euclidean,e===0&&si(t)?s(i,a):s(e,r,n,i,a)}function qYe(t,e){if(OS(t))return!1;var r=typeof t;return r=="number"||r=="symbol"||r=="boolean"||t==null||r4(t)?!0:WYe.test(t)||!HYe.test(t)||e!=null&&t in Object(e)}function ZYe(t){if(!zp(t))return!1;var e=ame(t);return e==jYe||e==KYe||e==XYe||e==QYe}function tXe(t){return!!e0e&&e0e in t}function aXe(t){if(t!=null){try{return iXe.call(t)}catch{}try{return t+""}catch{}}return""}function pXe(t){if(!zp(t)||rXe(t))return!1;var e=JYe(t)?dXe:lXe;return e.test(sXe(t))}function gXe(t,e){return t?.[e]}function vXe(t,e){var r=yXe(t,e);return mXe(r)?r:void 0}function bXe(){this.__data__=jb?jb(null):{},this.size=0}function TXe(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}function AXe(t){var e=this.__data__;if(jb){var r=e[t];return r===EXe?void 0:r}return CXe.call(e,t)?e[t]:void 0}function RXe(t){var e=this.__data__;return jb?e[t]!==void 0:LXe.call(e,t)}function IXe(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=jb&&e===void 0?MXe:e,this}function ty(t){var e=-1,r=t==null?0:t.length;for(this.clear();++e-1}function XXe(t,e){var r=this.__data__,n=PS(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this}function ry(t){var e=-1,r=t==null?0:t.length;for(this.clear();++e-1&&t%1==0&&t0;){var f=i.shift();e(f),a.add(f.id()),l&&n(i,a,f)}return t}function Fme(t,e,r){if(r.isParent())for(var n=r._private.children,i=0;i0&&arguments[0]!==void 0?arguments[0]:NKe,e=arguments.length>1?arguments[1]:void 0,r=0;r0?k=R:D=R;while(Math.abs(L)>s&&++O=a?b(I,O):M===0?O:C(I,D,D+h)}o(T,"getTForX");var E=!1;function A(){E=!0,(t!==e||r!==n)&&w()}o(A,"precompute");var S=o(function(D){return E||A(),t===e&&r===n?D:D===0?0:D===1?1:v(T(D),e,n)},"f");S.getControlPoints=function(){return[{x:t,y:e},{x:r,y:n}]};var _="generateBezier("+[t,e,r,n]+")";return S.toString=function(){return _},S}function x0e(t,e,r,n,i){if(n===1||e===r)return r;var a=i(e,r,n);return t==null||((t.roundValue||t.color)&&(a=Math.round(a)),t.min!==void 0&&(a=Math.max(a,t.min)),t.max!==void 0&&(a=Math.min(a,t.max))),a}function b0e(t,e){return t.pfValue!=null||t.value!=null?t.pfValue!=null&&(e==null||e.type.units!=="%")?t.pfValue:t.value:t}function $1(t,e,r,n,i){var a=i!=null?i.type:null;r<0?r=0:r>1&&(r=1);var s=b0e(t,i),l=b0e(e,i);if(Ct(s)&&Ct(l))return x0e(a,s,l,r,n);if(En(s)&&En(l)){for(var u=[],h=0;h0?(m==="spring"&&g.push(s.duration),s.easingImpl=dS[m].apply(null,g)):s.easingImpl=dS[m]}var y=s.easingImpl,v;if(s.duration===0?v=1:v=(r-u)/s.duration,s.applying&&(v=s.progress),v<0?v=0:v>1&&(v=1),s.delay==null){var x=s.startPosition,b=s.position;if(b&&i&&!t.locked()){var w={};Rb(x.x,b.x)&&(w.x=$1(x.x,b.x,v,y)),Rb(x.y,b.y)&&(w.y=$1(x.y,b.y,v,y)),t.position(w)}var C=s.startPan,T=s.pan,E=a.pan,A=T!=null&&n;A&&(Rb(C.x,T.x)&&(E.x=$1(C.x,T.x,v,y)),Rb(C.y,T.y)&&(E.y=$1(C.y,T.y,v,y)),t.emit("pan"));var S=s.startZoom,_=s.zoom,I=_!=null&&n;I&&(Rb(S,_)&&(a.zoom=Yb(a.minZoom,$1(S,_,v,y),a.maxZoom)),t.emit("zoom")),(A||I)&&t.emit("viewport");var D=s.style;if(D&&D.length>0&&i){for(var k=0;k=0;A--){var S=E[A];S()}E.splice(0,E.length)},"callbacks"),b=m.length-1;b>=0;b--){var w=m[b],C=w._private;if(C.stopped){m.splice(b,1),C.hooked=!1,C.playing=!1,C.started=!1,x(C.frames);continue}!C.playing&&!C.applying||(C.playing&&C.applying&&(C.applying=!1),C.started||qKe(f,w,t),WKe(f,w,t,d),C.applying&&(C.applying=!1),x(C.frames),C.step!=null&&C.step(t),w.completed()&&(m.splice(b,1),C.hooked=!1,C.playing=!1,C.started=!1,x(C.completes)),y=!0)}return!d&&m.length===0&&g.length===0&&n.push(f),y}o(i,"stepOne");for(var a=!1,s=0;s0?e.notify("draw",r):e.notify("draw")),r.unmerge(n),e.emit("step")}function tge(t){this.options=rr({},eQe,tQe,t)}function rge(t){this.options=rr({},rQe,t)}function nge(t){this.options=rr({},nQe,t)}function HS(t){this.options=rr({},iQe,t),this.options.layout=this;var e=this.options.eles.nodes(),r=this.options.eles.edges(),n=r.filter(function(i){var a=i.source().data("id"),s=i.target().data("id"),l=e.some(function(h){return h.data("id")===a}),u=e.some(function(h){return h.data("id")===s});return!l||!u});this.options.eles=this.options.eles.not(n)}function age(t){this.options=rr({},wQe,t)}function gB(t){this.options=rr({},TQe,t)}function sge(t){this.options=rr({},kQe,t)}function oge(t){this.options=rr({},EQe,t)}function lge(t){this.options=t,this.notifications=0}function hge(t,e){e.radius===0?t.lineTo(e.cx,e.cy):t.arc(e.cx,e.cy,e.radius,e.startAngle,e.endAngle,e.counterClockwise)}function vB(t,e,r,n){var i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0;return n===0||e.radius===0?{cx:e.x,cy:e.y,radius:0,startX:e.x,startY:e.y,stopX:e.x,stopY:e.y,startAngle:void 0,endAngle:void 0,counterClockwise:void 0}:(AQe(t,e,r,n,i),{cx:HP,cy:WP,radius:Bp,startX:cge,startY:uge,stopX:qP,stopY:YP,startAngle:qc.ang+Math.PI/2*Fp,endAngle:Jo.ang-Math.PI/2*Fp,counterClockwise:gS})}function fge(t){var e=[];if(t!=null){for(var r=0;r5&&arguments[5]!==void 0?arguments[5]:5,s=arguments.length>6?arguments[6]:void 0;t.beginPath(),t.moveTo(e+a,r),t.lineTo(e+n-a,r),t.quadraticCurveTo(e+n,r,e+n,r+a),t.lineTo(e+n,r+i-a),t.quadraticCurveTo(e+n,r+i,e+n-a,r+i),t.lineTo(e+a,r+i),t.quadraticCurveTo(e,r+i,e,r+i-a),t.lineTo(e,r+a),t.quadraticCurveTo(e,r,e+a,r),t.closePath(),s?t.stroke():t.fill()}function z0e(t,e,r){var n=t.createShader(e);if(t.shaderSource(n,r),t.compileShader(n),!t.getShaderParameter(n,t.COMPILE_STATUS))throw new Error(t.getShaderInfoLog(n));return n}function pZe(t,e,r){var n=z0e(t,t.VERTEX_SHADER,e),i=z0e(t,t.FRAGMENT_SHADER,r),a=t.createProgram();if(t.attachShader(a,n),t.attachShader(a,i),t.linkProgram(a),!t.getProgramParameter(a,t.LINK_STATUS))throw new Error("Could not initialize shaders");return a}function mZe(t,e,r){r===void 0&&(r=e);var n=t.makeOffscreenCanvas(e,r),i=n.context=n.getContext("2d");return n.clear=function(){return i.clearRect(0,0,n.width,n.height)},n.clear(),n}function wB(t){var e=t.pixelRatio,r=t.cy.zoom(),n=t.cy.pan();return{zoom:r*e,pan:{x:n.x*e,y:n.y*e}}}function NP(t,e,r,n,i){var a=n*r+e.x,s=i*r+e.y;return s=Math.round(t.canvasHeight-s),[a,s]}function oS(t,e,r){var n=t[0]/255,i=t[1]/255,a=t[2]/255,s=e,l=r||new Array(4);return l[0]=n*s,l[1]=i*s,l[2]=a*s,l[3]=s,l}function lS(t,e){var r=e||new Array(4);return r[0]=(t>>0&255)/255,r[1]=(t>>8&255)/255,r[2]=(t>>16&255)/255,r[3]=(t>>24&255)/255,r}function gZe(t){return t[0]+(t[1]<<8)+(t[2]<<16)+(t[3]<<24)}function yZe(t,e){var r=t.createTexture();return r.buffer=function(n){t.bindTexture(t.TEXTURE_2D,r),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.LINEAR_MIPMAP_NEAREST),t.pixelStorei(t.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0),t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,n),t.generateMipmap(t.TEXTURE_2D),t.bindTexture(t.TEXTURE_2D,null)},r.deleteTexture=function(){t.deleteTexture(r)},r}function Sge(t,e){switch(e){case"float":return[1,t.FLOAT,4];case"vec2":return[2,t.FLOAT,4];case"vec3":return[3,t.FLOAT,4];case"vec4":return[4,t.FLOAT,4];case"int":return[1,t.INT,4];case"ivec2":return[2,t.INT,4]}}function Cge(t,e,r){switch(e){case t.FLOAT:return new Float32Array(r);case t.INT:return new Int32Array(r)}}function vZe(t,e,r,n,i,a){switch(e){case t.FLOAT:return new Float32Array(r.buffer,a*n,i);case t.INT:return new Int32Array(r.buffer,a*n,i)}}function xZe(t,e,r,n){var i=Sge(t,e),a=_i(i,2),s=a[0],l=a[1],u=Cge(t,l,n),h=t.createBuffer();return t.bindBuffer(t.ARRAY_BUFFER,h),t.bufferData(t.ARRAY_BUFFER,u,t.STATIC_DRAW),l===t.FLOAT?t.vertexAttribPointer(r,s,l,!1,0,0):l===t.INT&&t.vertexAttribIPointer(r,s,l,0,0),t.enableVertexAttribArray(r),t.bindBuffer(t.ARRAY_BUFFER,null),h}function po(t,e,r,n){var i=Sge(t,r),a=_i(i,3),s=a[0],l=a[1],u=a[2],h=Cge(t,l,e*s),f=s*u,d=t.createBuffer();t.bindBuffer(t.ARRAY_BUFFER,d),t.bufferData(t.ARRAY_BUFFER,e*f,t.DYNAMIC_DRAW),t.enableVertexAttribArray(n),l===t.FLOAT?t.vertexAttribPointer(n,s,l,!1,f,0):l===t.INT&&t.vertexAttribIPointer(n,s,l,f,0),t.vertexAttribDivisor(n,1),t.bindBuffer(t.ARRAY_BUFFER,null);for(var p=new Array(e),m=0;mbge?(RZe(t),e.call(t,a)):(NZe(t),Rge(t,a,Vb.SCREEN)))}}{var r=t.matchCanvasSize;t.matchCanvasSize=function(a){r.call(t,a),t.pickingFrameBuffer.setFramebufferAttachmentSizes(t.canvasWidth,t.canvasHeight),t.pickingFrameBuffer.needsDraw=!0}}t.findNearestElements=function(a,s,l,u){return FZe(t,a,s)};{var n=t.invalidateCachedZSortedEles;t.invalidateCachedZSortedEles=function(){n.call(t),t.pickingFrameBuffer.needsDraw=!0}}{var i=t.notify;t.notify=function(a,s){i.call(t,a,s),a==="viewport"||a==="bounds"?t.pickingFrameBuffer.needsDraw=!0:a==="background"&&t.eleDrawing.invalidate(s,{type:"node-body"})}}}function RZe(t){var e=t.data.contexts[t.WEBGL];e.clear(e.COLOR_BUFFER_BIT|e.DEPTH_BUFFER_BIT)}function NZe(t){var e=o(function(n){n.save(),n.setTransform(1,0,0,1,0,0),n.clearRect(0,0,t.canvasWidth,t.canvasHeight),n.restore()},"clear");e(t.data.contexts[t.NODE]),e(t.data.contexts[t.DRAG])}function MZe(t){var e=t.canvasWidth,r=t.canvasHeight,n=wB(t),i=n.pan,a=n.zoom,s=Gb();DS(s,s,[i.x,i.y]),TB(s,s,[a,a]);var l=Gb();TZe(l,e,r);var u=Gb();return wZe(u,l,s),u}function Lge(t,e){var r=t.canvasWidth,n=t.canvasHeight,i=wB(t),a=i.pan,s=i.zoom;e.setTransform(1,0,0,1,0,0),e.clearRect(0,0,r,n),e.translate(a.x,a.y),e.scale(s,s)}function IZe(t,e){t.drawSelectionRectangle(e,function(r){return Lge(t,r)})}function OZe(t){var e=t.data.contexts[t.NODE];e.save(),Lge(t,e),e.strokeStyle="rgba(0, 0, 0, 0.3)",e.beginPath(),e.moveTo(-1e3,0),e.lineTo(1e3,0),e.stroke(),e.beginPath(),e.moveTo(0,-1e3),e.lineTo(0,1e3),e.stroke(),e.restore()}function PZe(t){var e=o(function(i,a,s){for(var l=i.atlasManager.getRenderTypeOpts(a),u=t.data.contexts[t.NODE],h=.125,f=l.atlasCollection.atlases,d=0;d=0&&k.add(O)}return k}function FZe(t,e,r){var n=BZe(t,e,r),i=t.getCachedZSortedEles(),a,s,l=mo(n),u;try{for(l.s();!(u=l.n()).done;){var h=u.value,f=i[h];if(!a&&f.isNode()&&(a=f),!s&&f.isEdge()&&(s=f),a&&s)break}}catch(d){l.e(d)}finally{l.f()}return[a,s].filter(Boolean)}function Rge(t,e,r){var n,i;t.webglDebug&&(i=[],n=performance.now());var a=t.eleDrawing,s=0;if(r.screen&&t.data.canvasNeedsRedraw[t.SELECT_BOX]&&IZe(t,e),t.data.canvasNeedsRedraw[t.NODE]||r.picking){var l=o(function(k,L){L+=1,k.isNode()?(a.drawTexture(k,L,"node-underlay"),a.drawTexture(k,L,"node-body"),a.drawTexture(k,L,"node-label"),a.drawTexture(k,L,"node-overlay")):(a.drawEdgeLine(k,L),a.drawEdgeArrow(k,L,"source"),a.drawEdgeArrow(k,L,"target"),a.drawTexture(k,L,"edge-label"))},"draw"),u=t.data.contexts[t.WEBGL];r.screen?(u.clearColor(0,0,0,0),u.enable(u.BLEND),u.blendFunc(u.ONE,u.ONE_MINUS_SRC_ALPHA)):u.disable(u.BLEND),u.clear(u.COLOR_BUFFER_BIT|u.DEPTH_BUFFER_BIT),u.viewport(0,0,u.canvas.width,u.canvas.height);var h=MZe(t),f=t.getCachedZSortedEles();if(s=f.length,a.startFrame(h,i,r),r.screen){for(var d=0;d{"use strict";o(Wi,"_typeof");o(Mf,"_classCallCheck");o(Dpe,"_defineProperties");o(If,"_createClass");o(X0e,"_defineProperty$1");o(_i,"_slicedToArray");o(j0e,"_toConsumableArray");o(UHe,"_arrayWithoutHoles");o(HHe,"_arrayWithHoles");o(WHe,"_iterableToArray");o(qHe,"_iterableToArrayLimit");o(ZP,"_unsupportedIterableToArray");o(OP,"_arrayLikeToArray");o(YHe,"_nonIterableSpread");o(XHe,"_nonIterableRest");o(mo,"_createForOfIteratorHelper");Ui=typeof window>"u"?null:window,Lpe=Ui?Ui.navigator:null;Ui&&Ui.document;jHe=Wi(""),K0e=Wi({}),KHe=Wi(function(){}),QHe=typeof HTMLElement>"u"?"undefined":Wi(HTMLElement),e4=o(function(e){return e&&e.instanceString&&si(e.instanceString)?e.instanceString():null},"instanceStr"),Zt=o(function(e){return e!=null&&Wi(e)==jHe},"string"),si=o(function(e){return e!=null&&Wi(e)===KHe},"fn"),En=o(function(e){return!go(e)&&(Array.isArray?Array.isArray(e):e!=null&&e instanceof Array)},"array"),Ur=o(function(e){return e!=null&&Wi(e)===K0e&&!En(e)&&e.constructor===Object},"plainObject"),ZHe=o(function(e){return e!=null&&Wi(e)===K0e},"object"),Ct=o(function(e){return e!=null&&Wi(e)===Wi(1)&&!isNaN(e)},"number"),JHe=o(function(e){return Ct(e)&&Math.floor(e)===e},"integer"),vS=o(function(e){if(QHe!=="undefined")return e!=null&&e instanceof HTMLElement},"htmlElement"),go=o(function(e){return t4(e)||Q0e(e)},"elementOrCollection"),t4=o(function(e){return e4(e)==="collection"&&e._private.single},"element"),Q0e=o(function(e){return e4(e)==="collection"&&!e._private.single},"collection"),JP=o(function(e){return e4(e)==="core"},"core"),Z0e=o(function(e){return e4(e)==="stylesheet"},"stylesheet"),eWe=o(function(e){return e4(e)==="event"},"event"),Af=o(function(e){return e==null?!0:!!(e===""||e.match(/^\s+$/))},"emptyString"),tWe=o(function(e){return typeof HTMLElement>"u"?!1:e instanceof HTMLElement},"domElement"),rWe=o(function(e){return Ur(e)&&Ct(e.x1)&&Ct(e.x2)&&Ct(e.y1)&&Ct(e.y2)},"boundingBox"),nWe=o(function(e){return ZHe(e)&&si(e.then)},"promise"),iWe=o(function(){return Lpe&&Lpe.userAgent.match(/msie|trident|edge/i)},"ms"),Ub=o(function(e,r){r||(r=o(function(){if(arguments.length===1)return arguments[0];if(arguments.length===0)return"undefined";for(var a=[],s=0;sr?1:0},"ascending"),hWe=o(function(e,r){return-1*eme(e,r)},"descending"),rr=Object.assign!=null?Object.assign.bind(Object):function(t){for(var e=arguments,r=1;r1&&(v-=1),v<1/6?g+(y-g)*6*v:v<1/2?y:v<2/3?g+(y-g)*(2/3-v)*6:g}o(f,"hue2rgb");var d=new RegExp("^"+oWe+"$").exec(e);if(d){if(n=parseInt(d[1]),n<0?n=(360- -1*n%360)%360:n>360&&(n=n%360),n/=360,i=parseFloat(d[2]),i<0||i>100||(i=i/100,a=parseFloat(d[3]),a<0||a>100)||(a=a/100,s=d[4],s!==void 0&&(s=parseFloat(s),s<0||s>1)))return;if(i===0)l=u=h=Math.round(a*255);else{var p=a<.5?a*(1+i):a+i-a*i,m=2*a-p;l=Math.round(255*f(m,p,n+1/3)),u=Math.round(255*f(m,p,n)),h=Math.round(255*f(m,p,n-1/3))}r=[l,u,h,s]}return r},"hsl2tuple"),pWe=o(function(e){var r,n=new RegExp("^"+aWe+"$").exec(e);if(n){r=[];for(var i=[],a=1;a<=3;a++){var s=n[a];if(s[s.length-1]==="%"&&(i[a]=!0),s=parseFloat(s),i[a]&&(s=s/100*255),s<0||s>255)return;r.push(Math.floor(s))}var l=i[1]||i[2]||i[3],u=i[1]&&i[2]&&i[3];if(l&&!u)return;var h=n[4];if(h!==void 0){if(h=parseFloat(h),h<0||h>1)return;r.push(h)}}return r},"rgb2tuple"),mWe=o(function(e){return gWe[e.toLowerCase()]},"colorname2tuple"),tme=o(function(e){return(En(e)?e:null)||mWe(e)||fWe(e)||pWe(e)||dWe(e)},"color2tuple"),gWe={transparent:[0,0,0,0],aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},rme=o(function(e){for(var r=e.map,n=e.keys,i=n.length,a=0;a1&&arguments[1]!==void 0?arguments[1]:V1,n=r,i;i=e.next(),!i.done;)n=n*ome+i.value|0;return n},"hashIterableInts"),Hb=o(function(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:V1;return r*ome+e|0},"hashInt"),Wb=o(function(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Ob;return(r<<5)+r+e|0},"hashIntAlt"),rqe=o(function(e,r){return e*2097152+r},"combineHashes"),wf=o(function(e){return e[0]*2097152+e[1]},"combineHashesArray"),j6=o(function(e,r){return[Hb(e[0],r[0]),Wb(e[1],r[1])]},"hashArrays"),nqe=o(function(e,r){var n={value:0,done:!1},i=0,a=e.length,s={next:o(function(){return i=0&&!(e[i]===r&&(e.splice(i,1),n));i--);},"removeFromArray"),nB=o(function(e){e.splice(0,e.length)},"clearArray"),uqe=o(function(e,r){for(var n=0;n"u"?"undefined":Wi(Set))!==fqe?Set:dqe,NS=o(function(e,r){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;if(e===void 0||r===void 0||!JP(e)){ai("An element must have a core reference and parameters set");return}var i=r.group;if(i==null&&(r.data&&r.data.source!=null&&r.data.target!=null?i="edges":i="nodes"),i!=="nodes"&&i!=="edges"){ai("An element must be of type `nodes` or `edges`; you specified `"+i+"`");return}this.length=1,this[0]=this;var a=this._private={cy:e,single:!0,data:r.data||{},position:r.position||{x:0,y:0},autoWidth:void 0,autoHeight:void 0,autoPadding:void 0,compoundBoundsClean:!1,listeners:[],group:i,style:{},rstyle:{},styleCxts:[],styleKeys:{},removed:!0,selected:!!r.selected,selectable:r.selectable===void 0?!0:!!r.selectable,locked:!!r.locked,grabbed:!1,grabbable:r.grabbable===void 0?!0:!!r.grabbable,pannable:r.pannable===void 0?i==="edges":!!r.pannable,active:!1,classes:new J1,animation:{current:[],queue:[]},rscratch:{},scratch:r.scratch||{},edges:[],children:[],parent:r.parent&&r.parent.isNode()?r.parent:null,traversalCache:{},backgrounding:!1,bbCache:null,bbCacheShift:{x:0,y:0},bodyBounds:null,overlayBounds:null,labelBounds:{all:null,source:null,target:null,main:null},arrowBounds:{source:null,target:null,"mid-source":null,"mid-target":null}};if(a.position.x==null&&(a.position.x=0),a.position.y==null&&(a.position.y=0),r.renderedPosition){var s=r.renderedPosition,l=e.pan(),u=e.zoom();a.position={x:(s.x-l.x)/u,y:(s.y-l.y)/u}}var h=[];En(r.classes)?h=r.classes:Zt(r.classes)&&(h=r.classes.split(/\s+/));for(var f=0,d=h.length;fb?1:0},"defaultCmp"),f=o(function(x,b,w,C,T){var E;if(w==null&&(w=0),T==null&&(T=n),w<0)throw new Error("lo must be non-negative");for(C==null&&(C=x.length);wI;0<=I?_++:_--)S.push(_);return S}.apply(this).reverse(),A=[],C=0,T=E.length;CD;0<=D?++S:--S)k.push(s(x,w));return k},"nsmallest"),y=o(function(x,b,w,C){var T,E,A;for(C==null&&(C=n),T=x[w];w>b;){if(A=w-1>>1,E=x[A],C(T,E)<0){x[w]=E,w=A;continue}break}return x[w]=T},"_siftdown"),v=o(function(x,b,w){var C,T,E,A,S;for(w==null&&(w=n),T=x.length,S=b,E=x[b],C=2*b+1;C0;){var E=b.pop(),A=v(E),S=E.id();if(p[S]=A,A!==1/0)for(var _=E.neighborhood().intersect(g),I=0;I<_.length;I++){var D=_[I],k=D.id(),L=T(E,D),R=A+L.dist;R0)for(F.unshift(B);d[z];){var $=d[z];F.unshift($.edge),F.unshift($.node),P=$.node,z=P.id()}return l.spawn(F)},"pathTo")}},"dijkstra")},yqe={kruskal:o(function(e){e=e||function(w){return 1};for(var r=this.byGroup(),n=r.nodes,i=r.edges,a=n.length,s=new Array(a),l=n,u=o(function(C){for(var T=0;T0;){if(T(),A++,C===f){for(var S=[],_=a,I=f,D=x[I];S.unshift(_),D!=null&&S.unshift(D),_=v[I],_!=null;)I=_.id(),D=x[I];return{found:!0,distance:d[C],path:this.spawn(S),steps:A}}m[C]=!0;for(var k=w._private.edges,L=0;LD&&(g[I]=D,b[I]=_,w[I]=T),!a){var k=_*f+S;!a&&g[k]>D&&(g[k]=D,b[k]=S,w[k]=T)}}}for(var L=0;L1&&arguments[1]!==void 0?arguments[1]:s,ge=w(ae),ze=[],He=ge;;){if(He==null)return r.spawn();var $e=b(He),Re=$e.edge,Ie=$e.pred;if(ze.unshift(He[0]),He.same(Oe)&&ze.length>0)break;Re!=null&&ze.unshift(Re),He=Ie}return u.spawn(ze)},"pathTo"),E=0;E=0;f--){var d=h[f],p=d[1],m=d[2];(r[p]===l&&r[m]===u||r[p]===u&&r[m]===l)&&h.splice(f,1)}for(var g=0;gi;){var a=Math.floor(Math.random()*r.length);r=Sqe(a,e,r),n--}return r},"contractUntil"),Cqe={kargerStein:o(function(){var e=this,r=this.byGroup(),n=r.nodes,i=r.edges;i.unmergeBy(function(F){return F.isLoop()});var a=n.length,s=i.length,l=Math.ceil(Math.pow(Math.log(a)/Math.LN2,2)),u=Math.floor(a/Eqe);if(a<2){ai("At least 2 nodes are required for Karger-Stein algorithm");return}for(var h=[],f=0;f1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:e.length,i=1/0,a=r;a1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:e.length,i=-1/0,a=r;a1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:e.length,i=0,a=0,s=r;s1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:e.length,i=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,s=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!0;i?e=e.slice(r,n):(n0&&e.splice(0,r));for(var l=0,u=e.length-1;u>=0;u--){var h=e[u];s?isFinite(h)||(e[u]=-1/0,l++):e.splice(u,1)}a&&e.sort(function(p,m){return p-m});var f=e.length,d=Math.floor(f/2);return f%2!==0?e[d+1+l]:(e[d-1+l]+e[d+l])/2},"median"),Nqe=o(function(e){return Math.PI*e/180},"deg2rad"),K6=o(function(e,r){return Math.atan2(r,e)-Math.PI/2},"getAngleFromDisp"),iB=Math.log2||function(t){return Math.log(t)/Math.log(2)},mme=o(function(e){return e>0?1:e<0?-1:0},"signum"),Gp=o(function(e,r){return Math.sqrt(Op(e,r))},"dist"),Op=o(function(e,r){var n=r.x-e.x,i=r.y-e.y;return n*n+i*i},"sqdist"),Mqe=o(function(e){for(var r=e.length,n=0,i=0;i=e.x1&&e.y2>=e.y1)return{x1:e.x1,y1:e.y1,x2:e.x2,y2:e.y2,w:e.x2-e.x1,h:e.y2-e.y1};if(e.w!=null&&e.h!=null&&e.w>=0&&e.h>=0)return{x1:e.x1,y1:e.y1,x2:e.x1+e.w,y2:e.y1+e.h,w:e.w,h:e.h}}},"makeBoundingBox"),Oqe=o(function(e){return{x1:e.x1,x2:e.x2,w:e.w,y1:e.y1,y2:e.y2,h:e.h}},"copyBoundingBox"),Pqe=o(function(e){e.x1=1/0,e.y1=1/0,e.x2=-1/0,e.y2=-1/0,e.w=0,e.h=0},"clearBoundingBox"),Bqe=o(function(e,r,n){return{x1:e.x1+r,x2:e.x2+r,y1:e.y1+n,y2:e.y2+n,w:e.w,h:e.h}},"shiftBoundingBox"),gme=o(function(e,r){e.x1=Math.min(e.x1,r.x1),e.x2=Math.max(e.x2,r.x2),e.w=e.x2-e.x1,e.y1=Math.min(e.y1,r.y1),e.y2=Math.max(e.y2,r.y2),e.h=e.y2-e.y1},"updateBoundingBox"),Fqe=o(function(e,r,n){e.x1=Math.min(e.x1,r),e.x2=Math.max(e.x2,r),e.w=e.x2-e.x1,e.y1=Math.min(e.y1,n),e.y2=Math.max(e.y2,n),e.h=e.y2-e.y1},"expandBoundingBoxByPoint"),cS=o(function(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return e.x1-=r,e.x2+=r,e.y1-=r,e.y2+=r,e.w=e.x2-e.x1,e.h=e.y2-e.y1,e},"expandBoundingBox"),uS=o(function(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[0],n,i,a,s;if(r.length===1)n=i=a=s=r[0];else if(r.length===2)n=a=r[0],s=i=r[1];else if(r.length===4){var l=_i(r,4);n=l[0],i=l[1],a=l[2],s=l[3]}return e.x1-=s,e.x2+=i,e.y1-=n,e.y2+=a,e.w=e.x2-e.x1,e.h=e.y2-e.y1,e},"expandBoundingBoxSides"),Fpe=o(function(e,r){e.x1=r.x1,e.y1=r.y1,e.x2=r.x2,e.y2=r.y2,e.w=e.x2-e.x1,e.h=e.y2-e.y1},"assignBoundingBox"),aB=o(function(e,r){return!(e.x1>r.x2||r.x1>e.x2||e.x2r.y2||r.y1>e.y2)},"boundingBoxesIntersect"),K1=o(function(e,r,n){return e.x1<=r&&r<=e.x2&&e.y1<=n&&n<=e.y2},"inBoundingBox"),$qe=o(function(e,r){return K1(e,r.x,r.y)},"pointInBoundingBox"),yme=o(function(e,r){return K1(e,r.x1,r.y1)&&K1(e,r.x2,r.y2)},"boundingBoxInBoundingBox"),vme=o(function(e,r,n,i,a,s,l){var u=arguments.length>7&&arguments[7]!==void 0?arguments[7]:"auto",h=u==="auto"?Vp(a,s):u,f=a/2,d=s/2;h=Math.min(h,f,d);var p=h!==f,m=h!==d,g;if(p){var y=n-f+h-l,v=i-d-l,x=n+f-h+l,b=v;if(g=Ef(e,r,n,i,y,v,x,b,!1),g.length>0)return g}if(m){var w=n+f+l,C=i-d+h-l,T=w,E=i+d-h+l;if(g=Ef(e,r,n,i,w,C,T,E,!1),g.length>0)return g}if(p){var A=n-f+h-l,S=i+d+l,_=n+f-h+l,I=S;if(g=Ef(e,r,n,i,A,S,_,I,!1),g.length>0)return g}if(m){var D=n-f-l,k=i-d+h-l,L=D,R=i+d-h+l;if(g=Ef(e,r,n,i,D,k,L,R,!1),g.length>0)return g}var O;{var M=n-f+h,B=i-d+h;if(O=Pb(e,r,n,i,M,B,h+l),O.length>0&&O[0]<=M&&O[1]<=B)return[O[0],O[1]]}{var F=n+f-h,P=i-d+h;if(O=Pb(e,r,n,i,F,P,h+l),O.length>0&&O[0]>=F&&O[1]<=P)return[O[0],O[1]]}{var z=n+f-h,$=i+d-h;if(O=Pb(e,r,n,i,z,$,h+l),O.length>0&&O[0]>=z&&O[1]>=$)return[O[0],O[1]]}{var H=n-f+h,Q=i+d-h;if(O=Pb(e,r,n,i,H,Q,h+l),O.length>0&&O[0]<=H&&O[1]>=Q)return[O[0],O[1]]}return[]},"roundRectangleIntersectLine"),zqe=o(function(e,r,n,i,a,s,l){var u=l,h=Math.min(n,a),f=Math.max(n,a),d=Math.min(i,s),p=Math.max(i,s);return h-u<=e&&e<=f+u&&d-u<=r&&r<=p+u},"inLineVicinity"),Gqe=o(function(e,r,n,i,a,s,l,u,h){var f={x1:Math.min(n,l,a)-h,x2:Math.max(n,l,a)+h,y1:Math.min(i,u,s)-h,y2:Math.max(i,u,s)+h};return!(ef.x2||rf.y2)},"inBezierVicinity"),Vqe=o(function(e,r,n,i){n-=i;var a=r*r-4*e*n;if(a<0)return[];var s=Math.sqrt(a),l=2*e,u=(-r+s)/l,h=(-r-s)/l;return[u,h]},"solveQuadratic"),Uqe=o(function(e,r,n,i,a){var s=1e-5;e===0&&(e=s),r/=e,n/=e,i/=e;var l,u,h,f,d,p,m,g;if(u=(3*n-r*r)/9,h=-(27*i)+r*(9*n-2*(r*r)),h/=54,l=u*u*u+h*h,a[1]=0,m=r/3,l>0){d=h+Math.sqrt(l),d=d<0?-Math.pow(-d,1/3):Math.pow(d,1/3),p=h-Math.sqrt(l),p=p<0?-Math.pow(-p,1/3):Math.pow(p,1/3),a[0]=-m+d+p,m+=(d+p)/2,a[4]=a[2]=-m,m=Math.sqrt(3)*(-p+d)/2,a[3]=m,a[5]=-m;return}if(a[5]=a[3]=0,l===0){g=h<0?-Math.pow(-h,1/3):Math.pow(h,1/3),a[0]=-m+2*g,a[4]=a[2]=-(g+m);return}u=-u,f=u*u*u,f=Math.acos(h/Math.sqrt(f)),g=2*Math.sqrt(u),a[0]=-m+g*Math.cos(f/3),a[2]=-m+g*Math.cos((f+2*Math.PI)/3),a[4]=-m+g*Math.cos((f+4*Math.PI)/3)},"solveCubic"),Hqe=o(function(e,r,n,i,a,s,l,u){var h=1*n*n-4*n*a+2*n*l+4*a*a-4*a*l+l*l+i*i-4*i*s+2*i*u+4*s*s-4*s*u+u*u,f=1*9*n*a-3*n*n-3*n*l-6*a*a+3*a*l+9*i*s-3*i*i-3*i*u-6*s*s+3*s*u,d=1*3*n*n-6*n*a+n*l-n*e+2*a*a+2*a*e-l*e+3*i*i-6*i*s+i*u-i*r+2*s*s+2*s*r-u*r,p=1*n*a-n*n+n*e-a*e+i*s-i*i+i*r-s*r,m=[];Uqe(h,f,d,p,m);for(var g=1e-7,y=[],v=0;v<6;v+=2)Math.abs(m[v+1])=0&&m[v]<=1&&y.push(m[v]);y.push(1),y.push(0);for(var x=-1,b,w,C,T=0;T=0?Ch?(e-a)*(e-a)+(r-s)*(r-s):f-p},"sqdistToFiniteLine"),Us=o(function(e,r,n){for(var i,a,s,l,u,h=0,f=0;f=e&&e>=s||i<=e&&e<=s)u=(e-i)/(s-i)*(l-a)+a,u>r&&h++;else continue;return h%2!==0},"pointInsidePolygonPoints"),Zu=o(function(e,r,n,i,a,s,l,u,h){var f=new Array(n.length),d;u[0]!=null?(d=Math.atan(u[1]/u[0]),u[0]<0?d=d+Math.PI/2:d=-d-Math.PI/2):d=u;for(var p=Math.cos(-d),m=Math.sin(-d),g=0;g0){var v=TS(f,-h);y=wS(v)}else y=f;return Us(e,r,y)},"pointInsidePolygon"),qqe=o(function(e,r,n,i,a,s,l,u){for(var h=new Array(n.length*2),f=0;f=0&&v<=1&&b.push(v),x>=0&&x<=1&&b.push(x),b.length===0)return[];var w=b[0]*u[0]+e,C=b[0]*u[1]+r;if(b.length>1){if(b[0]==b[1])return[w,C];var T=b[1]*u[0]+e,E=b[1]*u[1]+r;return[w,C,T,E]}else return[w,C]},"intersectLineCircle"),TP=o(function(e,r,n){return r<=e&&e<=n||n<=e&&e<=r?e:e<=r&&r<=n||n<=r&&r<=e?r:n},"midOfThree"),Ef=o(function(e,r,n,i,a,s,l,u,h){var f=e-a,d=n-e,p=l-a,m=r-s,g=i-r,y=u-s,v=p*m-y*f,x=d*m-g*f,b=y*d-p*g;if(b!==0){var w=v/b,C=x/b,T=.001,E=0-T,A=1+T;return E<=w&&w<=A&&E<=C&&C<=A?[e+w*d,r+w*g]:h?[e+w*d,r+w*g]:[]}else return v===0||x===0?TP(e,n,l)===l?[l,u]:TP(e,n,a)===a?[a,s]:TP(a,l,n)===n?[n,i]:[]:[]},"finiteLinesIntersect"),Xb=o(function(e,r,n,i,a,s,l,u){var h=[],f,d=new Array(n.length),p=!0;s==null&&(p=!1);var m;if(p){for(var g=0;g0){var y=TS(d,-u);m=wS(y)}else m=d}else m=n;for(var v,x,b,w,C=0;C2){for(var g=[f[0],f[1]],y=Math.pow(g[0]-e,2)+Math.pow(g[1]-r,2),v=1;vf&&(f=C)},"set"),get:o(function(w){return h[w]},"get")},p=0;p0?M=O.edgesTo(R)[0]:M=R.edgesTo(O)[0];var B=i(M);R=R.id(),S[R]>S[k]+B&&(S[R]=S[k]+B,_.nodes.indexOf(R)<0?_.push(R):_.updateItem(R),A[R]=0,E[R]=[]),S[R]==S[k]+B&&(A[R]=A[R]+A[k],E[R].push(k))}else for(var F=0;F0;){for(var H=T.pop(),Q=0;Q0&&l.push(n[u]);l.length!==0&&a.push(i.collection(l))}return a},"assign"),lYe=o(function(e,r){for(var n=0;n5&&arguments[5]!==void 0?arguments[5]:hYe,l=i,u,h,f=0;f=2?_b(e,r,n,0,Upe,fYe):_b(e,r,n,0,Vpe)},"euclidean"),squaredEuclidean:o(function(e,r,n){return _b(e,r,n,0,Upe)},"squaredEuclidean"),manhattan:o(function(e,r,n){return _b(e,r,n,0,Vpe)},"manhattan"),max:o(function(e,r,n){return _b(e,r,n,-1/0,dYe)},"max")};Q1["squared-euclidean"]=Q1.squaredEuclidean;Q1.squaredeuclidean=Q1.squaredEuclidean;o(IS,"clusteringDistance");pYe=la({k:2,m:2,sensitivityThreshold:1e-4,distance:"euclidean",maxIterations:10,attributes:[],testMode:!1,testCentroids:null}),oB=o(function(e){return pYe(e)},"setOptions"),kS=o(function(e,r,n,i,a){var s=a!=="kMedoids",l=s?function(d){return n[d]}:function(d){return i[d](n)},u=o(function(p){return i[p](r)},"getQ"),h=n,f=r;return IS(e,i.length,l,u,h,f)},"getDist"),kP=o(function(e,r,n){for(var i=n.length,a=new Array(i),s=new Array(i),l=new Array(r),u=null,h=0;hn)return!1}return!0},"haveMatricesConverged"),yYe=o(function(e,r,n){for(var i=0;il&&(l=r[h][f],u=f);a[u].push(e[h])}for(var d=0;d=a.threshold||a.mode==="dendrogram"&&e.length===1)return!1;var g=r[s],y=r[i[s]],v;a.mode==="dendrogram"?v={left:g,right:y,key:g.key}:v={value:g.value.concat(y.value),key:g.key},e[g.index]=v,e.splice(y.index,1),r[g.key]=v;for(var x=0;xn[y.key][b.key]&&(u=n[y.key][b.key])):a.linkage==="max"?(u=n[g.key][b.key],n[g.key][b.key]0&&i.push(a);return i},"findExemplars"),jpe=o(function(e,r,n){for(var i=[],a=0;al&&(s=h,l=r[a*e+h])}s>0&&i.push(s)}for(var f=0;fh&&(u=f,h=d)}n[a]=s[u]}return i=jpe(e,r,n),i},"assign"),Kpe=o(function(e){for(var r=this.cy(),n=this.nodes(),i=RYe(e),a={},s=0;s=D?(k=D,D=R,L=O):R>k&&(k=R);for(var M=0;M0?1:0;A[_%i.minIterations*l+H]=Q,$+=Q}if($>0&&(_>=i.minIterations-1||_==i.maxIterations-1)){for(var j=0,ie=0;ie1||E>1)&&(l=!0),d[w]=[],b.outgoers().forEach(function(S){S.isEdge()&&d[w].push(S.id())})}else p[w]=[void 0,b.target().id()]}):s.forEach(function(b){var w=b.id();if(b.isNode()){var C=b.degree(!0);C%2&&(u?h?l=!0:h=w:u=w),d[w]=[],b.connectedEdges().forEach(function(T){return d[w].push(T.id())})}else p[w]=[b.source().id(),b.target().id()]});var m={found:!1,trail:void 0};if(l)return m;if(h&&u)if(a){if(f&&h!=f)return m;f=h}else{if(f&&h!=f&&u!=f)return m;f||(f=h)}else f||(f=s[0].id());var g=o(function(w){for(var C=w,T=[w],E,A,S;d[C].length;)E=d[C].shift(),A=p[E][0],S=p[E][1],C!=S?(d[S]=d[S].filter(function(_){return _!=E}),C=S):!a&&C!=A&&(d[A]=d[A].filter(function(_){return _!=E}),C=A),T.unshift(E),T.unshift(C);return T},"walk"),y=[],v=[];for(v=g(f);v.length!=1;)d[v[0]].length==0?(y.unshift(s.getElementById(v.shift())),y.unshift(s.getElementById(v.shift()))):v=g(v.shift()).concat(v);y.unshift(s.getElementById(v.shift()));for(var x in d)if(d[x].length)return m;return m.found=!0,m.trail=this.spawn(y,!0),m},"hierholzer")},J6=o(function(){var e=this,r={},n=0,i=0,a=[],s=[],l={},u=o(function(p,m){for(var g=s.length-1,y=[],v=e.spawn();s[g].x!=p||s[g].y!=m;)y.push(s.pop().edge),g--;y.push(s.pop().edge),y.forEach(function(x){var b=x.connectedNodes().intersection(e);v.merge(x),b.forEach(function(w){var C=w.id(),T=w.connectedEdges().intersection(e);v.merge(w),r[C].cutVertex?v.merge(T.filter(function(E){return E.isLoop()})):v.merge(T)})}),a.push(v)},"buildComponent"),h=o(function d(p,m,g){p===g&&(i+=1),r[m]={id:n,low:n++,cutVertex:!1};var y=e.getElementById(m).connectedEdges().intersection(e);if(y.size()===0)a.push(e.spawn(e.getElementById(m)));else{var v,x,b,w;y.forEach(function(C){v=C.source().id(),x=C.target().id(),b=v===m?x:v,b!==g&&(w=C.id(),l[w]||(l[w]=!0,s.push({x:m,y:b,edge:C})),b in r?r[m].low=Math.min(r[m].low,r[b].id):(d(p,b,m),r[m].low=Math.min(r[m].low,r[b].low),r[m].id<=r[b].low&&(r[m].cutVertex=!0,u(m,b))))})}},"biconnectedSearch");e.forEach(function(d){if(d.isNode()){var p=d.id();p in r||(i=0,h(p,p),r[p].cutVertex=i>1)}});var f=Object.keys(r).filter(function(d){return r[d].cutVertex}).map(function(d){return e.getElementById(d)});return{cut:e.spawn(f),components:a}},"hopcroftTarjanBiconnected"),$Ye={hopcroftTarjanBiconnected:J6,htbc:J6,htb:J6,hopcroftTarjanBiconnectedComponents:J6},eS=o(function(){var e=this,r={},n=0,i=[],a=[],s=e.spawn(e),l=o(function u(h){a.push(h),r[h]={index:n,low:n++,explored:!1};var f=e.getElementById(h).connectedEdges().intersection(e);if(f.forEach(function(y){var v=y.target().id();v!==h&&(v in r||u(v),r[v].explored||(r[h].low=Math.min(r[h].low,r[v].low)))}),r[h].index===r[h].low){for(var d=e.spawn();;){var p=a.pop();if(d.merge(e.getElementById(p)),r[p].low=r[h].index,r[p].explored=!0,p===h)break}var m=d.edgesWith(d),g=d.merge(m);i.push(g),s=s.difference(g)}},"stronglyConnectedSearch");return e.forEach(function(u){if(u.isNode()){var h=u.id();h in r||l(h)}}),{cut:s,components:i}},"tarjanStronglyConnected"),zYe={tarjanStronglyConnected:eS,tsc:eS,tscc:eS,tarjanStronglyConnectedComponents:eS},Sme={};[qb,gqe,yqe,xqe,wqe,kqe,Cqe,Qqe,q1,Y1,FP,uYe,kYe,DYe,PYe,FYe,$Ye,zYe].forEach(function(t){rr(Sme,t)});Cme=0,Ame=1,_me=2,Ju=o(function t(e){if(!(this instanceof t))return new t(e);this.id="Thenable/1.0.7",this.state=Cme,this.fulfillValue=void 0,this.rejectReason=void 0,this.onFulfilled=[],this.onRejected=[],this.proxy={then:this.then.bind(this)},typeof e=="function"&&e.call(this,this.fulfill.bind(this),this.reject.bind(this))},"api");Ju.prototype={fulfill:o(function(e){return Qpe(this,Ame,"fulfillValue",e)},"fulfill"),reject:o(function(e){return Qpe(this,_me,"rejectReason",e)},"reject"),then:o(function(e,r){var n=this,i=new Ju;return n.onFulfilled.push(Jpe(e,i,"fulfill")),n.onRejected.push(Jpe(r,i,"reject")),Dme(n),i.proxy},"then")};Qpe=o(function(e,r,n,i){return e.state===Cme&&(e.state=r,e[n]=i,Dme(e)),e},"deliver"),Dme=o(function(e){e.state===Ame?Zpe(e,"onFulfilled",e.fulfillValue):e.state===_me&&Zpe(e,"onRejected",e.rejectReason)},"execute"),Zpe=o(function(e,r,n){if(e[r].length!==0){var i=e[r];e[r]=[];var a=o(function(){for(var l=0;l0},"animatedImpl")},"animated"),clearQueue:o(function(){return o(function(){var r=this,n=r.length!==void 0,i=n?r:[r],a=this._private.cy||this;if(!a.styleEnabled())return this;for(var s=0;s0&&this.spawn(i).updateStyle().emit("class"),r},"classes"),addClass:o(function(e){return this.toggleClass(e,!0)},"addClass"),hasClass:o(function(e){var r=this[0];return r!=null&&r._private.classes.has(e)},"hasClass"),toggleClass:o(function(e,r){En(e)||(e=e.match(/\S+/g)||[]);for(var n=this,i=r===void 0,a=[],s=0,l=n.length;s0&&this.spawn(a).updateStyle().emit("class"),n},"toggleClass"),removeClass:o(function(e){return this.toggleClass(e,!1)},"removeClass"),flashClass:o(function(e,r){var n=this;if(r==null)r=250;else if(r===0)return n;return n.addClass(e),setTimeout(function(){n.removeClass(e)},r),n},"flashClass")};hS.className=hS.classNames=hS.classes;Vr={metaChar:"[\\!\\\"\\#\\$\\%\\&\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]",comparatorOp:"=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=",boolOp:"\\?|\\!|\\^",string:`"(?:\\\\"|[^"])*"|'(?:\\\\'|[^'])*'`,number:Hi,meta:"degree|indegree|outdegree",separator:"\\s*,\\s*",descendant:"\\s+",child:"\\s+>\\s+",subject:"\\$",group:"node|edge|\\*",directedEdge:"\\s+->\\s+",undirectedEdge:"\\s+<->\\s+"};Vr.variable="(?:[\\w-.]|(?:\\\\"+Vr.metaChar+"))+";Vr.className="(?:[\\w-]|(?:\\\\"+Vr.metaChar+"))+";Vr.value=Vr.string+"|"+Vr.number;Vr.id=Vr.variable;(function(){var t,e,r;for(t=Vr.comparatorOp.split("|"),r=0;r=0)&&e!=="="&&(Vr.comparatorOp+="|\\!"+e)})();mn=o(function(){return{checks:[]}},"newQuery"),$t={GROUP:0,COLLECTION:1,FILTER:2,DATA_COMPARE:3,DATA_EXIST:4,DATA_BOOL:5,META_COMPARE:6,STATE:7,ID:8,CLASS:9,UNDIRECTED_EDGE:10,DIRECTED_EDGE:11,NODE_SOURCE:12,NODE_TARGET:13,NODE_NEIGHBOR:14,CHILD:15,DESCENDANT:16,PARENT:17,ANCESTOR:18,COMPOUND_SPLIT:19,TRUE:20},zP=[{selector:":selected",matches:o(function(e){return e.selected()},"matches")},{selector:":unselected",matches:o(function(e){return!e.selected()},"matches")},{selector:":selectable",matches:o(function(e){return e.selectable()},"matches")},{selector:":unselectable",matches:o(function(e){return!e.selectable()},"matches")},{selector:":locked",matches:o(function(e){return e.locked()},"matches")},{selector:":unlocked",matches:o(function(e){return!e.locked()},"matches")},{selector:":visible",matches:o(function(e){return e.visible()},"matches")},{selector:":hidden",matches:o(function(e){return!e.visible()},"matches")},{selector:":transparent",matches:o(function(e){return e.transparent()},"matches")},{selector:":grabbed",matches:o(function(e){return e.grabbed()},"matches")},{selector:":free",matches:o(function(e){return!e.grabbed()},"matches")},{selector:":removed",matches:o(function(e){return e.removed()},"matches")},{selector:":inside",matches:o(function(e){return!e.removed()},"matches")},{selector:":grabbable",matches:o(function(e){return e.grabbable()},"matches")},{selector:":ungrabbable",matches:o(function(e){return!e.grabbable()},"matches")},{selector:":animated",matches:o(function(e){return e.animated()},"matches")},{selector:":unanimated",matches:o(function(e){return!e.animated()},"matches")},{selector:":parent",matches:o(function(e){return e.isParent()},"matches")},{selector:":childless",matches:o(function(e){return e.isChildless()},"matches")},{selector:":child",matches:o(function(e){return e.isChild()},"matches")},{selector:":orphan",matches:o(function(e){return e.isOrphan()},"matches")},{selector:":nonorphan",matches:o(function(e){return e.isChild()},"matches")},{selector:":compound",matches:o(function(e){return e.isNode()?e.isParent():e.source().isParent()||e.target().isParent()},"matches")},{selector:":loop",matches:o(function(e){return e.isLoop()},"matches")},{selector:":simple",matches:o(function(e){return e.isSimple()},"matches")},{selector:":active",matches:o(function(e){return e.active()},"matches")},{selector:":inactive",matches:o(function(e){return!e.active()},"matches")},{selector:":backgrounding",matches:o(function(e){return e.backgrounding()},"matches")},{selector:":nonbackgrounding",matches:o(function(e){return!e.backgrounding()},"matches")}].sort(function(t,e){return hWe(t.selector,e.selector)}),Jje=function(){for(var t={},e,r=0;r0&&f.edgeCount>0)return un("The selector `"+e+"` is invalid because it uses both a compound selector and an edge selector"),!1;if(f.edgeCount>1)return un("The selector `"+e+"` is invalid because it uses multiple edge selectors"),!1;f.edgeCount===1&&un("The selector `"+e+"` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.")}return!0},"parse"),aKe=o(function(){if(this.toStringCache!=null)return this.toStringCache;for(var e=o(function(f){return f??""},"clean"),r=o(function(f){return Zt(f)?'"'+f+'"':e(f)},"cleanVal"),n=o(function(f){return" "+f+" "},"space"),i=o(function(f,d){var p=f.type,m=f.value;switch(p){case $t.GROUP:{var g=e(m);return g.substring(0,g.length-1)}case $t.DATA_COMPARE:{var y=f.field,v=f.operator;return"["+y+n(e(v))+r(m)+"]"}case $t.DATA_BOOL:{var x=f.operator,b=f.field;return"["+e(x)+b+"]"}case $t.DATA_EXIST:{var w=f.field;return"["+w+"]"}case $t.META_COMPARE:{var C=f.operator,T=f.field;return"[["+T+n(e(C))+r(m)+"]]"}case $t.STATE:return m;case $t.ID:return"#"+m;case $t.CLASS:return"."+m;case $t.PARENT:case $t.CHILD:return a(f.parent,d)+n(">")+a(f.child,d);case $t.ANCESTOR:case $t.DESCENDANT:return a(f.ancestor,d)+" "+a(f.descendant,d);case $t.COMPOUND_SPLIT:{var E=a(f.left,d),A=a(f.subject,d),S=a(f.right,d);return E+(E.length>0?" ":"")+A+S}case $t.TRUE:return""}},"checkToString"),a=o(function(f,d){return f.checks.reduce(function(p,m,g){return p+(d===f&&g===0?"$":"")+i(m,d)},"")},"queryToString"),s="",l=0;l1&&l=0&&(r=r.replace("!",""),d=!0),r.indexOf("@")>=0&&(r=r.replace("@",""),f=!0),(a||l||f)&&(u=!a&&!s?"":""+e,h=""+n),f&&(e=u=u.toLowerCase(),n=h=h.toLowerCase()),r){case"*=":i=u.indexOf(h)>=0;break;case"$=":i=u.indexOf(h,u.length-h.length)>=0;break;case"^=":i=u.indexOf(h)===0;break;case"=":i=e===n;break;case">":p=!0,i=e>n;break;case">=":p=!0,i=e>=n;break;case"<":p=!0,i=e1&&arguments[1]!==void 0?arguments[1]:!0;return fB(this,t,e,Fme)};o($me,"addParent");Z1.forEachUp=function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return fB(this,t,e,$me)};o(dKe,"addParentAndChildren");Z1.forEachUpAndDown=function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return fB(this,t,e,dKe)};Z1.ancestors=Z1.parents;Kb=zme={data:cn.data({field:"data",bindingEvent:"data",allowBinding:!0,allowSetting:!0,settingEvent:"data",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,immutableKeys:{id:!0,source:!0,target:!0,parent:!0},updateStyle:!0}),removeData:cn.removeData({field:"data",event:"data",triggerFnName:"trigger",triggerEvent:!0,immutableKeys:{id:!0,source:!0,target:!0,parent:!0},updateStyle:!0}),scratch:cn.data({field:"scratch",bindingEvent:"scratch",allowBinding:!0,allowSetting:!0,settingEvent:"scratch",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeScratch:cn.removeData({field:"scratch",event:"scratch",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0}),rscratch:cn.data({field:"rscratch",allowBinding:!1,allowSetting:!0,settingTriggersEvent:!1,allowGetting:!0}),removeRscratch:cn.removeData({field:"rscratch",triggerEvent:!1}),id:o(function(){var e=this[0];if(e)return e._private.data.id},"id")};Kb.attr=Kb.data;Kb.removeAttr=Kb.removeData;pKe=zme,FS={};o(SP,"defineDegreeFunction");rr(FS,{degree:SP(function(t,e){return e.source().same(e.target())?2:1}),indegree:SP(function(t,e){return e.target().same(t)?1:0}),outdegree:SP(function(t,e){return e.source().same(t)?1:0})});o(F1,"defineDegreeBoundsFunction");rr(FS,{minDegree:F1("degree",function(t,e){return te}),minIndegree:F1("indegree",function(t,e){return te}),minOutdegree:F1("outdegree",function(t,e){return te})});rr(FS,{totalDegree:o(function(e){for(var r=0,n=this.nodes(),i=0;i0,p=d;d&&(f=f[0]);var m=p?f.position():{x:0,y:0};r!==void 0?h.position(e,r+m[e]):a!==void 0&&h.position({x:a.x+m.x,y:a.y+m.y})}else{var g=n.position(),y=l?n.parent():null,v=y&&y.length>0,x=v;v&&(y=y[0]);var b=x?y.position():{x:0,y:0};return a={x:g.x-b.x,y:g.y-b.y},e===void 0?a:a[e]}else if(!s)return;return this},"relativePosition")};Vl.modelPosition=Vl.point=Vl.position;Vl.modelPositions=Vl.points=Vl.positions;Vl.renderedPoint=Vl.renderedPosition;Vl.relativePoint=Vl.relativePosition;mKe=Gme;X1=Of={};Of.renderedBoundingBox=function(t){var e=this.boundingBox(t),r=this.cy(),n=r.zoom(),i=r.pan(),a=e.x1*n+i.x,s=e.x2*n+i.x,l=e.y1*n+i.y,u=e.y2*n+i.y;return{x1:a,x2:s,y1:l,y2:u,w:s-a,h:u-l}};Of.dirtyCompoundBoundsCache=function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,e=this.cy();return!e.styleEnabled()||!e.hasCompoundNodes()?this:(this.forEachUp(function(r){if(r.isParent()){var n=r._private;n.compoundBoundsClean=!1,n.bbCache=null,t||r.emitAndNotify("bounds")}}),this)};Of.updateCompoundBounds=function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,e=this.cy();if(!e.styleEnabled()||!e.hasCompoundNodes())return this;if(!t&&e.batching())return this;function r(s){if(!s.isParent())return;var l=s._private,u=s.children(),h=s.pstyle("compound-sizing-wrt-labels").value==="include",f={width:{val:s.pstyle("min-width").pfValue,left:s.pstyle("min-width-bias-left"),right:s.pstyle("min-width-bias-right")},height:{val:s.pstyle("min-height").pfValue,top:s.pstyle("min-height-bias-top"),bottom:s.pstyle("min-height-bias-bottom")}},d=u.boundingBox({includeLabels:h,includeOverlays:!1,useCache:!1}),p=l.position;(d.w===0||d.h===0)&&(d={w:s.pstyle("width").pfValue,h:s.pstyle("height").pfValue},d.x1=p.x-d.w/2,d.x2=p.x+d.w/2,d.y1=p.y-d.h/2,d.y2=p.y+d.h/2);function m(_,I,D){var k=0,L=0,R=I+D;return _>0&&R>0&&(k=I/R*_,L=D/R*_),{biasDiff:k,biasComplementDiff:L}}o(m,"computeBiasValues");function g(_,I,D,k){if(D.units==="%")switch(k){case"width":return _>0?D.pfValue*_:0;case"height":return I>0?D.pfValue*I:0;case"average":return _>0&&I>0?D.pfValue*(_+I)/2:0;case"min":return _>0&&I>0?_>I?D.pfValue*I:D.pfValue*_:0;case"max":return _>0&&I>0?_>I?D.pfValue*_:D.pfValue*I:0;default:return 0}else return D.units==="px"?D.pfValue:0}o(g,"computePaddingValues");var y=f.width.left.value;f.width.left.units==="px"&&f.width.val>0&&(y=y*100/f.width.val);var v=f.width.right.value;f.width.right.units==="px"&&f.width.val>0&&(v=v*100/f.width.val);var x=f.height.top.value;f.height.top.units==="px"&&f.height.val>0&&(x=x*100/f.height.val);var b=f.height.bottom.value;f.height.bottom.units==="px"&&f.height.val>0&&(b=b*100/f.height.val);var w=m(f.width.val-d.w,y,v),C=w.biasDiff,T=w.biasComplementDiff,E=m(f.height.val-d.h,x,b),A=E.biasDiff,S=E.biasComplementDiff;l.autoPadding=g(d.w,d.h,s.pstyle("padding"),s.pstyle("padding-relative-to").value),l.autoWidth=Math.max(d.w,f.width.val),p.x=(-C+d.x1+d.x2+T)/2,l.autoHeight=Math.max(d.h,f.height.val),p.y=(-A+d.y1+d.y2+S)/2}o(r,"update");for(var n=0;ne.x2?i:e.x2,e.y1=ne.y2?a:e.y2,e.w=e.x2-e.x1,e.h=e.y2-e.y1)},"updateBounds"),Pp=o(function(e,r){return r==null?e:zl(e,r.x1,r.y1,r.x2,r.y2)},"updateBoundsFromBox"),Db=o(function(e,r,n){return Gl(e,r,n)},"prefixedProperty"),tS=o(function(e,r,n){if(!r.cy().headless()){var i=r._private,a=i.rstyle,s=a.arrowWidth/2,l=r.pstyle(n+"-arrow-shape").value,u,h;if(l!=="none"){n==="source"?(u=a.srcX,h=a.srcY):n==="target"?(u=a.tgtX,h=a.tgtY):(u=a.midX,h=a.midY);var f=i.arrowBounds=i.arrowBounds||{},d=f[n]=f[n]||{};d.x1=u-s,d.y1=h-s,d.x2=u+s,d.y2=h+s,d.w=d.x2-d.x1,d.h=d.y2-d.y1,cS(d,1),zl(e,d.x1,d.y1,d.x2,d.y2)}}},"updateBoundsFromArrow"),CP=o(function(e,r,n){if(!r.cy().headless()){var i;n?i=n+"-":i="";var a=r._private,s=a.rstyle,l=r.pstyle(i+"label").strValue;if(l){var u=r.pstyle("text-halign"),h=r.pstyle("text-valign"),f=Db(s,"labelWidth",n),d=Db(s,"labelHeight",n),p=Db(s,"labelX",n),m=Db(s,"labelY",n),g=r.pstyle(i+"text-margin-x").pfValue,y=r.pstyle(i+"text-margin-y").pfValue,v=r.isEdge(),x=r.pstyle(i+"text-rotation"),b=r.pstyle("text-outline-width").pfValue,w=r.pstyle("text-border-width").pfValue,C=w/2,T=r.pstyle("text-background-padding").pfValue,E=2,A=d,S=f,_=S/2,I=A/2,D,k,L,R;if(v)D=p-_,k=p+_,L=m-I,R=m+I;else{switch(u.value){case"left":D=p-S,k=p;break;case"center":D=p-_,k=p+_;break;case"right":D=p,k=p+S;break}switch(h.value){case"top":L=m-A,R=m;break;case"center":L=m-I,R=m+I;break;case"bottom":L=m,R=m+A;break}}var O=g-Math.max(b,C)-T-E,M=g+Math.max(b,C)+T+E,B=y-Math.max(b,C)-T-E,F=y+Math.max(b,C)+T+E;D+=O,k+=M,L+=B,R+=F;var P=n||"main",z=a.labelBounds,$=z[P]=z[P]||{};$.x1=D,$.y1=L,$.x2=k,$.y2=R,$.w=k-D,$.h=R-L,$.leftPad=O,$.rightPad=M,$.topPad=B,$.botPad=F;var H=v&&x.strValue==="autorotate",Q=x.pfValue!=null&&x.pfValue!==0;if(H||Q){var j=H?Db(a.rstyle,"labelAngle",n):x.pfValue,ie=Math.cos(j),ne=Math.sin(j),le=(D+k)/2,he=(L+R)/2;if(!v){switch(u.value){case"left":le=k;break;case"right":le=D;break}switch(h.value){case"top":he=R;break;case"bottom":he=L;break}}var K=o(function(ce,ae){return ce=ce-le,ae=ae-he,{x:ce*ie-ae*ne+le,y:ce*ne+ae*ie+he}},"rotate"),X=K(D,L),te=K(D,R),J=K(k,L),se=K(k,R);D=Math.min(X.x,te.x,J.x,se.x),k=Math.max(X.x,te.x,J.x,se.x),L=Math.min(X.y,te.y,J.y,se.y),R=Math.max(X.y,te.y,J.y,se.y)}var ue=P+"Rot",Z=z[ue]=z[ue]||{};Z.x1=D,Z.y1=L,Z.x2=k,Z.y2=R,Z.w=k-D,Z.h=R-L,zl(e,D,L,k,R),zl(a.labelBounds.all,D,L,k,R)}return e}},"updateBoundsFromLabel"),gKe=o(function(e,r){if(!r.cy().headless()){var n=r.pstyle("outline-opacity").value,i=r.pstyle("outline-width").value;if(n>0&&i>0){var a=r.pstyle("outline-offset").value,s=r.pstyle("shape").value,l=i+a,u=(e.w+l*2)/e.w,h=(e.h+l*2)/e.h,f=0,d=0;["diamond","pentagon","round-triangle"].includes(s)?(u=(e.w+l*2.4)/e.w,d=-l/3.6):["concave-hexagon","rhomboid","right-rhomboid"].includes(s)?u=(e.w+l*2.4)/e.w:s==="star"?(u=(e.w+l*2.8)/e.w,h=(e.h+l*2.6)/e.h,d=-l/3.8):s==="triangle"?(u=(e.w+l*2.8)/e.w,h=(e.h+l*2.4)/e.h,d=-l/1.4):s==="vee"&&(u=(e.w+l*4.4)/e.w,h=(e.h+l*3.8)/e.h,d=-l*.5);var p=e.h*h-e.h,m=e.w*u-e.w;if(uS(e,[Math.ceil(p/2),Math.ceil(m/2)]),f!=0||d!==0){var g=Bqe(e,f,d);gme(e,g)}}}},"updateBoundsFromOutline"),yKe=o(function(e,r){var n=e._private.cy,i=n.styleEnabled(),a=n.headless(),s=Hs(),l=e._private,u=e.isNode(),h=e.isEdge(),f,d,p,m,g,y,v=l.rstyle,x=u&&i?e.pstyle("bounds-expansion").pfValue:[0],b=o(function(Se){return Se.pstyle("display").value!=="none"},"isDisplayed"),w=!i||b(e)&&(!h||b(e.source())&&b(e.target()));if(w){var C=0,T=0;i&&r.includeOverlays&&(C=e.pstyle("overlay-opacity").value,C!==0&&(T=e.pstyle("overlay-padding").value));var E=0,A=0;i&&r.includeUnderlays&&(E=e.pstyle("underlay-opacity").value,E!==0&&(A=e.pstyle("underlay-padding").value));var S=Math.max(T,A),_=0,I=0;if(i&&(_=e.pstyle("width").pfValue,I=_/2),u&&r.includeNodes){var D=e.position();g=D.x,y=D.y;var k=e.outerWidth(),L=k/2,R=e.outerHeight(),O=R/2;f=g-L,d=g+L,p=y-O,m=y+O,zl(s,f,p,d,m),i&&r.includeOutlines&&gKe(s,e)}else if(h&&r.includeEdges)if(i&&!a){var M=e.pstyle("curve-style").strValue;if(f=Math.min(v.srcX,v.midX,v.tgtX),d=Math.max(v.srcX,v.midX,v.tgtX),p=Math.min(v.srcY,v.midY,v.tgtY),m=Math.max(v.srcY,v.midY,v.tgtY),f-=I,d+=I,p-=I,m+=I,zl(s,f,p,d,m),M==="haystack"){var B=v.haystackPts;if(B&&B.length===2){if(f=B[0].x,p=B[0].y,d=B[1].x,m=B[1].y,f>d){var F=f;f=d,d=F}if(p>m){var P=p;p=m,m=P}zl(s,f-I,p-I,d+I,m+I)}}else if(M==="bezier"||M==="unbundled-bezier"||M.endsWith("segments")||M.endsWith("taxi")){var z;switch(M){case"bezier":case"unbundled-bezier":z=v.bezierPts;break;case"segments":case"taxi":case"round-segments":case"round-taxi":z=v.linePts;break}if(z!=null)for(var $=0;$d){var le=f;f=d,d=le}if(p>m){var he=p;p=m,m=he}f-=I,d+=I,p-=I,m+=I,zl(s,f,p,d,m)}if(i&&r.includeEdges&&h&&(tS(s,e,"mid-source"),tS(s,e,"mid-target"),tS(s,e,"source"),tS(s,e,"target")),i){var K=e.pstyle("ghost").value==="yes";if(K){var X=e.pstyle("ghost-offset-x").pfValue,te=e.pstyle("ghost-offset-y").pfValue;zl(s,s.x1+X,s.y1+te,s.x2+X,s.y2+te)}}var J=l.bodyBounds=l.bodyBounds||{};Fpe(J,s),uS(J,x),cS(J,1),i&&(f=s.x1,d=s.x2,p=s.y1,m=s.y2,zl(s,f-S,p-S,d+S,m+S));var se=l.overlayBounds=l.overlayBounds||{};Fpe(se,s),uS(se,x),cS(se,1);var ue=l.labelBounds=l.labelBounds||{};ue.all!=null?Pqe(ue.all):ue.all=Hs(),i&&r.includeLabels&&(r.includeMainLabels&&CP(s,e,null),h&&(r.includeSourceLabels&&CP(s,e,"source"),r.includeTargetLabels&&CP(s,e,"target")))}return s.x1=el(s.x1),s.y1=el(s.y1),s.x2=el(s.x2),s.y2=el(s.y2),s.w=el(s.x2-s.x1),s.h=el(s.y2-s.y1),s.w>0&&s.h>0&&w&&(uS(s,x),cS(s,1)),s},"boundingBoxImpl"),Ume=o(function(e){var r=0,n=o(function(s){return(s?1:0)<=0;l--)s(l);return this};Nf.removeAllListeners=function(){return this.removeListener("*")};Nf.emit=Nf.trigger=function(t,e,r){var n=this.listeners,i=n.length;return this.emitting++,En(e)||(e=[e]),MKe(this,function(a,s){r!=null&&(n=[{event:s.event,type:s.type,namespace:s.namespace,callback:r}],i=n.length);for(var l=o(function(f){var d=n[f];if(d.type===s.type&&(!d.namespace||d.namespace===s.namespace||d.namespace===RKe)&&a.eventMatches(a.context,d,s)){var p=[s];e!=null&&uqe(p,e),a.beforeEmit(a.context,d,s),d.conf&&d.conf.one&&(a.listeners=a.listeners.filter(function(y){return y!==d}));var m=a.callbackContext(a.context,d,s),g=d.callback.apply(m,p);a.afterEmit(a.context,d,s),g===!1&&(s.stopPropagation(),s.preventDefault())}},"_loop2"),u=0;u1&&!s){var l=this.length-1,u=this[l],h=u._private.data.id;this[l]=void 0,this[e]=u,a.set(h,{ele:u,index:e})}return this.length--,this},"unmergeAt"),unmergeOne:o(function(e){e=e[0];var r=this._private,n=e._private.data.id,i=r.map,a=i.get(n);if(!a)return this;var s=a.index;return this.unmergeAt(s),this},"unmergeOne"),unmerge:o(function(e){var r=this._private.cy;if(!e)return this;if(e&&Zt(e)){var n=e;e=r.mutableElements().filter(n)}for(var i=0;i=0;r--){var n=this[r];e(n)&&this.unmergeAt(r)}return this},"unmergeBy"),map:o(function(e,r){for(var n=[],i=this,a=0;an&&(n=u,i=l)}return{value:n,ele:i}},"max"),min:o(function(e,r){for(var n=1/0,i,a=this,s=0;s=0&&a"u"?"undefined":Wi(Symbol))!=e&&Wi(Symbol.iterator)!=e;r&&(ES[Symbol.iterator]=function(){var n=this,i={value:void 0,done:!1},a=0,s=this.length;return X0e({next:o(function(){return a1&&arguments[1]!==void 0?arguments[1]:!0,n=this[0],i=n.cy();if(i.styleEnabled()&&n){n._private.styleDirty&&(n._private.styleDirty=!1,i.style().apply(n));var a=n._private.style[e];return a??(r?i.style().getDefaultProperty(e):null)}},"parsedStyle"),numericStyle:o(function(e){var r=this[0];if(r.cy().styleEnabled()&&r){var n=r.pstyle(e);return n.pfValue!==void 0?n.pfValue:n.value}},"numericStyle"),numericStyleUnits:o(function(e){var r=this[0];if(r.cy().styleEnabled()&&r)return r.pstyle(e).units},"numericStyleUnits"),renderedStyle:o(function(e){var r=this.cy();if(!r.styleEnabled())return this;var n=this[0];if(n)return r.style().getRenderedStyle(n,e)},"renderedStyle"),style:o(function(e,r){var n=this.cy();if(!n.styleEnabled())return this;var i=!1,a=n.style();if(Ur(e)){var s=e;a.applyBypass(this,s,i),this.emitAndNotify("style")}else if(Zt(e))if(r===void 0){var l=this[0];return l?a.getStylePropertyValue(l,e):void 0}else a.applyBypass(this,e,r,i),this.emitAndNotify("style");else if(e===void 0){var u=this[0];return u?a.getRawStyle(u):void 0}return this},"style"),removeStyle:o(function(e){var r=this.cy();if(!r.styleEnabled())return this;var n=!1,i=r.style(),a=this;if(e===void 0)for(var s=0;s0&&e.push(f[0]),e.push(l[0])}return this.spawn(e,!0).filter(t)},"neighborhood"),closedNeighborhood:o(function(e){return this.neighborhood().add(this).filter(e)},"closedNeighborhood"),openNeighborhood:o(function(e){return this.neighborhood(e)},"openNeighborhood")});$a.neighbourhood=$a.neighborhood;$a.closedNeighbourhood=$a.closedNeighborhood;$a.openNeighbourhood=$a.openNeighborhood;rr($a,{source:tl(o(function(e){var r=this[0],n;return r&&(n=r._private.source||r.cy().collection()),n&&e?n.filter(e):n},"sourceImpl"),"source"),target:tl(o(function(e){var r=this[0],n;return r&&(n=r._private.target||r.cy().collection()),n&&e?n.filter(e):n},"targetImpl"),"target"),sources:g0e({attr:"source"}),targets:g0e({attr:"target"})});o(g0e,"defineSourceFunction");rr($a,{edgesWith:tl(y0e(),"edgesWith"),edgesTo:tl(y0e({thisIsSrc:!0}),"edgesTo")});o(y0e,"defineEdgesWithFunction");rr($a,{connectedEdges:tl(function(t){for(var e=[],r=this,n=0;n0);return s},"components"),component:o(function(){var e=this[0];return e.cy().mutableElements().components(e)[0]},"component")});$a.componentsOf=$a.components;ka=o(function(e,r){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,i=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if(e===void 0){ai("A collection must have a reference to the core");return}var a=new Xc,s=!1;if(!r)r=[];else if(r.length>0&&Ur(r[0])&&!t4(r[0])){s=!0;for(var l=[],u=new J1,h=0,f=r.length;h0&&arguments[0]!==void 0?arguments[0]:!0,e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=this,n=r.cy(),i=n._private,a=[],s=[],l,u=0,h=r.length;u0){for(var P=l.length===r.length?r:new ka(n,l),z=0;z0&&arguments[0]!==void 0?arguments[0]:!0,e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=this,n=[],i={},a=r._private.cy;function s(R){for(var O=R._private.edges,M=0;M0&&(t?D.emitAndNotify("remove"):e&&D.emit("remove"));for(var k=0;kf&&Math.abs(g.v)>f;);return p?function(y){return u[y*(u.length-1)|0]}:h},"springRK4Factory")}(),Nn=o(function(e,r,n,i){var a=UKe(e,r,n,i);return function(s,l,u){return s+(l-s)*a(u)}},"cubicBezier"),dS={linear:o(function(e,r,n){return e+(r-e)*n},"linear"),ease:Nn(.25,.1,.25,1),"ease-in":Nn(.42,0,1,1),"ease-out":Nn(0,0,.58,1),"ease-in-out":Nn(.42,0,.58,1),"ease-in-sine":Nn(.47,0,.745,.715),"ease-out-sine":Nn(.39,.575,.565,1),"ease-in-out-sine":Nn(.445,.05,.55,.95),"ease-in-quad":Nn(.55,.085,.68,.53),"ease-out-quad":Nn(.25,.46,.45,.94),"ease-in-out-quad":Nn(.455,.03,.515,.955),"ease-in-cubic":Nn(.55,.055,.675,.19),"ease-out-cubic":Nn(.215,.61,.355,1),"ease-in-out-cubic":Nn(.645,.045,.355,1),"ease-in-quart":Nn(.895,.03,.685,.22),"ease-out-quart":Nn(.165,.84,.44,1),"ease-in-out-quart":Nn(.77,0,.175,1),"ease-in-quint":Nn(.755,.05,.855,.06),"ease-out-quint":Nn(.23,1,.32,1),"ease-in-out-quint":Nn(.86,0,.07,1),"ease-in-expo":Nn(.95,.05,.795,.035),"ease-out-expo":Nn(.19,1,.22,1),"ease-in-out-expo":Nn(1,0,0,1),"ease-in-circ":Nn(.6,.04,.98,.335),"ease-out-circ":Nn(.075,.82,.165,1),"ease-in-out-circ":Nn(.785,.135,.15,.86),spring:o(function(e,r,n){if(n===0)return dS.linear;var i=HKe(e,r,n);return function(a,s,l){return a+(s-a)*i(l)}},"spring"),"cubic-bezier":Nn};o(x0e,"getEasedValue");o(b0e,"getValue");o($1,"ease");o(WKe,"step$1");o(Rb,"valid");o(qKe,"startAnimation");o(w0e,"stepAll");YKe={animate:cn.animate(),animation:cn.animation(),animated:cn.animated(),clearQueue:cn.clearQueue(),delay:cn.delay(),delayAnimation:cn.delayAnimation(),stop:cn.stop(),addToAnimationPool:o(function(e){var r=this;r.styleEnabled()&&r._private.aniEles.merge(e)},"addToAnimationPool"),stopAnimationLoop:o(function(){this._private.animationsRunning=!1},"stopAnimationLoop"),startAnimationLoop:o(function(){var e=this;if(e._private.animationsRunning=!0,!e.styleEnabled())return;function r(){e._private.animationsRunning&&xS(o(function(a){w0e(a,e),r()},"animationStep"))}o(r,"headlessStep");var n=e.renderer();n&&n.beforeRender?n.beforeRender(o(function(a,s){w0e(s,e)},"rendererAnimationStep"),n.beforeRenderPriorities.animations):r()},"startAnimationLoop")},XKe={qualifierCompare:o(function(e,r){return e==null||r==null?e==null&&r==null:e.sameText(r)},"qualifierCompare"),eventMatches:o(function(e,r,n){var i=r.qualifier;return i!=null?e!==n.target&&t4(n.target)&&i.matches(n.target):!0},"eventMatches"),addEventFields:o(function(e,r){r.cy=e,r.target=e},"addEventFields"),callbackContext:o(function(e,r,n){return r.qualifier!=null?n.target:e},"callbackContext")},iS=o(function(e){return Zt(e)?new Lf(e):e},"argSelector"),ege={createEmitter:o(function(){var e=this._private;return e.emitter||(e.emitter=new $S(XKe,this)),this},"createEmitter"),emitter:o(function(){return this._private.emitter},"emitter"),on:o(function(e,r,n){return this.emitter().on(e,iS(r),n),this},"on"),removeListener:o(function(e,r,n){return this.emitter().removeListener(e,iS(r),n),this},"removeListener"),removeAllListeners:o(function(){return this.emitter().removeAllListeners(),this},"removeAllListeners"),one:o(function(e,r,n){return this.emitter().one(e,iS(r),n),this},"one"),once:o(function(e,r,n){return this.emitter().one(e,iS(r),n),this},"once"),emit:o(function(e,r){return this.emitter().emit(e,r),this},"emit"),emitAndNotify:o(function(e,r){return this.emit(e),this.notify(e,r),this},"emitAndNotify")};cn.eventAliasesOn(ege);VP={png:o(function(e){var r=this._private.renderer;return e=e||{},r.png(e)},"png"),jpg:o(function(e){var r=this._private.renderer;return e=e||{},e.bg=e.bg||"#fff",r.jpg(e)},"jpg")};VP.jpeg=VP.jpg;pS={layout:o(function(e){var r=this;if(e==null){ai("Layout options must be specified to make a layout");return}if(e.name==null){ai("A `name` must be specified to make a layout");return}var n=e.name,i=r.extension("layout",n);if(i==null){ai("No such layout `"+n+"` found. Did you forget to import it and `cytoscape.use()` it?");return}var a;Zt(e.eles)?a=r.$(e.eles):a=e.eles!=null?e.eles:r.$();var s=new i(rr({},e,{cy:r,eles:a}));return s},"layout")};pS.createLayout=pS.makeLayout=pS.layout;jKe={notify:o(function(e,r){var n=this._private;if(this.batching()){n.batchNotifications=n.batchNotifications||{};var i=n.batchNotifications[e]=n.batchNotifications[e]||this.collection();r!=null&&i.merge(r);return}if(n.notificationsEnabled){var a=this.renderer();this.destroyed()||!a||a.notify(e,r)}},"notify"),notifications:o(function(e){var r=this._private;return e===void 0?r.notificationsEnabled:(r.notificationsEnabled=!!e,this)},"notifications"),noNotifications:o(function(e){this.notifications(!1),e(),this.notifications(!0)},"noNotifications"),batching:o(function(){return this._private.batchCount>0},"batching"),startBatch:o(function(){var e=this._private;return e.batchCount==null&&(e.batchCount=0),e.batchCount===0&&(e.batchStyleEles=this.collection(),e.batchNotifications={}),e.batchCount++,this},"startBatch"),endBatch:o(function(){var e=this._private;if(e.batchCount===0)return this;if(e.batchCount--,e.batchCount===0){e.batchStyleEles.updateStyle();var r=this.renderer();Object.keys(e.batchNotifications).forEach(function(n){var i=e.batchNotifications[n];i.empty()?r.notify(n):r.notify(n,i)})}return this},"endBatch"),batch:o(function(e){return this.startBatch(),e(),this.endBatch(),this},"batch"),batchData:o(function(e){var r=this;return this.batch(function(){for(var n=Object.keys(e),i=0;i0;)r.removeChild(r.childNodes[0]);e._private.renderer=null,e.mutableElements().forEach(function(n){var i=n._private;i.rscratch={},i.rstyle={},i.animation.current=[],i.animation.queue=[]})},"destroyRenderer"),onRender:o(function(e){return this.on("render",e)},"onRender"),offRender:o(function(e){return this.off("render",e)},"offRender")};UP.invalidateDimensions=UP.resize;mS={collection:o(function(e,r){return Zt(e)?this.$(e):go(e)?e.collection():En(e)?(r||(r={}),new ka(this,e,r.unique,r.removed)):new ka(this)},"collection"),nodes:o(function(e){var r=this.$(function(n){return n.isNode()});return e?r.filter(e):r},"nodes"),edges:o(function(e){var r=this.$(function(n){return n.isEdge()});return e?r.filter(e):r},"edges"),$:o(function(e){var r=this._private.elements;return e?r.filter(e):r.spawnSelf()},"$"),mutableElements:o(function(){return this._private.elements},"mutableElements")};mS.elements=mS.filter=mS.$;Ga={},$b="t",QKe="f";Ga.apply=function(t){for(var e=this,r=e._private,n=r.cy,i=n.collection(),a=0;a0;if(p||d&&m){var g=void 0;p&&m||p?g=h.properties:m&&(g=h.mappedProperties);for(var y=0;y1&&(C=1),l.color){var E=n.valueMin[0],A=n.valueMax[0],S=n.valueMin[1],_=n.valueMax[1],I=n.valueMin[2],D=n.valueMax[2],k=n.valueMin[3]==null?1:n.valueMin[3],L=n.valueMax[3]==null?1:n.valueMax[3],R=[Math.round(E+(A-E)*C),Math.round(S+(_-S)*C),Math.round(I+(D-I)*C),Math.round(k+(L-k)*C)];a={bypass:n.bypass,name:n.name,value:R,strValue:"rgb("+R[0]+", "+R[1]+", "+R[2]+")"}}else if(l.number){var O=n.valueMin+(n.valueMax-n.valueMin)*C;a=this.parse(n.name,O,n.bypass,p)}else return!1;if(!a)return y(),!1;a.mapping=n,n=a;break}case s.data:{for(var M=n.field.split("."),B=d.data,F=0;F0&&a>0){for(var l={},u=!1,h=0;h0?t.delayAnimation(s).play().promise().then(w):w()}).then(function(){return t.animation({style:l,duration:a,easing:t.pstyle("transition-timing-function").value,queue:!1}).play().promise()}).then(function(){r.removeBypasses(t,i),t.emitAndNotify("style"),n.transitioning=!1})}else n.transitioning&&(this.removeBypasses(t,i),t.emitAndNotify("style"),n.transitioning=!1)};Ga.checkTrigger=function(t,e,r,n,i,a){var s=this.properties[e],l=i(s);l!=null&&l(r,n)&&a(s)};Ga.checkZOrderTrigger=function(t,e,r,n){var i=this;this.checkTrigger(t,e,r,n,function(a){return a.triggersZOrder},function(){i._private.cy.notify("zorder",t)})};Ga.checkBoundsTrigger=function(t,e,r,n){this.checkTrigger(t,e,r,n,function(i){return i.triggersBounds},function(i){t.dirtyCompoundBoundsCache(),t.dirtyBoundingBoxCache(),i.triggersBoundsOfParallelBeziers&&e==="curve-style"&&(r==="bezier"||n==="bezier")&&t.parallelEdges().forEach(function(a){a.dirtyBoundingBoxCache()}),i.triggersBoundsOfConnectedEdges&&e==="display"&&(r==="none"||n==="none")&&t.connectedEdges().forEach(function(a){a.dirtyBoundingBoxCache()})})};Ga.checkTriggers=function(t,e,r,n){t.dirtyStyleCache(),this.checkZOrderTrigger(t,e,r,n),this.checkBoundsTrigger(t,e,r,n)};s4={};s4.applyBypass=function(t,e,r,n){var i=this,a=[],s=!0;if(e==="*"||e==="**"){if(r!==void 0)for(var l=0;li.length?n=n.substr(i.length):n=""}o(l,"removeSelAndBlockFromRemaining");function u(){a.length>s.length?a=a.substr(s.length):a=""}for(o(u,"removePropAndValFromRem");;){var h=n.match(/^\s*$/);if(h)break;var f=n.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/);if(!f){un("Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: "+n);break}i=f[0];var d=f[1];if(d!=="core"){var p=new Lf(d);if(p.invalid){un("Skipping parsing of block: Invalid selector found in string stylesheet: "+d),l();continue}}var m=f[2],g=!1;a=m;for(var y=[];;){var v=a.match(/^\s*$/);if(v)break;var x=a.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/);if(!x){un("Skipping parsing of block: Invalid formatting of style property and value definitions found in:"+m),g=!0;break}s=x[0];var b=x[1],w=x[2],C=e.properties[b];if(!C){un("Skipping property: Invalid property name in: "+s),u();continue}var T=r.parse(b,w);if(!T){un("Skipping property: Invalid property definition in: "+s),u();continue}y.push({name:b,val:w}),u()}if(g){l();break}r.selector(d);for(var E=0;E=7&&e[0]==="d"&&(f=new RegExp(l.data.regex).exec(e))){if(r)return!1;var p=l.data;return{name:t,value:f,strValue:""+e,mapped:p,field:f[1],bypass:r}}else if(e.length>=10&&e[0]==="m"&&(d=new RegExp(l.mapData.regex).exec(e))){if(r||h.multiple)return!1;var m=l.mapData;if(!(h.color||h.number))return!1;var g=this.parse(t,d[4]);if(!g||g.mapped)return!1;var y=this.parse(t,d[5]);if(!y||y.mapped)return!1;if(g.pfValue===y.pfValue||g.strValue===y.strValue)return un("`"+t+": "+e+"` is not a valid mapper because the output range is zero; converting to `"+t+": "+g.strValue+"`"),this.parse(t,g.strValue);if(h.color){var v=g.value,x=y.value,b=v[0]===x[0]&&v[1]===x[1]&&v[2]===x[2]&&(v[3]===x[3]||(v[3]==null||v[3]===1)&&(x[3]==null||x[3]===1));if(b)return!1}return{name:t,value:d,strValue:""+e,mapped:m,field:d[1],fieldMin:parseFloat(d[2]),fieldMax:parseFloat(d[3]),valueMin:g.value,valueMax:y.value,bypass:r}}}if(h.multiple&&n!=="multiple"){var w;if(u?w=e.split(/\s+/):En(e)?w=e:w=[e],h.evenMultiple&&w.length%2!==0)return null;for(var C=[],T=[],E=[],A="",S=!1,_=0;_0?" ":"")+I.strValue}return h.validate&&!h.validate(C,T)?null:h.singleEnum&&S?C.length===1&&Zt(C[0])?{name:t,value:C[0],strValue:C[0],bypass:r}:null:{name:t,value:C,pfValue:E,strValue:A,bypass:r,units:T}}var D=o(function(){for(var K=0;Kh.max||h.strictMax&&e===h.max))return null;var M={name:t,value:e,strValue:""+e+(k||""),units:k,bypass:r};return h.unitless||k!=="px"&&k!=="em"?M.pfValue=e:M.pfValue=k==="px"||!k?e:this.getEmSizeInPixels()*e,(k==="ms"||k==="s")&&(M.pfValue=k==="ms"?e:1e3*e),(k==="deg"||k==="rad")&&(M.pfValue=k==="rad"?e:Nqe(e)),k==="%"&&(M.pfValue=e/100),M}else if(h.propList){var B=[],F=""+e;if(F!=="none"){for(var P=F.split(/\s*,\s*|\s+/),z=0;z0&&l>0&&!isNaN(n.w)&&!isNaN(n.h)&&n.w>0&&n.h>0){u=Math.min((s-2*r)/n.w,(l-2*r)/n.h),u=u>this._private.maxZoom?this._private.maxZoom:u,u=u=n.minZoom&&(n.maxZoom=r),this},"zoomRange"),minZoom:o(function(e){return e===void 0?this._private.minZoom:this.zoomRange({min:e})},"minZoom"),maxZoom:o(function(e){return e===void 0?this._private.maxZoom:this.zoomRange({max:e})},"maxZoom"),getZoomedViewport:o(function(e){var r=this._private,n=r.pan,i=r.zoom,a,s,l=!1;if(r.zoomingEnabled||(l=!0),Ct(e)?s=e:Ur(e)&&(s=e.level,e.position!=null?a=MS(e.position,i,n):e.renderedPosition!=null&&(a=e.renderedPosition),a!=null&&!r.panningEnabled&&(l=!0)),s=s>r.maxZoom?r.maxZoom:s,s=sr.maxZoom||!r.zoomingEnabled?s=!0:(r.zoom=u,a.push("zoom"))}if(i&&(!s||!e.cancelOnFailedZoom)&&r.panningEnabled){var h=e.pan;Ct(h.x)&&(r.pan.x=h.x,l=!1),Ct(h.y)&&(r.pan.y=h.y,l=!1),l||a.push("pan")}return a.length>0&&(a.push("viewport"),this.emit(a.join(" ")),this.notify("viewport")),this},"viewport"),center:o(function(e){var r=this.getCenterPan(e);return r&&(this._private.pan=r,this.emit("pan viewport"),this.notify("viewport")),this},"center"),getCenterPan:o(function(e,r){if(this._private.panningEnabled){if(Zt(e)){var n=e;e=this.mutableElements().filter(n)}else go(e)||(e=this.mutableElements());if(e.length!==0){var i=e.boundingBox(),a=this.width(),s=this.height();r=r===void 0?this._private.zoom:r;var l={x:(a-r*(i.x1+i.x2))/2,y:(s-r*(i.y1+i.y2))/2};return l}}},"getCenterPan"),reset:o(function(){return!this._private.panningEnabled||!this._private.zoomingEnabled?this:(this.viewport({pan:{x:0,y:0},zoom:1}),this)},"reset"),invalidateSize:o(function(){this._private.sizeCache=null},"invalidateSize"),size:o(function(){var e=this._private,r=e.container,n=this;return e.sizeCache=e.sizeCache||(r?function(){var i=n.window().getComputedStyle(r),a=o(function(l){return parseFloat(i.getPropertyValue(l))},"val");return{width:r.clientWidth-a("padding-left")-a("padding-right"),height:r.clientHeight-a("padding-top")-a("padding-bottom")}}():{width:1,height:1})},"size"),width:o(function(){return this.size().width},"width"),height:o(function(){return this.size().height},"height"),extent:o(function(){var e=this._private.pan,r=this._private.zoom,n=this.renderedExtent(),i={x1:(n.x1-e.x)/r,x2:(n.x2-e.x)/r,y1:(n.y1-e.y)/r,y2:(n.y2-e.y)/r};return i.w=i.x2-i.x1,i.h=i.y2-i.y1,i},"extent"),renderedExtent:o(function(){var e=this.width(),r=this.height();return{x1:0,y1:0,x2:e,y2:r,w:e,h:r}},"renderedExtent"),multiClickDebounceTime:o(function(e){if(e)this._private.multiClickDebounceTime=e;else return this._private.multiClickDebounceTime;return this},"multiClickDebounceTime")};Hp.centre=Hp.center;Hp.autolockNodes=Hp.autolock;Hp.autoungrabifyNodes=Hp.autoungrabify;Zb={data:cn.data({field:"data",bindingEvent:"data",allowBinding:!0,allowSetting:!0,settingEvent:"data",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeData:cn.removeData({field:"data",event:"data",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0}),scratch:cn.data({field:"scratch",bindingEvent:"scratch",allowBinding:!0,allowSetting:!0,settingEvent:"scratch",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeScratch:cn.removeData({field:"scratch",event:"scratch",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0})};Zb.attr=Zb.data;Zb.removeAttr=Zb.removeData;Jb=o(function(e){var r=this;e=rr({},e);var n=e.container;n&&!vS(n)&&vS(n[0])&&(n=n[0]);var i=n?n._cyreg:null;i=i||{},i&&i.cy&&(i.cy.destroy(),i={});var a=i.readies=i.readies||[];n&&(n._cyreg=i),i.cy=r;var s=Ui!==void 0&&n!==void 0&&!e.headless,l=e;l.layout=rr({name:s?"grid":"null"},l.layout),l.renderer=rr({name:s?"canvas":"null"},l.renderer);var u=o(function(g,y,v){return y!==void 0?y:v!==void 0?v:g},"defVal"),h=this._private={container:n,ready:!1,options:l,elements:new ka(this),listeners:[],aniEles:new ka(this),data:l.data||{},scratch:{},layout:null,renderer:null,destroyed:!1,notificationsEnabled:!0,minZoom:1e-50,maxZoom:1e50,zoomingEnabled:u(!0,l.zoomingEnabled),userZoomingEnabled:u(!0,l.userZoomingEnabled),panningEnabled:u(!0,l.panningEnabled),userPanningEnabled:u(!0,l.userPanningEnabled),boxSelectionEnabled:u(!0,l.boxSelectionEnabled),autolock:u(!1,l.autolock,l.autolockNodes),autoungrabify:u(!1,l.autoungrabify,l.autoungrabifyNodes),autounselectify:u(!1,l.autounselectify),styleEnabled:l.styleEnabled===void 0?s:l.styleEnabled,zoom:Ct(l.zoom)?l.zoom:1,pan:{x:Ur(l.pan)&&Ct(l.pan.x)?l.pan.x:0,y:Ur(l.pan)&&Ct(l.pan.y)?l.pan.y:0},animation:{current:[],queue:[]},hasCompoundNodes:!1,multiClickDebounceTime:u(250,l.multiClickDebounceTime)};this.createEmitter(),this.selectionType(l.selectionType),this.zoomRange({min:l.minZoom,max:l.maxZoom});var f=o(function(g,y){var v=g.some(nWe);if(v)return ey.all(g).then(y);y(g)},"loadExtData");h.styleEnabled&&r.setStyle([]);var d=rr({},l,l.renderer);r.initRenderer(d);var p=o(function(g,y,v){r.notifications(!1);var x=r.mutableElements();x.length>0&&x.remove(),g!=null&&(Ur(g)||En(g))&&r.add(g),r.one("layoutready",function(w){r.notifications(!0),r.emit(w),r.one("load",y),r.emitAndNotify("load")}).one("layoutstop",function(){r.one("done",v),r.emit("done")});var b=rr({},r._private.options.layout);b.eles=r.elements(),r.layout(b).run()},"setElesAndLayout");f([l.style,l.elements],function(m){var g=m[0],y=m[1];h.styleEnabled&&r.style().append(g),p(y,function(){r.startAnimationLoop(),h.ready=!0,si(l.ready)&&r.on("ready",l.ready);for(var v=0;v0,l=!!t.boundingBox,u=e.extent(),h=Hs(l?t.boundingBox:{x1:u.x1,y1:u.y1,w:u.w,h:u.h}),f;if(go(t.roots))f=t.roots;else if(En(t.roots)){for(var d=[],p=0;p0;){var O=R(),M=I(O,k);if(M)O.outgoers().filter(function(ae){return ae.isNode()&&r.has(ae)}).forEach(L);else if(M===null){un("Detected double maximal shift for node `"+O.id()+"`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.");break}}}var B=0;if(t.avoidOverlap)for(var F=0;F0&&b[0].length<=3?$e/2:0),Ie=2*Math.PI/b[ze].length*He;return ze===0&&b[0].length===1&&(Re=1),{x:se.x+Re*Math.cos(Ie),y:se.y+Re*Math.sin(Ie)}}else{var be=b[ze].length,W=Math.max(be===1?0:l?(h.w-t.padding*2-ue.w)/((t.grid?Se:be)-1):(h.w-t.padding*2-ue.w)/((t.grid?Se:be)+1),B),de={x:se.x+(He+1-(be+1)/2)*W,y:se.y+(ze+1-(ne+1)/2)*Z};return de}},"getPosition");return r.nodes().layoutPositions(this,t,ce),this};rQe={fit:!0,padding:30,boundingBox:void 0,avoidOverlap:!0,nodeDimensionsIncludeLabels:!1,spacingFactor:void 0,radius:void 0,startAngle:3/2*Math.PI,sweep:void 0,clockwise:!0,sort:void 0,animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:o(function(e,r){return!0},"animateFilter"),ready:void 0,stop:void 0,transform:o(function(e,r){return r},"transform")};o(rge,"CircleLayout");rge.prototype.run=function(){var t=this.options,e=t,r=t.cy,n=e.eles,i=e.counterclockwise!==void 0?!e.counterclockwise:e.clockwise,a=n.nodes().not(":parent");e.sort&&(a=a.sort(e.sort));for(var s=Hs(e.boundingBox?e.boundingBox:{x1:0,y1:0,w:r.width(),h:r.height()}),l={x:s.x1+s.w/2,y:s.y1+s.h/2},u=e.sweep===void 0?2*Math.PI-2*Math.PI/a.length:e.sweep,h=u/Math.max(1,a.length-1),f,d=0,p=0;p1&&e.avoidOverlap){d*=1.75;var x=Math.cos(h)-Math.cos(0),b=Math.sin(h)-Math.sin(0),w=Math.sqrt(d*d/(x*x+b*b));f=Math.max(w,f)}var C=o(function(E,A){var S=e.startAngle+A*h*(i?1:-1),_=f*Math.cos(S),I=f*Math.sin(S),D={x:l.x+_,y:l.y+I};return D},"getPos");return n.nodes().layoutPositions(this,e,C),this};nQe={fit:!0,padding:30,startAngle:3/2*Math.PI,sweep:void 0,clockwise:!0,equidistant:!1,minNodeSpacing:10,boundingBox:void 0,avoidOverlap:!0,nodeDimensionsIncludeLabels:!1,height:void 0,width:void 0,spacingFactor:void 0,concentric:o(function(e){return e.degree()},"concentric"),levelWidth:o(function(e){return e.maxDegree()/4},"levelWidth"),animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:o(function(e,r){return!0},"animateFilter"),ready:void 0,stop:void 0,transform:o(function(e,r){return r},"transform")};o(nge,"ConcentricLayout");nge.prototype.run=function(){for(var t=this.options,e=t,r=e.counterclockwise!==void 0?!e.counterclockwise:e.clockwise,n=t.cy,i=e.eles,a=i.nodes().not(":parent"),s=Hs(e.boundingBox?e.boundingBox:{x1:0,y1:0,w:n.width(),h:n.height()}),l={x:s.x1+s.w/2,y:s.y1+s.h/2},u=[],h=0,f=0;f0){var T=Math.abs(b[0].value-C.value);T>=v&&(b=[],x.push(b))}b.push(C)}var E=h+e.minNodeSpacing;if(!e.avoidOverlap){var A=x.length>0&&x[0].length>1,S=Math.min(s.w,s.h)/2-E,_=S/(x.length+A?1:0);E=Math.min(E,_)}for(var I=0,D=0;D1&&e.avoidOverlap){var O=Math.cos(R)-Math.cos(0),M=Math.sin(R)-Math.sin(0),B=Math.sqrt(E*E/(O*O+M*M));I=Math.max(B,I)}k.r=I,I+=E}if(e.equidistant){for(var F=0,P=0,z=0;z=t.numIter||(hQe(n,t),n.temperature=n.temperature*t.coolingFactor,n.temperature=t.animationThreshold&&a(),xS(d)}},"frame");f()}else{for(;h;)h=s(u),u++;E0e(n,t),l()}return this};HS.prototype.stop=function(){return this.stopped=!0,this.thread&&this.thread.stop(),this.emit("layoutstop"),this};HS.prototype.destroy=function(){return this.thread&&this.thread.stop(),this};aQe=o(function(e,r,n){for(var i=n.eles.edges(),a=n.eles.nodes(),s=Hs(n.boundingBox?n.boundingBox:{x1:0,y1:0,w:e.width(),h:e.height()}),l={isCompound:e.hasCompoundNodes(),layoutNodes:[],idToIndex:{},nodeSize:a.size(),graphSet:[],indexToGraph:[],layoutEdges:[],edgeSize:i.size(),temperature:n.initialTemp,clientWidth:s.w,clientHeight:s.h,boundingBox:s},u=n.eles.components(),h={},f=0;f0){l.graphSet.push(S);for(var f=0;fi.count?0:i.graph},"findLCA"),oQe=o(function t(e,r,n,i){var a=i.graphSet[n];if(-10)var d=i.nodeOverlap*f,p=Math.sqrt(l*l+u*u),m=d*l/p,g=d*u/p;else var y=CS(e,l,u),v=CS(r,-1*l,-1*u),x=v.x-y.x,b=v.y-y.y,w=x*x+b*b,p=Math.sqrt(w),d=(e.nodeRepulsion+r.nodeRepulsion)/w,m=d*x/p,g=d*b/p;e.isLocked||(e.offsetX-=m,e.offsetY-=g),r.isLocked||(r.offsetX+=m,r.offsetY+=g)}},"nodeRepulsion"),pQe=o(function(e,r,n,i){if(n>0)var a=e.maxX-r.minX;else var a=r.maxX-e.minX;if(i>0)var s=e.maxY-r.minY;else var s=r.maxY-e.minY;return a>=0&&s>=0?Math.sqrt(a*a+s*s):0},"nodesOverlap"),CS=o(function(e,r,n){var i=e.positionX,a=e.positionY,s=e.height||1,l=e.width||1,u=n/r,h=s/l,f={};return r===0&&0n?(f.x=i,f.y=a+s/2,f):0r&&-1*h<=u&&u<=h?(f.x=i-l/2,f.y=a-l*n/2/r,f):0=h)?(f.x=i+s*r/2/n,f.y=a+s/2,f):(0>n&&(u<=-1*h||u>=h)&&(f.x=i-s*r/2/n,f.y=a-s/2),f)},"findClippingPoint"),mQe=o(function(e,r){for(var n=0;nn){var v=r.gravity*m/y,x=r.gravity*g/y;p.offsetX+=v,p.offsetY+=x}}}}},"calculateGravityForces"),yQe=o(function(e,r){var n=[],i=0,a=-1;for(n.push.apply(n,e.graphSet[0]),a+=e.graphSet[0].length;i<=a;){var s=n[i++],l=e.idToIndex[s],u=e.layoutNodes[l],h=u.children;if(0n)var a={x:n*e/i,y:n*r/i};else var a={x:e,y:r};return a},"limitForce"),bQe=o(function t(e,r){var n=e.parentId;if(n!=null){var i=r.layoutNodes[r.idToIndex[n]],a=!1;if((i.maxX==null||e.maxX+i.padRight>i.maxX)&&(i.maxX=e.maxX+i.padRight,a=!0),(i.minX==null||e.minX-i.padLefti.maxY)&&(i.maxY=e.maxY+i.padBottom,a=!0),(i.minY==null||e.minY-i.padTopx&&(g+=v+r.componentSpacing,m=0,y=0,v=0)}}},"separateComponents"),wQe={fit:!0,padding:30,boundingBox:void 0,avoidOverlap:!0,avoidOverlapPadding:10,nodeDimensionsIncludeLabels:!1,spacingFactor:void 0,condense:!1,rows:void 0,cols:void 0,position:o(function(e){},"position"),sort:void 0,animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:o(function(e,r){return!0},"animateFilter"),ready:void 0,stop:void 0,transform:o(function(e,r){return r},"transform")};o(age,"GridLayout");age.prototype.run=function(){var t=this.options,e=t,r=t.cy,n=e.eles,i=n.nodes().not(":parent");e.sort&&(i=i.sort(e.sort));var a=Hs(e.boundingBox?e.boundingBox:{x1:0,y1:0,w:r.width(),h:r.height()});if(a.h===0||a.w===0)n.nodes().layoutPositions(this,e,function(Q){return{x:a.x1,y:a.y1}});else{var s=i.size(),l=Math.sqrt(s*a.h/a.w),u=Math.round(l),h=Math.round(a.w/a.h*l),f=o(function(j){if(j==null)return Math.min(u,h);var ie=Math.min(u,h);ie==u?u=j:h=j},"small"),d=o(function(j){if(j==null)return Math.max(u,h);var ie=Math.max(u,h);ie==u?u=j:h=j},"large"),p=e.rows,m=e.cols!=null?e.cols:e.columns;if(p!=null&&m!=null)u=p,h=m;else if(p!=null&&m==null)u=p,h=Math.ceil(s/u);else if(p==null&&m!=null)h=m,u=Math.ceil(s/h);else if(h*u>s){var g=f(),y=d();(g-1)*y>=s?f(g-1):(y-1)*g>=s&&d(y-1)}else for(;h*u=s?d(x+1):f(v+1)}var b=a.w/h,w=a.h/u;if(e.condense&&(b=0,w=0),e.avoidOverlap)for(var C=0;C=h&&(O=0,R++)},"moveToNextCell"),B={},F=0;F(O=Wqe(t,e,M[B],M[B+1],M[B+2],M[B+3])))return v(A,O),!0}else if(_.edgeType==="bezier"||_.edgeType==="multibezier"||_.edgeType==="self"||_.edgeType==="compound"){for(var M=_.allpts,B=0;B+5<_.allpts.length;B+=4)if(Gqe(t,e,M[B],M[B+1],M[B+2],M[B+3],M[B+4],M[B+5],R)&&L>(O=Hqe(t,e,M[B],M[B+1],M[B+2],M[B+3],M[B+4],M[B+5])))return v(A,O),!0}for(var F=F||S.source,P=P||S.target,z=i.getArrowWidth(I,D),$=[{name:"source",x:_.arrowStartX,y:_.arrowStartY,angle:_.srcArrowAngle},{name:"target",x:_.arrowEndX,y:_.arrowEndY,angle:_.tgtArrowAngle},{name:"mid-source",x:_.midX,y:_.midY,angle:_.midsrcArrowAngle},{name:"mid-target",x:_.midX,y:_.midY,angle:_.midtgtArrowAngle}],B=0;B<$.length;B++){var H=$[B],Q=a.arrowShapes[A.pstyle(H.name+"-arrow-shape").value],j=A.pstyle("width").pfValue;if(Q.roughCollide(t,e,z,H.angle,{x:H.x,y:H.y},j,f)&&Q.collide(t,e,z,H.angle,{x:H.x,y:H.y},j,f))return v(A),!0}h&&l.length>0&&(x(F),x(P))}o(b,"checkEdge");function w(A,S,_){return Gl(A,S,_)}o(w,"preprop");function C(A,S){var _=A._private,I=p,D;S?D=S+"-":D="",A.boundingBox();var k=_.labelBounds[S||"main"],L=A.pstyle(D+"label").value,R=A.pstyle("text-events").strValue==="yes";if(!(!R||!L)){var O=w(_.rscratch,"labelX",S),M=w(_.rscratch,"labelY",S),B=w(_.rscratch,"labelAngle",S),F=A.pstyle(D+"text-margin-x").pfValue,P=A.pstyle(D+"text-margin-y").pfValue,z=k.x1-I-F,$=k.x2+I-F,H=k.y1-I-P,Q=k.y2+I-P;if(B){var j=Math.cos(B),ie=Math.sin(B),ne=o(function(se,ue){return se=se-O,ue=ue-M,{x:se*j-ue*ie+O,y:se*ie+ue*j+M}},"rotate"),le=ne(z,H),he=ne(z,Q),K=ne($,H),X=ne($,Q),te=[le.x+F,le.y+P,K.x+F,K.y+P,X.x+F,X.y+P,he.x+F,he.y+P];if(Us(t,e,te))return v(A),!0}else if(K1(k,t,e))return v(A),!0}}o(C,"checkLabel");for(var T=s.length-1;T>=0;T--){var E=s[T];E.isNode()?x(E)||C(E):b(E)||C(E)||C(E,"source")||C(E,"target")}return l};qp.getAllInBox=function(t,e,r,n){var i=this.getCachedZSortedEles().interactive,a=[],s=Math.min(t,r),l=Math.max(t,r),u=Math.min(e,n),h=Math.max(e,n);t=s,r=l,e=u,n=h;for(var f=Hs({x1:t,y1:e,x2:r,y2:n}),d=0;d0?-(Math.PI-e.ang):Math.PI+e.ang},"invertVec"),AQe=o(function(e,r,n,i,a){if(e!==D0e?L0e(r,e,qc):CQe(Jo,qc),L0e(r,n,Jo),A0e=qc.nx*Jo.ny-qc.ny*Jo.nx,_0e=qc.nx*Jo.nx-qc.ny*-Jo.ny,Ku=Math.asin(Math.max(-1,Math.min(1,A0e))),Math.abs(Ku)<1e-6){HP=r.x,WP=r.y,Bp=G1=0;return}Fp=1,gS=!1,_0e<0?Ku<0?Ku=Math.PI+Ku:(Ku=Math.PI-Ku,Fp=-1,gS=!0):Ku>0&&(Fp=-1,gS=!0),r.radius!==void 0?G1=r.radius:G1=i,Mp=Ku/2,aS=Math.min(qc.len/2,Jo.len/2),a?(Wc=Math.abs(Math.cos(Mp)*G1/Math.sin(Mp)),Wc>aS?(Wc=aS,Bp=Math.abs(Wc*Math.sin(Mp)/Math.cos(Mp))):Bp=G1):(Wc=Math.min(aS,G1),Bp=Math.abs(Wc*Math.sin(Mp)/Math.cos(Mp))),qP=r.x+Jo.nx*Wc,YP=r.y+Jo.ny*Wc,HP=qP-Jo.ny*Bp*Fp,WP=YP+Jo.nx*Bp*Fp,cge=r.x+qc.nx*Wc,uge=r.y+qc.ny*Wc,D0e=r},"calcCornerArc");o(hge,"drawPreparedRoundCorner");o(vB,"getRoundCorner");Va={};Va.findMidptPtsEtc=function(t,e){var r=e.posPts,n=e.intersectionPts,i=e.vectorNormInverse,a,s=t.pstyle("source-endpoint"),l=t.pstyle("target-endpoint"),u=s.units!=null&&l.units!=null,h=o(function(T,E,A,S){var _=S-E,I=A-T,D=Math.sqrt(I*I+_*_);return{x:-_/D,y:I/D}},"recalcVectorNormInverse"),f=t.pstyle("edge-distances").value;switch(f){case"node-position":a=r;break;case"intersection":a=n;break;case"endpoints":{if(u){var d=this.manualEndptToPx(t.source()[0],s),p=_i(d,2),m=p[0],g=p[1],y=this.manualEndptToPx(t.target()[0],l),v=_i(y,2),x=v[0],b=v[1],w={x1:m,y1:g,x2:x,y2:b};i=h(m,g,x,b),a=w}else un("Edge ".concat(t.id()," has edge-distances:endpoints specified without manual endpoints specified via source-endpoint and target-endpoint. Falling back on edge-distances:intersection (default).")),a=n;break}}return{midptPts:a,vectorNormInverse:i}};Va.findHaystackPoints=function(t){for(var e=0;e0?Math.max(q-pe,0):Math.min(q+pe,0)},"subDWH"),L=k(I,S),R=k(D,_),O=!1;b===h?x=Math.abs(L)>Math.abs(R)?i:n:b===u||b===l?(x=n,O=!0):(b===a||b===s)&&(x=i,O=!0);var M=x===n,B=M?R:L,F=M?D:I,P=mme(F),z=!1;!(O&&(C||E))&&(b===l&&F<0||b===u&&F>0||b===a&&F>0||b===s&&F<0)&&(P*=-1,B=P*Math.abs(B),z=!0);var $;if(C){var H=T<0?1+T:T;$=H*B}else{var Q=T<0?B:0;$=Q+T*P}var j=o(function(q){return Math.abs(q)=Math.abs(B)},"getIsTooClose"),ie=j($),ne=j(Math.abs(B)-Math.abs($)),le=ie||ne;if(le&&!z)if(M){var he=Math.abs(F)<=p/2,K=Math.abs(I)<=m/2;if(he){var X=(f.x1+f.x2)/2,te=f.y1,J=f.y2;r.segpts=[X,te,X,J]}else if(K){var se=(f.y1+f.y2)/2,ue=f.x1,Z=f.x2;r.segpts=[ue,se,Z,se]}else r.segpts=[f.x1,f.y2]}else{var Se=Math.abs(F)<=d/2,ce=Math.abs(D)<=g/2;if(Se){var ae=(f.y1+f.y2)/2,Oe=f.x1,ge=f.x2;r.segpts=[Oe,ae,ge,ae]}else if(ce){var ze=(f.x1+f.x2)/2,He=f.y1,$e=f.y2;r.segpts=[ze,He,ze,$e]}else r.segpts=[f.x2,f.y1]}else if(M){var Re=f.y1+$+(v?p/2*P:0),Ie=f.x1,be=f.x2;r.segpts=[Ie,Re,be,Re]}else{var W=f.x1+$+(v?d/2*P:0),de=f.y1,re=f.y2;r.segpts=[W,de,W,re]}if(r.isRound){var oe=t.pstyle("taxi-radius").value,V=t.pstyle("radius-type").value[0]==="arc-radius";r.radii=new Array(r.segpts.length/2).fill(oe),r.isArcRadius=new Array(r.segpts.length/2).fill(V)}};Va.tryToCorrectInvalidPoints=function(t,e){var r=t._private.rscratch;if(r.edgeType==="bezier"){var n=e.srcPos,i=e.tgtPos,a=e.srcW,s=e.srcH,l=e.tgtW,u=e.tgtH,h=e.srcShape,f=e.tgtShape,d=e.srcCornerRadius,p=e.tgtCornerRadius,m=e.srcRs,g=e.tgtRs,y=!Ct(r.startX)||!Ct(r.startY),v=!Ct(r.arrowStartX)||!Ct(r.arrowStartY),x=!Ct(r.endX)||!Ct(r.endY),b=!Ct(r.arrowEndX)||!Ct(r.arrowEndY),w=3,C=this.getArrowWidth(t.pstyle("width").pfValue,t.pstyle("arrow-scale").value)*this.arrowShapeWidth,T=w*C,E=Gp({x:r.ctrlpts[0],y:r.ctrlpts[1]},{x:r.startX,y:r.startY}),A=ER.poolIndex()){var O=L;L=R,R=O}var M=_.srcPos=L.position(),B=_.tgtPos=R.position(),F=_.srcW=L.outerWidth(),P=_.srcH=L.outerHeight(),z=_.tgtW=R.outerWidth(),$=_.tgtH=R.outerHeight(),H=_.srcShape=r.nodeShapes[e.getNodeShape(L)],Q=_.tgtShape=r.nodeShapes[e.getNodeShape(R)],j=_.srcCornerRadius=L.pstyle("corner-radius").value==="auto"?"auto":L.pstyle("corner-radius").pfValue,ie=_.tgtCornerRadius=R.pstyle("corner-radius").value==="auto"?"auto":R.pstyle("corner-radius").pfValue,ne=_.tgtRs=R._private.rscratch,le=_.srcRs=L._private.rscratch;_.dirCounts={north:0,west:0,south:0,east:0,northwest:0,southwest:0,northeast:0,southeast:0};for(var he=0;he<_.eles.length;he++){var K=_.eles[he],X=K[0]._private.rscratch,te=K.pstyle("curve-style").value,J=te==="unbundled-bezier"||te.endsWith("segments")||te.endsWith("taxi"),se=!L.same(K.source());if(!_.calculatedIntersection&&L!==R&&(_.hasBezier||_.hasUnbundled)){_.calculatedIntersection=!0;var ue=H.intersectLine(M.x,M.y,F,P,B.x,B.y,0,j,le),Z=_.srcIntn=ue,Se=Q.intersectLine(B.x,B.y,z,$,M.x,M.y,0,ie,ne),ce=_.tgtIntn=Se,ae=_.intersectionPts={x1:ue[0],x2:Se[0],y1:ue[1],y2:Se[1]},Oe=_.posPts={x1:M.x,x2:B.x,y1:M.y,y2:B.y},ge=Se[1]-ue[1],ze=Se[0]-ue[0],He=Math.sqrt(ze*ze+ge*ge),$e=_.vector={x:ze,y:ge},Re=_.vectorNorm={x:$e.x/He,y:$e.y/He},Ie={x:-Re.y,y:Re.x};_.nodesOverlap=!Ct(He)||Q.checkPoint(ue[0],ue[1],0,z,$,B.x,B.y,ie,ne)||H.checkPoint(Se[0],Se[1],0,F,P,M.x,M.y,j,le),_.vectorNormInverse=Ie,I={nodesOverlap:_.nodesOverlap,dirCounts:_.dirCounts,calculatedIntersection:!0,hasBezier:_.hasBezier,hasUnbundled:_.hasUnbundled,eles:_.eles,srcPos:B,srcRs:ne,tgtPos:M,tgtRs:le,srcW:z,srcH:$,tgtW:F,tgtH:P,srcIntn:ce,tgtIntn:Z,srcShape:Q,tgtShape:H,posPts:{x1:Oe.x2,y1:Oe.y2,x2:Oe.x1,y2:Oe.y1},intersectionPts:{x1:ae.x2,y1:ae.y2,x2:ae.x1,y2:ae.y1},vector:{x:-$e.x,y:-$e.y},vectorNorm:{x:-Re.x,y:-Re.y},vectorNormInverse:{x:-Ie.x,y:-Ie.y}}}var be=se?I:_;X.nodesOverlap=be.nodesOverlap,X.srcIntn=be.srcIntn,X.tgtIntn=be.tgtIntn,X.isRound=te.startsWith("round"),i&&(L.isParent()||L.isChild()||R.isParent()||R.isChild())&&(L.parents().anySame(R)||R.parents().anySame(L)||L.same(R)&&L.isParent())?e.findCompoundLoopPoints(K,be,he,J):L===R?e.findLoopPoints(K,be,he,J):te.endsWith("segments")?e.findSegmentsPoints(K,be):te.endsWith("taxi")?e.findTaxiPoints(K,be):te==="straight"||!J&&_.eles.length%2===1&&he===Math.floor(_.eles.length/2)?e.findStraightEdgePoints(K):e.findBezierPoints(K,be,he,J,se),e.findEndpoints(K),e.tryToCorrectInvalidPoints(K,be),e.checkForInvalidEdgeWarning(K),e.storeAllpts(K),e.storeEdgeProjections(K),e.calculateArrowAngles(K),e.recalculateEdgeLabelProjections(K),e.calculateLabelAngles(K)}},"_loop"),T=0;T0){var J=a,se=Op(J,U1(r)),ue=Op(J,U1(te)),Z=se;if(ue2){var Se=Op(J,{x:te[2],y:te[3]});Se0){var re=s,oe=Op(re,U1(r)),V=Op(re,U1(de)),xe=oe;if(V2){var q=Op(re,{x:de[2],y:de[3]});q=g||A){v={cp:C,segment:E};break}}if(v)break}var S=v.cp,_=v.segment,I=(g-x)/_.length,D=_.t1-_.t0,k=m?_.t0+D*I:_.t1-D*I;k=Yb(0,k,1),e=W1(S.p0,S.p1,S.p2,k),p=DQe(S.p0,S.p1,S.p2,k);break}case"straight":case"segments":case"haystack":{for(var L=0,R,O,M,B,F=n.allpts.length,P=0;P+3=g));P+=2);var z=g-O,$=z/R;$=Yb(0,$,1),e=Iqe(M,B,$),p=pge(M,B);break}}s("labelX",d,e.x),s("labelY",d,e.y),s("labelAutoAngle",d,p)}},"calculateEndProjection");h("source"),h("target"),this.applyLabelDimensions(t)}};Kc.applyLabelDimensions=function(t){this.applyPrefixedLabelDimensions(t),t.isEdge()&&(this.applyPrefixedLabelDimensions(t,"source"),this.applyPrefixedLabelDimensions(t,"target"))};Kc.applyPrefixedLabelDimensions=function(t,e){var r=t._private,n=this.getLabelText(t,e),i=this.calculateLabelDimensions(t,n),a=t.pstyle("line-height").pfValue,s=t.pstyle("text-wrap").strValue,l=Gl(r.rscratch,"labelWrapCachedLines",e)||[],u=s!=="wrap"?1:Math.max(l.length,1),h=i.height/u,f=h*a,d=i.width,p=i.height+(u-1)*(a-1)*h;kf(r.rstyle,"labelWidth",e,d),kf(r.rscratch,"labelWidth",e,d),kf(r.rstyle,"labelHeight",e,p),kf(r.rscratch,"labelHeight",e,p),kf(r.rscratch,"labelLineHeight",e,f)};Kc.getLabelText=function(t,e){var r=t._private,n=e?e+"-":"",i=t.pstyle(n+"label").strValue,a=t.pstyle("text-transform").value,s=o(function(Q,j){return j?(kf(r.rscratch,Q,e,j),j):Gl(r.rscratch,Q,e)},"rscratch");if(!i)return"";a=="none"||(a=="uppercase"?i=i.toUpperCase():a=="lowercase"&&(i=i.toLowerCase()));var l=t.pstyle("text-wrap").value;if(l==="wrap"){var u=s("labelKey");if(u!=null&&s("labelWrapKey")===u)return s("labelWrapCachedText");for(var h="\u200B",f=i.split(` +`),d=t.pstyle("text-max-width").pfValue,p=t.pstyle("text-overflow-wrap").value,m=p==="anywhere",g=[],y=/[\s\u200b]+|$/g,v=0;vd){var T=x.matchAll(y),E="",A=0,S=mo(T),_;try{for(S.s();!(_=S.n()).done;){var I=_.value,D=I[0],k=x.substring(A,I.index);A=I.index+D.length;var L=E.length===0?k:E+k+D,R=this.calculateLabelDimensions(t,L),O=R.width;O<=d?E+=k+D:(E&&g.push(E),E=k+D)}}catch(H){S.e(H)}finally{S.f()}E.match(/^[\s\u200b]+$/)||g.push(E)}else g.push(x)}s("labelWrapCachedLines",g),i=s("labelWrapCachedText",g.join(` +`)),s("labelWrapKey",u)}else if(l==="ellipsis"){var M=t.pstyle("text-max-width").pfValue,B="",F="\u2026",P=!1;if(this.calculateLabelDimensions(t,i).widthM)break;B+=i[z],z===i.length-1&&(P=!0)}return P||(B+=F),B}return i};Kc.getLabelJustification=function(t){var e=t.pstyle("text-justification").strValue,r=t.pstyle("text-halign").strValue;if(e==="auto")if(t.isNode())switch(r){case"left":return"right";case"right":return"left";default:return"center"}else return"center";else return e};Kc.calculateLabelDimensions=function(t,e){var r=this,n=r.cy.window(),i=n.document,a=_f(e,t._private.labelDimsKey),s=r.labelDimCache||(r.labelDimCache=[]),l=s[a];if(l!=null)return l;var u=0,h=t.pstyle("font-style").strValue,f=t.pstyle("font-size").pfValue,d=t.pstyle("font-family").strValue,p=t.pstyle("font-weight").strValue,m=this.labelCalcCanvas,g=this.labelCalcCanvasContext;if(!m){m=this.labelCalcCanvas=i.createElement("canvas"),g=this.labelCalcCanvasContext=m.getContext("2d");var y=m.style;y.position="absolute",y.left="-9999px",y.top="-9999px",y.zIndex="-1",y.visibility="hidden",y.pointerEvents="none"}g.font="".concat(h," ").concat(p," ").concat(f,"px ").concat(d);for(var v=0,x=0,b=e.split(` +`),w=0;w1&&arguments[1]!==void 0?arguments[1]:!0;if(e.merge(s),l)for(var u=0;u=t.desktopTapThreshold2}var ot=a(W);at&&(t.hoverData.tapholdCancelled=!0);var Yt=o(function(){var Tt=t.hoverData.dragDelta=t.hoverData.dragDelta||[];Tt.length===0?(Tt.push(De[0]),Tt.push(De[1])):(Tt[0]+=De[0],Tt[1]+=De[1])},"updateDragDelta");re=!0,i(_e,["mousemove","vmousemove","tapdrag"],W,{x:q[0],y:q[1]});var bt=o(function(){t.data.bgActivePosistion=void 0,t.hoverData.selecting||oe.emit({originalEvent:W,type:"boxstart",position:{x:q[0],y:q[1]}}),Pe[4]=1,t.hoverData.selecting=!0,t.redrawHint("select",!0),t.redraw()},"goIntoBoxMode");if(t.hoverData.which===3){if(at){var Mt={originalEvent:W,type:"cxtdrag",position:{x:q[0],y:q[1]}};Ve?Ve.emit(Mt):oe.emit(Mt),t.hoverData.cxtDragged=!0,(!t.hoverData.cxtOver||_e!==t.hoverData.cxtOver)&&(t.hoverData.cxtOver&&t.hoverData.cxtOver.emit({originalEvent:W,type:"cxtdragout",position:{x:q[0],y:q[1]}}),t.hoverData.cxtOver=_e,_e&&_e.emit({originalEvent:W,type:"cxtdragover",position:{x:q[0],y:q[1]}}))}}else if(t.hoverData.dragging){if(re=!0,oe.panningEnabled()&&oe.userPanningEnabled()){var xt;if(t.hoverData.justStartedPan){var ut=t.hoverData.mdownPos;xt={x:(q[0]-ut[0])*V,y:(q[1]-ut[1])*V},t.hoverData.justStartedPan=!1}else xt={x:De[0]*V,y:De[1]*V};oe.panBy(xt),oe.emit("dragpan"),t.hoverData.dragged=!0}q=t.projectIntoViewport(W.clientX,W.clientY)}else if(Pe[4]==1&&(Ve==null||Ve.pannable())){if(at){if(!t.hoverData.dragging&&oe.boxSelectionEnabled()&&(ot||!oe.panningEnabled()||!oe.userPanningEnabled()))bt();else if(!t.hoverData.selecting&&oe.panningEnabled()&&oe.userPanningEnabled()){var Et=s(Ve,t.hoverData.downs);Et&&(t.hoverData.dragging=!0,t.hoverData.justStartedPan=!0,Pe[4]=0,t.data.bgActivePosistion=U1(pe),t.redrawHint("select",!0),t.redraw())}Ve&&Ve.pannable()&&Ve.active()&&Ve.unactivate()}}else{if(Ve&&Ve.pannable()&&Ve.active()&&Ve.unactivate(),(!Ve||!Ve.grabbed())&&_e!=we&&(we&&i(we,["mouseout","tapdragout"],W,{x:q[0],y:q[1]}),_e&&i(_e,["mouseover","tapdragover"],W,{x:q[0],y:q[1]}),t.hoverData.last=_e),Ve)if(at){if(oe.boxSelectionEnabled()&&ot)Ve&&Ve.grabbed()&&(x(qe),Ve.emit("freeon"),qe.emit("free"),t.dragData.didDrag&&(Ve.emit("dragfreeon"),qe.emit("dragfree"))),bt();else if(Ve&&Ve.grabbed()&&t.nodeIsDraggable(Ve)){var ft=!t.dragData.didDrag;ft&&t.redrawHint("eles",!0),t.dragData.didDrag=!0,t.hoverData.draggingEles||y(qe,{inDragLayer:!0});var yt={x:0,y:0};if(Ct(De[0])&&Ct(De[1])&&(yt.x+=De[0],yt.y+=De[1],ft)){var nt=t.hoverData.dragDelta;nt&&Ct(nt[0])&&Ct(nt[1])&&(yt.x+=nt[0],yt.y+=nt[1])}t.hoverData.draggingEles=!0,qe.silentShift(yt).emit("position drag"),t.redrawHint("drag",!0),t.redraw()}}else Yt();re=!0}if(Pe[2]=q[0],Pe[3]=q[1],re)return W.stopPropagation&&W.stopPropagation(),W.preventDefault&&W.preventDefault(),!1}},"mousemoveHandler"),!1);var k,L,R;t.registerBinding(e,"mouseup",o(function(W){if(!(t.hoverData.which===1&&W.which!==1&&t.hoverData.capture)){var de=t.hoverData.capture;if(de){t.hoverData.capture=!1;var re=t.cy,oe=t.projectIntoViewport(W.clientX,W.clientY),V=t.selection,xe=t.findNearestElement(oe[0],oe[1],!0,!1),q=t.dragData.possibleDragElements,pe=t.hoverData.down,ve=a(W);if(t.data.bgActivePosistion&&(t.redrawHint("select",!0),t.redraw()),t.hoverData.tapholdCancelled=!0,t.data.bgActivePosistion=void 0,pe&&pe.unactivate(),t.hoverData.which===3){var Pe={originalEvent:W,type:"cxttapend",position:{x:oe[0],y:oe[1]}};if(pe?pe.emit(Pe):re.emit(Pe),!t.hoverData.cxtDragged){var _e={originalEvent:W,type:"cxttap",position:{x:oe[0],y:oe[1]}};pe?pe.emit(_e):re.emit(_e)}t.hoverData.cxtDragged=!1,t.hoverData.which=null}else if(t.hoverData.which===1){if(i(xe,["mouseup","tapend","vmouseup"],W,{x:oe[0],y:oe[1]}),!t.dragData.didDrag&&!t.hoverData.dragged&&!t.hoverData.selecting&&!t.hoverData.isOverThresholdDrag&&(i(pe,["click","tap","vclick"],W,{x:oe[0],y:oe[1]}),L=!1,W.timeStamp-R<=re.multiClickDebounceTime()?(k&&clearTimeout(k),L=!0,R=null,i(pe,["dblclick","dbltap","vdblclick"],W,{x:oe[0],y:oe[1]})):(k=setTimeout(function(){L||i(pe,["oneclick","onetap","voneclick"],W,{x:oe[0],y:oe[1]})},re.multiClickDebounceTime()),R=W.timeStamp)),pe==null&&!t.dragData.didDrag&&!t.hoverData.selecting&&!t.hoverData.dragged&&!a(W)&&(re.$(r).unselect(["tapunselect"]),q.length>0&&t.redrawHint("eles",!0),t.dragData.possibleDragElements=q=re.collection()),xe==pe&&!t.dragData.didDrag&&!t.hoverData.selecting&&xe!=null&&xe._private.selectable&&(t.hoverData.dragging||(re.selectionType()==="additive"||ve?xe.selected()?xe.unselect(["tapunselect"]):xe.select(["tapselect"]):ve||(re.$(r).unmerge(xe).unselect(["tapunselect"]),xe.select(["tapselect"]))),t.redrawHint("eles",!0)),t.hoverData.selecting){var we=re.collection(t.getAllInBox(V[0],V[1],V[2],V[3]));t.redrawHint("select",!0),we.length>0&&t.redrawHint("eles",!0),re.emit({type:"boxend",originalEvent:W,position:{x:oe[0],y:oe[1]}});var Ve=o(function(at){return at.selectable()&&!at.selected()},"eleWouldBeSelected");re.selectionType()==="additive"||ve||re.$(r).unmerge(we).unselect(),we.emit("box").stdFilter(Ve).select().emit("boxselect"),t.redraw()}if(t.hoverData.dragging&&(t.hoverData.dragging=!1,t.redrawHint("select",!0),t.redrawHint("eles",!0),t.redraw()),!V[4]){t.redrawHint("drag",!0),t.redrawHint("eles",!0);var De=pe&&pe.grabbed();x(q),De&&(pe.emit("freeon"),q.emit("free"),t.dragData.didDrag&&(pe.emit("dragfreeon"),q.emit("dragfree")))}}V[4]=0,t.hoverData.down=null,t.hoverData.cxtStarted=!1,t.hoverData.draggingEles=!1,t.hoverData.selecting=!1,t.hoverData.isOverThresholdDrag=!1,t.dragData.didDrag=!1,t.hoverData.dragged=!1,t.hoverData.dragDelta=[],t.hoverData.mdownPos=null,t.hoverData.mdownGPos=null,t.hoverData.which=null}}},"mouseupHandler"),!1);var O=o(function(W){if(!t.scrollingPage){var de=t.cy,re=de.zoom(),oe=de.pan(),V=t.projectIntoViewport(W.clientX,W.clientY),xe=[V[0]*re+oe.x,V[1]*re+oe.y];if(t.hoverData.draggingEles||t.hoverData.dragging||t.hoverData.cxtStarted||_()){W.preventDefault();return}if(de.panningEnabled()&&de.userPanningEnabled()&&de.zoomingEnabled()&&de.userZoomingEnabled()){W.preventDefault(),t.data.wheelZooming=!0,clearTimeout(t.data.wheelTimeout),t.data.wheelTimeout=setTimeout(function(){t.data.wheelZooming=!1,t.redrawHint("eles",!0),t.redraw()},150);var q;W.deltaY!=null?q=W.deltaY/-250:W.wheelDeltaY!=null?q=W.wheelDeltaY/1e3:q=W.wheelDelta/1e3,q=q*t.wheelSensitivity;var pe=W.deltaMode===1;pe&&(q*=33);var ve=de.zoom()*Math.pow(10,q);W.type==="gesturechange"&&(ve=t.gestureStartZoom*W.scale),de.zoom({level:ve,renderedPosition:{x:xe[0],y:xe[1]}}),de.emit(W.type==="gesturechange"?"pinchzoom":"scrollzoom")}}},"wheelHandler");t.registerBinding(t.container,"wheel",O,!0),t.registerBinding(e,"scroll",o(function(W){t.scrollingPage=!0,clearTimeout(t.scrollingPageTimeout),t.scrollingPageTimeout=setTimeout(function(){t.scrollingPage=!1},250)},"scrollHandler"),!0),t.registerBinding(t.container,"gesturestart",o(function(W){t.gestureStartZoom=t.cy.zoom(),t.hasTouchStarted||W.preventDefault()},"gestureStartHandler"),!0),t.registerBinding(t.container,"gesturechange",function(be){t.hasTouchStarted||O(be)},!0),t.registerBinding(t.container,"mouseout",o(function(W){var de=t.projectIntoViewport(W.clientX,W.clientY);t.cy.emit({originalEvent:W,type:"mouseout",position:{x:de[0],y:de[1]}})},"mouseOutHandler"),!1),t.registerBinding(t.container,"mouseover",o(function(W){var de=t.projectIntoViewport(W.clientX,W.clientY);t.cy.emit({originalEvent:W,type:"mouseover",position:{x:de[0],y:de[1]}})},"mouseOverHandler"),!1);var M,B,F,P,z,$,H,Q,j,ie,ne,le,he,K=o(function(W,de,re,oe){return Math.sqrt((re-W)*(re-W)+(oe-de)*(oe-de))},"distance"),X=o(function(W,de,re,oe){return(re-W)*(re-W)+(oe-de)*(oe-de)},"distanceSq"),te;t.registerBinding(t.container,"touchstart",te=o(function(W){if(t.hasTouchStarted=!0,!!I(W)){w(),t.touchData.capture=!0,t.data.bgActivePosistion=void 0;var de=t.cy,re=t.touchData.now,oe=t.touchData.earlier;if(W.touches[0]){var V=t.projectIntoViewport(W.touches[0].clientX,W.touches[0].clientY);re[0]=V[0],re[1]=V[1]}if(W.touches[1]){var V=t.projectIntoViewport(W.touches[1].clientX,W.touches[1].clientY);re[2]=V[0],re[3]=V[1]}if(W.touches[2]){var V=t.projectIntoViewport(W.touches[2].clientX,W.touches[2].clientY);re[4]=V[0],re[5]=V[1]}if(W.touches[1]){t.touchData.singleTouchMoved=!0,x(t.dragData.touchDragEles);var xe=t.findContainerClientCoords();j=xe[0],ie=xe[1],ne=xe[2],le=xe[3],M=W.touches[0].clientX-j,B=W.touches[0].clientY-ie,F=W.touches[1].clientX-j,P=W.touches[1].clientY-ie,he=0<=M&&M<=ne&&0<=F&&F<=ne&&0<=B&&B<=le&&0<=P&&P<=le;var q=de.pan(),pe=de.zoom();z=K(M,B,F,P),$=X(M,B,F,P),H=[(M+F)/2,(B+P)/2],Q=[(H[0]-q.x)/pe,(H[1]-q.y)/pe];var ve=200,Pe=ve*ve;if($=1){for(var st=t.touchData.startPosition=[null,null,null,null,null,null],Ue=0;Ue=t.touchTapThreshold2}if(de&&t.touchData.cxt){W.preventDefault();var st=W.touches[0].clientX-j,Ue=W.touches[0].clientY-ie,ct=W.touches[1].clientX-j,We=W.touches[1].clientY-ie,ot=X(st,Ue,ct,We),Yt=ot/$,bt=150,Mt=bt*bt,xt=1.5,ut=xt*xt;if(Yt>=ut||ot>=Mt){t.touchData.cxt=!1,t.data.bgActivePosistion=void 0,t.redrawHint("select",!0);var Et={originalEvent:W,type:"cxttapend",position:{x:V[0],y:V[1]}};t.touchData.start?(t.touchData.start.unactivate().emit(Et),t.touchData.start=null):oe.emit(Et)}}if(de&&t.touchData.cxt){var Et={originalEvent:W,type:"cxtdrag",position:{x:V[0],y:V[1]}};t.data.bgActivePosistion=void 0,t.redrawHint("select",!0),t.touchData.start?t.touchData.start.emit(Et):oe.emit(Et),t.touchData.start&&(t.touchData.start._private.grabbed=!1),t.touchData.cxtDragged=!0;var ft=t.findNearestElement(V[0],V[1],!0,!0);(!t.touchData.cxtOver||ft!==t.touchData.cxtOver)&&(t.touchData.cxtOver&&t.touchData.cxtOver.emit({originalEvent:W,type:"cxtdragout",position:{x:V[0],y:V[1]}}),t.touchData.cxtOver=ft,ft&&ft.emit({originalEvent:W,type:"cxtdragover",position:{x:V[0],y:V[1]}}))}else if(de&&W.touches[2]&&oe.boxSelectionEnabled())W.preventDefault(),t.data.bgActivePosistion=void 0,this.lastThreeTouch=+new Date,t.touchData.selecting||oe.emit({originalEvent:W,type:"boxstart",position:{x:V[0],y:V[1]}}),t.touchData.selecting=!0,t.touchData.didSelect=!0,re[4]=1,!re||re.length===0||re[0]===void 0?(re[0]=(V[0]+V[2]+V[4])/3,re[1]=(V[1]+V[3]+V[5])/3,re[2]=(V[0]+V[2]+V[4])/3+1,re[3]=(V[1]+V[3]+V[5])/3+1):(re[2]=(V[0]+V[2]+V[4])/3,re[3]=(V[1]+V[3]+V[5])/3),t.redrawHint("select",!0),t.redraw();else if(de&&W.touches[1]&&!t.touchData.didSelect&&oe.zoomingEnabled()&&oe.panningEnabled()&&oe.userZoomingEnabled()&&oe.userPanningEnabled()){W.preventDefault(),t.data.bgActivePosistion=void 0,t.redrawHint("select",!0);var yt=t.dragData.touchDragEles;if(yt){t.redrawHint("drag",!0);for(var nt=0;nt0&&!t.hoverData.draggingEles&&!t.swipePanning&&t.data.bgActivePosistion!=null&&(t.data.bgActivePosistion=void 0,t.redrawHint("select",!0),t.redraw())}},"touchmoveHandler"),!1);var se;t.registerBinding(e,"touchcancel",se=o(function(W){var de=t.touchData.start;t.touchData.capture=!1,de&&de.unactivate()},"touchcancelHandler"));var ue,Z,Se,ce;if(t.registerBinding(e,"touchend",ue=o(function(W){var de=t.touchData.start,re=t.touchData.capture;if(re)W.touches.length===0&&(t.touchData.capture=!1),W.preventDefault();else return;var oe=t.selection;t.swipePanning=!1,t.hoverData.draggingEles=!1;var V=t.cy,xe=V.zoom(),q=t.touchData.now,pe=t.touchData.earlier;if(W.touches[0]){var ve=t.projectIntoViewport(W.touches[0].clientX,W.touches[0].clientY);q[0]=ve[0],q[1]=ve[1]}if(W.touches[1]){var ve=t.projectIntoViewport(W.touches[1].clientX,W.touches[1].clientY);q[2]=ve[0],q[3]=ve[1]}if(W.touches[2]){var ve=t.projectIntoViewport(W.touches[2].clientX,W.touches[2].clientY);q[4]=ve[0],q[5]=ve[1]}de&&de.unactivate();var Pe;if(t.touchData.cxt){if(Pe={originalEvent:W,type:"cxttapend",position:{x:q[0],y:q[1]}},de?de.emit(Pe):V.emit(Pe),!t.touchData.cxtDragged){var _e={originalEvent:W,type:"cxttap",position:{x:q[0],y:q[1]}};de?de.emit(_e):V.emit(_e)}t.touchData.start&&(t.touchData.start._private.grabbed=!1),t.touchData.cxt=!1,t.touchData.start=null,t.redraw();return}if(!W.touches[2]&&V.boxSelectionEnabled()&&t.touchData.selecting){t.touchData.selecting=!1;var we=V.collection(t.getAllInBox(oe[0],oe[1],oe[2],oe[3]));oe[0]=void 0,oe[1]=void 0,oe[2]=void 0,oe[3]=void 0,oe[4]=0,t.redrawHint("select",!0),V.emit({type:"boxend",originalEvent:W,position:{x:q[0],y:q[1]}});var Ve=o(function(Mt){return Mt.selectable()&&!Mt.selected()},"eleWouldBeSelected");we.emit("box").stdFilter(Ve).select().emit("boxselect"),we.nonempty()&&t.redrawHint("eles",!0),t.redraw()}if(de?.unactivate(),W.touches[2])t.data.bgActivePosistion=void 0,t.redrawHint("select",!0);else if(!W.touches[1]){if(!W.touches[0]){if(!W.touches[0]){t.data.bgActivePosistion=void 0,t.redrawHint("select",!0);var De=t.dragData.touchDragEles;if(de!=null){var qe=de._private.grabbed;x(De),t.redrawHint("drag",!0),t.redrawHint("eles",!0),qe&&(de.emit("freeon"),De.emit("free"),t.dragData.didDrag&&(de.emit("dragfreeon"),De.emit("dragfree"))),i(de,["touchend","tapend","vmouseup","tapdragout"],W,{x:q[0],y:q[1]}),de.unactivate(),t.touchData.start=null}else{var at=t.findNearestElement(q[0],q[1],!0,!0);i(at,["touchend","tapend","vmouseup","tapdragout"],W,{x:q[0],y:q[1]})}var Rt=t.touchData.startPosition[0]-q[0],st=Rt*Rt,Ue=t.touchData.startPosition[1]-q[1],ct=Ue*Ue,We=st+ct,ot=We*xe*xe;t.touchData.singleTouchMoved||(de||V.$(":selected").unselect(["tapunselect"]),i(de,["tap","vclick"],W,{x:q[0],y:q[1]}),Z=!1,W.timeStamp-ce<=V.multiClickDebounceTime()?(Se&&clearTimeout(Se),Z=!0,ce=null,i(de,["dbltap","vdblclick"],W,{x:q[0],y:q[1]})):(Se=setTimeout(function(){Z||i(de,["onetap","voneclick"],W,{x:q[0],y:q[1]})},V.multiClickDebounceTime()),ce=W.timeStamp)),de!=null&&!t.dragData.didDrag&&de._private.selectable&&ot"u"){var ae=[],Oe=o(function(W){return{clientX:W.clientX,clientY:W.clientY,force:1,identifier:W.pointerId,pageX:W.pageX,pageY:W.pageY,radiusX:W.width/2,radiusY:W.height/2,screenX:W.screenX,screenY:W.screenY,target:W.target}},"makeTouch"),ge=o(function(W){return{event:W,touch:Oe(W)}},"makePointer"),ze=o(function(W){ae.push(ge(W))},"addPointer"),He=o(function(W){for(var de=0;de0)return H[0]}return null},"getCurveT"),g=Object.keys(p),y=0;y0?m:vme(a,s,e,r,n,i,l,u)},"intersectLine"),checkPoint:o(function(e,r,n,i,a,s,l,u){u=u==="auto"?Vp(i,a):u;var h=2*u;if(Zu(e,r,this.points,s,l,i,a-h,[0,-1],n)||Zu(e,r,this.points,s,l,i-h,a,[0,-1],n))return!0;var f=i/2+2*n,d=a/2+2*n,p=[s-f,l-d,s-f,l,s+f,l,s+f,l-d];return!!(Us(e,r,p)||$p(e,r,h,h,s+i/2-u,l+a/2-u,n)||$p(e,r,h,h,s-i/2+u,l+a/2-u,n))},"checkPoint")}};eh.registerNodeShapes=function(){var t=this.nodeShapes={},e=this;this.generateEllipse(),this.generatePolygon("triangle",gs(3,0)),this.generateRoundPolygon("round-triangle",gs(3,0)),this.generatePolygon("rectangle",gs(4,0)),t.square=t.rectangle,this.generateRoundRectangle(),this.generateCutRectangle(),this.generateBarrel(),this.generateBottomRoundrectangle();{var r=[0,1,1,0,0,-1,-1,0];this.generatePolygon("diamond",r),this.generateRoundPolygon("round-diamond",r)}this.generatePolygon("pentagon",gs(5,0)),this.generateRoundPolygon("round-pentagon",gs(5,0)),this.generatePolygon("hexagon",gs(6,0)),this.generateRoundPolygon("round-hexagon",gs(6,0)),this.generatePolygon("heptagon",gs(7,0)),this.generateRoundPolygon("round-heptagon",gs(7,0)),this.generatePolygon("octagon",gs(8,0)),this.generateRoundPolygon("round-octagon",gs(8,0));var n=new Array(20);{var i=PP(5,0),a=PP(5,Math.PI/5),s=.5*(3-Math.sqrt(5));s*=1.57;for(var l=0;l=e.deqFastCost*C)break}else if(h){if(b>=e.deqCost*m||b>=e.deqAvgCost*p)break}else if(w>=e.deqNoDrawCost*DP)break;var T=e.deq(n,v,y);if(T.length>0)for(var E=0;E0&&(e.onDeqd(n,g),!h&&e.shouldRedraw(n,g,v,y)&&a())},"dequeue"),l=e.priority||rB;i.beforeRender(s,l(n))}},"setupDequeueingImpl")},"setupDequeueing")},RQe=function(){function t(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:bS;Mf(this,t),this.idsByKey=new Xc,this.keyForId=new Xc,this.cachesByLvl=new Xc,this.lvls=[],this.getKey=e,this.doesEleInvalidateKey=r}return o(t,"ElementTextureCacheLookup"),If(t,[{key:"getIdsFor",value:o(function(r){r==null&&ai("Can not get id list for null key");var n=this.idsByKey,i=this.idsByKey.get(r);return i||(i=new J1,n.set(r,i)),i},"getIdsFor")},{key:"addIdForKey",value:o(function(r,n){r!=null&&this.getIdsFor(r).add(n)},"addIdForKey")},{key:"deleteIdForKey",value:o(function(r,n){r!=null&&this.getIdsFor(r).delete(n)},"deleteIdForKey")},{key:"getNumberOfIdsForKey",value:o(function(r){return r==null?0:this.getIdsFor(r).size},"getNumberOfIdsForKey")},{key:"updateKeyMappingFor",value:o(function(r){var n=r.id(),i=this.keyForId.get(n),a=this.getKey(r);this.deleteIdForKey(i,n),this.addIdForKey(a,n),this.keyForId.set(n,a)},"updateKeyMappingFor")},{key:"deleteKeyMappingFor",value:o(function(r){var n=r.id(),i=this.keyForId.get(n);this.deleteIdForKey(i,n),this.keyForId.delete(n)},"deleteKeyMappingFor")},{key:"keyHasChangedFor",value:o(function(r){var n=r.id(),i=this.keyForId.get(n),a=this.getKey(r);return i!==a},"keyHasChangedFor")},{key:"isInvalid",value:o(function(r){return this.keyHasChangedFor(r)||this.doesEleInvalidateKey(r)},"isInvalid")},{key:"getCachesAt",value:o(function(r){var n=this.cachesByLvl,i=this.lvls,a=n.get(r);return a||(a=new Xc,n.set(r,a),i.push(r)),a},"getCachesAt")},{key:"getCache",value:o(function(r,n){return this.getCachesAt(n).get(r)},"getCache")},{key:"get",value:o(function(r,n){var i=this.getKey(r),a=this.getCache(i,n);return a!=null&&this.updateKeyMappingFor(r),a},"get")},{key:"getForCachedKey",value:o(function(r,n){var i=this.keyForId.get(r.id()),a=this.getCache(i,n);return a},"getForCachedKey")},{key:"hasCache",value:o(function(r,n){return this.getCachesAt(n).has(r)},"hasCache")},{key:"has",value:o(function(r,n){var i=this.getKey(r);return this.hasCache(i,n)},"has")},{key:"setCache",value:o(function(r,n,i){i.key=r,this.getCachesAt(n).set(r,i)},"setCache")},{key:"set",value:o(function(r,n,i){var a=this.getKey(r);this.setCache(a,n,i),this.updateKeyMappingFor(r)},"set")},{key:"deleteCache",value:o(function(r,n){this.getCachesAt(n).delete(r)},"deleteCache")},{key:"delete",value:o(function(r,n){var i=this.getKey(r);this.deleteCache(i,n)},"_delete")},{key:"invalidateKey",value:o(function(r){var n=this;this.lvls.forEach(function(i){return n.deleteCache(r,i)})},"invalidateKey")},{key:"invalidate",value:o(function(r){var n=r.id(),i=this.keyForId.get(n);this.deleteKeyMappingFor(r);var a=this.doesEleInvalidateKey(r);return a&&this.invalidateKey(i),a||this.getNumberOfIdsForKey(i)===0},"invalidate")}]),t}(),I0e=25,sS=50,yS=-4,XP=3,bge=7.99,NQe=8,MQe=1024,IQe=1024,OQe=1024,PQe=.2,BQe=.8,FQe=10,$Qe=.15,zQe=.1,GQe=.9,VQe=.9,UQe=100,HQe=1,H1={dequeue:"dequeue",downscale:"downscale",highQuality:"highQuality"},WQe=la({getKey:null,doesEleInvalidateKey:bS,drawElement:null,getBoundingBox:null,getRotationPoint:null,getRotationOffset:null,isVisible:ume,allowEdgeTxrCaching:!0,allowParentTxrCaching:!0}),Fb=o(function(e,r){var n=this;n.renderer=e,n.onDequeues=[];var i=WQe(r);rr(n,i),n.lookup=new RQe(i.getKey,i.doesEleInvalidateKey),n.setupDequeueing()},"ElementTextureCache"),qi=Fb.prototype;qi.reasons=H1;qi.getTextureQueue=function(t){var e=this;return e.eleImgCaches=e.eleImgCaches||{},e.eleImgCaches[t]=e.eleImgCaches[t]||[]};qi.getRetiredTextureQueue=function(t){var e=this,r=e.eleImgCaches.retired=e.eleImgCaches.retired||{},n=r[t]=r[t]||[];return n};qi.getElementQueue=function(){var t=this,e=t.eleCacheQueue=t.eleCacheQueue||new i4(function(r,n){return n.reqs-r.reqs});return e};qi.getElementKeyToQueue=function(){var t=this,e=t.eleKeyToCacheQueue=t.eleKeyToCacheQueue||{};return e};qi.getElement=function(t,e,r,n,i){var a=this,s=this.renderer,l=s.cy.zoom(),u=this.lookup;if(!e||e.w===0||e.h===0||isNaN(e.w)||isNaN(e.h)||!t.visible()||t.removed()||!a.allowEdgeTxrCaching&&t.isEdge()||!a.allowParentTxrCaching&&t.isParent())return null;if(n==null&&(n=Math.ceil(iB(l*r))),n=bge||n>XP)return null;var h=Math.pow(2,n),f=e.h*h,d=e.w*h,p=s.eleTextBiggerThanMin(t,h);if(!this.isVisible(t,p))return null;var m=u.get(t,n);if(m&&m.invalidated&&(m.invalidated=!1,m.texture.invalidatedWidth-=m.width),m)return m;var g;if(f<=I0e?g=I0e:f<=sS?g=sS:g=Math.ceil(f/sS)*sS,f>OQe||d>IQe)return null;var y=a.getTextureQueue(g),v=y[y.length-2],x=o(function(){return a.recycleTexture(g,d)||a.addTexture(g,d)},"addNewTxr");v||(v=y[y.length-1]),v||(v=x()),v.width-v.usedWidthn;D--)_=a.getElement(t,e,r,D,H1.downscale);I()}else return a.queueElement(t,E.level-1),E;else{var k;if(!w&&!C&&!T)for(var L=n-1;L>=yS;L--){var R=u.get(t,L);if(R){k=R;break}}if(b(k))return a.queueElement(t,n),k;v.context.translate(v.usedWidth,0),v.context.scale(h,h),this.drawElement(v.context,t,e,p,!1),v.context.scale(1/h,1/h),v.context.translate(-v.usedWidth,0)}return m={x:v.usedWidth,texture:v,level:n,scale:h,width:d,height:f,scaledLabelShown:p},v.usedWidth+=Math.ceil(d+NQe),v.eleCaches.push(m),u.set(t,n,m),a.checkTextureFullness(v),m};qi.invalidateElements=function(t){for(var e=0;e=PQe*t.width&&this.retireTexture(t)};qi.checkTextureFullness=function(t){var e=this,r=e.getTextureQueue(t.height);t.usedWidth/t.width>BQe&&t.fullnessChecks>=FQe?Df(r,t):t.fullnessChecks++};qi.retireTexture=function(t){var e=this,r=t.height,n=e.getTextureQueue(r),i=this.lookup;Df(n,t),t.retired=!0;for(var a=t.eleCaches,s=0;s=e)return s.retired=!1,s.usedWidth=0,s.invalidatedWidth=0,s.fullnessChecks=0,nB(s.eleCaches),s.context.setTransform(1,0,0,1,0,0),s.context.clearRect(0,0,s.width,s.height),Df(i,s),n.push(s),s}};qi.queueElement=function(t,e){var r=this,n=r.getElementQueue(),i=r.getElementKeyToQueue(),a=this.getKey(t),s=i[a];if(s)s.level=Math.max(s.level,e),s.eles.merge(t),s.reqs++,n.updateItem(s);else{var l={eles:t.spawn().merge(t),level:e,reqs:1,key:a};n.push(l),i[a]=l}};qi.dequeue=function(t){for(var e=this,r=e.getElementQueue(),n=e.getElementKeyToQueue(),i=[],a=e.lookup,s=0;s0;s++){var l=r.pop(),u=l.key,h=l.eles[0],f=a.hasCache(h,l.level);if(n[u]=null,f)continue;i.push(l);var d=e.getBoundingBox(h);e.getElement(h,d,t,l.level,H1.dequeue)}return i};qi.removeFromQueue=function(t){var e=this,r=e.getElementQueue(),n=e.getElementKeyToQueue(),i=this.getKey(t),a=n[i];a!=null&&(a.eles.length===1?(a.reqs=tB,r.updateItem(a),r.pop(),n[i]=null):a.eles.unmerge(t))};qi.onDequeue=function(t){this.onDequeues.push(t)};qi.offDequeue=function(t){Df(this.onDequeues,t)};qi.setupDequeueing=xge.setupDequeueing({deqRedrawThreshold:UQe,deqCost:$Qe,deqAvgCost:zQe,deqNoDrawCost:GQe,deqFastCost:VQe,deq:o(function(e,r,n){return e.dequeue(r,n)},"deq"),onDeqd:o(function(e,r){for(var n=0;n=YQe||r>_S)return null}n.validateLayersElesOrdering(r,t);var u=n.layersByLevel,h=Math.pow(2,r),f=u[r]=u[r]||[],d,p=n.levelIsComplete(r,t),m,g=o(function(){var I=o(function(O){if(n.validateLayersElesOrdering(O,t),n.levelIsComplete(O,t))return m=u[O],!0},"canUseAsTmpLvl"),D=o(function(O){if(!m)for(var M=r+O;zb<=M&&M<=_S&&!I(M);M+=O);},"checkLvls");D(1),D(-1);for(var k=f.length-1;k>=0;k--){var L=f[k];L.invalid&&Df(f,L)}},"checkTempLevels");if(!p)g();else return f;var y=o(function(){if(!d){d=Hs();for(var I=0;IP0e||L>P0e)return null;var R=k*L;if(R>tZe)return null;var O=n.makeLayer(d,r);if(D!=null){var M=f.indexOf(D)+1;f.splice(M,0,O)}else(I.insert===void 0||I.insert)&&f.unshift(O);return O},"makeLayer");if(n.skipping&&!l)return null;for(var x=null,b=t.length/qQe,w=!l,C=0;C=b||!yme(x.bb,T.boundingBox()))&&(x=v({insert:!0,after:x}),!x))return null;m||w?n.queueLayer(x,T):n.drawEleInLayer(x,T,r,e),x.eles.push(T),A[r]=x}return m||(w?null:f)};Ea.getEleLevelForLayerLevel=function(t,e){return t};Ea.drawEleInLayer=function(t,e,r,n){var i=this,a=this.renderer,s=t.context,l=e.boundingBox();l.w===0||l.h===0||!e.visible()||(r=i.getEleLevelForLayerLevel(r,n),a.setImgSmoothing(s,!1),a.drawCachedElement(s,e,null,null,r,rZe),a.setImgSmoothing(s,!0))};Ea.levelIsComplete=function(t,e){var r=this,n=r.layersByLevel[t];if(!n||n.length===0)return!1;for(var i=0,a=0;a0||s.invalid)return!1;i+=s.eles.length}return i===e.length};Ea.validateLayersElesOrdering=function(t,e){var r=this.layersByLevel[t];if(r)for(var n=0;n0){e=!0;break}}return e};Ea.invalidateElements=function(t){var e=this;t.length!==0&&(e.lastInvalidationTime=Qu(),!(t.length===0||!e.haveLayers())&&e.updateElementsInLayers(t,o(function(n,i,a){e.invalidateLayer(n)},"invalAssocLayers")))};Ea.invalidateLayer=function(t){if(this.lastInvalidationTime=Qu(),!t.invalid){var e=t.level,r=t.eles,n=this.layersByLevel[e];Df(n,t),t.elesQueue=[],t.invalid=!0,t.replacement&&(t.replacement.invalid=!0);for(var i=0;i3&&arguments[3]!==void 0?arguments[3]:!0,i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,a=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!0,s=this,l=e._private.rscratch;if(!(a&&!e.visible())&&!(l.badLine||l.allpts==null||isNaN(l.allpts[0]))){var u;r&&(u=r,t.translate(-u.x1,-u.y1));var h=a?e.pstyle("opacity").value:1,f=a?e.pstyle("line-opacity").value:1,d=e.pstyle("curve-style").value,p=e.pstyle("line-style").value,m=e.pstyle("width").pfValue,g=e.pstyle("line-cap").value,y=e.pstyle("line-outline-width").value,v=e.pstyle("line-outline-color").value,x=h*f,b=h*f,w=o(function(){var O=arguments.length>0&&arguments[0]!==void 0?arguments[0]:x;d==="straight-triangle"?(s.eleStrokeStyle(t,e,O),s.drawEdgeTrianglePath(e,t,l.allpts)):(t.lineWidth=m,t.lineCap=g,s.eleStrokeStyle(t,e,O),s.drawEdgePath(e,t,l.allpts,p),t.lineCap="butt")},"drawLine"),C=o(function(){var O=arguments.length>0&&arguments[0]!==void 0?arguments[0]:x;if(t.lineWidth=m+y,t.lineCap=g,y>0)s.colorStrokeStyle(t,v[0],v[1],v[2],O);else{t.lineCap="butt";return}d==="straight-triangle"?s.drawEdgeTrianglePath(e,t,l.allpts):(s.drawEdgePath(e,t,l.allpts,p),t.lineCap="butt")},"drawLineOutline"),T=o(function(){i&&s.drawEdgeOverlay(t,e)},"drawOverlay"),E=o(function(){i&&s.drawEdgeUnderlay(t,e)},"drawUnderlay"),A=o(function(){var O=arguments.length>0&&arguments[0]!==void 0?arguments[0]:b;s.drawArrowheads(t,e,O)},"drawArrows"),S=o(function(){s.drawElementText(t,e,null,n)},"drawText");t.lineJoin="round";var _=e.pstyle("ghost").value==="yes";if(_){var I=e.pstyle("ghost-offset-x").pfValue,D=e.pstyle("ghost-offset-y").pfValue,k=e.pstyle("ghost-opacity").value,L=x*k;t.translate(I,D),w(L),A(L),t.translate(-I,-D)}else C();E(),w(),A(),T(),S(),r&&t.translate(u.x1,u.y1)}};kge=o(function(e){if(!["overlay","underlay"].includes(e))throw new Error("Invalid state");return function(r,n){if(n.visible()){var i=n.pstyle("".concat(e,"-opacity")).value;if(i!==0){var a=this,s=a.usePaths(),l=n._private.rscratch,u=n.pstyle("".concat(e,"-padding")).pfValue,h=2*u,f=n.pstyle("".concat(e,"-color")).value;r.lineWidth=h,l.edgeType==="self"&&!s?r.lineCap="butt":r.lineCap="round",a.colorStrokeStyle(r,f[0],f[1],f[2],i),a.drawEdgePath(n,r,l.allpts,"solid")}}}},"drawEdgeOverlayUnderlay");th.drawEdgeOverlay=kge("overlay");th.drawEdgeUnderlay=kge("underlay");th.drawEdgePath=function(t,e,r,n){var i=t._private.rscratch,a=e,s,l=!1,u=this.usePaths(),h=t.pstyle("line-dash-pattern").pfValue,f=t.pstyle("line-dash-offset").pfValue;if(u){var d=r.join("$"),p=i.pathCacheKey&&i.pathCacheKey===d;p?(s=e=i.pathCache,l=!0):(s=e=new Path2D,i.pathCacheKey=d,i.pathCache=s)}if(a.setLineDash)switch(n){case"dotted":a.setLineDash([1,1]);break;case"dashed":a.setLineDash(h),a.lineDashOffset=f;break;case"solid":a.setLineDash([]);break}if(!l&&!i.badLine)switch(e.beginPath&&e.beginPath(),e.moveTo(r[0],r[1]),i.edgeType){case"bezier":case"self":case"compound":case"multibezier":for(var m=2;m+35&&arguments[5]!==void 0?arguments[5]:!0,s=this;if(n==null){if(a&&!s.eleTextBiggerThanMin(e))return}else if(n===!1)return;if(e.isNode()){var l=e.pstyle("label");if(!l||!l.value)return;var u=s.getLabelJustification(e);t.textAlign=u,t.textBaseline="bottom"}else{var h=e.element()._private.rscratch.badLine,f=e.pstyle("label"),d=e.pstyle("source-label"),p=e.pstyle("target-label");if(h||(!f||!f.value)&&(!d||!d.value)&&(!p||!p.value))return;t.textAlign="center",t.textBaseline="bottom"}var m=!r,g;r&&(g=r,t.translate(-g.x1,-g.y1)),i==null?(s.drawText(t,e,null,m,a),e.isEdge()&&(s.drawText(t,e,"source",m,a),s.drawText(t,e,"target",m,a))):s.drawText(t,e,i,m,a),r&&t.translate(g.x1,g.y1)};Yp.getFontCache=function(t){var e;this.fontCaches=this.fontCaches||[];for(var r=0;r2&&arguments[2]!==void 0?arguments[2]:!0,n=e.pstyle("font-style").strValue,i=e.pstyle("font-size").pfValue+"px",a=e.pstyle("font-family").strValue,s=e.pstyle("font-weight").strValue,l=r?e.effectiveOpacity()*e.pstyle("text-opacity").value:1,u=e.pstyle("text-outline-opacity").value*l,h=e.pstyle("color").value,f=e.pstyle("text-outline-color").value;t.font=n+" "+s+" "+i+" "+a,t.lineJoin="round",this.colorFillStyle(t,h[0],h[1],h[2],l),this.colorStrokeStyle(t,f[0],f[1],f[2],u)};o(RP,"roundRect");Yp.getTextAngle=function(t,e){var r,n=t._private,i=n.rscratch,a=e?e+"-":"",s=t.pstyle(a+"text-rotation");if(s.strValue==="autorotate"){var l=Gl(i,"labelAngle",e);r=t.isEdge()?l:0}else s.strValue==="none"?r=0:r=s.pfValue;return r};Yp.drawText=function(t,e,r){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,a=e._private,s=a.rscratch,l=i?e.effectiveOpacity():1;if(!(i&&(l===0||e.pstyle("text-opacity").value===0))){r==="main"&&(r=null);var u=Gl(s,"labelX",r),h=Gl(s,"labelY",r),f,d,p=this.getLabelText(e,r);if(p!=null&&p!==""&&!isNaN(u)&&!isNaN(h)){this.setupTextStyle(t,e,i);var m=r?r+"-":"",g=Gl(s,"labelWidth",r),y=Gl(s,"labelHeight",r),v=e.pstyle(m+"text-margin-x").pfValue,x=e.pstyle(m+"text-margin-y").pfValue,b=e.isEdge(),w=e.pstyle("text-halign").value,C=e.pstyle("text-valign").value;b&&(w="center",C="center"),u+=v,h+=x;var T;switch(n?T=this.getTextAngle(e,r):T=0,T!==0&&(f=u,d=h,t.translate(f,d),t.rotate(T),u=0,h=0),C){case"top":break;case"center":h+=y/2;break;case"bottom":h+=y;break}var E=e.pstyle("text-background-opacity").value,A=e.pstyle("text-border-opacity").value,S=e.pstyle("text-border-width").pfValue,_=e.pstyle("text-background-padding").pfValue,I=e.pstyle("text-background-shape").strValue,D=I.indexOf("round")===0,k=2;if(E>0||S>0&&A>0){var L=u-_;switch(w){case"left":L-=g;break;case"center":L-=g/2;break}var R=h-y-_,O=g+2*_,M=y+2*_;if(E>0){var B=t.fillStyle,F=e.pstyle("text-background-color").value;t.fillStyle="rgba("+F[0]+","+F[1]+","+F[2]+","+E*l+")",D?RP(t,L,R,O,M,k):t.fillRect(L,R,O,M),t.fillStyle=B}if(S>0&&A>0){var P=t.strokeStyle,z=t.lineWidth,$=e.pstyle("text-border-color").value,H=e.pstyle("text-border-style").value;if(t.strokeStyle="rgba("+$[0]+","+$[1]+","+$[2]+","+A*l+")",t.lineWidth=S,t.setLineDash)switch(H){case"dotted":t.setLineDash([1,1]);break;case"dashed":t.setLineDash([4,2]);break;case"double":t.lineWidth=S/4,t.setLineDash([]);break;case"solid":t.setLineDash([]);break}if(D?RP(t,L,R,O,M,k,"stroke"):t.strokeRect(L,R,O,M),H==="double"){var Q=S/2;D?RP(t,L+Q,R+Q,O-Q*2,M-Q*2,k,"stroke"):t.strokeRect(L+Q,R+Q,O-Q*2,M-Q*2)}t.setLineDash&&t.setLineDash([]),t.lineWidth=z,t.strokeStyle=P}}var j=2*e.pstyle("text-outline-width").pfValue;if(j>0&&(t.lineWidth=j),e.pstyle("text-wrap").value==="wrap"){var ie=Gl(s,"labelWrapCachedLines",r),ne=Gl(s,"labelLineHeight",r),le=g/2,he=this.getLabelJustification(e);switch(he==="auto"||(w==="left"?he==="left"?u+=-g:he==="center"&&(u+=-le):w==="center"?he==="left"?u+=-le:he==="right"&&(u+=le):w==="right"&&(he==="center"?u+=le:he==="right"&&(u+=g))),C){case"top":h-=(ie.length-1)*ne;break;case"center":case"bottom":h-=(ie.length-1)*ne;break}for(var K=0;K0&&t.strokeText(ie[K],u,h),t.fillText(ie[K],u,h),h+=ne}else j>0&&t.strokeText(p,u,h),t.fillText(p,u,h);T!==0&&(t.rotate(-T),t.translate(-f,-d))}}};ly={};ly.drawNode=function(t,e,r){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,a=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!0,s=this,l,u,h=e._private,f=h.rscratch,d=e.position();if(!(!Ct(d.x)||!Ct(d.y))&&!(a&&!e.visible())){var p=a?e.effectiveOpacity():1,m=s.usePaths(),g,y=!1,v=e.padding();l=e.width()+2*v,u=e.height()+2*v;var x;r&&(x=r,t.translate(-x.x1,-x.y1));for(var b=e.pstyle("background-image"),w=b.value,C=new Array(w.length),T=new Array(w.length),E=0,A=0;A0&&arguments[0]!==void 0?arguments[0]:L;s.eleFillStyle(t,e,oe)},"setupShapeColor"),K=o(function(){var oe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:$;s.colorStrokeStyle(t,R[0],R[1],R[2],oe)},"setupBorderColor"),X=o(function(){var oe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ie;s.colorStrokeStyle(t,Q[0],Q[1],Q[2],oe)},"setupOutlineColor"),te=o(function(oe,V,xe,q){var pe=s.nodePathCache=s.nodePathCache||[],ve=cme(xe==="polygon"?xe+","+q.join(","):xe,""+V,""+oe,""+le),Pe=pe[ve],_e,we=!1;return Pe!=null?(_e=Pe,we=!0,f.pathCache=_e):(_e=new Path2D,pe[ve]=f.pathCache=_e),{path:_e,cacheHit:we}},"getPath"),J=e.pstyle("shape").strValue,se=e.pstyle("shape-polygon-points").pfValue;if(m){t.translate(d.x,d.y);var ue=te(l,u,J,se);g=ue.path,y=ue.cacheHit}var Z=o(function(){if(!y){var oe=d;m&&(oe={x:0,y:0}),s.nodeShapes[s.getNodeShape(e)].draw(g||t,oe.x,oe.y,l,u,le,f)}m?t.fill(g):t.fill()},"drawShape"),Se=o(function(){for(var oe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:p,V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,xe=h.backgrounding,q=0,pe=0;pe0&&arguments[0]!==void 0?arguments[0]:!1,V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:p;s.hasPie(e)&&(s.drawPie(t,e,V),oe&&(m||s.nodeShapes[s.getNodeShape(e)].draw(t,d.x,d.y,l,u,le,f)))},"drawPie"),ae=o(function(){var oe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:p,V=(D>0?D:-D)*oe,xe=D>0?0:255;D!==0&&(s.colorFillStyle(t,xe,xe,xe,V),m?t.fill(g):t.fill())},"darken"),Oe=o(function(){if(k>0){if(t.lineWidth=k,t.lineCap=B,t.lineJoin=M,t.setLineDash)switch(O){case"dotted":t.setLineDash([1,1]);break;case"dashed":t.setLineDash(P),t.lineDashOffset=z;break;case"solid":case"double":t.setLineDash([]);break}if(F!=="center"){if(t.save(),t.lineWidth*=2,F==="inside")m?t.clip(g):t.clip();else{var oe=new Path2D;oe.rect(-l/2-k,-u/2-k,l+2*k,u+2*k),oe.addPath(g),t.clip(oe,"evenodd")}m?t.stroke(g):t.stroke(),t.restore()}else m?t.stroke(g):t.stroke();if(O==="double"){t.lineWidth=k/3;var V=t.globalCompositeOperation;t.globalCompositeOperation="destination-out",m?t.stroke(g):t.stroke(),t.globalCompositeOperation=V}t.setLineDash&&t.setLineDash([])}},"drawBorder"),ge=o(function(){if(H>0){if(t.lineWidth=H,t.lineCap="butt",t.setLineDash)switch(j){case"dotted":t.setLineDash([1,1]);break;case"dashed":t.setLineDash([4,2]);break;case"solid":case"double":t.setLineDash([]);break}var oe=d;m&&(oe={x:0,y:0});var V=s.getNodeShape(e),xe=k;F==="inside"&&(xe=0),F==="outside"&&(xe*=2);var q=(l+xe+(H+ne))/l,pe=(u+xe+(H+ne))/u,ve=l*q,Pe=u*pe,_e=s.nodeShapes[V].points,we;if(m){var Ve=te(ve,Pe,V,_e);we=Ve.path}if(V==="ellipse")s.drawEllipsePath(we||t,oe.x,oe.y,ve,Pe);else if(["round-diamond","round-heptagon","round-hexagon","round-octagon","round-pentagon","round-polygon","round-triangle","round-tag"].includes(V)){var De=0,qe=0,at=0;V==="round-diamond"?De=(xe+ne+H)*1.4:V==="round-heptagon"?(De=(xe+ne+H)*1.075,at=-(xe/2+ne+H)/35):V==="round-hexagon"?De=(xe+ne+H)*1.12:V==="round-pentagon"?(De=(xe+ne+H)*1.13,at=-(xe/2+ne+H)/15):V==="round-tag"?(De=(xe+ne+H)*1.12,qe=(xe/2+H+ne)*.07):V==="round-triangle"&&(De=(xe+ne+H)*(Math.PI/2),at=-(xe+ne/2+H)/Math.PI),De!==0&&(q=(l+De)/l,ve=l*q,["round-hexagon","round-tag"].includes(V)||(pe=(u+De)/u,Pe=u*pe)),le=le==="auto"?bme(ve,Pe):le;for(var Rt=ve/2,st=Pe/2,Ue=le+(xe+H+ne)/2,ct=new Array(_e.length/2),We=new Array(_e.length/2),ot=0;ot<_e.length/2;ot++)ct[ot]={x:oe.x+qe+Rt*_e[ot*2],y:oe.y+at+st*_e[ot*2+1]};var Yt,bt,Mt,xt,ut=ct.length;for(bt=ct[ut-1],Yt=0;Yt0){if(i=i||n.position(),a==null||s==null){var m=n.padding();a=n.width()+2*m,s=n.height()+2*m}l.colorFillStyle(r,f[0],f[1],f[2],h),l.nodeShapes[d].draw(r,i.x,i.y,a+u*2,s+u*2,p),r.fill()}}}},"drawNodeOverlayUnderlay");ly.drawNodeOverlay=Ege("overlay");ly.drawNodeUnderlay=Ege("underlay");ly.hasPie=function(t){return t=t[0],t._private.hasPie};ly.drawPie=function(t,e,r,n){e=e[0],n=n||e.position();var i=e.cy().style(),a=e.pstyle("pie-size"),s=n.x,l=n.y,u=e.width(),h=e.height(),f=Math.min(u,h)/2,d=0,p=this.usePaths();p&&(s=0,l=0),a.units==="%"?f=f*a.pfValue:a.pfValue!==void 0&&(f=a.pfValue/2);for(var m=1;m<=i.pieBackgroundN;m++){var g=e.pstyle("pie-"+m+"-background-size").value,y=e.pstyle("pie-"+m+"-background-color").value,v=e.pstyle("pie-"+m+"-background-opacity").value*r,x=g/100;x+d>1&&(x=1-d);var b=1.5*Math.PI+2*Math.PI*d,w=2*Math.PI*x,C=b+w;g===0||d>=1||d+x>1||(t.beginPath(),t.moveTo(s,l),t.arc(s,l,f,b,C),t.closePath(),this.colorFillStyle(t,y[0],y[1],y[2],v),t.fill(),d+=x)}};ys={},dZe=100;ys.getPixelRatio=function(){var t=this.data.contexts[0];if(this.forcedPixelRatio!=null)return this.forcedPixelRatio;var e=this.cy.window(),r=t.backingStorePixelRatio||t.webkitBackingStorePixelRatio||t.mozBackingStorePixelRatio||t.msBackingStorePixelRatio||t.oBackingStorePixelRatio||t.backingStorePixelRatio||1;return(e.devicePixelRatio||1)/r};ys.paintCache=function(t){for(var e=this.paintCaches=this.paintCaches||[],r=!0,n,i=0;ie.minMbLowQualFrames&&(e.motionBlurPxRatio=e.mbPxRBlurry)),e.clearingMotionBlur&&(e.motionBlurPxRatio=1),e.textureDrawLastFrame&&!d&&(f[e.NODE]=!0,f[e.SELECT_BOX]=!0);var b=r.style(),w=r.zoom(),C=s!==void 0?s:w,T=r.pan(),E={x:T.x,y:T.y},A={zoom:w,pan:{x:T.x,y:T.y}},S=e.prevViewport,_=S===void 0||A.zoom!==S.zoom||A.pan.x!==S.pan.x||A.pan.y!==S.pan.y;!_&&!(y&&!g)&&(e.motionBlurPxRatio=1),l&&(E=l),C*=u,E.x*=u,E.y*=u;var I=e.getCachedZSortedEles();function D(K,X,te,J,se){var ue=K.globalCompositeOperation;K.globalCompositeOperation="destination-out",e.colorFillStyle(K,255,255,255,e.motionBlurTransparency),K.fillRect(X,te,J,se),K.globalCompositeOperation=ue}o(D,"mbclear");function k(K,X){var te,J,se,ue;!e.clearingMotionBlur&&(K===h.bufferContexts[e.MOTIONBLUR_BUFFER_NODE]||K===h.bufferContexts[e.MOTIONBLUR_BUFFER_DRAG])?(te={x:T.x*m,y:T.y*m},J=w*m,se=e.canvasWidth*m,ue=e.canvasHeight*m):(te=E,J=C,se=e.canvasWidth,ue=e.canvasHeight),K.setTransform(1,0,0,1,0,0),X==="motionBlur"?D(K,0,0,se,ue):!n&&(X===void 0||X)&&K.clearRect(0,0,se,ue),i||(K.translate(te.x,te.y),K.scale(J,J)),l&&K.translate(l.x,l.y),s&&K.scale(s,s)}if(o(k,"setContextTransform"),d||(e.textureDrawLastFrame=!1),d){if(e.textureDrawLastFrame=!0,!e.textureCache){e.textureCache={},e.textureCache.bb=r.mutableElements().boundingBox(),e.textureCache.texture=e.data.bufferCanvases[e.TEXTURE_BUFFER];var L=e.data.bufferContexts[e.TEXTURE_BUFFER];L.setTransform(1,0,0,1,0,0),L.clearRect(0,0,e.canvasWidth*e.textureMult,e.canvasHeight*e.textureMult),e.render({forcedContext:L,drawOnlyNodeLayer:!0,forcedPxRatio:u*e.textureMult});var A=e.textureCache.viewport={zoom:r.zoom(),pan:r.pan(),width:e.canvasWidth,height:e.canvasHeight};A.mpan={x:(0-A.pan.x)/A.zoom,y:(0-A.pan.y)/A.zoom}}f[e.DRAG]=!1,f[e.NODE]=!1;var R=h.contexts[e.NODE],O=e.textureCache.texture,A=e.textureCache.viewport;R.setTransform(1,0,0,1,0,0),p?D(R,0,0,A.width,A.height):R.clearRect(0,0,A.width,A.height);var M=b.core("outside-texture-bg-color").value,B=b.core("outside-texture-bg-opacity").value;e.colorFillStyle(R,M[0],M[1],M[2],B),R.fillRect(0,0,A.width,A.height);var w=r.zoom();k(R,!1),R.clearRect(A.mpan.x,A.mpan.y,A.width/A.zoom/u,A.height/A.zoom/u),R.drawImage(O,A.mpan.x,A.mpan.y,A.width/A.zoom/u,A.height/A.zoom/u)}else e.textureOnViewport&&!n&&(e.textureCache=null);var F=r.extent(),P=e.pinching||e.hoverData.dragging||e.swipePanning||e.data.wheelZooming||e.hoverData.draggingEles||e.cy.animated(),z=e.hideEdgesOnViewport&&P,$=[];if($[e.NODE]=!f[e.NODE]&&p&&!e.clearedForMotionBlur[e.NODE]||e.clearingMotionBlur,$[e.NODE]&&(e.clearedForMotionBlur[e.NODE]=!0),$[e.DRAG]=!f[e.DRAG]&&p&&!e.clearedForMotionBlur[e.DRAG]||e.clearingMotionBlur,$[e.DRAG]&&(e.clearedForMotionBlur[e.DRAG]=!0),f[e.NODE]||i||a||$[e.NODE]){var H=p&&!$[e.NODE]&&m!==1,R=n||(H?e.data.bufferContexts[e.MOTIONBLUR_BUFFER_NODE]:h.contexts[e.NODE]),Q=p&&!H?"motionBlur":void 0;k(R,Q),z?e.drawCachedNodes(R,I.nondrag,u,F):e.drawLayeredElements(R,I.nondrag,u,F),e.debug&&e.drawDebugPoints(R,I.nondrag),!i&&!p&&(f[e.NODE]=!1)}if(!a&&(f[e.DRAG]||i||$[e.DRAG])){var H=p&&!$[e.DRAG]&&m!==1,R=n||(H?e.data.bufferContexts[e.MOTIONBLUR_BUFFER_DRAG]:h.contexts[e.DRAG]);k(R,p&&!H?"motionBlur":void 0),z?e.drawCachedNodes(R,I.drag,u,F):e.drawCachedElements(R,I.drag,u,F),e.debug&&e.drawDebugPoints(R,I.drag),!i&&!p&&(f[e.DRAG]=!1)}if(this.drawSelectionRectangle(t,k),p&&m!==1){var j=h.contexts[e.NODE],ie=e.data.bufferCanvases[e.MOTIONBLUR_BUFFER_NODE],ne=h.contexts[e.DRAG],le=e.data.bufferCanvases[e.MOTIONBLUR_BUFFER_DRAG],he=o(function(X,te,J){X.setTransform(1,0,0,1,0,0),J||!x?X.clearRect(0,0,e.canvasWidth,e.canvasHeight):D(X,0,0,e.canvasWidth,e.canvasHeight);var se=m;X.drawImage(te,0,0,e.canvasWidth*se,e.canvasHeight*se,0,0,e.canvasWidth,e.canvasHeight)},"drawMotionBlur");(f[e.NODE]||$[e.NODE])&&(he(j,ie,$[e.NODE]),f[e.NODE]=!1),(f[e.DRAG]||$[e.DRAG])&&(he(ne,le,$[e.DRAG]),f[e.DRAG]=!1)}e.prevViewport=A,e.clearingMotionBlur&&(e.clearingMotionBlur=!1,e.motionBlurCleared=!0,e.motionBlur=!0),p&&(e.motionBlurTimeout=setTimeout(function(){e.motionBlurTimeout=null,e.clearedForMotionBlur[e.NODE]=!1,e.clearedForMotionBlur[e.DRAG]=!1,e.motionBlur=!1,e.clearingMotionBlur=!d,e.mbFrames=0,f[e.NODE]=!0,f[e.DRAG]=!0,e.redraw()},dZe)),n||r.emit("render")};ys.drawSelectionRectangle=function(t,e){var r=this,n=r.cy,i=r.data,a=n.style(),s=t.drawOnlyNodeLayer,l=t.drawAllLayers,u=i.canvasNeedsRedraw,h=t.forcedContext;if(r.showFps||!s&&u[r.SELECT_BOX]&&!l){var f=h||i.contexts[r.SELECT_BOX];if(e(f),r.selection[4]==1&&(r.hoverData.selecting||r.touchData.selecting)){var d=r.cy.zoom(),p=a.core("selection-box-border-width").value/d;f.lineWidth=p,f.fillStyle="rgba("+a.core("selection-box-color").value[0]+","+a.core("selection-box-color").value[1]+","+a.core("selection-box-color").value[2]+","+a.core("selection-box-opacity").value+")",f.fillRect(r.selection[0],r.selection[1],r.selection[2]-r.selection[0],r.selection[3]-r.selection[1]),p>0&&(f.strokeStyle="rgba("+a.core("selection-box-border-color").value[0]+","+a.core("selection-box-border-color").value[1]+","+a.core("selection-box-border-color").value[2]+","+a.core("selection-box-opacity").value+")",f.strokeRect(r.selection[0],r.selection[1],r.selection[2]-r.selection[0],r.selection[3]-r.selection[1]))}if(i.bgActivePosistion&&!r.hoverData.selecting){var d=r.cy.zoom(),m=i.bgActivePosistion;f.fillStyle="rgba("+a.core("active-bg-color").value[0]+","+a.core("active-bg-color").value[1]+","+a.core("active-bg-color").value[2]+","+a.core("active-bg-opacity").value+")",f.beginPath(),f.arc(m.x,m.y,a.core("active-bg-size").pfValue/d,0,2*Math.PI),f.fill()}var g=r.lastRedrawTime;if(r.showFps&&g){g=Math.round(g);var y=Math.round(1e3/g),v="1 frame = "+g+" ms = "+y+" fps";if(f.setTransform(1,0,0,1,0,0),f.fillStyle="rgba(255, 0, 0, 0.75)",f.strokeStyle="rgba(255, 0, 0, 0.75)",f.font="30px Arial",!Nb){var x=f.measureText(v);Nb=x.actualBoundingBoxAscent}f.fillText(v,0,Nb);var b=60;f.strokeRect(0,Nb+10,250,20),f.fillRect(0,Nb+10,250*Math.min(y/b,1),20)}l||(u[r.SELECT_BOX]=!1)}};o(z0e,"compileShader");o(pZe,"createProgram");o(mZe,"createTextureCanvas");o(wB,"getEffectivePanZoom");o(NP,"modelToRenderedPosition");o(oS,"toWebGLColor");o(lS,"indexToVec4");o(gZe,"vec4ToIndex");o(yZe,"createTexture");o(Sge,"getTypeInfo");o(Cge,"createTypedArray");o(vZe,"createTypedArrayView");o(xZe,"createBufferStaticDraw");o(po,"createBufferDynamicDraw");o(bZe,"createPickingFrameBuffer");G0e=typeof Float32Array<"u"?Float32Array:Array;Math.hypot||(Math.hypot=function(){for(var t=0,e=arguments.length;e--;)t+=arguments[e]*arguments[e];return Math.sqrt(t)});o(Gb,"create");o(Age,"identity");o(wZe,"multiply");o(DS,"translate");o(_ge,"rotate");o(TB,"scale");o(TZe,"projection");Vb={SCREEN:{name:"screen",screen:!0},PICKING:{name:"picking",picking:!0}},Mb=la({getKey:null,drawElement:null,getBoundingBox:null,getRotation:null,getRotationPoint:null,getRotationOffset:null,isVisible:null,getPadding:null}),kZe=function(){function t(e,r){Mf(this,t),this.debugID=Math.floor(Math.random()*1e4),this.r=e,this.atlasSize=r.webglTexSize,this.rows=r.webglTexRows,this.enableWrapping=r.enableWrapping,this.texHeight=Math.floor(this.atlasSize/this.rows),this.maxTexWidth=this.atlasSize,this.texture=null,this.canvas=null,this.needsBuffer=!0,this.freePointer={x:0,row:0},this.keyToLocation=new Map,this.canvas=r.createTextureCanvas(e,this.atlasSize,this.atlasSize),this.scratch=r.createTextureCanvas(e,this.atlasSize,this.texHeight,"scratch")}return o(t,"Atlas"),If(t,[{key:"getKeys",value:o(function(){return new Set(this.keyToLocation.keys())},"getKeys")},{key:"getScale",value:o(function(r){var n=r.w,i=r.h,a=this.texHeight,s=this.maxTexWidth,l=a/i,u=n*l,h=i*l;return u>s&&(l=s/n,u=n*l,h=i*l),{scale:l,texW:u,texH:h}},"getScale")},{key:"draw",value:o(function(r,n,i){var a=this,s=this.atlasSize,l=this.rows,u=this.texHeight,h=this.getScale(n),f=h.scale,d=h.texW,p=h.texH,m=[null,null],g=o(function(w,C){if(i&&C){var T=C.context,E=w.x,A=w.row,S=E,_=u*A;T.save(),T.translate(S,_),T.scale(f,f),i(T,n),T.restore()}},"drawAt"),y=o(function(){g(a.freePointer,a.canvas),m[0]={x:a.freePointer.x,y:a.freePointer.row*u,w:d,h:p},m[1]={x:a.freePointer.x+d,y:a.freePointer.row*u,w:0,h:p},a.freePointer.x+=d,a.freePointer.x==s&&(a.freePointer.x=0,a.freePointer.row++)},"drawNormal"),v=o(function(){var w=a.scratch,C=a.canvas;w.clear(),g({x:0,row:0},w);var T=s-a.freePointer.x,E=d-T,A=u;{var S=a.freePointer.x,_=a.freePointer.row*u,I=T;C.context.drawImage(w,0,0,I,A,S,_,I,A),m[0]={x:S,y:_,w:I,h:p}}{var D=T,k=(a.freePointer.row+1)*u,L=E;C&&C.context.drawImage(w,D,0,L,A,0,k,L,A),m[1]={x:0,y:k,w:L,h:p}}a.freePointer.x=E,a.freePointer.row++},"drawWrapped"),x=o(function(){a.freePointer.x=0,a.freePointer.row++},"moveToStartOfNextRow");if(this.freePointer.x+d<=s)y();else{if(this.freePointer.row>=l-1)return!1;this.freePointer.x===s?(x(),y()):this.enableWrapping?v():(x(),y())}return this.keyToLocation.set(r,m),this.needsBuffer=!0,m},"draw")},{key:"getOffsets",value:o(function(r){return this.keyToLocation.get(r)},"getOffsets")},{key:"isEmpty",value:o(function(){return this.freePointer.x===0&&this.freePointer.row===0},"isEmpty")},{key:"canFit",value:o(function(r){var n=this.atlasSize,i=this.rows,a=this.getScale(r),s=a.texW;return this.freePointer.x+s>n?this.freePointer.row1&&arguments[1]!==void 0?arguments[1]:{},i=n.forceRedraw,a=i===void 0?!1:i,s=n.filterEle,l=s===void 0?function(){return!0}:s,u=n.filterType,h=u===void 0?function(){return!0}:u,f=!1,d=mo(r),p;try{for(d.s();!(p=d.n()).done;){var m=p.value;if(l(m)){var g=m.id(),y=mo(this.getRenderTypes()),v;try{for(y.s();!(v=y.n()).done;){var x=v.value;if(h(x.type)){var b=x.getKey(m);a?(x.atlasCollection.deleteKey(g,b),x.atlasCollection.styleKeyNeedsRedraw.add(b),f=!0):f|=x.atlasCollection.checkKeyIsInvalid(g,b)}}}catch(w){y.e(w)}finally{y.f()}}}}catch(w){d.e(w)}finally{d.f()}return f},"invalidate")},{key:"gc",value:o(function(){var r=mo(this.getRenderTypes()),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;i.atlasCollection.gc()}}catch(a){r.e(a)}finally{r.f()}},"gc")},{key:"isRenderable",value:o(function(r,n){var i=this.getRenderTypeOpts(n);return i&&i.isVisible(r)},"isRenderable")},{key:"startBatch",value:o(function(){this.batchAtlases=[]},"startBatch")},{key:"getAtlasCount",value:o(function(){return this.batchAtlases.length},"getAtlasCount")},{key:"getAtlases",value:o(function(){return this.batchAtlases},"getAtlases")},{key:"getOrCreateAtlas",value:o(function(r,n,i){var a=this.renderTypes.get(i),s=a.getKey(r),l=r.id();return a.atlasCollection.draw(l,s,n,function(u){a.drawElement(u,r,n,!0,!0)})},"getOrCreateAtlas")},{key:"getAtlasIndexForBatch",value:o(function(r){var n=this.batchAtlases.indexOf(r);if(n<0){if(this.batchAtlases.length===this.maxAtlasesPerBatch)return;this.batchAtlases.push(r),n=this.batchAtlases.length-1}return n},"getAtlasIndexForBatch")},{key:"getIndexArray",value:o(function(){return Array.from({length:this.maxAtlases},function(r,n){return n})},"getIndexArray")},{key:"getAtlasInfo",value:o(function(r,n){var i=this.renderTypes.get(n),a=i.getBoundingBox(r),s=this.getOrCreateAtlas(r,a,n),l=this.getAtlasIndexForBatch(s);if(l!==void 0){var u=i.getKey(r),h=s.getOffsets(u),f=_i(h,2),d=f[0],p=f[1];return{atlasID:l,tex:d,tex1:d,tex2:p,bb:a,type:n,styleKey:u}}},"getAtlasInfo")},{key:"canAddToCurrentBatch",value:o(function(r,n){if(this.batchAtlases.length===this.maxAtlasesPerBatch){var i=this.renderTypes.get(n),a=i.getKey(r),s=i.atlasCollection.getAtlas(a);return s&&this.batchAtlases.includes(s)}return!0},"canAddToCurrentBatch")},{key:"setTransformMatrix",value:o(function(r,n,i){var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,s=n.bb,l=n.type,u=n.tex1,h=n.tex2,f=this.getRenderTypeOpts(l),d=f.getPadding?f.getPadding(i):0,p=u.w/(u.w+h.w);a||(p=1-p);var m=this.getAdjustedBB(s,d,a,p),g,y;Age(r);var v=f.getRotation?f.getRotation(i):0;if(v!==0){var x=f.getRotationPoint(i),b=x.x,w=x.y;DS(r,r,[b,w]),_ge(r,r,v);var C=f.getRotationOffset(i);g=C.x+m.xOffset,y=C.y}else g=m.x1,y=m.y1;DS(r,r,[g,y]),TB(r,r,[m.w,m.h])},"setTransformMatrix")},{key:"getTransformMatrix",value:o(function(r,n){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0,a=Gb();return this.setTransformMatrix(a,r,n,i),a},"getTransformMatrix")},{key:"getAdjustedBB",value:o(function(r,n,i,a){var s=r.x1,l=r.y1,u=r.w,h=r.h;n&&(s-=n,l-=n,u+=2*n,h+=2*n);var f=0,d=u*a;return i&&a<1?u=d:!i&&a<1&&(f=u-d,s+=f,u=d),{x1:s,y1:l,w:u,h,xOffset:f}},"getAdjustedBB")},{key:"getDebugInfo",value:o(function(){var r=[],n=mo(this.renderTypes),i;try{for(n.s();!(i=n.n()).done;){var a=_i(i.value,2),s=a[0],l=a[1],u=l.atlasCollection.getCounts(),h=u.keyCount,f=u.atlasCount;r.push({type:s,keyCount:h,atlasCount:f})}}catch(d){n.e(d)}finally{n.f()}return r},"getDebugInfo")}]),t}(),MP=0,V0e=1,U0e=2,IP=3,AZe=function(){function t(e,r,n){Mf(this,t),this.r=e,this.gl=r,this.maxInstances=n.webglBatchSize,this.maxAtlases=n.webglTexPerBatch,this.atlasSize=n.webglTexSize,this.bgColor=n.bgColor,n.enableWrapping=!0,n.createTextureCanvas=mZe,this.atlasManager=new CZe(e,n),this.program=this.createShaderProgram(Vb.SCREEN),this.pickingProgram=this.createShaderProgram(Vb.PICKING),this.vao=this.createVAO(),this.debugInfo=[]}return o(t,"ElementDrawingWebGL"),If(t,[{key:"addTextureRenderType",value:o(function(r,n){this.atlasManager.addRenderType(r,n)},"addTextureRenderType")},{key:"invalidate",value:o(function(r){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},i=n.type,a=this.atlasManager;return i?a.invalidate(r,{filterType:o(function(l){return l===i},"filterType"),forceRedraw:!0}):a.invalidate(r)},"invalidate")},{key:"gc",value:o(function(){this.atlasManager.gc()},"gc")},{key:"createShaderProgram",value:o(function(r){var n=this.gl,i=`#version 300 es + precision highp float; + + uniform mat3 uPanZoomMatrix; + uniform int uAtlasSize; + + // instanced + in vec2 aPosition; + + // what are we rendering? + in int aVertType; + + // for picking + in vec4 aIndex; + + // For textures + in int aAtlasId; // which shader unit/atlas to use + in vec4 aTex1; // x/y/w/h of texture in atlas + in vec4 aTex2; + + // for any transforms that are needed + in vec4 aScaleRotate1; // vectors use fewer attributes than matrices + in vec2 aTranslate1; + in vec4 aScaleRotate2; + in vec2 aTranslate2; + + // for edges + in vec4 aPointAPointB; + in vec4 aPointCPointD; + in float aLineWidth; + in vec4 aEdgeColor; + + out vec2 vTexCoord; + out vec4 vEdgeColor; + flat out int vAtlasId; + flat out vec4 vIndex; + flat out int vVertType; + + void main(void) { + int vid = gl_VertexID; + vec2 position = aPosition; + + if(aVertType == `.concat(MP,`) { + float texX; + float texY; + float texW; + float texH; + mat3 texMatrix; + + int vid = gl_VertexID; + if(vid <= 5) { + texX = aTex1.x; + texY = aTex1.y; + texW = aTex1.z; + texH = aTex1.w; + texMatrix = mat3( + vec3(aScaleRotate1.xy, 0.0), + vec3(aScaleRotate2.zw, 0.0), + vec3(aTranslate1, 1.0) + ); + } else { + texX = aTex2.x; + texY = aTex2.y; + texW = aTex2.z; + texH = aTex2.w; + texMatrix = mat3( + vec3(aScaleRotate2.xy, 0.0), + vec3(aScaleRotate2.zw, 0.0), + vec3(aTranslate2, 1.0) + ); + } + + if(vid == 1 || vid == 2 || vid == 4 || vid == 7 || vid == 8 || vid == 10) { + texX += texW; + } + if(vid == 2 || vid == 4 || vid == 5 || vid == 8 || vid == 10 || vid == 11) { + texY += texH; + } + + float d = float(uAtlasSize); + vTexCoord = vec2(texX / d, texY / d); // tex coords must be between 0 and 1 + + gl_Position = vec4(uPanZoomMatrix * texMatrix * vec3(position, 1.0), 1.0); + } + else if(aVertType == `).concat(V0e,` && vid < 6) { + vec2 source = aPointAPointB.xy; + vec2 target = aPointAPointB.zw; + + // adjust the geometry so that the line is centered on the edge + position.y = position.y - 0.5; + + vec2 xBasis = target - source; + vec2 yBasis = normalize(vec2(-xBasis.y, xBasis.x)); + vec2 point = source + xBasis * position.x + yBasis * aLineWidth * position.y; + + gl_Position = vec4(uPanZoomMatrix * vec3(point, 1.0), 1.0); + vEdgeColor = aEdgeColor; + } + else if(aVertType == `).concat(U0e,` && vid < 6) { + vec2 pointA = aPointAPointB.xy; + vec2 pointB = aPointAPointB.zw; + vec2 pointC = aPointCPointD.xy; + vec2 pointD = aPointCPointD.zw; + + // adjust the geometry so that the line is centered on the edge + position.y = position.y - 0.5; + + vec2 p0 = pointA; + vec2 p1 = pointB; + vec2 p2 = pointC; + vec2 pos = position; + if(position.x == 1.0) { + p0 = pointD; + p1 = pointC; + p2 = pointB; + pos = vec2(0.0, -position.y); + } + + vec2 p01 = p1 - p0; + vec2 p12 = p2 - p1; + vec2 p21 = p1 - p2; + + // Find the normal vector. + vec2 tangent = normalize(normalize(p12) + normalize(p01)); + vec2 normal = vec2(-tangent.y, tangent.x); + + // Find the vector perpendicular to p0 -> p1. + vec2 p01Norm = normalize(vec2(-p01.y, p01.x)); + + // Determine the bend direction. + float sigma = sign(dot(p01 + p21, normal)); + float width = aLineWidth; + + if(sign(pos.y) == -sigma) { + // This is an intersecting vertex. Adjust the position so that there's no overlap. + vec2 point = 0.5 * width * normal * -sigma / dot(normal, p01Norm); + gl_Position = vec4(uPanZoomMatrix * vec3(p1 + point, 1.0), 1.0); + } else { + // This is a non-intersecting vertex. Treat it like a mitre join. + vec2 point = 0.5 * width * normal * sigma * dot(normal, p01Norm); + gl_Position = vec4(uPanZoomMatrix * vec3(p1 + point, 1.0), 1.0); + } + + vEdgeColor = aEdgeColor; + } + else if(aVertType == `).concat(IP,` && vid < 3) { + // massage the first triangle into an edge arrow + if(vid == 0) + position = vec2(-0.15, -0.3); + if(vid == 1) + position = vec2( 0.0, 0.0); + if(vid == 2) + position = vec2( 0.15, -0.3); + + mat3 transform = mat3( + vec3(aScaleRotate1.xy, 0.0), + vec3(aScaleRotate1.zw, 0.0), + vec3(aTranslate1, 1.0) + ); + gl_Position = vec4(uPanZoomMatrix * transform * vec3(position, 1.0), 1.0); + vEdgeColor = aEdgeColor; + } else { + gl_Position = vec4(2.0, 0.0, 0.0, 1.0); // discard vertex by putting it outside webgl clip space + } + + vAtlasId = aAtlasId; + vIndex = aIndex; + vVertType = aVertType; + } + `),a=this.atlasManager.getIndexArray(),s=`#version 300 es + precision highp float; + + // define texture unit for each node in the batch + `.concat(a.map(function(h){return"uniform sampler2D uTexture".concat(h,";")}).join(` + `),` + + uniform vec4 uBGColor; + + in vec2 vTexCoord; + in vec4 vEdgeColor; + flat in int vAtlasId; + flat in vec4 vIndex; + flat in int vVertType; + + out vec4 outColor; + + void main(void) { + if(vVertType == `).concat(MP,`) { + `).concat(a.map(function(h){return"if(vAtlasId == ".concat(h,") outColor = texture(uTexture").concat(h,", vTexCoord);")}).join(` + else `),` + } else if(vVertType == `).concat(IP,`) { + // blend arrow color with background (using premultiplied alpha) + outColor.rgb = vEdgeColor.rgb + (uBGColor.rgb * (1.0 - vEdgeColor.a)); + outColor.a = 1.0; // make opaque, masks out line under arrow + } else { + outColor = vEdgeColor; + } + + `).concat(r.picking?`if(outColor.a == 0.0) discard; + else outColor = vIndex;`:"",` + } + `),l=pZe(n,i,s);l.aPosition=n.getAttribLocation(l,"aPosition"),l.aIndex=n.getAttribLocation(l,"aIndex"),l.aVertType=n.getAttribLocation(l,"aVertType"),l.aAtlasId=n.getAttribLocation(l,"aAtlasId"),l.aTex1=n.getAttribLocation(l,"aTex1"),l.aTex2=n.getAttribLocation(l,"aTex2"),l.aScaleRotate1=n.getAttribLocation(l,"aScaleRotate1"),l.aTranslate1=n.getAttribLocation(l,"aTranslate1"),l.aScaleRotate2=n.getAttribLocation(l,"aScaleRotate2"),l.aTranslate2=n.getAttribLocation(l,"aTranslate2"),l.aPointAPointB=n.getAttribLocation(l,"aPointAPointB"),l.aPointCPointD=n.getAttribLocation(l,"aPointCPointD"),l.aLineWidth=n.getAttribLocation(l,"aLineWidth"),l.aEdgeColor=n.getAttribLocation(l,"aEdgeColor"),l.uPanZoomMatrix=n.getUniformLocation(l,"uPanZoomMatrix"),l.uAtlasSize=n.getUniformLocation(l,"uAtlasSize"),l.uBGColor=n.getUniformLocation(l,"uBGColor"),l.uTextures=[];for(var u=0;u2&&arguments[2]!==void 0?arguments[2]:Vb.SCREEN;this.panZoomMatrix=r,this.debugInfo=n,this.renderTarget=i,this.startBatch()},"startFrame")},{key:"startBatch",value:o(function(){this.instanceCount=0,this.atlasManager.startBatch()},"startBatch")},{key:"endFrame",value:o(function(){this.endBatch()},"endFrame")},{key:"getTempMatrix",value:o(function(){return this.tempMatrix=this.tempMatrix||Gb()},"getTempMatrix")},{key:"drawTexture",value:o(function(r,n,i){var a=this.atlasManager;if(a.isRenderable(r,i)){a.canAddToCurrentBatch(r,i)||this.endBatch();var s=this.instanceCount;this.vertTypeBuffer.getView(s)[0]=MP;var l=this.indexBuffer.getView(s);lS(n,l);var u=a.getAtlasInfo(r,i,u),h=u.atlasID,f=u.tex1,d=u.tex2,p=this.atlasIdBuffer.getView(s);p[0]=h;var m=this.tex1Buffer.getView(s);m[0]=f.x,m[1]=f.y,m[2]=f.w,m[3]=f.h;var g=this.tex2Buffer.getView(s);g[0]=d.x,g[1]=d.y,g[2]=d.w,g[3]=d.h;for(var y=this.getTempMatrix(),v=0,x=[1,2];v=this.maxInstances&&this.endBatch()}},"drawTexture")},{key:"drawEdgeArrow",value:o(function(r,n,i){var a=r._private.rscratch,s,l,u;if(i==="source"?(s=a.arrowStartX,l=a.arrowStartY,u=a.srcArrowAngle):(s=a.arrowEndX,l=a.arrowEndY,u=a.tgtArrowAngle),!(isNaN(s)||s==null||isNaN(l)||l==null||isNaN(u)||u==null)){var h=r.pstyle(i+"-arrow-shape").value;if(h!=="none"){var f=r.pstyle(i+"-arrow-color").value,d=r.pstyle("opacity").value,p=r.pstyle("line-opacity").value,m=d*p,g=r.pstyle("width").pfValue,y=r.pstyle("arrow-scale").value,v=this.r.getArrowWidth(g,y),x=this.getTempMatrix();Age(x),DS(x,x,[s,l]),TB(x,x,[v,v]),_ge(x,x,u);var b=this.instanceCount;this.vertTypeBuffer.getView(b)[0]=IP;var w=this.indexBuffer.getView(b);lS(n,w);var C=this.edgeColorBuffer.getView(b);oS(f,m,C);var T=this.scaleRotate1Buffer.getView(b);T[0]=x[0],T[1]=x[1],T[2]=x[3],T[3]=x[4];var E=this.translate1Buffer.getView(b);E[0]=x[6],E[1]=x[7],this.instanceCount++,this.instanceCount>=this.maxInstances&&this.endBatch()}}},"drawEdgeArrow")},{key:"drawEdgeLine",value:o(function(r,n){var i=r.pstyle("opacity").value,a=r.pstyle("line-opacity").value,s=r.pstyle("width").pfValue,l=r.pstyle("line-color").value,u=i*a,h=this.getEdgePoints(r);if(h.length/2+this.instanceCount>this.maxInstances&&this.endBatch(),h.length==4){var f=this.instanceCount;this.vertTypeBuffer.getView(f)[0]=V0e;var d=this.indexBuffer.getView(f);lS(n,d);var p=this.edgeColorBuffer.getView(f);oS(l,u,p);var m=this.lineWidthBuffer.getView(f);m[0]=s;var g=this.pointAPointBBuffer.getView(f);g[0]=h[0],g[1]=h[1],g[2]=h[2],g[3]=h[3],this.instanceCount++,this.instanceCount>=this.maxInstances&&this.endBatch()}else for(var y=0;y=this.maxInstances&&this.endBatch()}},"drawEdgeLine")},{key:"getEdgePoints",value:o(function(r){var n=r._private.rscratch,i=n.allpts;if(i.length==4)return i;var a=this.getNumSegments(r);return this.getCurveSegmentPoints(i,a)},"getEdgePoints")},{key:"getNumSegments",value:o(function(r){var n=15;return Math.min(Math.max(n,5),this.maxInstances)},"getNumSegments")},{key:"getCurveSegmentPoints",value:o(function(r,n){if(r.length==4)return r;for(var i=Array((n+1)*2),a=0;a<=n;a++)if(a==0)i[0]=r[0],i[1]=r[1];else if(a==n)i[a*2]=r[r.length-2],i[a*2+1]=r[r.length-1];else{var s=a/n;this.setCurvePoint(r,s,i,a*2)}return i},"getCurveSegmentPoints")},{key:"setCurvePoint",value:o(function(r,n,i,a){if(r.length<=2)i[a]=r[0],i[a+1]=r[1];else{for(var s=Array(r.length-2),l=0;l0},"isVisible")},{key:"getStyle",value:o(function(r,n){var i=n.pstyle("".concat(r,"-opacity")).value,a=n.pstyle("".concat(r,"-color")).value,s=n.pstyle("".concat(r,"-shape")).value;return{opacity:i,color:a,shape:s}},"getStyle")},{key:"getPadding",value:o(function(r,n){return n.pstyle("".concat(r,"-padding")).pfValue},"getPadding")},{key:"draw",value:o(function(r,n,i,a){if(this.isVisible(r,i)){var s=this.r,l=a.w,u=a.h,h=l/2,f=u/2,d=this.getStyle(r,i),p=d.shape,m=d.color,g=d.opacity;n.save(),n.fillStyle=H0e(m,g),p==="round-rectangle"||p==="roundrectangle"?s.drawRoundRectanglePath(n,h,f,l,u,"auto"):p==="ellipse"&&s.drawEllipsePath(n,h,f,l,u),n.fill(),n.restore()}},"draw")}]),t}();o(DZe,"getBGColor");Dge={};Dge.initWebgl=function(t,e){var r=this,n=r.data.contexts[r.WEBGL],i=t.cy.container();t.bgColor=DZe(i),t.webglTexSize=Math.min(t.webglTexSize,n.getParameter(n.MAX_TEXTURE_SIZE)),t.webglTexRows=Math.min(t.webglTexRows,54),t.webglBatchSize=Math.min(t.webglBatchSize,16384),t.webglTexPerBatch=Math.min(t.webglTexPerBatch,n.getParameter(n.MAX_TEXTURE_IMAGE_UNITS)),r.webglDebug=t.webglDebug,r.webglDebugShowAtlases=t.webglDebugShowAtlases,console.log("max texture units",n.getParameter(n.MAX_TEXTURE_IMAGE_UNITS)),console.log("max texture size",n.getParameter(n.MAX_TEXTURE_SIZE)),console.log("webgl options",t),r.pickingFrameBuffer=bZe(n),r.pickingFrameBuffer.needsDraw=!0;var a=o(function(f){return r.getTextAngle(f,null)},"getLabelRotation"),s=o(function(f){var d=f.pstyle("label");return d&&d.value},"isLabelVisible");r.eleDrawing=new AZe(r,n,t);var l=new _Ze(r);r.eleDrawing.addTextureRenderType("node-body",Mb({getKey:e.getStyleKey,getBoundingBox:e.getElementBox,drawElement:e.drawElement,isVisible:o(function(f){return f.visible()},"isVisible")})),r.eleDrawing.addTextureRenderType("node-label",Mb({getKey:e.getLabelKey,getBoundingBox:e.getLabelBox,drawElement:e.drawLabel,getRotation:a,getRotationPoint:e.getLabelRotationPoint,getRotationOffset:e.getLabelRotationOffset,isVisible:s})),r.eleDrawing.addTextureRenderType("node-overlay",Mb({getBoundingBox:e.getElementBox,getKey:o(function(f){return l.getStyleKey("overlay",f)},"getKey"),drawElement:o(function(f,d,p){return l.draw("overlay",f,d,p)},"drawElement"),isVisible:o(function(f){return l.isVisible("overlay",f)},"isVisible"),getPadding:o(function(f){return l.getPadding("overlay",f)},"getPadding")})),r.eleDrawing.addTextureRenderType("node-underlay",Mb({getBoundingBox:e.getElementBox,getKey:o(function(f){return l.getStyleKey("underlay",f)},"getKey"),drawElement:o(function(f,d,p){return l.draw("underlay",f,d,p)},"drawElement"),isVisible:o(function(f){return l.isVisible("underlay",f)},"isVisible"),getPadding:o(function(f){return l.getPadding("underlay",f)},"getPadding")})),r.eleDrawing.addTextureRenderType("edge-label",Mb({getKey:e.getLabelKey,getBoundingBox:e.getLabelBox,drawElement:e.drawLabel,getRotation:a,getRotationPoint:e.getLabelRotationPoint,getRotationOffset:e.getLabelRotationOffset,isVisible:s}));var u=n4(function(){console.log("garbage collect flag set"),r.data.gc=!0},1e4);r.onUpdateEleCalcs(function(h,f){var d=!1;f&&f.length>0&&(d|=r.eleDrawing.invalidate(f)),d&&u()}),LZe(r)};o(LZe,"overrideCanvasRendererFunctions");o(RZe,"clearWebgl");o(NZe,"clearCanvas");o(MZe,"createPanZoomMatrix");o(Lge,"setContextTransform");o(IZe,"drawSelectionRectangle");o(OZe,"drawAxes");o(PZe,"drawAtlases");o(BZe,"getPickingIndexes");o(FZe,"findNearestElementsWebgl");o(Rge,"renderWebgl");Pf={};Pf.drawPolygonPath=function(t,e,r,n,i,a){var s=n/2,l=i/2;t.beginPath&&t.beginPath(),t.moveTo(e+s*a[0],r+l*a[1]);for(var u=1;u0&&s>0){m.clearRect(0,0,a,s),m.globalCompositeOperation="source-over";var g=this.getCachedZSortedEles();if(t.full)m.translate(-n.x1*h,-n.y1*h),m.scale(h,h),this.drawElements(m,g),m.scale(1/h,1/h),m.translate(n.x1*h,n.y1*h);else{var y=e.pan(),v={x:y.x*h,y:y.y*h};h*=e.zoom(),m.translate(v.x,v.y),m.scale(h,h),this.drawElements(m,g),m.scale(1/h,1/h),m.translate(-v.x,-v.y)}t.bg&&(m.globalCompositeOperation="destination-over",m.fillStyle=t.bg,m.rect(0,0,a,s),m.fill())}return p};o($Ze,"b64ToBlob");o(Y0e,"b64UriToB64");o(Mge,"output");c4.png=function(t){return Mge(t,this.bufferCanvasImage(t),"image/png")};c4.jpg=function(t){return Mge(t,this.bufferCanvasImage(t),"image/jpeg")};Ige={};Ige.nodeShapeImpl=function(t,e,r,n,i,a,s,l){switch(t){case"ellipse":return this.drawEllipsePath(e,r,n,i,a);case"polygon":return this.drawPolygonPath(e,r,n,i,a,s);case"round-polygon":return this.drawRoundPolygonPath(e,r,n,i,a,s,l);case"roundrectangle":case"round-rectangle":return this.drawRoundRectanglePath(e,r,n,i,a,l);case"cutrectangle":case"cut-rectangle":return this.drawCutRectanglePath(e,r,n,i,a,s,l);case"bottomroundrectangle":case"bottom-round-rectangle":return this.drawBottomRoundRectanglePath(e,r,n,i,a,l);case"barrel":return this.drawBarrelPath(e,r,n,i,a)}};zZe=Oge,Er=Oge.prototype;Er.CANVAS_LAYERS=3;Er.SELECT_BOX=0;Er.DRAG=1;Er.NODE=2;Er.WEBGL=3;Er.CANVAS_TYPES=["2d","2d","2d","webgl2"];Er.BUFFER_COUNT=3;Er.TEXTURE_BUFFER=0;Er.MOTIONBLUR_BUFFER_NODE=1;Er.MOTIONBLUR_BUFFER_DRAG=2;o(Oge,"CanvasRenderer");Er.redrawHint=function(t,e){var r=this;switch(t){case"eles":r.data.canvasNeedsRedraw[Er.NODE]=e;break;case"drag":r.data.canvasNeedsRedraw[Er.DRAG]=e;break;case"select":r.data.canvasNeedsRedraw[Er.SELECT_BOX]=e;break;case"gc":r.data.gc=!0;break}};GZe=typeof Path2D<"u";Er.path2dEnabled=function(t){if(t===void 0)return this.pathsEnabled;this.pathsEnabled=!!t};Er.usePaths=function(){return GZe&&this.pathsEnabled};Er.setImgSmoothing=function(t,e){t.imageSmoothingEnabled!=null?t.imageSmoothingEnabled=e:(t.webkitImageSmoothingEnabled=e,t.mozImageSmoothingEnabled=e,t.msImageSmoothingEnabled=e)};Er.getImgSmoothing=function(t){return t.imageSmoothingEnabled!=null?t.imageSmoothingEnabled:t.webkitImageSmoothingEnabled||t.mozImageSmoothingEnabled||t.msImageSmoothingEnabled};Er.makeOffscreenCanvas=function(t,e){var r;if((typeof OffscreenCanvas>"u"?"undefined":Wi(OffscreenCanvas))!=="undefined")r=new OffscreenCanvas(t,e);else{var n=this.cy.window(),i=n.document;r=i.createElement("canvas"),r.width=t,r.height=e}return r};[Tge,Qc,th,bB,Yp,ly,ys,Dge,Pf,c4,Ige].forEach(function(t){rr(Er,t)});VZe=[{name:"null",impl:lge},{name:"base",impl:vge},{name:"canvas",impl:zZe}],UZe=[{type:"layout",extensions:SQe},{type:"renderer",extensions:VZe}],Pge={},Bge={};o(Fge,"setExtension");o($ge,"getExtension");o(HZe,"setModule");o(WZe,"getModule");QP=o(function(){if(arguments.length===2)return $ge.apply(null,arguments);if(arguments.length===3)return Fge.apply(null,arguments);if(arguments.length===4)return WZe.apply(null,arguments);if(arguments.length===5)return HZe.apply(null,arguments);ai("Invalid extension access syntax")},"extension");Jb.prototype.extension=QP;UZe.forEach(function(t){t.extensions.forEach(function(e){Fge(t.type,e.name,e.impl)})});zge=o(function t(){if(!(this instanceof t))return new t;this.length=0},"Stylesheet"),Wp=zge.prototype;Wp.instanceString=function(){return"stylesheet"};Wp.selector=function(t){var e=this.length++;return this[e]={selector:t,properties:[]},this};Wp.css=function(t,e){var r=this.length-1;if(Zt(t))this[r].properties.push({name:t,value:e});else if(Ur(t))for(var n=t,i=Object.keys(n),a=0;a{"use strict";o(function(e,r){typeof u4=="object"&&typeof EB=="object"?EB.exports=r():typeof define=="function"&&define.amd?define([],r):typeof u4=="object"?u4.layoutBase=r():e.layoutBase=r()},"webpackUniversalModuleDefinition")(u4,function(){return function(t){var e={};function r(n){if(e[n])return e[n].exports;var i=e[n]={i:n,l:!1,exports:{}};return t[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return o(r,"__webpack_require__"),r.m=t,r.c=e,r.i=function(n){return n},r.d=function(n,i,a){r.o(n,i)||Object.defineProperty(n,i,{configurable:!1,enumerable:!0,get:a})},r.n=function(n){var i=n&&n.__esModule?o(function(){return n.default},"getDefault"):o(function(){return n},"getModuleExports");return r.d(i,"a",i),i},r.o=function(n,i){return Object.prototype.hasOwnProperty.call(n,i)},r.p="",r(r.s=26)}([function(t,e,r){"use strict";function n(){}o(n,"LayoutConstants"),n.QUALITY=1,n.DEFAULT_CREATE_BENDS_AS_NEEDED=!1,n.DEFAULT_INCREMENTAL=!1,n.DEFAULT_ANIMATION_ON_LAYOUT=!0,n.DEFAULT_ANIMATION_DURING_LAYOUT=!1,n.DEFAULT_ANIMATION_PERIOD=50,n.DEFAULT_UNIFORM_LEAF_NODE_SIZES=!1,n.DEFAULT_GRAPH_MARGIN=15,n.NODE_DIMENSIONS_INCLUDE_LABELS=!1,n.SIMPLE_NODE_SIZE=40,n.SIMPLE_NODE_HALF_SIZE=n.SIMPLE_NODE_SIZE/2,n.EMPTY_COMPOUND_NODE_SIZE=40,n.MIN_EDGE_LENGTH=1,n.WORLD_BOUNDARY=1e6,n.INITIAL_WORLD_BOUNDARY=n.WORLD_BOUNDARY/1e3,n.WORLD_CENTER_X=1200,n.WORLD_CENTER_Y=900,t.exports=n},function(t,e,r){"use strict";var n=r(2),i=r(8),a=r(9);function s(u,h,f){n.call(this,f),this.isOverlapingSourceAndTarget=!1,this.vGraphObject=f,this.bendpoints=[],this.source=u,this.target=h}o(s,"LEdge"),s.prototype=Object.create(n.prototype);for(var l in n)s[l]=n[l];s.prototype.getSource=function(){return this.source},s.prototype.getTarget=function(){return this.target},s.prototype.isInterGraph=function(){return this.isInterGraph},s.prototype.getLength=function(){return this.length},s.prototype.isOverlapingSourceAndTarget=function(){return this.isOverlapingSourceAndTarget},s.prototype.getBendpoints=function(){return this.bendpoints},s.prototype.getLca=function(){return this.lca},s.prototype.getSourceInLca=function(){return this.sourceInLca},s.prototype.getTargetInLca=function(){return this.targetInLca},s.prototype.getOtherEnd=function(u){if(this.source===u)return this.target;if(this.target===u)return this.source;throw"Node is not incident with this edge"},s.prototype.getOtherEndInGraph=function(u,h){for(var f=this.getOtherEnd(u),d=h.getGraphManager().getRoot();;){if(f.getOwner()==h)return f;if(f.getOwner()==d)break;f=f.getOwner().getParent()}return null},s.prototype.updateLength=function(){var u=new Array(4);this.isOverlapingSourceAndTarget=i.getIntersection(this.target.getRect(),this.source.getRect(),u),this.isOverlapingSourceAndTarget||(this.lengthX=u[0]-u[2],this.lengthY=u[1]-u[3],Math.abs(this.lengthX)<1&&(this.lengthX=a.sign(this.lengthX)),Math.abs(this.lengthY)<1&&(this.lengthY=a.sign(this.lengthY)),this.length=Math.sqrt(this.lengthX*this.lengthX+this.lengthY*this.lengthY))},s.prototype.updateLengthSimple=function(){this.lengthX=this.target.getCenterX()-this.source.getCenterX(),this.lengthY=this.target.getCenterY()-this.source.getCenterY(),Math.abs(this.lengthX)<1&&(this.lengthX=a.sign(this.lengthX)),Math.abs(this.lengthY)<1&&(this.lengthY=a.sign(this.lengthY)),this.length=Math.sqrt(this.lengthX*this.lengthX+this.lengthY*this.lengthY)},t.exports=s},function(t,e,r){"use strict";function n(i){this.vGraphObject=i}o(n,"LGraphObject"),t.exports=n},function(t,e,r){"use strict";var n=r(2),i=r(10),a=r(13),s=r(0),l=r(16),u=r(4);function h(d,p,m,g){m==null&&g==null&&(g=p),n.call(this,g),d.graphManager!=null&&(d=d.graphManager),this.estimatedSize=i.MIN_VALUE,this.inclusionTreeDepth=i.MAX_VALUE,this.vGraphObject=g,this.edges=[],this.graphManager=d,m!=null&&p!=null?this.rect=new a(p.x,p.y,m.width,m.height):this.rect=new a}o(h,"LNode"),h.prototype=Object.create(n.prototype);for(var f in n)h[f]=n[f];h.prototype.getEdges=function(){return this.edges},h.prototype.getChild=function(){return this.child},h.prototype.getOwner=function(){return this.owner},h.prototype.getWidth=function(){return this.rect.width},h.prototype.setWidth=function(d){this.rect.width=d},h.prototype.getHeight=function(){return this.rect.height},h.prototype.setHeight=function(d){this.rect.height=d},h.prototype.getCenterX=function(){return this.rect.x+this.rect.width/2},h.prototype.getCenterY=function(){return this.rect.y+this.rect.height/2},h.prototype.getCenter=function(){return new u(this.rect.x+this.rect.width/2,this.rect.y+this.rect.height/2)},h.prototype.getLocation=function(){return new u(this.rect.x,this.rect.y)},h.prototype.getRect=function(){return this.rect},h.prototype.getDiagonal=function(){return Math.sqrt(this.rect.width*this.rect.width+this.rect.height*this.rect.height)},h.prototype.getHalfTheDiagonal=function(){return Math.sqrt(this.rect.height*this.rect.height+this.rect.width*this.rect.width)/2},h.prototype.setRect=function(d,p){this.rect.x=d.x,this.rect.y=d.y,this.rect.width=p.width,this.rect.height=p.height},h.prototype.setCenter=function(d,p){this.rect.x=d-this.rect.width/2,this.rect.y=p-this.rect.height/2},h.prototype.setLocation=function(d,p){this.rect.x=d,this.rect.y=p},h.prototype.moveBy=function(d,p){this.rect.x+=d,this.rect.y+=p},h.prototype.getEdgeListToNode=function(d){var p=[],m,g=this;return g.edges.forEach(function(y){if(y.target==d){if(y.source!=g)throw"Incorrect edge source!";p.push(y)}}),p},h.prototype.getEdgesBetween=function(d){var p=[],m,g=this;return g.edges.forEach(function(y){if(!(y.source==g||y.target==g))throw"Incorrect edge source and/or target";(y.target==d||y.source==d)&&p.push(y)}),p},h.prototype.getNeighborsList=function(){var d=new Set,p=this;return p.edges.forEach(function(m){if(m.source==p)d.add(m.target);else{if(m.target!=p)throw"Incorrect incidency!";d.add(m.source)}}),d},h.prototype.withChildren=function(){var d=new Set,p,m;if(d.add(this),this.child!=null)for(var g=this.child.getNodes(),y=0;yp&&(this.rect.x-=(this.labelWidth-p)/2,this.setWidth(this.labelWidth)),this.labelHeight>m&&(this.labelPos=="center"?this.rect.y-=(this.labelHeight-m)/2:this.labelPos=="top"&&(this.rect.y-=this.labelHeight-m),this.setHeight(this.labelHeight))}}},h.prototype.getInclusionTreeDepth=function(){if(this.inclusionTreeDepth==i.MAX_VALUE)throw"assert failed";return this.inclusionTreeDepth},h.prototype.transform=function(d){var p=this.rect.x;p>s.WORLD_BOUNDARY?p=s.WORLD_BOUNDARY:p<-s.WORLD_BOUNDARY&&(p=-s.WORLD_BOUNDARY);var m=this.rect.y;m>s.WORLD_BOUNDARY?m=s.WORLD_BOUNDARY:m<-s.WORLD_BOUNDARY&&(m=-s.WORLD_BOUNDARY);var g=new u(p,m),y=d.inverseTransformPoint(g);this.setLocation(y.x,y.y)},h.prototype.getLeft=function(){return this.rect.x},h.prototype.getRight=function(){return this.rect.x+this.rect.width},h.prototype.getTop=function(){return this.rect.y},h.prototype.getBottom=function(){return this.rect.y+this.rect.height},h.prototype.getParent=function(){return this.owner==null?null:this.owner.getParent()},t.exports=h},function(t,e,r){"use strict";function n(i,a){i==null&&a==null?(this.x=0,this.y=0):(this.x=i,this.y=a)}o(n,"PointD"),n.prototype.getX=function(){return this.x},n.prototype.getY=function(){return this.y},n.prototype.setX=function(i){this.x=i},n.prototype.setY=function(i){this.y=i},n.prototype.getDifference=function(i){return new DimensionD(this.x-i.x,this.y-i.y)},n.prototype.getCopy=function(){return new n(this.x,this.y)},n.prototype.translate=function(i){return this.x+=i.width,this.y+=i.height,this},t.exports=n},function(t,e,r){"use strict";var n=r(2),i=r(10),a=r(0),s=r(6),l=r(3),u=r(1),h=r(13),f=r(12),d=r(11);function p(g,y,v){n.call(this,v),this.estimatedSize=i.MIN_VALUE,this.margin=a.DEFAULT_GRAPH_MARGIN,this.edges=[],this.nodes=[],this.isConnected=!1,this.parent=g,y!=null&&y instanceof s?this.graphManager=y:y!=null&&y instanceof Layout&&(this.graphManager=y.graphManager)}o(p,"LGraph"),p.prototype=Object.create(n.prototype);for(var m in n)p[m]=n[m];p.prototype.getNodes=function(){return this.nodes},p.prototype.getEdges=function(){return this.edges},p.prototype.getGraphManager=function(){return this.graphManager},p.prototype.getParent=function(){return this.parent},p.prototype.getLeft=function(){return this.left},p.prototype.getRight=function(){return this.right},p.prototype.getTop=function(){return this.top},p.prototype.getBottom=function(){return this.bottom},p.prototype.isConnected=function(){return this.isConnected},p.prototype.add=function(g,y,v){if(y==null&&v==null){var x=g;if(this.graphManager==null)throw"Graph has no graph mgr!";if(this.getNodes().indexOf(x)>-1)throw"Node already in graph!";return x.owner=this,this.getNodes().push(x),x}else{var b=g;if(!(this.getNodes().indexOf(y)>-1&&this.getNodes().indexOf(v)>-1))throw"Source or target not in graph!";if(!(y.owner==v.owner&&y.owner==this))throw"Both owners must be this graph!";return y.owner!=v.owner?null:(b.source=y,b.target=v,b.isInterGraph=!1,this.getEdges().push(b),y.edges.push(b),v!=y&&v.edges.push(b),b)}},p.prototype.remove=function(g){var y=g;if(g instanceof l){if(y==null)throw"Node is null!";if(!(y.owner!=null&&y.owner==this))throw"Owner graph is invalid!";if(this.graphManager==null)throw"Owner graph manager is invalid!";for(var v=y.edges.slice(),x,b=v.length,w=0;w-1&&E>-1))throw"Source and/or target doesn't know this edge!";x.source.edges.splice(T,1),x.target!=x.source&&x.target.edges.splice(E,1);var C=x.source.owner.getEdges().indexOf(x);if(C==-1)throw"Not in owner's edge list!";x.source.owner.getEdges().splice(C,1)}},p.prototype.updateLeftTop=function(){for(var g=i.MAX_VALUE,y=i.MAX_VALUE,v,x,b,w=this.getNodes(),C=w.length,T=0;Tv&&(g=v),y>x&&(y=x)}return g==i.MAX_VALUE?null:(w[0].getParent().paddingLeft!=null?b=w[0].getParent().paddingLeft:b=this.margin,this.left=y-b,this.top=g-b,new f(this.left,this.top))},p.prototype.updateBounds=function(g){for(var y=i.MAX_VALUE,v=-i.MAX_VALUE,x=i.MAX_VALUE,b=-i.MAX_VALUE,w,C,T,E,A,S=this.nodes,_=S.length,I=0;I<_;I++){var D=S[I];g&&D.child!=null&&D.updateBounds(),w=D.getLeft(),C=D.getRight(),T=D.getTop(),E=D.getBottom(),y>w&&(y=w),vT&&(x=T),bw&&(y=w),vT&&(x=T),b=this.nodes.length){var _=0;v.forEach(function(I){I.owner==g&&_++}),_==this.nodes.length&&(this.isConnected=!0)}},t.exports=p},function(t,e,r){"use strict";var n,i=r(1);function a(s){n=r(5),this.layout=s,this.graphs=[],this.edges=[]}o(a,"LGraphManager"),a.prototype.addRoot=function(){var s=this.layout.newGraph(),l=this.layout.newNode(null),u=this.add(s,l);return this.setRootGraph(u),this.rootGraph},a.prototype.add=function(s,l,u,h,f){if(u==null&&h==null&&f==null){if(s==null)throw"Graph is null!";if(l==null)throw"Parent node is null!";if(this.graphs.indexOf(s)>-1)throw"Graph already in this graph mgr!";if(this.graphs.push(s),s.parent!=null)throw"Already has a parent!";if(l.child!=null)throw"Already has a child!";return s.parent=l,l.child=s,s}else{f=u,h=l,u=s;var d=h.getOwner(),p=f.getOwner();if(!(d!=null&&d.getGraphManager()==this))throw"Source not in this graph mgr!";if(!(p!=null&&p.getGraphManager()==this))throw"Target not in this graph mgr!";if(d==p)return u.isInterGraph=!1,d.add(u,h,f);if(u.isInterGraph=!0,u.source=h,u.target=f,this.edges.indexOf(u)>-1)throw"Edge already in inter-graph edge list!";if(this.edges.push(u),!(u.source!=null&&u.target!=null))throw"Edge source and/or target is null!";if(!(u.source.edges.indexOf(u)==-1&&u.target.edges.indexOf(u)==-1))throw"Edge already in source and/or target incidency list!";return u.source.edges.push(u),u.target.edges.push(u),u}},a.prototype.remove=function(s){if(s instanceof n){var l=s;if(l.getGraphManager()!=this)throw"Graph not in this graph mgr";if(!(l==this.rootGraph||l.parent!=null&&l.parent.graphManager==this))throw"Invalid parent node!";var u=[];u=u.concat(l.getEdges());for(var h,f=u.length,d=0;d=s.getRight()?l[0]+=Math.min(s.getX()-a.getX(),a.getRight()-s.getRight()):s.getX()<=a.getX()&&s.getRight()>=a.getRight()&&(l[0]+=Math.min(a.getX()-s.getX(),s.getRight()-a.getRight())),a.getY()<=s.getY()&&a.getBottom()>=s.getBottom()?l[1]+=Math.min(s.getY()-a.getY(),a.getBottom()-s.getBottom()):s.getY()<=a.getY()&&s.getBottom()>=a.getBottom()&&(l[1]+=Math.min(a.getY()-s.getY(),s.getBottom()-a.getBottom()));var f=Math.abs((s.getCenterY()-a.getCenterY())/(s.getCenterX()-a.getCenterX()));s.getCenterY()===a.getCenterY()&&s.getCenterX()===a.getCenterX()&&(f=1);var d=f*l[0],p=l[1]/f;l[0]d)return l[0]=u,l[1]=m,l[2]=f,l[3]=S,!1;if(hf)return l[0]=p,l[1]=h,l[2]=E,l[3]=d,!1;if(uf?(l[0]=y,l[1]=v,k=!0):(l[0]=g,l[1]=m,k=!0):R===M&&(u>f?(l[0]=p,l[1]=m,k=!0):(l[0]=x,l[1]=v,k=!0)),-O===M?f>u?(l[2]=A,l[3]=S,L=!0):(l[2]=E,l[3]=T,L=!0):O===M&&(f>u?(l[2]=C,l[3]=T,L=!0):(l[2]=_,l[3]=S,L=!0)),k&&L)return!1;if(u>f?h>d?(B=this.getCardinalDirection(R,M,4),F=this.getCardinalDirection(O,M,2)):(B=this.getCardinalDirection(-R,M,3),F=this.getCardinalDirection(-O,M,1)):h>d?(B=this.getCardinalDirection(-R,M,1),F=this.getCardinalDirection(-O,M,3)):(B=this.getCardinalDirection(R,M,2),F=this.getCardinalDirection(O,M,4)),!k)switch(B){case 1:z=m,P=u+-w/M,l[0]=P,l[1]=z;break;case 2:P=x,z=h+b*M,l[0]=P,l[1]=z;break;case 3:z=v,P=u+w/M,l[0]=P,l[1]=z;break;case 4:P=y,z=h+-b*M,l[0]=P,l[1]=z;break}if(!L)switch(F){case 1:H=T,$=f+-D/M,l[2]=$,l[3]=H;break;case 2:$=_,H=d+I*M,l[2]=$,l[3]=H;break;case 3:H=S,$=f+D/M,l[2]=$,l[3]=H;break;case 4:$=A,H=d+-I*M,l[2]=$,l[3]=H;break}}return!1},i.getCardinalDirection=function(a,s,l){return a>s?l:1+l%4},i.getIntersection=function(a,s,l,u){if(u==null)return this.getIntersection2(a,s,l);var h=a.x,f=a.y,d=s.x,p=s.y,m=l.x,g=l.y,y=u.x,v=u.y,x=void 0,b=void 0,w=void 0,C=void 0,T=void 0,E=void 0,A=void 0,S=void 0,_=void 0;return w=p-f,T=h-d,A=d*f-h*p,C=v-g,E=m-y,S=y*g-m*v,_=w*E-C*T,_===0?null:(x=(T*S-E*A)/_,b=(C*A-w*S)/_,new n(x,b))},i.angleOfVector=function(a,s,l,u){var h=void 0;return a!==l?(h=Math.atan((u-s)/(l-a)),l0?1:i<0?-1:0},n.floor=function(i){return i<0?Math.ceil(i):Math.floor(i)},n.ceil=function(i){return i<0?Math.floor(i):Math.ceil(i)},t.exports=n},function(t,e,r){"use strict";function n(){}o(n,"Integer"),n.MAX_VALUE=2147483647,n.MIN_VALUE=-2147483648,t.exports=n},function(t,e,r){"use strict";var n=function(){function h(f,d){for(var p=0;p"u"?"undefined":n(a);return a==null||s!="object"&&s!="function"},t.exports=i},function(t,e,r){"use strict";function n(m){if(Array.isArray(m)){for(var g=0,y=Array(m.length);g0&&g;){for(w.push(T[0]);w.length>0&&g;){var E=w[0];w.splice(0,1),b.add(E);for(var A=E.getEdges(),x=0;x-1&&T.splice(D,1)}b=new Set,C=new Map}}return m},p.prototype.createDummyNodesForBendpoints=function(m){for(var g=[],y=m.source,v=this.graphManager.calcLowestCommonAncestor(m.source,m.target),x=0;x0){for(var v=this.edgeToDummyNodes.get(y),x=0;x=0&&g.splice(S,1);var _=C.getNeighborsList();_.forEach(function(k){if(y.indexOf(k)<0){var L=v.get(k),R=L-1;R==1&&E.push(k),v.set(k,R)}})}y=y.concat(E),(g.length==1||g.length==2)&&(x=!0,b=g[0])}return b},p.prototype.setGraphManager=function(m){this.graphManager=m},t.exports=p},function(t,e,r){"use strict";function n(){}o(n,"RandomSeed"),n.seed=1,n.x=0,n.nextDouble=function(){return n.x=Math.sin(n.seed++)*1e4,n.x-Math.floor(n.x)},t.exports=n},function(t,e,r){"use strict";var n=r(4);function i(a,s){this.lworldOrgX=0,this.lworldOrgY=0,this.ldeviceOrgX=0,this.ldeviceOrgY=0,this.lworldExtX=1,this.lworldExtY=1,this.ldeviceExtX=1,this.ldeviceExtY=1}o(i,"Transform"),i.prototype.getWorldOrgX=function(){return this.lworldOrgX},i.prototype.setWorldOrgX=function(a){this.lworldOrgX=a},i.prototype.getWorldOrgY=function(){return this.lworldOrgY},i.prototype.setWorldOrgY=function(a){this.lworldOrgY=a},i.prototype.getWorldExtX=function(){return this.lworldExtX},i.prototype.setWorldExtX=function(a){this.lworldExtX=a},i.prototype.getWorldExtY=function(){return this.lworldExtY},i.prototype.setWorldExtY=function(a){this.lworldExtY=a},i.prototype.getDeviceOrgX=function(){return this.ldeviceOrgX},i.prototype.setDeviceOrgX=function(a){this.ldeviceOrgX=a},i.prototype.getDeviceOrgY=function(){return this.ldeviceOrgY},i.prototype.setDeviceOrgY=function(a){this.ldeviceOrgY=a},i.prototype.getDeviceExtX=function(){return this.ldeviceExtX},i.prototype.setDeviceExtX=function(a){this.ldeviceExtX=a},i.prototype.getDeviceExtY=function(){return this.ldeviceExtY},i.prototype.setDeviceExtY=function(a){this.ldeviceExtY=a},i.prototype.transformX=function(a){var s=0,l=this.lworldExtX;return l!=0&&(s=this.ldeviceOrgX+(a-this.lworldOrgX)*this.ldeviceExtX/l),s},i.prototype.transformY=function(a){var s=0,l=this.lworldExtY;return l!=0&&(s=this.ldeviceOrgY+(a-this.lworldOrgY)*this.ldeviceExtY/l),s},i.prototype.inverseTransformX=function(a){var s=0,l=this.ldeviceExtX;return l!=0&&(s=this.lworldOrgX+(a-this.ldeviceOrgX)*this.lworldExtX/l),s},i.prototype.inverseTransformY=function(a){var s=0,l=this.ldeviceExtY;return l!=0&&(s=this.lworldOrgY+(a-this.ldeviceOrgY)*this.lworldExtY/l),s},i.prototype.inverseTransformPoint=function(a){var s=new n(this.inverseTransformX(a.x),this.inverseTransformY(a.y));return s},t.exports=i},function(t,e,r){"use strict";function n(d){if(Array.isArray(d)){for(var p=0,m=Array(d.length);pa.ADAPTATION_LOWER_NODE_LIMIT&&(this.coolingFactor=Math.max(this.coolingFactor*a.COOLING_ADAPTATION_FACTOR,this.coolingFactor-(d-a.ADAPTATION_LOWER_NODE_LIMIT)/(a.ADAPTATION_UPPER_NODE_LIMIT-a.ADAPTATION_LOWER_NODE_LIMIT)*this.coolingFactor*(1-a.COOLING_ADAPTATION_FACTOR))),this.maxNodeDisplacement=a.MAX_NODE_DISPLACEMENT_INCREMENTAL):(d>a.ADAPTATION_LOWER_NODE_LIMIT?this.coolingFactor=Math.max(a.COOLING_ADAPTATION_FACTOR,1-(d-a.ADAPTATION_LOWER_NODE_LIMIT)/(a.ADAPTATION_UPPER_NODE_LIMIT-a.ADAPTATION_LOWER_NODE_LIMIT)*(1-a.COOLING_ADAPTATION_FACTOR)):this.coolingFactor=1,this.initialCoolingFactor=this.coolingFactor,this.maxNodeDisplacement=a.MAX_NODE_DISPLACEMENT),this.maxIterations=Math.max(this.getAllNodes().length*5,this.maxIterations),this.totalDisplacementThreshold=this.displacementThresholdPerNode*this.getAllNodes().length,this.repulsionRange=this.calcRepulsionRange()},h.prototype.calcSpringForces=function(){for(var d=this.getAllEdges(),p,m=0;m0&&arguments[0]!==void 0?arguments[0]:!0,p=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,m,g,y,v,x=this.getAllNodes(),b;if(this.useFRGridVariant)for(this.totalIterations%a.GRID_CALCULATION_CHECK_PERIOD==1&&d&&this.updateGrid(),b=new Set,m=0;mw||b>w)&&(d.gravitationForceX=-this.gravityConstant*y,d.gravitationForceY=-this.gravityConstant*v)):(w=p.getEstimatedSize()*this.compoundGravityRangeFactor,(x>w||b>w)&&(d.gravitationForceX=-this.gravityConstant*y*this.compoundGravityConstant,d.gravitationForceY=-this.gravityConstant*v*this.compoundGravityConstant))},h.prototype.isConverged=function(){var d,p=!1;return this.totalIterations>this.maxIterations/3&&(p=Math.abs(this.totalDisplacement-this.oldTotalDisplacement)<2),d=this.totalDisplacement=x.length||w>=x[0].length)){for(var C=0;Ch},"_defaultCompareFunction")}]),l}();t.exports=s},function(t,e,r){"use strict";var n=function(){function s(l,u){for(var h=0;h2&&arguments[2]!==void 0?arguments[2]:1,f=arguments.length>3&&arguments[3]!==void 0?arguments[3]:-1,d=arguments.length>4&&arguments[4]!==void 0?arguments[4]:-1;i(this,s),this.sequence1=l,this.sequence2=u,this.match_score=h,this.mismatch_penalty=f,this.gap_penalty=d,this.iMax=l.length+1,this.jMax=u.length+1,this.grid=new Array(this.iMax);for(var p=0;p=0;l--){var u=this.listeners[l];u.event===a&&u.callback===s&&this.listeners.splice(l,1)}},i.emit=function(a,s){for(var l=0;l{"use strict";o(function(e,r){typeof h4=="object"&&typeof CB=="object"?CB.exports=r(SB()):typeof define=="function"&&define.amd?define(["layout-base"],r):typeof h4=="object"?h4.coseBase=r(SB()):e.coseBase=r(e.layoutBase)},"webpackUniversalModuleDefinition")(h4,function(t){return function(e){var r={};function n(i){if(r[i])return r[i].exports;var a=r[i]={i,l:!1,exports:{}};return e[i].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return o(n,"__webpack_require__"),n.m=e,n.c=r,n.i=function(i){return i},n.d=function(i,a,s){n.o(i,a)||Object.defineProperty(i,a,{configurable:!1,enumerable:!0,get:s})},n.n=function(i){var a=i&&i.__esModule?o(function(){return i.default},"getDefault"):o(function(){return i},"getModuleExports");return n.d(a,"a",a),a},n.o=function(i,a){return Object.prototype.hasOwnProperty.call(i,a)},n.p="",n(n.s=7)}([function(e,r){e.exports=t},function(e,r,n){"use strict";var i=n(0).FDLayoutConstants;function a(){}o(a,"CoSEConstants");for(var s in i)a[s]=i[s];a.DEFAULT_USE_MULTI_LEVEL_SCALING=!1,a.DEFAULT_RADIAL_SEPARATION=i.DEFAULT_EDGE_LENGTH,a.DEFAULT_COMPONENT_SEPERATION=60,a.TILE=!0,a.TILING_PADDING_VERTICAL=10,a.TILING_PADDING_HORIZONTAL=10,a.TREE_REDUCTION_ON_INCREMENTAL=!1,e.exports=a},function(e,r,n){"use strict";var i=n(0).FDLayoutEdge;function a(l,u,h){i.call(this,l,u,h)}o(a,"CoSEEdge"),a.prototype=Object.create(i.prototype);for(var s in i)a[s]=i[s];e.exports=a},function(e,r,n){"use strict";var i=n(0).LGraph;function a(l,u,h){i.call(this,l,u,h)}o(a,"CoSEGraph"),a.prototype=Object.create(i.prototype);for(var s in i)a[s]=i[s];e.exports=a},function(e,r,n){"use strict";var i=n(0).LGraphManager;function a(l){i.call(this,l)}o(a,"CoSEGraphManager"),a.prototype=Object.create(i.prototype);for(var s in i)a[s]=i[s];e.exports=a},function(e,r,n){"use strict";var i=n(0).FDLayoutNode,a=n(0).IMath;function s(u,h,f,d){i.call(this,u,h,f,d)}o(s,"CoSENode"),s.prototype=Object.create(i.prototype);for(var l in i)s[l]=i[l];s.prototype.move=function(){var u=this.graphManager.getLayout();this.displacementX=u.coolingFactor*(this.springForceX+this.repulsionForceX+this.gravitationForceX)/this.noOfChildren,this.displacementY=u.coolingFactor*(this.springForceY+this.repulsionForceY+this.gravitationForceY)/this.noOfChildren,Math.abs(this.displacementX)>u.coolingFactor*u.maxNodeDisplacement&&(this.displacementX=u.coolingFactor*u.maxNodeDisplacement*a.sign(this.displacementX)),Math.abs(this.displacementY)>u.coolingFactor*u.maxNodeDisplacement&&(this.displacementY=u.coolingFactor*u.maxNodeDisplacement*a.sign(this.displacementY)),this.child==null?this.moveBy(this.displacementX,this.displacementY):this.child.getNodes().length==0?this.moveBy(this.displacementX,this.displacementY):this.propogateDisplacementToChildren(this.displacementX,this.displacementY),u.totalDisplacement+=Math.abs(this.displacementX)+Math.abs(this.displacementY),this.springForceX=0,this.springForceY=0,this.repulsionForceX=0,this.repulsionForceY=0,this.gravitationForceX=0,this.gravitationForceY=0,this.displacementX=0,this.displacementY=0},s.prototype.propogateDisplacementToChildren=function(u,h){for(var f=this.getChild().getNodes(),d,p=0;p0)this.positionNodesRadially(T);else{this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var E=new Set(this.getAllNodes()),A=this.nodesWithGravity.filter(function(S){return E.has(S)});this.graphManager.setAllNodesToApplyGravitation(A),this.positionNodesRandomly()}}return this.initSpringEmbedder(),this.runSpringEmbedder(),!0},w.prototype.tick=function(){if(this.totalIterations++,this.totalIterations===this.maxIterations&&!this.isTreeGrowing&&!this.isGrowthFinished)if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;if(this.totalIterations%f.CONVERGENCE_CHECK_PERIOD==0&&!this.isTreeGrowing&&!this.isGrowthFinished){if(this.isConverged())if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;this.coolingCycle++,this.layoutQuality==0?this.coolingAdjuster=this.coolingCycle:this.layoutQuality==1&&(this.coolingAdjuster=this.coolingCycle/3),this.coolingFactor=Math.max(this.initialCoolingFactor-Math.pow(this.coolingCycle,Math.log(100*(this.initialCoolingFactor-this.finalTemperature))/Math.log(this.maxCoolingCycle))/100*this.coolingAdjuster,this.finalTemperature),this.animationPeriod=Math.ceil(this.initialAnimationPeriod*Math.sqrt(this.coolingFactor))}if(this.isTreeGrowing){if(this.growTreeIterations%10==0)if(this.prunedNodesAll.length>0){this.graphManager.updateBounds(),this.updateGrid(),this.growTree(this.prunedNodesAll),this.graphManager.resetAllNodesToApplyGravitation();var T=new Set(this.getAllNodes()),E=this.nodesWithGravity.filter(function(_){return T.has(_)});this.graphManager.setAllNodesToApplyGravitation(E),this.graphManager.updateBounds(),this.updateGrid(),this.coolingFactor=f.DEFAULT_COOLING_FACTOR_INCREMENTAL}else this.isTreeGrowing=!1,this.isGrowthFinished=!0;this.growTreeIterations++}if(this.isGrowthFinished){if(this.isConverged())return!0;this.afterGrowthIterations%10==0&&(this.graphManager.updateBounds(),this.updateGrid()),this.coolingFactor=f.DEFAULT_COOLING_FACTOR_INCREMENTAL*((100-this.afterGrowthIterations)/100),this.afterGrowthIterations++}var A=!this.isTreeGrowing&&!this.isGrowthFinished,S=this.growTreeIterations%10==1&&this.isTreeGrowing||this.afterGrowthIterations%10==1&&this.isGrowthFinished;return this.totalDisplacement=0,this.graphManager.updateBounds(),this.calcSpringForces(),this.calcRepulsionForces(A,S),this.calcGravitationalForces(),this.moveNodes(),this.animate(),!1},w.prototype.getPositionsData=function(){for(var T=this.graphManager.getAllNodes(),E={},A=0;A1){var k;for(k=0;kS&&(S=Math.floor(D.y)),I=Math.floor(D.x+h.DEFAULT_COMPONENT_SEPERATION)}this.transform(new m(d.WORLD_CENTER_X-D.x/2,d.WORLD_CENTER_Y-D.y/2))},w.radialLayout=function(T,E,A){var S=Math.max(this.maxDiagonalInTree(T),h.DEFAULT_RADIAL_SEPARATION);w.branchRadialLayout(E,null,0,359,0,S);var _=x.calculateBounds(T),I=new b;I.setDeviceOrgX(_.getMinX()),I.setDeviceOrgY(_.getMinY()),I.setWorldOrgX(A.x),I.setWorldOrgY(A.y);for(var D=0;D1;){var Q=H[0];H.splice(0,1);var j=B.indexOf(Q);j>=0&&B.splice(j,1),z--,F--}E!=null?$=(B.indexOf(H[0])+1)%z:$=0;for(var ie=Math.abs(S-A)/F,ne=$;P!=F;ne=++ne%z){var le=B[ne].getOtherEnd(T);if(le!=E){var he=(A+P*ie)%360,K=(he+ie)%360;w.branchRadialLayout(le,T,he,K,_+I,I),P++}}},w.maxDiagonalInTree=function(T){for(var E=y.MIN_VALUE,A=0;AE&&(E=_)}return E},w.prototype.calcRepulsionRange=function(){return 2*(this.level+1)*this.idealEdgeLength},w.prototype.groupZeroDegreeMembers=function(){var T=this,E={};this.memberGroups={},this.idToDummyNode={};for(var A=[],S=this.graphManager.getAllNodes(),_=0;_"u"&&(E[k]=[]),E[k]=E[k].concat(I)}Object.keys(E).forEach(function(L){if(E[L].length>1){var R="DummyCompound_"+L;T.memberGroups[R]=E[L];var O=E[L][0].getParent(),M=new l(T.graphManager);M.id=R,M.paddingLeft=O.paddingLeft||0,M.paddingRight=O.paddingRight||0,M.paddingBottom=O.paddingBottom||0,M.paddingTop=O.paddingTop||0,T.idToDummyNode[R]=M;var B=T.getGraphManager().add(T.newGraph(),M),F=O.getChild();F.add(M);for(var P=0;P=0;T--){var E=this.compoundOrder[T],A=E.id,S=E.paddingLeft,_=E.paddingTop;this.adjustLocations(this.tiledMemberPack[A],E.rect.x,E.rect.y,S,_)}},w.prototype.repopulateZeroDegreeMembers=function(){var T=this,E=this.tiledZeroDegreePack;Object.keys(E).forEach(function(A){var S=T.idToDummyNode[A],_=S.paddingLeft,I=S.paddingTop;T.adjustLocations(E[A],S.rect.x,S.rect.y,_,I)})},w.prototype.getToBeTiled=function(T){var E=T.id;if(this.toBeTiled[E]!=null)return this.toBeTiled[E];var A=T.getChild();if(A==null)return this.toBeTiled[E]=!1,!1;for(var S=A.getNodes(),_=0;_0)return this.toBeTiled[E]=!1,!1;if(I.getChild()==null){this.toBeTiled[I.id]=!1;continue}if(!this.getToBeTiled(I))return this.toBeTiled[E]=!1,!1}return this.toBeTiled[E]=!0,!0},w.prototype.getNodeDegree=function(T){for(var E=T.id,A=T.getEdges(),S=0,_=0;_L&&(L=O.rect.height)}A+=L+T.verticalPadding}},w.prototype.tileCompoundMembers=function(T,E){var A=this;this.tiledMemberPack=[],Object.keys(T).forEach(function(S){var _=E[S];A.tiledMemberPack[S]=A.tileNodes(T[S],_.paddingLeft+_.paddingRight),_.rect.width=A.tiledMemberPack[S].width,_.rect.height=A.tiledMemberPack[S].height})},w.prototype.tileNodes=function(T,E){var A=h.TILING_PADDING_VERTICAL,S=h.TILING_PADDING_HORIZONTAL,_={rows:[],rowWidth:[],rowHeight:[],width:0,height:E,verticalPadding:A,horizontalPadding:S};T.sort(function(k,L){return k.rect.width*k.rect.height>L.rect.width*L.rect.height?-1:k.rect.width*k.rect.height0&&(D+=T.horizontalPadding),T.rowWidth[A]=D,T.width0&&(k+=T.verticalPadding);var L=0;k>T.rowHeight[A]&&(L=T.rowHeight[A],T.rowHeight[A]=k,L=T.rowHeight[A]-L),T.height+=L,T.rows[A].push(E)},w.prototype.getShortestRowIndex=function(T){for(var E=-1,A=Number.MAX_VALUE,S=0;SA&&(E=S,A=T.rowWidth[S]);return E},w.prototype.canAddHorizontal=function(T,E,A){var S=this.getShortestRowIndex(T);if(S<0)return!0;var _=T.rowWidth[S];if(_+T.horizontalPadding+E<=T.width)return!0;var I=0;T.rowHeight[S]0&&(I=A+T.verticalPadding-T.rowHeight[S]);var D;T.width-_>=E+T.horizontalPadding?D=(T.height+I)/(_+E+T.horizontalPadding):D=(T.height+I)/T.width,I=A+T.verticalPadding;var k;return T.widthI&&E!=A){S.splice(-1,1),T.rows[A].push(_),T.rowWidth[E]=T.rowWidth[E]-I,T.rowWidth[A]=T.rowWidth[A]+I,T.width=T.rowWidth[instance.getLongestRowIndex(T)];for(var D=Number.MIN_VALUE,k=0;kD&&(D=S[k].height);E>0&&(D+=T.verticalPadding);var L=T.rowHeight[E]+T.rowHeight[A];T.rowHeight[E]=D,T.rowHeight[A]<_.height+T.verticalPadding&&(T.rowHeight[A]=_.height+T.verticalPadding);var R=T.rowHeight[E]+T.rowHeight[A];T.height+=R-L,this.shiftToLastRow(T)}},w.prototype.tilingPreLayout=function(){h.TILE&&(this.groupZeroDegreeMembers(),this.clearCompounds(),this.clearZeroDegreeMembers())},w.prototype.tilingPostLayout=function(){h.TILE&&(this.repopulateZeroDegreeMembers(),this.repopulateCompounds())},w.prototype.reduceTrees=function(){for(var T=[],E=!0,A;E;){var S=this.graphManager.getAllNodes(),_=[];E=!1;for(var I=0;I0)for(var F=_;F<=I;F++)B[0]+=this.grid[F][D-1].length+this.grid[F][D].length-1;if(I0)for(var F=D;F<=k;F++)B[3]+=this.grid[_-1][F].length+this.grid[_][F].length-1;for(var P=y.MAX_VALUE,z,$,H=0;H{"use strict";o(function(e,r){typeof f4=="object"&&typeof _B=="object"?_B.exports=r(AB()):typeof define=="function"&&define.amd?define(["cose-base"],r):typeof f4=="object"?f4.cytoscapeCoseBilkent=r(AB()):e.cytoscapeCoseBilkent=r(e.coseBase)},"webpackUniversalModuleDefinition")(f4,function(t){return function(e){var r={};function n(i){if(r[i])return r[i].exports;var a=r[i]={i,l:!1,exports:{}};return e[i].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return o(n,"__webpack_require__"),n.m=e,n.c=r,n.i=function(i){return i},n.d=function(i,a,s){n.o(i,a)||Object.defineProperty(i,a,{configurable:!1,enumerable:!0,get:s})},n.n=function(i){var a=i&&i.__esModule?o(function(){return i.default},"getDefault"):o(function(){return i},"getModuleExports");return n.d(a,"a",a),a},n.o=function(i,a){return Object.prototype.hasOwnProperty.call(i,a)},n.p="",n(n.s=1)}([function(e,r){e.exports=t},function(e,r,n){"use strict";var i=n(0).layoutBase.LayoutConstants,a=n(0).layoutBase.FDLayoutConstants,s=n(0).CoSEConstants,l=n(0).CoSELayout,u=n(0).CoSENode,h=n(0).layoutBase.PointD,f=n(0).layoutBase.DimensionD,d={ready:o(function(){},"ready"),stop:o(function(){},"stop"),quality:"default",nodeDimensionsIncludeLabels:!1,refresh:30,fit:!0,padding:10,randomize:!0,nodeRepulsion:4500,idealEdgeLength:50,edgeElasticity:.45,nestingFactor:.1,gravity:.25,numIter:2500,tile:!0,animate:"end",animationDuration:500,tilingPaddingVertical:10,tilingPaddingHorizontal:10,gravityRangeCompound:1.5,gravityCompound:1,gravityRange:3.8,initialEnergyOnIncremental:.5};function p(v,x){var b={};for(var w in v)b[w]=v[w];for(var w in x)b[w]=x[w];return b}o(p,"extend");function m(v){this.options=p(d,v),g(this.options)}o(m,"_CoSELayout");var g=o(function(x){x.nodeRepulsion!=null&&(s.DEFAULT_REPULSION_STRENGTH=a.DEFAULT_REPULSION_STRENGTH=x.nodeRepulsion),x.idealEdgeLength!=null&&(s.DEFAULT_EDGE_LENGTH=a.DEFAULT_EDGE_LENGTH=x.idealEdgeLength),x.edgeElasticity!=null&&(s.DEFAULT_SPRING_STRENGTH=a.DEFAULT_SPRING_STRENGTH=x.edgeElasticity),x.nestingFactor!=null&&(s.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=a.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=x.nestingFactor),x.gravity!=null&&(s.DEFAULT_GRAVITY_STRENGTH=a.DEFAULT_GRAVITY_STRENGTH=x.gravity),x.numIter!=null&&(s.MAX_ITERATIONS=a.MAX_ITERATIONS=x.numIter),x.gravityRange!=null&&(s.DEFAULT_GRAVITY_RANGE_FACTOR=a.DEFAULT_GRAVITY_RANGE_FACTOR=x.gravityRange),x.gravityCompound!=null&&(s.DEFAULT_COMPOUND_GRAVITY_STRENGTH=a.DEFAULT_COMPOUND_GRAVITY_STRENGTH=x.gravityCompound),x.gravityRangeCompound!=null&&(s.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=a.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=x.gravityRangeCompound),x.initialEnergyOnIncremental!=null&&(s.DEFAULT_COOLING_FACTOR_INCREMENTAL=a.DEFAULT_COOLING_FACTOR_INCREMENTAL=x.initialEnergyOnIncremental),x.quality=="draft"?i.QUALITY=0:x.quality=="proof"?i.QUALITY=2:i.QUALITY=1,s.NODE_DIMENSIONS_INCLUDE_LABELS=a.NODE_DIMENSIONS_INCLUDE_LABELS=i.NODE_DIMENSIONS_INCLUDE_LABELS=x.nodeDimensionsIncludeLabels,s.DEFAULT_INCREMENTAL=a.DEFAULT_INCREMENTAL=i.DEFAULT_INCREMENTAL=!x.randomize,s.ANIMATE=a.ANIMATE=i.ANIMATE=x.animate,s.TILE=x.tile,s.TILING_PADDING_VERTICAL=typeof x.tilingPaddingVertical=="function"?x.tilingPaddingVertical.call():x.tilingPaddingVertical,s.TILING_PADDING_HORIZONTAL=typeof x.tilingPaddingHorizontal=="function"?x.tilingPaddingHorizontal.call():x.tilingPaddingHorizontal},"getUserOptions");m.prototype.run=function(){var v,x,b=this.options,w=this.idToLNode={},C=this.layout=new l,T=this;T.stopped=!1,this.cy=this.options.cy,this.cy.trigger({type:"layoutstart",layout:this});var E=C.newGraphManager();this.gm=E;var A=this.options.eles.nodes(),S=this.options.eles.edges();this.root=E.addRoot(),this.processChildrenList(this.root,this.getTopMostNodes(A),C);for(var _=0;_0){var k;k=b.getGraphManager().add(b.newGraph(),A),this.processChildrenList(k,E,b)}}},m.prototype.stop=function(){return this.stopped=!0,this};var y=o(function(x){x("layout","cose-bilkent",m)},"register");typeof cytoscape<"u"&&y(cytoscape),e.exports=y}])})});function JZe(t,e,r,n,i){return t.insert("polygon",":first-child").attr("points",n.map(function(a){return a.x+","+a.y}).join(" ")).attr("transform","translate("+(i.width-e)/2+", "+r+")")}var YZe,XZe,jZe,KZe,QZe,ZZe,eJe,tJe,Vge,Uge,Hge=N(()=>{"use strict";to();ir();YZe=12,XZe=o(function(t,e,r,n){e.append("path").attr("id","node-"+r.id).attr("class","node-bkg node-"+t.type2Str(r.type)).attr("d",`M0 ${r.height-5} v${-r.height+2*5} q0,-5 5,-5 h${r.width-2*5} q5,0 5,5 v${r.height-5} H0 Z`),e.append("line").attr("class","node-line-"+n).attr("x1",0).attr("y1",r.height).attr("x2",r.width).attr("y2",r.height)},"defaultBkg"),jZe=o(function(t,e,r){e.append("rect").attr("id","node-"+r.id).attr("class","node-bkg node-"+t.type2Str(r.type)).attr("height",r.height).attr("width",r.width)},"rectBkg"),KZe=o(function(t,e,r){let n=r.width,i=r.height,a=.15*n,s=.25*n,l=.35*n,u=.2*n;e.append("path").attr("id","node-"+r.id).attr("class","node-bkg node-"+t.type2Str(r.type)).attr("d",`M0 0 a${a},${a} 0 0,1 ${n*.25},${-1*n*.1} + a${l},${l} 1 0,1 ${n*.4},${-1*n*.1} + a${s},${s} 1 0,1 ${n*.35},${1*n*.2} + + a${a},${a} 1 0,1 ${n*.15},${1*i*.35} + a${u},${u} 1 0,1 ${-1*n*.15},${1*i*.65} + + a${s},${a} 1 0,1 ${-1*n*.25},${n*.15} + a${l},${l} 1 0,1 ${-1*n*.5},0 + a${a},${a} 1 0,1 ${-1*n*.25},${-1*n*.15} + + a${a},${a} 1 0,1 ${-1*n*.1},${-1*i*.35} + a${u},${u} 1 0,1 ${n*.1},${-1*i*.65} + + H0 V0 Z`)},"cloudBkg"),QZe=o(function(t,e,r){let n=r.width,i=r.height,a=.15*n;e.append("path").attr("id","node-"+r.id).attr("class","node-bkg node-"+t.type2Str(r.type)).attr("d",`M0 0 a${a},${a} 1 0,0 ${n*.25},${-1*i*.1} + a${a},${a} 1 0,0 ${n*.25},0 + a${a},${a} 1 0,0 ${n*.25},0 + a${a},${a} 1 0,0 ${n*.25},${1*i*.1} + + a${a},${a} 1 0,0 ${n*.15},${1*i*.33} + a${a*.8},${a*.8} 1 0,0 0,${1*i*.34} + a${a},${a} 1 0,0 ${-1*n*.15},${1*i*.33} + + a${a},${a} 1 0,0 ${-1*n*.25},${i*.15} + a${a},${a} 1 0,0 ${-1*n*.25},0 + a${a},${a} 1 0,0 ${-1*n*.25},0 + a${a},${a} 1 0,0 ${-1*n*.25},${-1*i*.15} + + a${a},${a} 1 0,0 ${-1*n*.1},${-1*i*.33} + a${a*.8},${a*.8} 1 0,0 0,${-1*i*.34} + a${a},${a} 1 0,0 ${n*.1},${-1*i*.33} + + H0 V0 Z`)},"bangBkg"),ZZe=o(function(t,e,r){e.append("circle").attr("id","node-"+r.id).attr("class","node-bkg node-"+t.type2Str(r.type)).attr("r",r.width/2)},"circleBkg");o(JZe,"insertPolygonShape");eJe=o(function(t,e,r){let n=r.height,a=n/4,s=r.width-r.padding+2*a,l=[{x:a,y:0},{x:s-a,y:0},{x:s,y:-n/2},{x:s-a,y:-n},{x:a,y:-n},{x:0,y:-n/2}];JZe(e,s,n,l,r)},"hexagonBkg"),tJe=o(function(t,e,r){e.append("rect").attr("id","node-"+r.id).attr("class","node-bkg node-"+t.type2Str(r.type)).attr("height",r.height).attr("rx",r.padding).attr("ry",r.padding).attr("width",r.width)},"roundedRectBkg"),Vge=o(async function(t,e,r,n,i){let a=i.htmlLabels,s=n%(YZe-1),l=e.append("g");r.section=s;let u="section-"+s;s<0&&(u+=" section-root"),l.attr("class",(r.class?r.class+" ":"")+"mindmap-node "+u);let h=l.append("g"),f=l.append("g"),d=r.descr.replace(/()/g,` +`);await Hn(f,d,{useHtmlLabels:a,width:r.width,classes:"mindmap-node-label"},i),a||f.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle");let p=f.node().getBBox(),[m]=Bo(i.fontSize);if(r.height=p.height+m*1.1*.5+r.padding,r.width=p.width+2*r.padding,r.icon)if(r.type===t.nodeType.CIRCLE)r.height+=50,r.width+=50,l.append("foreignObject").attr("height","50px").attr("width",r.width).attr("style","text-align: center;").append("div").attr("class","icon-container").append("i").attr("class","node-icon-"+s+" "+r.icon),f.attr("transform","translate("+r.width/2+", "+(r.height/2-1.5*r.padding)+")");else{r.width+=50;let g=r.height;r.height=Math.max(g,60);let y=Math.abs(r.height-g);l.append("foreignObject").attr("width","60px").attr("height",r.height).attr("style","text-align: center;margin-top:"+y/2+"px;").append("div").attr("class","icon-container").append("i").attr("class","node-icon-"+s+" "+r.icon),f.attr("transform","translate("+(25+r.width/2)+", "+(y/2+r.padding/2)+")")}else if(a){let g=(r.width-p.width)/2,y=(r.height-p.height)/2;f.attr("transform","translate("+g+", "+y+")")}else{let g=r.width/2,y=r.padding/2;f.attr("transform","translate("+g+", "+y+")")}switch(r.type){case t.nodeType.DEFAULT:XZe(t,h,r,s);break;case t.nodeType.ROUNDED_RECT:tJe(t,h,r,s);break;case t.nodeType.RECT:jZe(t,h,r,s);break;case t.nodeType.CIRCLE:h.attr("transform","translate("+r.width/2+", "+ +r.height/2+")"),ZZe(t,h,r,s);break;case t.nodeType.CLOUD:KZe(t,h,r,s);break;case t.nodeType.BANG:QZe(t,h,r,s);break;case t.nodeType.HEXAGON:eJe(t,h,r,s);break}return t.setElementForId(r.id,l),r.height},"drawNode"),Uge=o(function(t,e){let r=t.getElementById(e.id),n=e.x||0,i=e.y||0;r.attr("transform","translate("+n+","+i+")")},"positionNode")});async function qge(t,e,r,n,i){await Vge(t,e,r,n,i),r.children&&await Promise.all(r.children.map((a,s)=>qge(t,e,a,n<0?s:n,i)))}function rJe(t,e){e.edges().map((r,n)=>{let i=r.data();if(r[0]._private.bodyBounds){let a=r[0]._private.rscratch;Y.trace("Edge: ",n,i),t.insert("path").attr("d",`M ${a.startX},${a.startY} L ${a.midX},${a.midY} L${a.endX},${a.endY} `).attr("class","edge section-edge-"+i.section+" edge-depth-"+i.depth)}})}function Yge(t,e,r,n){e.add({group:"nodes",data:{id:t.id.toString(),labelText:t.descr,height:t.height,width:t.width,level:n,nodeId:t.id,padding:t.padding,type:t.type},position:{x:t.x,y:t.y}}),t.children&&t.children.forEach(i=>{Yge(i,e,r,n+1),e.add({group:"edges",data:{id:`${t.id}_${i.id}`,source:t.id,target:i.id,depth:n,section:i.section}})})}function nJe(t,e){return new Promise(r=>{let n=Ge("body").append("div").attr("id","cy").attr("style","display:none"),i=rl({container:document.getElementById("cy"),style:[{selector:"edge",style:{"curve-style":"bezier"}}]});n.remove(),Yge(t,i,e,0),i.nodes().forEach(function(a){a.layoutDimensions=()=>{let s=a.data();return{w:s.width,h:s.height}}}),i.layout({name:"cose-bilkent",quality:"proof",styleEnabled:!1,animate:!1}).run(),i.ready(a=>{Y.info("Ready",a),r(i)})})}function iJe(t,e){e.nodes().map((r,n)=>{let i=r.data();i.x=r.position().x,i.y=r.position().y,Uge(t,i);let a=t.getElementById(i.nodeId);Y.info("Id:",n,"Position: (",r.position().x,", ",r.position().y,")",i),a.attr("transform",`translate(${r.position().x-i.width/2}, ${r.position().y-i.height/2})`),a.attr("attr",`apa-${n})`)})}var Wge,aJe,Xge,jge=N(()=>{"use strict";kB();Wge=Sa(Gge(),1);dr();zt();vt();Vc();Ei();Hge();Ya();rl.use(Wge.default);o(qge,"drawNodes");o(rJe,"drawEdges");o(Yge,"addNodes");o(nJe,"layoutMindmap");o(iJe,"positionNodes");aJe=o(async(t,e,r,n)=>{Y.debug(`Rendering mindmap diagram +`+t);let i=n.db,a=i.getMindmap();if(!a)return;let s=me();s.htmlLabels=!1;let l=sa(e),u=l.append("g");u.attr("class","mindmap-edges");let h=l.append("g");h.attr("class","mindmap-nodes"),await qge(i,h,a,-1,s);let f=await nJe(a,s);rJe(u,f),iJe(i,f),Ao(void 0,l,s.mindmap?.padding??or.mindmap.padding,s.mindmap?.useMaxWidth??or.mindmap.useMaxWidth)},"draw"),Xge={draw:aJe}});var sJe,oJe,Kge,Qge=N(()=>{"use strict";Ys();sJe=o(t=>{let e="";for(let r=0;r` + .edge { + stroke-width: 3; + } + ${sJe(t)} + .section-root rect, .section-root path, .section-root circle, .section-root polygon { + fill: ${t.git0}; + } + .section-root text { + fill: ${t.gitBranchLabel0}; + } + .icon-container { + height:100%; + display: flex; + justify-content: center; + align-items: center; + } + .edge { + fill: none; + } + .mindmap-node-label { + dy: 1em; + alignment-baseline: middle; + text-anchor: middle; + dominant-baseline: middle; + text-align: center; + } +`,"getStyles"),Kge=oJe});var Zge={};hr(Zge,{diagram:()=>lJe});var lJe,Jge=N(()=>{"use strict";Spe();_pe();jge();Qge();lJe={db:Ape,renderer:Xge,parser:Epe,styles:Kge}});var DB,r1e,n1e=N(()=>{"use strict";DB=function(){var t=o(function(A,S,_,I){for(_=_||{},I=A.length;I--;_[A[I]]=S);return _},"o"),e=[1,4],r=[1,13],n=[1,12],i=[1,15],a=[1,16],s=[1,20],l=[1,19],u=[6,7,8],h=[1,26],f=[1,24],d=[1,25],p=[6,7,11],m=[1,31],g=[6,7,11,24],y=[1,6,13,16,17,20,23],v=[1,35],x=[1,36],b=[1,6,7,11,13,16,17,20,23],w=[1,38],C={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mindMap:4,spaceLines:5,SPACELINE:6,NL:7,KANBAN:8,document:9,stop:10,EOF:11,statement:12,SPACELIST:13,node:14,shapeData:15,ICON:16,CLASS:17,nodeWithId:18,nodeWithoutId:19,NODE_DSTART:20,NODE_DESCR:21,NODE_DEND:22,NODE_ID:23,SHAPE_DATA:24,$accept:0,$end:1},terminals_:{2:"error",6:"SPACELINE",7:"NL",8:"KANBAN",11:"EOF",13:"SPACELIST",16:"ICON",17:"CLASS",20:"NODE_DSTART",21:"NODE_DESCR",22:"NODE_DEND",23:"NODE_ID",24:"SHAPE_DATA"},productions_:[0,[3,1],[3,2],[5,1],[5,2],[5,2],[4,2],[4,3],[10,1],[10,1],[10,1],[10,2],[10,2],[9,3],[9,2],[12,3],[12,2],[12,2],[12,2],[12,1],[12,2],[12,1],[12,1],[12,1],[12,1],[14,1],[14,1],[19,3],[18,1],[18,4],[15,2],[15,1]],performAction:o(function(S,_,I,D,k,L,R){var O=L.length-1;switch(k){case 6:case 7:return D;case 8:D.getLogger().trace("Stop NL ");break;case 9:D.getLogger().trace("Stop EOF ");break;case 11:D.getLogger().trace("Stop NL2 ");break;case 12:D.getLogger().trace("Stop EOF2 ");break;case 15:D.getLogger().info("Node: ",L[O-1].id),D.addNode(L[O-2].length,L[O-1].id,L[O-1].descr,L[O-1].type,L[O]);break;case 16:D.getLogger().info("Node: ",L[O].id),D.addNode(L[O-1].length,L[O].id,L[O].descr,L[O].type);break;case 17:D.getLogger().trace("Icon: ",L[O]),D.decorateNode({icon:L[O]});break;case 18:case 23:D.decorateNode({class:L[O]});break;case 19:D.getLogger().trace("SPACELIST");break;case 20:D.getLogger().trace("Node: ",L[O-1].id),D.addNode(0,L[O-1].id,L[O-1].descr,L[O-1].type,L[O]);break;case 21:D.getLogger().trace("Node: ",L[O].id),D.addNode(0,L[O].id,L[O].descr,L[O].type);break;case 22:D.decorateNode({icon:L[O]});break;case 27:D.getLogger().trace("node found ..",L[O-2]),this.$={id:L[O-1],descr:L[O-1],type:D.getType(L[O-2],L[O])};break;case 28:this.$={id:L[O],descr:L[O],type:0};break;case 29:D.getLogger().trace("node found ..",L[O-3]),this.$={id:L[O-3],descr:L[O-1],type:D.getType(L[O-2],L[O])};break;case 30:this.$=L[O-1]+L[O];break;case 31:this.$=L[O];break}},"anonymous"),table:[{3:1,4:2,5:3,6:[1,5],8:e},{1:[3]},{1:[2,1]},{4:6,6:[1,7],7:[1,8],8:e},{6:r,7:[1,10],9:9,12:11,13:n,14:14,16:i,17:a,18:17,19:18,20:s,23:l},t(u,[2,3]),{1:[2,2]},t(u,[2,4]),t(u,[2,5]),{1:[2,6],6:r,12:21,13:n,14:14,16:i,17:a,18:17,19:18,20:s,23:l},{6:r,9:22,12:11,13:n,14:14,16:i,17:a,18:17,19:18,20:s,23:l},{6:h,7:f,10:23,11:d},t(p,[2,24],{18:17,19:18,14:27,16:[1,28],17:[1,29],20:s,23:l}),t(p,[2,19]),t(p,[2,21],{15:30,24:m}),t(p,[2,22]),t(p,[2,23]),t(g,[2,25]),t(g,[2,26]),t(g,[2,28],{20:[1,32]}),{21:[1,33]},{6:h,7:f,10:34,11:d},{1:[2,7],6:r,12:21,13:n,14:14,16:i,17:a,18:17,19:18,20:s,23:l},t(y,[2,14],{7:v,11:x}),t(b,[2,8]),t(b,[2,9]),t(b,[2,10]),t(p,[2,16],{15:37,24:m}),t(p,[2,17]),t(p,[2,18]),t(p,[2,20],{24:w}),t(g,[2,31]),{21:[1,39]},{22:[1,40]},t(y,[2,13],{7:v,11:x}),t(b,[2,11]),t(b,[2,12]),t(p,[2,15],{24:w}),t(g,[2,30]),{22:[1,41]},t(g,[2,27]),t(g,[2,29])],defaultActions:{2:[2,1],6:[2,2]},parseError:o(function(S,_){if(_.recoverable)this.trace(S);else{var I=new Error(S);throw I.hash=_,I}},"parseError"),parse:o(function(S){var _=this,I=[0],D=[],k=[null],L=[],R=this.table,O="",M=0,B=0,F=0,P=2,z=1,$=L.slice.call(arguments,1),H=Object.create(this.lexer),Q={yy:{}};for(var j in this.yy)Object.prototype.hasOwnProperty.call(this.yy,j)&&(Q.yy[j]=this.yy[j]);H.setInput(S,Q.yy),Q.yy.lexer=H,Q.yy.parser=this,typeof H.yylloc>"u"&&(H.yylloc={});var ie=H.yylloc;L.push(ie);var ne=H.options&&H.options.ranges;typeof Q.yy.parseError=="function"?this.parseError=Q.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function le(ze){I.length=I.length-2*ze,k.length=k.length-ze,L.length=L.length-ze}o(le,"popStack");function he(){var ze;return ze=D.pop()||H.lex()||z,typeof ze!="number"&&(ze instanceof Array&&(D=ze,ze=D.pop()),ze=_.symbols_[ze]||ze),ze}o(he,"lex");for(var K,X,te,J,se,ue,Z={},Se,ce,ae,Oe;;){if(te=I[I.length-1],this.defaultActions[te]?J=this.defaultActions[te]:((K===null||typeof K>"u")&&(K=he()),J=R[te]&&R[te][K]),typeof J>"u"||!J.length||!J[0]){var ge="";Oe=[];for(Se in R[te])this.terminals_[Se]&&Se>P&&Oe.push("'"+this.terminals_[Se]+"'");H.showPosition?ge="Parse error on line "+(M+1)+`: +`+H.showPosition()+` +Expecting `+Oe.join(", ")+", got '"+(this.terminals_[K]||K)+"'":ge="Parse error on line "+(M+1)+": Unexpected "+(K==z?"end of input":"'"+(this.terminals_[K]||K)+"'"),this.parseError(ge,{text:H.match,token:this.terminals_[K]||K,line:H.yylineno,loc:ie,expected:Oe})}if(J[0]instanceof Array&&J.length>1)throw new Error("Parse Error: multiple actions possible at state: "+te+", token: "+K);switch(J[0]){case 1:I.push(K),k.push(H.yytext),L.push(H.yylloc),I.push(J[1]),K=null,X?(K=X,X=null):(B=H.yyleng,O=H.yytext,M=H.yylineno,ie=H.yylloc,F>0&&F--);break;case 2:if(ce=this.productions_[J[1]][1],Z.$=k[k.length-ce],Z._$={first_line:L[L.length-(ce||1)].first_line,last_line:L[L.length-1].last_line,first_column:L[L.length-(ce||1)].first_column,last_column:L[L.length-1].last_column},ne&&(Z._$.range=[L[L.length-(ce||1)].range[0],L[L.length-1].range[1]]),ue=this.performAction.apply(Z,[O,B,M,Q.yy,J[1],k,L].concat($)),typeof ue<"u")return ue;ce&&(I=I.slice(0,-1*ce*2),k=k.slice(0,-1*ce),L=L.slice(0,-1*ce)),I.push(this.productions_[J[1]][0]),k.push(Z.$),L.push(Z._$),ae=R[I[I.length-2]][I[I.length-1]],I.push(ae);break;case 3:return!0}}return!0},"parse")},T=function(){var A={EOF:1,parseError:o(function(_,I){if(this.yy.parser)this.yy.parser.parseError(_,I);else throw new Error(_)},"parseError"),setInput:o(function(S,_){return this.yy=_||this.yy||{},this._input=S,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var S=this._input[0];this.yytext+=S,this.yyleng++,this.offset++,this.match+=S,this.matched+=S;var _=S.match(/(?:\r\n?|\n).*/g);return _?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),S},"input"),unput:o(function(S){var _=S.length,I=S.split(/(?:\r\n?|\n)/g);this._input=S+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-_),this.offset-=_;var D=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),I.length-1&&(this.yylineno-=I.length-1);var k=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:I?(I.length===D.length?this.yylloc.first_column:0)+D[D.length-I.length].length-I[0].length:this.yylloc.first_column-_},this.options.ranges&&(this.yylloc.range=[k[0],k[0]+this.yyleng-_]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(S){this.unput(this.match.slice(S))},"less"),pastInput:o(function(){var S=this.matched.substr(0,this.matched.length-this.match.length);return(S.length>20?"...":"")+S.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var S=this.match;return S.length<20&&(S+=this._input.substr(0,20-S.length)),(S.substr(0,20)+(S.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var S=this.pastInput(),_=new Array(S.length+1).join("-");return S+this.upcomingInput()+` +`+_+"^"},"showPosition"),test_match:o(function(S,_){var I,D,k;if(this.options.backtrack_lexer&&(k={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(k.yylloc.range=this.yylloc.range.slice(0))),D=S[0].match(/(?:\r\n?|\n).*/g),D&&(this.yylineno+=D.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:D?D[D.length-1].length-D[D.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+S[0].length},this.yytext+=S[0],this.match+=S[0],this.matches=S,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(S[0].length),this.matched+=S[0],I=this.performAction.call(this,this.yy,this,_,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),I)return I;if(this._backtrack){for(var L in k)this[L]=k[L];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var S,_,I,D;this._more||(this.yytext="",this.match="");for(var k=this._currentRules(),L=0;L_[0].length)){if(_=I,D=L,this.options.backtrack_lexer){if(S=this.test_match(I,k[L]),S!==!1)return S;if(this._backtrack){_=!1;continue}else return!1}else if(!this.options.flex)break}return _?(S=this.test_match(_,k[D]),S!==!1?S:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var _=this.next();return _||this.lex()},"lex"),begin:o(function(_){this.conditionStack.push(_)},"begin"),popState:o(function(){var _=this.conditionStack.length-1;return _>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(_){return _=this.conditionStack.length-1-Math.abs(_||0),_>=0?this.conditionStack[_]:"INITIAL"},"topState"),pushState:o(function(_){this.begin(_)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(_,I,D,k){var L=k;switch(D){case 0:return this.pushState("shapeData"),I.yytext="",24;break;case 1:return this.pushState("shapeDataStr"),24;break;case 2:return this.popState(),24;break;case 3:let R=/\n\s*/g;return I.yytext=I.yytext.replace(R,"
    "),24;break;case 4:return 24;case 5:this.popState();break;case 6:return _.getLogger().trace("Found comment",I.yytext),6;break;case 7:return 8;case 8:this.begin("CLASS");break;case 9:return this.popState(),17;break;case 10:this.popState();break;case 11:_.getLogger().trace("Begin icon"),this.begin("ICON");break;case 12:return _.getLogger().trace("SPACELINE"),6;break;case 13:return 7;case 14:return 16;case 15:_.getLogger().trace("end icon"),this.popState();break;case 16:return _.getLogger().trace("Exploding node"),this.begin("NODE"),20;break;case 17:return _.getLogger().trace("Cloud"),this.begin("NODE"),20;break;case 18:return _.getLogger().trace("Explosion Bang"),this.begin("NODE"),20;break;case 19:return _.getLogger().trace("Cloud Bang"),this.begin("NODE"),20;break;case 20:return this.begin("NODE"),20;break;case 21:return this.begin("NODE"),20;break;case 22:return this.begin("NODE"),20;break;case 23:return this.begin("NODE"),20;break;case 24:return 13;case 25:return 23;case 26:return 11;case 27:this.begin("NSTR2");break;case 28:return"NODE_DESCR";case 29:this.popState();break;case 30:_.getLogger().trace("Starting NSTR"),this.begin("NSTR");break;case 31:return _.getLogger().trace("description:",I.yytext),"NODE_DESCR";break;case 32:this.popState();break;case 33:return this.popState(),_.getLogger().trace("node end ))"),"NODE_DEND";break;case 34:return this.popState(),_.getLogger().trace("node end )"),"NODE_DEND";break;case 35:return this.popState(),_.getLogger().trace("node end ...",I.yytext),"NODE_DEND";break;case 36:return this.popState(),_.getLogger().trace("node end (("),"NODE_DEND";break;case 37:return this.popState(),_.getLogger().trace("node end (-"),"NODE_DEND";break;case 38:return this.popState(),_.getLogger().trace("node end (-"),"NODE_DEND";break;case 39:return this.popState(),_.getLogger().trace("node end (("),"NODE_DEND";break;case 40:return this.popState(),_.getLogger().trace("node end (("),"NODE_DEND";break;case 41:return _.getLogger().trace("Long description:",I.yytext),21;break;case 42:return _.getLogger().trace("Long description:",I.yytext),21;break}},"anonymous"),rules:[/^(?:@\{)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^\"]+)/i,/^(?:[^}^"]+)/i,/^(?:\})/i,/^(?:\s*%%.*)/i,/^(?:kanban\b)/i,/^(?::::)/i,/^(?:.+)/i,/^(?:\n)/i,/^(?:::icon\()/i,/^(?:[\s]+[\n])/i,/^(?:[\n]+)/i,/^(?:[^\)]+)/i,/^(?:\))/i,/^(?:-\))/i,/^(?:\(-)/i,/^(?:\)\))/i,/^(?:\))/i,/^(?:\(\()/i,/^(?:\{\{)/i,/^(?:\()/i,/^(?:\[)/i,/^(?:[\s]+)/i,/^(?:[^\(\[\n\)\{\}@]+)/i,/^(?:$)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:[^"]+)/i,/^(?:["])/i,/^(?:[\)]\))/i,/^(?:[\)])/i,/^(?:[\]])/i,/^(?:\}\})/i,/^(?:\(-)/i,/^(?:-\))/i,/^(?:\(\()/i,/^(?:\()/i,/^(?:[^\)\]\(\}]+)/i,/^(?:.+(?!\(\())/i],conditions:{shapeDataEndBracket:{rules:[],inclusive:!1},shapeDataStr:{rules:[2,3],inclusive:!1},shapeData:{rules:[1,4,5],inclusive:!1},CLASS:{rules:[9,10],inclusive:!1},ICON:{rules:[14,15],inclusive:!1},NSTR2:{rules:[28,29],inclusive:!1},NSTR:{rules:[31,32],inclusive:!1},NODE:{rules:[27,30,33,34,35,36,37,38,39,40,41,42],inclusive:!1},INITIAL:{rules:[0,6,7,8,11,12,13,16,17,18,19,20,21,22,23,24,25,26],inclusive:!0}}};return A}();C.lexer=T;function E(){this.yy={}}return o(E,"Parser"),E.prototype=C,C.Parser=E,new E}();DB.parser=DB;r1e=DB});var nl,RB,LB,NB,fJe,dJe,i1e,pJe,mJe,Yi,gJe,yJe,vJe,xJe,bJe,wJe,TJe,a1e,s1e=N(()=>{"use strict";zt();gr();vt();Ya();Ew();nl=[],RB=[],LB=0,NB={},fJe=o(()=>{nl=[],RB=[],LB=0,NB={}},"clear"),dJe=o(t=>{if(nl.length===0)return null;let e=nl[0].level,r=null;for(let n=nl.length-1;n>=0;n--)if(nl[n].level===e&&!r&&(r=nl[n]),nl[n].levell.parentId===i.id);for(let l of s){let u={id:l.id,parentId:i.id,label:Tr(l.label??"",n),isGroup:!1,ticket:l?.ticket,priority:l?.priority,assigned:l?.assigned,icon:l?.icon,shape:"kanbanItem",level:l.level,rx:5,ry:5,cssStyles:["text-align: left"]};e.push(u)}}return{nodes:e,edges:t,other:{},config:me()}},"getData"),mJe=o((t,e,r,n,i)=>{let a=me(),s=a.mindmap?.padding??or.mindmap.padding;switch(n){case Yi.ROUNDED_RECT:case Yi.RECT:case Yi.HEXAGON:s*=2}let l={id:Tr(e,a)||"kbn"+LB++,level:t,label:Tr(r,a),width:a.mindmap?.maxNodeWidth??or.mindmap.maxNodeWidth,padding:s,isGroup:!1};if(i!==void 0){let h;i.includes(` +`)?h=i+` +`:h=`{ +`+i+` +}`;let f=cm(h,{schema:lm});if(f.shape&&(f.shape!==f.shape.toLowerCase()||f.shape.includes("_")))throw new Error(`No such shape: ${f.shape}. Shape names should be lowercase.`);f?.shape&&f.shape==="kanbanItem"&&(l.shape=f?.shape),f?.label&&(l.label=f?.label),f?.icon&&(l.icon=f?.icon.toString()),f?.assigned&&(l.assigned=f?.assigned.toString()),f?.ticket&&(l.ticket=f?.ticket.toString()),f?.priority&&(l.priority=f?.priority)}let u=dJe(t);u?l.parentId=u.id||"kbn"+LB++:RB.push(l),nl.push(l)},"addNode"),Yi={DEFAULT:0,NO_BORDER:0,ROUNDED_RECT:1,RECT:2,CIRCLE:3,CLOUD:4,BANG:5,HEXAGON:6},gJe=o((t,e)=>{switch(Y.debug("In get type",t,e),t){case"[":return Yi.RECT;case"(":return e===")"?Yi.ROUNDED_RECT:Yi.CLOUD;case"((":return Yi.CIRCLE;case")":return Yi.CLOUD;case"))":return Yi.BANG;case"{{":return Yi.HEXAGON;default:return Yi.DEFAULT}},"getType"),yJe=o((t,e)=>{NB[t]=e},"setElementForId"),vJe=o(t=>{if(!t)return;let e=me(),r=nl[nl.length-1];t.icon&&(r.icon=Tr(t.icon,e)),t.class&&(r.cssClasses=Tr(t.class,e))},"decorateNode"),xJe=o(t=>{switch(t){case Yi.DEFAULT:return"no-border";case Yi.RECT:return"rect";case Yi.ROUNDED_RECT:return"rounded-rect";case Yi.CIRCLE:return"circle";case Yi.CLOUD:return"cloud";case Yi.BANG:return"bang";case Yi.HEXAGON:return"hexgon";default:return"no-border"}},"type2Str"),bJe=o(()=>Y,"getLogger"),wJe=o(t=>NB[t],"getElementById"),TJe={clear:fJe,addNode:mJe,getSections:i1e,getData:pJe,nodeType:Yi,getType:gJe,setElementForId:yJe,decorateNode:vJe,type2Str:xJe,getLogger:bJe,getElementById:wJe},a1e=TJe});var kJe,o1e,l1e=N(()=>{"use strict";zt();vt();Vc();Ei();Ya();Hw();eT();kJe=o(async(t,e,r,n)=>{Y.debug(`Rendering kanban diagram +`+t);let a=n.db.getData(),s=me();s.htmlLabels=!1;let l=sa(e),u=l.append("g");u.attr("class","sections");let h=l.append("g");h.attr("class","items");let f=a.nodes.filter(v=>v.isGroup),d=0,p=10,m=[],g=25;for(let v of f){let x=s?.kanban?.sectionWidth||200;d=d+1,v.x=x*d+(d-1)*p/2,v.width=x,v.y=0,v.height=x*3,v.rx=5,v.ry=5,v.cssClasses=v.cssClasses+" section-"+d;let b=await ym(u,v);g=Math.max(g,b?.labelBBox?.height),m.push(b)}let y=0;for(let v of f){let x=m[y];y=y+1;let b=s?.kanban?.sectionWidth||200,w=-b*3/2+g,C=w,T=a.nodes.filter(S=>S.parentId===v.id);for(let S of T){if(S.isGroup)throw new Error("Groups within groups are not allowed in Kanban diagrams");S.x=v.x,S.width=b-1.5*p;let I=(await vm(h,S,{config:s})).node().getBBox();S.y=C+I.height/2,await k2(S),C=S.y+I.height/2+p/2}let E=x.cluster.select("rect"),A=Math.max(C-w+3*p,50)+(g-25);E.attr("height",A)}Ao(void 0,l,s.mindmap?.padding??or.kanban.padding,s.mindmap?.useMaxWidth??or.kanban.useMaxWidth)},"draw"),o1e={draw:kJe}});var EJe,SJe,c1e,u1e=N(()=>{"use strict";Ys();EJe=o(t=>{let e="";for(let n=0;nt.darkMode?Ot(n,i):Dt(n,i),"adjuster");for(let n=0;n` + .edge { + stroke-width: 3; + } + ${EJe(t)} + .section-root rect, .section-root path, .section-root circle, .section-root polygon { + fill: ${t.git0}; + } + .section-root text { + fill: ${t.gitBranchLabel0}; + } + .icon-container { + height:100%; + display: flex; + justify-content: center; + align-items: center; + } + .edge { + fill: none; + } + .cluster-label, .label { + color: ${t.textColor}; + fill: ${t.textColor}; + } + .kanban-label { + dy: 1em; + alignment-baseline: middle; + text-anchor: middle; + dominant-baseline: middle; + text-align: center; + } +`,"getStyles"),c1e=SJe});var h1e={};hr(h1e,{diagram:()=>CJe});var CJe,f1e=N(()=>{"use strict";n1e();s1e();l1e();u1e();CJe={db:a1e,renderer:o1e,parser:r1e,styles:c1e}});var MB,d4,m1e=N(()=>{"use strict";MB=function(){var t=o(function(l,u,h,f){for(h=h||{},f=l.length;f--;h[l[f]]=u);return h},"o"),e=[1,9],r=[1,10],n=[1,5,10,12],i={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,start:3,SANKEY:4,NEWLINE:5,csv:6,opt_eof:7,record:8,csv_tail:9,EOF:10,"field[source]":11,COMMA:12,"field[target]":13,"field[value]":14,field:15,escaped:16,non_escaped:17,DQUOTE:18,ESCAPED_TEXT:19,NON_ESCAPED_TEXT:20,$accept:0,$end:1},terminals_:{2:"error",4:"SANKEY",5:"NEWLINE",10:"EOF",11:"field[source]",12:"COMMA",13:"field[target]",14:"field[value]",18:"DQUOTE",19:"ESCAPED_TEXT",20:"NON_ESCAPED_TEXT"},productions_:[0,[3,4],[6,2],[9,2],[9,0],[7,1],[7,0],[8,5],[15,1],[15,1],[16,3],[17,1]],performAction:o(function(u,h,f,d,p,m,g){var y=m.length-1;switch(p){case 7:let v=d.findOrCreateNode(m[y-4].trim().replaceAll('""','"')),x=d.findOrCreateNode(m[y-2].trim().replaceAll('""','"')),b=parseFloat(m[y].trim());d.addLink(v,x,b);break;case 8:case 9:case 11:this.$=m[y];break;case 10:this.$=m[y-1];break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},{5:[1,3]},{6:4,8:5,15:6,16:7,17:8,18:e,20:r},{1:[2,6],7:11,10:[1,12]},t(r,[2,4],{9:13,5:[1,14]}),{12:[1,15]},t(n,[2,8]),t(n,[2,9]),{19:[1,16]},t(n,[2,11]),{1:[2,1]},{1:[2,5]},t(r,[2,2]),{6:17,8:5,15:6,16:7,17:8,18:e,20:r},{15:18,16:7,17:8,18:e,20:r},{18:[1,19]},t(r,[2,3]),{12:[1,20]},t(n,[2,10]),{15:21,16:7,17:8,18:e,20:r},t([1,5,10],[2,7])],defaultActions:{11:[2,1],12:[2,5]},parseError:o(function(u,h){if(h.recoverable)this.trace(u);else{var f=new Error(u);throw f.hash=h,f}},"parseError"),parse:o(function(u){var h=this,f=[0],d=[],p=[null],m=[],g=this.table,y="",v=0,x=0,b=0,w=2,C=1,T=m.slice.call(arguments,1),E=Object.create(this.lexer),A={yy:{}};for(var S in this.yy)Object.prototype.hasOwnProperty.call(this.yy,S)&&(A.yy[S]=this.yy[S]);E.setInput(u,A.yy),A.yy.lexer=E,A.yy.parser=this,typeof E.yylloc>"u"&&(E.yylloc={});var _=E.yylloc;m.push(_);var I=E.options&&E.options.ranges;typeof A.yy.parseError=="function"?this.parseError=A.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function D(ie){f.length=f.length-2*ie,p.length=p.length-ie,m.length=m.length-ie}o(D,"popStack");function k(){var ie;return ie=d.pop()||E.lex()||C,typeof ie!="number"&&(ie instanceof Array&&(d=ie,ie=d.pop()),ie=h.symbols_[ie]||ie),ie}o(k,"lex");for(var L,R,O,M,B,F,P={},z,$,H,Q;;){if(O=f[f.length-1],this.defaultActions[O]?M=this.defaultActions[O]:((L===null||typeof L>"u")&&(L=k()),M=g[O]&&g[O][L]),typeof M>"u"||!M.length||!M[0]){var j="";Q=[];for(z in g[O])this.terminals_[z]&&z>w&&Q.push("'"+this.terminals_[z]+"'");E.showPosition?j="Parse error on line "+(v+1)+`: +`+E.showPosition()+` +Expecting `+Q.join(", ")+", got '"+(this.terminals_[L]||L)+"'":j="Parse error on line "+(v+1)+": Unexpected "+(L==C?"end of input":"'"+(this.terminals_[L]||L)+"'"),this.parseError(j,{text:E.match,token:this.terminals_[L]||L,line:E.yylineno,loc:_,expected:Q})}if(M[0]instanceof Array&&M.length>1)throw new Error("Parse Error: multiple actions possible at state: "+O+", token: "+L);switch(M[0]){case 1:f.push(L),p.push(E.yytext),m.push(E.yylloc),f.push(M[1]),L=null,R?(L=R,R=null):(x=E.yyleng,y=E.yytext,v=E.yylineno,_=E.yylloc,b>0&&b--);break;case 2:if($=this.productions_[M[1]][1],P.$=p[p.length-$],P._$={first_line:m[m.length-($||1)].first_line,last_line:m[m.length-1].last_line,first_column:m[m.length-($||1)].first_column,last_column:m[m.length-1].last_column},I&&(P._$.range=[m[m.length-($||1)].range[0],m[m.length-1].range[1]]),F=this.performAction.apply(P,[y,x,v,A.yy,M[1],p,m].concat(T)),typeof F<"u")return F;$&&(f=f.slice(0,-1*$*2),p=p.slice(0,-1*$),m=m.slice(0,-1*$)),f.push(this.productions_[M[1]][0]),p.push(P.$),m.push(P._$),H=g[f[f.length-2]][f[f.length-1]],f.push(H);break;case 3:return!0}}return!0},"parse")},a=function(){var l={EOF:1,parseError:o(function(h,f){if(this.yy.parser)this.yy.parser.parseError(h,f);else throw new Error(h)},"parseError"),setInput:o(function(u,h){return this.yy=h||this.yy||{},this._input=u,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var u=this._input[0];this.yytext+=u,this.yyleng++,this.offset++,this.match+=u,this.matched+=u;var h=u.match(/(?:\r\n?|\n).*/g);return h?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),u},"input"),unput:o(function(u){var h=u.length,f=u.split(/(?:\r\n?|\n)/g);this._input=u+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-h),this.offset-=h;var d=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),f.length-1&&(this.yylineno-=f.length-1);var p=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:f?(f.length===d.length?this.yylloc.first_column:0)+d[d.length-f.length].length-f[0].length:this.yylloc.first_column-h},this.options.ranges&&(this.yylloc.range=[p[0],p[0]+this.yyleng-h]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(u){this.unput(this.match.slice(u))},"less"),pastInput:o(function(){var u=this.matched.substr(0,this.matched.length-this.match.length);return(u.length>20?"...":"")+u.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var u=this.match;return u.length<20&&(u+=this._input.substr(0,20-u.length)),(u.substr(0,20)+(u.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var u=this.pastInput(),h=new Array(u.length+1).join("-");return u+this.upcomingInput()+` +`+h+"^"},"showPosition"),test_match:o(function(u,h){var f,d,p;if(this.options.backtrack_lexer&&(p={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(p.yylloc.range=this.yylloc.range.slice(0))),d=u[0].match(/(?:\r\n?|\n).*/g),d&&(this.yylineno+=d.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:d?d[d.length-1].length-d[d.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+u[0].length},this.yytext+=u[0],this.match+=u[0],this.matches=u,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(u[0].length),this.matched+=u[0],f=this.performAction.call(this,this.yy,this,h,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),f)return f;if(this._backtrack){for(var m in p)this[m]=p[m];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var u,h,f,d;this._more||(this.yytext="",this.match="");for(var p=this._currentRules(),m=0;mh[0].length)){if(h=f,d=m,this.options.backtrack_lexer){if(u=this.test_match(f,p[m]),u!==!1)return u;if(this._backtrack){h=!1;continue}else return!1}else if(!this.options.flex)break}return h?(u=this.test_match(h,p[d]),u!==!1?u:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var h=this.next();return h||this.lex()},"lex"),begin:o(function(h){this.conditionStack.push(h)},"begin"),popState:o(function(){var h=this.conditionStack.length-1;return h>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(h){return h=this.conditionStack.length-1-Math.abs(h||0),h>=0?this.conditionStack[h]:"INITIAL"},"topState"),pushState:o(function(h){this.begin(h)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:o(function(h,f,d,p){var m=p;switch(d){case 0:return this.pushState("csv"),4;break;case 1:return 10;case 2:return 5;case 3:return 12;case 4:return this.pushState("escaped_text"),18;break;case 5:return 20;case 6:return this.popState("escaped_text"),18;break;case 7:return 19}},"anonymous"),rules:[/^(?:sankey-beta\b)/i,/^(?:$)/i,/^(?:((\u000D\u000A)|(\u000A)))/i,/^(?:(\u002C))/i,/^(?:(\u0022))/i,/^(?:([\u0020-\u0021\u0023-\u002B\u002D-\u007E])*)/i,/^(?:(\u0022)(?!(\u0022)))/i,/^(?:(([\u0020-\u0021\u0023-\u002B\u002D-\u007E])|(\u002C)|(\u000D)|(\u000A)|(\u0022)(\u0022))*)/i],conditions:{csv:{rules:[1,2,3,4,5,6,7],inclusive:!1},escaped_text:{rules:[6,7],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7],inclusive:!0}}};return l}();i.lexer=a;function s(){this.yy={}}return o(s,"Parser"),s.prototype=i,i.Parser=s,new s}();MB.parser=MB;d4=MB});var XS,jS,YS,LJe,IB,RJe,OB,NJe,MJe,IJe,OJe,g1e,y1e=N(()=>{"use strict";zt();gr();mi();XS=[],jS=[],YS=new Map,LJe=o(()=>{XS=[],jS=[],YS=new Map,Ar()},"clear"),IB=class{constructor(e,r,n=0){this.source=e;this.target=r;this.value=n}static{o(this,"SankeyLink")}},RJe=o((t,e,r)=>{XS.push(new IB(t,e,r))},"addLink"),OB=class{constructor(e){this.ID=e}static{o(this,"SankeyNode")}},NJe=o(t=>{t=Ze.sanitizeText(t,me());let e=YS.get(t);return e===void 0&&(e=new OB(t),YS.set(t,e),jS.push(e)),e},"findOrCreateNode"),MJe=o(()=>jS,"getNodes"),IJe=o(()=>XS,"getLinks"),OJe=o(()=>({nodes:jS.map(t=>({id:t.ID})),links:XS.map(t=>({source:t.source.ID,target:t.target.ID,value:t.value}))}),"getGraph"),g1e={nodesMap:YS,getConfig:o(()=>me().sankey,"getConfig"),getNodes:MJe,getLinks:IJe,getGraph:OJe,addLink:RJe,findOrCreateNode:NJe,getAccTitle:Rr,setAccTitle:Lr,getAccDescription:Mr,setAccDescription:Nr,getDiagramTitle:Ir,setDiagramTitle:$r,clear:LJe}});function p4(t,e){let r;if(e===void 0)for(let n of t)n!=null&&(r=n)&&(r=n);else{let n=-1;for(let i of t)(i=e(i,++n,t))!=null&&(r=i)&&(r=i)}return r}var v1e=N(()=>{"use strict";o(p4,"max")});function cy(t,e){let r;if(e===void 0)for(let n of t)n!=null&&(r>n||r===void 0&&n>=n)&&(r=n);else{let n=-1;for(let i of t)(i=e(i,++n,t))!=null&&(r>i||r===void 0&&i>=i)&&(r=i)}return r}var x1e=N(()=>{"use strict";o(cy,"min")});function uy(t,e){let r=0;if(e===void 0)for(let n of t)(n=+n)&&(r+=n);else{let n=-1;for(let i of t)(i=+e(i,++n,t))&&(r+=i)}return r}var b1e=N(()=>{"use strict";o(uy,"sum")});var PB=N(()=>{"use strict";v1e();x1e();b1e()});function PJe(t){return t.target.depth}function BB(t){return t.depth}function FB(t,e){return e-1-t.height}function m4(t,e){return t.sourceLinks.length?t.depth:e-1}function $B(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?cy(t.sourceLinks,PJe)-1:0}var zB=N(()=>{"use strict";PB();o(PJe,"targetDepth");o(BB,"left");o(FB,"right");o(m4,"justify");o($B,"center")});function hy(t){return function(){return t}}var w1e=N(()=>{"use strict";o(hy,"constant")});function T1e(t,e){return KS(t.source,e.source)||t.index-e.index}function k1e(t,e){return KS(t.target,e.target)||t.index-e.index}function KS(t,e){return t.y0-e.y0}function GB(t){return t.value}function BJe(t){return t.index}function FJe(t){return t.nodes}function $Je(t){return t.links}function E1e(t,e){let r=t.get(e);if(!r)throw new Error("missing: "+e);return r}function S1e({nodes:t}){for(let e of t){let r=e.y0,n=r;for(let i of e.sourceLinks)i.y0=r+i.width/2,r+=i.width;for(let i of e.targetLinks)i.y1=n+i.width/2,n+=i.width}}function QS(){let t=0,e=0,r=1,n=1,i=24,a=8,s,l=BJe,u=m4,h,f,d=FJe,p=$Je,m=6;function g(){let O={nodes:d.apply(null,arguments),links:p.apply(null,arguments)};return y(O),v(O),x(O),b(O),T(O),S1e(O),O}o(g,"sankey"),g.update=function(O){return S1e(O),O},g.nodeId=function(O){return arguments.length?(l=typeof O=="function"?O:hy(O),g):l},g.nodeAlign=function(O){return arguments.length?(u=typeof O=="function"?O:hy(O),g):u},g.nodeSort=function(O){return arguments.length?(h=O,g):h},g.nodeWidth=function(O){return arguments.length?(i=+O,g):i},g.nodePadding=function(O){return arguments.length?(a=s=+O,g):a},g.nodes=function(O){return arguments.length?(d=typeof O=="function"?O:hy(O),g):d},g.links=function(O){return arguments.length?(p=typeof O=="function"?O:hy(O),g):p},g.linkSort=function(O){return arguments.length?(f=O,g):f},g.size=function(O){return arguments.length?(t=e=0,r=+O[0],n=+O[1],g):[r-t,n-e]},g.extent=function(O){return arguments.length?(t=+O[0][0],r=+O[1][0],e=+O[0][1],n=+O[1][1],g):[[t,e],[r,n]]},g.iterations=function(O){return arguments.length?(m=+O,g):m};function y({nodes:O,links:M}){for(let[F,P]of O.entries())P.index=F,P.sourceLinks=[],P.targetLinks=[];let B=new Map(O.map((F,P)=>[l(F,P,O),F]));for(let[F,P]of M.entries()){P.index=F;let{source:z,target:$}=P;typeof z!="object"&&(z=P.source=E1e(B,z)),typeof $!="object"&&($=P.target=E1e(B,$)),z.sourceLinks.push(P),$.targetLinks.push(P)}if(f!=null)for(let{sourceLinks:F,targetLinks:P}of O)F.sort(f),P.sort(f)}o(y,"computeNodeLinks");function v({nodes:O}){for(let M of O)M.value=M.fixedValue===void 0?Math.max(uy(M.sourceLinks,GB),uy(M.targetLinks,GB)):M.fixedValue}o(v,"computeNodeValues");function x({nodes:O}){let M=O.length,B=new Set(O),F=new Set,P=0;for(;B.size;){for(let z of B){z.depth=P;for(let{target:$}of z.sourceLinks)F.add($)}if(++P>M)throw new Error("circular link");B=F,F=new Set}}o(x,"computeNodeDepths");function b({nodes:O}){let M=O.length,B=new Set(O),F=new Set,P=0;for(;B.size;){for(let z of B){z.height=P;for(let{source:$}of z.targetLinks)F.add($)}if(++P>M)throw new Error("circular link");B=F,F=new Set}}o(b,"computeNodeHeights");function w({nodes:O}){let M=p4(O,P=>P.depth)+1,B=(r-t-i)/(M-1),F=new Array(M);for(let P of O){let z=Math.max(0,Math.min(M-1,Math.floor(u.call(null,P,M))));P.layer=z,P.x0=t+z*B,P.x1=P.x0+i,F[z]?F[z].push(P):F[z]=[P]}if(h)for(let P of F)P.sort(h);return F}o(w,"computeNodeLayers");function C(O){let M=cy(O,B=>(n-e-(B.length-1)*s)/uy(B,GB));for(let B of O){let F=e;for(let P of B){P.y0=F,P.y1=F+P.value*M,F=P.y1+s;for(let z of P.sourceLinks)z.width=z.value*M}F=(n-F+s)/(B.length+1);for(let P=0;PB.length)-1)),C(M);for(let B=0;B0))continue;let j=(H/Q-$.y0)*M;$.y0+=j,$.y1+=j,D($)}h===void 0&&z.sort(KS),S(z,B)}}o(E,"relaxLeftToRight");function A(O,M,B){for(let F=O.length,P=F-2;P>=0;--P){let z=O[P];for(let $ of z){let H=0,Q=0;for(let{target:ie,value:ne}of $.sourceLinks){let le=ne*(ie.layer-$.layer);H+=R($,ie)*le,Q+=le}if(!(Q>0))continue;let j=(H/Q-$.y0)*M;$.y0+=j,$.y1+=j,D($)}h===void 0&&z.sort(KS),S(z,B)}}o(A,"relaxRightToLeft");function S(O,M){let B=O.length>>1,F=O[B];I(O,F.y0-s,B-1,M),_(O,F.y1+s,B+1,M),I(O,n,O.length-1,M),_(O,e,0,M)}o(S,"resolveCollisions");function _(O,M,B,F){for(;B1e-6&&(P.y0+=z,P.y1+=z),M=P.y1+s}}o(_,"resolveCollisionsTopToBottom");function I(O,M,B,F){for(;B>=0;--B){let P=O[B],z=(P.y1-M)*F;z>1e-6&&(P.y0-=z,P.y1-=z),M=P.y0-s}}o(I,"resolveCollisionsBottomToTop");function D({sourceLinks:O,targetLinks:M}){if(f===void 0){for(let{source:{sourceLinks:B}}of M)B.sort(k1e);for(let{target:{targetLinks:B}}of O)B.sort(T1e)}}o(D,"reorderNodeLinks");function k(O){if(f===void 0)for(let{sourceLinks:M,targetLinks:B}of O)M.sort(k1e),B.sort(T1e)}o(k,"reorderLinks");function L(O,M){let B=O.y0-(O.sourceLinks.length-1)*s/2;for(let{target:F,width:P}of O.sourceLinks){if(F===M)break;B+=P+s}for(let{source:F,width:P}of M.targetLinks){if(F===O)break;B-=P}return B}o(L,"targetTop");function R(O,M){let B=M.y0-(M.targetLinks.length-1)*s/2;for(let{source:F,width:P}of M.targetLinks){if(F===O)break;B+=P+s}for(let{target:F,width:P}of O.sourceLinks){if(F===M)break;B-=P}return B}return o(R,"sourceTop"),g}var C1e=N(()=>{"use strict";PB();zB();w1e();o(T1e,"ascendingSourceBreadth");o(k1e,"ascendingTargetBreadth");o(KS,"ascendingBreadth");o(GB,"value");o(BJe,"defaultId");o(FJe,"defaultNodes");o($Je,"defaultLinks");o(E1e,"find");o(S1e,"computeLinkBreadths");o(QS,"Sankey")});function HB(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function A1e(){return new HB}var VB,UB,Xp,zJe,WB,_1e=N(()=>{"use strict";VB=Math.PI,UB=2*VB,Xp=1e-6,zJe=UB-Xp;o(HB,"Path");o(A1e,"path");HB.prototype=A1e.prototype={constructor:HB,moveTo:o(function(t,e){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)},"moveTo"),closePath:o(function(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},"closePath"),lineTo:o(function(t,e){this._+="L"+(this._x1=+t)+","+(this._y1=+e)},"lineTo"),quadraticCurveTo:o(function(t,e,r,n){this._+="Q"+ +t+","+ +e+","+(this._x1=+r)+","+(this._y1=+n)},"quadraticCurveTo"),bezierCurveTo:o(function(t,e,r,n,i,a){this._+="C"+ +t+","+ +e+","+ +r+","+ +n+","+(this._x1=+i)+","+(this._y1=+a)},"bezierCurveTo"),arcTo:o(function(t,e,r,n,i){t=+t,e=+e,r=+r,n=+n,i=+i;var a=this._x1,s=this._y1,l=r-t,u=n-e,h=a-t,f=s-e,d=h*h+f*f;if(i<0)throw new Error("negative radius: "+i);if(this._x1===null)this._+="M"+(this._x1=t)+","+(this._y1=e);else if(d>Xp)if(!(Math.abs(f*l-u*h)>Xp)||!i)this._+="L"+(this._x1=t)+","+(this._y1=e);else{var p=r-a,m=n-s,g=l*l+u*u,y=p*p+m*m,v=Math.sqrt(g),x=Math.sqrt(d),b=i*Math.tan((VB-Math.acos((g+d-y)/(2*v*x)))/2),w=b/x,C=b/v;Math.abs(w-1)>Xp&&(this._+="L"+(t+w*h)+","+(e+w*f)),this._+="A"+i+","+i+",0,0,"+ +(f*p>h*m)+","+(this._x1=t+C*l)+","+(this._y1=e+C*u)}},"arcTo"),arc:o(function(t,e,r,n,i,a){t=+t,e=+e,r=+r,a=!!a;var s=r*Math.cos(n),l=r*Math.sin(n),u=t+s,h=e+l,f=1^a,d=a?n-i:i-n;if(r<0)throw new Error("negative radius: "+r);this._x1===null?this._+="M"+u+","+h:(Math.abs(this._x1-u)>Xp||Math.abs(this._y1-h)>Xp)&&(this._+="L"+u+","+h),r&&(d<0&&(d=d%UB+UB),d>zJe?this._+="A"+r+","+r+",0,1,"+f+","+(t-s)+","+(e-l)+"A"+r+","+r+",0,1,"+f+","+(this._x1=u)+","+(this._y1=h):d>Xp&&(this._+="A"+r+","+r+",0,"+ +(d>=VB)+","+f+","+(this._x1=t+r*Math.cos(i))+","+(this._y1=e+r*Math.sin(i))))},"arc"),rect:o(function(t,e,r,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +r+"v"+ +n+"h"+-r+"Z"},"rect"),toString:o(function(){return this._},"toString")};WB=A1e});var D1e=N(()=>{"use strict";_1e()});function ZS(t){return o(function(){return t},"constant")}var L1e=N(()=>{"use strict";o(ZS,"default")});function R1e(t){return t[0]}function N1e(t){return t[1]}var M1e=N(()=>{"use strict";o(R1e,"x");o(N1e,"y")});var I1e,O1e=N(()=>{"use strict";I1e=Array.prototype.slice});function GJe(t){return t.source}function VJe(t){return t.target}function UJe(t){var e=GJe,r=VJe,n=R1e,i=N1e,a=null;function s(){var l,u=I1e.call(arguments),h=e.apply(this,u),f=r.apply(this,u);if(a||(a=l=WB()),t(a,+n.apply(this,(u[0]=h,u)),+i.apply(this,u),+n.apply(this,(u[0]=f,u)),+i.apply(this,u)),l)return a=null,l+""||null}return o(s,"link"),s.source=function(l){return arguments.length?(e=l,s):e},s.target=function(l){return arguments.length?(r=l,s):r},s.x=function(l){return arguments.length?(n=typeof l=="function"?l:ZS(+l),s):n},s.y=function(l){return arguments.length?(i=typeof l=="function"?l:ZS(+l),s):i},s.context=function(l){return arguments.length?(a=l??null,s):a},s}function HJe(t,e,r,n,i){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,i,n,i)}function qB(){return UJe(HJe)}var P1e=N(()=>{"use strict";D1e();O1e();L1e();M1e();o(GJe,"linkSource");o(VJe,"linkTarget");o(UJe,"link");o(HJe,"curveHorizontal");o(qB,"linkHorizontal")});var B1e=N(()=>{"use strict";P1e()});function WJe(t){return[t.source.x1,t.y0]}function qJe(t){return[t.target.x0,t.y1]}function JS(){return qB().source(WJe).target(qJe)}var F1e=N(()=>{"use strict";B1e();o(WJe,"horizontalSource");o(qJe,"horizontalTarget");o(JS,"default")});var $1e=N(()=>{"use strict";C1e();zB();F1e()});var g4,z1e=N(()=>{"use strict";g4=class t{static{o(this,"Uid")}static{this.count=0}static next(e){return new t(e+ ++t.count)}constructor(e){this.id=e,this.href=`#${e}`}toString(){return"url("+this.href+")"}}});var YJe,XJe,G1e,V1e=N(()=>{"use strict";zt();dr();$1e();Ei();z1e();YJe={left:BB,right:FB,center:$B,justify:m4},XJe=o(function(t,e,r,n){let{securityLevel:i,sankey:a}=me(),s=A3.sankey,l;i==="sandbox"&&(l=Ge("#i"+e));let u=i==="sandbox"?Ge(l.nodes()[0].contentDocument.body):Ge("body"),h=i==="sandbox"?u.select(`[id="${e}"]`):Ge(`[id="${e}"]`),f=a?.width??s.width,d=a?.height??s.width,p=a?.useMaxWidth??s.useMaxWidth,m=a?.nodeAlignment??s.nodeAlignment,g=a?.prefix??s.prefix,y=a?.suffix??s.suffix,v=a?.showValues??s.showValues,x=n.db.getGraph(),b=YJe[m];QS().nodeId(I=>I.id).nodeWidth(10).nodePadding(10+(v?15:0)).nodeAlign(b).extent([[0,0],[f,d]])(x);let T=gu(e9);h.append("g").attr("class","nodes").selectAll(".node").data(x.nodes).join("g").attr("class","node").attr("id",I=>(I.uid=g4.next("node-")).id).attr("transform",function(I){return"translate("+I.x0+","+I.y0+")"}).attr("x",I=>I.x0).attr("y",I=>I.y0).append("rect").attr("height",I=>I.y1-I.y0).attr("width",I=>I.x1-I.x0).attr("fill",I=>T(I.id));let E=o(({id:I,value:D})=>v?`${I} +${g}${Math.round(D*100)/100}${y}`:I,"getText");h.append("g").attr("class","node-labels").attr("font-size",14).selectAll("text").data(x.nodes).join("text").attr("x",I=>I.x0(I.y1+I.y0)/2).attr("dy",`${v?"0":"0.35"}em`).attr("text-anchor",I=>I.x0(D.uid=g4.next("linearGradient-")).id).attr("gradientUnits","userSpaceOnUse").attr("x1",D=>D.source.x1).attr("x2",D=>D.target.x0);I.append("stop").attr("offset","0%").attr("stop-color",D=>T(D.source.id)),I.append("stop").attr("offset","100%").attr("stop-color",D=>T(D.target.id))}let _;switch(S){case"gradient":_=o(I=>I.uid,"coloring");break;case"source":_=o(I=>T(I.source.id),"coloring");break;case"target":_=o(I=>T(I.target.id),"coloring");break;default:_=S}A.append("path").attr("d",JS()).attr("stroke",_).attr("stroke-width",I=>Math.max(1,I.width)),Ao(void 0,h,0,p)},"draw"),G1e={draw:XJe}});var U1e,H1e=N(()=>{"use strict";U1e=o(t=>t.replaceAll(/^[^\S\n\r]+|[^\S\n\r]+$/g,"").replaceAll(/([\n\r])+/g,` +`).trim(),"prepareTextForParsing")});var jJe,W1e,q1e=N(()=>{"use strict";jJe=o(t=>`.label { + font-family: ${t.fontFamily}; + }`,"getStyles"),W1e=jJe});var Y1e={};hr(Y1e,{diagram:()=>QJe});var KJe,QJe,X1e=N(()=>{"use strict";m1e();y1e();V1e();H1e();q1e();KJe=d4.parse.bind(d4);d4.parse=t=>KJe(U1e(t));QJe={styles:W1e,parser:d4,db:g1e,renderer:G1e}});var Q1e,YB,tet,ret,net,iet,aet,Bf,XB=N(()=>{"use strict";ji();Ya();ir();mi();Q1e={packet:[]},YB=structuredClone(Q1e),tet=or.packet,ret=o(()=>{let t=Fi({...tet,...cr().packet});return t.showBits&&(t.paddingY+=10),t},"getConfig"),net=o(()=>YB.packet,"getPacket"),iet=o(t=>{t.length>0&&YB.packet.push(t)},"pushWord"),aet=o(()=>{Ar(),YB=structuredClone(Q1e)},"clear"),Bf={pushWord:iet,getPacket:net,getConfig:ret,clear:aet,setAccTitle:Lr,getAccTitle:Rr,setDiagramTitle:$r,getDiagramTitle:Ir,getAccDescription:Mr,setAccDescription:Nr}});var set,oet,cet,Z1e,J1e=N(()=>{"use strict";kp();vt();T1();XB();set=1e4,oet=o(t=>{$c(t,Bf);let e=-1,r=[],n=1,{bitsPerRow:i}=Bf.getConfig();for(let{start:a,end:s,label:l}of t.blocks){if(s&&s{if(t.end===void 0&&(t.end=t.start),t.start>t.end)throw new Error(`Block start ${t.start} is greater than block end ${t.end}.`);return t.end+1<=e*r?[t,void 0]:[{start:t.start,end:e*r-1,label:t.label},{start:e*r,end:t.end,label:t.label}]},"getNextFittingBlock"),Z1e={parse:o(async t=>{let e=await uo("packet",t);Y.debug(e),oet(e)},"parse")}});var uet,het,eye,tye=N(()=>{"use strict";Vc();Ei();uet=o((t,e,r,n)=>{let i=n.db,a=i.getConfig(),{rowHeight:s,paddingY:l,bitWidth:u,bitsPerRow:h}=a,f=i.getPacket(),d=i.getDiagramTitle(),p=s+l,m=p*(f.length+1)-(d?0:s),g=u*h+2,y=sa(e);y.attr("viewbox",`0 0 ${g} ${m}`),vn(y,m,g,a.useMaxWidth);for(let[v,x]of f.entries())het(y,x,v,a);y.append("text").text(d).attr("x",g/2).attr("y",m-p/2).attr("dominant-baseline","middle").attr("text-anchor","middle").attr("class","packetTitle")},"draw"),het=o((t,e,r,{rowHeight:n,paddingX:i,paddingY:a,bitWidth:s,bitsPerRow:l,showBits:u})=>{let h=t.append("g"),f=r*(n+a)+a;for(let d of e){let p=d.start%l*s+1,m=(d.end-d.start+1)*s-i;if(h.append("rect").attr("x",p).attr("y",f).attr("width",m).attr("height",n).attr("class","packetBlock"),h.append("text").attr("x",p+m/2).attr("y",f+n/2).attr("class","packetLabel").attr("dominant-baseline","middle").attr("text-anchor","middle").text(d.label),!u)continue;let g=d.end===d.start,y=f-2;h.append("text").attr("x",p+(g?m/2:0)).attr("y",y).attr("class","packetByte start").attr("dominant-baseline","auto").attr("text-anchor",g?"middle":"start").text(d.start),g||h.append("text").attr("x",p+m).attr("y",y).attr("class","packetByte end").attr("dominant-baseline","auto").attr("text-anchor","end").text(d.end)}},"drawWord"),eye={draw:uet}});var fet,rye,nye=N(()=>{"use strict";ir();fet={byteFontSize:"10px",startByteColor:"black",endByteColor:"black",labelColor:"black",labelFontSize:"12px",titleColor:"black",titleFontSize:"14px",blockStrokeColor:"black",blockStrokeWidth:"1",blockFillColor:"#efefef"},rye=o(({packet:t}={})=>{let e=Fi(fet,t);return` + .packetByte { + font-size: ${e.byteFontSize}; + } + .packetByte.start { + fill: ${e.startByteColor}; + } + .packetByte.end { + fill: ${e.endByteColor}; + } + .packetLabel { + fill: ${e.labelColor}; + font-size: ${e.labelFontSize}; + } + .packetTitle { + fill: ${e.titleColor}; + font-size: ${e.titleFontSize}; + } + .packetBlock { + stroke: ${e.blockStrokeColor}; + stroke-width: ${e.blockStrokeWidth}; + fill: ${e.blockFillColor}; + } + `},"styles")});var iye={};hr(iye,{diagram:()=>det});var det,aye=N(()=>{"use strict";XB();J1e();tye();nye();det={parser:Z1e,db:Bf,renderer:eye,styles:rye}});var fy,lye,jp,get,yet,cye,vet,xet,bet,wet,Tet,ket,Eet,Kp,jB=N(()=>{"use strict";ji();Ya();ir();mi();fy={showLegend:!0,ticks:5,max:null,min:0,graticule:"circle"},lye={axes:[],curves:[],options:fy},jp=structuredClone(lye),get=or.radar,yet=o(()=>Fi({...get,...cr().radar}),"getConfig"),cye=o(()=>jp.axes,"getAxes"),vet=o(()=>jp.curves,"getCurves"),xet=o(()=>jp.options,"getOptions"),bet=o(t=>{jp.axes=t.map(e=>({name:e.name,label:e.label??e.name}))},"setAxes"),wet=o(t=>{jp.curves=t.map(e=>({name:e.name,label:e.label??e.name,entries:Tet(e.entries)}))},"setCurves"),Tet=o(t=>{if(t[0].axis==null)return t.map(r=>r.value);let e=cye();if(e.length===0)throw new Error("Axes must be populated before curves for reference entries");return e.map(r=>{let n=t.find(i=>i.axis?.$refText===r.name);if(n===void 0)throw new Error("Missing entry for axis "+r.label);return n.value})},"computeCurveEntries"),ket=o(t=>{let e=t.reduce((r,n)=>(r[n.name]=n,r),{});jp.options={showLegend:e.showLegend?.value??fy.showLegend,ticks:e.ticks?.value??fy.ticks,max:e.max?.value??fy.max,min:e.min?.value??fy.min,graticule:e.graticule?.value??fy.graticule}},"setOptions"),Eet=o(()=>{Ar(),jp=structuredClone(lye)},"clear"),Kp={getAxes:cye,getCurves:vet,getOptions:xet,setAxes:bet,setCurves:wet,setOptions:ket,getConfig:yet,clear:Eet,setAccTitle:Lr,getAccTitle:Rr,setDiagramTitle:$r,getDiagramTitle:Ir,getAccDescription:Mr,setAccDescription:Nr}});var Cet,uye,hye=N(()=>{"use strict";kp();vt();T1();jB();Cet=o(t=>{$c(t,Kp);let{axes:e,curves:r,options:n}=t;Kp.setAxes(e),Kp.setCurves(r),Kp.setOptions(n)},"populate"),uye={parse:o(async t=>{let e=await uo("radar",t);Y.debug(e),Cet(e)},"parse")}});function Ret(t,e,r,n,i,a,s){let l=e.length,u=Math.min(s.width,s.height)/2;r.forEach((h,f)=>{if(h.entries.length!==l)return;let d=h.entries.map((p,m)=>{let g=2*Math.PI*m/l-Math.PI/2,y=Net(p,n,i,u),v=y*Math.cos(g),x=y*Math.sin(g);return{x:v,y:x}});a==="circle"?t.append("path").attr("d",Met(d,s.curveTension)).attr("class",`radarCurve-${f}`):a==="polygon"&&t.append("polygon").attr("points",d.map(p=>`${p.x},${p.y}`).join(" ")).attr("class",`radarCurve-${f}`)})}function Net(t,e,r,n){let i=Math.min(Math.max(t,e),r);return n*(i-e)/(r-e)}function Met(t,e){let r=t.length,n=`M${t[0].x},${t[0].y}`;for(let i=0;i{let h=t.append("g").attr("transform",`translate(${i}, ${a+u*s})`);h.append("rect").attr("width",12).attr("height",12).attr("class",`radarLegendBox-${u}`),h.append("text").attr("x",16).attr("y",0).attr("class","radarLegendText").text(l.label)})}var Aet,_et,Det,Let,fye,dye=N(()=>{"use strict";Vc();Aet=o((t,e,r,n)=>{let i=n.db,a=i.getAxes(),s=i.getCurves(),l=i.getOptions(),u=i.getConfig(),h=i.getDiagramTitle(),f=sa(e),d=_et(f,u),p=l.max??Math.max(...s.map(y=>Math.max(...y.entries))),m=l.min,g=Math.min(u.width,u.height)/2;Det(d,a,g,l.ticks,l.graticule),Let(d,a,g,u),Ret(d,a,s,m,p,l.graticule,u),Iet(d,s,l.showLegend,u),d.append("text").attr("class","radarTitle").text(h).attr("x",0).attr("y",-u.height/2-u.marginTop)},"draw"),_et=o((t,e)=>{let r=e.width+e.marginLeft+e.marginRight,n=e.height+e.marginTop+e.marginBottom,i={x:e.marginLeft+e.width/2,y:e.marginTop+e.height/2};return t.attr("viewbox",`0 0 ${r} ${n}`).attr("width",r).attr("height",n),t.append("g").attr("transform",`translate(${i.x}, ${i.y})`)},"drawFrame"),Det=o((t,e,r,n,i)=>{if(i==="circle")for(let a=0;a{let d=2*f*Math.PI/a-Math.PI/2,p=l*Math.cos(d),m=l*Math.sin(d);return`${p},${m}`}).join(" ");t.append("polygon").attr("points",u).attr("class","radarGraticule")}}},"drawGraticule"),Let=o((t,e,r,n)=>{let i=e.length;for(let a=0;a{"use strict";ir();_y();ji();Oet=o((t,e)=>{let r="";for(let n=0;n{let e=oh(),r=cr(),n=Fi(e,r.themeVariables),i=Fi(n.radar,t);return{themeVariables:n,radarOptions:i}},"buildRadarStyleOptions"),pye=o(({radar:t}={})=>{let{themeVariables:e,radarOptions:r}=Pet(t);return` + .radarTitle { + font-size: ${e.fontSize}; + color: ${e.titleColor}; + dominant-baseline: hanging; + text-anchor: middle; + } + .radarAxisLine { + stroke: ${r.axisColor}; + stroke-width: ${r.axisStrokeWidth}; + } + .radarAxisLabel { + dominant-baseline: middle; + text-anchor: middle; + font-size: ${r.axisLabelFontSize}px; + color: ${r.axisColor}; + } + .radarGraticule { + fill: ${r.graticuleColor}; + fill-opacity: ${r.graticuleOpacity}; + stroke: ${r.graticuleColor}; + stroke-width: ${r.graticuleStrokeWidth}; + } + .radarLegendText { + text-anchor: start; + font-size: ${r.legendFontSize}px; + dominant-baseline: hanging; + } + ${Oet(e,r)} + `},"styles")});var gye={};hr(gye,{diagram:()=>Bet});var Bet,yye=N(()=>{"use strict";jB();hye();dye();mye();Bet={parser:uye,db:Kp,renderer:fye,styles:pye}});var KB,bye,wye=N(()=>{"use strict";KB=function(){var t=o(function(w,C,T,E){for(T=T||{},E=w.length;E--;T[w[E]]=C);return T},"o"),e=[1,7],r=[1,13],n=[1,14],i=[1,15],a=[1,19],s=[1,16],l=[1,17],u=[1,18],h=[8,30],f=[8,21,28,29,30,31,32,40,44,47],d=[1,23],p=[1,24],m=[8,15,16,21,28,29,30,31,32,40,44,47],g=[8,15,16,21,27,28,29,30,31,32,40,44,47],y=[1,49],v={trace:o(function(){},"trace"),yy:{},symbols_:{error:2,spaceLines:3,SPACELINE:4,NL:5,separator:6,SPACE:7,EOF:8,start:9,BLOCK_DIAGRAM_KEY:10,document:11,stop:12,statement:13,link:14,LINK:15,START_LINK:16,LINK_LABEL:17,STR:18,nodeStatement:19,columnsStatement:20,SPACE_BLOCK:21,blockStatement:22,classDefStatement:23,cssClassStatement:24,styleStatement:25,node:26,SIZE:27,COLUMNS:28,"id-block":29,end:30,block:31,NODE_ID:32,nodeShapeNLabel:33,dirList:34,DIR:35,NODE_DSTART:36,NODE_DEND:37,BLOCK_ARROW_START:38,BLOCK_ARROW_END:39,classDef:40,CLASSDEF_ID:41,CLASSDEF_STYLEOPTS:42,DEFAULT:43,class:44,CLASSENTITY_IDS:45,STYLECLASS:46,style:47,STYLE_ENTITY_IDS:48,STYLE_DEFINITION_DATA:49,$accept:0,$end:1},terminals_:{2:"error",4:"SPACELINE",5:"NL",7:"SPACE",8:"EOF",10:"BLOCK_DIAGRAM_KEY",15:"LINK",16:"START_LINK",17:"LINK_LABEL",18:"STR",21:"SPACE_BLOCK",27:"SIZE",28:"COLUMNS",29:"id-block",30:"end",31:"block",32:"NODE_ID",35:"DIR",36:"NODE_DSTART",37:"NODE_DEND",38:"BLOCK_ARROW_START",39:"BLOCK_ARROW_END",40:"classDef",41:"CLASSDEF_ID",42:"CLASSDEF_STYLEOPTS",43:"DEFAULT",44:"class",45:"CLASSENTITY_IDS",46:"STYLECLASS",47:"style",48:"STYLE_ENTITY_IDS",49:"STYLE_DEFINITION_DATA"},productions_:[0,[3,1],[3,2],[3,2],[6,1],[6,1],[6,1],[9,3],[12,1],[12,1],[12,2],[12,2],[11,1],[11,2],[14,1],[14,4],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[19,3],[19,2],[19,1],[20,1],[22,4],[22,3],[26,1],[26,2],[34,1],[34,2],[33,3],[33,4],[23,3],[23,3],[24,3],[25,3]],performAction:o(function(C,T,E,A,S,_,I){var D=_.length-1;switch(S){case 4:A.getLogger().debug("Rule: separator (NL) ");break;case 5:A.getLogger().debug("Rule: separator (Space) ");break;case 6:A.getLogger().debug("Rule: separator (EOF) ");break;case 7:A.getLogger().debug("Rule: hierarchy: ",_[D-1]),A.setHierarchy(_[D-1]);break;case 8:A.getLogger().debug("Stop NL ");break;case 9:A.getLogger().debug("Stop EOF ");break;case 10:A.getLogger().debug("Stop NL2 ");break;case 11:A.getLogger().debug("Stop EOF2 ");break;case 12:A.getLogger().debug("Rule: statement: ",_[D]),typeof _[D].length=="number"?this.$=_[D]:this.$=[_[D]];break;case 13:A.getLogger().debug("Rule: statement #2: ",_[D-1]),this.$=[_[D-1]].concat(_[D]);break;case 14:A.getLogger().debug("Rule: link: ",_[D],C),this.$={edgeTypeStr:_[D],label:""};break;case 15:A.getLogger().debug("Rule: LABEL link: ",_[D-3],_[D-1],_[D]),this.$={edgeTypeStr:_[D],label:_[D-1]};break;case 18:let k=parseInt(_[D]),L=A.generateId();this.$={id:L,type:"space",label:"",width:k,children:[]};break;case 23:A.getLogger().debug("Rule: (nodeStatement link node) ",_[D-2],_[D-1],_[D]," typestr: ",_[D-1].edgeTypeStr);let R=A.edgeStrToEdgeData(_[D-1].edgeTypeStr);this.$=[{id:_[D-2].id,label:_[D-2].label,type:_[D-2].type,directions:_[D-2].directions},{id:_[D-2].id+"-"+_[D].id,start:_[D-2].id,end:_[D].id,label:_[D-1].label,type:"edge",directions:_[D].directions,arrowTypeEnd:R,arrowTypeStart:"arrow_open"},{id:_[D].id,label:_[D].label,type:A.typeStr2Type(_[D].typeStr),directions:_[D].directions}];break;case 24:A.getLogger().debug("Rule: nodeStatement (abc88 node size) ",_[D-1],_[D]),this.$={id:_[D-1].id,label:_[D-1].label,type:A.typeStr2Type(_[D-1].typeStr),directions:_[D-1].directions,widthInColumns:parseInt(_[D],10)};break;case 25:A.getLogger().debug("Rule: nodeStatement (node) ",_[D]),this.$={id:_[D].id,label:_[D].label,type:A.typeStr2Type(_[D].typeStr),directions:_[D].directions,widthInColumns:1};break;case 26:A.getLogger().debug("APA123",this?this:"na"),A.getLogger().debug("COLUMNS: ",_[D]),this.$={type:"column-setting",columns:_[D]==="auto"?-1:parseInt(_[D])};break;case 27:A.getLogger().debug("Rule: id-block statement : ",_[D-2],_[D-1]);let O=A.generateId();this.$={..._[D-2],type:"composite",children:_[D-1]};break;case 28:A.getLogger().debug("Rule: blockStatement : ",_[D-2],_[D-1],_[D]);let M=A.generateId();this.$={id:M,type:"composite",label:"",children:_[D-1]};break;case 29:A.getLogger().debug("Rule: node (NODE_ID separator): ",_[D]),this.$={id:_[D]};break;case 30:A.getLogger().debug("Rule: node (NODE_ID nodeShapeNLabel separator): ",_[D-1],_[D]),this.$={id:_[D-1],label:_[D].label,typeStr:_[D].typeStr,directions:_[D].directions};break;case 31:A.getLogger().debug("Rule: dirList: ",_[D]),this.$=[_[D]];break;case 32:A.getLogger().debug("Rule: dirList: ",_[D-1],_[D]),this.$=[_[D-1]].concat(_[D]);break;case 33:A.getLogger().debug("Rule: nodeShapeNLabel: ",_[D-2],_[D-1],_[D]),this.$={typeStr:_[D-2]+_[D],label:_[D-1]};break;case 34:A.getLogger().debug("Rule: BLOCK_ARROW nodeShapeNLabel: ",_[D-3],_[D-2]," #3:",_[D-1],_[D]),this.$={typeStr:_[D-3]+_[D],label:_[D-2],directions:_[D-1]};break;case 35:case 36:this.$={type:"classDef",id:_[D-1].trim(),css:_[D].trim()};break;case 37:this.$={type:"applyClass",id:_[D-1].trim(),styleClass:_[D].trim()};break;case 38:this.$={type:"applyStyles",id:_[D-1].trim(),stylesStr:_[D].trim()};break}},"anonymous"),table:[{9:1,10:[1,2]},{1:[3]},{11:3,13:4,19:5,20:6,21:e,22:8,23:9,24:10,25:11,26:12,28:r,29:n,31:i,32:a,40:s,44:l,47:u},{8:[1,20]},t(h,[2,12],{13:4,19:5,20:6,22:8,23:9,24:10,25:11,26:12,11:21,21:e,28:r,29:n,31:i,32:a,40:s,44:l,47:u}),t(f,[2,16],{14:22,15:d,16:p}),t(f,[2,17]),t(f,[2,18]),t(f,[2,19]),t(f,[2,20]),t(f,[2,21]),t(f,[2,22]),t(m,[2,25],{27:[1,25]}),t(f,[2,26]),{19:26,26:12,32:a},{11:27,13:4,19:5,20:6,21:e,22:8,23:9,24:10,25:11,26:12,28:r,29:n,31:i,32:a,40:s,44:l,47:u},{41:[1,28],43:[1,29]},{45:[1,30]},{48:[1,31]},t(g,[2,29],{33:32,36:[1,33],38:[1,34]}),{1:[2,7]},t(h,[2,13]),{26:35,32:a},{32:[2,14]},{17:[1,36]},t(m,[2,24]),{11:37,13:4,14:22,15:d,16:p,19:5,20:6,21:e,22:8,23:9,24:10,25:11,26:12,28:r,29:n,31:i,32:a,40:s,44:l,47:u},{30:[1,38]},{42:[1,39]},{42:[1,40]},{46:[1,41]},{49:[1,42]},t(g,[2,30]),{18:[1,43]},{18:[1,44]},t(m,[2,23]),{18:[1,45]},{30:[1,46]},t(f,[2,28]),t(f,[2,35]),t(f,[2,36]),t(f,[2,37]),t(f,[2,38]),{37:[1,47]},{34:48,35:y},{15:[1,50]},t(f,[2,27]),t(g,[2,33]),{39:[1,51]},{34:52,35:y,39:[2,31]},{32:[2,15]},t(g,[2,34]),{39:[2,32]}],defaultActions:{20:[2,7],23:[2,14],50:[2,15],52:[2,32]},parseError:o(function(C,T){if(T.recoverable)this.trace(C);else{var E=new Error(C);throw E.hash=T,E}},"parseError"),parse:o(function(C){var T=this,E=[0],A=[],S=[null],_=[],I=this.table,D="",k=0,L=0,R=0,O=2,M=1,B=_.slice.call(arguments,1),F=Object.create(this.lexer),P={yy:{}};for(var z in this.yy)Object.prototype.hasOwnProperty.call(this.yy,z)&&(P.yy[z]=this.yy[z]);F.setInput(C,P.yy),P.yy.lexer=F,P.yy.parser=this,typeof F.yylloc>"u"&&(F.yylloc={});var $=F.yylloc;_.push($);var H=F.options&&F.options.ranges;typeof P.yy.parseError=="function"?this.parseError=P.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Q(ce){E.length=E.length-2*ce,S.length=S.length-ce,_.length=_.length-ce}o(Q,"popStack");function j(){var ce;return ce=A.pop()||F.lex()||M,typeof ce!="number"&&(ce instanceof Array&&(A=ce,ce=A.pop()),ce=T.symbols_[ce]||ce),ce}o(j,"lex");for(var ie,ne,le,he,K,X,te={},J,se,ue,Z;;){if(le=E[E.length-1],this.defaultActions[le]?he=this.defaultActions[le]:((ie===null||typeof ie>"u")&&(ie=j()),he=I[le]&&I[le][ie]),typeof he>"u"||!he.length||!he[0]){var Se="";Z=[];for(J in I[le])this.terminals_[J]&&J>O&&Z.push("'"+this.terminals_[J]+"'");F.showPosition?Se="Parse error on line "+(k+1)+`: +`+F.showPosition()+` +Expecting `+Z.join(", ")+", got '"+(this.terminals_[ie]||ie)+"'":Se="Parse error on line "+(k+1)+": Unexpected "+(ie==M?"end of input":"'"+(this.terminals_[ie]||ie)+"'"),this.parseError(Se,{text:F.match,token:this.terminals_[ie]||ie,line:F.yylineno,loc:$,expected:Z})}if(he[0]instanceof Array&&he.length>1)throw new Error("Parse Error: multiple actions possible at state: "+le+", token: "+ie);switch(he[0]){case 1:E.push(ie),S.push(F.yytext),_.push(F.yylloc),E.push(he[1]),ie=null,ne?(ie=ne,ne=null):(L=F.yyleng,D=F.yytext,k=F.yylineno,$=F.yylloc,R>0&&R--);break;case 2:if(se=this.productions_[he[1]][1],te.$=S[S.length-se],te._$={first_line:_[_.length-(se||1)].first_line,last_line:_[_.length-1].last_line,first_column:_[_.length-(se||1)].first_column,last_column:_[_.length-1].last_column},H&&(te._$.range=[_[_.length-(se||1)].range[0],_[_.length-1].range[1]]),X=this.performAction.apply(te,[D,L,k,P.yy,he[1],S,_].concat(B)),typeof X<"u")return X;se&&(E=E.slice(0,-1*se*2),S=S.slice(0,-1*se),_=_.slice(0,-1*se)),E.push(this.productions_[he[1]][0]),S.push(te.$),_.push(te._$),ue=I[E[E.length-2]][E[E.length-1]],E.push(ue);break;case 3:return!0}}return!0},"parse")},x=function(){var w={EOF:1,parseError:o(function(T,E){if(this.yy.parser)this.yy.parser.parseError(T,E);else throw new Error(T)},"parseError"),setInput:o(function(C,T){return this.yy=T||this.yy||{},this._input=C,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var C=this._input[0];this.yytext+=C,this.yyleng++,this.offset++,this.match+=C,this.matched+=C;var T=C.match(/(?:\r\n?|\n).*/g);return T?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),C},"input"),unput:o(function(C){var T=C.length,E=C.split(/(?:\r\n?|\n)/g);this._input=C+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-T),this.offset-=T;var A=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),E.length-1&&(this.yylineno-=E.length-1);var S=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:E?(E.length===A.length?this.yylloc.first_column:0)+A[A.length-E.length].length-E[0].length:this.yylloc.first_column-T},this.options.ranges&&(this.yylloc.range=[S[0],S[0]+this.yyleng-T]),this.yyleng=this.yytext.length,this},"unput"),more:o(function(){return this._more=!0,this},"more"),reject:o(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:o(function(C){this.unput(this.match.slice(C))},"less"),pastInput:o(function(){var C=this.matched.substr(0,this.matched.length-this.match.length);return(C.length>20?"...":"")+C.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var C=this.match;return C.length<20&&(C+=this._input.substr(0,20-C.length)),(C.substr(0,20)+(C.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var C=this.pastInput(),T=new Array(C.length+1).join("-");return C+this.upcomingInput()+` +`+T+"^"},"showPosition"),test_match:o(function(C,T){var E,A,S;if(this.options.backtrack_lexer&&(S={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(S.yylloc.range=this.yylloc.range.slice(0))),A=C[0].match(/(?:\r\n?|\n).*/g),A&&(this.yylineno+=A.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:A?A[A.length-1].length-A[A.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+C[0].length},this.yytext+=C[0],this.match+=C[0],this.matches=C,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(C[0].length),this.matched+=C[0],E=this.performAction.call(this,this.yy,this,T,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),E)return E;if(this._backtrack){for(var _ in S)this[_]=S[_];return!1}return!1},"test_match"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var C,T,E,A;this._more||(this.yytext="",this.match="");for(var S=this._currentRules(),_=0;_T[0].length)){if(T=E,A=_,this.options.backtrack_lexer){if(C=this.test_match(E,S[_]),C!==!1)return C;if(this._backtrack){T=!1;continue}else return!1}else if(!this.options.flex)break}return T?(C=this.test_match(T,S[A]),C!==!1?C:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var T=this.next();return T||this.lex()},"lex"),begin:o(function(T){this.conditionStack.push(T)},"begin"),popState:o(function(){var T=this.conditionStack.length-1;return T>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:o(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:o(function(T){return T=this.conditionStack.length-1-Math.abs(T||0),T>=0?this.conditionStack[T]:"INITIAL"},"topState"),pushState:o(function(T){this.begin(T)},"pushState"),stateStackSize:o(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:o(function(T,E,A,S){var _=S;switch(A){case 0:return 10;case 1:return T.getLogger().debug("Found space-block"),31;break;case 2:return T.getLogger().debug("Found nl-block"),31;break;case 3:return T.getLogger().debug("Found space-block"),29;break;case 4:T.getLogger().debug(".",E.yytext);break;case 5:T.getLogger().debug("_",E.yytext);break;case 6:return 5;case 7:return E.yytext=-1,28;break;case 8:return E.yytext=E.yytext.replace(/columns\s+/,""),T.getLogger().debug("COLUMNS (LEX)",E.yytext),28;break;case 9:this.pushState("md_string");break;case 10:return"MD_STR";case 11:this.popState();break;case 12:this.pushState("string");break;case 13:T.getLogger().debug("LEX: POPPING STR:",E.yytext),this.popState();break;case 14:return T.getLogger().debug("LEX: STR end:",E.yytext),"STR";break;case 15:return E.yytext=E.yytext.replace(/space\:/,""),T.getLogger().debug("SPACE NUM (LEX)",E.yytext),21;break;case 16:return E.yytext="1",T.getLogger().debug("COLUMNS (LEX)",E.yytext),21;break;case 17:return 43;case 18:return"LINKSTYLE";case 19:return"INTERPOLATE";case 20:return this.pushState("CLASSDEF"),40;break;case 21:return this.popState(),this.pushState("CLASSDEFID"),"DEFAULT_CLASSDEF_ID";break;case 22:return this.popState(),this.pushState("CLASSDEFID"),41;break;case 23:return this.popState(),42;break;case 24:return this.pushState("CLASS"),44;break;case 25:return this.popState(),this.pushState("CLASS_STYLE"),45;break;case 26:return this.popState(),46;break;case 27:return this.pushState("STYLE_STMNT"),47;break;case 28:return this.popState(),this.pushState("STYLE_DEFINITION"),48;break;case 29:return this.popState(),49;break;case 30:return this.pushState("acc_title"),"acc_title";break;case 31:return this.popState(),"acc_title_value";break;case 32:return this.pushState("acc_descr"),"acc_descr";break;case 33:return this.popState(),"acc_descr_value";break;case 34:this.pushState("acc_descr_multiline");break;case 35:this.popState();break;case 36:return"acc_descr_multiline_value";case 37:return 30;case 38:return this.popState(),T.getLogger().debug("Lex: (("),"NODE_DEND";break;case 39:return this.popState(),T.getLogger().debug("Lex: (("),"NODE_DEND";break;case 40:return this.popState(),T.getLogger().debug("Lex: ))"),"NODE_DEND";break;case 41:return this.popState(),T.getLogger().debug("Lex: (("),"NODE_DEND";break;case 42:return this.popState(),T.getLogger().debug("Lex: (("),"NODE_DEND";break;case 43:return this.popState(),T.getLogger().debug("Lex: (-"),"NODE_DEND";break;case 44:return this.popState(),T.getLogger().debug("Lex: -)"),"NODE_DEND";break;case 45:return this.popState(),T.getLogger().debug("Lex: (("),"NODE_DEND";break;case 46:return this.popState(),T.getLogger().debug("Lex: ]]"),"NODE_DEND";break;case 47:return this.popState(),T.getLogger().debug("Lex: ("),"NODE_DEND";break;case 48:return this.popState(),T.getLogger().debug("Lex: ])"),"NODE_DEND";break;case 49:return this.popState(),T.getLogger().debug("Lex: /]"),"NODE_DEND";break;case 50:return this.popState(),T.getLogger().debug("Lex: /]"),"NODE_DEND";break;case 51:return this.popState(),T.getLogger().debug("Lex: )]"),"NODE_DEND";break;case 52:return this.popState(),T.getLogger().debug("Lex: )"),"NODE_DEND";break;case 53:return this.popState(),T.getLogger().debug("Lex: ]>"),"NODE_DEND";break;case 54:return this.popState(),T.getLogger().debug("Lex: ]"),"NODE_DEND";break;case 55:return T.getLogger().debug("Lexa: -)"),this.pushState("NODE"),36;break;case 56:return T.getLogger().debug("Lexa: (-"),this.pushState("NODE"),36;break;case 57:return T.getLogger().debug("Lexa: ))"),this.pushState("NODE"),36;break;case 58:return T.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;break;case 59:return T.getLogger().debug("Lex: ((("),this.pushState("NODE"),36;break;case 60:return T.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;break;case 61:return T.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;break;case 62:return T.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;break;case 63:return T.getLogger().debug("Lexc: >"),this.pushState("NODE"),36;break;case 64:return T.getLogger().debug("Lexa: (["),this.pushState("NODE"),36;break;case 65:return T.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;break;case 66:return this.pushState("NODE"),36;break;case 67:return this.pushState("NODE"),36;break;case 68:return this.pushState("NODE"),36;break;case 69:return this.pushState("NODE"),36;break;case 70:return this.pushState("NODE"),36;break;case 71:return this.pushState("NODE"),36;break;case 72:return this.pushState("NODE"),36;break;case 73:return T.getLogger().debug("Lexa: ["),this.pushState("NODE"),36;break;case 74:return this.pushState("BLOCK_ARROW"),T.getLogger().debug("LEX ARR START"),38;break;case 75:return T.getLogger().debug("Lex: NODE_ID",E.yytext),32;break;case 76:return T.getLogger().debug("Lex: EOF",E.yytext),8;break;case 77:this.pushState("md_string");break;case 78:this.pushState("md_string");break;case 79:return"NODE_DESCR";case 80:this.popState();break;case 81:T.getLogger().debug("Lex: Starting string"),this.pushState("string");break;case 82:T.getLogger().debug("LEX ARR: Starting string"),this.pushState("string");break;case 83:return T.getLogger().debug("LEX: NODE_DESCR:",E.yytext),"NODE_DESCR";break;case 84:T.getLogger().debug("LEX POPPING"),this.popState();break;case 85:T.getLogger().debug("Lex: =>BAE"),this.pushState("ARROW_DIR");break;case 86:return E.yytext=E.yytext.replace(/^,\s*/,""),T.getLogger().debug("Lex (right): dir:",E.yytext),"DIR";break;case 87:return E.yytext=E.yytext.replace(/^,\s*/,""),T.getLogger().debug("Lex (left):",E.yytext),"DIR";break;case 88:return E.yytext=E.yytext.replace(/^,\s*/,""),T.getLogger().debug("Lex (x):",E.yytext),"DIR";break;case 89:return E.yytext=E.yytext.replace(/^,\s*/,""),T.getLogger().debug("Lex (y):",E.yytext),"DIR";break;case 90:return E.yytext=E.yytext.replace(/^,\s*/,""),T.getLogger().debug("Lex (up):",E.yytext),"DIR";break;case 91:return E.yytext=E.yytext.replace(/^,\s*/,""),T.getLogger().debug("Lex (down):",E.yytext),"DIR";break;case 92:return E.yytext="]>",T.getLogger().debug("Lex (ARROW_DIR end):",E.yytext),this.popState(),this.popState(),"BLOCK_ARROW_END";break;case 93:return T.getLogger().debug("Lex: LINK","#"+E.yytext+"#"),15;break;case 94:return T.getLogger().debug("Lex: LINK",E.yytext),15;break;case 95:return T.getLogger().debug("Lex: LINK",E.yytext),15;break;case 96:return T.getLogger().debug("Lex: LINK",E.yytext),15;break;case 97:return T.getLogger().debug("Lex: START_LINK",E.yytext),this.pushState("LLABEL"),16;break;case 98:return T.getLogger().debug("Lex: START_LINK",E.yytext),this.pushState("LLABEL"),16;break;case 99:return T.getLogger().debug("Lex: START_LINK",E.yytext),this.pushState("LLABEL"),16;break;case 100:this.pushState("md_string");break;case 101:return T.getLogger().debug("Lex: Starting string"),this.pushState("string"),"LINK_LABEL";break;case 102:return this.popState(),T.getLogger().debug("Lex: LINK","#"+E.yytext+"#"),15;break;case 103:return this.popState(),T.getLogger().debug("Lex: LINK",E.yytext),15;break;case 104:return this.popState(),T.getLogger().debug("Lex: LINK",E.yytext),15;break;case 105:return T.getLogger().debug("Lex: COLON",E.yytext),E.yytext=E.yytext.slice(1),27;break}},"anonymous"),rules:[/^(?:block-beta\b)/,/^(?:block\s+)/,/^(?:block\n+)/,/^(?:block:)/,/^(?:[\s]+)/,/^(?:[\n]+)/,/^(?:((\u000D\u000A)|(\u000A)))/,/^(?:columns\s+auto\b)/,/^(?:columns\s+[\d]+)/,/^(?:["][`])/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:space[:]\d+)/,/^(?:space\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\s+)/,/^(?:DEFAULT\s+)/,/^(?:\w+\s+)/,/^(?:[^\n]*)/,/^(?:class\s+)/,/^(?:(\w+)+((,\s*\w+)*))/,/^(?:[^\n]*)/,/^(?:style\s+)/,/^(?:(\w+)+((,\s*\w+)*))/,/^(?:[^\n]*)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:end\b\s*)/,/^(?:\(\(\()/,/^(?:\)\)\))/,/^(?:[\)]\))/,/^(?:\}\})/,/^(?:\})/,/^(?:\(-)/,/^(?:-\))/,/^(?:\(\()/,/^(?:\]\])/,/^(?:\()/,/^(?:\]\))/,/^(?:\\\])/,/^(?:\/\])/,/^(?:\)\])/,/^(?:[\)])/,/^(?:\]>)/,/^(?:[\]])/,/^(?:-\))/,/^(?:\(-)/,/^(?:\)\))/,/^(?:\))/,/^(?:\(\(\()/,/^(?:\(\()/,/^(?:\{\{)/,/^(?:\{)/,/^(?:>)/,/^(?:\(\[)/,/^(?:\()/,/^(?:\[\[)/,/^(?:\[\|)/,/^(?:\[\()/,/^(?:\)\)\))/,/^(?:\[\\)/,/^(?:\[\/)/,/^(?:\[\\)/,/^(?:\[)/,/^(?:<\[)/,/^(?:[^\(\[\n\-\)\{\}\s\<\>:]+)/,/^(?:$)/,/^(?:["][`])/,/^(?:["][`])/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["])/,/^(?:["])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:\]>\s*\()/,/^(?:,?\s*right\s*)/,/^(?:,?\s*left\s*)/,/^(?:,?\s*x\s*)/,/^(?:,?\s*y\s*)/,/^(?:,?\s*up\s*)/,/^(?:,?\s*down\s*)/,/^(?:\)\s*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*~~[\~]+\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:["][`])/,/^(?:["])/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?::\d+)/],conditions:{STYLE_DEFINITION:{rules:[29],inclusive:!1},STYLE_STMNT:{rules:[28],inclusive:!1},CLASSDEFID:{rules:[23],inclusive:!1},CLASSDEF:{rules:[21,22],inclusive:!1},CLASS_STYLE:{rules:[26],inclusive:!1},CLASS:{rules:[25],inclusive:!1},LLABEL:{rules:[100,101,102,103,104],inclusive:!1},ARROW_DIR:{rules:[86,87,88,89,90,91,92],inclusive:!1},BLOCK_ARROW:{rules:[77,82,85],inclusive:!1},NODE:{rules:[38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,78,81],inclusive:!1},md_string:{rules:[10,11,79,80],inclusive:!1},space:{rules:[],inclusive:!1},string:{rules:[13,14,83,84],inclusive:!1},acc_descr_multiline:{rules:[35,36],inclusive:!1},acc_descr:{rules:[33],inclusive:!1},acc_title:{rules:[31],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,12,15,16,17,18,19,20,24,27,30,32,34,37,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,93,94,95,96,97,98,99,105],inclusive:!0}}};return w}();v.lexer=x;function b(){this.yy={}}return o(b,"Parser"),b.prototype=v,v.Parser=b,new b}();KB.parser=KB;bye=KB});function Yet(t){switch(Y.debug("typeStr2Type",t),t){case"[]":return"square";case"()":return Y.debug("we have a round"),"round";case"(())":return"circle";case">]":return"rect_left_inv_arrow";case"{}":return"diamond";case"{{}}":return"hexagon";case"([])":return"stadium";case"[[]]":return"subroutine";case"[()]":return"cylinder";case"((()))":return"doublecircle";case"[//]":return"lean_right";case"[\\\\]":return"lean_left";case"[/\\]":return"trapezoid";case"[\\/]":return"inv_trapezoid";case"<[]>":return"block_arrow";default:return"na"}}function Xet(t){switch(Y.debug("typeStr2Type",t),t){case"==":return"thick";default:return"normal"}}function jet(t){switch(t.trim()){case"--x":return"arrow_cross";case"--o":return"arrow_circle";default:return"arrow_point"}}var Ul,ZB,QB,Tye,kye,zet,Sye,Get,eC,Vet,Uet,Het,Wet,Cye,JB,y4,qet,Eye,Ket,Qet,Zet,Jet,ett,ttt,rtt,ntt,itt,att,stt,Aye,_ye=N(()=>{"use strict";gL();ji();zt();vt();gr();mi();Ul=new Map,ZB=[],QB=new Map,Tye="color",kye="fill",zet="bgFill",Sye=",",Get=me(),eC=new Map,Vet=o(t=>Ze.sanitizeText(t,Get),"sanitizeText"),Uet=o(function(t,e=""){let r=eC.get(t);r||(r={id:t,styles:[],textStyles:[]},eC.set(t,r)),e?.split(Sye).forEach(n=>{let i=n.replace(/([^;]*);/,"$1").trim();if(RegExp(Tye).exec(n)){let s=i.replace(kye,zet).replace(Tye,kye);r.textStyles.push(s)}r.styles.push(i)})},"addStyleClass"),Het=o(function(t,e=""){let r=Ul.get(t);e!=null&&(r.styles=e.split(Sye))},"addStyle2Node"),Wet=o(function(t,e){t.split(",").forEach(function(r){let n=Ul.get(r);if(n===void 0){let i=r.trim();n={id:i,type:"na",children:[]},Ul.set(i,n)}n.classes||(n.classes=[]),n.classes.push(e)})},"setCssClass"),Cye=o((t,e)=>{let r=t.flat(),n=[];for(let i of r){if(i.label&&(i.label=Vet(i.label)),i.type==="classDef"){Uet(i.id,i.css);continue}if(i.type==="applyClass"){Wet(i.id,i?.styleClass??"");continue}if(i.type==="applyStyles"){i?.stylesStr&&Het(i.id,i?.stylesStr);continue}if(i.type==="column-setting")e.columns=i.columns??-1;else if(i.type==="edge"){let a=(QB.get(i.id)??0)+1;QB.set(i.id,a),i.id=a+"-"+i.id,ZB.push(i)}else{i.label||(i.type==="composite"?i.label="":i.label=i.id);let a=Ul.get(i.id);if(a===void 0?Ul.set(i.id,i):(i.type!=="na"&&(a.type=i.type),i.label!==i.id&&(a.label=i.label)),i.children&&Cye(i.children,i),i.type==="space"){let s=i.width??1;for(let l=0;l{Y.debug("Clear called"),Ar(),y4={id:"root",type:"composite",children:[],columns:-1},Ul=new Map([["root",y4]]),JB=[],eC=new Map,ZB=[],QB=new Map},"clear");o(Yet,"typeStr2Type");o(Xet,"edgeTypeStr2Type");o(jet,"edgeStrToEdgeData");Eye=0,Ket=o(()=>(Eye++,"id-"+Math.random().toString(36).substr(2,12)+"-"+Eye),"generateId"),Qet=o(t=>{y4.children=t,Cye(t,y4),JB=y4.children},"setHierarchy"),Zet=o(t=>{let e=Ul.get(t);return e?e.columns?e.columns:e.children?e.children.length:-1:-1},"getColumns"),Jet=o(()=>[...Ul.values()],"getBlocksFlat"),ett=o(()=>JB||[],"getBlocks"),ttt=o(()=>ZB,"getEdges"),rtt=o(t=>Ul.get(t),"getBlock"),ntt=o(t=>{Ul.set(t.id,t)},"setBlock"),itt=o(()=>console,"getLogger"),att=o(function(){return eC},"getClasses"),stt={getConfig:o(()=>cr().block,"getConfig"),typeStr2Type:Yet,edgeTypeStr2Type:Xet,edgeStrToEdgeData:jet,getLogger:itt,getBlocksFlat:Jet,getBlocks:ett,getEdges:ttt,setHierarchy:Qet,getBlock:rtt,setBlock:ntt,getColumns:Zet,getClasses:att,clear:qet,generateId:Ket},Aye=stt});var tC,ott,Dye,Lye=N(()=>{"use strict";Ys();tC=o((t,e)=>{let r=Kf,n=r(t,"r"),i=r(t,"g"),a=r(t,"b");return qa(n,i,a,e)},"fade"),ott=o(t=>`.label { + font-family: ${t.fontFamily}; + color: ${t.nodeTextColor||t.textColor}; + } + .cluster-label text { + fill: ${t.titleColor}; + } + .cluster-label span,p { + color: ${t.titleColor}; + } + + + + .label text,span,p { + fill: ${t.nodeTextColor||t.textColor}; + color: ${t.nodeTextColor||t.textColor}; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${t.mainBkg}; + stroke: ${t.nodeBorder}; + stroke-width: 1px; + } + .flowchart-label text { + text-anchor: middle; + } + // .flowchart-label .text-outer-tspan { + // text-anchor: middle; + // } + // .flowchart-label .text-inner-tspan { + // text-anchor: start; + // } + + .node .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + .arrowheadPath { + fill: ${t.arrowheadColor}; + } + + .edgePath .path { + stroke: ${t.lineColor}; + stroke-width: 2.0px; + } + + .flowchart-link { + stroke: ${t.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${t.edgeLabelBackground}; + rect { + opacity: 0.5; + background-color: ${t.edgeLabelBackground}; + fill: ${t.edgeLabelBackground}; + } + text-align: center; + } + + /* For html labels only */ + .labelBkg { + background-color: ${tC(t.edgeLabelBackground,.5)}; + // background-color: + } + + .node .cluster { + // fill: ${tC(t.mainBkg,.5)}; + fill: ${tC(t.clusterBkg,.5)}; + stroke: ${tC(t.clusterBorder,.2)}; + box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; + stroke-width: 1px; + } + + .cluster text { + fill: ${t.titleColor}; + } + + .cluster span,p { + color: ${t.titleColor}; + } + /* .cluster div { + color: ${t.titleColor}; + } */ + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${t.fontFamily}; + font-size: 12px; + background: ${t.tertiaryColor}; + border: 1px solid ${t.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .flowchartTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${t.textColor}; + } +`,"getStyles"),Dye=ott});var ltt,ctt,utt,htt,ftt,dtt,ptt,mtt,gtt,ytt,vtt,Rye,Nye=N(()=>{"use strict";vt();ltt=o((t,e,r,n)=>{e.forEach(i=>{vtt[i](t,r,n)})},"insertMarkers"),ctt=o((t,e,r)=>{Y.trace("Making markers for ",r),t.append("defs").append("marker").attr("id",r+"_"+e+"-extensionStart").attr("class","marker extension "+e).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 1,7 L18,13 V 1 Z"),t.append("defs").append("marker").attr("id",r+"_"+e+"-extensionEnd").attr("class","marker extension "+e).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 1,1 V 13 L18,7 Z")},"extension"),utt=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-compositionStart").attr("class","marker composition "+e).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),t.append("defs").append("marker").attr("id",r+"_"+e+"-compositionEnd").attr("class","marker composition "+e).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z")},"composition"),htt=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-aggregationStart").attr("class","marker aggregation "+e).attr("refX",18).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),t.append("defs").append("marker").attr("id",r+"_"+e+"-aggregationEnd").attr("class","marker aggregation "+e).attr("refX",1).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z")},"aggregation"),ftt=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-dependencyStart").attr("class","marker dependency "+e).attr("refX",6).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 5,7 L9,13 L1,7 L9,1 Z"),t.append("defs").append("marker").attr("id",r+"_"+e+"-dependencyEnd").attr("class","marker dependency "+e).attr("refX",13).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L14,7 L9,1 Z")},"dependency"),dtt=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-lollipopStart").attr("class","marker lollipop "+e).attr("refX",13).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("circle").attr("stroke","black").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6),t.append("defs").append("marker").attr("id",r+"_"+e+"-lollipopEnd").attr("class","marker lollipop "+e).attr("refX",1).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("circle").attr("stroke","black").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6)},"lollipop"),ptt=o((t,e,r)=>{t.append("marker").attr("id",r+"_"+e+"-pointEnd").attr("class","marker "+e).attr("viewBox","0 0 10 10").attr("refX",6).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 0 0 L 10 5 L 0 10 z").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),t.append("marker").attr("id",r+"_"+e+"-pointStart").attr("class","marker "+e).attr("viewBox","0 0 10 10").attr("refX",4.5).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 0 5 L 10 10 L 10 0 z").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0")},"point"),mtt=o((t,e,r)=>{t.append("marker").attr("id",r+"_"+e+"-circleEnd").attr("class","marker "+e).attr("viewBox","0 0 10 10").attr("refX",11).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0"),t.append("marker").attr("id",r+"_"+e+"-circleStart").attr("class","marker "+e).attr("viewBox","0 0 10 10").attr("refX",-1).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("circle").attr("cx","5").attr("cy","5").attr("r","5").attr("class","arrowMarkerPath").style("stroke-width",1).style("stroke-dasharray","1,0")},"circle"),gtt=o((t,e,r)=>{t.append("marker").attr("id",r+"_"+e+"-crossEnd").attr("class","marker cross "+e).attr("viewBox","0 0 11 11").attr("refX",12).attr("refY",5.2).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("path").attr("d","M 1,1 l 9,9 M 10,1 l -9,9").attr("class","arrowMarkerPath").style("stroke-width",2).style("stroke-dasharray","1,0"),t.append("marker").attr("id",r+"_"+e+"-crossStart").attr("class","marker cross "+e).attr("viewBox","0 0 11 11").attr("refX",-1).attr("refY",5.2).attr("markerUnits","userSpaceOnUse").attr("markerWidth",11).attr("markerHeight",11).attr("orient","auto").append("path").attr("d","M 1,1 l 9,9 M 10,1 l -9,9").attr("class","arrowMarkerPath").style("stroke-width",2).style("stroke-dasharray","1,0")},"cross"),ytt=o((t,e,r)=>{t.append("defs").append("marker").attr("id",r+"_"+e+"-barbEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",14).attr("markerUnits","strokeWidth").attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},"barb"),vtt={extension:ctt,composition:utt,aggregation:htt,dependency:ftt,lollipop:dtt,point:ptt,circle:mtt,cross:gtt,barb:ytt},Rye=ltt});function xtt(t,e){if(t===0||!Number.isInteger(t))throw new Error("Columns must be an integer !== 0.");if(e<0||!Number.isInteger(e))throw new Error("Position must be a non-negative integer."+e);if(t<0)return{px:e,py:0};if(t===1)return{px:0,py:e};let r=e%t,n=Math.floor(e/t);return{px:r,py:n}}function eF(t,e,r=0,n=0){Y.debug("setBlockSizes abc95 (start)",t.id,t?.size?.x,"block width =",t?.size,"sieblingWidth",r),t?.size?.width||(t.size={width:r,height:n,x:0,y:0});let i=0,a=0;if(t.children?.length>0){for(let m of t.children)eF(m,e);let s=btt(t);i=s.width,a=s.height,Y.debug("setBlockSizes abc95 maxWidth of",t.id,":s children is ",i,a);for(let m of t.children)m.size&&(Y.debug(`abc95 Setting size of children of ${t.id} id=${m.id} ${i} ${a} ${JSON.stringify(m.size)}`),m.size.width=i*(m.widthInColumns??1)+bi*((m.widthInColumns??1)-1),m.size.height=a,m.size.x=0,m.size.y=0,Y.debug(`abc95 updating size of ${t.id} children child:${m.id} maxWidth:${i} maxHeight:${a}`));for(let m of t.children)eF(m,e,i,a);let l=t.columns??-1,u=0;for(let m of t.children)u+=m.widthInColumns??1;let h=t.children.length;l>0&&l0?Math.min(t.children.length,l):t.children.length;if(m>0){let g=(d-m*bi-bi)/m;Y.debug("abc95 (growing to fit) width",t.id,d,t.size?.width,g);for(let y of t.children)y.size&&(y.size.width=g)}}t.size={width:d,height:p,x:0,y:0}}Y.debug("setBlockSizes abc94 (done)",t.id,t?.size?.x,t?.size?.width,t?.size?.y,t?.size?.height)}function Mye(t,e){Y.debug(`abc85 layout blocks (=>layoutBlocks) ${t.id} x: ${t?.size?.x} y: ${t?.size?.y} width: ${t?.size?.width}`);let r=t.columns??-1;if(Y.debug("layoutBlocks columns abc95",t.id,"=>",r,t),t.children&&t.children.length>0){let n=t?.children[0]?.size?.width??0,i=t.children.length*n+(t.children.length-1)*bi;Y.debug("widthOfChildren 88",i,"posX");let a=0;Y.debug("abc91 block?.size?.x",t.id,t?.size?.x);let s=t?.size?.x?t?.size?.x+(-t?.size?.width/2||0):-bi,l=0;for(let u of t.children){let h=t;if(!u.size)continue;let{width:f,height:d}=u.size,{px:p,py:m}=xtt(r,a);if(m!=l&&(l=m,s=t?.size?.x?t?.size?.x+(-t?.size?.width/2||0):-bi,Y.debug("New row in layout for block",t.id," and child ",u.id,l)),Y.debug(`abc89 layout blocks (child) id: ${u.id} Pos: ${a} (px, py) ${p},${m} (${h?.size?.x},${h?.size?.y}) parent: ${h.id} width: ${f}${bi}`),h.size){let g=f/2;u.size.x=s+bi+g,Y.debug(`abc91 layout blocks (calc) px, pyid:${u.id} startingPos=X${s} new startingPosX${u.size.x} ${g} padding=${bi} width=${f} halfWidth=${g} => x:${u.size.x} y:${u.size.y} ${u.widthInColumns} (width * (child?.w || 1)) / 2 ${f*(u?.widthInColumns??1)/2}`),s=u.size.x+g,u.size.y=h.size.y-h.size.height/2+m*(d+bi)+d/2+bi,Y.debug(`abc88 layout blocks (calc) px, pyid:${u.id}startingPosX${s}${bi}${g}=>x:${u.size.x}y:${u.size.y}${u.widthInColumns}(width * (child?.w || 1)) / 2${f*(u?.widthInColumns??1)/2}`)}u.children&&Mye(u,e),a+=u?.widthInColumns??1,Y.debug("abc88 columnsPos",u,a)}}Y.debug(`layout blocks (<==layoutBlocks) ${t.id} x: ${t?.size?.x} y: ${t?.size?.y} width: ${t?.size?.width}`)}function Iye(t,{minX:e,minY:r,maxX:n,maxY:i}={minX:0,minY:0,maxX:0,maxY:0}){if(t.size&&t.id!=="root"){let{x:a,y:s,width:l,height:u}=t.size;a-l/2n&&(n=a+l/2),s+u/2>i&&(i=s+u/2)}if(t.children)for(let a of t.children)({minX:e,minY:r,maxX:n,maxY:i}=Iye(a,{minX:e,minY:r,maxX:n,maxY:i}));return{minX:e,minY:r,maxX:n,maxY:i}}function Oye(t){let e=t.getBlock("root");if(!e)return;eF(e,t,0,0),Mye(e,t),Y.debug("getBlocks",JSON.stringify(e,null,2));let{minX:r,minY:n,maxX:i,maxY:a}=Iye(e),s=a-n,l=i-r;return{x:r,y:n,width:l,height:s}}var bi,btt,Pye=N(()=>{"use strict";vt();zt();bi=me()?.block?.padding??8;o(xtt,"calculateBlockPosition");btt=o(t=>{let e=0,r=0;for(let n of t.children){let{width:i,height:a,x:s,y:l}=n.size??{width:0,height:0,x:0,y:0};Y.debug("getMaxChildSize abc95 child:",n.id,"width:",i,"height:",a,"x:",s,"y:",l,n.type),n.type!=="space"&&(i>e&&(e=i/(t.widthInColumns??1)),a>r&&(r=a))}return{width:e,height:r}},"getMaxChildSize");o(eF,"setBlockSizes");o(Mye,"layoutBlocks");o(Iye,"findBounds");o(Oye,"layout")});function Bye(t,e){e&&t.attr("style",e)}function wtt(t){let e=Ge(document.createElementNS("http://www.w3.org/2000/svg","foreignObject")),r=e.append("xhtml:div"),n=t.label,i=t.isNode?"nodeLabel":"edgeLabel",a=r.append("span");return a.html(n),Bye(a,t.labelStyle),a.attr("class",i),Bye(r,t.labelStyle),r.style("display","inline-block"),r.style("white-space","nowrap"),r.attr("xmlns","http://www.w3.org/1999/xhtml"),e.node()}var Ttt,vs,rC=N(()=>{"use strict";dr();vt();zt();gr();ir();to();o(Bye,"applyStyle");o(wtt,"addHtmlLabel");Ttt=o((t,e,r,n)=>{let i=t||"";if(typeof i=="object"&&(i=i[0]),fr(me().flowchart.htmlLabels)){i=i.replace(/\\n|\n/g,"
    "),Y.debug("vertexText"+i);let a={isNode:n,label:DD(na(i)),labelStyle:e.replace("fill:","color:")};return wtt(a)}else{let a=document.createElementNS("http://www.w3.org/2000/svg","text");a.setAttribute("style",e.replace("color:","fill:"));let s=[];typeof i=="string"?s=i.split(/\\n|\n|/gi):Array.isArray(i)?s=i:s=[];for(let l of s){let u=document.createElementNS("http://www.w3.org/2000/svg","tspan");u.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),u.setAttribute("dy","1em"),u.setAttribute("x","0"),r?u.setAttribute("class","title-row"):u.setAttribute("class","row"),u.textContent=l.trim(),a.appendChild(u)}return a}},"createLabel"),vs=Ttt});var $ye,ktt,Fye,zye=N(()=>{"use strict";vt();$ye=o((t,e,r,n,i)=>{e.arrowTypeStart&&Fye(t,"start",e.arrowTypeStart,r,n,i),e.arrowTypeEnd&&Fye(t,"end",e.arrowTypeEnd,r,n,i)},"addEdgeMarkers"),ktt={arrow_cross:"cross",arrow_point:"point",arrow_barb:"barb",arrow_circle:"circle",aggregation:"aggregation",extension:"extension",composition:"composition",dependency:"dependency",lollipop:"lollipop"},Fye=o((t,e,r,n,i,a)=>{let s=ktt[r];if(!s){Y.warn(`Unknown arrow type: ${r}`);return}let l=e==="start"?"Start":"End";t.attr(`marker-${e}`,`url(${n}#${i}_${a}-${s}${l})`)},"addEdgeMarker")});function nC(t,e){me().flowchart.htmlLabels&&t&&(t.style.width=e.length*9+"px",t.style.height="12px")}var tF,Ua,Vye,Uye,Ett,Stt,Gye,Hye,Wye=N(()=>{"use strict";vt();rC();to();dr();zt();ir();gr();JD();w2();zye();tF={},Ua={},Vye=o((t,e)=>{let r=me(),n=fr(r.flowchart.htmlLabels),i=e.labelType==="markdown"?Hn(t,e.label,{style:e.labelStyle,useHtmlLabels:n,addSvgBackground:!0},r):vs(e.label,e.labelStyle),a=t.insert("g").attr("class","edgeLabel"),s=a.insert("g").attr("class","label");s.node().appendChild(i);let l=i.getBBox();if(n){let h=i.children[0],f=Ge(i);l=h.getBoundingClientRect(),f.attr("width",l.width),f.attr("height",l.height)}s.attr("transform","translate("+-l.width/2+", "+-l.height/2+")"),tF[e.id]=a,e.width=l.width,e.height=l.height;let u;if(e.startLabelLeft){let h=vs(e.startLabelLeft,e.labelStyle),f=t.insert("g").attr("class","edgeTerminals"),d=f.insert("g").attr("class","inner");u=d.node().appendChild(h);let p=h.getBBox();d.attr("transform","translate("+-p.width/2+", "+-p.height/2+")"),Ua[e.id]||(Ua[e.id]={}),Ua[e.id].startLeft=f,nC(u,e.startLabelLeft)}if(e.startLabelRight){let h=vs(e.startLabelRight,e.labelStyle),f=t.insert("g").attr("class","edgeTerminals"),d=f.insert("g").attr("class","inner");u=f.node().appendChild(h),d.node().appendChild(h);let p=h.getBBox();d.attr("transform","translate("+-p.width/2+", "+-p.height/2+")"),Ua[e.id]||(Ua[e.id]={}),Ua[e.id].startRight=f,nC(u,e.startLabelRight)}if(e.endLabelLeft){let h=vs(e.endLabelLeft,e.labelStyle),f=t.insert("g").attr("class","edgeTerminals"),d=f.insert("g").attr("class","inner");u=d.node().appendChild(h);let p=h.getBBox();d.attr("transform","translate("+-p.width/2+", "+-p.height/2+")"),f.node().appendChild(h),Ua[e.id]||(Ua[e.id]={}),Ua[e.id].endLeft=f,nC(u,e.endLabelLeft)}if(e.endLabelRight){let h=vs(e.endLabelRight,e.labelStyle),f=t.insert("g").attr("class","edgeTerminals"),d=f.insert("g").attr("class","inner");u=d.node().appendChild(h);let p=h.getBBox();d.attr("transform","translate("+-p.width/2+", "+-p.height/2+")"),f.node().appendChild(h),Ua[e.id]||(Ua[e.id]={}),Ua[e.id].endRight=f,nC(u,e.endLabelRight)}return i},"insertEdgeLabel");o(nC,"setTerminalWidth");Uye=o((t,e)=>{Y.debug("Moving label abc88 ",t.id,t.label,tF[t.id],e);let r=e.updatedPath?e.updatedPath:e.originalPath,n=me(),{subGraphTitleTotalMargin:i}=Ru(n);if(t.label){let a=tF[t.id],s=t.x,l=t.y;if(r){let u=Gt.calcLabelPosition(r);Y.debug("Moving label "+t.label+" from (",s,",",l,") to (",u.x,",",u.y,") abc88"),e.updatedPath&&(s=u.x,l=u.y)}a.attr("transform",`translate(${s}, ${l+i/2})`)}if(t.startLabelLeft){let a=Ua[t.id].startLeft,s=t.x,l=t.y;if(r){let u=Gt.calcTerminalLabelPosition(t.arrowTypeStart?10:0,"start_left",r);s=u.x,l=u.y}a.attr("transform",`translate(${s}, ${l})`)}if(t.startLabelRight){let a=Ua[t.id].startRight,s=t.x,l=t.y;if(r){let u=Gt.calcTerminalLabelPosition(t.arrowTypeStart?10:0,"start_right",r);s=u.x,l=u.y}a.attr("transform",`translate(${s}, ${l})`)}if(t.endLabelLeft){let a=Ua[t.id].endLeft,s=t.x,l=t.y;if(r){let u=Gt.calcTerminalLabelPosition(t.arrowTypeEnd?10:0,"end_left",r);s=u.x,l=u.y}a.attr("transform",`translate(${s}, ${l})`)}if(t.endLabelRight){let a=Ua[t.id].endRight,s=t.x,l=t.y;if(r){let u=Gt.calcTerminalLabelPosition(t.arrowTypeEnd?10:0,"end_right",r);s=u.x,l=u.y}a.attr("transform",`translate(${s}, ${l})`)}},"positionEdgeLabel"),Ett=o((t,e)=>{let r=t.x,n=t.y,i=Math.abs(e.x-r),a=Math.abs(e.y-n),s=t.width/2,l=t.height/2;return i>=s||a>=l},"outsideNode"),Stt=o((t,e,r)=>{Y.debug(`intersection calc abc89: + outsidePoint: ${JSON.stringify(e)} + insidePoint : ${JSON.stringify(r)} + node : x:${t.x} y:${t.y} w:${t.width} h:${t.height}`);let n=t.x,i=t.y,a=Math.abs(n-r.x),s=t.width/2,l=r.xMath.abs(n-e.x)*u){let d=r.y{Y.debug("abc88 cutPathAtIntersect",t,e);let r=[],n=t[0],i=!1;return t.forEach(a=>{if(!Ett(e,a)&&!i){let s=Stt(e,n,a),l=!1;r.forEach(u=>{l=l||u.x===s.x&&u.y===s.y}),r.some(u=>u.x===s.x&&u.y===s.y)||r.push(s),i=!0}else n=a,i||r.push(a)}),r},"cutPathAtIntersect"),Hye=o(function(t,e,r,n,i,a,s){let l=r.points;Y.debug("abc88 InsertEdge: edge=",r,"e=",e);let u=!1,h=a.node(e.v);var f=a.node(e.w);f?.intersect&&h?.intersect&&(l=l.slice(1,r.points.length-1),l.unshift(h.intersect(l[0])),l.push(f.intersect(l[l.length-1]))),r.toCluster&&(Y.debug("to cluster abc88",n[r.toCluster]),l=Gye(r.points,n[r.toCluster].node),u=!0),r.fromCluster&&(Y.debug("from cluster abc88",n[r.fromCluster]),l=Gye(l.reverse(),n[r.fromCluster].node).reverse(),u=!0);let d=l.filter(C=>!Number.isNaN(C.y)),p=Do;r.curve&&(i==="graph"||i==="flowchart")&&(p=r.curve);let{x:m,y:g}=qw(r),y=wl().x(m).y(g).curve(p),v;switch(r.thickness){case"normal":v="edge-thickness-normal";break;case"thick":v="edge-thickness-thick";break;case"invisible":v="edge-thickness-thick";break;default:v=""}switch(r.pattern){case"solid":v+=" edge-pattern-solid";break;case"dotted":v+=" edge-pattern-dotted";break;case"dashed":v+=" edge-pattern-dashed";break}let x=t.append("path").attr("d",y(d)).attr("id",r.id).attr("class"," "+v+(r.classes?" "+r.classes:"")).attr("style",r.style),b="";(me().flowchart.arrowMarkerAbsolute||me().state.arrowMarkerAbsolute)&&(b=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,b=b.replace(/\(/g,"\\("),b=b.replace(/\)/g,"\\)")),$ye(x,r,b,s,i);let w={};return u&&(w.updatedPath=l),w.originalPath=r.points,w},"insertEdge")});var Ctt,qye,Yye=N(()=>{"use strict";Ctt=o(t=>{let e=new Set;for(let r of t)switch(r){case"x":e.add("right"),e.add("left");break;case"y":e.add("up"),e.add("down");break;default:e.add(r);break}return e},"expandAndDeduplicateDirections"),qye=o((t,e,r)=>{let n=Ctt(t),i=2,a=e.height+2*r.padding,s=a/i,l=e.width+2*s+r.padding,u=r.padding/2;return n.has("right")&&n.has("left")&&n.has("up")&&n.has("down")?[{x:0,y:0},{x:s,y:0},{x:l/2,y:2*u},{x:l-s,y:0},{x:l,y:0},{x:l,y:-a/3},{x:l+2*u,y:-a/2},{x:l,y:-2*a/3},{x:l,y:-a},{x:l-s,y:-a},{x:l/2,y:-a-2*u},{x:s,y:-a},{x:0,y:-a},{x:0,y:-2*a/3},{x:-2*u,y:-a/2},{x:0,y:-a/3}]:n.has("right")&&n.has("left")&&n.has("up")?[{x:s,y:0},{x:l-s,y:0},{x:l,y:-a/2},{x:l-s,y:-a},{x:s,y:-a},{x:0,y:-a/2}]:n.has("right")&&n.has("left")&&n.has("down")?[{x:0,y:0},{x:s,y:-a},{x:l-s,y:-a},{x:l,y:0}]:n.has("right")&&n.has("up")&&n.has("down")?[{x:0,y:0},{x:l,y:-s},{x:l,y:-a+s},{x:0,y:-a}]:n.has("left")&&n.has("up")&&n.has("down")?[{x:l,y:0},{x:0,y:-s},{x:0,y:-a+s},{x:l,y:-a}]:n.has("right")&&n.has("left")?[{x:s,y:0},{x:s,y:-u},{x:l-s,y:-u},{x:l-s,y:0},{x:l,y:-a/2},{x:l-s,y:-a},{x:l-s,y:-a+u},{x:s,y:-a+u},{x:s,y:-a},{x:0,y:-a/2}]:n.has("up")&&n.has("down")?[{x:l/2,y:0},{x:0,y:-u},{x:s,y:-u},{x:s,y:-a+u},{x:0,y:-a+u},{x:l/2,y:-a},{x:l,y:-a+u},{x:l-s,y:-a+u},{x:l-s,y:-u},{x:l,y:-u}]:n.has("right")&&n.has("up")?[{x:0,y:0},{x:l,y:-s},{x:0,y:-a}]:n.has("right")&&n.has("down")?[{x:0,y:0},{x:l,y:0},{x:0,y:-a}]:n.has("left")&&n.has("up")?[{x:l,y:0},{x:0,y:-s},{x:l,y:-a}]:n.has("left")&&n.has("down")?[{x:l,y:0},{x:0,y:0},{x:l,y:-a}]:n.has("right")?[{x:s,y:-u},{x:s,y:-u},{x:l-s,y:-u},{x:l-s,y:0},{x:l,y:-a/2},{x:l-s,y:-a},{x:l-s,y:-a+u},{x:s,y:-a+u},{x:s,y:-a+u}]:n.has("left")?[{x:s,y:0},{x:s,y:-u},{x:l-s,y:-u},{x:l-s,y:-a+u},{x:s,y:-a+u},{x:s,y:-a},{x:0,y:-a/2}]:n.has("up")?[{x:s,y:-u},{x:s,y:-a+u},{x:0,y:-a+u},{x:l/2,y:-a},{x:l,y:-a+u},{x:l-s,y:-a+u},{x:l-s,y:-u}]:n.has("down")?[{x:l/2,y:0},{x:0,y:-u},{x:s,y:-u},{x:s,y:-a+u},{x:l-s,y:-a+u},{x:l-s,y:-u},{x:l,y:-u}]:[{x:0,y:0}]},"getArrowPoints")});function Att(t,e){return t.intersect(e)}var Xye,jye=N(()=>{"use strict";o(Att,"intersectNode");Xye=Att});function _tt(t,e,r,n){var i=t.x,a=t.y,s=i-n.x,l=a-n.y,u=Math.sqrt(e*e*l*l+r*r*s*s),h=Math.abs(e*r*s/u);n.x{"use strict";o(_tt,"intersectEllipse");iC=_tt});function Dtt(t,e,r){return iC(t,e,e,r)}var Kye,Qye=N(()=>{"use strict";rF();o(Dtt,"intersectCircle");Kye=Dtt});function Ltt(t,e,r,n){var i,a,s,l,u,h,f,d,p,m,g,y,v,x,b;if(i=e.y-t.y,s=t.x-e.x,u=e.x*t.y-t.x*e.y,p=i*r.x+s*r.y+u,m=i*n.x+s*n.y+u,!(p!==0&&m!==0&&Zye(p,m))&&(a=n.y-r.y,l=r.x-n.x,h=n.x*r.y-r.x*n.y,f=a*t.x+l*t.y+h,d=a*e.x+l*e.y+h,!(f!==0&&d!==0&&Zye(f,d))&&(g=i*l-a*s,g!==0)))return y=Math.abs(g/2),v=s*h-l*u,x=v<0?(v-y)/g:(v+y)/g,v=a*u-i*h,b=v<0?(v-y)/g:(v+y)/g,{x,y:b}}function Zye(t,e){return t*e>0}var Jye,eve=N(()=>{"use strict";o(Ltt,"intersectLine");o(Zye,"sameSign");Jye=Ltt});function Rtt(t,e,r){var n=t.x,i=t.y,a=[],s=Number.POSITIVE_INFINITY,l=Number.POSITIVE_INFINITY;typeof e.forEach=="function"?e.forEach(function(g){s=Math.min(s,g.x),l=Math.min(l,g.y)}):(s=Math.min(s,e.x),l=Math.min(l,e.y));for(var u=n-t.width/2-s,h=i-t.height/2-l,f=0;f1&&a.sort(function(g,y){var v=g.x-r.x,x=g.y-r.y,b=Math.sqrt(v*v+x*x),w=y.x-r.x,C=y.y-r.y,T=Math.sqrt(w*w+C*C);return b{"use strict";eve();tve=Rtt;o(Rtt,"intersectPolygon")});var Ntt,nve,ive=N(()=>{"use strict";Ntt=o((t,e)=>{var r=t.x,n=t.y,i=e.x-r,a=e.y-n,s=t.width/2,l=t.height/2,u,h;return Math.abs(a)*s>Math.abs(i)*l?(a<0&&(l=-l),u=a===0?0:l*i/a,h=l):(i<0&&(s=-s),u=s,h=i===0?0:s*a/i),{x:r+u,y:n+h}},"intersectRect"),nve=Ntt});var In,nF=N(()=>{"use strict";jye();Qye();rF();rve();ive();In={node:Xye,circle:Kye,ellipse:iC,polygon:tve,rect:nve}});function Hl(t,e,r,n){return t.insert("polygon",":first-child").attr("points",n.map(function(i){return i.x+","+i.y}).join(" ")).attr("class","label-container").attr("transform","translate("+-e/2+","+r/2+")")}var Di,Qn,iF=N(()=>{"use strict";rC();to();zt();dr();gr();ir();Di=o(async(t,e,r,n)=>{let i=me(),a,s=e.useHtmlLabels||fr(i.flowchart.htmlLabels);r?a=r:a="node default";let l=t.insert("g").attr("class",a).attr("id",e.domId||e.id),u=l.insert("g").attr("class","label").attr("style",e.labelStyle),h;e.labelText===void 0?h="":h=typeof e.labelText=="string"?e.labelText:e.labelText[0];let f=u.node(),d;e.labelType==="markdown"?d=Hn(u,Tr(na(h),i),{useHtmlLabels:s,width:e.width||i.flowchart.wrappingWidth,classes:"markdown-node-label"},i):d=f.appendChild(vs(Tr(na(h),i),e.labelStyle,!1,n));let p=d.getBBox(),m=e.padding/2;if(fr(i.flowchart.htmlLabels)){let g=d.children[0],y=Ge(d),v=g.getElementsByTagName("img");if(v){let x=h.replace(/]*>/g,"").trim()==="";await Promise.all([...v].map(b=>new Promise(w=>{function C(){if(b.style.display="flex",b.style.flexDirection="column",x){let T=i.fontSize?i.fontSize:window.getComputedStyle(document.body).fontSize,A=parseInt(T,10)*5+"px";b.style.minWidth=A,b.style.maxWidth=A}else b.style.width="100%";w(b)}o(C,"setupImage"),setTimeout(()=>{b.complete&&C()}),b.addEventListener("error",C),b.addEventListener("load",C)})))}p=g.getBoundingClientRect(),y.attr("width",p.width),y.attr("height",p.height)}return s?u.attr("transform","translate("+-p.width/2+", "+-p.height/2+")"):u.attr("transform","translate(0, "+-p.height/2+")"),e.centerLabel&&u.attr("transform","translate("+-p.width/2+", "+-p.height/2+")"),u.insert("rect",":first-child"),{shapeSvg:l,bbox:p,halfPadding:m,label:u}},"labelHelper"),Qn=o((t,e)=>{let r=e.node().getBBox();t.width=r.width,t.height=r.height},"updateNodeBounds");o(Hl,"insertPolygonShape")});var Mtt,ave,sve=N(()=>{"use strict";iF();vt();zt();nF();Mtt=o(async(t,e)=>{e.useHtmlLabels||me().flowchart.htmlLabels||(e.centerLabel=!0);let{shapeSvg:n,bbox:i,halfPadding:a}=await Di(t,e,"node "+e.classes,!0);Y.info("Classes = ",e.classes);let s=n.insert("rect",":first-child");return s.attr("rx",e.rx).attr("ry",e.ry).attr("x",-i.width/2-a).attr("y",-i.height/2-a).attr("width",i.width+e.padding).attr("height",i.height+e.padding),Qn(e,s),e.intersect=function(l){return In.rect(e,l)},n},"note"),ave=Mtt});function aF(t,e,r,n){let i=[],a=o(l=>{i.push(l,0)},"addBorder"),s=o(l=>{i.push(0,l)},"skipBorder");e.includes("t")?(Y.debug("add top border"),a(r)):s(r),e.includes("r")?(Y.debug("add right border"),a(n)):s(n),e.includes("b")?(Y.debug("add bottom border"),a(r)):s(r),e.includes("l")?(Y.debug("add left border"),a(n)):s(n),t.attr("stroke-dasharray",i.join(" "))}var ove,yo,lve,Itt,Ott,Ptt,Btt,Ftt,$tt,ztt,Gtt,Vtt,Utt,Htt,Wtt,qtt,Ytt,Xtt,jtt,Ktt,Qtt,Ztt,cve,Jtt,ert,uve,aC,sF,hve,fve=N(()=>{"use strict";dr();zt();gr();vt();Yye();rC();nF();sve();iF();ove=o(t=>t?" "+t:"","formatClass"),yo=o((t,e)=>`${e||"node default"}${ove(t.classes)} ${ove(t.class)}`,"getClassesFromNode"),lve=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.width+e.padding,a=n.height+e.padding,s=i+a,l=[{x:s/2,y:0},{x:s,y:-s/2},{x:s/2,y:-s},{x:0,y:-s/2}];Y.info("Question main (Circle)");let u=Hl(r,s,s,l);return u.attr("style",e.style),Qn(e,u),e.intersect=function(h){return Y.warn("Intersect called"),In.polygon(e,l,h)},r},"question"),Itt=o((t,e)=>{let r=t.insert("g").attr("class","node default").attr("id",e.domId||e.id),n=28,i=[{x:0,y:n/2},{x:n/2,y:0},{x:0,y:-n/2},{x:-n/2,y:0}];return r.insert("polygon",":first-child").attr("points",i.map(function(s){return s.x+","+s.y}).join(" ")).attr("class","state-start").attr("r",7).attr("width",28).attr("height",28),e.width=28,e.height=28,e.intersect=function(s){return In.circle(e,14,s)},r},"choice"),Ott=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=4,a=n.height+e.padding,s=a/i,l=n.width+2*s+e.padding,u=[{x:s,y:0},{x:l-s,y:0},{x:l,y:-a/2},{x:l-s,y:-a},{x:s,y:-a},{x:0,y:-a/2}],h=Hl(r,l,a,u);return h.attr("style",e.style),Qn(e,h),e.intersect=function(f){return In.polygon(e,u,f)},r},"hexagon"),Ptt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,void 0,!0),i=2,a=n.height+2*e.padding,s=a/i,l=n.width+2*s+e.padding,u=qye(e.directions,n,e),h=Hl(r,l,a,u);return h.attr("style",e.style),Qn(e,h),e.intersect=function(f){return In.polygon(e,u,f)},r},"block_arrow"),Btt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.width+e.padding,a=n.height+e.padding,s=[{x:-a/2,y:0},{x:i,y:0},{x:i,y:-a},{x:-a/2,y:-a},{x:0,y:-a/2}];return Hl(r,i,a,s).attr("style",e.style),e.width=i+a,e.height=a,e.intersect=function(u){return In.polygon(e,s,u)},r},"rect_left_inv_arrow"),Ftt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e),!0),i=n.width+e.padding,a=n.height+e.padding,s=[{x:-2*a/6,y:0},{x:i-a/6,y:0},{x:i+2*a/6,y:-a},{x:a/6,y:-a}],l=Hl(r,i,a,s);return l.attr("style",e.style),Qn(e,l),e.intersect=function(u){return In.polygon(e,s,u)},r},"lean_right"),$tt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.width+e.padding,a=n.height+e.padding,s=[{x:2*a/6,y:0},{x:i+a/6,y:0},{x:i-2*a/6,y:-a},{x:-a/6,y:-a}],l=Hl(r,i,a,s);return l.attr("style",e.style),Qn(e,l),e.intersect=function(u){return In.polygon(e,s,u)},r},"lean_left"),ztt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.width+e.padding,a=n.height+e.padding,s=[{x:-2*a/6,y:0},{x:i+2*a/6,y:0},{x:i-a/6,y:-a},{x:a/6,y:-a}],l=Hl(r,i,a,s);return l.attr("style",e.style),Qn(e,l),e.intersect=function(u){return In.polygon(e,s,u)},r},"trapezoid"),Gtt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.width+e.padding,a=n.height+e.padding,s=[{x:a/6,y:0},{x:i-a/6,y:0},{x:i+2*a/6,y:-a},{x:-2*a/6,y:-a}],l=Hl(r,i,a,s);return l.attr("style",e.style),Qn(e,l),e.intersect=function(u){return In.polygon(e,s,u)},r},"inv_trapezoid"),Vtt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.width+e.padding,a=n.height+e.padding,s=[{x:0,y:0},{x:i+a/2,y:0},{x:i,y:-a/2},{x:i+a/2,y:-a},{x:0,y:-a}],l=Hl(r,i,a,s);return l.attr("style",e.style),Qn(e,l),e.intersect=function(u){return In.polygon(e,s,u)},r},"rect_right_inv_arrow"),Utt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.width+e.padding,a=i/2,s=a/(2.5+i/50),l=n.height+s+e.padding,u="M 0,"+s+" a "+a+","+s+" 0,0,0 "+i+" 0 a "+a+","+s+" 0,0,0 "+-i+" 0 l 0,"+l+" a "+a+","+s+" 0,0,0 "+i+" 0 l 0,"+-l,h=r.attr("label-offset-y",s).insert("path",":first-child").attr("style",e.style).attr("d",u).attr("transform","translate("+-i/2+","+-(l/2+s)+")");return Qn(e,h),e.intersect=function(f){let d=In.rect(e,f),p=d.x-e.x;if(a!=0&&(Math.abs(p)e.height/2-s)){let m=s*s*(1-p*p/(a*a));m!=0&&(m=Math.sqrt(m)),m=s-m,f.y-e.y>0&&(m=-m),d.y+=m}return d},r},"cylinder"),Htt=o(async(t,e)=>{let{shapeSvg:r,bbox:n,halfPadding:i}=await Di(t,e,"node "+e.classes+" "+e.class,!0),a=r.insert("rect",":first-child"),s=e.positioned?e.width:n.width+e.padding,l=e.positioned?e.height:n.height+e.padding,u=e.positioned?-s/2:-n.width/2-i,h=e.positioned?-l/2:-n.height/2-i;if(a.attr("class","basic label-container").attr("style",e.style).attr("rx",e.rx).attr("ry",e.ry).attr("x",u).attr("y",h).attr("width",s).attr("height",l),e.props){let f=new Set(Object.keys(e.props));e.props.borders&&(aF(a,e.props.borders,s,l),f.delete("borders")),f.forEach(d=>{Y.warn(`Unknown node property ${d}`)})}return Qn(e,a),e.intersect=function(f){return In.rect(e,f)},r},"rect"),Wtt=o(async(t,e)=>{let{shapeSvg:r,bbox:n,halfPadding:i}=await Di(t,e,"node "+e.classes,!0),a=r.insert("rect",":first-child"),s=e.positioned?e.width:n.width+e.padding,l=e.positioned?e.height:n.height+e.padding,u=e.positioned?-s/2:-n.width/2-i,h=e.positioned?-l/2:-n.height/2-i;if(a.attr("class","basic cluster composite label-container").attr("style",e.style).attr("rx",e.rx).attr("ry",e.ry).attr("x",u).attr("y",h).attr("width",s).attr("height",l),e.props){let f=new Set(Object.keys(e.props));e.props.borders&&(aF(a,e.props.borders,s,l),f.delete("borders")),f.forEach(d=>{Y.warn(`Unknown node property ${d}`)})}return Qn(e,a),e.intersect=function(f){return In.rect(e,f)},r},"composite"),qtt=o(async(t,e)=>{let{shapeSvg:r}=await Di(t,e,"label",!0);Y.trace("Classes = ",e.class);let n=r.insert("rect",":first-child"),i=0,a=0;if(n.attr("width",i).attr("height",a),r.attr("class","label edgeLabel"),e.props){let s=new Set(Object.keys(e.props));e.props.borders&&(aF(n,e.props.borders,i,a),s.delete("borders")),s.forEach(l=>{Y.warn(`Unknown node property ${l}`)})}return Qn(e,n),e.intersect=function(s){return In.rect(e,s)},r},"labelRect");o(aF,"applyNodePropertyBorders");Ytt=o((t,e)=>{let r;e.classes?r="node "+e.classes:r="node default";let n=t.insert("g").attr("class",r).attr("id",e.domId||e.id),i=n.insert("rect",":first-child"),a=n.insert("line"),s=n.insert("g").attr("class","label"),l=e.labelText.flat?e.labelText.flat():e.labelText,u="";typeof l=="object"?u=l[0]:u=l,Y.info("Label text abc79",u,l,typeof l=="object");let h=s.node().appendChild(vs(u,e.labelStyle,!0,!0)),f={width:0,height:0};if(fr(me().flowchart.htmlLabels)){let y=h.children[0],v=Ge(h);f=y.getBoundingClientRect(),v.attr("width",f.width),v.attr("height",f.height)}Y.info("Text 2",l);let d=l.slice(1,l.length),p=h.getBBox(),m=s.node().appendChild(vs(d.join?d.join("
    "):d,e.labelStyle,!0,!0));if(fr(me().flowchart.htmlLabels)){let y=m.children[0],v=Ge(m);f=y.getBoundingClientRect(),v.attr("width",f.width),v.attr("height",f.height)}let g=e.padding/2;return Ge(m).attr("transform","translate( "+(f.width>p.width?0:(p.width-f.width)/2)+", "+(p.height+g+5)+")"),Ge(h).attr("transform","translate( "+(f.width{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.height+e.padding,a=n.width+i/4+e.padding,s=r.insert("rect",":first-child").attr("style",e.style).attr("rx",i/2).attr("ry",i/2).attr("x",-a/2).attr("y",-i/2).attr("width",a).attr("height",i);return Qn(e,s),e.intersect=function(l){return In.rect(e,l)},r},"stadium"),jtt=o(async(t,e)=>{let{shapeSvg:r,bbox:n,halfPadding:i}=await Di(t,e,yo(e,void 0),!0),a=r.insert("circle",":first-child");return a.attr("style",e.style).attr("rx",e.rx).attr("ry",e.ry).attr("r",n.width/2+i).attr("width",n.width+e.padding).attr("height",n.height+e.padding),Y.info("Circle main"),Qn(e,a),e.intersect=function(s){return Y.info("Circle intersect",e,n.width/2+i,s),In.circle(e,n.width/2+i,s)},r},"circle"),Ktt=o(async(t,e)=>{let{shapeSvg:r,bbox:n,halfPadding:i}=await Di(t,e,yo(e,void 0),!0),a=5,s=r.insert("g",":first-child"),l=s.insert("circle"),u=s.insert("circle");return s.attr("class",e.class),l.attr("style",e.style).attr("rx",e.rx).attr("ry",e.ry).attr("r",n.width/2+i+a).attr("width",n.width+e.padding+a*2).attr("height",n.height+e.padding+a*2),u.attr("style",e.style).attr("rx",e.rx).attr("ry",e.ry).attr("r",n.width/2+i).attr("width",n.width+e.padding).attr("height",n.height+e.padding),Y.info("DoubleCircle main"),Qn(e,l),e.intersect=function(h){return Y.info("DoubleCircle intersect",e,n.width/2+i+a,h),In.circle(e,n.width/2+i+a,h)},r},"doublecircle"),Qtt=o(async(t,e)=>{let{shapeSvg:r,bbox:n}=await Di(t,e,yo(e,void 0),!0),i=n.width+e.padding,a=n.height+e.padding,s=[{x:0,y:0},{x:i,y:0},{x:i,y:-a},{x:0,y:-a},{x:0,y:0},{x:-8,y:0},{x:i+8,y:0},{x:i+8,y:-a},{x:-8,y:-a},{x:-8,y:0}],l=Hl(r,i,a,s);return l.attr("style",e.style),Qn(e,l),e.intersect=function(u){return In.polygon(e,s,u)},r},"subroutine"),Ztt=o((t,e)=>{let r=t.insert("g").attr("class","node default").attr("id",e.domId||e.id),n=r.insert("circle",":first-child");return n.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),Qn(e,n),e.intersect=function(i){return In.circle(e,7,i)},r},"start"),cve=o((t,e,r)=>{let n=t.insert("g").attr("class","node default").attr("id",e.domId||e.id),i=70,a=10;r==="LR"&&(i=10,a=70);let s=n.append("rect").attr("x",-1*i/2).attr("y",-1*a/2).attr("width",i).attr("height",a).attr("class","fork-join");return Qn(e,s),e.height=e.height+e.padding/2,e.width=e.width+e.padding/2,e.intersect=function(l){return In.rect(e,l)},n},"forkJoin"),Jtt=o((t,e)=>{let r=t.insert("g").attr("class","node default").attr("id",e.domId||e.id),n=r.insert("circle",":first-child"),i=r.insert("circle",":first-child");return i.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),n.attr("class","state-end").attr("r",5).attr("width",10).attr("height",10),Qn(e,i),e.intersect=function(a){return In.circle(e,7,a)},r},"end"),ert=o((t,e)=>{let r=e.padding/2,n=4,i=8,a;e.classes?a="node "+e.classes:a="node default";let s=t.insert("g").attr("class",a).attr("id",e.domId||e.id),l=s.insert("rect",":first-child"),u=s.insert("line"),h=s.insert("line"),f=0,d=n,p=s.insert("g").attr("class","label"),m=0,g=e.classData.annotations?.[0],y=e.classData.annotations[0]?"\xAB"+e.classData.annotations[0]+"\xBB":"",v=p.node().appendChild(vs(y,e.labelStyle,!0,!0)),x=v.getBBox();if(fr(me().flowchart.htmlLabels)){let S=v.children[0],_=Ge(v);x=S.getBoundingClientRect(),_.attr("width",x.width),_.attr("height",x.height)}e.classData.annotations[0]&&(d+=x.height+n,f+=x.width);let b=e.classData.label;e.classData.type!==void 0&&e.classData.type!==""&&(me().flowchart.htmlLabels?b+="<"+e.classData.type+">":b+="<"+e.classData.type+">");let w=p.node().appendChild(vs(b,e.labelStyle,!0,!0));Ge(w).attr("class","classTitle");let C=w.getBBox();if(fr(me().flowchart.htmlLabels)){let S=w.children[0],_=Ge(w);C=S.getBoundingClientRect(),_.attr("width",C.width),_.attr("height",C.height)}d+=C.height+n,C.width>f&&(f=C.width);let T=[];e.classData.members.forEach(S=>{let _=S.getDisplayDetails(),I=_.displayText;me().flowchart.htmlLabels&&(I=I.replace(//g,">"));let D=p.node().appendChild(vs(I,_.cssStyle?_.cssStyle:e.labelStyle,!0,!0)),k=D.getBBox();if(fr(me().flowchart.htmlLabels)){let L=D.children[0],R=Ge(D);k=L.getBoundingClientRect(),R.attr("width",k.width),R.attr("height",k.height)}k.width>f&&(f=k.width),d+=k.height+n,T.push(D)}),d+=i;let E=[];if(e.classData.methods.forEach(S=>{let _=S.getDisplayDetails(),I=_.displayText;me().flowchart.htmlLabels&&(I=I.replace(//g,">"));let D=p.node().appendChild(vs(I,_.cssStyle?_.cssStyle:e.labelStyle,!0,!0)),k=D.getBBox();if(fr(me().flowchart.htmlLabels)){let L=D.children[0],R=Ge(D);k=L.getBoundingClientRect(),R.attr("width",k.width),R.attr("height",k.height)}k.width>f&&(f=k.width),d+=k.height+n,E.push(D)}),d+=i,g){let S=(f-x.width)/2;Ge(v).attr("transform","translate( "+(-1*f/2+S)+", "+-1*d/2+")"),m=x.height+n}let A=(f-C.width)/2;return Ge(w).attr("transform","translate( "+(-1*f/2+A)+", "+(-1*d/2+m)+")"),m+=C.height+n,u.attr("class","divider").attr("x1",-f/2-r).attr("x2",f/2+r).attr("y1",-d/2-r+i+m).attr("y2",-d/2-r+i+m),m+=i,T.forEach(S=>{Ge(S).attr("transform","translate( "+-f/2+", "+(-1*d/2+m+i/2)+")");let _=S?.getBBox();m+=(_?.height??0)+n}),m+=i,h.attr("class","divider").attr("x1",-f/2-r).attr("x2",f/2+r).attr("y1",-d/2-r+i+m).attr("y2",-d/2-r+i+m),m+=i,E.forEach(S=>{Ge(S).attr("transform","translate( "+-f/2+", "+(-1*d/2+m)+")");let _=S?.getBBox();m+=(_?.height??0)+n}),l.attr("style",e.style).attr("class","outer title-state").attr("x",-f/2-r).attr("y",-(d/2)-r).attr("width",f+e.padding).attr("height",d+e.padding),Qn(e,l),e.intersect=function(S){return In.rect(e,S)},s},"class_box"),uve={rhombus:lve,composite:Wtt,question:lve,rect:Htt,labelRect:qtt,rectWithTitle:Ytt,choice:Itt,circle:jtt,doublecircle:Ktt,stadium:Xtt,hexagon:Ott,block_arrow:Ptt,rect_left_inv_arrow:Btt,lean_right:Ftt,lean_left:$tt,trapezoid:ztt,inv_trapezoid:Gtt,rect_right_inv_arrow:Vtt,cylinder:Utt,start:Ztt,end:Jtt,note:ave,subroutine:Qtt,fork:cve,join:cve,class_box:ert},aC={},sF=o(async(t,e,r)=>{let n,i;if(e.link){let a;me().securityLevel==="sandbox"?a="_top":e.linkTarget&&(a=e.linkTarget||"_blank"),n=t.insert("svg:a").attr("xlink:href",e.link).attr("target",a),i=await uve[e.shape](n,e,r)}else i=await uve[e.shape](t,e,r),n=i;return e.tooltip&&i.attr("title",e.tooltip),e.class&&i.attr("class","node default "+e.class),aC[e.id]=n,e.haveCallback&&aC[e.id].attr("class",aC[e.id].attr("class")+" clickable"),n},"insertNode"),hve=o(t=>{let e=aC[t.id];Y.trace("Transforming node",t.diff,t,"translate("+(t.x-t.width/2-5)+", "+t.width/2+")");let r=8,n=t.diff||0;return t.clusterNode?e.attr("transform","translate("+(t.x+n-t.width/2)+", "+(t.y-t.height/2-r)+")"):e.attr("transform","translate("+t.x+", "+t.y+")"),n},"positionNode")});function dve(t,e,r=!1){let n=t,i="default";(n?.classes?.length||0)>0&&(i=(n?.classes??[]).join(" ")),i=i+" flowchart-label";let a=0,s="",l;switch(n.type){case"round":a=5,s="rect";break;case"composite":a=0,s="composite",l=0;break;case"square":s="rect";break;case"diamond":s="question";break;case"hexagon":s="hexagon";break;case"block_arrow":s="block_arrow";break;case"odd":s="rect_left_inv_arrow";break;case"lean_right":s="lean_right";break;case"lean_left":s="lean_left";break;case"trapezoid":s="trapezoid";break;case"inv_trapezoid":s="inv_trapezoid";break;case"rect_left_inv_arrow":s="rect_left_inv_arrow";break;case"circle":s="circle";break;case"ellipse":s="ellipse";break;case"stadium":s="stadium";break;case"subroutine":s="subroutine";break;case"cylinder":s="cylinder";break;case"group":s="rect";break;case"doublecircle":s="doublecircle";break;default:s="rect"}let u=Y9(n?.styles??[]),h=n.label,f=n.size??{width:0,height:0,x:0,y:0};return{labelStyle:u.labelStyle,shape:s,labelText:h,rx:a,ry:a,class:i,style:u.style,id:n.id,directions:n.directions,width:f.width,height:f.height,x:f.x,y:f.y,positioned:r,intersect:void 0,type:n.type,padding:l??cr()?.block?.padding??0}}async function trt(t,e,r){let n=dve(e,r,!1);if(n.type==="group")return;let i=cr(),a=await sF(t,n,{config:i}),s=a.node().getBBox(),l=r.getBlock(n.id);l.size={width:s.width,height:s.height,x:0,y:0,node:a},r.setBlock(l),a.remove()}async function rrt(t,e,r){let n=dve(e,r,!0);if(r.getBlock(n.id).type!=="space"){let a=cr();await sF(t,n,{config:a}),e.intersect=n?.intersect,hve(n)}}async function oF(t,e,r,n){for(let i of e)await n(t,i,r),i.children&&await oF(t,i.children,r,n)}async function pve(t,e,r){await oF(t,e,r,trt)}async function mve(t,e,r){await oF(t,e,r,rrt)}async function gve(t,e,r,n,i){let a=new sn({multigraph:!0,compound:!0});a.setGraph({rankdir:"TB",nodesep:10,ranksep:10,marginx:8,marginy:8});for(let s of r)s.size&&a.setNode(s.id,{width:s.size.width,height:s.size.height,intersect:s.intersect});for(let s of e)if(s.start&&s.end){let l=n.getBlock(s.start),u=n.getBlock(s.end);if(l?.size&&u?.size){let h=l.size,f=u.size,d=[{x:h.x,y:h.y},{x:h.x+(f.x-h.x)/2,y:h.y+(f.y-h.y)/2},{x:f.x,y:f.y}];Hye(t,{v:s.start,w:s.end,name:s.id},{...s,arrowTypeEnd:s.arrowTypeEnd,arrowTypeStart:s.arrowTypeStart,points:d,classes:"edge-thickness-normal edge-pattern-solid flowchart-link LS-a1 LE-b1"},void 0,"block",a,i),s.label&&(await Vye(t,{...s,label:s.label,labelStyle:"stroke: #333; stroke-width: 1.5px;fill:none;",arrowTypeEnd:s.arrowTypeEnd,arrowTypeStart:s.arrowTypeStart,points:d,classes:"edge-thickness-normal edge-pattern-solid flowchart-link LS-a1 LE-b1"}),Uye({...s,x:d[1].x,y:d[1].y},{originalPath:d}))}}}var yve=N(()=>{"use strict";Vo();ji();Wye();fve();ir();o(dve,"getNodeFromBlock");o(trt,"calculateBlockSize");o(rrt,"insertBlockPositioned");o(oF,"performOperations");o(pve,"calculateBlockSizes");o(mve,"insertBlocks");o(gve,"insertEdges")});var nrt,irt,vve,xve=N(()=>{"use strict";dr();ji();Nye();vt();Ei();Pye();yve();nrt=o(function(t,e){return e.db.getClasses()},"getClasses"),irt=o(async function(t,e,r,n){let{securityLevel:i,block:a}=cr(),s=n.db,l;i==="sandbox"&&(l=Ge("#i"+e));let u=i==="sandbox"?Ge(l.nodes()[0].contentDocument.body):Ge("body"),h=i==="sandbox"?u.select(`[id="${e}"]`):Ge(`[id="${e}"]`);Rye(h,["point","circle","cross"],n.type,e);let d=s.getBlocks(),p=s.getBlocksFlat(),m=s.getEdges(),g=h.insert("g").attr("class","block");await pve(g,d,s);let y=Oye(s);if(await mve(g,d,s),await gve(g,m,p,s,e),y){let v=y,x=Math.max(1,Math.round(.125*(v.width/v.height))),b=v.height+x+10,w=v.width+10,{useMaxWidth:C}=a;vn(h,b,w,!!C),Y.debug("Here Bounds",y,v),h.attr("viewBox",`${v.x-5} ${v.y-5} ${v.width+10} ${v.height+10}`)}},"draw"),vve={draw:irt,getClasses:nrt}});var bve={};hr(bve,{diagram:()=>art});var art,wve=N(()=>{"use strict";wye();_ye();Lye();xve();art={parser:bye,db:Aye,renderer:vve,styles:Dye}});var lF,cF,v4,Eve,uF,Ha,Zc,x4,Sve,crt,b4,Cve,Ave,_ve,Dve,Lve,sC,Ff,oC=N(()=>{"use strict";lF={L:"left",R:"right",T:"top",B:"bottom"},cF={L:o(t=>`${t},${t/2} 0,${t} 0,0`,"L"),R:o(t=>`0,${t/2} ${t},0 ${t},${t}`,"R"),T:o(t=>`0,0 ${t},0 ${t/2},${t}`,"T"),B:o(t=>`${t/2},0 ${t},${t} 0,${t}`,"B")},v4={L:o((t,e)=>t-e+2,"L"),R:o((t,e)=>t-2,"R"),T:o((t,e)=>t-e+2,"T"),B:o((t,e)=>t-2,"B")},Eve=o(function(t){return Ha(t)?t==="L"?"R":"L":t==="T"?"B":"T"},"getOppositeArchitectureDirection"),uF=o(function(t){let e=t;return e==="L"||e==="R"||e==="T"||e==="B"},"isArchitectureDirection"),Ha=o(function(t){let e=t;return e==="L"||e==="R"},"isArchitectureDirectionX"),Zc=o(function(t){let e=t;return e==="T"||e==="B"},"isArchitectureDirectionY"),x4=o(function(t,e){let r=Ha(t)&&Zc(e),n=Zc(t)&&Ha(e);return r||n},"isArchitectureDirectionXY"),Sve=o(function(t){let e=t[0],r=t[1],n=Ha(e)&&Zc(r),i=Zc(e)&&Ha(r);return n||i},"isArchitecturePairXY"),crt=o(function(t){return t!=="LL"&&t!=="RR"&&t!=="TT"&&t!=="BB"},"isValidArchitectureDirectionPair"),b4=o(function(t,e){let r=`${t}${e}`;return crt(r)?r:void 0},"getArchitectureDirectionPair"),Cve=o(function([t,e],r){let n=r[0],i=r[1];return Ha(n)?Zc(i)?[t+(n==="L"?-1:1),e+(i==="T"?1:-1)]:[t+(n==="L"?-1:1),e]:Ha(i)?[t+(i==="L"?1:-1),e+(n==="T"?1:-1)]:[t,e+(n==="T"?1:-1)]},"shiftPositionByArchitectureDirectionPair"),Ave=o(function(t){return t==="LT"||t==="TL"?[1,1]:t==="BL"||t==="LB"?[1,-1]:t==="BR"||t==="RB"?[-1,-1]:[-1,1]},"getArchitectureDirectionXYFactors"),_ve=o(function(t,e){return x4(t,e)?"bend":Ha(t)?"horizontal":"vertical"},"getArchitectureDirectionAlignment"),Dve=o(function(t){return t.type==="service"},"isArchitectureService"),Lve=o(function(t){return t.type==="junction"},"isArchitectureJunction"),sC=o(t=>t.data(),"edgeData"),Ff=o(t=>t.data(),"nodeData")});function Li(t){let e=me().architecture;return e?.[t]?e[t]:Rve[t]}var Rve,vr,urt,hrt,frt,drt,prt,mrt,hF,grt,yrt,vrt,xrt,brt,wrt,Trt,Qp,w4=N(()=>{"use strict";Ya();zt();s6();mi();oC();Rve=or.architecture,vr=new pf(()=>({nodes:{},groups:{},edges:[],registeredIds:{},config:Rve,dataStructures:void 0,elements:{}})),urt=o(()=>{vr.reset(),Ar()},"clear"),hrt=o(function({id:t,icon:e,in:r,title:n,iconText:i}){if(vr.records.registeredIds[t]!==void 0)throw new Error(`The service id [${t}] is already in use by another ${vr.records.registeredIds[t]}`);if(r!==void 0){if(t===r)throw new Error(`The service [${t}] cannot be placed within itself`);if(vr.records.registeredIds[r]===void 0)throw new Error(`The service [${t}]'s parent does not exist. Please make sure the parent is created before this service`);if(vr.records.registeredIds[r]==="node")throw new Error(`The service [${t}]'s parent is not a group`)}vr.records.registeredIds[t]="node",vr.records.nodes[t]={id:t,type:"service",icon:e,iconText:i,title:n,edges:[],in:r}},"addService"),frt=o(()=>Object.values(vr.records.nodes).filter(Dve),"getServices"),drt=o(function({id:t,in:e}){vr.records.registeredIds[t]="node",vr.records.nodes[t]={id:t,type:"junction",edges:[],in:e}},"addJunction"),prt=o(()=>Object.values(vr.records.nodes).filter(Lve),"getJunctions"),mrt=o(()=>Object.values(vr.records.nodes),"getNodes"),hF=o(t=>vr.records.nodes[t],"getNode"),grt=o(function({id:t,icon:e,in:r,title:n}){if(vr.records.registeredIds[t]!==void 0)throw new Error(`The group id [${t}] is already in use by another ${vr.records.registeredIds[t]}`);if(r!==void 0){if(t===r)throw new Error(`The group [${t}] cannot be placed within itself`);if(vr.records.registeredIds[r]===void 0)throw new Error(`The group [${t}]'s parent does not exist. Please make sure the parent is created before this group`);if(vr.records.registeredIds[r]==="node")throw new Error(`The group [${t}]'s parent is not a group`)}vr.records.registeredIds[t]="group",vr.records.groups[t]={id:t,icon:e,title:n,in:r}},"addGroup"),yrt=o(()=>Object.values(vr.records.groups),"getGroups"),vrt=o(function({lhsId:t,rhsId:e,lhsDir:r,rhsDir:n,lhsInto:i,rhsInto:a,lhsGroup:s,rhsGroup:l,title:u}){if(!uF(r))throw new Error(`Invalid direction given for left hand side of edge ${t}--${e}. Expected (L,R,T,B) got ${r}`);if(!uF(n))throw new Error(`Invalid direction given for right hand side of edge ${t}--${e}. Expected (L,R,T,B) got ${n}`);if(vr.records.nodes[t]===void 0&&vr.records.groups[t]===void 0)throw new Error(`The left-hand id [${t}] does not yet exist. Please create the service/group before declaring an edge to it.`);if(vr.records.nodes[e]===void 0&&vr.records.groups[t]===void 0)throw new Error(`The right-hand id [${e}] does not yet exist. Please create the service/group before declaring an edge to it.`);let h=vr.records.nodes[t].in,f=vr.records.nodes[e].in;if(s&&h&&f&&h==f)throw new Error(`The left-hand id [${t}] is modified to traverse the group boundary, but the edge does not pass through two groups.`);if(l&&h&&f&&h==f)throw new Error(`The right-hand id [${e}] is modified to traverse the group boundary, but the edge does not pass through two groups.`);let d={lhsId:t,lhsDir:r,lhsInto:i,lhsGroup:s,rhsId:e,rhsDir:n,rhsInto:a,rhsGroup:l,title:u};vr.records.edges.push(d),vr.records.nodes[t]&&vr.records.nodes[e]&&(vr.records.nodes[t].edges.push(vr.records.edges[vr.records.edges.length-1]),vr.records.nodes[e].edges.push(vr.records.edges[vr.records.edges.length-1]))},"addEdge"),xrt=o(()=>vr.records.edges,"getEdges"),brt=o(()=>{if(vr.records.dataStructures===void 0){let t={},e=Object.entries(vr.records.nodes).reduce((l,[u,h])=>(l[u]=h.edges.reduce((f,d)=>{let p=hF(d.lhsId)?.in,m=hF(d.rhsId)?.in;if(p&&m&&p!==m){let g=_ve(d.lhsDir,d.rhsDir);g!=="bend"&&(t[p]??={},t[p][m]=g,t[m]??={},t[m][p]=g)}if(d.lhsId===u){let g=b4(d.lhsDir,d.rhsDir);g&&(f[g]=d.rhsId)}else{let g=b4(d.rhsDir,d.lhsDir);g&&(f[g]=d.lhsId)}return f},{}),l),{}),r=Object.keys(e)[0],n={[r]:1},i=Object.keys(e).reduce((l,u)=>u===r?l:{...l,[u]:1},{}),a=o(l=>{let u={[l]:[0,0]},h=[l];for(;h.length>0;){let f=h.shift();if(f){n[f]=1,delete i[f];let d=e[f],[p,m]=u[f];Object.entries(d).forEach(([g,y])=>{n[y]||(u[y]=Cve([p,m],g),h.push(y))})}}return u},"BFS"),s=[a(r)];for(;Object.keys(i).length>0;)s.push(a(Object.keys(i)[0]));vr.records.dataStructures={adjList:e,spatialMaps:s,groupAlignments:t}}return vr.records.dataStructures},"getDataStructures"),wrt=o((t,e)=>{vr.records.elements[t]=e},"setElementForId"),Trt=o(t=>vr.records.elements[t],"getElementById"),Qp={clear:urt,setDiagramTitle:$r,getDiagramTitle:Ir,setAccTitle:Lr,getAccTitle:Rr,setAccDescription:Nr,getAccDescription:Mr,addService:hrt,getServices:frt,addJunction:drt,getJunctions:prt,getNodes:mrt,getNode:hF,addGroup:grt,getGroups:yrt,addEdge:vrt,getEdges:xrt,setElementForId:wrt,getElementById:Trt,getDataStructures:brt};o(Li,"getConfigField")});var krt,Nve,Mve=N(()=>{"use strict";kp();vt();T1();w4();krt=o((t,e)=>{$c(t,e),t.groups.map(e.addGroup),t.services.map(r=>e.addService({...r,type:"service"})),t.junctions.map(r=>e.addJunction({...r,type:"junction"})),t.edges.map(e.addEdge)},"populateDb"),Nve={parse:o(async t=>{let e=await uo("architecture",t);Y.debug(e),krt(e,Qp)},"parse")}});var Ert,Ive,Ove=N(()=>{"use strict";Ert=o(t=>` + .edge { + stroke-width: ${t.archEdgeWidth}; + stroke: ${t.archEdgeColor}; + fill: none; + } + + .arrow { + fill: ${t.archEdgeArrowColor}; + } + + .node-bkg { + fill: none; + stroke: ${t.archGroupBorderColor}; + stroke-width: ${t.archGroupBorderWidth}; + stroke-dasharray: 8; + } + .node-icon-text { + display: flex; + align-items: center; + } + + .node-icon-text > div { + color: #fff; + margin: 1px; + height: fit-content; + text-align: center; + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + } +`,"getStyles"),Ive=Ert});var dF=Mi((T4,fF)=>{"use strict";o(function(e,r){typeof T4=="object"&&typeof fF=="object"?fF.exports=r():typeof define=="function"&&define.amd?define([],r):typeof T4=="object"?T4.layoutBase=r():e.layoutBase=r()},"webpackUniversalModuleDefinition")(T4,function(){return function(t){var e={};function r(n){if(e[n])return e[n].exports;var i=e[n]={i:n,l:!1,exports:{}};return t[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return o(r,"__webpack_require__"),r.m=t,r.c=e,r.i=function(n){return n},r.d=function(n,i,a){r.o(n,i)||Object.defineProperty(n,i,{configurable:!1,enumerable:!0,get:a})},r.n=function(n){var i=n&&n.__esModule?o(function(){return n.default},"getDefault"):o(function(){return n},"getModuleExports");return r.d(i,"a",i),i},r.o=function(n,i){return Object.prototype.hasOwnProperty.call(n,i)},r.p="",r(r.s=28)}([function(t,e,r){"use strict";function n(){}o(n,"LayoutConstants"),n.QUALITY=1,n.DEFAULT_CREATE_BENDS_AS_NEEDED=!1,n.DEFAULT_INCREMENTAL=!1,n.DEFAULT_ANIMATION_ON_LAYOUT=!0,n.DEFAULT_ANIMATION_DURING_LAYOUT=!1,n.DEFAULT_ANIMATION_PERIOD=50,n.DEFAULT_UNIFORM_LEAF_NODE_SIZES=!1,n.DEFAULT_GRAPH_MARGIN=15,n.NODE_DIMENSIONS_INCLUDE_LABELS=!1,n.SIMPLE_NODE_SIZE=40,n.SIMPLE_NODE_HALF_SIZE=n.SIMPLE_NODE_SIZE/2,n.EMPTY_COMPOUND_NODE_SIZE=40,n.MIN_EDGE_LENGTH=1,n.WORLD_BOUNDARY=1e6,n.INITIAL_WORLD_BOUNDARY=n.WORLD_BOUNDARY/1e3,n.WORLD_CENTER_X=1200,n.WORLD_CENTER_Y=900,t.exports=n},function(t,e,r){"use strict";var n=r(2),i=r(8),a=r(9);function s(u,h,f){n.call(this,f),this.isOverlapingSourceAndTarget=!1,this.vGraphObject=f,this.bendpoints=[],this.source=u,this.target=h}o(s,"LEdge"),s.prototype=Object.create(n.prototype);for(var l in n)s[l]=n[l];s.prototype.getSource=function(){return this.source},s.prototype.getTarget=function(){return this.target},s.prototype.isInterGraph=function(){return this.isInterGraph},s.prototype.getLength=function(){return this.length},s.prototype.isOverlapingSourceAndTarget=function(){return this.isOverlapingSourceAndTarget},s.prototype.getBendpoints=function(){return this.bendpoints},s.prototype.getLca=function(){return this.lca},s.prototype.getSourceInLca=function(){return this.sourceInLca},s.prototype.getTargetInLca=function(){return this.targetInLca},s.prototype.getOtherEnd=function(u){if(this.source===u)return this.target;if(this.target===u)return this.source;throw"Node is not incident with this edge"},s.prototype.getOtherEndInGraph=function(u,h){for(var f=this.getOtherEnd(u),d=h.getGraphManager().getRoot();;){if(f.getOwner()==h)return f;if(f.getOwner()==d)break;f=f.getOwner().getParent()}return null},s.prototype.updateLength=function(){var u=new Array(4);this.isOverlapingSourceAndTarget=i.getIntersection(this.target.getRect(),this.source.getRect(),u),this.isOverlapingSourceAndTarget||(this.lengthX=u[0]-u[2],this.lengthY=u[1]-u[3],Math.abs(this.lengthX)<1&&(this.lengthX=a.sign(this.lengthX)),Math.abs(this.lengthY)<1&&(this.lengthY=a.sign(this.lengthY)),this.length=Math.sqrt(this.lengthX*this.lengthX+this.lengthY*this.lengthY))},s.prototype.updateLengthSimple=function(){this.lengthX=this.target.getCenterX()-this.source.getCenterX(),this.lengthY=this.target.getCenterY()-this.source.getCenterY(),Math.abs(this.lengthX)<1&&(this.lengthX=a.sign(this.lengthX)),Math.abs(this.lengthY)<1&&(this.lengthY=a.sign(this.lengthY)),this.length=Math.sqrt(this.lengthX*this.lengthX+this.lengthY*this.lengthY)},t.exports=s},function(t,e,r){"use strict";function n(i){this.vGraphObject=i}o(n,"LGraphObject"),t.exports=n},function(t,e,r){"use strict";var n=r(2),i=r(10),a=r(13),s=r(0),l=r(16),u=r(5);function h(d,p,m,g){m==null&&g==null&&(g=p),n.call(this,g),d.graphManager!=null&&(d=d.graphManager),this.estimatedSize=i.MIN_VALUE,this.inclusionTreeDepth=i.MAX_VALUE,this.vGraphObject=g,this.edges=[],this.graphManager=d,m!=null&&p!=null?this.rect=new a(p.x,p.y,m.width,m.height):this.rect=new a}o(h,"LNode"),h.prototype=Object.create(n.prototype);for(var f in n)h[f]=n[f];h.prototype.getEdges=function(){return this.edges},h.prototype.getChild=function(){return this.child},h.prototype.getOwner=function(){return this.owner},h.prototype.getWidth=function(){return this.rect.width},h.prototype.setWidth=function(d){this.rect.width=d},h.prototype.getHeight=function(){return this.rect.height},h.prototype.setHeight=function(d){this.rect.height=d},h.prototype.getCenterX=function(){return this.rect.x+this.rect.width/2},h.prototype.getCenterY=function(){return this.rect.y+this.rect.height/2},h.prototype.getCenter=function(){return new u(this.rect.x+this.rect.width/2,this.rect.y+this.rect.height/2)},h.prototype.getLocation=function(){return new u(this.rect.x,this.rect.y)},h.prototype.getRect=function(){return this.rect},h.prototype.getDiagonal=function(){return Math.sqrt(this.rect.width*this.rect.width+this.rect.height*this.rect.height)},h.prototype.getHalfTheDiagonal=function(){return Math.sqrt(this.rect.height*this.rect.height+this.rect.width*this.rect.width)/2},h.prototype.setRect=function(d,p){this.rect.x=d.x,this.rect.y=d.y,this.rect.width=p.width,this.rect.height=p.height},h.prototype.setCenter=function(d,p){this.rect.x=d-this.rect.width/2,this.rect.y=p-this.rect.height/2},h.prototype.setLocation=function(d,p){this.rect.x=d,this.rect.y=p},h.prototype.moveBy=function(d,p){this.rect.x+=d,this.rect.y+=p},h.prototype.getEdgeListToNode=function(d){var p=[],m,g=this;return g.edges.forEach(function(y){if(y.target==d){if(y.source!=g)throw"Incorrect edge source!";p.push(y)}}),p},h.prototype.getEdgesBetween=function(d){var p=[],m,g=this;return g.edges.forEach(function(y){if(!(y.source==g||y.target==g))throw"Incorrect edge source and/or target";(y.target==d||y.source==d)&&p.push(y)}),p},h.prototype.getNeighborsList=function(){var d=new Set,p=this;return p.edges.forEach(function(m){if(m.source==p)d.add(m.target);else{if(m.target!=p)throw"Incorrect incidency!";d.add(m.source)}}),d},h.prototype.withChildren=function(){var d=new Set,p,m;if(d.add(this),this.child!=null)for(var g=this.child.getNodes(),y=0;yp?(this.rect.x-=(this.labelWidth-p)/2,this.setWidth(this.labelWidth)):this.labelPosHorizontal=="right"&&this.setWidth(p+this.labelWidth)),this.labelHeight&&(this.labelPosVertical=="top"?(this.rect.y-=this.labelHeight,this.setHeight(m+this.labelHeight)):this.labelPosVertical=="center"&&this.labelHeight>m?(this.rect.y-=(this.labelHeight-m)/2,this.setHeight(this.labelHeight)):this.labelPosVertical=="bottom"&&this.setHeight(m+this.labelHeight))}}},h.prototype.getInclusionTreeDepth=function(){if(this.inclusionTreeDepth==i.MAX_VALUE)throw"assert failed";return this.inclusionTreeDepth},h.prototype.transform=function(d){var p=this.rect.x;p>s.WORLD_BOUNDARY?p=s.WORLD_BOUNDARY:p<-s.WORLD_BOUNDARY&&(p=-s.WORLD_BOUNDARY);var m=this.rect.y;m>s.WORLD_BOUNDARY?m=s.WORLD_BOUNDARY:m<-s.WORLD_BOUNDARY&&(m=-s.WORLD_BOUNDARY);var g=new u(p,m),y=d.inverseTransformPoint(g);this.setLocation(y.x,y.y)},h.prototype.getLeft=function(){return this.rect.x},h.prototype.getRight=function(){return this.rect.x+this.rect.width},h.prototype.getTop=function(){return this.rect.y},h.prototype.getBottom=function(){return this.rect.y+this.rect.height},h.prototype.getParent=function(){return this.owner==null?null:this.owner.getParent()},t.exports=h},function(t,e,r){"use strict";var n=r(0);function i(){}o(i,"FDLayoutConstants");for(var a in n)i[a]=n[a];i.MAX_ITERATIONS=2500,i.DEFAULT_EDGE_LENGTH=50,i.DEFAULT_SPRING_STRENGTH=.45,i.DEFAULT_REPULSION_STRENGTH=4500,i.DEFAULT_GRAVITY_STRENGTH=.4,i.DEFAULT_COMPOUND_GRAVITY_STRENGTH=1,i.DEFAULT_GRAVITY_RANGE_FACTOR=3.8,i.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=1.5,i.DEFAULT_USE_SMART_IDEAL_EDGE_LENGTH_CALCULATION=!0,i.DEFAULT_USE_SMART_REPULSION_RANGE_CALCULATION=!0,i.DEFAULT_COOLING_FACTOR_INCREMENTAL=.3,i.COOLING_ADAPTATION_FACTOR=.33,i.ADAPTATION_LOWER_NODE_LIMIT=1e3,i.ADAPTATION_UPPER_NODE_LIMIT=5e3,i.MAX_NODE_DISPLACEMENT_INCREMENTAL=100,i.MAX_NODE_DISPLACEMENT=i.MAX_NODE_DISPLACEMENT_INCREMENTAL*3,i.MIN_REPULSION_DIST=i.DEFAULT_EDGE_LENGTH/10,i.CONVERGENCE_CHECK_PERIOD=100,i.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=.1,i.MIN_EDGE_LENGTH=1,i.GRID_CALCULATION_CHECK_PERIOD=10,t.exports=i},function(t,e,r){"use strict";function n(i,a){i==null&&a==null?(this.x=0,this.y=0):(this.x=i,this.y=a)}o(n,"PointD"),n.prototype.getX=function(){return this.x},n.prototype.getY=function(){return this.y},n.prototype.setX=function(i){this.x=i},n.prototype.setY=function(i){this.y=i},n.prototype.getDifference=function(i){return new DimensionD(this.x-i.x,this.y-i.y)},n.prototype.getCopy=function(){return new n(this.x,this.y)},n.prototype.translate=function(i){return this.x+=i.width,this.y+=i.height,this},t.exports=n},function(t,e,r){"use strict";var n=r(2),i=r(10),a=r(0),s=r(7),l=r(3),u=r(1),h=r(13),f=r(12),d=r(11);function p(g,y,v){n.call(this,v),this.estimatedSize=i.MIN_VALUE,this.margin=a.DEFAULT_GRAPH_MARGIN,this.edges=[],this.nodes=[],this.isConnected=!1,this.parent=g,y!=null&&y instanceof s?this.graphManager=y:y!=null&&y instanceof Layout&&(this.graphManager=y.graphManager)}o(p,"LGraph"),p.prototype=Object.create(n.prototype);for(var m in n)p[m]=n[m];p.prototype.getNodes=function(){return this.nodes},p.prototype.getEdges=function(){return this.edges},p.prototype.getGraphManager=function(){return this.graphManager},p.prototype.getParent=function(){return this.parent},p.prototype.getLeft=function(){return this.left},p.prototype.getRight=function(){return this.right},p.prototype.getTop=function(){return this.top},p.prototype.getBottom=function(){return this.bottom},p.prototype.isConnected=function(){return this.isConnected},p.prototype.add=function(g,y,v){if(y==null&&v==null){var x=g;if(this.graphManager==null)throw"Graph has no graph mgr!";if(this.getNodes().indexOf(x)>-1)throw"Node already in graph!";return x.owner=this,this.getNodes().push(x),x}else{var b=g;if(!(this.getNodes().indexOf(y)>-1&&this.getNodes().indexOf(v)>-1))throw"Source or target not in graph!";if(!(y.owner==v.owner&&y.owner==this))throw"Both owners must be this graph!";return y.owner!=v.owner?null:(b.source=y,b.target=v,b.isInterGraph=!1,this.getEdges().push(b),y.edges.push(b),v!=y&&v.edges.push(b),b)}},p.prototype.remove=function(g){var y=g;if(g instanceof l){if(y==null)throw"Node is null!";if(!(y.owner!=null&&y.owner==this))throw"Owner graph is invalid!";if(this.graphManager==null)throw"Owner graph manager is invalid!";for(var v=y.edges.slice(),x,b=v.length,w=0;w-1&&E>-1))throw"Source and/or target doesn't know this edge!";x.source.edges.splice(T,1),x.target!=x.source&&x.target.edges.splice(E,1);var C=x.source.owner.getEdges().indexOf(x);if(C==-1)throw"Not in owner's edge list!";x.source.owner.getEdges().splice(C,1)}},p.prototype.updateLeftTop=function(){for(var g=i.MAX_VALUE,y=i.MAX_VALUE,v,x,b,w=this.getNodes(),C=w.length,T=0;Tv&&(g=v),y>x&&(y=x)}return g==i.MAX_VALUE?null:(w[0].getParent().paddingLeft!=null?b=w[0].getParent().paddingLeft:b=this.margin,this.left=y-b,this.top=g-b,new f(this.left,this.top))},p.prototype.updateBounds=function(g){for(var y=i.MAX_VALUE,v=-i.MAX_VALUE,x=i.MAX_VALUE,b=-i.MAX_VALUE,w,C,T,E,A,S=this.nodes,_=S.length,I=0;I<_;I++){var D=S[I];g&&D.child!=null&&D.updateBounds(),w=D.getLeft(),C=D.getRight(),T=D.getTop(),E=D.getBottom(),y>w&&(y=w),vT&&(x=T),bw&&(y=w),vT&&(x=T),b=this.nodes.length){var _=0;v.forEach(function(I){I.owner==g&&_++}),_==this.nodes.length&&(this.isConnected=!0)}},t.exports=p},function(t,e,r){"use strict";var n,i=r(1);function a(s){n=r(6),this.layout=s,this.graphs=[],this.edges=[]}o(a,"LGraphManager"),a.prototype.addRoot=function(){var s=this.layout.newGraph(),l=this.layout.newNode(null),u=this.add(s,l);return this.setRootGraph(u),this.rootGraph},a.prototype.add=function(s,l,u,h,f){if(u==null&&h==null&&f==null){if(s==null)throw"Graph is null!";if(l==null)throw"Parent node is null!";if(this.graphs.indexOf(s)>-1)throw"Graph already in this graph mgr!";if(this.graphs.push(s),s.parent!=null)throw"Already has a parent!";if(l.child!=null)throw"Already has a child!";return s.parent=l,l.child=s,s}else{f=u,h=l,u=s;var d=h.getOwner(),p=f.getOwner();if(!(d!=null&&d.getGraphManager()==this))throw"Source not in this graph mgr!";if(!(p!=null&&p.getGraphManager()==this))throw"Target not in this graph mgr!";if(d==p)return u.isInterGraph=!1,d.add(u,h,f);if(u.isInterGraph=!0,u.source=h,u.target=f,this.edges.indexOf(u)>-1)throw"Edge already in inter-graph edge list!";if(this.edges.push(u),!(u.source!=null&&u.target!=null))throw"Edge source and/or target is null!";if(!(u.source.edges.indexOf(u)==-1&&u.target.edges.indexOf(u)==-1))throw"Edge already in source and/or target incidency list!";return u.source.edges.push(u),u.target.edges.push(u),u}},a.prototype.remove=function(s){if(s instanceof n){var l=s;if(l.getGraphManager()!=this)throw"Graph not in this graph mgr";if(!(l==this.rootGraph||l.parent!=null&&l.parent.graphManager==this))throw"Invalid parent node!";var u=[];u=u.concat(l.getEdges());for(var h,f=u.length,d=0;d=s.getRight()?l[0]+=Math.min(s.getX()-a.getX(),a.getRight()-s.getRight()):s.getX()<=a.getX()&&s.getRight()>=a.getRight()&&(l[0]+=Math.min(a.getX()-s.getX(),s.getRight()-a.getRight())),a.getY()<=s.getY()&&a.getBottom()>=s.getBottom()?l[1]+=Math.min(s.getY()-a.getY(),a.getBottom()-s.getBottom()):s.getY()<=a.getY()&&s.getBottom()>=a.getBottom()&&(l[1]+=Math.min(a.getY()-s.getY(),s.getBottom()-a.getBottom()));var f=Math.abs((s.getCenterY()-a.getCenterY())/(s.getCenterX()-a.getCenterX()));s.getCenterY()===a.getCenterY()&&s.getCenterX()===a.getCenterX()&&(f=1);var d=f*l[0],p=l[1]/f;l[0]d)return l[0]=u,l[1]=m,l[2]=f,l[3]=S,!1;if(hf)return l[0]=p,l[1]=h,l[2]=E,l[3]=d,!1;if(uf?(l[0]=y,l[1]=v,k=!0):(l[0]=g,l[1]=m,k=!0):R===M&&(u>f?(l[0]=p,l[1]=m,k=!0):(l[0]=x,l[1]=v,k=!0)),-O===M?f>u?(l[2]=A,l[3]=S,L=!0):(l[2]=E,l[3]=T,L=!0):O===M&&(f>u?(l[2]=C,l[3]=T,L=!0):(l[2]=_,l[3]=S,L=!0)),k&&L)return!1;if(u>f?h>d?(B=this.getCardinalDirection(R,M,4),F=this.getCardinalDirection(O,M,2)):(B=this.getCardinalDirection(-R,M,3),F=this.getCardinalDirection(-O,M,1)):h>d?(B=this.getCardinalDirection(-R,M,1),F=this.getCardinalDirection(-O,M,3)):(B=this.getCardinalDirection(R,M,2),F=this.getCardinalDirection(O,M,4)),!k)switch(B){case 1:z=m,P=u+-w/M,l[0]=P,l[1]=z;break;case 2:P=x,z=h+b*M,l[0]=P,l[1]=z;break;case 3:z=v,P=u+w/M,l[0]=P,l[1]=z;break;case 4:P=y,z=h+-b*M,l[0]=P,l[1]=z;break}if(!L)switch(F){case 1:H=T,$=f+-D/M,l[2]=$,l[3]=H;break;case 2:$=_,H=d+I*M,l[2]=$,l[3]=H;break;case 3:H=S,$=f+D/M,l[2]=$,l[3]=H;break;case 4:$=A,H=d+-I*M,l[2]=$,l[3]=H;break}}return!1},i.getCardinalDirection=function(a,s,l){return a>s?l:1+l%4},i.getIntersection=function(a,s,l,u){if(u==null)return this.getIntersection2(a,s,l);var h=a.x,f=a.y,d=s.x,p=s.y,m=l.x,g=l.y,y=u.x,v=u.y,x=void 0,b=void 0,w=void 0,C=void 0,T=void 0,E=void 0,A=void 0,S=void 0,_=void 0;return w=p-f,T=h-d,A=d*f-h*p,C=v-g,E=m-y,S=y*g-m*v,_=w*E-C*T,_===0?null:(x=(T*S-E*A)/_,b=(C*A-w*S)/_,new n(x,b))},i.angleOfVector=function(a,s,l,u){var h=void 0;return a!==l?(h=Math.atan((u-s)/(l-a)),l=0){var v=(-m+Math.sqrt(m*m-4*p*g))/(2*p),x=(-m-Math.sqrt(m*m-4*p*g))/(2*p),b=null;return v>=0&&v<=1?[v]:x>=0&&x<=1?[x]:b}else return null},i.HALF_PI=.5*Math.PI,i.ONE_AND_HALF_PI=1.5*Math.PI,i.TWO_PI=2*Math.PI,i.THREE_PI=3*Math.PI,t.exports=i},function(t,e,r){"use strict";function n(){}o(n,"IMath"),n.sign=function(i){return i>0?1:i<0?-1:0},n.floor=function(i){return i<0?Math.ceil(i):Math.floor(i)},n.ceil=function(i){return i<0?Math.floor(i):Math.ceil(i)},t.exports=n},function(t,e,r){"use strict";function n(){}o(n,"Integer"),n.MAX_VALUE=2147483647,n.MIN_VALUE=-2147483648,t.exports=n},function(t,e,r){"use strict";var n=function(){function h(f,d){for(var p=0;p"u"?"undefined":n(a);return a==null||s!="object"&&s!="function"},t.exports=i},function(t,e,r){"use strict";function n(m){if(Array.isArray(m)){for(var g=0,y=Array(m.length);g0&&g;){for(w.push(T[0]);w.length>0&&g;){var E=w[0];w.splice(0,1),b.add(E);for(var A=E.getEdges(),x=0;x-1&&T.splice(D,1)}b=new Set,C=new Map}}return m},p.prototype.createDummyNodesForBendpoints=function(m){for(var g=[],y=m.source,v=this.graphManager.calcLowestCommonAncestor(m.source,m.target),x=0;x0){for(var v=this.edgeToDummyNodes.get(y),x=0;x=0&&g.splice(S,1);var _=C.getNeighborsList();_.forEach(function(k){if(y.indexOf(k)<0){var L=v.get(k),R=L-1;R==1&&E.push(k),v.set(k,R)}})}y=y.concat(E),(g.length==1||g.length==2)&&(x=!0,b=g[0])}return b},p.prototype.setGraphManager=function(m){this.graphManager=m},t.exports=p},function(t,e,r){"use strict";function n(){}o(n,"RandomSeed"),n.seed=1,n.x=0,n.nextDouble=function(){return n.x=Math.sin(n.seed++)*1e4,n.x-Math.floor(n.x)},t.exports=n},function(t,e,r){"use strict";var n=r(5);function i(a,s){this.lworldOrgX=0,this.lworldOrgY=0,this.ldeviceOrgX=0,this.ldeviceOrgY=0,this.lworldExtX=1,this.lworldExtY=1,this.ldeviceExtX=1,this.ldeviceExtY=1}o(i,"Transform"),i.prototype.getWorldOrgX=function(){return this.lworldOrgX},i.prototype.setWorldOrgX=function(a){this.lworldOrgX=a},i.prototype.getWorldOrgY=function(){return this.lworldOrgY},i.prototype.setWorldOrgY=function(a){this.lworldOrgY=a},i.prototype.getWorldExtX=function(){return this.lworldExtX},i.prototype.setWorldExtX=function(a){this.lworldExtX=a},i.prototype.getWorldExtY=function(){return this.lworldExtY},i.prototype.setWorldExtY=function(a){this.lworldExtY=a},i.prototype.getDeviceOrgX=function(){return this.ldeviceOrgX},i.prototype.setDeviceOrgX=function(a){this.ldeviceOrgX=a},i.prototype.getDeviceOrgY=function(){return this.ldeviceOrgY},i.prototype.setDeviceOrgY=function(a){this.ldeviceOrgY=a},i.prototype.getDeviceExtX=function(){return this.ldeviceExtX},i.prototype.setDeviceExtX=function(a){this.ldeviceExtX=a},i.prototype.getDeviceExtY=function(){return this.ldeviceExtY},i.prototype.setDeviceExtY=function(a){this.ldeviceExtY=a},i.prototype.transformX=function(a){var s=0,l=this.lworldExtX;return l!=0&&(s=this.ldeviceOrgX+(a-this.lworldOrgX)*this.ldeviceExtX/l),s},i.prototype.transformY=function(a){var s=0,l=this.lworldExtY;return l!=0&&(s=this.ldeviceOrgY+(a-this.lworldOrgY)*this.ldeviceExtY/l),s},i.prototype.inverseTransformX=function(a){var s=0,l=this.ldeviceExtX;return l!=0&&(s=this.lworldOrgX+(a-this.ldeviceOrgX)*this.lworldExtX/l),s},i.prototype.inverseTransformY=function(a){var s=0,l=this.ldeviceExtY;return l!=0&&(s=this.lworldOrgY+(a-this.ldeviceOrgY)*this.lworldExtY/l),s},i.prototype.inverseTransformPoint=function(a){var s=new n(this.inverseTransformX(a.x),this.inverseTransformY(a.y));return s},t.exports=i},function(t,e,r){"use strict";function n(d){if(Array.isArray(d)){for(var p=0,m=Array(d.length);pa.ADAPTATION_LOWER_NODE_LIMIT&&(this.coolingFactor=Math.max(this.coolingFactor*a.COOLING_ADAPTATION_FACTOR,this.coolingFactor-(d-a.ADAPTATION_LOWER_NODE_LIMIT)/(a.ADAPTATION_UPPER_NODE_LIMIT-a.ADAPTATION_LOWER_NODE_LIMIT)*this.coolingFactor*(1-a.COOLING_ADAPTATION_FACTOR))),this.maxNodeDisplacement=a.MAX_NODE_DISPLACEMENT_INCREMENTAL):(d>a.ADAPTATION_LOWER_NODE_LIMIT?this.coolingFactor=Math.max(a.COOLING_ADAPTATION_FACTOR,1-(d-a.ADAPTATION_LOWER_NODE_LIMIT)/(a.ADAPTATION_UPPER_NODE_LIMIT-a.ADAPTATION_LOWER_NODE_LIMIT)*(1-a.COOLING_ADAPTATION_FACTOR)):this.coolingFactor=1,this.initialCoolingFactor=this.coolingFactor,this.maxNodeDisplacement=a.MAX_NODE_DISPLACEMENT),this.maxIterations=Math.max(this.getAllNodes().length*5,this.maxIterations),this.displacementThresholdPerNode=3*a.DEFAULT_EDGE_LENGTH/100,this.totalDisplacementThreshold=this.displacementThresholdPerNode*this.getAllNodes().length,this.repulsionRange=this.calcRepulsionRange()},h.prototype.calcSpringForces=function(){for(var d=this.getAllEdges(),p,m=0;m0&&arguments[0]!==void 0?arguments[0]:!0,p=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,m,g,y,v,x=this.getAllNodes(),b;if(this.useFRGridVariant)for(this.totalIterations%a.GRID_CALCULATION_CHECK_PERIOD==1&&d&&this.updateGrid(),b=new Set,m=0;mw||b>w)&&(d.gravitationForceX=-this.gravityConstant*y,d.gravitationForceY=-this.gravityConstant*v)):(w=p.getEstimatedSize()*this.compoundGravityRangeFactor,(x>w||b>w)&&(d.gravitationForceX=-this.gravityConstant*y*this.compoundGravityConstant,d.gravitationForceY=-this.gravityConstant*v*this.compoundGravityConstant))},h.prototype.isConverged=function(){var d,p=!1;return this.totalIterations>this.maxIterations/3&&(p=Math.abs(this.totalDisplacement-this.oldTotalDisplacement)<2),d=this.totalDisplacement=x.length||w>=x[0].length)){for(var C=0;Ch},"_defaultCompareFunction")}]),l}();t.exports=s},function(t,e,r){"use strict";function n(){}o(n,"SVD"),n.svd=function(i){this.U=null,this.V=null,this.s=null,this.m=0,this.n=0,this.m=i.length,this.n=i[0].length;var a=Math.min(this.m,this.n);this.s=function(xt){for(var ut=[];xt-- >0;)ut.push(0);return ut}(Math.min(this.m+1,this.n)),this.U=function(xt){var ut=o(function Et(ft){if(ft.length==0)return 0;for(var yt=[],nt=0;nt0;)ut.push(0);return ut}(this.n),l=function(xt){for(var ut=[];xt-- >0;)ut.push(0);return ut}(this.m),u=!0,h=!0,f=Math.min(this.m-1,this.n),d=Math.max(0,Math.min(this.n-2,this.m)),p=0;p=0;M--)if(this.s[M]!==0){for(var B=M+1;B=0;j--){if(function(xt,ut){return xt&&ut}(j0;){var ue=void 0,Z=void 0;for(ue=L-2;ue>=-1&&ue!==-1;ue--)if(Math.abs(s[ue])<=se+J*(Math.abs(this.s[ue])+Math.abs(this.s[ue+1]))){s[ue]=0;break}if(ue===L-2)Z=4;else{var Se=void 0;for(Se=L-1;Se>=ue&&Se!==ue;Se--){var ce=(Se!==L?Math.abs(s[Se]):0)+(Se!==ue+1?Math.abs(s[Se-1]):0);if(Math.abs(this.s[Se])<=se+J*ce){this.s[Se]=0;break}}Se===ue?Z=3:Se===L-1?Z=1:(Z=2,ue=Se)}switch(ue++,Z){case 1:{var ae=s[L-2];s[L-2]=0;for(var Oe=L-2;Oe>=ue;Oe--){var ge=n.hypot(this.s[Oe],ae),ze=this.s[Oe]/ge,He=ae/ge;if(this.s[Oe]=ge,Oe!==ue&&(ae=-He*s[Oe-1],s[Oe-1]=ze*s[Oe-1]),h)for(var $e=0;$e=this.s[ue+1]);){var ot=this.s[ue];if(this.s[ue]=this.s[ue+1],this.s[ue+1]=ot,h&&ueMath.abs(a)?(s=a/i,s=Math.abs(i)*Math.sqrt(1+s*s)):a!=0?(s=i/a,s=Math.abs(a)*Math.sqrt(1+s*s)):s=0,s},t.exports=n},function(t,e,r){"use strict";var n=function(){function s(l,u){for(var h=0;h2&&arguments[2]!==void 0?arguments[2]:1,f=arguments.length>3&&arguments[3]!==void 0?arguments[3]:-1,d=arguments.length>4&&arguments[4]!==void 0?arguments[4]:-1;i(this,s),this.sequence1=l,this.sequence2=u,this.match_score=h,this.mismatch_penalty=f,this.gap_penalty=d,this.iMax=l.length+1,this.jMax=u.length+1,this.grid=new Array(this.iMax);for(var p=0;p=0;l--){var u=this.listeners[l];u.event===a&&u.callback===s&&this.listeners.splice(l,1)}},i.emit=function(a,s){for(var l=0;l{"use strict";o(function(e,r){typeof k4=="object"&&typeof pF=="object"?pF.exports=r(dF()):typeof define=="function"&&define.amd?define(["layout-base"],r):typeof k4=="object"?k4.coseBase=r(dF()):e.coseBase=r(e.layoutBase)},"webpackUniversalModuleDefinition")(k4,function(t){return(()=>{"use strict";var e={45:(a,s,l)=>{var u={};u.layoutBase=l(551),u.CoSEConstants=l(806),u.CoSEEdge=l(767),u.CoSEGraph=l(880),u.CoSEGraphManager=l(578),u.CoSELayout=l(765),u.CoSENode=l(991),u.ConstraintHandler=l(902),a.exports=u},806:(a,s,l)=>{var u=l(551).FDLayoutConstants;function h(){}o(h,"CoSEConstants");for(var f in u)h[f]=u[f];h.DEFAULT_USE_MULTI_LEVEL_SCALING=!1,h.DEFAULT_RADIAL_SEPARATION=u.DEFAULT_EDGE_LENGTH,h.DEFAULT_COMPONENT_SEPERATION=60,h.TILE=!0,h.TILING_PADDING_VERTICAL=10,h.TILING_PADDING_HORIZONTAL=10,h.TRANSFORM_ON_CONSTRAINT_HANDLING=!0,h.ENFORCE_CONSTRAINTS=!0,h.APPLY_LAYOUT=!0,h.RELAX_MOVEMENT_ON_CONSTRAINTS=!0,h.TREE_REDUCTION_ON_INCREMENTAL=!0,h.PURE_INCREMENTAL=h.DEFAULT_INCREMENTAL,a.exports=h},767:(a,s,l)=>{var u=l(551).FDLayoutEdge;function h(d,p,m){u.call(this,d,p,m)}o(h,"CoSEEdge"),h.prototype=Object.create(u.prototype);for(var f in u)h[f]=u[f];a.exports=h},880:(a,s,l)=>{var u=l(551).LGraph;function h(d,p,m){u.call(this,d,p,m)}o(h,"CoSEGraph"),h.prototype=Object.create(u.prototype);for(var f in u)h[f]=u[f];a.exports=h},578:(a,s,l)=>{var u=l(551).LGraphManager;function h(d){u.call(this,d)}o(h,"CoSEGraphManager"),h.prototype=Object.create(u.prototype);for(var f in u)h[f]=u[f];a.exports=h},765:(a,s,l)=>{var u=l(551).FDLayout,h=l(578),f=l(880),d=l(991),p=l(767),m=l(806),g=l(902),y=l(551).FDLayoutConstants,v=l(551).LayoutConstants,x=l(551).Point,b=l(551).PointD,w=l(551).DimensionD,C=l(551).Layout,T=l(551).Integer,E=l(551).IGeometry,A=l(551).LGraph,S=l(551).Transform,_=l(551).LinkedList;function I(){u.call(this),this.toBeTiled={},this.constraints={}}o(I,"CoSELayout"),I.prototype=Object.create(u.prototype);for(var D in u)I[D]=u[D];I.prototype.newGraphManager=function(){var k=new h(this);return this.graphManager=k,k},I.prototype.newGraph=function(k){return new f(null,this.graphManager,k)},I.prototype.newNode=function(k){return new d(this.graphManager,k)},I.prototype.newEdge=function(k){return new p(null,null,k)},I.prototype.initParameters=function(){u.prototype.initParameters.call(this,arguments),this.isSubLayout||(m.DEFAULT_EDGE_LENGTH<10?this.idealEdgeLength=10:this.idealEdgeLength=m.DEFAULT_EDGE_LENGTH,this.useSmartIdealEdgeLengthCalculation=m.DEFAULT_USE_SMART_IDEAL_EDGE_LENGTH_CALCULATION,this.gravityConstant=y.DEFAULT_GRAVITY_STRENGTH,this.compoundGravityConstant=y.DEFAULT_COMPOUND_GRAVITY_STRENGTH,this.gravityRangeFactor=y.DEFAULT_GRAVITY_RANGE_FACTOR,this.compoundGravityRangeFactor=y.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR,this.prunedNodesAll=[],this.growTreeIterations=0,this.afterGrowthIterations=0,this.isTreeGrowing=!1,this.isGrowthFinished=!1)},I.prototype.initSpringEmbedder=function(){u.prototype.initSpringEmbedder.call(this),this.coolingCycle=0,this.maxCoolingCycle=this.maxIterations/y.CONVERGENCE_CHECK_PERIOD,this.finalTemperature=.04,this.coolingAdjuster=1},I.prototype.layout=function(){var k=v.DEFAULT_CREATE_BENDS_AS_NEEDED;return k&&(this.createBendpoints(),this.graphManager.resetAllEdges()),this.level=0,this.classicLayout()},I.prototype.classicLayout=function(){if(this.nodesWithGravity=this.calculateNodesToApplyGravitationTo(),this.graphManager.setAllNodesToApplyGravitation(this.nodesWithGravity),this.calcNoOfChildrenForAllNodes(),this.graphManager.calcLowestCommonAncestors(),this.graphManager.calcInclusionTreeDepths(),this.graphManager.getRoot().calcEstimatedSize(),this.calcIdealEdgeLengths(),this.incremental){if(m.TREE_REDUCTION_ON_INCREMENTAL){this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var L=new Set(this.getAllNodes()),R=this.nodesWithGravity.filter(function(B){return L.has(B)});this.graphManager.setAllNodesToApplyGravitation(R)}}else{var k=this.getFlatForest();if(k.length>0)this.positionNodesRadially(k);else{this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var L=new Set(this.getAllNodes()),R=this.nodesWithGravity.filter(function(O){return L.has(O)});this.graphManager.setAllNodesToApplyGravitation(R),this.positionNodesRandomly()}}return Object.keys(this.constraints).length>0&&(g.handleConstraints(this),this.initConstraintVariables()),this.initSpringEmbedder(),m.APPLY_LAYOUT&&this.runSpringEmbedder(),!0},I.prototype.tick=function(){if(this.totalIterations++,this.totalIterations===this.maxIterations&&!this.isTreeGrowing&&!this.isGrowthFinished)if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;if(this.totalIterations%y.CONVERGENCE_CHECK_PERIOD==0&&!this.isTreeGrowing&&!this.isGrowthFinished){if(this.isConverged())if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;this.coolingCycle++,this.layoutQuality==0?this.coolingAdjuster=this.coolingCycle:this.layoutQuality==1&&(this.coolingAdjuster=this.coolingCycle/3),this.coolingFactor=Math.max(this.initialCoolingFactor-Math.pow(this.coolingCycle,Math.log(100*(this.initialCoolingFactor-this.finalTemperature))/Math.log(this.maxCoolingCycle))/100*this.coolingAdjuster,this.finalTemperature),this.animationPeriod=Math.ceil(this.initialAnimationPeriod*Math.sqrt(this.coolingFactor))}if(this.isTreeGrowing){if(this.growTreeIterations%10==0)if(this.prunedNodesAll.length>0){this.graphManager.updateBounds(),this.updateGrid(),this.growTree(this.prunedNodesAll),this.graphManager.resetAllNodesToApplyGravitation();var k=new Set(this.getAllNodes()),L=this.nodesWithGravity.filter(function(M){return k.has(M)});this.graphManager.setAllNodesToApplyGravitation(L),this.graphManager.updateBounds(),this.updateGrid(),m.PURE_INCREMENTAL?this.coolingFactor=y.DEFAULT_COOLING_FACTOR_INCREMENTAL/2:this.coolingFactor=y.DEFAULT_COOLING_FACTOR_INCREMENTAL}else this.isTreeGrowing=!1,this.isGrowthFinished=!0;this.growTreeIterations++}if(this.isGrowthFinished){if(this.isConverged())return!0;this.afterGrowthIterations%10==0&&(this.graphManager.updateBounds(),this.updateGrid()),m.PURE_INCREMENTAL?this.coolingFactor=y.DEFAULT_COOLING_FACTOR_INCREMENTAL/2*((100-this.afterGrowthIterations)/100):this.coolingFactor=y.DEFAULT_COOLING_FACTOR_INCREMENTAL*((100-this.afterGrowthIterations)/100),this.afterGrowthIterations++}var R=!this.isTreeGrowing&&!this.isGrowthFinished,O=this.growTreeIterations%10==1&&this.isTreeGrowing||this.afterGrowthIterations%10==1&&this.isGrowthFinished;return this.totalDisplacement=0,this.graphManager.updateBounds(),this.calcSpringForces(),this.calcRepulsionForces(R,O),this.calcGravitationalForces(),this.moveNodes(),this.animate(),!1},I.prototype.getPositionsData=function(){for(var k=this.graphManager.getAllNodes(),L={},R=0;R0&&this.updateDisplacements();for(var R=0;R0&&(O.fixedNodeWeight=B)}}if(this.constraints.relativePlacementConstraint){var F=new Map,P=new Map;if(this.dummyToNodeForVerticalAlignment=new Map,this.dummyToNodeForHorizontalAlignment=new Map,this.fixedNodesOnHorizontal=new Set,this.fixedNodesOnVertical=new Set,this.fixedNodeSet.forEach(function(le){k.fixedNodesOnHorizontal.add(le),k.fixedNodesOnVertical.add(le)}),this.constraints.alignmentConstraint){if(this.constraints.alignmentConstraint.vertical)for(var z=this.constraints.alignmentConstraint.vertical,R=0;R=2*le.length/3;X--)he=Math.floor(Math.random()*(X+1)),K=le[X],le[X]=le[he],le[he]=K;return le},this.nodesInRelativeHorizontal=[],this.nodesInRelativeVertical=[],this.nodeToRelativeConstraintMapHorizontal=new Map,this.nodeToRelativeConstraintMapVertical=new Map,this.nodeToTempPositionMapHorizontal=new Map,this.nodeToTempPositionMapVertical=new Map,this.constraints.relativePlacementConstraint.forEach(function(le){if(le.left){var he=F.has(le.left)?F.get(le.left):le.left,K=F.has(le.right)?F.get(le.right):le.right;k.nodesInRelativeHorizontal.includes(he)||(k.nodesInRelativeHorizontal.push(he),k.nodeToRelativeConstraintMapHorizontal.set(he,[]),k.dummyToNodeForVerticalAlignment.has(he)?k.nodeToTempPositionMapHorizontal.set(he,k.idToNodeMap.get(k.dummyToNodeForVerticalAlignment.get(he)[0]).getCenterX()):k.nodeToTempPositionMapHorizontal.set(he,k.idToNodeMap.get(he).getCenterX())),k.nodesInRelativeHorizontal.includes(K)||(k.nodesInRelativeHorizontal.push(K),k.nodeToRelativeConstraintMapHorizontal.set(K,[]),k.dummyToNodeForVerticalAlignment.has(K)?k.nodeToTempPositionMapHorizontal.set(K,k.idToNodeMap.get(k.dummyToNodeForVerticalAlignment.get(K)[0]).getCenterX()):k.nodeToTempPositionMapHorizontal.set(K,k.idToNodeMap.get(K).getCenterX())),k.nodeToRelativeConstraintMapHorizontal.get(he).push({right:K,gap:le.gap}),k.nodeToRelativeConstraintMapHorizontal.get(K).push({left:he,gap:le.gap})}else{var X=P.has(le.top)?P.get(le.top):le.top,te=P.has(le.bottom)?P.get(le.bottom):le.bottom;k.nodesInRelativeVertical.includes(X)||(k.nodesInRelativeVertical.push(X),k.nodeToRelativeConstraintMapVertical.set(X,[]),k.dummyToNodeForHorizontalAlignment.has(X)?k.nodeToTempPositionMapVertical.set(X,k.idToNodeMap.get(k.dummyToNodeForHorizontalAlignment.get(X)[0]).getCenterY()):k.nodeToTempPositionMapVertical.set(X,k.idToNodeMap.get(X).getCenterY())),k.nodesInRelativeVertical.includes(te)||(k.nodesInRelativeVertical.push(te),k.nodeToRelativeConstraintMapVertical.set(te,[]),k.dummyToNodeForHorizontalAlignment.has(te)?k.nodeToTempPositionMapVertical.set(te,k.idToNodeMap.get(k.dummyToNodeForHorizontalAlignment.get(te)[0]).getCenterY()):k.nodeToTempPositionMapVertical.set(te,k.idToNodeMap.get(te).getCenterY())),k.nodeToRelativeConstraintMapVertical.get(X).push({bottom:te,gap:le.gap}),k.nodeToRelativeConstraintMapVertical.get(te).push({top:X,gap:le.gap})}});else{var H=new Map,Q=new Map;this.constraints.relativePlacementConstraint.forEach(function(le){if(le.left){var he=F.has(le.left)?F.get(le.left):le.left,K=F.has(le.right)?F.get(le.right):le.right;H.has(he)?H.get(he).push(K):H.set(he,[K]),H.has(K)?H.get(K).push(he):H.set(K,[he])}else{var X=P.has(le.top)?P.get(le.top):le.top,te=P.has(le.bottom)?P.get(le.bottom):le.bottom;Q.has(X)?Q.get(X).push(te):Q.set(X,[te]),Q.has(te)?Q.get(te).push(X):Q.set(te,[X])}});var j=o(function(he,K){var X=[],te=[],J=new _,se=new Set,ue=0;return he.forEach(function(Z,Se){if(!se.has(Se)){X[ue]=[],te[ue]=!1;var ce=Se;for(J.push(ce),se.add(ce),X[ue].push(ce);J.length!=0;){ce=J.shift(),K.has(ce)&&(te[ue]=!0);var ae=he.get(ce);ae.forEach(function(Oe){se.has(Oe)||(J.push(Oe),se.add(Oe),X[ue].push(Oe))})}ue++}}),{components:X,isFixed:te}},"constructComponents"),ie=j(H,k.fixedNodesOnHorizontal);this.componentsOnHorizontal=ie.components,this.fixedComponentsOnHorizontal=ie.isFixed;var ne=j(Q,k.fixedNodesOnVertical);this.componentsOnVertical=ne.components,this.fixedComponentsOnVertical=ne.isFixed}}},I.prototype.updateDisplacements=function(){var k=this;if(this.constraints.fixedNodeConstraint&&this.constraints.fixedNodeConstraint.forEach(function(ne){var le=k.idToNodeMap.get(ne.nodeId);le.displacementX=0,le.displacementY=0}),this.constraints.alignmentConstraint){if(this.constraints.alignmentConstraint.vertical)for(var L=this.constraints.alignmentConstraint.vertical,R=0;R1){var P;for(P=0;PO&&(O=Math.floor(F.y)),B=Math.floor(F.x+m.DEFAULT_COMPONENT_SEPERATION)}this.transform(new b(v.WORLD_CENTER_X-F.x/2,v.WORLD_CENTER_Y-F.y/2))},I.radialLayout=function(k,L,R){var O=Math.max(this.maxDiagonalInTree(k),m.DEFAULT_RADIAL_SEPARATION);I.branchRadialLayout(L,null,0,359,0,O);var M=A.calculateBounds(k),B=new S;B.setDeviceOrgX(M.getMinX()),B.setDeviceOrgY(M.getMinY()),B.setWorldOrgX(R.x),B.setWorldOrgY(R.y);for(var F=0;F1;){var X=K[0];K.splice(0,1);var te=j.indexOf(X);te>=0&&j.splice(te,1),le--,ie--}L!=null?he=(j.indexOf(K[0])+1)%le:he=0;for(var J=Math.abs(O-R)/ie,se=he;ne!=ie;se=++se%le){var ue=j[se].getOtherEnd(k);if(ue!=L){var Z=(R+ne*J)%360,Se=(Z+J)%360;I.branchRadialLayout(ue,k,Z,Se,M+B,B),ne++}}},I.maxDiagonalInTree=function(k){for(var L=T.MIN_VALUE,R=0;RL&&(L=M)}return L},I.prototype.calcRepulsionRange=function(){return 2*(this.level+1)*this.idealEdgeLength},I.prototype.groupZeroDegreeMembers=function(){var k=this,L={};this.memberGroups={},this.idToDummyNode={};for(var R=[],O=this.graphManager.getAllNodes(),M=0;M"u"&&(L[P]=[]),L[P]=L[P].concat(B)}Object.keys(L).forEach(function(z){if(L[z].length>1){var $="DummyCompound_"+z;k.memberGroups[$]=L[z];var H=L[z][0].getParent(),Q=new d(k.graphManager);Q.id=$,Q.paddingLeft=H.paddingLeft||0,Q.paddingRight=H.paddingRight||0,Q.paddingBottom=H.paddingBottom||0,Q.paddingTop=H.paddingTop||0,k.idToDummyNode[$]=Q;var j=k.getGraphManager().add(k.newGraph(),Q),ie=H.getChild();ie.add(Q);for(var ne=0;neM?(O.rect.x-=(O.labelWidth-M)/2,O.setWidth(O.labelWidth),O.labelMarginLeft=(O.labelWidth-M)/2):O.labelPosHorizontal=="right"&&O.setWidth(M+O.labelWidth)),O.labelHeight&&(O.labelPosVertical=="top"?(O.rect.y-=O.labelHeight,O.setHeight(B+O.labelHeight),O.labelMarginTop=O.labelHeight):O.labelPosVertical=="center"&&O.labelHeight>B?(O.rect.y-=(O.labelHeight-B)/2,O.setHeight(O.labelHeight),O.labelMarginTop=(O.labelHeight-B)/2):O.labelPosVertical=="bottom"&&O.setHeight(B+O.labelHeight))}})},I.prototype.repopulateCompounds=function(){for(var k=this.compoundOrder.length-1;k>=0;k--){var L=this.compoundOrder[k],R=L.id,O=L.paddingLeft,M=L.paddingTop,B=L.labelMarginLeft,F=L.labelMarginTop;this.adjustLocations(this.tiledMemberPack[R],L.rect.x,L.rect.y,O,M,B,F)}},I.prototype.repopulateZeroDegreeMembers=function(){var k=this,L=this.tiledZeroDegreePack;Object.keys(L).forEach(function(R){var O=k.idToDummyNode[R],M=O.paddingLeft,B=O.paddingTop,F=O.labelMarginLeft,P=O.labelMarginTop;k.adjustLocations(L[R],O.rect.x,O.rect.y,M,B,F,P)})},I.prototype.getToBeTiled=function(k){var L=k.id;if(this.toBeTiled[L]!=null)return this.toBeTiled[L];var R=k.getChild();if(R==null)return this.toBeTiled[L]=!1,!1;for(var O=R.getNodes(),M=0;M0)return this.toBeTiled[L]=!1,!1;if(B.getChild()==null){this.toBeTiled[B.id]=!1;continue}if(!this.getToBeTiled(B))return this.toBeTiled[L]=!1,!1}return this.toBeTiled[L]=!0,!0},I.prototype.getNodeDegree=function(k){for(var L=k.id,R=k.getEdges(),O=0,M=0;MH&&(H=j.rect.height)}R+=H+k.verticalPadding}},I.prototype.tileCompoundMembers=function(k,L){var R=this;this.tiledMemberPack=[],Object.keys(k).forEach(function(O){var M=L[O];if(R.tiledMemberPack[O]=R.tileNodes(k[O],M.paddingLeft+M.paddingRight),M.rect.width=R.tiledMemberPack[O].width,M.rect.height=R.tiledMemberPack[O].height,M.setCenter(R.tiledMemberPack[O].centerX,R.tiledMemberPack[O].centerY),M.labelMarginLeft=0,M.labelMarginTop=0,m.NODE_DIMENSIONS_INCLUDE_LABELS){var B=M.rect.width,F=M.rect.height;M.labelWidth&&(M.labelPosHorizontal=="left"?(M.rect.x-=M.labelWidth,M.setWidth(B+M.labelWidth),M.labelMarginLeft=M.labelWidth):M.labelPosHorizontal=="center"&&M.labelWidth>B?(M.rect.x-=(M.labelWidth-B)/2,M.setWidth(M.labelWidth),M.labelMarginLeft=(M.labelWidth-B)/2):M.labelPosHorizontal=="right"&&M.setWidth(B+M.labelWidth)),M.labelHeight&&(M.labelPosVertical=="top"?(M.rect.y-=M.labelHeight,M.setHeight(F+M.labelHeight),M.labelMarginTop=M.labelHeight):M.labelPosVertical=="center"&&M.labelHeight>F?(M.rect.y-=(M.labelHeight-F)/2,M.setHeight(M.labelHeight),M.labelMarginTop=(M.labelHeight-F)/2):M.labelPosVertical=="bottom"&&M.setHeight(F+M.labelHeight))}})},I.prototype.tileNodes=function(k,L){var R=this.tileNodesByFavoringDim(k,L,!0),O=this.tileNodesByFavoringDim(k,L,!1),M=this.getOrgRatio(R),B=this.getOrgRatio(O),F;return BP&&(P=ne.getWidth())});var z=B/M,$=F/M,H=Math.pow(R-O,2)+4*(z+O)*($+R)*M,Q=(O-R+Math.sqrt(H))/(2*(z+O)),j;L?(j=Math.ceil(Q),j==Q&&j++):j=Math.floor(Q);var ie=j*(z+O)-O;return P>ie&&(ie=P),ie+=O*2,ie},I.prototype.tileNodesByFavoringDim=function(k,L,R){var O=m.TILING_PADDING_VERTICAL,M=m.TILING_PADDING_HORIZONTAL,B=m.TILING_COMPARE_BY,F={rows:[],rowWidth:[],rowHeight:[],width:0,height:L,verticalPadding:O,horizontalPadding:M,centerX:0,centerY:0};B&&(F.idealRowWidth=this.calcIdealRowWidth(k,R));var P=o(function(le){return le.rect.width*le.rect.height},"getNodeArea"),z=o(function(le,he){return P(he)-P(le)},"areaCompareFcn");k.sort(function(ne,le){var he=z;return F.idealRowWidth?(he=B,he(ne.id,le.id)):he(ne,le)});for(var $=0,H=0,Q=0;Q0&&(F+=k.horizontalPadding),k.rowWidth[R]=F,k.width0&&(P+=k.verticalPadding);var z=0;P>k.rowHeight[R]&&(z=k.rowHeight[R],k.rowHeight[R]=P,z=k.rowHeight[R]-z),k.height+=z,k.rows[R].push(L)},I.prototype.getShortestRowIndex=function(k){for(var L=-1,R=Number.MAX_VALUE,O=0;OR&&(L=O,R=k.rowWidth[O]);return L},I.prototype.canAddHorizontal=function(k,L,R){if(k.idealRowWidth){var O=k.rows.length-1,M=k.rowWidth[O];return M+L+k.horizontalPadding<=k.idealRowWidth}var B=this.getShortestRowIndex(k);if(B<0)return!0;var F=k.rowWidth[B];if(F+k.horizontalPadding+L<=k.width)return!0;var P=0;k.rowHeight[B]0&&(P=R+k.verticalPadding-k.rowHeight[B]);var z;k.width-F>=L+k.horizontalPadding?z=(k.height+P)/(F+L+k.horizontalPadding):z=(k.height+P)/k.width,P=R+k.verticalPadding;var $;return k.widthB&&L!=R){O.splice(-1,1),k.rows[R].push(M),k.rowWidth[L]=k.rowWidth[L]-B,k.rowWidth[R]=k.rowWidth[R]+B,k.width=k.rowWidth[instance.getLongestRowIndex(k)];for(var F=Number.MIN_VALUE,P=0;PF&&(F=O[P].height);L>0&&(F+=k.verticalPadding);var z=k.rowHeight[L]+k.rowHeight[R];k.rowHeight[L]=F,k.rowHeight[R]0)for(var ie=M;ie<=B;ie++)j[0]+=this.grid[ie][F-1].length+this.grid[ie][F].length-1;if(B0)for(var ie=F;ie<=P;ie++)j[3]+=this.grid[M-1][ie].length+this.grid[M][ie].length-1;for(var ne=T.MAX_VALUE,le,he,K=0;K{var u=l(551).FDLayoutNode,h=l(551).IMath;function f(p,m,g,y){u.call(this,p,m,g,y)}o(f,"CoSENode"),f.prototype=Object.create(u.prototype);for(var d in u)f[d]=u[d];f.prototype.calculateDisplacement=function(){var p=this.graphManager.getLayout();this.getChild()!=null&&this.fixedNodeWeight?(this.displacementX+=p.coolingFactor*(this.springForceX+this.repulsionForceX+this.gravitationForceX)/this.fixedNodeWeight,this.displacementY+=p.coolingFactor*(this.springForceY+this.repulsionForceY+this.gravitationForceY)/this.fixedNodeWeight):(this.displacementX+=p.coolingFactor*(this.springForceX+this.repulsionForceX+this.gravitationForceX)/this.noOfChildren,this.displacementY+=p.coolingFactor*(this.springForceY+this.repulsionForceY+this.gravitationForceY)/this.noOfChildren),Math.abs(this.displacementX)>p.coolingFactor*p.maxNodeDisplacement&&(this.displacementX=p.coolingFactor*p.maxNodeDisplacement*h.sign(this.displacementX)),Math.abs(this.displacementY)>p.coolingFactor*p.maxNodeDisplacement&&(this.displacementY=p.coolingFactor*p.maxNodeDisplacement*h.sign(this.displacementY)),this.child&&this.child.getNodes().length>0&&this.propogateDisplacementToChildren(this.displacementX,this.displacementY)},f.prototype.propogateDisplacementToChildren=function(p,m){for(var g=this.getChild().getNodes(),y,v=0;v{function u(g){if(Array.isArray(g)){for(var y=0,v=Array(g.length);y0){var ct=0;Ue.forEach(function(ot){xe=="horizontal"?(we.set(ot,x.has(ot)?b[x.get(ot)]:pe.get(ot)),ct+=we.get(ot)):(we.set(ot,x.has(ot)?w[x.get(ot)]:pe.get(ot)),ct+=we.get(ot))}),ct=ct/Ue.length,st.forEach(function(ot){q.has(ot)||we.set(ot,ct)})}else{var We=0;st.forEach(function(ot){xe=="horizontal"?We+=x.has(ot)?b[x.get(ot)]:pe.get(ot):We+=x.has(ot)?w[x.get(ot)]:pe.get(ot)}),We=We/st.length,st.forEach(function(ot){we.set(ot,We)})}});for(var qe=o(function(){var Ue=De.shift(),ct=V.get(Ue);ct.forEach(function(We){if(we.get(We.id)ot&&(ot=yt),ntYt&&(Yt=nt)}}catch(At){Mt=!0,xt=At}finally{try{!bt&&ut.return&&ut.return()}finally{if(Mt)throw xt}}var dn=(ct+ot)/2-(We+Yt)/2,Tt=!0,On=!1,tn=void 0;try{for(var _r=st[Symbol.iterator](),Dr;!(Tt=(Dr=_r.next()).done);Tt=!0){var Pn=Dr.value;we.set(Pn,we.get(Pn)+dn)}}catch(At){On=!0,tn=At}finally{try{!Tt&&_r.return&&_r.return()}finally{if(On)throw tn}}})}return we},"findAppropriatePositionForRelativePlacement"),D=o(function(V){var xe=0,q=0,pe=0,ve=0;if(V.forEach(function(Ve){Ve.left?b[x.get(Ve.left)]-b[x.get(Ve.right)]>=0?xe++:q++:w[x.get(Ve.top)]-w[x.get(Ve.bottom)]>=0?pe++:ve++}),xe>q&&pe>ve)for(var Pe=0;Peq)for(var _e=0;_eve)for(var we=0;we1)y.fixedNodeConstraint.forEach(function(oe,V){O[V]=[oe.position.x,oe.position.y],M[V]=[b[x.get(oe.nodeId)],w[x.get(oe.nodeId)]]}),B=!0;else if(y.alignmentConstraint)(function(){var oe=0;if(y.alignmentConstraint.vertical){for(var V=y.alignmentConstraint.vertical,xe=o(function(we){var Ve=new Set;V[we].forEach(function(at){Ve.add(at)});var De=new Set([].concat(u(Ve)).filter(function(at){return P.has(at)})),qe=void 0;De.size>0?qe=b[x.get(De.values().next().value)]:qe=_(Ve).x,V[we].forEach(function(at){O[oe]=[qe,w[x.get(at)]],M[oe]=[b[x.get(at)],w[x.get(at)]],oe++})},"_loop2"),q=0;q0?qe=b[x.get(De.values().next().value)]:qe=_(Ve).y,pe[we].forEach(function(at){O[oe]=[b[x.get(at)],qe],M[oe]=[b[x.get(at)],w[x.get(at)]],oe++})},"_loop3"),Pe=0;PeQ&&(Q=H[ie].length,j=ie);if(Q<$.size/2)D(y.relativePlacementConstraint),B=!1,F=!1;else{var ne=new Map,le=new Map,he=[];H[j].forEach(function(oe){z.get(oe).forEach(function(V){V.direction=="horizontal"?(ne.has(oe)?ne.get(oe).push(V):ne.set(oe,[V]),ne.has(V.id)||ne.set(V.id,[]),he.push({left:oe,right:V.id})):(le.has(oe)?le.get(oe).push(V):le.set(oe,[V]),le.has(V.id)||le.set(V.id,[]),he.push({top:oe,bottom:V.id}))})}),D(he),F=!1;var K=I(ne,"horizontal"),X=I(le,"vertical");H[j].forEach(function(oe,V){M[V]=[b[x.get(oe)],w[x.get(oe)]],O[V]=[],K.has(oe)?O[V][0]=K.get(oe):O[V][0]=b[x.get(oe)],X.has(oe)?O[V][1]=X.get(oe):O[V][1]=w[x.get(oe)]}),B=!0}}if(B){for(var te=void 0,J=d.transpose(O),se=d.transpose(M),ue=0;ue0){var ze={x:0,y:0};y.fixedNodeConstraint.forEach(function(oe,V){var xe={x:b[x.get(oe.nodeId)],y:w[x.get(oe.nodeId)]},q=oe.position,pe=S(q,xe);ze.x+=pe.x,ze.y+=pe.y}),ze.x/=y.fixedNodeConstraint.length,ze.y/=y.fixedNodeConstraint.length,b.forEach(function(oe,V){b[V]+=ze.x}),w.forEach(function(oe,V){w[V]+=ze.y}),y.fixedNodeConstraint.forEach(function(oe){b[x.get(oe.nodeId)]=oe.position.x,w[x.get(oe.nodeId)]=oe.position.y})}if(y.alignmentConstraint){if(y.alignmentConstraint.vertical)for(var He=y.alignmentConstraint.vertical,$e=o(function(V){var xe=new Set;He[V].forEach(function(ve){xe.add(ve)});var q=new Set([].concat(u(xe)).filter(function(ve){return P.has(ve)})),pe=void 0;q.size>0?pe=b[x.get(q.values().next().value)]:pe=_(xe).x,xe.forEach(function(ve){P.has(ve)||(b[x.get(ve)]=pe)})},"_loop4"),Re=0;Re0?pe=w[x.get(q.values().next().value)]:pe=_(xe).y,xe.forEach(function(ve){P.has(ve)||(w[x.get(ve)]=pe)})},"_loop5"),W=0;W{a.exports=t}},r={};function n(a){var s=r[a];if(s!==void 0)return s.exports;var l=r[a]={exports:{}};return e[a](l,l.exports,n),l.exports}o(n,"__webpack_require__");var i=n(45);return i})()})});var Pve=Mi((E4,gF)=>{"use strict";o(function(e,r){typeof E4=="object"&&typeof gF=="object"?gF.exports=r(mF()):typeof define=="function"&&define.amd?define(["cose-base"],r):typeof E4=="object"?E4.cytoscapeFcose=r(mF()):e.cytoscapeFcose=r(e.coseBase)},"webpackUniversalModuleDefinition")(E4,function(t){return(()=>{"use strict";var e={658:a=>{a.exports=Object.assign!=null?Object.assign.bind(Object):function(s){for(var l=arguments.length,u=Array(l>1?l-1:0),h=1;h{var u=function(){function d(p,m){var g=[],y=!0,v=!1,x=void 0;try{for(var b=p[Symbol.iterator](),w;!(y=(w=b.next()).done)&&(g.push(w.value),!(m&&g.length===m));y=!0);}catch(C){v=!0,x=C}finally{try{!y&&b.return&&b.return()}finally{if(v)throw x}}return g}return o(d,"sliceIterator"),function(p,m){if(Array.isArray(p))return p;if(Symbol.iterator in Object(p))return d(p,m);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),h=l(140).layoutBase.LinkedList,f={};f.getTopMostNodes=function(d){for(var p={},m=0;m0&&B.merge($)});for(var F=0;F1){w=x[0],C=w.connectedEdges().length,x.forEach(function(M){M.connectedEdges().length0&&g.set("dummy"+(g.size+1),A),S},f.relocateComponent=function(d,p,m){if(!m.fixedNodeConstraint){var g=Number.POSITIVE_INFINITY,y=Number.NEGATIVE_INFINITY,v=Number.POSITIVE_INFINITY,x=Number.NEGATIVE_INFINITY;if(m.quality=="draft"){var b=!0,w=!1,C=void 0;try{for(var T=p.nodeIndexes[Symbol.iterator](),E;!(b=(E=T.next()).done);b=!0){var A=E.value,S=u(A,2),_=S[0],I=S[1],D=m.cy.getElementById(_);if(D){var k=D.boundingBox(),L=p.xCoords[I]-k.w/2,R=p.xCoords[I]+k.w/2,O=p.yCoords[I]-k.h/2,M=p.yCoords[I]+k.h/2;Ly&&(y=R),Ox&&(x=M)}}}catch($){w=!0,C=$}finally{try{!b&&T.return&&T.return()}finally{if(w)throw C}}var B=d.x-(y+g)/2,F=d.y-(x+v)/2;p.xCoords=p.xCoords.map(function($){return $+B}),p.yCoords=p.yCoords.map(function($){return $+F})}else{Object.keys(p).forEach(function($){var H=p[$],Q=H.getRect().x,j=H.getRect().x+H.getRect().width,ie=H.getRect().y,ne=H.getRect().y+H.getRect().height;Qy&&(y=j),iex&&(x=ne)});var P=d.x-(y+g)/2,z=d.y-(x+v)/2;Object.keys(p).forEach(function($){var H=p[$];H.setCenter(H.getCenterX()+P,H.getCenterY()+z)})}}},f.calcBoundingBox=function(d,p,m,g){for(var y=Number.MAX_SAFE_INTEGER,v=Number.MIN_SAFE_INTEGER,x=Number.MAX_SAFE_INTEGER,b=Number.MIN_SAFE_INTEGER,w=void 0,C=void 0,T=void 0,E=void 0,A=d.descendants().not(":parent"),S=A.length,_=0;_w&&(y=w),vT&&(x=T),b{var u=l(548),h=l(140).CoSELayout,f=l(140).CoSENode,d=l(140).layoutBase.PointD,p=l(140).layoutBase.DimensionD,m=l(140).layoutBase.LayoutConstants,g=l(140).layoutBase.FDLayoutConstants,y=l(140).CoSEConstants,v=o(function(b,w){var C=b.cy,T=b.eles,E=T.nodes(),A=T.edges(),S=void 0,_=void 0,I=void 0,D={};b.randomize&&(S=w.nodeIndexes,_=w.xCoords,I=w.yCoords);var k=o(function($){return typeof $=="function"},"isFn"),L=o(function($,H){return k($)?$(H):$},"optFn"),R=u.calcParentsWithoutChildren(C,T),O=o(function z($,H,Q,j){for(var ie=H.length,ne=0;ne0){var J=void 0;J=Q.getGraphManager().add(Q.newGraph(),K),z(J,he,Q,j)}}},"processChildrenList"),M=o(function($,H,Q){for(var j=0,ie=0,ne=0;ne0?y.DEFAULT_EDGE_LENGTH=g.DEFAULT_EDGE_LENGTH=j/ie:k(b.idealEdgeLength)?y.DEFAULT_EDGE_LENGTH=g.DEFAULT_EDGE_LENGTH=50:y.DEFAULT_EDGE_LENGTH=g.DEFAULT_EDGE_LENGTH=b.idealEdgeLength,y.MIN_REPULSION_DIST=g.MIN_REPULSION_DIST=g.DEFAULT_EDGE_LENGTH/10,y.DEFAULT_RADIAL_SEPARATION=g.DEFAULT_EDGE_LENGTH)},"processEdges"),B=o(function($,H){H.fixedNodeConstraint&&($.constraints.fixedNodeConstraint=H.fixedNodeConstraint),H.alignmentConstraint&&($.constraints.alignmentConstraint=H.alignmentConstraint),H.relativePlacementConstraint&&($.constraints.relativePlacementConstraint=H.relativePlacementConstraint)},"processConstraints");b.nestingFactor!=null&&(y.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=g.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=b.nestingFactor),b.gravity!=null&&(y.DEFAULT_GRAVITY_STRENGTH=g.DEFAULT_GRAVITY_STRENGTH=b.gravity),b.numIter!=null&&(y.MAX_ITERATIONS=g.MAX_ITERATIONS=b.numIter),b.gravityRange!=null&&(y.DEFAULT_GRAVITY_RANGE_FACTOR=g.DEFAULT_GRAVITY_RANGE_FACTOR=b.gravityRange),b.gravityCompound!=null&&(y.DEFAULT_COMPOUND_GRAVITY_STRENGTH=g.DEFAULT_COMPOUND_GRAVITY_STRENGTH=b.gravityCompound),b.gravityRangeCompound!=null&&(y.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=g.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=b.gravityRangeCompound),b.initialEnergyOnIncremental!=null&&(y.DEFAULT_COOLING_FACTOR_INCREMENTAL=g.DEFAULT_COOLING_FACTOR_INCREMENTAL=b.initialEnergyOnIncremental),b.tilingCompareBy!=null&&(y.TILING_COMPARE_BY=b.tilingCompareBy),b.quality=="proof"?m.QUALITY=2:m.QUALITY=0,y.NODE_DIMENSIONS_INCLUDE_LABELS=g.NODE_DIMENSIONS_INCLUDE_LABELS=m.NODE_DIMENSIONS_INCLUDE_LABELS=b.nodeDimensionsIncludeLabels,y.DEFAULT_INCREMENTAL=g.DEFAULT_INCREMENTAL=m.DEFAULT_INCREMENTAL=!b.randomize,y.ANIMATE=g.ANIMATE=m.ANIMATE=b.animate,y.TILE=b.tile,y.TILING_PADDING_VERTICAL=typeof b.tilingPaddingVertical=="function"?b.tilingPaddingVertical.call():b.tilingPaddingVertical,y.TILING_PADDING_HORIZONTAL=typeof b.tilingPaddingHorizontal=="function"?b.tilingPaddingHorizontal.call():b.tilingPaddingHorizontal,y.DEFAULT_INCREMENTAL=g.DEFAULT_INCREMENTAL=m.DEFAULT_INCREMENTAL=!0,y.PURE_INCREMENTAL=!b.randomize,m.DEFAULT_UNIFORM_LEAF_NODE_SIZES=b.uniformNodeDimensions,b.step=="transformed"&&(y.TRANSFORM_ON_CONSTRAINT_HANDLING=!0,y.ENFORCE_CONSTRAINTS=!1,y.APPLY_LAYOUT=!1),b.step=="enforced"&&(y.TRANSFORM_ON_CONSTRAINT_HANDLING=!1,y.ENFORCE_CONSTRAINTS=!0,y.APPLY_LAYOUT=!1),b.step=="cose"&&(y.TRANSFORM_ON_CONSTRAINT_HANDLING=!1,y.ENFORCE_CONSTRAINTS=!1,y.APPLY_LAYOUT=!0),b.step=="all"&&(b.randomize?y.TRANSFORM_ON_CONSTRAINT_HANDLING=!0:y.TRANSFORM_ON_CONSTRAINT_HANDLING=!1,y.ENFORCE_CONSTRAINTS=!0,y.APPLY_LAYOUT=!0),b.fixedNodeConstraint||b.alignmentConstraint||b.relativePlacementConstraint?y.TREE_REDUCTION_ON_INCREMENTAL=!1:y.TREE_REDUCTION_ON_INCREMENTAL=!0;var F=new h,P=F.newGraphManager();return O(P.addRoot(),u.getTopMostNodes(E),F,b),M(F,P,A),B(F,b),F.runLayout(),D},"coseLayout");a.exports={coseLayout:v}},212:(a,s,l)=>{var u=function(){function b(w,C){for(var T=0;T0)if(M){var P=d.getTopMostNodes(T.eles.nodes());if(k=d.connectComponents(E,T.eles,P),k.forEach(function(ce){var ae=ce.boundingBox();L.push({x:ae.x1+ae.w/2,y:ae.y1+ae.h/2})}),T.randomize&&k.forEach(function(ce){T.eles=ce,S.push(m(T))}),T.quality=="default"||T.quality=="proof"){var z=E.collection();if(T.tile){var $=new Map,H=[],Q=[],j=0,ie={nodeIndexes:$,xCoords:H,yCoords:Q},ne=[];if(k.forEach(function(ce,ae){ce.edges().length==0&&(ce.nodes().forEach(function(Oe,ge){z.merge(ce.nodes()[ge]),Oe.isParent()||(ie.nodeIndexes.set(ce.nodes()[ge].id(),j++),ie.xCoords.push(ce.nodes()[0].position().x),ie.yCoords.push(ce.nodes()[0].position().y))}),ne.push(ae))}),z.length>1){var le=z.boundingBox();L.push({x:le.x1+le.w/2,y:le.y1+le.h/2}),k.push(z),S.push(ie);for(var he=ne.length-1;he>=0;he--)k.splice(ne[he],1),S.splice(ne[he],1),L.splice(ne[he],1)}}k.forEach(function(ce,ae){T.eles=ce,D.push(y(T,S[ae])),d.relocateComponent(L[ae],D[ae],T)})}else k.forEach(function(ce,ae){d.relocateComponent(L[ae],S[ae],T)});var K=new Set;if(k.length>1){var X=[],te=A.filter(function(ce){return ce.css("display")=="none"});k.forEach(function(ce,ae){var Oe=void 0;if(T.quality=="draft"&&(Oe=S[ae].nodeIndexes),ce.nodes().not(te).length>0){var ge={};ge.edges=[],ge.nodes=[];var ze=void 0;ce.nodes().not(te).forEach(function(He){if(T.quality=="draft")if(!He.isParent())ze=Oe.get(He.id()),ge.nodes.push({x:S[ae].xCoords[ze]-He.boundingbox().w/2,y:S[ae].yCoords[ze]-He.boundingbox().h/2,width:He.boundingbox().w,height:He.boundingbox().h});else{var $e=d.calcBoundingBox(He,S[ae].xCoords,S[ae].yCoords,Oe);ge.nodes.push({x:$e.topLeftX,y:$e.topLeftY,width:$e.width,height:$e.height})}else D[ae][He.id()]&&ge.nodes.push({x:D[ae][He.id()].getLeft(),y:D[ae][He.id()].getTop(),width:D[ae][He.id()].getWidth(),height:D[ae][He.id()].getHeight()})}),ce.edges().forEach(function(He){var $e=He.source(),Re=He.target();if($e.css("display")!="none"&&Re.css("display")!="none")if(T.quality=="draft"){var Ie=Oe.get($e.id()),be=Oe.get(Re.id()),W=[],de=[];if($e.isParent()){var re=d.calcBoundingBox($e,S[ae].xCoords,S[ae].yCoords,Oe);W.push(re.topLeftX+re.width/2),W.push(re.topLeftY+re.height/2)}else W.push(S[ae].xCoords[Ie]),W.push(S[ae].yCoords[Ie]);if(Re.isParent()){var oe=d.calcBoundingBox(Re,S[ae].xCoords,S[ae].yCoords,Oe);de.push(oe.topLeftX+oe.width/2),de.push(oe.topLeftY+oe.height/2)}else de.push(S[ae].xCoords[be]),de.push(S[ae].yCoords[be]);ge.edges.push({startX:W[0],startY:W[1],endX:de[0],endY:de[1]})}else D[ae][$e.id()]&&D[ae][Re.id()]&&ge.edges.push({startX:D[ae][$e.id()].getCenterX(),startY:D[ae][$e.id()].getCenterY(),endX:D[ae][Re.id()].getCenterX(),endY:D[ae][Re.id()].getCenterY()})}),ge.nodes.length>0&&(X.push(ge),K.add(ae))}});var J=O.packComponents(X,T.randomize).shifts;if(T.quality=="draft")S.forEach(function(ce,ae){var Oe=ce.xCoords.map(function(ze){return ze+J[ae].dx}),ge=ce.yCoords.map(function(ze){return ze+J[ae].dy});ce.xCoords=Oe,ce.yCoords=ge});else{var se=0;K.forEach(function(ce){Object.keys(D[ce]).forEach(function(ae){var Oe=D[ce][ae];Oe.setCenter(Oe.getCenterX()+J[se].dx,Oe.getCenterY()+J[se].dy)}),se++})}}}else{var B=T.eles.boundingBox();if(L.push({x:B.x1+B.w/2,y:B.y1+B.h/2}),T.randomize){var F=m(T);S.push(F)}T.quality=="default"||T.quality=="proof"?(D.push(y(T,S[0])),d.relocateComponent(L[0],D[0],T)):d.relocateComponent(L[0],S[0],T)}var ue=o(function(ae,Oe){if(T.quality=="default"||T.quality=="proof"){typeof ae=="number"&&(ae=Oe);var ge=void 0,ze=void 0,He=ae.data("id");return D.forEach(function(Re){He in Re&&(ge={x:Re[He].getRect().getCenterX(),y:Re[He].getRect().getCenterY()},ze=Re[He])}),T.nodeDimensionsIncludeLabels&&(ze.labelWidth&&(ze.labelPosHorizontal=="left"?ge.x+=ze.labelWidth/2:ze.labelPosHorizontal=="right"&&(ge.x-=ze.labelWidth/2)),ze.labelHeight&&(ze.labelPosVertical=="top"?ge.y+=ze.labelHeight/2:ze.labelPosVertical=="bottom"&&(ge.y-=ze.labelHeight/2))),ge==null&&(ge={x:ae.position("x"),y:ae.position("y")}),{x:ge.x,y:ge.y}}else{var $e=void 0;return S.forEach(function(Re){var Ie=Re.nodeIndexes.get(ae.id());Ie!=null&&($e={x:Re.xCoords[Ie],y:Re.yCoords[Ie]})}),$e==null&&($e={x:ae.position("x"),y:ae.position("y")}),{x:$e.x,y:$e.y}}},"getPositions");if(T.quality=="default"||T.quality=="proof"||T.randomize){var Z=d.calcParentsWithoutChildren(E,A),Se=A.filter(function(ce){return ce.css("display")=="none"});T.eles=A.not(Se),A.nodes().not(":parent").not(Se).layoutPositions(C,T,ue),Z.length>0&&Z.forEach(function(ce){ce.position(ue(ce))})}else console.log("If randomize option is set to false, then quality option must be 'default' or 'proof'.")},"run")}]),b}();a.exports=x},657:(a,s,l)=>{var u=l(548),h=l(140).layoutBase.Matrix,f=l(140).layoutBase.SVD,d=o(function(m){var g=m.cy,y=m.eles,v=y.nodes(),x=y.nodes(":parent"),b=new Map,w=new Map,C=new Map,T=[],E=[],A=[],S=[],_=[],I=[],D=[],k=[],L=void 0,R=void 0,O=1e8,M=1e-9,B=m.piTol,F=m.samplingType,P=m.nodeSeparation,z=void 0,$=o(function(){for(var xe=0,q=0,pe=!1;q=Pe;){we=ve[Pe++];for(var st=T[we],Ue=0;Ueqe&&(qe=_[We],at=We)}return at},"BFS"),Q=o(function(xe){var q=void 0;if(xe){q=Math.floor(Math.random()*R),L=q;for(var ve=0;ve=1)break;qe=De}for(var st=0;st=1)break;qe=De}for(var ct=0;ct0&&(q.isParent()?T[xe].push(C.get(q.id())):T[xe].push(q.id()))})});var Z=o(function(xe){var q=w.get(xe),pe=void 0;b.get(xe).forEach(function(ve){g.getElementById(ve).isParent()?pe=C.get(ve):pe=ve,T[q].push(pe),T[w.get(pe)].push(xe)})},"_loop"),Se=!0,ce=!1,ae=void 0;try{for(var Oe=b.keys()[Symbol.iterator](),ge;!(Se=(ge=Oe.next()).done);Se=!0){var ze=ge.value;Z(ze)}}catch(V){ce=!0,ae=V}finally{try{!Se&&Oe.return&&Oe.return()}finally{if(ce)throw ae}}R=w.size;var He=void 0;if(R>2){z=R{var u=l(212),h=o(function(d){d&&d("layout","fcose",u)},"register");typeof cytoscape<"u"&&h(cytoscape),a.exports=h},140:a=>{a.exports=t}},r={};function n(a){var s=r[a];if(s!==void 0)return s.exports;var l=r[a]={exports:{}};return e[a](l,l.exports,n),l.exports}o(n,"__webpack_require__");var i=n(579);return i})()})});var dy,Zp,yF=N(()=>{"use strict";tu();dy=o(t=>`${t}`,"wrapIcon"),Zp={prefix:"mermaid-architecture",height:80,width:80,icons:{database:{body:dy('')},server:{body:dy('')},disk:{body:dy('')},internet:{body:dy('')},cloud:{body:dy('')},unknown:OC,blank:{body:dy("")}}}});var Bve,Fve,$ve,zve,Gve=N(()=>{"use strict";tu();zt();to();w4();yF();oC();Bve=o(async function(t,e){let r=Li("padding"),n=Li("iconSize"),i=n/2,a=n/6,s=a/2;await Promise.all(e.edges().map(async l=>{let{source:u,sourceDir:h,sourceArrow:f,sourceGroup:d,target:p,targetDir:m,targetArrow:g,targetGroup:y,label:v}=sC(l),{x,y:b}=l[0].sourceEndpoint(),{x:w,y:C}=l[0].midpoint(),{x:T,y:E}=l[0].targetEndpoint(),A=r+4;if(d&&(Ha(h)?x+=h==="L"?-A:A:b+=h==="T"?-A:A+18),y&&(Ha(m)?T+=m==="L"?-A:A:E+=m==="T"?-A:A+18),!d&&Qp.getNode(u)?.type==="junction"&&(Ha(h)?x+=h==="L"?i:-i:b+=h==="T"?i:-i),!y&&Qp.getNode(p)?.type==="junction"&&(Ha(m)?T+=m==="L"?i:-i:E+=m==="T"?i:-i),l[0]._private.rscratch){let S=t.insert("g");if(S.insert("path").attr("d",`M ${x},${b} L ${w},${C} L${T},${E} `).attr("class","edge"),f){let _=Ha(h)?v4[h](x,a):x-s,I=Zc(h)?v4[h](b,a):b-s;S.insert("polygon").attr("points",cF[h](a)).attr("transform",`translate(${_},${I})`).attr("class","arrow")}if(g){let _=Ha(m)?v4[m](T,a):T-s,I=Zc(m)?v4[m](E,a):E-s;S.insert("polygon").attr("points",cF[m](a)).attr("transform",`translate(${_},${I})`).attr("class","arrow")}if(v){let _=x4(h,m)?"XY":Ha(h)?"X":"Y",I=0;_==="X"?I=Math.abs(x-T):_==="Y"?I=Math.abs(b-E)/1.5:I=Math.abs(x-T)/2;let D=S.append("g");if(await Hn(D,v,{useHtmlLabels:!1,width:I,classes:"architecture-service-label"},me()),D.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle"),_==="X")D.attr("transform","translate("+w+", "+C+")");else if(_==="Y")D.attr("transform","translate("+w+", "+C+") rotate(-90)");else if(_==="XY"){let k=b4(h,m);if(k&&Sve(k)){let L=D.node().getBoundingClientRect(),[R,O]=Ave(k);D.attr("dominant-baseline","auto").attr("transform",`rotate(${-1*R*O*45})`);let M=D.node().getBoundingClientRect();D.attr("transform",` + translate(${w}, ${C-L.height/2}) + translate(${R*M.width/2}, ${O*M.height/2}) + rotate(${-1*R*O*45}, 0, ${L.height/2}) + `)}}}}}))},"drawEdges"),Fve=o(async function(t,e){let n=Li("padding")*.75,i=Li("fontSize"),s=Li("iconSize")/2;await Promise.all(e.nodes().map(async l=>{let u=Ff(l);if(u.type==="group"){let{h,w:f,x1:d,y1:p}=l.boundingBox();t.append("rect").attr("x",d+s).attr("y",p+s).attr("width",f).attr("height",h).attr("class","node-bkg");let m=t.append("g"),g=d,y=p;if(u.icon){let v=m.append("g");v.html(`${await wo(u.icon,{height:n,width:n,fallbackPrefix:Zp.prefix})}`),v.attr("transform","translate("+(g+s+1)+", "+(y+s+1)+")"),g+=n,y+=i/2-1-2}if(u.label){let v=m.append("g");await Hn(v,u.label,{useHtmlLabels:!1,width:f,classes:"architecture-service-label"},me()),v.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","start").attr("text-anchor","start"),v.attr("transform","translate("+(g+s+4)+", "+(y+s+2)+")")}}}))},"drawGroups"),$ve=o(async function(t,e,r){for(let n of r){let i=e.append("g"),a=Li("iconSize");if(n.title){let h=i.append("g");await Hn(h,n.title,{useHtmlLabels:!1,width:a*1.5,classes:"architecture-service-label"},me()),h.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle"),h.attr("transform","translate("+a/2+", "+a+")")}let s=i.append("g");if(n.icon)s.html(`${await wo(n.icon,{height:a,width:a,fallbackPrefix:Zp.prefix})}`);else if(n.iconText){s.html(`${await wo("blank",{height:a,width:a,fallbackPrefix:Zp.prefix})}`);let d=s.append("g").append("foreignObject").attr("width",a).attr("height",a).append("div").attr("class","node-icon-text").attr("style",`height: ${a}px;`).append("div").html(n.iconText),p=parseInt(window.getComputedStyle(d.node(),null).getPropertyValue("font-size").replace(/\D/g,""))??16;d.attr("style",`-webkit-line-clamp: ${Math.floor((a-2)/p)};`)}else s.append("path").attr("class","node-bkg").attr("id","node-"+n.id).attr("d",`M0 ${a} v${-a} q0,-5 5,-5 h${a} q5,0 5,5 v${a} H0 Z`);i.attr("class","architecture-service");let{width:l,height:u}=i._groups[0][0].getBBox();n.width=l,n.height=u,t.setElementForId(n.id,i)}return 0},"drawServices"),zve=o(function(t,e,r){r.forEach(n=>{let i=e.append("g"),a=Li("iconSize");i.append("g").append("rect").attr("id","node-"+n.id).attr("fill-opacity","0").attr("width",a).attr("height",a),i.attr("class","architecture-junction");let{width:l,height:u}=i._groups[0][0].getBBox();i.width=l,i.height=u,t.setElementForId(n.id,i)})},"drawJunctions")});function Srt(t,e){t.forEach(r=>{e.add({group:"nodes",data:{type:"service",id:r.id,icon:r.icon,label:r.title,parent:r.in,width:Li("iconSize"),height:Li("iconSize")},classes:"node-service"})})}function Crt(t,e){t.forEach(r=>{e.add({group:"nodes",data:{type:"junction",id:r.id,parent:r.in,width:Li("iconSize"),height:Li("iconSize")},classes:"node-junction"})})}function Art(t,e){e.nodes().map(r=>{let n=Ff(r);if(n.type==="group")return;n.x=r.position().x,n.y=r.position().y,t.getElementById(n.id).attr("transform","translate("+(n.x||0)+","+(n.y||0)+")")})}function _rt(t,e){t.forEach(r=>{e.add({group:"nodes",data:{type:"group",id:r.id,icon:r.icon,label:r.title,parent:r.in},classes:"node-group"})})}function Drt(t,e){t.forEach(r=>{let{lhsId:n,rhsId:i,lhsInto:a,lhsGroup:s,rhsInto:l,lhsDir:u,rhsDir:h,rhsGroup:f,title:d}=r,p=x4(r.lhsDir,r.rhsDir)?"segments":"straight",m={id:`${n}-${i}`,label:d,source:n,sourceDir:u,sourceArrow:a,sourceGroup:s,sourceEndpoint:u==="L"?"0 50%":u==="R"?"100% 50%":u==="T"?"50% 0":"50% 100%",target:i,targetDir:h,targetArrow:l,targetGroup:f,targetEndpoint:h==="L"?"0 50%":h==="R"?"100% 50%":h==="T"?"50% 0":"50% 100%"};e.add({group:"edges",data:m,classes:p})})}function Lrt(t,e,r){let n=o((l,u)=>Object.entries(l).reduce((h,[f,d])=>{let p=0,m=Object.entries(d);if(m.length===1)return h[f]=m[0][1],h;for(let g=0;g{let u={},h={};return Object.entries(l).forEach(([f,[d,p]])=>{let m=t.getNode(f)?.in??"default";u[p]??={},u[p][m]??=[],u[p][m].push(f),h[d]??={},h[d][m]??=[],h[d][m].push(f)}),{horiz:Object.values(n(u,"horizontal")).filter(f=>f.length>1),vert:Object.values(n(h,"vertical")).filter(f=>f.length>1)}}),[a,s]=i.reduce(([l,u],{horiz:h,vert:f})=>[[...l,...h],[...u,...f]],[[],[]]);return{horizontal:a,vertical:s}}function Rrt(t){let e=[],r=o(i=>`${i[0]},${i[1]}`,"posToStr"),n=o(i=>i.split(",").map(a=>parseInt(a)),"strToPos");return t.forEach(i=>{let a=Object.fromEntries(Object.entries(i).map(([h,f])=>[r(f),h])),s=[r([0,0])],l={},u={L:[-1,0],R:[1,0],T:[0,1],B:[0,-1]};for(;s.length>0;){let h=s.shift();if(h){l[h]=1;let f=a[h];if(f){let d=n(h);Object.entries(u).forEach(([p,m])=>{let g=r([d[0]+m[0],d[1]+m[1]]),y=a[g];y&&!l[g]&&(s.push(g),e.push({[lF[p]]:y,[lF[Eve(p)]]:f,gap:1.5*Li("iconSize")}))})}}}}),e}function Nrt(t,e,r,n,i,{spatialMaps:a,groupAlignments:s}){return new Promise(l=>{let u=Ge("body").append("div").attr("id","cy").attr("style","display:none"),h=rl({container:document.getElementById("cy"),style:[{selector:"edge",style:{"curve-style":"straight",label:"data(label)","source-endpoint":"data(sourceEndpoint)","target-endpoint":"data(targetEndpoint)"}},{selector:"edge.segments",style:{"curve-style":"segments","segment-weights":"0","segment-distances":[.5],"edge-distances":"endpoints","source-endpoint":"data(sourceEndpoint)","target-endpoint":"data(targetEndpoint)"}},{selector:"node",style:{"compound-sizing-wrt-labels":"include"}},{selector:"node[label]",style:{"text-valign":"bottom","text-halign":"center","font-size":`${Li("fontSize")}px`}},{selector:".node-service",style:{label:"data(label)",width:"data(width)",height:"data(height)"}},{selector:".node-junction",style:{width:"data(width)",height:"data(height)"}},{selector:".node-group",style:{padding:`${Li("padding")}px`}}]});u.remove(),_rt(r,h),Srt(t,h),Crt(e,h),Drt(n,h);let f=Lrt(i,a,s),d=Rrt(a),p=h.layout({name:"fcose",quality:"proof",styleEnabled:!1,animate:!1,nodeDimensionsIncludeLabels:!1,idealEdgeLength(m){let[g,y]=m.connectedNodes(),{parent:v}=Ff(g),{parent:x}=Ff(y);return v===x?1.5*Li("iconSize"):.5*Li("iconSize")},edgeElasticity(m){let[g,y]=m.connectedNodes(),{parent:v}=Ff(g),{parent:x}=Ff(y);return v===x?.45:.001},alignmentConstraint:f,relativePlacementConstraint:d});p.one("layoutstop",()=>{function m(g,y,v,x){let b,w,{x:C,y:T}=g,{x:E,y:A}=y;w=(x-T+(C-v)*(T-A)/(C-E))/Math.sqrt(1+Math.pow((T-A)/(C-E),2)),b=Math.sqrt(Math.pow(x-T,2)+Math.pow(v-C,2)-Math.pow(w,2));let S=Math.sqrt(Math.pow(E-C,2)+Math.pow(A-T,2));b=b/S;let _=(E-C)*(x-T)-(A-T)*(v-C);switch(!0){case _>=0:_=1;break;case _<0:_=-1;break}let I=(E-C)*(v-C)+(A-T)*(x-T);switch(!0){case I>=0:I=1;break;case I<0:I=-1;break}return w=Math.abs(w)*_,b=b*I,{distances:w,weights:b}}o(m,"getSegmentWeights"),h.startBatch();for(let g of Object.values(h.edges()))if(g.data?.()){let{x:y,y:v}=g.source().position(),{x,y:b}=g.target().position();if(y!==x&&v!==b){let w=g.sourceEndpoint(),C=g.targetEndpoint(),{sourceDir:T}=sC(g),[E,A]=Zc(T)?[w.x,C.y]:[C.x,w.y],{weights:S,distances:_}=m(w,C,E,A);g.style("segment-distances",_),g.style("segment-weights",S)}}h.endBatch(),p.run()}),p.run(),h.ready(m=>{Y.info("Ready",m),l(h)})})}var Vve,Mrt,Uve,Hve=N(()=>{"use strict";tu();kB();Vve=Sa(Pve(),1);dr();vt();Vc();Ei();w4();yF();oC();Gve();P4([{name:Zp.prefix,icons:Zp}]);rl.use(Vve.default);o(Srt,"addServices");o(Crt,"addJunctions");o(Art,"positionNodes");o(_rt,"addGroups");o(Drt,"addEdges");o(Lrt,"getAlignments");o(Rrt,"getRelativeConstraints");o(Nrt,"layoutArchitecture");Mrt=o(async(t,e,r,n)=>{let i=n.db,a=i.getServices(),s=i.getJunctions(),l=i.getGroups(),u=i.getEdges(),h=i.getDataStructures(),f=sa(e),d=f.append("g");d.attr("class","architecture-edges");let p=f.append("g");p.attr("class","architecture-services");let m=f.append("g");m.attr("class","architecture-groups"),await $ve(i,p,a),zve(i,p,s);let g=await Nrt(a,s,l,u,i,h);await Bve(d,g),await Fve(m,g),Art(i,g),Ao(void 0,f,Li("padding"),Li("useMaxWidth"))},"draw"),Uve={draw:Mrt}});var Wve={};hr(Wve,{diagram:()=>Irt});var Irt,qve=N(()=>{"use strict";Mve();w4();Ove();Hve();Irt={parser:Nve,db:Qp,renderer:Uve,styles:Ive}});var bnt={};hr(bnt,{default:()=>xnt});tu();PC();Xf();var YX="c4",PCe=o(t=>/^\s*C4Context|C4Container|C4Component|C4Dynamic|C4Deployment/.test(t),"detector"),BCe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(qX(),WX));return{id:YX,diagram:t}},"loader"),FCe={id:YX,detector:PCe,loader:BCe},XX=FCe;var Xie="flowchart",xOe=o((t,e)=>e?.flowchart?.defaultRenderer==="dagre-wrapper"||e?.flowchart?.defaultRenderer==="elk"?!1:/^\s*graph/.test(t),"detector"),bOe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(ak(),ik));return{id:Xie,diagram:t}},"loader"),wOe={id:Xie,detector:xOe,loader:bOe},jie=wOe;var Kie="flowchart-v2",TOe=o((t,e)=>e?.flowchart?.defaultRenderer==="dagre-d3"?!1:(e?.flowchart?.defaultRenderer==="elk"&&(e.layout="elk"),/^\s*graph/.test(t)&&e?.flowchart?.defaultRenderer==="dagre-wrapper"?!0:/^\s*flowchart/.test(t)),"detector"),kOe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(ak(),ik));return{id:Kie,diagram:t}},"loader"),EOe={id:Kie,detector:TOe,loader:kOe},Qie=EOe;var sae="er",DOe=o(t=>/^\s*erDiagram/.test(t),"detector"),LOe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(aae(),iae));return{id:sae,diagram:t}},"loader"),ROe={id:sae,detector:DOe,loader:LOe},oae=ROe;var uue="gitGraph",tze=o(t=>/^\s*gitGraph/.test(t),"detector"),rze=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(cue(),lue));return{id:uue,diagram:t}},"loader"),nze={id:uue,detector:tze,loader:rze},hue=nze;var Gue="gantt",Hze=o(t=>/^\s*gantt/.test(t),"detector"),Wze=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(zue(),$ue));return{id:Gue,diagram:t}},"loader"),qze={id:Gue,detector:Hze,loader:Wze},Vue=qze;var Que="info",Zze=o(t=>/^\s*info/.test(t),"detector"),Jze=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(Kue(),jue));return{id:Que,diagram:t}},"loader"),Zue={id:Que,detector:Zze,loader:Jze};var lhe="pie",fGe=o(t=>/^\s*pie/.test(t),"detector"),dGe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(ohe(),she));return{id:lhe,diagram:t}},"loader"),che={id:lhe,detector:fGe,loader:dGe};var The="quadrantChart",RGe=o(t=>/^\s*quadrantChart/.test(t),"detector"),NGe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(whe(),bhe));return{id:The,diagram:t}},"loader"),MGe={id:The,detector:RGe,loader:NGe},khe=MGe;var Khe="xychart",jGe=o(t=>/^\s*xychart-beta/.test(t),"detector"),KGe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(jhe(),Xhe));return{id:Khe,diagram:t}},"loader"),QGe={id:Khe,detector:jGe,loader:KGe},Qhe=QGe;var sfe="requirement",tVe=o(t=>/^\s*requirement(Diagram)?/.test(t),"detector"),rVe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(afe(),ife));return{id:sfe,diagram:t}},"loader"),nVe={id:sfe,detector:tVe,loader:rVe},ofe=nVe;var Afe="sequence",zVe=o(t=>/^\s*sequenceDiagram/.test(t),"detector"),GVe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(Cfe(),Sfe));return{id:Afe,diagram:t}},"loader"),VVe={id:Afe,detector:zVe,loader:GVe},_fe=VVe;var Ife="class",XVe=o((t,e)=>e?.class?.defaultRenderer==="dagre-wrapper"?!1:/^\s*classDiagram/.test(t),"detector"),jVe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(Mfe(),Nfe));return{id:Ife,diagram:t}},"loader"),KVe={id:Ife,detector:XVe,loader:jVe},Ofe=KVe;var Ffe="classDiagram",ZVe=o((t,e)=>/^\s*classDiagram/.test(t)&&e?.class?.defaultRenderer==="dagre-wrapper"?!0:/^\s*classDiagram-v2/.test(t),"detector"),JVe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(Bfe(),Pfe));return{id:Ffe,diagram:t}},"loader"),eUe={id:Ffe,detector:ZVe,loader:JVe},$fe=eUe;var Ede="state",LUe=o((t,e)=>e?.state?.defaultRenderer==="dagre-wrapper"?!1:/^\s*stateDiagram/.test(t),"detector"),RUe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(kde(),Tde));return{id:Ede,diagram:t}},"loader"),NUe={id:Ede,detector:LUe,loader:RUe},Sde=NUe;var _de="stateDiagram",IUe=o((t,e)=>!!(/^\s*stateDiagram-v2/.test(t)||/^\s*stateDiagram/.test(t)&&e?.state?.defaultRenderer==="dagre-wrapper"),"detector"),OUe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(Ade(),Cde));return{id:_de,diagram:t}},"loader"),PUe={id:_de,detector:IUe,loader:OUe},Dde=PUe;var Wde="journey",nHe=o(t=>/^\s*journey/.test(t),"detector"),iHe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(Hde(),Ude));return{id:Wde,diagram:t}},"loader"),aHe={id:Wde,detector:nHe,loader:iHe},qde=aHe;vt();Vc();Ei();var sHe=o((t,e,r)=>{Y.debug(`rendering svg for syntax error +`);let n=sa(e),i=n.append("g");n.attr("viewBox","0 0 2412 512"),vn(n,100,512,!0),i.append("path").attr("class","error-icon").attr("d","m411.313,123.313c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32-9.375,9.375-20.688-20.688c-12.484-12.5-32.766-12.5-45.25,0l-16,16c-1.261,1.261-2.304,2.648-3.31,4.051-21.739-8.561-45.324-13.426-70.065-13.426-105.867,0-192,86.133-192,192s86.133,192 192,192 192-86.133 192-192c0-24.741-4.864-48.327-13.426-70.065 1.402-1.007 2.79-2.049 4.051-3.31l16-16c12.5-12.492 12.5-32.758 0-45.25l-20.688-20.688 9.375-9.375 32.001-31.999zm-219.313,100.687c-52.938,0-96,43.063-96,96 0,8.836-7.164,16-16,16s-16-7.164-16-16c0-70.578 57.422-128 128-128 8.836,0 16,7.164 16,16s-7.164,16-16,16z"),i.append("path").attr("class","error-icon").attr("d","m459.02,148.98c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l16,16c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16.001-16z"),i.append("path").attr("class","error-icon").attr("d","m340.395,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16-16c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l15.999,16z"),i.append("path").attr("class","error-icon").attr("d","m400,64c8.844,0 16-7.164 16-16v-32c0-8.836-7.156-16-16-16-8.844,0-16,7.164-16,16v32c0,8.836 7.156,16 16,16z"),i.append("path").attr("class","error-icon").attr("d","m496,96.586h-32c-8.844,0-16,7.164-16,16 0,8.836 7.156,16 16,16h32c8.844,0 16-7.164 16-16 0-8.836-7.156-16-16-16z"),i.append("path").attr("class","error-icon").attr("d","m436.98,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688l32-32c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32c-6.251,6.25-6.251,16.375-0.001,22.625z"),i.append("text").attr("class","error-text").attr("x",1440).attr("y",250).attr("font-size","150px").style("text-anchor","middle").text("Syntax error in text"),i.append("text").attr("class","error-text").attr("x",1250).attr("y",400).attr("font-size","100px").style("text-anchor","middle").text(`mermaid version ${r}`)},"draw"),fP={draw:sHe},Yde=fP;var oHe={db:{},renderer:fP,parser:{parse:o(()=>{},"parse")}},Xde=oHe;var jde="flowchart-elk",lHe=o((t,e={})=>/^\s*flowchart-elk/.test(t)||/^\s*flowchart|graph/.test(t)&&e?.flowchart?.defaultRenderer==="elk"?(e.layout="elk",!0):!1,"detector"),cHe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(ak(),ik));return{id:jde,diagram:t}},"loader"),uHe={id:jde,detector:lHe,loader:cHe},Kde=uHe;var Tpe="timeline",DHe=o(t=>/^\s*timeline/.test(t),"detector"),LHe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(wpe(),bpe));return{id:Tpe,diagram:t}},"loader"),RHe={id:Tpe,detector:DHe,loader:LHe},kpe=RHe;var e1e="mindmap",cJe=o(t=>/^\s*mindmap/.test(t),"detector"),uJe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(Jge(),Zge));return{id:e1e,diagram:t}},"loader"),hJe={id:e1e,detector:cJe,loader:uJe},t1e=hJe;var d1e="kanban",AJe=o(t=>/^\s*kanban/.test(t),"detector"),_Je=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(f1e(),h1e));return{id:d1e,diagram:t}},"loader"),DJe={id:d1e,detector:AJe,loader:_Je},p1e=DJe;var j1e="sankey",ZJe=o(t=>/^\s*sankey-beta/.test(t),"detector"),JJe=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(X1e(),Y1e));return{id:j1e,diagram:t}},"loader"),eet={id:j1e,detector:ZJe,loader:JJe},K1e=eet;var sye="packet",pet=o(t=>/^\s*packet-beta/.test(t),"detector"),met=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(aye(),iye));return{id:sye,diagram:t}},"loader"),oye={id:sye,detector:pet,loader:met};var vye="radar",Fet=o(t=>/^\s*radar-beta/.test(t),"detector"),$et=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(yye(),gye));return{id:vye,diagram:t}},"loader"),xye={id:vye,detector:Fet,loader:$et};var Tve="block",srt=o(t=>/^\s*block-beta/.test(t),"detector"),ort=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(wve(),bve));return{id:Tve,diagram:t}},"loader"),lrt={id:Tve,detector:srt,loader:ort},kve=lrt;var Yve="architecture",Ort=o(t=>/^\s*architecture/.test(t),"detector"),Prt=o(async()=>{let{diagram:t}=await Promise.resolve().then(()=>(qve(),Wve));return{id:Yve,diagram:t}},"loader"),Brt={id:Yve,detector:Ort,loader:Prt},Xve=Brt;Xf();zt();var jve=!1,py=o(()=>{jve||(jve=!0,ad("error",Xde,t=>t.toLowerCase().trim()==="error"),ad("---",{db:{clear:o(()=>{},"clear")},styles:{},renderer:{draw:o(()=>{},"draw")},parser:{parse:o(()=>{throw new Error("Diagrams beginning with --- are not valid. If you were trying to use a YAML front-matter, please ensure that you've correctly opened and closed the YAML front-matter with un-indented `---` blocks")},"parse")},init:o(()=>null,"init")},t=>t.toLowerCase().trimStart().startsWith("---")),z4(XX,p1e,$fe,Ofe,oae,Vue,Zue,che,ofe,_fe,Kde,Qie,jie,t1e,kpe,hue,Dde,Sde,qde,khe,K1e,oye,Qhe,kve,Xve,xye))},"addDiagrams");vt();Xf();zt();var Kve=o(async()=>{Y.debug("Loading registered diagrams");let e=(await Promise.allSettled(Object.entries(Yf).map(async([r,{detector:n,loader:i}])=>{if(i)try{jy(r)}catch{try{let{diagram:a,id:s}=await i();ad(s,a,n)}catch(a){throw Y.error(`Failed to load external diagram with key ${r}. Removing from detectors.`),delete Yf[r],a}}}))).filter(r=>r.status==="rejected");if(e.length>0){Y.error(`Failed to load ${e.length} external diagrams`);for(let r of e)Y.error(r);throw new Error(`Failed to load ${e.length} external diagrams`)}},"loadRegisteredDiagrams");vt();dr();var lC="comm",cC="rule",uC="decl";var Qve="@import";var Zve="@namespace",Jve="@keyframes";var e2e="@layer";var vF=Math.abs,S4=String.fromCharCode;function hC(t){return t.trim()}o(hC,"trim");function C4(t,e,r){return t.replace(e,r)}o(C4,"replace");function t2e(t,e,r){return t.indexOf(e,r)}o(t2e,"indexof");function $f(t,e){return t.charCodeAt(e)|0}o($f,"charat");function zf(t,e,r){return t.slice(e,r)}o(zf,"substr");function vo(t){return t.length}o(vo,"strlen");function r2e(t){return t.length}o(r2e,"sizeof");function my(t,e){return e.push(t),t}o(my,"append");var fC=1,gy=1,n2e=0,il=0,Ri=0,vy="";function dC(t,e,r,n,i,a,s,l){return{value:t,root:e,parent:r,type:n,props:i,children:a,line:fC,column:gy,length:s,return:"",siblings:l}}o(dC,"node");function i2e(){return Ri}o(i2e,"char");function a2e(){return Ri=il>0?$f(vy,--il):0,gy--,Ri===10&&(gy=1,fC--),Ri}o(a2e,"prev");function al(){return Ri=il2||yy(Ri)>3?"":" "}o(l2e,"whitespace");function c2e(t,e){for(;--e&&al()&&!(Ri<48||Ri>102||Ri>57&&Ri<65||Ri>70&&Ri<97););return pC(t,A4()+(e<6&&rh()==32&&al()==32))}o(c2e,"escaping");function xF(t){for(;al();)switch(Ri){case t:return il;case 34:case 39:t!==34&&t!==39&&xF(Ri);break;case 40:t===41&&xF(t);break;case 92:al();break}return il}o(xF,"delimiter");function u2e(t,e){for(;al()&&t+Ri!==57;)if(t+Ri===84&&rh()===47)break;return"/*"+pC(e,il-1)+"*"+S4(t===47?t:al())}o(u2e,"commenter");function h2e(t){for(;!yy(rh());)al();return pC(t,il)}o(h2e,"identifier");function p2e(t){return o2e(gC("",null,null,null,[""],t=s2e(t),0,[0],t))}o(p2e,"compile");function gC(t,e,r,n,i,a,s,l,u){for(var h=0,f=0,d=s,p=0,m=0,g=0,y=1,v=1,x=1,b=0,w="",C=i,T=a,E=n,A=w;v;)switch(g=b,b=al()){case 40:if(g!=108&&$f(A,d-1)==58){t2e(A+=C4(mC(b),"&","&\f"),"&\f",vF(h?l[h-1]:0))!=-1&&(x=-1);break}case 34:case 39:case 91:A+=mC(b);break;case 9:case 10:case 13:case 32:A+=l2e(g);break;case 92:A+=c2e(A4()-1,7);continue;case 47:switch(rh()){case 42:case 47:my(Frt(u2e(al(),A4()),e,r,u),u),(yy(g||1)==5||yy(rh()||1)==5)&&vo(A)&&zf(A,-1,void 0)!==" "&&(A+=" ");break;default:A+="/"}break;case 123*y:l[h++]=vo(A)*x;case 125*y:case 59:case 0:switch(b){case 0:case 125:v=0;case 59+f:x==-1&&(A=C4(A,/\f/g,"")),m>0&&(vo(A)-d||y===0&&g===47)&&my(m>32?d2e(A+";",n,r,d-1,u):d2e(C4(A," ","")+";",n,r,d-2,u),u);break;case 59:A+=";";default:if(my(E=f2e(A,e,r,h,f,i,l,w,C=[],T=[],d,a),a),b===123)if(f===0)gC(A,e,E,E,C,a,d,l,T);else{switch(p){case 99:if($f(A,3)===110)break;case 108:if($f(A,2)===97)break;default:f=0;case 100:case 109:case 115:}f?gC(t,E,E,n&&my(f2e(t,E,E,0,0,i,l,w,i,C=[],d,T),T),i,T,d,l,n?C:T):gC(A,E,E,E,[""],T,0,l,T)}}h=f=m=0,y=x=1,w=A="",d=s;break;case 58:d=1+vo(A),m=g;default:if(y<1){if(b==123)--y;else if(b==125&&y++==0&&a2e()==125)continue}switch(A+=S4(b),b*y){case 38:x=f>0?1:(A+="\f",-1);break;case 44:l[h++]=(vo(A)-1)*x,x=1;break;case 64:rh()===45&&(A+=mC(al())),p=rh(),f=d=vo(w=A+=h2e(A4())),b++;break;case 45:g===45&&vo(A)==2&&(y=0)}}return a}o(gC,"parse");function f2e(t,e,r,n,i,a,s,l,u,h,f,d){for(var p=i-1,m=i===0?a:[""],g=r2e(m),y=0,v=0,x=0;y0?m[b]+" "+w:C4(w,/&\f/g,m[b])))&&(u[x++]=C);return dC(t,e,r,i===0?cC:l,u,h,f,d)}o(f2e,"ruleset");function Frt(t,e,r,n){return dC(t,e,r,lC,S4(i2e()),zf(t,2,-2),0,n)}o(Frt,"comment");function d2e(t,e,r,n,i){return dC(t,e,r,uC,zf(t,0,n),zf(t,n+1,-1),n,i)}o(d2e,"declaration");function yC(t,e){for(var r="",n=0;n{v2e.forEach(t=>{t()}),v2e=[]},"attachFunctions");vt();var b2e=o(t=>t.replace(/^\s*%%(?!{)[^\n]+\n?/gm,"").trimStart(),"cleanupComments");$4();Ew();function w2e(t){let e=t.match(F4);if(!e)return{text:t,metadata:{}};let r=cm(e[1],{schema:lm})??{};r=typeof r=="object"&&!Array.isArray(r)?r:{};let n={};return r.displayMode&&(n.displayMode=r.displayMode.toString()),r.title&&(n.title=r.title.toString()),r.config&&(n.config=r.config),{text:t.slice(e[0].length),metadata:n}}o(w2e,"extractFrontMatter");ir();var zrt=o(t=>t.replace(/\r\n?/g,` +`).replace(/<(\w+)([^>]*)>/g,(e,r,n)=>"<"+r+n.replace(/="([^"]*)"/g,"='$1'")+">"),"cleanupText"),Grt=o(t=>{let{text:e,metadata:r}=w2e(t),{displayMode:n,title:i,config:a={}}=r;return n&&(a.gantt||(a.gantt={}),a.gantt.displayMode=n),{title:i,config:a,text:e}},"processFrontmatter"),Vrt=o(t=>{let e=Gt.detectInit(t)??{},r=Gt.detectDirective(t,"wrap");return Array.isArray(r)?e.wrap=r.some(({type:n})=>n==="wrap"):r?.type==="wrap"&&(e.wrap=!0),{text:IX(t),directive:e}},"processDirectives");function bF(t){let e=zrt(t),r=Grt(e),n=Vrt(r.text),i=Fi(r.config,n.directive);return t=b2e(n.text),{code:t,title:r.title,config:i}}o(bF,"preprocessDiagram");tA();q4();ir();function T2e(t){let e=new TextEncoder().encode(t),r=Array.from(e,n=>String.fromCodePoint(n)).join("");return btoa(r)}o(T2e,"toBase64");var Urt=5e4,Hrt="graph TB;a[Maximum text size in diagram exceeded];style a fill:#faa",Wrt="sandbox",qrt="loose",Yrt="http://www.w3.org/2000/svg",Xrt="http://www.w3.org/1999/xlink",jrt="http://www.w3.org/1999/xhtml",Krt="100%",Qrt="100%",Zrt="border:0;margin:0;",Jrt="margin:0",ent="allow-top-navigation-by-user-activation allow-popups",tnt='The "iframe" tag is not supported by your browser.',rnt=["foreignobject"],nnt=["dominant-baseline"];function C2e(t){let e=bF(t);return Ly(),W$(e.config??{}),e}o(C2e,"processAndSetConfigs");async function int(t,e){py();try{let{code:r,config:n}=C2e(t);return{diagramType:(await A2e(r)).type,config:n}}catch(r){if(e?.suppressErrors)return!1;throw r}}o(int,"parse");var k2e=o((t,e,r=[])=>` +.${t} ${e} { ${r.join(" !important; ")} !important; }`,"cssImportantStyles"),ant=o((t,e=new Map)=>{let r="";if(t.themeCSS!==void 0&&(r+=` +${t.themeCSS}`),t.fontFamily!==void 0&&(r+=` +:root { --mermaid-font-family: ${t.fontFamily}}`),t.altFontFamily!==void 0&&(r+=` +:root { --mermaid-alt-font-family: ${t.altFontFamily}}`),e instanceof Map){let s=t.htmlLabels??t.flowchart?.htmlLabels?["> *","span"]:["rect","polygon","ellipse","circle","path"];e.forEach(l=>{ur(l.styles)||s.forEach(u=>{r+=k2e(l.id,u,l.styles)}),ur(l.textStyles)||(r+=k2e(l.id,"tspan",(l?.textStyles||[]).map(u=>u.replace("color","fill"))))})}return r},"createCssStyles"),snt=o((t,e,r,n)=>{let i=ant(t,r),a=zG(e,i,t.themeVariables);return yC(p2e(`${n}{${a}}`),m2e)},"createUserStyles"),ont=o((t="",e,r)=>{let n=t;return!r&&!e&&(n=n.replace(/marker-end="url\([\d+./:=?A-Za-z-]*?#/g,'marker-end="url(#')),n=na(n),n=n.replace(/
    /g,"
    "),n},"cleanUpSvgCode"),lnt=o((t="",e)=>{let r=e?.viewBox?.baseVal?.height?e.viewBox.baseVal.height+"px":Qrt,n=T2e(`${t}`);return``},"putIntoIFrame"),E2e=o((t,e,r,n,i)=>{let a=t.append("div");a.attr("id",r),n&&a.attr("style",n);let s=a.append("svg").attr("id",e).attr("width","100%").attr("xmlns",Yrt);return i&&s.attr("xmlns:xlink",i),s.append("g"),t},"appendDivSvgG");function S2e(t,e){return t.append("iframe").attr("id",e).attr("style","width: 100%; height: 100%;").attr("sandbox","")}o(S2e,"sandboxedIframe");var cnt=o((t,e,r,n)=>{t.getElementById(e)?.remove(),t.getElementById(r)?.remove(),t.getElementById(n)?.remove()},"removeExistingElements"),unt=o(async function(t,e,r){py();let n=C2e(e);e=n.code;let i=cr();Y.debug(i),e.length>(i?.maxTextSize??Urt)&&(e=Hrt);let a="#"+t,s="i"+t,l="#"+s,u="d"+t,h="#"+u,f=o(()=>{let L=Ge(p?l:h).node();L&&"remove"in L&&L.remove()},"removeTempElements"),d=Ge("body"),p=i.securityLevel===Wrt,m=i.securityLevel===qrt,g=i.fontFamily;if(r!==void 0){if(r&&(r.innerHTML=""),p){let k=S2e(Ge(r),s);d=Ge(k.nodes()[0].contentDocument.body),d.node().style.margin=0}else d=Ge(r);E2e(d,t,u,`font-family: ${g}`,Xrt)}else{if(cnt(document,t,u,s),p){let k=S2e(Ge("body"),s);d=Ge(k.nodes()[0].contentDocument.body),d.node().style.margin=0}else d=Ge("body");E2e(d,t,u)}let y,v;try{y=await xy.fromText(e,{title:n.title})}catch(k){if(i.suppressErrorRendering)throw f(),k;y=await xy.fromText("error"),v=k}let x=d.select(h).node(),b=y.type,w=x.firstChild,C=w.firstChild,T=y.renderer.getClasses?.(e,y),E=snt(i,b,T,a),A=document.createElement("style");A.innerHTML=E,w.insertBefore(A,C);try{await y.renderer.draw(e,t,vb.version,y)}catch(k){throw i.suppressErrorRendering?f():Yde.draw(e,t,vb.version),k}let S=d.select(`${h} svg`),_=y.db.getAccTitle?.(),I=y.db.getAccDescription?.();fnt(b,S,_,I),d.select(`[id="${t}"]`).selectAll("foreignobject > *").attr("xmlns",jrt);let D=d.select(h).node().innerHTML;if(Y.debug("config.arrowMarkerAbsolute",i.arrowMarkerAbsolute),D=ont(D,p,fr(i.arrowMarkerAbsolute)),p){let k=d.select(h+" svg").node();D=lnt(D,k)}else m||(D=ch.sanitize(D,{ADD_TAGS:rnt,ADD_ATTR:nnt,HTML_INTEGRATION_POINTS:{foreignobject:!0}}));if(x2e(),v)throw v;return f(),{diagramType:b,svg:D,bindFunctions:y.db.bindFunctions}},"render");function hnt(t={}){let e=Gn({},t);e?.fontFamily&&!e.themeVariables?.fontFamily&&(e.themeVariables||(e.themeVariables={}),e.themeVariables.fontFamily=e.fontFamily),V$(e),e?.theme&&e.theme in To?e.themeVariables=To[e.theme].getThemeVariables(e.themeVariables):e&&(e.themeVariables=To.default.getThemeVariables(e.themeVariables));let r=typeof e=="object"?t7(e):r7();wy(r.logLevel),py()}o(hnt,"initialize");var A2e=o((t,e={})=>{let{code:r}=bF(t);return xy.fromText(r,e)},"getDiagramFromText");function fnt(t,e,r,n){g2e(e,t),y2e(e,r,n,e.attr("id"))}o(fnt,"addA11yInfo");var Gf=Object.freeze({render:unt,parse:int,getDiagramFromText:A2e,initialize:hnt,getConfig:cr,setConfig:X4,getSiteConfig:r7,updateSiteConfig:U$,reset:o(()=>{Ly()},"reset"),globalReset:o(()=>{Ly(lh)},"globalReset"),defaultConfig:lh});wy(cr().logLevel);Ly(cr());Yd();ir();var dnt=o((t,e,r)=>{Y.warn(t),Z9(t)?(r&&r(t.str,t.hash),e.push({...t,message:t.str,error:t})):(r&&r(t),t instanceof Error&&e.push({str:t.message,message:t.message,hash:t.name,error:t}))},"handleError"),_2e=o(async function(t={querySelector:".mermaid"}){try{await pnt(t)}catch(e){if(Z9(e)&&Y.error(e.str),nh.parseError&&nh.parseError(e),!t.suppressErrors)throw Y.error("Use the suppressErrors option to suppress these errors"),e}},"run"),pnt=o(async function({postRenderCallback:t,querySelector:e,nodes:r}={querySelector:".mermaid"}){let n=Gf.getConfig();Y.debug(`${t?"":"No "}Callback function found`);let i;if(r)i=r;else if(e)i=document.querySelectorAll(e);else throw new Error("Nodes and querySelector are both undefined");Y.debug(`Found ${i.length} diagrams`),n?.startOnLoad!==void 0&&(Y.debug("Start On Load: "+n?.startOnLoad),Gf.updateSiteConfig({startOnLoad:n?.startOnLoad}));let a=new Gt.InitIDGenerator(n.deterministicIds,n.deterministicIDSeed),s,l=[];for(let u of Array.from(i)){Y.info("Rendering diagram: "+u.id);if(u.getAttribute("data-processed"))continue;u.setAttribute("data-processed","true");let h=`mermaid-${a.next()}`;s=u.innerHTML,s=B4(Gt.entityDecode(s)).trim().replace(//gi,"
    ");let f=Gt.detectInit(s);f&&Y.debug("Detected early reinit: ",f);try{let{svg:d,bindFunctions:p}=await N2e(h,s,u);u.innerHTML=d,t&&await t(h),p&&p(u)}catch(d){dnt(d,l,nh.parseError)}}if(l.length>0)throw l[0]},"runThrowsErrors"),D2e=o(function(t){Gf.initialize(t)},"initialize"),mnt=o(async function(t,e,r){Y.warn("mermaid.init is deprecated. Please use run instead."),t&&D2e(t);let n={postRenderCallback:r,querySelector:".mermaid"};typeof e=="string"?n.querySelector=e:e&&(e instanceof HTMLElement?n.nodes=[e]:n.nodes=e),await _2e(n)},"init"),gnt=o(async(t,{lazyLoad:e=!0}={})=>{py(),z4(...t),e===!1&&await Kve()},"registerExternalDiagrams"),L2e=o(function(){if(nh.startOnLoad){let{startOnLoad:t}=Gf.getConfig();t&&nh.run().catch(e=>Y.error("Mermaid failed to initialize",e))}},"contentLoaded");if(typeof document<"u"){window.addEventListener("load",L2e,!1)}var ynt=o(function(t){nh.parseError=t},"setParseErrorHandler"),vC=[],wF=!1,R2e=o(async()=>{if(!wF){for(wF=!0;vC.length>0;){let t=vC.shift();if(t)try{await t()}catch(e){Y.error("Error executing queue",e)}}wF=!1}},"executeQueue"),vnt=o(async(t,e)=>new Promise((r,n)=>{let i=o(()=>new Promise((a,s)=>{Gf.parse(t,e).then(l=>{a(l),r(l)},l=>{Y.error("Error parsing",l),nh.parseError?.(l),s(l),n(l)})}),"performCall");vC.push(i),R2e().catch(n)}),"parse"),N2e=o((t,e,r)=>new Promise((n,i)=>{let a=o(()=>new Promise((s,l)=>{Gf.render(t,e,r).then(u=>{s(u),n(u)},u=>{Y.error("Error parsing",u),nh.parseError?.(u),l(u),i(u)})}),"performCall");vC.push(a),R2e().catch(i)}),"render"),nh={startOnLoad:!0,mermaidAPI:Gf,parse:vnt,render:N2e,init:mnt,run:_2e,registerExternalDiagrams:gnt,registerLayoutLoaders:vR,initialize:D2e,parseError:void 0,contentLoaded:L2e,setParseErrorHandler:ynt,detectType:a0,registerIconPacks:P4},xnt=nh;return V2e(bnt);})(); +/*! Check if previously processed */ +/*! + * Wait for document loaded before starting the execution + */ +/*! Bundled license information: + +dompurify/dist/purify.es.mjs: + (*! @license DOMPurify 3.2.4 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.4/LICENSE *) + +js-yaml/dist/js-yaml.mjs: + (*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT *) + +lodash-es/lodash.js: + (** + * @license + * Lodash (Custom Build) + * Build: `lodash modularize exports="es" -o ./` + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + *) + +cytoscape/dist/cytoscape.esm.mjs: + (*! + Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable + Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com) + Licensed under The MIT License (http://opensource.org/licenses/MIT) + *) + (*! + Event object based on jQuery events, MIT license + + https://jquery.org/license/ + https://tldrlegal.com/license/mit-license + https://github.com/jquery/jquery/blob/master/src/event.js + *) + (*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License *) + (*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License *) +*/ +globalThis.mermaid = globalThis.__esbuild_esm_mermaid.default; \ No newline at end of file diff --git a/srcDoc/manual.pdf b/srcDoc/manual.pdf deleted file mode 100644 index cf13e8da..00000000 Binary files a/srcDoc/manual.pdf and /dev/null differ diff --git a/srcDoc/manual.tex b/srcDoc/manual.tex deleted file mode 100644 index ef46890c..00000000 --- a/srcDoc/manual.tex +++ /dev/null @@ -1,87 +0,0 @@ -% Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -% For more information, see http://csem.engin.umich.edu/tools/swmf -\documentclass[twoside,10pt]{book} -\usepackage{times} -\usepackage{graphicx} -\usepackage{alltt} -\usepackage{amsmath} -\usepackage{epsfig} -\usepackage{fancyhdr} -\usepackage[square]{natbib} -\usepackage{multicol} -\usepackage{subfigure} -\usepackage{fancyvrb} -\usepackage{color} - -% use these lengths for a more uniform margin -% this format is more pleasing for stapling -\setlength{\oddsidemargin}{-.1 in} -\setlength{\evensidemargin}{0.0 in} -\setlength{\textwidth}{6.5 in} -\setlength{\topmargin}{0 in} -\setlength{\textheight}{8.5 in} - -\renewcommand{\deg}{^{\circ}} - - -\title{GITM User Manual \\ \large Version 2.1} -\author{A.J. Ridley, A.G. Burrell} - -\begin{document} - -\pagestyle{fancy} -\lhead[\fancyplain{}{\bfseries\thepage}]{\fancyplain{}{\bfseries\rightmark}} -\rhead[\fancyplain{}{\bfseries\leftmark}]{\fancyplain{}{\bfseries\thepage}} -\cfoot{} - -%\pagestyle{headings} - -\maketitle - -\tableofcontents - -\clearpage - -%Chapter 1 -\chapter{Introduction to GITM} -\input{intro} -\label{intro.ch} - -\section{Code Outline} -\label{outline.sec} - -This is an outline of GITM. To produce this file, go into the {\tt src} directory, and type: - -\begin{verbatim} -cd ../src -./calling_sequence.pl > outline.tex -mv outline.tex ../srcDoc -cd ../srcDoc -\end{verbatim} - -\input{outline.tex} - -%Chapter 2 -\chapter{Getting Started} -\label{quickstart.ch} -\input{quickstart} - -%Chapter 3 -\chapter{Inputs} -\label{input.ch} -\input{set_inputs} -\input{grid} -\input{more_inputs} - -%Chapter 4 -\chapter{Outputs} -\label{outputs.ch} -\input{outputs} - -%Bibliography -\clearpage -\addcontentsline{toc}{chapter}{Bibliography} -\bibliographystyle{chicagoa} -\bibliography{gitm} - -\end{document} diff --git a/srcDoc/more_inputs.tex b/srcDoc/more_inputs.tex deleted file mode 100644 index bbf46230..00000000 --- a/srcDoc/more_inputs.tex +++ /dev/null @@ -1,209 +0,0 @@ -% Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -% For more information, see http://csem.engin.umich.edu/tools/swmf - -\section{Auxiliary Input Files} -\label{aux.sec} - -If you have access to the University of Michigan Atmospheric, Oceanic, and Space Science resources, the data needed for these auxiliary input files are on {\tt herot.engin.umich.edu}. The following descriptions will allow you download to create your own auxiliary input files yourself, but this process is much more simple if you have access to the resources on {\tt herot}. Recall that {\tt makerun.pl}, previously mentioned at the beginning of section~\ref{uam.sec}, will create many of the following input files when it builds a {\tt UAM.in} file. All of these auxiliary input files should be kept in the same directory as the GITM executable and the {\tt UAM.in} file. - -\subsection{IMF and Solar Wind} -\label{imf.sec} - -This file controls the high-latitude electric field and aurora when using models that depend on the solar wind and interplanetary magnetic field (IMF). It allows GITM to dynamically control these quantities. You can create either realistic IMF files or hypothetical ones. - -For realistic IMF files, we typically use CDF files downloaded from the CDAWEB ftp site, located at:\\{\tt http://cdaweb.gsfc.nasa.gov/cdaweb\_anonymousftp.htm}. - -On {\tt herot}, an IDL code (called {\tt cdf\_to\_mhd.pro}) merges the solar wind and IMF files to create one single file. This IDL code also propagates the solar wind and IMF from L1 to 32 Re upstream of the Earth. You can use the {\tt DELAY} statement to shift the time more (e.g. in the example below, it shifts by an additional 15 minutes). {\tt cdf\_to\_mhd.pro} requires both a solar wind file and an IMF file. For example, the IMF file would be {\tt ac\_h0\_mfi\_20011231\_v04.cdf} and the solar wind file would be {\tt ac\_h0\_swe\_20011231\_v06.cdf}. The code assumes that the data starts at {\tt \#START}, and ends when it encounters an error. This can mean that if there is an error in the data somewhere, the code will only read up to that point. To validate that the solar wind and IMF is what you think it is, it is recommended that you use the IDL code {\tt imf\_plot.pro} to check the output before using it to run GITM. Here is an example file: - -\begin{verbatim} - -This file was created by Aaron Ridley to do some wicked cool science thing. - -The format is: - Year MM DD HH Mi SS mS Bx By Bz Vx Vy Vz N T - -Year=year -MM = Month -DD = Day -HH = Hour -Mi = Minute -SS = Second -mS = Millisecond -Bx = IMF Bx GSM Component (nT) -By = IMF By GSM Component (nT) -Bz = IMF Bz GSM Component (nT) -Vx = Solar Wind Vx (km/s) -Vy = Solar Wind Vy (km/s) -Vz = Solar Wind Vz (km/s) -N = Solar Wind Density (/cm3) -T = Solar Wind Temperature (K) - -#DELAY -900.0 - -#START - 2000 3 20 2 53 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 2 54 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 2 55 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 2 56 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 2 57 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 2 58 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 2 59 0 0 0.0 0.0 2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 3 0 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 3 1 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 3 2 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 3 3 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 - 2000 3 20 3 4 0 0 0.0 0.0 -2.0 -400.0 0.0 0.0 5.0 50000.0 -\end{verbatim} - -To actually read in this file, in {\tt UAM.in}, use the input option MHD\_INDICES described in section~\ref{indices.sec}. - -\subsection{Hemispheric Power} -\label{hp.sec} - -The hemispheric power files describe the dynamic variation of the auroral power going into each hemisphere. Models such as \cite{fuller87} use the Hemispheric Power to determine which level of the model it should use. The Hemispheric Power is converted to a Hemispheric Power Index using the -formula shown in equation~\ref{hp.eq}. - -\begin{equation} -\label{hp.eq} -HPI = 2.09 \log(HP)^{1.0475} -\end{equation} - -The National Oceanic and Atmospheric Administration (NOAA) provides these hemispheric power files for public use online at {\tt http://www.swpc.noaa.gov/ftpmenu/lists/hpi.html}. There are two types of formats used for hemispheric power files (due to a change in the NOAA output format in 2007). Both file formats can be used by GITM, and are shown in the examples below. - -Example file 1 for data prior to 2007: - -\begin{verbatim} -# Prepared by the U.S. Dept. of Commerce, NOAA, Space Environment Center. -# Please send comments and suggestions to sec@sec.noaa.gov -# -# Source: NOAA POES (Whatever is aloft) -# Units: gigawatts - -# Format: - -# The first line of data contains the four-digit year of the data. -# Each following line is formatted as in this example: - -# NOAA-12(S) 10031 9.0 4 .914 - -# Please note that if the first line of data in the file has a -# day-of-year of 365 (or 366) and a HHMM of greater than 2300, -# that polar pass started at the end of the previous year and -# ended on day-of-year 001 of the current year. - -# A7 NOAA POES Satellite number -# A3 (S) or (N) - hemisphere -# I3 Day of year -# I4 UT hour and minute -# F8.1 Estimated Hemispheric Power in gigawatts -# I3 Hemispheric Power Index (activity level) -# F8.3 Normalizing factor - -2000 -NOAA-15(N) 10023 35.5 7 1.085 -NOAA-14(S) 10044 25.3 7 .843 -NOAA-15(S) 10114 29.0 7 .676 -NOAA-14(N) 10135 108.7 10 1.682 -NOAA-15(N) 10204 36.4 7 1.311 -. -. -. -\end{verbatim} - -Example file 2 for data in and after 2007: - -\begin{verbatim} -:Data_list: power_2010.txt -:Created: Sun Jan 2 10:12:58 UTC 2011 - - -# Prepared by the U.S. Dept. of Commerce, NOAA, Space Environment Center. -# Please send comments and suggestions to sec@sec.noaa.gov -# -# Source: NOAA POES (Whatever is aloft) -# Units: gigawatts - -# Format: - -# Each line is formatted as in this example: - -# 2006-09-05 00:54:25 NOAA-16 (S) 7 29.67 0.82 - -# A19 Date and UT at the center of the polar pass as YYYY-MM-DD hh:mm:ss -# 1X (Space) -# A7 NOAA POES Satellite number -# 1X (Space) -# A3 (S) or (N) - hemisphere -# I3 Hemispheric Power Index (activity level) -# F7.2 Estimated Hemispheric Power in gigawatts -# F7.2 Normalizing factor - -2010-01-01 00:14:37 NOAA-17 (N) 1 1.45 1.16 -2010-01-01 00:44:33 NOAA-19 (N) 1 1.45 1.17 -. -. -. -\end{verbatim} - -This file is not specified in {\tt UAM.in}, instead different subroutines within GITM will use it as needed. - -\subsection{Solar Irradiance} -\label{solar_irradiance.sec} - -To provide GITM with realistic solar irradiance, the solar EUV must be specified. This can be done through a file containing modeled or observed solar irradiance data. An example from the FISM model is shown below. - -\begin{verbatim} -#START - 2009 3 20 0 0 0 0.00389548 0.00235693 - 0.00127776 0.000907677 0.000652528 0.000372993 0.000250124 0.000194781 - 0.000389686 0.000118650 0.00642058 0.00618358 0.000133490 7.67560e-05 - 7.80045e-05 0.000145722 5.92577e-05 5.95070e-05 0.000102437 6.48526e-05 - 8.94509e-05 0.000101928 5.94333e-05 5.36012e-05 1.51744e-05 1.10265e-05 - 1.26937e-05 2.16591e-05 9.57055e-06 1.82608e-05 7.07992e-05 2.55451e-05 - 1.12451e-05 6.89255e-05 3.03882e-05 2.33862e-05 2.98026e-05 4.44682e-05 - 1.50847e-05 3.00909e-05 8.18379e-05 3.52176e-05 0.000416491 0.000269080 - 0.000269080 0.000275734 6.60872e-05 4.46671e-05 0.000220697 0.000512933 - 3.85239e-05 9.30928e-05 2.71239e-05 1.23011e-05 1.05722e-05 9.30876e-06 - 7.08442e-07 3.54221e-07 1.77110e-07 - 2009 3 20 0 1 0 0.00389548 0.00235693 - 0.00127776 0.000907677 0.000652528 0.000372993 0.000250124 0.000194781 - 0.000389686 0.000118650 0.00642058 0.00618358 0.000133490 7.67560e-05 - 7.80045e-05 0.000145722 5.92577e-05 5.95070e-05 0.000102437 6.48526e-05 - 8.94509e-05 0.000101928 5.94333e-05 5.36012e-05 1.51744e-05 1.10265e-05 - 1.26937e-05 2.16591e-05 9.57055e-06 1.82608e-05 7.07992e-05 2.55451e-05 - 1.12451e-05 6.89255e-05 3.03882e-05 2.33862e-05 2.98026e-05 4.44682e-05 - 1.50847e-05 3.00909e-05 8.18379e-05 3.52176e-05 0.000416491 0.000269080 - 0.000269080 0.000275734 6.60872e-05 4.46671e-05 0.000220697 0.000512933 - 3.85239e-05 9.30928e-05 2.71239e-05 1.23011e-05 1.05722e-05 9.30876e-06 - 7.08442e-07 3.54221e-07 1.77110e-07 -. -. -. -\end{verbatim} - -GITM knows to use the provided solar irradiance file through the EUV\_DATA input option specified in the {\tt UAM.in} file. More information about this input option can be found in section~\ref{indices.sec}. For more information on specifying to solar irradiance, please contact Professors Ridley or Pawlowski. - -\subsection{Satellites} -\label{sat_aux.sec} - -GITM can provide output data at a list of times and locations using the SATELLITE input option, described in more detain in section~\ref{def_out.sec}. Although this is designed to output data along a satellite orbit, any list of locations may be used. There is currently no routine to create a satellite input file, but the format is simple and may be easily constructed from a satellite ASCII data file using awk. Here is a sample satellite input file: - -\begin{verbatim} -year mm dd hh mm ss msec long lat alt -#START -2002 4 16 23 34 25 0 299.16 -2.21 0.00 -2002 4 16 23 34 25 0 293.63 -1.21 0.00 -2002 4 16 23 34 25 0 291.28 -0.75 0.00 -2002 4 16 23 34 25 0 289.83 -0.45 0.00 -2002 4 16 23 34 25 0 288.79 -0.21 0.00 -2002 4 16 23 34 25 0 287.98 -0.01 0.00 -2002 4 16 23 34 25 0 287.32 0.16 0.00 -2002 4 16 23 34 25 0 286.76 0.31 0.00 -2002 4 16 23 34 25 0 286.26 0.46 0.00 -2002 4 16 23 34 25 0 285.81 0.60 0.00 -2002 4 16 23 34 25 0 285.39 0.74 0.00 -\end{verbatim} - -Note that the satellite output is not specified in this sample file. This is because altitude entry doesn't matter t this time, GITM ignores the altitude and outputs altitudinal profiles of the atmospheric characteristics at each geographic location and universal time. Although millisecond accuracy is provided, GITM should not be output at a resolution smaller than 1 second. The temporal resolution in the satellite file does not need to match the output resolution. - diff --git a/srcDoc/outline.tex b/srcDoc/outline.tex deleted file mode 100644 index 7fc7b4fa..00000000 --- a/srcDoc/outline.tex +++ /dev/null @@ -1,380 +0,0 @@ -% Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -% For more information, see http://csem.engin.umich.edu/tools/swmf -{\tt main program} in {\bf main.f90} - -\begin{itemize} - - - -\item {\tt init\_mpi} in file {\bf init\_mpi.f90} - \begin{itemize} - \item {\tt MPI\_INIT} - \item {\tt MPI\_COMM\_RANK} - \item {\tt MPI\_COMM\_SIZE} - \end{itemize} - - -\item {\tt start\_timing} in file {\bf timing.f90} - - -\item {\tt delete\_stop} in file {\bf stop\_file.f90} - \begin{itemize} - \item {\tt report} in file library.f90 - \end{itemize} - - -\item {\tt init\_planet} in file {\bf ModEarth.f90} - \begin{itemize} - \item {\tt time\_int\_to\_real} in file time\_routines.f90 - \end{itemize} - - -\item {\tt set\_defaults} in file {\bf ModInputs.f90} - \begin{itemize} - \item {\tt set\_strings} in file ModInputs.f90 - \item {\tt time\_int\_to\_real} in file time\_routines.f90 - \item {\tt set\_planet\_defaults} in file Earth.f90 - \end{itemize} - - -\item {\tt read\_inputs} in file {\bf read\_inputs.f90} - \begin{itemize} - \item {\tt report} in file library.f90 - \item {\tt stop\_gitm} in file library.f90 - \item {\tt stop\_gitm} in file library.f90 - \item {\tt stop\_gitm} in file library.f90 - \item {\tt MPI\_Bcast} - \item {\tt stop\_gitm} in file library.f90 - \item {\tt MPI\_Bcast} - \item {\tt stop\_gitm} in file library.f90 - \end{itemize} - - -\item {\tt set\_inputs} in file {\bf set\_inputs.f90} - \begin{itemize} - \item {\tt report} in file library.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt time\_int\_to\_real} in file time\_routines.f90 - \item {\tt time\_real\_to\_int} in file time\_routines.f90 - \item {\tt fix\_vernal\_time} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt time\_int\_to\_real} in file time\_routines.f90 - \item {\tt read\_in\_time} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt time\_real\_to\_int} in file time\_routines.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt IO\_set\_f107\_single} - \item {\tt IO\_set\_f107a\_single} - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt IO\_set\_hpi\_single} - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt IO\_set\_kp\_single} - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt IO\_set\_imf\_by\_single} - \item {\tt IO\_set\_imf\_bz\_single} - \item {\tt IO\_set\_sw\_v\_single} - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt IO\_set\_inputs} - \item {\tt read\_MHDIMF\_Indices} - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_time} in file set\_inputs.f90 - \item {\tt read\_in\_time} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_int} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_satellites} in file satellites.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt Set\_Euv} in file calc\_euv.f90 - \item {\tt read\_in\_logical} in file set\_inputs.f90 - \item {\tt read\_in\_real} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt IO\_set\_inputs} - \item {\tt read\_NGDC\_Indices} - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt IO\_set\_inputs} - \item {\tt read\_SWPC\_Indices} - \item {\tt read\_in\_string} in file set\_inputs.f90 - \item {\tt IO\_set\_inputs} - \item {\tt read\_NOAAHPI\_Indices} - \item {\tt stop\_gitm} in file library.f90 - \item {\tt time\_int\_to\_real} in file time\_routines.f90 - \end{itemize} - - -\item {\tt initialize\_gitm} in file {\bf initialize.f90} - \begin{itemize} - \item {\tt init\_radcooling} in file ModEarth.f90 - \item {\tt start\_timing} in file timing.f90 - \item {\tt report} in file library.f90 - \item {\tt time\_real\_to\_int} in file time\_routines.f90 - \item {\tt fix\_vernal\_time} in file set\_inputs.f90 - \item {\tt get\_f107} - \item {\tt get\_f107a} - \item {\tt init\_grid} in file init\_grid.f90 - \item {\tt read\_inputs} in file read\_inputs.f90 - \item {\tt set\_inputs} in file set\_inputs.f90 - \item {\tt read\_restart} in file restart.f90 - \item {\tt init\_msis} in file init\_msis.Earth.f90 - \item {\tt set\_RrTempInd} in file ModRates.Earth.f90 - \item {\tt init\_euv} in file calc\_euv.f90 - \item {\tt init\_altitude} in file init\_altitude.f90 - \item {\tt UAM\_gradient} - \item {\tt init\_heating\_efficiency} in file Earth.f90 - \item {\tt init\_magheat} in file ModEarth.f90 - \item {\tt init\_isochem} in file Mars.f90 - \item {\tt init\_aerosol} in file ModEarth.f90 - \item {\tt init\_isochem} in file Mars.f90 - \item {\tt init\_msis} in file init\_msis.Earth.f90 - \item {\tt get\_temperature} in file init\_altitude.f90 - \item {\tt init\_iri} in file init\_iri.Earth.f90 - \item {\tt read\_waccm\_tides} in file tides.f90 - \item {\tt update\_waccm\_tides} in file tides.f90 - \item {\tt read\_tides} in file tides.f90 - \item {\tt update\_tides} in file tides.f90 - \item {\tt init\_b0} in file init\_b0.f90 - \item {\tt init\_energy\_deposition} in file init\_energy\_deposition.f90 - \item {\tt report} in file library.f90 - \item {\tt SUBSOLR} - \item {\tt exchange\_messages\_sphere} in file exchange\_messages\_sphere.f90 - \item {\tt calc\_pressure} in file calc\_pressure.f90 - \item {\tt UA\_calc\_electrodynamics} in file calc\_electrodynamics.f90 - \item {\tt calc\_eddy\_diffusion\_coefficient} in file Earth.f90 - \item {\tt calc\_rates} in file calc\_rates.Earth.f90 - \item {\tt calc\_viscosity} in file calc\_rates.Earth.f90 - \item {\tt calc\_rates} in file calc\_rates.Earth.f90 - \item {\tt end\_timing} in file timing.f90 - \item {\tt calc\_vtec} in file calc\_tec.f90 - \item {\tt calc\_single\_vtec} in file calc\_tec.f90 - \end{itemize} - - -\item {\tt write\_output} in file {\bf write\_output.f90} - \begin{itemize} - \item {\tt output} in file output\_common.f90 - \item {\tt move\_satellites} in file satellites.f90 - \item {\tt write\_restart} in file restart.f90 - \item {\tt logfile} in file logfile.f90 - \end{itemize} - - -\item {\tt report} in file {\bf library.f90} - - -\item Loop Start - \begin{itemize} - - - \item {\tt calc\_pressure} in file {\bf calc\_pressure.f90} - \begin{itemize} - \item {\tt report} in file library.f90 - \end{itemize} - - - \item {\tt calc\_timestep\_vertical} in file {\bf calc\_timestep.f90} - \begin{itemize} - \item {\tt report} in file library.f90 - \item {\tt MPI\_AllREDUCE} - \item {\tt stop\_gitm} in file library.f90 - \end{itemize} - - - \item {\tt calc\_timestep\_horizontal} in file {\bf calc\_timestep.f90} - \begin{itemize} - \item {\tt report} in file library.f90 - \item {\tt MPI\_AllREDUCE} - \end{itemize} - - - \item {\tt advance} in file {\bf advance.f90} - \begin{itemize} - \item {\tt report} in file library.f90 - \item {\tt start\_timing} in file timing.f90 - \item {\tt update\_tides} in file tides.f90 - \item {\tt update\_waccm\_tides} in file tides.f90 - \item {\tt advance\_vertical\_all} in file advance.f90 - \item {\tt add\_sources} in file add\_sources.f90 - \item {\tt advance\_horizontal\_all} in file advance.f90 - \item {\tt time\_real\_to\_int} in file time\_routines.f90 - \item {\tt get\_f107} - \item {\tt stop\_gitm} in file library.f90 - \item {\tt get\_f107a} - \item {\tt stop\_gitm} in file library.f90 - \item {\tt init\_msis} in file init\_msis.Earth.f90 - \item {\tt init\_iri} in file init\_iri.Earth.f90 - \item {\tt init\_b0} in file init\_b0.f90 - \item {\tt end\_timing} in file timing.f90 - \item {\tt report} in file library.f90 - \item {\tt start\_timing} in file timing.f90 - \item {\tt calc\_rates} in file calc\_rates.Earth.f90 - \item {\tt calc\_viscosity} in file calc\_rates.Earth.f90 - \item {\tt advance\_vertical} in file advance\_vertical.f90 - \item {\tt end\_timing} in file timing.f90 - \item {\tt report} in file library.f90 - \item {\tt start\_timing} in file timing.f90 - \item {\tt exchange\_messages\_sphere} in file exchange\_messages\_sphere.f90 - \item {\tt calc\_rates} in file calc\_rates.Earth.f90 - \item {\tt calc\_physics} in file calc\_physics.f90 - \item {\tt advance\_horizontal} in file advance\_horizontal.f90 - \item {\tt calc\_physics} in file calc\_physics.f90 - \item {\tt calc\_rates} in file calc\_rates.Earth.f90 - \item {\tt advance\_horizontal} in file advance\_horizontal.f90 - \item {\tt exchange\_messages\_sphere} in file exchange\_messages\_sphere.f90 - \item {\tt end\_timing} in file timing.f90 - \end{itemize} - - - \item {\tt check\_stop} in file {\bf stop\_file.f90} - \begin{itemize} - \item {\tt report} in file library.f90 - \item {\tt start\_timing} in file timing.f90 - \item {\tt MPI\_AllREDUCE} - \item {\tt check\_start} in file stop\_file.f90 - \item {\tt end\_timing} in file timing.f90 - \end{itemize} - - - \item {\tt write\_output} in file {\bf write\_output.f90} - \begin{itemize} - \item {\tt output} in file output\_common.f90 - \item {\tt move\_satellites} in file satellites.f90 - \item {\tt write\_restart} in file restart.f90 - \item {\tt logfile} in file logfile.f90 - \end{itemize} - - - \end{itemize} %loop - - - \item Loop End - - -\item {\tt finalize\_gitm} in file {\bf finalize.f90} - \begin{itemize} - \item {\tt UA\_calc\_electrodynamics} in file calc\_electrodynamics.f90 - \item {\tt output} in file output\_common.f90 - \item {\tt write\_restart} in file restart.f90 - \item {\tt end\_timing} in file timing.f90 - \item {\tt report\_timing} in file timing.f90 - \item {\tt UAM\_XFER\_destroy} in file ModSphereInterface.f90 - \item {\tt UAM\_write\_error} in file ModSphereInterface.f90 - \item {\tt stop\_gitm} in file library.f90 - \item {\tt MPI\_FINALIZE} - \end{itemize} - - -\item {\tt stop\_gitm} in file {\bf library.f90} - \begin{itemize} - \item {\tt CON\_stop} in file main.f90 - \item {\tt MPI\_abort} - \end{itemize} -\end{itemize} diff --git a/srcDoc/outputs.md b/srcDoc/outputs.md new file mode 100644 index 00000000..2a8deb44 --- /dev/null +++ b/srcDoc/outputs.md @@ -0,0 +1,549 @@ +# Outputs {#outputs.sec} + +Now that you have managed to successfully complete a GITM run you've +found yourself with a bunch of output files. All of the GITM output is +in mks units and this data is contained within several files located in +the `UA/data` directory + +After [postprocessing](postprocessing.md), you will find yourself with a +`log*.dat` file,and many `.bin` files in whichever formats you specified in +SAVEPLOT (see [`#SAVEPLOT`](set_inputs.md#saveplot) + +The log file provides useful information about the run, such as whether a +restart was performed, which physical processes were used, and a list of some +variables which represent the state of the modeled system and its drivers. This +file can be very useful when sharing runs with other users, when revisiting an +old run, or merely ensuring that GITM performed as expected. Some example log +files can be found in the `srcTest/auto_test/ref_solns/` directory. + +## Possible Output Variables + +The output binary files can contain the following atmospheric +quantities: + +- **Altitude:** Altitude from the surface of the planet (m) + +- **Ar:** Argon density (m$`^{-3}`$) + +- **Ar Mixing Ratio:** Argon mixing ratio + +- **CH4 Mixing Ratio:** Methane mixing ratio + +- **Conduction:** Heat conduction + +- **EuvHeating:** EUV Heating rate + +- **H:** Hydrogen density (m$`^{-3}`$) + +- **H!U+!N:** H$`^+`$ density (m$`^{-3}`$) + +- **H2 Mixing Ratio:** Molecular Hydrogen mixing ratio + +- **HCN Mixing Ratio:** Hydrogen Cyanide mixing ratio + +- **He:** Helium density (m$`^{-3}`$) + +- **He!U+!N:** He$`^+`$ density (m$`^{-3}`$) + +- **Heaing Efficiency:** Heating efficiency + +- **Heat Balance Total:** Heat balance total + +- **Latitude:** Geographic latitude (degrees) + +- **Longitude:** Geographic longitude (degrees) + +- **N!D2!N:** N$`_2`$ density (m$`^{-3}`$) + +- **N!D2!U+!N:** N$`_2^+`$ density (m$`^{-3}`$) + +- **N!U+!N:** N$`^+`$ density (m$`^{-3}`$) + +- **N(!U2!ND):** N($`^2`$D) density (m$`^{-3}`$) + +- **N(!U2!NP):** N($`^2`$P) density (m$`^{-3}`$) + +- **N(!U4!NS):** N($`^4`$S) density (m$`^{-3}`$) + +- **N2 Mixing Ratio:** Molecular nitrogen mixing ratio + +- **NO:** Nitrious Oxide density (m$`^{-3}`$) + +- **NO!U+!N:** NO$`^+`$ density (m$`^{-3}`$) + +- **O!D2!N:** O$`_2`$ density (m$`^{-3}`$) + +- **O!D2!U+!N:** O$`_2^+`$ density (m$`^{-3}`$) + +- **O(!U1!ND):** O($`^1`$D) density (m$`^{-3}`$) + +- **O(!U2!ND)!U+!N:** O($`^2`$D) density (m$`^{-3}`$) + +- **O(!U2!NP)!U+!N:** O($`^2`$P) density (m$`^{-3}`$) + +- **O(!U3!NP):** O($`^3`$P) density (m$`^{-3}`$) + +- **O_4SP\_!U+!N:** O($`_4`$SP)$`^+`$ density (m$`^{-3}`$) + +- **RadCooling:** Radiative Cooling rate + +- **Rho:** Neutral density (m$`^{-3}`$) + +- **Temperature:** Neutral temperature (K) + +- **V!Di!N (east):** Ion velocity towards geographic East (m s$`^{-1}`$) + +- **V!Di!N (north):** Ion velocity towards geographic North (m + s$`^{-1}`$) + +- **V!Di!N (up):** Vertical ion velocity (m s$`^{-1}`$) + +- **V!Dn!N (east):** Neutral velocity towards geographic East (m + s$`^{-1}`$) + +- **V!Dn!N (north):** Neutral velocity towards geographic North (m + s$`^{-1}`$) + +- **V!Dn!N (up):** Vertical neutral velocity (m s$`^{-1}`$) + +- **V!Dn!N (up,N!D2!N):** Vertical N$`_2`$ velocity (m s$`^{-1}`$) + +- **V!Dn!N (up,N(!U4!NS)):** Vertical N($`^4`$S) velocity (m s$`^{-1}`$) + +- **V!Dn!N (up,NO):** Vertical NO velocity (m s$`^{-1}`$) + +- **V!Dn!N (up,O!D2!N):** Vertical O$`_2`$ velocity (m s$`^{-1}`$) + +- **V!Dn!N (up,O(!U3!NP)):** Vertical O($`^3`$P) velocity (m s$`^{-1}`$) + +- **e-:** electron density (m$`^{-3}`$) + +- **eTemperature:** electron temperature (K) + +- **iTemperature:** ion temperature (K) + +- **time:** Universal time + + +Currently the following output files are available: + +## 2DANC + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Local Time + 5 Solar Zenith Angle + 6 Vertical TEC + 7 AltIntJouleHeating (W/m2) + 8 AltIntHeatingTransfer (W/m2) + 9 AltIntEuvHeating (W/m2) + 10 AltIntPhotoElectronHeating (W/m2) + 11 AltIntChamicalHeating (W/m2) + 12 AltIntRadCooling (W/m2) + 12 AltIntCO2Cooling (W/m2) + 12 AltIntNOCooling (W/m2) + 12 AltIntOCooling (W/m2) + +## 2DGEL + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Potential + 5 Pedersen Conductance + 6 Hall Conductance + 7 Electron_Average_Energy + 8 Electron_Energy_Flux + 9 DivJuAlt + 10 Pedersen FL Conductance + 11 Hall FL Conductance + 12 DivJu FL + 13 FL Length + +## 2DHME + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Local Time + 5 Vertical TEC + +## 2DMEL + + 1 Longitude + 2 Latitude + 3 Altitude + 4 MLT + 5 GeoLat + 6 GeoLon + 7 Pedersen Conductance + 8 Hall Conductance + 9 DivJuAlt + 10 Field Line Length + 11 Sigma PP + 12 Sigma LL + 13 Sigma H + 14 Sigma C + 15 Sigma PL + 16 Sigma LP + 17 K^D_{m\phi} + 18 K^D_{m\lamda} + 19 Solver A + 20 Solver B + 21 Solver C + 22 Solver D + 23 Solver E + 24 Solver S + 25 DynamoPotential + 26 Ed1new + 27 Ed2new + 28 Kphi + 29 Klamda + +## 2DTEC + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Solar Zenith Angle + 5 Vertical TEC + + +## 2DUSR + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Potential (kV) + 5 Average Energy (keV) + 6 Total Energy (ergs) + 7 Discrete Average Energy (keV) + 8 Discrete Total Energy (ergs) + 9 Wave Average Energy (keV) + 10 Wave Total Energy (ergs) + 11 Flux@5.000E+05eV (/cm2/s) + 12 Flux@4.009E+05eV (/cm2/s) + 13 Flux@3.215E+05eV (/cm2/s) + 14 Flux@2.578E+05eV (/cm2/s) + 15 Flux@2.067E+05eV (/cm2/s) + 16 Flux@1.658E+05eV (/cm2/s) + 17 Flux@1.329E+05eV (/cm2/s) + 18 Flux@1.066E+05eV (/cm2/s) + 19 Flux@8.547E+04eV (/cm2/s) + 20 Flux@6.853E+04eV (/cm2/s) + 21 Flux@5.495E+04eV (/cm2/s) + 22 Flux@4.407E+04eV (/cm2/s) + 23 Flux@3.533E+04eV (/cm2/s) + 24 Flux@2.833E+04eV (/cm2/s) + 25 Flux@2.272E+04eV (/cm2/s) + 26 Flux@1.822E+04eV (/cm2/s) + 27 Flux@1.461E+04eV (/cm2/s) + 28 Flux@1.171E+04eV (/cm2/s) + 29 Flux@9.393E+03eV (/cm2/s) + 30 Flux@7.532E+03eV (/cm2/s) + 31 Flux@6.040E+03eV (/cm2/s) + 32 Flux@4.843E+03eV (/cm2/s) + 33 Flux@3.884E+03eV (/cm2/s) + 34 Flux@3.114E+03eV (/cm2/s) + 35 Flux@2.497E+03eV (/cm2/s) + 36 Flux@2.002E+03eV (/cm2/s) + 37 Flux@1.606E+03eV (/cm2/s) + 38 Flux@1.287E+03eV (/cm2/s) + 39 Flux@1.032E+03eV (/cm2/s) + 40 Flux@8.278E+02eV (/cm2/s) + 41 Flux@6.638E+02eV (/cm2/s) + 42 Flux@5.323E+02eV (/cm2/s) + 43 Flux@4.268E+02eV (/cm2/s) + 44 Flux@3.423E+02eV (/cm2/s) + 45 Flux@2.744E+02eV (/cm2/s) + 46 Flux@2.201E+02eV (/cm2/s) + 47 Flux@1.765E+02eV (/cm2/s) + 48 Flux@1.415E+02eV (/cm2/s) + 49 Flux@1.135E+02eV (/cm2/s) + 50 Flux@9.099E+01eV (/cm2/s) + 51 Flux@7.296E+01eV (/cm2/s) + 52 Flux@5.850E+01eV (/cm2/s) + 53 Flux@4.691E+01eV (/cm2/s) + 54 Flux@3.762E+01eV (/cm2/s) + 55 Flux@3.016E+01eV (/cm2/s) + 56 Flux@2.419E+01eV (/cm2/s) + 57 Flux@1.940E+01eV (/cm2/s) + 58 Flux@1.555E+01eV (/cm2/s) + 59 Flux@1.247E+01eV (/cm2/s) + 60 Flux@1.000E+01eV (/cm2/s) + +## 3DALL + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Rho + 5 [O(!U3!NP) ] + 6 [O!D2!N ] + 7 [N!D2!N ] + 8 [N(!U4!NS) ] + 9 [NO ] + 10 [He ] + 11 [N(!U2!ND) ] + 12 [N(!U2!NP) ] + 13 [H ] + 14 [CO!D2!N ] + 15 [O(!U1!ND) ] + 16 Temperature + 17 V!Dn!N (east) + 18 V!Dn!N (north) + 19 V!Dn!N (up) + 20 V!Dn!N (up,O(!U3!NP) ) + 21 V!Dn!N (up,O!D2!N ) + 22 V!Dn!N (up,N!D2!N ) + 23 V!Dn!N (up,N(!U4!NS) ) + 24 V!Dn!N (up,NO ) + 25 V!Dn!N (up,He ) + 26 [O_4SP_!U+!N ] + 27 [NO!U+!N ] + 28 [O!D2!U+!N ] + 29 [N!D2!U+!N ] + 30 [N!U+!N ] + 31 [O(!U2!ND)!U+!N ] + 32 [O(!U2!NP)!U+!N ] + 33 [H!U+!N ] + 34 [He!U+!N ] + 35 [e- ] + 36 eTemperature + 37 iTemperature + 38 V!Di!N (east) + 39 V!Di!N (north) + 40 V!Di!N (up) + +## 3DCHM + + 1 Longitude + 2 Latitude + 3 Altitude + 4 N!D2!U+!N + e + 5 O!D2!U+!N + e + 6 N!D2!U+!N + O + 7 NO!U+!N + e + 8 N!U+!N + O!D2!N + 9 NO + N + 10 O!U+!N + O!D2!N + 11 N + O!D2!N + 12 O!D2!U+!N + N + 13 O!D2!U+!N + NO + 14 O!D2!U+!N + N2 + 15 N!D2!U+!N + O!D2!N + 16 N!U+!N + O + 17 O!+!N + N!D2!N + 18 O(1D) + N!D2!N + 19 O(1D) + O!D2!N + 20 O(1D) + O + 21 O(1D) + e + 22 N(2D) + O!D2!N + 23 O!U+!N(2D)+e + 24 N(2D) + O + 25 N(2D) + e + 26 O!U+!N(2D + N!D2!N + 27 O!U+!N(2P) + e + 28 O!U+!N(2P) + O + 29 O!U+!N(2P) + N!D2!N + 30 Chemical Heating Rate + +## 3DGLO + + 1 Longitude + 2 Latitude + 3 Altitude + 4 6300 A Emission + 5 PhotoElectronUp + 6 PhotoElectronDown + +## 3DHME + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Rho + 5 [O(!U3!NP) ] + 6 [O!D2!N ] + 7 [N!D2!N ] + 8 [N(!U4!NS) ] + 9 [NO ] + 10 [He ] + 11 [N(!U2!ND) ] + 12 [N(!U2!NP) ] + 13 [H ] + 14 [CO!D2!N ] + 15 [O(!U1!ND) ] + 16 Temperature + 17 V!Dn!N (east) + 18 V!Dn!N (north) + 19 V!Dn!N (up) + 20 V!Dn!N (up,O(!U3!NP) ) + 21 V!Dn!N (up,O!D2!N ) + 22 V!Dn!N (up,N!D2!N ) + 23 V!Dn!N (up,N(!U4!NS) ) + 24 V!Dn!N (up,NO ) + 25 V!Dn!N (up,He ) + 26 [O_4SP_!U+!N ] + 27 [NO!U+!N ] + 28 [O!D2!U+!N ] + 29 [N!D2!U+!N ] + 30 [N!U+!N ] + 31 [O(!U2!ND)!U+!N ] + 32 [O(!U2!NP)!U+!N ] + 33 [H!U+!N ] + 34 [He!U+!N ] + 35 [e- ] + 36 eTemperature + 37 iTemperature + 38 V!Di!N (east) + 39 V!Di!N (north) + 40 V!Di!N (up) + 41 PhotoElectron Heating + 42 Joule Heating + 43 Auroral Heating + 44 Specific Heat + 45 Magnetic Latitude + 46 Magnetic Longitude + 47 B.F. East + 48 B.F. North + 49 B.F. Vertical + 50 B.F. Magnitude + 51 Potential + 52 PotentialY + 53 E.F. East + 54 E.F. North + 55 E.F. Vertical + +## 3DION + + 1 Longitude + 2 Latitude + 3 Altitude + 4 [O_4SP_!U+!N ] + 5 [NO!U+!N ] + 6 [O!D2!U+!N ] + 7 [N!D2!U+!N ] + 8 [N!U+!N ] + 9 [O(!U2!ND)!U+!N ] + 10 [O(!U2!NP)!U+!N ] + 11 [H!U+!N ] + 12 [He!U+!N ] + 13 [e- ] + 14 eTemperature + 15 iTemperature + 16 V!Di!N (east) + 17 V!Di!N (north) + 18 V!Di!N (up) + 19 Ed1 + 20 Ed2 + 21 Je1 + 22 Je2 + 23 Magnetic Latitude + 24 Magnetic Longitude + 25 B.F. East + 26 B.F. North + 27 B.F. Vertical + 28 B.F. Magnitude + 29 Potential + 30 E.F. East + 31 E.F. North + 32 E.F. Vertical + 33 E.F. Magnitude + 34 IN Collision Freq + 35 PressGrad (east) + 36 PressGrad (north) + 37 PressGrad (up) + +## 3DLST + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Rho (kg/m3) + 5 [O(!U3!NP) ] (/m3) + 6 [O!D2!N ] (/m3) + 7 [N!D2!N ] (/m3) + 8 [NO ] (/m3) + 9 Vn (east) (m/s) + 10 Vn (north) (m/s) + 11 Vn (up) (m/s) + 12 [O_4SP_!U+!N ] (/m3) + 13 [NO!U+!N ] (/m3) + 14 [O!D2!U+!N ] (/m3) + 15 [N!D2!U+!N ] (/m3) + 16 [e- ] (/m3) + 17 Vi (east) (m/s) + 18 Vi (north) (m/s) + 19 Vi (up) (m/s) + 20 Neutral Temperature (K) + +## 3DMAG + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Magnetic Latitude + 5 Magnetic Longitude + 6 B.F. East + 7 B.F. North + 8 B.F. Vertical + 9 B.F. Magnitude + +## 3DNEU + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Rho + 5 [O(!U3!NP) ] + 6 [O!D2!N ] + 7 [N!D2!N ] + 8 [N(!U4!NS) ] + 9 [NO ] + 10 [He ] + 11 [N(!U2!ND) ] + 12 [N(!U2!NP) ] + 13 [H ] + 14 [CO!D2!N ] + 15 [O(!U1!ND) ] + 16 Temperature + 17 V!Dn!N (east) + 18 V!Dn!N (north) + 19 V!Dn!N (up) + 20 V!Dn!N (up,O(!U3!NP) ) + 21 V!Dn!N (up,O!D2!N ) + 22 V!Dn!N (up,N!D2!N ) + 23 V!Dn!N (up,N(!U4!NS) ) + 24 V!Dn!N (up,NO ) + 25 V!Dn!N (up,He ) + +## 3DTHM + + 1 Longitude + 2 Latitude + 3 Altitude + 4 EUV Heating + 5 Conduction + 6 Molecular Conduction + 7 Eddy Conduction + 8 Eddy Adiabatic Conduction + 9 Chemical Heating + 10 Auroral Heating + 11 Joule Heating + 12 NO Cooling + 13 O Cooling + 14 Total Abs EUV + 15 Cp + 16 Rho + 17 E-Field Mag + 18 Sigma Ped + +## 3DUSR + + 1 Longitude + 2 Latitude + 3 Altitude + 4 Joule Heating + 5 JPara \ No newline at end of file diff --git a/srcDoc/outputs.tex b/srcDoc/outputs.tex deleted file mode 100644 index 91c64494..00000000 --- a/srcDoc/outputs.tex +++ /dev/null @@ -1,619 +0,0 @@ -Now that you have managed to successfully complete a GITM run you've found yourself with a bunch of output files. All of the GITM output is in mks units and this data is contained within several files located in the {\tt UA/data} directory, as was previously discussed in Chapter~\ref{quickstart.ch} Section~\ref{post_process.sec}. You will have found yourself with several {\tt iriOut\_*.dat} files, a {\tt log*.dat} file, and many {\tt .bin} files in whichever formats you specified in SAVEPLOT (see Chapter~\ref{input.ch} Section~\ref{def_out.sec}). The {\tt iriOut\_*.dat} files are required by the IRI model and not typically used when analyzing the outcome of the GITM run. - -The log file provides useful information about the run, such as whether a restart was performed, which physical processes were used, and a list of the universal time, time-step, neutral temperature ranges (T), solar and geomagnetic indices, and the neutral velocity (VV) ranges for each iteration. This file can be very useful when sharing runs with other users, when revisiting an old run, or merely ensuring that GITM performed as expected. An example log file is provided below: - -\begin{verbatim} -## Inputs from UAM.in -# Resart= F -# Eddy coef: 100.000 Eddy P0: 0.020 Eddy P1: 0.003 Eddy Scaling: 1.000 -# Statistical Models Only: F Apex: T -# EUV Data: TFile: -fismflux.dat -# AMIE: none -none -# Solar Heating: T Joule Heating: T Auroral Heating: T -# NO Cooling: T O Cooling: T -# Conduction: T Turbulent Conduction: T Updated Turbulent Conduction: T -# Pressure Grad: T Ion Drag: T Neutral Drag: T -# Viscosity: T Coriolis: T Gravity: T -# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T - -#START - iStep yyyy mm dd hh mm ss ms dt min(T) max(T)... - ...mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx... - ...HP HPn HPs SubsolarLon SubsolarLat SubsolarVTEC - 2 2011 9 23 0 0 2 297 2.2979 168.75192 1062.87354... - ...933.09984 -48.19362 524.93645 1.01910 159.3 127.9 -4.6 0.5 406.9... - ...11.1 14.4 15.5 3.14145 -0.37655 45.73188 - . - . - . -\end{verbatim} - -The 3DALL output binary files can contain the following atmospheric quantities: - -\begin{itemize} -\item[]{\bf Altitude:} Altitude from the surface of the planet (m) -\item[]{\bf Ar:} Argon density (m$^{-3}$) -\item[]{\bf Ar Mixing Ratio:} Argon mixing ratio -\item[]{\bf CH4 Mixing Ratio:} Methane mixing ratio -\item[]{\bf Conduction:} Heat conduction -\item[]{\bf EuvHeating:} EUV Heating rate -\item[]{\bf H:} Hydrogen density (m$^{-3}$) -\item[]{\bf H!U+!N:} H$^+$ density (m$^{-3}$) -\item[]{\bf H2 Mixing Ratio:} Molecular Hydrogen mixing ratio -\item[]{\bf HCN Mixing Ratio:} Hydrogen Cyanide mixing ratio -\item[]{\bf He:} Helium density (m$^{-3}$) -\item[]{\bf He!U+!N:} He$^+$ density (m$^{-3}$) -\item[]{\bf Heaing Efficiency:} Heating efficiency -\item[]{\bf Heat Balance Total:} Heat balance total -\item[]{\bf Latitude:} Geographic latitude (degrees) -\item[]{\bf Longitude:} Geographic longitude (degrees) -\item[]{\bf N!D2!N:} N$_2$ density (m$^{-3}$) -\item[]{\bf N!D2!U+!N:} N$_2^+$ density (m$^{-3}$) -\item[]{\bf N!U+!N:} N$^+$ density (m$^{-3}$) -\item[]{\bf N(!U2!ND):} N($^2$D) density (m$^{-3}$) -\item[]{\bf N(!U2!NP):} N($^2$P) density (m$^{-3}$) -\item[]{\bf N(!U4!NS):} N($^4$S) density (m$^{-3}$) -\item[]{\bf N2 Mixing Ratio:} Molecular nitrogen mixing ratio -\item[]{\bf NO:} Nitrious Oxide density (m$^{-3}$) -\item[]{\bf NO!U+!N:} NO$^+$ density (m$^{-3}$) -\item[]{\bf O!D2!N:} O$_2$ density (m$^{-3}$) -\item[]{\bf O!D2!U+!N:} O$_2^+$ density (m$^{-3}$) -\item[]{\bf O(!U1!ND):} O($^1$D) density (m$^{-3}$) -\item[]{\bf O(!U2!ND)!U+!N:} O($^2$D) density (m$^{-3}$) -\item[]{\bf O(!U2!NP)!U+!N:} O($^2$P) density (m$^{-3}$) -\item[]{\bf O(!U3!NP):} O($^3$P) density (m$^{-3}$) -\item[]{\bf O\_4SP\_!U+!N:} O($_4$SP)$^+$ density (m$^{-3}$) -\item[]{\bf RadCooling:} Radiative Cooling rate -\item[]{\bf Rho:} Neutral density (m$^{-3}$) -\item[]{\bf Temperature:} Neutral temperature (K) -\item[]{\bf V!Di!N (east):} Ion velocity towards geographic East (m s$^{-1}$) -\item[]{\bf V!Di!N (north):} Ion velocity towards geographic North (m s$^{-1}$) -\item[]{\bf V!Di!N (up):} Vertical ion velocity (m s$^{-1}$) -\item[]{\bf V!Dn!N (east):} Neutral velocity towards geographic East (m s$^{-1}$) -\item[]{\bf V!Dn!N (north):} Neutral velocity towards geographic North (m s$^{-1}$) -\item[]{\bf V!Dn!N (up):} Vertical neutral velocity (m s$^{-1}$) -\item[]{\bf V!Dn!N (up,N!D2!N):} Vertical N$_2$ velocity (m s$^{-1}$) -\item[]{\bf V!Dn!N (up,N(!U4!NS)):} Vertical N($^4$S) velocity (m s$^{-1}$) -\item[]{\bf V!Dn!N (up,NO):} Vertical NO velocity (m s$^{-1}$) -\item[]{\bf V!Dn!N (up,O!D2!N):} Vertical O$_2$ velocity (m s$^{-1}$) -\item[]{\bf V!Dn!N (up,O(!U3!NP)):} Vertical O($^3$P) velocity (m s$^{-1}$) -\item[]{\bf e-:} electron density (m$^{-3}$) -\item[]{\bf eTemperature:} electron temperature (K) -\item[]{\bf iTemperature:} ion temperature (K) -\item[]{\bf time:} Universal time -\end{itemize} - -There are many routines available to process and analyze the GITM binary files. The majority of these routines are written in IDL and are available in the {\tt srcIDL} directory within the GITM model directory. Currently 50 routines have been saved in this directory and more are under development. Alternatively, python routines are currently being developed and these are located in the {\tt srcPython} directory. Please not that when using the IDL reader the universal time is read in as epoch seconds from January 1, 1965 00:00 UT, while when using the python reader, the time is imported as a datetime object. - -\section{IDL} -\label{idl.sec} - -Here is an complete list with some description of the IDL processing and visualization routines currently available. Please feel free to update this section for other GITM users when you CVS your vetted GITM processing routines. - -\subsubsection{gitm\_read\_bin} - -This is a routine to read a GITM bin file into IDL. This is great when you want to get a handle on the data and experiment with different visualization methods. - -\subsubsection{thermo\_plotsat} - -This is the most commonly used routine to plot the 1D GITM results. It can also be used to plot satellite files and other 1D simulations. It is relatively straight forward to use, but experimentation can be help. This is an actual program, so you have to {\tt .run} it. - -\subsubsection{thermo\_gui} - -This is a someone simplistic graphical user interface code for plotting 3D results. The filename has to be entered manually in the upper left. You then have to press the button for loading the file. Variables appear on the left side, and you can select which one you want to plot. You then select which of the available planes you would like to look at (lat/lon, lat/alt, or lon/alt) or scroll through the options. This interface allows you to add wind vectors, plot in polar coordinates, and plot the log of the variable. - -\subsubsection{thermo\_batch\_new} - -This code will let you look at at 3D files exactly the same way as thermo\_gui, but is all scripted. There are a few features that this has that thermo\_batch doesn't have: - -\begin{enumerate} -%\setlength{\itemsep}{-3in} - \item You can use wildcards for the file name, so that a list of files can be read. The postscript file names created for each figure will be differentiated by appending numbers sequentially so that no figures are overwritten. - \item When plotting a lat/alt plane, you can do a zonal average. - \item You can do a global average. -\end{enumerate} - -\subsubsection{thermo\_plotter} - -All of the above plotting codes will only plot one plot per page. This code will plot many more than one plot per page. You can plot multiple variables on the same page, or multiple files with the same variable, or both. - -\subsubsection{Other IDL Routines} - -Please feel free to provide a description of these routines so that GITM users do not waste their time rewriting code that already exists. - -\begin{multicols}{3} -\begin{itemize} -\item{\bf ask} -\item{\bf c\_a\_to\_r} -\item{\bf c\_a\_to\_s} -\item{\bf chopr} -\item{\bf closedevice} -\item{\bf c\_r\_to\_a} -\item{\bf c\_s\_to\_a} -\item{\bf get\_position} -\item{\bf makect} -\item{\bf mklower} -\item{\bf mm} -\item{\bf plotct} -\item{\bf plotdumb} -\item{\bf plotmlt} -\item{\bf pos\_space} -\item{\bf read\_thermosphere\_file} -\item{\bf setdevice} -\item{\bf thermo\_batch} -\item{\bf thermo\_calcforce} -\item{\bf thermo\_champ} -\item{\bf thermo\_compare} -\item{\bf thermo\_compare\_time} -\item{\bf thermo\_convert\_champfiles} -\item{\bf thermo\_guvi} -\item{\bf thermo\_magequator} -\item{\bf thermo\_make\_summary} -\item{\bf thermo\_mkguvisat} -\item{\bf thermo\_mksatsave} -\item{\bf thermo\_mksave} -\item{\bf thermo\_mktec} -\item{\bf thermo\_on2} -\item{\bf thermo\_plotdist} -\item{\bf thermo\_plotlog} -\item{\bf thermo\_plot\_new} -\item{\bf thermo\_plot} -\item{\bf thermo\_plotsat2} -\item{\bf thermo\_plotsat\_constalt\_ON2} -\item{\bf thermo\_plotsat\_constalt} -\item{\bf thermo\_plotvectors} -\item{\bf thermo\_readsat} -\item{\bf thermo\_sigma} -\item{\bf thermo\_superposed} -\item{\bf thermo\_tec} -\item{\bf thermo\_temp} -\item{\bf tostr} -\end{itemize} -\end{multicols} - -\section{Python} -\label{python.sec} - -This section provides an almost complete list of the vetted GITM python routines. These routines require that you use PyBats, a module included in SpacePy. This is a library developed for space physics applications by the scientists at Los Alamos and can be downloaded for free at: -{\tt http://spacepy.lanl.gov} - -Another library, Basemap, is required for certain plotting routines. Basemap is a part of the Matplotlib Toolkit and can be installed using Fink, Macports, or downloaded at: -{\tt http://matplotlib.org/basemap/} - -Yet another library, Pysolar, is used to calculate the solar position. You don't \textit{need} to download Pysolar to run any of the GITM plotting scripts, but it does expand the functionality. Pysolar is documented at Github and can be downloaded at: -{\tt http://www.pysolar.org} - -Python scripts that create movies rely on external programs to do so. The scripts included here use FFmpeg, which can be installed using Fink, Macports, or downloaded at: {\tt http://http://www.ffmpeg.org/} - -If you have questions about these routines or are at the University of Michigan and want to start using Python, Dr. Welling is the man to see. The source code behind the PyBats GITM routines are also located in {\tt GITM2/srcPython}. - -The following programs include the vetted python routines. The examples shown are meant to be run in ipython, an interactive command-line interface for python. The terminal window that is running ipython should be located in the {\tt GITM2/srcPython} directory. The test file for the example code is one of the files output after running the default {\tt UAM.in} file. - -\subsubsection{gitm.py} - -GITM is a PyBats submodule that handles input and output from GITM. It can be helpful for those wishing to write their own GITM processing routines but doesn't contain any analysis or visualization routines. - -Once you have downloaded and installed Spacepy, the gitm submodule can be accessed via: - -\noindent{\tt import spacepy.pybats.gitm} - - \noindent Though to be sure that you have the latest version it is best to CVS the latest version of {\tt gitm.py} and load: - -\noindent {\tt import gitm} - -\noindent while running the {\tt GITM2/srcPhython} directory. This module contains the following routines: - -\begin{itemize} -\item[]{\bf GitmBin: } A data class and routine to load a GITM output bin file, based on the PyBats data container class PbData. There are two keywords arguements that may be associated with this input, \textit{ionfile}, and \textit{varlist}. The first keyword, \textit{ionfile}, takes a 3DION file as input, assigns an attribute called `ionfile' to the data class, and runs one of the functions called {\bf calc\_magvel} to calculate the ion and neutral velocities in magnetic coordinates. The second keyword, \textit{varlist}, takes a list of atmospheric quantities such as those listed at the beginning of this chapter. More variables may always be added from the same file that created a data class by calling the function {\bf append\_data}. Geographic position in degrees and local time are also added to the output, regardless of what variables are specified. A 3DION file may also be associated with the output GITM class after the fact by assigning a filename to the attribute `ionfile' and the magnetic velocity quantities obtained by running {\bf calc\_magvel}. - \begin{itemize} - \item[]{\bf append\_data: } A routine to append variables specified in an input list. These are obtained from the file specified in the `file' attribute. - \item[]{\bf append\_units: } A routine to append unit, scale, and name attributes to the variable keys in the data class. Runs automatically with {\bf GitmBin}. - \item[]{\bf calc\_deg: } A routine to compute latitude and longitude in degrees instead of radians. Runs automatically with {\bf GitmBin}. - \item[]{\bf calc\_lt: } A routine to compute local time from universal time and longitude. Runs automatically with {\bf GitmBin}. - \item[]{\bf calc\_magdi: } A routine to compute the magnetic inclination and declination from the magnetic field expressed in East-North-Vertical coordinates. Runs automatically with {\bf GitmBin} when the appropriate inputs are present. - \item[]{\bf calc\_magvel: } A routine to compute ion and neutral velocities in magnetic coordinates. Runs automatically with {\bf GitmBin} if the \textit{ionfile} keyword is specified. - \item[]{\bf calc\_tec: } A routine to calculate the VTEC from any GITM data structure that has altitude and electron density. - \item[]{\bf calc\_2dion: } A routine to calculate the VTEC (if it hasn't been done already), $h_mF_2$, and $N_mF_2$ from any GITM data structure that has altitude and electron density - \end{itemize} -\end{itemize} - -You can load a GITM binary file by entering the following commands. Comments are preceded by a `\#'. - -\begin{verbatim} -In [1]: import spacepy -In [2]: import gitm # Load the local version of gitm.py, which may be more up-to-date -In [3]: gdata = gitm.GitmBin(`3DALL_t021124_000000.bin') # example binary file -In [4]: gdata.attrs -Out[4]: -{`endian': `big', - `file': `3DALL_t021124_000000.bin', - `nAlt': 54, - `nLat': 22, - `nLon': 22, - `nVars': 39, - `version': 3.13} -\end{verbatim} - -The method used by {\bf calc\_2dion} to compute the $h_mF_2$ (height of the F$_2$ region density peak) does more than just look for the height of the electron maximum at the specified locations. Instead it performs a few checks to ensure that the peak density lies within an altitude range consistent with the F region and is not an edge artifact. This process is outlined in Figure~\ref{hmf2_flowchart.fig}. - -\begin{figure} -\begin{center} -\noindent\includegraphics[width=\textwidth]{Figures/determining_hmF2_flowchart.png} -\caption{Process for finding the $h_mF_2$ from a GITM electron density altitude profile.} -\label{gitm_3D_global_plots.fig} -\end{center} -\label{hmf2_flowchart.fig} -\end{figure} - -One of the intermediate steps in Figure~\ref{hmf2_flowchart.fig} is to find the inflection points in the altitude profile of electron density. Figure~\ref{hmf2_profile.fig} shows an example of an electron density profile with no local maxima. To determine the height of the F$_2$ peak, the height derivative of the electron density profile is computed and local minima along the profile located. These local minima correspond to inflection points in the electron density profile, and can be used to locate a reasonable $h_mF_2$. - -\begin{figure} -\begin{center} -\noindent\includegraphics[width=.6\textwidth]{Figures/determining_hmF2_saddle_profile.png} -\caption{Electron density profile (red) and height derivative of the electron density profile (blue) for an instance where GITM does not show a clear F$_2$ peak. The $h_mF_2$ is identified by choosing the inflection point (local minima from the height derivative of the electron density profile) with the largest electron density (dark grey line). The light grey lines show the remaining locations of inflection points.} -\label{gitm_3D_global_plots.fig} -\end{center} -\label{hmf2_profile.fig} -\end{figure} - -\subsubsection{gitm\_time.py} - -gitm\_time has not yet been incorporated into PyBats, as it is actively being developed. This module contains the following routines: - -\begin{itemize} -\item[]{\bf GitmTime: } A data class and routine to load multiple GITM output binaries into a structure that includes a universal time (UT) dimension. All data types and attributes provided by GitmBin are provided in this data class. - \begin{itemize} - \item[]{\bf appendgitm: } Add another GitmBin object to an existing GitmTime object. This routine is also be used to create a GitmTime object. - \item[]{\bf appendobs: } Add any type of data to an existing GitmTime object. The data can be directly appended or matched to the existing GitmTime data. Three match options are available: nearest neighbor, running average, and running median. The latter two options compute a central value and standard deviation using a specified location/time window about each GitmTime data point. - \item[]{\bf sat\_dateloc\_ticks: } Define axis ticks that include all the information necessary to know where measurements lie in spacetime. This is most useful when plotting data along a satellite orbit. - \end{itemize} -\item[]{\bf load\_multiple\_gitm\_bin: } A routine to load a list of GITM output binary files into GitmBin data structures. The output is a list of the GitmBin structures, where each element in the list contains the data from a GITM output binary. -\item[]{\bf set\_sat\_dateloc\_label: } Create a label for the ticks created by GitmTime.sat\_dateloc\_ticks. Outputs the label onto a plot on the right end of the x-axis. -\end{itemize} - -You can load multiple GITM binary files into a data structure with UT dependence by entering the following commands. Commands outside of ipython are preceded by a `\$'. Again, the output files used are produced by running the default {\tt UAM.in} file. - -\begin{verbatim} -$ ls 3DALL_t021124_000* > test.list -$ ipython -In [1]: import spacepy -In [2]: import gitm # Load the local version of gitm.py, which may be more up-to-date -In [3]: import gitm_time as gt -In [4]: gtdata = gt.GitmTime(`test.list') -In [5]: print gtdata['time'][:] -[datetime.datetime(2002, 11, 24, 0, 0) - datetime.datetime(2002, 11, 24, 0, 5)] -In [6]: print gtdata['dLon'][0,:,10,27] -[ -30. -10. 10. 30. 50. 70. 90. 110. 130. 150. 170. 190. - 210. 230. 250. 270. 290. 310. 330. 350. 370. 390.] -In [7]: print gtdata['dLat'][0,10,:,27] -[-105. -95. -85. -75. -65. -55. -45. -35. -25. -15. -5. 5. - 15. 25. 35. 45. 55. 65. 75. 85. 95. 105.] -In [8]: print gtdata['Altitude'][0,10,10,:] -[ 96660.90047544 98330.45023772 100000. 101669.54976228 - 103348.94180562 105050.15497984 106788.53042153 108584.61276626 - 110467.61429397 112482.48190265 114698.91401856 117219.51380361 - 120200.6752566 123855.40706002 128245.43857411 133349.83464183 - 139220.53740507 145894.02746965 153389.42319611 161708.33330952 - 170836.59866663 180746.14929878 191399.58798926 202753.75931196 - 214763.18484817 227382.89781152 240569.83529396 254283.5502381 - 268486.11667059 283141.61144778 298215.46358093 313673.89525175 - 329480.19139848 345605.83193525 362018.21624294 378685.73558327 - 395578.19775965 412667.22510966 429926.74623085 447332.78448625 - 464864.02590453 482501.63589793 500229.1662886 518032.39821451 - 535899.14534895 553819.03817939 571783.3052721 589784.56266012 - 607816.61836022 625874.29578468 643953.27746286 662049.96890339 - 680161.38144647 698272.79398955] -\end{verbatim} - -\subsubsection{gitm\_plot\_rout.py} - -Common routines used to format and analyze GITM data. - -\begin{itemize} -\item[]{{\bf choose\_contour\_map: } A routine to choose an appropriate color map based on whether the plot will be black and white or color, and whether data data range will be centered about zero or not.} -\item[]{{\bf add\_colorbar:} Add a color bar to a contour plot.} -\item[]{{\bf find\_order\_of\_magnitude: } Find the order of magnitude of a specified number.} -\item[]{{\bf center\_polar\_cap:} Adjust radial coordinates to produce a centered polar plot. Necessary for the northern hemisphere, where polar plots assume the radial (latitude) coordinates should be centered at zero instead of 90$^\circ$. This routine does not depend on SpacePy.} -\item[]{{\bf find\_data\_limits:} Find the upper and lower limits for a specified data key in a list of GITM data structures at a specified location (either single indices or the entire range are permitted for latitude, longitude, and altitude).} -\item[]{{\bf find\_data\_limits\_irange:} Find the upper and lower limits for a specified data key in a list of GITM data structures at a specified location range (upper and lower limits or the entire range are permitted for latitude, longitude, and altitude).} -\item[]{{\bf find\_data\_limits\_ivalues: } Establish the appropriate axis limits for a list of GitmBin files at a range or specific latitude, longitude, or altitude.} -\item[]{{\bf glon\_to\_localtime: } Compute the local time given a longitude and universal time.} -\item[]{{\bf localtime\_to\_glon:} Find the longitude at a specified universal time and local time.} -\item[]{{\bf find\_lon\_lat\_index:} Find the indexes for the location closest to a specified latitude and longitude.} -\item[]{{\bf retrieve\_key\_from\_web\_name:} Find a data key given a website-friendly version of data key names.} -\item[]{{\bf find\_alt\_index:} Find the index closest to the specified altitude. Altitude may be specified in km or m.} -\item[]{{\bf match\_cindi\_key: } A routine to retrieve a CINDI data key from a GITM key or vice versa.} -\item[]{{\bf add\_geomagnetic\_equator: } A routine to add a line showing the geomagnetic equator (specified by IGRF-10) to an existing plot. Line style and color may be specified.} -\item[]{{\bf add\_subsolar\_point: } A routine to find the location of the subsolar point at a specified Universal Time using the Pysolar routines. Returns the geographic location of the point and will also add a marker to a plot.} -\item[]{{\bf add\_solar\_terminator: } Computes the location of the solar terminator using the Pysolar routines. Returns numpy arrays of the geographic coordinates of the solar terminator and will also add a line denoting the solar terminator to a plot.} -\item[]{{\bf find\_sunside\_twilight\_sza:} A routine to find the maximum angular distance between the solar terminator and the sunlight side with conjugate flux tube feet in darkness using Pysolar routines. The solar zenith angle corresponding to the sunlight boundary is returned. The entire day is searched to identify the sunlight boundary given any degree of magnetic declination.} -\item[]{{\bf create\_contour\_input\_array:} Creates contour input at a specified location between GITM grid points.} -\item[]{{\bf create\_linear\_input\_array:} Creates linear input at a specified location between GITM grid points.} -\item[]{{\bf get\_meq\_offset: } Find the offset in degrees between the geographic and geomagnetic equators at a specified longitude.} -\end{itemize} - -This example shows how the index for a specified altitude can be found. Note that GITM saves altitude in meters. - -\begin{verbatim} -In [1]: import spacepy -In [2]: import gitm -In [3]: import gitm_plot_rout as gpr -In [4]: gdata = gitm.GitmBin(`3DALL_t021124_000000.bin') -In [5]: ialt = gpr.find_alt_index(gdata, 10, 10, 250.0, "km") -In [6]: print ialt, gdata['Altitude'][10,10,ialt] -27 254283.550238 -\end{verbatim} - -\subsubsection{solar\_rout.py} - -Routines that use Pysolar to find the location of the solar terminator and subsolar point. - -\begin{itemize} -\item[]{\bf subsolar\_point: } Finds the geographic location of the subsolar point at a specified Universal Time. -\item[]{\bf lat\_lon2spherical\_xyz: } Converts latitude and longitude to spherical coordinates. Assumes a spherical earth. -\item[]{\bf spherical\_xyz2lat\_lon: } Converts from spherical coordinates to geographic latitude and longitude, assuming a spherical earth. -\item[]{\bf get\_solar\_terminator\_xyz\_matrix: } Finds the location of the solar terminator in spherical coordinates. -\item[]{\bf get\_terminator\_lat\_lon\_coordinates: } Finds the location of the solar terminator in geographic coordinates using input from a solar-oriented spherical coordinate system. -\item[]{\bf get\_solar\_terminator\_lat\_lon: } Finds the location of the solar terminator at a specified time in geographic coordinates. -\end{itemize} - -\subsubsection{gitm\_loc\_rout.py} - -Routines used to find certain locations or values, as well as routines to align or match points in different data sets. - -\begin{itemize} -\item[]{\bf find\_nearest\_location: } A routine to find the nearest neighbor in a 1, 2, or 3D coordinate system. -\item[]{\bf find\_nearest\_value: } A routine to find the nearest neighbor to a specified value. -\item[]{\bf find\_nearest\_datetime: } A routine to find the nearest neighbor between datetime objects. -\item[]{\bf match\_running\_average: } Provide running averages at specified times and locations. -\item[]{\bf match\_running\_median: } Provide running medians at specified times and locations. -\item[]{\bf gitm\_inst\_loc: } A routine to align GITM and instrument data. -\item[]{\bf gitm\_net\_loc: } A routine to align GITM and data from a large network of instruments. -\item[]{\bf gitm\_time\_obs\_loc: } A routine to find, through interpolation, the GITM value at a specific observation location when only one spatial coordinate needs to be aligned. -\end{itemize} - -\subsubsection{gitm\_3D\_global\_plots.py} - -Routines to build and output GITM output variable contour (recommended) or scatter plots over a geographic range. Several different standard plot formats are available, and routines useful for creating custom figures are also included. The Earth's continental boundaries may be included in any output figure. If they are, shading in the night time region of the globe may also be included. - -\begin{itemize} -\item[]{{\bf gitm\_single\_3D\_image:} This is a basic visualization routine that creates a filled contour plot of a single output variable from a GITM 3D at a specified altitude or 2D bin file. The output variable is plotted as a function of latitude and longitude over the entire globe, though the latitude range may be limited. The output plot may be polar or rectangular and if the rectangular option is chosen, the geomagnetic equator may also be included in the output figure. Sample output of the electron temperature is shown in figure~\ref{gitm_3D_global_plots.fig}~(a) and~(b).} -\item[]{{\bf gitm\_single\_nsglobal\_3D\_image:} A quick way to examine GITM output at both poles. This routine creates two polar contour plots centered at the geographic northern and southern poles for a single output variable from a GITM 3D at a specified altitude or 2D bin file. The equatorial and polar latitude boundaries may both be specified, though they cannot change between hemispheres. Sample output of the electron temperature is shown in figure~\ref{gitm_3D_global_plots.fig}~(c)} -\item[]{{\bf gitm\_global\_3D\_snapshot:} A snapshot of a single GITM output over the entire globe. This routine creates two polar contour plots centered at the geographic northern and southern poles and extending to a specified latitude and a single rectangular plot containing the latitudes equatorward of this point for a single output variable from a GITM 3D at a specified altitude or 2D bin file. The geomagnetic equator may also be included in the output figure. Sample output of the electron temperature is shown in figure~\ref{gitm_3D_global_plots.fig}~(d)} -\item[]{{\bf gitm\_mult\_3D\_slices:} This routine creates a single plot containing multiple global contours of a GITM output variable from a 3D or 2D bin file at a list of specified altitudes. These plots may be either polar or rectangular, with or without the geomagnetic equator, and within a specified latitude range. Sample output of the electron temperature is shown in figure~\ref{gitm_3D_mult_plots.fig}.} -\end{itemize} - -\begin{figure} -\begin{center} -\subfigure[]{ -\noindent\includegraphics[width=.45 \textwidth]{Figures/plot_single_3D_image_polar.png} -} -\subfigure[]{ -\noindent\includegraphics[width=.45 \textwidth]{Figures/plot_single_3D_image_rect.png} -} -\subfigure[]{ -\noindent\includegraphics[width=.45 \textwidth]{Figures/plot_single_nsglobal_3D_image.png} -} -\subfigure[]{ -\noindent\includegraphics[width=.45 \textwidth]{Figures/plot_global_3D_snapshot.png} -} -\caption{GITM electron temperature at 456.63 $km$ altitude for: (a) northern latitudes, (b) over the entire globe, (c) over the entire globe, as viewed from the poles, and (d) as a global snapshot.} -\label{gitm_3D_global_plots.fig} -\end{center} -\end{figure} - -\begin{figure} -\begin{center} -\subfigure[]{ -\noindent\includegraphics[height=.9 \textheight]{Figures/plot_mult_3D_slices_polar.png} -} -\subfigure[]{ -\noindent\includegraphics[height=.9 \textheight]{Figures/plot_mult_3D_slices_rect.png} -} -\caption{GITM electron temperature at seven altitude slices for (a) northern latitudes and (b) the entire globe.} -\label{gitm_3D_mult_plots.fig} -\end{center} -\end{figure} - -This example shows how to reproduce Figure~\ref{gitm_3D_global_plots.fig}~(a). - -\begin{verbatim} -In [1]: import spacepy -In [2]: import gitm -In [3]: import gitm_3D_global_plots as g3d -In [4]: import matplotlib.pyplot as plt -In [5]: plt.ion() # This makes the plotting happen interactively -In [6]: gdata = gitm.GitmBin(`3DALL_t021124_000000.bin') -In [7]: title = "%s UT" % (gdata[`time']) -In [8]: f = g3d.plot_single_3D_image("polar", "eTemperature", gdata, title, - "example_polar_plot.png", True, 27, 90, 0) -\end{verbatim} - -\subsubsection{plot\_3D\_global.py} - -Routines to build contour or scatter plots over a geographic range. Several different standard plot formats are available, and routines useful for creating custom figures are also included. The Earth's continental boundaries may be included in any output figure. If they are, shading in the night time region of the globe may also be included. Input data must be provided in separate numpy arrays (1D or 2D for scatter plots, 2D for contour plots). - -\begin{itemize} -\item[]{{\bf plot\_single\_3D\_image:} This is a basic visualization routine that creates a filled contour or a colored scatter plot of a single output variable. The output variable is plotted as a function of latitude and longitude over the entire globe, though the latitude range may be limited. The output plot may be polar or rectangular and if the rectangular option is chosen, the geomagnetic equator may also be included in the output figure. If the polar option is used, the latitude range cannot extend beyond $\pm$ 90$^\circ$. If the rectangular option is used, the geomagnetic equator may also be plotted.} -\item[]{{\bf plot\_single\_nsglobal\_3D\_image:} A quick way to examine a variable at both poles. This routine creates two polar contour or scatter plots centered at the geographic northern and southern poles for a single output variable. The equatorial and polar latitude boundaries may both be specified, though they cannot change between hemispheres.} -\item[]{{\bf plot\_global\_3D\_snapshot:} A snapshot of an output variable over the entire globe. This routine creates two polar contour or scatter plots centered at the geographic northern and southern poles and extending to a specified latitude as well as a single rectangular plot containing the latitudes equatorward of this point. The geomagnetic equator may be output over the data.} -\item[]{{\bf plot\_mult\_3D\_slices:} This routine creates a single plot containing multiple global contour or scatter plots for a single variable at specific indices (corresponding to different altitude, universal times, \textit{et cetera}). These plots may be either polar or rectangular (with or without the geomagnetic equator). Sample output of the electron temperature is shown in figure~\ref{gitm_3D_mult_plots.fig}. The numpy arrays containing the data may be 2D or 3D for scatter plots or 3D for contour plots. Any dimension may contain the indices to iterate over for the subfigures.} -\item[]{{\bf plot\_nsglobal\_subfigure:} This routine creates a subfigure with two polar contour or scatter plots centered at the geographic northern and southern poles for a single output variable. The equatorial and polar latitude boundaries may both be specified, though they cannot change between hemispheres. This is used by plot\_single\_nsglobal\_3D\_image and may also be used to create a subplot with this format.} -\item[]{{\bf plot\_snapshot\_subfigure:} This routine creates a subfigure with two polar dials and a rectangular region showing the equatorial latitudes for a single output variable. This is used by plot\_global\_3D\_snapshot and may also be used to create a subplot with this format.} -\item[]{{\bf plot\_rectangular\_3D\_global:} This routine plots a single rectangular filled contour or colored scatter for an output variable as a function of latitude and longitude. Options exist to control the colorbar, ticks, labels, and more. A handle to the contour plot is returned to allow the output to be further manipulated depending on what other subplots are included in the output figure.} -\item[]{{\bf plot\_polar\_3D\_global:} This routine plots a single polar filled contour for a GITM output variable at a specified altitude index as a function of latitude and longitude. Title, colorbar, labels, and more may be specified using input options. A handle to the contour plot is returned to allow the output to be further manipulated depending on what other subplots are included in the output figure. The longitude at the top of the plot may also be specified, this allows one to ensure a specific local time is always located at the top of the dial using a routine like {\bf localtime\_to\_glon}.} -\end{itemize} - -\subsubsection{gitm\_alt\_plots.py} - -Routines to build and output GITM output variable linear and contour plots over an altitude range. Several different standard plot formats are available, and routines useful for creating custom figures are also included. - -\begin{itemize} -\item[]{{\bf gitm\_single\_alt\_image:} Creates a single linear or contour altitude plot.} -\item[]{{\bf gitm\_mult\_alt\_image:} Creates a figure with multiple linear or contour altitude plots.} -\item[]{{\bf gitm\_alt\_slices:} Creates a figure with a contour plot showing the altitude dependence of a quantity as a function of latitude or longitude with several linear altitude slices at specified locations. An example is shown in figure~\ref{gitm_alt_slices.fig}} -\end{itemize} - -\begin{figure} -\begin{center} -\noindent\includegraphics[width=\textwidth]{Figures/gitm_alt_slice_test_Te.png} -\caption{GITM electron temperature at a constant longitude with six latitude slices.} -\label{gitm_alt_slices.fig} -\end{center} -\end{figure} - -This example shows how to reproduce Figure~\ref{gitm_alt_slices.fig}. - -\begin{verbatim} -In [1]: import spacepy -In [2]: import gitm -In [3]: import gitm_alt_plots as gap -In [4]: import gitm_plot_rout as gpr -In [5]: import matplotlib.pyplot as plt -In [6]: plt.ion() # This makes the plotting happen interactively -In [7]: gdata = gitm.GitmBin(`3DALL_t021124_000000.bin') -In [8]: title = "%s UT" % (gdata[`time']) -In [9]: lat_index = list() -In [10]: lon_index = list() -In [11]: (ilon, ilat) = gpr.find_lon_lat_index(gdata, 150.0, -65.0, "degrees") -In [12]: lon_index.append(ilon) -In [13]: lat_index.append(ilat) -In [14]: (ilon, ilat) = gpr.find_lon_lat_index(gdata, 150.0, -45.0, "degrees") -In [15]: lat_index.append(ilat) -In [16]: (ilon, ilat) = gpr.find_lon_lat_index(gdata, 150.0, -5.0, "degrees") -In [17]: lat_index.append(ilat) -In [18]: (ilon, ilat) = gpr.find_lon_lat_index(gdata, 150.0, 5.0, "degrees") -In [19]: lat_index.append(ilat) -In [20]: (ilon, ilat) = gpr.find_lon_lat_index(gdata, 150.0, 45.0, "degrees") -In [21]: lat_index.append(ilat) -In [22]: (ilon, ilat) = gpr.find_lon_lat_index(gdata, 150.0, 65.0, "degrees") -In [23]: lat_index.append(ilat) -In [24]: f = gap.plot_alt_slices("eTemperature", gdata, lat_index, lon_index, - title, "example_alt_plot.png") -\end{verbatim} - -\subsubsection{plot\_alt\_profiles.py} - -Routines to build and output linear and contour plots over an altitude range. Several different standard plot formats are available, and use any numpy array as input. - -\begin{itemize} -\item[]{{\bf plot\_single\_alt\_image:} Creates a single linear or contour altitude plot.} -\item[]{{\bf plot\_mult\_alt\_image:} Creates a figure with multiple linear or contour altitude plots.} -\item[]{{\bf plot\_alt\_slices:} Creates a figure with a contour plot showing the altitude dependence of a quantity as a function of latitude or longitude with several linear altitude slices at specified locations.} -\item[]{{\bf plot\_linear\_alt:} Plots the the linear altitude dependence of a quantity, with altitude on the y-axis.} -\item[]{{\bf plot\_3D\_alt:} Plots the altitude dependence of a quantity as the function of another spatiotemporal coordinate with the spatiotemporal coordinate on the x-axis, altitude on the y-axis, and the desired quantity as a color contour.} -\end{itemize} - -\subsubsection{gitm\_comparison\_plots.py} - -Routines to make plots that compare GITM data with observations. The observational sources include satellites, ground-based receivers, and receiver networks. - -\begin{itemize} -\item[]{\bf extract\_data\_matched\_arrays: } Extract points from matched data arrays for elements where neither array contains a specified `bad' value. -\item[]{\bf extract\_gitm\_time\_arrays: } Routine to extract all positions with valid data from a GitmTime object and construct numpy arrays. A single universal time, longitude, latitude, and/or altitude may be specified. -\item[]{\bf plot\_net\_gitm\_comp: } A routine to create a plot comparing 2D GITM data (such as VTEC or $h_mF_2$) to observations taken from a network of instruments over the globe. The map format may be rectangular, polar, or a combination (provided by plot\_nsglobal\_subfigure or plot\_snapshot\_subfigure). The top subfigure shows the observations as a scatter figure, the middle subfigure shows the GITM data as a contour, and the bottom subfigure shows the difference between the two as a scatter plot. The difference must be computed outside of this program, and so may be the difference, absolute difference, percent difference, or any other type of comparison. An example is shown in Figure~\ref{teccomp.fig}. -\item[]{\bf plot\_sat\_gitm\_comp: } Routine to plot satellite and GITM data to show how a single physical quantity varies over the orbit. Four panels are included; the top panel shows the raw satellite data and the GITM data along the track. The second panel shows the matched GITM/satellite data. The third panel shows the difference between the satellite and GITM data. The fourth panel shows the percent difference 100*(sat-GITM)/sat. -\end{itemize} - -\begin{figure} -\begin{center} -\noindent\includegraphics[width=.9 \textwidth]{Figures/gitm_tec_comp.png} -\caption{Madrigal and GITM vertical TEC comparison.} -\label{teccomp.fig} -\end{center} -\end{figure} - -\subsubsection{load\_files.py} - -Routines to load certain types of data files into a dictionary of numpy arrays, where each data type is used to specify the dictionary keys. - -\begin{itemize} -\item[]{{\bf loadCINDIorbit\_ASCII: } Loads the Coupled Ion Neutral Dynamics Investigation ASCII files provided by the UT Dallas website.} -\item[]{{\bf loadMadrigalVTEC\_ASCII: } Loads the GPS TEC ASCII files provided by the Millstone Hill Madrigal site.} -\item[]{{\bf loadGITMsat\_ASCII: } Loads the satellite file used as input for a GITM run.} -\item[]{{\bf loadMadrigalVTEC\_HDF5:} Loads the GPS TEC HDF5 files provided by the Millstone Hill Madrigal site.} -\end{itemize} - -\subsubsection{read\_files.py} - -Routines to read certain file formats and load the data into a dictionary of numpy arrays, where each data type is used to specify the dictionary keys. - -\begin{itemize} -\item[]{{\bf loadASCII\_data\_header: } Loads an ASCII file with header lines denoted by a `\#' .} -\item[]{{\bf loadASCII\_data\_hline: } Loads an ASCII file with a specified number of header lines.} -\item[]{{\bf loadASCII\_index\_profile: } Loads an ASCII file with header lines denoted by a `\#' that has been broken up into indexed blocks (blocks separated by double newlines, or indexes as specified by gnuplot). The indexed structure is maintained in the output dictionary by providing a list of numpy arrays for each data column.} -\item[]{{\bf load\_multASCII\_data:} Loads multiple ASCII files into a single output dictionary.} -\item[]{{\bf loadnetCDF\_data: } Loads netCDF files into an output dictionary.} -\item[]{{\bf combine\_data\_dictionaries: } Combines multiple data dictionaries into a single dictionary, including only the data keys common to all of the inputted data dictionaries.} -\end{itemize} - -\subsubsection{read\_gps\_bin.py} - -A script to read a VMR GPS binary file, providing data at a specified Universal Time. - -\begin{itemize} -\item[]{\bf GpsFile: } Class containing all of the data from the VMR GPS binary file. - \begin{itemize} - \item[]{\bf read\_header: } Reads the VMR GPS binary file header, allowing data to be easily located as desired. - \item[]{\bf read\_time: } Read in all the GPS data at the specified Universal Time. The specified time and the file times do not have to be perfectly aligned, as long as the specified time falls between the first and last time in the GPS file, the data with the closest temporal proximity will be returned. - \end{itemize} -\end{itemize} - -\subsubsection{write\_files.py} - -Routines to write output files. - -\begin{itemize} -\item[]{\bf writeASCII\_file: } A routine to create an ASCII file from a string or list of strings. Will overwrite any file of the same name that already exists. -\item[]{\bf writeASCII\_data\_w\_sorttext: } A routine to create an ASCII file from a data dictionary of dictionaries. The first layer of keys is used to provide the data columns, the second layer is output as additional data column(s) where the keys are output as strings. Datetime columns are output as two strings, one containing the date information and a second one containing the time of day information. -\end{itemize} - -\subsubsection{plot\_stats.py} - -Routines to compute and plot common statistics. - -\begin{itemize} -\item[]{\bf add\_stat\_to\_line: } Computes the moments, first through third quartiles, and mode(s) (as desired) for a dataset and outputs the statistics as a formatted text line that can be output to a file and in a list. -\item[]{\bf add\_stat\_box: } Computes the moments, first through third quartiles, and mode(s) (as desired) for a dataset and outputs the statistics in a text box onto a plot and in a list. -\item[]{\bf plot\_hist\_w\_stats: } Calculates and plots a histogram of a specified dataset, as well as the moments, first through third quartiles, and mode(s) (as desired). -\item[]{\bf plot\_lat\_lt\_stats: } Calculates and plots histograms and statistics for a specified dataset broken up into latitude and local time regions. -\item[]{\bf lat\_lt\_stat\_lines: } Calculates statistics for a specified dataset broken up into latitude and local time regions, providing a formatted string with the statistics for each region taking up a line. -\end{itemize} - -\subsubsection{gitm\_movie\_script.py} - -This is a python script that can be run either from ipython using the command {\tt run gitm\_movie\_script.py} or the command line using the command {\tt python gitm\_movie\_script.py}. Input to this program is prompted interactively, and includes: - -\begin{itemize} -\item{{\tt Ordered list of GITM binary files:} A list of GITM binary files in chronological order (or whatever other order the movie should be played in).} -\item{{\tt GITM plot type (rectangular, polar, nspolar, snapshot):} The keyword for the desired plot type. These are the plot types shown in figure~\ref{gitm_3D_global_plots.fig}, where polar corresponds to panel (a), rectangular to panel (b), nspolar to panel (c), and snapshot to panel (d).} -\item{At this point, the routine enters a while-loop to allow multiple movies to be made for the same list of GITM binary files} - \begin{itemize} - \item{{\tt GITM key to plot on z axis (eg Temperature):} The data key corresponding to the data type to plot on the z axis. A list of data keys can be found by typing `{\tt gdata.keys()}' into ipython after loading one of the listed GITM binaries.} - \item{{\tt Altitude to plot z value at (eg 250):} Altitude to plot, may be specified in km or m. For 2D parameters, a value must be entered, but doesn't matter.} - \item{{\tt Units of altitude (km or m):} Units of altitude entered above.} - \item{{\tt Use map of Earth? (empty for False):} Enter any value to include a Basemap plot of the earth, enter a carriage return to exclude the map.} - \item{The latitude limits needed depend on the plot type} - \begin{itemize} - \item{{\bf nspolar} {\tt Polar latitude limit (degrees):} Specify the polar latitude limit (positive, same for both hemispheres).} - \item{{\bf nspolar} {\tt Equatorial latitude limit (degrees):} Specify the equatorial latitude limit (positive, same for both hemispheres).} - \item{{\bf snapshot} {\tt Polar latitude limit (degrees):} Specify the polar latitude limit (positive, same for both hemispheres).} - \item{{\bf polar/rectangular} {\tt Northern latitude limit (degrees):} Specify the northernmost latitude (may be negative).} - \item{{\bf polar/rectangular} {\tt Southern latitude limit (degrees):} Specify the southernmost latitude (must be smaller/more negative than the northernmost limit)} - \end{itemize} - - \item{{\tt Load another z axis key? (empty for False):} Enter any value to include another movie or, enter a carriage return finish.} - \end{itemize} -\end{itemize} - -With this information, movies with appropriate z-variable ranges will be plot as .png files and combined into a movie using FFmpeg. The image and movie files will be named using the plot type, z parameter, and altitude to distinguish them. - - - - - - - diff --git a/srcDoc/plotters.md b/srcDoc/plotters.md new file mode 100644 index 00000000..5b5dc436 --- /dev/null +++ b/srcDoc/plotters.md @@ -0,0 +1,124 @@ + +# Plotters + +## gitm_plot_simple.py + +This code will make simple rectangular plots in: + +- altitude (longitude vs latitude): '-cut=alt -alt=value' +- longitude (latitude vs altitude): '-cut=lon -lon=value' +- latitude (longitude vs altitude): '-cut=lat -lat=value' + +You can set the variable to plot as a number. To see the variable mapping between numbers and names, you can run the code with '-list'. You can set the max and min value for the colorbar if you would like, but setting -maxi and -mini. + + usage: gitm_plot_simple.py [-h] [-list] [-var VAR] [-cut cut] [-alt alt] [-lat lat] [-lon lon] + [-log] [-mini MINI] [-maxi MAXI] + filelist [filelist ...] + + Plot Aether / GITM model results + + positional arguments: + filelist list files to use for generating plots + + options: + -h, --help show this help message and exit + -list list variables in file + -var VAR variable to plot (number) + -cut cut alt,lat,lon : which cut you would like + -alt alt altitude : alt in km (closest) + -lat lat latitude : latitude in degrees (closest) + -lon lon longitude in degrees (closest) + -log plot the log of the variable + -mini MINI manually set the minimum value for the plots + -maxi MAXI manually set the maxiumum value for the plots + +## gitm_plot.py + +This code is a bit more sophisticated, adding a bunch of additional functionality: + +- It can make cuts in alt, lat, and lon, as above. +- The alt cut plots add circles for the northern and southern polar regions. These can be removed with the flag '-nopole'. Additionally, if you only want a polar plot, you can use the flag '-north' or '-south'. +- TEC and O/N2 can be plotted by using the flags '-tec' or '-on2'. You can't set the both at the same time. +- You can overplot winds by setting the flag '-winds'. The code tries to figure out whether you want neutral winds or ion drifts by looking at the variable number and seeing if the main variable to plot is a neutral or ion state. You can set the spacing between the wind vectors by setting '-nstep=value'. +- You can subtract a series of files from another series of files. If the '-backdir=/path/to/baseline/run' is set, it will look into this directory and try to find matching files to subtract. If you set '-percent', it computes the percentage difference. +- If a series of images is made (by feeding a bunch of files), you can make a movie by setting the flag '-movie'. You can set the framerate ('-rate') and type of movie ('-mkv', '-mp4', '-gif'). You need ffmpeg to actually use this feature. +- The code can integrate or calculate the average of the slice(s) and then plot those out to a file by setting '-timeplot'. Additionally, a logfile can be created by setting '-timefile=log_file_name' to output those means or integrals out to the log file. + + usage: thermo_plot.py [-h] [-list] [-timeplot] [-mean] [-timefile TIMEFILE] [-label] + [-color {default,red}] [-var VAR] [-cut cut] [-ext {png,jpg,pdf}] + [-hiwind HIWIND] [-winds] [-nstep nstep] [-nopole] [-north] [-south] + [-alt alt] [-lat lat] [-lon lon] [-alog] [-IsLog] [-mini MINI] [-maxi MAXI] + [-percent] [-diff] [-backdir backdir] [-mkv] [-mp4] [-gif] [-movie] [-tec] + [-on2] [-rate RATE] + filelist [filelist ...] + + Plot Aether / GITM model results + + positional arguments: + filelist list files to use for generating plots + + options: + -h, --help show this help message and exit + -list list variables in file + -timeplot Plot integrated (or mean) value vs. time + -mean Plot mean value instead of integrated value + -timefile TIMEFILE output filename for timeline file + -label Add label (e.g., (a), (b)..) to title + -color {default,red} set color bar + -var VAR variable to plot (number) + -cut cut alt,lat,lon : which cut you would like + -ext {png,jpg,pdf} plot type file extention + -hiwind HIWIND HIWIND file to plot location + -winds overplot winds + -nstep nstep number of steps between wind quivers + -nopole dont plot polar regions + -north only plot northern hemisphere results + -south only plot southern hemisphere results + -alt alt altitude : alt in km (closest) + -lat lat latitude : latitude in degrees (closest) + -lon lon longitude in degrees (closest) + -alog plot the log of the variable + -IsLog plot the log of the variable + -mini MINI manually set the minimum value for the plots + -maxi MAXI manually set the maxiumum value for the plots + -percent plot percentage difference of files + -diff plot difference of files (2 files needed) + -backdir backdir Subtract files in this directory + -mkv movie format = mkv + -mp4 movie format = mp4 + -gif movie format = gif + -movie Make a movie out of results + -tec plot total electron content (TEC) + -on2 plot O/N2 ratio + -rate RATE framerate for movie + +In order to run this code, you need to install aetherpy, which can be obtained [here](https://github.com/aaronjridley/aetherpy). The 'develop' branch is fully supported, so please switch to that branch ('git checkout develop') and follow the README.md file to install it. It should be straightforward to install. + +## Aetherpy + +Aetherpy is a python package for plotting Aether model results, but we have modified it so that it will support GITM files also. Aetherpy can be obtained [here](https://github.com/aaronjridley/aetherpy). The 'develop' branch is fully supported, so please switch to that branch ('git checkout develop') and follow the README.md file to install it. It should be straightforward to install. + +There are plotters in aetherpy which are useful but somewhat coomplicated. We are working on these to make them less complicated and more functional. + +## PyITM + +We are working on a new repository for plotting IT modeling results, and have put it [here](https://github.com/GITMCode/PyITM). This is relatively new. + +This code base is aimed at getting people ramped up to plotting and analysis quickly, so we are aiming for the codes to be relatively simple and easy to use. In addition, we are trying to make functions short and reusable so that they can be taken from these codes and used again (for example, the 'gitm_plot_simple.py' code is almost completely stolen from these functions and was created in about an hour from this framework.) + +## Data-Model Comparison Tools + +Some codes that have been provided to allow data-model comparisons to be made include the following below. For each, to get more information, run them with a '-h'. We don't provide this data to you - it is up to you to download and put this data somewhere that the codes can find it. For almost all of these files, the path to the data is hardcoded into the file, so you will have to edit the file and replace the location of the data to whereever you install the data. + +- thermo_goce.py: This code will compare GITM 3DALL files to GOCE measurements of densities and winds. Since GOCE was only available between late 2009 - 2013, if it doesn't find GOCE files, it will search for CHAMP files. If those are not available, it will search for SWARM files. To download (for example) CHAMP data, you can use the command: +```bash +wget --no-parent -r --cut-dirs=3 ftp://thermosphere.tudelft.nl/version_01/CHAMP_data/ +``` +Other data types like this can be found on the same ftp site. + +- thermo_guvi.py: This code will compare the GITM 3DALL files to (post 2006) GUVI O/N2. + +- thermo_vista.py: This code will read in and do some crude comparisons between GITM and VISTA TEC. It is a work in progress. + +- thermo_hiwind.py: This code will compare the HIWIND FPI results (for extremely specific times in 2011 and 2018) to 3DALL results. + diff --git a/srcDoc/postprocessing.md b/srcDoc/postprocessing.md new file mode 100644 index 00000000..dc58ee91 --- /dev/null +++ b/srcDoc/postprocessing.md @@ -0,0 +1,179 @@ +# Postprocessing + +GITM stores outputs at a cadence specified in the input `UAM.in` file (in #SAVEPLOTS). When +running at each `DtOutput`, each processor writes its own (block) file for each output type +(`3DALL`, `2DANC`, etc.), plus the first processor writes a header file. This creates +an extremely large number of files on long runs across many cores. To make the +number of files more manageable and easier to read, they are post-processed into +`.bin` files, one for each output type at each `DtOutput`. This is different than other codes that write all of the output for all timesteps into a single file (so that file can be huge), or that writes different files for different states. GITM's post-processor writes all of the requested variables to one file for each time-step. + +When running `make rundir`, a file is placed within the `run/` folder called +`post_process.py` which is the entrypoint for postprocessing. This turns the raw +GITM outputs from this: + +```bash +> ls UA/data + 3DALL_t021221_000000.b0001 3DALL_t021221_000000.header 3DALL_t021221_000500.b0004 + 3DALL_t021221_000000.b0002 3DALL_t021221_000500.b0001 3DALL_t021221_000500.header + 3DALL_t021221_000000.b0003 3DALL_t021221_000500.b0002 log00000002.dat + 3DALL_t021221_000000.b0004 3DALL_t021221_000500.b0003 run_information.txt +``` + +Into this: + +```bash +> ls UA/data + 3DALL_t021221_000000.bin 3DALL_t021221_000500.bin log00000002.dat run_information.txt +``` + +## post_process.py Usage + +`post_process.py` supports burst processing (process existing files & exit), or +can watch for new outputs for a specified duration and process new outputs as +they are created. The output `.bin` files can be moved to a remote system, +tarred, and/or exist alongside the raw outputs. + +This means that there are essentailly two ways of running the post-processor: +- Once the run is completed, run it and post process all of the files at once. +- Run it after starting the simulation, so it runs in parallel to the simulation. This post processes the output files as the code is running, so that the files should be post processed soon after GITM is done running. + +The help message for `post_process.py`: + +``` +./post_process.py -h + usage: post_process.py [-h] [-remotefile REMOTEFILE] [-user USER] [-server SERVER] [-dir DIR] [-sleep SLEEP] + [-totaltime TOTALTIME] [-v] [-norm] [-tgz] [-nc] [--combine] [--runname RUNNAME] + + Post process and (optionally) move model results. + - This functions similar to pGITM.py, but can copy files to + a remote location, or postprocess files as they are created. + + options: + -h, --help show this help message and exit + -remotefile REMOTEFILE + File that contains info. about remote system + -user USER remote user name (default none) + -server SERVER remote system name (default none) + -dir DIR remote directory to use (default none) + -sleep SLEEP how long to sleep between loops in seconds, (default 300) + -totaltime TOTALTIME specify how long to run in total in hours, (default 0 - only run once) + -v, --verbose Run with verbose + -norm don't remove any files + -tgz tar and zip raw GITM file instead of process + -nc Postprocess to netCDF files instead on '.bin'? + --combine If processing to netCDF, we can combine each timestep to a + single file per output type. (ex: 3DALL.nc, etc.). + Will not work without -nc or if using remote. + --runname RUNNAME When combining, this is prepended to the output type in the + resulting files: '[runname]_3DALL.nc'. + Default is no descriptor. +``` + +!!! note "Post-processing Speed" + + The post_process.py code is relatively slow - it was written to be more robust and to be clean and not fast. If extremely fast post processing is desired, the older fortran post processor (driven by a shell script) can be used. This is not the recommended way of doing things, but it can be much faster. The old post processor executable can be created by running `make POST` from GITM's root folder (`GITM/`). If this is done before `make rundir`, it will automatically be copied. Otherwise it must be linked to `run/` manually. + + The python post-processor will use `PostGITM.exe` if it is found in `run/`. This is not the default behavior as some systems limit which programs can be run from login nodes (but don't seem to limit python yet!). + +One of the benefits of post_process.py is that it can post process the files and then scp them over to another system. In order to do this, you need to have keyless entry setup, so that files can be transferred without entering a password. The machine name, user name, and directory to move the run into have to be passed into the post_process.py script, which is done with a 'remotefile'. If the python code finds this file, it will read it and start moving files. Specifically, the post processor: +- checks to see if the directory on the remote system exists. If not, it tries to create it. +- post processes any files that need to be post processed in UA/data. +- pushes the UA/data/*bin files over to the remote system. +- checks one-by-one to see if the files exist on the remote system. If the file exists on the remote system, it removes it from the UA/data directory on the compute node. +- pushes supplemental files (like log files and run files) to the remote system. +- if the processing time has not expired, it waits a give amount of time (5 minutes by default) and loops. If the processing time has been exceeded, it exists. + +### Arguments + +#### remotefile + +Path to a file with information on the remote system to copy files to. This is +useful when running on a remote system with storage limitations such that files +can be copied externally faster than they are created. Within the `remotefile`, +three lines are checked and should contain: + +``` +username +hostname +/path/to/remote/directory +``` + +This information is used in a rsync command to copy the files, with the form +`rsync [output files] username@hostname:/path/to/remote/directory`. + +It is not necessary to use a `remotefile` and it is also possible to specify +these three strings as individual arguments. + +#### user + +Username to use when copying files to a remote location. + +#### server + +Server/hostname to move `.bin` files to. As the script uses `rsync` to copy +these files, it is possible to use a hostname alias from `~/.ssh/config` as the +server. + +#### dir + +Path on remote server to move post-processed files to. If the final directory +does not yet exist, it will be created. + +#### sleep + +This sets the time, in seconds, to wait in between checking for new files. This +is only used if `-totaltime` is set. The default value is 300 seconds, or 5 +minutes. + +#### totaltime + +`-totaltime` sets the maximum amount of time this script should run for, in +hours. The default value is 0 hours, so the script will run once and exit. The +script will continue running until `totaltime` has elapsed, even if the run has +finished, so care should be taken to estimate the actual time a run will take. + +#### norm + +`-norm` means no-rm, and if specified, will prevent the automatic removal of the +raw outputs. + +#### tgz + +`-tgz` tells the script to not post process the files at all, but to tar and zip them together. They can then be post-processed on a different machine. This is somewhat CPU intensive and slow. The remote feature will work with these files, so that they can be automatically pushed to another system. (This was created when Pleiades would not allow post processing on head nodes. After using this for a while, we made the post processor code do what the fortran code does, so that this option is mostly moot now.) + +#### nc + +`-nc` creates NetCDF files as outputs, instead of `.bin`. +This requires [PyITMN](https://github.com/GITMCode/PyITM) be installed. + +#### combine + +`--combine` will append subsequent times to the first NetCDF file rather than creating a new file for each time. Some caveats: this can only be used with NetCDF, each output *type* is in a different file (3DALL.nc and 2DANC.nc are both created), and the Python routines in PyITM/GITM do not (yet) support this. This was designed for users of xarray who want to make a lot of custon plots quickly, as it works very well with Dask. + +#### runname + +`--runname` tells the post-processor to pre-pend the given name to the merged output files when using `--combine`. For example, `--runname example_run01` will create a file called `example_run01_3DALL.nc`. It can only be used when combining, and thus also only when making NetCDF file(s). + +--- + +## Plotting + +For information on plotting, please see [the plotting description page](plotters.md). + + +## pGITM + +If the run is creating files faster than they are postprocessed, do not panic. + +GITM would create a `csh` script before the introduction of this Python script +which is still available. `pGITM` and `PostGITM.exe` use a Fortran backend +instead of post_process.py which is slow. The Fortran code should be much faster than +Python. + +To access these, run `make POST` from GITM's root folder. If this is run before +`make rundir`, they will be placed in `run/` without manual intervention. If +`run` has already been created and moved or renamed, they must be copied +manually. `post_process.py` will prefer to use the Fortran post-processor and +only use Scipy if it is not found. + +`pGITM` will only run one time and requires `csh` which doesn't seem to be available on systems by default anymore. The world has moved on. diff --git a/srcDoc/quickstart.tex b/srcDoc/quickstart.tex deleted file mode 100644 index 6adf32c7..00000000 --- a/srcDoc/quickstart.tex +++ /dev/null @@ -1,247 +0,0 @@ -\section{Extracting the code from a tar file} - -Create a new and empty directory, and open the tar file you received, -e.g.: -\begin{verbatim} -mkdir Gitm -cd Gitm -mv ../gitm.tgz . -tar -xvzf gitm.tgz -\end{verbatim} - -\section{Checking out the code with CVS} -\label{cvs.sec} - -If CVS (Concurrent Versions System) is available on your computer and -you have an account on the CVS server machine herot.engin.umich.edu, -you can use CVS to install the current or a particular version of the -code. First of all have the following environment variables: -\begin{verbatim} -setenv CVSROOT UserName@herot.engin.umich.edu:/CVS/FRAMEWORK -setenv CVS_RSH ssh -\end{verbatim} -where UserName is your user name on herot. Here it is assumed that you -use csh or tcsh. Also put these settings into your .cshrc file so it -is automatically executed at login. Alternatively, use -\begin{verbatim} -CVSROOT=UserName@herot.engin.umich.edu:/CVS/FRAMEWORK -export CVSROOT -CVS_RSH=ssh -export CVS_RSH -\end{verbatim} -under sh, ksh and bash shells, and also put these commands into your -.bashrc or .profile file so it is automatically executed at login. - -Once the CVS environment variables are set, you can download the -current (HEAD) version of the GITM distribution with -\begin{verbatim} -cvs checkout GITM2 -\end{verbatim} - -If you want a particular version, use -\begin{verbatim} -cvs checkout -r v2_0 GITM2 -\end{verbatim} -where v2\_0 is the it tag associated with the version. To download bug -fixes or new features, the -\begin{verbatim} -cvs update -\end{verbatim} -command can be used. See {\tt man cvs} for more information. - -A lot of times, you don't really want the {\tt GITM2} directory to -stay that name, since you might download a couple different version -(maybe one for development and one for runs). Therefore, typically -you will: -\begin{verbatim} -mv GITM2 GITM2.Development -\end{verbatim} - -\section{Configuring and Making GITM} - -In order to compile GITM, you have to configure it first. The -configure script is inherited from the Space Weather Modeling -Framework. There are two primary reasons you need to do the -configure: (1) put the right {\tt Makefile} in the right place, -specifying the compiler and the version of MPI that you will use to -link the code; (2) put the right MPI header in the right place. It -also does some things like hard-codes the path of the source code into -the {\tt Makefile}. Currently the configure script is not capable of detecting the system and compilers available. Some examples for commonly used set-ups are shown below. Make sure that your .cshrc or .bashrc file is set up to detect the appropriate compilers before attempting to install GITM. - -Installing on Nyx: -\begin{verbatim} -./Config.pl -install -compiler=ifortmpif90 -earth -\end{verbatim} - -Installing with an Intel compiler and OpenMPI (such as Pleiades): -\begin{verbatim} -./Config.pl -install -compiler=ifort -earth -\end{verbatim} - -Installing a computer with gfortran and OpenMPI: -\begin{verbatim} -./Config.pl -install -compiler=gfortran -earth -\end{verbatim} - -Installing on a computer with gfortran and not using MPI: -\begin{verbatim} -./Config.pl -install -compiler=gfortran -earth -nompi -\end{verbatim} - -Sometimes people have a hard time with the ModUtilities.F90 file. If -you have errors with this file, try (for example): -\begin{verbatim} -./Config.pl -uninstall -./Config.pl -install -compiler=gfortran -earth -noflush -\end{verbatim} - -Don't forget, after configuring the Makefiles, you must still compile the code! -\begin{verbatim} -make -make test_earth -make install -\end{verbatim} - -\section{Running the Code} - -GITM requires a bunch of files to be in the right place in order to -run. Therefore, it is best to use the makefile to create a run -directory: -\begin{verbatim} -make rundir -mv run myrun -\end{verbatim} -where {\tt myrun} can be whatever you want. I will use {\tt -myrun} as an example. You can actually put this directory where ever -you want. On many systems (such as nyx), there is a {\tt nobackup} scratch disk that -you are supposed to use for runs, instead of your home directory. If you need to ensure that your home directory doesn't use too much space, moving the run directory onto a disk with more free space can solve the problem: - -\begin{verbatim} -make rundir -mv run /nobackup/myaccount/gitm/myrun -ln -s /nobackup/myaccount/gitm/myrun . -\end{verbatim} - -This creates a shortcut to the {\tt myrun} directory location on {\tt nobackup} in your GITM working directory. It allows you to treat the run directory as if it were a local directory, but it isn't! It also means that you don't have to compile and install GITM on the scratch disk, where program storage may not be allowed. - -Once you have created the run directory, you can run the default simulation, by: - -\begin{verbatim} -cd myrun -mpirun -np 4 GITM.exe -\end{verbatim} - -Or, if your system uses Mpiexec: - -\begin{verbatim} -cd myrun -mpiexec ./GITM.exe -\end{verbatim} - -This, hopefully should run GITM for Earth for 5 minutes. If it -doesn't work, then you might have mpi set up incorrectly. The default -is to allow you to run 4 blocks per processor, and the default {\tt -UAM.in} file is set up for 4 blocks, so you could try just running -GITM without mpi, just to see if it works at all: -\begin{verbatim} -./GITM.exe -\end{verbatim} -If that doesn't work, then it probably didn't compile correctly. -Hopefully, it just worked! - -\section{Post Processing} -\label{post_process.sec} - -GITM, by default, produces one file per block per output. If you are outputting often and you are running with many blocks, you can produce a huge number of files. To post process all of these files, simply: - -\begin{verbatim} -cd UA -./pGITM -\end{verbatim} - -This merges all of the files for one time period, for one file type into the same file. You can actually running this while the code is running, since GITM doesn't use old files, unless you are using the APPENDFILE option. As implied by the option's name, APPENDFILE opens an existing file and appends the most recent data to it. This feature is typically used only when running a satellite track though GITM. More information on the APPENDFILE option is located in Chapter~\ref{input.ch} Section~\ref{def_out.sec}. - -If you are NOT using satellites and NOT using APPENDFILE, then you are free and clear to use pGITM as often as you want during a run. To avoid deleting a file that GITM is currently writing to, it is recommended that pGITM be run as part of a script in which there is a five minute pause between executions. - -Another useful script, when running GITM on another system, is given in the block below. It occasionally executes an rsync between the computer that you run GITM on and your home computer. This allows you to bring over and evaluate the output files as they become available. To do this, execute pGITM at a set cadence (60 seconds in the example) while GITM is running and then rsync the remote and home directories (excluding all unprocessed files). Finally, remove the processed and rsynced files to prevent the remote directory from filling up. Be sure to replace yourname@home.computer with your user and computer names! This is a very simple, but very useful script. - -\begin{verbatim} -#!/bin/csh -rm -f stop -set LOC=$1 - -if (-f remoteloc) set LOC=`cat remoteloc` - -while (!(-f stop)) - rsync -vrae ssh log.* UAM.* imf* yourname@home.computer:$LOC - cd UA ; ./pGITM ; rsync --exclude '*.[bsh][0123ae][0123456789at]*' -vrae ssh d -ata yourname@home.computer:$LOC ; cd .. - sleep 60 -end -\end{verbatim} - -\section{The Code Won't Compile!!} -I'm sorry. I tried to make this work on many different platforms, but -sometimes machines are very specific, and it just doesn't work out of -the box. Here are some ideas on how to quickly get this thing -compiling. - -\subsubsection{Can't find the right Makefile.whatever} - -If make does not work, then there is probably a problem with not -finding the FORTRAN 90 compiler. The platform and machine specific -Makefiles are in srcMake. If you type: -\begin{verbatim} -uname -ls srcMake -\end{verbatim} - -If you don't see a file named something like Makefile.uname (where -uname is the output of the uname command), then you will have to build -a proper general Makefile. - -You will need a little a little information about your computer, like -what the mpif90 compiler is called and where it is located. Take a -look at srcMake/Makefile.Linux, and try to figure out what all of the -flags are for your system. Then create a srcMake/Makefile.uname with -the correct information in it. - -\subsubsection{The compiler doesn't recognize flag -x} - -You have an operating system that is recognized, but probably a -different compiler. In the srcMake/Makefile.uname file (where uname is -the output of the uname command), there is a line: - -OSFLAGS = -w -dusty - -You need to change this line to something more appropriate for your -compiler. Try deleting the flags and compile. If that doesn't work, -you will have to check the man pages of your compiler. - -\subsubsection{src/ModHwm.90 doesn't compile} - -Certain versions of gfortran (4.6 and later) may give the following error: - -\begin{verbatim} -src/ModHwm.f90:168.22: - - call HWMupdate(input,last,gfs,gfl,gfm,gvbar,gwbar,gbz,gbm,gzwght,glev,u - 1 -Error: Dummy argument 'ebz' of procedure 'hwmupdate' at (1) has an attribute - that requires an explicit interface for this procedure - -src/ModHwm.f90:168.22: - - call HWMupdate(input,last,gfs,gfl,gfm,gvbar,gwbar,gbz,gbm,gzwght,glev,u - 1 -Error: Dummy argument 'ebz' of procedure 'hwmupdate' at (1) has an attribute - that requires an explicit interface for this procedure -\end{verbatim} - -This is caused by the inputs in HWM. The latest incarnations of gfortran don't allow optional inputs that are not declared. More information about this can be found at: - -\begin{verbatim} -http://cosmocoffee.info/viewtopic.php?p=5136 -\end{verbatim} - -A solution to this problem is currently being sought. diff --git a/srcDoc/requirements.txt b/srcDoc/requirements.txt new file mode 100644 index 00000000..4ebc82de --- /dev/null +++ b/srcDoc/requirements.txt @@ -0,0 +1,7 @@ +mkdocs +mkdocs-material +mkdocs-mermaid2-plugin +markdown-captions +markdown-del-ins +markdown-katex +pymdown-extensions diff --git a/srcDoc/set_inputs.md b/srcDoc/set_inputs.md new file mode 100644 index 00000000..94ff5214 --- /dev/null +++ b/srcDoc/set_inputs.md @@ -0,0 +1,899 @@ +# All Inputs + +When running, GITM looks for a file called `UAM.in` in the same directory as the +executable. This is where all of the settings for a run are read from. + +This plain-text file can contain comments and other notes which will not be used. Only +sections that begin with a `#` and match one of the GITM's settings are actually read. +GITM will print a message if it finds a line that begins with `#` that was not used. + +For example, in the following snippet, only the first block of text will be recognized +as a valid setting: + +``` +#LOGFILE +10.0 + +# LOGFILE +10.0 not read, space after # in first line + +#LOG_FILE +10.0 not read, key does not match + +#LOGFILE + 10.0 will cause error, space before value! + +``` + +This allows us to add comments or descriptors, if we wish. + +## General Configuration + +### STARTTIME + +This sets the starting time of the simulation. Even when you restart, +the starttime should be to the real start time, not the restart time. + + #STARTTIME + iYear (integer) + iMonth (integer) + iDay (integer) + iHour (integer) + iMinute (integer) + iSecond (integer) + +### ENDTIME + +This sets the ending time of the simulation. + + #ENDTIME + iYear (integer) + iMonth (integer) + iDay (integer) + iHour (integer) + iMinute (integer) + iSecond (integer) + + +### ALTITUDE + +For Earth, the AltMin is the only variable used here. The altitudes are +set to 0.3 times the scale height reported by MSIS, at the equator for +the specified F107 and F107a values.` + + #ALTITUDE + AltMin (real, km) + AltMax (real, km) + UseStretchedAltitude (logical) + +### GRID + +If LatStart and LatEnd are set to < -90 and > 90, respectively, then +GITM does a whole sphere. If not, it models between the two. If you want +to do 1-D, set nLons=1, nLats=1 in ModSizeGitm.f90, then recompile, then +set LatStart and LonStart to the point on the Globe you want to model. + + #GRID + nBlocksLon (integer) + nBlocksLat (integer) + LatStart (real) + LatEnd (real) + LonStart (real) + LonEnd (real) + + +### RESTART + + #RESTART + DoRestart (logical) + +When doing a restart, GITM will look for "restart files" in `UA/restartIN/`. These files +are automatically created when running, so you do not have to move anything to restart +a failed run. + +A common use case for restarts is where we stop a run after initializing and then +restart it with different settings. +For example, maybe we scheduled a run to stop at 12:00 after 36 hours of +initialization, but now want it to continue with some different settings. To do this: + +- Create new run directories for each of the different settings. Since GITM outputs are + named with the output time, the subsequest runs may overwrite existing files. It is + up to you on how you want to do this. +- Copy the restart files from the initial runs so the new runs can find them. We need + all of the files in UA/restartOUT/, so one way to do this is to run + `cp run_initial/UA/restartOUT/* run_setting01/UA/restartIN/`. +- Copy all of the input files (UAM.in, IMF, SME, etc) from the initial run directory to + the new one: + `cp run_initial/*.dat run_initial/UAM.in run_initial/*.txt run_setting01/` +- Modify the new UAM file however you want. Take note of the important notes below +- Run `GITM.exe` from the new directory + +!!! note "Some important notes on restarts" + - Do not change the start time when restarting! The start time in the original and + "restart" UAM.in file must be the same. This is because of how GITM handles + temperature and altitude. + - The end time can be increased in the new UAM.in file. + - If you do not specify the `#RESTART` flag GITM will not know to restart, even if the + files are present. + +### SAVEPLOT + +The DtRestart variable sets the time in between writing full restart +files to the UA/restartOUT directory. This sets the output files. The most common +type is 3DALL, which outputs all primary state variables. + +Other types include : 3DALL, 3DNEU, 3DION, 3DTHM, +3DCHM, 3DUSR, 3DGLO, 2DGEL, 2DMEL, 2DUSR, 1DALL, 1DGLO, 1DTHM, 1DNEW, +1DCHM, 1DCMS, 1DUSR. DtPlot sets the frequency of output + + #SAVEPLOT + DtRestart (real, seconds) + nOutputTypes (integer) + Outputtype (string, 3D, 2D, ION, NEUTRAL, ...) + DtPlot (real, seconds) + +### PLOTTIMECHANGE + +This allows you to change the output cadence of the files for a limited +time. If you have an event then you can output much more often during +that event. + +Specify the start and end time the new cadence will be used for, followed by the new Dt +for each output type. This example would be for two output types: + + #PLOTTIMECHANGE + yyyy mm dd hh mm ss ms (start) + yyyy mm dd hh mm ss ms (end) + DtOutputType1 (real, seconds) + DtOutputType2 (real, seconds) + + +### LOGFILE + +You really want a log file. They are very important. It is output in +UA/data/log\*.dat. You can output the log file at whatever frequency you +would like, but if you set dt to some very small value, you will get an +output every iteration, which is probably a good thing. + + #LOGFILE + DtLogFile (real, seconds) + +### CCMCFILENAME + +Typicaly file is named (e.g.) 1DALL_yymmdd_hhmmss.bin With this it will +be named 1DALL_GITM_yyyy-mm-ddThh-mm-ss.bin + + #CCMCFILENAME + UseCCMCFileName (logical) + + +### SAVEHIMEPLOT + + #SAVEHIMEPLOT + HIMEPlotLonStart (real) + HIMEPlotLonEnd (real) + HIMEPlotLatStart (real) + HIMEPlotLatEnd (real) + +### SATELLITES + +See [this page](common_inputs.md#satellite-section) for more details. + + #SATELLITES + nSats (integer - max = ', nMaxSats, ') + SatFile1 (string) + SatOutputtype1 (string, 0DUSR or 1DUSR or other) + DtPlot1 (real, seconds) + etc... + + +### APPENDFILES + +For satellite files, you can have one single file per satellite, instead +of one for every output. This makes GITM output significantly less +files. It only works for satellite files now. + + #APPENDFILES + DoAppendFiles (logical) + +## Drivers + +### F107 + +Sets the F10.7 and 81 day average F10.7. This is used to set the initial +altitude grid, and drive the lower boundary conditions. + + #F107 + f107 (real) + f107a (real - 81 day average of f107) + +### ELECTRODYNAMICS + +Sets the sources for, and the time for updating, the high-latitude (and low-latitude) +electrodynamic drivers, such as the potential and the aurora. + +See [the electrodynamics page](internals/electrodynamics.md) for more details + + #ELECTRODYNAMICS + AuroralModel [fta], fre, pem, ovation, hpi/ihp, amie, zero, etc. + DtAurora (real, seconds [60.0]) + PotentialModel [weimer05], hepmay, amie, zero, etc. + DtPotential (real, seconds [60.0])' + + +### HPI + +This sets the hemispheric power of the aurora. Typical it ranges from +1-1000, although 20 is a nominal, quiet time value. + + #HPI + HemisphericPower (real) + +### KP + +GITM will not use this unless the Foster electric +field model is used. + + #KP + kp (real) + + +### SOLARWIND + +This sets the driving conditions for the high-latitude electric field +models. This is static for the whole run, though. It is better to use +the MHD_INDICES command to have dynamic driving conditions. + + #SOLARWIND + bx (real) + by (real) + bz (real) + vx (real) + +### MHD_INDICES + +Use this for dynamic IMF and solar wind conditions. The exact format of +the file is discussed further in the manual. + + #MHD_INDICES + filename (string) + +### EUV_DATA + +This is for a FISM or some other solar spectrum file. + + #EUV_DATA + UseEUVData (logical) + cEUVFile (string) + +### AURORAMODS + +This is for modifying the aurora a bit. The NormalizeAuroraToHP variable +calculates the modeled hemispheric power and then normalizes it the +hemispheric power read in. AveEFactor - changes the aveE of the aurora +by factor IsKappaAurora - use a kappa instead of Maxwellian +AuroraKappa - kappa to use in the distribution + + #AURORAMODS + NormalizeAuroraToHP (logical) + AveEFactor (real) + IsKappaAurora (logical) + AuroraKappa (real) + +### AURORATYPES + +This is for using different types of aurora. Currently this is supported by Ovation & +AMIE. The first three options (diffuse, mono, wave) are for electrons only. + + #AURORATYPES + UseDiffuseAurora (logical) + UseMonoAurora (logical) + UseWaveAurora (logical) + UseIonAurora (logical) + +### USECUSP + +This is for specifying a cusp. + + #USECUSP + UseCusp (logical) + CuspAveE (real) + CuspEFlux (real) + +### AMIEFILES + + #AMIEFILES + cAMIEFileNorth (string) + cAMIEFileSouth (string) + +### AMIENORTH + +There have been issues with some filesystems (Lustre) not allowing large files to be +read across large numbers of processors simultaneously. To deal with this, AMIE files +can be split when they reach a certain size when they are created using the Python +routines in Electrodynamics. + +For these to be read by GITM, we first say how many files there are and then specify +the names of these files. This option, and the option below, are replacements for +#AMIEFILES (above) - #AMIENORTH/#AMIESOUTH should not be used at the same time as +#AMIEFILES. + + #AMIENORTH + nAMIENorth (int) + cAMIEFileNorth1 (string) + ... (string) + cAMIEFileNorth(n) (string) + + +### AMIESOUTH + +See above... + + #AMIESOUTH + nAMIESouth (int) + cAMIEFileSouth1 (string) + ... (string) + cAMIEFileSouth(n) (string) + + +### USEREGIONALAMIE + +This is to set up a local region with specified potential from AMIE +files. Use Weimer potential elsewhere. AMIEBoundaryWidth is padded +outside of the region with the geographic lon and lat boundaries set +below. + + #USEREGIONALAMIE + UseRegionalAMIE (logical) + UseTwoAMIEPotentials (logical) + AMIETimeStart (yyyy mm dd hh mm ss) + AMIETimeEnd (yyyy mm dd hh mm ss) + AMIELonStart (real) + AMIELonEnd (real) + AMIELatStart (real) + AMIELatEnd (real) + AMIEBoundaryWidth (real) + +### INPUTTIMEDELAY + +Sets the time delay for the high latitude drivers and solar EUV inputs. + + #INPUTTIMEDELAY + TimeDelayHighLat (real, seconds) + TimeDelayEUV (real, seconds) + + +## Boundary and Initial Conditions + +### INITIAL + +This specifies the initial conditions and the lower boundary conditions. +For Earth, we typically just use MSIS and IRI for initial conditions. +For other planets, the vertical BCs can be set here. + + #INITIAL + UseMSIS (logical) + UseIRI (logical) + If UseMSIS is .false. then : + TempMin (real, bottom temperature) + TempMax (real, top initial temperature) + TempHeight (real, Height of the middle of temp gradient) + TempWidth (real, Width of the temperature gradient) + +### MSISTIDES + +This says how to use msis tides. The first argument is for using diurnal tide, the +second is for using semi-diurnal tide and the third is to use terdiurnal +tide. + + #MSISTIDES + UseMSISDiurnal (logical) + UseMSISSemidiurnal (logical) + UseMSISTerdiurnal (logical) + +### MSISOBC + +UseOBCExperiment - use MSIS \[O\] BC shifted by 6 months Only applicable +for MSIS00! MsisOblateFactor - alt = alt \* (1.0-f/2 + f\*cos(lat)) - +seems like -0.1 works well + + #MSISOBC + UseOBCExperiment (logical) + MsisOblateFactor (real) + +### MSIS21 + +This toggles between using MSIS00 (false) and MSIS-2.1 (true) + + #MSIS21 + UseMsis21 (logical) + + +### TIDES + +This says how to use tides. The first one is using MSIS with no tides. +The second is using MSIS with full up tides. The third is using GSWM +tides, while the forth is for experimentation with using WACCM tides. + + #TIDES + UseMSISOnly (logical) + UseMSISTides (logical) + UseGSWMTides (logical) + UseWACCMTides (logical) + UseHmeTides (logical) + +### GSWMCOMP + +If you selected to use GSWM tides above, you can specify which +components to use. This has not been used in a while. + + #GSWMCOMP + GSWMdiurnal(1) (logical) + GSWMdiurnal(2) (logical) + GSWMsemidiurnal(1) (logical) + GSWMsemidiurnal(2) (logical) + +### USEPERTURBATION + + #USEPERTURBATION + UsePerturbation (logical) + +### USEBCPERTURBATION + +Use Boundary Condition Perturbation are a set of arguments for running WP-GITM. + + #USEBCPERTURBATION + UseBcPerturbation (logical) + If UseBcPerturbation = .true. then: + iTypeBcPerturb (int) + perturbation characteristics ... + +### GITMBCS + +This allows the use of a lower resolution GITM run to be used as horizontal +boundary conditions within a regional GITM simulation. In order to do this, +you need to do a full global simulation at whatever resolution you want, +post process the 3DALL files, move those files into a directory, set up the +regional run, and point the UAM.in file to the directory where you put the +global 3DALL files. + + #GITMBCS + UseGitmBCs + GitmBCsDir + +## Numerics + + +### STATISTICALMODELSONLY + +This command will skip pretty much all of the physics of GITM, and +will reinitialize the model with the MSIS, IRI, APEX, and Electrodynamics values at +the interval set in the second variable. If you want to compare a run to MSIS and +IRI, you can run GITM with this command and get output at exactly the +same cadence and locations, thereby allowing easier comparisons. The dt +can be set as low as needed, so you can run satellites through MSIS and +IRI. + + #STATISTICALMODELSONLY + UseStatisticalModelsOnly (logical) + DtStatisticalModels (real) + +### CFL + +The CFL condition sets how close to the maximum time step that GITM will +take. 1.0 is the maximum value. A value of about 0.75 is typical. If +instabilities form, a lower value is probably needed. + + #CFL + cfl (real) + + + +### LIMITER + +The limiter is quite important. It is a value between 1.0 and 2.0, with +1.0 being more diffuse and robust, and 2.0 being less diffuse and less +robust. + + #LIMITER + TypeLimiter (string) + BetaLimiter (real between 1.0-minmod and 2.0-mc) + +### NANCHECK + +This will turn on all of the NaN checks in the code! This potentially +slows the code down, so having it be false is good for a normal run. If the +code crashes for some reason, this flag allows you to figure out where the +crash is occuring (in time and space), which helps with debugging. + + #NANCHECK + DoCheckForNans (logical) + +### DEBUG + +This will set how much information the code screams at you - set to 0 to +get minimal, set to 10 to get EVERYTHING. You can also change which +processor is shouting the information - PE 0 is the first one. If you +set the iDebugLevel to 0, you can set the dt of the reporting. If you +set it to a big value, you wont get very many outputs. If you set it to +a tiny value, you will get a LOT of outputs. UseBarriers will force the +code to sync up a LOT (which slows down the code). + + #DEBUG + iDebugLevel (integer) + iDebugProc (integer) + DtReport (real) + UseBarriers (logical) + +### IONLIMITS + +These set floors or ceilings on values. These values can been tightened or +loosened if instabilities form or if there are extreme cases. Most of the +time, these values don't matter, since they should be set to values that are +far outside of expectations. + + #IONLIMITS + MaxVParallel (real, default=100 m/s) + MaxEField (real, default=0.1 V/m) + MinIonDensity (real, default=100 m^-3) + MinIonDensityAdvect (real, default=1e5 m^-3) + +### NEUTRALLIMITS + +Neutral limits only get applied if the density of the species drops below zero. +This is very rare and only occurs a few times when simulating extreme event. This +likely does not need to be changed. + +As with the ion limits, the lower limit for advected vs non-advected species can be set +differently. + + #NEUTRALLIMITS + MinNeutralDensity (real, default=100 m^-3) + MinNeutralDensityAdvect (real, default=1e5 m^-3) + +### PHOTOELECTRON + +This sets how much indirect EUV heating there may be through photoelectrons. Most of +the time, this is set to zero, allowing chemistry and direct heating to account for +the EUV heating, but it is here incase you want to play with it. + + #PHOTOELECTRON + PhotoElectronHeatingEfficiency (real) + +### NEUTRALHEATING + +This sets how much direct EUV heating there is in the thermosphere. Most of the +EUV heating comes from Chemistry, so this typically is set to about 0.05 (5%). + + #NEUTRALHEATING + NeutralHeatingEfficiency (real) + +### DON4SHACK + +In MSIS, there seems to be an altitude, below which N(4S) is not physical. So, this +allows a hack to get a physically realistic value of N(4S). This is only needed if +GITM is run with a lower altitude below something like 90 km. + + #DON4SHACK + DoN4SHack (logical) + +### VERTICALSOURCES + +This is meant to limit the maximum vertical velocity on the neutrals. In extreme cases, +this could help with instabilities. + + #VERTICALSOURCES + MaximumVerticalVelocity (real) + +### AUSMSOLVER + +This dictates whether to use the AUSM solver (T) or the Rusanov solver (F). The AUSM +solver has significantly less diffusion for advected minor species. So, that means +that it is sharper but more unstable. + + #AUSMSOLVER + Use AUSM Solver (logical) + + +### USEIMPLICITIONMOMENTUM + +This is for the ion momentum equation. It determines whether the ion momentum +equation is solved in steady-state or using a time-accurate, but semi-implicit +time-stepping scheme. It should be true. + + #USEIMPLICITIONMOMENTUM + UseImplicitFieldAlignedMomentum (logical) + +### USEIMPROVEDIONADVECTION + +The improved ion momentum should be used. The nighttime ion BCs are for Earth +and are meant to try to have a downward flux on the nightside in the mid-latitude +region. The MinTEC is set to 2 TECU, which may be too low, but this needs to +be explored more. + + #USEIMPROVEDIONADVECTION + UseImprovedIonAdvection (logical) + UseNighttimeIonBCs (logical) + MinTEC (real) + +### USETESTVISCOSITY + +If you want to artificially increase or decrease viscosity, you can do that here. The +default value is 1.0, so increasing would be larger than 1 and decreasing would be smaller +than one. This multiplies the normal viscosity. + + #USETESTVISCOSITY + TestViscosityFactor (real) + +### FIXEDDT + +If you would like to force GITM to take a fixed dt you can use this. It +will try to take that fixed dt, unless the CFL condition is violated. + + #FIXEDDT + FixedDt (real) + +## Physics + +### THERMALCONDUCTION + +These are the most important terms for controlling the temperature of the +thermosphere. If you set these values higher, the temperature will go down. +If you set them lower, the temperature will go up. + + #THERMALCONDUCTION + ThermalConduction_AO2 (Conduction A(O2): 3.6e-4, real) + ThermalConduction_AO (Conduction A(O): 5.6e-4, real) + ThermalConduction_s (Conduction s: 0.75, real) + +### THERMALDIFFUSION + + #THERMALDIFFUSION + KappaTemp0 (thermal conductivity, real) + +### DYNAMO + +The dynamo controls the ion vertical velocities at the equator, and is therefore +quite important. So, the dynamo should alway be on (TRUE). The different parameters +can set how the solver works and the extent of the solution. For normal conditions, the +defaults are fine. + + #DYNAMO + UseDynamo (logical) + DynamoHighLatBoundary (real) + nItersMax (integer) + MaxResidual (V,real) + IncludeCowling (logical) + DynamoLonAverage (real) + +### DIFFUSION + +If you use eddy diffusion, you must specify two pressure levels - under +the first, the eddy diffusion is constant. Between the first and the +second, there is a linear drop-off. Therefore The first pressure must be +larger than the second! + + #DIFFUSION + UseDiffusion (logical) + EddyDiffusionCoef (real) + EddyDiffusionPressure0 (real) + EddyDiffusionPressure1 (real) + +### THERMO + +This is to turn different heating terms off explicitly. These have not been used +in a while, so it would be good to check them in the code. + + #THERMO + UseSolarHeating (logical) + UseJouleHeating (logical) + UseAuroralHeating (logical) + UseNOCooling (logical) + UseOCooling (logical) + UseConduction (logical) + UseTurbulentCond (logical) + UseIRHeating (logical) + +### FORCING + +This is to turn different momentum terms off explicitly. These have not been used +in a while, so it would be good to check them in the code. + + #FORCING + UsePressureGradient (logical) + UseIonDrag (logical) + UseNeutralFriction (logical) + UseViscosity (logical) + UseCoriolis (logical) + UseGravity (logical) + +### IONFORCING + +This is to turn different ion momentum terms off explicitly. These have not been used +in a while, so it would be good to check them in the code. + + #IONFORCING + UseExB (logical) + UseIonPressureGradient (logical) + UseIonGravity (logical) + UseNeutralDrag (logical) + +### MODIFYPLANET + +You can play with planetary characteristics with this. You can modify the rotation +rate and the length of a year. + + #MODIFYPLANET + RotationPeriodInput (real) + DaysPerYearInput (real) + DaysPerYearInput (real) + +### FIXTILT + +This may be to fix the tilt of the planet to allow conditions to be set and stay fixed. + + #FIXTILT + IsFixedTilt (logical) + +### APEX + +Sets whether to use a realistic magnetic field (T) or a dipole (F). This is for Earth. + + #APEX + UseApex (logical) + +### DIPOLE + +Can set the dipole field to be centered, non-tilted dipole, or can set each of the +different parameters explicitely with this: + + #DIPOLE + MagneticPoleRotation (real) + MagneticPoleTilt (real) + xDipoleCenter (real) + yDipoleCenter (real) + zDipoleCenter (real) + +## Misc + +### CPUTIMEMAX + +This sets the maximum CPU time that the code should run before it starts +to write a restart file and end the simulation. It is very useful on +systems that have a queueing system and has limited time runs. +Typically, set it for a couple of minutes short of the max wall clock, +since it needs some time to write the restart files. + + #CPUTIMEMAX + CPUTimeMax (real) + +### PAUSETIME + +This will set a time for the code to just pause. Really, this should +never be used. + + #PAUSETIME + iYear iMonth iDay iHour iMinute iSecond + +### ISTEP + +This is typically only specified in a restart header. If you specify it +in a start UAM.in it will start the counter to whatever you specify. + + #ISTEP + iStep (integer) + +### TSIMULATION + +This is typically only specified in a restart header. It sets the offset +from the starttime to the currenttime. Should really only be used with +caution. + + #TSIMULATION + tsimulation (real) + +### DUSTDATA + +This is for Mars. + + #DUST + cDustFile + cConrathFile + +### DUST + +This is for Mars. + + #DUST + TauTot + Conrnu + +### OVERWRITEIONOSPHERE + +This is for coupling with SAMI - it can overwrite the ionosphere computed within GITM. + + #OVERWRITEIONOSPHERE + DoOverwriteIonosphere + DoOverwriteWithIRI + DoOverwriteWithSami + SamiInFile + +### DAMPING + +This is probably for damping vertical wind oscillations that can occur +in the lower atmosphere. + + #DAMPING + UseDamping (logical) + +### GRAVITYWAVE + + #GRAVITYWAVE + UseGravityWave (logical) + + +### NEWSTRETCH + +Poleward Edge of Stretch Region (real, degrees) +StretchWidth (real, 1.0-20.0, deg) +StretchingPercentage (real, 0-1) + +Example is provided here (this is not the default!): + + #NEWSTRETCH + 65.0 (real) location of minimum grid spacing + 5.0 (real) Width of stretched region + 0.6 (real) Amount of stretch 0 (none) to 1 (lots) + +### STRETCH + +Old method of stretching with the same inputs as the new. + +ConcentrationLatitude (real, degrees) +StretchingPercentage (real, 0-1) +StretchingFactor (real) + + Example (no stretching): + + #STRETCH + 65.0 (real) location of minimum grid spacing + 0.0 (real) Amount of stretch 0 (none) to 1 (lots) + 1.0 (real) Amount of stretch + +### TOPOGRAPHY + +This is for Mars. + + #TOPOGRAPHY + UseTopography (logical) + AltMinUniform (real) + +### RCMR + +This is for adaptive control of different parameters within GITM. It +reads in data and tries to force GITM to match those satellites. + + #RCMR + Input data type to assimilate (RHO/VTEC) + Output variable to drive (F107/PHOTOELECTRON) + Initial output estimate + Number satellites to assimilate + 1st satellite index to assimilate + 2nd satellite index to assimilate + etc... + +### DART + +DART is the data assimilation research testbed. + + #DART + useDART (integer, {default 0=no}, 1=master ensemble member, 2=slave ens.) + +### LTERadiation + +This is for Mars and Venus. + + #LTERadiation + DtLTERadiation (real) + + diff --git a/srcDoc/set_inputs.tex b/srcDoc/set_inputs.tex deleted file mode 100644 index dc5870ed..00000000 --- a/srcDoc/set_inputs.tex +++ /dev/null @@ -1,878 +0,0 @@ -\section{Principle Input} -\label{uam.sec} - -{\tt UAM.in} contains the majority of the variables that can be changed in a GITM run. Very few of these input options are required as input, all other options will default to values specified by the ModInputs.f90 subroutine, which can be found in the {\tt src} directory. Example {\tt UAM.in} files for various types of runs are made available in the {\tt srcData} directory. - -This input file can be altered at will without the need to recompile the code either ``by hand" or using a script such as {\tt makerun.pl}. This script, which is located on {\tt harot.engin.umich.edu:/bigdisk1/bin}, takes command line input to create a UAM.in file and any desired auxiliary files, discussed in more detail in section~\ref{aux.sec}, using locally stored data. - -The following sections present the GITM input options grouped by type. This is not the order you will find them in a typical {\tt UAM.in} file or the order you will find the input processed in {\tt ModInputs.f90}. This reinforces the flexibility of the input file, which doesn't care what order the input options are specified with one exception. The starting and ending times (discussed in section~\ref{required.sec}) \textit{must} be defined before any solar or geomagnetic indices (discussed in section~\ref{indices.sec}). It is probably a good practice to begin any {\tt UAM.in} file either with the output options (discussed in section~\ref{def_out.sec}) or the starting and ending times. - -%% - -\subsection{Required Inputs} -\label{required.sec} - -The only inputs that must be specified are the starting and ending times. These times are specified using universal time blocks that specify the date (A.D.) and time of day. Remember, these two blocks must be specified before any of the solar or geomagnetic index blocks, outlined in section~\ref{indices.sec}. - -\subsubsection{TIMESTART} -\label{starttime.sec} - -This input block sets the starting time of the simulation. Although the input time can be defined down to the second, construction scripts will ignore temporal units smaller than a day since a lead time of a day is typically desired for any model run. Shorter runs should only used to test the model compilation. - -GITM can be set to restart after pausing. This has no effect on TIMESTART, these values should always contain the real starting time, not the restart time. - -\begin{verbatim} -#TIMESTART -(integer) year -(integer) month -(integer) day -(integer) hour -(integer) minute -(integer) second -\end{verbatim} - -\subsubsection{TIMEEND} -\label{endtime.sec} - -This input block sets the ending time of the simulation. As mentioned above, GITM runs typically last a minimum of two days (with one day as start-up to allow the processes to settle into equilibrium) and so the hour, minute, and second options are commonly ignored. - -\begin{verbatim} -#TIMEEND -(integer) year -(integer) month -(integer) day -(integer) hour -(integer) minute -(integer) second -\end{verbatim} - -\subsubsection{END} -\label{end.sec} - The inclusion of this keyword will cause GITM to stop reading the {\tt UAM.in} file. This can allow one to save typical input options not used in one particular run for another run by moving them after this key. - - \begin{verbatim} - #END - \end{verbatim} - -%% - -\subsection{Temporal Boundaries} -\label{time.sec} - -The input options described here are optional and used to set the temporal boundaries in GITM, including the processing times. - -\subsubsection{PAUSETIME} -\label{pausetime.sec} - -This input option sets a time for the code to pause. There is no good reason to use this option. - -\begin{verbatim} -#PAUSETIME -(integer) year -(integer) month -(integer) day -(integer) hour -(integer) minute -(integer) second -\end{verbatim} - -\subsubsection{CPUTIMEMAX} -\label{cputimemax.sec} - -This sets the maximum CPU time that the code should run before it starts to write a restart file and end the simulation. It is very useful on systems that have a queueing system and has limited time runs. Typically, set it for a couple of minutes short of the maximum wall clock, since it needs some time to write the restart files. - -\begin{verbatim} -#CPUTIMEMAX -(real) CPUTimeMax -\end{verbatim} - -\subsubsection{CFL} -\label{cfl.sec} - -The CFL option defines how large a time step GITM will take. This is set as a fraction of the maximum time step, so 1.0 is the maximum value, while 0.75 is a typical value. If instabilities form during a model run, lowering this option is a good first step to take. - -\begin{verbatim} -#CFL -(real) cfl -\end{verbatim} - -\subsection{Defining Outputs} -\label{def_out.sec} - -The input option blocks described here are used to specify the level and type of verboseness. - -\subsubsection{LOGFILE} -\label{logfile.sec} - -Log files are very important and the LOGFILE input option allows the user to control how much information the GITM logfile will contain. This logfile is output into the {\tt UA/data/} directory in a file following a naming convention like {\tt log*.dat}. Although you can output the log file at whatever frequency you would like, setting the time-step to some very small value will allow GITM to produce a log output every iteration, which is a good thing. DtLogFile specifies this time-step in seconds. - -\begin{verbatim} -#LOGFILE -(real) DtLogFile -\end{verbatim} - -\subsubsection{DEBUG} -\label{debug.sec} - -This will set the level of GITM's verboseness. Set the iDebugLevel to 0 for minimal output and to 10 to retrieve \textit{everything}. You can also limit output to a specific processor using iDebugProc. The processors are named PE x, where PE indicates that you are tagging a processor and x is the zero offset integer indicating the processor number. So ``PE 0" would indicate that output from the first processor is desired. - -If you set the iDebugLevel to 0 (the default), you can set the debug report time step using DtReport. This time step is given in seconds. The final keyword in this input option, UseBarriers, forces the different nodes running the GITM code to sync up with each other frequently when employed. - -\begin{verbatim} -#DEBUG -(integer) iDebugLevel -(integer) iDebugProc -(real) DtReport -(logical) UseBarriers -\end{verbatim} - -\subsubsection{SATELLITES} -\label{satellites.sec} - -To improve model-data studies, GITM can output model results along the satellite paths. Any number of satellites may be flown through a GITM simulation. Output from the satellite paths is provided at the specified universal time, geographic latitude and longitude. Instead of confining the model output to the satellite altitude, simulated output is provided over the entire GITM altitude range. If RCMR is being run, the validity of the satellite index specified in that input block will be tested here. - -\begin{verbatim} -#SATELLITES -(integer) nSats -(string) SatFile(n) -(real) DtPlot(n) -\end{verbatim} -\vspace{-.1in} -\hspace{.6in} $\vdots$ -\vspace{.1in} - -To fly several satellites through GITM, the user must set nSats, SatFile(n), and DtPlot(n) for each satellite. nSats specifies the number of satellites, SatFile(n) gives the name of the satellite flight path file (discussed in more detail in section~\ref{sat_aux.sec}), and DtPlot(n) specifies the time-step for the GITM satellite output in seconds. The following verbatim block shows the arrangement for two satellites. - -\begin{verbatim} -#SATELLITES -2 nSats -grace.sat SatFile1 -1 DtPlot1 -champ.sat SatFile2 -1 DtPlot2 -\end{verbatim} - -\subsubsection{APPENDFILES} -\label{appendfiles.sec} - -GITM defaults to creating many output files for satellite runs, but this option tells GITM to create just one single file per satellite. This makes GITM output significantly less files. In the future, this option may be available for other types of output as well. - -\begin{verbatim} -#APPENDFILES -(logical) DoAppendFiles -\end{verbatim} - -\subsubsection{SAVEPLOT} -\label{saveplot.sec} - -This input option specifies the types of files GITM will output. The most common type is 3DALL, which outputs all primary state variables. Types (specified in OutputType) include : 3DALL, 3DMAG, 3DNEU, 3DION, 3DTHM, 3DCHM, 3DUSR, 3DGLO, 2DGEL, 2DMEL, 2DUSR, 2DTEC, 1DALL, 1DGLO, 1DTHM, 1DNEW, 1DCHM, 1DCMS, and 1DUSR. These file types specify the number of dimensions (3D, 2D, 1D) in which GITM may be run and the different primary state variables that are included in the output (NEU stands for neutrals, ION stands for ionosphere, MAG stands for magnetic field, THM stands for thermosphere, CHM stands for chemistry, USR stands for BLAH, GLO stands for day glow, TEC stands for total electron content, GEL stands for global electric BLAH, and MEL stands for BLAH). Any number of output files greater than zero may be produced, but nOutputTypes must be used to specify the number of types to be created and an OutputType and DtPlot must be provided for each output just as was done for multiple satellites. DtRestart and DtPlot specify the time-step in seconds for producing restart and output files, respectively. If no output files are specified, GITM will crash when attempting to finalize all procedures. - -\begin{verbatim} -#SAVEPLOT -(real) DtRestart -(integer) nOutputTypes -(string) OutputType -(real) DtPlot -\end{verbatim} -\vspace{-.1in} -\hspace{.6in} $\vdots$ -\vspace{.1in} - -\subsubsection{CCMCFILENAME} -\label{ccmcfilename.sec} - -The Community Coordinated Modeling Center (CCMC), located at {\tt ccmc.gsfc.nasa.gov}, provides access to space research models to the scientific community. GITM provides the option to have the GITM output files use the CCMC naming convention: TYPE\_GITM\_YYYY-MM-DDThh-mm-ss.bin, where TYPE is one of the GITM output types such as 3DALL described in the previous subsection. - -\begin{verbatim} -#CCMCFILENAME -(logical) Use CCMC naming convention -\end{verbatim} - -\subsubsection{PLOTTIMECHANGE} -\label{plottimechange.sec} - -This option allows you to change the output cadence of the files for a limited time. If you have a short event, such as a solar flare or an eclipse, this options lets you output much more often during the event than during the quiet periods preceding and succeeding the event. - -\begin{verbatim} -#PLOTTIMECHANGE -(yyyy mm dd hh mm ss ms) PlotTimeChangeStart -(yyyy mm dd hh mm ss ms) PlotTimeChangeEnd -\end{verbatim} - -%% - - -\subsection{Restart Input} - -This section deals with options typically only specified in a restart header. These options can be used in the principle input file but have very little use if a run does not need to be restarted from a specified point in a previous run. Apart from setting the flag in the {\tt UAM.in} file, several steps must be taken. First, you need to put the restart files that GITM writes into the correct location. These files are located in subdirectories (named {\tt restartIN} and {\tt restartOUT}) within the {\tt run/UA} directory. To preserve the past GITM restart information and enable a new start from the end of the previous run, prepare these directories as directed below. This code snippit can also be added to a PBS job file, but should only be performed after GITM has finished executing and if the {\tt GITM.DONE} file exists. - -\begin{verbatim} -cd UA -mv restartOUT restartOUT.runname.XX -mkdir restartOUT -./pGITM -rm -f restartIN; ln -s restartOUT.runname.XX -cd .. -\end{verbatim} - -\subsubsection{RESTART} - -Setting this input option to T (true) allows the model to restart from a previous run. - -\begin{verbatim} -#RESTART -(logical) DoRestart -\end{verbatim} - -\subsubsection{ISTEP} -\label{istep.sec} - -This input should not be specified by the user, but is used by the computer to restart after a run has been interrupted. It gives the iteration number that the model run stopped at. - -\begin{verbatim} -#ISTEP -(integer) iStep -\end{verbatim} - -\subsubsection{TSIMULATION} - -This options sets the offset from the starting time (specified using TIMESTART) to the current simulation time in seconds. Like ISTEP, this option should really only be used by the computer to restart after a run has been interrupted. - -\begin{verbatim} -#TSIMULATION -(real) tsimulation -\end{verbatim} - -%% - -\subsection{Numerical Options} -\label{numerical.sec} - -The optional inputs in this section allow the user to modify how GITM handles computational scenarios. - -\subsubsection{LIMITER} -\label{limiter.sec} - -The flux limiter specifies the balance between the model's ability to run robustly and provide realistic gradients. A realistic atmosphere will occasionally experience sharp changes in characteristics such as electron density. When GITM attempts to model these variations, the high resolution of the temporal and spatial grids allows the numerical schemes that solve the equations of state to oscillate about the actual value. One solution to the problem is to err on the side of robustness and require more gradual changes. This can be done by setting TypeLimiter to minmod or setting TypeLimiter to beta and BetaLimiter to 1.0 (both of these options are the same and the default). The other solution is to allow sharp changes to occur, realizing that the model will likely overshoot and undershoot and that if an atmospheric characteristic shoots to an unrealistic value the model may crash. - -Although there are many different limiter types (see the wikipedia article for a decent introduction: {\tt \\http://en.wikipedia.org/wiki/Flux\_limiter}) GITM uses the Osher function~\citep{Chakravarthy:1983os}, given below in equation~\ref{os.eq}. - -\begin{equation} -\label{os.eq} -\phi_{os}(r) = max[0,min(r,\beta)], \;\;\;\; (1 \le \beta \le 2); \;\;\;\; \lim_{r\to\infty} \phi_{os}(r) = \beta -\end{equation} - -In this function, $\beta$ is specified by BetaLimiter, and so defaults to the minmod flux limiter function when $\beta = 1$~\citep{roe:1986aa} and to the monotonized central (MC) flux limiter function when $\beta = 2$~\citep{valLeer:1977aa}. - -\begin{verbatim} -#LIMITER -(string) TypeLimiter -(real) BetaLimiter -\end{verbatim} - -\subsection{Data Assimilation} -\label{assim.sec} - -This section contains the input options that allow GITM to perform data assimilation. - -\subsubsection{RCMR} -\label{rcmr.sec} - -RCMR stands for Retrospective Cost Model Reference, and is a Retrospective Cost Adaptive Control (RCAC) method of data assimilation. RCMR is useful when dealing with nonlinear systems~\citep{Ali:2012aa}. To use this system, Markov parameters need to be set. These parameters will vary based on the type and number of data sources being assimilated and the driver being estimated. Markov parameters for the assimilation of a single satellite providing neutral density to drive the F$_{10.7}$ are currently available. Other parameters are currently being developed. - -The use of RCMR changes how the possible driving parameters and satellite data are treated within GITM. Because of this, the RCMR block should be included before the SATELLITE, F107, and PHOTOELECTRON block in the UAM.in file. The initial guess of the parameter being driven should not be close to the final value, as a perturbed location allows the assimilation to better account for model error. Choosing a value within realistic physical boundaries but away from an intuitive guess as to the actual value is the best way to chose the initial guess. - -\begin{verbatim} -#RCMR -(string) Input data type (RHO/VTEC) -(string) Output variable to drive (F107/PHOTOELECTRON) -(real) Initial output estimate -(integer) Number of satellites to include in data assimilation -(integer) Index number of satellite to assimilate -\end{verbatim} - -\subsubsection{DART} -\label{dart.sec} - -DART stands for Data Assimilation Research Testbed, and is a community facility that provides software tools for data assimilation~\citep{Anderson:2009fn}. Within the space physics community, DART has been coupled with TIE-GCM and GITM. More information about using DART with GITM is available in the DART manual in the {\tt GITM2/srcDoc} directory. - -\begin{verbatim} -#DART -(integer) Method to use DART -\end{verbatim} - -\subsection{Solar and Geomagnetic Indices} -\label{indices.sec} - -This section contains the input options that specifies the level of solar and geomagnetic activity. Recall that these input options must be specified after the starting and ending times (refer to section~\ref{required.sec}) are defined. Also, note that several of these indices may be specified in different ways. If you use more than one method to define an index, the last definition will be used. It is better to just use one method in your {\tt UAM.in} file to avoid confusion. - -\subsubsection{F107} -\label{f107.sec} - -Sets the F$_{10.7}$ and 81 day average of F$_{10.7}$ (commonly denoted as F$_{10.7a}$ or $\overline{F_{10.7}}$). This is used to set the range of the initial altitude grid and drive the lower boundary conditions. It is also used as input into several of the models called by GITM. If RCMR is being used to drive the F$_{10.7}$, then the values provided here are used to initialize MSIS and should be as close to the real F$_{10.7}$ as possible. - -The F$_{10.7}$ is a measure of the solar 10.7 cm flux~\citep{Covington:1948aa} and is measured in solar flux units (1 sfu = 10$^{-22}$ W m$^{-2}$ Hz$^{-1}$ = 10,000 jansky). The F$_{10.7}$ is commonly used as a proxy for the solar EUV output. - -\begin{verbatim} -#F107 -(real) f107 -(real) f107a -\end{verbatim} - -\subsubsection{NGDC\_INDICES} -\label{ngdc_indices.sec} - -This input option allows GITM to use an appropriate F$_{10.7}$ for each day that the assimilation runs, instead of a fixed value. This is accomplished by providing an input file that contains the F$_{10.7}$ values for the entire GITM simulation period and the preceding 81 days. This allows GITM to compute the appropriate daily F$_{10.7a}$ as well. Typically, users simply make a file including all F$_{10.7}$ values from 1980 onward, so they never have to worry about missing any preceding days. - -\begin{verbatim} -#NGDC_INDICES -(string) filename -\end{verbatim} - -\subsubsection{SME\_INDICES} -\label{sme_indices.sec} - -This option is not well described in set\_inputs.f90. - -\begin{verbatim} -#SME_INDICES -(string) Mystery input number one -(string) Mystery input number two -\end{verbatim} - -\subsubsection{ACE\_DATA} -\label{ace_data.sec} - -This option is not well described in set\_inputs.f90. - -\begin{verbatim} -#ACE_INDICES -(string) Mystery input number one -(string) Mystery input number two -\end{verbatim} - -\subsubsection{SWPC\_DATA} -\label{swpc_data.sec} - -This option is not well described in set\_inputs.f90. - -\begin{verbatim} -#SWPC_INDICES -(string) Mystery input number one -(string) Mystery input number two -\end{verbatim} - -\subsubsection{NOAAHPI\_INDICES} -\label{noaahpi_indices.sec} - -\begin{verbatim} -#NOAAHPI_INDICES -(string) NOAA HPI filename -\end{verbatim} - -\subsubsection{KP} -\label{kp.sec} - -The Kp index is not used by GITM, but several models that GITM calls utilize it. The Kp index is a measure of mid-latitude geomagnetic disturbance and can be obtained from: - - {\tt ftp://ftp.ngdc.noaa.gov/STP/GEOMAGNETIC\_DATA/INDICES/KP\_AP/} - - \noindent while a description of the index can be found at: - - {\tt http://www-app3.gfz-potsdam.de/kp\_index/description.html} - -\begin{verbatim} -#KP -(real) kp -\end{verbatim} - -\subsubsection{HEMISPHERICPOWER} -\label{hemisphericpower.sec} - -This option sets the hemispheric power of the aurora. Typical values range from 1$-$1000, with 20 being a nominal, quiet time value. - -\begin{verbatim} -#HPI -(real) HemisphericPower -\end{verbatim} - -\subsubsection{SOLARWIND} -\label{solarwind.sec} - -This option is one way to set the driving conditions for the high-latitude electric field models. Because this option is static and will not change during the run, it is usually better to use the MHD\_INDICES option instead, as MHD\_INDICES provides a dynamic driving environment. - -\begin{verbatim} -#SOLARWIND -(real) bx -(real) by -(real) bz -(real) vx -\end{verbatim} - -\subsubsection{MHD\_INDICES} -\label{mhdindices.sec} - -Use this option to provide GITM with dynamic IMF and solar wind conditions. This option can either be omitted entirely; if it is desired a filename whose contents will be discussed in more detail in section~\ref{imf.sec} must be specified. This file should be located in the same directory as the {\tt UAM.in} file. - -\begin{verbatim} -#MHD_INDICES -(string) filename -\end{verbatim} - -\subsubsection{EUV\_DATA} -\label{euv.sec} - -This input option allows the user to specify the extreme ultraviolet (EUV) flux using solar spectra from any model or data source. A FISM file~\citep{fism:2007d, fism:2008f} is used as an example in section~\ref{solar_irradiance.sec}. - -\begin{verbatim} -#EUV_DATA -(logical) UseEUVData -(string) cEUVFile -\end{verbatim} - -%% - -\subsection{Physical Processes} -\label{physics.sec} - -The following options let the user specify how GITM treats different physical boundaries and processes. - -\subsubsection{INITIAL} -\label{initial.sec} - -This option specifies the initial conditions and the lower boundary conditions. For Earth, we typically just use MSIS and IRI for initial conditions. For other planets, the vertical temperature parameters can be set here. TempMin and TempMax specify the initial temperatures at the bottom and top of the thermosphere in Kelvin, respectively. TempHeight specifies the height (in kilometers from the surface of the planet) of the midpoint of the temperature gradient. TempWidth specifies the vertical width (in kilometers) of the temperature gradient. - -\begin{verbatim} -#INITIAL -(logical) UseMSIS -(logical) UseIRI -If UseMSIS is false (F) then: -(real) TempMin -(real) TempMax -(real) TempHeight -(real) TempWidth -\end{verbatim} - -\subsubsection{STATISTICALMODELSONLY} -\label{statisticalmodelsonly.sec} - -There can be benefits to running a simpler ionosphere and thermosphere models. GITM can be used as a shell to run MSIS and IRI without any coupling. This input option bypasses GITM and only outputs results from MSIS and IRI. This option allows the user who is familiar with GITM to get MSIS and IRI output without having to install or know how to run these models independently. The UseStatisticalModelsOnly flag can be set to {\tt T} or {\tt F} (true or false) and the DtStatisticalModels options lets you specify the time-step (in seconds) used in MSIS and IRI. - -\begin{verbatim} -#STATISTICALMODELSONLY -(logical) UseStatisticalModelsOnly -(real) DtStatisticalModels -\end{verbatim} - -\subsubsection{TIDES} -\label{tides} - -This option uses a series of logical flags to tell GITM how to use tides. The first flag (UseMSISFlat) tells GITM to use MSIS without tides. The second flag (UseMSISTides) is using MSIS with full up tides. One of these two flags should be true. The remaining flags should only be true if UseMSISTides is false, and then only one should be true. The third flag (UseGSWMTides) uses GSWM tides, while the forth flag (UseWACCMTides) sets GITM to use the WACCM tides. Essentially, only one tidal model should be used per GITM run. Information about GSWM can be found at: \\{\tt http://www.hao.ucar.edu/modeling/gswm/gswm.html} and information about WACCM can be found at: \\{\tt http://www.cesm.ucar.edu/working\_groups/WACCM/}. - -When running with the MSIS or WACCM tides, no additional input files are needed. However, when using GSWM additional files must be made accessible to GITM in the {\tt run/UA/DataIn} directory. These files are stored in the {\tt Tides} directory within GITM. You can check these files out using CVS (as described in Chapter~\ref{cvs.sec}) and then create links or copy them into your run directory by using: {\tt ln -s ~/GITM/Tides/*bin ~/GITM/run/UA/DataIn/.} - -\begin{verbatim} -#TIDES -(logical) UseMSISFlat -(logical) UseMSISTides -(logical) UseGSWMTides -(logical) UseWACCMTides -\end{verbatim} - -\subsubsection{DUSTDATA} -\label{dustdata.sec} - -\begin{verbatim} -#DUSTDATA -(logical) UseDustDistribution -(string) cDustFile -(string) cConrathFile -\end{verbatim} - -\subsubsection{DUST} -\label{dust.sec} - -\begin{verbatim} -#DUST -(real) Total $\tau$ -(real) Conrnu -\end{verbatim} - -\subsubsection{GSWMCOMP} -\label{gswmcomp.sec} - -If you decided to use GSWM tides by selecting UseGSWMTides in the TIDES option, you can specify which diurnal and semidiurnal tidal components to include. - -\begin{verbatim} -#GSWMCOMP -(logical) GSWMdiurnal(1) -(logical) GSWMdiurnal(2) -(logical) GSWMsemidiurnal(1) -(logical) GSWMsemidiurnal(2) -\end{verbatim} - -\subsubsection{USEPERTURBATION} -\label{useperturbation.sec} - -\begin{verbatim} -#USEPERTURBATION -(logical) UsePerturbation -\end{verbatim} - -\subsubsection{DAMPING} -\label{damping.sec} - -This option specifies whether or not to allow damping of the vertical wind oscillations that can occur in the lower atmosphere. - -\begin{verbatim} -#DAMPING -(logical) UseDamping -\end{verbatim} - -\subsubsection{GRAVITYWAVE} -\label{gravitywave.sec} -A switch to add heating to the atmosphere. This was primarily used to explore gravity waves on Titan and has little to no effect on the terrestrial atmosphere. This options defaults to false. - -\begin{verbatim} -#GRAVITYWAVE -(logical) UseGravityWave -\end{verbatim} - -\subsubsection{AURORAMODS} -\label{auroramods.sec} - -\begin{verbatim} -#AURORAMODS -(logical) Normalize Aurora to Hemispheric Power -(real) Auroral Height Factor -\end{verbatim} - -\subsubsection{NEWELLAURORA} -\label{newellaurora.sec} - -This input option provides several logical flags that allow GITM to use Pat Newell's aurora model, Ovation~\citep{Newell:2002ov}. - -\begin{verbatim} -#NEWELLAURORA -(logical) UseNewellAurora -(logical) UseNewellAveraged -(logical) UseNewellMono -(logical) UseNewellWave -(logical) UseNewellRemoveSpikes -(logical) UseNewellAverage -\end{verbatim} - -\subsubsection{OVATION} -\label{ovation.sec} - -This input option provides several logical flags that allow GITM to use the SME Ovation model. - -\begin{verbatim} -#OVATION -(logical) UseOvationSME -(logical) UseOvationSMEMono -(logical) UseOvationSMEWave -(logical) UseOvationSMEIon -\end{verbatim} - -\subsubsection{AMIEFILES} -\label{amiefiles.sec} - -This option allows the user to specify the electrodynamic state of the polar regions using the Assimilative Mapping of Ionospheric Electrodynamics (AMIE) model~\citep{ridley:2004aa}. Input files separately specify the conditions at the northern and southern polar caps, and should be in the MIE binary format. Contact Aaron Ridley for more information about using AMIE with GITM. - -\begin{verbatim} -#AMIEFILES -(string) cAMIEFileNorth -(string) cAMIEFileSouth -\end{verbatim} - -\subsubsection{THERMO} -\label{thermo.sec} - -This input option sets flags that allow the user to turn various thermospheric processes on and off. For a realistic run, all three heating flags (for solar, Joule, and auroral heating) should be set to true, along with both cooling flags (for nitrous-oxide, NO, and oxygen, O). UseConduction, UseUpdatedTurbulentCond, and UseTurbulentCond flag should also all be set to true. UseDiffusion, however, defaults to false and should not be used for a realistic run. - -The only keyword that is not a flag is EddyScaling. This allows the user to control the Eddy diffusion by applying a multiplicative to the model's Eddy diffusion value. - -\begin{verbatim} -#THERMO -(logical) UseSolarHeating -(logical) UseJouleHeating -(logical) UseAuroralHeating -(logical) UseNOCooling -(logical) UseOCooling -(logical) UseConduction -(logical) UseTurbulentCond -(logical) UseUpdatedTurbulentCond -(logical) UseDiffusions -(real) EddyScaling -\end{verbatim} - -\subsubsection{THERMALDIFFUSION} -\label{thermaldiffusion.sec} - -This keyword sets the thermal conductivity. KappaTemp0 should be set to the desired value of the thermal conductivity in MKS units. - -\begin{verbatim} -#THERMALDIFFUSION -(real) KappaTemp0 -\end{verbatim} - -\subsubsection{VERTICALSOURCES} -\label{verticalsources.sec} - -This input option provides flags and limits for the vertical thermospheric sources. The UseEddyInSolver turns the Eddy diffusion on and off, the UseNeutralFrictionInSolver turns the vertical neutral friction on and off, and the MaximumVerticalVelocity sets the limit for vertical neutral winds in meters per second. - -\begin{verbatim} -#VERTICALSOURCES -(logical) UseEddyInSolver -(logical) UseNeutralFrictionInSolver -(real) MaximumVerticalVelocity -\end{verbatim} - -\subsubsection{EDDYVELOCITY} -\label{eddyvelocity.sec} - -This input option further allows the user to specify how Eddy diffusion is treated by providing an flag to use the method presented by~\citet{Boqueho:2005aa}, which was developed for the Martian atmosphere. The UseEddyCorrection flag is another option that is useful for certain extraterrestrial atmospheres. - -\begin{verbatim} -#EDDYVELOCITY -(logical) UseBoquehoAndBlelly -(logical) UseEddyCorrection -\end{verbatim} - -\subsubsection{DIFFUSION} -\label{diffusion.sec} - -If you use Eddy diffusion, as indicated by the UseDiffusion flag, you must specify two pressure levels in units of UNITS using EddyDiffusionPressure[0,1]. Below the first pressure level, the Eddy diffusion will be constant. Between the first and the second pressure levels, the Eddy diffusion coefficient will drop-off linearly. Thus, the first pressure must be larger than the second! The Eddy diffusion coefficient may also be specified using EddyDiffusionCoef. - -\begin{verbatim} -#DIFFUSION -(logical) UseDiffusion -(real) EddyDiffusionCoef -(real) EddyDiffusionPressure0 -(real) EddyDiffusionPressure1 -\end{verbatim} - -\subsubsection{WAVEDRAG} -\label{wavedrag.sec} - -This input option allows stress heating to be applied in GITM, providing an additional source of drag in the thermosphere. - -\begin{verbatim} -#WAVEDRAG -(logical) UseStressHeating -\end{verbatim} - -\subsubsection{FORCING} -\label{forcing.sec} - -This input option provides flags for physical processes that drive the thermosphere. - -\begin{verbatim} -#FORCING -(logical) UsePressureGradient -(logical) UseIonDrag -(logical) UseNeutralFriction -(logical) UseViscosity -(logical) UseCoriolis -(logical) UseGravity -\end{verbatim} - -\subsubsection{IONFORCING} -\label{ionforcing.sec} - -This input option turns several ionospheric transport processes on and off. UseExB turns the {\bf E}$\times${\bf B} plasma drift on and off, UseIonGravity allows the user to determine whether or not to allow the ions to respond to gravity, UseNeutralDrag relegates the forcing from ion-neutral collisions on the ionosphere, and UseIonPressureGradient deals with the ion motions resulting from changes to the plasma pressure gradient. All of these processes should be on for a realistic simulation. - -\begin{verbatim} -#IONFORCING -(logical) UseExB -(logical) UseIonPressureGradient -(logical) UseIonGravity -(logical) UseNeutralDrag -\end{verbatim} - -\subsubsection{CHEMISTRY} - -Turn certain chemical processes on or off. All processes are included by default. - -\begin{verbatim} -#CHEMISTRY -(logical) UseIonChemistry -(logical) UseIonAdvection -(logical) UseNeutralChemistry -\end{verbatim} - -\subsubsection{PHOTOELECTRON} -\label{photoelectron.sec} - -The photoelectron heating efficiency describes the energy input to the electron gas per electron-ion pair formed by the photoionization of a neutral~\citep{Hanson:1968ue}. GITM defines the photoelectron heating efficiency as a scalar that multiplies the sum of the photoionization rate and the neutral density for each neutral species. The specified value should lie between 0.02 and 0.20, though the default value is zero. If RCMR is being used to drive the photoelectron heating efficiency, this block is ignored. - -\begin{verbatim} -#PHOTOELECTRON -(real) Photoelectron heating efficiency -\end{verbatim} - -\subsubsection{DYNAMO} -\label{dynamo.sec} - -This input option provides flags for the ionospheric dynamo. The UseDynamo flag turns on a model to calculate the ionospheric electric fields. DynamoHighLatBoundary sets the polar latitude limit (65$^\circ$ or 70$^\circ$ is a realistic limit), nItersMax sets the maximum number of iterations for the Dynamo convergence (typically set at 500), and the MaxResidual sets the maximum difference, in Volts, to allow between iterations before the value is said to have converged (typically set to 1 V). The Dynamo currently uses a static high-latitude boundary, though a dynamical one would be ideal. To get around this, input from AMIE, run using the SuperMag data network, can be used instead of the UseDynamo process. The use of AMIE input is discussed in section~\ref{amiefiles.sec}. - -\begin{verbatim} -#DYNAMO -(logical) UseDynamo -(real) DynamoHighLatBoundary -(integer) nItersMax -(real) MaxResidual -\end{verbatim} - -\subsubsection{ELECTRODYNAMICS} -\label{electrodynamics.sec} - -Sets the time-step (in seconds) for updating the high-latitude (and low-latitude) electrodynamic drivers, such as the potential and the aurora. - -\begin{verbatim} -#ELECTRODYNAMICS -(real) DtPotential -(real) DtAurora -\end{verbatim} - -\subsubsection{IONPRECIPITATION} -\label{ionprecipitation.sec} - -This is a highly specific input option for experienced users. Most users should set this option to false. This is only for people wishing to do very specific runs in high altitude regions. IonIonizationFilename and IonHeatingRateFilename allow the advanced user to specify the ionization and ion heating rates due to precipitation using auxiliary input files. - -\begin{verbatim} -#IONPRECIPITATION -(logical) UseIonPrecipitation -(string) IonIonizationFilename -(string) IonHeatingRateFilename -\end{verbatim} - -\subsubsection{LTERADIATION} -\label{lteradiation.sec} - -LTERadiation allows the user to specify the time-step for the local thermodynamic equilibrium radiation process in seconds. This option is typically only used by the Mars GITM. It may be set for other versions of GITM, but each planet treats this input option differently. Versions not compiled for Mars will either modify or ignore input from LTERadiation. - -\begin{verbatim} -#LTERadiation -(real) DtLTERadiation -\end{verbatim} - -\subsubsection{DIPOLE} -\label{dipole.sec} - -This input option allows the user to specify the parameters the geomagnetic field within the limits of a dipole configuration so that any configuration (centered, tilted, or off-center and tilted) may be used. x,y,zDipoleCenter specify the origin of the dipole field in ECI coordinates, MagneticPoleTilt gives the angle (in degrees) between the dipole axis and the terrestrial rotation axis, and MagneticPoleRotation gives the constant angular rate (in degrees) at which the geomagnetic dipole field rotates. - -\begin{verbatim} -#DIPOLE -(real) MagneticPoleRotation -(real) MagneticPoleTilt -(real) xDipoleCenter -(real) yDipoleCenter -(real) zDipoleCenter -\end{verbatim} - -\subsubsection{APEX} -\label{apex.sec} - -This input option indicates whether or not GITM should use the more realistic Apex geomagnetic field~\citep{richards:1995aa}. If this option is set to false, the dipole field specified in the previous subsection will be used. - -\begin{verbatim} -#APEX -(logical) UseApex -\end{verbatim} - -%% - -\subsection{Geographic Boundaries} -\label{geograph.sec} - -\subsubsection{TOPOGRAPHY} - -This input option, which is defaults to false, uses topography to provide a variable vertical grid in GITM. You can also specify the minimum altitude at which the vertical grid for the thermosphere and ionosphere become consistent (AltMinUniform and AltMinIono, respectively). As with all other inputs the altitudes should be given in kilometers from the surface of the planet. - -\begin{verbatim} -#TOPOGRAPHY -(logical) UseTopography -(real) AltMinUniform -(real) AltMinIono -\end{verbatim} - -\subsubsection{ALTITUDE} -\label{altitude.sec} - -The upper and lower altitude limits (in kilometers) may be specified here. These values default to 500 km and 95 km, respectively. Setting the altitude limits above or below these values may result in unstable model runs. - -UseStretchedAltitude may also be turned on and off here. This flag defaults to true, as it allows the altitudes with rapidly changing pressure levels to be treated in more detail than those where the atmosphere changes slowly with altitude. - -\begin{verbatim} -#ALTITUDE -(real) AltMin -(real) AltMax -(logical) UseStretchedAltitude -\end{verbatim} - -\subsubsection{GRID} -\label{input_grid.sec} - -This input option sets the grid resolution in GITM. Although this process is straightforward, it deserves some thought and discussion. This is provided in section~\ref{grid.sec}. For new GITM users, learning how to alter the grid is a good place to start moving beyond the test run shown in Chapter~\ref{intro.ch}. - -\begin{verbatim} -#GRID -(integer) nBlocksLon -(integer) nBlocksLat -(real) LatStart -(real) LatEnd -(real) LonStart -(real) LonEnd -\end{verbatim} - -\subsubsection{STRETCH} - -You can stretch the grid in GITM in the latitudinal direction. It takes some practice to get the stretching just the way that you might like. To do this, you need to specify the geographic latitude (in degrees) that the stretching will center at (ConcentrationLatitude), the fraction of stretch (StretchingPercentage) where 0 means that there will be no stretching and 1 means that the latitude will be stretched by 100\%, and a multiplicative factor (StretchingFactor) that helps scale the stretching. The StretchingFactor should range between 0 and 1, erring closer to 1 to provide more control. - -\begin{verbatim} -#STRETCH -(real) ConcentrationLatitude -(real) StretchingPercentage -(real) StretchingFactor -\end{verbatim} - -Here is an example for stretching near the equator: - -\begin{verbatim} -#STRETCH -0.0 ! Equator -0.7 ! Amount of stretching is great -0.8 ! more control -\end{verbatim} - -Here is another example for no stretching near the auroral oval: - -\begin{verbatim} -#STRETCH -65.0 ! Location of minimum grid spacing -0.0 ! There is no streching here -1.0 ! For control -\end{verbatim} - -\subsubsection{NEWSTRETCH} -\label{newstretch.sec} - -An alternative way to stretch the grid. - -\begin{verbatim} -#NEWSTRETCH -(real) Poleward edge of the stretch region (degrees) -(real) Stretching width (degrees) -(real) Stretching percentage (0.0-1.0) -\end{verbatim} - -Here is an example for stretching near the auroral zone: - -\begin{verbatim} -#NEWSTRETCH -65.0 ! Auroral oval -5.0 ! Width of the stretched region -0.6 ! Amount of stretch (0 = none, 1 = lots) -\end{verbatim} diff --git a/srcGlow/Makefile b/srcGlow/Makefile index 444e4587..a0292e0d 100644 --- a/srcGlow/Makefile +++ b/srcGlow/Makefile @@ -30,38 +30,31 @@ DEPEND: EXE = ${BINDIR}/GLOW.exe -MYLIB = libGLOW.a +MYLIB = ${LIBDIR}/libGLOW.a LIB: DEPEND - ${MAKE} ${MYLIB} - @echo - @echo ${MYLIB} has been brought up to date. + @make ${MYLIB} @echo ${MYLIB}: ${MODULES} ${OBJECTS} @echo 'Creating GLOW library' + @rm -f ${MYLIB} ${AR} ${MYLIB} ${MODULES} ${OBJECTS} MY_LIB=libUPTOGL.a LIBADD: DEPEND - make ${MY_LIB} - @echo - @echo ${MY_LIB} has been brought up to date. + @make ${MY_LIB} @echo ${MY_LIB}: ${MF} ${MODULES} ${OBJECTS} - ${MAKE} ${MYLIB} - cp -f ${LIBPREV} ${MY_LIB} + @make ${MYLIB} + @cp -f ${LIBPREV} ${MY_LIB} ${AR} ${MY_LIB} ${OBJECTS} ${MODULES} - - GLOW: DEPEND @make ${EXE} glow: ${OBJECTS} ${MODULES} ${COMPILE.f77} ${Cflag3} -o ${EXE} main.o ${OBJECTS} ${MODULES} -clean: - rm -f *~ core *.o *.mod fort.* a.out *.exe *.a *.so *.protex diff --git a/srcInterface/Makefile b/srcInterface/Makefile index 76f27e94..1872a28d 100644 --- a/srcInterface/Makefile +++ b/srcInterface/Makefile @@ -36,9 +36,6 @@ ${MY_LIB}: ${GITM_LIB} ${OBJECTS} cp -f ${GITM_LIB} ${MY_LIB} ${AR} ${MY_LIB} ${OBJECTS} -clean: - rm -f *~ core *.o *.mod fort.* a.out *.exe *.a *.so *.protex - distclean: clean rm -f Makefile.DEPEND diff --git a/srcInterface/UA_wrapper.f90 b/srcInterface/UA_wrapper.f90 index a214cfbe..4cb12b1a 100644 --- a/srcInterface/UA_wrapper.f90 +++ b/srcInterface/UA_wrapper.f90 @@ -432,7 +432,8 @@ subroutine UA_put_from_ie(Buffer_IIV, iSizeIn, jSizeIn, nVarIn, & use ModNumConst, only: cPi use CON_coupler, ONLY: Grid_C, IE_, ncell_id use ModGITM, ONLY: iProcGITM => iProc - use ModEIE_Interface + use ModIE + use ModElectrodynamics, only: IEModel_ ! This gets called for each variable- external loop over all variable names. ! Namevar = Pot, Ave, and Tot. @@ -479,7 +480,7 @@ subroutine UA_put_from_ie(Buffer_IIV, iSizeIn, jSizeIn, nVarIn, & endif ! Debug: print basic coupling info: - if (DoTest .and. (iProcGITM == 0)) then + if ((DoTest .or. iDebugLevel > 3) .and. (iProcGITM == 0)) then write(*, *) NameSub//' coupling info:' write(*, *) 'UA/GITM: IE grid set to nLats x nLons = ', & iSizeIeHemi, jSizeIeHemi diff --git a/srcMake/Makefile.def b/srcMake/Makefile.def index 4f3e8732..a3fce882 100644 --- a/srcMake/Makefile.def +++ b/srcMake/Makefile.def @@ -11,7 +11,7 @@ BINDIR = ${UADIR}/src INCLDIR = ${UADIR}/share/include SHAREDIR = ${UADIR}/share/Library/src NOMPIDIR = ${UADIR}/util/NOMPI/src -EMPIRICALIEDIR = ${UADIR}/util/EMPIRICAL/srcIE +IEDIR = ${UADIR}/ext/Electrodynamics EMPIRICALUADIR = ${UADIR}/util/EMPIRICAL/srcUA DATAREADINDICESDIR = ${UADIR}/util/DATAREAD/srcIndices diff --git a/srcPython/run_plot_model_results.py b/srcPython/aetherpy/run_plot_model_results.py similarity index 100% rename from srcPython/run_plot_model_results.py rename to srcPython/aetherpy/run_plot_model_results.py diff --git a/srcPython/aetherpy/thermo_histograms.py b/srcPython/aetherpy/thermo_histograms.py new file mode 100755 index 00000000..7cf259d3 --- /dev/null +++ b/srcPython/aetherpy/thermo_histograms.py @@ -0,0 +1,154 @@ +#!/usr/bin/env python +""" Standard model visualization routines +""" + +import matplotlib as mpl +mpl.use('Agg') +import matplotlib.pyplot as plt +import numpy as np +import os +import re +from glob import glob +import argparse +import sys + +from aetherpy.io import read_routines +from aetherpy.utils import inputs, time_conversion +from useful_functions import * + +from scipy.stats import ks_2samp + +def get_args(): + + parser = argparse.ArgumentParser( + description = 'Plot Aether / GITM model histograms') + + parser.add_argument('-list', \ + action='store_true', default = False, \ + help = 'list variables in file') + parser.add_argument('-var', \ + default = 3, type = int, \ + help = 'variable to plot (number)') + parser.add_argument('-cut', metavar = 'cut', default ='alt', \ + choices = ['alt', 'lat', 'lon'], + help = 'alt,lat,lon : which cut you would like') + + parser.add_argument('-alt', metavar = 'alt', default =400.0, type = int, \ + help = 'altitude : alt in km (closest)') + parser.add_argument('-lat', metavar = 'lat', default =-100.0, \ + help = 'latitude : latitude in degrees (closest)') + parser.add_argument('-lon', metavar = 'lon', default =-100.0,\ + help = 'longitude in degrees (closest)') + + parser.add_argument('-winds', default = False,\ + help='overplot winds (doesnt do anything!!!)', \ + action="store_true") + parser.add_argument('-mean', \ + action='store_true', default = False, \ + help = '(ignored!)') + parser.add_argument('-tec', \ + action='store_true', default = False, \ + help = '(ignored!)') + + parser.add_argument('-filelist', nargs='+', \ + help = 'list files to use for generating plots') + + parser.add_argument('-list2', nargs='+', \ + help = '2nd list files to use for generating plots') + + parser.add_argument('-label', default = 'Series 1', \ + help = 'Legend label for series 1') + parser.add_argument('-label2', default = 'Series 2', \ + help = 'Legend label for series 2') + + args = parser.parse_args() + + return args + +# Get the input arguments +args = get_args() + +# first set of files: + +header = get_file_info(args) +if (args.list): + list_vars(header) + exit() +if (args.var >= len(header["vars"])): + raise ValueError("requested variable doesn't exist: {:d}>{:d}". \ + format(args.var, len(header["vars"]))) +data = read_in_model_files(args, header) + +doCompare = False +if (args.list2 != None): + filelist = args.filelist + args.filelist = args.list2 + header2 = get_file_info(args) + data2 = read_in_model_files(args, header2) + doCompare = True + +times = data['times'] +slices = data['slices'] +maxi = np.max(np.abs(slices)) * 1.01 +alpha = 1.0 +if (doCompare): + slices2 = data2['slices'] + maxi = np.max([maxi, np.max(np.abs(slices2))]) + alpha = 0.5 +nBins = 25 +if (np.min(slices) < 0): + mini = -maxi + nBins = nBins * 2 + 1 +else: + mini = np.min(slices) * 0.99 + +hist, binEdges = np.histogram(slices, bins = nBins, range = (mini, maxi)) +hist = hist / np.sum(hist) * 100.0 +binCenters = (binEdges[0:-1] + binEdges[1:])/2 + +fig = plt.figure(figsize = (10,10)) +plt.rcParams.update({'font.size': 14}) +ax = fig.add_subplot(111) + +db = binEdges[1] - binEdges[0] +ax.bar(binCenters, hist, width = db * 0.9, color = 'blue', \ + label = args.label, alpha = alpha) + +if (doCompare): + hist2, be = np.histogram(slices2, bins = nBins, range = (mini, maxi)) + hist2 = hist2 / np.sum(hist2) * 100.0 + ax.bar(binCenters, hist2, width = db * 0.9, color = 'red', \ + label = args.label2, alpha = alpha) + # Performs the two-sample Kolmogorov-Smirnov test for goodness of fit. + ks_test = ks_2samp(slices.ravel(), slices2.ravel()) + pvalue = ks_test.pvalue + sCompare = ' (Dists. are ' + if (pvalue < 0.05): + sCompare = sCompare + 'different: ' + else: + sCompare = sCompare + 'same: ' + sCompare = sCompare + '%5.3f)' % pvalue + print('pvalue = ', pvalue) + ax.legend() +else: + sCompare = '' + +print(header['vars'][args.var]) + +iVar = args.var +xtitle = header["vars"][iVar] + " at " + \ + "%5.1f" % data["z_val"] + " km Alt" + sCompare +ax.set_xlabel(xtitle) + +ax.set_ylabel('Occurance Rate (%)') + +sTime = times[0].strftime('%b %d, %Y %H:%M UT') + ' - ' + \ + times[-1].strftime('%b %d, %Y %H:%M UT') +title = header["vars"][iVar] + ' from ' + sTime +ax.set_title(title) + + +plotfile = 'test.png' +print('writing : ',plotfile) +fig.savefig(plotfile) +plt.close() diff --git a/srcPython/thermo_plot.py b/srcPython/aetherpy/thermo_plot.py similarity index 70% rename from srcPython/thermo_plot.py rename to srcPython/aetherpy/thermo_plot.py index 4bc8855c..cd4b85bc 100755 --- a/srcPython/thermo_plot.py +++ b/srcPython/aetherpy/thermo_plot.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ Standard model visualization routines """ @@ -30,14 +30,20 @@ def get_args(): parser.add_argument('-timeplot', \ action='store_true', default = False, \ help = 'Plot integrated (or mean) value vs. time') - parser.add_argument('-mean', \ action='store_true', default = False, \ help = 'Plot mean value instead of integrated value') + parser.add_argument('-timefile', default ='none', \ + help = 'output filename for timeline file') parser.add_argument('-label', \ action='store_true', default = False, \ help = 'Add label (e.g., (a), (b)..) to title') + + parser.add_argument('-color', default ='default', \ + choices = ['default', 'red'], + help = 'set color bar') + parser.add_argument('-var', \ default = 3, type = int, \ @@ -59,6 +65,9 @@ def get_args(): default =4, type = int, \ help = 'number of steps between wind quivers') + parser.add_argument('-nopole', default = False,\ + help='dont plot polar regions', \ + action="store_true") parser.add_argument('-north', default = False,\ help='only plot northern hemisphere results', \ action="store_true") @@ -75,10 +84,18 @@ def get_args(): parser.add_argument('-alog', default = False, action="store_true", help = 'plot the log of the variable') - parser.add_argument('-IsLog', default =False, help='plot the log of the variable', action="store_true") + + parser.add_argument('-mini', default = 1e32, type = float, \ + help = 'manually set the minimum value for the plots') + parser.add_argument('-maxi', default = -1e32, type = float, \ + help = 'manually set the maxiumum value for the plots') + + parser.add_argument('-percent', default = False, + action = 'store_true', + help = 'plot percentage difference of files') parser.add_argument('-diff', default = False, action = 'store_true', help = 'plot difference of files (2 files needed)') @@ -104,6 +121,9 @@ def get_args(): parser.add_argument('-tec', default = False, \ action='store_true', help = 'plot total electron content (TEC)') + parser.add_argument('-on2', default = False, \ + action='store_true', + help = 'plot O/N2 ratio') parser.add_argument('-rate', default =30,\ help = 'framerate for movie') parser.add_argument('filelist', nargs='+', \ @@ -129,6 +149,10 @@ def determine_file_type(file): return IsGitm, HasHeader +#----------------------------------------------------------------------------- +# GITM's output variables are weird. Fix them. +#----------------------------------------------------------------------------- + def fix_vars(vars): newvars = [] for v in vars: @@ -139,19 +163,52 @@ def fix_vars(vars): return newvars + +#----------------------------------------------------------------------------- +# vertically integrate the 3D data given the altitudes. +#----------------------------------------------------------------------------- + +def vertically_integrate(value, alts, calc3D = False): + [nLons, nLats, nAlts] = value.shape + integrated = np.zeros((nLons, nLats, nAlts)) + descending = np.arange(nAlts-2, -1, -1) + dz = alts[:,:,-1] - alts[:,:,-2] + integrated[:,:,-1] = value[:,:,-1] * dz + for i in descending: + dz = alts[:,:,i+1] - alts[:,:,i] + integrated[:,:,i] = integrated[:,:,i+1] + value[:,:,i] * dz + if (not calc3D): + integrated = integrated[:,:,0] + return integrated + + # ---------------------------------------------------------------------------- # Read in all of the model files: # ---------------------------------------------------------------------------- def read_in_model_files(args, header): - # Define the plotting inputs - plot_vars = [0, 1, 2, args.var] + if (args.tec): + ivar = 34 + plot_vars = [0, 1, 2, ivar] + args.var = ivar + elif (args.on2): + iO_ = 4 + iN2_ = 6 + ivar = iO_ + plot_vars = [0, 1, 2, iO_, iN2_] + else: + plot_vars = [0, 1, 2, args.var] + ivar = args.var # Update plotting variables to include the wind, if desired if args.winds: - plot_vars.append(16 if args.cut in ['alt', 'lat'] else 17) - plot_vars.append(18 if args.cut in ['lat', 'lon'] else 17) + if (ivar > 18): + plot_vars.append(37 if args.cut in ['alt', 'lat'] else 38) + plot_vars.append(39 if args.cut in ['lat', 'lon'] else 38) + else: + plot_vars.append(16 if args.cut in ['alt', 'lat'] else 17) + plot_vars.append(18 if args.cut in ['lat', 'lon'] else 17) all_winds_x = [] all_winds_y = [] @@ -164,7 +221,7 @@ def read_in_model_files(args, header): for j, filename in enumerate(header['filename']): # Read in the data file if header['IsGitm']: - print('=> Reading file : ', filename) + print('=> Reading GITM file : ', filename) data = read_routines.read_gitm_file(filename, plot_vars) ivar = args.var else: @@ -184,22 +241,26 @@ def read_in_model_files(args, header): if j == 0: # Get 1D arrays for the coordinates alts = data[2][0][0] / 1000.0 # Convert from m to km + nAlts = len(alts) + Alts3d = data[2] lons = np.degrees(data[0][:, 0, 0]) # Convert from rad to deg + nLons = len(lons) lats = np.degrees(data[1][0, :, 0]) # Convert from rad to deg + nLats = len(lats) # Find the desired index to cut along to get a 2D slice isgrid = False if (args.cut == 'lon'): - pos = args.lon + pos = float(args.lon) if (args.cut == 'lat'): - pos = args.lat - + pos = float(args.lat) if (args.cut == 'alt'): pos = args.alt if (len(alts) == 1): print("Only one alt found, setting alt pos = 0"); pos = 0 isgrid = True + print(alts) lat2d = data[1][:, :, 0] # Convert from rad to deg dlon = data[0][1, 0, 0] - data[0][0, 0, 0] dlat = data[1][0, 1, 0] - data[1][0, 0, 0] @@ -221,11 +282,30 @@ def read_in_model_files(args, header): if args.tec: all_2dim_data.append(data_prep.calc_tec(alts, data[ivar], 2, -4)) else: - all_2dim_data.append(data[ivar][cut_data]) + if (args.on2): + oDensity = data[iO_] + n2Density = data[iN2_] + # 1e21/m2 is the integration boundary. + n2Int = vertically_integrate(n2Density, Alts3d, calc3D = True) + oInt = vertically_integrate(oDensity, Alts3d, calc3D = True) + on2 = np.zeros((nLons, nLats)) + iAlts = np.arange(nAlts) + for iLat in range(nLats): + for iLon in range(nLons): + n21d = n2Int[iLon,iLat,:]/1e21 + o1d = oInt[iLon,iLat,:] + i = iAlts[n21d < 1.0][0] + r = (1.0 - n21d[i]) / (n21d[i-1] - n21d[i]) + n2 = (r * n21d[i-1] + (1.0 - r) * n21d[i]) * 1e21 + o = r * o1d[i-1] + (1.0 - r) * o1d[i] + on2[iLon, iLat] = o / n2 + all_2dim_data.append(on2) + else: + all_2dim_data.append(data[ivar][cut_data]) - if (args.winds): - all_winds_x.append(data[plot_vars[-2]][cut_data]) - all_winds_y.append(data[plot_vars[-1]][cut_data]) + if (args.winds): + all_winds_x.append(data[plot_vars[-2]][cut_data]) + all_winds_y.append(data[plot_vars[-1]][cut_data]) # Convert data list to a numpy array all_2dim_data = np.array(all_2dim_data) @@ -311,8 +391,10 @@ def rescale_data(original_data): def get_min_max_data(model_data, y_pos, args, minDomain, maxDomain): symmetric = False - cmap = mpl.cm.plasma - + if (args.color == 'default'): + cmap = mpl.cm.plasma + if (args.color == 'red'): + cmap = mpl.cm.YlOrRd mask = ((y_pos >= minDomain) & (y_pos <= maxDomain)) if (mask.max()): @@ -330,7 +412,12 @@ def get_min_max_data(model_data, y_pos, args, minDomain, maxDomain): doPlot = False mini = -1.0 maxi = 1.0 - + + if (args.mini < 1e31): + mini = args.mini + if (args.maxi > -1e31): + maxi = args.maxi + min_max_data = {'mini' : mini, 'maxi' : maxi, 'cmap' : cmap, @@ -375,11 +462,55 @@ def plot_value_vs_time(times, values, var, loc, args, filename): stime = times[0].strftime('%y%m%d') fileout = filename + '_' + stime + '.' + args.ext - print('Writing file : ' + fileout) + print(' ==> Writing file : ' + fileout) fig.savefig(fileout) return +# ---------------------------------------------------------------------------- +# Write file with value vs time +# ---------------------------------------------------------------------------- + +def write_value_vs_time(times, values, var, loc, args, filename): + + if (args.mean): + integral = 'global mean' + else: + integral = 'global integral' + + print(' ==> Writing file : ' + filename) + + fp = open(filename, "w") + fp.write("\n") + fp.write("#VAR\n") + fp.write(var + "\n") + + fp.write("\n") + fp.write("#INTEGRAL\n") + fp.write(integral + "\n") + + fp.write("\n") + fp.write("#ALTITUDE\n") + ls = "%8.2f" % (loc) + fp.write(ls + "\n") + + pwd = os.getcwd() + fp.write("\n") + fp.write("#DIRECTORY\n") + fp.write(pwd + "\n") + + fp.write("\n") + fp.write("#START\n") + + for i, t in enumerate(times): + ts = t.strftime("%Y %m %d %H %M %S ") + vs = "%e" % values[i] + fp.write(ts + vs + "\n") + + fp.close() + + return + # ---------------------------------------------------------------------------- # Plot polar region @@ -387,7 +518,7 @@ def plot_value_vs_time(times, values, var, loc, args, filename): def plot_polar_region(fig, axplot, x_pos, y_pos, values, utime, mask, whichPole, - mini, maxi, cmap, title, cbar_label): + miniPole, maxiPole, cmap, title, cbar_label): if (whichPole =='North'): ylabels = [r'80$^\circ$', r'70$^\circ$', r'60$^\circ$', @@ -417,13 +548,20 @@ def plot_polar_region(fig, axplot, x_pos, y_pos, values, z = values[mask, :] axplot.grid(False) conn = axplot.pcolormesh(xp, yp, z, - shading = 'auto', - vmin = mini, vmax = maxi, - cmap = cmap) - axplot.set_title(title) + shading = 'auto', + vmin = miniPole, vmax = maxiPole, + cmap = cmap) + axplot.text(132.0/180. * np.pi, 72.5, title, + verticalalignment = 'top', + horizontalalignment = 'left', + fontsize = 14) + axplot.text(55.0/180.0 * np.pi, 46.0, cbar_label, + verticalalignment = 'bottom', + horizontalalignment = 'left', + fontsize = 14) axplot.set_xticks(xlabelpos) axplot.set_xticklabels(xlabels) - axplot.text(-np.pi/2, 45.0, '00 LT', + axplot.text(-np.pi/2, 46.0, '00 LT', verticalalignment='top', horizontalalignment='center') axplot.text(np.pi/2, 45.0, '12 LT', verticalalignment='bottom', horizontalalignment='center') @@ -440,8 +578,7 @@ def plot_polar_region(fig, axplot, x_pos, y_pos, values, axplot.set_yticks(yticks) axplot.set_ylim([0, 45]) - cbar = fig.colorbar(conn, ax = axplot, shrink=0.5, pad=0.01) - cbar.set_label(cbar_label, rotation=90) + cbar = fig.colorbar(conn, ax = axplot, shrink=0.5, pad=0.005) return @@ -465,7 +602,8 @@ def get_min_time_index(times, utime): # ---------------------------------------------------------------------------- def plot_data_locations_polar(axplot, DataLat, DataLon, DataTime, - utime, whichPole): + utime, whichPole, data = [], + doPlotWind = False): # Find rotation for convertion to local time shift = time_conversion.calc_time_shift(utime) @@ -483,9 +621,29 @@ def plot_data_locations_polar(axplot, DataLat, DataLon, DataTime, if (doPlotDataLoc): axplot.plot((DataLon + shift - 90.0) * np.pi/180.0, r, color = 'yellow') - axplot.plot((DataLon[iTimeData] + shift - 90.0) * np.pi/180.0, - r[iTimeData], 'o', markersize = 10, color = 'yellow') + if (doPlotWind): + axplot.plot((DataLon[iTimeData] + shift - 90.0) * np.pi/180.0, + r[iTimeData], 'o', markersize = 4, color = 'yellow') + timeM = data['merid_time'] + timeZ = data['zonal_time'] + zonal = data['zonal_wind'] + merid = data['merid_wind'] + iTz_ = get_min_time_index(timeZ, utime) + iTm_ = get_min_time_index(timeM, utime) + north = merid[iTm_] + east = zonal[iTz_] + x = (DataLon[iTimeData] + shift - 90.0) * np.pi/180.0 + y = r[iTimeData] + fac = 1.0 + xwind = - fac * north * np.cos(x) - east * np.sin(x) + ywind = - fac * north * np.sin(x) + east * np.cos(x) + + axplot.quiver(x, y, xwind, ywind, scale = 2500.0, color = 'grey') + else: + axplot.plot((DataLon[iTimeData] + shift - 90.0) * np.pi/180.0, + r[iTimeData], 'o', markersize = 10, color = 'yellow') + return # ---------------------------------------------------------------------------- @@ -493,7 +651,7 @@ def plot_data_locations_polar(axplot, DataLat, DataLon, DataTime, # ---------------------------------------------------------------------------- def plot_winds_polar(axplot, x_pos, y_pos, xwinds, ywinds, - utime, mask, whichPole, nStep): + utime, mask, whichPole, nStep, scale): # Find rotation for convertion to local time shift = time_conversion.calc_time_shift(utime) @@ -518,7 +676,7 @@ def plot_winds_polar(axplot, x_pos, y_pos, xwinds, ywinds, nStepL = int(nStep / np.sin(yp[ix]*np.pi/180.0)) axplot.quiver(xp[::nStepL], yp[ix], xwind[ix][::nStepL], - ywind[ix][::nStepL], scale = 2500.0) + ywind[ix][::nStepL], scale = scale * 5.0) return @@ -567,7 +725,14 @@ def plot_model_results(): # Get the input arguments args = get_args() + noPole = args.nopole + if args.cut == 'lon': + noPole = True + if args.cut == 'lat': + noPole = True + header = get_file_info(args) + if (args.list): list_vars(header) exit() @@ -589,8 +754,16 @@ def plot_model_results(): exit() all_winds_x = data['winds_x'] - databack['winds_x'] all_winds_y = data['winds_y'] - databack['winds_y'] - all_2dim_data = data['slices'] - databack['slices'] - all_int_data = data['integrated_data'] - databack['integrated_data'] + if (args.percent): + all_2dim_data = (data['slices'] - databack['slices']) / \ + databack['slices'] + all_int_data = (data['integrated_data'] - \ + databack['integrated_data']) / \ + databack['integrated_data'] + else: + all_2dim_data = data['slices'] - databack['slices'] + all_int_data = data['integrated_data'] - \ + databack['integrated_data'] else: all_winds_x = data['winds_x'] all_winds_y = data['winds_y'] @@ -604,13 +777,31 @@ def plot_model_results(): z_val = data['z_val'] # Prepare the output filename - filename = "var{:02d}_{:s}{:03d}".format(args.var, args.cut, icut) + + if (args.tec): + sVar = 'varTEC' + varName = 'TEC' + elif (args.on2): + sVar = 'varON2' + varName = 'ON2' + else: + sVar = 'var%02d' % args.var + varName = header["vars"][args.var] + if args.alog: + sVar = sVar + 'L' + + filename = sVar + "_{:s}{:03d}".format(args.cut, icut) # ------------------------------------------------------------------ # 1-d plot: if (args.timeplot): plot_value_vs_time(all_times, all_int_data, - header["vars"][args.var], z_val, args, filename) + varName, z_val, args, + args.timefile) + if (args.timefile != "none"): + write_value_vs_time(all_times, all_int_data, + varName, z_val, args, + args.timefile) exit() # ------------------------------------------------------------------ @@ -625,6 +816,9 @@ def plot_model_results(): DataLat = hiwind['lats'] DataLon = (hiwind['lons'] + 360.0) % 360.0 DataTime = hiwind['merid_time'] + DataTimeZ = hiwind['merid_time'] + DataZonal = hiwind['zonal_wind'] + DataMerid = hiwind['merid_wind'] # Does the user want to add (a), (b), (c) labels? doLabel = False @@ -643,7 +837,12 @@ def plot_model_results(): scaled_slice_data, factorString = rescale_data(all_2dim_data) all_2dim_data = scaled_slice_data - cbar_label = header["vars"][args.var] + factorString + if (args.tec): + cbar_label = 'TEC' + elif (args.on2): + cbar_label = 'ON2' + else: + cbar_label = header["vars"][args.var] + factorString # ---------------------------------------------------------- # Define plotting limits @@ -654,6 +853,11 @@ def plot_model_results(): mini = min_max_whole['mini'] maxi = min_max_whole['maxi'] + if args.winds: + windMag = np.sqrt(all_winds_x**2 + all_winds_y**2) + windScale = np.round(np.max(windMag)) + + doPlotGlobal = True if args.cut == 'alt': min_max_north = get_min_max_data(all_2dim_data, @@ -670,13 +874,21 @@ def plot_model_results(): maxi_south = min_max_south['maxi'] mini_south = min_max_south['mini'] - doPlotGlobal = True + if (np.min(y_pos) > -40.0): + plot_south = False + if (np.max(y_pos) < 40): + plot_north = False + if (args.north or args.south): doPlotGlobal = False if (args.north): plot_south = False else: plot_north = False + if (noPole): + plot_north = False + plot_south = False + # Define plot range minx, maxx = get_boundaries(x_pos, 2) @@ -699,15 +911,26 @@ def plot_model_results(): outfile_add = '' if (doPlotGlobal): - fig = plt.figure(constrained_layout=False, figsize=(10, 8.5), - dpi = dpi) + if (noPole): + fig = plt.figure(constrained_layout=False, figsize=(10, 5.5), + dpi = dpi) + else: + fig = plt.figure(constrained_layout=False, figsize=(10, 8.5), + dpi = dpi) xSize = 10.0 * dpi ySize = 8.5 * dpi - ax = fig.add_axes([0.07, 0.06, 0.97, 0.48]) - # Top Left Graph Northern Hemisphere - ax2 = fig.add_axes([0.06, 0.55, 0.425, 0.43], projection='polar') - # Top Right Graph Southern Hemisphere - ax3 = fig.add_axes([0.535, 0.55, 0.425, 0.43], projection='polar') + if (noPole): + ax = fig.add_axes([0.07, 0.09, 0.97, 0.83]) + else: + ax = fig.add_axes([0.07, 0.06, 0.97, 0.48]) + # Top Left Graph Northern Hemisphere + if (plot_north): + ax2 = fig.add_axes([0.06, 0.55, 0.425, 0.43], + projection='polar') + # Top Right Graph Southern Hemisphere + if (plot_south): + ax3 = fig.add_axes([0.535, 0.55, 0.425, 0.43], + projection='polar') else: fig = plt.figure(constrained_layout=False, figsize=(5.4, 5)) xSize = 5.4 * dpi @@ -720,14 +943,18 @@ def plot_model_results(): ax3 = fig.add_axes(pos, projection='polar') outfile_add = 's' - title = "{:s}; {:s}: {:.2f} {:s}".format( + if ((not args.tec) and (not args.on2)): + title = "{:s}\n{:s}: {:.2f} {:s}".format( utime.strftime("%d %b %Y %H:%M:%S UT"), args.cut, z_val, 'km' if args.cut == 'alt' else r'$^\circ$') - + else: + title = utime.strftime("%d %b %Y %H:%M:%S UT") + if args.winds: + title = title + '; max wind: %.0f m/s' % windScale if (doLabel): title = '('+abc[itime]+') ' + title - pwd = os. getcwd() + pwd = os.getcwd() filename = pwd + '/' + header['filename'][itime] if (doSubtrackBack): filename = filename + ' -- ' + args.backdir @@ -767,15 +994,23 @@ def plot_model_results(): ywinds = ywind[::args.nstep, ::args.nstep] xp = np.array(x_pos)[::args.nstep] yp = np.array(y_pos)[::args.nstep] - ax.quiver(xp, yp, xwinds, ywinds, scale = 10000.0) + ax.quiver(xp, yp, xwinds, ywinds, scale = windScale * 10.0) # plot data locations: if (doPlotDataLoc): ax.plot(DataLon, DataLat, 'o', color = 'yellow', markersize=1) iTimeData = get_min_time_index(DataTime, utime) + xp = [DataLon[iTimeData]] + yp = [DataLat[iTimeData]] ax.plot(DataLon[iTimeData], DataLat[iTimeData], 'o', markersize = 10, color = 'yellow') - + if (args.winds): + yDataWind = [DataMerid[iTimeData]] + iTimeData = get_min_time_index(DataTimeZ, utime) + xDataWind = [DataZonal[iTimeData]] + ax.quiver(xp, yp, xDataWind, yDataWind, + scale = windScale * 10.0, color = 'yellow') + # Set the colorbar cbar = fig.colorbar(con, ax = ax, shrink = 0.75, pad = 0.02) cbar.set_label(cbar_label, rotation=90) @@ -785,7 +1020,9 @@ def plot_model_results(): title_temp = title # If this is an altitude slice, add polar dials - if args.cut == 'alt' and (plot_north or plot_south): + if (args.cut == 'alt') and \ + (plot_north or plot_south) and \ + (not noPole): if plot_north: plot_polar_region(fig, ax2, x_pos, y_pos, data2d, @@ -795,15 +1032,18 @@ def plot_model_results(): # overplot data locations: if (doPlotDataLoc): - plot_data_locations_polar(ax2, DataLat, DataLon, DataTime, - utime, 'North') + plot_data_locations_polar(ax2, \ + DataLat, DataLon, DataTime, \ + utime, 'North', \ + data = hiwind, \ + doPlotWind = args.winds) # Add the winds, if desired if args.winds: plot_winds_polar(ax2, x_pos, y_pos, all_winds_x[itime].transpose(), all_winds_y[itime].transpose(), - utime, mask_north, 'North', args.nstep) + utime, mask_north, 'North', args.nstep, windScale) if plot_south: plot_polar_region(fig, ax3, x_pos, y_pos, data2d, @@ -814,14 +1054,16 @@ def plot_model_results(): # overplot data locations: if (doPlotDataLoc): plot_data_locations_polar(ax3, DataLat, DataLon, DataTime, - utime, 'South') + utime, 'South', \ + data = hiwind, \ + doPlotWind = args.winds) # Add the winds, if desired if args.winds: plot_winds_polar(ax3, x_pos, y_pos, all_winds_x[itime].transpose(), all_winds_y[itime].transpose(), - utime, mask_south, 'South', args.nstep) + utime, mask_south, 'South', args.nstep, windScale) # Format the output filename if args.movie > 0: @@ -831,7 +1073,7 @@ def plot_model_results(): outfile = img_file_fmt.format(fmt_input) # Save the output file - print("Writing file : ", outfile) + print(" ==> Writing file : ", outfile) fig.savefig(outfile, dpi = dpi) plt.close(fig) diff --git a/srcPython/apf107_temp.txt b/srcPython/apf107_temp.txt new file mode 100644 index 00000000..af375137 --- /dev/null +++ b/srcPython/apf107_temp.txt @@ -0,0 +1,24613 @@ + 58 1 1 80 94 56 27 18 22 56 27 48-11257.0262.5241.9 + 58 1 2 32 32 27 27 22 9 9 6 21-11263.0261.7241.8 + 58 1 3 7 4 2 6 4 4 3 3 4-11262.0261.0241.8 + 58 1 4 3 3 2 4 3 2 3 7 3-11261.0260.3241.8 + 58 1 5 15 9 5 5 7 6 3 2 7-11246.0259.5241.8 + 58 1 6 4 6 7 7 12 9 5 6 7-11254.0258.8241.9 + 58 1 7 7 7 6 6 12 4 5 4 6-11255.0257.9241.9 + 58 1 8 5 4 7 7 7 7 3 2 5-11255.0257.0242.0 + 58 1 9 6 5 5 12 18 15 18 18 12-11259.0256.2242.1 + 58 1 10 27 7 6 9 12 7 6 4 10-11274.0254.9242.1 + 58 1 11 18 9 5 15 9 15 18 9 12-11273.0253.4242.2 + 58 1 12 15 22 15 12 15 12 9 9 14-11290.0252.2242.2 + 58 1 13 18 22 12 6 9 12 27 18 16-11310.0250.9242.2 + 58 1 14 6 4 15 18 12 15 12 39 15-11321.0249.8242.2 + 58 1 15 7 15 22 15 22 15 15 12 15-11309.0249.0242.1 + 58 1 16 4 9 12 15 12 15 18 22 13-11297.0248.2242.0 + 58 1 17 12 22 22 22 22 22 22 32 22-11285.0247.9241.9 + 58 1 18 32 32 48 39 32 22 22 9 30-11260.0247.3241.9 + 58 1 19 9 12 9 9 22 12 12 7 12-11238.0246.9241.8 + 58 1 20 7 5 12 22 18 18 22 56 20-11251.0246.7241.7 + 58 1 21 67111 22 27 12 9 12 7 33-11239.0246.7241.7 + 58 1 22 12 15 27 27 39 9 15 9 19-11227.0246.9241.6 + 58 1 23 22 22 18 18 32 18 27 15 22-11210.0247.0241.5 + 58 1 24 5 12 4 22 27 12 6 5 12-11211.0247.0241.5 + 58 1 25 15 15 12 27 32 32 12 5 19-11206.0247.2241.6 + 58 1 26 12 48 22 7 4 12 12 12 16-11220.0247.3241.6 + 58 1 27 9 7 6 5 3 5 9 22 8-11200.0247.0241.8 + 58 1 28 5 3 12 15 7 7 5 5 7-11189.0246.5242.1 + 58 1 29 12 32 18 12 6 12 12 6 14-11194.0245.9242.3 + 58 1 30 4 15 15 9 12 7 6 4 9-11181.0244.7242.6 + 58 1 31 7 6 6 9 6 6 9 18 8-11187.0243.2242.8 + 58 2 1 12 3 9 9 15 5 6 12 9-11195.0241.7242.9 + 58 2 2 12 9 12 15 9 5 6 2 9-11217.0239.8243.0 + 58 2 3 3 5 4 5 15 5 7 7 6-11222.0237.9243.1 + 58 2 4 12 2 4 15 22 18 39 22 17-11233.0236.1243.2 + 58 2 5 18 32 22 27 39 22 39 39 30-11249.0234.3243.3 + 58 2 6 27 32 32 32 32 39 15 32 30-11252.0232.6243.5 + 58 2 7 27 22 27 27 18 27 27 27 25-11257.0231.4243.6 + 58 2 8 22 39 27 27 22 22 27 27 27-11250.0230.8243.8 + 58 2 9 27 27 7 12 12 18 27 15 18-11234.0230.2243.9 + 58 2 10 27 22 6 7 9 48 39 32 24-11231.0230.0244.1 + 58 2 11400236300236207 56 80 80199-11228.0230.1244.2 + 58 2 12 80 67 94 56 27 39 80 32 59-11226.0230.3244.4 + 58 2 13 22 6 18 22 32 22 15 9 18-11222.0230.2244.5 + 58 2 14 27 48 27 15 18 32 9 7 23-11210.0230.5244.6 + 58 2 15 6 4 4 9 9 12 9 12 8-11202.0231.2244.7 + 58 2 16 9 3 5 18 15 27 18 15 14-11187.0231.7244.7 + 58 2 17 27 39 27 22 39 27 39 27 31-11183.0232.7244.7 + 58 2 18 27 48 32 32 27 18 48 22 32-11177.0233.8244.7 + 58 2 19 32 22 39 22 18 15 27 22 25-11173.0234.7244.7 + 58 2 20 22 27 15 27 27 15 39 39 26-11172.0235.4244.8 + 58 2 21 18 39 32 22 32 15 39 48 31-11175.0236.1245.0 + 58 2 22 39 27 22 27 22 15 22 27 25-11176.0236.2245.1 + 58 2 23 32 27 27 22 15 18 15 12 21-11194.0236.0245.3 + 58 2 24 9 12 7 12 12 6 6 3 8-11206.0235.7245.4 + 58 2 25 3 7 12 7 3 3 5 3 5-11207.0235.4245.5 + 58 2 26 7 7 12 7 5 4 6 5 7-11205.0235.2245.6 + 58 2 27 12 4 4 4 6 7 18 22 10-11197.0235.1245.6 + 58 2 28 7 9 18 27 32 12 9 7 15-11196.0235.0245.7 + 58 3 1 18 5 4 4 6 4 4 6 6-11195.0235.0245.6 + 58 3 2 3 7 18 12 6 2 2 5 7-11209.0234.6245.5 + 58 3 3 4 7 7 18 22 27 48 32 21-11223.0234.1245.5 + 58 3 4 48 39 27 22 27 18 27 18 28-11232.0233.5245.5 + 58 3 5 18 27111 48 27 22 22 39 39-11233.0233.1245.5 + 58 3 6 56 56 27 27 32 27 27 32 36-11251.0232.8245.6 + 58 3 7 22 56 32 22 22 22 18 18 27-11256.0232.7245.5 + 58 3 8 48 32 32 18 18 7 12 12 22-11251.0232.5245.5 + 58 3 9 27 27 22 27 22 15 12 6 20-11255.0232.7245.5 + 58 3 10 22 27 9 12 18 22 22 12 18-11242.0233.1245.4 + 58 3 11 27 6 4 15 22 27 39 39 22-11235.0233.5245.5 + 58 3 12132132111 39 32 32 22 15 64-11232.0234.1245.5 + 58 3 13 39 56 67 48 67 48 48 9 48-11238.0234.7245.4 + 58 3 14 12 5 3 6 67 39 12 12 20-11227.0235.2245.4 + 58 3 15 9 32 39 39 22 27 12 7 23-11217.0235.5245.4 + 58 3 16 39 32 9 9 5 7 12 18 16-11214.0235.7245.5 + 58 3 17 12 18 39 48 27 27 39 6 27-11208.0235.9245.6 + 58 3 18 15 27 39 12 32 67 56 22 34-11210.0235.9245.6 + 58 3 19 27 32 39 27 39 56 67 67 44-11220.0235.9245.5 + 58 3 20 48 48 32 27 22 27 48 48 38-11232.0235.9245.4 + 58 3 21 27 48 27 18 39 48 18 39 33-11224.0236.1245.3 + 58 3 22 80 39 7 6 12 6 7 32 24-11266.0236.5245.1 + 58 3 23 27 27 18 18 12 15 39 9 21-11268.0237.0244.8 + 58 3 24 18 27 18 18 22 48 39 27 27-11274.0237.7244.6 + 58 3 25 48 18 27 18 22 80 27 27 33-11258.0238.3244.4 + 58 3 26 18 15 9 27 48 56 22 22 27-11284.0238.9244.2 + 58 3 27 27 12 12 15 6 15 15 32 17-11302.0239.6244.1 + 58 3 28 12 18 15 6 6 32 15 15 15-11295.0240.1244.0 + 58 3 29 22 18 7 5 3 12 7 7 10-11332.0240.8243.9 + 58 3 30 5 4 32 39 56 67 27 22 32-11344.0241.4243.8 + 58 3 31 15 32 18 15 15 18 15 15 18-11338.0241.8243.7 + 58 4 1 22 22 12 12 18 18 27 22 19-11331.0242.3243.6 + 58 4 2 18 32 56 48 32 48 22 18 34-11326.0242.8243.5 + 58 4 3 32 27 18 12 9 9 18 22 18-11302.0243.1243.4 + 58 4 4 18 22 22 22 39 27 67 67 36-11295.0243.3243.3 + 58 4 5 39 56 27 22 18 18 12 18 26-11290.0243.4243.2 + 58 4 6 27 12 15 27 15 22 18 48 23-11289.0243.2243.1 + 58 4 7 18 27 15 15 15 15 18 15 17-11283.0243.0242.9 + 58 4 8 12 12 6 6 6 7 9 15 9-11272.0243.0242.8 + 58 4 9 9 18 4 4 4 6 12 15 9-11250.0243.0242.6 + 58 4 10 5 4 4 4 4 4 5 9 5-11244.0243.0242.3 + 58 4 11 7 9 3 9 4 5 6 15 7-11216.0243.0242.1 + 58 4 12 2 4 3 5 4 7 7 12 6-11196.0242.9241.9 + 58 4 13 7 5 7 4 4 5 6 6 6-11179.0242.7241.8 + 58 4 14 6 7 9 32 39 27 18 18 20-11177.0242.4241.6 + 58 4 15 39 48 32 15 12 12 22 18 25-11188.0242.1241.4 + 58 4 16 27 27 32 27 27 27 39 48 32-11197.0241.6241.3 + 58 4 17 67 48 32 27 32 80 67 80 54-11207.0240.9241.2 + 58 4 18 48 56 39 27 32 48 48 56 44-11213.0240.3241.3 + 58 4 19 22 18 15 32 18 22 32 32 24-11221.0239.9241.2 + 58 4 20 15 22 22 6 12 12 12 22 15-11226.0239.5241.2 + 58 4 21 7 18 9 12 12 15 7 32 14-11229.0239.2241.2 + 58 4 22 9 9 9 9 4 5 5 2 7-11237.0239.0241.2 + 58 4 23 0 0 3 7 7 18 7 15 7-11235.0238.8241.2 + 58 4 24 18 27 22 7 7 18 6 12 15-11244.0238.8241.0 + 58 4 25 22 22 7 7 18 5 4 2 11-11241.0239.2240.9 + 58 4 26 2 2 4 4 12 39 32 9 13-11245.0239.7240.7 + 58 4 27 4 6 9 4 5 15 22 15 10-11247.0240.3240.5 + 58 4 28 18 27 18 18 27 22 27 39 25-11258.0240.7240.2 + 58 4 29 39 56 27 27 27 32 18 22 31-11255.0240.8239.9 + 58 4 30 32 32 27 18 18 32 32 39 29-11265.0241.1239.5 + 58 5 1 22 15 18 22 9 22 27 32 21-11266.0241.2239.2 + 58 5 2 15 27 12 7 3 5 12 6 11-11276.0240.8239.0 + 58 5 3 6 12 3 6 5 5 7 9 7-11278.0240.3238.8 + 58 5 4 12 9 15 6 6 5 3 12 9-11280.0239.6238.6 + 58 5 5 9 12 6 4 5 12 22 22 12-11269.0239.0238.5 + 58 5 6 18 12 9 6 5 5 5 4 8-11263.0238.0238.5 + 58 5 7 5 6 6 5 3 3 7 12 6-11249.0236.6238.4 + 58 5 8 6 6 7 6 18 12 12 22 11-11236.0235.2238.3 + 58 5 9 7 6 22 15 15 4 6 7 10-11239.0233.3238.2 + 58 5 10 15 12 12 27 22 27 27 18 20-11209.0231.4238.1 + 58 5 11 3 3 18 22 7 12 9 4 10-11211.0229.6238.0 + 58 5 12 2 2 7 5 7 27 32 32 14-11209.0227.9237.8 + 58 5 13 22 9 15 18 39 32 32 67 29-11203.0226.5237.6 + 58 5 14 67 32 48 22 39 22 32 39 38-11194.0225.4237.3 + 58 5 15 27 48 22 12 18 27 39 22 27-11196.0224.5237.1 + 58 5 16 27 18 12 9 15 27 12 7 16-11194.0223.7236.9 + 58 5 17 15 22 9 12 22 18 18 18 17-11194.0223.0236.7 + 58 5 18 32 12 12 18 15 22 15 15 18-11197.0222.5236.5 + 58 5 19 7 15 22 6 7 5 9 12 10-11197.0222.0236.3 + 58 5 20 6 4 3 5 5 3 4 7 5-11197.0221.6236.1 + 58 5 21 12 15 6 2 4 4 5 3 6-11199.0221.3235.9 + 58 5 22 4 3 3 5 9 7 3 5 5-11199.0221.3235.7 + 58 5 23 9 4 3 3 3 3 4 4 4-11206.0221.5235.5 + 58 5 24 0 2 2 4 5 3 2 2 3-11211.0222.0235.3 + 58 5 25 2 5 4 3 2 12 18 32 10-11207.0222.7235.1 + 58 5 26 27 18 15 32111 67 18 27 39-11210.0223.3234.9 + 58 5 27 15 12 9 27 32 22 27 48 24-11201.0223.8234.8 + 58 5 28 39 22 15 6 12 12 18 18 18-11202.0224.1234.9 + 58 5 29 48 48 67 94 67 39 39 18 53-11219.0224.4234.9 + 58 5 30 18 18 12 7 7 9 5 18 12-11213.0224.3234.9 + 58 5 31 9 27 7 18 32 94179207 72-11209.0224.1234.9 + 58 6 1179 94 67 18 12 27 48 32 60-11219.0223.8234.9 + 58 6 2 32 18 32 27 39 32 22 3 26-11220.0223.2234.8 + 58 6 3 3 5 5 6 7 12 5 3 6-11227.0222.7234.8 + 58 6 4 5 9 5 6 4 6 5 3 5-11246.0221.9234.7 + 58 6 5 3 5 6 5 12 22 5 5 8-11256.0221.1234.6 + 58 6 6 3 9 15 9 4 12 15 56 15-11260.0220.5234.5 + 58 6 7179132 94132 27 18 22 12 77-11238.0219.8234.5 + 58 6 8 5 5 5 6 4 18 32 32 13-11233.0218.9234.5 + 58 6 9 48 9 22 18 22 22 39 80 33-11252.0218.3234.6 + 58 6 10 56 39 27 22 22 18 22 39 31-11234.0217.5234.6 + 58 6 11 18 27 12 18 18 18 18 18 18-11235.0216.8234.8 + 58 6 12 6 22 18 18 12 18 12 12 15-11227.0216.0234.9 + 58 6 13 9 15 9 5 3 7 15 9 9-11220.0215.2235.0 + 58 6 14 6 3 7 6 5 4 48 39 15-11208.0214.6235.2 + 58 6 15 15 39 56 32 9 7 7 3 21-11197.0214.2235.2 + 58 6 16 12 6 18 12 18 7 5 4 10-11191.0214.2235.2 + 58 6 17 4 7 4 5 4 2 5 5 5-11182.0214.3235.1 + 58 6 18 3 3 3 5 9 9 12 9 7-11177.0215.0234.9 + 58 6 19 5 5 6 5 6 18 15 12 9-11189.0215.6234.7 + 58 6 20 12 3 4 4 6 4 5 22 8-11193.0216.5234.4 + 58 6 21 22 39 32 94 94 94 94 56 66-11194.0217.5234.0 + 58 6 22 80 39 56 39 22 9 22 39 38-11213.0218.3233.6 + 58 6 23 22 18 18 6 9 12 15 7 13-11217.0218.9233.2 + 58 6 24 15 22 22 15 18 15 15 22 18-11221.0219.5232.8 + 58 6 25 15 15 12 22 9 15 18 18 16-11226.0219.7232.4 + 58 6 26 9 9 7 6 7 9 6 9 8-11233.0220.0232.0 + 58 6 27 9 6 9 6 5 5 5 15 8-11237.0220.6231.7 + 58 6 28 9 18 27 22 15 39132179 55-11232.0221.1231.4 + 58 6 29132207111 56179 94 32 12103-11220.0221.5231.1 + 58 6 30 7 12 6 5 6 12 15 9 9-11217.0221.9230.9 + 58 7 1 48 18 18 12 15 12 6 6 17-11215.0222.2230.8 + 58 7 2 3 5 6 5 7 7 9 9 6-11215.0222.5230.6 + 58 7 3 12 7 15 12 9 39 15 9 15-11224.0222.7230.6 + 58 7 4 7 12 27 22 22 39 22 18 21-11232.0223.0230.5 + 58 7 5 9 6 7 12 15 7 7 27 11-11238.0223.3230.5 + 58 7 6 12 9 4 4 5 4 5 2 6-11232.0223.6230.6 + 58 7 7 3 6 9 27 18 18 32 22 17-11237.0223.8230.7 + 58 7 8 15 12154179236400300300200-11232.0223.9230.8 + 58 7 9 94 67 80132 94 48 15 67 75-11218.0223.9230.9 + 58 7 10 48 18 12 9 12 7 9 22 17-11208.0224.0231.0 + 58 7 11 22 9 12 9 9 9 27 22 15-11203.0224.1231.0 + 58 7 12 27 18 27 32 18 22 18 7 21-11188.0224.2231.0 + 58 7 13 22 18 22 9 6 15 5 22 15-11191.0224.5231.0 + 58 7 14 15 18 27 18 9 12 6 5 14-11182.0224.7230.9 + 58 7 15 5 7 5 5 7 4 7 7 6-11181.0224.8230.7 + 58 7 16 7 7 4 5 7 6 5 12 7-11192.0224.8230.4 + 58 7 17 27 39 27 18 6 5 4 3 16-11188.0224.9230.1 + 58 7 18 15 18 48 22 56 48 39 27 34-11190.0225.1229.9 + 58 7 19 12 15 48 12 12 7 48 48 25-11205.0225.2229.7 + 58 7 20 27 39 22 18 18 27 12 12 22-11200.0225.2229.7 + 58 7 21 12 15 22 9 9111154 94 53-11209.0225.4229.7 + 58 7 22 32 18 12 18 48 15 12 7 20-11214.0225.7229.9 + 58 7 23 6 5 5 7 9 4 5 9 6-11213.0226.1230.1 + 58 7 24 12 7 6 7 27 39 27 18 18-11228.0226.9230.4 + 58 7 25 7 9 22 32 32 22 32 27 23-11240.0227.6230.7 + 58 7 26 27 15 9 15 6 5 7 5 11-11260.0228.3231.0 + 58 7 27 9 22 48 32 39 9 39 27 28-11261.0228.9231.3 + 58 7 28 27 12 9 4 4 4 9 12 10-11290.0229.3231.6 + 58 7 29 9 9 3 4 5 6 27 9 9-11285.0229.7231.9 + 58 7 30 6 9 9 6 9 22 15 18 12-11287.0230.0232.3 + 58 7 31 7 5 9 12 7 56 18 9 15-11288.0230.5232.6 + 58 8 1 9 6 4 27 32 12 18 9 15-11274.0231.1232.8 + 58 8 2 7 7 9 15 22 15 9 9 12-11254.0231.6232.9 + 58 8 3 22 15 12 9 12 7 3 3 10-11237.0232.2232.9 + 58 8 4 4 6 5 4 5 4 4 4 5-11216.0233.0232.9 + 58 8 5 5 4 5 6 7 4 4 4 5-11221.0233.8232.8 + 58 8 6 6 5 3 5 3 4 4 7 5-11239.0234.3232.8 + 58 8 7 4 5 15 15 27 7 15 5 12-11235.0234.6232.6 + 58 8 8 4 4 3 4 7 9 2 3 5-11236.0234.9232.4 + 58 8 9 12 9 4 3 5 6 5 12 7-11225.0235.2232.2 + 58 8 10 7 6 15 18 18 27 22 15 16-11222.0235.6232.1 + 58 8 11 15 12 18 32 9 7 15 9 15-11225.0235.8231.9 + 58 8 12 7 12 15 12 7 3 15 12 10-11222.0235.8231.8 + 58 8 13 15 12 22 18 6 9 5 5 12-11236.0236.1231.7 + 58 8 14 7 4 4 2 0 9 9 18 7-11235.0236.1231.6 + 58 8 15 9 18 6 7 7 7 7 9 9-11231.0235.9231.6 + 58 8 16 22 12 7 6 12 22 15 4 13-11215.0235.8231.5 + 58 8 17 5 6 80 32111154154111 82-11211.0235.6231.6 + 58 8 18 48 39 22 18 12 7 7 7 20-11218.0235.4231.6 + 58 8 19 15 18 12 15 6 9 9 7 11-11219.0235.5231.7 + 58 8 20 6 7 7 4 6 6 3 5 6-11220.0235.7231.9 + 58 8 21 5 4 2 9 7 7 5 12 6-11231.0236.0232.0 + 58 8 22 67 67 67 22 12 15 15 7 34-11239.0236.6232.1 + 58 8 23 4 22 18 9 9 15 15 15 13-11243.0236.9232.3 + 58 8 24154179 80111 94 27 18 15 85-11253.0237.4232.4 + 58 8 25 27 27 18 15 39 5 7 5 18-11263.0237.8232.4 + 58 8 26 6 18 18 27 18 7 9 12 14-11264.0237.9232.5 + 58 8 27 32 80111111 48 27 80 22 64-11252.0237.9232.5 + 58 8 28 6 7 12 15 12 15 22 12 13-11244.0237.9232.6 + 58 8 29 6 9 9 18 15 6 15 12 11-11252.0237.7232.6 + 58 8 30 9 9 9 7 15 9 6 9 9-11249.0237.6232.6 + 58 8 31 7 9 7 6 6 15 4 0 7-11259.0237.4232.6 + 58 9 1 0 2 5 12 9 7 3 3 5-11261.0237.4232.5 + 58 9 2 5 5 5 5 6 4 3 4 5-11281.0237.5232.4 + 58 9 3 7 6 27 56111 80111111 64-11270.0237.4232.3 + 58 9 4 48 32 18 22154300236236131-11256.0237.3232.1 + 58 9 5207179 32 27 18 22 67 15 71-11233.0236.9231.9 + 58 9 6 9 9 6 5 6 6 6 5 7-11216.0236.8231.8 + 58 9 7 6 18 9 15 15 18 22 27 16-11210.0236.8231.6 + 58 9 8 32 18 9 12 6 22 5 56 20-11211.0236.8231.4 + 58 9 9 27 15 15 22 39 22 22 39 25-11235.0236.9231.3 + 58 9 10 18 9 7 7 18 15 7 12 12-11245.0236.8231.2 + 58 9 11 9 9 7 7 5 6 7 5 7-11250.0236.8231.1 + 58 9 12 7 7 4 5 3 5 5 3 5-11270.0237.0231.0 + 58 9 13 2 2 4 3 3 3 5 4 3-11285.0237.0231.0 + 58 9 14 0 4 5 6 5 4 5 4 4-11290.0237.2231.1 + 58 9 15 3 3 4 6 5 7 12 9 6-11271.0236.8231.1 + 58 9 16 18 39 27 39 56 56 56 32 40-11263.0236.2231.3 + 58 9 17 27 27 9 9 18 7 5 3 13-11259.0235.7231.5 + 58 9 18 2 3 3 4 3 6 7 5 4-11246.0235.4231.6 + 58 9 19 3 2 4 7 7 2 5 3 4-11243.0235.3231.8 + 58 9 20 4 5 5 3 3 3 6 6 4-11231.0235.4231.9 + 58 9 21 5 2 3 4 4 4 6 4 4-11221.0235.3231.9 + 58 9 22 4 2 2 3 2 5 7 3 4-11249.0235.5231.9 + 58 9 23 6 6 6 4 3 3 3 7 5-11226.0235.5231.8 + 58 9 24 12 3 4 6 6 4 4 9 6-11225.0235.4231.8 + 58 9 25 18 80 80 80 94 94 80132 82-11222.0235.3231.7 + 58 9 26 48 48 22 27 18 18 9 9 25-11218.0235.4231.6 + 58 9 27 6 6 9 12 9 12 9 15 10-11219.0235.3231.4 + 58 9 28 15 18 9 12 5 5 3 0 8-11225.0235.1231.2 + 58 9 29 2 9 7 9 5 3 2 2 5-11227.0234.8231.0 + 58 9 30 4 3 5 22 22 22 39 39 20-11228.0234.3230.7 + 58 10 1 6 18 32 9 5 6 12 32 15-11231.0233.5230.5 + 58 10 2 27 22 15 6 4 4 3 9 11-11221.0232.6230.3 + 58 10 3 7 27 22 12 27 27 18 5 18-11219.0231.7230.0 + 58 10 4 4 4 7 3 7 4 3 5 5-11215.0230.6229.8 + 58 10 5 22 7 12 9 9 12 15 18 13-11199.0229.4229.6 + 58 10 6 5 12 5 9 22 7 15 18 12-11189.0228.1229.3 + 58 10 7 9 15 15 15 9 18 9 18 14-11189.0227.1229.1 + 58 10 8 22 22 15 6 4 3 3 6 10-11187.0226.2229.0 + 58 10 9 5 6 3 6 4 4 5 4 5-11192.0225.3228.9 + 58 10 10 3 4 4 2 3 7 5 3 4-11198.0224.5228.8 + 58 10 11 7 4 6 5 4 4 5 9 6-11210.0223.6228.8 + 58 10 12 3 2 2 3 3 5 5 4 3-11219.0222.8228.9 + 58 10 13 2 7 7 15 7 5 7 4 7-11225.0221.8229.0 + 58 10 14 4 9 4 7 12 5 6 7 7-11228.0221.0229.1 + 58 10 15 15 9 9 9 9 6 12 7 10-11230.0220.7229.1 + 58 10 16 6 27 15 6 5 5 4 5 9-11253.0220.8229.0 + 58 10 17 7 18 9 4 5 9 12 7 9-11286.0221.4229.0 + 58 10 18 9 12 12 6 5 7 4 6 8-11286.0222.1228.9 + 58 10 19 4 7 5 9 9 18 7 9 9-11296.0222.7228.8 + 58 10 20 12 3 3 3 3 6 7 15 7-11278.0223.1228.8 + 58 10 21 7 15 6 7 6 3 4 4 7-11277.0223.3228.7 + 58 10 22 3 56 80 39 18 56 67 56 47-11270.0223.5228.6 + 58 10 23 39 56 67 48 39 32 39 32 44-11240.0223.4228.5 + 58 10 24 39 48111 94111132 94 80 89-11227.0222.9228.5 + 58 10 25 27 15 18 6 4 4 4 4 10-11191.0222.3228.4 + 58 10 26 3 7 22 12 9 12 15 7 11-11194.0222.0228.3 + 58 10 27 18 18 9 9 6 32 94 56 30-11191.0221.9228.2 + 58 10 28 18 12 56 56 48 39 39 27 37-11209.0221.8228.1 + 58 10 29 22 18 12 12 7 15 32 39 20-11220.0222.0228.0 + 58 10 30 18 12 15 18 18 22 18 32 19-11228.0222.1227.8 + 58 10 31 12 18 9 12 9 22 7 6 12-11222.0222.6227.7 + 58 11 1 5 5 7 9 9 7 6 7 7-11234.0223.0227.4 + 58 11 2 4 2 5 7 12 56 32 12 16-11241.0223.1227.2 + 58 11 3 15 27 7 9 15 7 7 7 12-11224.0223.5227.0 + 58 11 4 7 15 4 12 18 4 9 7 10-11220.0223.9226.7 + 58 11 5 3 2 4 3 2 4 2 2 3-11222.0224.1226.6 + 58 11 6 2 2 3 3 3 3 4 5 3-11204.0224.1226.5 + 58 11 7 3 4 5 9 9 9 4 6 6-11206.0223.9226.5 + 58 11 8 2 3 4 6 2 4 2 3 3-11191.0223.6226.5 + 58 11 9 2 9 7 5 3 2 3 3 4-11180.0223.1226.6 + 58 11 10 3 9 12 32 7 15 15 7 13-11169.0222.8226.8 + 58 11 11 48 32 22 9 9 5 5 3 17-11166.0222.3226.9 + 58 11 12 3 6 4 12 22 9 9 9 9-11166.0222.2227.1 + 58 11 13 12 15 7 5 3 4 3 3 7-11163.0222.2227.2 + 58 11 14 5 3 2 0 3 3 2 7 3-11166.0222.3227.3 + 58 11 15 6 6 12 5 9 2 2 3 6-11166.0222.7227.4 + 58 11 16 9 18 12 12 12 7 2 3 9-11169.0223.3227.5 + 58 11 17 6 12 18 12 6 6 5 6 9-11173.0223.8227.5 + 58 11 18 4 3 15 6 9 7 9 15 9-11174.0224.2227.5 + 58 11 19 6 5 6 6 6 7 2 2 5-11183.0224.5227.6 + 58 11 20 5 5 3 6 5 5 2 0 4-11187.0224.9227.6 + 58 11 21 4 2 4 6 4 6 2 2 4-11194.0225.0227.6 + 58 11 22 6 5 2 4 4 2 2 2 3-11200.0225.2227.5 + 58 11 23 5 3 6 12 15 6 3 3 7-11213.0225.6227.5 + 58 11 24 0 0 9 18 18 9 7 7 9-11229.0226.0227.5 + 58 11 25 3 5 4 4 15 22 15 15 10-11243.0226.5227.5 + 58 11 26 15 12 4 6 7 9 9 6 9-11264.0226.9227.5 + 58 11 27 5 15 7 12 9 12 7 7 9-11268.0227.0227.5 + 58 11 28 18 27 27 22 27 12 9 6 19-11259.0227.2227.4 + 58 11 29 12 18 15 15 12 15 2 4 12-11263.0227.0227.3 + 58 11 30 0 3 2 4 4 2 0 0 2-11264.0226.9227.2 + 58 12 1 0 0 0 3 4 5 4 2 2-11268.0226.9227.1 + 58 12 2 6 5 6 22 32 27 27 56 23-11259.0226.8227.1 + 58 12 3 18 15 5 5 3 4 4 3 7-11241.0227.0227.0 + 58 12 4 22 15 27 56 67 56111 80 54-11241.0227.0226.8 + 58 12 5132 32 18 12 7 7 5 7 28-11253.0227.5226.7 + 58 12 6 7 5 5 22 22 15 5 12 12-11249.0227.6226.5 + 58 12 7 6 12 9 5 5 4 3 3 6-11253.0227.9226.4 + 58 12 8 2 0 2 7 9 15 27 18 10-11260.0228.0226.4 + 58 12 9 22 15 27 12 6 7 3 3 12-11254.0228.2226.3 + 58 12 10 4 7 9 3 2 3 0 2 4-11269.0228.7226.3 + 58 12 11 5 7 7 12 7 5 5 18 8-11256.0229.6226.2 + 58 12 12 7 7 0 5 5 4 7 9 6-11257.0230.6226.2 + 58 12 13 56 56 18 15 67 48 80 56 50-11260.0231.8226.2 + 58 12 14 22 15 6 7 27 18 27 27 19-11258.0233.0226.2 + 58 12 15 7 7 4 12 7 12 18 12 10-11235.0234.5226.3 + 58 12 16 27 32 9 22 18 9 7 4 16-11217.0235.7226.4 + 58 12 17 6 4 6 9 6 32 94 80 30-11204.0237.0226.5 + 58 12 18132 67 15 12 18 5 4 12 33-11202.0238.4226.6 + 58 12 19 32 39 18 27 22 15 12 6 21-11187.0240.0226.7 + 58 12 20 12 18 18 18 15 15 12 9 15-11199.0241.5226.8 + 58 12 21 9 7 12 7 9 6 7 5 8-11198.0242.7226.9 + 58 12 22 15 4 7 6 9 7 15 9 9-11211.0243.4226.9 + 58 12 23 5 4 12 15 18 18 15 9 12-11215.0243.9226.9 + 58 12 24 9 7 9 7 7 5 5 6 7-11224.0244.4227.0 + 58 12 25 0 0 2 6 5 5 6 12 5-11231.0244.9227.0 + 58 12 26 9 9 4 7 18 18 18 18 13-11238.0245.3227.0 + 58 12 27 9 15 15 15 18 12 5 7 12-11227.0245.6227.0 + 58 12 28 18 12 15 12 15 15 12 9 14-11223.0245.8227.0 + 58 12 29 15 7 6 6 12 6 9 15 10-11219.0245.9227.0 + 58 12 30 12 6 9 9 22 15 12 12 12-11224.0245.9226.9 + 58 12 31 9 5 7 5 12 6 9 3 7-11226.0245.8226.9 + 59 1 1 0 0 2 3 3 2 0 0 1-11235.0245.7226.8 + 59 1 2 0 0 2 6 6 5 4 4 3-11250.0245.7226.6 + 59 1 3 7 9 9 7 7 4 6 2 6-11266.0245.5226.5 + 59 1 4 4 3 6 7 9 12 7 5 7-11270.0245.2226.3 + 59 1 5 7 5 4 22 27 27 39 67 25-11282.0244.6226.2 + 59 1 6 39 27 15 18 27 22 27 18 24-11294.0244.0226.0 + 59 1 7 32 22 18 15 6 7 22 27 19-11306.0243.3225.9 + 59 1 8 27 15 9 15 9 15 22 32 18-11278.0242.9225.8 + 59 1 9 39 9 7 12 22 80 39 94 38-11268.0242.3225.8 + 59 1 10 67 48 39 48 39 32 56 32 45-11282.0241.7225.8 + 59 1 11 39 9 7 5 9 7 15 22 14-11260.0241.2225.9 + 59 1 12 27 9 4 7 12 15 15 15 13-11251.0240.8226.0 + 59 1 13 6 7 12 12 6 9 15 4 9-11235.0240.5226.3 + 59 1 14 2 3 15 9 9 5 6 12 8-11224.0240.2226.4 + 59 1 15 7 22 15 9 5 4 3 3 9-11207.0239.8226.6 + 59 1 16 5 2 7 32 27 22 22 22 17-11213.0239.5226.8 + 59 1 17 12 27 18 18 27 22 12 7 18-11220.0239.1226.9 + 59 1 18 22 27 15 12 15 27 15 18 19-11237.0238.5226.9 + 59 1 19 7 15 12 12 9 7 12 5 10-11265.0237.8227.0 + 59 1 20 3 0 4 5 4 4 5 6 4-11294.0236.8226.9 + 59 1 21 2 0 4 4 5 4 5 2 3-11315.0235.9226.8 + 59 1 22 3 7 15 6 6 6 6 6 7-11337.0234.9226.7 + 59 1 23 15 6 5 12 15 5 5 4 8-11328.0233.9226.6 + 59 1 24 6 6 7 3 3 4 2 2 4-11334.0233.0226.4 + 59 1 25 4 4 3 22 32 32 32 12 18-11321.0232.4226.2 + 59 1 26 5 22 6 32 80 22 5 2 22-11314.0232.0226.0 + 59 1 27 0 7 12 15 12 9 7 7 9-11314.0231.9225.8 + 59 1 28 15 9 6 7 7 9 12 9 9-11322.0231.8225.6 + 59 1 29 5 6 12 18 15 18 32 27 17-11304.0232.0225.4 + 59 1 30 18 18 9 15 9 7 9 2 11-11262.0232.1225.1 + 59 1 31 15 27 22 18 7 6 7 6 14-11224.0232.0225.0 + 59 2 1 12 15 9 12 18 12 6 5 11-11205.0232.0224.9 + 59 2 2 6 32 32 27 27 18 18 27 23-11205.0232.0224.9 + 59 2 3 27 12 9 27 22 22 18 39 22-11204.0232.1225.0 + 59 2 4 48 32 18 27 39 27 39 56 36-11201.0232.3225.0 + 59 2 5 22 39 22 22 22 27 18 22 24-11191.0232.5225.0 + 59 2 6 27 12 7 22 18 18 27 15 18-11195.0233.1224.9 + 59 2 7 15 12 6 9 18 9 12 4 11-11182.0233.8224.8 + 59 2 8 5 6 9 12 15 12 12 27 12-11182.0234.7224.8 + 59 2 9 39 39 48 18 18 12 4 7 23-11174.0235.4224.7 + 59 2 10 9 4 2 4 3 5 5 12 6-11190.0235.9224.6 + 59 2 11 4 22 22 94 56 39 22 32 36-11199.0236.2224.6 + 59 2 12 22 48 18 27 18 18 15 22 24-11199.0236.1224.4 + 59 2 13 22 7 5 18 32 27 32 27 21-11201.0235.9224.3 + 59 2 14 18 27 22 27 67 48 18 9 30-11199.0235.6224.2 + 59 2 15 18 67 67 48 32 32 27 6 37-11213.0235.2224.2 + 59 2 16 48 80 48 15 56 67 94 80 61-11214.0234.6224.2 + 59 2 17 67 39 48 12 7 7 7 3 24-11220.0233.9224.2 + 59 2 18 5 3 4 5 3 6 5 5 5-11218.0233.6224.2 + 59 2 19 12 22 18 12 15 9 7 4 12-11218.0233.4224.2 + 59 2 20 0 4 6 7 5 3 3 3 4-11228.0233.1224.2 + 59 2 21 3 2 12 9 7 5 7 5 6-11224.0232.8224.2 + 59 2 22 15 32 18 27 9 15 7 15 17-11219.0232.4224.3 + 59 2 23 22 22 32 22 15 3 3 0 15-11212.0232.1224.3 + 59 2 24 0 2 4 6 6 4 3 6 4-11220.0231.8224.2 + 59 2 25 18 39 94 67 94154 56 32 69-11227.0231.7224.2 + 59 2 26 56 56 94 39 39 39 32 32 48-11219.0231.7224.3 + 59 2 27 18 27 12 15 32 67 48 22 30-11211.0231.6224.5 + 59 2 28 39 48 15 27 48 48 67 56 44-11201.0231.4224.6 + 59 3 1 39 48 48 32 39 67 27 32 42-11187.0230.8224.8 + 59 3 2 27 32 39 27 32 22 39 27 31-11181.0230.0224.9 + 59 3 3 22 32 22 22 18 22 18 27 23-11181.0228.9225.0 + 59 3 4 18 9 15 18 12 12 18 7 14-11178.0227.3224.9 + 59 3 5 15 15 15 7 6 12 18 12 13-11179.0225.7224.9 + 59 3 6 12 12 6 4 5 3 4 2 6-11190.0224.0224.9 + 59 3 7 2 3 4 7 6 7 9 12 6-11188.0222.3224.8 + 59 3 8 39 18 7 5 4 6 3 4 11-11191.0220.8224.8 + 59 3 9 6 6 5 4 4 6 2 0 4-11198.0219.1224.7 + 59 3 10 0 0 6 6 3 2 0 2 2-11204.0217.6224.7 + 59 3 11 2 0 5 5 6 3 9 5 4-11201.0216.3224.6 + 59 3 12 18 18 18 22 27 18 18 5 18-11194.0215.6224.5 + 59 3 13 7 15 9 12 18 9 6 18 12-11207.0215.3224.4 + 59 3 14 3 7 15 12 9 5 4 6 8-11215.0215.4224.2 + 59 3 15 12 7 5 9 6 3 2 6 6-11235.0215.5223.9 + 59 3 16 9 4 5 4 3 2 3 4 4-11246.0215.6223.6 + 59 3 17 5 9 7 4 4 6 4 6 6-11259.0215.8223.4 + 59 3 18 2 7 3 4 6 5 3 27 7-11274.0216.0223.1 + 59 3 19 4 4 5 9 7 6 9 3 6-11281.0216.3222.9 + 59 3 20 5 7 7 5 6 4 4 3 5-11285.0216.7222.7 + 59 3 21 4 3 5 9 7 7 5 5 6-11287.0217.1222.5 + 59 3 22 3 3 4 6 7 5 4 7 5-11262.0217.5222.4 + 59 3 23 12 22 15 6 6 9 12 6 11-11258.0217.6222.3 + 59 3 24 7 6 7 12 9 7 7 5 8-11247.0217.5222.1 + 59 3 25 9 56 18 9 32 56 48 18 31-11248.0217.3222.0 + 59 3 26 9 5 27 94207 56 94154 81-11247.0217.1221.9 + 59 3 27154179236111236236179 94178-11246.0217.2221.7 + 59 3 28 18 56 32 56 94132154154 87-11248.0217.1221.6 + 59 3 29111 94 94 67 67 80 56 12 73-11245.0217.5221.4 + 59 3 30 18 22 32 48 15 7 7 7 20-11258.0217.8221.3 + 59 3 31 12 15 12 15 15 9 27 48 19-11254.0218.3221.1 + 59 4 1 22 27 22 4 4 3 4 2 11-11256.0218.9220.9 + 59 4 2 2 4 5 9 5 5 12 9 6-11236.0219.4220.7 + 59 4 3 18 15 12 18 9 7 3 12 12-11216.0219.9220.4 + 59 4 4 12 12 6 6 3 6 5 4 7-11215.0220.2220.2 + 59 4 5 12 6 4 6 6 6 6 3 6-11196.0220.4220.1 + 59 4 6 7 4 5 5 5 7 9 6 6-11196.0220.4219.9 + 59 4 7 7 6 4 7 9 5 18 9 8-11217.0220.4219.9 + 59 4 8 12 18 18 15 22 18 15 56 22-11215.0220.3219.8 + 59 4 9 80 94 39 27 6 9 56 39 44-11215.0220.1219.8 + 59 4 10 39 48179154154132 56 18 98-11220.0220.1219.6 + 59 4 11 22 18 22 27 15 9 22 48 23-11232.0220.3219.5 + 59 4 12 22 15 7 12 6 5 3 12 10-11224.0220.6219.3 + 59 4 13 12 7 15 6 12 7 9 5 9-11209.0220.8219.2 + 59 4 14 22 15 9 6 7 7 7 15 11-11198.0221.0219.0 + 59 4 15 27 6 7 4 5 7 15 6 10-11189.0221.3218.8 + 59 4 16 9 5 6 12 4 4 6 5 6-11188.0221.5218.6 + 59 4 17 2 4 12 12 12 5 6 6 7-11190.0221.8218.3 + 59 4 18 9 3 3 5 4 6 6 2 5-11181.0221.8218.0 + 59 4 19 3 3 3 5 5 7 3 7 5-11196.0221.5217.7 + 59 4 20 3 5 4 6 7 5 4 3 5-11203.0221.2217.4 + 59 4 21 12 9 9 15 7 9 3 2 8-11203.0220.9217.1 + 59 4 22 3 2 2 3 3 4 3 2 3-11199.0220.9216.8 + 59 4 23 0 2 2 27 39 48111 94 40-11213.0220.8216.6 + 59 4 24 22 27 32 27 39 32 9 27 27-11213.0220.6216.4 + 59 4 25 15 22 27 12 15 27 32 22 22-11211.0220.0216.3 + 59 4 26 22 27 12 15 7 15 15 32 18-11218.0219.4216.3 + 59 4 27 15 12 18 7 15 15 6 22 14-11212.0218.8216.3 + 59 4 28 6 7 12 15 9 6 9 32 12-11216.0217.9216.3 + 59 4 29 27 22 15 15 32 48 27 9 24-11211.0217.1216.2 + 59 4 30 7 7 15 7 39 48 39 7 21-11220.0216.3216.0 + 59 5 1 5 22 7 9 12 5 7 7 9-11204.0215.6215.9 + 59 5 2 7 12 9 4 4 3 6 12 7-11194.0215.1215.7 + 59 5 3 4 4 4 4 5 5 6 22 7-11195.0214.7215.5 + 59 5 4 15 6 9 15 12 9 15 48 16-11184.0214.2215.3 + 59 5 5 94 56 15 27 27 7 4 2 29-11186.0213.7215.1 + 59 5 6 3 3 2 4 4 5 2 3 3-11202.0213.5215.0 + 59 5 7 5 3 4 5 4 4 4 15 6-11208.0213.1214.8 + 59 5 8 18 56 56 48 22 27 12 27 33-11244.0212.9214.6 + 59 5 9 18 12 12 22 22 22 12 12 17-11249.0212.6214.5 + 59 5 10 12 9 18 22 7 18 15 15 15-11259.0212.4214.5 + 59 5 11 15 9 27 15 22 22 22 80 27-11264.0212.0214.5 + 59 5 12132111111 67111236 56 39108-11266.0211.7214.5 + 59 5 13 6 9 22 12 12 15 15 18 14-11264.0211.5214.6 + 59 5 14 5 5 2 5 12 6 3 3 5-11244.0211.5214.7 + 59 5 15 9 7 12 39 48 56 39 56 33-11228.0211.7214.8 + 59 5 16 80 67 67 22 9 6 7 32 36-11222.0212.2214.8 + 59 5 17 6 5 12 15 22 27 9 9 13-11224.0212.7214.9 + 59 5 18 18 39 27 9 9 18 22 48 24-11213.0213.0214.9 + 59 5 19 18 15 6 15 15 12 15 15 14-11199.0213.1214.8 + 59 5 20 15 6 9 9 6 9 18 9 10-11201.0213.2214.8 + 59 5 21 15 12 9 12 6 9 22 18 13-11201.0212.9214.7 + 59 5 22 18 9 18 15 7 22 15 15 15-11201.0212.3214.6 + 59 5 23 22 18 9 9 6 9 12 9 12-11198.0211.7214.5 + 59 5 24 18 27 67 48 39 27 39154 52-11199.0211.2214.4 + 59 5 25 94 22 22 18 9 15 12 9 25-11203.0211.0214.4 + 59 5 26 18 4 3 7 5 5 9 6 7-11205.0210.8214.3 + 59 5 27 9 6 5 5 4 2 3 4 5-11208.0210.8214.3 + 59 5 28 2 4 3 3 4 2 3 5 3-11195.0210.8214.1 + 59 5 29 3 2 2 3 2 3 2 6 3-11176.0210.9214.0 + 59 5 30 4 2 2 6 18 7 5 3 6-11177.0210.8213.9 + 59 5 31 9 18 9 9 48 22 27 32 22-11179.0210.7213.8 + 59 6 1 12 7 7 5 4 6 9 7 7-11193.0210.6213.7 + 59 6 2 9 12 15 18 27 15 27 32 19-11198.0211.0213.6 + 59 6 3 18 27 12 18 22 15 7 9 16-11198.0211.4213.5 + 59 6 4 22 15 27 22 12 12 22 48 23-11190.0212.0213.4 + 59 6 5 32 15 9 12 18 12 12 9 15-11197.0212.5213.3 + 59 6 6 6 6 9 18 12 15 15 15 12-11210.0213.0213.1 + 59 6 7 9 15 6 5 7 12 7 6 8-11198.0213.3213.0 + 59 6 8 6 5 12 7 12 18 15 12 11-11213.0213.5212.8 + 59 6 9 15 18 27 32 27 12 15 9 19-11223.0213.7212.6 + 59 6 10 22 32 9 9 7 7 5 7 12-11228.0213.5212.4 + 59 6 11 5 5 6 48 80 39 7 6 25-11226.0213.3212.2 + 59 6 12 4 4 4 3 4 12 15 5 6-11220.0213.1211.9 + 59 6 13 5 3 3 3 5 3 5 6 4-11212.0212.9211.7 + 59 6 14 3 6 4 9 18 9 5 15 9-11208.0212.9211.4 + 59 6 15 6 9 18 9 7 4 4 5 8-11225.0212.8211.2 + 59 6 16 7 6 6 5 5 4 9 9 6-11220.0212.6211.0 + 59 6 17 2 2 2 2 4 5 12 18 6-11225.0212.5210.8 + 59 6 18 6 9 7 5 18 9 7 6 8-11228.0212.0210.7 + 59 6 19 5 15 7 7 9 4 7 5 7-11237.0211.5210.7 + 59 6 20 12 6 5 5 9 5 9 9 8-11226.0210.8210.6 + 59 6 21 6 4 6 4 7 9 15 9 8-11228.0210.1210.6 + 59 6 22 6 6 7 18 15 12 12 15 11-11219.0209.5210.5 + 59 6 23 12 7 7 6 6 22 22 39 15-11220.0209.0210.4 + 59 6 24 67 80 12 5 4 6 22 12 26-11232.0209.0210.3 + 59 6 25 7 5 4 6 5 4 6 15 7-11233.0209.1210.1 + 59 6 26 12 18 32 15 15 12 6 3 14-11238.0209.2209.9 + 59 6 27 2 3 9 15 80 67 27 48 31-11240.0209.2209.7 + 59 6 28 48 32 32 18 67 27 27 18 34-11224.0209.2209.6 + 59 6 29 15 18 80 80 48 32 39 94 51-11219.0209.3209.4 + 59 6 30 39 15 32 56 80 39 27 15 38-11196.0209.3209.3 + 59 7 1 5 5 6 3 4 3 4 9 5-11188.0209.3209.2 + 59 7 2 18 32 32 9 7 7 3 3 14-11174.0209.3209.0 + 59 7 3 6 5 6 4 5 4 5 4 5-11171.0209.3208.8 + 59 7 4 3 2 4 15 12 27 27 27 15-11177.0209.2208.6 + 59 7 5 18 22 18 15 22 7 15 9 16-11176.0209.0208.4 + 59 7 6 6 5 7 12 18 12 15 12 11-11188.0208.9208.2 + 59 7 7 12 18 18 22 15 18 7 5 14-11192.0208.8208.0 + 59 7 8 6 12 18 15 22 18 15 7 14-11185.0209.1207.8 + 59 7 9 6 18 32 12 15 22 18 18 18-11185.0209.8207.6 + 59 7 10 27 22 18 12 4 6 7 6 13-11201.0210.2207.4 + 59 7 11 22 27 15 6 18111 56 94 44-11194.0210.8207.2 + 59 7 12 94 12 12 12 32 15 5 9 24-11234.0211.3207.0 + 59 7 13 9 9 12 5 15 12 6 18 11-11243.0211.8206.8 + 59 7 14 12 22 22 15 27 12 9 6 16-11264.0212.6206.6 + 59 7 15 32 48207300300400300300236-11245.0213.3206.5 + 59 7 16154 56 32 15 22 18 32 48 47-11261.0214.0206.3 + 59 7 17 18 32 18 22 18236300236110-11240.0214.6206.3 + 59 7 18207179207 67 39132 39 80119-11231.0215.6206.2 + 59 7 19 48 32 18 27 27 48 27 18 31-11222.0216.7206.1 + 59 7 20 15 12 18 18 12 22 15 32 18-11208.0217.7205.9 + 59 7 21 22 15 12 9 22 15 18 15 16-11189.0218.7205.6 + 59 7 22 15 7 15 7 12 12 7 32 13-11178.0219.7205.3 + 59 7 23 27 18 15 9 12 4 7 12 13-11178.0220.5204.8 + 59 7 24 15 6 12 48 18 22 56 48 28-11181.0221.2204.4 + 59 7 25 32 32 32 48 22 39 56 39 38-11182.0221.8204.0 + 59 7 26 27 32 27 27 27 39 48 39 33-11182.0222.0203.7 + 59 7 27 39 18 32 22 12 15 32 27 25-11200.0222.0203.4 + 59 7 28 22 9 9 12 15 12 9 15 13-11205.0221.7203.2 + 59 7 29 9 22 12 7 9 5 6 6 10-11207.0221.2203.0 + 59 7 30 6 4 0 3 3 3 6 4 4-11204.0220.7202.8 + 59 7 31 6 22 12 18 15 7 15 27 15-11208.0220.5202.7 + 59 8 1 18 18 32 22 22 22 18 9 20-11214.0220.2202.6 + 59 8 2 27 27 22 5 6 12 27 6 17-11228.0220.0202.6 + 59 8 3 15 15 48 15 22 22 15 5 20-11240.0219.7202.6 + 59 8 4 6 12 6 39 39 22 12 18 19-11236.0219.2202.6 + 59 8 5 7 5 7 5 12 18 12 7 9-11229.0218.7202.7 + 59 8 6 4 15 12 18 27 32 48 22 22-11227.0218.0202.7 + 59 8 7 18 15 12 9 12 22 15 9 14-11212.0217.1202.7 + 59 8 8 9 6 12 27 18 15 4 22 14-11204.0216.5202.7 + 59 8 9 27 5 18 18 27 32 39 12 22-11204.0215.8202.8 + 59 8 10 15 32 6 5 15 12 18 9 14-11202.0215.6202.8 + 59 8 11 12 15 7 5 7 12 3 6 8-11200.0215.5202.8 + 59 8 12 6 5 6 4 6 5 3 7 5-11196.0215.6202.7 + 59 8 13 6 6 5 6 5 5 7 6 6-11194.0215.9202.7 + 59 8 14 6 6 5 5 6 6 7 5 6-11189.0215.9202.6 + 59 8 15 12 6 5 18 27 48 32 67 27-11190.0216.0202.5 + 59 8 16 32 32111154236207111154130-11201.0215.8202.4 + 59 8 17179236111 94 56132 48 56114-11224.0215.5202.3 + 59 8 18 15 32 56 15 32 27 39 12 29-11229.0215.2202.1 + 59 8 19 18 39 32 15 7 15 27 15 21-11215.0214.9201.9 + 59 8 20 12 67 67 48 27 9 48 27 38-11224.0214.4201.7 + 59 8 21 39 22 27 48 18 27 56 39 35-11230.0214.0201.5 + 59 8 22 32 22 32 15 15 22 48 27 27-11243.0212.9201.3 + 59 8 23 22 18 22 22 39 39 32 32 28-11262.0211.7201.1 + 59 8 24 22 22 48 18 9 15 7 15 20-11245.0210.2200.9 + 59 8 25 15 18 15 18 15 18 4 15 15-11253.0209.0200.7 + 59 8 26 15 6 15 6 4 5 7 6 8-11257.0207.7200.5 + 59 8 27 12 4 7 5 4 2 2 2 5-11279.0206.9200.3 + 59 8 28 0 3 5 4 3 3 2 5 3-11302.0206.1200.1 + 59 8 29 15 6 5 12 12 27 12 12 13-11308.0205.3199.9 + 59 8 30 15 7 7 7 9 15 9 6 9-11312.0204.6199.8 + 59 8 31 6 9 9 9 15 9 9 9 9-11305.0204.1199.6 + 59 9 1 18 15 18 22 15 27 32 12 20-11282.0203.8199.5 + 59 9 2 32 56 48 39 12 18 27 39 34-11269.0203.5199.4 + 59 9 3 15 12 18 22 15 22 27179 39-11257.0203.1199.3 + 59 9 4111154132 94 80132 56 67103-11239.0202.8199.2 + 59 9 5 48 22 27 27 27 22 32 67 34-11220.0202.5199.0 + 59 9 6 67 22 22 12 9 9 4 3 19-11200.0202.1198.9 + 59 9 7 5 3 5 7 9 18 6 6 7-11192.0201.7198.8 + 59 9 8 6 7 12 18 9 15 5 9 10-11199.0201.2198.6 + 59 9 9 6 4 4 9 4 6 5 7 6-11209.0200.8198.4 + 59 9 10 6 5 4 5 6 7 6 22 8-11201.0200.4198.2 + 59 9 11 7 18 15 22 22 9 15 12 15-11203.0199.9198.1 + 59 9 12 39 15 12 12 9 15 7 5 14-11195.0199.4197.9 + 59 9 13 18 4 7 5 6 4 9 56 14-11189.0198.7197.6 + 59 9 14 22 18 22 18 22 18 7 18 18-11196.0198.0197.4 + 59 9 15 9 6 18 12 22 18 39 22 18-11184.0197.5197.1 + 59 9 16 32 39 9 7 9 12 12 9 16-11168.0197.1196.7 + 59 9 17 9 12 7 15 18 27 48 48 23-11170.0196.7196.4 + 59 9 18 18 12 15 39 27 22 32 48 27-11167.0196.4196.0 + 59 9 19 80 80 18 48 32 9 12 12 36-11175.0196.0195.6 + 59 9 20 27 48 56 48 80 67 94 67 61-11185.0195.6195.2 + 59 9 21 67111132 39 80111 94 56 86-11182.0195.1194.8 + 59 9 22 94111132 67 67 48 56 9 73-11188.0194.6194.6 + 59 9 23 12 12 22 22 9 39 32 48 25-11182.0194.3194.3 + 59 9 24 27 27 22 18 48 15 18 15 24-11183.0194.0194.1 + 59 9 25 48 39 27 32 27 67 18 39 37-11175.0193.6193.8 + 59 9 26 27 15 18 22 39 15 22 27 23-11164.0193.0193.6 + 59 9 27 15 18 22 27 22 32 15 18 21-11163.0192.1193.4 + 59 9 28 27 15 22 18 22 12 18 12 18-11162.0191.3193.2 + 59 9 29 15 6 7 18 9 5 3 12 9-11159.0190.8193.0 + 59 9 30 7 5 6 18 18 15 18 12 12-11156.0190.3192.8 + 59 10 1 27 56 80 67 27 27 27 39 44-11150.0189.8192.6 + 59 10 2 12 67 48 27 7 9 9 6 23-11145.0189.2192.5 + 59 10 3 4 12 27 15 18 67111111 46-11144.0188.3192.4 + 59 10 4 48132 56 39 67 15 32 18 51-11148.0187.7192.3 + 59 10 5 39 32 15 12 18 32 80 67 37-11155.0186.9192.3 + 59 10 6 67 67 56 56 39 48 56 32 53-11174.0185.9192.2 + 59 10 7 18 22 12 18 12 5 9 27 15-11169.0184.7192.1 + 59 10 8 15 12 6 12 5 6 4 3 8-11155.0182.9192.0 + 59 10 9 12 5 6 6 3 4 12 2 6-11153.0181.0191.8 + 59 10 10 4 4 4 4 3 9 5 3 5-11149.0179.1191.6 + 59 10 11 4 0 4 2 0 0 6 5 3-11147.0177.2191.4 + 59 10 12 4 0 2 2 6 9 18 12 7-11154.0175.7191.2 + 59 10 13 4 3 5 5 5 5 3 3 4-11155.0174.5191.1 + 59 10 14 6 6 7 18 22 9 18 15 13-11153.0173.6191.0 + 59 10 15 15 18 9 15 15 12 18 18 15-11160.0173.2191.0 + 59 10 16 6 4 3 2 2 4 7 3 4-11167.0173.3191.0 + 59 10 17 4 6 12 32 22 15 22 22 17-11169.0173.5191.0 + 59 10 18 39 32 39 56 32 39 22 32 36-11171.0173.9191.0 + 59 10 19 22 27 9 18 6 5 15 18 15-11173.0174.2190.9 + 59 10 20 22 7 15 7 5 2 2 2 8-11175.0174.4190.9 + 59 10 21 2 3 3 4 5 12 5 12 6-11175.0174.8190.8 + 59 10 22 18 22 18 18 18 32 12 12 19-11187.0175.0190.7 + 59 10 23 22 12 12 18 6 2 2 0 9-11183.0175.3190.5 + 59 10 24 0 3 7 6 9 7 6 7 6-11181.0175.4190.4 + 59 10 25 15 39 22 32 22 15 9 22 22-11186.0175.5190.3 + 59 10 26 22 22 27 27 48 32 15 18 26-11190.0175.7190.1 + 59 10 27 9 18 22 15 9 9 4 4 11-11184.2176.1189.9 + 59 10 28 3 3 9 6 4 2 2 0 4-11178.4176.4189.7 + 59 10 29 2 5 5 4 6 3 2 18 6-11172.6176.7189.5 + 59 10 30 56 27 12 9 18 12 27 67 29-11166.8176.7189.3 + 59 10 31 32 15 18 48 32 48 48 67 39-11161.0176.5189.2 + 59 11 1 22 48 94 56 56 22 22 22 43-11159.0176.4189.1 + 59 11 2 48 67 94 48 67 67 94 67 69-11168.0176.2189.0 + 59 11 3 67 39 39 48 39 67 48 39 48-11165.0175.9188.9 + 59 11 4 7 12 39 32 48 39 80 32 36-11154.0175.7188.8 + 59 11 5 39 48 48 27 27 12 15 6 28-11151.0175.7188.7 + 59 11 6 32 27 22 32 18 9 15 32 23-11157.0175.7188.6 + 59 11 7 5 22 12 4 5 9 22 9 11-11161.0175.7188.3 + 59 11 8 5 22 12 18 18 9 12 5 13-11173.0175.8188.1 + 59 11 9 3 7 0 5 7 12 22 15 9-11183.0176.0187.9 + 59 11 10 15 9 7 9 12 5 7 18 10-11194.0176.3187.6 + 59 11 11 9 6 3 6 4 3 5 6 5-11193.0176.8187.4 + 59 11 12 7 9 3 5 4 6 12 9 7-11192.0177.1187.1 + 59 11 13 9 6 7 12 18 12 12 22 12-11191.0177.3186.9 + 59 11 14 32 22 27 39 39 27 22 15 28-11187.0177.5186.8 + 59 11 15 12 6 6 4 3 3 0 4 5-11182.0177.6186.6 + 59 11 16 3 2 6 5 9 18 12 12 8-11175.0177.5186.4 + 59 11 17 9 32 9 18 18 3 2 3 12-11161.0177.4186.2 + 59 11 18 6 9 9 9 15 15 39 6 14-11155.0177.6186.1 + 59 11 19 7 12 22 18 15 9 3 5 11-11157.0177.9186.0 + 59 11 20 15 6 5 5 0 0 2 3 5-11154.0178.2185.9 + 59 11 21 4 9 7 18 32 27 15 15 16-11154.0178.5185.8 + 59 11 22 18 27 18 22 18 9 18 9 17-11173.0178.7185.7 + 59 11 23 56 67 56 48 32 18 32 7 40-11187.0178.9185.6 + 59 11 24 12 7 6 5 12 7 6 5 8-11205.0179.3185.5 + 59 11 25 9 5 7 12 18 7 5 15 10-11226.0179.7185.3 + 59 11 26 9 7 18 27 15 6 6 18 13-11221.0180.3185.2 + 59 11 27 22 9 15 7 7 7 12 39 15-11218.0180.8185.1 + 59 11 28 80207154111 32 22 27 27 83-11227.0181.5185.1 + 59 11 29 22 12 6 27 18 15 12 6 15-11225.0182.1185.1 + 59 11 30 12 9 56 67 56 80 27 39 43-11230.0182.4185.1 + 59 12 1 48 32 32 39 32 18 15 6 28-11222.0182.6185.0 + 59 12 2 18 32 32 48 27 32 27 27 30-11217.0182.8184.9 + 59 12 3 48 39 48 56 56 67 27 56 50-11202.0182.8184.8 + 59 12 4 18 27 12 12 7 6 9 9 13-11199.0182.8184.7 + 59 12 5 0 0 27 39 94111179 94 68-11204.0182.6184.7 + 59 12 6 15 32 18 18 15 7 15 9 16-11202.0182.5184.6 + 59 12 7 15 12 3 2 6 6 3 5 7-11191.0182.5184.5 + 59 12 8 5 7 6 4 3 12 9 7 7-11193.0182.5184.4 + 59 12 9 5 5 12 12 15 7 3 7 8-11173.0182.6184.3 + 59 12 10 9 6 6 3 2 5 9 5 6-11174.0182.5184.2 + 59 12 11 2 7 6 7 5 9 3 6 6-11171.0182.5184.1 + 59 12 12 9 32 12 15 12 7 15 27 16-11169.0182.5183.9 + 59 12 13 27 18 9 6 4 9 15 56 18-11162.0182.6183.8 + 59 12 14 39 32 56 48 39 56 39 15 41-11165.0182.9183.7 + 59 12 15 18 32 32 27 18 18 27 32 26-11171.0183.6183.5 + 59 12 16 18 9 15 18 22 27 9 15 17-11164.0184.5183.4 + 59 12 17 15 5 12 12 7 3 5 6 8-11167.0185.6183.2 + 59 12 18 7 6 15 12 22 7 5 7 10-11169.0186.7183.0 + 59 12 19 9 12 18 22 27 12 7 4 14-11180.0187.6182.7 + 59 12 20 9 7 5 6 5 7 6 6 6-11178.0188.3182.5 + 59 12 21 5 5 5 3 3 2 4 4 4-11185.0188.7182.2 + 59 12 22 6 2 2 2 4 9 7 15 6-11171.0189.1182.0 + 59 12 23 12 12 22 12 12 80 32 39 28-11166.0189.5181.7 + 59 12 24 27 5 27 27 18 5 6 7 15-11163.0189.8181.5 + 59 12 25 7 15 7 12 6 6 9 5 8-11162.0190.1181.2 + 59 12 26 12 22 18 32 32 22 27 39 26-11161.0190.5180.9 + 59 12 27 39 39 27 67 32 39 27 32 38-11167.0190.9180.7 + 59 12 28 48 39 32 39 56 56 39 15 41-11172.0191.3180.5 + 59 12 29 27 27 27 22 22 12 4 7 19-11171.0191.7180.4 + 59 12 30 6 15 15 22 22 15 12 4 14-11179.0192.0180.4 + 59 12 31 6 6 12 7 4 4 9 5 7-11167.0192.3180.4 + 60 1 1 5 6 5 5 3 2 2 2 4-11171.0192.6180.5 + 60 1 2 3 5 4 5 7 5 6 3 5-11175.0192.7180.6 + 60 1 3 7 12 5 5 7 7 4 4 6-11182.0192.4180.7 + 60 1 4 7 7 15 15 15 12 4 5 10-11193.0191.9180.8 + 60 1 5 15 39 27 18 32 18 12 27 24-11213.0191.2180.9 + 60 1 6 22 18 6 5 6 6 7 5 9-11215.0190.5180.9 + 60 1 7 3 6 9 12 7 6 5 4 7-11224.0189.7180.9 + 60 1 8 7 7 3 5 3 5 6 6 5-11219.0188.8180.9 + 60 1 9 5 7 5 4 3 2 3 4 4-11201.0187.9180.8 + 60 1 10 5 9 48 56 39 67 67 56 43-11194.0186.9180.7 + 60 1 11 27 18 39 32 48 27 15 12 27-11200.0185.9180.5 + 60 1 12 18 9 15 9 18 18 12 22 15-11184.0185.1180.2 + 60 1 13 7 12 7 6 5 5 22 18 10-11178.0184.5179.9 + 60 1 14 56 32 48 39 27 15 56 67 43-11176.0183.8179.6 + 60 1 15 94 56 22 18 18 18 7 5 30-11183.0183.0179.3 + 60 1 16 4 9 2 2 3 5 4 22 6-11183.0182.3179.0 + 60 1 17 15 18 9 6 27 18 6 9 14-11179.0181.8178.8 + 60 1 18 7 9 67 39 32 9 12 12 23-11176.0181.2178.6 + 60 1 19 18 7 4 7 9 7 6 6 8-11164.0180.8178.5 + 60 1 20 6 18 15 32 18 27 12 9 17-11157.0180.4178.4 + 60 1 21 80 32 27 48 48 48 67 48 50-11162.0179.9178.3 + 60 1 22 27 18 22 48 15 15 7 12 21-11172.0179.5178.2 + 60 1 23 9 18 22 12 22 18 22 18 18-11188.0179.3178.1 + 60 1 24 18 22 15 22 22 18 12 12 18-11210.0178.9178.1 + 60 1 25 9 12 7 7 9 15 12 5 10-11230.0178.5178.0 + 60 1 26 6 9 7 9 6 7 4 7 7-11242.0178.2177.8 + 60 1 27 15 18 6 12 7 5 2 5 9-11248.0177.8177.7 + 60 1 28 7 4 4 6 7 4 12 5 6-11252.0177.5177.5 + 60 1 29 15 15 18 18 18 6 4 5 12-11237.0177.0177.4 + 60 1 30 2 0 2 5 2 2 2 0 2-11230.0176.5177.2 + 60 1 31 2 4 3 5 4 4 2 2 3-11223.0175.8177.0 + 60 2 1 0 9 9 15 18 7 4 4 8-11225.0175.3176.8 + 60 2 2 4 7 3 12 18 22 32 22 15-11213.0174.9176.5 + 60 2 3 7 9 12 22 27 22 22 32 19-11215.0174.6176.2 + 60 2 4 22 32 18 18 12 9 18 18 18-11209.0174.3175.9 + 60 2 5 5 3 12 48 32 22 12 18 19-11209.0174.0175.6 + 60 2 6 39 39 27 9 9 15 5 7 19-11192.0173.7175.4 + 60 2 7 7 12 7 6 4 2 0 2 5-11187.0173.2175.2 + 60 2 8 2 4 12 18 22 12 6 4 10-11183.0172.8175.0 + 60 2 9 15 5 2 3 3 6 7 4 6-11183.0172.3174.9 + 60 2 10 4 12 7 9 6 3 3 0 6-11178.0172.1174.8 + 60 2 11 0 0 4 9 5 12 15 18 8-11175.0171.8174.8 + 60 2 12 18 6 7 7 6 3 2 0 6-11166.0171.5174.9 + 60 2 13 0 2 7 9 6 3 15 48 11-11167.0171.3175.0 + 60 2 14 56 32 22 22 22 22 39 15 29-11167.0170.8175.1 + 60 2 15 7 2 4 3 18 22 12 4 9-11160.0170.2175.2 + 60 2 16 18 9 9 22 67 56 15 22 27-11158.0169.6175.3 + 60 2 17 22 18 32 18 22 15 18 39 23-11153.0169.0175.3 + 60 2 18 56 39 39 18 15 18 27 12 28-11151.0168.5175.4 + 60 2 19 7 7 18 22 15 27 39 32 21-11146.5168.5175.4 + 60 2 20 48 27 15 12 15 15 6 12 19-11142.0168.3175.4 + 60 2 21 18 22 32 39 15 27 15 9 22-11156.0168.3175.3 + 60 2 22 4 5 15 12 9 7 15 12 10-11149.0168.3175.1 + 60 2 23 6 15 9 9 9 18 6 5 10-11143.0168.3174.9 + 60 2 24 4 9 5 2 3 2 3 2 4-11140.0168.5174.6 + 60 2 25 4 0 6 4 3 3 4 6 4-11147.0168.5174.4 + 60 2 26 2 0 4 9 6 15 6 5 6-11147.0168.3174.0 + 60 2 27 22 39 22 27 18 18 15 12 22-11147.0168.1173.6 + 60 2 28 7 7 9 9 5 6 3 3 6-11140.0167.8173.2 + 60 2 29 22 12 18 18 15 9 15 18 16-11140.0167.6172.7 + 60 3 1 12 18 18 18 18 15 39 15 19-11137.0167.5172.2 + 60 3 2 32 18 39 22 27 12 15 22 23-11137.0167.5171.8 + 60 3 3 15 27 27 27 22 22 15 15 21-11138.0167.5171.4 + 60 3 4 9 9 7 9 27 32 18 18 16-11139.0167.4171.1 + 60 3 5 9 12 22 6 18 15 15 15 14-11140.0167.0170.9 + 60 3 6 18 27 9 18 6 7 12 7 13-11135.0166.5170.7 + 60 3 7 3 5 4 6 4 3 4 0 4-11139.0165.8170.5 + 60 3 8 3 12 22 18 15 12 7 12 13-11141.0164.9170.4 + 60 3 9 7 7 12 18 12 15 7 9 11-11143.0164.0170.3 + 60 3 10 6 9 39 48 12 27 22 9 22-11132.0163.2170.2 + 60 3 11 18 32 27 67 39 39 32 15 34-11132.0162.5170.1 + 60 3 12 9 7 9 9 12 9 4 6 8-11129.0161.7170.0 + 60 3 13 7 4 7 3 3 7 6 6 5-11135.0160.9170.0 + 60 3 14 5 9 6 12 6 15 3 5 8-11134.0160.4169.9 + 60 3 15 9 0 5 5 15 27 39 67 21-11137.0159.7169.9 + 60 3 16 94111 67 22 15 27 48 32 52-11142.0159.0169.9 + 60 3 17 18 22 32 27 12 18 27 12 21-11140.0158.2169.9 + 60 3 18 12 22 27 12 9 4 2 12 13-11133.0157.5169.9 + 60 3 19 12 6 7 18 18 12 4 3 10-11137.0157.0170.0 + 60 3 20 4 7 5 4 4 5 0 3 4-11143.0156.6170.0 + 60 3 21 2 5 9 7 22 7 2 2 7-11145.0156.3170.1 + 60 3 22 3 5 5 5 12 4 3 6 5-11150.0156.0170.1 + 60 3 23 7 6 3 6 3 3 2 7 5-11154.0155.8170.1 + 60 3 24 27 15 9 9 6 32 18 12 16-11158.0155.7170.1 + 60 3 25 3 5 6 6 6 3 7 15 6-11157.0155.6170.1 + 60 3 26 15 5 9 9 6 5 3 3 7-11163.0155.4170.1 + 60 3 27 5 15 7 12 5 2 2 2 6-11169.0155.4170.0 + 60 3 28 0 5 12 22 12 27 32 27 17-11175.0155.4170.0 + 60 3 29 32 27 32 18 4 6 6 15 18-11181.0155.6169.9 + 60 3 30 22 9 7 15 12 32 27 32 20-11193.0155.8169.9 + 60 3 31 32 39 48179111207179236129-11182.0156.1169.8 + 60 4 1300300132207236300300154241-11201.0156.6169.7 + 60 4 2132 80 80 94 56 7 12 32 62-11184.0156.9169.6 + 60 4 3111154132 67 22 18 32 12 69-11179.0157.1169.5 + 60 4 4 12 32 12 12 22 27 22 67 26-11188.0157.4169.4 + 60 4 5 32 67 32 6 39 80 15 5 35-11182.0157.6169.4 + 60 4 6 4 9 12 7 12 39 27 27 17-11169.0157.7169.3 + 60 4 7 18 22 7 3 9 39 56 18 22-11165.0157.8169.2 + 60 4 8 27 22 18 18 12 18 7 7 16-11147.0157.9169.1 + 60 4 9 18 32 22 22 5 5 5 5 14-11148.0158.0169.1 + 60 4 10 12 27 22 18 22 15 39111 33-11156.0158.3169.1 + 60 4 11 32 39 15 18 18 18 12 48 25-11159.0158.6169.1 + 60 4 12 67 67 56 22 15 15 12 27 35-11168.0158.9169.1 + 60 4 13 32 56 67 12 9 12 18 18 28-11179.0159.2169.2 + 60 4 14 22 18 15 18 9 7 7 18 14-11183.0159.5169.2 + 60 4 15 22 80 27 18 12 15 15 6 24-11190.0159.8169.2 + 60 4 16 27 18 9 12 48 56 32 32 29-11183.0160.1169.2 + 60 4 17 67 39 22 27 9 18 27 27 30-11178.0160.4169.2 + 60 4 18 56 18 32 32 9 12 5 7 21-11176.0160.8169.2 + 60 4 19 7 9 6 2 5 4 0 0 4-11170.0161.1169.1 + 60 4 20 0 2 4 3 4 2 0 2 2-11175.0161.6169.1 + 60 4 21 0 2 0 4 4 5 4 5 3-11163.0162.0169.0 + 60 4 22 9 4 5 6 3 7 3 4 5-11160.0162.4168.9 + 60 4 23 6 12 7 7 5 6 7 67 15-11166.0162.8168.7 + 60 4 24111111 48 22 48 18 80 94 67-11165.0163.2168.6 + 60 4 25111 56 56 48 56 39 48 39 57-11147.0163.6168.5 + 60 4 26 32 18 22 12 12 12 9 27 18-11143.0164.0168.3 + 60 4 27 12 6 9 6 9 7 67132 31-11140.0164.4168.2 + 60 4 28132111132 80 67 56 80 18 85-11142.0165.1168.0 + 60 4 29 94 80 80 48 39 27 39 32 55-11153.0165.7167.9 + 60 4 30111111 67 67300400207132174-11161.0166.1167.8 + 60 5 1111 94 67 32 27 18 15 27 49-11152.0166.5167.7 + 60 5 2 12 32 15 15 12 15 15 7 15-11160.0166.8167.6 + 60 5 3 6 7 12 15 9 7 6 3 8-11158.0167.0167.5 + 60 5 4 4 2 3 5 4 4 9 12 5-11156.0167.0167.4 + 60 5 5 6 7 12 7 6 5 18 22 10-11152.0167.1167.3 + 60 5 6 18 22 22 48 27 56132154 60-11156.0167.1167.3 + 60 5 7 67 80 27 48 80 48 32 56 55-11162.0167.0167.2 + 60 5 8 18 94111154207236 94111128-11168.0166.7167.2 + 60 5 9 15 22 15 27 18 15 7 6 16-11170.0166.2167.2 + 60 5 10 9 7 9 9 12 9 15 22 12-11170.0165.6167.1 + 60 5 11 22111 94 27 18 15 22 27 42-11180.0165.0167.1 + 60 5 12 7 22 32 27 32 22 6 9 20-11179.0164.1167.1 + 60 5 13 12 9 6 7 9 12 18 18 11-11170.0163.4167.1 + 60 5 14 15 15 27 18 7 12 5 6 13-11162.0162.9167.0 + 60 5 15 0 9 12 22 18 7 6 3 10-11162.0162.2167.0 + 60 5 16 5 6 7 7 56 94 94 67 42-11155.0161.7167.0 + 60 5 17 15 7 22 22 22 12 5 5 14-11151.0161.5167.0 + 60 5 18 6 7 7 4 4 6 5 5 6-11153.0161.5167.1 + 60 5 19 7 6 9 6 3 3 4 5 5-11153.0162.0167.1 + 60 5 20 3 9 2 3 3 4 2 4 4-11160.0162.5167.1 + 60 5 21 6 3 5 6 12 5 5 3 6-11164.0162.9167.1 + 60 5 22 2 4 2 3 12 6 5 6 5-11164.0163.5167.1 + 60 5 23 4 4 5 7 67 39 56 27 26-11163.0164.0167.0 + 60 5 24 22 39 67 22 22 18 32 27 31-11164.0164.4166.8 + 60 5 25 27 18 12 12 18 22 22 18 19-11163.0164.8166.6 + 60 5 26 32 27 18 12 9 15 15 27 19-11158.0165.0166.3 + 60 5 27 48 32 7 5 7 6 12 12 16-11166.0165.2165.9 + 60 5 28 9 6 7 5 4 5 80 32 19-11171.0165.3165.7 + 60 5 29179 32 27 18 48 39 56 32 54-11170.0165.3165.4 + 60 5 30 12 9 22 27 32 27 6 7 18-11170.0165.4165.1 + 60 5 31 7 9 9 9 15 15 15 22 13-11159.0165.3164.8 + 60 6 1 22 80 32 39 27 7 9 5 28-11166.0165.2164.5 + 60 6 2 7 3 4 5 7 5 6 4 5-11167.0164.9164.3 + 60 6 3 2 2 4 5 5 12 12 22 8-11167.0164.6164.1 + 60 6 4 39 94 94 39 39 27 27 56 52-11172.0164.2164.0 + 60 6 5 48 56 39 48 27 18 22 18 35-11170.0164.2163.9 + 60 6 6 39 32 22 48 27 15 7 9 25-11175.0164.2163.8 + 60 6 7 18 15 15 22 15 6 18 9 15-11185.0164.4163.7 + 60 6 8 15 32 27 22 15 15 27 39 24-11185.0164.6163.6 + 60 6 9 27 32 22 12 18 12 27 4 19-11181.0164.6163.5 + 60 6 10 5 4 4 5 5 7 9 9 6-11178.0164.5163.5 + 60 6 11 12 5 6 4 3 3 4 3 5-11171.0164.5163.4 + 60 6 12 4 4 6 6 4 7 7 3 5-11167.0164.4163.4 + 60 6 13 6 6 5 5 5 15 5 5 7-11162.0164.3163.3 + 60 6 14 7 6 12 22 39 12 7 5 14-11166.0164.3163.2 + 60 6 15 12 3 18 15 15 9 9 7 11-11166.0164.3163.1 + 60 6 16 9 9 9 3 3 5 3 4 6-11157.0164.2163.0 + 60 6 17 12 4 2 2 7 18 9 5 7-11153.0164.1162.9 + 60 6 18 12 9 9 22 18 15 15 9 14-11139.0163.8162.8 + 60 6 19 15 18 22 22 15 12 15 12 16-11140.0163.6162.7 + 60 6 20 15 12 9 5 9 9 3 6 9-11133.0163.3162.5 + 60 6 21 12 32 15 15 12 15 15 15 16-11131.0162.9162.3 + 60 6 22 12 27 7 12 7 6 12 18 13-11130.0162.4162.1 + 60 6 23 22 15 7 6 9 15 6 9 11-11136.0162.0162.0 + 60 6 24 7 9 12 12 12 9 27 15 13-11132.0161.5161.8 + 60 6 25 22 7 9 15 18 39 39 56 26-11140.0161.0161.7 + 60 6 26 39 39 32 9 9 15 12 18 22-11155.0160.7161.5 + 60 6 27111111 67 32 7 56 80 56 65-11164.0160.4161.4 + 60 6 28 27 27 39 80 32 27 32 27 36-11184.0160.1161.3 + 60 6 29 22 32 39 9 7 15 56111 36-11190.0160.0161.2 + 60 6 30132 94 18 18 12 56 80 27 55-11194.0159.9161.1 + 60 7 1 39 32 39 15 18 15 32 15 26-11208.0160.0161.1 + 60 7 2 22 15 27 22 18 7 7 6 16-11207.0160.3161.0 + 60 7 3 7 12 9 15 9 18 18 18 13-11210.0160.9161.0 + 60 7 4 27 18 32 18 15 22 15 15 20-11212.0161.8161.0 + 60 7 5 18 12 18 27 18 7 18 12 16-11209.0162.7160.9 + 60 7 6 22 9 9 27 15 7 6 5 13-11200.0163.7160.8 + 60 7 7 3 4 6 6 3 6 4 5 5-11187.0164.7160.7 + 60 7 8 5 4 3 4 3 3 2 3 3-11176.0165.6160.4 + 60 7 9 3 3 5 6 3 3 3 5 4-11176.0166.6160.2 + 60 7 10 12 7 7 6 5 9 12 9 8-11166.0167.4160.0 + 60 7 11 12 9 5 12 7 15 12 12 11-11153.0168.1159.8 + 60 7 12 12 9 15 9 15 7 6 7 10-11142.0168.5159.6 + 60 7 13 12 15 15 7 9 18 15 9 13-11135.0168.8159.3 + 60 7 14 5 22 18 27 22 80 48 94 40-11139.0168.9159.1 + 60 7 15 15 22 22 48 94154179207 93-11146.0168.7158.9 + 60 7 16236111 67 48 32 56 39 27 77-11144.0168.6158.7 + 60 7 17 56 39 32 12 7 18 12 18 24-11153.0168.4158.5 + 60 7 18 15 12 15 12 18 27 7 6 14-11159.0168.0158.2 + 60 7 19 3 12 48 80 27 27 48 32 35-11156.0167.4158.0 + 60 7 20 27 7 9 22 48 27 32 39 26-11152.0166.8157.9 + 60 7 21 9 22 9 5 15 7 6 7 10-11153.0166.2157.7 + 60 7 22 9 15 9 7 12 6 7 18 10-11148.0165.7157.5 + 60 7 23 39 7 7 3 4 4 5 6 9-11151.0165.3157.4 + 60 7 24 9 7 12 9 12 12 7 9 10-11159.0165.2157.1 + 60 7 25 3 5 3 2 2 3 5 6 4-11148.0165.0156.8 + 60 7 26 5 5 4 5 9 6 7 27 9-11149.0164.7156.5 + 60 7 27 9 5 9 5 6 4 4 3 6-11150.0164.5156.1 + 60 7 28 0 5 5 7 12 4 6 9 6-11149.0164.5155.7 + 60 7 29 39 32 27 12 15 48 39 22 29-11154.0164.8155.3 + 60 7 30 39 32 12 48 56 15 15 12 29-11146.0165.1155.0 + 60 7 31 67 32 56 48 22 32 15 22 37-11145.0165.6154.7 + 60 8 1 12 15 15 15 27 6 6 12 14-11140.0166.2154.5 + 60 8 2 12 32 15 12 9 15 18 27 18-11134.0166.7154.2 + 60 8 3 12 5 6 7 7 7 5 6 7-11125.0167.2154.0 + 60 8 4 9 9 7 15 5 3 4 3 7-11122.0167.8153.7 + 60 8 5 3 4 4 3 4 3 3 2 3-11126.0168.3153.5 + 60 8 6 3 3 9 9 5 7 9 9 7-11127.0168.6153.2 + 60 8 7 15 7 6 6 6 12 5 0 7-11134.0168.8153.0 + 60 8 8 3 6 22 12 18 22 18 27 16-11145.0168.8152.8 + 60 8 9 22 48 39 27 12 9 9 7 22-11152.0168.8152.6 + 60 8 10 12 7 22 15 15 18 12 7 14-11170.0168.9152.4 + 60 8 11 9 48 18 32 27 22 22 9 23-11187.0168.7152.2 + 60 8 12 18 32 48 39 22 15 7 9 24-11214.0168.5152.1 + 60 8 13 6 9 6 9 12 6 7 6 8-11234.0168.2151.9 + 60 8 14 7 9 6 6 7 32 27 18 14-11238.0167.7151.7 + 60 8 15 18 12 9 7 5 6 5 4 8-11240.0167.1151.5 + 60 8 16 6 3 3 6 94132 94 80 52-11241.0166.6151.3 + 60 8 17179179132 56 32111 94 67106-11247.0166.1151.2 + 60 8 18 22 15 22 39 12 6 6 5 16-11250.0165.7151.0 + 60 8 19 7 4 7 18 12 32 32 56 21-11234.0165.1150.9 + 60 8 20 9 39 80 15 15 12 18 18 26-11219.0164.6150.7 + 60 8 21 27 27 39 48 15 22 27 22 28-11201.0164.2150.6 + 60 8 22 39 12 6 9 6 9 18 9 14-11189.0163.9150.4 + 60 8 23 9 9 7 6 4 9 9 4 7-11171.0163.6150.3 + 60 8 24 6 4 7 15 3 5 5 3 6-11162.0163.4150.2 + 60 8 25 3 2 3 2 4 5 5 3 3-11158.0163.2150.1 + 60 8 26 0 2 4 4 3 4 5 7 4-11162.0163.0150.0 + 60 8 27 18 12 7 9 7 22 39 18 17-11150.0162.8149.9 + 60 8 28 12 32 27 4 12 15 3 4 14-11140.0162.6149.7 + 60 8 29 48111 48 18 32 32 22 48 45-11129.0162.4149.6 + 60 8 30 67132132 48 27 32 15 7 58-11129.0162.4149.5 + 60 8 31 18 27 32 15 12 6 6 12 16-11132.0162.5149.4 + 60 9 1 2 2 3 3 4 3 2 4 3-11137.0162.5149.3 + 60 9 2 3 7 7 7 18 15 32 67 20-11152.0162.6149.2 + 60 9 3 48 56111 15 18 12 12 7 35-11149.0162.7149.1 + 60 9 4 22 39111 80111 80111207 95-11142.0162.9149.0 + 60 9 5154179179179 48 67 80 56118-11142.0163.1148.9 + 60 9 6 56 48 39 9 6 6 15 48 28-11149.0163.3148.8 + 60 9 7 18 15 15 22 67 18 32 27 27-11162.0163.5148.6 + 60 9 8 22 18 39 18 15 22 12 4 19-11170.0163.5148.5 + 60 9 9 27 27 18 12 12 6 12 15 16-11173.0163.6148.4 + 60 9 10 9 9 9 18 9 22 15 15 13-11175.0163.6148.3 + 60 9 11 32 18 12 4 7 12 15 18 15-11175.0163.7148.2 + 60 9 12 18 12 18 12 6 12 5 5 11-11177.0163.8148.1 + 60 9 13 22 48 32 22 9 4 12 22 21-11181.0163.9148.0 + 60 9 14 48 27 9 9 5 5 2 2 13-11181.0164.0147.8 + 60 9 15 2 7 5 5 4 4 4 3 4-11178.0164.0147.7 + 60 9 16 5 2 2 4 5 4 4 3 4-11177.0164.1147.6 + 60 9 17 4 7 2 3 6 7 18 18 8-11185.0164.1147.5 + 60 9 18 39 32 9 22 9 5 5 5 16-11190.0163.8147.4 + 60 9 19 5 4 6 4 5 4 3 2 4-11199.0163.5147.3 + 60 9 20 3 2 5 5 3 4 5 12 5-11195.0163.0147.2 + 60 9 21 9 3 4 9 9 7 9 12 8-11189.0162.3147.1 + 60 9 22 12 9 6 3 9 9 18 12 10-11184.0161.1147.0 + 60 9 23 18 15 27 22 5 5 5 18 14-11175.0159.9146.9 + 60 9 24 48 39 39 39 9 22 15 5 27-11162.0158.5146.8 + 60 9 25 4 4 3 4 2 5 12 5 5-11155.0157.2146.6 + 60 9 26 12 5 12 6 3 5 12 22 10-11148.0156.0146.5 + 60 9 27 39 32 27 12 5 4 9 5 17-11142.0154.8146.4 + 60 9 28 4 6 6 18 5 6 4 4 7-11132.0153.6146.2 + 60 9 29 4 2 12 7 39 15 9 27 14-11124.0152.8146.0 + 60 9 30 39 27 22 15 32 22 32 39 29-11121.0152.2145.9 + 60 10 1 32 80 56 56 48 27 32 56 48-11115.0152.2145.6 + 60 10 2 39 39 67 48 80 67 39 15 49-11112.0152.2145.4 + 60 10 3 12 9 12 48 15 12 6 7 15-11120.0152.2145.2 + 60 10 4 6 3 7 12 18 67111 67 36-11132.0152.4145.0 + 60 10 5 32 48 27 15 18 22 15 94 34-11132.0152.8144.8 + 60 10 6 80207154207207236236300203-11132.0153.1144.6 + 60 10 7400300179179154132 67 80186-11144.0153.4144.4 + 60 10 8 56 27 48 48 18 15 27 27 33-11143.0153.7144.3 + 60 10 9 27 67 39 27 39 27 27 48 38-11151.0154.0144.1 + 60 10 10 27 22 6 3 2 4 5 15 11-11159.0154.2144.0 + 60 10 11 22 22 39 18 12 6 6 9 17-11152.0154.4143.8 + 60 10 12 3 4 4 7 3 5 7 12 6-11159.0154.4143.6 + 60 10 13 3 5 4 3 4 3 3 9 4-11162.0154.1143.3 + 60 10 14 6 3 3 5 0 2 0 3 3-11166.0153.7143.1 + 60 10 15 4 9 7 15 22 32 32 18 17-11165.0153.4142.8 + 60 10 16 7 9 6 5 12 3 0 6 6-11165.0153.0142.6 + 60 10 17 12 4 6 6 9 5 6 6 7-11167.0152.6142.4 + 60 10 18 32 22 22 15 18 22 56 27 27-11154.0152.1142.2 + 60 10 19 7 22 9 9 7 7 6 15 10-11153.0151.4142.0 + 60 10 20 4 15 9 12 7 15 6 12 10-11149.0150.7141.8 + 60 10 21 12 4 12 7 5 2 6 12 8-11144.0150.2141.7 + 60 10 22 2 3 5 2 2 2 2 0 2-11141.0149.7141.5 + 60 10 23 2 0 3 2 2 4 6 5 3-11134.0149.3141.4 + 60 10 24 2 3 3 6 32 80 32 7 21-11129.0149.0141.2 + 60 10 25 9 12 67 67 67179154 56 76-11130.0148.7141.1 + 60 10 26111 80 80 67 67 39 32 27 63-11132.0148.5141.1 + 60 10 27 39 39 15 56 32 39 32 56 39-11132.0148.3141.0 + 60 10 28 39 67 48 56 48 56 32 15 45-11122.0147.9140.9 + 60 10 29 48 22 27 67 48 48 27 32 40-11131.0147.5140.8 + 60 10 30 27 22 39 56 39 27 22 39 34-11128.0146.9140.7 + 60 10 31 39 18 27 27 22 39 39 18 29-11127.0146.3140.7 + 60 11 1 12 15 15 9 9 9 6 18 12-11124.0145.8140.5 + 60 11 2 15 12 22 15 18 5 15 22 16-11129.0145.2140.4 + 60 11 3 32 12 12 18 15 7 12 39 18-11130.0144.7140.3 + 60 11 4 67 67 67 39 56 56 22 39 52-11131.0144.4140.1 + 60 11 5 22 27 9 7 12 4 2 2 11-11144.0144.1140.0 + 60 11 6 0 4 9 9 6 2 9 7 6-11148.0144.0139.8 + 60 11 7 15 12 12 6 3 2 0 0 6-11157.0143.8139.6 + 60 11 8 0 0 7 6 3 3 2 5 3-11168.0143.6139.4 + 60 11 9 6 7 7 9 6 2 0 4 5-11175.0143.5139.2 + 60 11 10 0 0 9 9 15 9 4 3 6-11200.0143.4139.0 + 60 11 11 9 18 22 39 18 7 15 12 18-11188.0143.5138.7 + 60 11 12 7 4 7 6 48 80179207 67-11168.0143.4138.5 + 60 11 13300300400400300236207 94280-11180.0143.2138.4 + 60 11 14154 39 48 27 12 32 56 27 49-11192.0142.9138.2 + 60 11 15 56 27 32 15 80 80 80179 69-11183.0142.6138.0 + 60 11 16236236 80 56 67 39 18 18 94-11174.0142.4137.8 + 60 11 17 22 15 18 15 12 22 27 12 18-11164.0142.2137.6 + 60 11 18 18 7 4 5 3 3 2 0 5-11153.0142.1137.5 + 60 11 19 0 7 5 12 15 3 2 5 6-11150.0142.0137.3 + 60 11 20 7 9 9 12 15 12 4 6 9-11147.0142.0137.2 + 60 11 21 4 32 67 39 48 48 80 39 45-11139.0142.1137.0 + 60 11 22 67 56 39 22 18 12 7 22 30-11127.0142.2136.9 + 60 11 23 12 12 22 9 7 4 6 7 10-11116.0142.4136.8 + 60 11 24 22 9 18 4 7 7 15 48 16-11113.0142.5136.6 + 60 11 25 27 39 56 56 39 32 32 32 39-11111.0142.5136.4 + 60 11 26 12 32 22 18 22 5 15 12 17-11117.0142.4136.2 + 60 11 27 12 15 18 15 18 27 39 22 21-11119.0142.1136.0 + 60 11 28 48 39 22 18 22 7 5 4 21-11117.0141.9135.8 + 60 11 29 18 9 6 12 6 5 6 12 9-11119.0141.5135.5 + 60 11 30 7 15 6 4 6 6 27 67 17-11131.0141.2135.4 + 60 12 1 94207111 48 56 80 67 80 93-11136.0140.8135.1 + 60 12 2 22 27 22 27 48 18 18 22 26-11145.0140.4134.9 + 60 12 3 9 27 7 12 5 6 2 4 9-11152.0140.0134.7 + 60 12 4 3 0 7 6 9 9 7 3 6-11163.0139.6134.5 + 60 12 5 4 15 5 15 15 9 15 5 10-11159.0139.2134.3 + 60 12 6 4 12 9 22 32 27 32 27 21-11161.0138.8134.0 + 60 12 7 7 22 9 12 27 6 48 67 25-11152.0138.4133.8 + 60 12 8 39 56 22 27 12 6 4 6 22-11154.0138.1133.5 + 60 12 9 7 32 18 22 32 18 22 12 20-11150.0137.8133.3 + 60 12 10 12 12 5 7 7 9 18 7 10-11151.0137.5133.1 + 60 12 11 4 5 9 6 12 12 12 15 9-11144.0137.2132.9 + 60 12 12 15 15 9 15 12 15 27 32 18-11140.0136.9132.7 + 60 12 13 22 22 22 15 18 4 4 3 14-11136.0136.6132.6 + 60 12 14 0 3 7 15 9 7 3 4 6-11132.0136.2132.5 + 60 12 15 12 15 18 27 80 56 56 80 43-11138.0135.9132.4 + 60 12 16 67 67 48 39 22 7 5 9 33-11134.0135.4132.3 + 60 12 17 3 6 15 7 6 5 7 7 7-11125.0134.9132.3 + 60 12 18 12 27 48 39 18 27 27 12 26-11118.0134.3132.3 + 60 12 19 18 18 18 22 12 12 12 27 17-11115.0133.8132.2 + 60 12 20 27 27 18 27 12 12 39 27 24-11118.0133.2132.2 + 60 12 21 48 15 9 9 18 32 27 39 25-11116.0132.3132.2 + 60 12 22 22 27 27 22 12 15 12 22 20-11106.0131.5132.2 + 60 12 23 18 18 15 18 27 7 7 6 15-11103.0131.0132.2 + 60 12 24 9 12 5 9 22 22 15 27 15-11106.0130.3132.2 + 60 12 25 22 7 6 7 6 3 12 6 9-11111.0129.4132.1 + 60 12 26 27 27 27 12 18 7 6 6 16-11116.0128.6132.0 + 60 12 27 7 27 48 48 48 80 94 48 50-11125.0127.9131.8 + 60 12 28 27 12 18 56 27 22 18 6 23-11136.0127.3131.6 + 60 12 29 27 18 22 18 9 39 12 7 19-11145.0126.9131.3 + 60 12 30 7 22 18 9 12 27 27 12 17-11159.0126.4131.1 + 60 12 31 6 18 22 15 18 22 15 7 15-11163.0125.9130.8 + 61 1 1 12 12 15 6 5 4 2 3 7-11164.0125.5130.5 + 61 1 2 0 2 5 7 5 3 4 4 4-11176.0125.1130.2 + 61 1 3 4 7 9 3 3 5 4 4 5-11175.0124.9129.9 + 61 1 4 0 3 4 3 4 4 2 4 3-11165.0124.7129.6 + 61 1 5 2 0 4 5 3 2 9 7 4-11160.0124.5129.4 + 61 1 6 3 12 6 12 9 3 2 3 6-11143.0124.3129.1 + 61 1 7 12 15 5 5 9 5 4 12 8-11132.0124.0129.0 + 61 1 8 27 27 22 18 15 27 32 12 23-11125.0123.8128.8 + 61 1 9 9 27 39 39 27 22 32 48 30-11122.0123.5128.7 + 61 1 10 9 2 5 6 6 5 3 4 5-11115.0123.0128.6 + 61 1 11 2 3 3 0 2 0 0 0 1-11110.0122.6128.6 + 61 1 12 2 9 7 3 3 5 6 6 5-11103.0122.0128.6 + 61 1 13 7 4 12 12 18 6 9 6 9-11 96.0121.4128.6 + 61 1 14 5 3 2 3 2 5 5 15 5-11 96.0120.7128.6 + 61 1 15 15 9 22 15 12 7 3 67 19-11 97.0120.0128.6 + 61 1 16 15 27 27 5 2 2 12 9 12-11100.0119.3128.5 + 61 1 17 12 7 9 9 9 5 5 7 8-11102.0118.7128.4 + 61 1 18 12 6 12 18 39 12 22 15 17-11103.0118.1128.4 + 61 1 19 22 9 6 5 15 32 67 56 27-11102.0117.5128.3 + 61 1 20 80 67 48 27 32 39 27 6 41-11102.0116.9128.2 + 61 1 21 6 22 27 22 27 32 5 5 18-11104.0116.4128.1 + 61 1 22 5 7 32 32 32 27 18 15 21-11102.0115.9128.0 + 61 1 23 12 9 6 5 3 7 5 5 7-11100.0115.4127.9 + 61 1 24 12 15 32 15 18 15 27 12 18-11103.0115.0127.8 + 61 1 25 27 32 12 27 27 7 9 7 19-11103.0114.4127.7 + 61 1 26 6 7 9 12 27 15 9 12 12-11108.0113.9127.6 + 61 1 27 12 6 12 9 9 6 6 3 8-11109.0113.6127.5 + 61 1 28 22 6 6 9 12 12 22 7 12-11125.0113.2127.3 + 61 1 29 12 12 6 6 15 7 9 6 9-11132.0112.9127.2 + 61 1 30 5 12 5 6 0 2 0 4 4-11129.0112.7127.1 + 61 1 31 9 6 4 2 2 2 3 0 4-11123.0112.4126.9 + 61 2 1 4 3 0 2 3 4 6 3 3-11123.0112.2126.8 + 61 2 2 3 2 0 2 3 0 0 2 2-11122.0112.1126.7 + 61 2 3 4 2 4 22 39 15 9 9 13-11118.0112.0126.6 + 61 2 4 5 7 7 5 48 32111132 43-11118.0111.8126.5 + 61 2 5 67 67 56 22 7 7 3 4 29-11118.0111.6126.4 + 61 2 6 9 9 48 27 22 39 12 15 23-11121.0111.3126.3 + 61 2 7 15 18 7 9 9 5 6 22 11-11114.0110.9126.2 + 61 2 8 15 6 7 6 7 7 15 9 9-11111.0110.4126.1 + 61 2 9 15 12 9 7 6 6 0 4 7-11108.0109.7126.0 + 61 2 10 6 2 4 2 0 2 5 7 4-11104.0109.0125.8 + 61 2 11 12 15 4 18 7 3 5 5 9-11101.0108.3125.6 + 61 2 12 0 4 2 2 2 2 2 4 2-11 98.0107.6125.3 + 61 2 13 5 5 27 48 32 39 18 9 23-11 97.0106.9125.0 + 61 2 14 7 5 5 5 3 5 15 15 8-11 97.0106.4124.7 + 61 2 15 12 6 6 15 7 5 3 2 7-11 98.0105.9124.3 + 61 2 16 22 22 39 56 39 18 9 12 27-11 96.0105.7124.0 + 61 2 17 6 3 7 32 48 22 32 80 29-11 96.0105.6123.6 + 61 2 18111 56 48 48 48 56 32 6 51-11 96.0105.6123.3 + 61 2 19 15 9 18 18 39 22 15 9 18-11 96.0105.6123.0 + 61 2 20 22 22 27 27 39 56 18 27 30-11 99.0105.6122.7 + 61 2 21 15 15 22 18 22 39 22 32 23-11100.0105.5122.5 + 61 2 22 15 27 18 18 12 18 7 27 18-11102.0105.5122.3 + 61 2 23 15 12 15 7 7 6 18 7 11-11103.0105.6122.1 + 61 2 24 9 27 27 4 5 3 2 0 10-11104.0105.7121.9 + 61 2 25 0 0 4 6 2 2 5 7 3-11106.0105.8121.7 + 61 2 26 5 4 2 3 3 5 5 3 4-11101.0105.8121.6 + 61 2 27 3 18 7 6 12 15 5 3 9-11103.0105.8121.5 + 61 2 28 9 15 12 15 15 6 12 9 12-11103.0105.7121.4 + 61 3 1 5 12 7 6 18 2 6 9 8-11103.0105.6121.3 + 61 3 2 9 18 12 6 2 3 5 7 8-11103.0105.5121.3 + 61 3 3 15 5 5 3 4 4 2 2 5-11104.0105.3121.2 + 61 3 4 0 2 3 3 9 4 0 2 3-11 96.0105.1121.1 + 61 3 5 4 7 4 5 3 5 18 67 14-11 94.0105.0121.0 + 61 3 6111 80 27 32 32 6 4 2 37-11 93.0105.0120.9 + 61 3 7 0 0 2 3 4 4 6 7 3-11 95.0105.0120.8 + 61 3 8 6 6 3 3 3 4 5 9 5-11 94.0104.9120.7 + 61 3 9 7 12 12 4 18 15 15 22 13-11 90.0104.9120.6 + 61 3 10 27 39 94132 48 15 6 5 46-11 91.0104.7120.5 + 61 3 11 3 5 6 6 7 6 9 4 6-11 98.0104.3120.3 + 61 3 12 18 3 4 7 6 3 3 9 7-11 92.0104.0120.2 + 61 3 13 15 7 15 6 7 15 6 6 10-11 93.0103.8120.1 + 61 3 14 32 39 32 27 18 22 27 9 26-11 91.0103.5120.0 + 61 3 15 7 27 12 32 48 12 15 39 24-11 98.0103.4119.8 + 61 3 16 39 18 56 15 18 12 3 3 21-11 99.0103.3119.7 + 61 3 17 9 9 39 27 12 6 4 5 14-11 98.0103.4119.6 + 61 3 18 7 5 5 2 12 22 27 15 12-11101.0103.4119.5 + 61 3 19 6 48 80 22 39 56 32 22 38-11102.0103.3119.3 + 61 3 20 22 15 12 27 22 12 22 7 17-11105.0103.4119.1 + 61 3 21 15 18 6 7 5 15 15 4 11-11105.0103.6118.8 + 61 3 22 12 22 32 18 9 6 3 2 13-11106.0103.8118.6 + 61 3 23 4 12 12 7 22 9 7 5 10-11110.0104.0118.3 + 61 3 24 5 9 6 18 9 7 5 7 8-11116.0104.1118.1 + 61 3 25 6 2 3 3 9 5 4 5 5-11118.0104.2117.8 + 61 3 26 4 9 12 15 9 5 4 15 9-11121.0104.2117.7 + 61 3 27 7 7 9 12 12 80 39 6 22-11125.0104.2117.5 + 61 3 28 27 32 22 15 15 12 9 3 17-11126.0104.2117.4 + 61 3 29 3 5 4 6 9 5 9 5 6-11126.0104.2117.2 + 61 3 30 12 27 22 6 6 5 4 2 11-11125.0104.2117.1 + 61 3 31 2 3 3 4 6 18 7 7 6-11117.0104.1117.1 + 61 4 1 39 22 27 12 7 6 9 12 17-11113.0104.2117.0 + 61 4 2 6 18 27 9 15 7 18 15 14-11105.0104.2117.0 + 61 4 3 27 80 39 27 9 12 9 12 27-11101.0104.2116.9 + 61 4 4 15 5 12 3 3 2 4 2 6-11103.0104.0116.9 + 61 4 5 9 15 4 6 3 4 2 0 5-11107.0103.9116.8 + 61 4 6 5 3 4 4 5 6 22 22 9-11106.0103.7116.7 + 61 4 7 22 18 3 7 4 3 4 4 8-11 98.0103.5116.6 + 61 4 8 4 5 9 12 3 3 6 5 6-11104.0103.4116.5 + 61 4 9 6 9 12 94 39 15 12 9 25-11 96.0103.4116.4 + 61 4 10 22 22 18 22 18 15 18 12 18-11 93.0103.4116.3 + 61 4 11 27 48 15 18 18 56 18 6 26-11 92.0103.5116.1 + 61 4 12 7 6 18 7 18 12 9 6 10-11 89.0103.6116.0 + 61 4 13 6 9 6 5 22 56 12 7 15-11 88.0103.6115.9 + 61 4 14 12 15 12 22 32 56132154 54-11 93.0103.8115.7 + 61 4 15179132 80 18 18 32 18 12 61-11 98.0103.9115.6 + 61 4 16 12 12 7 9 15 12 18 22 13-11103.0103.9115.4 + 61 4 17 5 6 5 5 6 5 3 0 4-11105.0103.9115.2 + 61 4 18 5 7 9 6 4 4 2 4 5-11107.0103.8115.0 + 61 4 19 6 9 7 4 5 7 12 9 7-11105.0103.8114.9 + 61 4 20 18 7 12 4 3 4 5 4 7-11103.0103.8114.7 + 61 4 21 0 2 0 2 5 2 4 5 3-11104.0103.7114.6 + 61 4 22 2 0 3 6 12 15 12 18 9-11103.0103.6114.4 + 61 4 23 4 6 9 7 12 5 12 12 8-11105.0103.5114.3 + 61 4 24 18 12 5 7 9 9 12 15 11-11111.0103.6114.1 + 61 4 25 22 9 5 5 4 5 7 5 8-11111.0103.4114.0 + 61 4 26 12 18 9 6 15 22 22 4 14-11126.0103.3113.9 + 61 4 27 6 15 18 18 18 9 6 7 12-11120.0103.2113.8 + 61 4 28 18 9 9 5 4 3 6 4 7-11114.0103.0113.6 + 61 4 29 9 0 0 7 3 4 5 15 5-11121.0102.9113.5 + 61 4 30 9 6 5 7 12 12 6 18 9-11122.0102.8113.4 + 61 5 1 18 22 5 18 18 15 3 18 15-11125.0102.8113.3 + 61 5 2 67 39 12 15 4 6 3 3 19-11119.0102.8113.2 + 61 5 3 2 5 5 4 3 3 4 2 4-11111.0102.8113.1 + 61 5 4 0 2 4 4 3 6 15 32 8-11104.0102.8113.0 + 61 5 5 9 12 22 9 9 56 22 22 20-11103.0102.8112.8 + 61 5 6 12 48 48 39 39 7 22 22 30-11 97.0102.9112.7 + 61 5 7 22 15 39 22 15 22 9 18 20-11 97.0103.0112.5 + 61 5 8 9 9 12 7 7 9 22 15 11-11 94.0103.2112.4 + 61 5 9 5 12 27 39 12 15 5 7 15-11 96.0103.3112.2 + 61 5 10 9 5 6 7 6 4 6 18 8-11 92.0103.4112.0 + 61 5 11 22 15 18 12 22 22 32 12 19-11 98.0103.5111.8 + 61 5 12 22 22 15 12 7 15 12 18 15-11101.0103.8111.5 + 61 5 13 56 39 15 15 22 9 9 7 22-11 97.0104.1111.3 + 61 5 14 15 22 12 15 6 5 3 3 10-11 93.0104.5111.1 + 61 5 15 0 2 2 5 3 5 6 9 4-11 91.0104.7110.8 + 61 5 16 27 56 39 15 32 27 15 12 28-11 88.0104.8110.5 + 61 5 17 15 6 5 9 12 9 2 4 8-11 88.0104.8110.3 + 61 5 18 4 3 4 4 3 2 2 2 3-11 95.0104.8110.0 + 61 5 19 6 7 6 7 7 7 7 18 8-11100.0104.7109.8 + 61 5 20 18 32 22 7 9 7 9 3 13-11105.0104.8109.6 + 61 5 21 5 4 5 4 4 4 9 7 5-11110.0104.9109.4 + 61 5 22 12 9 9 6 6 15 22 7 11-11109.0105.0109.2 + 61 5 23 9 22 9 12 22 22 12 5 14-11110.0105.2109.1 + 61 5 24 15 9 6 5 6 7 4 9 8-11108.0105.4108.9 + 61 5 25 22 67 67 22 32 22 32 7 34-11106.0105.5108.9 + 61 5 26 22 4 7 5 9 4 3 5 7-11 88.0105.6108.8 + 61 5 27 9 9 9 4 5 4 2 4 6-11 95.0105.6108.7 + 61 5 28 4 3 4 6 15 15 18 18 10-11 91.0105.6108.7 + 61 5 29 4 12 6 2 2 3 5 3 5-11 91.0105.6108.6 + 61 5 30 5 5 9 12 12 12 5 9 9-11 88.0105.7108.6 + 61 5 31 22 18 22 22 27 27 18 22 22-11 88.0105.9108.5 + 61 6 1 15 15 15 39 67 56 18 15 30-11 86.0106.3108.4 + 61 6 2 22 9 22 39 39 39 48 4 28-11 88.0106.8108.3 + 61 6 3 9 22 18 15 5 4 3 6 10-11 92.0107.2108.2 + 61 6 4 6 9 12 9 15 5 3 5 8-11 89.0107.5108.1 + 61 6 5 5 15 12 9 5 7 9 7 9-11 86.0107.8108.0 + 61 6 6 6 6 12 5 9 56 27 15 17-11 88.0107.9107.8 + 61 6 7 7 12 22 32 48 22 27 18 24-11 89.0108.1107.6 + 61 6 8 27 18 18 15 18 12 12 12 17-11 91.0108.3107.5 + 61 6 9 3 4 7 7 5 7 9 7 6-11100.0108.4107.3 + 61 6 10 5 5 6 5 7 2 0 0 4-11102.0108.4107.2 + 61 6 11 2 3 2 2 3 3 4 0 2-11110.0108.3107.0 + 61 6 12 4 22 12 7 7 7 3 2 8-11108.0108.3106.8 + 61 6 13 2 3 2 5 4 3 3 4 3-11114.0108.4106.6 + 61 6 14 4 0 3 4 2 2 3 18 5-11123.0108.6106.5 + 61 6 15 9 9 7 18 15 12 9 6 11-11129.0108.7106.4 + 61 6 16 22 7 5 9 7 12 12 6 10-11132.0109.0106.2 + 61 6 17 5 6 2 5 12 4 5 7 6-11137.0109.1106.1 + 61 6 18 5 6 7 15 12 18 18 32 14-11136.0109.3105.9 + 61 6 19 9 15 7 6 4 3 7 6 7-11131.0109.3105.8 + 61 6 20 6 9 9 6 2 7 18 27 11-11131.0109.3105.7 + 61 6 21 48 39 32 67 67 32 48132 58-11132.0109.3105.7 + 61 6 22132 67 39 48 27 48 56 48 58-11134.0109.1105.6 + 61 6 23 22 6 4 3 6 12 7 9 9-11135.0109.0105.6 + 61 6 24 9 7 4 4 5 5 6 5 6-11117.0109.0105.6 + 61 6 25 6 6 5 15 7 7 7 18 9-11111.0108.9105.6 + 61 6 26 5 4 2 2 15 7 7 3 6-11108.0109.0105.5 + 61 6 27 2 6 15 15 12 5 2 2 7-11 99.0109.0105.5 + 61 6 28 2 4 5 6 6 5 3 4 4-11 95.0109.1105.4 + 61 6 29 18 94 39 18 12 7 7 6 25-11102.0109.1105.3 + 61 6 30 9 5 3 2 2 2 4 5 4-11103.0109.2105.2 + 61 7 1 12 12 12 15 7 12 2 4 10-11104.0109.4105.0 + 61 7 2 5 9 12 9 6 18 22 15 12-11 99.0109.6104.8 + 61 7 3 6 7 18 27 32 27 9 5 16-11104.0109.9104.6 + 61 7 4 9 5 6 9 15 12 15 56 16-11103.0110.1104.4 + 61 7 5 80 94 27 27 48 39 15 27 45-11106.0110.4104.1 + 61 7 6 15 27 12 9 7 39 12 9 16-11102.0110.8103.9 + 61 7 7 27 12 18 15 18 12 6 3 14-11105.0111.1103.7 + 61 7 8 6 7 12 12 12 9 6 12 10-11107.0111.4103.5 + 61 7 9 9 9 22 7 5 12 4 3 9-11112.0111.7103.3 + 61 7 10 12 27 22 12 12 18 6 7 15-11124.0112.0103.2 + 61 7 11 15 7 5 5 5 12 12 9 9-11138.0112.3103.1 + 61 7 12 6 4 12 4 4 2 5 2 5-11137.0112.5102.9 + 61 7 13 2 4 3 94207236179 94102-11141.0112.7102.9 + 61 7 14 39 15111236154111 94 27 98-11136.0112.8102.8 + 61 7 15 15 39 15 15 32 9 39 39 25-11136.0112.9102.7 + 61 7 16 67 27 12 9 18 18 22 12 23-11132.0113.0102.7 + 61 7 17 15 12 9 22 32 9 94 94 36-11137.0113.1102.7 + 61 7 18 48 94 80 48179132 67 94 93-11131.0113.1102.6 + 61 7 19 80 39 5 2 6 4 4 5 18-11126.0113.2102.6 + 61 7 20 7 15 18 7 6 15 27 56 19-11123.0113.3102.5 + 61 7 21 48 67 67 12 18 27 27 12 35-11118.0113.3102.5 + 61 7 22 12 12 22 15 12 12 3 4 12-11119.0113.3102.5 + 61 7 23 4 4 6 18 22 48 22 15 17-11118.0113.3102.6 + 61 7 24 7 18 18 18 18 9 5 9 13-11118.0113.3102.6 + 61 7 25 27 18 18 15 9 6 7 9 14-11117.0113.2102.6 + 61 7 26 27 22 6 7 6 4 56 56 23-11115.0113.1102.7 + 61 7 27 27 32236236 80 56 94154114-11111.0112.9102.7 + 61 7 28 27 15 18 18 7 22 27 9 18-11105.0112.5102.7 + 61 7 29 6 18 9 5 9 5 6 7 8-11103.0112.3102.7 + 61 7 30 9 6 15 6 5 4 9 7 8-11 92.0112.1102.7 + 61 7 31 5 3 4 6 12 6 9 6 6-11 91.0112.0102.6 + 61 8 1 15 18 5 4 4 4 6 12 9-11 90.0112.0102.6 + 61 8 2 56 94 67 32 27 27 18 15 42-11 87.0111.9102.5 + 61 8 3 12 22 22 18 18 12 18 22 18-11 91.0111.9102.5 + 61 8 4 39 22 22 18 15 12 12 6 18-11 88.0112.0102.4 + 61 8 5 5 6 9 18 12 6 6 9 9-11 90.0112.4102.4 + 61 8 6 9 5 5 6 9 6 6 9 7-11 92.0112.7102.3 + 61 8 7 2 3 2 3 7 3 6 7 4-11 99.0113.1102.3 + 61 8 8 4 7 27 27 15 9 39 5 17-11105.0113.5102.2 + 61 8 9 6 9 5 2 4 4 2 0 4-11113.0113.6102.1 + 61 8 10 9 12 18 9 22 7 7 6 11-11122.0113.7102.0 + 61 8 11 22 32 12 18 39 18 22 27 24-11130.0113.7101.9 + 61 8 12 6 7 6 2 3 6 9 15 7-11128.0113.6101.9 + 61 8 13 9 4 2 2 0 0 2 0 2-11128.0113.5101.8 + 61 8 14 0 0 4 5 15 27 12 3 8-11127.0113.3101.8 + 61 8 15 4 5 22 6 7 7 5 6 8-11123.0113.2101.7 + 61 8 16 12 9 4 2 2 3 3 4 5-11119.0113.1101.7 + 61 8 17 4 4 4 9 5 3 7 5 5-11119.0113.0101.7 + 61 8 18 4 2 4 6 7 7 3 5 5-11116.0112.9101.6 + 61 8 19 6 18 18 12 9 5 2 5 9-11113.0112.7101.6 + 61 8 20 3 3 0 9 7 15 9 4 6-11109.0112.4101.6 + 61 8 21 6 6 5 5 5 5 4 3 5-11104.0112.0101.6 + 61 8 22 3 2 3 2 2 2 2 3 2-11103.0111.5101.6 + 61 8 23 2 2 3 2 3 3 3 4 3-11 98.0111.0101.7 + 61 8 24 0 0 2 3 4 9 9 7 4-11 97.0110.5101.7 + 61 8 25 7 6 7 9 15 6 6 18 9-11 93.0110.0101.8 + 61 8 26 7 9 7 18 9 5 15 18 11-11 95.0109.8101.9 + 61 8 27 15 7 18 4 4 5 5 4 8-11 95.0109.3102.0 + 61 8 28 9 7 4 5 4 3 4 5 5-11100.0108.9102.1 + 61 8 29 6 3 2 5 5 22 48 39 16-11103.0108.6102.1 + 61 8 30 39 22 9 32 80 56 22 39 37-11106.0108.4102.2 + 61 8 31 39 56 48 12 18 27 18 22 30-11108.0108.2102.2 + 61 9 1 32 39 32 32 9 18 32 32 28-11110.0108.1102.3 + 61 9 2 9 7 15 32 12 12 5 12 13-11110.0108.0102.3 + 61 9 3 15 22 18 15 5 6 7 5 12-11117.0107.9102.2 + 61 9 4 3 4 9 7 6 2 2 9 5-11118.0107.8102.2 + 61 9 5 22 15 12 5 7 7 12 12 12-11114.0107.6102.2 + 61 9 6 5 12 3 5 5 3 2 2 5-11112.0107.5102.1 + 61 9 7 3 4 5 3 2 3 4 4 4-11115.0107.4102.1 + 61 9 8 2 4 3 3 3 4 5 4 4-11117.0107.3102.1 + 61 9 9 4 5 18 22 5 5 3 6 9-11126.0107.3102.0 + 61 9 10 12 4 3 7 6 9 6 7 7-11130.0107.4102.0 + 61 9 11 4 9 5 9 9 15 15 27 12-11127.0107.4101.9 + 61 9 12 9 32 48 15 9 4 4 15 17-11130.0107.4101.9 + 61 9 13 6 7 4 3 2 12 12 15 8-11130.0107.3101.9 + 61 9 14 15 27 22 22 80 9 18 32 28-11137.0107.3101.8 + 61 9 15 12 5 9 6 7 3 2 5 6-11135.0107.2101.8 + 61 9 16 7 7 5 7 12 5 7 9 7-11133.0107.1101.8 + 61 9 17 27 32 7 7 5 5 5 2 11-11124.0106.9101.8 + 61 9 18 7 18 3 4 7 12 3 2 7-11115.0106.7101.8 + 61 9 19 2 5 2 2 5 2 2 2 3-11108.0106.3101.9 + 61 9 20 6 9 12 5 6 12 15 9 9-11101.0105.9101.9 + 61 9 21 2 2 3 3 2 3 3 2 3-11 96.0105.4102.0 + 61 9 22 2 3 3 4 12 7 7 6 6-11 92.0104.9102.0 + 61 9 23 3 0 0 3 3 3 4 4 3-11 90.0104.3102.1 + 61 9 24 5 5 12 56 80 80 48 48 42-11 97.0103.7102.1 + 61 9 25 48 56 80 27 22 18 12 15 35-11 97.0103.2102.1 + 61 9 26 18 15 9 9 18 32 18 22 18-11 98.0102.8102.1 + 61 9 27 22 39 32 39 32 27 7 7 26-11 96.0102.4102.0 + 61 9 28 5 2 3 3 2 2 5 15 5-11 96.0102.1102.0 + 61 9 29 7 7 6 4 5 7 5 4 6-11102.0102.0101.9 + 61 9 30 7 15 6 6 7 2 39207 36-11100.0101.8101.8 + 61 10 1300236132179 39 7 7 9114-11 98.0101.8101.7 + 61 10 2 3 4 5 5 6 12 7 2 6-11 97.0101.8101.7 + 61 10 3 4 2 4 5 7 7 6 4 5-11 97.0101.7101.6 + 61 10 4 3 4 2 5 12 7 6 15 7-11102.0101.6101.6 + 61 10 5 9 3 4 5 2 0 4 2 4-11108.0101.5101.5 + 61 10 6 3 2 5 6 5 6 7 6 5-11101.0101.4101.4 + 61 10 7 18 9 6 6 6 0 2 3 6-11 99.0101.3101.3 + 61 10 8 0 6 15 9 4 6 3 3 6-11 98.0101.1101.3 + 61 10 9 6 7 4 3 2 0 0 0 3-11107.0100.8101.2 + 61 10 10 2 2 2 0 2 2 5 5 3-11106.0100.4101.2 + 61 10 11 5 6 12 18 15 6 18 12 12-11107.0100.1101.2 + 61 10 12 48 32 27 12 12 18 6 9 21-11111.0 99.8101.2 + 61 10 13 9 32 22 12 4 12 5 12 14-11111.0 99.4101.2 + 61 10 14 18 5 7 7 9 2 0 3 6-11105.0 99.1101.3 + 61 10 15 3 2 2 4 2 4 5 2 3-11106.0 98.7101.3 + 61 10 16 0 0 2 2 2 0 0 0 1-11100.0 98.4101.4 + 61 10 17 0 0 0 0 0 0 0 7 1-11 97.0 98.2101.4 + 61 10 18 2 4 4 2 3 3 3 3 3-11 95.0 97.9101.4 + 61 10 19 7 9 5 4 3 2 5 9 6-11 95.0 97.7101.4 + 61 10 20 56 39 32 6 2 4 3 2 18-11 93.0 97.3101.4 + 61 10 21 6 3 3 7 9 9 9 15 8-11 92.0 97.0101.4 + 61 10 22 6 6 4 7 6 6 2 3 5-11 89.0 96.8101.5 + 61 10 23 2 3 4 4 2 7 7 15 6-11 85.0 96.5101.5 + 61 10 24 6 12 6 6 4 2 3 2 5-11 85.0 96.2101.5 + 61 10 25 4 3 4 4 9 12 12 15 8-11 83.0 95.9101.4 + 61 10 26 12 22 48 18 15 18 56 56 31-11 83.0 95.4101.4 + 61 10 27 32 56 22 32 15 15 27 39 30-11 84.0 95.0101.3 + 61 10 28 9 9 48 94207207300154129-11 86.0 94.7101.2 + 61 10 29 67 56 80 27 7 5 3 9 32-11 85.0 94.4101.2 + 61 10 30 2 0 6 12 7 15 4 5 6-11 87.0 94.2101.1 + 61 10 31 4 4 18 4 5 2 2 2 5-11 86.0 94.1101.0 + 61 11 1 4 9 6 6 5 2 6 3 5-11 86.0 93.9100.9 + 61 11 2 2 0 6 7 7 4 3 3 4-11 83.0 93.7100.9 + 61 11 3 6 12 7 4 2 0 0 5 5-11 81.0 93.6100.8 + 61 11 4 3 2 2 2 2 3 6 15 4-11 82.0 93.4100.8 + 61 11 5 15 18 15 15 39 15 9 27 19-11 87.0 93.2100.8 + 61 11 6 12 27 39 27 9 3 3 7 16-11 87.0 93.0100.7 + 61 11 7 12 15 32 48 32 56 94 48 42-11 93.0 92.8100.7 + 61 11 8 67 32 27 7 18 3 18 15 23-11 99.0 92.6100.7 + 61 11 9 18 7 22 9 9 9 15 4 12-11 98.0 92.4100.7 + 61 11 10 6 12 4 4 4 4 2 2 5-11101.0 92.2100.7 + 61 11 11 0 0 3 2 2 4 3 9 3-11 99.0 92.1100.7 + 61 11 12 18 15 18 9 15 18 7 18 15-11 94.0 92.1100.7 + 61 11 13 12 5 3 3 0 0 3 5 4-11 91.0 92.2100.7 + 61 11 14 7 27 39 7 4 5 7 6 13-11 86.0 92.2100.6 + 61 11 15 0 3 0 2 0 0 0 4 1-11 84.0 92.2100.6 + 61 11 16 0 0 0 2 2 0 3 15 3-11 86.0 92.2100.6 + 61 11 17 9 6 4 3 27 32 9 39 16-11 83.0 92.2100.6 + 61 11 18 48 27 94 67 48 39 48 18 49-11 79.0 92.2100.6 + 61 11 19 32 18 18 6 9 2 2 2 11-11 77.0 92.1100.6 + 61 11 20 2 9 22 12 22 15 9 12 13-11 80.0 92.0100.6 + 61 11 21 15 15 5 5 2 4 5 7 7-11 83.0 91.8100.6 + 61 11 22 7 0 3 4 3 3 0 0 3-11 84.0 91.5100.6 + 61 11 23 0 0 0 0 3 3 3 3 2-11 87.0 91.2100.6 + 61 11 24 3 2 3 2 2 4 3 4 3-11 87.0 90.9100.6 + 61 11 25 3 4 7 9 4 4 3 2 5-11 92.0 90.5100.7 + 61 11 26 0 4 5 9 4 4 5 7 5-11 93.0 90.3100.7 + 61 11 27 7 2 3 3 4 5 6 0 4-11 95.0 90.0100.8 + 61 11 28 0 2 0 2 2 5 7 3 3-11 98.0 89.8100.8 + 61 11 29 5 6 4 2 2 2 0 3 3-11 98.0 89.5100.8 + 61 11 30 3 0 4 0 2 2 3 3 2-11104.0 89.3100.9 + 61 12 1 2 6 32 48179 80 39 48 54-11105.0 89.1100.9 + 61 12 2 56 39 27 67 56 94 94 94 66-11108.0 88.9100.9 + 61 12 3111 67 94 48 48 15 22 32 55-11111.0 88.8100.9 + 61 12 4 9 9 9 12 9 15 4 9 10-11105.0 88.7100.9 + 61 12 5 5 7 6 0 9 32 22 9 11-11101.0 88.7100.9 + 61 12 6 15 22 4 4 18 32 18 7 15-11101.0 88.7100.9 + 61 12 7 7 6 7 12 18 0 0 0 6-11 94.0 88.7100.9 + 61 12 8 0 0 2 4 2 2 2 0 2-11 96.0 88.7100.9 + 61 12 9 0 3 4 5 4 3 5 3 3-11 92.0 88.9100.9 + 61 12 10 0 5 2 7 6 7 9 9 6-11 87.0 89.0100.8 + 61 12 11 15 12 22 15 5 18 15 9 14-11 82.0 89.3100.8 + 61 12 12 15 18 0 2 3 4 2 0 6-11 78.0 89.6100.7 + 61 12 13 0 0 0 4 2 5 5 15 4-11 82.0 89.9100.7 + 61 12 14 12 3 3 2 2 3 3 7 4-11 81.0 90.4100.6 + 61 12 15 4 12 6 6 6 3 2 15 7-11 81.0 90.8100.5 + 61 12 16 3 5 5 4 3 2 2 6 4-11 81.0 91.1100.4 + 61 12 17 9 5 4 4 0 2 2 3 4-11 79.0 91.4100.3 + 61 12 18 5 5 2 2 0 0 0 2 2-11 81.0 91.7100.2 + 61 12 19 0 2 0 0 0 4 2 0 1-11 82.0 91.9100.1 + 61 12 20 2 0 4 5 4 3 3 4 3-11 88.0 92.0100.0 + 61 12 21 2 7 3 3 0 0 3 5 3-11 90.0 92.0 99.8 + 61 12 22 4 6 2 4 12 7 5 4 6-11 99.0 92.1 99.7 + 61 12 23 6 12 12 7 18 5 4 32 12-11101.0 92.3 99.6 + 61 12 24 15 9 6 9 15 12 6 6 10-11104.0 92.4 99.5 + 61 12 25 2 0 0 3 0 3 2 3 2-11103.0 92.6 99.5 + 61 12 26 2 5 4 4 5 3 3 5 4-11102.0 92.9 99.4 + 61 12 27 18 15 9 6 9 5 6 4 9-11103.0 92.9 99.4 + 61 12 28 6 7 7 27 27 27 15 27 18-11 98.0 93.0 99.4 + 61 12 29 27 12 5 9 7 9 5 32 13-11 98.0 93.0 99.4 + 61 12 30 12 27 9 18 12 27 9 15 16-11 94.0 93.1 99.3 + 61 12 31 6 6 5 5 5 6 18 5 7-11 93.0 93.1 99.3 + 62 1 1 6 18 4 3 3 3 2 6 6-11 88.3 93.1 99.3 + 62 1 2 12 9 15 18 6 6 4 4 9-11 83.7 93.1 99.2 + 62 1 3 0 0 0 3 3 2 4 3 2-11 79.0 93.0 99.2 + 62 1 4 2 0 2 3 0 0 0 0 1-11 81.0 93.0 99.1 + 62 1 5 0 0 0 2 2 0 2 2 1-11 78.0 92.8 99.1 + 62 1 6 2 7 2 4 2 4 4 0 3-11 77.0 92.7 99.0 + 62 1 7 0 0 2 2 3 4 5 6 3-11 77.0 92.6 99.0 + 62 1 8 3 3 3 4 4 6 3 2 4-11 74.0 92.5 98.9 + 62 1 9 4 5 0 5 7 9 12 6 6-11 74.0 92.4 98.8 + 62 1 10 22 94 32 80 56 56 48 32 53-11 75.0 92.4 98.6 + 62 1 11 22 22 15 7 7 9 9 6 12-11 76.0 92.5 98.5 + 62 1 12 6 6 5 3 2 2 3 7 4-11 77.0 92.5 98.3 + 62 1 13 7 9 5 4 4 3 4 2 5-11 74.0 92.7 98.2 + 62 1 14 2 2 4 4 6 22 18 27 11-11 82.0 93.0 98.0 + 62 1 15 12 9 12 7 6 6 7 18 10-11 86.0 93.4 97.9 + 62 1 16 9 7 15 12 22 9 6 12 12-11 84.0 93.8 97.8 + 62 1 17 6 6 3 3 4 4 4 3 4-11 87.0 94.2 97.6 + 62 1 18 0 2 2 3 3 6 3 0 2-11 94.0 94.7 97.5 + 62 1 19 9 9 18 7 22 32 22 4 15-11 99.0 95.1 97.4 + 62 1 20 4 4 6 3 2 3 7 4 4-11107.0 95.5 97.3 + 62 1 21 7 5 7 9 18 4 2 7 7-11112.0 95.9 97.2 + 62 1 22 2 2 3 2 0 0 0 0 1-11111.0 96.1 97.1 + 62 1 23 0 0 0 2 2 2 0 2 1-11116.0 96.2 97.0 + 62 1 24 0 0 0 0 0 3 2 3 1-11114.0 96.3 96.8 + 62 1 25 0 3 7 6 2 7 3 7 4-11115.0 96.3 96.7 + 62 1 26 15 5 5 7 7 9 9 7 8-11115.0 96.3 96.6 + 62 1 27 9 15 12 18 6 4 7 12 10-11115.0 96.3 96.5 + 62 1 28 3 3 6 4 0 3 3 3 3-11115.0 96.2 96.5 + 62 1 29 3 12 5 6 15 5 2 7 7-11109.0 96.2 96.4 + 62 1 30 12 9 9 6 7 7 3 5 7-11101.0 96.0 96.4 + 62 1 31 4 3 2 0 0 0 0 0 1-11102.0 95.9 96.3 + 62 2 1 0 2 0 0 2 2 2 3 1-11110.0 95.7 96.3 + 62 2 2 12 4 4 2 2 2 5 5 5-11103.0 95.5 96.2 + 62 2 3 4 5 5 2 3 6 4 3 4-11101.0 95.2 96.2 + 62 2 4 5 6 6 18 48 32 22 22 20-11104.0 95.0 96.1 + 62 2 5 12 15 2 3 6 6 5 5 7-11 92.0 94.9 96.1 + 62 2 6 2 4 3 4 3 3 6 22 6-11 86.0 94.9 96.0 + 62 2 7 32 18 22 27 18 27 12 4 20-11 82.0 95.1 95.9 + 62 2 8 0 3 3 6 6 3 2 3 3-11 82.0 95.3 95.8 + 62 2 9 15 4 4 4 7 3 3 4 6-11 83.0 95.7 95.7 + 62 2 10 6 3 2 2 4 2 3 0 3-11 81.0 96.2 95.5 + 62 2 11 7 4 2 12 12 6 27 32 13-11 82.0 96.7 95.4 + 62 2 12 56 12 15 12 7 12 27 22 20-11 81.0 97.2 95.2 + 62 2 13 9 18 6 18 12 12 9 22 13-11 84.0 97.8 95.1 + 62 2 14 22 15 7 6 6 9 22 32 15-11 83.0 98.3 95.0 + 62 2 15 7 18 6 7 4 22 27 7 12-11 83.0 98.8 94.9 + 62 2 16 9 15 15 67 48 56 48 48 38-11 86.0 99.1 94.9 + 62 2 17 27 18 32 15 5 5 9 5 15-11 87.0 99.5 94.8 + 62 2 18 2 3 5 7 3 4 18 6 6-11 91.0 99.8 94.7 + 62 2 19 0 3 6 5 5 2 0 2 3-11108.0100.0 94.6 + 62 2 20 0 0 5 5 6 2 2 5 3-11107.0100.2 94.6 + 62 2 21 2 0 7 4 15 18 7 5 7-11114.0100.2 94.5 + 62 2 22 22 18 12 18 18 12 4 3 13-11121.0100.3 94.5 + 62 2 23 4 15 4 15 18 15 4 7 10-11136.0100.3 94.4 + 62 2 24 4 9 9 9 9 9 15 5 9-11134.0100.3 94.4 + 62 2 25 4 5 7 3 6 6 15 15 8-11129.0100.2 94.3 + 62 2 26 15 5 5 9 18 39 27 18 17-11129.0100.1 94.2 + 62 2 27 15 12 12 22 27 18 15 3 16-11136.0100.0 94.2 + 62 2 28 0 0 6 5 4 3 2 0 3-11122.0 99.8 94.1 + 62 3 1 0 0 12 12 12 12 4 6 7-11121.0 99.5 94.0 + 62 3 2 6 7 7 3 12 9 9 4 7-11112.0 99.3 93.9 + 62 3 3 4 2 3 4 18 6 12 9 7-11100.0 99.1 93.8 + 62 3 4 12 7 5 6 6 4 4 5 6-11 89.0 99.0 93.8 + 62 3 5 5 3 12 18 56 18 15 9 17-11 86.0 98.9 93.7 + 62 3 6 12 39 32 32 67 27 27 9 31-11 81.0 98.8 93.7 + 62 3 7 9 12 15 6 9 9 3 0 8-11 80.0 98.9 93.6 + 62 3 8 3 6 4 0 2 2 0 0 2-11 77.0 98.9 93.6 + 62 3 9 0 0 0 0 3 3 4 3 2-11 79.0 98.8 93.6 + 62 3 10 9 7 12 12 15 12 7 18 12-11 76.0 98.7 93.5 + 62 3 11 18 22 9 15 6 15 9 3 12-11 78.0 98.7 93.4 + 62 3 12 9 7 9 18 15 32 18 22 16-11 82.0 98.9 93.3 + 62 3 13 27 7 5 7 7 3 2 3 8-11 81.0 99.0 93.2 + 62 3 14 3 2 4 5 5 5 9 3 5-11 82.0 99.0 93.1 + 62 3 15 9 18 9 9 5 4 4 18 10-11 84.0 99.0 93.0 + 62 3 16 3 3 4 6 4 4 4 5 4-11 86.0 99.0 92.9 + 62 3 17 3 6 5 5 7 4 0 2 4-11 94.0 99.0 92.8 + 62 3 18 2 4 7 7 18 7 9 6 8-11 98.0 99.1 92.7 + 62 3 19 12 7 7 9 27 18 18 9 13-11116.0 99.2 92.5 + 62 3 20 4 9 7 9 15 27 18 15 13-11118.0 99.3 92.5 + 62 3 21 15 9 15 12 12 12 18 27 15-11127.0 99.4 92.4 + 62 3 22 4 3 3 2 2 2 3 15 4-11128.0 99.5 92.3 + 62 3 23 3 0 4 18 6 3 2 0 5-11130.0 99.7 92.3 + 62 3 24 15 5 4 5 6 9 5 4 7-11126.0 99.8 92.3 + 62 3 25 9 18 12 7 12 5 4 5 9-11128.0 99.9 92.3 + 62 3 26 12 7 2 4 2 2 2 2 4-11118.0 99.9 92.2 + 62 3 27 5 5 5 3 5 4 3 0 4-11117.0100.0 92.2 + 62 3 28 0 0 2 2 6 6 6 7 4-11109.0100.0 92.1 + 62 3 29 18 12 12 4 7 2 3 2 8-11103.0 99.9 92.1 + 62 3 30 5 3 0 2 2 2 4 3 3-11 99.0 99.9 92.1 + 62 3 31 6 4 7 2 2 5 4 5 4-11 92.0100.0 92.0 + 62 4 1 4 15 22 22 9 5 5 6 11-11 88.0 99.8 92.0 + 62 4 2 3 9 2 4 4 6 15 32 9-11 83.0 99.7 92.0 + 62 4 3 27 12 22 7 6 12 7 12 13-11 80.0 99.5 91.9 + 62 4 4 9 9 22 27 6 6 5 15 12-11 78.0 99.2 91.9 + 62 4 5 22 15 3 6 4 2 3 3 7-11 76.0 98.6 91.8 + 62 4 6 6 27 22 39 15 12 39 56 27-11 78.0 97.9 91.8 + 62 4 7 56 67 48 67 67 56 56 48 58-11 77.0 97.5 91.7 + 62 4 8 39 27 15 12 22 94 27 22 32-11 77.0 97.0 91.7 + 62 4 9 27 5 15 6 15 12 6 7 12-11 78.0 96.5 91.7 + 62 4 10 9 22 7 32 48 39 48 39 31-11 81.0 96.3 91.6 + 62 4 11 39 32 18 22 22 22 7 12 22-11 88.0 96.1 91.6 + 62 4 12 18 12 3 4 7 9 6 12 9-11 93.0 96.1 91.5 + 62 4 13 15 4 4 2 2 5 4 5 5-11102.0 96.2 91.5 + 62 4 14 9 2 0 2 2 2 3 3 3-11110.0 96.4 91.4 + 62 4 15 5 9 4 2 6 22 12 15 9-11111.0 96.7 91.4 + 62 4 16 18 9 4 3 3 5 7 7 7-11119.0 97.1 91.4 + 62 4 17 18 18 6 6 6 5 5 4 9-11114.0 97.5 91.4 + 62 4 18 2 12 9 12 22 15 18 7 12-11110.0 97.8 91.3 + 62 4 19 22 12 9 3 2 3 0 5 7-11109.0 98.1 91.3 + 62 4 20 12 12 5 3 3 15 6 27 10-11109.0 98.5 91.3 + 62 4 21 18 7 12 12 4 48 27 32 20-11112.0 98.8 91.3 + 62 4 22 32 48 32 27 22 39 18 22 30-11113.0 99.0 91.3 + 62 4 23 18 22 15 15 12 9 4 4 12-11108.0 99.1 91.3 + 62 4 24 3 2 3 3 9 7 7 0 4-11105.0 99.1 91.3 + 62 4 25 3 0 7 27 15 27 18 4 13-11101.0 99.2 91.3 + 62 4 26 7 15 27 9 12 6 5 7 11-11100.0 99.1 91.3 + 62 4 27 7 12 6 6 5 7 9 4 7-11100.0 99.1 91.3 + 62 4 28 6 9 15 5 5 9 7 9 8-11 96.0 99.0 91.3 + 62 4 29 7 6 4 5 9 4 7 5 6-11 93.0 98.7 91.3 + 62 4 30 7 3 3 3 2 6 7 6 5-11 91.0 98.3 91.3 + 62 5 1 22 6 4 4 3 3 12 15 9-11 91.0 97.9 91.3 + 62 5 2 7 9 18 7 6 12 6 9 9-11 91.0 97.4 91.3 + 62 5 3 15 9 6 7 5 3 6 4 7-11 91.0 96.9 91.2 + 62 5 4 3 0 5 0 0 0 2 4 2-11 91.0 96.4 91.2 + 62 5 5 0 0 3 2 2 3 5 15 4-11 87.0 95.9 91.2 + 62 5 6 6 7 5 18 32 48 39 32 23-11 86.0 95.6 91.2 + 62 5 7 18 9 5 5 6 3 5 7 7-11 83.0 95.4 91.2 + 62 5 8 9 7 4 2 4 4 3 12 6-11 84.0 95.2 91.2 + 62 5 9 5 5 0 4 0 2 2 0 2-11 87.0 95.1 91.2 + 62 5 10 6 9 5 6 5 9 2 2 6-11 92.5 95.1 91.1 + 62 5 11 2 6 5 2 15 18 15 12 9-11 98.0 95.2 91.1 + 62 5 12 4 3 5 4 2 2 3 4 3-11 98.0 95.2 91.1 + 62 5 13 5 9 7 9 27 7 12 27 13-11 96.0 95.3 91.0 + 62 5 14 15 22 15 18 15 5 15 18 15-11 94.0 95.4 91.0 + 62 5 15 15 15 15 6 12 22 32 3 15-11 88.0 95.5 91.0 + 62 5 16 4 15 9 18 6 2 6 6 8-11 82.0 95.7 91.1 + 62 5 17 2 3 3 4 3 4 4 4 3-11 93.0 95.8 91.1 + 62 5 18 3 4 2 2 4 3 0 2 3-11 91.0 96.0 91.1 + 62 5 19 3 5 22 18 7 18 5 6 11-11 97.0 96.2 91.2 + 62 5 20 6 6 5 5 5 7 2 2 5-11103.0 96.4 91.2 + 62 5 21 4 2 2 2 5 2 2 3 3-11106.0 96.5 91.2 + 62 5 22 4 2 2 4 5 4 2 2 3-11107.3 96.5 91.2 + 62 5 23 0 4 3 3 4 2 2 2 3-11108.7 96.5 91.2 + 62 5 24 3 4 2 2 0 2 2 2 2-11110.0 96.3 91.2 + 62 5 25 0 0 0 2 2 2 2 4 2-11112.0 96.1 91.2 + 62 5 26 2 3 3 3 4 3 5 9 4-11110.0 95.8 91.2 + 62 5 27 7 15 12 9 15 22 7 12 12-11108.0 95.4 91.1 + 62 5 28 3 4 3 6 7 7 12 9 6-11105.0 95.1 91.1 + 62 5 29 5 7 9 6 5 4 5 4 6-11104.0 94.7 91.0 + 62 5 30 2 4 4 2 4 0 3 4 3-11105.0 94.4 91.0 + 62 5 31 2 7 18 39 48 22 12 27 22-11101.5 94.0 90.9 + 62 6 1 12 7 15 12 7 4 7 7 9-11 98.0 93.7 90.8 + 62 6 2 5 5 3 6 3 3 6 6 5-11 92.0 93.3 90.7 + 62 6 3 3 0 2 3 6 6 5 12 5-11 87.0 93.0 90.7 + 62 6 4 22 7 9 12 9 12 15 18 13-11 85.0 92.8 90.6 + 62 6 5 7 5 9 7 4 6 18 22 10-11 85.0 92.6 90.5 + 62 6 6 18 9 18 6 5 5 9 9 10-11 87.0 92.4 90.5 + 62 6 7 5 7 22 12 7 6 7 3 9-11 92.0 92.2 90.4 + 62 6 8 0 3 5 3 3 3 4 4 3-11 90.0 92.0 90.4 + 62 6 9 12 27 18 22 22 12 27 39 22-11 91.0 91.9 90.4 + 62 6 10 39 22 18 27 15 6 7 4 17-11 90.0 91.7 90.3 + 62 6 11 4 7 7 5 6 3 5 7 6-11 89.0 91.6 90.3 + 62 6 12 9 3 9 9 12 7 7 4 8-11 88.0 91.4 90.3 + 62 6 13 5 5 9 6 3 3 4 3 5-11 89.0 91.3 90.3 + 62 6 14 4 12 6 6 6 5 9 15 8-11 89.0 91.1 90.3 + 62 6 15 12 18 7 7 15 12 15 4 11-11 93.0 91.0 90.3 + 62 6 16 18 4 4 4 5 5 4 3 6-11 95.0 90.8 90.3 + 62 6 17 2 0 0 2 2 3 3 3 2-11 98.0 90.7 90.3 + 62 6 18 6 3 2 2 2 2 2 0 2-11 97.0 90.6 90.3 + 62 6 19 3 4 4 3 7 6 5 4 5-11 98.0 90.4 90.3 + 62 6 20 5 4 5 4 3 3 4 4 4-11 96.0 90.2 90.3 + 62 6 21 4 4 2 15 15 22 27 9 12-11 90.0 89.9 90.3 + 62 6 22 12 22 12 6 5 5 12 7 10-11 90.0 89.5 90.3 + 62 6 23 12 9 18 12 9 15 32 12 15-11 86.0 89.2 90.2 + 62 6 24 7 5 7 6 5 6 7 7 6-11 87.0 89.0 90.1 + 62 6 25 7 9 12 5 5 3 5 4 6-11 90.0 88.8 90.1 + 62 6 26 3 3 7 5 5 9 9 15 7-11 92.0 88.6 90.0 + 62 6 27 15 18 22 15 27 12 27 18 19-11 93.0 88.4 89.9 + 62 6 28 12 12 18 22 22 7 12 32 17-11 91.0 88.1 89.9 + 62 6 29 15 18 15 12 18 9 12 12 14-11 90.8 87.8 89.8 + 62 6 30 9 22 18 15 7 22 6 6 13-11 90.7 87.5 89.7 + 62 7 1 7 7 12 15 9 9 6 7 9-11 90.5 87.1 89.7 + 62 7 2 9 4 7 7 3 6 12 15 8-11 90.3 86.7 89.6 + 62 7 3 12 4 6 7 7 12 9 5 8-11 90.2 86.3 89.6 + 62 7 4 7 22 15 9 18 7 32 39 19-11 90.0 85.9 89.6 + 62 7 5 15 27 27 15 9 9 18 9 16-11 88.0 85.5 89.6 + 62 7 6 18 15 12 22 7 6 9 7 12-11 86.0 85.3 89.6 + 62 7 7 4 3 3 9 6 9 15 18 8-11 88.0 85.1 89.6 + 62 7 8 7 15 15 9 7 7 9 15 11-11 83.0 84.9 89.6 + 62 7 9 9 7 7 5 3 3 5 6 6-11 80.0 84.7 89.6 + 62 7 10 7 4 5 2 15 18 7 7 8-11 81.0 84.4 89.6 + 62 7 11 7 6 12 7 12 9 12 9 9-11 83.0 84.2 89.6 + 62 7 12 4 15 9 7 7 7 5 5 7-11 82.0 84.0 89.6 + 62 7 13 15 5 6 5 12 12 15 15 11-11 86.0 83.8 89.6 + 62 7 14 15 12 12 6 6 9 4 7 9-11 86.0 83.7 89.6 + 62 7 15 15 4 3 3 3 5 7 7 6-11 85.0 83.6 89.6 + 62 7 16 7 5 2 2 4 2 2 0 3-11 84.0 83.5 89.6 + 62 7 17 2 2 2 2 3 2 2 4 2-11 84.0 83.4 89.6 + 62 7 18 5 3 3 3 5 3 7 4 4-11 82.0 83.2 89.6 + 62 7 19 5 9 7 15 9 5 18 12 10-11 80.0 82.9 89.6 + 62 7 20 18 27 27 12 9 12 12 7 16-11 80.0 82.7 89.6 + 62 7 21 15 12 6 12 7 15 18 15 13-11 79.0 82.5 89.5 + 62 7 22 15 7 9 6 3 5 5 7 7-11 80.0 82.3 89.4 + 62 7 23 4 9 15 7 5 4 18 6 9-11 78.0 82.3 89.3 + 62 7 24 9 4 4 3 7 32 39 27 16-11 78.0 82.3 89.2 + 62 7 25 39 32 18 9 6 3 4 9 15-11 74.0 82.4 89.1 + 62 7 26 12 94 67 67 48 18 32 32 46-11 76.0 82.5 89.0 + 62 7 27 48 22 18 12 27 56 12 27 28-11 74.0 82.5 88.9 + 62 7 28 22 22 27 12 15 22 9 12 18-11 74.0 82.6 88.8 + 62 7 29 22 6 15 6 5 12 5 6 10-11 73.0 82.6 88.7 + 62 7 30 7 12 7 2 3 3 3 5 5-11 72.0 82.6 88.6 + 62 7 31 3 3 5 5 3 7 32 32 11-11 73.0 82.6 88.5 + 62 8 1 48 56 39 80 22 15 15 27 38-11 71.0 82.6 88.5 + 62 8 2 18 15 4 9 9 9 9 7 10-11 73.0 82.6 88.4 + 62 8 3 7 12 12 6 12 12 12 12 11-11 72.0 82.7 88.3 + 62 8 4 4 7 9 6 6 6 9 5 7-11 73.0 82.7 88.3 + 62 8 5 7 7 12 15 7 6 5 3 8-11 70.0 82.8 88.2 + 62 8 6 15 18 27 15 22 18 12 18 18-11 72.0 82.8 88.2 + 62 8 7 27 15 9 9 15 22 39 32 21-11 71.0 82.8 88.2 + 62 8 8 48 27 48 32 27 27 12 32 32-11 72.0 82.6 88.2 + 62 8 9 39 18 27 18 15 9 12 15 19-11 73.0 82.6 88.2 + 62 8 10 15 12 18 9 9 12 4 4 10-11 76.0 82.5 88.2 + 62 8 11 4 3 2 2 3 2 3 0 2-11 74.0 82.4 88.2 + 62 8 12 2 4 3 6 6 2 2 4 4-11 76.0 82.3 88.2 + 62 8 13 3 3 4 5 3 2 4 18 5-11 79.0 82.2 88.2 + 62 8 14 9 9 4 6 9 4 15 18 9-11 83.0 82.1 88.1 + 62 8 15 12 39 48 18 7 12 12 27 22-11 92.0 82.0 88.1 + 62 8 16 48 18 27 4 5 6 22 39 21-11 90.0 82.0 88.1 + 62 8 17 32 18 15 15 18 22 22 48 24-11 89.0 81.9 88.1 + 62 8 18 18 32 39 12 18 22 9 18 21-11 85.0 82.0 88.0 + 62 8 19 32 32 18 18 12 9 7 9 17-11 83.0 82.0 88.0 + 62 8 20 6 3 4 5 6 4 3 6 5-11 84.0 82.0 88.0 + 62 8 21 7 3 3 4 4 6 5 22 7-11 82.0 82.1 87.9 + 62 8 22 56 27 56 9 12 12 39 39 31-11 80.0 82.2 87.8 + 62 8 23 22 18 15 18 18 18 15 12 17-11 79.0 82.2 87.7 + 62 8 24 18 15 32 18 32 18 9 22 21-11 79.0 82.1 87.6 + 62 8 25 27 12 15 9 7 12 7 18 13-11 77.0 82.1 87.4 + 62 8 26 12 9 9 12 9 4 4 4 8-11 75.0 82.1 87.3 + 62 8 27 9 7 9 2 2 3 4 3 5-11 73.0 82.1 87.1 + 62 8 28 5 7 3 6 6 5 2 2 5-11 72.0 82.2 87.0 + 62 8 29 4 15 18 22 12 12 18 18 15-11 72.0 82.3 86.8 + 62 8 30 9 15 12 6 22 12 22 7 13-11 72.0 82.3 86.7 + 62 8 31 39 39 56 22 18 5 12 7 25-11 75.0 82.5 86.6 + 62 9 1 18 9 39 27 27 48 39 27 29-11 84.0 82.7 86.5 + 62 9 2 15 39 39 39 67 27 32 18 35-11 93.0 82.9 86.4 + 62 9 3 27 56 22 56 27 27 67 94 47-11 98.0 83.1 86.4 + 62 9 4 39 67 32 39 27 48 22 15 36-11 99.0 83.3 86.4 + 62 9 5 4 18 27 18 15 22 12 15 16-11 98.0 83.5 86.4 + 62 9 6 22 27 48 27 12 7 15 18 22-11100.0 83.8 86.4 + 62 9 7 22 22 27 15 12 5 7 5 14-11100.0 84.0 86.4 + 62 9 8 18 27 27 15 6 7 4 6 14-11 97.0 84.2 86.4 + 62 9 9 12 15 3 7 9 7 15 18 11-11 94.0 84.3 86.4 + 62 9 10 15 27 12 15 6 3 3 4 11-11 91.0 84.5 86.4 + 62 9 11 9 5 9 22 3 3 6 12 9-11 90.0 84.7 86.4 + 62 9 12 12 15154 48 22 39111 67 59-11 93.0 84.9 86.4 + 62 9 13 27 18 22 12 15 32 48 7 23-11 92.0 85.0 86.4 + 62 9 14 15 15 27 6 4 6 7 9 11-11 95.0 85.2 86.4 + 62 9 15 15 22 27 12 3 9 18 15 15-11 93.0 85.4 86.4 + 62 9 16 9 12 3 7 7 6 15 18 10-11 91.0 85.6 86.3 + 62 9 17 7 12 9 5 7 5 6 7 7-11 78.0 85.8 86.3 + 62 9 18 6 3 4 4 4 4 5 12 5-11 86.0 85.9 86.2 + 62 9 19 15 32 67 27 18 32 80 39 39-11 84.0 86.0 86.0 + 62 9 20 39 18 9 22 9 3 4 3 13-11 84.0 86.1 85.9 + 62 9 21 7 12 12 6 15 22 12 12 12-11 83.0 86.2 85.8 + 62 9 22 27 22 15 27 22 22 22 9 21-11 81.0 86.2 85.6 + 62 9 23 18 32 15 18 5 4 5 9 13-11 82.0 86.2 85.5 + 62 9 24 9 15 4 2 3 2 7 6 6-11 82.0 86.2 85.3 + 62 9 25 2 3 3 6 6 9 9 15 7-11 84.0 86.1 85.2 + 62 9 26 56 67 18 7 18 56 27 9 32-11 84.0 86.0 85.1 + 62 9 27 15 9 7 9 12 7 4 6 9-11 84.0 85.9 85.0 + 62 9 28 12 5 3 4 9 12 6 18 9-11 83.0 85.9 84.9 + 62 9 29 7 18 15 18 9 9 18 56 19-11 86.0 85.9 84.8 + 62 9 30 27 32 15 12 12 7 6 5 15-11 90.0 85.9 84.8 + 62 10 1 18 32 48 48 56 39 67 39 43-11 86.0 86.0 84.7 + 62 10 2 32 22 39 22 22 32 12 5 23-11 86.0 86.1 84.7 + 62 10 3 6 12 22 9 18 6 6 12 11-11 83.0 86.2 84.7 + 62 10 4 9 18 15 7 3 9 7 12 10-11 82.0 86.4 84.7 + 62 10 5 4 6 5 4 5 12 39 18 12-11 86.0 86.6 84.7 + 62 10 6 39 22 32 4 18 12 2 9 17-11 84.0 86.9 84.7 + 62 10 7 9 18 5 7 3 5 18 32 12-11 85.0 87.2 84.7 + 62 10 8 94 22 18 32 18 39 27 27 35-11 87.0 87.5 84.7 + 62 10 9 67 32 39 22 32 27 15 22 32-11 86.0 87.7 84.7 + 62 10 10 22 18 12 18 39 22 32 12 22-11 93.0 87.9 84.7 + 62 10 11 22 48 32 18 22 15 22 18 25-11 93.0 88.0 84.7 + 62 10 12 15 9 9 22 6 5 3 3 9-11 93.0 88.0 84.7 + 62 10 13 3 5 5 18 22 12 9 15 11-11 95.0 87.8 84.7 + 62 10 14 27 32 39 39 27 15 39 22 30-11 95.0 87.5 84.6 + 62 10 15 12 18 9 12 6 12 3 7 10-11 94.0 87.3 84.5 + 62 10 16 12 7 7 67 27 7 22 15 21-11 91.0 87.1 84.5 + 62 10 17 18 9 12 7 3 0 4 5 7-11 91.0 86.8 84.4 + 62 10 18 39 39 6 5 6 18 15 5 17-11 89.0 86.5 84.3 + 62 10 19 2 0 48 48 39 48 22 22 29-11 87.0 86.2 84.3 + 62 10 20 7 7 6 4 12 12 15 22 11-11 88.0 85.9 84.2 + 62 10 21 22 18 9 9 7 22 15 7 14-11 87.0 85.8 84.1 + 62 10 22 9 22 15 27 32 18 18 39 23-11 85.0 85.6 84.0 + 62 10 23 48 27 15 22 18 22 15 18 23-11 84.0 85.5 83.9 + 62 10 24 15 22 12 15 27 48 39 39 27-11 89.0 85.4 83.8 + 62 10 25 22 32 32 27 32 39 39 48 34-11 87.0 85.2 83.7 + 62 10 26 22 22 39 32 32 32 56 27 33-11 87.0 85.1 83.6 + 62 10 27 22 27 48 15 48 39 12 18 29-11 86.0 85.0 83.5 + 62 10 28 18 32 18 15 15 12 18 15 18-11 82.0 85.1 83.5 + 62 10 29 15 12 12 12 9 12 9 18 12-11 80.0 85.0 83.4 + 62 10 30 15 15 15 18 9 15 18 9 14-11 82.0 85.0 83.4 + 62 10 31 7 9 9 12 7 6 9 12 9-11 81.0 85.0 83.4 + 62 11 1 9 7 5 9 5 5 12 15 8-11 80.0 85.0 83.4 + 62 11 2 15 12 4 7 18 12 18 32 15-11 80.0 84.9 83.3 + 62 11 3 22 7 9 15 9 12 18 22 14-11 80.0 84.8 83.3 + 62 11 4 15 12 15 12 15 22 15 48 19-11 82.0 84.8 83.3 + 62 11 5 6 5 18 7 4 2 3 4 6-11 82.0 84.7 83.3 + 62 11 6 15 32 15 7 12 22 39 48 24-11 83.0 84.6 83.3 + 62 11 7 32 22 3 22 18 3 5 12 15-11 84.0 84.5 83.3 + 62 11 8 9 6 6 7 9 12 7 6 8-11 85.0 84.5 83.3 + 62 11 9 6 4 3 0 2 3 4 15 5-11 86.0 84.5 83.3 + 62 11 10 7 6 4 0 2 3 5 6 4-11 86.5 84.4 83.3 + 62 11 11 5 12 18 12 12 15 7 7 11-11 87.0 84.4 83.3 + 62 11 12 9 4 3 2 0 2 4 5 4-11 88.0 84.4 83.2 + 62 11 13 5 0 2 2 2 4 3 3 3-11 93.0 84.3 83.2 + 62 11 14 4 2 0 2 2 6 32 7 7-11 99.0 84.3 83.3 + 62 11 15 4 15 22 27 67 12 32 32 26-11 95.0 84.2 83.3 + 62 11 16 67 27 22 22 22 27 18 12 27-11 99.0 84.1 83.3 + 62 11 17 15 15 5 5 9 9 2 0 8-11 94.0 84.0 83.3 + 62 11 18 0 0 0 0 0 2 4 5 1-11 88.0 83.8 83.4 + 62 11 19 0 0 0 3 2 3 15 9 4-11 89.0 83.6 83.3 + 62 11 20 2 4 9 3 3 4 2 4 4-11 86.0 83.4 83.3 + 62 11 21 9 9 39 15 18 22 18 22 19-11 81.0 83.2 83.2 + 62 11 22 32 39 48 39 27 32 27 48 37-11 79.0 83.0 83.2 + 62 11 23 32 18 18 27 18 15 12 18 20-11 77.0 82.8 83.1 + 62 11 24 12 12 22 27 15 12 15 12 16-11 80.0 82.5 83.0 + 62 11 25 15 22 22 32 18 18 7 15 19-11 77.0 82.4 82.9 + 62 11 26 15 6 5 5 7 6 5 3 7-11 77.0 82.2 82.9 + 62 11 27 7 7 9 5 5 18 12 9 9-11 75.0 82.0 82.8 + 62 11 28 12 9 9 9 6 6 4 3 7-11 74.0 81.9 82.7 + 62 11 29 5 0 7 12 9 6 22 7 9-11 75.0 81.7 82.7 + 62 11 30 48 56 39 39 27 7 7 22 31-11 77.0 81.6 82.6 + 62 12 1 15 7 3 7 4 7 12 2 7-11 77.0 81.5 82.6 + 62 12 2 0 3 3 4 3 5 5 4 3-11 81.0 81.5 82.6 + 62 12 3 0 6 2 2 3 4 12 0 4-11 83.0 81.4 82.6 + 62 12 4 0 18 18 27 27 27 15 7 17-11 82.0 81.3 82.5 + 62 12 5 22 5 5 6 9 6 3 3 7-11 82.0 81.3 82.5 + 62 12 6 6 4 5 2 2 2 4 2 3-11 83.0 81.2 82.5 + 62 12 7 3 4 3 3 3 3 5 5 4-11 86.0 81.2 82.5 + 62 12 8 5 2 9 12 7 6 4 9 7-11 84.0 81.2 82.5 + 62 12 9 9 22 7 5 2 2 2 5 7-11 83.0 81.2 82.5 + 62 12 10 5 6 5 2 3 5 6 22 7-11 84.0 81.1 82.5 + 62 12 11 15 27 15 12 22 18 56 32 25-11 78.0 81.1 82.5 + 62 12 12 15 15 3 5 2 7 18 22 11-11 76.0 81.1 82.6 + 62 12 13 27 18 9 9 18 9 12 22 16-11 77.0 81.0 82.6 + 62 12 14 12 18 7 15 15 12 12 12 13-11 76.0 80.9 82.7 + 62 12 15 15 22 22 6 3 3 6 9 11-11 76.0 80.8 82.7 + 62 12 16 4 3 5 5 6 5 5 4 5-11 76.0 80.7 82.7 + 62 12 17 12 6 12 12 9 80 48111 36-11 78.0 80.6 82.6 + 62 12 18 94 48 15 18 39 39 48 48 44-11 83.0 80.5 82.6 + 62 12 19 56 39 56 39 27 39 48 32 42-11 84.0 80.5 82.5 + 62 12 20 22 48 27 27 27 39 39 48 35-11 86.0 80.4 82.5 + 62 12 21 27 22 22 15 22 22 32 18 23-11 85.0 80.3 82.4 + 62 12 22 12 12 9 12 7 12 9 12 11-11 82.0 80.2 82.4 + 62 12 23 7 7 4 4 2 2 0 2 4-11 79.0 80.2 82.4 + 62 12 24 3 0 6 4 7 5 6 5 5-11 79.0 80.1 82.3 + 62 12 25 7 4 0 5 3 3 3 5 4-11 77.8 80.0 82.3 + 62 12 26 6 5 9 18 39 22 12 22 17-11 76.5 79.9 82.2 + 62 12 27 7 4 5 4 6 5 6 12 6-11 75.2 79.7 82.2 + 62 12 28 3 2 0 3 7 7 7 7 5-11 74.0 79.6 82.1 + 62 12 29 4 7 4 4 6 7 3 4 5-11 74.5 79.6 82.1 + 62 12 30 4 0 2 4 3 2 4 12 4-11 75.0 79.5 82.0 + 62 12 31 9 3 5 27 22 18 7 4 12-11 75.5 79.4 82.0 + 63 1 1 3 7 6 4 4 6 4 4 5-11 76.0 79.4 81.9 + 63 1 2 0 0 0 0 2 4 2 2 1-11 76.5 79.3 81.9 + 63 1 3 0 4 2 3 2 2 2 2 2-11 77.0 79.3 81.9 + 63 1 4 7 4 2 3 12 18 12 4 8-11 79.0 79.2 81.9 + 63 1 5 0 3 7 5 5 2 0 4 3-11 77.0 79.2 81.8 + 63 1 6 0 0 0 0 0 2 0 0 0-11 77.0 79.2 81.8 + 63 1 7 7 9 5 3 4 18 6 2 7-11 77.0 79.2 81.8 + 63 1 8 0 0 4 4 2 0 4 5 2-11 76.0 79.3 81.8 + 63 1 9 0 0 0 0 2 0 0 2 1-11 78.0 79.3 81.8 + 63 1 10 4 4 4 2 4 2 3 0 3-11 80.0 79.4 81.8 + 63 1 11 0 0 3 3 9 7 22 6 6-11 81.0 79.4 81.7 + 63 1 12 2 6 3 3 2 3 6 15 5-11 78.0 79.3 81.7 + 63 1 13 39 56 27 39 18 22 12 22 29-11 79.0 79.2 81.7 + 63 1 14 18 22 27 48 27 39 48 18 31-11 86.0 79.1 81.7 + 63 1 15 22 48 56 27 18 9 15 9 26-11 85.0 79.0 81.6 + 63 1 16 27 7 22 15 32 32 32 27 24-11 82.0 79.0 81.6 + 63 1 17 15 27 39 9 9 27 15 12 19-11 82.0 78.9 81.6 + 63 1 18 12 12 9 12 9 12 12 39 15-11 80.0 78.7 81.6 + 63 1 19 18 12 22 22 27 27 9 18 19-11 78.0 78.6 81.6 + 63 1 20 9 3 12 9 7 3 4 4 6-11 78.0 78.5 81.6 + 63 1 21 2 4 3 6 3 2 2 3 3-11 76.0 78.5 81.5 + 63 1 22 5 4 6 4 3 4 7 5 5-11 75.0 78.5 81.5 + 63 1 23 12 12 12 5 9 5 6 9 9-11 74.0 78.5 81.5 + 63 1 24 5 6 6 9 4 7 12 32 10-11 73.0 78.6 81.5 + 63 1 25 12 12 5 4 5 7 9 4 7-11 74.0 78.7 81.5 + 63 1 26 2 3 4 4 0 0 3 2 2-11 73.0 78.8 81.5 + 63 1 27 0 0 0 4 2 0 2 0 1-11 81.0 78.9 81.5 + 63 1 28 2 3 2 2 2 0 0 3 2-11 80.0 78.9 81.5 + 63 1 29 0 0 0 3 3 4 9 18 5-11 79.0 78.8 81.5 + 63 1 30 18 27 27 32 32 18 32 48 29-11 78.0 78.7 81.6 + 63 1 31 56 67 56 39 56 39 27 6 43-11 82.0 78.6 81.6 + 63 2 1 4 2 12 15 22 12 12 27 13-11 87.0 78.5 81.7 + 63 2 2 2 3 2 3 2 2 5 0 2-11 86.0 78.5 81.7 + 63 2 3 2 4 2 2 4 5 4 2 3-11 85.0 78.5 81.7 + 63 2 4 0 0 0 0 2 5 12 6 3-11 88.0 78.6 81.8 + 63 2 5 0 2 4 4 6 5 3 3 3-11 87.0 78.6 81.8 + 63 2 6 5 5 3 3 3 4 3 2 4-11 85.0 78.6 81.9 + 63 2 7 0 3 4 5 2 0 5 6 3-11 83.0 78.7 81.9 + 63 2 8 0 2 0 2 0 0 0 2 1-11 82.0 78.7 81.9 + 63 2 9 0 0 0 2 3 4 9 48 8-11 79.0 78.7 81.9 + 63 2 10 67 48 67 32 48 18 32 48 45-11 79.0 78.7 81.9 + 63 2 11 18 27 18 15 18 22 27 22 21-11 76.0 78.7 81.9 + 63 2 12 32 32 39 15 7 9 15 18 21-11 74.0 78.7 81.9 + 63 2 13 22 22 32 18 22 39 48 15 27-11 74.0 78.7 81.9 + 63 2 14 18 18 56 15 12 12 12 7 19-11 75.0 78.6 81.8 + 63 2 15 9 5 7 9 15 6 7 3 8-11 76.0 78.6 81.8 + 63 2 16 4 0 3 5 5 15 2 2 5-11 77.0 78.5 81.7 + 63 2 17 0 5 4 6 3 4 3 3 4-11 79.0 78.5 81.7 + 63 2 18 2 0 3 3 4 5 3 2 3-11 81.0 78.5 81.7 + 63 2 19 0 0 0 3 3 2 2 4 2-11 79.0 78.4 81.7 + 63 2 20 5 5 9 9 7 6 12 22 9-11 77.0 78.3 81.7 + 63 2 21 6 2 4 5 4 12 6 9 6-11 74.0 78.2 81.7 + 63 2 22 2 7 9 7 4 6 9 7 6-11 76.0 78.2 81.8 + 63 2 23 0 2 9 9 7 12 5 2 6-11 75.0 78.0 81.8 + 63 2 24 0 0 2 3 2 2 2 5 2-11 76.0 77.9 81.8 + 63 2 25 9 5 3 3 4 4 3 2 4-11 78.0 77.8 81.8 + 63 2 26 2 5 6 6 9 6 2 5 5-11 77.0 77.8 81.8 + 63 2 27 5 0 0 2 0 0 3 4 2-11 75.0 77.8 81.9 + 63 2 28 4 7 5 6 15 3 2 12 7-11 74.0 77.8 81.9 + 63 3 1 9 27 27 9 7 22 9 12 15-11 74.0 77.8 81.9 + 63 3 2 7 7 6 9 7 5 5 3 6-11 75.0 78.0 81.9 + 63 3 3 3 6 18 7 9 5 5 9 8-11 78.0 78.2 81.9 + 63 3 4 4 3 4 4 3 3 4 3 4-11 80.0 78.3 81.8 + 63 3 5 0 4 4 3 4 0 5 5 3-11 82.0 78.5 81.7 + 63 3 6 4 7 3 2 3 7 7 6 5-11 85.0 78.7 81.7 + 63 3 7 3 7 2 0 0 2 9 48 9-11 84.0 78.9 81.6 + 63 3 8 27 18 39 56 32 27 32 18 31-11 83.0 79.0 81.5 + 63 3 9 15 32 18 15 15 12 9 32 19-11 82.0 79.1 81.5 + 63 3 10 18 27 32 27 48 94 80 39 46-11 80.0 79.2 81.4 + 63 3 11 39 22 9 12 12 18 32 15 20-11 78.0 79.1 81.4 + 63 3 12 22 18 9 12 12 9 9 3 12-11 77.0 79.1 81.3 + 63 3 13 0 2 6 6 22 18 7 5 8-11 74.0 79.0 81.3 + 63 3 14 6 0 0 2 2 0 2 4 2-11 80.0 78.8 81.2 + 63 3 15 5 6 2 2 0 2 3 0 3-11 80.0 78.6 81.2 + 63 3 16 0 0 3 2 0 2 2 3 2-11 79.0 78.5 81.2 + 63 3 17 2 0 0 2 3 5 7 9 4-11 79.0 78.3 81.3 + 63 3 18 3 6 6 5 7 7 4 6 6-11 80.0 78.1 81.3 + 63 3 19 6 15 6 4 4 6 6 12 7-11 77.0 78.0 81.3 + 63 3 20 4 4 3 3 2 2 6 12 5-11 77.0 78.0 81.4 + 63 3 21 5 6 7 2 2 2 2 0 3-11 76.0 77.9 81.4 + 63 3 22 0 0 0 3 3 4 3 3 2-11 76.0 78.0 81.5 + 63 3 23 6 6 6 27 22 12 5 5 11-11 75.0 78.0 81.5 + 63 3 24 4 2 0 6 6 6 5 7 5-11 75.0 78.1 81.6 + 63 3 25 6 2 2 3 2 4 4 3 3-11 75.0 78.2 81.6 + 63 3 26 0 0 0 2 3 3 6 2 2-11 73.0 78.3 81.7 + 63 3 27 0 0 2 2 0 2 3 0 1-11 74.0 78.4 81.7 + 63 3 28 0 2 5 6 4 3 6 6 4-11 73.0 78.6 81.7 + 63 3 29 7 7 4 6 7 3 3 4 5-11 75.0 78.7 81.7 + 63 3 30 3 2 3 5 2 0 4 3 3-11 74.0 78.8 81.6 + 63 3 31 0 3 4 4 4 2 3 9 4-11 71.0 78.9 81.6 + 63 4 1 18 39 22 7 7 5 2 0 13-11 73.0 79.0 81.5 + 63 4 2 4 3 0 2 3 6 7 6 4-11 74.0 79.1 81.5 + 63 4 3 12 5 5 4 2 3 3 2 5-11 74.0 79.3 81.4 + 63 4 4 3 6 9 18 22 27 32 32 19-11 70.0 79.5 81.4 + 63 4 5 56 67 27 18 22 27 27 15 32-11 72.0 79.8 81.4 + 63 4 6 12 15 39 22 18 12 15 18 19-11 78.0 80.1 81.3 + 63 4 7 12 12 22 22 15 15 4 15 15-11 80.0 80.3 81.3 + 63 4 8 15 5 3 9 7 6 7 5 7-11 81.0 80.6 81.3 + 63 4 9 3 18 7 5 6 7 7 4 7-11 82.0 80.9 81.3 + 63 4 10 0 0 2 2 4 3 4 2 2-11 82.0 81.1 81.3 + 63 4 11 2 0 3 7 2 2 4 4 3-11 88.0 81.3 81.3 + 63 4 12 12 4 7 12 12 7 9 7 9-11 93.0 81.5 81.3 + 63 4 13 6 6 4 12 15 9 12 15 10-11 89.0 81.6 81.2 + 63 4 14 22 7 4 9 18 27 15 32 17-11 87.0 81.8 81.2 + 63 4 15 39 18 27 12 12 4 6 5 15-11 88.0 81.8 81.2 + 63 4 16 12 7 4 4 3 5 7 5 6-11 88.0 81.7 81.2 + 63 4 17 18 7 4 4 5 6 5 4 7-11 87.0 81.6 81.1 + 63 4 18 4 3 4 6 18 22 27 32 15-11 88.0 81.6 81.1 + 63 4 19 15 18 9 5 6 18 7 6 11-11 84.0 81.5 81.1 + 63 4 20 18 6 7 5 7 7 4 2 7-11 78.0 81.6 81.1 + 63 4 21 0 3 0 6 6 4 4 5 4-11 74.0 81.7 81.1 + 63 4 22 18 3 2 4 4 5 22 27 11-11 72.0 81.8 81.1 + 63 4 23 9 27 22 5 5 4 3 0 9-11 71.0 81.9 81.2 + 63 4 24 0 0 2 3 4 3 4 3 2-11 73.0 81.9 81.2 + 63 4 25 5 6 5 0 2 2 4 7 4-11 72.0 81.9 81.2 + 63 4 26 6 9 3 2 3 4 6 9 5-11 72.0 81.9 81.2 + 63 4 27 6 7 7 9 12 12 22 3 10-11 75.0 81.8 81.3 + 63 4 28 2 0 3 5 4 4 4 4 3-11 78.0 81.9 81.3 + 63 4 29 3 7 4 4 2 4 4 3 4-11 78.0 82.0 81.3 + 63 4 30 4 3 3 6 6 39 94 32 23-11 80.0 82.2 81.3 + 63 5 1 80 48 39 39 18 27 7 22 35-11 82.0 82.5 81.3 + 63 5 2 27 22 22 32 18 32 12 27 24-11 82.0 82.9 81.3 + 63 5 3 22 9 12 9 12 18 12 22 15-11 81.0 83.3 81.3 + 63 5 4 22 18 27 32 12 18 9 15 19-11 82.0 83.7 81.3 + 63 5 5 12 18 12 7 5 12 6 5 10-11 84.0 84.0 81.3 + 63 5 6 9 22 9 5 5 5 9 6 9-11 87.0 84.3 81.3 + 63 5 7 3 3 5 12 5 5 6 7 6-11 88.0 84.5 81.3 + 63 5 8 12 9 12 7 7 6 7 22 10-11 86.0 84.6 81.3 + 63 5 9 9 18 22 12 9 7 18 18 14-11 88.0 84.7 81.3 + 63 5 10 12 12 12 12 9 18 18 18 14-11 87.0 84.8 81.3 + 63 5 11 32 22 9 15 22 7 15 18 18-11 84.0 84.8 81.2 + 63 5 12 12 6 12 4 9 12 12 7 9-11 87.0 84.8 81.2 + 63 5 13 18 48 22 27 22 9 12 18 22-11 89.0 84.8 81.2 + 63 5 14 18 22 22 12 6 3 6 7 12-11 95.0 84.8 81.2 + 63 5 15 5 6 12 3 5 3 4 6 6-11 98.0 84.8 81.1 + 63 5 16 15 2 2 0 2 2 2 4 4-11100.0 84.8 81.0 + 63 5 17 3 3 4 6 9 9 12 5 6-11100.0 84.8 81.0 + 63 5 18 3 2 2 3 6 7 3 0 3-11 98.0 84.7 81.0 + 63 5 19 0 2 4 3 6 6 6 12 5-11 99.0 84.6 80.9 + 63 5 20 27 15 6 3 3 2 2 3 8-11 91.0 84.5 80.9 + 63 5 21 3 4 2 2 4 4 15 3 5-11 88.0 84.4 80.9 + 63 5 22 2 3 3 3 4 4 2 2 3-11 89.0 84.2 80.9 + 63 5 23 0 2 3 5 4 3 3 2 3-11 93.0 84.0 80.9 + 63 5 24 0 2 2 2 3 3 2 0 2-11 89.0 83.9 80.9 + 63 5 25 6 5 6 7 18 7 9 6 8-11 83.0 83.8 80.9 + 63 5 26 15 7 4 4 4 4 5 7 6-11 76.0 83.7 81.0 + 63 5 27 5 4 3 4 7 9 12 12 7-11 80.0 83.5 81.0 + 63 5 28 22 27 27 22 7 7 6 7 16-11 79.0 83.4 81.0 + 63 5 29 39 67 22 6 9 4 15 4 21-11 80.0 83.3 81.0 + 63 5 30 15 22 27 12 4 5 7 3 12-11 83.0 83.2 81.0 + 63 5 31 0 5 5 7 12 6 15 22 9-11 89.0 83.3 81.0 + 63 6 1 9 9 7 18 18 12 5 12 11-11 84.0 83.3 81.0 + 63 6 2 7 15 9 9 12 15 9 4 10-11 81.0 83.3 81.0 + 63 6 3 6 6 7 7 9 3 6 6 6-11 81.0 83.4 81.0 + 63 6 4 4 4 12 3 5 3 3 3 5-11 79.0 83.4 81.0 + 63 6 5 2 4 0 2 2 3 2 2 2-11 78.0 83.5 81.0 + 63 6 6 0 3 2 4 5 9 39 67 16-11 77.0 83.5 81.0 + 63 6 7132 67 39 18 22 22 18 27 43-11 84.0 83.5 81.0 + 63 6 8 7 7 7 15 6 12 12 32 12-11 90.0 83.5 80.9 + 63 6 9 18 12 9 12 9 6 5 7 10-11 93.0 83.4 80.9 + 63 6 10 5 3 4 6 6 5 7 5 5-11 99.0 83.4 80.9 + 63 6 11 7 9 5 4 4 9 5 5 6-11103.0 83.3 80.9 + 63 6 12 6 7 4 6 2 4 5 3 5-11109.0 83.2 80.9 + 63 6 13 7 5 4 6 5 4 5 6 5-11107.0 83.1 80.9 + 63 6 14 12 0 4 7 6 7 2 5 5-11100.0 83.0 80.9 + 63 6 15 6 18 18 5 5 5 6 7 9-11 96.0 82.8 80.9 + 63 6 16 2 0 0 2 0 6 5 5 3-11 89.0 82.7 81.0 + 63 6 17 9 6 9 7 9 15 9 9 9-11 86.0 82.5 81.0 + 63 6 18 4 18 12 15 32 15 48 27 21-11 82.0 82.3 81.0 + 63 6 19 18 12 6 3 6 9 18 12 11-11 79.0 82.2 80.9 + 63 6 20 27 15 15 15 9 7 7 6 13-11 75.0 82.2 80.9 + 63 6 21 9 9 12 15 2 5 5 4 8-11 73.0 82.2 80.9 + 63 6 22 6 6 5 4 4 4 3 4 5-11 72.0 82.2 80.9 + 63 6 23 4 3 3 5 2 4 4 4 4-11 72.0 82.1 80.9 + 63 6 24 2 5 6 4 9 12 5 7 6-11 72.0 82.0 80.9 + 63 6 25 15 27 32 12 9 9 27 56 23-11 74.0 81.9 80.9 + 63 6 26 67 39 48 18 9 7 9 12 26-11 74.0 81.8 80.9 + 63 6 27 22 27 18 15 9 3 22 15 16-11 72.0 81.6 80.9 + 63 6 28 12 6 18 15 12 18 15 5 13-11 74.0 81.4 80.8 + 63 6 29 5 4 9 4 7 18 18 9 9-11 73.0 81.2 80.8 + 63 6 30 9 12 12 9 9 7 22 9 11-11 76.0 81.1 80.8 + 63 7 1 12 7 6 3 3 2 2 2 5-11 76.0 81.0 80.8 + 63 7 2 0 3 4 4 3 3 3 3 3-11 77.0 80.7 80.8 + 63 7 3 5 2 2 3 3 2 3 3 3-11 78.0 80.5 80.8 + 63 7 4 2 5 7 6 15 15 27 32 14-11 78.0 80.3 80.8 + 63 7 5 18 32 27 7 7 6 22 22 18-11 78.0 80.2 80.8 + 63 7 6 15 67 39 12 7 9 9 5 20-11 77.0 80.1 80.7 + 63 7 7 7 9 12 15 18 15 6 7 11-11 77.0 80.1 80.7 + 63 7 8 15 9 22 6 9 12 9 22 13-11 77.0 80.1 80.7 + 63 7 9 27 22 18 12 9 7 9 15 15-11 77.0 80.1 80.7 + 63 7 10 6 12 12 6 7 9 12 15 10-11 86.0 80.0 80.7 + 63 7 11 7 9 9 4 3 4 6 5 6-11 75.0 80.0 80.7 + 63 7 12 6 6 5 3 2 3 6 4 4-11 74.0 80.0 80.6 + 63 7 13 7 5 5 3 4 5 5 3 5-11 76.0 80.0 80.6 + 63 7 14 4 3 4 2 9 6 3 3 4-11 77.0 80.1 80.6 + 63 7 15 4 4 3 4 4 5 2 6 4-11 76.0 80.2 80.6 + 63 7 16 15 9 5 2 6 7 5 7 7-11 76.0 80.3 80.6 + 63 7 17 22 15 22 18 18 18 5 9 16-11 74.0 80.4 80.5 + 63 7 18 6 5 7 6 9 15 9 18 9-11 74.0 80.3 80.5 + 63 7 19 7 5 4 3 5 5 7 3 5-11 74.0 80.2 80.5 + 63 7 20 3 4 3 4 4 12 18 6 7-11 77.0 80.0 80.4 + 63 7 21 5 9 18 32 56 56 22 7 26-11 75.0 79.7 80.4 + 63 7 22 5 9 15 18 18 18 12 9 13-11 73.0 79.4 80.4 + 63 7 23 9 12 18 12 32 18 22 56 22-11 72.0 78.9 80.4 + 63 7 24 48 56 22 27 27 22 18 18 30-11 72.0 78.5 80.4 + 63 7 25 7 27 22 7 9 9 7 15 13-11 74.0 78.2 80.4 + 63 7 26 12 15 18 12 12 7 15 18 14-11 73.0 77.9 80.4 + 63 7 27 27 27 18 7 18 12 7 15 16-11 74.0 77.8 80.4 + 63 7 28 15 7 9 7 4 3 2 2 6-11 73.0 77.6 80.4 + 63 7 29 0 2 3 2 4 4 5 12 4-11 77.0 77.6 80.3 + 63 7 30 15 32 48 12 48 12 32 22 28-11 84.0 77.5 80.3 + 63 7 31 27 18 12 9 22 12 9 39 19-11 85.0 77.5 80.3 + 63 8 1 22 27 9 12 15 18 18 15 17-11 87.0 77.6 80.3 + 63 8 2 7 32 27 12 6 6 15 12 15-11 87.0 77.6 80.3 + 63 8 3 12 12 7 4 6 5 9 15 9-11 87.0 77.6 80.2 + 63 8 4 9 4 12 9 22 7 18 22 13-11 88.0 77.8 80.2 + 63 8 5 18 15 9 15 7 5 15 15 12-11 86.0 78.1 80.1 + 63 8 6 9 15 12 9 6 9 7 18 11-11 88.0 78.4 80.1 + 63 8 7 15 15 12 12 9 3 4 6 10-11 85.0 78.9 80.0 + 63 8 8 12 9 7 6 6 4 2 3 6-11 81.0 79.2 80.0 + 63 8 9 6 18 9 9 6 7 9 5 9-11 80.0 79.5 80.0 + 63 8 10 4 4 3 6 15 18 4 3 7-11 77.0 79.8 79.9 + 63 8 11 4 2 4 4 4 4 3 6 4-11 72.0 80.2 79.9 + 63 8 12 3 4 4 4 5 5 6 4 4-11 73.0 80.3 79.9 + 63 8 13 3 2 0 2 3 2 4 5 3-11 74.0 80.7 79.9 + 63 8 14 6 2 2 2 2 4 3 3 3-11 71.0 80.9 79.9 + 63 8 15 0 2 2 4 9 12 12 18 7-11 72.0 81.1 79.9 + 63 8 16 6 4 3 5 7 9 5 6 6-11 76.0 81.3 79.8 + 63 8 17 7 5 5 7 4 5 27 12 9-11 82.0 81.3 79.8 + 63 8 18 7 15 27 22 94 18 9 18 26-11 80.0 81.4 79.8 + 63 8 19 12 7 6 3 7 22 56 80 24-11 79.0 81.3 79.8 + 63 8 20132111 80 27 48 27 15 22 58-11 81.0 81.1 79.8 + 63 8 21 39 22 48 48 15 18 12 15 27-11 84.0 81.1 79.8 + 63 8 22 6 5 15 6 9 5 6 15 8-11 86.0 81.0 79.8 + 63 8 23 27 32 32 15 22 6 5 7 18-11 90.0 80.9 79.8 + 63 8 24 22 7 12 9 7 5 6 6 9-11 87.0 80.8 79.8 + 63 8 25 9 9 7 7 4 4 12 12 8-11 85.0 80.8 79.8 + 63 8 26 18 12 9 6 9 9 7 7 10-11 82.0 80.7 79.8 + 63 8 27 7 5 5 6 15 27 39 22 16-11 80.0 80.8 79.8 + 63 8 28 22 12 15 32 27 22 56 22 26-11 77.0 80.8 79.8 + 63 8 29 12 9 18 32 18 7 15 9 15-11 77.0 81.0 79.9 + 63 8 30 7 7 6 7 9 15 12 18 10-11 77.0 81.1 79.9 + 63 8 31 22 15 12 7 18 39 7 18 17-11 77.0 81.2 79.9 + 63 9 1 22 9 15 32 18 12 7 5 15-11 74.0 81.4 79.9 + 63 9 2 7 4 3 2 4 7 15 18 8-11 73.0 81.5 79.9 + 63 9 3 12 9 6 12 12 7 9 7 9-11 74.0 81.7 79.9 + 63 9 4 6 5 5 4 3 2 6 9 5-11 75.0 81.8 79.9 + 63 9 5 15 2 4 7 9 12 7 18 9-11 74.0 82.0 79.8 + 63 9 6 15 6 6 9 7 5 5 18 9-11 74.0 82.2 79.8 + 63 9 7 4 4 5 2 3 4 5 12 5-11 78.0 82.3 79.8 + 63 9 8 9 32 15 15 32 9 4 3 15-11 75.0 82.4 79.7 + 63 9 9 12 32 12 18 18 7 6 5 14-11 77.0 82.4 79.7 + 63 9 10 7 7 12 7 6 7 5 18 9-11 76.0 82.5 79.7 + 63 9 11 18 12 7 18 12 27 48 18 20-11 72.0 82.6 79.7 + 63 9 12 27 18 27 9 7 6 6 6 13-11 77.0 82.7 79.7 + 63 9 13 6 3 4 2 3 4 12 32 8-11 89.0 82.8 79.7 + 63 9 14 27 56132111 94111 67 56 82-11 98.0 82.8 79.7 + 63 9 15 22 32 27 32 39 48 32 56 36-11 99.0 83.0 79.7 + 63 9 16 18 39 27 39 39 27 39 39 33-11105.0 83.1 79.7 + 63 9 17 39 32 67 94 27 27 48 12 43-11 99.0 83.1 79.7 + 63 9 18 18 7 7 15 18 32 6 15 15-11 97.0 83.1 79.6 + 63 9 19 22 27 32 39 39 22 18 7 26-11102.0 83.2 79.6 + 63 9 20 18 15 9 12 18 15 7 12 13-11109.0 83.3 79.6 + 63 9 21 12 22 6 7 56132 94 27 45-11 90.0 83.4 79.6 + 63 9 22 32236179 39 27 39154300126-11105.0 83.6 79.6 + 63 9 23300207 32 32 18 18 15 6 79-11 99.0 83.7 79.6 + 63 9 24 0 7 7 7 7 15 22 80 18-11 95.0 83.9 79.6 + 63 9 25154 94 39 48 27 80 27 12 60-11 86.0 84.0 79.6 + 63 9 26 9 56 27 18 22 39 18 27 27-11 84.0 84.1 79.6 + 63 9 27 27 18 9 15 15 15 94 80 34-11 78.0 84.0 79.7 + 63 9 28 80 67 39 15 48 48 56 32 48-11 74.0 84.0 79.7 + 63 9 29 18 15 15 22 18 12 27 22 19-11 71.0 83.9 79.7 + 63 9 30 27 12 15 15 12 5 4 6 12-11 69.0 83.9 79.7 + 63 10 1 4 6 4 3 3 2 3 3 4-11 68.0 83.7 79.7 + 63 10 2 0 0 2 2 5 5 3 4 3-11 69.0 83.6 79.7 + 63 10 3 4 5 6 4 3 4 4 3 4-11 70.0 83.5 79.7 + 63 10 4 6 12 7 6 5 6 3 3 6-11 71.0 83.3 79.7 + 63 10 5 5 6 5 18 6 4 15 5 8-11 73.0 83.2 79.7 + 63 10 6 6 12 2 2 2 5 5 3 5-11 77.0 83.2 79.7 + 63 10 7 4 9 5 7 4 15 6 39 11-11 79.0 83.2 79.7 + 63 10 8 22 32 12 15 7 27 6 6 16-11 85.0 83.3 79.7 + 63 10 9 4 6 7 4 3 4 7 12 6-11 86.0 83.3 79.7 + 63 10 10 9 4 9 7 7 5 27 6 9-11 87.0 83.5 79.7 + 63 10 11 5 9 22 39 32 22 12 32 22-11 87.0 83.5 79.6 + 63 10 12 32 27 27 22 56 56 67 27 39-11 84.0 83.7 79.6 + 63 10 13 12 32 22 12 18 22 27 48 24-11 84.0 83.9 79.5 + 63 10 14 39 32 39 32 32 32 27 12 31-11 86.0 84.0 79.5 + 63 10 15 18 22 15 15 15 6 15 22 16-11 88.0 84.1 79.4 + 63 10 16 27 18 18 12 12 22 18 5 17-11 87.0 84.2 79.4 + 63 10 17 6 12 6 4 2 4 2 4 5-11 84.0 84.3 79.4 + 63 10 18 5 9 4 5 6 5 5 4 5-11 83.0 84.3 79.3 + 63 10 19 6 9 6 3 4 4 4 5 5-11 88.0 84.4 79.3 + 63 10 20 9 12 5 15 22 9 7 27 13-11 89.0 84.4 79.3 + 63 10 21 7 27 9 15 4 4 2 2 9-11 94.0 84.4 79.3 + 63 10 22 2 4 2 3 4 4 2 0 3-11 96.0 84.5 79.3 + 63 10 23 0 2 0 2 4 3 7 9 3-11 94.0 84.5 79.3 + 63 10 24 56 94 94154 27 27 22 32 63-11 94.0 84.4 79.3 + 63 10 25 56 18 12 6 6 5 9 12 16-11 96.0 84.2 79.3 + 63 10 26 18 7 6 9 5 6 4 5 8-11 96.0 83.9 79.3 + 63 10 27 4 4 4 3 4 2 7 2 4-11 88.0 83.5 79.2 + 63 10 28 2 0 0 5 2 12 22 12 7-11 84.0 83.2 79.2 + 63 10 29 18 12 9 6 27132179207 74-11 85.0 83.0 79.2 + 63 10 30179 39 27 15 5 5 7 4 35-11 85.0 82.7 79.2 + 63 10 31 5 5 7 12 6 5 5 3 6-11 82.0 82.3 79.1 + 63 11 1 5 12 9 7 7 12 9 7 9-11 87.0 82.2 79.1 + 63 11 2 7 9 12 12 9 48 18 15 16-11 85.0 81.9 79.1 + 63 11 3 18 27 27 15 7 2 9 27 17-11 83.0 81.7 79.0 + 63 11 4 5 9 6 6 6 4 9 5 6-11 83.0 81.5 79.0 + 63 11 5 2 3 2 2 2 2 0 2 2-11 80.0 81.4 79.0 + 63 11 6 6 5 9 7 18 12 15 27 12-11 78.0 81.4 78.9 + 63 11 7 18 39 22 48 27 39 80 39 39-11 76.0 81.4 78.9 + 63 11 8 56 67 80 32 32 39 32 27 46-11 75.0 81.4 78.8 + 63 11 9 32 22 32 18 32 32 48 48 33-11 76.0 81.5 78.8 + 63 11 10 48 32 18 27 18 39 22 27 29-11 75.0 81.6 78.8 + 63 11 11 22 22 18 15 6 9 22 12 16-11 76.0 81.8 78.7 + 63 11 12 7 12 22 15 6 22 18 9 14-11 77.0 81.9 78.7 + 63 11 13 4 5 3 5 5 7 4 5 5-11 77.0 82.0 78.6 + 63 11 14 5 18 4 3 3 0 2 5 5-11 78.0 82.0 78.5 + 63 11 15 9 4 5 3 4 2 2 2 4-11 81.0 82.0 78.5 + 63 11 16 5 3 4 0 2 2 2 4 3-11 81.0 82.0 78.4 + 63 11 17 2 2 4 18 32 39 27 6 16-11 80.0 81.9 78.3 + 63 11 18 4 4 0 3 3 2 5 2 3-11 82.0 81.8 78.2 + 63 11 19 0 0 3 2 0 2 2 6 2-11 86.0 81.6 78.2 + 63 11 20 9 15 2 2 4 0 2 0 4-11 84.0 81.4 78.1 + 63 11 21 0 0 2 3 5 2 3 2 2-11 86.0 81.2 78.1 + 63 11 22 0 0 2 5 4 15 18 6 6-11 86.0 81.0 78.0 + 63 11 23 15 9 12 9 5 3 6 4 8-11 84.0 80.9 77.9 + 63 11 24 4 15 9 15 18 22 27 48 20-11 83.0 80.7 77.9 + 63 11 25 39 27 18 12 12 9 5 2 16-11 82.0 80.4 77.9 + 63 11 26 0 0 9 5 3 0 0 0 2-11 82.0 80.3 77.9 + 63 11 27 0 3 6 5 3 2 4 5 4-11 81.0 80.1 77.8 + 63 11 28 5 18 5 4 5 2 3 0 5-11 79.0 80.0 77.8 + 63 11 29 5 7 4 6 6 12 5 18 8-11 79.0 79.8 77.8 + 63 11 30 12 6 5 18 67 12 15 7 18-11 79.0 79.5 77.7 + 63 12 1 5 3 4 3 3 9 4 9 5-11 79.0 79.3 77.7 + 63 12 2 7 12 9 5 18 18 12 15 12-11 80.0 79.0 77.7 + 63 12 3 22 32 67 32 39 27 32 39 36-11 79.0 78.7 77.6 + 63 12 4 18 32 27 12 22 22 22 48 25-11 77.0 78.5 77.6 + 63 12 5 39 27 15 18 32 27 39 27 28-11 76.0 78.2 77.6 + 63 12 6 22 27 22 12 32 27 22 22 23-11 76.0 77.9 77.6 + 63 12 7 18 15 15 15 22 15 12 7 15-11 77.0 77.7 77.5 + 63 12 8 12 22 18 12 18 15 12 7 15-11 77.0 77.5 77.5 + 63 12 9 4 7 12 15 12 7 2 0 7-11 78.0 77.3 77.4 + 63 12 10 0 0 2 0 0 0 0 0 0-11 79.0 77.2 77.3 + 63 12 11 0 3 0 2 3 2 2 2 2-11 80.0 77.1 77.3 + 63 12 12 4 2 2 3 2 0 3 12 4-11 82.0 76.9 77.2 + 63 12 13 15 18 4 5 4 3 6 5 8-11 81.0 76.7 77.1 + 63 12 14 4 5 6 5 18 22 15 15 11-11 79.0 76.6 77.0 + 63 12 15 7 6 9 9 6 9 7 4 7-11 81.0 76.5 76.9 + 63 12 16 12 6 3 4 5 12 5 6 7-11 78.0 76.4 76.9 + 63 12 17 9 0 4 0 2 4 5 4 4-11 78.0 76.3 76.8 + 63 12 18 3 0 3 4 2 0 0 3 2-11 79.0 76.2 76.8 + 63 12 19 0 0 0 0 3 6 5 22 5-11 78.0 76.2 76.8 + 63 12 20 18 18 39 15 18 12 27 15 20-11 79.0 76.2 76.8 + 63 12 21 4 5 12 6 9 18 6 27 11-11 79.0 76.2 76.8 + 63 12 22 6 12 15 9 22 7 18 12 13-11 77.0 76.1 76.8 + 63 12 23 5 5 22 18 2 18 18 18 13-11 76.0 76.1 76.8 + 63 12 24 18 6 3 2 7 15 15 12 10-11 76.0 76.0 76.8 + 63 12 25 0 0 4 12 3 2 2 0 3-11 75.0 75.9 76.8 + 63 12 26 2 7 3 4 3 3 3 6 4-11 74.0 75.7 76.8 + 63 12 27 5 5 9 2 6 3 3 2 4-11 74.0 75.6 76.8 + 63 12 28 6 6 18 6 5 7 22 18 11-11 73.0 75.5 76.8 + 63 12 29 15 7 7 27 22 22 18 9 16-11 72.0 75.3 76.7 + 63 12 30 9 5 2 3 7 7 3 6 5-11 71.0 75.1 76.7 + 63 12 31 4 2 3 3 3 2 0 5 3-11 71.0 75.0 76.7 + 64 1 1 4 2 6 6 6 7 9 6 6-11 69.7 74.8 76.7 + 64 1 2 5 80 94111 56 39 27 15 53-11 68.3 74.6 76.7 + 64 1 3 32 32 12 15 18 22 18 22 21-11 70.7 74.4 76.6 + 64 1 4 32 32 12 7 18 18 18 15 19-11 70.4 74.3 76.6 + 64 1 5 9 9 12 5 7 5 9 5 8-11 71.3 74.1 76.6 + 64 1 6 9 7 4 6 5 4 4 4 5-11 72.5 74.0 76.6 + 64 1 7 0 4 6 9 18 7 6 4 7-11 72.8 73.9 76.6 + 64 1 8 5 3 2 5 5 4 12 12 6-11 70.8 73.8 76.5 + 64 1 9 27 22 12 12 7 15 22 39 20-11 71.0 73.7 76.5 + 64 1 10 39 39 27 7 15 15 6 22 21-11 70.9 73.7 76.5 + 64 1 11 12 12 9 6 7 6 7 6 8-11 72.1 73.6 76.5 + 64 1 12 15 7 2 0 4 5 6 5 6-11 73.7 73.6 76.5 + 64 1 13 9 12 4 3 4 2 4 6 6-11 73.6 73.6 76.4 + 64 1 14 3 0 0 2 0 2 2 2 1-11 73.1 73.6 76.4 + 64 1 15 0 0 0 0 3 3 2 4 2-11 72.1 73.7 76.4 + 64 1 16 12 18 18 48 27 48 27 15 27-11 72.0 73.8 76.4 + 64 1 17 27 22 32 22 15 6 6 5 17-11 69.2 73.9 76.4 + 64 1 18 12 9 6 6 5 5 12 2 7-11 71.5 74.0 76.4 + 64 1 19 0 2 4 2 9 9 22 7 7-11 72.4 74.0 76.4 + 64 1 20 15 7 4 6 6 5 3 4 6-11 73.5 74.0 76.3 + 64 1 21 5 4 2 0 0 0 2 2 2-11 72.5 74.0 76.3 + 64 1 22 7 5 4 3 3 5 2 2 4-11 72.3 73.9 76.3 + 64 1 23 3 2 2 5 5 7 3 4 4-11 72.4 73.8 76.3 + 64 1 24 7 15 9 12 22 9 6 9 11-11 72.0 73.7 76.3 + 64 1 25 27 5 15 4 4 4 32 39 16-11 70.9 73.6 76.3 + 64 1 26 18 3 5 4 7 3 9 6 7-11 71.5 73.5 76.3 + 64 1 27 7 2 3 2 2 2 6 6 4-11 71.1 73.5 76.2 + 64 1 28 4 9 9 5 7 5 18 18 9-11 74.9 73.4 76.2 + 64 1 29 22 27 27 18 27 22 12 12 21-11 75.2 73.3 76.2 + 64 1 30 18 7 7 7 15 9 5 12 10-11 72.7 73.2 76.1 + 64 1 31 5 3 5 48 32 48 48 22 26-11 72.1 73.1 76.1 + 64 2 1 15 12 5 6 6 6 12 18 10-11 70.8 73.1 76.0 + 64 2 2 18 6 7 6 12 12 2 0 8-11 69.5 73.1 76.0 + 64 2 3 0 2 2 2 4 2 3 5 3-11 68.8 73.2 75.9 + 64 2 4 4 9 27 22 18 7 4 7 12-11 69.2 73.2 75.9 + 64 2 5 4 12 5 5 5 6 12 39 11-11 70.4 73.2 75.8 + 64 2 6 32 48 56 32 27 15 15 22 31-11 70.7 73.3 75.8 + 64 2 7 12 22 12 22 6 22 9 18 15-11 70.1 73.3 75.8 + 64 2 8 27 7 4 7 5 18 22 67 20-11 71.2 73.3 75.7 + 64 2 9 27 18 12 12 12 15 9 12 15-11 69.9 73.3 75.7 + 64 2 10 12 7 4 6 5 7 7 9 7-11 70.8 73.4 75.7 + 64 2 11 6 4 3 2 4 2 2 3 3-11 69.8 73.5 75.7 + 64 2 12 5 7 18 27 18 18 9 12 14-11 70.9 73.6 75.7 + 64 2 13 27 48 39 48 22 39 18 12 32-11 71.5 73.7 75.7 + 64 2 14 4 18 12 9 9 7 7 12 10-11 70.8 73.7 75.7 + 64 2 15 7 4 7 6 12 5 12 3 7-11 70.9 73.7 75.7 + 64 2 16 3 3 7 7 5 4 6 4 5-11 71.3 73.8 75.7 + 64 2 17 5 3 6 6 7 12 9 3 6-11 72.1 73.8 75.7 + 64 2 18 2 2 6 6 4 9 5 4 5-11 74.3 73.8 75.7 + 64 2 19 2 4 3 2 0 0 3 0 2-11 73.9 73.9 75.6 + 64 2 20 0 3 5 12 12 32 27 56 18-11 74.5 74.0 75.6 + 64 2 21 39 22 12 15 9 9 12 4 15-11 76.8 74.1 75.6 + 64 2 22 5 4 6 4 7 6 15 7 7-11 78.0 74.1 75.5 + 64 2 23 7 4 6 3 3 18 15 4 8-11 82.6 74.1 75.5 + 64 2 24 0 6 5 9 9 6 5 15 7-11 83.4 74.2 75.4 + 64 2 25 5 7 7 18 6 27 67 15 19-11 82.7 74.2 75.4 + 64 2 26 12 32 12 32 32 7 3 15 18-11 84.8 74.3 75.4 + 64 2 27 27 12 4 7 6 27 27 12 15-11 83.3 74.3 75.3 + 64 2 28 18 27 22 22 15 22 9 4 17-11 82.8 74.4 75.3 + 64 2 29 6 18 12 6 4 6 7 9 9-11 79.3 74.4 75.3 + 64 3 1 7 3 3 3 5 3 5 3 4-11 76.1 74.4 75.3 + 64 3 2 0 0 3 0 0 2 0 3 1-11 73.9 74.4 75.3 + 64 3 3 4 2 5 6 6 5 7 22 7-11 72.5 74.4 75.3 + 64 3 4 39 67 39 48 39 80 48 56 52-11 73.8 74.4 75.3 + 64 3 5 67 22 27 15 32 22 39 39 33-11 70.9 74.4 75.2 + 64 3 6 27 22 9 18 15 27 15 6 17-11 72.4 74.5 75.2 + 64 3 7 22 9 7 9 9 7 18 15 12-11 71.8 74.5 75.2 + 64 3 8 22 18 27 12 18 7 15 22 18-11 72.7 74.5 75.2 + 64 3 9 12 27 18 9 3 3 2 0 9-11 70.6 74.4 75.2 + 64 3 10 0 2 4 3 4 6 9 5 4-11 72.2 74.4 75.2 + 64 3 11 4 7 15 15 6 5 6 4 8-11 74.1 74.4 75.2 + 64 3 12 22 39 15 12 15 15 5 6 16-11 76.3 74.4 75.2 + 64 3 13 5 12 6 18 12 3 5 7 9-11 77.3 74.4 75.2 + 64 3 14 7 6 9 7 9 6 22 15 10-11 78.0 74.4 75.1 + 64 3 15 15 12 7 4 9 12 18 9 11-11 77.8 74.5 75.1 + 64 3 16 18 9 5 6 6 12 6 6 9-11 76.2 74.5 75.0 + 64 3 17 9 7 22 22 7 5 4 3 10-11 76.7 74.5 74.9 + 64 3 18 2 2 6 5 3 3 4 2 3-11 74.6 74.5 74.8 + 64 3 19 3 2 6 2 4 3 3 4 3-11 73.6 74.5 74.7 + 64 3 20 3 5 6 7 6 6 22 6 8-11 73.7 74.5 74.6 + 64 3 21 22 18 9 5 4 5 18 12 12-11 73.9 74.5 74.5 + 64 3 22 7 5 6 15 48 39 67 39 28-11 77.9 74.5 74.5 + 64 3 23 18 39 27 80 15 27 27 9 30-11 76.9 74.5 74.4 + 64 3 24 7 27 18 22 18 39 12 6 19-11 76.5 74.5 74.3 + 64 3 25 27 18 15 6 15 12 22 15 16-11 73.7 74.5 74.2 + 64 3 26 18 27 12 6 12 4 6 3 11-11 74.0 74.5 74.2 + 64 3 27 5 0 7 2 2 3 2 4 3-11 74.9 74.5 74.1 + 64 3 28 0 0 2 0 0 2 0 0 1-11 75.5 74.5 74.1 + 64 3 29 0 0 0 0 5 5 7 9 3-11 74.8 74.5 74.1 + 64 3 30 12 39 18 22 22 67 18 9 26-11 78.0 74.5 74.1 + 64 3 31 2 0 3 4 2 3 5 3 3-11 76.7 74.5 74.1 + 64 4 1 3 0 3 5 18 94 94154 46-11 77.3 74.4 74.1 + 64 4 2 56 32 18 15 12 27 32 18 26-11 75.3 74.4 74.1 + 64 4 3 22 32 9 18 18 18 12 15 18-11 76.8 74.3 74.1 + 64 4 4 22 15 12 6 6 7 5 12 11-11 76.9 74.1 74.1 + 64 4 5 9 15 5 12 5 6 9 27 11-11 76.1 73.9 74.1 + 64 4 6 9 7 3 4 3 3 5 15 6-11 75.8 73.8 74.1 + 64 4 7 15 7 15 4 9 9 18 7 11-11 75.7 73.6 74.1 + 64 4 8 12 7 18 27 15 6 18 9 14-11 73.7 73.5 74.1 + 64 4 9 9 18 6 9 7 5 3 0 7-11 75.2 73.3 74.0 + 64 4 10 3 2 6 18 5 2 2 3 5-11 73.1 73.2 74.0 + 64 4 11 0 5 7 15 39 22 15 5 14-11 74.3 73.1 74.0 + 64 4 12 3 5 5 2 2 3 3 7 4-11 73.1 73.1 73.9 + 64 4 13 6 6 4 2 2 5 6 7 5-11 73.4 73.0 73.9 + 64 4 14 6 3 2 6 7 3 2 3 4-11 72.0 73.0 73.8 + 64 4 15 4 3 4 15 15 9 5 18 9-11 71.9 73.0 73.8 + 64 4 16 18 12 9 5 12 9 5 5 9-11 71.2 72.9 73.8 + 64 4 17 27 22 27 12 9 15 9 7 16-11 72.4 72.9 73.7 + 64 4 18 2 3 7 27 48 39 22 18 21-11 72.4 72.9 73.7 + 64 4 19 27 18 9 39 18 18 22 22 22-11 71.5 72.9 73.6 + 64 4 20 15 9 27 7 5 12 15 27 15-11 72.1 72.9 73.6 + 64 4 21 22 6 5 7 6 5 9 9 9-11 72.3 72.8 73.5 + 64 4 22 2 0 3 4 2 2 3 3 2-11 71.5 72.7 73.5 + 64 4 23 5 5 4 2 2 2 3 4 3-11 71.1 72.6 73.4 + 64 4 24 0 3 2 6 3 4 5 5 4-11 72.5 72.6 73.3 + 64 4 25 6 5 6 18 18 7 12 18 11-11 71.4 72.5 73.3 + 64 4 26 12 22 15 9 4 6 7 6 10-11 70.5 72.4 73.2 + 64 4 27 9 12 15 15 18 56 48 39 27-11 70.5 72.3 73.2 + 64 4 28 56 48 48 39 22 7 18 27 33-11 70.9 72.3 73.2 + 64 4 29 48 18 9 7 9 7 27 4 16-11 69.8 72.2 73.1 + 64 4 30 3 2 2 3 4 15 18 39 11-11 70.0 72.2 73.1 + 64 5 1 80 22 18 22 15 12 7 9 23-11 70.0 72.2 73.1 + 64 5 2 9 12 27 9 7 5 4 12 11-11 69.5 72.1 73.0 + 64 5 3 7 6 3 5 3 3 4 5 5-11 71.0 72.1 73.0 + 64 5 4 4 3 5 3 3 2 4 4 4-11 71.5 72.0 73.0 + 64 5 5 9 15 9 15 12 3 4 2 9-11 73.2 72.0 73.0 + 64 5 6 0 0 5 4 4 5 9 3 4-11 72.2 72.0 72.9 + 64 5 7 3 6 4 4 2 2 2 0 3-11 72.2 72.0 72.9 + 64 5 8 0 0 2 0 0 2 2 2 1-11 72.9 71.9 72.9 + 64 5 9 2 2 0 2 3 3 2 0 2-11 72.2 71.9 72.9 + 64 5 10 15 6 12 5 18 27 39 39 20-11 71.5 71.9 72.9 + 64 5 11 56 48 27 4 4 5 4 5 19-11 71.5 71.8 72.9 + 64 5 12 3 4 5 4 2 0 0 2 3-11 70.9 71.8 72.9 + 64 5 13 0 0 4 5 22 39 56 18 18-11 69.9 71.7 72.8 + 64 5 14 7 7 27 18 56 67 18 15 27-11 69.8 71.6 72.8 + 64 5 15 12 80 48 18 12 12 12 32 28-11 69.5 71.5 72.8 + 64 5 16 27 15 39 27 15 9 32 7 21-11 71.6 71.5 72.8 + 64 5 17 5 5 9 18 12 6 5 9 9-11 71.2 71.4 72.7 + 64 5 18 3 7 6 9 6 3 3 2 5-11 72.1 71.3 72.7 + 64 5 19 6 4 5 5 2 4 6 4 5-11 70.3 71.3 72.7 + 64 5 20 2 3 3 3 5 4 4 0 3-11 69.3 71.2 72.7 + 64 5 21 2 4 4 6 6 6 4 6 5-11 69.7 71.2 72.6 + 64 5 22 2 4 4 4 5 3 4 4 4-11 68.8 71.1 72.6 + 64 5 23 6 6 4 3 4 4 3 22 7-11 69.0 71.0 72.6 + 64 5 24 22 39 27 22 18 12 15 15 21-11 69.8 71.0 72.5 + 64 5 25 7 4 56 94 22 22 27 18 31-11 69.3 71.0 72.5 + 64 5 26 22 4 6 2 7 6 5 3 7-11 70.2 71.0 72.5 + 64 5 27 7 9 22 18 12 7 6 9 11-11 69.5 70.9 72.4 + 64 5 28 7 6 5 7 6 12 12 7 8-11 71.5 70.9 72.4 + 64 5 29 5 7 5 3 5 2 5 7 5-11 71.0 70.9 72.4 + 64 5 30 5 3 3 5 6 6 5 18 6-11 70.1 70.9 72.3 + 64 5 31 5 6 4 4 4 3 2 2 4-11 69.6 70.8 72.3 + 64 6 1 2 5 4 4 7 6 4 6 5-11 69.7 70.8 72.3 + 64 6 2 3 4 4 3 5 5 5 4 4-11 70.0 70.8 72.3 + 64 6 3 4 5 3 4 4 2 2 4 4-11 70.2 70.7 72.3 + 64 6 4 6 3 5 5 4 6 4 3 5-11 70.2 70.7 72.2 + 64 6 5 3 3 2 3 3 4 4 2 3-11 69.8 70.7 72.2 + 64 6 6 2 4 3 6 7 2 2 3 4-11 70.5 70.7 72.2 + 64 6 7 2 2 2 2 4 2 12 15 5-11 71.7 70.7 72.2 + 64 6 8 12 9 15 12 6 4 6 5 9-11 71.9 70.7 72.2 + 64 6 9 6 6 6 7 12 15 6 5 8-11 71.1 70.7 72.2 + 64 6 10 12111 94 67 48 15 18 27 49-11 72.5 70.7 72.2 + 64 6 11 39 39 18 22 18 27 12 22 25-11 72.5 70.7 72.2 + 64 6 12 15 12 9 15 15 15 7 12 13-11 71.0 70.7 72.2 + 64 6 13 12 12 9 15 6 7 6 7 9-11 72.4 70.6 72.2 + 64 6 14 5 9 9 6 6 4 6 9 7-11 72.8 70.6 72.2 + 64 6 15 15 7 5 4 4 5 4 6 6-11 73.9 70.5 72.1 + 64 6 16 6 4 3 4 2 4 4 4 4-11 72.9 70.5 72.1 + 64 6 17 2 5 6 4 6 3 2 2 4-11 73.8 70.4 72.1 + 64 6 18 3 2 3 7 15 5 9 12 7-11 74.1 70.3 72.1 + 64 6 19 3 2 2 5 3 4 6 12 5-11 72.4 70.3 72.1 + 64 6 20 12 12 6 12 48 15 22 6 17-11 72.7 70.3 72.1 + 64 6 21 27 6 12 18 4 6 15 2 11-11 72.0 70.2 72.1 + 64 6 22 2 3 2 4 6 12 7 7 5-11 71.8 70.2 72.1 + 64 6 23 6 5 5 6 7 5 5 9 6-11 69.6 70.2 72.1 + 64 6 24 6 3 3 2 3 4 15 7 5-11 70.2 70.2 72.1 + 64 6 25 9 18 27 9 7 4 5 4 10-11 69.9 70.2 72.1 + 64 6 26 4 6 7 6 6 5 3 5 5-11 69.9 70.2 72.1 + 64 6 27 2 2 4 4 9 7 6 7 5-11 69.7 70.2 72.1 + 64 6 28 3 5 5 9 18 22 18 5 11-11 69.6 70.1 72.1 + 64 6 29 5 5 6 12 5 9 5 0 6-11 69.4 70.1 72.1 + 64 6 30 3 6 2 3 3 2 4 4 3-11 69.5 70.1 72.1 + 64 7 1 6 4 3 4 3 4 3 2 4-11 69.7 70.1 72.1 + 64 7 2 2 2 0 2 4 5 3 7 3-11 69.3 70.2 72.1 + 64 7 3 12 15 22 15 18 12 15 32 18-11 69.6 70.2 72.2 + 64 7 4 12 12 15 9 6 4 5 5 9-11 70.4 70.3 72.2 + 64 7 5 5 4 3 6 3 4 5 9 5-11 69.9 70.4 72.2 + 64 7 6 6 4 5 5 6 4 4 6 5-11 70.1 70.5 72.3 + 64 7 7 6 15 9 7 22 15 27 39 18-11 69.3 70.5 72.3 + 64 7 8 27 32 15 15 27 7 22 22 21-11 70.2 70.5 72.3 + 64 7 9 27 15 12 6 7 12 18 32 16-11 69.4 70.5 72.3 + 64 7 10 18 18 22 15 12 9 5 4 13-11 68.9 70.6 72.3 + 64 7 11 12 3 3 5 7 6 9 4 6-11 69.9 70.6 72.3 + 64 7 12 4 5 6 6 5 4 7 7 6-11 69.1 70.6 72.3 + 64 7 13 7 5 5 12 9 4 5 4 6-11 68.7 70.6 72.3 + 64 7 14 2 6 5 3 2 3 3 2 3-11 71.5 70.6 72.3 + 64 7 15 3 2 3 2 0 2 2 0 2-11 71.8 70.6 72.3 + 64 7 16 4 6 3 5 6 9 12 12 7-11 71.6 70.6 72.3 + 64 7 17 15 5 6 9 32 67 32 9 22-11 70.9 70.6 72.3 + 64 7 18 48 39 15 32 18 18 9 15 24-11 70.2 70.6 72.3 + 64 7 19 12 15 15 22 5 5 12 27 14-11 69.6 70.5 72.3 + 64 7 20 22 9 9 15 7 4 7 3 10-11 68.8 70.5 72.3 + 64 7 21 6 4 3 5 5 5 12 12 7-11 68.5 70.4 72.3 + 64 7 22 7 7 15 9 9 7 12 9 9-11 68.2 70.4 72.3 + 64 7 23 7 3 7 6 4 4 7 3 5-11 68.5 70.4 72.3 + 64 7 24 3 3 2 6 4 2 3 5 4-11 68.2 70.4 72.3 + 64 7 25 5 4 4 6 6 5 5 6 5-11 67.9 70.4 72.3 + 64 7 26 5 4 5 4 5 4 3 3 4-11 66.9 70.3 72.3 + 64 7 27 2 2 2 3 3 2 2 3 2-11 67.3 70.3 72.3 + 64 7 28 5 2 0 2 3 2 2 4 3-11 67.4 70.3 72.4 + 64 7 29 4 4 9 27 18 22 39 9 17-11 67.9 70.3 72.4 + 64 7 30 15 15 15 12 18 9 12 12 14-11 68.3 70.3 72.4 + 64 7 31 9 6 12 7 6 6 7 6 7-11 68.2 70.2 72.4 + 64 8 1 15 7 4 3 5 4 4 5 6-11 68.9 70.3 72.4 + 64 8 2 2 3 3 2 2 3 5 9 4-11 69.7 70.3 72.4 + 64 8 3 6 4 4 3 5 6 4 6 5-11 70.1 70.3 72.4 + 64 8 4 39 94 56 22 18 18 9 15 34-11 69.8 70.3 72.4 + 64 8 5 7 9 6 18 22 22 27 18 16-11 71.0 70.4 72.5 + 64 8 6 15 18 5 4 2 2 2 6 7-11 70.2 70.4 72.5 + 64 8 7 22 15 12 15 18 7 6 6 13-11 69.6 70.4 72.5 + 64 8 8 6 4 4 2 2 3 5 7 4-11 69.4 70.4 72.5 + 64 8 9 6 12 3 5 12 7 15 6 8-11 69.8 70.4 72.5 + 64 8 10 4 3 6 3 2 2 3 3 3-11 70.7 70.4 72.5 + 64 8 11 22 27 18 12 32 32 39 32 27-11 69.9 70.4 72.5 + 64 8 12 22 7 22 15 12 9 15 9 14-11 70.6 70.4 72.5 + 64 8 13 12 7 6 5 5 4 7 7 7-11 75.9 70.4 72.5 + 64 8 14 4 3 2 6 3 4 6 6 4-11 78.0 70.4 72.5 + 64 8 15 5 4 0 2 0 2 4 5 3-11 77.3 70.4 72.5 + 64 8 16 7 6 6 4 4 7 5 9 6-11 74.8 70.3 72.5 + 64 8 17 15 6 3 3 4 6 4 2 5-11 73.3 70.3 72.5 + 64 8 18 6 7 7 6 6 5 7 5 6-11 71.3 70.3 72.5 + 64 8 19 0 2 6 7 7 5 4 7 5-11 72.2 70.3 72.5 + 64 8 20 5 3 2 2 3 4 7 7 4-11 71.4 70.4 72.5 + 64 8 21 2 5 4 4 5 6 4 3 4-11 70.8 70.4 72.5 + 64 8 22 12 7 6 9 7 4 5 4 7-11 70.6 70.4 72.5 + 64 8 23 6 3 3 5 4 5 3 2 4-11 70.3 70.5 72.5 + 64 8 24 2 2 4 2 2 4 5 5 3-11 69.9 70.5 72.4 + 64 8 25 4 6 4 2 9 15 15 12 8-11 69.1 70.5 72.4 + 64 8 26 18 12 12 4 9 4 5 18 10-11 68.9 70.5 72.4 + 64 8 27 9 12 7 7 9 7 6 4 8-11 69.6 70.5 72.3 + 64 8 28 3 2 2 2 2 2 6 3 3-11 68.6 70.5 72.3 + 64 8 29 6 2 3 7 3 5 5 6 5-11 68.5 70.6 72.3 + 64 8 30 3 3 3 4 3 4 3 4 3-11 69.9 70.7 72.3 + 64 8 31 7 7 6 9 15 6 12 39 13-11 70.2 70.7 72.3 + 64 9 1 39 32 27 5 12 18 7 22 20-11 71.3 70.8 72.3 + 64 9 2 22 9 9 12 5 5 9 7 10-11 70.4 70.8 72.3 + 64 9 3 15 9 6 5 6 9 15 6 9-11 70.8 70.8 72.3 + 64 9 4 4 7 7 15 7 4 12 15 9-11 71.0 70.8 72.3 + 64 9 5 7 18 5 6 5 2 2 3 6-11 70.8 70.9 72.3 + 64 9 6 4 4 5 6 12 4 15 48 12-11 71.5 70.9 72.3 + 64 9 7 15 9 18 39 32 27 48 39 28-11 71.8 71.0 72.3 + 64 9 8 27 22 32 27 12 27 22 15 23-11 71.9 71.0 72.3 + 64 9 9 15 27 9 18 15 12 15 18 16-11 72.4 71.1 72.3 + 64 9 10 27 15 3 3 4 6 7 12 10-11 72.8 71.1 72.3 + 64 9 11 9 9 5 2 2 2 2 4 4-11 73.0 71.1 72.3 + 64 9 12 7 4 3 2 4 0 0 0 3-11 73.2 71.1 72.3 + 64 9 13 4 0 2 3 0 2 4 3 2-11 72.9 71.2 72.3 + 64 9 14 3 0 2 2 2 2 2 4 2-11 72.5 71.2 72.3 + 64 9 15 2 2 3 2 0 3 3 6 3-11 71.9 71.3 72.2 + 64 9 16 4 9 5 7 22 18 22 18 13-11 70.2 71.3 72.2 + 64 9 17 18 12 7 6 15 5 6 6 9-11 69.0 71.4 72.2 + 64 9 18 6 6 4 5 5 4 4 6 5-11 69.0 71.4 72.2 + 64 9 19 2 3 3 2 4 2 2 3 3-11 69.4 71.5 72.2 + 64 9 20 0 0 0 2 2 2 3 5 2-11 69.5 71.5 72.2 + 64 9 21 2 3 5 6 3 4 5 9 5-11 69.1 71.6 72.2 + 64 9 22111179 18 9 9 7 9 9 44-11 69.1 71.6 72.2 + 64 9 23 7 7 22 12 3 2 5 7 8-11 69.0 71.6 72.2 + 64 9 24 4 9 7 15 6 7 18 5 9-11 68.4 71.5 72.2 + 64 9 25 9 12 4 3 0 2 2 6 5-11 68.1 71.4 72.2 + 64 9 26 6 2 7 5 3 0 2 3 4-11 69.7 71.4 72.2 + 64 9 27 2 2 5 2 2 4 5 27 6-11 70.0 71.4 72.2 + 64 9 28 39 27 39 27 27 67 39 15 35-11 70.5 71.4 72.2 + 64 9 29 6 9 9 5 5 2 3 15 7-11 70.9 71.4 72.1 + 64 9 30 12 39 27 15 22 27 12 18 22-11 71.6 71.4 72.1 + 64 10 1 22 18 9 6 6 9 2 3 9-11 72.0 71.4 72.1 + 64 10 2 12 3 2 0 3 4 6 3 4-11 71.6 71.4 72.1 + 64 10 3 6 2 4 5 15 22 15 12 10-11 71.8 71.4 72.1 + 64 10 4 22 39 15 22 9 48 48 39 30-11 70.8 71.4 72.1 + 64 10 5 32 18 15 12 22 18 22 18 20-11 71.6 71.4 72.1 + 64 10 6 15 4 9 6 15 22 15 15 13-11 72.6 71.4 72.0 + 64 10 7 27 22 12 7 5 5 9 18 13-11 74.0 71.4 72.0 + 64 10 8 9 15 15 7 15 22 22 12 15-11 76.8 71.5 72.0 + 64 10 9 15 18 32 15 9 5 9 6 14-11 72.9 71.6 72.0 + 64 10 10 7 0 2 4 5 5 3 2 4-11 72.7 71.6 72.0 + 64 10 11 0 0 2 2 5 5 5 5 3-11 71.5 71.6 72.0 + 64 10 12 6 3 12 32 27 18 9 12 15-11 69.7 71.6 72.0 + 64 10 13 9 12 7 5 7 5 6 7 7-11 71.9 71.7 72.0 + 64 10 14 18 18 7 6 4 0 2 3 7-11 70.3 71.6 72.0 + 64 10 15 9 4 9 7 4 6 5 6 6-11 70.2 71.6 72.0 + 64 10 16 6 9 3 0 0 2 4 4 4-11 70.5 71.6 72.0 + 64 10 17 5 15 9 5 6 6 2 4 7-11 70.4 71.6 72.0 + 64 10 18 5 12 7 7 12 9 15 27 12-11 71.8 71.5 72.1 + 64 10 19 22 27 18 15 39 39 22 22 26-11 72.2 71.5 72.1 + 64 10 20 27 9 5 9 9 7 18 15 12-11 71.9 71.5 72.1 + 64 10 21 15 12 15 15 9 18 27 9 15-11 70.3 71.5 72.1 + 64 10 22 6 6 6 5 2 0 2 0 3-11 71.8 71.5 72.1 + 64 10 23 0 0 0 0 2 0 2 2 1-11 72.3 71.5 72.1 + 64 10 24 0 2 2 3 2 7 6 15 5-11 73.0 71.5 72.1 + 64 10 25 12 5 3 3 3 2 2 5 4-11 75.4 71.5 72.1 + 64 10 26 12 12 56 39 9 5 9 5 18-11 75.4 71.6 72.1 + 64 10 27 6 6 5 7 9 5 6 3 6-11 74.9 71.6 72.1 + 64 10 28 7 4 3 4 5 3 7 5 5-11 73.5 71.7 72.1 + 64 10 29 9 18 6 3 3 5 5 5 7-11 73.2 71.8 72.1 + 64 10 30 6 4 3 4 3 2 2 2 3-11 73.2 71.8 72.1 + 64 10 31 4 0 0 2 0 2 2 4 2-11 74.0 71.9 72.1 + 64 11 1 3 12 5 5 12 22 18 39 15-11 73.6 72.0 72.1 + 64 11 2 27 27 18 7 3 5 4 12 13-11 73.3 72.1 72.1 + 64 11 3 15 7 5 2 0 4 2 0 4-11 72.7 72.2 72.1 + 64 11 4 4 12 2 6 12 6 4 12 7-11 72.1 72.3 72.1 + 64 11 5 12 6 3 3 15 9 18 7 9-11 71.6 72.4 72.1 + 64 11 6 4 4 4 4 5 4 6 4 4-11 72.6 72.5 72.1 + 64 11 7 4 0 0 0 0 0 0 3 1-11 71.5 72.6 72.1 + 64 11 8 9 9 9 4 7 3 15 12 9-11 71.1 72.7 72.1 + 64 11 9 27 39 12 12 6 18 15 22 19-11 70.4 72.8 72.1 + 64 11 10 32 15 12 6 6 3 6 5 11-11 70.1 72.8 72.1 + 64 11 11 3 6 12 7 3 3 4 5 5-11 70.2 72.9 72.1 + 64 11 12 9 18 6 3 6 7 9 9 8-11 70.7 72.9 72.1 + 64 11 13 4 6 6 5 5 6 2 0 4-11 70.7 73.0 72.1 + 64 11 14 0 0 2 0 0 2 2 0 1-11 71.1 73.0 72.2 + 64 11 15 0 2 3 7 22 18 15 32 12-11 70.6 73.0 72.2 + 64 11 16 12 9 15 9 5 7 7 12 10-11 70.3 73.0 72.3 + 64 11 17 9 5 6 3 4 6 5 3 5-11 73.7 73.0 72.3 + 64 11 18 7 2 6 3 0 6 5 9 5-11 73.3 72.9 72.4 + 64 11 19 6 4 3 2 0 0 2 2 2-11 73.1 73.0 72.5 + 64 11 20 5 5 0 6 2 2 0 3 3-11 74.0 73.0 72.5 + 64 11 21 2 2 3 2 3 2 3 6 3-11 72.0 73.0 72.6 + 64 11 22 6 4 4 9 4 5 5 12 6-11 71.5 73.2 72.7 + 64 11 23 15 22 22 39 32 18 9 4 20-11 69.9 73.3 72.7 + 64 11 24 5 3 4 4 2 0 0 2 3-11 69.3 73.4 72.8 + 64 11 25 0 0 0 0 2 3 6 3 2-11 69.5 73.5 72.8 + 64 11 26 4 18 4 15 18 15 6 7 11-11 68.1 73.6 72.8 + 64 11 27 4 5 3 0 2 2 7 9 4-11 69.6 73.7 72.8 + 64 11 28 15 9 7 7 7 18 15 5 10-11 68.8 73.7 72.8 + 64 11 29 0 0 0 2 0 4 4 22 4-11 71.0 73.8 72.9 + 64 11 30 32 18 12 6 3 3 3 9 11-11 71.5 73.8 72.9 + 64 12 1 12 7 9 12 9 9 5 5 9-11 73.9 73.8 72.9 + 64 12 2 4 3 5 3 0 0 3 5 3-11 73.8 73.9 72.9 + 64 12 3 0 4 3 5 6 5 12 4 5-11 74.4 73.9 72.9 + 64 12 4 3 3 0 3 4 7 6 3 4-11 75.7 73.9 72.9 + 64 12 5 4 3 0 3 0 0 2 3 2-11 75.3 73.8 73.0 + 64 12 6 0 0 2 0 2 2 9 7 3-11 74.6 73.8 73.0 + 64 12 7 3 4 3 12 15 18 9 18 10-11 73.8 73.7 73.0 + 64 12 8 12 15 6 3 4 3 5 3 6-11 75.0 73.7 73.0 + 64 12 9 2 6 6 5 3 3 3 12 5-11 75.0 73.7 73.1 + 64 12 10 5 5 5 2 2 0 3 0 3-11 76.0 73.7 73.1 + 64 12 11 0 2 3 3 3 2 4 5 3-11 77.0 73.7 73.1 + 64 12 12 0 2 3 2 3 0 3 3 2-11 74.3 73.7 73.1 + 64 12 13 3 5 3 5 7 22 18 6 9-11 75.5 73.7 73.1 + 64 12 14 7 4 7 9 5 7 7 7 7-11 76.1 73.7 73.2 + 64 12 15 15 18 7 4 6 4 4 2 8-11 76.5 73.7 73.2 + 64 12 16 12 9 7 12 56 7 6 12 15-11 78.2 73.7 73.2 + 64 12 17 39 22 15 15 5 6 7 9 15-11 77.8 73.8 73.2 + 64 12 18 12 6 6 4 4 2 4 6 6-11 78.1 73.8 73.2 + 64 12 19 6 7 5 5 7 15 18 7 9-11 79.1 73.9 73.2 + 64 12 20 2 0 0 7 3 3 7 7 4-11 77.6 73.9 73.3 + 64 12 21 4 2 6 4 4 7 3 2 4-11 76.2 74.0 73.3 + 64 12 22 5 4 2 2 3 4 2 4 3-11 74.9 74.1 73.3 + 64 12 23 3 7 7 3 4 3 2 5 4-11 73.5 74.2 73.3 + 64 12 24 0 2 4 0 2 5 5 5 3-11 72.5 74.3 73.4 + 64 12 25 0 0 2 3 5 5 6 15 5-11 72.4 74.3 73.4 + 64 12 26 18 3 0 2 5 3 3 3 5-11 71.5 74.4 73.4 + 64 12 27 3 0 0 3 2 2 3 5 2-11 73.8 74.5 73.5 + 64 12 28 5 3 0 0 0 2 7 6 3-11 74.7 74.5 73.5 + 64 12 29 5 3 12 4 4 4 2 0 4-11 75.1 74.5 73.5 + 64 12 30 5 2 2 2 0 2 0 2 2-11 74.1 74.5 73.5 + 64 12 31 4 3 4 2 2 3 3 2 3-11 75.9 74.5 73.6 + 65 1 1 0 3 3 2 2 4 4 6 3-11 82.7 74.5 73.6 + 65 1 2 9 7 5 7 15 15 12 18 11-11 81.5 74.5 73.6 + 65 1 3 27 2 5 4 2 12 3 3 7-11 79.4 74.5 73.6 + 65 1 4 4 0 3 4 5 4 7 6 4-11 78.0 74.5 73.7 + 65 1 5 5 0 0 2 3 7 0 3 3-11 77.4 74.5 73.7 + 65 1 6 3 0 3 3 3 0 2 3 2-11 77.7 74.6 73.7 + 65 1 7 0 5 2 3 6 9 4 7 5-11 75.7 74.6 73.8 + 65 1 8 32 5 9 12 18 12 6 12 13-11 74.9 74.6 73.8 + 65 1 9 5 12 4 3 5 5 7 18 7-11 74.1 74.6 73.8 + 65 1 10 4 4 4 3 5 7 6 9 5-11 73.5 74.6 73.9 + 65 1 11 5 4 0 0 2 2 0 2 2-11 72.7 74.6 73.9 + 65 1 12 4 6 4 15 18 18 9 22 12-11 72.6 74.5 73.9 + 65 1 13 32 22 12 7 9 9 7 5 13-11 72.5 74.5 73.9 + 65 1 14 6 9 6 9 9 6 3 3 6-11 72.0 74.4 74.0 + 65 1 15 5 9 4 7 6 6 6 3 6-11 72.4 74.4 74.0 + 65 1 16 2 0 3 3 3 3 2 6 3-11 71.4 74.4 74.0 + 65 1 17 6 2 3 9 22 18 12 12 11-11 71.2 74.3 74.0 + 65 1 18 3 12 6 4 2 3 4 6 5-11 72.1 74.3 74.0 + 65 1 19 6 6 5 0 2 2 3 12 5-11 71.5 74.3 74.0 + 65 1 20 4 2 3 0 0 7 15 27 7-11 73.7 74.3 74.0 + 65 1 21 27 27 5 2 5 3 5 5 10-11 74.1 74.3 74.1 + 65 1 22 12 22 67 12 12 15 9 7 20-11 74.4 74.3 74.1 + 65 1 23 7 12 9 7 5 3 6 7 7-11 73.4 74.3 74.1 + 65 1 24 4 2 2 0 2 0 2 3 2-11 74.1 74.2 74.1 + 65 1 25 3 5 2 0 0 0 2 3 2-11 73.1 74.2 74.1 + 65 1 26 3 0 5 5 4 4 0 2 3-11 73.5 74.2 74.1 + 65 1 27 5 9 6 3 5 7 4 7 6-11 76.8 74.1 74.1 + 65 1 28 9 3 2 5 6 2 6 6 5-11 75.1 74.1 74.2 + 65 1 29 12 4 2 3 4 4 3 7 5-11 76.6 74.0 74.2 + 65 1 30 12 5 3 6 3 3 0 3 4-11 78.6 73.9 74.2 + 65 1 31 4 3 0 3 0 0 5 6 3-11 77.7 73.9 74.2 + 65 2 1 12 7 4 4 0 0 0 2 4-11 76.2 73.9 74.2 + 65 2 2 2 6 3 0 0 2 3 4 3-11 76.8 73.9 74.2 + 65 2 3 4 5 4 3 4 2 3 15 5-11 76.4 73.9 74.3 + 65 2 4 15 9 9 12 7 9 12 6 10-11 75.2 73.8 74.3 + 65 2 5 6 5 3 4 5 6 6 5 5-11 74.1 73.8 74.3 + 65 2 6 15 5 6 2 15 39 18 9 14-11 74.1 73.8 74.3 + 65 2 7 22 56 67 18 27 32 15 12 31-11 75.2 73.8 74.4 + 65 2 8 5 3 5 6 3 7 48 56 17-11 73.4 73.8 74.4 + 65 2 9 12 7 4 9 15 18 9 7 10-11 73.4 73.8 74.4 + 65 2 10 9 18 12 18 12 9 7 9 12-11 73.9 73.8 74.4 + 65 2 11 7 12 27 4 5 7 12 7 10-11 71.8 73.6 74.5 + 65 2 12 7 5 4 6 4 2 2 0 4-11 71.2 73.5 74.5 + 65 2 13 3 0 5 4 3 5 6 6 4-11 70.6 73.5 74.5 + 65 2 14 6 12 18 22 9 5 12 7 11-11 70.1 73.4 74.5 + 65 2 15 15 7 4 6 15 27 6 15 12-11 70.8 73.3 74.5 + 65 2 16 9 15 4 6 5 5 3 5 7-11 71.4 73.2 74.5 + 65 2 17 6 0 0 4 6 0 0 3 2-11 71.6 73.2 74.5 + 65 2 18 0 0 0 2 5 4 4 15 4-11 70.5 73.2 74.5 + 65 2 19 2 6 2 3 4 3 3 7 4-11 70.6 73.1 74.5 + 65 2 20 6 4 5 4 5 7 4 6 5-11 69.8 73.1 74.5 + 65 2 21 9 39 9 18 18 18 15 12 17-11 70.0 73.1 74.5 + 65 2 22 7 3 4 3 3 3 6 9 5-11 70.3 73.1 74.5 + 65 2 23 7 6 6 12 18 32 39 22 18-11 71.5 73.0 74.5 + 65 2 24 15 15 7 12 7 5 6 18 11-11 72.9 73.0 74.6 + 65 2 25 48 9 9 12 6 5 4 15 14-11 72.7 73.0 74.6 + 65 2 26 7 7 12 6 6 9 6 5 7-11 72.3 73.0 74.6 + 65 2 27 9 5 4 12 15 12 4 12 9-11 74.6 73.0 74.6 + 65 2 28 12 7 3 5 5 7 7 5 6-11 74.8 73.0 74.6 + 65 3 1 4 5 2 5 9 18 6 5 7-11 75.1 73.0 74.6 + 65 3 2 0 5 5 5 7 18 18 7 8-11 74.0 73.0 74.7 + 65 3 3 18 22 27 15 18 39 39 27 26-11 73.7 73.0 74.7 + 65 3 4 27 80 27 18 7 5 4 3 21-11 73.8 73.0 74.7 + 65 3 5 0 3 7 18 7 6 7 6 7-11 74.8 73.0 74.7 + 65 3 6 4 4 2 3 2 4 7 9 4-11 75.5 73.1 74.7 + 65 3 7 15 6 6 6 9 7 4 2 7-11 75.8 73.1 74.8 + 65 3 8 2 2 3 4 3 2 2 0 2-11 73.4 73.1 74.8 + 65 3 9 4 3 6 3 6 3 2 5 4-11 71.9 73.0 74.8 + 65 3 10 5 0 0 2 4 0 2 0 2-11 72.1 73.0 74.8 + 65 3 11 6 5 4 3 2 3 4 2 4-11 70.9 73.0 74.8 + 65 3 12 0 2 2 0 9 5 9 7 4-11 72.6 72.9 74.8 + 65 3 13 6 7 9 18 18 12 5 2 10-11 74.6 72.9 74.8 + 65 3 14 2 7 4 4 9 6 7 12 6-11 73.7 72.9 74.9 + 65 3 15 18 7 18 12 5 12 18 4 12-11 71.9 72.8 74.9 + 65 3 16 5 7 2 4 2 2 2 9 4-11 70.5 72.7 74.9 + 65 3 17 3 4 5 4 6 9 7 2 5-11 70.8 72.7 74.9 + 65 3 18 2 2 3 0 3 2 0 0 2-11 74.3 72.6 74.9 + 65 3 19 0 2 6 6 5 2 3 6 4-11 76.3 72.6 74.9 + 65 3 20 7 0 2 7 9 3 6 5 5-11 73.8 72.5 74.9 + 65 3 21 12 4 4 6 12 6 5 18 8-11 73.4 72.5 74.9 + 65 3 22 3 2 3 2 3 5 15 27 8-11 72.1 72.5 74.9 + 65 3 23 7 22 32 15 15 32 48 32 25-11 72.5 72.4 75.0 + 65 3 24 5 6 15 27 22 7 7 9 12-11 72.0 72.4 75.0 + 65 3 25 7 18 48 32 9 6 27 9 20-11 73.4 72.4 75.0 + 65 3 26 32 15 22 9 6 6 7 9 13-11 73.0 72.4 75.0 + 65 3 27 12 9 12 6 5 7 15 5 9-11 71.8 72.5 75.0 + 65 3 28 3 7 12 5 3 5 2 2 5-11 71.4 72.5 75.0 + 65 3 29 7 6 5 3 7 6 7 4 6-11 71.7 72.5 75.1 + 65 3 30 0 0 2 3 4 4 4 2 2-11 71.2 72.5 75.1 + 65 3 31 5 7 5 6 2 2 2 4 4-11 71.4 72.6 75.1 + 65 4 1 9 6 5 2 4 3 3 2 4-11 71.1 72.6 75.2 + 65 4 2 2 4 4 3 0 2 0 3 2-11 71.5 72.6 75.2 + 65 4 3 0 4 3 2 5 3 3 3 3-11 71.3 72.7 75.3 + 65 4 4 2 7 12 7 9 7 4 2 6-11 71.1 72.8 75.4 + 65 4 5 2 12 3 2 2 2 3 4 4-11 70.8 72.9 75.4 + 65 4 6 5 7 5 3 9 12 6 9 7-11 71.0 73.1 75.5 + 65 4 7 15 18 5 5 12 6 3 4 9-11 70.8 73.4 75.5 + 65 4 8 4 2 2 3 4 4 3 6 4-11 70.7 73.6 75.6 + 65 4 9 15 27 15 3 3 7 6 12 11-11 71.9 73.9 75.6 + 65 4 10 18 7 4 6 2 2 3 3 6-11 73.4 74.1 75.6 + 65 4 11 6 4 4 3 4 15 22 5 8-11 74.1 74.4 75.6 + 65 4 12 9 9 3 3 5 4 12 9 7-11 73.7 74.6 75.6 + 65 4 13 12 7 6 3 4 4 2 3 5-11 74.0 74.8 75.6 + 65 4 14 6 7 3 4 6 5 2 4 5-11 75.8 75.0 75.6 + 65 4 15 5 7 3 2 3 6 3 4 4-11 75.5 75.1 75.7 + 65 4 16 6 5 3 3 3 3 4 2 4-11 75.1 75.1 75.7 + 65 4 17 0 2 3 2 15 32 27 7 11-11 73.8 75.2 75.7 + 65 4 18 27132179 94 56 32 18 9 68-11 73.7 75.2 75.7 + 65 4 19 15 6 5 15 12 22 12 22 14-11 74.8 75.3 75.7 + 65 4 20 15 9 7 12 22 5 4 6 10-11 73.1 75.3 75.7 + 65 4 21 5 0 0 3 4 5 4 3 3-11 73.7 75.3 75.7 + 65 4 22 3 5 3 7 4 3 2 12 5-11 73.5 75.3 75.7 + 65 4 23 3 4 5 4 3 6 3 9 5-11 74.0 75.4 75.7 + 65 4 24 7 4 3 7 9 6 2 0 5-11 71.6 75.4 75.7 + 65 4 25 3 5 4 3 3 6 4 5 4-11 70.4 75.5 75.7 + 65 4 26 15 3 4 5 4 7 7 5 6-11 70.0 75.6 75.7 + 65 4 27 5 4 4 5 5 6 5 3 5-11 70.2 75.8 75.7 + 65 4 28 5 4 3 2 3 4 3 0 3-11 70.5 75.8 75.7 + 65 4 29 0 5 4 4 2 6 12 4 5-11 71.2 75.9 75.7 + 65 4 30 7 6 7 3 3 5 4 4 5-11 70.9 76.0 75.7 + 65 5 1 5 3 3 5 3 3 4 3 4-11 72.2 76.1 75.7 + 65 5 2 3 0 0 0 2 3 2 3 2-11 71.9 76.1 75.8 + 65 5 3 4 3 3 2 4 4 0 2 3-11 71.9 76.2 75.8 + 65 5 4 2 5 3 3 2 6 5 7 4-11 70.9 76.3 75.8 + 65 5 5 32 48 56 18 9 18 9 18 26-11 70.2 76.4 75.8 + 65 5 6 7 3 9 4 7 4 5 9 6-11 71.7 76.4 75.8 + 65 5 7 15 9 3 5 4 2 5 0 5-11 72.7 76.5 75.8 + 65 5 8 4 4 5 6 5 12 18 32 11-11 73.4 76.6 75.8 + 65 5 9 32 22 6 5 5 3 7 12 12-11 73.8 76.7 75.9 + 65 5 10 15 9 12 6 3 3 5 6 7-11 73.5 76.8 75.9 + 65 5 11 2 0 0 2 2 3 3 4 2-11 72.5 76.9 75.9 + 65 5 12 7 9 5 4 3 2 2 4 5-11 73.3 77.0 76.0 + 65 5 13 0 2 3 3 3 4 3 4 3-11 76.0 77.1 76.0 + 65 5 14 3 3 2 2 3 3 4 2 3-11 77.0 77.2 76.0 + 65 5 15 5 2 2 4 4 4 5 7 4-11 82.3 77.4 76.0 + 65 5 16 9 12 18 22 56 9 5 9 18-11 88.3 77.5 76.0 + 65 5 17 6 7 7 5 4 4 5 2 5-11 93.2 77.6 76.1 + 65 5 18 3 7 3 3 2 4 4 5 4-11 92.6 77.7 76.1 + 65 5 19 3 3 3 4 2 2 0 3 3-11 94.6 77.9 76.1 + 65 5 20 2 3 2 2 4 6 4 6 4-11 97.0 77.9 76.1 + 65 5 21 6 5 2 3 5 6 7 7 5-11 95.1 78.0 76.1 + 65 5 22 7 6 4 4 3 7 9 5 6-11 94.5 78.1 76.0 + 65 5 23 5 4 9 4 4 4 2 7 5-11 88.4 78.1 76.0 + 65 5 24 6 4 9 4 4 7 9 4 6-11 87.3 78.2 76.0 + 65 5 25 2 2 3 3 3 4 4 3 3-11 83.1 78.2 76.0 + 65 5 26 3 4 4 3 2 4 6 7 4-11 80.0 78.2 76.0 + 65 5 27 9 6 4 5 4 7 5 6 6-11 78.1 78.3 76.0 + 65 5 28 3 4 2 7 7 9 6 3 5-11 76.5 78.5 76.0 + 65 5 29 4 2 3 2 4 4 3 4 3-11 75.8 78.6 76.0 + 65 5 30 3 3 2 3 4 4 3 2 3-11 76.1 78.7 76.1 + 65 5 31 3 3 4 6 5 4 4 3 4-11 73.6 78.8 76.1 + 65 6 1 3 2 4 4 6 5 6 7 5-11 72.8 78.9 76.1 + 65 6 2 4 4 5 4 6 5 12 7 6-11 75.8 79.0 76.1 + 65 6 3 3 2 2 2 4 7 32 18 9-11 77.4 79.1 76.1 + 65 6 4 3 6 6 15 15 15 12 18 11-11 80.5 79.1 76.1 + 65 6 5 15 12 6 4 4 3 4 4 7-11 80.6 79.2 76.1 + 65 6 6 3 5 3 6 5 5 7 4 5-11 80.7 79.3 76.0 + 65 6 7 6 4 0 4 4 4 2 0 3-11 79.5 79.3 76.0 + 65 6 8 3 3 9 6 6 7 18 22 9-11 80.7 79.4 76.0 + 65 6 9 18 22 12 6 12 15 9 6 13-11 81.4 79.4 76.0 + 65 6 10 5 3 2 2 2 0 0 0 2-11 80.7 79.5 76.0 + 65 6 11 0 3 2 3 4 6 12 7 5-11 78.9 79.5 76.0 + 65 6 12 3 4 4 4 4 3 2 3 3-11 78.4 79.5 76.0 + 65 6 13 2 2 2 4 0 0 2 2 2-11 79.2 79.6 76.0 + 65 6 14 2 4 4 6 6 7 12 9 6-11 78.5 79.6 76.0 + 65 6 15 5 6 5 18 27 18 39 32 19-11 79.1 79.6 76.0 + 65 6 16 48 39 48 48132 94111 67 73-11 78.4 79.6 76.0 + 65 6 17 56 48 39 15 22 15 6 67 34-11 78.7 79.6 76.0 + 65 6 18 32 15 4 6 2 4 18 9 11-11 80.8 79.6 76.0 + 65 6 19 6 4 4 2 2 0 0 0 2-11 77.4 79.6 76.0 + 65 6 20 2 0 2 2 2 3 4 0 2-11 78.5 79.6 76.0 + 65 6 21 2 2 0 2 2 2 0 2 2-11 78.4 79.6 75.9 + 65 6 22 3 4 3 5 4 3 3 5 4-11 80.7 79.6 75.9 + 65 6 23 6 2 2 3 3 4 3 0 3-11 82.8 79.6 75.9 + 65 6 24 3 2 2 2 3 5 4 2 3-11 80.7 79.6 75.9 + 65 6 25 2 4 3 4 18 27 18 9 11-11 81.9 79.6 75.9 + 65 6 26 15 12 7 7 3 4 15 18 10-11 81.4 79.5 75.9 + 65 6 27 15 7 6 6 6 4 3 3 6-11 80.3 79.3 75.9 + 65 6 28 2 5 3 4 4 3 3 3 3-11 79.3 79.2 75.9 + 65 6 29 7 9 18 12 9 12 9 12 11-11 79.0 79.0 75.9 + 65 6 30 6 9 15 12 15 7 15 32 14-11 79.6 78.8 75.9 + 65 7 1 18 7 15 15 9 6 18 15 13-11 78.6 78.6 76.0 + 65 7 2 6 6 7 5 6 4 4 5 5-11 78.2 78.4 76.0 + 65 7 3 9 5 5 3 3 3 7 7 5-11 78.8 78.3 76.0 + 65 7 4 4 3 4 2 2 3 4 5 3-11 78.5 78.1 75.9 + 65 7 5 4 3 3 4 2 2 3 4 3-11 78.0 78.0 75.9 + 65 7 6 6 39 22 27 27 18 6 6 19-11 81.2 78.0 75.9 + 65 7 7 9 7 6 6 4 5 9 15 8-11 84.3 77.9 75.9 + 65 7 8 27 27 6 7 12 32 27 32 21-11 83.8 77.9 75.9 + 65 7 9 22 22 4 7 7 9 12 15 12-11 84.1 77.9 75.9 + 65 7 10 15 39 18 15 15 5 3 4 14-11 83.0 77.9 75.9 + 65 7 11 2 4 2 0 3 3 2 3 2-11 82.6 77.9 76.0 + 65 7 12 2 2 0 2 3 7 18 7 5-11 80.8 78.0 76.0 + 65 7 13 5 5 4 7 6 6 6 3 5-11 78.8 77.9 76.0 + 65 7 14 6 4 3 2 2 5 4 6 4-11 77.2 77.9 76.0 + 65 7 15 6 6 9 15 15 5 5 15 10-11 77.0 77.8 76.0 + 65 7 16 7 3 4 2 3 3 3 3 4-11 74.5 77.8 76.1 + 65 7 17 2 0 2 3 3 2 5 0 2-11 74.3 77.7 76.2 + 65 7 18 0 0 2 2 3 22 15 5 6-11 74.3 77.6 76.2 + 65 7 19 9 9 27 15 12 12 12 7 13-11 74.9 77.5 76.3 + 65 7 20 4 2 4 6 4 6 7 7 5-11 75.4 77.5 76.4 + 65 7 21 9 5 4 0 2 2 3 0 3-11 75.0 77.4 76.5 + 65 7 22 3 3 4 3 3 3 5 12 5-11 73.9 77.4 76.6 + 65 7 23 9 12 9 5 22 15 15 18 13-11 73.2 77.4 76.6 + 65 7 24 6 7 9 12 9 5 7 4 7-11 72.4 77.3 76.7 + 65 7 25 12 6 9 4 4 4 4 2 6-11 72.3 77.3 76.7 + 65 7 26 2 5 4 4 3 3 3 4 4-11 71.7 77.3 76.8 + 65 7 27 5 6 7 6 7 9 12 9 8-11 72.3 77.3 76.8 + 65 7 28 22 18 39 9 9 7 9 9 15-11 72.9 77.3 76.8 + 65 7 29 6 15 18 7 15 12 15 5 12-11 73.4 77.3 76.8 + 65 7 30 6 5 4 2 2 3 3 9 4-11 73.4 77.3 76.8 + 65 7 31 3 3 3 3 2 3 4 3 3-11 73.0 77.3 76.8 + 65 8 1 2 4 2 2 2 5 12 9 5-11 74.2 77.3 76.8 + 65 8 2 4 7 9 12 18 15 12 9 11-11 75.2 77.3 76.8 + 65 8 3 7 7 6 5 7 9 6 3 6-11 79.6 77.2 76.8 + 65 8 4 6 4 5 3 7 12 5 12 7-11 80.7 77.1 76.8 + 65 8 5 3 2 2 4 5 5 6 6 4-11 78.5 77.0 76.8 + 65 8 6 4 3 4 2 4 3 3 3 3-11 81.1 77.0 76.8 + 65 8 7 3 3 6 7 6 7 6 9 6-11 81.8 76.9 76.9 + 65 8 8 9 7 4 3 6 5 7 4 6-11 79.5 76.8 76.9 + 65 8 9 3 5 2 5 9 9 9 12 7-11 79.8 76.8 76.9 + 65 8 10 3 5 4 6 6 4 3 4 4-11 78.2 76.7 76.9 + 65 8 11 9 15 4 3 3 4 5 9 7-11 78.8 76.6 77.0 + 65 8 12 7 7 7 4 3 6 5 7 6-11 77.9 76.6 77.0 + 65 8 13 0 2 2 2 2 3 5 5 3-11 76.7 76.5 77.0 + 65 8 14 7 7 7 7 12 5 6 9 8-11 75.6 76.4 77.0 + 65 8 15 4 4 5 4 3 3 12 12 6-11 74.4 76.4 77.1 + 65 8 16 12 3 6 3 2 4 15 12 7-11 75.6 76.3 77.1 + 65 8 17 9 15 9 18 15 4 12 6 11-11 74.2 76.2 77.2 + 65 8 18 6 0 0 4 7 18 94 39 21-11 75.0 76.2 77.2 + 65 8 19 22 48 56 7 27 18 18 22 27-11 76.1 76.1 77.2 + 65 8 20 9 7 18 15 15 12 12 48 17-11 75.5 76.2 77.2 + 65 8 21 27 22 15 15 9 4 3 2 12-11 75.3 76.3 77.3 + 65 8 22 2 3 4 7 6 5 5 9 5-11 74.6 76.4 77.3 + 65 8 23 7 0 2 2 3 18 15 27 9-11 74.6 76.6 77.4 + 65 8 24 27 15 27 12 4 3 3 18 14-11 74.3 76.8 77.4 + 65 8 25 27 15 15 6 6 12 12 9 13-11 73.8 77.1 77.4 + 65 8 26 18 6 7 6 6 5 2 6 7-11 73.5 77.3 77.5 + 65 8 27 5 3 6 5 6 4 7 9 6-11 76.0 77.4 77.5 + 65 8 28 7 4 4 2 3 2 3 2 3-11 74.7 77.5 77.5 + 65 8 29 4 7 5 2 3 3 15 5 6-11 75.7 77.6 77.5 + 65 8 30 22 7 7 5 4 5 9 5 8-11 76.4 77.7 77.5 + 65 8 31 12 15 18 18 9 5 5 7 11-11 76.3 77.8 77.6 + 65 9 1 4 9 9 2 3 5 7 6 6-11 76.8 77.8 77.6 + 65 9 2 7 6 4 6 6 4 4 6 5-11 77.3 77.8 77.6 + 65 9 3 2 2 2 2 2 4 4 15 4-11 77.9 77.9 77.6 + 65 9 4 15 12 12 22 27 12 18 9 16-11 78.0 77.9 77.6 + 65 9 5 15 9 12 6 9 5 9 5 9-11 80.0 77.9 77.6 + 65 9 6 7 6 5 5 9 22 12 9 9-11 78.3 77.9 77.6 + 65 9 7 4 7 4 5 7 15 4 12 7-11 78.9 77.9 77.6 + 65 9 8 6 5 3 3 4 3 3 2 4-11 79.8 77.9 77.6 + 65 9 9 3 4 2 2 2 3 2 4 3-11 77.2 77.9 77.6 + 65 9 10 2 3 2 4 2 3 3 4 3-11 76.7 77.8 77.6 + 65 9 11 2 2 3 4 3 5 5 6 4-11 76.7 77.8 77.7 + 65 9 12 27 18 3 4 4 9 9 12 11-11 76.3 77.8 77.7 + 65 9 13 22 6 3 3 5 3 3 4 6-11 75.9 77.8 77.7 + 65 9 14 5 0 0 3 3 2 4 5 3-11 76.1 77.7 77.7 + 65 9 15 6 6 9 5 6 32 22 32 15-11 75.7 77.7 77.8 + 65 9 16 56 22 56 32 48 18 32 18 35-11 74.5 77.7 77.9 + 65 9 17 18 18 27 15 15 22 18 12 18-11 74.5 77.6 78.0 + 65 9 18 15 18 5 5 15 18 22 32 16-11 73.7 77.6 78.1 + 65 9 19 9 18 27 12 18 22 22 7 17-11 73.4 77.5 78.2 + 65 9 20 4 3 7 6 5 5 5 7 5-11 73.4 77.5 78.3 + 65 9 21 9 5 4 3 2 4 7 7 5-11 73.1 77.5 78.4 + 65 9 22 4 6 7 4 2 4 6 5 5-11 71.7 77.5 78.5 + 65 9 23 6 5 6 7 15 22 9 7 10-11 72.3 77.5 78.5 + 65 9 24 7 22 15 9 7 2 6 9 10-11 76.6 77.5 78.6 + 65 9 25 22 22 9 4 15 12 4 9 12-11 76.2 77.6 78.6 + 65 9 26 6 18 9 7 9 6 5 15 9-11 77.4 77.6 78.6 + 65 9 27 22 5 0 6 6 22 39 56 20-11 78.7 77.7 78.7 + 65 9 28 67 39 32 18 15 9 27 12 27-11 80.8 77.8 78.8 + 65 9 29 3 4 9 6 5 12 5 9 7-11 87.6 77.8 78.8 + 65 9 30 4 9 4 2 2 2 0 0 3-11 89.3 77.9 78.9 + 65 10 1 0 0 0 2 2 2 2 5 2-11 92.2 77.9 79.0 + 65 10 2 18 22 15 7 9 15 15 27 16-11 93.3 78.0 79.1 + 65 10 3 2 4 4 4 2 3 3 3 3-11 96.1 78.1 79.2 + 65 10 4 2 3 0 0 0 2 0 0 1-11 97.5 78.1 79.3 + 65 10 5 12 6 7 4 18 6 3 4 8-11 91.6 78.1 79.4 + 65 10 6 2 3 2 0 2 2 3 0 2-11 85.1 78.1 79.5 + 65 10 7 0 0 3 12 7 9 7 9 6-11 83.5 78.1 79.6 + 65 10 8 39 15 15 5 12 5 12 18 15-11 82.6 78.1 79.7 + 65 10 9 9 5 5 4 3 0 3 2 4-11 83.0 78.0 79.7 + 65 10 10 2 4 4 2 2 2 5 3 3-11 80.1 78.0 79.8 + 65 10 11 3 2 2 4 3 4 4 4 3-11 75.7 77.9 79.9 + 65 10 12 7 9 5 6 5 6 7 2 6-11 74.5 77.8 79.9 + 65 10 13 7 12 7 4 6 5 15 4 8-11 75.4 77.7 80.0 + 65 10 14 7 12 4 9 5 4 0 4 6-11 74.3 77.6 80.0 + 65 10 15 3 3 2 3 0 0 2 0 2-11 73.3 77.5 80.1 + 65 10 16 0 0 3 2 2 2 3 3 2-11 71.8 77.4 80.1 + 65 10 17 0 0 0 3 5 2 2 5 2-11 72.0 77.3 80.2 + 65 10 18 15 6 7 5 6 2 3 0 6-11 71.6 77.2 80.2 + 65 10 19 0 2 5 7 6 4 4 2 4-11 71.2 77.1 80.3 + 65 10 20 2 0 3 4 0 0 4 5 2-11 72.0 77.1 80.3 + 65 10 21 2 2 4 3 0 0 0 0 1-11 72.6 77.0 80.4 + 65 10 22 7 4 7 18 5 27 32 9 14-11 75.4 77.0 80.4 + 65 10 23 9 18 22 18 27 18 22 15 19-11 77.9 76.9 80.5 + 65 10 24 22 18 9 6 15 22 15 9 15-11 75.5 76.9 80.6 + 65 10 25 15 18 7 12 12 12 6 9 11-11 77.0 76.9 80.7 + 65 10 26 27 6 5 4 0 3 3 7 7-11 77.3 76.8 80.8 + 65 10 27 5 4 5 6 7 7 5 12 6-11 77.0 76.8 80.8 + 65 10 28 27 12 5 27 27 5 9 6 15-11 76.2 76.8 80.9 + 65 10 29 7 5 3 0 2 4 4 12 5-11 75.6 76.8 81.0 + 65 10 30 7 12 15 9 4 6 9 4 8-11 75.1 76.8 81.0 + 65 10 31 9 5 6 2 3 9 9 7 6-11 76.9 76.8 81.1 + 65 11 1 3 2 4 3 3 6 7 7 4-11 77.6 76.8 81.1 + 65 11 2 9 3 3 4 7 7 3 6 5-11 78.2 76.8 81.2 + 65 11 3 4 0 2 2 0 0 0 2 1-11 79.8 76.8 81.3 + 65 11 4 15 7 6 18 7 6 3 0 8-11 78.4 76.8 81.3 + 65 11 5 4 6 3 9 9 18 18 39 13-11 76.7 76.7 81.4 + 65 11 6 32 27 12 12 7 5 15 27 17-11 79.2 76.7 81.4 + 65 11 7 22 6 9 18 3 6 5 6 9-11 83.7 76.7 81.4 + 65 11 8 4 2 3 3 3 5 7 6 4-11 78.9 76.6 81.5 + 65 11 9 15 4 4 4 4 2 2 2 5-11 80.4 76.5 81.5 + 65 11 10 0 0 0 2 0 0 2 0 1-11 82.4 76.2 81.6 + 65 11 11 2 0 0 2 2 6 7 5 3-11 82.5 76.0 81.6 + 65 11 12 0 0 0 2 6 4 4 7 3-11 79.1 75.7 81.7 + 65 11 13 6 9 3 4 4 3 15 32 10-11 75.7 75.4 81.7 + 65 11 14 0 2 5 2 2 5 5 2 3-11 74.4 75.0 81.8 + 65 11 15 5 6 0 0 0 2 5 0 2-11 74.8 74.8 81.8 + 65 11 16 0 3 2 0 0 2 0 2 1-11 72.4 74.6 81.8 + 65 11 17 3 7 6 4 4 2 2 4 4-11 72.6 74.6 81.8 + 65 11 18 6 15 2 5 6 4 9 4 6-11 73.3 74.6 81.9 + 65 11 19 4 9 22 12 12 9 9 6 10-11 71.6 74.6 81.9 + 65 11 20 22 15 22 18 18 15 15 9 17-11 70.9 74.6 82.0 + 65 11 21 18 15 15 6 7 7 5 5 10-11 70.5 74.6 82.1 + 65 11 22 6 7 5 3 3 4 3 4 4-11 70.0 74.6 82.1 + 65 11 23 3 2 0 0 0 0 3 4 2-11 69.5 74.7 82.2 + 65 11 24 4 4 6 2 4 3 6 5 4-11 69.3 74.7 82.3 + 65 11 25 3 2 4 2 2 6 12 7 5-11 68.8 74.7 82.4 + 65 11 26 3 4 4 5 3 6 3 3 4-11 69.9 74.8 82.5 + 65 11 27 5 3 4 2 2 9 7 4 5-11 72.1 74.9 82.6 + 65 11 28 4 0 0 0 3 3 5 2 2-11 74.9 74.9 82.6 + 65 11 29 2 5 2 2 2 5 4 5 3-11 71.9 75.0 82.7 + 65 11 30 2 2 3 7 22 18 18 27 12-11 73.0 75.1 82.8 + 65 12 1 12 4 9 9 32 27 32 27 19-11 73.3 75.1 82.9 + 65 12 2 15 18 6 9 5 7 9 5 9-11 72.9 75.2 83.0 + 65 12 3 5 0 0 2 2 3 2 6 3-11 72.7 75.2 83.0 + 65 12 4 7 5 6 7 15 18 18 9 11-11 72.3 75.3 83.1 + 65 12 5 5 5 2 3 2 2 0 3 3-11 73.2 75.5 83.1 + 65 12 6 4 2 3 2 2 3 4 4 3-11 74.0 75.8 83.2 + 65 12 7 5 4 9 4 3 0 0 0 3-11 73.0 76.1 83.3 + 65 12 8 2 2 3 0 2 7 7 6 4-11 74.4 76.3 83.3 + 65 12 9 7 4 4 7 18 2 4 4 6-11 72.7 76.7 83.4 + 65 12 10 6 2 2 3 6 12 15 32 10-11 73.0 77.0 83.4 + 65 12 11 12 18 9 5 4 12 9 15 11-11 73.2 77.3 83.4 + 65 12 12 15 12 5 6 12 7 15 4 10-11 73.5 77.5 83.5 + 65 12 13 9 12 9 4 7 6 3 2 7-11 71.7 77.7 83.5 + 65 12 14 0 4 0 2 3 3 2 5 2-11 72.4 77.8 83.6 + 65 12 15 3 2 0 2 2 0 0 0 1-11 74.4 78.0 83.6 + 65 12 16 3 0 0 2 2 0 0 0 1-11 75.1 78.1 83.7 + 65 12 17 0 0 0 3 2 4 0 3 2-11 75.9 78.1 83.7 + 65 12 18 0 3 12 9 12 22 22 12 12-11 75.9 78.1 83.8 + 65 12 19 32 3 6 2 0 3 6 6 7-11 74.3 78.1 83.8 + 65 12 20 12 2 2 0 2 4 7 7 5-11 72.1 78.0 83.9 + 65 12 21 2 4 3 2 2 6 0 0 2-11 71.7 78.0 83.9 + 65 12 22 3 6 5 9 9 7 3 7 6-11 70.0 77.9 84.0 + 65 12 23 12 3 2 2 0 0 2 0 3-11 70.3 77.8 84.0 + 65 12 24 5 4 2 3 5 4 12 39 9-11 68.8 77.9 84.1 + 65 12 25 22 32 12 6 6 9 3 7 12-11 69.7 77.9 84.1 + 65 12 26 6 6 22 39 27 18 9 22 19-11 74.4 78.0 84.2 + 65 12 27 6 9 7 15 9 6 12 15 10-11 80.9 78.1 84.3 + 65 12 28 15 15 18 9 15 27 15 15 16-11 81.0 78.2 84.3 + 65 12 29 5 6 4 7 6 18 7 9 8-11 81.9 78.3 84.4 + 65 12 30 6 12 3 6 9 6 4 0 6-11 79.2 78.4 84.4 + 65 12 31 0 5 4 5 3 3 4 2 3-11 78.1 78.6 84.5 + 66 1 1 2 5 2 0 2 0 3 3 2-11 79.3 78.7 84.6 + 66 1 2 22 9 5 5 5 6 7 9 9-11 76.3 78.9 84.6 + 66 1 3 15 5 2 2 3 6 6 6 6-11 75.9 79.1 84.7 + 66 1 4 2 6 4 6 3 15 39 15 11-11 77.8 79.2 84.8 + 66 1 5 9 4 3 2 2 3 2 5 4-11 77.4 79.4 84.8 + 66 1 6 4 0 0 0 2 2 2 6 2-11 77.1 79.6 84.9 + 66 1 7 5 6 4 4 2 9 12 12 7-11 78.2 79.7 85.0 + 66 1 8 18 7 9 6 6 6 4 5 8-11 77.9 79.8 85.1 + 66 1 9 15 0 2 0 3 9 7 27 8-11 77.4 79.9 85.1 + 66 1 10 6 12 9 6 4 6 7 5 7-11 77.2 80.0 85.2 + 66 1 11 6 2 0 2 0 4 2 3 2-11 78.2 80.2 85.3 + 66 1 12 4 4 2 3 0 2 2 0 2-11 81.2 80.3 85.3 + 66 1 13 4 0 0 2 0 3 4 2 2-11 84.3 80.5 85.4 + 66 1 14 3 0 4 3 3 5 3 6 3-11 90.1 80.6 85.4 + 66 1 15 7 7 4 3 4 6 3 3 5-11 98.5 80.7 85.5 + 66 1 16 0 2 0 0 0 0 0 2 1-11102.6 80.8 85.6 + 66 1 17 0 6 3 0 3 3 2 0 2-11 98.4 80.9 85.7 + 66 1 18 2 2 5 4 5 9 9 2 5-11101.4 81.0 85.7 + 66 1 19 0 3 5 7 4 5 2 0 3-11105.1 81.2 85.8 + 66 1 20 9 9 12 9 22 22 27 12 15-11 99.0 81.2 85.9 + 66 1 21 22 15 18 18 27 18 48 18 23-11 95.7 81.3 86.0 + 66 1 22 15 18 39 22 56 22 22 22 27-11 91.8 81.3 86.1 + 66 1 23 27 7 12 15 18 12 12 7 14-11 90.6 81.4 86.2 + 66 1 24 9 15 12 15 9 27 9 12 14-11 88.9 81.4 86.4 + 66 1 25 12 9 12 6 12 22 7 5 11-11 85.4 81.4 86.5 + 66 1 26 3 6 15 12 18 22 15 22 14-11 82.7 81.4 86.7 + 66 1 27 9 9 3 0 0 0 0 0 3-11 79.9 81.4 86.8 + 66 1 28 0 0 3 5 4 5 9 27 7-11 78.1 81.5 87.0 + 66 1 29 6 7 6 7 5 7 4 2 6-11 78.3 81.5 87.1 + 66 1 30 0 0 2 2 6 6 4 0 3-11 76.3 81.6 87.3 + 66 1 31 0 0 3 4 2 2 4 4 2-11 75.4 81.7 87.4 + 66 2 1 5 4 4 3 4 0 2 2 3-11 77.6 81.8 87.5 + 66 2 2 0 2 4 4 4 4 4 4 3-11 76.9 81.9 87.6 + 66 2 3 4 2 7 6 22 7 22 18 11-11 77.5 82.2 87.7 + 66 2 4 12 9 12 12 9 7 18 22 13-11 79.0 82.4 87.8 + 66 2 5 22 18 12 22 22 12 22 18 19-11 80.6 82.8 87.9 + 66 2 6 12 18 12 4 7 2 6 6 8-11 82.1 83.2 87.9 + 66 2 7 6 6 4 4 2 3 5 6 5-11 82.8 83.6 88.0 + 66 2 8 2 2 2 2 12 6 5 3 4-11 82.3 83.9 88.0 + 66 2 9 4 4 3 2 3 2 3 5 3-11 82.9 84.5 88.1 + 66 2 10 5 6 6 6 6 6 7 15 7-11 83.8 84.8 88.1 + 66 2 11 12 9 9 7 18 12 12 15 12-11 83.6 85.0 88.2 + 66 2 12 15 9 5 5 2 0 0 2 5-11 83.2 85.2 88.2 + 66 2 13 12 9 5 4 4 7 4 2 6-11 83.9 85.4 88.3 + 66 2 14 0 2 2 4 3 5 2 0 2-11 83.9 85.5 88.3 + 66 2 15 2 0 0 4 6 2 9 7 4-11 83.3 85.5 88.4 + 66 2 16 7 7 7 3 3 2 3 5 5-11 82.7 85.7 88.4 + 66 2 17 2 2 3 3 7 4 7 6 4-11 82.1 85.9 88.5 + 66 2 18 5 6 5 4 0 2 3 2 3-11 82.2 86.2 88.5 + 66 2 19 5 5 9 6 12 32 32 15 15-11 81.1 86.6 88.6 + 66 2 20 22 27 22 22 18 12 7 4 17-11 82.8 86.9 88.7 + 66 2 21 4 4 7 6 4 3 2 4 4-11 85.7 87.3 88.8 + 66 2 22 4 0 4 7 22 27 15 32 14-11 86.0 87.5 88.9 + 66 2 23 12 48 48 39 12 18 32 18 28-11 82.7 87.8 89.0 + 66 2 24 15 27 27 18 15 9 32 12 19-11 81.9 87.9 89.2 + 66 2 25 22 12 7 4 9 15 6 7 10-11 79.3 88.0 89.3 + 66 2 26 3 0 3 3 4 2 4 3 3-11 83.1 88.0 89.5 + 66 2 27 4 6 4 6 3 2 2 2 4-11 83.2 88.1 89.6 + 66 2 28 2 0 2 3 0 3 2 0 2-11 84.1 88.1 89.8 + 66 3 1 2 6 2 5 3 2 2 2 3-11 79.7 87.9 89.9 + 66 3 2 3 0 0 3 2 5 4 4 3-11 76.7 87.9 90.0 + 66 3 3 7 4 4 22 12 5 7 15 10-11 75.8 87.9 90.2 + 66 3 4 18 7 4 4 4 5 5 22 9-11 75.5 87.9 90.2 + 66 3 5 6 9 4 4 2 2 5 5 5-11 74.8 87.9 90.3 + 66 3 6 6 2 2 7 5 3 4 4 4-11 75.5 88.0 90.4 + 66 3 7 6 3 0 3 4 2 2 0 3-11 76.2 88.1 90.4 + 66 3 8 2 4 7 5 3 2 4 0 3-11 76.4 88.2 90.5 + 66 3 9 0 0 0 5 3 3 6 15 4-11 78.5 88.4 90.5 + 66 3 10 27 9 5 7 12 6 4 7 10-11 78.6 88.5 90.6 + 66 3 11 12 9 2 0 2 2 6 15 6-11 78.0 88.7 90.6 + 66 3 12 12 2 5 7 7 5 4 3 6-11 78.3 88.9 90.7 + 66 3 13 6 3 5 2 5 9 18 67 14-11 80.0 89.1 90.7 + 66 3 14 80154111 67 48 39 9 6 64-11 81.4 89.4 90.8 + 66 3 15 7 12 4 6 5 9 6 9 7-11 87.1 89.7 90.9 + 66 3 16 15 12 4 5 5 3 4 6 7-11 92.9 90.0 90.9 + 66 3 17 5 3 4 3 5 5 9 18 7-11105.1 90.3 91.0 + 66 3 18 9 6 0 3 2 2 3 3 4-11109.6 90.5 91.2 + 66 3 19 7 18 9 22 18 12 39 39 21-11114.6 90.7 91.3 + 66 3 20 27 9 6 7 7 9 7 6 10-11111.0 90.8 91.5 + 66 3 21 12 15 6 3 6 4 6 15 8-11120.3 91.0 91.7 + 66 3 22 15 6 6 3 3 6 5 12 7-11105.1 91.1 91.9 + 66 3 23 18 12 48111111 80132 22 67-11 96.2 91.2 92.1 + 66 3 24 4 3 0 0 2 2 0 9 3-11 92.9 91.3 92.3 + 66 3 25 15 6 5 12 18 22 18 18 14-11 91.1 91.4 92.4 + 66 3 26 7 9 7 18 67 27 18 9 20-11 84.7 91.5 92.5 + 66 3 27 18 12 15 7 15 12 12 12 13-11 83.1 91.5 92.7 + 66 3 28 15 6 22 32 39 48132 39 42-11 87.6 91.6 92.7 + 66 3 29 27 39 12 6 5 3 3 5 13-11 96.1 91.7 92.8 + 66 3 30 6 12 3 5 9 5 4 5 6-11 99.0 91.7 92.9 + 66 3 31 7 2 4 4 3 2 2 2 3-11110.4 91.8 92.9 + 66 4 1 0 3 3 6 27 27 22 56 18-11106.8 91.9 92.9 + 66 4 2 27 39 15 6 2 2 6 4 13-11106.3 92.0 92.9 + 66 4 3 7 12 4 3 5 6 6 12 7-11102.1 92.1 93.0 + 66 4 4 12 12 7 4 5 6 5 9 8-11102.6 92.2 93.0 + 66 4 5 5 5 9 5 2 3 7 9 6-11102.0 92.4 93.0 + 66 4 6 9 9 7 6 7 7 6 7 7-11104.2 92.7 93.0 + 66 4 7 39 18 5 4 3 3 6 5 10-11102.8 92.9 93.1 + 66 4 8 15 18 7 7 7 5 6 15 10-11107.3 93.1 93.1 + 66 4 9 7 7 3 5 5 6 4 3 5-11100.3 93.4 93.2 + 66 4 10 4 3 5 4 4 6 12 4 5-11 94.8 93.8 93.2 + 66 4 11 0 2 2 2 4 2 2 2 2-11 93.9 94.3 93.3 + 66 4 12 3 2 5 6 2 3 2 3 3-11 94.8 94.9 93.4 + 66 4 13 6 15 7 18 27 15 18 15 15-11 93.1 95.3 93.5 + 66 4 14 9 4 6 12 12 7 5 12 8-11 91.0 95.9 93.6 + 66 4 15 15 5 7 3 2 2 2 0 5-11 96.3 96.4 93.7 + 66 4 16 2 2 2 2 4 4 3 5 3-11 93.2 96.8 93.9 + 66 4 17 2 4 6 5 4 3 3 6 4-11 95.2 97.2 94.0 + 66 4 18 6 4 2 2 3 3 0 2 3-11 92.9 97.6 94.1 + 66 4 19 2 0 3 2 3 3 0 0 2-11 89.0 97.9 94.3 + 66 4 20 0 0 7 9 12 6 4 4 5-11 93.5 98.2 94.4 + 66 4 21 9 5 4 4 3 3 6 7 5-11 91.7 98.6 94.5 + 66 4 22 22 12 15 7 22 18 6 4 13-11 93.4 98.9 94.7 + 66 4 23 7 27 22 4 6 9 3 5 10-11 98.8 99.2 94.8 + 66 4 24 9 6 5 6 4 4 12 5 6-11103.7 99.5 94.9 + 66 4 25 4 0 2 3 2 3 4 3 3-11103.8 99.6 95.0 + 66 4 26 2 4 3 2 3 3 4 4 3-11101.3 99.7 95.0 + 66 4 27 2 0 0 2 0 0 3 3 1-11 96.0 99.7 95.1 + 66 4 28 4 6 5 6 2 4 5 3 4-11 94.9 99.6 95.1 + 66 4 29 5 5 6 3 6 4 15 5 6-11 94.5 99.4 95.2 + 66 4 30 9 9 7 5 12 15 12 12 10-11 93.3 99.2 95.2 + 66 5 1 7 18 12 5 4 7 6 6 8-11 91.7 98.9 95.3 + 66 5 2 9 9 15 9 9 12 18 12 12-11 94.0 98.8 95.3 + 66 5 3 4 6 4 2 3 4 5 12 5-11 94.0 98.8 95.4 + 66 5 4 18 15 12 15 7 5 9 15 12-11 92.5 98.9 95.4 + 66 5 5 6 5 5 4 5 4 9 6 6-11 88.6 98.9 95.5 + 66 5 6 7 15 15 6 2 3 4 5 7-11 87.5 99.0 95.5 + 66 5 7 4 2 2 5 2 3 3 9 4-11 89.9 99.2 95.6 + 66 5 8 3 2 0 5 9 9 6 6 5-11 87.8 99.4 95.6 + 66 5 9 4 9 12 4 4 3 2 2 5-11 87.5 99.4 95.7 + 66 5 10 0 0 2 6 2 3 3 2 2-11 86.6 99.4 95.8 + 66 5 11 2 2 3 5 18 5 15 27 10-11 88.3 99.2 95.9 + 66 5 12 7 6 6 5 5 5 9 7 6-11 92.6 99.0 96.0 + 66 5 13 12 6 9 9 4 12 3 2 7-11 92.9 98.9 96.2 + 66 5 14 4 2 4 0 2 2 3 2 2-11 97.2 98.9 96.3 + 66 5 15 3 0 2 2 3 2 3 2 2-11 99.2 98.9 96.4 + 66 5 16 3 3 2 2 6 6 9 6 5-11100.1 98.9 96.6 + 66 5 17 12 9 5 6 4 5 5 7 7-11 98.9 98.9 96.7 + 66 5 18 12 6 4 4 4 3 3 4 5-11 98.7 98.9 96.8 + 66 5 19 5 3 2 2 2 3 5 5 3-11107.1 98.8 96.9 + 66 5 20 4 3 5 6 6 7 15 15 8-11115.5 98.8 97.0 + 66 5 21 7 3 4 4 4 4 3 4 4-11123.6 98.9 97.2 + 66 5 22 2 3 3 3 6 7 4 5 4-11121.0 99.0 97.3 + 66 5 23 3 2 2 2 3 3 3 2 3-11113.9 99.0 97.4 + 66 5 24 0 0 3 2 2 2 4 4 2-11117.7 99.1 97.5 + 66 5 25 3 3 3 3 4 4 3 15 5-11115.1 99.2 97.6 + 66 5 26 6 7 27132132 80132111 78-11112.3 99.4 97.8 + 66 5 27 22 4 5 2 2 2 2 4 5-11108.5 99.6 97.9 + 66 5 28 3 3 6 2 5 5 6 12 5-11107.7 99.8 98.0 + 66 5 29 2 3 3 3 3 4 6 4 4-11106.8100.0 98.1 + 66 5 30 3 0 4 6 6 5 12 15 6-11101.6100.3 98.2 + 66 5 31 18 39 48 32 27 67 94 56 48-11105.6100.5 98.2 + 66 6 1 56 12 15 4 2 0 4 3 12-11104.8100.7 98.3 + 66 6 2 5 3 5 18 18 18 7 6 10-11103.9100.8 98.3 + 66 6 3 5 4 4 4 4 18 12 5 7-11102.6100.8 98.4 + 66 6 4 6 7 2 2 2 6 3 7 4-11102.0100.8 98.5 + 66 6 5 9 6 5 6 6 2 4 3 5-11101.7100.7 98.6 + 66 6 6 6 5 3 3 6 4 2 4 4-11101.9100.7 98.7 + 66 6 7 5 15 4 15 9 9 7 6 9-11 96.9100.8 98.8 + 66 6 8 3 4 5 7 5 4 2 0 4-11 99.5100.9 98.9 + 66 6 9 0 0 0 5 4 4 3 5 3-11 98.9101.0 99.0 + 66 6 10 3 3 3 2 2 2 2 2 2-11 96.8101.1 99.2 + 66 6 11 2 2 3 3 2 3 7 3 3-11 96.1101.2 99.5 + 66 6 12 4 9 6 5 15 5 4 9 7-11 95.9101.4 99.7 + 66 6 13 5 4 7 4 4 5 3 5 5-11 96.1101.6 99.9 + 66 6 14 5 3 6 5 3 3 5 5 4-11 96.9102.0100.2 + 66 6 15 3 4 3 5 4 3 12 15 6-11 94.7102.4100.4 + 66 6 16 15 6 4 4 4 5 5 6 6-11 97.9102.9100.6 + 66 6 17 4 5 0 2 3 3 5 7 4-11 99.5103.4100.7 + 66 6 18 3 5 2 2 2 2 4 3 3-11 98.2103.8100.9 + 66 6 19 2 2 2 3 12 6 12 5 6-11 96.9104.4101.0 + 66 6 20 4 9 7 5 6 7 12 3 7-11 94.3104.9101.1 + 66 6 21 7 6 4 4 5 4 3 3 5-11 93.5105.3101.2 + 66 6 22 3 3 3 3 3 2 2 4 3-11 96.1105.7101.3 + 66 6 23 7 3 4 22 18 18 27 27 16-11 99.2106.1101.4 + 66 6 24 3 3 5 7 9 15 56 32 16-11103.5106.3101.5 + 66 6 25 39 18 15 12 7 15 12 12 16-11104.8106.5101.6 + 66 6 26 3 4 2 6 9 12 6 6 6-11105.6106.7101.7 + 66 6 27 2 2 2 3 5 4 5 5 4-11100.8106.7101.8 + 66 6 28 4 3 2 2 2 9 9 7 5-11101.4106.8101.9 + 66 6 29 6 5 3 2 6 4 9 9 6-11 99.8106.7102.0 + 66 6 30 7 5 6 5 4 4 5 9 6-11100.7106.4102.0 + 66 7 1 7 6 5 6 5 5 5 4 5-11100.1106.1102.1 + 66 7 2 5 2 5 2 2 4 5 9 4-11 98.2105.7102.2 + 66 7 3 6 7 3 4 5 3 4 4 5-11 99.3105.5102.4 + 66 7 4 4 3 3 7 15 32 22 22 14-11104.8105.2102.6 + 66 7 5 9 9 5 4 3 4 7 2 5-11105.0104.9102.8 + 66 7 6 5 5 5 6 5 3 5 4 5-11109.7104.6103.0 + 66 7 7 6 3 2 3 2 2 4 6 4-11112.6104.5103.2 + 66 7 8 7 12 32 22 9 15 15 67 22-11114.4104.3103.5 + 66 7 9 39 80 80 22 15 22 15 12 36-11107.8104.2103.7 + 66 7 10 22 32 48 48 22 7 9 9 25-11108.1104.2103.9 + 66 7 11 12 12 9 4 3 5 5 18 9-11109.0104.2104.0 + 66 7 12 15 32 27 18 15 4 6 4 15-11102.7104.1104.2 + 66 7 13 4 4 3 2 3 3 3 3 3-11100.4104.2104.4 + 66 7 14 3 3 5 5 3 4 6 2 4-11 99.8104.3104.6 + 66 7 15 2 2 2 3 4 7 9 32 8-11101.1104.6104.7 + 66 7 16 5 5 5 3 3 6 7 12 6-11102.8104.9104.8 + 66 7 17 18 18 15 12 4 6 7 7 11-11101.2105.2104.9 + 66 7 18 2 5 5 6 4 5 5 2 4-11101.3105.7105.0 + 66 7 19 2 5 7 4 4 7 5 3 5-11101.5106.1105.0 + 66 7 20 5 5 12 5 2 3 4 9 6-11101.8106.4105.0 + 66 7 21 22 18 12 9 9 12 22 9 14-11103.7106.8105.1 + 66 7 22 27 6 3 3 4 7 9 6 8-11106.5107.1105.2 + 66 7 23 5 6 5 7 6 9 5 4 6-11114.9107.4105.3 + 66 7 24 15 7 3 5 6 4 2 4 6-11120.6107.5105.4 + 66 7 25 4 3 3 3 4 3 4 4 4-11126.0107.6105.6 + 66 7 26 6 5 5 5 5 6 7 9 6-11127.6107.7105.7 + 66 7 27 7 4 15 7 27 22 3 4 11-11123.8107.7105.9 + 66 7 28 12 18 12 7 9 7 5 6 10-11124.2107.7106.1 + 66 7 29 15 5 5 5 2 3 5 3 5-11132.9107.6106.3 + 66 7 30 3 9 12 4 3 3 5 5 6-11128.0107.6106.5 + 66 7 31 4 3 6 5 4 7 5 6 5-11124.6107.7106.7 + 66 8 1 15 7 4 3 5 4 4 6 6-11125.9107.7106.9 + 66 8 2 3 2 0 0 0 0 0 2 1-11119.6107.7107.2 + 66 8 3 4 7 6 9 12 9 4 4 7-11118.2107.7107.4 + 66 8 4 3 3 6 12 9 12 5 15 8-11116.0107.7107.6 + 66 8 5 5 5 22 9 18 12 4 7 10-11110.5107.7107.7 + 66 8 6 9 6 6 6 4 6 6 6 6-11106.0107.8107.9 + 66 8 7 9 7 3 4 3 2 3 6 5-11101.5108.1108.1 + 66 8 8 3 2 5 5 4 3 7 12 5-11 97.7108.4108.2 + 66 8 9 9 5 7 4 5 9 22 9 9-11 96.4108.9108.5 + 66 8 10 22 9 5 15 27 9 5 7 12-11 94.3109.5108.6 + 66 8 11 4 12 18 9 18 18 12 22 14-11 92.5110.1108.8 + 66 8 12 22 18 18 18 12 5 12 7 14-11 92.8110.6109.0 + 66 8 13 9 12 4 4 3 4 4 5 6-11 93.2111.0109.1 + 66 8 14 15 15 15 9 4 4 7 2 9-11 92.8111.2109.2 + 66 8 15 3 5 6 6 5 3 4 6 5-11 93.7111.5109.4 + 66 8 16 7 3 6 3 3 2 2 3 4-11 95.1111.6109.5 + 66 8 17 3 4 0 0 3 4 5 0 2-11 96.8111.6109.6 + 66 8 18 3 2 5 15 18 18 18 4 10-11 97.5111.4109.7 + 66 8 19 15 22 7 27 39 15 22 12 20-11100.0111.3109.8 + 66 8 20 12 6 12 4 3 5 4 7 7-11101.6111.2110.0 + 66 8 21 9 5 4 3 3 5 5 6 5-11102.7111.0110.1 + 66 8 22 4 3 0 0 3 7 5 9 4-11105.5111.0110.2 + 66 8 23 18 12 12 27 27 22 32 27 22-11114.7111.0110.3 + 66 8 24 27 6 9 22 22 9 15 18 16-11122.0111.1110.5 + 66 8 25 12 6 6 7 7 6 12 12 9-11126.3111.1110.7 + 66 8 26 7 12 6 4 3 2 5 6 6-11130.2111.0110.9 + 66 8 27 6 7 5 7 5 5 3 3 5-11133.4111.0111.1 + 66 8 28 3 0 4 3 4 6 6 7 4-11132.6111.1111.4 + 66 8 29 3 2 2 4 27 7 12 48 13-11129.8111.0111.6 + 66 8 30111 48 15 48 56 67154154 82-11126.1111.1111.9 + 66 8 31 56 12 15 7 32 22 22 15 23-11120.9111.1112.2 + 66 9 1 6 12 12 48 18 15 39 27 22-11116.6111.1112.5 + 66 9 2 15 9 6 6 12 27 32 15 15-11106.3111.1112.8 + 66 9 3 15 18 22 67 80 80154300 92-11103.2111.2113.2 + 66 9 4300236154 80 67 27 18 15112-11101.9111.1113.5 + 66 9 5 7 5 4 15 32 22 7 9 13-11100.5111.0113.8 + 66 9 6 18 39 32 39 27 27 6 7 24-11 97.9111.0114.0 + 66 9 7 9 22 12 7 18 18 18 12 15-11 95.8110.9114.2 + 66 9 8 27 56 39 67 48 39 22 39 42-11 96.2110.7114.4 + 66 9 9 18 18 18 15 18 27 9 32 19-11 95.3110.6114.6 + 66 9 10 27 32 12 15 15 18 18 18 19-11 93.9110.6114.8 + 66 9 11 18 9 9 6 4 4 2 4 7-11 96.6110.5115.0 + 66 9 12 2 2 5 12 5 7 3 5 5-11100.8110.5115.1 + 66 9 13 6 6 3 3 5 4 3 3 4-11102.4110.4115.2 + 66 9 14 3 2 4 4 4 18 15 32 10-11107.4110.3115.3 + 66 9 15 39 27 15 15 7 7 32 22 21-11112.0110.2115.5 + 66 9 16 22 6 3 9 7 7 12 12 10-11124.6110.1115.5 + 66 9 17 18 18 12 6 5 6 3 3 9-11129.1110.0115.6 + 66 9 18 2 0 3 5 4 3 4 5 3-11142.6109.9115.7 + 66 9 19 18 27 12 4 12 15 18 27 17-11146.6110.0115.7 + 66 9 20 22 18 22 18 32 22 18 18 21-11146.0110.0115.8 + 66 9 21 18 18 5 7 18 3 5 4 10-11137.2110.0115.9 + 66 9 22 7 6 4 4 3 5 15 7 6-11131.5110.1116.1 + 66 9 23 5 7 15 18 18 27 32 12 17-11127.5110.1116.3 + 66 9 24 15 7 9 12 15 15 15 5 12-11126.0110.1116.5 + 66 9 25 27 27 22 4 2 4 5 12 13-11118.8110.1116.7 + 66 9 26 32 9 12 18 22 32 32 18 22-11109.4110.1116.9 + 66 9 27 22 27 12 27 18 15 9 18 19-11102.9110.2117.2 + 66 9 28 22 48 7 12 15 22 3 27 20-11 97.9110.4117.4 + 66 9 29 18 27 22 7 6 27 22 6 17-11 98.6110.6117.6 + 66 9 30 6 32 22 9 15 15 4 27 16-11 95.7110.8117.8 + 66 10 1 15 7 7 4 4 2 3 3 6-11101.4111.0117.9 + 66 10 2 0 3 5 3 3 2 2 3 3-11102.0111.3118.0 + 66 10 3 0 4 6 3 3 2 3 7 4-11103.2111.4118.1 + 66 10 4 7 15 7 9 15 22 56 80 26-11100.6111.5118.2 + 66 10 5 48 48 32 56 15 39 39 12 36-11100.0111.5118.2 + 66 10 6 12 56 32 18 27 9 9 15 22-11101.9111.4118.3 + 66 10 7 9 6 3 2 4 15 6 18 8-11103.1111.2118.3 + 66 10 8 9 5 9 6 4 2 3 4 5-11 99.4111.0118.4 + 66 10 9 9 12 7 7 9 18 4 7 9-11103.5110.8118.5 + 66 10 10 2 0 3 5 2 2 7 2 3-11106.5110.6118.6 + 66 10 11 0 0 2 2 2 0 4 2 2-11109.8110.5118.7 + 66 10 12 7 5 9 9 6 5 18 18 10-11114.8110.4118.8 + 66 10 13 9 3 6 9 6 7 6 15 8-11122.8110.5118.9 + 66 10 14 5 7 6 3 4 2 3 3 4-11120.3110.7119.0 + 66 10 15 4 7 4 15 7 22 32 22 14-11120.6110.8119.1 + 66 10 16 18 27 80 32 56 22 15 12 33-11120.3110.9119.2 + 66 10 17 12 7 3 3 3 9 5 5 6-11120.5111.1119.2 + 66 10 18 15 2 2 4 3 3 3 4 5-11118.5111.2119.3 + 66 10 19 4 4 5 4 2 3 6 5 4-11115.6111.3119.4 + 66 10 20 5 4 3 4 3 5 4 3 4-11124.1111.4119.5 + 66 10 21 0 0 0 4 4 2 2 0 2-11120.9111.4119.7 + 66 10 22 0 0 0 2 2 0 2 6 2-11119.8111.3119.8 + 66 10 23 6 0 0 0 2 3 4 5 3-11111.1111.3119.8 + 66 10 24 4 5 6 9 12 22 15 15 11-11106.1111.2119.9 + 66 10 25 27 15 27 27 22 7 27 27 22-11100.8111.2120.0 + 66 10 26 22 32 6 9 12 22 9 7 15-11 97.7111.2120.1 + 66 10 27 9 4 3 4 4 9 6 12 6-11 92.0111.1120.1 + 66 10 28 15 3 4 3 2 2 6 5 5-11 94.1110.9120.3 + 66 10 29 4 5 6 2 3 3 4 2 4-11 99.7110.7120.4 + 66 10 30 7 6 4 5 6 22 15 39 13-11 95.7110.7120.5 + 66 10 31 39 39 27 32 39 32 39 27 34-11 97.1110.8120.6 + 66 11 1 22 27 39 39 39 48 15 18 31-11 94.6111.1120.7 + 66 11 2 22 7 7 9 15 18 18 12 14-11 96.7111.5120.8 + 66 11 3 12 15 22 22 15 27 12 12 17-11 93.1111.8120.9 + 66 11 4 12 15 9 3 3 3 18 6 9-11 91.7112.1121.0 + 66 11 5 7 9 12 7 7 15 9 4 9-11 97.9112.4121.1 + 66 11 6 4 12 7 7 6 7 7 4 7-11104.7112.7121.2 + 66 11 7 6 5 6 4 2 2 5 18 6-11113.4113.0121.3 + 66 11 8 18 12 5 4 4 5 7 0 7-11116.9113.2121.3 + 66 11 9 4 4 3 3 2 2 2 3 3-11117.2113.4121.4 + 66 11 10 2 7 12 15 12 7 7 7 9-11121.9113.5121.5 + 66 11 11 7 12 6 18 3 3 2 0 6-11126.1113.6121.5 + 66 11 12 7 12 5 7 5 6 18 3 8-11126.2113.6121.5 + 66 11 13 6 5 5 18 6 3 7 9 7-11126.4113.7121.6 + 66 11 14 4 0 3 3 0 0 0 4 2-11124.0113.8121.6 + 66 11 15 6 2 4 5 3 4 4 5 4-11122.6114.0121.6 + 66 11 16 6 5 7 6 3 3 4 2 5-11121.2114.1121.7 + 66 11 17 15 15 12 4 3 18 18 5 11-11113.2114.2121.8 + 66 11 18 2 0 0 6 12 27 18 27 12-11113.4114.3121.8 + 66 11 19 15 18 18 7 12 6 7 12 12-11111.0114.3121.9 + 66 11 20 18 6 5 4 5 5 9 12 8-11110.9114.4122.0 + 66 11 21 5 9 12 5 3 2 4 12 7-11110.7114.6122.2 + 66 11 22 5 5 2 4 2 2 0 2 3-11116.5114.7122.4 + 66 11 23 5 2 0 2 2 3 2 3 2-11114.7114.9122.6 + 66 11 24 4 15 9 5 6 2 4 3 6-11113.8115.3122.9 + 66 11 25 4 3 2 3 6 4 4 5 4-11110.7115.8123.2 + 66 11 26 22 18 9 9 9 9 4 2 10-11107.3116.4123.5 + 66 11 27 2 9 5 4 4 9 12 4 6-11111.1116.9123.7 + 66 11 28 9 6 6 15 15 32 48 18 19-11104.1117.4124.0 + 66 11 29 48 15 18 9 7 15 6 4 15-11 98.0117.7124.2 + 66 11 30 6 15 56 27 32 39 18 27 28-11 94.6118.0124.4 + 66 12 1 22 32 22 9 12 6 22 9 17-11 92.2118.3124.5 + 66 12 2 9 9 5 4 5 5 4 9 6-11 95.1118.5124.7 + 66 12 3 5 3 3 5 2 2 3 5 4-11100.0118.8124.8 + 66 12 4 9 9 39 22 18 12 18 22 19-11104.8119.2125.0 + 66 12 5 22 27 22 12 5 18 39 12 20-11110.9119.7125.1 + 66 12 6 15 9 9 5 4 4 5 5 7-11115.6120.0125.1 + 66 12 7 3 5 3 3 2 2 5 5 4-11117.7120.4125.2 + 66 12 8 3 3 3 3 0 2 2 12 4-11123.7120.7125.2 + 66 12 9 6 2 3 2 2 3 4 0 3-11146.2120.9125.2 + 66 12 10 0 3 7 5 0 3 6 4 4-11157.3121.1125.2 + 66 12 11 5 4 2 0 2 3 4 2 3-11162.8121.5125.2 + 66 12 12 2 2 2 2 0 2 2 3 2-11157.6122.0125.2 + 66 12 13 12 22 32 15 22 39 6 9 20-11155.5122.6125.3 + 66 12 14 7 22 15 12 80132 56 56 48-11149.5123.3125.3 + 66 12 15 48 18 7 15 12 27 12 7 18-11144.9123.9125.3 + 66 12 16 9 12 6 6 9 9 7 7 8-11135.1124.5125.3 + 66 12 17 9 7 4 5 7 6 5 27 9-11124.9125.1125.4 + 66 12 18 5 6 9 6 3 4 4 4 5-11111.2125.7125.4 + 66 12 19 5 3 4 2 0 3 5 5 3-11112.3126.1125.5 + 66 12 20 2 0 2 2 7 9 18 15 7-11107.6126.6125.6 + 66 12 21 12 22 9 7 4 18 15 9 12-11106.5127.1125.6 + 66 12 22 7 18 9 9 12 15 18 22 14-11105.5127.5125.7 + 66 12 23 9 5 5 5 5 9 15 12 8-11110.6127.8125.8 + 66 12 24 9 15 32 18 4 5 7 5 12-11110.5128.0125.9 + 66 12 25 12 9 15 18 15 7 15 22 14-11111.6128.2126.0 + 66 12 26 22 12 18 27 22 39 22 32 24-11110.9128.4126.0 + 66 12 27 39 39 32 27 48 32 22 32 34-11109.6128.7126.1 + 66 12 28 18 6 9 12 27 9 15 12 14-11107.5129.1126.2 + 66 12 29 9 6 9 12 5 5 5 6 7-11109.3129.7126.3 + 66 12 30 4 5 4 5 6 15 2 4 6-11115.1130.2126.4 + 66 12 31 3 0 4 3 4 5 2 3 3-11120.5130.6126.5 + 67 1 1 9 9 6 15 18 56 18 9 18-11124.4131.0126.5 + 67 1 2 9 12 5 5 5 4 9 5 7-11143.0131.2126.6 + 67 1 3 5 9 5 12 18 18 7 2 10-11154.0131.4126.7 + 67 1 4 0 2 2 0 3 2 4 4 2-11160.7131.6126.7 + 67 1 5 5 2 2 3 3 3 2 3 3-11168.2131.9126.7 + 67 1 6 2 4 12 7 4 5 7 3 6-11160.5132.1126.8 + 67 1 7 3 2 18 22 32 48 39 56 28-11153.6132.3126.7 + 67 1 8 94111 94 80 27 48 18 9 60-11142.9132.5126.8 + 67 1 9 9 27 9 7 18 15 6 7 12-11144.7132.8126.7 + 67 1 10 7 2 2 2 2 6 7 7 4-11145.6133.1126.7 + 67 1 11 18 12 15 7 18 27 15 15 16-11139.8133.6126.7 + 67 1 12 4 0 2 2 2 0 3 2 2-11139.1134.0126.8 + 67 1 13 4 7 15 7 67 12 32 67 26-11138.1134.6126.8 + 67 1 14154179 80 56 6 5 4 4 61-11135.2135.2126.9 + 67 1 15 15 3 4 9 12 6 9 12 9-11126.6135.8127.0 + 67 1 16 12 12 18 7 7 5 6 5 9-11120.2136.3127.1 + 67 1 17 5 5 4 5 2 5 3 4 4-11116.9137.0127.2 + 67 1 18 5 5 2 3 5 7 7 5 5-11117.4137.7127.2 + 67 1 19 7 3 3 4 2 4 9 5 5-11116.4138.1127.3 + 67 1 20 5 9 18 9 12 27 18 9 13-11127.0138.5127.4 + 67 1 21 7 15 9 9 7 15 4 4 9-11138.2139.0127.5 + 67 1 22 9 0 5 4 3 3 5 4 4-11139.9139.5127.7 + 67 1 23 9 6 7 6 2 3 4 5 5-11148.8140.1127.8 + 67 1 24 4 2 0 0 2 2 2 5 2-11146.8140.4128.0 + 67 1 25 6 5 4 6 7 4 3 3 5-11142.7140.8128.2 + 67 1 26 5 4 5 7 6 0 0 2 4-11154.3141.2128.5 + 67 1 27 2 2 3 6 5 4 3 4 4-11158.3141.6128.7 + 67 1 28 7 22 22 18 4 5 12 6 12-11156.2142.2128.9 + 67 1 29 6 6 9 4 3 3 4 0 4-11158.2142.6129.2 + 67 1 30 2 3 4 3 3 2 3 3 3-11159.0143.0129.3 + 67 1 31 0 2 3 2 2 4 3 3 2-11156.4143.4129.5 + 67 2 1 5 6 7 6 4 3 0 2 4-11151.6143.7129.6 + 67 2 2 0 0 3 3 2 2 5 3 2-11143.5143.9129.7 + 67 2 3 0 0 0 6 2 0 4 4 2-11138.7144.1129.8 + 67 2 4 2 9 7 7 9 18 12 27 11-11137.3144.4129.9 + 67 2 5 39 15 9 7 18 22 6 4 15-11146.8144.7130.1 + 67 2 6 4 9 7 5 6 4 4 18 7-11148.8144.9130.2 + 67 2 7 6 4 4 5 6 56 67 94 30-11162.5145.3130.3 + 67 2 8 80 80 39 39 39 22 39 27 46-11148.3145.7130.5 + 67 2 9 18 9 18 3 3 2 5 3 8-11145.9146.1130.6 + 67 2 10 0 5 2 3 3 0 0 0 2-11140.5146.4130.7 + 67 2 11 4 22 22 15 9 4 9 6 11-11133.7146.8130.8 + 67 2 12 2 0 2 3 3 3 2 5 3-11132.9147.0130.9 + 67 2 13 3 0 2 3 2 7 6 6 4-11130.0147.2131.0 + 67 2 14 6 4 4 5 5 0 5 5 4-11129.2147.3131.1 + 67 2 15 5 4 2 0 0 0 3 39 7-11126.4147.2131.2 + 67 2 16 22 18 48207132 27 39 22 64-11124.9147.5131.4 + 67 2 17 18 27 9 15 15 15 7 12 15-11122.2147.8131.5 + 67 2 18 6 9 9 5 6 0 2 0 5-11124.2148.2131.7 + 67 2 19 0 0 5 6 7 9 7 6 5-11121.0148.5131.9 + 67 2 20 3 6 5 5 2 5 6 6 5-11128.6148.6132.1 + 67 2 21 3 0 4 7 9 9 7 5 6-11131.8148.6132.3 + 67 2 22 7 4 5 7 12 6 9 6 7-11146.0148.6132.5 + 67 2 23 15 4 6 15 18 18 27 9 14-11149.3148.4132.7 + 67 2 24 2 0 7 5 3 4 9 5 4-11162.2148.2132.8 + 67 2 25 4 32 15 15 7 18 18 12 15-11159.5148.1132.9 + 67 2 26 27 15 7 9 7 9 7 7 11-11173.3148.2133.0 + 67 2 27 2 4 7 7 4 9 7 2 5-11176.7148.4133.1 + 67 2 28 4 5 5 6 3 4 4 5 5-11180.2148.6133.2 + 67 3 1 7 9 4 3 9 6 3 2 5-11194.2148.8133.3 + 67 3 2 0 4 3 5 6 5 3 6 4-11197.8148.9133.4 + 67 3 3 3 7 4 18 15 7 6 6 8-11196.4148.8133.6 + 67 3 4 6 5 6 3 6 6 3 9 6-11205.9148.6133.7 + 67 3 5 9 12 9 5 15 12 7 18 11-11179.2148.4133.8 + 67 3 6 15 9 6 4 7 6 9 7 8-11177.4148.1133.9 + 67 3 7 0 2 4 6 15 3 5 5 5-11163.8147.9134.0 + 67 3 8 0 0 2 3 2 2 5 3 2-11156.1147.6134.1 + 67 3 9 4 3 5 15 12 15 15 27 12-11157.9147.2134.2 + 67 3 10 32 12 6 3 4 4 5 2 9-11148.4146.8134.3 + 67 3 11 0 0 4 2 3 2 0 2 2-11141.6146.5134.4 + 67 3 12 2 0 3 3 3 3 2 2 2-11134.3146.2134.5 + 67 3 13 4 0 6 12 6 6 4 5 5-11129.1145.8134.6 + 67 3 14 12 4 3 3 4 4 6 5 5-11127.2145.6134.7 + 67 3 15 4 3 2 2 0 2 2 3 2-11132.4145.4134.8 + 67 3 16 0 0 2 3 2 5 5 6 3-11132.1145.3134.8 + 67 3 17 5 6 4 2 4 4 6 5 5-11132.6145.2134.9 + 67 3 18 3 22 12 18 15 94 15 7 23-11132.2145.0134.9 + 67 3 19 22 27 12 6 18 56 27 39 26-11136.0144.8134.9 + 67 3 20 15 18 7 7 18 7 7 22 13-11140.4144.5134.8 + 67 3 21 27 9 2 7 9 4 7 15 10-11147.2144.3134.8 + 67 3 22 7 9 5 2 2 3 3 2 4-11149.5144.2134.8 + 67 3 23 0 0 0 2 3 7 12 12 5-11155.7144.1134.7 + 67 3 24 3 2 0 2 9 5 2 2 3-11161.9144.0134.7 + 67 3 25 2 4 5 3 5 3 4 3 4-11169.2143.9134.7 + 67 3 26 5 0 2 4 6 6 4 6 4-11163.9143.9134.7 + 67 3 27 22 18 18 15 22 18 12 15 18-11162.8143.8134.8 + 67 3 28 5 9 12 12 15 6 3 3 8-11180.7143.8134.8 + 67 3 29 4 6 4 6 7 15 4 3 6-11178.4143.7134.9 + 67 3 30 15 12 6 7 7 7 9 22 11-11175.8143.6135.0 + 67 3 31 9 2 2 2 2 3 2 4 3-11167.6143.4135.1 + 67 4 1 5 0 18 22 22 12 39 22 18-11158.6143.2135.2 + 67 4 2 3 4 7 27 22 15 9 7 12-11141.0143.0135.3 + 67 4 3 15 5 3 3 2 3 3 5 5-11133.3142.7135.4 + 67 4 4 4 27 12 7 48 9 7 6 15-11125.0142.2135.5 + 67 4 5 7 12 15 15 12 12 7 6 11-11122.1141.7135.6 + 67 4 6 12 15 18 12 15 12 5 5 12-11119.0141.1135.6 + 67 4 7 12 15 7 5 4 6 12 4 8-11126.2140.6135.7 + 67 4 8 6 6 6 5 3 5 6 4 5-11135.7140.0135.8 + 67 4 9 15 0 3 6 4 2 3 7 5-11133.3139.5135.8 + 67 4 10 6 7 3 3 5 5 9 5 5-11130.3139.0135.9 + 67 4 11 2 2 2 5 4 4 5 5 4-11131.1138.6135.9 + 67 4 12 9 15 3 2 2 2 0 3 5-11129.8138.4136.0 + 67 4 13 3 3 2 0 2 2 3 5 3-11126.8138.4136.1 + 67 4 14 3 2 5 3 3 4 3 3 3-11133.5138.4136.1 + 67 4 15 4 2 3 2 4 4 6 5 4-11124.1138.7136.1 + 67 4 16 4 9 7 9 12 15 18 6 10-11126.1139.3136.1 + 67 4 17 22 27 5 12 6 3 3 6 11-11125.9139.9136.1 + 67 4 18 7 6 5 4 6 6 5 18 7-11128.7140.4136.1 + 67 4 19 27 32 27 22 15 12 15 12 20-11126.7140.8136.1 + 67 4 20 7 9 5 4 9 4 12 6 7-11127.1141.2136.1 + 67 4 21 9 7 7 5 7 9 5 7 7-11134.0141.6136.1 + 67 4 22 22 18 39 22 12 15 9 7 18-11131.5142.1136.1 + 67 4 23 15 6 4 6 18 56 48 18 21-11128.0142.4136.2 + 67 4 24 48 48 18 27 22 27 27 15 29-11130.5142.7136.3 + 67 4 25 18 18 6 6 3 4 3 5 8-11132.9142.9136.4 + 67 4 26 2 4 3 4 4 2 2 2 3-11125.4143.0136.5 + 67 4 27 4 3 3 2 2 3 3 4 3-11129.2143.0136.6 + 67 4 28 2 4 2 2 3 3 2 4 3-11135.1142.8136.8 + 67 4 29 4 2 5 4 6 9 6 6 5-11137.5142.5137.0 + 67 4 30 6 3 5 4 3 3 3 0 3-11135.3142.1137.2 + 67 5 1 7 12 6 9 5 6 39 32 15-11136.6141.4137.4 + 67 5 2 12 7 12 56 18 27 27 39 25-11131.8140.8137.5 + 67 5 3 80132 56132111111 56 18 87-11128.8140.1137.6 + 67 5 4 22 22 6 9 12 6 6 12 12-11125.8139.3137.8 + 67 5 5 15 7 9 15 4 9 6 12 10-11128.1138.5137.9 + 67 5 6 9 12 4 3 4 5 5 7 6-11122.8137.8138.0 + 67 5 7 18 39 39 15 4 3 4 4 16-11119.7137.2138.1 + 67 5 8 4 4 4 4 7 7 7 5 5-11116.9136.3138.1 + 67 5 9 4 5 6 5 5 5 3 4 5-11113.6135.5138.1 + 67 5 10 5 6 5 5 12 7 7 7 7-11109.4134.8138.1 + 67 5 11 22 15 6 5 4 6 6 18 10-11106.1134.3138.1 + 67 5 12 18 27 5 9 5 6 15 18 13-11109.7133.8138.1 + 67 5 13 18 39 12 6 7 7 7 12 14-11107.3133.7138.1 + 67 5 14 12 6 5 4 9 12 15 15 10-11108.6133.7138.1 + 67 5 15 18 5 0 4 5 4 9 7 7-11111.0133.8138.1 + 67 5 16 7 5 5 6 5 4 5 9 6-11113.1133.9138.1 + 67 5 17 18 18 7 6 9 7 12 12 11-11115.4134.0138.2 + 67 5 18 9 12 9 5 5 5 5 5 7-11124.8134.1138.3 + 67 5 19 12 12 12 5 7 7 4 3 8-11135.6134.1138.4 + 67 5 20 9 5 5 4 3 4 5 9 6-11146.3134.1138.5 + 67 5 21 4 4 2 4 3 4 18 9 6-11160.3134.0138.7 + 67 5 22 9 4 5 3 2 2 2 0 3-11182.7134.0138.8 + 67 5 23 3 6 4 5 4 6 27 18 9-11194.0133.9138.9 + 67 5 24 6 5 6 6 9 18 32 9 11-11200.9133.9139.1 + 67 5 25 6 7 4 56236154179400130-11210.7133.9139.2 + 67 5 26400300154111111 22 27 39146-11218.9133.9139.3 + 67 5 27 27 18 18 9 15 6 32 32 20-11213.8133.7139.4 + 67 5 28 12 12 32 67 67111 80 56 55-11202.6133.6139.5 + 67 5 29 67111 80 27 48 12 7 9 45-11188.3133.4139.7 + 67 5 30 6 7 9 6 67 80 94 67 42-11177.4133.2139.8 + 67 5 31132 94 48 7 5 22 32 7 43-11175.4132.9139.9 + 67 6 1 4 3 2 4 5 3 5 3 4-11174.6132.6140.1 + 67 6 2 4 4 5 12 7 18 15 7 9-11158.0132.3140.2 + 67 6 3 9 9 6 4 4 9 7 5 7-11150.4132.1140.3 + 67 6 4 7 3 3 7 27 12 22 22 13-11148.4132.0140.4 + 67 6 5 12 4 5 18 18 7 94132 36-11138.7131.9140.4 + 67 6 6207 48 7 6 9 7 32 48 46-11130.5132.0140.5 + 67 6 7111 27 22 5 4 3 3 3 22-11119.1132.0140.5 + 67 6 8 3 4 6 27 22 12 27 22 15-11110.1132.0140.5 + 67 6 9 18 18 15 12 9 4 6 32 14-11103.7131.9140.5 + 67 6 10 15 6 12 4 3 4 4 5 7-11 97.1131.9140.5 + 67 6 11 3 4 2 2 5 9 15 4 6-11 96.9131.9140.4 + 67 6 12 4 4 4 4 7 5 4 7 5-11 96.5132.2140.3 + 67 6 13 12 6 6 4 4 6 6 5 6-11 99.8132.6140.3 + 67 6 14 18 12 12 7 27 7 15 18 15-11103.8133.2140.3 + 67 6 15 32 12 9 3 4 4 5 5 9-11107.2134.0140.3 + 67 6 16 5 4 7 7 6 6 5 5 6-11111.8135.0140.3 + 67 6 17 6 3 6 9 7 18 7 18 9-11112.0136.1140.5 + 67 6 18 12 4 4 2 2 3 2 3 4-11115.4137.3140.7 + 67 6 19 4 2 2 2 9 12 5 3 5-11119.0138.6140.9 + 67 6 20 3 5 7 3 4 3 3 3 4-11121.3139.8141.2 + 67 6 21 2 4 7 4 4 4 4 5 4-11122.9140.9141.5 + 67 6 22 2 5 7 7 9 4 4 2 5-11129.6141.7141.7 + 67 6 23 3 5 4 2 2 4 4 7 4-11133.1142.4141.9 + 67 6 24 3 3 5 3 3 2 4 6 4-11132.4143.1142.1 + 67 6 25 12 7 12 7 7 39 56 48 24-11133.1143.6142.2 + 67 6 26 80 22 12 9 7 32 18 15 24-11127.8144.1142.3 + 67 6 27 32 48 18 22 4 7 15 9 19-11131.5144.6142.5 + 67 6 28 15 5 4 18 9 5 18 4 10-11136.7144.9142.6 + 67 6 29 2 7 22 4 6 18 7 7 9-11133.4145.0142.9 + 67 6 30 18 9 18 15 12 9 15 15 14-11126.1144.9143.0 + 67 7 1 12 12 27 27 12 18 18 7 17-11125.0144.6143.2 + 67 7 2 18 15 5 2 3 2 3 6 7-11125.7144.1143.2 + 67 7 3 5 3 2 2 2 3 6 5 4-11129.6143.4143.4 + 67 7 4 5 6 4 5 3 7 5 15 6-11127.2142.6143.5 + 67 7 5 18 12 22 27 18 12 6 12 16-11123.7141.6143.5 + 67 7 6 4 4 2 4 15 7 9 22 8-11116.6140.5143.6 + 67 7 7 32 27 7 5 7 5 6 5 12-11116.0139.5143.6 + 67 7 8 6 5 2 5 4 4 3 2 4-11111.8138.8143.8 + 67 7 9 2 3 3 2 3 4 5 4 3-11109.7138.4144.0 + 67 7 10 2 2 4 3 4 2 4 6 3-11105.8138.4144.2 + 67 7 11 27 15 18 12 27 22 32 15 21-11107.1138.3144.4 + 67 7 12 12 12 12 7 5 7 6 6 8-11106.1138.4144.6 + 67 7 13 7 5 4 3 3 4 12 15 7-11113.8138.6144.8 + 67 7 14 6 9 12 7 9 4 4 5 7-11122.4139.0144.9 + 67 7 15 3 3 3 2 9 15 22 6 8-11127.6139.2145.1 + 67 7 16 5 12 3 3 2 3 3 4 4-11130.1139.6145.2 + 67 7 17 4 3 2 3 4 4 9 7 5-11129.6140.2145.4 + 67 7 18 6 6 7 9 12 5 4 7 7-11131.3140.8145.5 + 67 7 19 12 3 2 2 4 4 4 5 5-11128.6141.5145.6 + 67 7 20 6 4 4 4 7 5 4 6 5-11135.5142.4145.7 + 67 7 21 4 5 6 5 4 4 6 4 5-11140.2143.2145.8 + 67 7 22 3 4 3 3 3 3 4 4 3-11152.4144.1145.8 + 67 7 23 3 3 5 5 7 15 39 39 15-11161.8144.9145.8 + 67 7 24 12 9 9 6 4 5 12 6 8-11176.4145.6145.8 + 67 7 25 5 5 7 12 5 15 27 9 11-11195.5146.1145.7 + 67 7 26 12 7 3 5 6 7 3 3 6-11199.9146.5145.7 + 67 7 27 2 2 6 6 3 3 7 5 4-11213.2146.8145.8 + 67 7 28 9 5 6 6 15 27 18 7 12-11213.1147.1145.8 + 67 7 29 18 22 12 5 2 6 7 27 12-11215.7147.3145.9 + 67 7 30 32 48 39 5 4 2 3 2 17-11211.6147.4146.1 + 67 7 31 2 2 2 0 2 2 2 2 2-11188.9147.6146.2 + 67 8 1 3 3 2 6 4 6 5 2 4-11176.6147.7146.4 + 67 8 2 2 2 0 5 2 2 2 5 3-11166.7147.7146.6 + 67 8 3 0 2 2 2 4 4 4 7 3-11163.5147.7146.9 + 67 8 4 4 3 9 4 15 15 9 6 8-11149.3147.7147.2 + 67 8 5 18 5 5 7 9 9 6 4 8-11155.4147.6147.5 + 67 8 6 3 7 5 7 4 3 9 9 6-11155.4147.6147.7 + 67 8 7 12 3 9 7 5 4 15 18 9-11150.2147.6147.9 + 67 8 8 22 7 15 9 7 6 7 12 11-11143.4147.4147.9 + 67 8 9 5 3 4 5 12 15 4 6 7-11141.2147.4147.9 + 67 8 10 9 15 7 15 18 9 7 22 13-11136.7147.4147.9 + 67 8 11 15 15 22 15 22 48 32 27 25-11136.2147.5148.0 + 67 8 12 22 5 9 5 5 4 5 7 8-11138.9147.5148.0 + 67 8 13 4 3 2 4 6 9 7 12 6-11137.5147.4148.1 + 67 8 14 9 12 22 9 5 3 7 9 10-11130.0147.4148.1 + 67 8 15 5 6 5 9 9 4 6 7 6-11127.4147.5148.2 + 67 8 16 7 4 5 9 7 9 7 18 8-11132.9147.7148.2 + 67 8 17 15 18 12 48 22 18 7 9 19-11148.3147.9148.3 + 67 8 18 22 12 22 9 15 9 15 12 15-11157.1148.2148.3 + 67 8 19 9 9 12 6 7 7 15 7 9-11172.3148.5148.4 + 67 8 20 7 12 12 12 9 15 6 12 11-11172.9148.9148.4 + 67 8 21 7 5 6 6 7 5 6 4 6-11178.8149.2148.4 + 67 8 22 5 5 4 5 5 6 4 6 5-11178.5149.6148.5 + 67 8 23 5 6 4 5 3 4 12 3 5-11178.3149.8148.5 + 67 8 24 12 4 6 9 7 7 6 7 7-11169.9150.0148.5 + 67 8 25 7 12 15 15 9 15 15 27 14-11170.8150.0148.6 + 67 8 26 15 4 7 6 6 9 15 15 10-11172.0149.9148.6 + 67 8 27 7 9 6 9 6 6 5 9 7-11171.2149.9148.6 + 67 8 28 6 6 5 4 5 9 6 5 6-11169.9149.9148.6 + 67 8 29 12 5 7 5 7 6 6 12 8-11172.7149.8148.6 + 67 8 30 4 15 15 6 7 6 15 15 10-11164.0149.6148.6 + 67 8 31 18 7 18 9 12 9 5 9 11-11165.7149.5148.5 + 67 9 1 18 18 39 9 32 15 27 39 25-11160.5149.3148.4 + 67 9 2 27 15 27 32 15 22 6 4 19-11156.6148.9148.3 + 67 9 3 4 3 6 7 5 6 5 9 6-11147.0148.4148.2 + 67 9 4 6 9 12 5 6 4 5 3 6-11140.9147.5148.1 + 67 9 5 6 4 6 3 3 2 3 2 4-11138.7146.6148.0 + 67 9 6 6 7 2 4 3 4 5 5 5-11133.8145.4147.9 + 67 9 7 5 4 6 3 9 32 6 4 9-11128.4144.2147.9 + 67 9 8 6 2 3 7 15 9 18 15 9-11133.9143.0147.8 + 67 9 9 18 22 6 12 6 3 12 7 11-11131.5141.8147.7 + 67 9 10 9 5 2 2 3 2 2 2 3-11133.6141.1147.6 + 67 9 11 3 2 2 5 3 2 2 2 3-11131.8140.5147.6 + 67 9 12 2 3 2 3 7 4 6 4 4-11131.7140.2147.6 + 67 9 13 6 27 39 48 18 48 32 15 29-11127.6139.9147.6 + 67 9 14 9 6 15 15 18 15 18 15 14-11128.0139.8147.6 + 67 9 15 18 22 32 6 3 5 18 9 14-11130.4139.6147.6 + 67 9 16 22 22 4 6 9 12 5 6 11-11126.4139.5147.6 + 67 9 17 7 7 5 3 5 6 5 5 5-11126.7139.7147.6 + 67 9 18 6 3 3 12 22 12 22 12 12-11128.7140.1147.6 + 67 9 19 39 15 18 7 18 7 27 15 18-11127.7140.3147.6 + 67 9 20 22 27 39 39 56 67 48 56 44-11130.6140.6147.5 + 67 9 21132154 67 67 48111 56 48 85-11126.6140.8147.5 + 67 9 22 27 18 3 4 7 9 7 2 10-11124.6140.8147.4 + 67 9 23 2 3 4 5 6 3 2 3 4-11123.8140.8147.4 + 67 9 24 3 4 3 7 6 9 9 9 6-11131.8140.9147.4 + 67 9 25 9 2 4 3 3 4 9 15 6-11134.1141.0147.3 + 67 9 26 3 2 5 2 2 3 12 7 5-11134.4140.8147.3 + 67 9 27 7 5 3 3 6 5 4 4 5-11137.3140.5147.3 + 67 9 28 7 39 48 56 22 32 48 32 36-11134.6139.9147.2 + 67 9 29 56 56 56 39 27 39 48 39 45-11131.7139.2147.2 + 67 9 30 48 32 39 39 56 48 7 9 35-11131.7138.4147.1 + 67 10 1 27 9 9 15 9 5 5 0 10-11139.7137.7147.1 + 67 10 2 4 4 4 5 3 3 12 4 5-11135.0137.0147.1 + 67 10 3 4 6 7 5 7 5 12 12 7-11131.5136.4147.2 + 67 10 4 6 5 3 2 2 2 3 12 4-11129.9136.0147.2 + 67 10 5 6 9 7 6 6 9 7 4 7-11125.7135.6147.2 + 67 10 6 6 15 4 6 6 4 2 6 6-11129.9135.2147.2 + 67 10 7 9 5 6 9 9 9 4 4 7-11125.8135.0147.2 + 67 10 8 0 2 4 12 32 12 18 12 12-11121.5134.8147.2 + 67 10 9 15 7 6 15 5 9 32 56 18-11122.1134.6147.2 + 67 10 10 48 39 18 27 39 27 32 32 33-11127.3134.6147.2 + 67 10 11 6 7 5 7 27 32 12 6 13-11136.5134.6147.3 + 67 10 12 32 27 22 15 3 22 4 27 19-11135.4134.7147.3 + 67 10 13 27 9 3 6 7 7 7 9 9-11130.8134.7147.3 + 67 10 14 4 6 15 9 7 15 27 22 13-11127.8134.8147.4 + 67 10 15 27 7 5 3 4 6 4 5 8-11122.6135.0147.4 + 67 10 16 7 7 4 4 2 3 6 6 5-11118.0135.2147.4 + 67 10 17 4 9 15 7 12 6 15 9 10-11117.3135.4147.5 + 67 10 18 6 7 9 9 5 3 3 12 7-11113.3135.8147.5 + 67 10 19 5 9 2 5 4 4 4 3 5-11119.3136.1147.5 + 67 10 20 5 2 3 3 4 2 4 2 3-11131.2136.3147.5 + 67 10 21 0 0 0 2 0 3 0 0 1-11130.1136.4147.5 + 67 10 22 0 2 2 4 7 6 15 12 6-11137.3136.5147.4 + 67 10 23 18 9 9 5 7 3 7 5 8-11139.4136.5147.4 + 67 10 24 0 4 5 5 9 4 4 3 4-11141.3136.4147.3 + 67 10 25 3 2 3 4 2 3 4 3 3-11142.1136.4147.3 + 67 10 26 2 4 2 3 3 2 3 3 3-11148.2136.3147.3 + 67 10 27 3 6 9 12 15 18 12 6 10-11161.1136.4147.2 + 67 10 28 12 15 22 39 18 18 22 56 25-11177.0136.4147.2 + 67 10 29 15 15 12 27 56 48 18 9 25-11163.4136.4147.2 + 67 10 30 18 56 22 6 4 5 5 4 15-11159.5136.4147.2 + 67 10 31 4 2 2 7 22 5 9 2 7-11148.6136.4147.1 + 67 11 1 0 2 4 2 2 4 7 5 3-11140.3136.5147.2 + 67 11 2 9 7 7 7 6 7 22 15 10-11140.9136.7147.2 + 67 11 3 12 6 7 12 32 56 39 22 23-11137.5136.9147.3 + 67 11 4 22 15 6 7 12 4 2 7 9-11130.5137.2147.4 + 67 11 5 12 9 15 7 7 12 22 4 11-11121.8137.6147.5 + 67 11 6 5 5 6 5 2 3 4 5 4-11119.6138.1147.6 + 67 11 7 0 4 4 4 4 3 2 2 3-11113.1138.9147.6 + 67 11 8 22 18 6 15 7 15 32 32 18-11112.8139.9147.7 + 67 11 9 12 7 7 7 15 15 15 3 10-11111.1140.8147.8 + 67 11 10 4 4 3 2 7 4 5 3 4-11117.3141.7147.9 + 67 11 11 5 6 4 4 4 4 39 67 17-11124.1142.4148.0 + 67 11 12 15 27 32 18 7 22 39 18 22-11132.7143.0148.0 + 67 11 13 15 27 12 15 9 15 22 22 17-11134.7143.4148.1 + 67 11 14 18 12 18 7 5 15 7 4 11-11136.9143.7148.1 + 67 11 15 2 4 6 4 9 22 18 18 10-11142.9144.1148.2 + 67 11 16 9 18 9 6 9 7 5 6 9-11151.8144.5148.3 + 67 11 17 3 3 2 0 2 0 2 2 2-11154.9145.1148.4 + 67 11 18 4 3 3 3 2 3 2 2 3-11156.9145.9148.5 + 67 11 19 3 6 3 3 2 5 4 0 3-11166.7146.6148.7 + 67 11 20 4 4 2 2 0 2 0 0 2-11166.0147.0148.7 + 67 11 21 0 0 2 0 4 3 6 22 5-11161.4147.2148.8 + 67 11 22 5 18 27 15 22 5 7 5 13-11159.4147.6148.8 + 67 11 23 6 9 4 7 15 5 6 12 8-11156.6148.1148.7 + 67 11 24 32 27 32 15 12 9 12 18 20-11152.6148.8148.7 + 67 11 25 18 5 6 9 15 12 9 12 11-11154.7149.5148.5 + 67 11 26 22 6 4 5 9 9 6 9 9-11157.9150.4148.4 + 67 11 27 5 15 9 9 6 6 12 6 9-11155.0151.6148.4 + 67 11 28 18 27 27 7 6 18 9 22 17-11157.2152.9148.3 + 67 11 29 18 18 15 32 18 7 5 3 15-11150.3154.3148.2 + 67 11 30 6 9 18 7 6 7 32 18 13-11144.4155.4148.1 + 67 12 1 18 22 27 56 18 22 48 56 33-11140.0156.4148.1 + 67 12 2 67 32 12 7 9 4 4 9 18-11131.5157.2148.1 + 67 12 3 3 3 6 7 15 9 7 15 8-11120.5157.9148.0 + 67 12 4 12 9 6 6 4 5 4 9 7-11126.3158.6148.0 + 67 12 5 4 7 3 4 6 12 18 48 13-11121.6159.2148.0 + 67 12 6 9 22 9 22 27 27 18 32 21-11130.3159.5148.1 + 67 12 7 32 15 22 18 22 27 18 7 20-11127.6159.5148.1 + 67 12 8 22 22 32 15 15 27 56 22 26-11129.6159.3148.2 + 67 12 9 15 6 6 3 15 15 15 7 10-11130.0159.1148.4 + 67 12 10 15 7 7 9 4 3 3 3 6-11127.7158.9148.5 + 67 12 11 12 3 2 2 2 2 0 2 3-11136.6158.7148.7 + 67 12 12 6 9 3 5 3 6 6 7 6-11139.1158.6148.8 + 67 12 13 6 5 5 4 2 4 6 5 5-11143.0158.6148.9 + 67 12 14 4 4 4 4 4 7 2 3 4-11153.4158.6149.0 + 67 12 15 22 12 7 5 5 7 9 15 10-11164.3158.8149.1 + 67 12 16 9 15 4 9 7 7 6 7 8-11181.3159.3149.2 + 67 12 17 9 12 22 15 15 7 5 5 11-11202.0159.9149.3 + 67 12 18 12 22 27 12 27 27 18 7 19-11212.4160.8149.3 + 67 12 19 9 32 9 18 27 22 56 67 30-11205.4162.1149.4 + 67 12 20 27 48 22 39 39 32 39 6 32-11201.5163.4149.5 + 67 12 21 15 12 9 22 15 27 12 12 16-11198.0164.8149.6 + 67 12 22 7 7 12 12 12 7 15 27 12-11182.3166.2149.6 + 67 12 23 39 18 12 9 15 12 18 9 17-11164.0167.7149.7 + 67 12 24 6 2 4 5 6 5 9 4 5-11152.9169.2149.8 + 67 12 25 5 2 5 2 4 2 2 4 3-11159.4170.5149.8 + 67 12 26 6 5 4 4 9 15 7 3 7-11165.3171.5149.9 + 67 12 27 12 4 9 6 18 15 3 4 9-11177.0171.9150.0 + 67 12 28 4 4 3 2 3 3 12 9 5-11184.1172.2150.0 + 67 12 29 18 6 4 3 4 3 2 5 6-11176.5172.2150.0 + 67 12 30 5 9 7 7 12 12 9 9 9-11158.9172.1150.0 + 67 12 31 22 56 56 56 67 80 80 56 59-11152.6171.9150.1 + 68 1 1 39 39 39 22 22 22 12 9 26-11171.4171.8150.1 + 68 1 2 7 22 67 80 39 32 18 15 35-11171.8171.8150.1 + 68 1 3 18 12 12 5 4 3 4 12 9-11179.3171.8150.0 + 68 1 4 6 4 4 6 3 4 7 22 7-11183.8171.8150.0 + 68 1 5 9 9 6 7 12 12 7 15 10-11191.2171.6150.0 + 68 1 6 22 18 7 9 22 22 15 9 16-11209.7171.4150.0 + 68 1 7 12 15 9 7 5 6 4 7 8-11223.9171.3150.1 + 68 1 8 6 4 4 6 5 12 5 2 6-11230.2171.1150.2 + 68 1 9 0 2 2 2 2 6 3 4 3-11222.0170.9150.3 + 68 1 10 5 7 7 3 6 4 4 4 5-11208.3170.8150.5 + 68 1 11 4 4 3 3 18 18 18 15 10-11202.5170.8150.6 + 68 1 12 12 12 12 9 9 18 18 15 13-11198.9171.0150.8 + 68 1 13 9 15 9 12 6 6 6 9 9-11197.2171.4150.9 + 68 1 14 15 18 9 6 5 6 15 18 12-11187.0171.7150.9 + 68 1 15 9 9 5 6 7 7 12 22 10-11176.6172.3151.0 + 68 1 16 15 7 5 5 6 22 27 15 13-11160.8172.9151.0 + 68 1 17 6 18 27 9 9 9 15 12 13-11157.4173.5151.1 + 68 1 18 27 9 15 7 9 7 4 3 10-11148.5174.1151.1 + 68 1 19 2 9 15 12 6 22 12 27 13-11141.6174.6151.1 + 68 1 20 27 15 15 18 18 9 12 3 15-11137.3175.1151.1 + 68 1 21 4 9 12 12 7 12 6 6 9-11132.5175.4151.0 + 68 1 22 5 12 7 6 9 15 9 7 9-11135.7175.7151.0 + 68 1 23 7 9 12 4 5 7 18 18 10-11137.9175.8150.9 + 68 1 24 7 5 7 12 15 7 15 9 10-11148.6175.7150.8 + 68 1 25 7 3 4 3 5 5 4 5 5-11160.1175.4150.6 + 68 1 26 6 7 7 6 22 32 12 9 13-11174.0174.8150.5 + 68 1 27 6 9 9 4 7 7 7 22 9-11185.0174.0150.3 + 68 1 28 32 12 2 3 7 9 22 22 14-11213.0172.9150.1 + 68 1 29 27 39 6 6 5 6 12 27 16-11220.7171.9149.9 + 68 1 30 22 22 9 9 5 7 6 6 11-11229.1170.9149.8 + 68 1 31 12 22 9 7 4 7 2 4 8-11239.1170.0149.7 + 68 2 1 3 7 12 9 12 7 12 15 10-11254.1169.4149.6 + 68 2 2 22 12 9 18 15 27 18 32 19-11253.0169.0149.5 + 68 2 3 39 7 12 12 18 22 9 12 16-11244.3168.7149.5 + 68 2 4 18 27 27 32 12 9 5 5 17-11220.3168.2149.4 + 68 2 5 0 2 4 9 6 7 18 15 8-11191.4167.8149.4 + 68 2 6 5 3 2 3 0 2 2 2 2-11172.2167.3149.4 + 68 2 7 0 0 2 2 0 7 7 15 4-11164.2166.6149.3 + 68 2 8 18 18 12 9 9 15 15 18 14-11151.5166.1149.3 + 68 2 9 32 27 27 12 18 4 9 22 19-11151.7165.7149.4 + 68 2 10 18 15 15 18 15 48 67 94 36-11155.7165.5149.4 + 68 2 11 56 80 80 80 48 18 22 27 51-11155.7165.2149.4 + 68 2 12 32 27 15 9 9 9 9 2 14-11159.1164.8149.5 + 68 2 13 2 9 32 22 39 32 5 5 18-11149.1164.5149.6 + 68 2 14 7 4 4 5 6 2 3 9 5-11145.7164.2149.8 + 68 2 15 4 9 18 39 32 56 27 15 25-11141.8163.8149.9 + 68 2 16 7 9 12 18 18 18 15 18 14-11142.5163.2150.0 + 68 2 17 18 6 15 22 32 9 12 32 18-11138.6162.3150.0 + 68 2 18 15 7 32 27 27 32 39 15 24-11135.2161.4150.0 + 68 2 19 27 27 18 7 6 3 2 3 12-11137.5160.7150.0 + 68 2 20 7 5 56 80 56 22 22 32 35-11138.6160.0149.9 + 68 2 21 48 27 18 22 12 15 22 27 24-11148.5159.3149.9 + 68 2 22 12 18 15 15 6 12 4 2 11-11151.8158.6149.8 + 68 2 23 0 6 7 3 4 7 9 7 5-11156.5157.9149.7 + 68 2 24 4 12 15 6 6 5 3 2 7-11164.6157.2149.6 + 68 2 25 3 2 7 2 4 5 7 3 4-11177.4156.6149.5 + 68 2 26 4 5 2 2 2 4 7 9 4-11183.9156.1149.3 + 68 2 27 9 3 4 3 4 6 22 15 8-11175.7155.7149.2 + 68 2 28 32 18 5 15 27 39 48 56 30-11170.7155.5149.0 + 68 2 29 39 27 22 12 12 12 12 7 18-11167.4155.5148.9 + 68 3 1 15 9 9 9 12 18 5 0 10-11162.8155.6148.8 + 68 3 2 5 18 9 12 6 7 9 9 9-11164.4155.7148.7 + 68 3 3 9 5 12 12 9 18 27 22 14-11150.8155.7148.6 + 68 3 4 12 12 15 15 9 12 18 32 16-11144.5155.8148.6 + 68 3 5 15 18 15 18 32 12 15 12 17-11137.8155.7148.6 + 68 3 6 9 4 5 6 4 5 9 12 7-11136.0155.4148.6 + 68 3 7 5 7 6 4 4 4 4 5 5-11131.6155.0148.6 + 68 3 8 7 4 3 3 2 3 3 7 4-11124.1154.4148.6 + 68 3 9 4 5 3 3 2 2 4 9 4-11122.8153.3148.7 + 68 3 10 18 22 18 3 18 22 9 7 15-11124.1152.1148.7 + 68 3 11 7 12 15 12 3 2 5 9 8-11128.3150.8148.8 + 68 3 12 4 3 3 12 9 12 9 9 8-11130.4149.4148.8 + 68 3 13 7 7 6 5 3 2 3 6 5-11127.8147.7148.9 + 68 3 14 15 15 18 15 27 22 27 48 23-11127.9145.9149.0 + 68 3 15 22 22 48 22 32 18 32 32 29-11125.9144.4149.0 + 68 3 16 18 32 22 18 67 7 15 27 26-11128.2143.1149.1 + 68 3 17 22 22 12 7 7 4 5 15 12-11135.2142.2149.1 + 68 3 18 22 15 12 12 6 15 6 6 12-11132.2141.5149.1 + 68 3 19 6 9 18 18 9 15 12 3 11-11130.1141.1149.1 + 68 3 20 27 39 5 27 27 5 7 27 21-11129.6140.8149.1 + 68 3 21 12 7 6 6 6 6 9 3 7-11140.0140.6149.1 + 68 3 22 6 4 6 7 7 5 4 2 5-11142.2140.4149.1 + 68 3 23 3 4 5 5 9 6 15 27 9-11145.5140.3149.1 + 68 3 24 9 22 27 22 27 22 22 27 22-11154.4140.3149.1 + 68 3 25 18 22 27 12 22 18 18 12 19-11156.0140.4149.1 + 68 3 26 5 6 12 27 12 15 22 12 14-11156.8140.5149.2 + 68 3 27 22 18 18 15 7 15 15 15 16-11159.2140.6149.2 + 68 3 28 9 22 15 7 12 7 12 12 12-11157.1140.6149.3 + 68 3 29 18 15 18 9 15 9 9 22 14-11156.2140.6149.3 + 68 3 30 32 32 39 12 12 39 32 15 27-11160.3140.7149.4 + 68 3 31 6 9 18 6 9 18 27 39 17-11155.8140.7149.5 + 68 4 1 27 48 27 27 22 15 22 22 26-11143.8140.7149.5 + 68 4 2 27 9 9 9 12 7 12 15 13-11144.1140.4149.5 + 68 4 3 18 22 6 9 15 12 2 18 13-11137.1140.1149.5 + 68 4 4 18 12 12 3 5 7 6 7 9-11131.7139.9149.6 + 68 4 5 7 6 4 5 12 27 80132 34-11129.1139.6149.6 + 68 4 6 18 39 80 48 32 32 27 15 36-11125.1139.3149.7 + 68 4 7 9 12 22 18 12 6 3 5 11-11124.7139.1149.7 + 68 4 8 5 7 4 3 4 2 0 0 3-11130.7139.1149.8 + 68 4 9 0 0 0 2 2 2 4 7 2-11141.1139.3149.8 + 68 4 10 7 9 5 4 3 6 9 7 6-11142.8139.6149.9 + 68 4 11 6 15 7 12 7 12 12 6 10-11138.4140.0149.9 + 68 4 12 6 6 6 6 5 12 18 32 11-11142.7140.3149.9 + 68 4 13 15 39 6 22 18 22 22 39 23-11141.9140.7149.9 + 68 4 14 22 22 7 48 48 27 22 12 26-11138.3141.2149.9 + 68 4 15 12 7 12 18 15 18 15 18 14-11140.0141.7149.9 + 68 4 16 15 12 15 12 9 5 18 22 14-11141.0142.2149.9 + 68 4 17 7 7 9 18 9 9 7 15 10-11132.2142.7150.0 + 68 4 18 15 9 9 9 5 7 6 7 8-11127.7143.2150.1 + 68 4 19 5 4 4 2 2 3 2 2 3-11125.3143.5150.2 + 68 4 20 2 3 2 2 2 2 2 0 2-11122.4143.8150.2 + 68 4 21 0 3 4 4 5 3 6 5 4-11123.4144.1150.3 + 68 4 22 5 7 12 7 7 7 7 15 8-11115.6144.4150.4 + 68 4 23 22 18 12 9 6 9 15 7 12-11111.7144.6150.4 + 68 4 24 18 18 6 6 5 6 4 3 8-11117.5144.8150.5 + 68 4 25 0 3 5 3 3 5 6 18 5-11119.9145.0150.6 + 68 4 26 15 18 18 15 15 22 39 67 26-11114.3145.1150.7 + 68 4 27 27 15 32 27 9 9 32 7 20-11119.1145.2150.7 + 68 4 28 22 27 18 12 9 9 9 18 16-11128.4145.5150.7 + 68 4 29 12 15 18 9 12 12 15 15 14-11128.0145.8150.7 + 68 4 30 15 5 7 6 5 7 5 9 7-11132.8146.0150.8 + 68 5 1 7 6 5 4 15 15 18 32 13-11144.8146.1150.8 + 68 5 2 39 18 12 18 5 7 5 7 14-11148.2146.2150.9 + 68 5 3 15 32 15 7 9 5 2 5 11-11156.3146.2150.9 + 68 5 4 12 6 5 4 3 5 4 5 6-11154.5146.0150.9 + 68 5 5 3 4 4 5 3 5 4 3 4-11156.0145.8151.0 + 68 5 6 3 5 2 2 0 5 5 4 3-11148.5145.6151.0 + 68 5 7 15 80111 32111 48 15 15 53-11145.4145.4151.1 + 68 5 8 15 7 6 6 4 4 5 6 7-11141.6145.1151.1 + 68 5 9 27 18 18 27 15 18 27 15 21-11139.8145.0151.2 + 68 5 10 7 15 3 7 7 12 12 15 10-11139.7144.8151.2 + 68 5 11 22 18 27 18 15 12 15 12 17-11133.5144.8151.3 + 68 5 12 56 67 27 22 9 7 15 15 27-11127.3144.9151.3 + 68 5 13 27 7 9 22 9 18 15 9 15-11128.3145.1151.3 + 68 5 14 22 15 9 9 9 9 12 6 11-11138.2145.4151.3 + 68 5 15 9 9 22 7 3 6 6 12 9-11141.8145.7151.3 + 68 5 16 15 12 6 15 15 12 7 5 11-11150.7146.0151.3 + 68 5 17 4 12 7 6 18 22 22 27 15-11166.5146.3151.2 + 68 5 18 9 7 15 7 22 39 18 18 17-11178.4146.6151.1 + 68 5 19 5 7 9 7 9 18 18 18 11-11185.3146.7151.1 + 68 5 20 32 27 18 12 15 12 9 27 19-11193.6146.7151.0 + 68 5 21 22 12 22 9 27 48 27 27 24-11194.6146.6151.0 + 68 5 22 22 39 22 7 6 12 6 18 17-11190.3146.5150.9 + 68 5 23 15 5 4 5 12 15 15 32 13-11185.7146.2150.8 + 68 5 24 48 27 18 12 12 7 15 9 19-11182.6145.9150.8 + 68 5 25 7 3 5 6 5 9 7 5 6-11181.0145.6150.7 + 68 5 26 5 7 2 4 4 3 2 3 4-11177.1145.4150.7 + 68 5 27 2 3 5 4 4 4 6 7 4-11170.9145.1150.6 + 68 5 28 7 6 4 2 5 9 15 4 7-11158.1145.1150.5 + 68 5 29 7 6 9 9 6 12 9 12 9-11150.9145.4150.5 + 68 5 30 12 15 9 4 7 12 9 15 10-11151.3145.7150.4 + 68 5 31 15 9 7 5 9 12 12 7 10-11148.9146.2150.4 + 68 6 1 9 5 6 27 27 15 18 27 17-11152.0146.6150.3 + 68 6 2 18 27 18 7 15 12 18 18 17-11145.4147.3150.4 + 68 6 3 27 6 7 15 12 22 12 15 15-11143.8147.8150.4 + 68 6 4 12 7 9 6 5 9 12 15 9-11144.0148.3150.5 + 68 6 5 5 6 5 5 4 5 7 4 5-11138.3148.6150.6 + 68 6 6 2 5 3 4 6 6 4 9 5-11145.5149.1150.6 + 68 6 7 5 6 12 12 12 22 12 4 11-11152.2149.4150.7 + 68 6 8 6 9 5 5 9 27 32 9 13-11154.6149.4150.7 + 68 6 9 6 15 6 5 4 7 12 15 9-11149.0149.5150.7 + 68 6 10 22 27 56 32 48 15 12 80 37-11147.9149.5150.8 + 68 6 11132207132 94111 48 67 32103-11146.5149.4150.8 + 68 6 12 39 48 32 27 48 48 32 27 38-11143.4149.3150.8 + 68 6 13 27 56 80 56 67 39 39 18 48-11143.4149.2150.8 + 68 6 14 15 9 56 39 32 27 18 15 26-11139.5149.1150.7 + 68 6 15 6 6 12 7 5 6 15 9 8-11139.7149.2150.7 + 68 6 16 5 4 3 12 15 6 18 39 13-11138.2149.2150.5 + 68 6 17 15 27 56 22 7 5 7 7 18-11139.6149.3150.3 + 68 6 18 6 5 12 9 12 15 32 9 13-11143.2149.3150.1 + 68 6 19 15 15 18 9 12 9 15 15 14-11147.5149.3149.9 + 68 6 20 9 9 5 4 3 6 12 5 7-11151.5149.3149.7 + 68 6 21 4 3 2 3 4 3 4 2 3-11157.2149.3149.6 + 68 6 22 3 7 12 12 18 7 12 9 10-11154.6149.4149.5 + 68 6 23 6 7 12 6 4 5 5 7 7-11163.8149.5149.5 + 68 6 24 2 2 2 0 2 2 4 3 2-11157.5149.5149.4 + 68 6 25 2 2 4 2 2 9 4 9 4-11154.0149.5149.4 + 68 6 26 32 7 6 9 15 18 7 18 14-11146.2149.3149.4 + 68 6 27 7 7 7 15 15 9 18 12 11-11147.6149.0149.3 + 68 6 28 15 2 4 4 6 7 5 6 6-11142.8148.6149.3 + 68 6 29 5 6 6 3 6 15 39 27 13-11139.1148.0149.2 + 68 6 30 22 12 9 7 6 6 15 12 11-11135.9147.5149.2 + 68 7 1 15 18 12 6 7 4 6 12 10-11128.3146.9149.2 + 68 7 2 18 6 6 9 7 7 9 9 9-11120.3146.4149.1 + 68 7 3 18 15 39 22 9 15 7 6 16-11117.2146.1149.0 + 68 7 4 5 12 15 12 12 7 15 6 11-11116.0145.9148.9 + 68 7 5 9 9 6 12 6 12 6 5 8-11119.4146.0148.8 + 68 7 6 7 7 7 9 7 7 4 3 6-11120.1146.1148.7 + 68 7 7 4 6 15 9 4 9 6 4 7-11135.0146.2148.5 + 68 7 8 5 7 6 7 3 9 5 4 6-11147.1146.3148.4 + 68 7 9 2 4 5 4 3 5 3 9 4-11153.6146.5148.3 + 68 7 10 32 48 18 22 56 9 39 56 35-11157.0146.6148.2 + 68 7 11 18 18 7 4 4 6 15 12 11-11162.8146.7148.1 + 68 7 12 15 9 3 4 5 9 5 4 7-11166.1146.8148.0 + 68 7 13 6 12 6 3 2 48 80 22 22-11155.6146.9147.9 + 68 7 14 67 39 9 9 15 9 18 9 22-11155.9146.8147.8 + 68 7 15 9 7 5 7 4 5 9 6 7-11147.9146.7147.8 + 68 7 16 7 7 7 4 6 27 12 5 9-11149.5146.5147.7 + 68 7 17 3 4 4 5 7 5 9 7 6-11143.6146.2147.7 + 68 7 18 9 15 6 5 18 18 4 4 10-11135.2145.7147.7 + 68 7 19 5 7 9 9 5 9 5 15 8-11135.3145.3147.7 + 68 7 20 12 5 2 2 3 4 5 4 5-11133.9144.9147.7 + 68 7 21 6 3 4 5 9 15 15 12 9-11133.0144.7147.7 + 68 7 22 27 12 22 27 32 12 12 7 19-11139.0144.4147.6 + 68 7 23 7 9 22 12 18 12 5 6 11-11146.1144.2147.6 + 68 7 24 3 3 4 3 3 4 3 3 3-11152.7144.1147.6 + 68 7 25 3 4 5 5 15 15 6 6 7-11158.2144.1147.6 + 68 7 26 5 9 7 22 15 15 18 27 15-11154.4144.2147.5 + 68 7 27 18 18 15 12 12 5 5 5 11-11146.8144.2147.4 + 68 7 28 6 7 3 5 6 12 15 6 8-11143.6144.1147.3 + 68 7 29 6 6 6 4 5 5 4 4 5-11144.3144.1147.0 + 68 7 30 5 5 4 4 7 9 15 7 7-11138.6144.1146.8 + 68 7 31 7 5 7 7 4 5 4 4 5-11134.7144.1146.5 + 68 8 1 3 3 5 5 4 3 3 3 4-11134.2144.1146.2 + 68 8 2 3 4 4 5 3 4 3 5 4-11134.2144.1145.8 + 68 8 3 6 27 18 7 9 18 7 5 12-11140.9144.0145.5 + 68 8 4 15 7 6 4 2 2 2 6 6-11135.6143.9145.2 + 68 8 5 5 12 3 15 15 18 12 18 12-11135.9143.8145.0 + 68 8 6 18 27 15 15 7 9 22 12 16-11148.0143.7144.9 + 68 8 7 18 15 15 18 15 7 6 9 13-11139.8143.5144.8 + 68 8 8 32 18 22 5 12 6 6 12 14-11141.8143.3144.7 + 68 8 9 18 9 9 6 9 15 22 18 13-11146.7143.2144.7 + 68 8 10 12 6 7 9 4 9 4 7 7-11146.6143.1144.6 + 68 8 11 12 7 9 4 3 4 4 3 6-11150.7143.1144.6 + 68 8 12 7 5 6 5 5 5 9 5 6-11161.6143.3144.5 + 68 8 13 3 5 2 3 7 9 39 22 11-11170.8143.4144.4 + 68 8 14 39 15 27 27 39 18 27 27 27-11185.1143.5144.3 + 68 8 15 15 27 27 32 27 18 15 18 22-11185.7143.8144.3 + 68 8 16 32 32 22 9 27 56 67 80 41-11179.0144.3144.2 + 68 8 17 48 56 39 32 27 67 18 22 39-11169.2144.6144.2 + 68 8 18 15 27 27 15 18 12 15 22 19-11164.8144.7144.2 + 68 8 19 15 12 15 15 9 7 6 4 10-11159.8144.8144.2 + 68 8 20 6 5 5 6 7 7 5 7 6-11159.9144.7144.2 + 68 8 21 4 5 6 4 3 3 5 4 4-11158.6144.5144.2 + 68 8 22 3 2 2 5 5 5 6 12 5-11153.8144.2144.2 + 68 8 23 7 22 9 5 5 9 22 12 11-11137.7143.9144.3 + 68 8 24 22 39 39 15 12 6 12 9 19-11130.8143.8144.3 + 68 8 25 5 2 2 2 2 3 15 5 5-11124.2143.8144.4 + 68 8 26 2 3 3 5 6 5 3 4 4-11118.0143.7144.5 + 68 8 27 7 9 4 5 3 4 6 3 5-11114.5143.8144.6 + 68 8 28 4 4 3 3 3 4 5 4 4-11119.4143.9144.6 + 68 8 29 3 0 2 2 2 3 3 3 2-11121.7144.0144.7 + 68 8 30 4 2 2 2 2 2 3 4 3-11125.5144.0144.7 + 68 8 31 6 9 7 15 18 32 18 7 14-11123.5144.0144.8 + 68 9 1 22 7 9 18 6 5 4 4 9-11129.5144.0144.7 + 68 9 2 6 3 6 22 18 6 7 15 10-11134.2143.9144.7 + 68 9 3 15 12 9 22 12 22 27 27 18-11142.8143.6144.7 + 68 9 4 15 12 12 22 18 15 5 12 14-11143.2143.2144.7 + 68 9 5 6 15 18 12 18 6 6 15 12-11139.6143.0144.7 + 68 9 6 15 22 18 4 15 22 22 32 19-11136.0142.9144.7 + 68 9 7 18 9 9 12 9 12 15 56 18-11141.1142.9144.8 + 68 9 8 67 67 56 67 27 67 27 6 48-11149.4143.0144.8 + 68 9 9 22 15 7 18 22 5 12 7 14-11149.4143.1144.9 + 68 9 10 6 7 4 9 7 9 4 3 6-11156.2143.4144.9 + 68 9 11 7 9 6 4 2 2 2 2 4-11152.5143.8144.9 + 68 9 12 5 12 15 12 39 27 18 22 19-11156.0144.1144.9 + 68 9 13 56 67 27 39 48 39 39 27 43-11150.6144.5144.9 + 68 9 14 39 32 32 27 27 32 18 22 29-11146.7144.9145.0 + 68 9 15 39 39 27 15 22 48 32 15 30-11135.7145.4145.2 + 68 9 16 15 22 7 7 7 5 9 7 10-11132.0145.7145.4 + 68 9 17 9 7 12 6 4 5 4 2 6-11131.5146.1145.6 + 68 9 18 2 4 3 3 3 3 2 7 3-11128.7146.4145.8 + 68 9 19 12 32 15 15 7 6 3 3 12-11127.3147.0146.0 + 68 9 20 9 22 2 3 3 3 6 6 7-11127.4147.2146.3 + 68 9 21 5 18 22 4 18 22 9 4 13-11133.6147.3146.5 + 68 9 22 12 4 6 9 12 7 12 27 11-11127.5147.2146.6 + 68 9 23 27 39 12 27 32 32 3 4 22-11126.8147.0146.8 + 68 9 24 3 2 2 3 3 3 9 4 4-11143.0146.5146.8 + 68 9 25 3 0 0 3 3 5 3 3 3-11158.1145.9146.9 + 68 9 26 6 4 5 4 6 6 3 2 5-11160.0145.4147.0 + 68 9 27 0 6 4 3 3 2 2 4 3-11157.8144.9147.0 + 68 9 28 7 4 7 7 9 7 15 12 9-11158.8144.4147.1 + 68 9 29 15 9 6 5 4 9 12 9 9-11154.0144.1147.2 + 68 9 30 4 3 2 2 6 7 15 15 7-11144.3143.8147.2 + 68 10 1 39 32 5 12 9 7 9 18 16-11136.5143.5147.4 + 68 10 2 67 67 39 67 67 27 18 27 47-11136.3143.3147.5 + 68 10 3 67 56 39 56 7 4 3 0 29-11145.2143.2147.6 + 68 10 4 2 3 4 2 4 7 3 2 3-11146.1143.2147.8 + 68 10 5 2 0 4 7 4 3 0 0 3-11147.9143.3147.9 + 68 10 6 3 0 15 9 6 5 7 6 6-11145.3143.4148.0 + 68 10 7 15 12 12 3 6 15 32 27 15-11146.9143.6148.1 + 68 10 8 18 6 4 5 3 7 7 6 7-11141.6143.9148.1 + 68 10 9 18 15 3 3 7 15 5 7 9-11137.3144.2148.1 + 68 10 10 22 3 6 6 3 2 2 3 6-11134.6144.4148.1 + 68 10 11 0 0 4 3 2 3 4 4 3-11133.9144.6148.2 + 68 10 12 32 67 48 39 32 67 94 32 51-11136.8144.6148.2 + 68 10 13 56 32 32 32 27 22 18 22 30-11127.2144.6148.3 + 68 10 14 18 22 9 12 9 12 9 22 14-11132.1144.5148.4 + 68 10 15 3 5 5 7 5 5 3 4 5-11137.0144.4148.5 + 68 10 16 2 5 6 3 7 9 5 4 5-11137.2144.3148.6 + 68 10 17 12 12 6 5 9 9 7 9 9-11142.5144.3148.7 + 68 10 18 12 15 9 7 4 4 4 5 8-11149.6144.2148.7 + 68 10 19 5 3 5 12 12 4 27 22 11-11153.7144.0148.8 + 68 10 20 9 5 12 12 6 6 3 2 7-11155.5143.7148.8 + 68 10 21 0 0 2 3 2 4 2 2 2-11163.3143.4148.9 + 68 10 22 0 0 0 0 3 2 2 2 1-11164.8143.2149.0 + 68 10 23 0 0 2 2 3 5 6 4 3-11167.0143.1149.1 + 68 10 24 4 4 2 4 5 12 22 5 7-11173.3143.1149.2 + 68 10 25 2 7 7 12 7 4 6 7 7-11171.7143.1149.3 + 68 10 26 3 2 4 6 3 3 12 9 5-11172.5143.3149.3 + 68 10 27 12 5 12 4 7 4 3 4 6-11172.8143.4149.4 + 68 10 28 5 0 7 2 4 3 3 18 5-11171.0143.5149.4 + 68 10 29 18 18 12 18 48 80 67 32 37-11191.1143.7149.4 + 68 10 30 12 9 5 22 27 12 12 22 15-11163.9143.9149.4 + 68 10 31 39 32 48154207207132 80112-11159.5144.1149.3 + 68 11 1 56 15 12 80236207132236122-11153.4144.3149.3 + 68 11 2179154 67 39 48 48 27 94 82-11151.5144.4149.2 + 68 11 3111 32 32 12 39 32 12 12 35-11146.1144.5149.2 + 68 11 4 15 27 32 27 39 15 48 12 27-11140.3144.4149.2 + 68 11 5 2 9 7 5 9 2 7 7 6-11132.9144.1149.1 + 68 11 6 3 4 3 4 4 5 9 22 7-11131.4143.7149.1 + 68 11 7 27 39 32 9 22 5 3 2 17-11129.1143.3149.1 + 68 11 8 0 3 12 7 22 15 7 12 10-11133.1143.0149.1 + 68 11 9 32 27 27 27 27 22 12 4 22-11135.4142.9149.1 + 68 11 10 4 18 5 12 22 18 9 9 12-11135.2142.9149.1 + 68 11 11 18 22 18 9 18 6 2 5 12-11132.6143.0149.2 + 68 11 12 9 3 3 3 2 2 0 2 3-11129.3143.1149.3 + 68 11 13 2 3 4 7 5 5 9 9 6-11131.5143.1149.3 + 68 11 14 2 2 3 2 4 4 6 7 4-11131.3143.2149.4 + 68 11 15 3 5 4 3 0 2 2 3 3-11133.5143.3149.4 + 68 11 16 5 4 3 15 39 32 18 18 17-11127.6143.4149.4 + 68 11 17 18 7 22 7 15 27 32 22 19-11140.5143.7149.3 + 68 11 18 39 39 27 22 5 15 12 18 22-11148.0143.8149.3 + 68 11 19 9 7 6 9 7 5 0 3 6-11141.3143.9149.2 + 68 11 20 3 4 4 32 39 27 18 6 17-11139.1144.0149.1 + 68 11 21 6 4 3 3 3 9 9 15 7-11133.8144.1149.1 + 68 11 22 6 3 3 5 5 3 6 12 5-11131.0144.1149.0 + 68 11 23 9 22 6 2 4 2 2 4 6-11132.3144.3149.0 + 68 11 24 7 3 3 3 3 12 5 5 5-11134.2144.4149.0 + 68 11 25 12 7 6 6 9 6 12 3 8-11135.3144.7148.9 + 68 11 26 5 4 4 7 9 12 6 9 7-11135.2145.0148.9 + 68 11 27 18 18 6 6 5 6 6 15 10-11134.1145.4148.8 + 68 11 28 5 7 5 7 6 5 12 9 7-11129.6145.8148.8 + 68 11 29 9 3 3 4 5 7 0 0 4-11128.2146.2148.7 + 68 11 30 0 0 0 2 2 2 5 5 2-11128.6146.5148.6 + 68 12 1 6 12 7 7 15 18 6 2 9-11140.2146.6148.5 + 68 12 2 3 2 6 7 6 9 6 6 6-11149.9146.7148.4 + 68 12 3 6 32 15 9 27 18 12 27 18-11149.6146.6148.4 + 68 12 4 39 4 27 22 18 27 22 9 21-11147.9146.4148.4 + 68 12 5 12 15 56 48 27 12 18 12 25-11146.6146.2148.5 + 68 12 6 22 18 6 9 4 2 5 6 9-11142.9146.0148.7 + 68 12 7 5 2 2 3 4 12 5 4 5-11140.2145.7148.9 + 68 12 8 7 15 15 6 12 6 9 15 11-11141.8145.4149.1 + 68 12 9 5 4 3 4 4 6 7 12 6-11145.6144.9149.3 + 68 12 10 22 18 18 18 12 3 5 12 14-11148.0144.5149.6 + 68 12 11 7 5 4 2 4 12 12 5 6-11143.6144.1149.9 + 68 12 12 22 15 4 4 4 5 7 3 8-11139.0143.8150.1 + 68 12 13 7 5 0 3 4 9 12 4 6-11131.5143.6150.3 + 68 12 14 3 2 4 4 5 3 2 3 3-11134.3143.3150.6 + 68 12 15 6 7 6 2 7 5 6 9 6-11134.1143.2150.7 + 68 12 16 7 18 5 5 7 5 6 12 8-11127.0143.2150.8 + 68 12 17 12 6 4 3 3 2 2 2 4-11130.2143.4150.9 + 68 12 18 7 9 4 5 7 7 9 9 7-11133.9143.4150.9 + 68 12 19 18 9 12 7 12 12 12 15 12-11141.9143.3150.9 + 68 12 20 7 3 6 3 3 2 2 0 3-11144.7143.3150.9 + 68 12 21 12 7 7 12 9 15 9 32 13-11147.1143.2150.8 + 68 12 22 27 18 9 6 12 15 12 3 13-11147.3143.1150.8 + 68 12 23 6 6 9 12 22 18 18 18 14-11146.3143.1150.7 + 68 12 24 12 7 7 4 7 9 4 22 9-11154.0143.2150.6 + 68 12 25 22 48 39 22 6 7 5 15 21-11155.3143.3150.5 + 68 12 26 5 3 3 4 3 3 5 3 4-11154.0143.3150.5 + 68 12 27 7 15 27 22 18 6 4 5 13-11163.5143.5150.4 + 68 12 28 4 4 4 6 6 7 5 6 5-11150.7143.4150.3 + 68 12 29 6 4 2 6 9 18 9 18 9-11147.2143.4150.3 + 68 12 30 7 9 7 7 9 5 12 6 8-11144.2143.3150.3 + 68 12 31 18 5 4 4 4 9 15 27 11-11139.6143.2150.3 + 69 1 1 12 5 5 12 9 7 5 7 8-11139.9143.1150.4 + 69 1 2 2 9 2 3 5 5 2 0 4-11142.1143.1150.6 + 69 1 3 0 0 0 2 4 0 2 2 1-11144.1143.0150.7 + 69 1 4 0 2 0 3 6 2 5 4 3-11154.5142.9150.8 + 69 1 5 4 6 2 3 3 2 0 3 3-11162.5142.8151.0 + 69 1 6 0 0 2 3 2 2 0 2 1-11178.9142.7151.0 + 69 1 7 0 9 5 15 18 4 12 7 9-11183.0142.6151.1 + 69 1 8 12 12 7 6 3 4 9 12 8-11183.1142.6151.1 + 69 1 9 7 7 5 2 3 3 3 6 5-11183.3142.8151.2 + 69 1 10 3 3 3 3 5 3 4 0 3-11169.3143.1151.1 + 69 1 11 0 2 5 3 7 5 7 7 5-11168.5143.3151.1 + 69 1 12 5 5 5 7 9 7 4 2 6-11163.1143.5151.1 + 69 1 13 0 0 2 3 3 0 0 3 1-11157.2144.0151.0 + 69 1 14 12 9 9 9 5 4 9 15 9-11153.3144.6151.0 + 69 1 15 18 22 7 7 9 9 27 6 13-11154.1145.3150.9 + 69 1 16 7 9 7 15 18 9 3 15 10-11152.8146.1150.8 + 69 1 17 32 27 15 15 18 22 22 18 21-11149.1146.8150.8 + 69 1 18 18 15 18 39 18 12 15 22 20-11144.3147.5150.7 + 69 1 19 22 9 9 9 9 5 12 12 11-11131.6147.9150.7 + 69 1 20 12 18 7 5 9 7 12 15 11-11128.0148.1150.6 + 69 1 21 9 7 6 7 3 4 9 3 6-11131.9148.2150.6 + 69 1 22 3 4 5 5 2 3 3 4 4-11133.9148.4150.5 + 69 1 23 2 2 3 3 6 6 6 9 5-11124.8148.5150.4 + 69 1 24 3 2 3 3 15 22 22 22 12-11130.8148.5150.3 + 69 1 25 27 18 32 27 39 32 32 27 29-11134.1148.6150.2 + 69 1 26 67 18 5 22 32 15 6 18 23-11142.2148.7150.1 + 69 1 27 6 9 12 12 22 15 9 9 12-11131.5148.8150.1 + 69 1 28 15 6 3 3 2 3 4 5 5-11129.6148.9150.1 + 69 1 29 3 0 2 4 3 2 2 4 3-11129.2148.9150.1 + 69 1 30 12 6 5 15 4 5 2 2 6-11126.1148.8150.2 + 69 1 31 0 2 4 9 9 15 6 7 7-11126.4148.7150.3 + 69 2 1 0 2 3 3 2 5 6 4 3-11129.8148.5150.5 + 69 2 2 0 0 6 7 7 39207111 47-11139.0148.4150.6 + 69 2 3 80 39 56 39 56 27 80 56 54-11139.1148.5150.8 + 69 2 4 12 7 12 7 15 15 12 22 13-11137.8148.7150.9 + 69 2 5 27 9 6 9 5 3 6 12 10-11138.9149.3151.0 + 69 2 6 27 32 18 18 4 4 7 15 16-11138.5149.9151.0 + 69 2 7 6 2 6 18 9 5 9 15 9-11140.3150.6151.1 + 69 2 8 18 9 6 5 6 15 7 5 9-11134.3151.4151.1 + 69 2 9 5 5 3 2 3 6 4 4 4-11133.3152.5151.0 + 69 2 10 6 6 6 7 7 9 9 48 12-11129.6153.5151.0 + 69 2 11 80 18 32 67 67 80 94 56 62-11128.9154.3150.9 + 69 2 12 27 5 3 3 3 6 9 22 10-11124.6155.0150.8 + 69 2 13 18 7 6 7 9 9 9 15 10-11126.2155.4150.6 + 69 2 14 7 18 5 5 6 4 4 27 10-11125.0155.9150.4 + 69 2 15 18 32 7 18 15 15 22 15 18-11124.8156.1150.2 + 69 2 16 15 15 18 7 12 7 7 4 11-11128.0156.1150.0 + 69 2 17 4 6 5 2 2 3 6 4 4-11134.3156.1149.9 + 69 2 18 0 0 0 0 2 2 5 2 1-11139.4156.1149.7 + 69 2 19 3 12 6 6 15 6 6 6 8-11150.0156.1149.6 + 69 2 20 3 18 6 9 7 12 7 6 9-11159.1156.3149.5 + 69 2 21 15 7 22 5 4 4 4 2 8-11169.2156.6149.4 + 69 2 22 0 2 4 4 6 7 5 5 4-11184.7156.9149.4 + 69 2 23 5 9 12 15 12 5 6 7 9-11201.4157.2149.4 + 69 2 24 6 6 9 5 6 7 3 3 6-11205.8157.5149.5 + 69 2 25 18 5 5 12 4 3 5 4 7-11207.1157.6149.6 + 69 2 26 15 15 22 12 12 7 7 6 12-11194.7157.6149.8 + 69 2 27 15 22 22 7 48 94 32 15 32-11197.1157.6149.9 + 69 2 28 7 27 15 6 12 27 7 22 15-11180.5157.6150.0 + 69 3 1 15 4 5 3 6 18 15 12 10-11165.6157.8150.2 + 69 3 2 22 22 4 6 7 4 3 6 9-11152.0158.0150.3 + 69 3 3 3 3 2 2 3 3 3 2 3-11147.8158.3150.4 + 69 3 4 0 0 0 0 2 2 18 27 6-11143.9158.8150.4 + 69 3 5 9 6 6 18 18 6 6 7 10-11135.9159.5150.4 + 69 3 6 12 7 7 15 6 32 22 9 14-11139.4160.1150.5 + 69 3 7 22 22 9 7 18 22 27 9 17-11138.1160.5150.5 + 69 3 8 15 15 6 15 12 4 7 15 11-11137.3160.7150.5 + 69 3 9 9 12 7 9 7 12 12 5 9-11141.8160.9150.4 + 69 3 10 7 7 6 7 2 2 6 4 5-11137.8161.1150.3 + 69 3 11 6 9 9 12 18 12 32 48 18-11136.0161.3150.3 + 69 3 12 67 80 67 32 18 22 18 6 39-11138.5161.7150.1 + 69 3 13 15 7 6 6 4 4 6 18 8-11134.0162.0150.1 + 69 3 14 9 5 4 4 6 5 9 18 8-11139.0162.1150.0 + 69 3 15 22 15 22 15 9 22 15 22 18-11161.8162.2149.9 + 69 3 16 4 22 39 32 9 6 5 6 15-11174.9162.3149.9 + 69 3 17 67 67 22 22 32 32 32 27 38-11200.1162.4149.9 + 69 3 18 4 27 22 9 4 9 5 9 11-11210.9162.3149.9 + 69 3 19 4 4 15 6 6 5 39 56 17-11208.5162.3149.9 + 69 3 20 56 22 18 9 6 22 15 27 22-11213.7162.2149.9 + 69 3 21 18 12 22 12 9 4 7 22 13-11230.8162.1149.9 + 69 3 22 12 22 9 7 12 9 12 5 11-11222.5162.0149.9 + 69 3 23 7 4 6 9 9 22111207 47-11205.8162.0149.9 + 69 3 24207 94111132 56 18 6 6 79-11195.4162.0150.0 + 69 3 25 12 15 48 27 32 9 9 22 22-11181.1162.1150.0 + 69 3 26 18 6 6 15 9 9 6 9 10-11191.2162.5150.1 + 69 3 27 9 9 7 5 7 4 2 2 6-11177.7162.6150.1 + 69 3 28 4 6 6 5 6 12 5 4 6-11177.5162.7150.1 + 69 3 29 4 5 7 7 27 22 7 27 13-11181.9162.8150.1 + 69 3 30 22 15 7 6 4 15 18 39 16-11182.9162.8150.0 + 69 3 31 27 15 6 12 12 18 18 9 15-11185.5162.8150.0 + 69 4 1 6 12 6 18 12 22 67 48 24-11188.7162.8150.0 + 69 4 2 12 6 5 12 12 27 32 22 16-11191.4162.8150.0 + 69 4 3 56 15 7 6 6 12 22 15 17-11189.8162.7150.0 + 69 4 4 9 15 12 7 12 6 15 9 11-11177.3162.3150.0 + 69 4 5 15 7 18 6 5 9 7 12 10-11175.7161.8149.9 + 69 4 6 15 9 9 3 6 9 18 22 11-11162.6161.2149.9 + 69 4 7 22 39 32 7 9 15 32 7 20-11154.2160.7149.9 + 69 4 8 18 9 5 5 6 5 5 12 8-11147.6160.3149.9 + 69 4 9 5 12 9 9 9 12 27 12 12-11143.8159.8149.9 + 69 4 10 3 5 9 5 5 12 9 4 7-11148.9159.5149.9 + 69 4 11 7 9 12 6 12 4 5 2 7-11150.8159.6149.9 + 69 4 12 2 3 2 4 5 6 32 32 11-11155.5159.9149.9 + 69 4 13 32 12 18 9 7 27 32 27 21-11172.5160.2149.9 + 69 4 14 48 12 6 7 9 9 15 22 16-11179.4160.6149.9 + 69 4 15 18 15 22 18 12 9 9 6 14-11181.2161.0149.8 + 69 4 16 9 18 18 12 18 15 27 22 17-11167.1161.3149.8 + 69 4 17 32 15 27 12 22 22 22 18 21-11154.7161.5149.7 + 69 4 18 39 27 18 9 6 5 6 12 15-11146.8161.5149.7 + 69 4 19 15 2 3 2 5 2 5 7 5-11146.4161.3149.6 + 69 4 20 9 5 6 3 5 4 12 22 8-11149.3161.0149.6 + 69 4 21 22 3 5 3 2 3 5 7 6-11157.2160.7149.6 + 69 4 22 9 9 18 18 15 6 4 5 11-11147.8160.4149.7 + 69 4 23 5 6 4 5 6 5 5 5 5-11144.1160.3149.7 + 69 4 24 18 15 9 4 4 7 6 12 9-11144.7160.2149.8 + 69 4 25 22 9 9 6 6 6 6 6 9-11147.7160.2149.9 + 69 4 26 6 5 3 3 4 7 7 12 6-11143.7160.2150.0 + 69 4 27 18 12 9 12 7 7 15 5 11-11135.0160.2150.0 + 69 4 28 22 67154 48132 32 12 12 60-11134.9160.3150.1 + 69 4 29 12 9 12 4 6 12 15 27 12-11128.2160.7150.2 + 69 4 30 27 48 27 22 32 22 22 15 27-11129.1160.9150.1 + 69 5 1 12 15 9 5 5 6 6 7 8-11125.0161.1150.1 + 69 5 2 6 12 7 12 39 39 94 18 28-11127.8161.4150.1 + 69 5 3 6 22 32 12 15 12 7 15 15-11131.9161.8150.1 + 69 5 4 7 12 6 5 7 7 9 7 8-11135.5162.2150.0 + 69 5 5 18 6 5 7 15 5 15 12 10-11154.1162.7150.0 + 69 5 6 7 15 9 5 5 4 6 9 8-11138.2162.8149.9 + 69 5 7 12 6 9 5 2 2 0 3 5-11129.8162.8149.9 + 69 5 8 4 4 3 2 5 9 5 9 5-11138.5162.5149.9 + 69 5 9 4 9 15 7 7 6 12 27 11-11135.4162.2150.0 + 69 5 10 9 15 18 7 12 7 5 6 10-11137.7161.7150.0 + 69 5 11 4 4 3 7 5 6 5 3 5-11150.1161.2149.9 + 69 5 12 3 2 3 4 3 4 15 27 8-11160.3160.6149.9 + 69 5 13 48 32 56 22 27 48 32 48 39-11154.1159.9149.9 + 69 5 14 67 27 22 27 15 22111111 50-11157.7159.2149.8 + 69 5 15154111 67179179132132 94131-11158.8158.6149.8 + 69 5 16 94 67 80 48 22 6 9 15 43-11159.4157.9149.8 + 69 5 17 18 12 27 9 5 5 5 27 14-11164.1157.4149.9 + 69 5 18 22 12 15 15 7 27 48 15 20-11162.4156.9149.9 + 69 5 19 12 5 6 12 18 9 9 6 10-11157.6156.5150.0 + 69 5 20 12 9 9 5 5 5 9 7 8-11159.0156.3150.0 + 69 5 21 12 15 12 15 12 18 6 15 13-11170.7156.1150.2 + 69 5 22 6 6 6 22 18 12 9 6 11-11177.4156.1150.3 + 69 5 23 7 7 9 15 15 9 12 5 10-11172.8156.2150.5 + 69 5 24 5 18 9 6 12 9 9 12 10-11171.4156.1150.7 + 69 5 25 18 15 2 3 3 5 7 6 7-11168.5156.0150.9 + 69 5 26 3 6 4 4 2 4 3 5 4-11163.7155.8151.1 + 69 5 27 3 2 0 4 4 3 4 5 3-11153.5155.8151.2 + 69 5 28 4 12 9 9 12 15 2 7 9-11143.2155.9151.3 + 69 5 29 3 3 3 5 5 5 5 9 5-11122.6156.1151.4 + 69 5 30 6 5 12 15 9 22 5 15 11-11116.7156.4151.5 + 69 5 31 7 15 12 9 15 7 15 18 12-11111.9156.6151.5 + 69 6 1 7 6 4 3 9 4 6 3 5-11113.3156.6151.6 + 69 6 2 3 7 12 4 5 4 6 6 6-11121.2156.6151.5 + 69 6 3 6 3 3 3 4 6 5 9 5-11133.4156.6151.5 + 69 6 4 7 5 7 5 6 5 3 5 5-11159.0156.5151.4 + 69 6 5 7 4 5 12 4 4 5 3 6-11177.8156.3151.4 + 69 6 6 2 3 2 2 4 5 4 7 4-11196.4156.0151.4 + 69 6 7 9 5 6 7 18 9 4 4 8-11222.2155.9151.3 + 69 6 8 5 22 15 9 5 22 22 15 14-11238.4155.7151.3 + 69 6 9 9 7 4 7 18 15 39 18 15-11235.8155.6151.2 + 69 6 10 18 12 12 12 9 12 5 5 11-11243.5155.4151.1 + 69 6 11 6 6 12 6 7 4 9 12 8-11246.6155.3151.0 + 69 6 12 18 48 22 9 7 15 18 9 18-11236.7155.2150.9 + 69 6 13 15 32 12 6 12 15 12 18 15-11228.7155.0150.9 + 69 6 14 15 22 48 32 67 32 12 27 32-11223.5154.7150.9 + 69 6 15 9 12 7 7 12 6 9 6 9-11200.5154.3150.9 + 69 6 16 12 12 32 27 22 15 9 18 18-11174.7154.0150.9 + 69 6 17 32 32 22 15 5 15 22 5 19-11157.2154.0150.9 + 69 6 18 5 4 3 2 3 6 5 3 4-11153.9153.9151.0 + 69 6 19 3 5 9 9 6 5 4 7 6-11147.0154.0151.0 + 69 6 20 12 12 22 15 7 4 5 5 10-11144.9154.1151.0 + 69 6 21 7 4 5 6 9 4 5 3 5-11139.7154.3151.0 + 69 6 22 0 3 2 3 2 3 3 2 2-11133.1154.5151.1 + 69 6 23 2 6 7 5 5 6 4 7 5-11131.6155.0151.1 + 69 6 24 15 15 9 7 18 9 7 12 12-11128.9155.3151.1 + 69 6 25 5 6 9 5 7 15 15 15 10-11120.2155.8151.1 + 69 6 26 7 6 5 9 9 6 4 6 7-11117.2156.1151.1 + 69 6 27 7 7 4 3 6 5 3 7 5-11114.2156.2151.1 + 69 6 28 5 4 3 3 2 3 4 4 4-11118.3156.2151.1 + 69 6 29 3 4 4 3 4 4 5 4 4-11123.8156.1151.1 + 69 6 30 4 4 4 3 4 5 7 6 5-11136.8156.0151.1 + 69 7 1 9 9 48 7 18 9 27 12 17-11149.2155.6151.1 + 69 7 2 15 12 5 3 3 2 2 4 6-11162.1155.1151.1 + 69 7 3 3 3 2 4 3 4 3 5 3-11167.5154.5151.2 + 69 7 4 3 2 2 3 3 2 2 4 3-11169.2153.9151.2 + 69 7 5 2 3 2 3 2 2 0 4 2-11166.6153.3151.2 + 69 7 6 3 2 3 3 6 6 4 7 4-11165.2152.7151.1 + 69 7 7 4 6 3 5 6 9 5 6 6-11166.7152.2151.0 + 69 7 8 4 4 4 3 4 5 7 7 5-11165.2151.7150.9 + 69 7 9 12 7 7 4 6 6 5 6 7-11165.8151.5150.7 + 69 7 10 6 9 3 6 12 5 4 9 7-11164.4151.4150.5 + 69 7 11 7 3 4 3 4 5 12 6 6-11158.1151.3150.3 + 69 7 12 15 9 15 5 6 5 12 27 12-11151.4151.4150.2 + 69 7 13 12 18 15 18 7 7 22 9 14-11145.1151.4150.2 + 69 7 14 9 39 9 6 18 7 7 7 13-11134.3151.4150.2 + 69 7 15 5 5 6 5 5 3 4 7 5-11126.5151.2150.2 + 69 7 16 5 15 6 15 6 15 15 6 10-11126.1150.9150.3 + 69 7 17 5 5 4 3 4 4 4 3 4-11124.2150.4150.4 + 69 7 18 0 2 4 5 7 3 3 2 3-11119.9149.8150.4 + 69 7 19 2 3 5 2 2 2 2 2 3-11118.1148.9150.5 + 69 7 20 3 3 3 5 4 4 3 2 3-11115.4148.2150.6 + 69 7 21 5 2 3 2 4 6 6 7 4-11115.7147.3150.7 + 69 7 22 6 6 9 4 6 9 6 12 7-11115.1146.3150.8 + 69 7 23 4 3 2 5 2 7 12 7 5-11116.5145.3151.0 + 69 7 24 5 3 5 2 4 4 4 4 4-11115.7144.4151.0 + 69 7 25 3 6 4 3 3 3 4 5 4-11117.8143.5151.1 + 69 7 26 6 7 3 18 67 15 6 39 20-11119.2142.9151.2 + 69 7 27132 94 80 9 15 5 22 5 45-11126.3142.4151.2 + 69 7 28 5 4 7 3 2 3 3 5 4-11135.1142.2151.2 + 69 7 29 3 2 2 2 2 2 4 2 2-11137.1141.9151.3 + 69 7 30 6 3 3 5 5 27 39 15 13-11147.0141.6151.4 + 69 7 31 12 5 5 3 6 5 5 6 6-11167.0141.2151.5 + 69 8 1 3 4 2 3 4 3 3 3 3-11175.7140.9151.6 + 69 8 2 2 0 2 2 7 7 9 9 5-11192.5140.8151.6 + 69 8 3 7 7 6 12 12 15 27 22 14-11188.8140.6151.6 + 69 8 4 22 18 7 12 9 18 5 12 13-11192.9140.7151.6 + 69 8 5 7 15 6 7 9 5 4 3 7-11187.7140.8151.6 + 69 8 6 12 9 5 4 3 3 3 3 5-11171.9141.0151.5 + 69 8 7 6 7 6 9 7 4 12 12 8-11163.1141.3151.5 + 69 8 8 5 3 7 18 12 7 6 15 9-11150.3141.4151.5 + 69 8 9 15 18 9 6 18 9 7 7 11-11145.5141.6151.5 + 69 8 10 6 9 7 15 6 6 2 0 6-11139.3141.5151.5 + 69 8 11 0 3 2 4 4 4 5 6 4-11135.9141.3151.6 + 69 8 12 22 18 18 27 27 27 18 9 21-11128.6141.0151.7 + 69 8 13 6 6 12 12 2 4 4 7 7-11123.1140.7151.8 + 69 8 14 5 5 12 9 5 6 5 0 6-11117.5140.4152.0 + 69 8 15 2 0 6 2 5 6 5 9 4-11115.5140.3152.2 + 69 8 16 2 0 3 5 3 4 3 12 4-11112.3140.4152.4 + 69 8 17 22 7 6 4 2 3 5 3 7-11107.9140.3152.6 + 69 8 18 9 5 3 4 18 12 3 4 7-11105.2140.1152.8 + 69 8 19 12 9 9 12 9 15 15 22 13-11103.9139.8153.0 + 69 8 20 7 9 12 5 5 4 4 7 7-11109.5139.5153.1 + 69 8 21 5 9 2 3 6 6 7 6 6-11116.2139.3153.3 + 69 8 22 5 2 2 5 5 6 12 5 5-11121.0139.1153.4 + 69 8 23 15 18 9 12 9 7 9 7 11-11133.2139.0153.4 + 69 8 24 7 6 5 9 7 4 7 6 6-11146.0139.0153.4 + 69 8 25 12 5 2 2 2 2 0 3 4-11154.8139.1153.4 + 69 8 26 3 5 6 48 22 6 6 22 15-11156.4139.3153.3 + 69 8 27 27 80 18 18 7 7 6 7 21-11167.8139.5153.3 + 69 8 28 12 7 4 3 7 4 6 3 6-11171.5139.8153.2 + 69 8 29 4 3 3 4 5 6 3 2 4-11177.6140.2153.2 + 69 8 30 0 3 6 4 7 3 5 3 4-11169.6140.5153.1 + 69 8 31 4 2 7 6 4 4 5 5 5-11163.8140.8153.2 + 69 9 1 5 6 3 2 2 2 2 2 3-11156.3141.0153.2 + 69 9 2 2 3 3 2 2 2 0 2 2-11155.2141.1153.3 + 69 9 3 3 2 2 4 4 4 12 4 4-11151.7141.2153.3 + 69 9 4 4 6 3 4 4 3 6 4 4-11150.5141.2153.4 + 69 9 5 2 2 4 6 27 39 22 39 18-11138.2141.2153.5 + 69 9 6 32 39 22 27 7 12 5 15 20-11135.7141.1153.6 + 69 9 7 9 6 12 22 9 9 15 22 13-11128.3140.9153.7 + 69 9 8 18 39 48 27 7 6 4 3 19-11124.1140.8153.7 + 69 9 9 6 9 12 12 9 15 4 9 10-11117.3140.8153.8 + 69 9 10 22 9 2 2 5 5 9 12 8-11116.6140.7153.9 + 69 9 11 18 9 9 9 6 4 9 4 9-11119.0140.8153.9 + 69 9 12 6 9 5 7 3 3 3 0 5-11120.7140.7154.0 + 69 9 13 0 3 3 5 2 2 2 2 2-11131.2140.7154.0 + 69 9 14 4 5 2 4 4 12 27 27 11-11129.8140.9154.0 + 69 9 15 39 27 22 7 12 22 15 6 19-11135.3141.1153.9 + 69 9 16 12 18 6 5 4 3 3 6 7-11134.2141.5153.7 + 69 9 17 3 0 2 18 18 18 22 12 12-11133.3141.9153.5 + 69 9 18 12 15 15 12 15 39 32 15 19-11134.4142.4153.3 + 69 9 19 15 22 7 7 7 4 4 9 9-11131.5142.8153.1 + 69 9 20 7 6 12 9 7 18 6 3 9-11136.5143.0152.8 + 69 9 21 6 6 5 5 3 4 3 5 5-11137.8143.3152.6 + 69 9 22 4 4 5 3 2 2 2 2 3-11140.5143.4152.5 + 69 9 23 2 2 2 3 15 7 9 18 7-11145.5143.6152.5 + 69 9 24 5 9 5 12 3 3 3 5 6-11159.7143.7152.4 + 69 9 25 7 18 15 5 7 12 5 7 10-11169.3143.9152.3 + 69 9 26 5 3 5 6 2 2 2 4 4-11158.9144.1152.3 + 69 9 27 0 2 2 0 4 4 5 32 6-11151.3144.4152.2 + 69 9 28 12 22 15132 94 32 22 48 47-11142.7144.8152.2 + 69 9 29 15 32 67 94 80 80 67132 71-11139.9145.1152.1 + 69 9 30207132 94111 80 27 56 12 90-11137.0145.3152.0 + 69 10 1 32 12 22 27 22 22 12 15 21-11133.9145.4151.9 + 69 10 2 39 27 39 39 27 56 15 7 31-11143.2145.4151.8 + 69 10 3 27 18 9 15 27 27 15 3 18-11132.5145.3151.7 + 69 10 4 9 9 7 12 5 22 9 4 10-11132.2145.0151.7 + 69 10 5 9 7 6 5 6 4 9 5 6-11140.9144.8151.7 + 69 10 6 12 18 15 15 15 27 15 7 16-11143.2144.6151.8 + 69 10 7 7 18 9 5 3 3 2 4 6-11145.0144.3151.9 + 69 10 8 0 3 4 2 3 4 6 5 3-11150.1144.1152.1 + 69 10 9 3 3 4 2 0 7 27 27 9-11141.7144.1152.3 + 69 10 10 18 32 18 22 15 9 32 22 21-11136.7144.3152.5 + 69 10 11 9 9 9 12 15 9 6 7 10-11130.1144.6152.6 + 69 10 12 15 9 18 5 9 9 5 0 9-11128.0145.2152.8 + 69 10 13 0 2 6 15 4 3 6 2 5-11124.3145.8152.8 + 69 10 14 2 3 2 0 3 3 6 4 3-11119.1146.5152.8 + 69 10 15 0 4 6 5 2 2 4 4 3-11117.7147.1152.7 + 69 10 16 2 3 4 3 5 9 7 6 5-11115.4147.7152.7 + 69 10 17 5 3 2 4 2 2 5 22 6-11122.3148.2152.7 + 69 10 18 15 6 9 9 3 2 7 3 7-11128.8148.7152.7 + 69 10 19 12 9 15 12 15 5 7 6 10-11145.8149.1152.6 + 69 10 20 6 5 3 3 3 3 6 9 5-11161.9149.4152.6 + 69 10 21 5 4 12 7 5 18 7 7 8-11177.0149.7152.5 + 69 10 22 6 9 7 12 6 9 6 3 7-11186.2149.8152.4 + 69 10 23 5 5 3 2 0 2 5 9 4-11193.1150.0152.4 + 69 10 24 18 27 15 15 9 7 6 15 14-11204.5150.0152.4 + 69 10 25 12 9 4 3 2 2 6 15 7-11204.0150.1152.3 + 69 10 26 3 4 9 3 4 2 5 3 4-11204.6150.1152.3 + 69 10 27 4 4 6 6 7 7 18 12 8-11200.8149.9152.3 + 69 10 28 9 9 4 2 5 6 9 7 6-11189.6149.8152.4 + 69 10 29 3 9 4 2 2 3 6 4 4-11172.5149.5152.4 + 69 10 30 0 0 3 2 0 2 0 0 1-11161.7149.3152.5 + 69 10 31 3 7 7 7 7 4 2 6 5-11153.9149.0152.6 + 69 11 1 4 3 2 2 2 3 2 4 3-11139.4148.8152.7 + 69 11 2 12 6 6 9 12 12 18 15 11-11138.9148.6152.8 + 69 11 3 15 22 22 9 7 15 22 15 16-11126.7148.4152.8 + 69 11 4 6 12 6 9 3 3 4 4 6-11129.6148.0152.9 + 69 11 5 6 6 3 6 7 12 2 4 6-11130.0147.6152.9 + 69 11 6 3 3 3 2 0 2 4 5 3-11131.9147.3153.0 + 69 11 7 18 12 9 7 18 7 18 9 12-11135.8147.3153.1 + 69 11 8 7 12 7 4 12 18 32 22 14-11130.4147.3153.1 + 69 11 9 15 48 48 56 56 67 27 7 41-11127.7147.4153.2 + 69 11 10 7 39 56 39 67 27 39 22 37-11122.8147.6153.3 + 69 11 11 9 4 12 12 12 18 12 7 11-11122.0147.9153.3 + 69 11 12 18 6 5 6 3 7 4 5 7-11122.3148.1153.4 + 69 11 13 5 4 4 5 6 7 4 5 5-11126.6148.4153.5 + 69 11 14 5 5 0 2 0 0 0 2 2-11134.1148.7153.7 + 69 11 15 0 0 2 2 2 2 2 2 2-11137.9148.9153.8 + 69 11 16 0 0 2 2 0 5 6 4 2-11145.5148.9153.9 + 69 11 17 3 3 2 2 2 5 5 5 3-11160.1149.0154.0 + 69 11 18 4 3 4 3 3 7 6 4 4-11177.2149.0154.1 + 69 11 19 3 3 5 5 6 5 15 15 7-11185.2149.1154.2 + 69 11 20 12 5 4 3 2 2 3 4 4-11188.9149.4154.2 + 69 11 21 2 0 2 3 3 4 0 3 2-11198.2149.6154.2 + 69 11 22 15 18 12 7 5 5 12 6 10-11205.3150.0154.1 + 69 11 23 3 3 4 4 2 7 7 7 5-11209.5150.3154.1 + 69 11 24 3 3 5 9 6 9 7 9 6-11200.7150.5154.1 + 69 11 25 4 2 7 7 7 7 5 9 6-11185.7150.7154.1 + 69 11 26 15 15 6 4 5 18 15 7 11-11175.3150.8154.1 + 69 11 27 5 32 27 32 22 27 15 15 22-11172.8150.7154.1 + 69 11 28 12 7 15 7 5 3 6 18 9-11156.8150.5154.2 + 69 11 29 9 5 18 9 18 15 22 18 14-11141.5150.1154.3 + 69 11 30 32 27 22 15 5 18 18 6 18-11136.5149.6154.5 + 69 12 1 4 4 5 7 5 5 4 4 5-11130.2149.1154.6 + 69 12 2 2 3 6 3 5 4 4 3 4-11131.5148.8154.6 + 69 12 3 2 2 2 0 2 2 7 12 4-11131.7148.5154.6 + 69 12 4 5 7 5 6 12 9 6 4 7-11138.9148.1154.6 + 69 12 5 4 9 15 18 18 22 27 32 18-11133.3147.7154.4 + 69 12 6 27 32 18 12 18 15 15 18 19-11123.4147.4154.3 + 69 12 7 5 3 5 6 3 4 5 7 5-11120.7147.1154.0 + 69 12 8 6 6 6 2 3 5 7 6 5-11112.1147.0153.7 + 69 12 9 22 27 6 6 9 12 3 7 12-11116.1147.1153.5 + 69 12 10 3 2 4 4 2 5 9 32 8-11114.8147.2153.2 + 69 12 11 27 12 15 4 9 7 6 5 11-11117.9147.4153.0 + 69 12 12 6 12 5 5 3 2 2 4 5-11122.3147.9152.8 + 69 12 13 6 5 3 0 3 2 4 2 3-11129.6148.1152.7 + 69 12 14 3 2 2 5 3 6 4 4 4-11132.7148.5152.7 + 69 12 15 4 4 4 6 3 6 6 5 5-11135.9148.6152.7 + 69 12 16 22 7 12 9 7 12 9 9 11-11136.9148.9152.8 + 69 12 17 9 4 2 5 2 3 6 4 4-11144.1149.2152.9 + 69 12 18 7 4 2 3 2 2 3 3 3-11144.1149.5152.9 + 69 12 19 4 4 2 3 5 3 6 3 4-11147.2149.9153.0 + 69 12 20 4 2 2 3 2 2 3 3 3-11154.2150.3153.1 + 69 12 21 4 7 2 2 2 2 2 4 3-11160.3150.7153.1 + 69 12 22 5 2 9 5 15 12 6 5 7-11163.0151.0153.2 + 69 12 23 6 12 6 9 18 9 15 12 11-11156.3151.2153.2 + 69 12 24 18 7 4 9 12 6 7 9 9-11152.9151.2153.2 + 69 12 25 5 12 15 9 12 9 7 6 9-11153.6151.1153.3 + 69 12 26 6 5 12 5 3 15 15 15 10-11151.0150.9153.4 + 69 12 27 22 12 6 18 5 5 4 2 9-11146.9150.6153.5 + 69 12 28 2 2 2 4 2 9 4 5 4-11149.0150.2153.7 + 69 12 29 6 4 5 5 5 5 3 2 4-11153.4149.8153.8 + 69 12 30 2 4 0 3 3 2 3 3 3-11157.9149.4153.9 + 69 12 31 0 4 2 3 3 2 5 4 3-11151.3148.9154.0 + 70 1 1 3 7 6 3 7 15 12 7 8-11159.0148.6154.0 + 70 1 2 12 32 56 27 27 32 27 27 30-11144.5148.3154.1 + 70 1 3 12 15 15 7 7 4 3 9 9-11137.1148.2154.2 + 70 1 4 0 2 4 4 3 3 3 6 3-11131.5148.2154.2 + 70 1 5 3 4 6 6 4 3 6 12 6-11126.5148.3154.3 + 70 1 6 12 4 4 3 5 4 4 4 5-11117.6148.6154.3 + 70 1 7 5 3 2 3 4 4 12 6 5-11113.0148.9154.3 + 70 1 8 5 5 3 4 5 12 6 5 6-11113.3149.3154.2 + 70 1 9 27 15 9 5 4 3 5 9 10-11119.6150.0154.2 + 70 1 10 22 6 4 3 4 3 5 2 6-11134.5150.8154.1 + 70 1 11 5 5 4 3 4 2 2 6 4-11160.1151.6154.1 + 70 1 12 22 7 5 4 3 5 4 12 8-11171.6152.4154.0 + 70 1 13 5 4 3 4 6 5 3 5 4-11172.9153.0154.0 + 70 1 14 4 12 4 3 3 3 6 9 6-11171.8153.5154.0 + 70 1 15 12 12 7 4 5 7 3 4 7-11180.0154.2154.0 + 70 1 16 12 9 15 27 18 27 12 18 17-11174.3154.9154.0 + 70 1 17 22 39 7 5 3 3 6 4 11-11180.6155.6154.0 + 70 1 18 12 9 9 5 3 6 3 4 6-11179.4156.4154.1 + 70 1 19 3 2 0 5 6 6 4 15 5-11175.3157.1154.1 + 70 1 20 6 5 3 6 12 5 15 6 7-11168.4157.9154.2 + 70 1 21 2 6 6 7 12 3 7 9 7-11177.0158.6154.4 + 70 1 22 12 4 3 3 3 4 4 4 5-11160.5159.1154.5 + 70 1 23 7 7 5 5 5 2 3 7 5-11153.4159.5154.6 + 70 1 24 6 5 9 12 5 5 5 12 7-11143.6160.0154.8 + 70 1 25 4 3 2 0 2 2 3 4 3-11149.5160.4154.9 + 70 1 26 3 5 2 2 2 2 2 2 3-11156.4160.8155.1 + 70 1 27 6 9 4 5 5 5 7 6 6-11163.0161.1155.2 + 70 1 28 6 0 0 5 3 5 12 9 5-11162.0161.4155.3 + 70 1 29 9 6 9 9 7 2 5 5 7-11163.3161.5155.3 + 70 1 30 15 7 18 7 5 18 18 9 12-11154.8161.6155.2 + 70 1 31 18 18 2 6 6 4 5 2 8-11143.4161.6155.1 + 70 2 1 9 18 4 2 3 3 6 27 9-11134.6161.5154.9 + 70 2 2 18 22 12 18 18 9 22 39 20-11133.1161.4154.8 + 70 2 3 18 9 6 7 7 3 2 5 7-11123.7161.3154.6 + 70 2 4 4 6 6 12 18 27 18 9 13-11119.4161.1154.4 + 70 2 5 12 18 5 7 12 7 6 15 10-11121.0160.9154.3 + 70 2 6 6 4 4 3 2 2 3 4 4-11131.9160.7154.2 + 70 2 7 3 0 0 2 2 2 2 2 2-11139.4160.5154.2 + 70 2 8 0 0 0 2 3 4 3 3 2-11152.6160.3154.1 + 70 2 9 0 4 4 2 4 3 3 2 3-11154.1160.2154.1 + 70 2 10 2 2 4 2 4 12 12 4 5-11170.3160.2154.1 + 70 2 11 3 0 4 3 3 3 3 3 3-11184.3160.3154.1 + 70 2 12 4 0 0 3 3 5 5 3 3-11201.0160.6154.2 + 70 2 13 2 7 4 7 9 4 6 4 5-11197.6161.0154.3 + 70 2 14 7 27 5 18 12 9 4 3 11-11196.2161.4154.5 + 70 2 15 6 12 9 15 6 5 7 5 8-11201.6161.8154.6 + 70 2 16 4 3 5 6 7 5 3 7 5-11193.3162.3154.8 + 70 2 17 6 2 3 7 7 15 27 15 10-11193.9162.8154.9 + 70 2 18 7 12 9 6 12 7 7 12 9-11197.7163.2155.0 + 70 2 19 7 3 5 5 5 4 3 3 4-11198.5163.6155.1 + 70 2 20 2 0 2 4 6 4 3 3 3-11196.5163.9155.2 + 70 2 21 2 0 3 4 2 2 3 2 2-11191.1164.0155.2 + 70 2 22 2 2 2 2 2 2 3 3 2-11183.0163.9155.3 + 70 2 23 4 2 2 0 3 3 12 4 4-11183.9163.8155.2 + 70 2 24 4 12 6 3 12 32 18 4 11-11185.9163.9155.2 + 70 2 25 4 5 7 3 2 5 2 2 4-11179.6164.1155.1 + 70 2 26 6 7 9 7 27 18 2 2 10-11178.3164.3155.0 + 70 2 27 2 3 12 5 5 4 15 18 8-11176.9164.6155.0 + 70 2 28 22 15 15 12 12 12 9 12 14-11174.1165.1154.9 + 70 3 1 18 18 39 32 27 32 5 7 22-11175.7165.7154.8 + 70 3 2 18 27 22 22 9 9 6 15 16-11173.0166.2154.8 + 70 3 3 9 6 18 9 15 27 18 18 15-11167.3166.4154.8 + 70 3 4 15 9 9 18 18 22 9 27 16-11165.3166.7154.8 + 70 3 5 9 5 18 6 7 12 27 15 12-11169.8167.0154.8 + 70 3 6 27 15 15 22 7 18 27 67 25-11167.8167.2154.9 + 70 3 7 56 32 15 27 32 39 67 67 42-11168.4167.3154.9 + 70 3 8 32 48 67 48154207400236149-11172.8167.2155.0 + 70 3 9 94 94 9 18 32 80 22 27 47-11164.4166.9155.1 + 70 3 10 18 5 5 6 4 5 6 4 7-11158.3166.6155.2 + 70 3 11 3 2 2 0 2 3 5 6 3-11156.3166.2155.3 + 70 3 12 4 9 7 12 5 4 2 2 6-11164.4165.8155.4 + 70 3 13 2 5 7 18 12 9 9 5 8-11152.4165.7155.4 + 70 3 14 7 2 5 3 2 4 2 2 3-11147.3165.6155.4 + 70 3 15 12 7 7 7 6 7 5 3 7-11144.9165.6155.4 + 70 3 16 0 2 2 5 5 3 3 3 3-11139.0165.7155.4 + 70 3 17 0 3 4 3 9 9 6 5 5-11133.7165.9155.3 + 70 3 18 7 2 3 9 6 7 4 12 6-11133.5166.1155.3 + 70 3 19 5 5 5 4 5 3 6 7 5-11130.2166.3155.3 + 70 3 20 5 2 0 3 6 4 9 6 4-11141.1166.5155.2 + 70 3 21 5 3 2 2 2 3 3 2 3-11149.7166.5155.2 + 70 3 22 0 0 5 3 3 3 2 2 2-11150.9166.6155.3 + 70 3 23 4 5 6 7 4 4 4 4 5-11164.9166.5155.3 + 70 3 24 2 0 3 2 2 2 4 4 2-11169.8166.2155.3 + 70 3 25 2 0 4 3 5 4 3 2 3-11167.2165.7155.4 + 70 3 26 6 7 6 3 3 5 5 3 5-11166.4165.4155.4 + 70 3 27 0 0 15 39 18 12 9 32 16-11159.2165.0155.3 + 70 3 28 18 32 15 39 12 18 9 22 21-11153.8164.5155.3 + 70 3 29 18 27 15 5 18 18 15 22 17-11153.1164.0155.3 + 70 3 30 22 9 22 15 18 15 15 12 16-11149.4163.6155.3 + 70 3 31 7 39 94 67 67 80 22 32 51-11149.3163.1155.3 + 70 4 1 12 7 4 2 3 2 2 12 6-11160.8162.8155.3 + 70 4 2 6 6 6 3 6 6 5 7 6-11167.1162.6155.3 + 70 4 3 12 15 22 12 9 12 5 4 11-11163.5162.7155.2 + 70 4 4 12 9 15 15 15 9 4 4 10-11170.4162.8155.2 + 70 4 5 3 2 7 18 18 9 9 6 9-11179.4163.1155.2 + 70 4 6 12 18 48 48 27 9 6 18 23-11192.9163.4155.2 + 70 4 7 12 9 22 18 5 3 3 4 10-11193.4163.6155.2 + 70 4 8 22 18 12 15 12 4 5 9 12-11203.1163.8155.1 + 70 4 9 5 12 27 32 39 7 5 15 18-11218.5164.0155.1 + 70 4 10 4 2 0 0 3 3 5 9 3-11224.7164.2155.1 + 70 4 11 18 7 9 12 9 4 3 2 8-11206.4164.1155.1 + 70 4 12 4 6 7 5 6 9 5 4 6-11198.5164.1155.2 + 70 4 13 3 4 3 4 7 4 2 2 4-11185.3164.1155.2 + 70 4 14 4 3 2 5 4 2 2 4 3-11173.8164.0155.2 + 70 4 15 3 4 4 4 3 6 12 7 5-11163.6163.9155.3 + 70 4 16 15 22 15 4 3 6 22 27 14-11152.2163.9155.3 + 70 4 17 56 27 22 39 15 15 32 27 29-11148.0163.7155.4 + 70 4 18 5 4 5 22 56 22 9 22 18-11141.9163.5155.4 + 70 4 19 18 22 48 39 18 12 5 5 21-11135.7163.4155.4 + 70 4 20 5 22 7 18 39 32 22 22 21-11131.2163.5155.4 + 70 4 21 22 27 48 67 80111236132 90-11126.3163.6155.3 + 70 4 22 94132 48 27 12 5 4 3 41-11128.6163.3155.2 + 70 4 23 9 7 12 12 22 12 22 15 14-11130.1163.2155.1 + 70 4 24 15 18 12 9 15 18 15 22 16-11130.1163.0155.0 + 70 4 25 22 18 18 18 18 12 15 12 17-11134.8162.9154.9 + 70 4 26 18 12 4 5 7 5 18 32 13-11135.3162.8154.8 + 70 4 27 32 18 9 5 5 5 5 4 10-11138.0162.7154.7 + 70 4 28 9 6 6 3 6 3 4 4 5-11148.6162.8154.7 + 70 4 29 5 5 5 5 6 6 12 15 7-11156.1162.8154.7 + 70 4 30 15 27 22 22 15 15 12 12 18-11153.3162.8154.7 + 70 5 1 9 7 9 2 12 9 15 22 11-11159.5162.7154.8 + 70 5 2 12 9 12 5 5 9 15 7 9-11160.7163.0154.8 + 70 5 3 6 3 4 6 12 12 18 22 10-11163.5163.0154.9 + 70 5 4 7 4 7 7 6 6 6 6 6-11162.3163.4154.9 + 70 5 5 5 5 6 18 22 15 6 15 12-11167.9163.9155.0 + 70 5 6 9 2 2 3 5 12 6 6 6-11163.3164.4155.1 + 70 5 7 7 7 3 6 6 9 5 4 6-11162.4164.9155.1 + 70 5 8 3 2 3 2 2 6 6 6 4-11156.7165.4155.2 + 70 5 9 6 4 3 2 3 4 3 3 4-11154.9165.7155.2 + 70 5 10 0 3 2 3 2 2 2 2 2-11162.8166.1155.2 + 70 5 11 2 2 2 2 2 2 4 9 3-11176.2166.2155.3 + 70 5 12 22 7 7 12 12 18 18 27 15-11180.3166.2155.3 + 70 5 13 15 9 5 4 4 4 4 7 7-11193.1166.0155.4 + 70 5 14 12 7 12 6 7 9 27 22 13-11196.8165.8155.5 + 70 5 15 32 5 7 18 6 6 5 4 10-11206.3165.4155.7 + 70 5 16 4 3 7 6 5 7 5 7 6-11206.0165.0155.8 + 70 5 17 12 27 12 9 7 7 4 6 11-11197.0164.5156.0 + 70 5 18 7 12 6 5 4 3 4 2 5-11194.6164.1156.1 + 70 5 19 2 6 9 9 4 5 6 7 6-11197.4163.6156.2 + 70 5 20 9 18 9 15 15 9 15 12 13-11183.9163.0156.2 + 70 5 21 9 6 5 7 6 6 12 9 8-11174.9162.4156.2 + 70 5 22 9 6 5 6 6 6 7 4 6-11170.3162.0156.2 + 70 5 23 4 4 7 6 5 6 7 18 7-11163.7161.9156.1 + 70 5 24 6 5 6 7 9 7 4 6 6-11162.6162.0156.0 + 70 5 25 9 12 12 4 7 5 3 3 7-11160.6162.3155.8 + 70 5 26 0 0 2 3 2 2 2 7 2-11162.8162.6155.6 + 70 5 27 5 6 9 12 15 9 18 48 15-11155.2163.1155.4 + 70 5 28 67 18 9 56132 39 18 18 45-11153.8163.3155.3 + 70 5 29 22 15 22 7 7 7 12 9 13-11158.5163.5155.2 + 70 5 30 9 7 12 22 6 22 9 3 11-11163.7163.7155.2 + 70 5 31 3 5 6 7 9 6 4 4 6-11165.2163.8155.2 + 70 6 1 12 56 15 48 39 22 18 12 28-11145.6164.0155.2 + 70 6 2 18 12 7 6 6 9 9 7 9-11141.8164.0155.3 + 70 6 3 7 12 15 9 12 12 9 9 11-11133.4164.1155.3 + 70 6 4 15 7 6 6 9 9 6 7 8-11131.7164.0155.4 + 70 6 5 7 9 9 7 3 5 3 4 6-11132.9163.8155.4 + 70 6 6 4 4 5 6 2 2 2 0 3-11130.0163.7155.5 + 70 6 7 0 3 3 3 4 12 18 32 9-11134.5163.5155.6 + 70 6 8 18 32 22 6 7 5 6 6 13-11134.2163.3155.7 + 70 6 9 6 4 4 3 5 5 9 6 5-11138.2163.1155.9 + 70 6 10 5 5 6 5 4 7 7 5 6-11145.9162.8156.0 + 70 6 11 7 4 3 2 3 6 7 4 5-11169.5162.7156.2 + 70 6 12 6 5 5 4 3 4 6 5 5-11171.7162.8156.4 + 70 6 13 3 4 12 15 18 12 6 7 10-11200.3162.7156.5 + 70 6 14 7 15 3 3 5 5 15 9 8-11207.4162.7156.6 + 70 6 15 22 9 15 9 12 9 7 18 13-11209.2162.8156.7 + 70 6 16 9 15 7 5 9 7 5 12 9-11198.6162.9156.7 + 70 6 17 5 2 12 12 22 18 18 15 13-11190.6163.2156.7 + 70 6 18 18 9 32 32 56 27 15 27 27-11181.8163.5156.7 + 70 6 19 9 9 7 6 3 5 9 15 8-11175.1163.6156.8 + 70 6 20 12 27 22 15 7 18 27 15 18-11163.3163.5156.8 + 70 6 21 39 32 18 9 9 12 7 7 17-11160.6163.1156.8 + 70 6 22 5 2 2 4 4 3 5 6 4-11150.1162.5156.7 + 70 6 23 5 4 3 3 2 5 5 3 4-11143.7161.7156.7 + 70 6 24 6 2 2 3 5 9 12 7 6-11142.3160.9156.6 + 70 6 25 12 5 5 4 6 4 2 9 6-11149.3159.9156.5 + 70 6 26 6 9 15 9 18 15 22 7 13-11151.4158.9156.4 + 70 6 27 7 15 80 56 80 18 18 6 35-11160.0158.1156.4 + 70 6 28 12 9 5 12 6 5 4 4 7-11160.5157.3156.3 + 70 6 29 2 5 6 4 6 7 12 6 6-11168.0156.4156.2 + 70 6 30 4 5 12 5 4 4 3 4 5-11174.8155.9156.1 + 70 7 1 6 9 9 6 18 18 9 6 10-11179.9155.4156.0 + 70 7 2 5 9 32 18 9 7 3 5 11-11189.0154.9156.0 + 70 7 3 7 18 32 22 6 4 5 94 24-11194.6154.6155.9 + 70 7 4 94 27 56 12 5 4 4 2 26-11195.0154.4155.9 + 70 7 5 12 32 22 6 18 15 9 12 16-11191.0154.5155.9 + 70 7 6 22 18 22 22 27 4 3 3 15-11186.4154.6155.9 + 70 7 7 2 3 4 4 3 4 5 12 5-11166.3154.6156.0 + 70 7 8 5 6 5 4 6 5 4 48 10-11160.4154.6156.0 + 70 7 9 27111 56 56154 80 80132 87-11148.4154.5156.1 + 70 7 10111 7 6 5 22 48 48 27 34-11143.8154.3156.2 + 70 7 11 18 5 7 7 7 9 15 15 10-11137.7154.1156.3 + 70 7 12 18 18 9 12 9 9 22 18 14-11135.4154.0156.4 + 70 7 13 15 15 7 5 5 12 12 9 10-11130.7154.0156.4 + 70 7 14 12 9 12 6 5 7 12 12 9-11126.3154.2156.3 + 70 7 15 6 6 4 7 5 4 4 6 5-11121.9154.3156.2 + 70 7 16 12 6 3 3 7 4 6 3 6-11121.4154.3156.2 + 70 7 17 5 3 3 3 5 9 9 27 8-11125.9154.4156.1 + 70 7 18 5 7 3 5 4 4 5 6 5-11131.0154.4156.1 + 70 7 19 4 6 2 4 4 6 6 7 5-11135.8154.5156.0 + 70 7 20 4 4 4 4 2 4 5 18 6-11136.4154.7155.9 + 70 7 21 18 12 15 32 67 27 48 22 30-11150.6154.7155.9 + 70 7 22 15 9 15 12 5 12 7 18 12-11163.8154.5155.9 + 70 7 23 18 9 9 5 9 9 12 3 9-11158.7154.3155.9 + 70 7 24 15 22 32 12 27 22 15 67 27-11164.0153.8156.0 + 70 7 25 94179154111 80 22 18 80 92-11169.0153.2156.1 + 70 7 26 48 32 22 18 15 5 6 22 21-11176.3152.7156.1 + 70 7 27 5 22 9 18 12 18 22 9 14-11185.9152.2156.2 + 70 7 28 6 3 3 3 4 4 3 6 4-11182.1151.8156.2 + 70 7 29 18 56 67 39 80 56 39 5 45-11161.0151.6156.2 + 70 7 30 5 12 7 5 9 6 4 9 7-11156.1151.4156.2 + 70 7 31 15 18 12 7 9 7 15 27 14-11141.5151.3156.2 + 70 8 1 6 5 3 4 2 4 3 6 4-11134.0151.1156.3 + 70 8 2 12 7 4 6 4 3 5 3 6-11128.5150.9156.3 + 70 8 3 3 4 3 6 7 3 2 2 4-11127.9150.7156.4 + 70 8 4 3 3 3 3 4 6 6 3 4-11127.4150.4156.5 + 70 8 5 3 4 2 3 2 2 3 3 3-11128.4150.1156.6 + 70 8 6 3 5 4 7 3 12 12 15 8-11128.0149.7156.7 + 70 8 7 9 5 7 5 6 15 12 39 12-11128.2149.2156.7 + 70 8 8 18 12 39 48 22 18 22 27 26-11131.8148.6156.8 + 70 8 9 56 15 12 27 12 12 12 5 19-11138.3148.1156.7 + 70 8 10 7 6 9 9 12 5 5 6 7-11137.3147.6156.7 + 70 8 11 7 9 7 7 12 6 6 18 9-11127.2147.1156.5 + 70 8 12 9 18 9 7 2 4 12 12 9-11136.9146.7156.4 + 70 8 13 4 5 6 5 6 5 6 15 7-11149.7146.2156.2 + 70 8 14 4 7 3 2 2 7 4 6 4-11167.0145.8155.9 + 70 8 15 6 6 3 3 5 4 7 22 7-11169.1145.3155.7 + 70 8 16 9 5 4 3 4 5 5132 21-11162.5145.0155.5 + 70 8 17 56300207 80 56111 56 56115-11151.6144.8155.2 + 70 8 18 39 39 22 32 32 67 39 18 36-11149.0144.6155.1 + 70 8 19 32 15 5 18 15 12 12 2 14-11145.4144.6154.9 + 70 8 20 0 2 7 5 6 3 3 5 4-11148.6144.5154.7 + 70 8 21 7 6 3 4 3 7 3 4 5-11142.8144.5154.5 + 70 8 22 3 3 4 5 12 9 7 6 6-11141.7144.4154.4 + 70 8 23 6 15 9 6 6 6 5 6 7-11146.2144.3154.2 + 70 8 24 4 7 2 2 2 3 3 6 4-11140.2144.3154.1 + 70 8 25 4 6 12 6 12 7 7 9 8-11136.5144.5154.0 + 70 8 26 9 22 22 15 32 12 9 12 17-11135.7144.7153.9 + 70 8 27 15 15 12 6 15 15 9 9 12-11137.2144.7153.8 + 70 8 28 7 9 12 3 18 15 12 22 12-11141.6144.7153.7 + 70 8 29 12 18 12 12 9 7 3 5 10-11148.7144.8153.6 + 70 8 30 9 7 6 4 3 4 3 2 5-11149.0144.9153.5 + 70 8 31 3 9 22 12 15 15 15 6 12-11154.5144.9153.4 + 70 9 1 3 4 27 48 32 22 27 18 23-11154.1144.6153.3 + 70 9 2 12 7 7 48 18 18 18 12 18-11156.7144.3153.1 + 70 9 3 2 15 12 18 18 22 15 18 15-11163.2143.9153.0 + 70 9 4 7 7 15 15 12 15 9 7 11-11163.4143.5152.8 + 70 9 5 9 7 4 3 6 15 6 15 8-11162.3143.1152.7 + 70 9 6 4 5 4 2 4 6 9 9 5-11161.5142.4152.5 + 70 9 7 5 2 3 5 6 4 9 12 6-11164.4141.8152.3 + 70 9 8 2 6 9 4 12 9 15 5 8-11156.9141.5152.2 + 70 9 9 2 4 3 5 5 6 9 7 5-11157.2141.3152.0 + 70 9 10 22 15 3 0 2 5 2 0 6-11143.9141.3151.9 + 70 9 11 0 2 0 0 0 2 3 3 1-11134.4141.3151.7 + 70 9 12 4 9 12 4 2 3 3 3 5-11126.1141.4151.6 + 70 9 13 4 22 27 22 39 18 27 32 24-11120.1141.6151.5 + 70 9 14 18 15 12 32 27 22 18 9 19-11121.9142.1151.4 + 70 9 15 32 15 9 7 6 5 6 9 11-11118.0142.5151.4 + 70 9 16 12 12 12 7 7 3 4 5 8-11118.4143.3151.3 + 70 9 17 5 15 18 6 5 7 4 5 8-11116.9144.1151.3 + 70 9 18 15 15 18 6 7 9 7 6 10-11120.7144.8151.2 + 70 9 19 4 39 27 18 9 15 18 15 18-11134.7145.4151.1 + 70 9 20 7 22 22 22 9 12 9 18 15-11146.9145.9151.0 + 70 9 21 22 18 39 22 27 22 22 9 23-11149.4146.4150.9 + 70 9 22 15 22 6 15 5 12 9 9 12-11155.2146.7150.8 + 70 9 23 9 3 6 12 6 5 3 4 6-11161.6146.8150.6 + 70 9 24 7 12 6 6 5 4 7 5 7-11156.0146.7150.4 + 70 9 25 4 15 18 9 4 5 6 2 8-11155.8146.4150.3 + 70 9 26 3 12 6 7 5 5 6 7 6-11155.9146.2150.1 + 70 9 27 18 22 18 15 15 32 9 22 19-11145.0146.2150.0 + 70 9 28 22 7 2 5 4 5 4 4 7-11144.5146.2149.9 + 70 9 29 3 5 6 5 2 3 2 12 5-11138.7146.2149.7 + 70 9 30 6 18 18 5 7 6 4 9 9-11134.7146.1149.6 + 70 10 1 15 9 7 6 7 5 18 15 10-11128.7146.1149.4 + 70 10 2 18 6 5 7 7 12 9 9 9-11125.4146.3149.3 + 70 10 3 15 18 5 6 6 15 22 22 14-11126.0146.5149.1 + 70 10 4 27 67 27 22 18 15 15 9 25-11137.3147.0149.0 + 70 10 5 15 12 18 6 3 3 9 6 9-11134.5147.6148.8 + 70 10 6 6 6 7 5 4 2 6 9 6-11128.0148.4148.5 + 70 10 7 2 3 5 4 4 3 2 5 4-11133.3149.1148.3 + 70 10 8 3 3 3 0 2 2 3 2 2-11142.0149.7148.1 + 70 10 9 3 2 3 2 3 2 2 0 2-11144.9150.2147.8 + 70 10 10 0 4 15 4 5 6 9 12 7-11147.6150.7147.4 + 70 10 11 18 22 18 15 7 7 18 12 15-11142.8150.9147.2 + 70 10 12 32 56 18 9 6 3 4 3 16-11135.4151.0147.0 + 70 10 13 0 12 12 6 15 15 7 4 9-11131.8151.0146.9 + 70 10 14 15 18 7 5 4 4 4 5 8-11134.9150.7146.8 + 70 10 15 7 5 3 2 3 2 4 4 4-11140.2150.4146.7 + 70 10 16 2 2 4 56 56 80 80 18 37-11134.0149.9146.7 + 70 10 17 27 15 22 18 15 48 48 80 34-11131.5149.5146.7 + 70 10 18 80111 39 15 15 27 6 18 39-11138.5149.2146.7 + 70 10 19 12 12 27 9 6 6 9 5 11-11139.0149.1146.7 + 70 10 20 4 9 15 12 5 3 3 3 7-11137.2149.0146.7 + 70 10 21 0 0 0 0 0 2 2 4 1-11136.5149.1146.7 + 70 10 22 9 12 12 7 12 18 32 39 18-11135.0149.2146.7 + 70 10 23 27 39 22 12 27 48 27 27 29-11149.0149.5146.6 + 70 10 24 18 18 32 15 12 4 9 4 14-11161.2149.8146.6 + 70 10 25 6 9 7 3 7 12 5 3 7-11168.6150.2146.5 + 70 10 26 7 7 2 4 4 2 3 3 4-11187.1150.8146.4 + 70 10 27 5 3 5 2 3 4 4 12 5-11191.8151.4146.3 + 70 10 28 15 22 12 4 12 6 22 27 15-11190.3152.0146.2 + 70 10 29 7 5 6 12 15 9 27 22 13-11189.0152.6146.0 + 70 10 30 27 18 6 6 4 7 3 3 9-11175.2153.0145.9 + 70 10 31 3 5 3 7 5 3 5 2 4-11168.6153.3145.7 + 70 11 1 2 0 2 5 2 2 2 2 2-11163.3153.6145.5 + 70 11 2 0 2 6 7 7 2 3 5 4-11159.1153.9145.4 + 70 11 3 7 12 6 4 5 6 9 15 8-11153.2153.9145.2 + 70 11 4 12 5 6 7 4 3 5 12 7-11148.3153.9145.1 + 70 11 5 9 7 7 7 5 9 12 15 9-11147.5153.9145.0 + 70 11 6 12 15 18 12 18 6 4 9 12-11149.8153.8144.9 + 70 11 7 80 94111 67 48 22 22 18 58-11150.6153.8144.8 + 70 11 8 18 12 4 7 6 6 6 2 8-11141.1153.9144.8 + 70 11 9 4 12 7 7 7 7 12 7 8-11141.9154.1144.7 + 70 11 10 22 15 7 22 18 27 15 7 17-11147.8154.3144.6 + 70 11 11 32 18 12 27 12 27 15 15 20-11155.6154.5144.5 + 70 11 12 7 12 12 12 18 12 3 2 10-11165.1154.7144.3 + 70 11 13 6 12 7 7 18 6 6 7 9-11179.1154.7144.1 + 70 11 14 9 9 7 6 3 7 9 5 7-11186.4154.6143.8 + 70 11 15 0 0 3 5 4 4 7 6 4-11200.0154.5143.6 + 70 11 16 4 0 2 5 7 12 7 6 5-11193.5154.4143.4 + 70 11 17 7 18 5 5 4 4 3 4 6-11184.1154.2143.1 + 70 11 18 5 5 5 4 32 22 12 56 18-11193.1153.9142.9 + 70 11 19 48 48 32 7 4 2 0 3 18-11185.5153.7142.7 + 70 11 20 2 2 2 0 3 3 3 6 3-11173.7153.4142.5 + 70 11 21 12 12 48 56 67 27 9 7 30-11163.3153.3142.3 + 70 11 22 27 27 18 18 12 18 15 12 18-11154.2153.2142.1 + 70 11 23 22 15 18 22 27 27 22 15 21-11142.4153.3141.9 + 70 11 24 7 12 15 9 15 18 15 9 13-11133.9153.3141.7 + 70 11 25 12 12 7 18 7 22 18 7 13-11127.9153.3141.5 + 70 11 26 9 7 5 6 5 12 15 9 9-11129.3153.4141.3 + 70 11 27 9 7 7 9 15 9 15 12 10-11135.1153.6141.2 + 70 11 28 6 9 6 6 15 12 4 6 8-11148.9153.8141.1 + 70 11 29 2 3 2 2 2 3 3 3 3-11148.4153.9140.9 + 70 11 30 2 2 0 0 2 0 0 3 1-11152.5154.1140.8 + 70 12 1 2 0 0 0 0 2 2 2 1-11146.4154.3140.7 + 70 12 2 3 0 0 0 7 7 12 4 4-11148.4154.4140.6 + 70 12 3 9 3 6 4 2 3 0 4 4-11148.1154.5140.5 + 70 12 4 2 0 3 5 3 4 12 9 5-11154.0154.3140.5 + 70 12 5 7 12 7 12 5 12 4 2 8-11161.9154.1140.4 + 70 12 6 5 5 18 7 9 9 4 4 8-11167.5153.7140.3 + 70 12 7 4 5 7 5 7 6 9 18 8-11166.5153.3140.2 + 70 12 8 22 39 18 22 27 5 12 6 19-11167.3152.8140.1 + 70 12 9 7 7 6 12 6 4 3 2 6-11171.5152.5140.0 + 70 12 10 3 2 2 4 4 3 4 2 3-11170.9152.4139.9 + 70 12 11 0 2 3 3 2 0 2 2 2-11172.6152.4139.7 + 70 12 12 4 2 2 5 5 3 3 4 4-11178.4152.6139.5 + 70 12 13 7 5 2 3 2 5 5 7 5-11164.3152.8139.2 + 70 12 14 22 80236 48 32 15 32 56 65-11154.6153.2138.9 + 70 12 15 32 18 18 12 15 9 5 5 14-11154.1153.6138.6 + 70 12 16 6 3 3 3 2 3 3 5 4-11146.7153.8138.3 + 70 12 17 6 4 2 2 4 0 3 4 3-11146.8154.0138.0 + 70 12 18 0 2 3 0 2 2 2 12 3-11151.6154.2137.8 + 70 12 19 5 6 15 12 3 5 9 22 10-11152.4154.5137.5 + 70 12 20 9 9 15 9 7 2 5 4 8-11155.6154.7137.4 + 70 12 21 5 5 5 5 3 0 3 4 4-11146.3154.9137.2 + 70 12 22 9 7 7 4 3 4 4 6 6-11136.8155.1137.0 + 70 12 23 12 12 6 7 7 7 2 5 7-11132.1155.1136.9 + 70 12 24 39 32 9 6 7 6 6 4 14-11124.4154.9136.8 + 70 12 25 6 0 0 2 4 6 7 7 4-11124.0154.5136.7 + 70 12 26 5 6 6 4 0 2 4 5 4-11122.3153.9136.6 + 70 12 27 0 9 2 7 6 12 7 22 8-11119.8153.3136.5 + 70 12 28 12 22 5 5 12 22 32 32 18-11117.3152.8136.4 + 70 12 29 22 6 7 4 4 12 12 32 12-11123.4152.0136.3 + 70 12 30 32 27 6 6 5 18 5 4 13-11129.0151.3136.3 + 70 12 31 0 2 0 5 3 3 3 3 2-11133.3150.5136.2 + 71 1 1 15 6 4 5 3 6 6 2 6-11130.5149.8136.0 + 71 1 2 12 22 27 22 27 15 15 12 19-11134.8149.3135.9 + 71 1 3 22 32 27 39 27 32 56 32 33-11134.7148.9135.7 + 71 1 4 27 18 22 12 18 15 12 7 16-11140.2148.6135.5 + 71 1 5 7 9 12 7 12 7 9 12 9-11146.1148.4135.4 + 71 1 6 7 4 6 3 4 3 5 4 5-11146.9148.3135.3 + 71 1 7 2 0 2 2 2 2 0 0 1-11150.2148.2135.1 + 71 1 8 0 0 0 0 0 2 0 0 0-11149.1148.0135.0 + 71 1 9 0 0 0 0 0 2 3 0 1-11152.8147.8134.9 + 71 1 10 3 2 4 4 5 4 18 7 6-11152.1147.6134.8 + 71 1 11 5 5 9 6 6 15 3 12 8-11149.0147.5134.8 + 71 1 12 6 2 2 3 2 5 3 2 3-11150.5147.4134.7 + 71 1 13 5 6 5 7 9 4 4 7 6-11148.1147.3134.7 + 71 1 14 7 12 12 7 12 12 2 5 9-11153.9147.2134.7 + 71 1 15 7 7 18 7 7 6 5 7 8-11153.7147.0134.7 + 71 1 16 12 4 12 7 6 5 3 7 7-11156.4146.7134.7 + 71 1 17 2 4 5 9 12 6 6 6 6-11155.3146.4134.7 + 71 1 18 7 5 6 18 39 22 12 12 15-11160.3146.1134.6 + 71 1 19 12 7 5 6 12 15 18 27 13-11165.8145.7134.6 + 71 1 20 32 56 27 39 22 27 12 15 29-11169.2145.2134.5 + 71 1 21 12 12 22 12 12 15 7 7 12-11178.7144.6134.4 + 71 1 22 15 15 15 6 2 2 6 15 10-11180.6143.9134.3 + 71 1 23 12 9 7 4 3 5 6 5 6-11182.9143.3134.2 + 71 1 24 6 9 4 9 9 3 18 22 10-11177.0142.8134.0 + 71 1 25 27 12 7 6 5 7 6 3 9-11168.6142.2133.9 + 71 1 26 3 0 0 0 2 3 2 2 2-11164.9141.7133.7 + 71 1 27 2 39 80 32 39 48 27 27 37-11166.7141.2133.5 + 71 1 28 39 39 27 27 22 48 27 80 39-11166.2140.6133.4 + 71 1 29 48 27 6 15 9 7 6 7 16-11160.7140.0133.3 + 71 1 30 18 48 18 48 15 7 22 32 26-11163.0139.5133.2 + 71 1 31 15 12 39 12 15 12 22 12 17-11170.1139.1133.2 + 71 2 1 15 12 27 18 15 27 6 5 16-11165.6138.8133.1 + 71 2 2 15 7 3 6 6 7 15 12 9-11160.5138.5133.0 + 71 2 3 9 6 5 3 3 3 3 2 4-11154.7138.4133.0 + 71 2 4 2 2 2 4 4 7 5 6 4-11148.6138.2132.9 + 71 2 5 5 5 3 6 3 2 3 4 4-11144.7138.2132.9 + 71 2 6 9 4 9 6 6 6 5 5 6-11143.7138.1132.8 + 71 2 7 5 9 7 5 4 6 5 9 6-11133.4138.0132.7 + 71 2 8 12 12 5 9 6 9 15 15 10-11123.2137.8132.7 + 71 2 9 7 15 15 9 15 15 2 6 11-11110.4137.6132.6 + 71 2 10 7 2 5 5 9 18 18 12 10-11109.5137.3132.5 + 71 2 11 5 0 2 7 2 9 6 12 5-11109.7137.1132.4 + 71 2 12 5 5 7 4 9 9 7 6 7-11110.5136.7132.3 + 71 2 13 12 4 3 3 0 2 2 2 4-11113.2136.4132.1 + 71 2 14 2 4 9 18 32 27 27 12 16-11114.8136.0131.9 + 71 2 15 18 15 22 18 18 48 39 56 29-11117.1135.5131.7 + 71 2 16 80 32 18 18 12 22 22 22 28-11129.8135.0131.6 + 71 2 17 22 12 15 12 12 9 7 18 13-11132.6134.4131.5 + 71 2 18 9 15 12 7 12 12 9 22 12-11130.4133.9131.5 + 71 2 19 12 22 12 7 4 5 3 6 9-11138.5133.2131.4 + 71 2 20 12 15 5 7 5 5 12 7 9-11136.2132.6131.5 + 71 2 21 6 7 12 6 9 7 3 4 7-11136.1132.1131.5 + 71 2 22 6 3 9 6 0 0 2 0 3-11143.6131.6131.5 + 71 2 23 4 7 7 4 6 18 32 27 13-11143.2131.1131.5 + 71 2 24 7 3 5 6 9 9 9 56 13-11147.5130.5131.6 + 71 2 25 48 15 18 22 67 56 80 39 43-11146.4129.9131.6 + 71 2 26 56 94 22 27 15 18 9 9 31-11143.2129.4131.6 + 71 2 27 18 9 4 4 12 9 9 18 10-11140.0128.8131.5 + 71 2 28 7 18 6 4 4 3 3 2 6-11136.6128.2131.4 + 71 3 1 6 7 7 4 3 4 2 3 5-11129.2127.5131.3 + 71 3 2 2 9 3 0 3 4 5 6 4-11125.8127.0131.1 + 71 3 3 9 7 9 5 5 7 22 9 9-11121.7126.4130.9 + 71 3 4 27 18 12 18 12 9 12 4 14-11116.0125.9130.8 + 71 3 5 9 7 6 4 6 5 2 2 5-11113.7125.3130.6 + 71 3 6 4 6 2 6 4 3 5 5 4-11109.1124.9130.4 + 71 3 7 6 3 3 2 3 6 5 4 4-11105.2124.5130.2 + 71 3 8 27 27 6 15 15 15 9 9 15-11104.0124.2130.0 + 71 3 9 4 9 12 12 3 4 5 3 7-11104.5123.9129.9 + 71 3 10 15 7 22 18 22 22 6 6 15-11107.0123.5129.7 + 71 3 11 3 15 6 12 9 5 0 3 7-11109.5123.2129.6 + 71 3 12 4 5 4 7 18 18 27 80 20-11115.3122.8129.4 + 71 3 13 18 22 32 48 39 67 56 32 39-11112.5122.2129.3 + 71 3 14 18 18 32 48 22 18 27 48 29-11111.7121.6129.2 + 71 3 15 48 39 32 9 12 22 9 7 22-11110.3121.0129.1 + 71 3 16 27 15 7 9 9 18 12 15 14-11114.5120.3129.1 + 71 3 17 15 7 12 9 4 12 7 9 9-11116.1119.8129.1 + 71 3 18 12 7 4 5 3 5 7 7 6-11114.2119.3129.1 + 71 3 19 6 12 4 15 22 15 12 39 16-11109.1118.7129.1 + 71 3 20 22 27 27 9 4 5 3 7 13-11106.3118.2129.1 + 71 3 21 4 0 4 4 2 2 4 4 3-11112.6117.9129.0 + 71 3 22 3 4 2 0 3 2 5 2 3-11112.4117.7128.9 + 71 3 23 0 0 2 2 3 6 7 5 3-11108.2117.6128.8 + 71 3 24 5 7 22 15 6 9 22 22 14-11107.8117.5128.7 + 71 3 25 12 7 27 22 6 9 7 7 12-11108.3117.6128.5 + 71 3 26 18 9 32 15 12 15 12 5 15-11107.8117.6128.4 + 71 3 27 7 9 12 7 15 6 7 7 9-11108.5117.8128.3 + 71 3 28 5 2 0 0 2 2 4 3 2-11106.2117.9128.1 + 71 3 29 2 0 5 2 2 0 3 3 2-11103.4118.0128.1 + 71 3 30 5 5 2 4 7 6 22 22 9-11100.9118.0128.0 + 71 3 31 39 32 27 9 32 32 32 6 26-11102.9118.1127.9 + 71 4 1 18 15 39 9 4 5 6 4 13-11100.5118.1127.9 + 71 4 2 2 3 5 9 12 12 5 6 7-11107.6118.0127.8 + 71 4 3 22 9 12 22 5 6 18 32 16-11109.0117.9127.8 + 71 4 4 56 27 18 7 18 39 32 22 27-11107.7117.6127.8 + 71 4 5 7 5 4 7 6 15 32 15 11-11108.3117.3127.7 + 71 4 6 18 22 18 18 6 7 9 12 14-11107.3116.9127.6 + 71 4 7 7 15 7 3 2 3 3 7 6-11113.2116.5127.5 + 71 4 8 4 3 5 5 7 5 7 9 6-11110.1116.1127.5 + 71 4 9 7 27 67 67 80 67 80 27 53-11108.9115.7127.3 + 71 4 10 32 56 27 18 27 22 32 27 30-11109.8115.3127.2 + 71 4 11 15 48 32 39 18 27 22 12 27-11124.1115.0127.1 + 71 4 12 22 9 6 6 12 6 15 7 10-11129.7114.6126.9 + 71 4 13 6 7 9 12 12 7 5 5 8-11139.6114.2126.8 + 71 4 14 18 7 4 5 32 27 39179 39-11141.0113.9126.7 + 71 4 15111 39 12 32 39 12 18 27 36-11140.0113.6126.6 + 71 4 16 27 22 15 9 15 7 9 15 15-11139.6113.4126.4 + 71 4 17 7 15 12 9 2 2 3 15 8-11139.9113.4126.3 + 71 4 18 15 9 5 6 6 15 7 22 11-11137.2113.4126.2 + 71 4 19 15 15 9 6 4 5 5 6 8-11138.4113.5126.1 + 71 4 20 3 7 5 5 3 3 7 2 4-11136.8113.5126.0 + 71 4 21 0 3 6 7 12 22 32 94 22-11128.9113.5126.0 + 71 4 22 39 15 6 7 12 9 18 9 14-11120.5113.5125.9 + 71 4 23 3 9 7 15 5 6 22 15 10-11117.5113.4125.9 + 71 4 24 5 4 2 2 3 2 2 2 3-11109.1113.4125.8 + 71 4 25 0 2 0 0 2 2 3 0 1-11106.0113.3125.7 + 71 4 26 3 2 2 2 9 9 4 7 5-11104.8113.2125.6 + 71 4 27 5 9 12 9 5 5 7 9 8-11101.7113.1125.4 + 71 4 28 12 22 15 9 48 48 6 6 21-11 97.5113.0125.2 + 71 4 29 15 7 6 6 7 6 5 18 9-11 95.8112.9125.0 + 71 4 30 22 12 9 5 6 7 3 2 8-11 94.8112.8124.8 + 71 5 1 5 12 5 3 5 5 12 7 7-11 95.3112.6124.6 + 71 5 2 39 39 32 7 6 5 6 5 17-11 99.6112.4124.4 + 71 5 3 5 9 4 2 7 9 9 22 8-11106.2112.2124.3 + 71 5 4 22 18 3 3 5 4 4 3 8-11112.6112.0124.1 + 71 5 5 7 4 0 4 4 15 18 9 8-11117.9111.9124.0 + 71 5 6 22 18 39 94 56 56 67 48 50-11125.6111.7123.9 + 71 5 7 48 67 32 27 18 39 27 27 36-11131.1111.4123.8 + 71 5 8 7 9 18 18 9 15 18 12 13-11132.7111.3123.7 + 71 5 9 15 15 9 9 6 15 12 12 12-11138.3111.2123.6 + 71 5 10 22 18 15 6 6 6 9 5 11-11135.8111.1123.5 + 71 5 11 6 12 4 2 3 2 2 4 4-11135.3111.0123.4 + 71 5 12 4 3 3 0 4 2 3 9 4-11130.2110.9123.3 + 71 5 13 7 4 3 0 4 5 5 4 4-11125.0110.8123.1 + 71 5 14 12 12 4 15 12 22 18 18 14-11122.3110.6123.0 + 71 5 15 32 15 12 5 6 12 5 9 12-11118.0110.6122.7 + 71 5 16 4 3 2 2 2 4 9 15 5-11116.1110.6122.5 + 71 5 17 48 22 80 80 94111 94 56 73-11112.8110.7122.2 + 71 5 18 80 56 39 39 32 39 22 6 39-11111.2110.9122.0 + 71 5 19 15 7 12 9 9 9 7 9 10-11109.8111.1121.8 + 71 5 20 7 2 5 15 5 3 2 4 5-11106.0111.5121.5 + 71 5 21 6 2 0 7 7 12 4 2 5-11102.0112.0121.3 + 71 5 22 7 6 5 5 3 4 4 5 5-11 93.4112.3121.2 + 71 5 23 22 9 9 6 3 9 18 9 11-11 89.7112.4121.0 + 71 5 24 6 5 4 5 5 9 15 9 7-11 88.9112.3120.9 + 71 5 25 5 6 6 5 6 6 9 9 7-11 92.3112.2120.9 + 71 5 26 15 12 12 6 6 7 6 7 9-11 93.7112.1120.8 + 71 5 27 3 0 2 3 2 2 2 3 2-11103.9112.0120.8 + 71 5 28 0 2 2 2 5 4 9 4 4-11107.0111.8120.8 + 71 5 29 7 4 3 2 4 5 7 12 6-11108.5111.5120.8 + 71 5 30 12 7 18 32 48 15 12 9 19-11110.3111.1120.7 + 71 5 31 6 4 5 4 4 3 4 2 4-11111.6110.8120.7 + 71 6 1 3 4 32 27 27 32 27 27 22-11110.1110.5120.5 + 71 6 2 27 32 22 32 27 22 56 27 31-11108.3110.4120.5 + 71 6 3 48 39 39 7 15 18 22 9 25-11107.8110.3120.4 + 71 6 4 9 9 18 6 5 7 6 12 9-11107.3110.4120.3 + 71 6 5 9 9 5 5 4 5 9 6 7-11106.2110.6120.1 + 71 6 6 6 7 9 5 5 5 4 2 5-11105.0110.9120.0 + 71 6 7 2 4 2 2 3 4 3 6 3-11101.5111.1119.8 + 71 6 8 9 12 9 6 5 5 6 4 7-11101.8111.4119.7 + 71 6 9 2 2 3 3 3 6 4 3 3-11100.9111.8119.5 + 71 6 10 0 2 3 7 6 5 5 4 4-11 97.5112.1119.4 + 71 6 11 5 7 6 7 6 5 3 5 6-11 96.0112.3119.3 + 71 6 12 3 5 4 5 2 2 3 3 3-11 93.3112.5119.1 + 71 6 13 2 2 5 2 22 18 12 5 9-11 93.7112.7119.0 + 71 6 14 5 9 6 4 6 5 3 4 5-11 94.0113.0118.9 + 71 6 15 3 5 9 5 3 3 5 7 5-11 91.3113.0118.8 + 71 6 16 5 3 4 6 7 5 5 9 6-11 90.8113.0118.7 + 71 6 17 5 6 15 22 15 9 3 4 10-11 93.1112.8118.6 + 71 6 18 6 6 15 6 5 3 4 6 6-11 95.4112.6118.5 + 71 6 19 4 4 3 2 2 2 2 0 2-11 94.6112.3118.5 + 71 6 20 3 4 5 6 2 2 3 3 4-11 94.2112.1118.4 + 71 6 21 0 3 5 5 6 5 5 6 4-11 95.2111.8118.4 + 71 6 22 4 7 0 4 9 7 5 6 5-11 98.4111.6118.4 + 71 6 23 7 7 9 12 9 7 3 2 7-11 94.9111.4118.4 + 71 6 24 3 3 4 2 5 3 12 7 5-11105.3111.2118.4 + 71 6 25 12 18 22 27 48 56 27 48 32-11110.1111.0118.4 + 71 6 26 18 15 18 22 9 5 4 5 12-11115.9110.9118.4 + 71 6 27 6 4 4 4 5 4 3 4 4-11122.5110.8118.4 + 71 6 28 2 3 4 6 15 12 15 15 9-11131.1110.7118.4 + 71 6 29 7 18 9 18 27 27 48 32 23-11141.1110.7118.4 + 71 6 30 18 6 7 6 12 9 7 15 10-11148.8110.8118.3 + 71 7 1 15 18 9 9 9 5 9 9 10-11145.1110.9118.3 + 71 7 2 22 15 12 15 22 9 6 15 15-11139.4111.0118.2 + 71 7 3 9 5 6 5 7 6 5 12 7-11130.5111.2118.2 + 71 7 4 15 7 5 3 5 5 6 12 7-11134.7111.3118.1 + 71 7 5 6 6 6 6 5 5 12 9 7-11134.6111.4118.0 + 71 7 6 22 6 4 3 4 9 12 9 9-11127.0111.5117.9 + 71 7 7 3 3 2 3 3 3 4 4 3-11122.5111.4117.7 + 71 7 8 4 15 7 5 3 9 9 15 8-11116.7111.4117.6 + 71 7 9 18 9 7 2 2 2 5 5 6-11107.7111.4117.5 + 71 7 10 5 3 0 0 2 3 4 2 2-11108.5111.6117.3 + 71 7 11 4 6 3 4 5 12 6 5 6-11108.7111.9117.2 + 71 7 12 9 4 4 5 5 7 15 9 7-11109.6112.4117.0 + 71 7 13 12 6 15 6 6 9 12 5 9-11111.2113.0116.9 + 71 7 14 6 7 9 12 12 7 5 5 8-11113.9113.5116.7 + 71 7 15 7 18 7 7 7 5 5 5 8-11125.6114.1116.6 + 71 7 16 6 5 6 6 7 6 5 6 6-11125.3114.6116.5 + 71 7 17 9 5 4 2 6 3 2 2 4-11121.5115.0116.3 + 71 7 18 2 9 5 6 15 7 5 5 7-11121.0115.4116.2 + 71 7 19 15 12 5 3 5 5 5 6 7-11126.9115.7116.1 + 71 7 20 3 2 0 3 7 7 3 3 4-11118.8115.8116.0 + 71 7 21 6 6 5 12 22 56 39 22 21-11113.6115.9115.8 + 71 7 22 32 15 5 2 3 3 5 3 9-11115.7115.9115.7 + 71 7 23 4 4 5 7 9 7 9 18 8-11121.3115.8115.6 + 71 7 24 15 4 3 3 5 5 3 3 5-11134.5115.8115.4 + 71 7 25 3 3 2 2 6 4 3 3 3-11121.4115.8115.3 + 71 7 26 0 0 2 4 5 22 67 39 17-11122.3115.8115.2 + 71 7 27 18 5 7 12 7 9 5 6 9-11119.0115.8115.1 + 71 7 28 9 15 9 5 2 3 2 2 6-11116.7115.9115.0 + 71 7 29 0 0 3 5 5 7 9 22 6-11114.3116.1114.8 + 71 7 30 12 7 7 15 9 4 6 5 8-11116.3116.2114.7 + 71 7 31 6 6 9 9 9 4 22 7 9-11113.2116.3114.6 + 71 8 1 6 4 5 4 4 5 9 9 6-11109.7116.2114.5 + 71 8 2 27 39 32 12 9 4 6 6 17-11109.2116.1114.3 + 71 8 3 7 3 2 2 5 4 4 4 4-11106.4116.1114.1 + 71 8 4 6 7 6 9 7 5 9 5 7-11106.4116.0114.0 + 71 8 5 27 32 32 5 3 2 3 7 14-11106.9116.0113.8 + 71 8 6 0 0 0 0 2 3 4 5 2-11105.0115.9113.7 + 71 8 7 2 0 3 5 4 6 6 12 5-11102.6115.8113.6 + 71 8 8 12 22 9 9 9 9 5 12 11-11108.6115.6113.5 + 71 8 9 9 6 6 5 9 15 9 15 9-11112.1115.3113.4 + 71 8 10 18 15 12 4 7 12 7 15 11-11109.7114.9113.3 + 71 8 11 15 27 9 27 18 9 6 6 15-11104.7114.4113.3 + 71 8 12 9 7 22 9 18 7 3 4 10-11102.1114.1113.3 + 71 8 13 9 7 12 4 4 5 3 6 6-11101.9113.8113.4 + 71 8 14 6 4 2 3 4 5 3 5 4-11100.7113.5113.4 + 71 8 15 2 3 4 5 9 5 5 9 5-11 97.3113.1113.4 + 71 8 16 6 22 5 9 6 7 5 5 8-11 98.8112.9113.5 + 71 8 17 3 3 3 6 6 6 6 56 11-11103.6112.8113.6 + 71 8 18 32 22 5 12 9 18 5 7 14-11110.5112.8113.6 + 71 8 19 9 5 4 3 2 4 2 2 4-11126.2112.9113.7 + 71 8 20 2 4 2 0 2 6 5 7 4-11141.1113.0113.9 + 71 8 21 5 9 7 6 6 9 12 12 8-11150.3113.1114.0 + 71 8 22 12 6 9 7 6 9 5 18 9-11151.2113.1114.2 + 71 8 23 32 15 12 9 9 6 7 5 12-11148.6113.2114.4 + 71 8 24 7 6 5 5 6 7 9 12 7-11157.6113.2114.5 + 71 8 25 6 6 4 6 6 7 5 15 7-11143.5113.0114.6 + 71 8 26 18 6 18 12 5 5 12 6 10-11138.8112.7114.6 + 71 8 27 6 3 3 0 2 4 3 5 3-11135.3112.5114.6 + 71 8 28 4 2 2 4 7 15 7 5 6-11123.6112.2114.6 + 71 8 29 12 4 5 3 9 7 3 5 6-11112.0111.9114.6 + 71 8 30 12 3 4 4 3 6 4 15 6-11103.3111.6114.6 + 71 8 31 48 39 32 27 12 12 39 48 32-11 96.3111.4114.6 + 71 9 1 22 15 12 7 6 6 9 7 11-11 90.3111.1114.6 + 71 9 2 2 2 2 0 0 2 2 3 2-11 90.1110.8114.6 + 71 9 3 9 5 6 5 7 3 4 2 5-11 92.5110.3114.7 + 71 9 4 2 0 3 3 2 9 18 32 9-11 92.6109.9114.8 + 71 9 5 15 18 15 12 15 15 15 9 14-11 95.2109.5114.8 + 71 9 6 4 5 15 12 22 15 5 15 12-11101.8109.1114.9 + 71 9 7 32 22 15 12 7 15 22 32 20-11107.3108.8115.1 + 71 9 8 15 22 12 18 6 5 9 6 12-11103.5108.7115.2 + 71 9 9 6 3 4 9 15 9 4 9 7-11 98.3108.6115.2 + 71 9 10 12 9 6 4 5 2 2 5 6-11 91.8108.6115.3 + 71 9 11 5 7 5 7 6 5 5 5 6-11 89.3108.7115.4 + 71 9 12 7 12 9 15 2 4 6 7 8-11 91.6108.9115.4 + 71 9 13 39 22 32 7 12 7 12 6 17-11 98.9109.1115.4 + 71 9 14 7 9 12 7 3 7 9 15 9-11108.1109.3115.5 + 71 9 15 9 5 7 18 12 6 9 5 9-11113.5109.6115.6 + 71 9 16 12 7 12 15 6 5 5 27 11-11112.5109.7115.6 + 71 9 17 12 6 5 7 7 4 12 48 13-11116.5109.9115.7 + 71 9 18 80111 56 67 15 22 15 7 47-11116.6109.9115.7 + 71 9 19 5 12 15 6 5 12 7 7 9-11113.1109.8115.8 + 71 9 20 15 18 12 22 18 9 27 9 16-11110.3109.8115.9 + 71 9 21 7 4 2 2 4 5 9 5 5-11109.2109.8115.9 + 71 9 22 6 7 2 3 3 3 4 5 4-11110.3109.9116.0 + 71 9 23 0 2 4 2 2 5 0 2 2-11108.1110.0116.1 + 71 9 24 0 0 0 0 3 6 22 18 6-11106.3110.2116.1 + 71 9 25 18 67 39 39 27 15 7 7 27-11109.2110.4116.1 + 71 9 26 9 6 5 5 5 12 32 94 21-11111.9110.6116.1 + 71 9 27 94 56 39 39 27 22 22 9 39-11116.6110.7116.1 + 71 9 28 15 9 15 15 7 5 7 5 10-11116.6110.6116.1 + 71 9 29 12 4 5 3 4 4 7 7 6-11114.8110.3116.1 + 71 9 30 6 9 15 18 27 39 39 32 23-11116.9109.8116.1 + 71 10 1 39 32 27 12 12 15 9 22 21-11114.6109.2116.1 + 71 10 2 27 22 22 22 15 18 12 27 21-11114.2108.7116.1 + 71 10 3 48 32 12 9 18 22 6 9 20-11113.4108.1116.0 + 71 10 4 18 12 9 12 9 5 15 22 13-11109.1107.4116.0 + 71 10 5 27 22 18 6 15 9 7 22 16-11106.1106.9116.0 + 71 10 6 39 18 5 18 15 48 4 9 20-11102.4106.5116.0 + 71 10 7 6 6 2 5 4 7 48 48 16-11 98.3106.1116.0 + 71 10 8 32 56 12 22 32 15 9 7 23-11 98.1105.9116.0 + 71 10 9 32 80 56 27 32 27 22 22 37-11 99.5105.8116.1 + 71 10 10 9 15 9 7 3 6 7 6 8-11 95.4105.8116.1 + 71 10 11 6 5 9 6 22 18 9 9 11-11 94.5106.0116.1 + 71 10 12 5 6 0 2 7 22 12 15 9-11 94.9106.3116.1 + 71 10 13 18 15 15 15 6 22 15 9 14-11 91.0106.7116.1 + 71 10 14 12 5 5 4 15 6 9 18 9-11 89.9107.0116.1 + 71 10 15 18 9 3 7 7 6 4 7 8-11 89.8107.4116.0 + 71 10 16 5 5 2 4 7 4 6 0 4-11 89.3107.7116.0 + 71 10 17 2 2 5 4 3 2 4 5 3-11 94.7108.0116.0 + 71 10 18 3 4 2 2 0 3 4 0 2-11 99.1108.3115.9 + 71 10 19 4 2 3 0 2 2 0 4 2-11109.8108.6115.8 + 71 10 20 3 2 4 4 6 4 6 5 4-11115.6108.8115.8 + 71 10 21 6 4 3 4 3 4 6 7 5-11119.3109.1115.7 + 71 10 22 3 4 22 5 4 12 15 6 9-11122.2109.4115.7 + 71 10 23 2 0 3 3 12 9 9 7 6-11123.9109.6115.7 + 71 10 24 9 12 12 12 32 7 12 6 13-11125.7109.8115.7 + 71 10 25 12 6 5 3 7 6 7 6 7-11124.3109.7115.7 + 71 10 26 0 0 0 0 0 3 3 7 2-11119.3109.7115.7 + 71 10 27 6 4 3 3 2 3 3 4 4-11116.1109.7115.7 + 71 10 28 2 6 12 15 12 15 32 39 17-11110.5109.7115.8 + 71 10 29 48 39 18 18 9 22 32 27 27-11105.1109.6115.8 + 71 10 30 32 32 22 7 6 9 3 2 14-11107.5109.7115.8 + 71 10 31 7 5 5 3 3 7 5 3 5-11106.2109.9115.8 + 71 11 1 12 12 5 4 4 4 3 4 6-11109.5110.1115.8 + 71 11 2 2 0 2 3 3 4 6 3 3-11111.7110.2115.8 + 71 11 3 3 4 3 3 4 2 3 2 3-11115.2110.4115.7 + 71 11 4 9 6 5 4 5 6 6 3 6-11112.8110.5115.7 + 71 11 5 4 4 4 5 6 5 4 5 5-11116.0110.6115.6 + 71 11 6 5 0 3 2 3 2 3 4 3-11109.5110.7115.6 + 71 11 7 6 18 7 6 12 5 0 2 7-11104.6110.9115.6 + 71 11 8 6 6 6 6 7 9 18 9 8-11100.7111.1115.5 + 71 11 9 6 4 3 3 3 5 4 2 4-11101.6111.3115.5 + 71 11 10 5 5 3 2 3 6 7 7 5-11102.7111.5115.5 + 71 11 11 27 27 7 7 12 7 32 12 16-11104.6111.8115.6 + 71 11 12 18 7 18 4 4 6 9 9 9-11102.6112.1115.6 + 71 11 13 3 3 5 3 3 4 2 2 3-11103.3112.4115.7 + 71 11 14 2 0 0 0 0 0 2 5 1-11103.1112.6115.9 + 71 11 15 5 2 0 2 0 0 3 3 2-11101.1112.9116.0 + 71 11 16 4 2 2 3 0 2 2 2 2-11104.7113.1116.1 + 71 11 17 0 0 0 0 0 0 4 3 1-11105.4113.4116.3 + 71 11 18 12 18 6 5 6 5 2 4 7-11104.1113.5116.4 + 71 11 19 4 6 4 3 12 15 5 6 7-11107.6113.7116.6 + 71 11 20 3 6 5 9 3 7 9 7 6-11113.0113.9116.7 + 71 11 21 6 6 12 12 15 6 15 18 11-11114.9114.1116.9 + 71 11 22 32 27 39 27 15 18 32 56 31-11118.8114.2117.0 + 71 11 23 67 48 80 18 27 32 32 56 45-11120.4114.3117.1 + 71 11 24 56 48 32 18 48 27 18 39 36-11121.6114.5117.2 + 71 11 25 39 80 67 48 27 32 27 27 43-11121.7114.6117.3 + 71 11 26 22 27 32 27 15 12 15 2 19-11128.8114.7117.4 + 71 11 27 7 9 5 6 6 12 7 9 8-11128.1114.8117.4 + 71 11 28 12 7 9 18 9 5 15 5 10-11125.6114.8117.4 + 71 11 29 7 5 3 3 5 6 7 5 5-11117.2114.7117.4 + 71 11 30 6 5 4 5 6 2 3 7 5-11114.1114.4117.4 + 71 12 1 6 6 6 6 3 6 7 9 6-11116.9114.1117.5 + 71 12 2 3 4 0 3 7 12 4 6 5-11109.4113.7117.5 + 71 12 3 6 7 22 12 9 18 18 4 12-11109.7113.4117.6 + 71 12 4 7 12 6 7 3 7 6 12 8-11106.2113.1117.7 + 71 12 5 6 4 6 5 7 3 2 4 5-11111.7112.9117.8 + 71 12 6 5 6 2 2 0 0 3 3 3-11111.8112.8117.9 + 71 12 7 0 3 0 0 0 3 3 0 1-11113.0112.8118.1 + 71 12 8 6 2 2 3 4 4 2 3 3-11114.7112.8118.2 + 71 12 9 6 12 4 9 3 7 9 9 7-11121.2112.9118.4 + 71 12 10 6 0 0 0 5 5 3 2 3-11122.4113.0118.5 + 71 12 11 3 0 0 4 4 12 9 12 6-11122.2113.2118.6 + 71 12 12 6 4 3 3 0 12 15 27 9-11124.0113.4118.8 + 71 12 13 18 9 15 12 9 12 12 18 13-11118.7113.6118.9 + 71 12 14 3 4 3 5 4 2 0 2 3-11118.5113.8119.1 + 71 12 15 7 3 3 3 3 4 4 0 3-11117.3114.1119.2 + 71 12 16 2 2 0 4 2 3 18 32 8-11117.6114.3119.3 + 71 12 17 56 56 32 18 32132154 56 67-11131.2114.5119.4 + 71 12 18 22 27 15 48 32 12 12 7 22-11134.6114.7119.6 + 71 12 19 3 5 18 22 9 15 9 4 11-11134.4114.9119.7 + 71 12 20 2 0 0 0 2 3 7 12 3-11135.2115.1119.9 + 71 12 21 5 4 4 4 9 7 27 22 10-11135.7115.2120.0 + 71 12 22 15 18 18 15 27 18 22 18 19-11139.2115.3120.1 + 71 12 23 18 18 9 7 15 12 18 3 13-11132.9115.4120.2 + 71 12 24 9 9 9 7 6 3 6 4 7-11129.4115.4120.3 + 71 12 25 6 9 6 4 5 6 4 9 6-11126.8115.4120.3 + 71 12 26 22 22 12 5 4 7 7 15 12-11120.2115.5120.4 + 71 12 27 7 9 9 4 0 0 0 0 4-11120.2115.4120.4 + 71 12 28 0 4 3 2 2 4 6 7 4-11113.2115.4120.3 + 71 12 29 6 15 15 22 18 12 7 22 15-11112.7115.3120.3 + 71 12 30 32 22 22 18 12 9 7 5 16-11112.4115.3120.3 + 71 12 31 12 12 5 3 3 6 6 12 7-11106.8115.2120.2 + 72 1 1 9 4 4 4 5 6 12 15 7-11104.7115.2120.2 + 72 1 2 9 6 6 5 3 9 22 4 8-11103.1115.2120.2 + 72 1 3 3 4 18 9 4 4 6 4 7-11 99.6115.2120.2 + 72 1 4 18 15 22 7 3 3 4 7 10-11 97.9115.3120.3 + 72 1 5 9 7 6 7 7 6 4 2 6-11 99.1115.5120.3 + 72 1 6 2 7 2 0 2 2 0 2 2-11103.1115.7120.4 + 72 1 7 4 3 0 0 2 3 12 5 4-11 99.5116.0120.5 + 72 1 8 7 5 2 2 2 5 7 5 4-11 98.8116.5120.6 + 72 1 9 7 9 3 4 4 4 5 6 5-11 94.3117.3120.6 + 72 1 10 9 4 2 0 2 12 9 15 7-11 92.3118.3120.6 + 72 1 11 32 22 12 9 15 12 5 12 15-11 95.8119.3120.7 + 72 1 12 12 7 4 4 5 4 4 6 6-11 99.6120.3120.7 + 72 1 13 9 3 2 2 3 3 4 5 4-11 99.0121.2120.7 + 72 1 14 7 4 2 0 3 2 4 4 3-11105.8122.1120.7 + 72 1 15 5 12 6 15 32 48 27 5 19-11115.4122.7120.7 + 72 1 16 15 18 12 56 22 67 27 12 29-11113.5123.2120.7 + 72 1 17 27 27 12 9 18 22 32 9 20-11113.9123.7120.7 + 72 1 18 27 22 22 18 18 27 7 9 19-11110.9124.0120.6 + 72 1 19 15 12 9 9 12 18 7 7 11-11115.9124.1120.6 + 72 1 20 5 12 7 6 6 15 9 7 8-11123.0124.2120.6 + 72 1 21 6 6 9 18 67 56 7 6 22-11127.9124.3120.6 + 72 1 22 18 27 22 12 15 32 39 32 25-11123.2124.3120.5 + 72 1 23 56 56 39 22 18 12 27 27 32-11136.3124.5120.5 + 72 1 24 9 9 9 15 6 4 22 7 10-11137.2124.7120.4 + 72 1 25 6 22 22 12 15 18 18 22 17-11131.8125.0120.4 + 72 1 26 18 22 18 56 15 15 18 12 22-11123.8125.3120.4 + 72 1 27 7 15 22 15 22 15 15 12 15-11118.9125.5120.4 + 72 1 28 7 12 12 18 9 32 56 39 23-11119.5125.6120.5 + 72 1 29 9 22 6 6 18 22 18 15 15-11116.1125.6120.5 + 72 1 30 18 12 4 5 5 6 4 18 9-11112.9125.6120.6 + 72 1 31 6 9 2 3 4 15 9 5 7-11111.9125.6120.7 + 72 2 1 2 3 6 12 15 9 4 7 7-11106.7125.4120.9 + 72 2 2 15 18 22 9 15 12 9 6 13-11106.5125.4121.0 + 72 2 3 9 9 3 6 9 22 7 4 9-11104.8125.4121.1 + 72 2 4 12 15 15 12 6 3 6 6 9-11103.6125.5121.2 + 72 2 5 4 5 6 6 4 4 12 7 6-11102.6125.6121.3 + 72 2 6 4 6 6 4 2 3 12 9 6-11 98.6125.8121.4 + 72 2 7 7 5 5 4 4 6 9 27 8-11102.2126.0121.5 + 72 2 8 12 15 4 7 6 3 2 4 7-11104.3126.3121.6 + 72 2 9 4 3 2 2 2 3 7 6 4-11106.3126.6121.6 + 72 2 10 15 12 6 4 7 6 18 15 10-11113.6126.9121.6 + 72 2 11 7 4 9 15 7 5 3 5 7-11118.4127.2121.7 + 72 2 12 9 9 4 2 3 2 0 2 4-11123.9127.7121.7 + 72 2 13 2 9 5 39 32 32 27 27 22-11126.3128.0121.7 + 72 2 14 27 18 15 9 4 7 15 27 15-11136.7128.3121.7 + 72 2 15 12 27 18 12 12 5 6 9 13-11145.8128.4121.7 + 72 2 16 15 12 7 6 7 6 5 5 8-11153.2128.4121.7 + 72 2 17 7 7 4 18 32 32 48 27 22-11168.2128.4121.7 + 72 2 18 12 15 15 5 0 2 4 39 12-11184.4128.4121.6 + 72 2 19 56 9 4 2 12 15 12 6 15-11190.6128.5121.5 + 72 2 20 22 22 9 12 12 5 3 7 12-11202.5128.5121.5 + 72 2 21 9 15 7 7 12 15 6 3 9-11189.6128.5121.4 + 72 2 22 2 2 6 6 4 7 3 5 4-11180.4128.5121.3 + 72 2 23 5 5 4 4 5 7 9 9 6-11175.6128.5121.2 + 72 2 24 7 15 39 56 48 39 39 22 33-11164.2128.4121.2 + 72 2 25 22 22 12 7 15 22 15 9 16-11151.9128.3121.1 + 72 2 26 15 6 5 4 4 2 7 3 6-11149.3128.3121.1 + 72 2 27 2 0 0 5 4 4 9 12 5-11140.3128.4121.2 + 72 2 28 6 12 7 4 3 2 6 5 6-11133.2128.6121.3 + 72 2 29 2 3 3 2 0 2 2 2 2-11130.5128.8121.4 + 72 3 1 2 5 4 7 9 6 18 15 8-11125.5128.9121.6 + 72 3 2 9 9 5 5 9 12 12 18 10-11129.7128.9121.8 + 72 3 3 18 12 27 15 9 27 12 7 16-11131.1128.9122.0 + 72 3 4 9 4 12 12 7 7 4 5 8-11137.1128.8122.1 + 72 3 5 6 4 5 4 3 4 7 7 5-11140.8128.7122.2 + 72 3 6 15 12 6 6 3 2 7154 26-11143.7128.6122.3 + 72 3 7 94 80 48 56 32 18 12 22 45-11143.3128.6122.3 + 72 3 8 18 9 4 7 12 39 7 3 12-11141.6128.6122.3 + 72 3 9 7 12 6 18 12 12 9 5 10-11137.4128.6122.4 + 72 3 10 4 0 4 0 0 2 3 9 3-11132.5128.6122.4 + 72 3 11 15 15 12 0 0 2 7 2 7-11134.9128.6122.5 + 72 3 12 2 0 0 3 5 3 4 7 3-11128.5128.5122.5 + 72 3 13 7 4 6 15 9 3 3 7 7-11129.3128.5122.5 + 72 3 14 7 2 6 5 3 2 2 5 4-11129.7128.6122.5 + 72 3 15 2 2 3 4 5 5 9 12 5-11135.3128.6122.5 + 72 3 16 48 48 9 12 18 7 6 15 20-11133.0128.7122.5 + 72 3 17 15 15 9 18 15 9 22 22 16-11133.8128.8122.4 + 72 3 18 27 15 18 7 4 6 4 5 11-11131.9128.9122.4 + 72 3 19 7 5 3 4 5 2 4 7 5-11131.0129.0122.4 + 72 3 20 9 5 6 2 4 4 4 6 5-11135.2128.9122.3 + 72 3 21 9 5 3 4 4 4 4 7 5-11135.8128.8122.3 + 72 3 22 15 15 3 6 6 5 15 12 10-11131.2128.5122.3 + 72 3 23 5 3 6 15 6 5 12 12 8-11140.0128.3122.3 + 72 3 24 22 39 22 12 12 27 22 6 20-11126.6127.9122.4 + 72 3 25 12 18 7 6 3 5 9 6 8-11116.4127.6122.4 + 72 3 26 5 6 5 7 5 7 22 27 11-11110.5127.3122.5 + 72 3 27 27 22 18 7 6 12 39 18 19-11104.1126.9122.5 + 72 3 28 39 22 12 6 3 3 3 3 11-11101.1126.5122.5 + 72 3 29 7 7 18 27 18 18 39 39 22-11 96.5126.1122.5 + 72 3 30 56 48 32 15 15 18 22 12 27-11 98.3125.4122.5 + 72 3 31 15 18 15 7 6 5 27 27 15-11 95.7124.8122.5 + 72 4 1 7 7 27 7 12 7 22 48 17-11 96.0124.0122.5 + 72 4 2 12 48 7 6 2 3 5 5 11-11 97.3123.5122.5 + 72 4 3 0 3 3 2 2 3 5 12 4-11 98.1123.3122.5 + 72 4 4 18 18 12 6 32 22 18 9 17-11101.0123.1122.5 + 72 4 5 27 32 27 18 18 6 5 4 17-11105.3123.1122.5 + 72 4 6 3 4 6 18 18 7 5 3 8-11118.1123.2122.5 + 72 4 7 3 9 12 12 12 6 5 9 9-11121.3123.5122.5 + 72 4 8 5 4 2 3 4 15 9 6 6-11123.8123.8122.5 + 72 4 9 18 2 0 0 2 3 0 0 3-11130.5124.1122.5 + 72 4 10 4 6 5 5 3 5 9 6 5-11130.3124.4122.5 + 72 4 11 5 15 6 3 3 4 6 5 6-11129.8124.6122.5 + 72 4 12 6 12 5 6 9 15 15 15 10-11128.3124.8122.5 + 72 4 13 22 12 9 6 12 7 15 9 12-11128.4124.9122.5 + 72 4 14 9 12 9 7 5 6 3 6 7-11125.0124.8122.5 + 72 4 15 7 6 7 5 7 6 6 6 6-11126.0124.7122.6 + 72 4 16 9 9 4 4 3 2 5 9 6-11124.3124.3122.6 + 72 4 17 12 6 5 4 4 4 6 7 6-11120.3124.0122.6 + 72 4 18 32 39 22 22 18 15 22 18 24-11115.7123.6122.7 + 72 4 19 9 6 6 22 22 6 4 2 10-11115.4123.3122.7 + 72 4 20 3 0 5 6 6 9 15 22 8-11111.3123.1122.7 + 72 4 21 39 27 18 18 15 18 12 2 19-11106.9123.0122.7 + 72 4 22 2 0 0 2 6 15 27 27 10-11109.4123.0122.7 + 72 4 23 9 6 9 9 7 4 6 18 9-11108.4123.0122.7 + 72 4 24 5 3 6 5 7 5 3 3 5-11110.2123.1122.8 + 72 4 25 3 2 2 3 3 3 3 5 3-11111.6123.3122.9 + 72 4 26 3 3 2 0 2 2 3 6 3-11109.9123.7123.1 + 72 4 27 4 3 3 0 5 22 9 7 7-11109.0124.0123.2 + 72 4 28 18 9 18 22 32 56 18 5 22-11103.2124.2123.4 + 72 4 29 15 39 67 27 48 32 56 56 43-11 98.6124.5123.5 + 72 4 30 48 15 6 15 15 7 9 18 17-11 97.0124.6123.6 + 72 5 1 22 22 27 12 12 15 18 12 18-11 95.0124.7123.7 + 72 5 2 12 18 32 27 15 9 12 18 18-11 94.9124.8123.8 + 72 5 3 7 6 6 7 15 7 5 4 7-11 97.7125.0123.9 + 72 5 4 5 7 6 4 7 6 5 2 5-11102.7125.1123.9 + 72 5 5 6 6 3 5 3 5 5 15 6-11108.7125.4123.9 + 72 5 6 7 5 12 7 15 9 12 6 9-11117.6125.7123.9 + 72 5 7 7 3 0 2 2 3 3 5 3-11120.9126.2123.9 + 72 5 8 3 3 2 2 4 4 9 3 4-11128.8126.8123.8 + 72 5 9 5 7 22 15 12 9 18 22 14-11133.0127.4123.8 + 72 5 10 7 7 12 9 7 7 15 7 9-11138.3128.0123.7 + 72 5 11 3 9 5 7 7 9 7 9 7-11140.8128.6123.7 + 72 5 12 7 15 15 12 9 5 6 5 9-11148.6129.1123.6 + 72 5 13 15 5 6 2 3 9 9 15 8-11161.6129.6123.6 + 72 5 14 9 6 7 6 7 6 6 6 7-11162.8130.0123.6 + 72 5 15 5 2 4 6 4 7179 94 38-11164.6130.3123.5 + 72 5 16 80 22 9 12 6 5 5 5 18-11161.8130.6123.5 + 72 5 17 15 9 12 5 9 12 5 7 9-11169.3130.6123.4 + 72 5 18 18 18 12 12 6 4 4 4 10-11165.5130.6123.4 + 72 5 19 3 4 3 3 2 2 4 7 4-11156.7130.6123.3 + 72 5 20 7 4 3 6 3 2 2 6 4-11152.3130.7123.3 + 72 5 21 5 4 3 3 2 4 6 4 4-11148.2130.7123.3 + 72 5 22 7 9 5 3 3 4 6 5 5-11143.3130.8123.2 + 72 5 23 6 3 2 2 5 18 9 12 7-11135.2130.9123.2 + 72 5 24 9 9 5 2 3 4 3 2 5-11135.5131.0123.2 + 72 5 25 4 5 6 4 4 4 6 9 5-11127.3131.3123.2 + 72 5 26 12 7 4 5 4 9 12 15 9-11116.3131.6123.2 + 72 5 27 7 5 2 3 5 12 15 15 8-11114.3131.8123.1 + 72 5 28 15 7 12 18 27 56 32 6 22-11110.8132.1123.1 + 72 5 29 9 12 7 15 9 9 6 9 10-11116.2132.4123.0 + 72 5 30 15 15 5 6 18 22 22 12 14-11116.8132.5122.9 + 72 5 31 12 22 15 12 9 9 5 15 12-11122.5132.7122.9 + 72 6 1 9 5 6 5 5 4 6 4 6-11128.2132.9122.8 + 72 6 2 5 7 5 5 6 12 5 7 7-11130.0133.0122.8 + 72 6 3 18 7 5 12 18 18 12 7 12-11137.5133.1122.7 + 72 6 4 15 7 12 7 15 22 18 9 13-11149.5133.2122.7 + 72 6 5 15 15 15 15 7 6 9 7 11-11164.8133.3122.6 + 72 6 6 3 2 3 3 9 12 6 15 7-11159.1133.4122.5 + 72 6 7 12 7 5 5 15 6 5 9 8-11152.7133.4122.4 + 72 6 8 5 9 5 4 6 6 6 6 6-11150.2133.5122.3 + 72 6 9 5 5 4 7 3 2 2 4 4-11149.1133.6122.2 + 72 6 10 5 5 5 3 4 5 2 5 4-11139.5133.8122.2 + 72 6 11 6 4 4 3 3 2 4 3 4-11143.2134.0122.1 + 72 6 12 3 4 2 0 6 2 2 5 3-11149.7134.2122.0 + 72 6 13 7 4 2 2 3 4 6 7 4-11138.9134.4122.0 + 72 6 14 6 6 9 5 5 12 22 12 10-11136.5134.5122.0 + 72 6 15 12 32 9 6 9 12 6 5 11-11139.5134.5122.0 + 72 6 16 6 6 9 7 9 5 7 12 8-11142.7134.5122.0 + 72 6 17 12 12 27 27 56111 94154 62-11149.6134.6121.9 + 72 6 18236154132 94132154 80 27126-11149.0134.7121.9 + 72 6 19 32 32 48 12 12 7 6 3 19-11143.2134.7121.8 + 72 6 20 32 7 6 5 6 4 4 6 9-11142.5134.8121.7 + 72 6 21 4 4 3 4 5 4 12 7 5-11139.0134.9121.7 + 72 6 22 9 4 12 9 18 9 12 22 12-11135.1135.0121.6 + 72 6 23 9 9 18 12 12 12 12 7 11-11130.7134.9121.5 + 72 6 24 12 5 6 7 15 27 27 9 14-11128.5134.7121.5 + 72 6 25 5 4 5 5 6 9 7 6 6-11125.5134.4121.4 + 72 6 26 3 15 9 12 7 18 6 6 10-11120.8134.2121.4 + 72 6 27 6 7 15 7 9 22 48 22 17-11121.9133.9121.3 + 72 6 28 22 12 12 12 15 9 15 6 13-11127.3133.6121.3 + 72 6 29 18 9 7 9 15 9 7 12 11-11132.4133.2121.2 + 72 6 30 4 5 4 4 4 2 2 2 3-11134.5132.9121.1 + 72 7 1 3 0 4 4 12 5 7 4 5-11133.0132.5121.1 + 72 7 2 4 6 3 3 5 12 9 15 7-11137.0132.1121.1 + 72 7 3 18 9 7 3 6 5 5 6 7-11139.9131.8121.1 + 72 7 4 5 5 3 2 5 5 2 4 4-11146.7131.4121.1 + 72 7 5 3 3 2 2 2 3 4 3 3-11150.2131.0121.1 + 72 7 6 5 3 3 2 2 3 4 7 4-11146.1130.8121.1 + 72 7 7 7 9 6 6 9 15 15 15 10-11143.2130.6121.1 + 72 7 8 15 18 18 7 6 5 4 3 10-11136.7130.5121.2 + 72 7 9 4 4 3 7 12 7 5 9 6-11127.1130.5121.2 + 72 7 10 12 7 6 4 7 5 12 6 7-11121.7130.5121.2 + 72 7 11 4 5 9 5 5 4 12 7 6-11123.6130.4121.3 + 72 7 12 4 5 6 9 18 3 3 7 7-11119.3130.3121.3 + 72 7 13 3 5 2 2 4 4 2 4 3-11119.9130.3121.3 + 72 7 14 4 3 3 2 2 3 4 4 3-11119.5130.1121.3 + 72 7 15 9 5 5 2 2 3 6 12 6-11117.6129.7121.3 + 72 7 16 12 9 7 3 6 9 15 7 9-11115.1129.3121.2 + 72 7 17 9 9 7 4 5 4 9 15 8-11114.6129.0121.2 + 72 7 18 7 7 6 6 3 5 3 4 5-11108.9128.9121.1 + 72 7 19 3 6 5 9 5 7 15 18 9-11108.9128.9121.1 + 72 7 20 5 6 7 7 5 5 3 3 5-11110.9129.1121.0 + 72 7 21 4 4 2 2 0 3 4 3 3-11111.7129.4121.0 + 72 7 22 3 2 2 2 4 15 32 18 10-11111.6129.5120.9 + 72 7 23 5 12 7 15 12 12 9 4 10-11109.6129.4120.8 + 72 7 24 3 0 3 15 12 15 22 67 17-11109.5129.4120.7 + 72 7 25 32 39 39 32 56 12 7 48 33-11112.4129.3120.6 + 72 7 26 15 7 32 18 15 27 9 15 17-11120.6129.1120.5 + 72 7 27 6 22 18 7 5 7 3 4 9-11127.2128.8120.4 + 72 7 28 6 6 5 7 4 4 3 4 5-11133.3128.4120.4 + 72 7 29 2 4 3 4 2 5 5 4 4-11139.1128.0120.3 + 72 7 30 0 2 2 3 5 7 6 6 4-11141.2127.6120.2 + 72 7 31 4 4 4 2 2 2 15 12 6-11150.2127.3120.2 + 72 8 1 18 27 7 6 6 5 5 6 10-11156.3126.9120.1 + 72 8 2 9 6 6 4 3 4 4 4 5-11150.4126.5120.0 + 72 8 3 2 4 4 6 6 7 5 3 5-11147.1126.1120.0 + 72 8 4 67236132 27 56 27111400132-11146.0125.7119.9 + 72 8 5236236132154179300154 67182-11146.5125.4119.9 + 72 8 6154132132 56 39 56111 18 87-11143.4125.1119.9 + 72 8 7 39 32 18 15 12 27 9 7 20-11139.0124.9119.9 + 72 8 8 5 3 2 3 12 9 9 32 9-11125.3124.6119.9 + 72 8 9 39111111236 27 32 18 18 74-11123.8124.2119.8 + 72 8 10 9 6 12 18 32 27 15 27 18-11118.6123.9119.8 + 72 8 11 18 18 9 9 18 18 22 27 17-11113.3123.6119.8 + 72 8 12 9 9 4 5 5 9 6 7 7-11107.6123.3119.8 + 72 8 13 4 6 5 3 2 9 5 5 5-11101.7123.1119.7 + 72 8 14 9 6 4 7 18 9 9 7 9-11 97.9122.8119.6 + 72 8 15 7 7 27 9 5 5 9 9 10-11 97.6122.5119.5 + 72 8 16 9 6 9 4 5 5 5 3 6-11100.6122.3119.4 + 72 8 17 7 2 6 7 7 7 6 7 6-11106.4122.0119.3 + 72 8 18 7 6 7 12 18 15 22 15 13-11109.6121.8119.1 + 72 8 19 15 22 9 5 18 22 15 7 14-11116.2121.7118.9 + 72 8 20 7 7 6 15 15 22 18 27 15-11117.9121.6118.6 + 72 8 21 18 18 12 12 9 12 18 18 15-11119.5121.5118.3 + 72 8 22 9 7 18 9 7 4 6 4 8-11127.3121.5118.0 + 72 8 23 3 3 4 3 2 2 3 2 3-11122.9121.3117.8 + 72 8 24 0 2 3 4 3 3 4 0 2-11122.6121.2117.5 + 72 8 25 5 0 6 4 3 3 3 15 5-11127.8121.0117.3 + 72 8 26 22 39 39 6 6 12 12 12 19-11137.4120.8117.2 + 72 8 27 27 56 32 39 22 12 5 5 25-11144.1120.6117.0 + 72 8 28 4 4 4 12 12 15 12 5 9-11147.2120.4116.9 + 72 8 29 6 7 5 6 6 6 15 9 8-11163.3120.3116.8 + 72 8 30 15 3 2 7 7 5 7 6 7-11163.3120.2116.7 + 72 8 31 12 9 12 3 4 5 4 4 7-11154.2120.0116.6 + 72 9 1 9 6 5 6 3 3 3 5 5-11144.3119.7116.6 + 72 9 2 2 3 6 5 6 7 9 12 6-11139.7119.6116.5 + 72 9 3 9 2 2 5 2 4 9 9 5-11129.4119.4116.4 + 72 9 4 4 12 7 2 2 4 7 7 6-11122.0119.2116.2 + 72 9 5 7 5 4 3 3 5 5 5 5-11117.0119.0116.1 + 72 9 6 22 9 9 6 12 9 9 7 10-11119.2118.7116.0 + 72 9 7 2 9 2 7 7 5 3 5 5-11110.4118.4115.9 + 72 9 8 9 9 7 9 9 7 7 12 9-11115.9118.1115.8 + 72 9 9 5 12 7 12 7 3 3 12 8-11112.9117.8115.7 + 72 9 10 9 9 12 18 15 22 32 6 15-11107.2117.4115.6 + 72 9 11 6 9 18 22 12 6 9 5 11-11102.7117.1115.6 + 72 9 12 5 12 7 6 4 3 3 2 5-11100.6117.0115.6 + 72 9 13 4 6 12 5111 67154 67 53-11 94.6117.1115.5 + 72 9 14111207 39 5 6 18 27 18 54-11 99.5117.2115.5 + 72 9 15 18 39 22 48 27 15 9 18 25-11103.4117.5115.4 + 72 9 16 18 15 22 12 6 22 32 27 19-11103.1117.9115.3 + 72 9 17 48 27 32 22 18 18 12 27 26-11100.3118.2115.2 + 72 9 18 18 22 22 27 6 5 9 5 14-11102.6118.6115.1 + 72 9 19 15 12 9 2 2 2 2 2 6-11106.2119.0115.0 + 72 9 20 2 7 3 6 3 2 4 3 4-11113.2119.3114.8 + 72 9 21 6 4 2 3 2 2 0 0 2-11113.4119.6114.7 + 72 9 22 0 3 5 4 3 7 7 6 4-11119.4119.9114.6 + 72 9 23 3 5 4 18 32 15 12 18 13-11125.2120.2114.5 + 72 9 24 15 12 15 9 12 27 22 18 16-11126.8120.4114.4 + 72 9 25 7 9 7 7 3 3 3 7 6-11126.3120.6114.4 + 72 9 26 5 12 6 7 9 6 6 6 7-11122.5120.6114.3 + 72 9 27 12 15 6 6 6 6 6 3 8-11118.3120.4114.3 + 72 9 28 12 6 4 6 6 4 15 15 9-11116.4120.1114.3 + 72 9 29 22 22 22 12 18 32 48 22 25-11115.2119.7114.3 + 72 9 30 15 18 7 3 2 4 7 7 8-11118.5119.3114.4 + 72 10 1 15 12 6 3 3 4 5 7 7-11114.7118.9114.4 + 72 10 2 6 5 3 2 4 3 12 7 5-11108.4118.4114.5 + 72 10 3 6 4 3 2 2 4 4 9 4-11107.3118.0114.6 + 72 10 4 18 6 9 9 3 3 3 2 7-11103.3117.5114.6 + 72 10 5 2 0 0 2 0 2 5 3 2-11100.6117.0114.6 + 72 10 6 0 0 0 2 0 2 4 5 2-11 98.4116.4114.6 + 72 10 7 0 2 0 9 4 3 15 27 8-11 96.1115.7114.6 + 72 10 8 15 0 0 0 2 3 9 2 4-11 97.2115.0114.6 + 72 10 9 0 2 3 0 5 5 12 7 4-11100.5114.1114.6 + 72 10 10 7 4 4 6 7 7 6 9 6-11 94.7113.4114.5 + 72 10 11 39 32 27 15 18 12 4 4 19-11 93.5112.8114.5 + 72 10 12 4 4 4 12 27 39 39 39 21-11 94.7112.4114.4 + 72 10 13 39 18 12 27 15 9 22 27 21-11 94.5112.0114.3 + 72 10 14 32 27 32 32 27 32 7 15 26-11 97.0111.8114.2 + 72 10 15 5 12 5 6 7 5 9 12 8-11102.1111.8114.1 + 72 10 16 15 22 9 9 12 15 4 6 12-11106.2111.7114.0 + 72 10 17 5 2 0 2 0 0 3 3 2-11112.1111.6113.9 + 72 10 18 2 5 7 12 5 18 7 32 11-11111.0111.5113.8 + 72 10 19 67 56 48 32 18 22 22 7 34-11117.1111.3113.7 + 72 10 20 15 18 18 15 9 12 18 9 14-11122.2111.0113.7 + 72 10 21 6 12 27 15 18 27 15 7 16-11132.8110.9113.6 + 72 10 22 15 6 12 15 7 18 15 18 13-11141.7110.7113.6 + 72 10 23 22 15 22 18 15 15 15 22 18-11151.2110.6113.6 + 72 10 24 18 15 9 7 7 15 7 9 11-11156.5110.5113.6 + 72 10 25 4 4 7 12 9 4 4 6 6-11171.8110.2113.6 + 72 10 26 4 12 15 9 6 5 6 7 8-11170.0110.0113.6 + 72 10 27 18 2 4 5 7 7 7 6 7-11167.6109.7113.6 + 72 10 28 12 18 22 18 5 2 2 7 11-11159.1109.5113.7 + 72 10 29 12 18 48 12 15 27 15 18 21-11151.8109.4113.7 + 72 10 30 27 27 27 22 32 9 4 12 20-11144.6109.2113.7 + 72 10 31 12 6 4 2 4 56111 39 29-11140.1109.0113.8 + 72 11 1179207179 94 56 7 39 27 99-11129.9108.9113.8 + 72 11 2 67 56 22 18 15 56 48 56 42-11121.8108.8113.9 + 72 11 3 56 18 12 6 2 2 5 5 13-11113.9108.6113.9 + 72 11 4 6 7 3 6 2 6 5 12 6-11115.8108.5113.9 + 72 11 5 5 4 2 3 4 3 2 4 3-11102.6108.3113.9 + 72 11 6 7 9 3 12 7 7 7 6 7-11 93.2108.2113.8 + 72 11 7 2 6 9 15 6 4 7 7 7-11 85.7108.1113.8 + 72 11 8 9 7 4 7 6 5 5 12 7-11 82.5108.1113.7 + 72 11 9 7 5 6 5 6 9 12 6 7-11 82.3108.0113.5 + 72 11 10 5 6 3 3 5 4 3 5 4-11 84.7107.9113.4 + 72 11 11 15 4 4 4 12 9 7 4 7-11 88.3107.9113.2 + 72 11 12 5 6 15 7 4 6 2 2 6-11 88.7107.9113.0 + 72 11 13 5 4 4 2 2 3 4 4 4-11 86.7107.9112.8 + 72 11 14 3 3 4 2 4 5 3 6 4-11 85.1107.9112.6 + 72 11 15 7 12 6 12 27 27 18 27 17-11 86.5107.9112.4 + 72 11 16 27 56 32 27 39 27 15 27 31-11 89.6107.9112.2 + 72 11 17 12 12 6 12 9 18 15 12 12-11 91.5107.9112.0 + 72 11 18 12 7 12 6 9 15 7 5 9-11 94.6107.9111.8 + 72 11 19 15 12 15 9 7 7 12 12 11-11 99.7107.8111.7 + 72 11 20 32 22 18 39 32 39 22 9 27-11109.4107.7111.6 + 72 11 21 22 18 9 5 3 4 7 6 9-11109.3107.7111.5 + 72 11 22 7 5 4 7 15 39 18 12 13-11110.9107.7111.4 + 72 11 23 15 9 5 5 15 22 9 7 11-11115.3107.8111.3 + 72 11 24 9 9 5 5 2 2 4 5 5-11115.4107.9111.2 + 72 11 25 6 6 5 9 7 5 12 18 9-11112.7108.0111.2 + 72 11 26 48 12 9 15 9 7 7 4 14-11108.6108.0111.2 + 72 11 27 15 7 5 4 6 18 18 12 11-11102.3108.1111.1 + 72 11 28 18 12 5 5 22 18 9 7 12-11 97.5108.1111.0 + 72 11 29 15 22 6 5 5 6 9 7 9-11 92.7107.9111.0 + 72 11 30 7 2 0 2 4 3 9 9 5-11 95.1107.7110.9 + 72 12 1 15 12 6 3 2 4 3 2 6-11 91.1107.3110.8 + 72 12 2 3 5 5 5 2 9 7 4 5-11 89.4106.9110.7 + 72 12 3 7 9 6 4 4 5 9 7 6-11 85.2106.3110.6 + 72 12 4 5 5 7 4 3 3 3 3 4-11 82.3105.6110.4 + 72 12 5 2 0 2 0 0 2 2 5 2-11 80.4104.7110.2 + 72 12 6 3 3 2 2 0 3 5 4 3-11 77.8103.7110.1 + 72 12 7 7 9 12 15 12 12 9 2 10-11 87.1102.8109.9 + 72 12 8 2 7 4 7 5 7 7 9 6-11 91.6102.0109.8 + 72 12 9 5 0 3 2 2 4 5 7 4-11 94.7101.3109.7 + 72 12 10 5 3 4 0 0 0 3 2 2-11 97.2100.7109.6 + 72 12 11 6 3 2 3 3 3 2 4 3-11105.1100.2109.5 + 72 12 12 4 3 3 3 6 5 9 27 8-11108.9 99.8109.4 + 72 12 13 56 27 22 22 22 39 22 27 30-11111.2 99.5109.3 + 72 12 14 12 12 6 5 15 12 6 4 9-11114.8 99.3109.1 + 72 12 15 4 12 15 27 22 9 32111 29-11116.1 99.1109.0 + 72 12 16 32 48 39 32 22 22 39 27 33-11110.2 99.0108.8 + 72 12 17 15 12 12 22 18 9 9 6 13-11111.9 99.0108.6 + 72 12 18 7 7 6 7 12 12 6 7 8-11112.4 99.1108.4 + 72 12 19 6 6 5 4 5 12 6 15 7-11113.2 99.2108.3 + 72 12 20 5 7 4 5 3 2 4 4 4-11111.4 99.3108.1 + 72 12 21 2 0 0 2 4 0 2 4 2-11113.4 99.4108.0 + 72 12 22 4 2 3 7 18 18 27 32 14-11107.9 99.4107.9 + 72 12 23 48 48 32 15 12 18 48 15 30-11106.2 99.4107.8 + 72 12 24 39 18 22 12 5 3 0 3 13-11101.1 99.4107.7 + 72 12 25 5 2 2 3 3 3 5 9 4-11103.3 99.5107.6 + 72 12 26 2 6 4 5 9 5 3 4 5-11 97.7 99.6107.5 + 72 12 27 4 6 2 0 0 0 2 2 2-11 97.6 99.6107.4 + 72 12 28 0 4 0 4 7 5 9 6 4-11 91.9 99.7107.3 + 72 12 29 15 22 15 6 7 22 12 18 15-11 92.8 99.7107.2 + 72 12 30 18 15 12 22 9 9 32 32 19-11 92.0 99.8107.1 + 72 12 31 6 18 15 18 9 6 7 22 13-11 94.3 99.6107.0 + 73 1 1 27 18 9 18 7 5 3 3 11-11 93.9 99.6106.9 + 73 1 2 5 2 2 2 0 0 2 2 2-11 98.2 99.4106.8 + 73 1 3 2 0 0 2 2 2 2 9 2-11105.1 99.3106.6 + 73 1 4 15 9 5 6 7 15 15 15 11-11109.3 99.2106.5 + 73 1 5 22 18 6 9 6 27 32 48 21-11113.3 99.1106.4 + 73 1 6 32 39 9 22 15 9 12 18 20-11115.0 99.0106.2 + 73 1 7 3 6 5 5 7 18 6 12 8-11112.3 99.0106.1 + 73 1 8 7 15 5 12 18 48 9 9 15-11103.2 99.0106.1 + 73 1 9 18 12 9 18 12 9 22 32 17-11103.7 98.9106.0 + 73 1 10 27 39 22 27 22 27 48 15 28-11103.8 98.9105.9 + 73 1 11 15 39 18 22 32 22 18 27 24-11102.8 98.8105.8 + 73 1 12 22 27 27 22 48 27 15 15 25-11103.5 98.8105.7 + 73 1 13 18 12 9 22 22 18 18 7 16-11100.9 98.9105.6 + 73 1 14 15 18 6 7 7 7 3 5 9-11 96.2 99.0105.5 + 73 1 15 9 9 12 7 5 6 7 15 9-11 94.6 99.2105.4 + 73 1 16 9 15 6 5 4 3 12 12 8-11 93.8 99.4105.3 + 73 1 17 9 5 6 5 7 5 4 2 5-11 94.2 99.5105.2 + 73 1 18 4 4 3 2 2 2 2 2 3-11 95.3 99.6105.2 + 73 1 19 3 2 4 3 4 22 18 27 10-11 94.8 99.7105.1 + 73 1 20 80 48 12 18 18 9 15 32 29-11 98.3 99.7105.0 + 73 1 21 39 39 48 22 5 9 12 6 23-11 97.9 99.7104.9 + 73 1 22 5 5 3 6 9 6 3 6 5-11 98.5 99.5104.8 + 73 1 23 12 9 6 27 22 7 9 12 13-11 97.2 99.3104.7 + 73 1 24 22 18 12 22 15 18 27 39 22-11 96.9 99.1104.7 + 73 1 25 12 15 7 48 32 22 12 15 20-11 95.6 98.9104.6 + 73 1 26 32 18 9 15 12 18 32 22 20-11 95.3 98.7104.4 + 73 1 27 18 48 22 27 32 39 48 32 33-11 93.4 98.5104.3 + 73 1 28 48 67 22 22 27 32 22 27 33-11 91.7 98.4104.2 + 73 1 29 27 15 32 9 22 22 22 27 22-11 91.4 98.3104.0 + 73 1 30 32 32 9 9 12 7 7 12 15-11 89.7 98.3103.8 + 73 1 31 9 7 6 4 3 4 9 9 6-11 87.7 98.3103.7 + 73 2 1 27 18 15 15 12 22 9 15 17-11 88.6 98.5103.5 + 73 2 2 15 18 9 7 7 18 12 27 14-11 88.6 98.6103.3 + 73 2 3 9 32 12 15 18 7 27 9 16-11 93.1 98.7103.1 + 73 2 4 7 9 12 6 3 4 9 6 7-11 94.1 98.7103.0 + 73 2 5 15 18 12 5 4 2 6 12 9-11 94.3 98.7102.8 + 73 2 6 9 7 7 18 32 27 15 7 15-11 95.3 98.7102.7 + 73 2 7 9 9 12 12 9 18 27 18 14-11 98.5 98.8102.6 + 73 2 8 22 32 27 22 15 22 27 32 25-11100.5 98.7102.5 + 73 2 9 22 15 39 22 18 18 18 9 20-11100.9 98.7102.4 + 73 2 10 5 12 12 9 7 6 22 15 11-11102.1 98.6102.3 + 73 2 11 15 15 6 6 9 5 6 6 9-11101.2 98.6102.2 + 73 2 12 6 9 15 6 12 9 6 6 9-11104.6 98.4102.1 + 73 2 13 2 2 5 3 4 2 2 12 4-11104.7 98.3102.1 + 73 2 14 6 6 9 9 4 3 5 12 7-11105.6 98.0102.0 + 73 2 15 15 15 6 5 9 5 4 4 8-11104.7 97.7101.9 + 73 2 16 0 3 2 4 5 15 27 27 10-11 98.7 97.5101.9 + 73 2 17 39 18 22 5 15 12 15 5 16-11 94.2 97.3101.8 + 73 2 18 7 6 7 7 12 15 12 22 11-11 90.7 97.3101.6 + 73 2 19 15 12 4 4 7 12 12 18 11-11 88.9 97.4101.5 + 73 2 20 5 0 4 4 7 12 27 12 9-11 89.4 97.5101.4 + 73 2 21 39 18 5 7 7 48154111 49-11 89.9 97.7101.3 + 73 2 22 94 7 12 22 27 32 94 80 46-11 89.7 98.0101.2 + 73 2 23 39 56 48 32 39 67 56 48 48-11 91.4 98.3101.1 + 73 2 24 32 48 56 39 56 56 80 67 54-11 93.6 98.6101.0 + 73 2 25 12 27 32 27 22 48 48 32 31-11 97.2 98.8100.8 + 73 2 26 48 39 27 27 22 22 39 48 34-11 95.6 99.0100.7 + 73 2 27 32 80 22 22 27 80 48 39 44-11 98.2 99.3100.6 + 73 2 28 48 15 32 15 12 15 7 12 20-11100.9 99.6100.4 + 73 3 1 15 7 9 12 9 56 48 22 22-11 99.5 99.9100.2 + 73 3 2 32 48 39 32 32 48 48 39 40-11101.6100.0100.1 + 73 3 3 32 22 15 9 15 9 5 7 14-11 97.8100.1100.0 + 73 3 4 12 4 4 3 3 3 2 5 5-11 96.6100.1100.0 + 73 3 5 4 0 2 2 5 9 15 9 6-11 94.8100.1100.0 + 73 3 6 15 27 32 18 67 48 6 7 28-11 98.9100.0100.1 + 73 3 7 6 12 9 7 7 9 6 4 8-11 92.2 99.8100.1 + 73 3 8 4 2 4 6 15 5 15 7 7-11 98.9 99.7100.1 + 73 3 9 12 18 15 15 12 5 6 7 11-11104.7 99.5100.2 + 73 3 10 7 6 6 9 5 4 15 12 8-11105.6 99.4100.2 + 73 3 11 7 6 6 7 12 6 12 7 8-11113.4 99.4100.2 + 73 3 12 18 6 18 12 6 7 32 9 14-11114.5 99.4100.2 + 73 3 13 0 2 9 9 6 6 9 2 5-11118.9 99.6100.2 + 73 3 14 0 3 4 6 5 3 4 4 4-11114.0 99.9100.1 + 73 3 15 2 2 0 4 6 4 2 2 3-11107.1100.1100.1 + 73 3 16 5 7 12 18 15 15 15 9 12-11106.9100.3100.1 + 73 3 17 6 4 5 7 6 5 7 7 6-11101.5100.5100.0 + 73 3 18 6 15 7 18 32 15 18 48 20-11 94.9100.8 99.9 + 73 3 19 27 18 48111 94 94132132 82-11 96.7101.0 99.9 + 73 3 20 56 67 67111 67 67111 94 80-11 91.0101.1 99.8 + 73 3 21 32 56 80 56 48 80 56 56 58-11 87.4101.2 99.8 + 73 3 22 48 48 67 56 80 27 48 48 53-11 90.3101.3 99.7 + 73 3 23 48 32 48 48 39 67 48 67 50-11 87.1101.5 99.7 + 73 3 24 56 39 27 48 56 48 48 67 49-11 89.4101.7 99.6 + 73 3 25 48 56 48 48 56 56 39 48 50-11 90.0101.8 99.6 + 73 3 26 39 27 27 7 5 27 94 27 32-11 88.6101.9 99.5 + 73 3 27 22 27 15 32 39 32 22 32 28-11 92.0102.0 99.5 + 73 3 28 22 15 18 18 32 27 15 32 22-11 94.2102.0 99.5 + 73 3 29 22 27 12 7 7 12 9 32 16-11 99.0102.0 99.4 + 73 3 30 27 9 15 15 12 12 7 22 15-11102.7102.0 99.5 + 73 3 31 9 27 15 4 15 56 80 56 33-11110.3102.0 99.5 + 73 4 1 27 12 15 27 56179236179 91-11115.0102.0 99.5 + 73 4 2132 80 22 67 39 48 32 12 54-11118.1101.9 99.4 + 73 4 3 39 56 22 18 18 27 18 7 26-11129.4101.9 99.4 + 73 4 4 9 15 12 9 7 9 5 4 9-11122.3101.9 99.4 + 73 4 5 4 9 22 5 4 4 3 3 7-11117.7101.9 99.4 + 73 4 6 3 7 6 3 3 3 2 6 4-11112.7101.8 99.4 + 73 4 7 6 3 3 6 3 3 3 3 4-11110.3101.7 99.3 + 73 4 8 2 4 3 15 6 12 15 5 8-11121.0101.7 99.3 + 73 4 9 18 12 5 2 4 4 5 4 7-11120.5101.8 99.2 + 73 4 10 3 4 4 2 3 3 4 5 4-11115.5101.8 99.2 + 73 4 11 27 39 39 32 22 15 9 7 24-11110.3101.8 99.1 + 73 4 12 0 4 3 3 3 4 4 4 3-11103.4101.9 99.1 + 73 4 13 5 32 39 67154 48 7 12 46-11 99.4101.9 99.0 + 73 4 14 27 56179 56 67 48 12 9 57-11 92.7102.0 99.0 + 73 4 15 12 12 6 12 5 5 6 12 9-11 89.5102.1 98.9 + 73 4 16 27 39 67 80 94 67 67 39 60-11 85.0102.1 98.8 + 73 4 17 67 80 56 39 48 32 48 39 51-11 82.1102.2 98.7 + 73 4 18 48 48 56 56 27 56 39 39 46-11 80.9102.2 98.7 + 73 4 19 39 39 39 27 27 18 67 80 42-11 82.8102.0 98.6 + 73 4 20 67 48 39 27 22 56 67 39 46-11 86.4101.8 98.5 + 73 4 21 56 48 48 32 32 39 48 32 42-11 95.2101.5 98.3 + 73 4 22 48 56 80 27 32 56 18 32 44-11105.0101.3 98.2 + 73 4 23 39 39 32 22 22 32 9 6 25-11109.2101.0 98.0 + 73 4 24 22 15 27 15 7 5 12 12 14-11109.0100.8 97.8 + 73 4 25 12 27 12 6 5 12 18 22 14-11109.2100.6 97.7 + 73 4 26 22 22 15 7 22 27 67 39 28-11110.0100.4 97.5 + 73 4 27 32 39 39 39 22 15 6 12 26-11111.6100.4 97.3 + 73 4 28 9 18 9 27 56 18 15 56 26-11112.6100.5 97.1 + 73 4 29 80 80 67 39 80 27 67 32 59-11109.5100.7 97.0 + 73 4 30 12 22 27 15 7 27 12 18 18-11106.2100.9 96.8 + 73 5 1 12 18 9 4 6 9 39 39 17-11111.9101.2 96.7 + 73 5 2 18 15 5 6 6 9 12 27 12-11115.0101.3 96.6 + 73 5 3 15 12 15 7 6 4 7 7 9-11117.3101.5 96.4 + 73 5 4 7 12 6 5 6 6 4 15 8-11115.9101.7 96.3 + 73 5 5 9 7 0 0 3 9 9 4 5-11115.0101.6 96.2 + 73 5 6 3 4 5 3 9 18 32 32 13-11109.7101.5 96.1 + 73 5 7 18 22 22 9 15 18 12 9 16-11103.4101.4 96.1 + 73 5 8 7 12 12 15 22 27 22 18 17-11100.0101.2 96.0 + 73 5 9 12 7 9 7 27 15 5 15 12-11 95.1101.0 96.0 + 73 5 10 9 9 5 6 12 6 6 2 7-11 90.9100.8 95.9 + 73 5 11 5 4 12 5 3 4 6 12 6-11 87.0100.5 95.9 + 73 5 12 12 3 6 15 6 4 5 7 7-11 86.8100.2 95.9 + 73 5 13 27 7 22 15 5 9 15 56 20-11 85.2 99.8 95.8 + 73 5 14179111 80 56 67 32 80 39 81-11 89.3 99.3 95.8 + 73 5 15 39 39 27 18 32 32 56 56 37-11 90.1 99.0 95.7 + 73 5 16 56 27 39 18 22 15 7 80 33-11 89.5 98.7 95.7 + 73 5 17 39 39 22 18 27 27 18 15 26-11 91.4 98.5 95.7 + 73 5 18 27 27 39 15 15 18 12 22 22-11 95.4 98.3 95.6 + 73 5 19 22 18 22 18 32 27 15 22 22-11 99.4 98.0 95.6 + 73 5 20 27 18 27 27 32 18 22 22 24-11104.7 97.6 95.5 + 73 5 21 27 48132 94 39 12 6 22 48-11102.2 97.4 95.5 + 73 5 22 22 48 18 22 12 18 12 15 21-11103.1 97.1 95.4 + 73 5 23 22 15 22 18 12 7 5 12 14-11 99.6 97.0 95.3 + 73 5 24 5 6 4 4 3 4 3 2 4-11104.5 96.9 95.2 + 73 5 25 2 5 7 5 5 7 7 5 5-11104.7 97.0 95.1 + 73 5 26 22 12 5 5 4 3 5 7 8-11101.1 97.1 95.1 + 73 5 27 6 15 9 4 3 6 15 18 10-11 99.9 97.3 95.0 + 73 5 28 7 7 12 12 9 9 6 4 8-11 94.1 97.5 95.0 + 73 5 29 2 4 3 4 4 3 4 3 3-11 93.3 97.7 94.9 + 73 5 30 0 3 2 2 4 3 3 2 2-11 90.8 97.9 94.9 + 73 5 31 2 3 3 4 6 5 5 6 4-11 87.2 98.0 94.9 + 73 6 1 3 3 5 4 2 2 4 3 3-11 97.7 98.0 94.9 + 73 6 2 4 15 39 22 27 18 22 12 20-11 98.2 97.8 94.9 + 73 6 3 12 15 18 15 9 12 12 15 14-11 95.2 97.4 94.9 + 73 6 4 12 12 18 15 18 22 27 27 19-11 89.8 97.1 94.9 + 73 6 5 12 9 12 18 7 12 6 7 10-11 91.4 96.7 94.9 + 73 6 6 7 12 12 9 9 7 5 4 8-11 99.2 96.3 94.9 + 73 6 7 6 4 3 3 3 3 4 2 4-11105.4 95.9 94.8 + 73 6 8 6 7 4 3 5 4 9 9 6-11108.8 95.6 94.8 + 73 6 9 7 7 4 6 5 18 9 15 9-11109.4 95.2 94.7 + 73 6 10 9 12 7 18 7 22 94 94 33-11108.8 94.9 94.7 + 73 6 11 27 39 27 27 48 56 27 22 34-11106.1 94.5 94.6 + 73 6 12 32 32 18 32 27 39 27 32 30-11101.3 94.1 94.5 + 73 6 13 39 27 7 22 22 18 22 32 24-11100.3 93.6 94.4 + 73 6 14 32 27 15 22 12 12 9 12 18-11 85.2 93.2 94.3 + 73 6 15 12 15 12 7 12 9 18 18 13-11 83.1 92.8 94.2 + 73 6 16 12 7 9 18 9 9 12 15 11-11 81.5 92.5 94.1 + 73 6 17 18 15 27 15 18 9 18 27 18-11 81.0 92.2 94.0 + 73 6 18 56 27 32 32 15 15 32 27 30-11 82.5 92.0 93.9 + 73 6 19 56 39 48 22 22 18 56 39 38-11 85.1 92.0 93.8 + 73 6 20 22 22 22 18 18 9 22 9 18-11 85.3 91.9 93.8 + 73 6 21 9 9 9 5 4 6 3 4 6-11 87.4 91.9 93.7 + 73 6 22 4 3 2 2 2 2 4 4 3-11 88.9 91.9 93.7 + 73 6 23 5 5 5 15 15 7 6 18 10-11 91.0 91.9 93.6 + 73 6 24 32 32 27 32 48 48 48 7 34-11 92.9 91.9 93.6 + 73 6 25 7 5 3 5 7 7 6 9 6-11 93.6 91.8 93.6 + 73 6 26 4 5 4 6 5 4 6 2 5-11 96.3 91.8 93.6 + 73 6 27 4 7 3 3 4 4 5 6 5-11 94.8 91.7 93.6 + 73 6 28 15 22 27 18 27 5 6 48 21-11 95.2 91.7 93.5 + 73 6 29 32 39 94 32 48 39 27 15 41-11 95.1 91.5 93.5 + 73 6 30 15 32 39 39 39 18 27 22 29-11 94.1 91.3 93.5 + 73 7 1 15 22 22 18 18 22 27 7 19-11 90.9 91.1 93.4 + 73 7 2 15 12 9 15 9 7 9 9 11-11 93.1 90.8 93.4 + 73 7 3 12 7 6 9 9 7 5 4 7-11 93.5 90.5 93.3 + 73 7 4 4 5 5 6 3 4 4 5 5-11 94.9 90.1 93.2 + 73 7 5 5 3 4 3 5 4 4 2 4-11 97.9 89.8 93.1 + 73 7 6 3 3 3 4 5 3 3 2 3-11 99.4 89.4 93.0 + 73 7 7 2 2 5 3 3 3 4 2 3-11 99.9 89.1 92.9 + 73 7 8 4 12 6 18 22 12 12 15 13-11 97.6 88.9 92.8 + 73 7 9 4 7 9 7 12 15 6 4 8-11 98.6 88.6 92.7 + 73 7 10 15 4 5 5 5 4 3 4 6-11100.5 88.4 92.7 + 73 7 11 4 6 5 6 3 4 9 12 6-11 94.0 88.3 92.6 + 73 7 12 6 5 4 6 5 6 12 7 6-11 85.4 88.1 92.6 + 73 7 13 6 7 7 7 9 12 6 9 8-11 80.3 87.9 92.5 + 73 7 14 9 7 9 6 5 7 9 12 8-11 79.5 87.7 92.5 + 73 7 15 27 39 22 18 22 22 56 48 32-11 78.7 87.7 92.5 + 73 7 16 48 15 15 6 7 5 12 9 15-11 79.5 87.6 92.5 + 73 7 17 15 7 3 4 3 4 6 6 6-11 79.1 87.5 92.5 + 73 7 18 9 5 4 4 6 6 6 5 6-11 83.6 87.4 92.5 + 73 7 19 6 7 7 18 12 5 9 18 10-11 84.1 87.3 92.5 + 73 7 20 9 7 7 15 5 12 12 6 9-11 79.5 87.2 92.4 + 73 7 21 12 4 5 5 5 2 3 7 5-11 79.4 87.1 92.4 + 73 7 22 15 5 3 3 3 4 9 5 6-11 77.6 87.1 92.4 + 73 7 23 15 15 15 18 12 6 12 15 14-11 78.6 87.3 92.3 + 73 7 24 6 6 6 6 6 4 5 7 6-11 81.6 87.6 92.3 + 73 7 25 12 12 15 12 7 4 7 5 9-11 83.8 88.3 92.2 + 73 7 26 9 18 27 32 48 48 48 56 36-11 85.0 88.9 92.2 + 73 7 27 39 18 27 27 27 27 48 18 29-11 85.5 89.6 92.1 + 73 7 28 15 15 18 15 12 15 12 9 14-11 84.2 90.2 92.1 + 73 7 29 15 27 18 18 15 9 18 27 18-11 89.5 90.7 92.0 + 73 7 30 22 12 15 18 15 27 27 15 19-11 86.1 91.0 91.9 + 73 7 31 32 48 39 39 22 12 6 7 26-11 86.6 91.4 91.9 + 73 8 1 18 18 15 15 6 5 12 9 12-11 86.9 91.6 91.8 + 73 8 2 15 15 27 9 32 22 6 3 16-11 86.8 91.7 91.8 + 73 8 3 6 5 4 5 6 7 5 15 7-11 85.0 91.7 91.7 + 73 8 4 12 4 4 6 3 5 9 18 8-11 86.2 91.6 91.7 + 73 8 5 9 3 3 6 18 15 9 7 9-11 85.1 91.5 91.6 + 73 8 6 9 22 15 12 22 15 6 2 13-11 88.8 91.3 91.6 + 73 8 7 5 7 6 7 15 12 9 6 8-11 90.8 91.2 91.5 + 73 8 8 15 7 18 7 9 4 5 7 9-11 87.5 91.0 91.5 + 73 8 9 7 7 7 5 5 2 3 3 5-11 87.1 90.9 91.4 + 73 8 10 6 5 7 6 3 4 2 3 5-11 83.4 90.8 91.4 + 73 8 11 2 3 2 5 6 4 5 3 4-11 78.9 90.8 91.3 + 73 8 12 2 3 5 3 3 3 4 18 5-11 76.3 90.8 91.2 + 73 8 13 4 6 15 9 15 7 12 15 10-11 74.7 90.9 91.2 + 73 8 14 15 6 6 6 12 7 9 6 8-11 74.1 91.0 91.1 + 73 8 15 3 5 5 5 5 4 2 5 4-11 72.6 91.1 91.0 + 73 8 16 4 3 2 2 5 2 4 4 3-11 74.1 91.3 91.0 + 73 8 17 2 2 2 3 2 3 2 3 2-11 75.0 91.5 90.9 + 73 8 18 2 4 6 5 6 6 4 2 4-11 75.3 91.7 90.9 + 73 8 19 12 6 4 3 9 6 4 6 6-11 75.4 91.9 90.8 + 73 8 20 0 5 6 22 18 7 6 5 9-11 76.8 92.1 90.8 + 73 8 21 5 12 7 5 7 4 4 2 6-11 80.4 92.4 90.8 + 73 8 22 2 0 2 12 12 22 22 27 12-11 80.4 92.7 90.8 + 73 8 23 18 15 18 9 18 32 39 27 22-11 81.8 93.0 90.8 + 73 8 24 80 48 56 67 56 22 15 22 46-11 85.3 93.3 90.7 + 73 8 25 22 39 48 39 22 18 39 7 29-11 88.9 93.5 90.7 + 73 8 26 27 22 15 15 9 27 18 12 18-11 91.2 93.6 90.7 + 73 8 27 39 27 22 22 22 48 18 12 26-11 95.1 93.7 90.6 + 73 8 28 15 39 27 18 32 48 15 27 28-11 97.5 93.7 90.6 + 73 8 29 22 22 32 27 12 7 22 18 20-11100.8 93.7 90.5 + 73 8 30 15 18 22 18 12 6 9 7 13-11101.3 93.7 90.5 + 73 8 31 12 12 15 7 9 7 7 6 9-11109.6 93.6 90.4 + 73 9 1 5 6 6 4 5 3 3 5 5-11114.9 93.6 90.3 + 73 9 2 5 4 5 4 4 12 6 9 6-11129.2 93.5 90.3 + 73 9 3 4 2 3 4 6 7 9 15 6-11136.5 93.4 90.2 + 73 9 4 12 9 18 15 9 9 18 9 12-11135.0 93.2 90.2 + 73 9 5 18 27 9 7 9 9 32 12 15-11135.1 93.1 90.1 + 73 9 6 9 12 9 7 7 15 6 4 9-11130.9 93.0 90.1 + 73 9 7 4 15 18 7 7 7 4 4 8-11121.7 92.9 90.0 + 73 9 8 3 4 7 7 9 12 6 12 8-11115.7 92.8 89.9 + 73 9 9 5 4 7 27 32 27 67179 44-11113.1 92.7 89.9 + 73 9 10 12 6 12 22 32 39 80 15 27-11106.7 92.5 89.8 + 73 9 11 32 18 5 4 6 12 12 9 12-11 96.8 92.4 89.7 + 73 9 12 12 4 2 5 6 12 9 6 7-11 89.5 92.4 89.6 + 73 9 13 7 3 4 12 15 7 12 5 8-11 84.6 92.5 89.6 + 73 9 14 6 6 5 4 2 2 2 4 4-11 82.9 92.6 89.5 + 73 9 15 7 4 5 12 15 12 12 27 12-11 82.6 92.8 89.4 + 73 9 16 22 27 22 12 12 7 4 6 14-11 83.9 93.0 89.4 + 73 9 17 7 12 18 15 5 3 6 12 10-11 81.8 93.1 89.3 + 73 9 18 12 6 4 7 7 5 7 5 7-11 84.6 93.3 89.3 + 73 9 19 2 4 4 2 2 4 6 3 3-11 86.6 93.4 89.3 + 73 9 20 7 6 7 5 15 18 12 22 12-11 92.0 93.6 89.2 + 73 9 21 32 15 22 12 12 12 9 7 15-11 94.9 93.7 89.2 + 73 9 22 5 7 7 9 7 12 32 56 17-11 99.5 93.8 89.2 + 73 9 23 48 48 32132111 27 80 27 63-11103.9 94.0 89.1 + 73 9 24 27 39 27 18 22 39 18 32 28-11106.2 94.0 89.1 + 73 9 25 18 15 18 9 22 12 67 56 27-11112.7 94.1 89.1 + 73 9 26 22 22 22 56 39 32 7 3 25-11115.5 94.1 89.0 + 73 9 27 5 2 7 18 9 15 5 6 8-11115.9 94.1 88.9 + 73 9 28 4 0 2 7 6 4 6 4 4-11118.1 94.0 88.9 + 73 9 29 7 5 4 4 4 4 2 5 4-11116.5 94.0 88.8 + 73 9 30 4 2 4 4 3 3 6 4 4-11116.5 93.9 88.7 + 73 10 1 9 6 4 2 4 3 7 6 5-11109.0 93.8 88.6 + 73 10 2 6 39 48 39 39 27 27 22 31-11106.1 93.7 88.4 + 73 10 3 48154 67 32 39 22 7 18 48-11103.5 93.5 88.3 + 73 10 4 9 15 18 4 2 18 22 4 12-11 94.9 93.4 88.1 + 73 10 5 4 2 3 9 4 12 18 32 11-11 90.6 93.2 88.0 + 73 10 6 27 7 12 7 2 9 18 15 12-11 85.9 93.0 87.9 + 73 10 7 18 5 5 4 4 3 2 7 6-11 82.2 92.8 87.9 + 73 10 8 12 7 5 6 4 3 9 3 6-11 80.1 92.5 87.7 + 73 10 9 5 2 2 4 6 5 27 27 10-11 79.1 92.2 87.7 + 73 10 10 15 48 18 9 15 27 22 15 21-11 77.0 91.8 87.6 + 73 10 11 18 15 7 7 9 9 12 9 11-11 74.9 91.4 87.6 + 73 10 12 9 18 15 7 12 12 7 39 15-11 72.0 91.0 87.6 + 73 10 13 32 22 15 12 6 9 27 12 17-11 70.5 90.5 87.6 + 73 10 14 7 5 7 7 6 7 12 5 7-11 72.7 89.9 87.6 + 73 10 15 18 6 5 6 2 2 3 2 6-11 75.7 89.3 87.7 + 73 10 16 4 9 48 27 39 27 56 32 30-11 75.6 88.7 87.8 + 73 10 17 32 32 22 39 27 22 22 22 27-11 79.5 88.2 87.9 + 73 10 18 18 18 22 18 48 27 12 15 22-11 78.3 87.8 87.9 + 73 10 19 15 32 32 27 15 6 15 15 20-11 76.7 87.5 87.9 + 73 10 20 12 27 32 18 18 32 9 12 20-11 73.4 87.3 87.9 + 73 10 21 39 27 15 32 48 32 56 48 37-11 80.0 87.1 87.9 + 73 10 22 39 27 22 18 18 22 9 6 20-11 85.0 87.0 87.8 + 73 10 23 5 9 12 4 5 6 3 5 6-11 89.9 87.0 87.7 + 73 10 24 6 12 6 7 7 3 5 12 7-11 97.6 86.9 87.6 + 73 10 25 7 4 5 4 5 4 6 6 5-11101.0 86.9 87.5 + 73 10 26 12 5 3 0 2 0 2 2 3-11101.0 86.8 87.4 + 73 10 27 2 2 4 0 3 6 9 3 4-11101.7 86.6 87.3 + 73 10 28 4 6 18 15 12 27 32 48 20-11100.7 86.5 87.2 + 73 10 29 80 67 56 94111 80132 67 86-11 99.1 86.3 87.2 + 73 10 30 67 27 27 12 22 22 18 27 28-11 97.4 86.1 87.1 + 73 10 31 39 48 27 12 6 7 6 5 19-11 89.5 85.9 87.1 + 73 11 1 2 0 0 4 9 6 6 4 4-11 87.0 85.6 87.1 + 73 11 2 15 5 7 5 6 7 7 6 7-11 83.9 85.3 87.1 + 73 11 3 7 5 5 4 4 3 4 5 5-11 81.1 84.9 87.1 + 73 11 4 12 6 3 7 27 18 22 48 18-11 77.4 84.5 87.1 + 73 11 5 9 9 15 18 7 6 27 18 14-11 73.9 84.0 87.1 + 73 11 6 15 9 6 5 4 6 15 15 9-11 73.2 83.6 87.2 + 73 11 7 18 22 67 22 12 9 48 27 28-11 72.1 83.2 87.2 + 73 11 8 9 12 12 18 7 5 5 18 11-11 70.4 82.8 87.3 + 73 11 9 9 7 12 18 22 12 7 7 12-11 70.4 82.4 87.3 + 73 11 10 6 18 12 7 6 5 5 5 8-11 70.7 82.1 87.3 + 73 11 11 5 6 5 6 5 9 4 5 6-11 71.2 81.9 87.4 + 73 11 12 6 4 4 2 3 4 3 5 4-11 70.7 81.8 87.4 + 73 11 13 9 5 6 4 9 27 15 9 11-11 72.6 81.7 87.4 + 73 11 14 6 15 5 5 3 7 15 7 8-11 73.8 81.8 87.4 + 73 11 15 7 7 7 9 15 6 7 7 8-11 75.0 81.9 87.3 + 73 11 16 6 5 7 9 22 3 9 22 10-11 76.2 81.9 87.3 + 73 11 17 48 18 12 7 18 9 18 9 17-11 75.3 82.0 87.2 + 73 11 18 32 22 39 22 12 6 12 4 19-11 75.5 82.0 87.2 + 73 11 19 3 4 5 4 5 5 3 3 4-11 75.4 82.0 87.1 + 73 11 20 4 5 5 7 7 4 6 6 6-11 76.8 82.0 87.0 + 73 11 21 15 12 7 9 9 27 67 39 23-11 80.7 81.9 86.9 + 73 11 22 18 12 4 4 4 4 3 4 7-11 84.7 81.9 86.8 + 73 11 23 4 7 4 5 12 12 12 4 8-11 86.5 82.0 86.8 + 73 11 24 2 4 7 7 39 48 56 48 26-11 87.0 82.0 86.7 + 73 11 25 67 67 56 22 39 32 32 22 42-11 88.0 81.9 86.6 + 73 11 26 32 32 12 18 15 18 9 7 18-11 91.8 81.9 86.6 + 73 11 27 22 9 12 6 18 15 12 15 14-11 88.8 81.8 86.5 + 73 11 28 12 7 5 5 6 4 3 9 6-11 90.7 81.8 86.5 + 73 11 29 7 0 5 9 3 6 6 3 5-11 94.9 81.8 86.5 + 73 11 30 2 2 0 4 3 6 7 12 5-11 95.7 82.0 86.6 + 73 12 1 9 4 3 5 2 0 3 3 4-11 86.9 82.1 86.6 + 73 12 2 5 2 3 4 2 0 0 3 2-11 86.3 82.2 86.6 + 73 12 3 5 2 3 4 2 6 7 9 5-11 82.7 82.2 86.6 + 73 12 4 22 18 15 18 12 27 39 80 29-11 78.6 82.2 86.6 + 73 12 5 48 15 15 6 3 18 12 22 17-11 73.6 82.1 86.6 + 73 12 6 22 9 15 3 7 5 5 18 11-11 70.9 82.0 86.6 + 73 12 7 18 9 4 4 7 5 6 9 8-11 70.4 81.9 86.6 + 73 12 8 9 9 4 6 9 5 3 9 7-11 70.9 81.7 86.5 + 73 12 9 9 15 15 27 32 32 18 22 21-11 71.2 81.6 86.5 + 73 12 10 12 18 6 6 2 2 2 12 8-11 72.3 81.4 86.5 + 73 12 11 22 9 5 6 7 7 6 4 8-11 71.9 81.4 86.4 + 73 12 12 5 4 4 3 4 6 6 3 4-11 72.5 81.3 86.4 + 73 12 13 5 9 5 4 0 3 6 4 5-11 73.1 81.3 86.4 + 73 12 14 2 2 2 2 7 9 9 15 6-11 73.8 81.3 86.4 + 73 12 15 12 9 9 9 12 3 3 5 8-11 76.6 81.3 86.4 + 73 12 16 7 4 3 3 3 3 3 3 4-11 79.7 81.3 86.4 + 73 12 17 4 12 6 4 3 4 5 9 6-11 82.1 81.3 86.4 + 73 12 18 5 2 2 3 0 4 4 2 3-11 84.9 81.2 86.4 + 73 12 19 2 3 5 7 12 32 27 18 13-11 87.8 81.2 86.4 + 73 12 20 15 32 32 22 22 27 56 27 29-11 89.9 81.2 86.4 + 73 12 21 22 27 48 22 48 48 32 27 34-11 97.6 81.2 86.4 + 73 12 22 48 22 22 18 32 18 18 22 25-11 96.7 81.3 86.4 + 73 12 23 27 27 12 18 9 18 18 12 18-11 96.0 81.3 86.3 + 73 12 24 9 6 4 7 2 2 2 2 4-11 98.1 81.3 86.3 + 73 12 25 2 3 2 0 5 6 3 5 3-11 97.6 81.3 86.3 + 73 12 26 4 4 3 6 4 5 5 3 4-11 92.9 81.2 86.2 + 73 12 27 5 2 5 5 4 5 9 15 6-11 88.6 81.2 86.2 + 73 12 28 15 15 9 4 5 7 18 18 11-11 81.7 81.2 86.2 + 73 12 29 22 22 12 18 15 15 22 27 19-11 76.4 81.2 86.1 + 73 12 30 18 18 15 18 12 12 15 9 15-11 74.1 81.3 86.1 + 73 12 31 15 27 22 12 12 18 15 18 17-11 72.0 81.3 86.2 + 74 1 1 27 22 12 9 22 15 15 12 17-11 71.5 81.3 86.2 + 74 1 2 7 9 7 12 9 7 15 9 9-11 73.2 81.2 86.3 + 74 1 3 12 15 9 7 15 9 15 7 11-11 73.3 81.1 86.4 + 74 1 4 18 12 6 9 9 6 39 7 13-11 72.5 81.0 86.5 + 74 1 5 27 18 9 9 7 7 15 22 14-11 72.1 80.8 86.5 + 74 1 6 27 18 12 12 7 6 9 3 12-11 74.7 80.7 86.6 + 74 1 7 6 2 2 2 2 0 3 3 3-11 76.0 80.7 86.6 + 74 1 8 4 3 5 4 15 22 18 7 10-11 79.7 80.6 86.6 + 74 1 9 6 6 9 5 7 6 9 6 7-11 84.9 80.5 86.5 + 74 1 10 5 15 12 9 18 15 27 9 14-11 89.2 80.4 86.5 + 74 1 11 12 9 5 6 3 5 3 4 6-11 91.0 80.3 86.5 + 74 1 12 5 7 4 4 5 7 2 3 5-11 94.6 80.3 86.5 + 74 1 13 4 6 5 4 7 2 5 7 5-11 94.8 80.3 86.5 + 74 1 14 15 3 3 9 7 12 9 6 8-11 95.7 80.3 86.5 + 74 1 15 3 7 7 15 32 18 15 22 15-11 91.8 80.4 86.6 + 74 1 16 15 27 12 12 18 15 15 7 15-11 90.0 80.5 86.6 + 74 1 17 27 32 9 7 5 12 22 12 16-11 89.2 80.6 86.6 + 74 1 18 7 9 48 22 18 48 22 18 24-11 87.1 80.7 86.6 + 74 1 19 15 12 6 6 4 9 15 7 9-11 85.8 80.7 86.6 + 74 1 20 12 18 18 12 7 9 18 15 14-11 84.4 80.8 86.7 + 74 1 21 15 27 27 18 15 18 6 5 16-11 79.7 80.8 86.7 + 74 1 22 4 4 5 5 5 2 7 6 5-11 83.5 80.9 86.8 + 74 1 23 9 4 6 3 3 4 3 2 4-11 81.0 81.0 86.8 + 74 1 24 0 2 4 3 2 2 5 18 5-11 77.8 81.0 86.8 + 74 1 25 15 48 48 22 39 67 67 94 50-11 74.1 81.0 86.8 + 74 1 26 80 32 32 32 15 27 48 39 38-11 71.5 81.0 86.8 + 74 1 27 56 39 22 39 12 32 39 32 34-11 70.7 80.9 86.8 + 74 1 28 22 18 12 9 6 18 27 32 18-11 70.8 80.9 86.8 + 74 1 29 27 22 22 22 22 32 22 9 22-11 70.7 80.8 86.8 + 74 1 30 39 15 7 9 18 18 32 32 21-11 70.8 80.8 86.8 + 74 1 31 27 15 32 12 12 18 27 9 19-11 71.3 80.6 86.8 + 74 2 1 9 12 5 7 9 6 27 32 13-11 71.8 80.5 86.8 + 74 2 2 27 15 6 9 12 9 7 9 12-11 73.1 80.3 86.8 + 74 2 3 7 15 9 9 7 5 6 7 8-11 73.1 80.1 86.8 + 74 2 4 5 18 5 6 4 3 12 4 7-11 72.9 79.9 86.8 + 74 2 5 5 7 4 5 7 18 9 7 8-11 74.0 79.8 86.8 + 74 2 6 9 15 3 2 4 6 7 12 7-11 75.4 79.7 86.8 + 74 2 7 22 12 9 7 9 5 9 6 10-11 77.4 79.7 86.8 + 74 2 8 0 2 2 6 7 12 6 6 5-11 78.8 79.7 86.8 + 74 2 9 7 5 3 3 3 0 3 6 4-11 80.8 79.8 86.8 + 74 2 10 9 6 9 7 4 7 32 39 14-11 80.5 79.9 86.9 + 74 2 11 18 27 12 15 39 22 56 48 30-11 77.5 80.0 86.9 + 74 2 12 22 67 67 56 48 27 18 15 40-11 76.5 80.0 87.0 + 74 2 13 15 12 18 18 27 27 27 15 20-11 77.3 80.0 87.0 + 74 2 14 15 15 9 22 9 9 6 7 12-11 76.3 80.0 87.1 + 74 2 15 5 9 3 2 4 3 3 3 4-11 83.7 80.0 87.1 + 74 2 16 3 7 2 2 6 6 18 15 7-11 84.7 80.0 87.2 + 74 2 17 12 15 12 12 15 6 9 9 11-11 85.9 79.9 87.3 + 74 2 18 2 2 2 0 2 0 0 2 1-11 87.5 79.8 87.3 + 74 2 19 2 0 5 5 3 6 3 5 4-11 82.7 79.7 87.3 + 74 2 20 12 2 3 6 15 32 15 12 12-11 82.2 79.5 87.3 + 74 2 21 39 22 27 27 27 15 12 15 23-11 82.2 79.2 87.3 + 74 2 22 9 12 15 5 3 5 15 48 14-11 82.2 79.0 87.3 + 74 2 23 48 18 32 18 56 48 80 56 45-11 84.2 78.7 87.3 + 74 2 24 67 15 27 27 7 12 48 32 29-11 80.9 78.5 87.3 + 74 2 25 48 32 32 27 15 48 48 18 34-11 78.6 78.3 87.2 + 74 2 26 32 22 18 48 22 27 22 32 28-11 76.2 78.2 87.2 + 74 2 27 18 32 27 15 18 32 22 48 27-11 76.4 78.1 87.1 + 74 2 28 32 27 27 18 32 18 32 32 27-11 75.8 78.1 87.0 + 74 3 1 39 18 9 9 12 15 27 27 20-11 76.4 78.2 86.9 + 74 3 2 32 18 18 22 7 27 9 15 19-11 76.5 78.4 86.8 + 74 3 3 39 7 22 18 27 9 12 22 20-11 77.1 78.7 86.7 + 74 3 4 15 18 7 9 12 7 4 5 10-11 79.0 78.9 86.6 + 74 3 5 18 15 9 12 12 18 32 32 19-11 78.6 79.4 86.4 + 74 3 6 27 22 7 27 22 27 15 9 20-11 77.5 79.9 86.3 + 74 3 7 15 12 4 7 6 22 9 27 13-11 76.0 80.4 86.1 + 74 3 8 12 15 32 15 18 5 9 32 17-11 77.0 80.8 86.0 + 74 3 9 18 56 27 12 27 48 48 27 33-11 80.2 81.1 85.9 + 74 3 10 27 22 56 32 32 22 27 18 30-11 86.1 81.4 85.9 + 74 3 11 18 39 48 27 27 48 32 15 32-11 85.9 81.5 85.8 + 74 3 12 22 18 18 15 9 9 15 15 15-11 86.2 81.6 85.8 + 74 3 13 12 27 15 7 5 4 3 4 10-11 84.5 81.7 85.8 + 74 3 14 9 15 18 15 15 22 27 4 16-11 81.9 81.7 85.9 + 74 3 15 0 2 2 3 4 5 5 4 3-11 82.9 81.7 85.9 + 74 3 16 12 9 27 9 39 94132 15 42-11 81.8 81.7 86.0 + 74 3 17 12 22 18 4 4 5 3 4 9-11 82.7 81.8 86.0 + 74 3 18 4 4 2 3 4 2 2 0 3-11 80.2 81.8 86.1 + 74 3 19 2 4 0 0 2 2 0 7 2-11 80.0 81.8 86.1 + 74 3 20 6 6 3 4 9 22 39 94 23-11 79.6 81.9 86.2 + 74 3 21 32 56 27 56 56 94111111 68-11 79.1 82.0 86.2 + 74 3 22 56 27 27 80 32 18 32 39 39-11 80.0 82.2 86.2 + 74 3 23 56 48 18 27 80 56 15 39 42-11 79.8 82.6 86.1 + 74 3 24 27 39 39 27 18 32 32 56 34-11 76.6 83.1 86.1 + 74 3 25 48 32 32 18 15 22 32 22 28-11 74.3 83.6 86.0 + 74 3 26 22 22 22 12 18 22 18 22 20-11 72.6 84.2 85.9 + 74 3 27 32 39 32 22 22 15 7 5 22-11 71.8 84.7 85.8 + 74 3 28 12 18 32 15 18 12 15 18 18-11 70.4 85.2 85.7 + 74 3 29 18 32 22 39 48 48 39 22 34-11 71.5 85.6 85.6 + 74 3 30 39 27 22 15 12 22 12 15 21-11 72.1 85.8 85.5 + 74 3 31 22 27 32 32 12 32 22 9 24-11 72.9 86.1 85.4 + 74 4 1 15 6 32 27 15 22 5 12 17-11 72.1 86.3 85.4 + 74 4 2 12 7 12 7 9 12 15 48 15-11 71.3 86.5 85.3 + 74 4 3 48 39 15 27 56 27 80 22 39-11 71.6 86.7 85.3 + 74 4 4 48 39 48 22 56 48 12 6 35-11 73.3 86.7 85.3 + 74 4 5 15 7 12 39 15 18 22 15 18-11 76.3 86.7 85.3 + 74 4 6 27 67 27 18 12 15 22 18 26-11 80.0 86.7 85.3 + 74 4 7 22 15 48 15 7 18 12 6 18-11 80.2 86.7 85.4 + 74 4 8 4 12 6 22 22 12 15 12 13-11 81.1 86.7 85.5 + 74 4 9 6 12 15 15 9 15 39 18 16-11 87.8 86.6 85.6 + 74 4 10 22 27 48 22 27 27 22 27 28-11 93.5 86.6 85.8 + 74 4 11 32 48 9 12 39 9 4 2 19-11 99.8 86.5 85.9 + 74 4 12 2 4 3 3 2 3 5 4 3-11105.6 86.5 86.1 + 74 4 13 4 9 7 7 7 9 6 5 7-11102.8 86.4 86.3 + 74 4 14 7 9 4 3 4 5 5 6 5-11116.3 86.3 86.4 + 74 4 15 6 3 2 2 4 3 3 5 4-11122.9 86.3 86.5 + 74 4 16 4 0 3 2 3 4 5 7 4-11115.0 86.3 86.6 + 74 4 17 7 2 4 4 5 7 6 9 6-11101.8 86.4 86.7 + 74 4 18 18 94 80 56 27 27 27 56 48-11 98.0 86.5 86.7 + 74 4 19 22 56 32 12 32 94 32 32 39-11 87.5 86.6 86.7 + 74 4 20 32 39 56 56 48 39 32 67 46-11 82.3 86.7 86.7 + 74 4 21 48 32 67 22 32 18 22 39 35-11 79.5 86.8 86.7 + 74 4 22 32 32 32 39 27 32 32 22 31-11 75.3 87.0 86.7 + 74 4 23 39 22 22 48 22 32 22 22 29-11 73.9 87.2 86.6 + 74 4 24 32 18 6 5 7 12 32 39 19-11 75.0 87.4 86.6 + 74 4 25 32 27 32 9 15 12 15 18 20-11 76.5 87.6 86.5 + 74 4 26 39 18 7 12 12 9 22 48 21-11 74.9 87.7 86.5 + 74 4 27 39 27 22 18 12 6 7 18 19-11 75.3 87.9 86.4 + 74 4 28 18 15 15 18 48 32 15 22 23-11 77.9 88.0 86.3 + 74 4 29 15 7 7 18 22 27 27 27 19-11 81.6 88.2 86.3 + 74 4 30 15 12 18 7 15 18 12 27 16-11 91.7 88.4 86.2 + 74 5 1 12 7 2 3 3 12 18 12 9-11 98.5 88.6 86.2 + 74 5 2 15 12 15 9 9 39 22 27 19-11113.1 88.8 86.2 + 74 5 3 67 48 32 9 18 7 7 6 24-11115.5 89.0 86.2 + 74 5 4 27 22 22 48 48 27 39 39 34-11118.0 89.1 86.2 + 74 5 5 32 39 48 56 22 22 32 27 35-11119.7 89.3 86.3 + 74 5 6 9 12 7 6 6 5 3 2 6-11123.0 89.5 86.3 + 74 5 7 3 4 7 12 48 32 6 5 15-11119.3 89.6 86.4 + 74 5 8 6 3 5 27 5 9 22 27 13-11115.8 89.8 86.4 + 74 5 9 18 18 15 12 12 6 3 5 11-11110.0 90.0 86.5 + 74 5 10 3 5 4 2 2 3 2 0 3-11105.1 90.1 86.5 + 74 5 11 2 2 2 9 5 5 5 7 5-11104.3 90.3 86.5 + 74 5 12 15 5 2 2 2 2 4 5 5-11 97.1 90.4 86.6 + 74 5 13 2 4 4 3 4 5 5 7 4-11 93.5 90.5 86.6 + 74 5 14 9 6 2 7 9 5 22 22 10-11 88.2 90.6 86.6 + 74 5 15 32 12 22 39 56 32 15 32 30-11 84.9 90.7 86.6 + 74 5 16 22 22 39 22 32 18 18 39 27-11 80.3 90.7 86.6 + 74 5 17 48 67 27 22 56 32 15 39 38-11 75.8 90.7 86.6 + 74 5 18 27 39 32 22 18 15 15 22 24-11 75.2 90.7 86.7 + 74 5 19 15 15 32 18 22 15 18 12 18-11 73.0 90.8 86.7 + 74 5 20 32 15 12 15 22 9 27 15 18-11 72.5 90.8 86.7 + 74 5 21 18 15 18 27 15 18 18 18 18-11 71.9 90.8 86.8 + 74 5 22 18 22 18 15 15 12 48 32 23-11 72.2 90.9 86.8 + 74 5 23 18 27 22 12 12 32 56 22 25-11 71.5 90.9 86.9 + 74 5 24 39 39 48 32 18 22 67 48 39-11 71.6 91.1 86.9 + 74 5 25 15 12 5 27 22 9 9 15 14-11 72.4 91.3 86.9 + 74 5 26 15 12 12 9 7 9 15 7 11-11 79.6 91.3 87.0 + 74 5 27 32 22 9 9 6 7 9 15 14-11 85.1 91.4 87.0 + 74 5 28 15 9 12 22 12 3 2 7 10-11 87.4 91.5 87.0 + 74 5 29 5 7 7 9 5 9 9 6 7-11 89.4 91.6 87.0 + 74 5 30 6 9 9 15 22 39 18 15 17-11 91.3 91.7 87.0 + 74 5 31 15 22 15 32 32 22 22 80 30-11 95.1 91.8 86.9 + 74 6 1 48 15 22 27 32 22 15 39 28-11 97.9 91.8 86.9 + 74 6 2 27 9 18 32 18 22 12 9 18-11100.1 91.9 86.9 + 74 6 3 15 22 27 32 9 18 12 18 19-11 98.9 92.0 86.9 + 74 6 4 18 15 7 5 6 5 9 9 9-11 98.2 92.1 86.8 + 74 6 5 4 9 6 5 7 6 5 6 6-11 96.5 92.2 86.8 + 74 6 6 6 12 7 5 12 3 4 0 6-11 95.0 92.4 86.8 + 74 6 7 2 2 3 2 3 4 5 4 3-11 92.8 92.6 86.8 + 74 6 8 4 6 9 5 6 9 5 3 6-11 95.0 92.7 86.8 + 74 6 9 4 4 2 4 9 15 15 6 7-11 95.1 92.8 86.8 + 74 6 10 18 12 12 7 12 15 32 12 15-11 97.0 92.7 86.8 + 74 6 11 7 22 12 32 32 27 48 80 33-11 95.3 92.6 86.8 + 74 6 12 48 27 27 67 22 12 15 15 29-11 91.7 92.4 86.8 + 74 6 13 32 32 22 12 15 27 15 15 21-11 89.8 92.2 86.9 + 74 6 14 18 22 12 12 15 22 32 12 18-11 88.1 91.9 86.9 + 74 6 15 32 32 39 22 67 27 22 56 37-11 84.7 91.5 86.9 + 74 6 16 22 18 27 12 7 12 15 15 16-11 86.2 91.1 86.9 + 74 6 17 15 15 22 12 18 18 7 15 15-11 87.2 90.8 86.9 + 74 6 18 15 9 9 5 9 7 5 18 10-11 84.4 90.4 86.9 + 74 6 19 18 5 6 12 12 15 27 7 13-11 82.8 90.1 87.0 + 74 6 20 12 15 18 18 12 18 15 39 18-11 83.8 89.8 87.0 + 74 6 21 18 5 4 3 7 7 5 7 7-11 81.4 89.6 87.0 + 74 6 22 15 15 4 7 7 7 7 5 8-11 82.3 89.5 86.9 + 74 6 23 6 5 4 7 12 9 5 9 7-11 80.2 89.4 86.9 + 74 6 24 9 7 9 9 9 6 9 6 8-11 79.1 89.3 86.9 + 74 6 25 6 3 7 2 2 4 5 48 10-11 78.8 89.3 86.8 + 74 6 26 32 48 39 56 48 32 39 27 40-11 79.6 89.4 86.8 + 74 6 27 39 94 80 27 39 48 80 27 54-11 82.4 89.5 86.7 + 74 6 28 39 22 18 32 32 22 27 18 26-11 83.0 89.7 86.7 + 74 6 29 18 12 12 27 32 27 18 9 19-11 89.4 89.9 86.6 + 74 6 30 18 18 15 18 18 15 15 5 15-11 93.1 90.1 86.6 + 74 7 1 15 9 9 7 9 6 12 9 10-11105.4 90.3 86.6 + 74 7 2 7 7 18 18 12 15 6 12 12-11112.7 90.5 86.7 + 74 7 3 6 6 15 12 7 6 6 15 9-11118.5 90.9 86.7 + 74 7 4 48 32 22 7 27 56 18 39 31-11127.8 91.2 86.7 + 74 7 5 56111 56 48 67 94 67 94 74-11125.6 91.4 86.7 + 74 7 6111236300 80154 94 48 15130-11121.5 91.6 86.7 + 74 7 7 22 22 9 9 9 18 9 22 15-11110.9 91.7 86.7 + 74 7 8 18 15 18 27 67 48 39 56 36-11104.7 91.9 86.7 + 74 7 9 27 27 12 12 9 6 15 15 15-11 95.5 91.9 86.7 + 74 7 10 15 12 18 22 32 18 18 22 20-11 88.2 91.9 86.7 + 74 7 11 7 15 9 12 18 15 18 15 14-11 83.1 91.8 86.7 + 74 7 12 12 15 7 22 27 22 39 39 23-11 83.3 91.5 86.7 + 74 7 13 22 15 15 12 9 9 12 6 13-11 83.3 91.3 86.6 + 74 7 14 32 56 22 7 22 6 9 27 23-11 83.3 91.1 86.6 + 74 7 15 15 15 15 6 12 7 5 9 11-11 85.5 90.8 86.6 + 74 7 16 12 18 15 9 6 4 6 6 10-11 91.3 90.6 86.5 + 74 7 17 15 6 5 6 6 9 15 6 9-11 91.0 90.3 86.5 + 74 7 18 12 7 5 5 5 4 6 4 6-11 86.5 90.1 86.4 + 74 7 19 3 6 4 4 9 9 9 7 6-11 87.1 89.8 86.4 + 74 7 20 6 7 12 9 9 6 15 22 11-11 86.7 89.5 86.4 + 74 7 21 15 5 4 4 6 9 12 15 9-11 90.1 89.2 86.3 + 74 7 22 3 4 15 5 6 7 6 15 8-11 95.3 89.0 86.3 + 74 7 23 39 94 39132 94 80111 67 82-11 98.5 88.8 86.3 + 74 7 24 67 67 48 48 48 56 48 27 51-11 92.1 88.7 86.3 + 74 7 25 15 22 27 39 15 18 18 18 22-11 89.5 88.6 86.2 + 74 7 26 12 48 18 9 15 18 27 15 20-11 93.1 88.5 86.2 + 74 7 27 18 22 39 39 22 9 22 22 24-11 87.9 88.5 86.2 + 74 7 28 39 39 12 18 5 12 15 5 18-11 84.5 88.4 86.2 + 74 7 29 6 22 12 18 7 15 9 12 13-11 85.2 88.4 86.2 + 74 7 30 6 9 12 18 5 6 6 5 8-11 85.9 88.5 86.2 + 74 7 31 9 9 4 4 6 5 6 5 6-11 87.4 88.7 86.2 + 74 8 1 6 6 7 6 6 6 3 4 6-11 85.1 88.9 86.2 + 74 8 2 6 4 6 3 22 56 39 39 22-11 85.2 89.2 86.2 + 74 8 3 18 15 27 32 27 48 56 56 35-11 83.0 89.5 86.2 + 74 8 4 80 18 18 7 6 12 27 22 24-11 85.8 89.9 86.2 + 74 8 5 32 27 22 18 18 12 18 18 21-11 86.5 90.2 86.2 + 74 8 6 22 18 9 12 18 18 39 22 20-11 88.0 90.5 86.2 + 74 8 7 27 15 12 18 12 22 27 39 22-11 85.8 90.7 86.2 + 74 8 8 22 39 18 9 6 9 12 12 16-11 89.4 90.9 86.2 + 74 8 9 6 22 18 9 5 22 18 32 17-11 87.5 91.1 86.2 + 74 8 10 27 27 18 12 6 7 18 15 16-11 88.3 91.1 86.2 + 74 8 11 15 9 12 12 6 6 12 9 10-11 94.4 90.8 86.2 + 74 8 12 5 6 6 4 4 4 4 7 5-11 99.4 90.4 86.2 + 74 8 13 4 6 7 5 6 4 5 7 6-11 95.2 90.0 86.2 + 74 8 14 6 9 4 3 2 4 4 5 5-11 93.2 89.3 86.2 + 74 8 15 6 4 3 4 7 4 3 3 4-11 92.1 88.7 86.2 + 74 8 16 2 7 6 7 5 4 4 9 6-11 96.6 88.1 86.2 + 74 8 17 12 4 2 4 9 6 3 5 6-11 98.8 87.6 86.1 + 74 8 18 5 5 12 6 12 9 6 22 10-11 95.1 87.3 86.1 + 74 8 19 27 18 48 56 39 48 32 48 40-11 88.8 87.1 86.0 + 74 8 20 80 56 56 39 27 48 39 27 47-11 82.6 87.1 86.0 + 74 8 21 67 39 39 48 32 27 27 32 39-11 81.2 87.2 86.0 + 74 8 22 48 32 27 32 32 39 56 32 37-11 80.6 87.4 85.9 + 74 8 23 56 32 39 48 27 32 32 22 36-11 81.0 87.5 85.9 + 74 8 24 32 27 12 56 27 22 27 6 26-11 77.4 87.6 85.9 + 74 8 25 18 15 15 9 9 12 6 18 13-11 75.7 87.8 85.8 + 74 8 26 7 4 4 6 7 12 12 7 7-11 73.8 88.1 85.8 + 74 8 27 12 18 22 18 27 12 18 15 18-11 72.7 88.4 85.8 + 74 8 28 39 15 7 12 12 27 18 32 20-11 71.8 88.7 85.7 + 74 8 29 32 39 18 67 27 39 22 7 31-11 72.4 89.2 85.7 + 74 8 30 39 18 5 9 9 7 32 15 17-11 74.2 89.7 85.7 + 74 8 31 27 22 18 7 9 18 32 32 21-11 75.6 90.2 85.7 + 74 9 1 18 48 18 18 32 15 15 27 24-11 77.8 90.7 85.7 + 74 9 2 39 18 32 39 12 18 39 56 32-11 79.4 91.3 85.7 + 74 9 3 22 18 18 18 12 15 18 9 16-11 79.2 91.7 85.6 + 74 9 4 18 18 15 9 9 6 39 48 20-11 81.0 92.0 85.6 + 74 9 5 39 32 15 27 9 12 6 9 19-11 81.5 92.1 85.6 + 74 9 6 27 18 12 12 5 9 18 7 14-11 82.2 92.2 85.6 + 74 9 7 12 12 9 12 6 15 22 7 12-11 85.4 92.2 85.6 + 74 9 8 15 6 9 6 5 5 7 6 7-11 93.4 92.2 85.6 + 74 9 9 9 7 2 2 7 5 5 4 5-11 96.0 92.0 85.5 + 74 9 10 12 7 3 5 5 5 5 7 6-11102.0 91.9 85.5 + 74 9 11 7 6 5 3 3 5 3 3 4-11104.6 91.7 85.5 + 74 9 12 2 3 6 2 3 7 18 4 6-11105.6 91.6 85.4 + 74 9 13 4 6 9 32 18 22 22 18 16-11106.8 91.5 85.4 + 74 9 14 7 5 3 7 6 4 12 27 9-11104.1 91.3 85.4 + 74 9 15 5 6 5 12154179154 67 73-11103.6 91.2 85.4 + 74 9 16207179 80111 94 12 12 7 88-11102.0 91.1 85.4 + 74 9 17 6 9 3 2 4 3 0 0 3-11100.3 91.1 85.3 + 74 9 18 0 3 9 3 39 67 12 18 19-11100.0 91.0 85.3 + 74 9 19 67 18 56 39 18 15 22 39 34-11 91.7 90.9 85.3 + 74 9 20 39 22 39 39 27 67 18 27 35-11 85.9 90.8 85.3 + 74 9 21 32 9 7 22 94 94 32 56 43-11 82.7 90.7 85.2 + 74 9 22 39 27 22 22 27 22 7 27 24-11 81.0 90.6 85.2 + 74 9 23 12 12 12 9 18 12 22 27 16-11 74.6 90.6 85.2 + 74 9 24 12 56 39 32 27 22 18 5 26-11 72.8 90.6 85.2 + 74 9 25 32 15 9 15 22 39 48 56 30-11 72.8 90.7 85.2 + 74 9 26 39 48 48 48 32 32 27 27 38-11 75.4 90.7 85.1 + 74 9 27 22 22 15 39 48 18 32 7 25-11 77.0 90.6 85.1 + 74 9 28 18 15 7 9 22 12 18 15 15-11 80.7 90.5 85.1 + 74 9 29 15 15 12 15 22 27 15 6 16-11 90.7 90.4 85.1 + 74 9 30 18 27 9 27 18 18 18 32 21-11 91.5 90.4 85.1 + 74 10 1 48 32 9 22 39 27 32 15 28-11 93.1 90.3 85.1 + 74 10 2 15 9 18 18 32 18 48 80 30-11 94.6 90.3 85.1 + 74 10 3 32 12 12 7 5 12 9 7 12-11 93.4 90.3 85.1 + 74 10 4 9 7 7 5 6 7 7 18 8-11100.5 90.3 85.1 + 74 10 5 12 6 5 6 7 6 7 27 10-11113.3 90.3 85.1 + 74 10 6 39 9 7 9 6 4 6 7 11-11115.0 90.4 85.1 + 74 10 7 2 6 3 7 3 6 12 7 6-11114.5 90.5 85.1 + 74 10 8 7 5 4 7 7 4 27 22 10-11125.2 90.6 85.1 + 74 10 9 15 67 39 27 48 39 56 18 39-11128.9 90.8 85.0 + 74 10 10 18 18 15 6 5 4 6 12 11-11129.3 91.1 85.0 + 74 10 11 15 7 4 5 4 4 6 5 6-11137.5 91.4 84.9 + 74 10 12 4 9 9 6 27 12 39 32 17-11144.1 91.6 84.8 + 74 10 13 67132111 94111 94 56 27 87-11126.6 91.8 84.7 + 74 10 14 15 15 7 9 5 56 56 80 30-11113.2 92.1 84.6 + 74 10 15 80 67 80 67 18 15 18 56 50-11103.7 92.2 84.4 + 74 10 16 48 39 48 80 94 67 39132 68-11 94.9 92.4 84.3 + 74 10 17 32 56 56 39 39 80 32 39 47-11 83.8 92.5 84.2 + 74 10 18 67 67 32 22 39 32 56 27 43-11 81.0 92.6 84.1 + 74 10 19 27 27 18 32 39 39 27 22 29-11 75.2 92.5 84.1 + 74 10 20 18 48 48 48 48 67 27 27 41-11 75.5 92.4 84.0 + 74 10 21 9 15 22 6 4 6 7 12 10-11 73.9 92.1 84.0 + 74 10 22 9 6 22 15 18 18 27 6 15-11 72.6 91.8 84.0 + 74 10 23 5 9 5 4 2 2 3 9 5-11 74.0 91.5 84.0 + 74 10 24 39 94 67 22 18 27 18 22 38-11 74.7 91.1 84.0 + 74 10 25 22 15 27 18 22 32 9 32 22-11 76.9 90.7 83.9 + 74 10 26 27 22 48 22 27 27 32 22 28-11 80.7 90.4 83.9 + 74 10 27 32 27 9 18 18 56 27 15 25-11 80.0 90.0 83.9 + 74 10 28 56 32 6 18 22 27 22 48 29-11 81.6 89.6 83.9 + 74 10 29 27 22 22 18 18 12 12 12 18-11 81.6 89.3 83.9 + 74 10 30 15 12 7 12 15 15 5 12 12-11 82.7 89.0 83.8 + 74 10 31 15 9 4 4 2 6 12 9 8-11 86.7 88.8 83.8 + 74 11 1 12 9 4 3 2 2 4 15 6-11 90.2 88.7 83.7 + 74 11 2 7 15 3 5 4 2 2 4 5-11 92.0 88.7 83.6 + 74 11 3 4 6 5 6 3 4 3 15 6-11 96.2 88.7 83.5 + 74 11 4 6 4 2 2 2 3 4 3 3-11 99.5 88.8 83.4 + 74 11 5 5 4 4 4 4 3 6 12 5-11 97.6 88.9 83.3 + 74 11 6 15 12 12 6 15 9 3 5 10-11 92.3 89.1 83.1 + 74 11 7 5 9 7 12 4 9 9 4 7-11 85.6 89.2 83.0 + 74 11 8 9 6 5 4 15 15 48 67 21-11 82.0 89.3 82.9 + 74 11 9 56 67 67 39 39 27 7 9 39-11 78.9 89.3 82.8 + 74 11 10 9 15 9 4 4 7 7 22 10-11 78.4 89.3 82.7 + 74 11 11 18 15 7 18 48132 80 67 48-11 77.3 89.2 82.6 + 74 11 12 94 94 80 48 67 56 67 56 70-11 79.1 89.1 82.6 + 74 11 13 39 27 32 39 22 39 39 48 36-11 76.1 89.0 82.5 + 74 11 14 67 67 48 32 48 39 4 3 39-11 77.7 88.7 82.5 + 74 11 15 5 4 6 18 18 6 12 12 10-11 80.0 88.3 82.4 + 74 11 16 9 15 22 18 15 18 22 9 16-11 82.5 87.8 82.4 + 74 11 17 32 18 7 9 12 12 7 12 14-11 84.6 87.3 82.4 + 74 11 18 15 6 6 12 6 6 9 5 8-11 88.5 86.7 82.4 + 74 11 19 7 12 7 12 12 22 18 18 14-11 96.0 86.0 82.4 + 74 11 20 22 22 15 39 27 22 22 7 22-11 95.6 85.3 82.4 + 74 11 21 9 18 27 39 18 39 18 27 24-11 96.2 84.5 82.4 + 74 11 22 18 27 18 15 15 22 18 12 18-11 98.7 83.7 82.4 + 74 11 23 15 12 12 15 18 18 15 22 16-11 98.1 83.1 82.4 + 74 11 24 22 27 9 18 18 39 27 48 26-11 95.9 82.7 82.4 + 74 11 25 27 27 15 9 7 22 22 22 19-11 94.5 82.3 82.3 + 74 11 26 18 9 12 7 27 27 18 15 17-11 92.2 82.0 82.3 + 74 11 27 12 9 9 6 5 7 6 15 9-11 90.8 81.9 82.2 + 74 11 28 9 12 12 4 5 2 3 2 6-11 86.6 81.8 82.2 + 74 11 29 5 4 5 3 2 3 2 0 3-11 83.8 81.9 82.1 + 74 11 30 2 4 0 2 2 0 0 5 2-11 82.0 81.9 82.1 + 74 12 1 4 2 2 4 4 6 12 15 6-11 79.7 82.0 82.0 + 74 12 2 22 27 12 12 9 12 15 9 15-11 78.7 82.1 81.9 + 74 12 3 18 15 9 12 12 7 32 18 15-11 76.7 82.2 81.8 + 74 12 4 18 15 12 7 5 5 4 4 9-11 74.7 82.3 81.8 + 74 12 5 3 3 3 4 9 9 15 7 7-11 73.2 82.3 81.7 + 74 12 6 7 6 3 6 4 4 2 3 4-11 71.9 82.3 81.6 + 74 12 7 6 5 6 9 12 12 6 7 8-11 71.1 82.2 81.5 + 74 12 8 6 7 7 12 15 18 15 27 13-11 69.6 82.1 81.5 + 74 12 9 27 48 27 48 48 56 48 32 42-11 69.6 82.1 81.4 + 74 12 10 32 27 22 9 18 22 15 12 20-11 70.4 82.0 81.3 + 74 12 11 12 22 18 27 27 18 32 9 21-11 76.2 81.8 81.2 + 74 12 12 15 22 22 18 27 18 7 15 18-11 77.9 81.6 81.2 + 74 12 13 12 18 7 9 22 39 39 27 22-11 78.0 81.4 81.1 + 74 12 14 27 22 18 5 2 7 12 9 13-11 78.2 81.1 81.1 + 74 12 15 7 12 22 15 12 15 12 18 14-11 83.2 80.7 81.0 + 74 12 16 6 2 5 4 4 9 18 12 8-11 88.3 80.4 81.0 + 74 12 17 12 22 12 9 7 22 27 32 18-11 88.3 80.1 80.9 + 74 12 18 32 27 27 27 27 39 27 15 28-11 90.3 79.9 80.9 + 74 12 19 32 27 18 27 18 18 39 39 27-11 91.9 79.8 80.9 + 74 12 20 27 18 18 32 22 18 18 12 21-11 87.3 79.7 80.8 + 74 12 21 15 22 15 18 22 18 22 22 19-11 86.0 79.6 80.8 + 74 12 22 27 27 9 7 9 15 7 12 14-11 84.4 79.5 80.8 + 74 12 23 12 9 9 7 15 32 32 22 17-11 83.0 79.4 80.7 + 74 12 24 15 12 9 9 18 15 9 22 14-11 80.1 79.4 80.7 + 74 12 25 7 7 4 6 5 18 39 7 12-11 78.9 79.3 80.7 + 74 12 26 7 15 18 18 9 7 12 6 12-11 75.8 79.3 80.7 + 74 12 27 12 18 39 32 18 18 18 15 21-11 74.3 79.2 80.7 + 74 12 28 9 9 22 18 9 12 9 7 12-11 73.7 79.1 80.7 + 74 12 29 9 9 7 18 15 9 9 9 11-11 74.1 79.0 80.7 + 74 12 30 7 6 2 3 3 3 9 15 6-11 74.5 78.8 80.7 + 74 12 31 32 32 9 6 6 9 15 7 15-11 76.1 78.6 80.6 + 75 1 1 9 15 7 5 4 6 7 6 7-11 78.0 78.3 80.5 + 75 1 2 5 5 2 2 3 2 6 3 4-11 75.8 78.1 80.4 + 75 1 3 5 4 9 5 6 9 9 12 7-11 77.1 77.8 80.2 + 75 1 4 22 22 27 39 39 48 27 32 32-11 74.4 77.5 80.1 + 75 1 5 27 22 27 18 27 32 32 32 27-11 73.7 77.2 80.0 + 75 1 6 15 9 7 9 18 18 39 94 26-11 73.8 76.9 79.9 + 75 1 7179 56 48 18 18 12 9 12 44-11 75.7 76.7 79.8 + 75 1 8 18 27 48 48 56 32 48 9 36-11 77.7 76.5 79.7 + 75 1 9 7 9 12 9 7 7 3 5 7-11 79.9 76.3 79.7 + 75 1 10 6 4 9 15 6 2 2 5 6-11 80.5 76.1 79.7 + 75 1 11 7 5 4 4 3 3 2 6 4-11 81.2 76.0 79.7 + 75 1 12 7 2 2 3 2 2 9 7 4-11 82.4 75.9 79.7 + 75 1 13 32 48 27 22 27 27 39 32 32-11 80.4 75.8 79.7 + 75 1 14 27 48 22 22 48 32 39 27 33-11 77.7 75.7 79.7 + 75 1 15 18 15 9 9 9 9 22 32 15-11 77.4 75.7 79.7 + 75 1 16 27 15 7 18 22 32 18 32 21-11 76.5 75.6 79.7 + 75 1 17 27 18 48 32 22 27 22 39 29-11 74.7 75.6 79.6 + 75 1 18 39 27 9 27 32 18 18 9 22-11 75.8 75.6 79.6 + 75 1 19 9 12 15 15 6 6 9 7 10-11 74.1 75.6 79.6 + 75 1 20 18 12 7 7 4 9 12 12 10-11 73.8 75.6 79.6 + 75 1 21 7 4 3 5 7 12 9 3 6-11 74.5 75.5 79.6 + 75 1 22 3 4 5 2 5 15 12 15 8-11 73.6 75.5 79.5 + 75 1 23 15 7 7 6 15 12 22 9 12-11 72.7 75.4 79.5 + 75 1 24 15 15 5 18 6 9 7 5 10-11 71.0 75.3 79.5 + 75 1 25 3 3 2 4 3 15 7 4 5-11 70.3 75.2 79.4 + 75 1 26 18 4 3 2 4 3 4 3 5-11 70.5 75.0 79.4 + 75 1 27 3 12 12 22 12 18 22 9 14-11 70.1 74.8 79.4 + 75 1 28 39 18 12 7 7 4 7 6 13-11 70.7 74.6 79.4 + 75 1 29 6 9 5 7 9 5 5 4 6-11 70.4 74.4 79.3 + 75 1 30 6 5 6 9 3 4 9 15 7-11 70.5 74.2 79.3 + 75 1 31 9 5 5 18 9 32 27 27 17-11 70.1 74.0 79.3 + 75 2 1 18 48 39 39 48 32 32 39 37-11 70.8 73.9 79.4 + 75 2 2 39 32 22 27 22 15 22 7 23-11 72.3 73.8 79.4 + 75 2 3 12 22 15 7 15 9 7 5 12-11 74.3 73.8 79.5 + 75 2 4 9 12 5 5 15 12 9 15 10-11 75.4 73.7 79.5 + 75 2 5 18 12 9 15 18 32 15 18 17-11 76.5 73.7 79.6 + 75 2 6 9 12 9 6 4 7 12 9 9-11 81.1 73.7 79.7 + 75 2 7 12 15 12 15 9 18 18 18 15-11 79.4 73.7 79.8 + 75 2 8 12 12 12 9 4 5 3 6 8-11 78.8 73.7 79.9 + 75 2 9 27 15 9 0 2 6 9 22 11-11 77.1 73.6 80.0 + 75 2 10 39 48 39 15 32 39 27 67 38-11 76.7 73.6 80.0 + 75 2 11 56 27 22 18 22 48 48 48 36-11 74.8 73.4 80.0 + 75 2 12 32 32 39 39 22 39 39 39 35-11 74.9 73.3 80.0 + 75 2 13 27 22 22 18 22 32 48 27 27-11 73.7 73.2 80.0 + 75 2 14 32 27 22 22 18 32 22 27 25-11 72.0 73.1 80.0 + 75 2 15 18 18 22 12 22 22 27 27 21-11 69.7 73.1 79.9 + 75 2 16 18 22 27 32 22 48 39 32 30-11 71.4 73.0 79.9 + 75 2 17 12 15 15 18 15 15 12 12 14-11 69.3 72.9 79.8 + 75 2 18 27 27 15 7 18 7 9 12 15-11 68.3 72.8 79.8 + 75 2 19 7 15 15 12 12 4 12 12 11-11 70.0 72.7 79.8 + 75 2 20 15 6 9 12 4 3 7 9 8-11 69.5 72.5 79.8 + 75 2 21 12 7 6 7 7 15 7 7 9-11 68.9 72.4 79.8 + 75 2 22 12 6 5 7 6 7 6 7 7-11 68.3 72.3 79.8 + 75 2 23 18 9 22 80 56 39 15 15 32-11 68.3 72.2 79.8 + 75 2 24 27 18 7 5 18 22 15 22 17-11 68.6 72.2 79.8 + 75 2 25 27 39 27 12 27 15 7 9 20-11 69.4 72.1 79.8 + 75 2 26 15 22 9 7 5 5 5 2 9-11 68.8 72.1 79.8 + 75 2 27 3 7 9 2 5 5 2 5 5-11 69.4 72.1 79.9 + 75 2 28 7 12 12 5 7 12 22 22 12-11 68.6 72.0 79.9 + 75 3 1 27 18 39 22 7 18 18 22 21-11 70.7 72.0 79.9 + 75 3 2 22 15 6 9 7 6 7 12 11-11 72.4 72.0 80.0 + 75 3 3 15 7 5 7 9 12 18 18 11-11 73.4 72.0 80.0 + 75 3 4 18 12 9 7 6 3 5 9 9-11 72.8 71.9 80.0 + 75 3 5 18 27 27 48 39 39 27 18 30-11 71.3 71.9 80.0 + 75 3 6 9 18 27 22 15 32 18 22 20-11 72.4 71.9 80.1 + 75 3 7 4 4 2 3 3 3 3 4 3-11 71.9 71.9 80.1 + 75 3 8 2 2 0 0 2 3 2 2 2-11 72.5 71.8 80.1 + 75 3 9 2 2 3 2 5 5 7 39 8-11 73.8 71.8 80.2 + 75 3 10 80 48 48 80 56 67132132 80-11 73.3 71.8 80.1 + 75 3 11111 94 48 27 32 32 22 56 53-11 73.0 71.7 80.1 + 75 3 12 32 48 27 27 18 32 56 56 37-11 74.2 71.7 80.1 + 75 3 13 39 15 9 18 15 22 80 32 29-11 75.6 71.7 80.0 + 75 3 14 18 32 27 18 18 22 32 67 29-11 75.0 71.7 79.9 + 75 3 15 27 18 15 18 12 27 27 15 20-11 73.4 71.6 79.8 + 75 3 16 12 15 56 48 32 27 9 15 27-11 76.0 71.6 79.7 + 75 3 17 22 18 12 12 6 6 9 22 13-11 75.3 71.6 79.7 + 75 3 18 22 7 9 12 15 39 12 18 17-11 74.2 71.5 79.6 + 75 3 19 9 6 7 4 9 6 15 32 11-11 72.9 71.5 79.5 + 75 3 20 9 12 9 15 15 22 18 12 14-11 71.9 71.4 79.5 + 75 3 21 9 4 4 3 0 0 2 2 3-11 71.2 71.3 79.4 + 75 3 22 2 6 6 12 3 5 3 12 6-11 69.3 71.3 79.4 + 75 3 23 22 27 22 12 6 3 4 7 13-11 67.6 71.4 79.4 + 75 3 24 7 4 5 27 22 27 12 12 15-11 67.4 71.4 79.4 + 75 3 25 12 9 6 4 12 6 6 5 8-11 67.5 71.5 79.4 + 75 3 26 4 15 15 32 22 12 22 12 17-11 68.6 71.5 79.4 + 75 3 27 15 12 7 12 32 94 80 22 34-11 67.3 71.6 79.4 + 75 3 28 15 22 80 39 48 32 39 27 38-11 67.8 71.6 79.4 + 75 3 29 18 32 32 18 18 32 15 9 22-11 69.0 71.6 79.4 + 75 3 30 15 9 7 9 12 6 7 12 10-11 69.0 71.6 79.4 + 75 3 31 18 18 12 6 9 15 18 7 13-11 70.5 71.7 79.3 + 75 4 1 12 6 12 7 4 9 3 3 7-11 70.2 71.7 79.3 + 75 4 2 6 5 4 3 3 4 9 9 5-11 71.2 71.7 79.2 + 75 4 3 15 6 7 3 4 5 6 6 7-11 72.2 71.7 79.2 + 75 4 4 6 9 6 6 5 6 9 12 7-11 73.0 71.7 79.2 + 75 4 5 18 7 7 6 3 9 18 9 10-11 73.7 71.7 79.1 + 75 4 6 15 7 9 9 7 12 12 48 15-11 73.7 71.7 79.0 + 75 4 7 12 7 6 15 27 15 48 67 25-11 74.3 71.7 78.9 + 75 4 8 22 27 15 27 39 67 48 12 32-11 73.6 71.7 78.8 + 75 4 9 39 80 48 32 27 80 39 67 52-11 73.4 71.6 78.6 + 75 4 10 56 48 27 32 27 18 27 48 35-11 72.4 71.6 78.5 + 75 4 11 56 48 27 39 48 27 12 18 34-11 72.3 71.6 78.3 + 75 4 12 12 18 18 48 22 18 15 67 27-11 70.8 71.6 78.2 + 75 4 13 56 27 67 9 18 9 18 27 29-11 70.7 71.6 78.0 + 75 4 14 39 39 18 15 9 15 15 15 21-11 69.7 71.6 77.8 + 75 4 15 7 6 5 5 6 12 9 6 7-11 69.7 71.5 77.7 + 75 4 16 12 9 9 4 3 5 4 3 6-11 69.2 71.5 77.7 + 75 4 17 3 2 3 6 7 9 5 3 5-11 69.6 71.5 77.6 + 75 4 18 3 5 3 7 15 6 5 6 6-11 68.3 71.5 77.6 + 75 4 19 5 6 5 4 6 9 4 3 5-11 67.5 71.4 77.6 + 75 4 20 2 3 7 9 15 39 67 56 25-11 68.0 71.4 77.6 + 75 4 21 80 9 7 15 27 22 18 5 23-11 68.2 71.4 77.6 + 75 4 22 18 27 18 7 12 7 12 22 15-11 67.8 71.3 77.6 + 75 4 23 27 18 22 39 12 39 22 22 25-11 68.7 71.3 77.6 + 75 4 24 27 15 15 27 9 15 15 15 17-11 69.3 71.3 77.6 + 75 4 25 12 12 9 6 6 6 3 6 8-11 71.6 71.2 77.6 + 75 4 26 22 5 4 9 6 9 12 7 9-11 72.1 71.1 77.6 + 75 4 27 5 12 4 5 0 2 5 5 5-11 74.4 71.0 77.6 + 75 4 28 5 3 2 2 0 3 4 3 3-11 74.8 71.0 77.6 + 75 4 29 3 0 2 5 2 3 2 2 2-11 73.2 70.9 77.5 + 75 4 30 2 4 12 7 5 4 4 7 6-11 73.4 70.9 77.5 + 75 5 1 4 4 7 6 6 5 6 7 6-11 76.3 70.8 77.5 + 75 5 2 9 15 15 18 18 12 22 22 16-11 81.1 70.8 77.4 + 75 5 3 22 32 18 15 22 15 9 18 19-11 79.6 70.8 77.4 + 75 5 4 22 18 15 6 9 6 9 27 14-11 79.6 70.8 77.3 + 75 5 5 67 32 32 12 18 27 32 48 34-11 78.4 70.8 77.3 + 75 5 6 80 80 27 15 15 27 12 27 35-11 75.9 70.8 77.2 + 75 5 7 15 6 12 22 39 32 32 22 23-11 73.6 70.9 77.1 + 75 5 8 22 9 9 7 7 9 18 27 14-11 71.9 70.9 77.1 + 75 5 9 18 9 9 15 12 12 18 32 16-11 70.6 70.9 77.1 + 75 5 10 48 39 22 9 12 4 7 12 19-11 70.1 71.0 77.1 + 75 5 11 2 3 2 3 2 3 2 0 2-11 69.8 71.0 77.1 + 75 5 12 2 3 3 2 2 3 6 3 3-11 69.6 71.0 77.1 + 75 5 13 3 4 6 4 4 5 9 15 6-11 69.1 70.9 77.1 + 75 5 14 39 18 12 12 7 5 7 12 14-11 68.7 71.0 77.1 + 75 5 15 3 5 5 2 2 2 2 2 3-11 68.0 71.0 77.1 + 75 5 16 2 15 67 22 39 18 27 32 28-11 68.5 71.0 77.1 + 75 5 17 15 18 18 22 22 9 5 4 14-11 68.3 71.1 77.1 + 75 5 18 6 9 9 6 6 7 7 9 7-11 68.7 71.2 77.1 + 75 5 19 15 15 12 7 4 2 48 18 15-11 68.9 71.3 77.2 + 75 5 20 32 32 48 39 7 18 5 4 23-11 68.6 71.4 77.2 + 75 5 21 12 12 6 12 9 7 22 12 12-11 69.7 71.4 77.2 + 75 5 22 7 7 12 18 18 9 6 9 11-11 70.8 71.5 77.1 + 75 5 23 6 12 12 12 6 5 9 3 8-11 70.6 71.6 77.1 + 75 5 24 3 4 7 6 4 4 5 9 5-11 70.6 71.7 77.1 + 75 5 25 9 9 4 5 7 15 27 39 14-11 70.2 71.8 77.0 + 75 5 26 48 39 22 9 5 6 5 6 18-11 69.0 71.9 77.0 + 75 5 27 7 7 12 9 18 7 12 9 10-11 70.5 71.9 76.9 + 75 5 28 9 5 2 2 3 7 6 4 5-11 70.6 72.0 76.8 + 75 5 29 9 7 18 9 6 12 12 12 11-11 71.0 72.1 76.8 + 75 5 30 6 9 6 6 5 5 4 6 6-11 71.0 72.1 76.7 + 75 5 31 4 4 2 2 4 5 3 5 4-11 71.1 72.2 76.7 + 75 6 1 7 5 4 7 27 32 67 39 24-11 71.4 72.3 76.7 + 75 6 2 39 48 39 27 15 15 15 27 28-11 73.0 72.5 76.7 + 75 6 3 15 7 12 12 12 9 12 15 12-11 70.8 72.7 76.6 + 75 6 4 15 15 12 6 9 9 9 12 11-11 70.4 73.0 76.6 + 75 6 5 18 9 9 12 7 7 15 22 12-11 69.3 73.2 76.6 + 75 6 6 15 12 12 15 9 7 9 9 11-11 68.2 73.3 76.6 + 75 6 7 6 5 7 5 3 4 7 15 7-11 68.1 73.4 76.7 + 75 6 8 3 3 4 4 6 4 2 4 4-11 67.5 73.5 76.7 + 75 6 9 6 12 4 5 4 4 3 4 5-11 67.7 73.6 76.7 + 75 6 10 3 3 3 3 4 5 4 5 4-11 68.8 73.7 76.7 + 75 6 11 7 6 18 32 15 9 18 9 14-11 68.1 73.8 76.7 + 75 6 12 15 18 22 32 48 27 22 32 27-11 68.4 73.8 76.7 + 75 6 13 15 18 12 12 18 12 15 12 14-11 67.9 73.8 76.7 + 75 6 14 5 5 9 9 12 7 15 5 8-11 68.5 73.8 76.7 + 75 6 15 5 7 7 18 9 22 12 22 13-11 68.9 73.9 76.6 + 75 6 16 18 18 12 22 12 22 18 15 17-11 71.4 73.9 76.6 + 75 6 17 6 4 7 22 12 15 18 15 12-11 70.2 74.0 76.6 + 75 6 18 15 18 12 6 9 15 12 6 12-11 70.2 74.0 76.5 + 75 6 19 15 7 12 7 12 15 12 12 12-11 71.0 74.1 76.5 + 75 6 20 6 6 5 4 5 4 12 6 6-11 72.5 74.2 76.4 + 75 6 21 9 12 6 6 5 9 9 15 9-11 68.7 74.3 76.4 + 75 6 22 7 7 5 5 3 2 6 5 5-11 69.9 74.6 76.3 + 75 6 23 4 5 2 2 3 5 5 5 4-11 72.9 74.9 76.3 + 75 6 24 3 3 3 4 2 2 2 2 3-11 75.9 75.3 76.2 + 75 6 25 0 5 4 3 5 4 7 7 4-11 77.7 75.7 76.2 + 75 6 26 6 6 7 5 4 4 5 3 5-11 79.8 76.2 76.2 + 75 6 27 4 4 4 2 4 4 3 5 4-11 81.5 76.9 76.2 + 75 6 28 3 3 6 6 6 3 3 5 4-11 80.7 77.5 76.2 + 75 6 29 6 7 12 7 18 56 67 32 26-11 79.4 78.2 76.2 + 75 6 30 48 32 22 12 12 12 15 22 22-11 78.8 78.8 76.2 + 75 7 1 9 9 12 27 5 9 6 15 12-11 78.7 79.4 76.1 + 75 7 2 12 9 4 2 6 5 4 9 6-11 76.8 79.8 76.1 + 75 7 3 7 7 9 6 6 5 7 7 7-11 77.1 80.3 76.1 + 75 7 4 6 3 3 5 6 5 12 12 7-11 76.8 80.6 76.1 + 75 7 5 5 2 6 4 5 4 4 7 5-11 76.8 80.8 76.1 + 75 7 6 2 4 4 2 4 9 15 9 6-11 76.1 81.1 76.1 + 75 7 7 32 9 5 7 12 7 12 15 12-11 74.1 81.2 76.1 + 75 7 8 27 80 32 48 48 39 15 5 37-11 74.0 81.3 76.1 + 75 7 9 6 32 27111 56 22 12 12 35-11 73.3 81.4 76.1 + 75 7 10 4 18 22 15 27 18 15 15 17-11 73.0 81.4 76.0 + 75 7 11 15 12 48 27 27 7 9 3 19-11 77.6 81.5 76.0 + 75 7 12 6 4 7 2 4 6 9 5 5-11 82.7 81.6 76.0 + 75 7 13 4 7 5 5 12 12 15 18 10-11 88.5 81.7 76.0 + 75 7 14 15 9 9 15 9 9 12 27 13-11 89.0 81.8 75.9 + 75 7 15 15 7 18 18 22 18 12 9 15-11 85.6 81.9 75.9 + 75 7 16 18 15 9 15 15 9 7 7 12-11 83.6 82.0 76.0 + 75 7 17 9 7 12 15 22 9 15 22 14-11 81.2 82.2 76.0 + 75 7 18 15 7 15 27 22 15 9 9 15-11 82.8 82.3 76.0 + 75 7 19 9 12 7 6 5 9 15 9 9-11 81.9 82.5 76.0 + 75 7 20 7 7 9 7 4 4 7 7 7-11 83.3 82.7 76.0 + 75 7 21 2 4 7 9 9 4 7 6 6-11 83.1 83.0 76.0 + 75 7 22 4 4 6 6 5 7 6 12 6-11 82.7 83.2 76.0 + 75 7 23 7 15 7 3 2 4 4 6 6-11 82.0 83.4 76.0 + 75 7 24 12 5 7 6 5 4 4 6 6-11 79.3 83.7 76.0 + 75 7 25 12 22 80 22 39 22 32 32 33-11 79.8 83.9 76.0 + 75 7 26 27 18 15 15 18 22 18 22 19-11 80.0 84.2 76.0 + 75 7 27 12 18 15 7 7 7 12 7 11-11 78.5 84.5 76.0 + 75 7 28 27 15 7 6 6 7 6 6 10-11 76.5 84.8 75.9 + 75 7 29 5 5 3 5 5 2 3 6 4-11 75.5 85.0 75.9 + 75 7 30 6 9 4 5 4 4 3 5 5-11 78.9 85.3 75.9 + 75 7 31 6 4 2 2 4 4 3 15 5-11 81.9 85.4 75.9 + 75 8 1 12 22 12 7 3 4 7 6 9-11 91.6 85.6 75.9 + 75 8 2 7 6 6 6 7 9 6 6 7-11 95.4 85.7 75.9 + 75 8 3 4 4 4 5 9 3 4 4 5-11 97.0 85.8 75.9 + 75 8 4 7 4 3 6 4 7 9 6 6-11104.6 85.8 75.9 + 75 8 5 22 39 32 39 32 27 32 9 29-11107.9 85.7 75.9 + 75 8 6 15 15 12 7 2 2 3 2 7-11120.0 85.7 75.9 + 75 8 7 0 0 0 2 9 12 7 7 5-11123.2 85.6 75.8 + 75 8 8 15 39 27 12 3 4 6 6 14-11123.7 85.5 75.8 + 75 8 9 9 6 9 9 6 22 32 27 15-11115.9 85.5 75.8 + 75 8 10 15 22 39 22 9 7 6 2 15-11116.5 85.4 75.7 + 75 8 11 2 5 9 15 9 4 5 6 7-11107.3 85.4 75.7 + 75 8 12 5 3 4 3 5 3 3 3 4-11104.5 85.4 75.7 + 75 8 13 4 5 5 6 5 5 4 6 5-11 98.0 85.4 75.7 + 75 8 14 27 32 27 15 12 4 6 9 17-11 90.9 85.4 75.7 + 75 8 15 22 7 12 22 27 18 22 12 18-11 86.0 85.4 75.7 + 75 8 16 3 4 4 7 9 4 7 3 5-11 82.8 85.4 75.6 + 75 8 17 9 18 12 7 6 9 7 6 9-11 79.0 85.4 75.6 + 75 8 18 4 5 7 12 4 2 7 5 6-11 76.4 85.4 75.6 + 75 8 19 4 3 5 4 3 5 6 2 4-11 76.7 85.5 75.6 + 75 8 20 0 3 4 7 22 32 12 39 15-11 77.2 85.5 75.6 + 75 8 21 12 27 12 6 7 22 18 32 17-11 80.0 85.5 75.6 + 75 8 22 22 18 7 18 6 6 7 15 12-11 78.5 85.4 75.6 + 75 8 23 22 12 4 15 7 5 6 5 10-11 76.8 85.3 75.6 + 75 8 24 2 6 2 3 12 5 9 9 6-11 77.0 85.1 75.6 + 75 8 25 7 12 12 5 7 6 12 12 9-11 80.6 85.0 75.7 + 75 8 26 7 4 3 4 5 3 6 7 5-11 81.3 84.9 75.7 + 75 8 27 12 18 3 3 2 2 2 5 6-11 83.6 84.8 75.7 + 75 8 28 6 5 4 4 3 4 6 9 5-11 83.3 84.7 75.7 + 75 8 29 32 56 27 22 27 18 12 22 27-11 84.7 84.6 75.6 + 75 8 30 27 27 27 9 5 7 5 7 14-11 86.2 84.5 75.6 + 75 8 31 5 7 9 9 4 4 7 7 7-11 86.7 84.4 75.6 + 75 9 1 3 6 6 7 6 12 9 6 7-11 87.0 84.3 75.6 + 75 9 2 15 7 5 4 5 7 4 5 7-11 87.9 84.2 75.6 + 75 9 3 5 0 3 2 3 5 4 3 3-11 87.8 84.2 75.6 + 75 9 4 2 3 3 2 3 2 3 4 3-11 92.8 84.2 75.6 + 75 9 5 4 3 3 4 3 4 5 6 4-11 94.4 84.2 75.6 + 75 9 6 12 7 7 18 18 18 6 15 13-11 94.0 84.2 75.6 + 75 9 7 7 7 9 12 5 3 3 7 7-11 91.1 84.3 75.5 + 75 9 8 9 5 5 4 7 6 6 7 6-11 88.5 84.3 75.5 + 75 9 9 12 12 22 27 48 27 22 18 24-11 84.3 84.3 75.5 + 75 9 10 32 56 27 22 22 22 9 18 26-11 82.5 84.2 75.5 + 75 9 11 32 32 18 32 22 27 22 22 26-11 81.1 84.0 75.5 + 75 9 12 39 22 22 15 27 9 6 9 19-11 78.2 83.8 75.5 + 75 9 13 27 32 9 32 6 4 6 22 17-11 75.2 83.5 75.5 + 75 9 14 27 18 18 12 18 4 4 3 13-11 74.2 83.1 75.5 + 75 9 15 5 5 18 4 4 6 9 9 8-11 74.1 82.7 75.4 + 75 9 16 9 12 5 4 5 4 4 3 6-11 74.3 82.1 75.4 + 75 9 17 5 15 15 3 12 12 22 18 13-11 74.8 81.4 75.4 + 75 9 18 12 9 7 9 18 22 27 12 15-11 76.2 80.8 75.4 + 75 9 19 9 5 12 9 12 5 6 6 8-11 76.2 80.2 75.5 + 75 9 20 5 6 6 5 5 12 7 9 7-11 76.5 79.7 75.5 + 75 9 21 15 4 2 3 4 7 7 4 6-11 76.7 79.2 75.6 + 75 9 22 5 4 4 3 4 3 4 4 4-11 75.3 78.8 75.6 + 75 9 23 12 5 4 4 2 2 2 3 4-11 76.1 78.5 75.7 + 75 9 24 2 3 3 2 0 0 2 4 2-11 76.8 78.2 75.7 + 75 9 25 3 4 4 2 2 3 2 3 3-11 76.7 78.1 75.7 + 75 9 26 6 15 9 6 18 18 18 22 14-11 76.7 78.1 75.8 + 75 9 27 32 12 22 9 12 15 9 5 15-11 75.7 78.1 75.8 + 75 9 28 7 7 6 12 6 15 3 7 8-11 76.1 78.1 75.9 + 75 9 29 6 6 7 6 4 2 3 3 5-11 75.9 78.2 75.9 + 75 9 30 2 0 3 2 2 2 3 6 3-11 75.8 78.2 76.0 + 75 10 1 15 9 5 7 2 4 3 4 6-11 76.4 78.2 76.0 + 75 10 2 6 2 0 2 0 0 3 6 2-11 78.1 78.2 76.0 + 75 10 3 3 2 3 15 18 6 22 22 11-11 78.4 78.2 76.0 + 75 10 4 32 12 7 4 3 2 6 7 9-11 76.3 78.3 76.0 + 75 10 5 15 12 6 5 6 2 2 4 7-11 76.1 78.3 76.0 + 75 10 6 9 27 39 32 22 18 39 15 25-11 75.1 78.3 76.0 + 75 10 7 39 56 56 27 22 27 18 56 38-11 74.3 78.4 76.0 + 75 10 8 32 39 39 32 27 39 39111 45-11 74.0 78.4 76.0 + 75 10 9 39 39 56 48 27 18 32 39 37-11 75.4 78.5 76.0 + 75 10 10 18 48 48 9 15 18 18 22 25-11 74.3 78.6 76.0 + 75 10 11 12 4 5 2 6 12 15 12 9-11 73.3 78.6 76.0 + 75 10 12 15 15 15 7 6 15 22 5 13-11 74.8 78.6 76.1 + 75 10 13 4 12 12 4 7 6 6 7 7-11 79.0 78.6 76.1 + 75 10 14 5 2 15 15 9 12 7 9 9-11 80.0 78.4 76.1 + 75 10 15 4 6 5 9 3 3 3 4 5-11 80.3 78.2 76.1 + 75 10 16 9 6 6 15 7 7 22 6 10-11 78.5 77.9 76.2 + 75 10 17 18 7 6 9 9 6 4 5 8-11 78.9 77.7 76.2 + 75 10 18 0 4 3 4 9 6 7 3 5-11 79.2 77.4 76.2 + 75 10 19 0 2 2 3 4 4 6 5 3-11 78.0 77.2 76.3 + 75 10 20 6 5 3 3 4 3 4 12 5-11 77.1 77.0 76.3 + 75 10 21 18 7 4 6 2 2 2 7 6-11 75.7 76.9 76.3 + 75 10 22 7 6 6 5 4 3 6 9 6-11 74.2 76.8 76.3 + 75 10 23 15 15 3 5 4 2 5 5 7-11 74.3 76.7 76.4 + 75 10 24 9 9 6 3 3 2 2 2 5-11 72.7 76.7 76.4 + 75 10 25 3 3 5 5 5 3 2 2 4-11 72.1 76.7 76.4 + 75 10 26 7 2 4 4 3 12 4 7 5-11 71.9 76.8 76.4 + 75 10 27 15 12 5 2 2 3 2 2 5-11 72.1 76.8 76.4 + 75 10 28 6 2 3 6 6 7 22 22 9-11 71.7 76.8 76.4 + 75 10 29 15 22 27 5 2 3 5 15 12-11 70.8 76.8 76.4 + 75 10 30 12 7 9 9 5 6 6 18 9-11 70.2 76.7 76.4 + 75 10 31 15 27 56 15 3 15 15 5 19-11 69.9 76.7 76.4 + 75 11 1 5 5 6 9 6 4 3 18 7-11 70.4 76.7 76.4 + 75 11 2 9 15 7 18 22 27111 80 36-11 71.4 76.6 76.4 + 75 11 3 80 67 67 56 48 80 67 56 65-11 73.0 76.6 76.4 + 75 11 4 56 56 48 48 48 32 27 12 41-11 75.4 76.5 76.4 + 75 11 5 18 12 12 39 15 32 27 18 22-11 78.9 76.5 76.4 + 75 11 6 18 18 6 9 18 15 2 3 11-11 80.1 76.4 76.3 + 75 11 7 12 12 6 12 9 18 9 5 10-11 80.5 76.3 76.3 + 75 11 8 7 6 12 7 4 7 6 5 7-11 80.9 76.2 76.3 + 75 11 9 7 18 39 22 27 67 94 22 37-11 78.8 76.2 76.3 + 75 11 10 15 6 6 12 12 12 27 67 20-11 78.9 76.1 76.4 + 75 11 11 27 12 9 12 7 12 15 12 13-11 78.6 76.0 76.4 + 75 11 12 22 12 7 6 5 7 7 6 9-11 79.9 75.9 76.4 + 75 11 13 5 9 5 3 2 0 3 2 4-11 79.2 75.8 76.4 + 75 11 14 2 3 2 2 2 4 7 4 3-11 82.7 75.7 76.4 + 75 11 15 4 4 4 2 0 3 4 15 5-11 83.7 75.7 76.4 + 75 11 16 9 9 9 4 4 3 5 4 6-11 87.6 75.6 76.5 + 75 11 17 3 3 7 9 32 32 27 22 17-11 88.9 75.6 76.5 + 75 11 18 15 6 6 9 6 4 4 4 7-11 90.8 75.6 76.5 + 75 11 19 7 12 22 5 4 4 9 5 9-11 93.0 75.5 76.5 + 75 11 20 9 7 7 4 3 12 12 18 9-11 90.9 75.5 76.5 + 75 11 21 39 18 32 22 6 4 15 12 19-11 86.6 75.5 76.5 + 75 11 22 7 18 48 67 48 94 94 22 50-11 81.5 75.4 76.5 + 75 11 23 32 6 9 3 3 5 4 4 8-11 77.2 75.3 76.5 + 75 11 24 5 4 2 7 27 27 22 12 13-11 74.7 75.2 76.5 + 75 11 25 32 12 15 15 15 15 7 9 15-11 73.7 75.1 76.5 + 75 11 26 4 9 32 32 22 3 4 6 14-11 71.9 75.1 76.5 + 75 11 27 9 3 7 5 4 5 4 6 5-11 70.7 75.0 76.5 + 75 11 28 12 5 15 9 15 9 6 4 9-11 70.4 74.9 76.5 + 75 11 29 7 12 39 48 22 39 48 18 29-11 70.9 74.8 76.5 + 75 11 30 48 39 32 22 48 22 39 39 36-11 70.6 74.7 76.5 + 75 12 1 39 32 32 32 27 39 32 27 33-11 72.1 74.6 76.5 + 75 12 2 27 27 32 39 22 15 27 27 27-11 74.8 74.6 76.5 + 75 12 3 22 6 9 15 15 12 9 12 13-11 74.3 74.6 76.5 + 75 12 4 15 12 9 18 18 18 7 5 13-11 74.1 74.7 76.5 + 75 12 5 9 5 9 7 12 9 9 7 8-11 77.4 74.8 76.5 + 75 12 6 4 7 3 6 12 7 9 6 7-11 75.8 74.9 76.5 + 75 12 7 5 3 4 3 2 5 5 4 4-11 73.7 75.0 76.5 + 75 12 8 7 27 12 6 12 22 22 39 18-11 76.0 75.1 76.5 + 75 12 9 39 15 5 22 27 15 3 5 16-11 73.3 75.2 76.5 + 75 12 10 2 2 3 12 22 15 2 5 8-11 73.3 75.2 76.5 + 75 12 11 3 5 9 6 3 5 9 3 5-11 74.3 75.3 76.5 + 75 12 12 5 3 3 3 2 2 2 3 3-11 73.4 75.3 76.5 + 75 12 13 0 0 2 3 2 6 4 4 3-11 72.8 75.3 76.5 + 75 12 14 4 2 4 4 7 7 7 12 6-11 71.8 75.3 76.5 + 75 12 15 18 12 9 5 6 6 5 9 9-11 71.8 75.2 76.5 + 75 12 16 18 22 12 12 7 12 15 15 14-11 70.5 75.0 76.5 + 75 12 17 7 22 6 3 6 12 6 9 9-11 70.5 74.9 76.6 + 75 12 18 9 6 4 5 7 6 6 7 6-11 69.6 74.7 76.6 + 75 12 19 5 9 3 4 7 12 4 2 6-11 69.1 74.6 76.6 + 75 12 20 4 12 3 2 0 0 0 2 3-11 69.7 74.4 76.6 + 75 12 21 4 3 3 9 18 15 12 7 9-11 69.0 74.3 76.6 + 75 12 22 22 9 9 7 6 9 12 9 10-11 68.9 74.2 76.7 + 75 12 23 6 15 7 5 6 3 7 9 7-11 69.6 74.0 76.7 + 75 12 24 0 3 0 0 0 2 6 7 2-11 71.4 73.9 76.7 + 75 12 25 15 22 22 15 22 15 7 27 18-11 71.0 73.7 76.7 + 75 12 26 32 22 32 27 39 48 48 27 34-11 71.8 73.5 76.7 + 75 12 27 18 32 48 15 12 56 48 22 31-11 72.5 73.3 76.6 + 75 12 28 32 18 15 7 4 12 7 22 15-11 71.5 73.0 76.6 + 75 12 29 15 22 18 12 15 9 22 9 15-11 72.5 72.8 76.6 + 75 12 30 22 18 9 9 7 6 12 7 11-11 71.9 72.5 76.6 + 75 12 31 15 12 4 4 3 4 6 7 7-11 72.1 72.2 76.6 + 76 1 1 5 3 4 6 7 3 4 3 4-11 72.1 72.0 76.5 + 76 1 2 0 5 4 4 4 4 7 5 4-11 71.2 71.8 76.5 + 76 1 3 7 7 9 9 22 12 27 27 15-11 71.3 71.7 76.5 + 76 1 4 12 15 12 5 9 9 12 9 10-11 71.8 71.6 76.5 + 76 1 5 9 15 9 12 5 6 9 7 9-11 71.9 71.6 76.5 + 76 1 6 6 12 7 4 7 15 22 32 13-11 71.7 71.6 76.4 + 76 1 7 27 15 9 7 7 12 6 6 11-11 71.6 71.5 76.4 + 76 1 8 2 6 4 5 5 5 7 9 5-11 70.9 71.5 76.4 + 76 1 9 5 6 4 3 3 3 2 4 4-11 69.4 71.5 76.4 + 76 1 10 5 4 9 22 27 48132132 47-11 70.5 71.5 76.4 + 76 1 11154 48 18 4 7 18 32 48 41-11 72.1 71.5 76.4 + 76 1 12 39 9 9 9 7 12 12 15 14-11 76.9 71.4 76.3 + 76 1 13 9 22 6 6 6 6 7 7 9-11 80.0 71.3 76.2 + 76 1 14 12 12 15 12 15 12 9 9 12-11 82.1 71.3 76.2 + 76 1 15 5 0 0 3 7 15 12 12 7-11 80.4 71.2 76.2 + 76 1 16 15 7 5 5 5 9 18 22 11-11 78.1 71.1 76.1 + 76 1 17 9 22 12 9 6 6 27 22 14-11 76.6 71.0 76.1 + 76 1 18 12 12 15 12 4 2 12 7 10-11 76.7 70.9 76.1 + 76 1 19 7 9 4 7 9 9 9 9 8-11 75.2 70.9 76.0 + 76 1 20 12 12 7 3 6 18 9 18 11-11 74.6 70.8 76.0 + 76 1 21 18 27 18 22 15 32 22 7 20-11 72.1 70.7 76.0 + 76 1 22 18 39 7 9 32 27 32 27 24-11 70.9 70.7 75.9 + 76 1 23 32 15 18 22 27 27 12 12 21-11 70.2 70.6 75.9 + 76 1 24 15 18 39 22 15 22 15 27 22-11 68.5 70.5 75.9 + 76 1 25 15 9 7 9 22 15 9 6 12-11 68.2 70.5 75.8 + 76 1 26 3 9 4 6 6 6 4 4 5-11 68.2 70.4 75.8 + 76 1 27 4 6 15 5 5 4 3 5 6-11 67.2 70.4 75.8 + 76 1 28 5 4 5 6 4 4 5 5 5-11 67.1 70.4 75.8 + 76 1 29 6 9 9 6 6 3 2 3 6-11 67.4 70.4 75.8 + 76 1 30 2 0 4 3 7 15 18 22 9-11 68.9 70.4 75.7 + 76 1 31 12 32 15 15 56 32 22 48 29-11 69.1 70.4 75.7 + 76 2 1 27 22 15 22 27 18 32 32 24-11 68.6 70.4 75.6 + 76 2 2 22 15 15 9 18 39 27 15 20-11 68.6 70.4 75.6 + 76 2 3 22 9 27 18 12 9 12 15 16-11 68.4 70.4 75.5 + 76 2 4 18 7 7 9 9 15 15 18 12-11 68.4 70.3 75.4 + 76 2 5 6 6 3 7 9 12 7 18 9-11 67.6 70.4 75.3 + 76 2 6 18 15 9 5 4 6 5 7 9-11 68.1 70.4 75.2 + 76 2 7 6 7 3 56 32 27 27 18 22-11 69.3 70.5 75.1 + 76 2 8 32 12 18 32 39 56 27 27 30-11 68.4 70.6 75.0 + 76 2 9 32 22 18 22 22 22 27 32 25-11 68.3 70.7 74.9 + 76 2 10 32 18 22 18 18 18 48 22 25-11 68.5 71.0 74.9 + 76 2 11 7 6 12 15 15 7 9 32 13-11 68.4 71.1 74.8 + 76 2 12 15 18 18 9 9 18 15 32 17-11 67.8 71.3 74.8 + 76 2 13 48 18 9 18 22 15 15 27 22-11 69.7 71.4 74.7 + 76 2 14 15 39 15 18 22 18 7 7 18-11 69.9 71.6 74.7 + 76 2 15 6 5 7 7 12 12 9 6 8-11 69.6 71.8 74.7 + 76 2 16 5 4 5 7 4 4 12 6 6-11 69.7 71.9 74.6 + 76 2 17 5 7 7 12 12 18 18 32 14-11 69.9 72.1 74.6 + 76 2 18 39 22 27 22 22 7 9 27 22-11 70.1 72.3 74.7 + 76 2 19 18 27 27 18 27 27 27 32 25-11 70.1 72.4 74.6 + 76 2 20 18 15 27 27 18 22 9 22 20-11 70.0 72.6 74.6 + 76 2 21 18 18 9 27 9 15 15 12 15-11 68.8 72.7 74.6 + 76 2 22 22 18 9 18 15 7 12 7 14-11 68.9 72.7 74.6 + 76 2 23 7 7 6 5 6 3 0 0 4-11 69.2 72.6 74.6 + 76 2 24 2 3 4 4 4 3 3 2 3-11 69.6 72.5 74.6 + 76 2 25 4 6 5 5 2 5 5 2 4-11 68.4 72.4 74.5 + 76 2 26 4 6 9 9 12 6 6 18 9-11 68.5 72.4 74.5 + 76 2 27 15 9 12 15 48 56 39 39 29-11 68.5 72.3 74.5 + 76 2 28 22 18 18 12 15 22 27 27 20-11 67.9 72.2 74.4 + 76 2 29 56 80 39 12 9 12 22 48 35-11 67.4 72.2 74.4 + 76 3 1 22 27 15 15 22 15 12 22 19-11 67.7 72.2 74.4 + 76 3 2 15 39 22 18 27 48 48 48 33-11 68.1 72.3 74.3 + 76 3 3 27 27 27 18 27 32 32 39 29-11 67.4 72.4 74.3 + 76 3 4 32 15 7 12 9 9 9 6 12-11 67.4 72.5 74.3 + 76 3 5 7 12 15 15 7 9 7 48 15-11 67.6 72.6 74.2 + 76 3 6 18 22 18 18 22 48 39 80 33-11 67.5 72.8 74.2 + 76 3 7 39 22 18 22 18 48 22 27 27-11 67.9 72.9 74.1 + 76 3 8 67 80 67 32 32 22 15 27 43-11 67.9 73.1 74.1 + 76 3 9 27 48 27 22 39 32 48 56 37-11 68.2 73.2 74.0 + 76 3 10 32 48 18 22 27 39 27 48 33-11 68.4 73.4 74.0 + 76 3 11 39 27 15 32 27 32 27 18 27-11 68.8 73.5 74.0 + 76 3 12 39 39 27 32 18 15 18 22 26-11 68.9 73.6 73.9 + 76 3 13 27 9 9 7 9 6 12 12 11-11 70.9 73.7 73.9 + 76 3 14 39 32 12 9 7 5 4 6 14-11 70.1 73.8 73.9 + 76 3 15 7 12 15 9 15 22 12 27 15-11 69.1 73.9 73.9 + 76 3 16 18 22 22 9 18 18 32 9 19-11 72.5 74.0 73.9 + 76 3 17 27 15 27 22 12 7 15 32 20-11 74.4 74.1 73.9 + 76 3 18 22 6 7 22 6 5 22 15 13-11 79.0 74.2 73.9 + 76 3 19 9 12 22 12 9 6 12 5 11-11 81.6 74.3 73.9 + 76 3 20 7 9 15 9 15 6 4 3 9-11 85.0 74.4 73.9 + 76 3 21 3 4 6 7 12 6 4 2 6-11 91.2 74.5 73.9 + 76 3 22 2 2 3 5 3 3 3 2 3-11 83.0 74.6 73.9 + 76 3 23 0 0 4 6 6 5 12 6 5-11 86.9 74.7 73.9 + 76 3 24 9 5 4 0 2 0 4 4 4-11 82.2 74.8 73.9 + 76 3 25 3 2 4 2 5 5 7 9 5-11 85.1 74.8 73.9 + 76 3 26 32154207154207207132 67145-11 84.1 74.8 73.9 + 76 3 27 80 32 22 9 27 32 48 32 35-11 85.5 74.8 73.9 + 76 3 28 22 32 15 4 12 12 15 6 15-11 87.1 74.8 73.8 + 76 3 29 27 48 27 9 5 6 3 4 16-11 84.0 74.8 73.8 + 76 3 30 5 4 12 7 12 12 22 18 12-11 82.4 74.8 73.8 + 76 3 31 15 6 12 7 9 6 12 4 9-11 82.7 74.8 73.8 + 76 4 1 94236236236 80 32 18 12118-11 79.6 74.9 73.8 + 76 4 2 27 18 9 3 4 9 15 39 16-11 76.8 74.9 73.8 + 76 4 3 27 56 56 7 27 39 48 94 44-11 76.1 75.0 73.8 + 76 4 4 56 27 32 39 27 32 12 22 31-11 74.7 75.0 73.8 + 76 4 5 27 39 32 27 22 15 39 18 27-11 73.0 75.1 73.8 + 76 4 6 39 39 32 32 22 18 32 27 30-11 71.3 75.3 73.8 + 76 4 7 27 22 39 18 48 12 18 39 28-11 70.3 75.4 73.8 + 76 4 8 39 18 9 12 12 6 15 9 15-11 71.9 75.4 73.8 + 76 4 9 32 22 6 6 15 18 12 15 16-11 74.1 75.5 73.8 + 76 4 10 18 27 12 9 15 7 5 5 12-11 75.3 75.6 73.8 + 76 4 11 12 7 6 18 15 7 12 22 12-11 77.1 75.7 73.8 + 76 4 12 7 12 22 12 5 4 5 7 9-11 78.1 75.7 73.8 + 76 4 13 22 12 7 12 9 6 18 15 13-11 79.6 75.8 73.8 + 76 4 14 12 12 18 12 18 22 12 18 16-11 79.5 75.8 73.7 + 76 4 15 6 3 3 4 4 5 4 6 4-11 79.2 75.8 73.7 + 76 4 16 12 12 9 6 5 3 5 9 8-11 80.6 75.9 73.7 + 76 4 17 5 12 5 3 3 6 7 0 5-11 80.5 75.9 73.7 + 76 4 18 0 2 3 4 2 2 2 2 2-11 80.5 75.9 73.7 + 76 4 19 5 3 3 9 4 6 5 2 5-11 79.8 75.9 73.7 + 76 4 20 2 2 2 3 3 2 3 2 2-11 80.0 75.9 73.7 + 76 4 21 2 2 4 9 7 5 4 6 5-11 78.0 75.9 73.7 + 76 4 22 12 22 39 22 15 9 15 18 19-11 76.2 75.9 73.7 + 76 4 23 18 12 5 6 6 5 4 5 8-11 75.7 75.9 73.7 + 76 4 24 5 22 18 15 15 9 27 15 16-11 76.8 75.8 73.7 + 76 4 25 9 18 9 4 5 6 7 12 9-11 75.7 75.8 73.8 + 76 4 26 6 5 5 5 5 7 4 6 5-11 75.7 75.8 73.8 + 76 4 27 18 18 9 5 6 5 9 15 11-11 74.6 75.7 73.8 + 76 4 28 15 9 18 4 5 9 9 12 10-11 73.4 75.6 73.8 + 76 4 29 7 12 5 9 15 27 32 32 17-11 79.6 75.5 73.8 + 76 4 30 9 18 18 9 7 6 9 5 10-11 79.5 75.3 73.8 + 76 5 1 18 6 6 5 6 9 12 15 10-11 77.6 75.0 73.8 + 76 5 2 27 22 7 27 67 22132179 60-11 74.2 74.9 73.8 + 76 5 3236179111132 56 32 22 9 97-11 71.9 74.7 73.8 + 76 5 4 9 22 22 15 15 32 32 15 20-11 71.5 74.6 73.8 + 76 5 5 32 27 9 9 12 5 7 9 14-11 71.1 74.4 73.8 + 76 5 6 9 15 9 7 6 5 5 12 9-11 69.9 74.3 73.8 + 76 5 7 22 9 6 6 5 7 6 15 10-11 70.3 74.2 73.8 + 76 5 8 18 15 9 5 12 7 6 5 10-11 70.2 74.1 73.7 + 76 5 9 12 6 4 2 3 4 2 3 5-11 70.6 74.0 73.7 + 76 5 10 2 7 5 4 7 15 6 3 6-11 71.7 73.9 73.7 + 76 5 11 7 9 15 7 7 9 22 15 11-11 72.5 73.9 73.7 + 76 5 12 15 6 7 7 5 6 5 6 7-11 72.6 73.8 73.6 + 76 5 13 5 6 6 4 9 7 6 5 6-11 73.6 73.9 73.6 + 76 5 14 5 5 4 0 6 4 3 2 4-11 74.2 73.9 73.6 + 76 5 15 3 5 2 2 7 6 3 15 5-11 76.9 73.9 73.5 + 76 5 16 7 7 3 7 5 4 3 2 5-11 79.2 73.9 73.5 + 76 5 17 2 4 4 5 3 2 4 4 4-11 76.5 73.9 73.5 + 76 5 18 2 0 0 3 4 4 3 3 2-11 75.6 74.0 73.4 + 76 5 19 3 3 3 3 4 18 27 32 12-11 73.8 74.0 73.4 + 76 5 20 22 32 22 12 9 9 32 12 19-11 73.0 73.9 73.3 + 76 5 21 18 12 6 6 12 9 12 9 11-11 74.0 73.9 73.3 + 76 5 22 9 7 18 6 9 9 18 15 11-11 72.5 73.8 73.2 + 76 5 23 4 4 32 18 22 18 12 7 15-11 71.9 73.7 73.2 + 76 5 24 7 7 6 6 3 6 3 9 6-11 70.8 73.5 73.2 + 76 5 25 12 12 9 6 6 9 12 3 9-11 69.8 73.4 73.2 + 76 5 26 6 6 3 5 5 9 7 4 6-11 69.5 73.3 73.2 + 76 5 27 0 7 5 7 5 4 6 4 5-11 69.6 73.1 73.2 + 76 5 28 9 15 22 15 15 15 12 6 14-11 69.0 73.0 73.2 + 76 5 29 15 15 7 15 7 12 56 48 22-11 68.0 72.9 73.2 + 76 5 30 27 15 9 32 12 7 18 15 17-11 68.1 72.8 73.2 + 76 5 31 7 12 12 5 9 6 7 12 9-11 68.7 72.6 73.2 + 76 6 1 3 4 6 5 6 5 12 9 6-11 68.4 72.5 73.2 + 76 6 2 6 7 9 6 5 9 6 4 7-11 67.9 72.5 73.2 + 76 6 3 6 6 3 5 6 7 39 22 12-11 68.1 72.4 73.2 + 76 6 4 27 56 12 15 22 6 7 12 20-11 68.4 72.3 73.2 + 76 6 5 12 22 18 27 32 15 12 18 20-11 68.7 72.3 73.2 + 76 6 6 7 7 9 7 7 7 6 9 7-11 69.3 72.2 73.1 + 76 6 7 12 12 18 12 12 9 6 22 13-11 69.0 72.1 73.1 + 76 6 8 9 9 9 15 5 6 9 6 9-11 70.7 72.1 73.1 + 76 6 9 4 6 5 4 2 2 4 3 4-11 70.1 72.0 73.1 + 76 6 10 3 5 4 5 6 5 4 12 6-11 71.0 71.8 73.1 + 76 6 11 32 56 27 22 39 15 12 9 27-11 71.4 71.7 73.1 + 76 6 12 5 5 5 12 9 12 6 4 7-11 71.7 71.7 73.1 + 76 6 13 4 6 9 2 5 2 2 5 4-11 72.0 71.7 73.1 + 76 6 14 4 5 2 2 2 2 3 3 3-11 73.7 71.6 73.2 + 76 6 15 2 0 2 0 2 3 6 15 4-11 74.3 71.6 73.2 + 76 6 16 6 7 4 6 2 3 4 6 5-11 77.1 71.6 73.2 + 76 6 17 6 7 12 39 18 9 12 12 14-11 77.1 71.6 73.2 + 76 6 18 22 22 39 32 18 9 9 15 21-11 77.9 71.6 73.2 + 76 6 19 3 5 5 5 5 4 3 3 4-11 76.9 71.5 73.3 + 76 6 20 5 4 5 7 6 6 5 3 5-11 76.9 71.5 73.3 + 76 6 21 2 3 3 3 5 3 6 2 3-11 77.7 71.5 73.3 + 76 6 22 2 2 4 3 5 3 3 3 3-11 78.9 71.6 73.3 + 76 6 23 7 5 4 4 4 3 3 4 4-11 76.5 71.6 73.3 + 76 6 24 3 6 5 5 4 22 48 39 17-11 75.2 71.7 73.3 + 76 6 25 32 15 22 12 12 18 18 12 18-11 74.9 71.8 73.3 + 76 6 26 7 4 3 4 4 4 18 12 7-11 74.3 71.9 73.3 + 76 6 27 7 7 9 5 7 5 5 5 6-11 72.8 72.0 73.3 + 76 6 28 7 4 6 3 3 5 9 6 5-11 71.8 72.1 73.3 + 76 6 29 4 5 5 5 2 7 7 3 5-11 71.3 72.2 73.3 + 76 6 30 7 12 32111 9 15 22 22 29-11 70.3 72.3 73.4 + 76 7 1 18 39 18 27 12 12 7 7 18-11 69.3 72.4 73.4 + 76 7 2 15 6 9 9 12 9 6 6 9-11 69.1 72.5 73.4 + 76 7 3 4 15 12 18 9 18 6 15 12-11 69.5 72.6 73.4 + 76 7 4 7 7 22 18 15 18 22 5 14-11 68.6 72.7 73.4 + 76 7 5 4 5 6 6 7 7 5 5 6-11 69.5 72.7 73.4 + 76 7 6 15 5 7 5 5 4 4 4 6-11 69.6 72.8 73.4 + 76 7 7 15 12 5 15 6 6 3 9 9-11 69.5 72.8 73.4 + 76 7 8 6 12 9 6 22 12 27 12 13-11 69.7 72.9 73.4 + 76 7 9 18 22 6 9 7 9 6 6 10-11 69.7 73.0 73.4 + 76 7 10 5 9 7 7 4 4 5 5 6-11 70.1 73.1 73.4 + 76 7 11 4 4 4 4 3 4 5 5 4-11 70.2 73.2 73.4 + 76 7 12 7 6 4 3 5 4 5 7 5-11 69.8 73.3 73.4 + 76 7 13 5 5 6 3 4 3 3 5 4-11 69.8 73.3 73.4 + 76 7 14 5 7 9 7 7 5 4 3 6-11 70.7 73.4 73.4 + 76 7 15 6 6 7 7 6 32 67 22 19-11 71.4 73.4 73.4 + 76 7 16 15 15 32 12 15 15 18 9 16-11 69.8 73.4 73.4 + 76 7 17 5 6 4 4 4 5 6 6 5-11 69.4 73.4 73.3 + 76 7 18 5 7 7 2 3 4 9 7 6-11 70.6 73.5 73.4 + 76 7 19 12 4 7 4 5 6 4 2 6-11 70.2 73.5 73.3 + 76 7 20 5 5 5 4 4 3 3 3 4-11 69.4 73.5 73.3 + 76 7 21 5 3 0 5 6 4 0 0 3-11 70.1 73.5 73.4 + 76 7 22 6 4 7 6 5 2 2 3 4-11 70.1 73.6 73.4 + 76 7 23 6 6 4 4 7 5 4 2 5-11 68.7 73.6 73.4 + 76 7 24 2 2 0 3 5 5 9 7 4-11 69.4 73.7 73.4 + 76 7 25 22 9 7 6 12 6 4 9 9-11 68.8 73.7 73.4 + 76 7 26 12 3 0 0 3 2 4 6 4-11 68.5 73.7 73.4 + 76 7 27 3 5 3 12 6 5 15 15 8-11 69.4 73.7 73.5 + 76 7 28 18 12 22 15 18 15 22 9 16-11 69.4 73.6 73.5 + 76 7 29 27 22 15 22 12 12 12 18 18-11 69.4 73.6 73.5 + 76 7 30 12 22 22 27 32 9 12 15 19-11 70.7 73.5 73.5 + 76 7 31 6 5 9 7 9 7 6 7 7-11 72.3 73.5 73.6 + 76 8 1 3 7 9 5 4 6 12 22 9-11 75.9 73.5 73.6 + 76 8 2 15 15 7 9 6 3 2 5 8-11 77.8 73.4 73.6 + 76 8 3 5 12 12 5 7 22 6 7 10-11 82.3 73.4 73.6 + 76 8 4 9 5 4 4 5 4 4 5 5-11 82.3 73.4 73.7 + 76 8 5 7 3 3 4 6 12 5 4 6-11 84.2 73.4 73.7 + 76 8 6 6 7 7 4 4 4 5 4 5-11 84.3 73.4 73.7 + 76 8 7 0 4 7 6 9 2 4 9 5-11 83.7 73.4 73.8 + 76 8 8 6 7 3 2 2 4 7 4 4-11 82.0 73.5 73.8 + 76 8 9 5 6 32 18 18 3 4 9 12-11 82.8 73.5 73.8 + 76 8 10 15 22 6 9 6 6 2 6 9-11 82.8 73.6 73.8 + 76 8 11 7 6 9 6 3 3 4 0 5-11 80.4 73.6 73.9 + 76 8 12 3 2 0 3 4 4 6 5 3-11 80.6 73.6 73.9 + 76 8 13 2 3 2 7 2 3 3 3 3-11 78.7 73.6 74.0 + 76 8 14 3 4 2 9 9 3 2 3 4-11 73.4 73.7 74.0 + 76 8 15 0 0 0 3 4 3 4 4 2-11 72.8 73.7 74.1 + 76 8 16 0 6 3 7 15 7 6 7 6-11 72.9 73.8 74.1 + 76 8 17 12 4 0 2 3 6 4 6 5-11 77.8 73.8 74.1 + 76 8 18 6 6 2 4 5 2 5 5 4-11 78.2 73.9 74.2 + 76 8 19 5 6 9 5 9 5 5 4 6-11 76.1 73.9 74.2 + 76 8 20 6 7 5 6 4 4 5 5 5-11 74.5 73.9 74.3 + 76 8 21 3 3 12 9 5 7 12 12 8-11 73.2 74.0 74.3 + 76 8 22 12 5 2 6 5 5 3 4 5-11 72.3 74.0 74.3 + 76 8 23 6 7 27 32 32 48 22 67 30-11 70.8 74.1 74.4 + 76 8 24 27 22 18 67 22 22 15 7 25-11 70.9 74.1 74.4 + 76 8 25 32 27 27 27 22 22 22 15 24-11 70.6 74.1 74.4 + 76 8 26 22 27 27 15 15 9 15 15 18-11 70.1 74.2 74.4 + 76 8 27 15 6 6 32 6 7 18 12 13-11 71.5 74.2 74.4 + 76 8 28 9 7 9 9 12 18 18 2 11-11 72.8 74.3 74.5 + 76 8 29 5 9 9 7 4 5 6 7 7-11 73.3 74.4 74.5 + 76 8 30 7 7 3 5 5 4 5 12 6-11 73.0 74.4 74.5 + 76 8 31 0 4 5 5 5 7 7 7 5-11 73.8 74.5 74.5 + 76 9 1 12 12 7 5 7 15 12 9 10-11 76.3 74.5 74.5 + 76 9 2 18 39 48 32 18 12 12 9 24-11 75.3 74.6 74.5 + 76 9 3 12 15 9 9 5 7 12 15 11-11 75.7 74.6 74.6 + 76 9 4 18 18 15 7 18 15 6 18 14-11 75.9 74.7 74.6 + 76 9 5 27 9 7 9 6 6 4 7 9-11 75.4 74.8 74.6 + 76 9 6 15 12 7 6 6 6 4 3 7-11 73.1 74.9 74.6 + 76 9 7 15 12 12 7 6 6 5 15 10-11 73.0 75.0 74.7 + 76 9 8 12 7 4 12 7 5 9 3 7-11 72.9 75.1 74.7 + 76 9 9 12 7 5 5 7 4 4 0 6-11 73.2 75.1 74.7 + 76 9 10 6 2 3 6 4 7 7 7 5-11 75.8 75.2 74.8 + 76 9 11 3 7 5 3 5 3 3 5 4-11 75.7 75.2 74.8 + 76 9 12 6 12 9 6 6 12 7 6 8-11 75.7 75.1 74.8 + 76 9 13 7 6 5 4 2 3 5 7 5-11 74.3 75.1 74.8 + 76 9 14 7 9 6 15 15 12 6 9 10-11 74.7 75.1 74.9 + 76 9 15 3 22 18 12 9 2 5 7 10-11 73.9 75.1 74.9 + 76 9 16 9 9 4 5 7 7 6 4 6-11 75.8 75.0 74.9 + 76 9 17 7 12 7 6 6 3 12 27 10-11 76.5 75.0 74.8 + 76 9 18 12 56 80 56 39 12 5 5 33-11 74.3 74.9 74.8 + 76 9 19 4 6 7 32 22 27 32 27 20-11 73.3 74.7 74.8 + 76 9 20 56 80 48 48 56 48 27 48 51-11 72.2 74.6 74.7 + 76 9 21 27 27 12 18 27 39 18 22 24-11 70.9 74.5 74.7 + 76 9 22 15 22 18 15 15 22 15 15 17-11 70.5 74.3 74.7 + 76 9 23 6 6 27 22 18 7 9 5 13-11 72.0 74.2 74.7 + 76 9 24 15 5 4 9 6 4 5 6 7-11 72.5 74.2 74.6 + 76 9 25 27 15 22 22 18 27 27 32 24-11 73.4 74.1 74.6 + 76 9 26 39 12 6 7 9 7 12 9 13-11 72.8 74.1 74.6 + 76 9 27 15 12 12 18 12 12 7 12 13-11 73.3 74.0 74.5 + 76 9 28 7 9 5 3 2 3 7 7 5-11 73.6 73.9 74.5 + 76 9 29 3 15 7 12 12 9 15 6 10-11 71.9 73.8 74.5 + 76 9 30 5 7 3 6 7 6 18 22 9-11 72.6 73.8 74.5 + 76 10 1 7 6 32 27 12 5 6 18 14-11 74.6 73.7 74.5 + 76 10 2 18 56 32 18 15 15 7 4 21-11 73.9 73.7 74.5 + 76 10 3 12 9 9 18 9 6 3 4 9-11 73.8 73.7 74.5 + 76 10 4 4 6 6 9 9 3 6 7 6-11 73.1 73.7 74.5 + 76 10 5 32 27 9 18 3 5 6 5 13-11 74.8 73.7 74.5 + 76 10 6 5 15 27 15 3 3 12 9 11-11 74.7 73.7 74.5 + 76 10 7 9 4 2 2 6 6 12 3 6-11 74.5 73.7 74.5 + 76 10 8 2 2 7 7 6 5 7 9 6-11 74.6 73.7 74.5 + 76 10 9 7 9 5 6 7 5 7 4 6-11 74.8 73.7 74.5 + 76 10 10 6 6 5 5 3 9 6 12 7-11 74.9 73.7 74.5 + 76 10 11 22 6 4 3 5 6 6 12 8-11 73.7 73.7 74.5 + 76 10 12 12 15 4 2 6 7 27 39 14-11 73.3 73.7 74.5 + 76 10 13 6 15 12 7 6 3 6 6 8-11 72.6 73.7 74.5 + 76 10 14 2 4 4 5 3 4 15 22 7-11 74.4 73.6 74.5 + 76 10 15 15 22 27 32 56 48 39 27 33-11 75.5 73.6 74.6 + 76 10 16 67 39 39 22 15 9 18 22 29-11 77.0 73.6 74.6 + 76 10 17 18 27 56 32 56 18 15 22 31-11 78.0 73.5 74.6 + 76 10 18 39 27 22 15 18 12 15 7 19-11 77.3 73.5 74.6 + 76 10 19 2 0 2 6 15 22 7 5 7-11 76.6 73.5 74.6 + 76 10 20 15 7 6 6 4 6 6 9 7-11 75.8 73.5 74.6 + 76 10 21 6 12 9 7 6 7 7 4 7-11 73.5 73.4 74.6 + 76 10 22 7 5 7 7 7 4 3 3 5-11 75.4 73.3 74.6 + 76 10 23 7 9 9 9 3 5 5 4 6-11 80.1 73.3 74.6 + 76 10 24 3 2 4 4 3 6 18 5 6-11 80.1 73.3 74.6 + 76 10 25 12 9 4 3 4 3 3 3 5-11 84.7 73.2 74.6 + 76 10 26 4 6 3 3 3 2 3 6 4-11 80.4 73.2 74.6 + 76 10 27 2 5 7 4 6 7 12 15 7-11 77.4 73.1 74.6 + 76 10 28 9 2 2 4 7 6 4 5 5-11 73.8 73.0 74.6 + 76 10 29 3 7 3 2 2 0 4 2 3-11 72.1 73.0 74.6 + 76 10 30 2 2 6 15 18 18 15 48 16-11 72.1 73.0 74.6 + 76 10 31 27 32 56 32 48 27 15 32 34-11 70.4 73.0 74.6 + 76 11 1 22 12 12 12 4 4 9 9 11-11 70.9 73.1 74.6 + 76 11 2 9 12 7 5 6 9 6 4 7-11 69.1 73.2 74.6 + 76 11 3 9 4 7 5 3 5 4 15 7-11 69.8 73.3 74.7 + 76 11 4 5 4 6 5 2 3 5 5 4-11 69.9 73.4 74.7 + 76 11 5 2 3 5 5 3 3 2 0 3-11 70.9 73.5 74.7 + 76 11 6 2 2 4 2 0 0 3 2 2-11 69.7 73.6 74.7 + 76 11 7 0 9 6 4 2 2 0 2 3-11 69.5 73.6 74.7 + 76 11 8 4 3 0 2 3 7 9 18 6-11 69.3 73.6 74.8 + 76 11 9 12 18 6 6 6 4 4 7 8-11 70.7 73.6 74.8 + 76 11 10 9 15 15 12 12 12 32 39 18-11 69.4 73.6 74.8 + 76 11 11 15 22 12 15 27 48 32 12 23-11 70.5 73.5 74.8 + 76 11 12 56 15 15 15 18 18 22 32 24-11 70.8 73.5 74.9 + 76 11 13 32 27 48 32 32 32 32 12 31-11 69.4 73.5 74.9 + 76 11 14 22 6 7 9 22 22 27 12 16-11 69.2 73.6 74.9 + 76 11 15 15 12 5 7 12 12 7 3 9-11 71.1 73.6 74.9 + 76 11 16 3 6 6 5 7 6 4 5 5-11 71.1 73.6 74.9 + 76 11 17 12 12 6 6 5 4 5 6 7-11 72.8 73.6 75.0 + 76 11 18 9 6 3 3 3 2 7 6 5-11 75.6 73.6 75.0 + 76 11 19 9 18 6 5 7 6 9 9 9-11 74.6 73.6 75.0 + 76 11 20 9 9 5 9 7 3 12 5 7-11 72.9 73.6 75.0 + 76 11 21 5 6 3 2 4 2 4 5 4-11 73.2 73.6 75.1 + 76 11 22 4 9 5 4 5 3 6 5 5-11 73.3 73.6 75.1 + 76 11 23 5 3 4 2 3 4 4 6 4-11 72.5 73.7 75.1 + 76 11 24 2 7 2 4 3 2 0 2 3-11 72.9 73.7 75.1 + 76 11 25 5 15 15 15 9 15 9 6 11-11 72.7 73.7 75.2 + 76 11 26 9 12 3 5 5 7 22 12 9-11 72.1 73.7 75.2 + 76 11 27 12 22 12 4 2 3 6 7 9-11 73.7 73.6 75.2 + 76 11 28 2 3 2 2 2 3 3 0 2-11 71.7 73.5 75.2 + 76 11 29 0 3 9 5 4 9 5 9 6-11 69.7 73.4 75.3 + 76 11 30 15 22 7 6 9 15 4 7 11-11 69.7 73.3 75.4 + 76 12 1 6 2 5 5 9 6 9 12 7-11 70.2 73.3 75.4 + 76 12 2 4 3 2 2 4 2 3 3 3-11 71.6 73.2 75.5 + 76 12 3 3 3 5 2 4 3 5 4 4-11 71.2 73.2 75.6 + 76 12 4 4 6 22 18 27 27 7 7 15-11 71.3 73.1 75.6 + 76 12 5 12 6 5 4 7 4 5 4 6-11 70.1 73.0 75.7 + 76 12 6 3 2 2 0 2 4 5 6 3-11 70.1 72.9 75.7 + 76 12 7 15 18 2 7 9 9 9 15 11-11 69.7 72.9 75.8 + 76 12 8 27 15 32 48 48 7 4 5 23-11 70.8 73.0 75.9 + 76 12 9 3 5 32 27 12 18 9 22 16-11 74.3 73.0 75.9 + 76 12 10 9 15 6 9 9 27 7 22 13-11 76.8 73.1 76.0 + 76 12 11 22 22 22 9 4 7 6 12 13-11 78.3 73.1 76.0 + 76 12 12 22 9 12 12 22 27 9 5 15-11 78.6 73.2 76.0 + 76 12 13 7 15 7 5 12 4 5 5 8-11 78.1 73.3 76.1 + 76 12 14 5 9 3 3 3 2 2 3 4-11 81.0 73.4 76.1 + 76 12 15 2 3 2 5 0 0 2 0 2-11 79.8 73.5 76.1 + 76 12 16 2 5 5 9 9 15 9 6 8-11 77.8 73.5 76.1 + 76 12 17 7 7 3 5 7 12 18 22 10-11 75.5 73.6 76.2 + 76 12 18 39 94 39 6 5 4 9 27 28-11 73.8 73.7 76.2 + 76 12 19 12 12 9 5 5 6 3 4 7-11 72.9 73.8 76.2 + 76 12 20 7 5 2 3 5 9 4 4 5-11 71.7 73.8 76.2 + 76 12 21 2 3 5 4 3 7 5 4 4-11 71.8 73.9 76.3 + 76 12 22 2 12 9 7 12 7 7 9 8-11 73.4 74.0 76.3 + 76 12 23 9 12 7 5 0 2 0 4 5-11 73.7 74.2 76.4 + 76 12 24 7 6 9 7 7 4 6 3 6-11 74.2 74.3 76.5 + 76 12 25 3 12 4 12 18 6 9 5 9-11 75.6 74.5 76.6 + 76 12 26 9 15 7 5 4 3 3 5 6-11 75.6 74.6 76.7 + 76 12 27 7 2 2 5 5 6 15 5 6-11 75.2 74.6 76.8 + 76 12 28 6 7 5 6 3 3 7 7 6-11 74.5 74.7 76.9 + 76 12 29 94 67 67 56 32 27 9 9 45-11 74.8 74.7 77.0 + 76 12 30 5 5 9 9 15 15 22 22 13-11 75.1 74.7 77.1 + 76 12 31 22 27 9 3 5 4 18 12 13-11 76.4 74.8 77.2 + 77 1 1 12 15 22 22 18 7 12 27 17-11 73.8 75.0 77.3 + 77 1 2 15 4 4 2 2 3 4 3 5-11 76.5 75.1 77.4 + 77 1 3 7 7 5 4 2 9 9 9 7-11 76.0 75.3 77.5 + 77 1 4 5 5 7 12 12 15 12 12 10-11 75.5 75.5 77.5 + 77 1 5 22 27 7 5 5 15 12 27 15-11 74.0 75.6 77.6 + 77 1 6 27 12 6 5 7 9 9 7 10-11 72.4 75.8 77.6 + 77 1 7 15 7 12 4 5 4 6 3 7-11 71.4 75.9 77.7 + 77 1 8 5 6 5 7 7 12 5 4 6-11 69.6 76.1 77.7 + 77 1 9 2 12 4 5 5 7 9 5 6-11 68.4 76.4 77.7 + 77 1 10 2 2 2 4 5 5 4 2 3-11 68.8 76.5 77.7 + 77 1 11 2 2 5 6 12 48 18 18 14-11 71.2 76.6 77.7 + 77 1 12 18 18 15 9 12 12 9 7 13-11 74.9 76.7 77.8 + 77 1 13 12 15 4 3 3 6 5 7 7-11 77.5 76.8 77.8 + 77 1 14 15 18 15 12 9 27 18 32 18-11 74.5 76.9 77.8 + 77 1 15 22 22 22 9 9 7 7 6 13-11 75.6 76.9 77.8 + 77 1 16 4 9 9 3 6 12 6 5 7-11 77.5 77.0 77.8 + 77 1 17 7 6 6 5 7 12 3 4 6-11 76.1 77.0 77.8 + 77 1 18 15 18 22 12 7 4 3 3 11-11 75.4 77.0 77.9 + 77 1 19 15 6 4 5 2 6 12 18 9-11 76.9 77.0 77.9 + 77 1 20 18 27 9 9 6 5 9 15 12-11 75.2 76.9 77.9 + 77 1 21 12 3 6 9 2 6 2 2 5-11 74.0 76.9 78.0 + 77 1 22 2 6 4 5 15 5 7 12 7-11 76.8 76.8 78.0 + 77 1 23 6 3 2 4 4 6 9 12 6-11 78.7 76.8 78.0 + 77 1 24 15 9 9 5 7 7 7 5 8-11 77.4 76.8 78.1 + 77 1 25 0 3 12 6 18 9 15 12 9-11 74.9 76.8 78.1 + 77 1 26 6 4 3 4 2 2 5 4 4-11 76.0 76.8 78.2 + 77 1 27 3 2 3 6 3 5 5 4 4-11 75.3 76.8 78.2 + 77 1 28 4 2 3 4 4 6 27 56 13-11 77.1 76.9 78.3 + 77 1 29 39 18 18 12 7 9 6 12 15-11 76.1 77.0 78.3 + 77 1 30 39 27 22 18 32 32 32 39 30-11 76.3 77.1 78.3 + 77 1 31 56 18 22 12 32 2 4 4 19-11 79.6 77.2 78.4 + 77 2 1 6 18 5 2 3 3 5 15 7-11 81.7 77.2 78.4 + 77 2 2 22 32 22 27 22 4 12 27 21-11 82.1 77.3 78.4 + 77 2 3 18 18 5 4 3 9 6 22 11-11 80.9 77.3 78.4 + 77 2 4 9 5 5 4 5 3 2 0 4-11 78.7 77.3 78.4 + 77 2 5 0 4 27 15 7 12 4 6 9-11 77.8 77.2 78.4 + 77 2 6 9 5 5 12 15 15 22 32 14-11 75.2 77.2 78.4 + 77 2 7 32 18 9 12 15 15 22 22 18-11 74.6 77.2 78.4 + 77 2 8 18 15 12 9 12 27 27 27 18-11 78.6 77.2 78.4 + 77 2 9 27 18 12 27 32 32 27 27 25-11 83.1 77.2 78.4 + 77 2 10 18 7 9 12 15 12 3 18 12-11 83.5 77.1 78.4 + 77 2 11 12 18 15 15 18 12 5 12 13-11 84.6 77.2 78.5 + 77 2 12 12 7 5 9 5 5 9 6 7-11 86.9 77.1 78.5 + 77 2 13 15 15 9 6 4 12 22 9 12-11 88.5 77.1 78.5 + 77 2 14 9 12 6 5 12 9 22 12 11-11 85.2 77.1 78.6 + 77 2 15 9 12 6 4 4 7 9 15 8-11 84.4 77.1 78.6 + 77 2 16 15 12 9 3 2 3 4 3 6-11 85.7 77.1 78.6 + 77 2 17 9 5 5 5 7 12 15 15 9-11 89.6 77.2 78.7 + 77 2 18 27 56 12 5 9 7 12 9 17-11 86.5 77.2 78.7 + 77 2 19 12 6 5 4 7 7 7 4 7-11 82.8 77.3 78.7 + 77 2 20 5 4 9 3 4 3 5 9 5-11 81.1 77.4 78.8 + 77 2 21 6 4 6 6 12 12 6 3 7-11 78.6 77.5 78.8 + 77 2 22 4 6 2 3 5 7 18 15 8-11 75.9 77.5 78.9 + 77 2 23 15 15 12 15 18 32 15 22 18-11 75.9 77.5 78.9 + 77 2 24 12 4 5 12 15 9 48 7 14-11 74.2 77.5 79.0 + 77 2 25 18 12 7 6 5 7 15 18 11-11 74.3 77.5 79.0 + 77 2 26 15 15 3 5 5 6 7 4 8-11 72.3 77.5 79.0 + 77 2 27 2 0 2 3 4 3 3 6 3-11 72.0 77.4 79.1 + 77 2 28 18 7 6 7 3 2 7 9 7-11 72.6 77.4 79.1 + 77 3 1 15 3 4 6 6 9 18 27 11-11 72.6 77.4 79.1 + 77 3 2 0 3 3 6 5 4 9 7 5-11 75.4 77.5 79.2 + 77 3 3 7 4 4 4 4 3 2 3 4-11 74.8 77.5 79.2 + 77 3 4 0 2 4 2 5 3 3 4 3-11 76.9 77.6 79.2 + 77 3 5 3 6 4 3 5 2 4 2 4-11 77.6 77.7 79.2 + 77 3 6 2 3 4 4 12 9 9 7 6-11 77.6 77.8 79.3 + 77 3 7 9 6 7 4 4 5 3 4 5-11 77.2 77.9 79.3 + 77 3 8 6 5 4 4 6 15 15 39 12-11 81.6 78.0 79.3 + 77 3 9 22 27 39 32 56 48 27 56 38-11 80.3 78.1 79.4 + 77 3 10 27 22 22 9 15 15 18 22 19-11 80.5 78.1 79.4 + 77 3 11 15 12 9 9 12 22 39 22 18-11 78.9 78.2 79.5 + 77 3 12 32 18 22 22 6 22 32 18 22-11 78.6 78.2 79.5 + 77 3 13 32 12 7 6 6 9 9 22 13-11 77.9 78.2 79.6 + 77 3 14 32 32 12 4 4 5 4 5 12-11 77.2 78.2 79.7 + 77 3 15 6 3 9 7 6 5 2 0 5-11 74.8 78.1 79.8 + 77 3 16 6 9 6 4 3 4 9 9 6-11 74.1 78.0 79.9 + 77 3 17 12 9 4 7 7 15 15 6 9-11 74.1 78.0 80.1 + 77 3 18 22 22 7 7 12 6 6 5 11-11 73.9 78.0 80.2 + 77 3 19 2 6 5 2 2 5 9 9 5-11 74.0 77.9 80.3 + 77 3 20 27 9 5 7 5 6 15 27 13-11 72.3 78.0 80.4 + 77 3 21 4 7 5 4 5 12 27 18 10-11 72.8 77.9 80.5 + 77 3 22 12 9 12 7 4 7 3 0 7-11 74.6 77.9 80.6 + 77 3 23 6 5 15 7 15 15 18 27 14-11 74.7 77.8 80.7 + 77 3 24 32 15 6 6 9 9 7 12 12-11 74.8 77.8 80.8 + 77 3 25 15 6 3 9 6 6 27 27 12-11 74.0 77.7 80.9 + 77 3 26 27 48 12 7 7 18 6 2 16-11 75.1 77.6 80.9 + 77 3 27 5 4 9 6 6 5 12 18 8-11 74.5 77.5 81.0 + 77 3 28 15 22 9 6 7 18 15 27 15-11 74.4 77.4 81.1 + 77 3 29 39 27 5 6 12 9 9 4 14-11 75.4 77.3 81.2 + 77 3 30 2 3 7 7 4 9 5 6 5-11 74.6 77.2 81.2 + 77 3 31 7 2 3 4 2 2 4 5 4-11 74.1 77.2 81.3 + 77 4 1 2 5 9 3 3 4 4 2 4-11 74.8 77.1 81.4 + 77 4 2 3 5 5 7 2 4 2 12 5-11 76.3 77.1 81.4 + 77 4 3 27 12 12 9 5 5 7 15 12-11 76.6 77.2 81.5 + 77 4 4 56 32 32 9 18 12 18 18 24-11 76.8 77.3 81.6 + 77 4 5 22 9 12 6 6 7 15 18 12-11 75.5 77.4 81.6 + 77 4 6 27 27 15 6 22 67 94132 49-11 76.1 77.5 81.7 + 77 4 7111 80 56 27 32 12 56 12 48-11 75.5 77.6 81.8 + 77 4 8 32 18 32 22 18 39 22 32 27-11 74.3 77.8 81.9 + 77 4 9 32 27 27 15 22 22 12 15 22-11 74.8 77.9 81.9 + 77 4 10 15 22 12 5 9 22 15 7 13-11 76.5 78.0 82.0 + 77 4 11 18 18 7 5 15 9 18 22 14-11 79.2 78.1 82.1 + 77 4 12 15 5 0 5 7 6 7 22 8-11 80.2 78.2 82.1 + 77 4 13 9 2 6 4 5 5 4 7 5-11 82.7 78.3 82.2 + 77 4 14 18 5 22 7 3 6 9 22 12-11 83.4 78.3 82.3 + 77 4 15 18 22 15 6 7 4 3 6 10-11 86.8 78.3 82.3 + 77 4 16 5 18 7 5 18 27 32 22 17-11 83.7 78.3 82.4 + 77 4 17 18 12 9 9 5 5 7 7 9-11 83.6 78.3 82.5 + 77 4 18 7 6 3 9 12 15 7 6 8-11 80.8 78.3 82.5 + 77 4 19 18 67 94 67 48 32 22 39 48-11 79.8 78.3 82.6 + 77 4 20 32 22 32 39 15 48 18 15 28-11 80.4 78.4 82.6 + 77 4 21 18 15 22 7 5 6 12 9 12-11 80.8 78.6 82.7 + 77 4 22 6 6 12 4 3 6 6 2 6-11 80.1 78.7 82.8 + 77 4 23 3 7 6 5 5 4 6 6 5-11 77.5 78.9 82.8 + 77 4 24 7 5 5 12 9 27 12 12 11-11 76.5 79.1 82.8 + 77 4 25 67 48 22 15 5 7 4 5 22-11 76.4 79.3 82.9 + 77 4 26 5 5 5 4 3 5 3 3 4-11 75.4 79.5 82.9 + 77 4 27 5 5 3 5 4 3 2 4 4-11 74.9 79.7 82.9 + 77 4 28 4 4 2 3 2 5 7 9 5-11 74.2 79.9 82.9 + 77 4 29 18 22 27 18 22 6 12 22 18-11 74.8 80.2 83.0 + 77 4 30 7 15 5 6 6 6 7 9 8-11 76.6 80.4 83.0 + 77 5 1 9 9 6 6 6 7 32 32 13-11 77.2 80.6 83.1 + 77 5 2 67 48 27 48 94 94 80 67 66-11 78.5 80.7 83.2 + 77 5 3 39 22 22 18 6 5 4 7 15-11 81.9 80.8 83.2 + 77 5 4 4 6 7 5 9 56 48 18 19-11 81.4 81.0 83.3 + 77 5 5 15 7 15 6 7 12 12 15 11-11 79.6 81.1 83.3 + 77 5 6 15 12 7 7 7 12 12 7 10-11 78.5 81.2 83.4 + 77 5 7 9 6 6 4 2 3 7 9 6-11 77.1 81.2 83.4 + 77 5 8 2 4 2 3 4 3 3 5 3-11 77.9 81.3 83.5 + 77 5 9 6 7 5 7 7 12 6 5 7-11 83.6 81.4 83.6 + 77 5 10 4 6 22 7 7 9 6 9 9-11 80.8 81.6 83.6 + 77 5 11 7 6 27 15 15 48 56 15 24-11 80.8 81.8 83.7 + 77 5 12 15 67 27 15 12 6 5 3 19-11 79.7 82.0 83.7 + 77 5 13 3 6 4 5 3 2 15 9 6-11 81.5 82.3 83.8 + 77 5 14 7 12 7 5 5 5 6 15 8-11 84.8 82.5 83.9 + 77 5 15 22 9 9 15 15 12 9 18 14-11 85.0 82.9 83.9 + 77 5 16 22 32 15 27 15 18 27 22 22-11 85.1 83.4 84.0 + 77 5 17 18 27 39 12 15 15 12 7 18-11 84.1 83.9 84.1 + 77 5 18 15 15 12 15 12 7 7 4 11-11 82.9 84.4 84.2 + 77 5 19 6 4 5 5 4 5 5 3 5-11 82.1 84.9 84.2 + 77 5 20 7 7 7 6 9 12 22 7 10-11 81.3 85.4 84.3 + 77 5 21 3 2 5 3 2 5 4 6 4-11 81.4 85.8 84.4 + 77 5 22 7 15 15 4 4 3 4 4 7-11 82.9 86.0 84.4 + 77 5 23 9 6 4 3 6 15 5 6 7-11 82.4 86.3 84.5 + 77 5 24 7 9 7 7 7 15 7 7 8-11 79.2 86.5 84.5 + 77 5 25 9 4 5 4 5 6 5 4 5-11 77.4 86.6 84.6 + 77 5 26 2 3 0 0 2 4 5 4 3-11 76.8 86.6 84.6 + 77 5 27 3 4 6 2 4 4 3 2 4-11 77.9 86.7 84.6 + 77 5 28 4 7 3 15 9 4 12 4 7-11 79.1 86.7 84.7 + 77 5 29 4 2 0 0 4 3 2 2 2-11 81.7 86.7 84.7 + 77 5 30 3 5 5 6 6 4 5 3 5-11 89.9 86.7 84.7 + 77 5 31 7 7 9 5 9 9 4 7 7-11 92.0 86.7 84.8 + 77 6 1 9 7 5 4 6 9 18 15 9-11 88.9 86.6 84.8 + 77 6 2 22 12 9 7 12 15 6 32 14-11 90.9 86.6 84.9 + 77 6 3 6 7 7 5 7 2 4 7 6-11 93.0 86.6 84.9 + 77 6 4 7 7 5 7 7 4 3 3 5-11 94.2 86.6 85.0 + 77 6 5 5 7 4 9 18 6 3 4 7-11 90.2 86.6 85.1 + 77 6 6 6 5 7 4 5 3 3 6 5-11 90.6 86.6 85.1 + 77 6 7 3 4 6 6 7 4 12 6 6-11 92.0 86.6 85.2 + 77 6 8 2 4 6 5 7 7 6 7 6-11 91.9 86.6 85.3 + 77 6 9 5 4 7 4 4 4 6 12 6-11 90.9 86.7 85.4 + 77 6 10 15 12 9 7 5 3 6 6 8-11 89.2 86.7 85.5 + 77 6 11 3 6 3 2 3 2 4 7 4-11 87.2 86.8 85.6 + 77 6 12 7 5 2 0 2 2 7 5 4-11 83.3 86.8 85.7 + 77 6 13 5 6 5 3 4 4 7 15 6-11 84.2 86.9 85.8 + 77 6 14 27 12 7 5 5 3 6 7 9-11 82.3 86.9 85.9 + 77 6 15 3 5 3 2 2 2 5 5 3-11 82.3 87.0 85.9 + 77 6 16 6 5 4 5 15 22 12 7 10-11 81.4 87.1 85.9 + 77 6 17 7 12 9 5 9 12 5 7 8-11 82.4 87.2 86.0 + 77 6 18 4 7 18 7 5 12 15 12 10-11 84.3 87.3 86.0 + 77 6 19 9 12 12 7 9 15 5 7 10-11 85.2 87.3 86.1 + 77 6 20 22 12 15 7 12 5 7 5 11-11 88.9 87.4 86.1 + 77 6 21 3 9 9 6 9 6 5 4 6-11 92.4 87.4 86.2 + 77 6 22 6 5 3 4 15 18 27 6 11-11 98.8 87.4 86.2 + 77 6 23 27 15 6 5 9 9 6 5 10-11 99.4 87.4 86.2 + 77 6 24 7 12 12 4 4 6 6 7 7-11107.4 87.4 86.3 + 77 6 25 5 4 4 4 6 7 4 5 5-11113.8 87.4 86.4 + 77 6 26 6 6 6 7 6 6 3 6 6-11120.7 87.4 86.4 + 77 6 27 15 7 6 5 6 6 7 3 7-11115.9 87.4 86.5 + 77 6 28 6 12 15 18 15 12 12 9 12-11113.4 87.5 86.5 + 77 6 29 15 9 6 5 4 6 4 6 7-11111.9 87.5 86.6 + 77 6 30 6 5 5 6 7 12 18 12 9-11106.9 87.6 86.7 + 77 7 1 12 9 27 27 6 18 15 9 15-11102.0 87.6 86.8 + 77 7 2 15 7 7 7 9 15 15 12 11-11100.7 87.7 86.9 + 77 7 3 5 5 7 7 18 12 9 6 9-11 97.4 87.8 87.1 + 77 7 4 9 9 15 7 4 4 4 15 8-11 94.0 87.9 87.2 + 77 7 5 6 2 2 6 6 9 6 5 5-11 88.0 88.0 87.4 + 77 7 6 5 3 6 15 67 56 32 39 28-11 90.2 88.1 87.5 + 77 7 7 39 22 22 7 9 5 6 9 15-11 85.2 88.2 87.6 + 77 7 8 12 22 9 18 15 15 9 15 14-11 82.1 88.3 87.8 + 77 7 9 18 12 12 15 9 12 27 22 16-11 79.0 88.4 87.9 + 77 7 10 27 18 7 7 12 12 18 15 15-11 76.9 88.4 88.0 + 77 7 11 12 18 15 6 6 5 9 6 10-11 76.2 88.3 88.0 + 77 7 12 5 4 3 5 2 2 5 5 4-11 75.8 88.4 88.1 + 77 7 13 12 12 7 5 9 7 12 7 9-11 77.8 88.4 88.2 + 77 7 14 18 39 39 22 7 6 7 5 18-11 76.8 88.3 88.2 + 77 7 15 12 15 12 7 9 12 12 18 12-11 76.0 88.2 88.2 + 77 7 16 12 12 32 48 27 27 18 39 27-11 76.9 88.1 88.3 + 77 7 17 15 12 15 12 6 15 18 22 14-11 76.5 88.1 88.3 + 77 7 18 7 6 6 6 12 9 6 7 7-11 76.9 88.0 88.3 + 77 7 19 18 7 32 22 32 32 27 15 23-11 76.9 87.9 88.4 + 77 7 20 27 27 48 39 32 18 22 18 29-11 80.1 87.8 88.4 + 77 7 21 22 12 12 5 7 7 9 7 10-11 81.7 87.8 88.4 + 77 7 22 15 12 15 18 5 7 7 9 11-11 83.1 87.7 88.4 + 77 7 23 12 7 7 3 6 3 3 5 6-11 85.0 87.7 88.5 + 77 7 24 6 5 5 7 7 6 12 7 7-11 84.0 87.7 88.5 + 77 7 25 6 5 5 4 5 3 3 7 5-11 86.0 87.8 88.6 + 77 7 26 3 4 2 3 4 5 3 0 3-11 86.0 87.8 88.7 + 77 7 27 0 3 4 2 4 2 2 6 3-11 85.4 87.9 88.7 + 77 7 28 4 4 2 3 4 5 4 5 4-11 87.5 87.9 88.8 + 77 7 29 80111 80 56111 32 12 7 61-11 86.7 88.0 89.0 + 77 7 30 32 32 27 18 6 6 6 6 17-11 84.1 88.1 89.1 + 77 7 31 12 12 7 7 6 3 5 9 8-11 80.4 88.1 89.3 + 77 8 1 5 6 6 6 12 6 3 4 6-11 83.0 88.2 89.4 + 77 8 2 7 5 3 5 3 4 5 2 4-11 82.8 88.3 89.6 + 77 8 3 4 4 4 3 5 7 15 12 7-11 82.3 88.4 89.7 + 77 8 4 12 15 5 7 6 7 12 7 9-11 82.9 88.5 89.9 + 77 8 5 27 27 80 48 48 27 48 15 40-11 86.4 88.5 90.1 + 77 8 6 22 32 18 18 12 15 27 27 21-11 88.2 88.5 90.3 + 77 8 7 9 12 22 27 9 18 9 27 17-11 86.9 88.6 90.5 + 77 8 8 22 18 12 9 5 7 12 15 13-11 85.1 88.7 90.8 + 77 8 9 27 15 12 7 39 22 22 15 20-11 85.9 88.8 91.0 + 77 8 10 15 18 18 7 7 9 12 7 12-11 87.2 88.8 91.2 + 77 8 11 18 32 32 18 27 18 48 32 28-11 87.6 88.8 91.4 + 77 8 12 5 18 9 22 9 9 7 9 11-11 86.5 88.9 91.6 + 77 8 13 15 12 9 7 12 7 6 18 11-11 89.0 88.9 91.8 + 77 8 14 5 3 9 9 32 12 15 9 12-11 87.5 89.0 92.0 + 77 8 15 9 22 18 15 7 4 6 5 11-11 86.9 89.2 92.1 + 77 8 16 4 6 4 6 27 6 9 7 9-11 87.3 89.3 92.3 + 77 8 17 7 15 27 67 48 32 15 18 29-11 87.1 89.5 92.5 + 77 8 18 22 12 15 9 12 12 12 9 13-11 88.6 89.7 92.6 + 77 8 19 48 39 9 18 7 15 18 39 24-11 87.0 89.9 92.7 + 77 8 20 18 7 12 7 7 6 5 5 8-11 88.7 90.2 92.8 + 77 8 21 5 4 9 4 5 4 3 4 5-11 90.8 90.5 92.9 + 77 8 22 3 4 4 4 2 3 6 12 5-11 89.6 90.7 93.0 + 77 8 23 5 3 4 6 6 12 9 7 7-11 86.0 90.9 93.1 + 77 8 24 7 12 9 15 15 15 5 2 10-11 86.0 91.1 93.3 + 77 8 25 4 5 18 39 56 56 22 18 27-11 87.7 91.4 93.4 + 77 8 26 15 12 15 15 27 9 6 2 13-11 86.4 91.8 93.6 + 77 8 27 6 22 22 18 9 9 15 9 14-11 85.4 92.1 93.8 + 77 8 28 6 12 7 6 9 7 7 3 7-11 82.4 92.4 93.9 + 77 8 29 9 9 5 6 7 3 3 3 6-11 86.1 92.8 94.1 + 77 8 30 4 5 6 4 4 5 6 6 5-11 85.5 93.0 94.3 + 77 8 31 4 7 4 3 2 3 3 4 4-11 84.7 93.2 94.5 + 77 9 1 6 4 4 3 5 3 2 3 4-11 83.1 93.4 94.6 + 77 9 2 4 4 2 3 7 9 6 12 6-11 84.2 93.6 94.8 + 77 9 3 18 18 6 5 5 4 3 4 8-11 87.2 93.7 95.0 + 77 9 4 4 5 12 12 6 5 3 4 6-11 84.2 93.9 95.2 + 77 9 5 4 2 0 5 5 2 3 3 3-11 85.6 94.0 95.5 + 77 9 6 0 4 3 5 5 4 2 5 4-11 84.9 94.2 95.7 + 77 9 7 3 7 4 2 3 3 7 18 6-11 89.3 94.3 96.0 + 77 9 8 15 7 15 5 5 5 6 7 8-11 91.6 94.4 96.2 + 77 9 9 7 12 12 12 15 15 12 5 11-11 95.9 94.6 96.5 + 77 9 10 22 18 9 15 12 5 9 12 13-11 99.8 94.9 96.8 + 77 9 11 18 22 22 22 15 18 22 12 19-11104.6 95.1 97.0 + 77 9 12 3 15 4 2 3 3 5 15 6-11107.8 95.2 97.2 + 77 9 13 22 12 27 22 22 48 56 18 28-11112.9 95.3 97.5 + 77 9 14 27 22 4 5 4 5 6 6 10-11118.2 95.3 97.7 + 77 9 15 7 15 18 18 6 3 3 3 9-11120.7 95.4 97.9 + 77 9 16 4 5 5 7 12 7 12 7 7-11120.4 95.4 98.1 + 77 9 17 9 12 32 7 6 5 3 3 10-11120.6 95.4 98.2 + 77 9 18 5 15 6 6 7 3 4 5 6-11120.5 95.4 98.4 + 77 9 19 4 3 4 27 80 67 80 67 42-11104.5 95.5 98.5 + 77 9 20 67 39 48 39 48 56 27 27 44-11108.8 95.6 98.6 + 77 9 21 32 56 80111 39 12 32154 65-11104.9 95.7 98.7 + 77 9 22 94 80 32 27 39 94111 27 63-11102.4 95.8 98.9 + 77 9 23 12 5 4 22 27 48 32 18 21-11 99.3 95.9 99.0 + 77 9 24 15 22 9 15 7 12 7 12 12-11100.6 95.9 99.1 + 77 9 25 9 12 12 9 5 9 15 9 10-11 98.8 95.9 99.2 + 77 9 26 4 6 9 27 15 27 15 39 18-11 99.4 96.0 99.3 + 77 9 27 67 67 32 9 5 3 4 3 24-11100.0 96.0 99.4 + 77 9 28 5 5 12 9 9 22 6 4 9-11100.0 96.0 99.5 + 77 9 29 0 6 6 2 2 4 4 3 3-11 99.4 96.1 99.6 + 77 9 30 3 3 3 6 7 3 4 3 4-11 97.7 96.1 99.8 + 77 10 1 2 5 3 4 5 3 3 5 4-11 93.8 96.1 99.9 + 77 10 2 7 5 6 9 6 2 2 3 5-11 93.2 96.2100.1 + 77 10 3 2 7 15 9 22 12 7 3 10-11 97.4 96.3100.2 + 77 10 4 12 9 9 6 7 3 5 7 7-11 98.8 96.4100.4 + 77 10 5 9 5 9 9 12 9 7 4 8-11104.0 96.5100.6 + 77 10 6 15 9 12 5 6 7 7 6 8-11103.5 96.6100.8 + 77 10 7 2 2 3 6 4 2 3 3 3-11105.5 96.8101.0 + 77 10 8 3 6 4 5 7 6 12 4 6-11103.8 97.0101.2 + 77 10 9 2 2 0 2 4 3 2 3 2-11100.7 97.2101.4 + 77 10 10 0 0 0 12 5 3 5 7 4-11 96.4 97.3101.6 + 77 10 11 12 6 7 4 6 9 15 39 12-11 95.3 97.5101.9 + 77 10 12 27 48 39 48 27 18 12 6 28-11100.8 97.6102.1 + 77 10 13 6 27 18 12 27 5 9 12 15-11 98.5 97.7102.2 + 77 10 14 6 0 2 27 12 9 12 39 13-11 98.9 97.7102.4 + 77 10 15 32 9 39 32 6 6 15 12 19-11 98.2 97.7102.5 + 77 10 16 9 15 4 4 7 6 6 9 8-11 96.8 97.7102.7 + 77 10 17 9 15 9 7 9 18 12 18 12-11 94.9 97.7102.8 + 77 10 18 18 18 22 12 9 15 32 48 22-11 95.4 97.6103.0 + 77 10 19 80 48 32 18 18 18 9 2 28-11105.0 97.5103.1 + 77 10 20 0 5 5 7 9 15 5 9 7-11 99.6 97.4103.3 + 77 10 21 12 2 4 4 3 5 5 7 5-11 98.6 97.2103.4 + 77 10 22 22 27 48 15 15 18 12 22 22-11 93.9 97.0103.6 + 77 10 23 12 12 6 3 0 2 7 6 6-11 87.3 96.8103.9 + 77 10 24 9 7 5 5 5 4 5 6 6-11 88.3 96.6104.1 + 77 10 25 6 2 3 2 0 5 7 7 4-11 88.1 96.3104.3 + 77 10 26 3 9 6 4 2 3 4 15 6-11 88.6 96.0104.6 + 77 10 27 27 18 18 94 67 48111111 62-11 88.5 95.8104.8 + 77 10 28 80154 56 12 18 18 32 7 47-11 90.3 95.6105.1 + 77 10 29 9 7 4 12 22 9 4 6 9-11 90.3 95.4105.4 + 77 10 30 5 4 6 7 9 27 7 6 9-11 94.9 95.5105.7 + 77 10 31 7 6 6 6 4 4 7 5 6-11 95.9 95.6106.0 + 77 11 1 5 2 5 4 4 3 5 9 5-11 94.4 95.6106.3 + 77 11 2 9 5 4 4 4 4 9 5 6-11 93.6 95.8106.6 + 77 11 3 2 6 4 4 2 5 4 2 4-11 90.4 95.8106.8 + 77 11 4 5 2 2 4 7 22 12 9 8-11 89.4 95.7107.1 + 77 11 5 32 12 7 6 4 7 4 6 10-11 90.6 95.6107.3 + 77 11 6 9 5 7 7 9 9 5 3 7-11 91.1 95.5107.6 + 77 11 7 6 7 5 6 7 4 2 5 5-11 90.2 95.4107.7 + 77 11 8 3 3 5 3 4 3 6 0 3-11 90.3 95.3107.9 + 77 11 9 4 6 3 3 2 3 4 0 3-11 91.1 95.2108.0 + 77 11 10 2 2 6 5 15 18 7 15 9-11 93.1 95.1108.2 + 77 11 11 9 5 5 6 7 5 5 6 6-11 94.9 95.0108.3 + 77 11 12 18 32 18 18 12 15 12 22 18-11 91.4 95.0108.5 + 77 11 13 27 32 18 27 27 48 15 18 27-11 94.0 94.9108.7 + 77 11 14 27 32 48 32 48 48 32 67 42-11 97.9 94.9108.8 + 77 11 15 67 18 15 39 18 22 9 15 25-11 97.9 94.8109.0 + 77 11 16 22 12 15 15 18 15 12 7 15-11 95.9 94.7109.2 + 77 11 17 12 12 6 9 2 2 3 18 8-11100.4 94.6109.3 + 77 11 18 5 12 6 7 7 5 5 5 7-11102.0 94.6109.4 + 77 11 19 7 9 6 5 4 5 7 9 7-11 99.2 94.6109.6 + 77 11 20 6 5 3 4 3 4 4 4 4-11 95.7 94.9109.7 + 77 11 21 15 5 3 3 4 3 3 4 5-11 92.8 95.2109.9 + 77 11 22 3 5 4 7 2 2 2 2 3-11 89.3 95.5110.0 + 77 11 23 3 3 0 2 3 3 2 4 3-11 88.0 95.9110.2 + 77 11 24 2 2 3 4 2 3 0 2 2-11 86.7 96.3110.4 + 77 11 25 3 2 2 4 15 12 32 48 15-11 84.7 96.6110.6 + 77 11 26 56 18 7 18 15 15 7 15 19-11 84.1 96.9110.8 + 77 11 27 48 9 12 7 6 5 6 5 12-11 83.8 97.2111.0 + 77 11 28 6 9 6 6 3 4 3 5 5-11 85.6 97.4111.2 + 77 11 29 9 7 4 4 5 4 7 9 6-11 85.6 97.4111.3 + 77 11 30 9 15 22 18 9 5 6 9 12-11 85.3 97.3111.5 + 77 12 1 4 2 2 2 3 6 18 15 7-11 88.4 97.3111.7 + 77 12 2 48111 67 32 32 94132 39 69-11 91.2 97.3111.8 + 77 12 3 18 9 6 9 9 6 9 7 9-11 93.7 97.3111.9 + 77 12 4 3 7 5 4 7 18 27 39 14-11 95.9 97.4112.0 + 77 12 5 27 39 39 12 12 5 7 7 19-11 96.9 97.4112.1 + 77 12 6 12 6 6 2 2 2 4 4 5-11102.0 97.4112.1 + 77 12 7 4 3 3 0 0 3 5 5 3-11105.5 97.3112.2 + 77 12 8 4 2 2 2 0 2 2 2 2-11106.7 97.3112.2 + 77 12 9 0 6 7 2 2 2 3 2 3-11112.6 97.2112.3 + 77 12 10 0 2 4 3 2 2 6 9 4-11114.7 97.1112.3 + 77 12 11 27 39 56 56 56 22 15 32 38-11107.4 97.0112.4 + 77 12 12 32 67 15 12 15 6 9 12 21-11111.0 96.9112.5 + 77 12 13 27 15 15 12 15 22 18 7 16-11100.6 97.0112.6 + 77 12 14 12 12 9 5 7 6 5 4 8-11 93.7 97.1112.7 + 77 12 15 6 6 6 6 7 3 3 2 5-11 92.5 97.2112.8 + 77 12 16 2 4 5 3 7 12 15 22 9-11 92.5 97.4113.0 + 77 12 17 22 48 7 3 4 3 6 6 12-11 91.1 97.6113.2 + 77 12 18 4 4 2 3 2 2 2 2 3-11 93.6 98.0113.4 + 77 12 19 3 2 3 2 2 6 2 3 3-11 91.0 98.4113.6 + 77 12 20 4 2 2 5 3 3 6 3 4-11 88.7 98.9113.8 + 77 12 21 5 2 5 3 5 6 6 15 6-11 87.8 99.5114.1 + 77 12 22 18 12 3 2 4 3 3 6 6-11 89.9 99.9114.3 + 77 12 23 6 2 0 5 6 4 4 6 4-11 91.2100.5114.6 + 77 12 24 7 4 4 7 5 6 4 4 5-11 93.9101.2114.8 + 77 12 25 2 4 5 5 5 3 9 7 5-11 96.3102.0115.0 + 77 12 26 15 15 7 9 6 9 12 12 11-11 99.3102.7115.2 + 77 12 27 9 9 6 6 6 5 4 2 6-11 98.3103.4115.4 + 77 12 28 3 6 5 5 4 6 32 18 10-11 98.9104.1115.5 + 77 12 29 15 15 5 4 5 5 5 9 8-11105.6104.8115.7 + 77 12 30 7 5 5 4 5 4 6 7 5-11114.7105.5115.8 + 77 12 31 4 5 4 7 7 4 7 12 6-11120.2106.3115.9 + 78 1 1 6 7 6 5 3 4 12 12 7-11126.9106.9116.0 + 78 1 2 15 22 6 5 3 2 5 5 8-11133.9107.8116.0 + 78 1 3 3 2 3 3 7 15 22 48 13-11130.2108.6116.1 + 78 1 4 56 80 67 80 94154111 67 89-11124.8109.4116.2 + 78 1 5 80 67 32 12 12 15 12 18 31-11119.2110.2116.3 + 78 1 6 80 56 32 12 15 15 27 32 34-11118.7110.9116.4 + 78 1 7 12 6 6 5 5 22 7 39 13-11111.6111.4116.5 + 78 1 8 48 18 12 18 18 18 7 12 19-11102.8111.9116.7 + 78 1 9 15 12 22 12 9 39 27 48 23-11 97.0112.4116.9 + 78 1 10 48 22 15 9 7 27 15 27 21-11 93.5112.8117.2 + 78 1 11 6 12 6 9 9 6 4 5 7-11 93.1113.3117.4 + 78 1 12 5 7 3 2 3 2 6 6 4-11 92.1113.6117.7 + 78 1 13 6 15 6 7 6 6 6 12 8-11 90.3114.1117.9 + 78 1 14 4 2 6 3 2 2 2 6 3-11 88.6114.5118.2 + 78 1 15 3 4 0 4 3 0 0 0 2-11 89.6115.0118.4 + 78 1 16 2 2 6 7 22 27 18 32 15-11 86.4115.4118.6 + 78 1 17 27 15 4 5 4 3 5 12 9-11 83.8115.8118.9 + 78 1 18 39 22 12 7 5 4 2 4 12-11 84.7116.2119.1 + 78 1 19 9 7 6 7 7 5 4 6 6-11 85.4116.5119.2 + 78 1 20 3 3 7 3 5 3 0 0 3-11 87.0116.7119.4 + 78 1 21 0 0 0 0 2 0 2 4 1-11 91.4117.1119.5 + 78 1 22 4 2 4 4 3 0 2 2 3-11 96.9117.6119.6 + 78 1 23 0 2 0 0 2 4 4 2 2-11 99.6118.2119.7 + 78 1 24 3 3 5 4 5 15 9 3 6-11100.4118.9119.8 + 78 1 25 2 6 5 5 12 15 18 32 12-11103.3119.8119.9 + 78 1 26 39 15 12 9 7 6 6 5 12-11112.7120.7119.9 + 78 1 27 6 7 3 4 2 2 7 6 5-11116.4121.6120.0 + 78 1 28 3 0 5 4 5 12 18 22 9-11127.7122.8120.0 + 78 1 29 18 32 27 48 56 67 27 15 36-11132.2123.8120.1 + 78 1 30 12 27 94 80 18 9 12 39 36-11134.9124.9120.2 + 78 1 31 27 18 22 22 22 27 22 22 23-11133.3125.9120.3 + 78 2 1 27 18 9 7 15 15 9 22 15-11139.1126.8120.3 + 78 2 2 22 18 9 18 9 4 6 22 14-11152.6127.7120.4 + 78 2 3 18 9 9 15 15 15 15 15 14-11156.6128.4120.5 + 78 2 4 27 12 12 7 6 9 6 6 11-11154.0129.0120.6 + 78 2 5 18 22 22 15 12 18 22 6 17-11159.0129.4120.7 + 78 2 6 12 6 12 12 18 15 22 12 14-11156.1129.8120.8 + 78 2 7 9 7 4 5 4 7 9 9 7-11157.3130.2120.9 + 78 2 8 12 7 7 6 15 15 12 9 10-11157.0130.5121.0 + 78 2 9 6 6 15 15 32 15 18 18 16-11155.2130.5121.1 + 78 2 10 9 9 7 6 7 7 9 5 7-11148.7130.5121.2 + 78 2 11 7 5 9 9 2 5 2 3 5-11154.2130.3121.3 + 78 2 12 4 6 12 3 5 9 12 32 10-11159.0130.1121.4 + 78 2 13 15 15 7 6 3 9 7 4 8-11151.2130.0121.6 + 78 2 14 9 4 4 15 12 9 5 32 11-11148.4129.8121.7 + 78 2 15 27 56111154 22 9 5 4 49-11136.8129.8121.8 + 78 2 16 6 6 6 18 15 7 15 18 11-11130.2129.7121.9 + 78 2 17 32 15 3 3 6 5 7 7 10-11125.9129.7121.9 + 78 2 18 12 12 12 7 12 7 12 9 10-11124.9129.8122.0 + 78 2 19 15 22 6 5 9 7 7 22 12-11119.1130.2122.1 + 78 2 20 22 12 18 7 12 7 9 12 12-11122.2130.6122.1 + 78 2 21 6 9 4 9 9 32 15 15 12-11122.2131.1122.1 + 78 2 22 27 32 22 6 9 27 15 39 22-11127.7131.6122.2 + 78 2 23 12 5 7 5 6 3 4 7 6-11131.8132.3122.3 + 78 2 24 7 3 5 7 6 5 3 2 5-11135.6133.0122.3 + 78 2 25 3 6 5 7 4 3 27 39 12-11139.3133.7122.3 + 78 2 26 48 39 18 22 39 48 48 32 37-11134.8134.4122.4 + 78 2 27 32 32 18 22 67 56 56 56 42-11137.5135.2122.5 + 78 2 28 22 56 32 18 27 56 94 67 47-11135.4136.1122.5 + 78 3 1 18 18 15 39 39 48 48 39 33-11136.3137.0122.7 + 78 3 2 32 27 56 18 18 18 32 15 27-11141.1137.9122.8 + 78 3 3 22 18 15 12 12 12 15 15 15-11146.6138.7123.0 + 78 3 4 5 3 2 3 3 0 2 3 3-11148.4139.3123.2 + 78 3 5 2 0 4 9 9 12 7 5 6-11154.5139.8123.5 + 78 3 6 4 2 3 18 15 9 3 2 7-11162.8140.3123.7 + 78 3 7 5 9 7 15 15 9 4 7 9-11165.2140.7124.0 + 78 3 8 5 3 5 5 39 18 56 27 20-11168.7141.0124.2 + 78 3 9 12 18 12 18 9 9 18 12 14-11183.7141.2124.5 + 78 3 10 3 5 32 15 27 9 5 2 12-11179.1141.3124.7 + 78 3 11 3 5 6 15 6 6 7 5 7-11175.2141.4124.8 + 78 3 12 3 0 5 3 4 3 3 3 3-11169.8141.4125.0 + 78 3 13 12 15 18 9 12 9 12 9 12-11160.9141.6125.1 + 78 3 14 12 9 6 6 12 9 15 12 10-11160.5141.9125.2 + 78 3 15 18 39 22 9 7 9 9 22 17-11154.2142.0125.2 + 78 3 16 32 32 22 9 12 27 18 39 24-11143.3142.0125.3 + 78 3 17 22 32 27 9 27 32 39 15 25-11135.4142.2125.4 + 78 3 18 32 32 12 32 18 32 15 15 24-11132.3142.3125.5 + 78 3 19 18 22 9 15 18 18 5 12 15-11128.1142.6125.6 + 78 3 20 9 6 5 9 12 6 15 9 9-11125.3142.9125.7 + 78 3 21 9 18 7 5 6 4 3 6 7-11118.2143.3125.9 + 78 3 22 4 7 7 15 9 9 22 32 13-11117.0143.6126.1 + 78 3 23 39 18 15 9 18 12 3 3 15-11116.4144.0126.3 + 78 3 24 2 5 6 4 5 3 5 18 6-11117.5144.3126.5 + 78 3 25 5 3 2 0 2 2 4 6 3-11118.2144.6126.6 + 78 3 26 39 39 12 15 80 67111 27 49-11112.5144.9126.8 + 78 3 27111 94 56 39 48 80 80 56 71-11114.1145.2127.0 + 78 3 28 27 22 15 15 22 22 9 5 17-11112.7145.5127.1 + 78 3 29 9 9 12 22 18 22 9 9 14-11111.1145.7127.2 + 78 3 30 15 18 22 22 22 15 5 7 16-11115.4145.8127.4 + 78 3 31 3 3 2 7 18 15 12 7 8-11124.5145.8127.5 + 78 4 1 27 22 15 5 4 7 6 9 12-11130.0146.0127.6 + 78 4 2 22 22 4 7 9 7 12 39 15-11129.8146.2127.7 + 78 4 3 7 56 56 18 15 27 67 80 41-11134.5146.4127.9 + 78 4 4 56 48 39 9 6 56132 94 55-11143.3146.6128.0 + 78 4 5 56 48 12 5 7 6 18 15 21-11146.7146.8128.0 + 78 4 6 12 15 7 7 15 6 6 6 9-11145.3146.9128.1 + 78 4 7 6 2 2 5 6 3 7 9 5-11146.9147.0128.2 + 78 4 8 3 6 4 4 6 7 6 5 5-11148.6147.0128.3 + 78 4 9 4 12 7 7 5 5 4 5 6-11156.1147.0128.5 + 78 4 10 3 6 5 6 32 39 39154 36-11155.4146.9128.6 + 78 4 11179 94 48 15 22 67 56 32 64-11162.8146.9128.8 + 78 4 12111 12 27 18 12 18 22 12 29-11156.2146.8129.0 + 78 4 13 18 9 9 9 22 15 39 67 24-11145.6146.8129.2 + 78 4 14 67 32 32 67 94 32 56 27 51-11139.1146.7129.4 + 78 4 15 39 22 22 18 18 15 9 7 19-11141.4146.7129.6 + 78 4 16 15 9 7 5 4 4 9 7 8-11137.6146.5129.9 + 78 4 17 6 5 7 5 6 5 4 15 7-11133.4146.4130.1 + 78 4 18 27 39 15 6 5 27 18 12 19-11134.1146.1130.3 + 78 4 19 6 22 56 27 48 48 67 32 38-11139.5145.7130.5 + 78 4 20 67 32 15 15 6 22 9 18 23-11138.1145.3130.7 + 78 4 21 12 7 9 5 12 7 9 9 9-11138.4145.0130.9 + 78 4 22 4 7 5 6 12 7 12 15 9-11146.4144.7131.1 + 78 4 23 18 12 12 12 32 32 22 32 22-11162.9144.6131.3 + 78 4 24 80 67 48 32 39 67 18 32 48-11159.8144.2131.5 + 78 4 25 39 15 18 15 12 15 12 9 17-11159.1143.8131.6 + 78 4 26 22 27 27 9 12 15 15 15 18-11166.7143.4131.8 + 78 4 27 18 9 9 18 9 22 15 27 16-11172.8143.1132.0 + 78 4 28 18 18 9 12 15 7 12 5 12-11176.6142.8132.2 + 78 4 29 9 4 4 4 7 5 9 9 6-11185.2142.6132.3 + 78 4 30 18 12 7 48111207 22 39 58-11182.1142.4132.5 + 78 5 1 12 39 67 56154 32111236 88-11181.4142.3132.6 + 78 5 2154 67154132132 56 22 39 95-11183.0142.2132.8 + 78 5 3 39 56 80 56111111 80132 83-11182.2142.2132.9 + 78 5 4154179154 94111 32 39 6 96-11178.4142.2133.1 + 78 5 5 5 6 4 4 5 4 9 22 7-11173.9142.3133.3 + 78 5 6 6 4 5 4 4 4 4 12 5-11173.1142.6133.6 + 78 5 7 12 5 6 6 5 6 12 7 7-11162.6142.9133.8 + 78 5 8 6 5 4 15 15 27 32 22 16-11143.4143.4134.0 + 78 5 9 48 48179 94132111 48 18 85-11135.1143.9134.3 + 78 5 10 3 5 3 3 5 3 18 39 10-11129.5144.5134.5 + 78 5 11 27 80 48 18 15 15 18 22 30-11133.8145.1134.7 + 78 5 12 22 18 22 12 18 15 22 18 18-11138.2145.8134.9 + 78 5 13 39 6 4 4 9 6 5 12 11-11140.2146.5135.1 + 78 5 14 12 7 5 7 5 12 18 9 9-11143.7147.3135.2 + 78 5 15 4 2 2 7 5 9 7 7 5-11146.1147.9135.4 + 78 5 16 6 7 4 4 9 12 6 6 7-11147.8148.4135.5 + 78 5 17 6 9 9 5 5 5 9 15 8-11143.8148.8135.6 + 78 5 18 5 7 3 5 5 7 5 2 5-11135.6149.2135.7 + 78 5 19 4 3 3 9 6 4 2 4 4-11133.6149.5135.8 + 78 5 20 5 5 5 5 4 9 27 5 8-11132.3149.7135.8 + 78 5 21 7 15 9 5 12 9 67 80 26-11132.7149.7135.9 + 78 5 22 48 12 12 12 15 27 39 27 24-11135.7149.4136.0 + 78 5 23 15 22 15 7 9 32 32 56 24-11142.9149.1136.1 + 78 5 24 39 15 32 32 39 15 12 22 26-11146.5148.7136.2 + 78 5 25 22 9 9 4 9 5 7 18 10-11147.6148.4136.3 + 78 5 26 15 6 6 6 6 6 6 4 7-11152.8148.2136.4 + 78 5 27 5 4 6 5 4 3 3 9 5-11150.6147.9136.5 + 78 5 28 6 4 5 6 7 7 12 6 7-11147.1147.9136.6 + 78 5 29 5 3 2 4 5 4 22 18 8-11148.6147.9136.8 + 78 5 30 48 27 22 6 12 9 12 9 18-11147.2148.0137.0 + 78 5 31 27 27 9 5 12 4 5 4 12-11152.6148.2137.2 + 78 6 1 4 12 7 6 3 7 6 27 9-11149.1148.5137.4 + 78 6 2 7 9 22132154132154 48 82-11147.0148.9137.6 + 78 6 3 80 48 22 27 9 12 39 9 31-11130.8148.9137.9 + 78 6 4 15 7 6 12 32 15 27 94 26-11118.6148.9138.0 + 78 6 5 94 94 32 18 9 12 27 18 38-11116.9149.1138.2 + 78 6 6 9 6 5 18 6 4 6 12 8-11109.8149.0138.4 + 78 6 7 9 12 12 7 7 9 15 18 11-11110.6148.9138.6 + 78 6 8 18 27 7 4 7 7 5 2 10-11109.3148.6138.8 + 78 6 9 3 6 5 2 4 3 5 4 4-11106.5148.1139.0 + 78 6 10 6 4 22 22 15 27 15 80 24-11108.4147.6139.2 + 78 6 11 32 27 39 18 7 6 3 4 17-11113.2147.1139.5 + 78 6 12 3 6 3 12 15 15 18 5 10-11116.4146.4139.8 + 78 6 13 5 6 4 12 12 7 4 5 7-11120.3145.7140.1 + 78 6 14 2 4 3 3 4 5 6 6 4-11126.4145.0140.4 + 78 6 15 7 7 9 7 7 6 4 3 6-11132.5144.2140.7 + 78 6 16 4 6 3 6 7 6 9 9 6-11139.5143.5140.9 + 78 6 17 9 12 9 15 7 7 9 7 9-11149.0142.8141.2 + 78 6 18 12 7 12 9 18 12 12 9 11-11153.5142.4141.4 + 78 6 19 12 12 15 12 15 15 22 32 17-11162.0142.1141.6 + 78 6 20 15 12 9 12 7 6 9 15 11-11174.2141.9141.8 + 78 6 21 18 56 22 18 39 48 48 18 33-11185.4141.6141.9 + 78 6 22 18 18 12 12 18 15 18 9 15-11190.3141.2142.0 + 78 6 23 18 12 12 18 12 18 32 22 18-11196.7140.7142.1 + 78 6 24 39 27 22 12 18 12 12 12 19-11194.8140.3142.3 + 78 6 25 12 12 22 27 12 32 48 27 24-11183.5139.9142.4 + 78 6 26 27 56 67 32 39 48 48 48 46-11182.4139.5142.5 + 78 6 27 22 27 15 7 15 9 18 9 15-11179.5139.3142.6 + 78 6 28 9 12 9 12 18 18 9 9 12-11174.1139.2142.7 + 78 6 29 3 6 7 12 12 22 18179 32-11167.4139.1142.9 + 78 6 30 80 22 39 22 27 18 32 5 31-11154.6139.1143.1 + 78 7 1 6 5 4 9 9 6 2 3 6-11142.9139.0143.3 + 78 7 2 7 3 7 6 5 7 4 4 5-11127.6138.8143.5 + 78 7 3 4 4 9 7 6 4 7 48 11-11116.5138.6143.7 + 78 7 4 80 22 27 27179207 22 80 81-11117.4138.5143.8 + 78 7 5 67132111 32 27 22 22 12 53-11118.9138.3144.0 + 78 7 6 12 7 18 6 15 22 12 9 13-11119.3138.0144.2 + 78 7 7 12 9 7 22 18 18 22 7 14-11128.9137.7144.4 + 78 7 8 12 12 12 6 18 32 15 9 15-11135.9137.3144.6 + 78 7 9 15 4 4 4 7 18 9 7 9-11147.1136.9144.8 + 78 7 10 7 9 18 7 12 6 9 9 10-11156.0136.5145.1 + 78 7 11 7 6 5 12 5 4 3 3 6-11163.2135.9145.4 + 78 7 12 2 2 2 3 4 9 7 7 5-11174.2135.4145.6 + 78 7 13 15 15 32 7 27 15 6 39 20-11165.5134.9145.9 + 78 7 14 67 48 27 56 67 56 48 18 48-11163.1134.5146.1 + 78 7 15 18 9 5 3 2 3 5 5 6-11169.5134.4146.4 + 78 7 16 22 3 2 3 5 4 5 6 6-11163.4134.2146.7 + 78 7 17 6 5 3 9 4 5 6 6 6-11159.5134.1146.9 + 78 7 18 7 9 3 5 15 32 27 48 18-11154.1134.1147.2 + 78 7 19 15 15 22 9 9 6 5 4 11-11148.6134.1147.5 + 78 7 20 5 6 7 5 4 5 5 4 5-11142.9134.2147.7 + 78 7 21 6 5 6 6 6 5 6 6 6-11140.2134.4148.0 + 78 7 22 9 15 9 6 4 4 9 12 9-11127.0134.6148.3 + 78 7 23 9 9 7 4 3 7 12 12 8-11123.4135.2148.6 + 78 7 24 5 4 5 4 5 4 7 12 6-11118.5135.8149.0 + 78 7 25 9 6 4 5 6 6 15 15 8-11113.7136.3149.3 + 78 7 26 6 6 3 3 6 5 7 7 5-11112.2136.8149.6 + 78 7 27 4 2 2 6 6 3 4 7 4-11110.8137.3149.9 + 78 7 28 6 9 12 9 6 3 2 2 6-11109.9137.7150.1 + 78 7 29 0 2 4 5 4 4 4 7 4-11109.2138.0150.4 + 78 7 30 6 3 2 4 4 4 2 2 3-11109.2138.1150.6 + 78 7 31 0 0 2 2 2 3 3 2 2-11108.8137.9150.8 + 78 8 1 3 4 4 5 3 2 5 6 4-11106.0137.4151.0 + 78 8 2 3 2 0 2 3 4 7 7 4-11106.0136.8151.2 + 78 8 3 6 12 9 15 18 22 22 27 16-11109.6136.1151.3 + 78 8 4 32 67 15 56 32 18 15 6 30-11112.3135.4151.4 + 78 8 5 7 18 32 32 22 15 32 22 23-11117.6134.9151.5 + 78 8 6 12 22 39 7 22 12 9 9 17-11122.6134.5151.5 + 78 8 7 15 4 6 4 6 5 9 9 7-11128.2134.3151.7 + 78 8 8 6 5 5 6 6 12 5 3 6-11130.6134.2151.8 + 78 8 9 4 5 5 6 4 4 5 5 5-11128.1134.2151.9 + 78 8 10 5 5 5 6 9 5 5 9 6-11127.5134.4152.1 + 78 8 11 12 6 5 6 15 27 12 5 11-11121.7134.7152.2 + 78 8 12 9 22 48 39 15 15 7 15 21-11124.5135.2152.3 + 78 8 13 15 9 9 18 15 12 9 15 13-11134.9135.9152.4 + 78 8 14 9 7 6 5 4 6 5 3 6-11132.7136.5152.5 + 78 8 15 3 0 3 2 6 4 6 3 3-11130.0137.0152.7 + 78 8 16 2 2 0 4 5 5 9 7 4-11123.6137.5152.8 + 78 8 17 5 3 3 15 18 12 9 9 9-11119.3137.7153.0 + 78 8 18 18 9 5 5 18 22 80 32 24-11115.6137.8153.2 + 78 8 19 22 3 18 12 15 7 6 4 11-11111.6137.8153.5 + 78 8 20 3 4 2 3 3 3 4 3 3-11107.5137.7153.8 + 78 8 21 4 3 2 3 3 5 7 22 6-11104.8137.5154.1 + 78 8 22 12 9 3 3 7 3 3 4 6-11106.0137.1154.4 + 78 8 23 2 4 3 3 3 5 6 6 4-11104.1136.7154.7 + 78 8 24 7 4 4 4 4 4 3 4 4-11105.4136.3154.9 + 78 8 25 6 4 6 15 15 9 9 6 9-11104.2135.9155.1 + 78 8 26 6 4 3 3 2 3 5 3 4-11100.7135.6155.2 + 78 8 27 27 18 22 27 39 32 32 32 29-11107.3135.3155.3 + 78 8 28 32154236179207 94 39 48124-11107.7135.1155.4 + 78 8 29 67 39 67 39 56 18 18 15 40-11116.2135.1155.5 + 78 8 30 27 15 18 32 32 27 56 39 31-11124.1135.3155.5 + 78 8 31 67 18 39 48 48 94 32 12 45-11133.9135.6155.6 + 78 9 1 18 15 48 18 22 15 12 18 21-11159.8136.1155.7 + 78 9 2 12 9 39 15 27 12 27 15 20-11171.7136.8155.8 + 78 9 3 9 12 12 12 15 12 9 7 11-11167.0137.5155.9 + 78 9 4 9 7 12 7 7 6 9 6 8-11174.4138.4155.9 + 78 9 5 4 5 5 6 4 5 12 15 7-11179.4139.2156.0 + 78 9 6 18 22 32 22 9 5 4 2 14-11181.1140.0156.1 + 78 9 7 0 6 3 6 5 5 12 12 6-11177.5140.8156.1 + 78 9 8 56 67 27 12 5 5 9 7 24-11167.1141.5156.1 + 78 9 9 18 22 27 48 39 39 22 32 31-11157.6142.3156.1 + 78 9 10 27 6 4 15 22 7 6 7 12-11149.8143.1156.1 + 78 9 11 7 2 2 6 27 32 12 9 12-11141.5143.8156.1 + 78 9 12 12 12 18 9 22 7 9 15 13-11138.5144.5156.2 + 78 9 13 9 4 9 9 5 6 6 4 7-11138.0145.1156.3 + 78 9 14 15 6 2 3 3 4 2 3 5-11143.5145.7156.4 + 78 9 15 2 0 3 4 3 2 2 7 3-11152.6146.2156.5 + 78 9 16 6 12 6 2 6 5 5 7 6-11161.5146.5156.6 + 78 9 17 6 15 18 6 5 4 3 6 8-11161.8146.8156.7 + 78 9 18 2 2 2 3 4 2 5 2 3-11169.3147.0156.9 + 78 9 19 2 2 2 0 2 2 2 0 2-11168.8147.3157.0 + 78 9 20 4 0 2 3 5 2 6 15 5-11168.6147.5157.2 + 78 9 21 7 22 15 9 4 7 3 3 9-11172.5147.8157.4 + 78 9 22 7 9 18 7 15 15 15 7 12-11171.5148.2157.6 + 78 9 23 7 12 9 12 12 12 9 12 11-11165.5148.5157.8 + 78 9 24 6 12 7 3 6 15 9 22 10-11158.9148.9158.0 + 78 9 25 12 15 39 56 48 67 22 27 36-11157.2149.5158.2 + 78 9 26 12 39 80 39 27 39 27 27 36-11148.5150.2158.4 + 78 9 27 67 56 22 22 22 56 67 94 51-11146.2150.9158.6 + 78 9 28 48 48 56 56 48 18 32 94 50-11147.8151.6158.9 + 78 9 29 32111179207207111 22 6109-11148.1152.3159.0 + 78 9 30 5 27 22 9 6 6 9 7 11-11142.6153.0159.3 + 78 10 1 12 9 9 12 15 12 18 18 13-11139.0153.8159.5 + 78 10 2 6 12 6 15 18 15 12 15 12-11137.8154.5159.7 + 78 10 3 12 9 15 6 6 4 5 6 8-11131.7155.0159.8 + 78 10 4 27 22 22 15 18 7 12 15 17-11132.0155.5159.9 + 78 10 5 22 9 4 7 5 7 5 4 8-11138.7155.9160.0 + 78 10 6 4 4 4 0 3 7 3 6 4-11137.4156.3160.1 + 78 10 7 6 6 5 4 5 2 4 3 4-11141.6156.6160.2 + 78 10 8 0 7 5 7 5 4 4 9 5-11150.1156.9160.2 + 78 10 9 5 12 6 15 7 7 12 22 11-11155.8157.0160.3 + 78 10 10 32 22 9 18 15 2 7 12 15-11162.3157.1160.3 + 78 10 11 7 9 7 6 3 3 2 5 5-11171.6157.1160.3 + 78 10 12 5 5 3 18 27 27 15 12 14-11177.2156.7160.4 + 78 10 13 15 9 9 5 6 3 9 9 8-11178.5156.1160.5 + 78 10 14 3 4 4 3 2 7 9 6 5-11180.1155.5160.5 + 78 10 15 5 2 4 5 9 4 4 6 5-11182.0154.9160.6 + 78 10 16 7 7 3 3 5 2 2 3 4-11176.7154.2160.7 + 78 10 17 2 5 4 4 3 3 9 12 5-11171.5153.6160.8 + 78 10 18 32 56 48 22 18 18 32 27 32-11169.4153.2160.9 + 78 10 19 27 22 32 22 27 9 22 15 22-11170.4153.1160.9 + 78 10 20 12 12 9 12 12 7 7 4 9-11171.0153.1161.0 + 78 10 21 4 15 9 18 18 7 15 15 13-11166.9153.4161.0 + 78 10 22 6 18 12 9 7 12 9 3 10-11161.4153.7161.1 + 78 10 23 2 12 9 6 5 4 3 5 6-11161.4154.0161.1 + 78 10 24 7 9 4 2 0 4 9 5 5-11156.9154.3161.1 + 78 10 25 4 4 3 9 15 12 6 3 7-11156.1154.6161.1 + 78 10 26 6 7 7 6 15 18 39 48 18-11154.4154.8161.2 + 78 10 27 27 32 56 32 15 7 5 12 23-11150.7154.9161.2 + 78 10 28 12 22 32 15 7 9 4 12 14-11148.4155.1161.3 + 78 10 29 12 9 7 15 27 32 18 12 17-11149.8155.3161.3 + 78 10 30 6 18 22 39 22 39 32 22 25-11146.5155.6161.3 + 78 10 31 22 22 12 9 27 27 22 18 20-11144.0156.0161.3 + 78 11 1 9 15 18 27 9 7 7 9 13-11152.0156.5161.3 + 78 11 2 3 6 7 18 18 18 7 7 11-11159.0157.1161.2 + 78 11 3 12 12 12 9 6 7 22 18 12-11169.9157.6161.2 + 78 11 4 9 6 9 3 5 3 2 6 5-11177.4158.1161.2 + 78 11 5 12 18 4 4 5 5 3 0 6-11181.2158.5161.2 + 78 11 6 0 0 2 4 3 4 3 3 2-11172.2158.9161.2 + 78 11 7 3 0 0 2 2 3 12 48 9-11174.6159.3161.3 + 78 11 8 32 32 12 7 6 12 7 7 14-11168.0159.5161.5 + 78 11 9 12 12 15 7 7 5 0 3 8-11164.9159.5161.6 + 78 11 10 5 4 2 5 5 22 39 48 16-11166.3159.5161.7 + 78 11 11 15 15 9 3 4 3 18 15 10-11163.7159.4161.8 + 78 11 12 67 27 67 80 56 22 56 48 53-11150.4159.3162.0 + 78 11 13 32 27 12 9 27 32 32 5 22-11145.3159.4162.1 + 78 11 14 3 2 3 3 32 27 12 5 11-11136.3159.4162.2 + 78 11 15 7 18 7 7 2 6 7 9 8-11133.8159.4162.2 + 78 11 16 7 4 6 6 12 5 9 3 7-11128.8159.5162.4 + 78 11 17 7 2 9 9 7 4 6 4 6-11128.1159.6162.5 + 78 11 18 6 7 5 4 3 3 4 9 5-11127.4159.7162.5 + 78 11 19 12 22 7 15 22 12 4 7 13-11128.9159.9162.6 + 78 11 20 15 32 15 12 18 27 27 32 22-11134.9160.1162.7 + 78 11 21 32 22 18 12 6 9 7 22 16-11126.0160.4162.7 + 78 11 22 27 22 32 22 48 48 15 9 28-11127.1160.6162.8 + 78 11 23 6 3 4 15 22 18 15 12 12-11121.9160.9162.8 + 78 11 24 9 12 7 6 22 22 32 32 18-11123.5161.2162.8 + 78 11 25 22 27 32 48 80132 94 48 60-11124.7161.3162.8 + 78 11 26 39 48 39 27 32 32 27 18 33-11132.7161.5162.8 + 78 11 27 12 18 15 15 15 22 27 15 17-11144.4161.7162.8 + 78 11 28 6 6 5 3 5 6 4 3 5-11154.1162.0162.8 + 78 11 29 5 4 2 7 3 9 4 2 5-11162.2162.3162.8 + 78 11 30 7 5 2 3 5 3 6 9 5-11167.8162.6162.9 + 78 12 1 6 18 18 15 15 6 4 4 11-11166.6162.8163.0 + 78 12 2 5 3 2 3 3 2 2 5 3-11167.6163.1163.2 + 78 12 3 7 7 0 3 3 6 5 6 5-11164.2163.2163.4 + 78 12 4 6 9 7 18 15 15 15 12 12-11165.3163.7163.7 + 78 12 5 27 15 6 4 3 4 7 18 11-11169.5164.2164.0 + 78 12 6 6 5 5 4 4 4 9 4 5-11164.5164.7164.4 + 78 12 7 3 2 3 2 2 3 2 2 2-11178.5165.2164.7 + 78 12 8 0 0 3 6 3 3 7 4 3-11189.9165.5165.1 + 78 12 9 2 6 2 2 2 3 3 2 3-11189.6165.8165.5 + 78 12 10 3 0 0 0 2 2 0 0 1-11204.7166.4165.8 + 78 12 11 0 0 0 0 0 0 2 4 1-11210.5167.0166.1 + 78 12 12 0 0 0 6 6 5 6 7 4-11217.3167.7166.4 + 78 12 13 18 18 5 3 2 0 4 6 7-11210.6168.6166.6 + 78 12 14 27 48 67 32 22 9 7 9 28-11197.0169.2166.8 + 78 12 15 22 94 32 18 22 18 9 12 28-11192.7169.6166.9 + 78 12 16 9 18 7 12 12 15 22 15 14-11180.5169.9167.0 + 78 12 17 15 9 9 5 7 4 7 18 9-11177.7170.2167.0 + 78 12 18 32 22 56 56 67 67 48 32 48-11161.5170.6167.0 + 78 12 19 22 32 18 15 39 27 27 15 24-11152.9171.1166.9 + 78 12 20 22 22 18 27 27 32 32 27 26-11138.1171.6166.9 + 78 12 21 18 22 15 12 12 9 6 5 12-11132.1172.0166.8 + 78 12 22 12 32 15 27 15 27 12 9 19-11132.7172.3166.6 + 78 12 23 15 9 9 4 4 9 5 2 7-11133.4172.8166.5 + 78 12 24 4 5 12 7 4 4 4 4 6-11135.2173.3166.3 + 78 12 25 12 12 15 15 67 32 7 5 21-11138.0173.9166.2 + 78 12 26 9 9 15 9 7 6 6 6 8-11144.2174.6166.2 + 78 12 27 32 27 7 4 12 15 9 5 14-11148.7175.4166.1 + 78 12 28 6 15 4 2 7 32 39 9 14-11164.1176.4166.1 + 78 12 29 12 12 5 7 9 48 39 27 20-11166.2177.3166.1 + 78 12 30 27 48 22 22 15 12 39 32 27-11181.7178.3166.1 + 78 12 31 39 22 15 18 12 15 12 12 18-11195.1179.1166.2 + 79 1 1 7 15 6 6 9 4 4 27 10-11194.1180.0166.4 + 79 1 2 12 5 6 18 18 22 39 32 19-11200.1180.9166.7 + 79 1 3 27 22 9 18 15 15 27 18 19-11203.5181.8167.0 + 79 1 4 32 48 39 22 39 56 67 56 45-11192.7182.7167.2 + 79 1 5 56 48 18 12 7 18 15 12 23-11194.9183.7167.5 + 79 1 6 22 9 9 18 32 27 15 9 18-11190.9184.6167.7 + 79 1 7 5 4 9 18 39 56 94 27 32-11186.2185.4167.9 + 79 1 8 18 9 12 4 3 5 7 9 8-11200.1186.1168.0 + 79 1 9 15 39 18 9 12 12 9 6 15-11192.6187.0168.1 + 79 1 10 5 5 3 2 3 2 7 4 4-11186.2187.9168.1 + 79 1 11 7 6 3 9 6 2 0 2 4-11179.5188.7168.1 + 79 1 12 5 12 9 7 12 7 7 18 10-11174.5189.4168.1 + 79 1 13 18 0 3 4 4 4 3 3 5-11193.9190.1168.1 + 79 1 14 3 6 9 9 12 15 5 2 8-11200.0190.5168.0 + 79 1 15 4 7 7 22 18 15 27 22 15-11192.1190.7168.0 + 79 1 16 18 22 15 12 12 6 3 6 12-11189.9190.7167.9 + 79 1 17 2 4 2 6 12 9 9 12 7-11175.7190.6167.9 + 79 1 18 15 15 5 12 12 15 9 7 11-11177.6190.2167.9 + 79 1 19 32 48 12 18 12 9 9 12 19-11187.8189.9167.9 + 79 1 20 15 15 15 9 9 12 12 5 12-11197.2189.4167.9 + 79 1 21 15 12 7 15 15 12 7 6 11-11210.3189.0168.0 + 79 1 22 0 3 5 7 15 5 32 48 14-11226.9188.4168.1 + 79 1 23 15 7 9 32 32 27 56 39 27-11225.1188.1168.2 + 79 1 24 67 39 12 18 9 12 12 12 23-11208.5187.8168.4 + 79 1 25 67 67 22 22 27 22 27 18 34-11206.1187.7168.5 + 79 1 26 32 22 15 18 15 32 32 56 28-11192.9187.7168.7 + 79 1 27 22 48 22 12 9 15 22 32 23-11205.4187.8168.8 + 79 1 28 9 15 12 18 15 9 18 7 13-11209.6188.0168.9 + 79 1 29 15 15 12 9 18 9 12 15 13-11209.3188.4169.1 + 79 1 30 18 12 18 15 18 9 15 27 17-11194.1188.9169.2 + 79 1 31 15 12 12 18 15 6 12 12 13-11193.7189.6169.3 + 79 2 1 9 9 7 9 5 3 3 6 6-11185.8190.3169.4 + 79 2 2 12 12 12 12 6 6 9 7 10-11185.6190.9169.5 + 79 2 3 7 6 2 2 5 7 27 18 9-11187.4191.5169.6 + 79 2 4 22 22 15 18 18 32 15 9 19-11187.7192.1169.6 + 79 2 5 22 9 12 15 6 2 2 7 9-11197.4192.5169.7 + 79 2 6 9 27 15 12 15 7 12 27 16-11206.5193.0169.8 + 79 2 7 6 4 3 6 6 7 7 9 6-11203.4193.1169.8 + 79 2 8 12 9 6 12 5 9 9 9 9-11207.2193.4169.9 + 79 2 9 12 9 7 12 9 9 6 7 9-11198.7193.4170.0 + 79 2 10 7 6 6 5 7 5 6 6 6-11198.4193.2170.1 + 79 2 11 27 27 6 9 7 3 7 12 12-11202.2193.1170.1 + 79 2 12 22 27 22 22 27 9 5 3 17-11195.4193.0170.2 + 79 2 13 2 2 4 4 3 2 2 2 3-11195.4192.8170.3 + 79 2 14 2 0 0 4 0 3 3 6 2-11204.2192.9170.4 + 79 2 15 5 7 22 15 15 15 7 3 11-11205.0192.8170.5 + 79 2 16 5 18 7 9 7 3 4 2 7-11209.2192.8170.6 + 79 2 17 2 3 5 5 4 7 5 6 5-11213.1192.8170.8 + 79 2 18 6 32 22 27 12 9 32 32 22-11237.7192.7171.0 + 79 2 19 32 15 12 9 27 9 12 7 15-11237.8192.8171.2 + 79 2 20 6 6 6 3 3 5 7 12 6-11230.1193.0171.5 + 79 2 21 9 56111 48 32 56 94 67 59-11225.1193.3171.9 + 79 2 22 32 22 39 48 48 39 18 18 33-11223.3193.5172.2 + 79 2 23 48 48 39 27 27 15 18 27 31-11196.0193.4172.5 + 79 2 24 18 15 12 18 15 22 18 18 17-11182.8193.1172.8 + 79 2 25 9 27 22 7 12 6 12 18 14-11167.5192.9173.2 + 79 2 26 22 22 12 12 18 32 32 27 22-11166.0192.7173.5 + 79 2 27 67 39 15 18 22 18 9 7 24-11162.7192.6173.8 + 79 2 28 22 7 6 15 22 32 22 12 17-11163.6192.5174.0 + 79 3 1 27 18 9 9 9 9 12 7 13-11168.5192.3174.1 + 79 3 2 27 27 15 22 18 12 15 22 20-11170.7192.0174.3 + 79 3 3 22 5 12 7 12 18 15 12 13-11173.3191.5174.3 + 79 3 4 27 18 18 39 32 15 18 48 27-11181.4190.9174.3 + 79 3 5 15 27 18 15 6 5 12 7 13-11180.1190.2174.4 + 79 3 6 18 18 27 39 39 39 32 27 30-11182.4189.7174.4 + 79 3 7 12 15 5 2 2 4 6 7 7-11183.1189.3174.4 + 79 3 8 7 7 5 12 7 4 5 6 7-11178.9189.0174.4 + 79 3 9 18 6 18 12 15 9 12 18 14-11181.4188.4174.4 + 79 3 10 48 39 32 32 27 32 94132 55-11180.6187.8174.4 + 79 3 11 56 18 18 15 18 12 6 0 18-11181.7187.1174.5 + 79 3 12 4 6 12 6 2 5 9 2 6-11188.7186.7174.6 + 79 3 13 5 15 12 7 5 7 2 3 7-11186.3186.3174.7 + 79 3 14 3 3 2 2 2 2 4 4 3-11189.4186.0174.8 + 79 3 15 3 5 4 4 9 12 12 12 8-11181.3185.7175.0 + 79 3 16 15 12 9 15 15 9 5 7 11-11183.5185.5175.1 + 79 3 17 15 15 67 27 15 12 7 12 21-11177.7185.5175.2 + 79 3 18 9 12 7 7 12 5 2 0 7-11188.6185.4175.3 + 79 3 19 0 2 12 18 18 18 15 6 11-11177.6185.3175.4 + 79 3 20 5 7 7 6 5 5 5 6 6-11184.1185.0175.6 + 79 3 21 0 2 6 4 5 4 9 6 5-11182.2184.8175.7 + 79 3 22 3 3 27 67111111 22 15 45-11181.1184.5175.8 + 79 3 23 22 18 15 6 7 9 9 9 12-11188.5184.3175.9 + 79 3 24 9 12 27 18 9 9 12 22 15-11188.3183.8176.1 + 79 3 25 18 27 22 18 15 18 18 32 21-11188.2183.6176.2 + 79 3 26 32 22 22 18 22 39 27 22 26-11200.2183.3176.4 + 79 3 27 5 15 15 18 18 22 22 27 18-11187.9182.9176.6 + 79 3 28 27 22 27 56 67 39 15 56 39-11188.6182.5176.9 + 79 3 29 80 48 94 56 39 80111 39 68-11191.4182.2177.1 + 79 3 30 48 32 15 5 9 6 7 6 16-11186.6181.8177.3 + 79 3 31 15 18 6 6 15 18 18 56 19-11201.4181.0177.5 + 79 4 1 32 39 15 27 32 18 9 94 33-11202.6180.3177.8 + 79 4 2 94 48 18 22 22 39 22 22 36-11203.4179.7178.0 + 79 4 3 15 9 12 12 12 56111207 54-11194.2179.3178.2 + 79 4 4111 94 56 56 39 7 6 9 47-11183.5178.8178.4 + 79 4 5 32 27 39 80111 94 22 12 52-11179.3178.6178.6 + 79 4 6 22 12 15 5 12 18 9 7 13-11176.3178.5178.7 + 79 4 7 9 15 15 12 6 9 9 18 12-11166.7178.8178.9 + 79 4 8 18 12 9 7 6 9 15 18 12-11169.0178.8179.0 + 79 4 9 27 18 4 3 5 6 6 5 9-11169.6178.8179.2 + 79 4 10 4 12 18 9 15 15 12 7 12-11173.0178.7179.3 + 79 4 11 3 4 5 5 5 15 5 7 6-11170.0178.5179.4 + 79 4 12 7 15 15 18 9 15 15 27 15-11174.5178.4179.5 + 79 4 13 9 9 9 12 18 18 6 9 11-11175.8178.2179.7 + 79 4 14 9 9 7 12 12 22 12 39 15-11170.9177.9179.8 + 79 4 15 27 15 7 12 32 18 12 18 18-11168.1177.6180.0 + 79 4 16 27 39 18 15 9 12 7 4 16-11171.7177.1180.1 + 79 4 17 15 12 15 9 7 6 12 9 11-11168.0176.7180.3 + 79 4 18 7 7 5 9 4 4 5 6 6-11158.7176.4180.4 + 79 4 19 4 7 6 4 4 9 5 5 6-11159.4176.0180.6 + 79 4 20 3 0 3 2 2 3 3 2 2-11156.1175.7180.8 + 79 4 21 4 6 9 12 27 32 27 48 21-11161.5175.6181.0 + 79 4 22 67 67 27 48 32 48 39 32 45-11159.7175.6181.1 + 79 4 23 48 48 18 18 18 18 12 7 23-11162.3175.9181.3 + 79 4 24 18 18 18 9 9 7 6 27 14-11161.9176.2181.4 + 79 4 25179207179132132 48 67 67126-11172.5176.8181.6 + 79 4 26 27 9 4 7 4 12 15 15 12-11182.0177.4181.8 + 79 4 27 18 18 15 12 18 48 39 48 27-11195.1178.1181.9 + 79 4 28 39 27 56 32 22 18 27 27 31-11192.1178.7182.1 + 79 4 29 27 56 56 32 32 56 48 67 47-11185.7179.5182.3 + 79 4 30 56 32 18 32 32 15 15 12 27-11185.2180.3182.4 + 79 5 1 18 32 18 18 5 12 15 27 18-11180.4181.0182.6 + 79 5 2 39 22 12 9 9 12 7 4 14-11179.2181.6182.8 + 79 5 3 9 6 3 5 7 6 7 7 6-11164.3181.9183.0 + 79 5 4 9 4 3 5 4 6 15 9 7-11176.0181.9183.1 + 79 5 5 7 7 5 7 5 12 7 5 7-11169.6181.9183.2 + 79 5 6 5 4 6 5 7 7 4 7 6-11171.1181.6183.3 + 79 5 7 7 5 5 15 22 12 15 7 11-11178.0181.4183.5 + 79 5 8 4 9 15 6 7 7 5 7 8-11182.4181.0183.7 + 79 5 9 4 9 12 18 18 15 27 9 14-11181.3180.5184.1 + 79 5 10 6 4 4 5 7 15 7 6 7-11174.7180.0184.4 + 79 5 11 12 9 32 15 27 27 15 18 19-11178.6179.4184.9 + 79 5 12 9 9 6 12 15 9 7 7 9-11184.2178.7185.4 + 79 5 13 7 7 9 6 9 12 7 5 8-11186.6178.0185.8 + 79 5 14 7 9 7 9 22 18 9 7 11-11182.0177.3186.2 + 79 5 15 9 9 12 9 18 15 9 9 11-11181.9176.8186.6 + 79 5 16 7 9 7 3 2 3 7 5 5-11176.4176.4186.9 + 79 5 17 6 4 5 3 3 2 3 0 3-11187.7176.1187.2 + 79 5 18 6 3 3 5 9 9 32 22 11-11171.3176.0187.5 + 79 5 19 39 27 12 22 27 18 22 22 24-11161.5175.9187.8 + 79 5 20 12 27 12 9 9 9 9 15 13-11155.6175.8188.1 + 79 5 21 3 3 12 7 22 12 27 18 13-11155.7175.9188.3 + 79 5 22 32 22 22 39 18 48 56 48 36-11156.5176.1188.5 + 79 5 23 18 15 4 4 3 3 22 18 11-11156.0176.4188.7 + 79 5 24 22 18 22 27 27 18 32 48 27-11159.2176.9188.8 + 79 5 25 32 56 27 18 32 39 48 22 34-11153.3177.4189.0 + 79 5 26 39 32 18 18 27 39 15 15 25-11149.1177.9189.1 + 79 5 27 15 22 22 18 18 12 15 12 17-11149.4178.4189.2 + 79 5 28 15 7 6 2 7 15 27 9 11-11149.2178.9189.3 + 79 5 29 7 4 5 6 6 9 67132 30-11150.2179.5189.3 + 79 5 30 18 22 15 6 6 6 4 3 10-11158.4179.9189.3 + 79 5 31 2 4 2 9 6 7 12 3 6-11174.9180.3189.3 + 79 6 1 3 4 4 4 3 5 4 12 5-11189.5180.5189.3 + 79 6 2 6 6 3 7 5 4 3 12 6-11206.8180.6189.3 + 79 6 3 3 2 2 4 5 5 5 6 4-11216.1180.6189.3 + 79 6 4 5 6 6 7 7 5 7 3 6-11228.8180.5189.4 + 79 6 5 4 4 6 4 5 3 3 3 4-11230.2180.3189.5 + 79 6 6 4 5 3 12 22 15132 80 34-11238.1179.8189.7 + 79 6 7 22 48 39 6 15 32 32 18 27-11238.1179.2189.8 + 79 6 8 15 12 9 12 12 15 22 12 14-11242.7178.5189.9 + 79 6 9 9 12 9 18 18 22 22 12 15-11247.4178.0190.0 + 79 6 10 9 12 15 15 15 18 18 9 14-11239.9177.5190.2 + 79 6 11 9 15 9 7 15 12 6 7 10-11229.6177.1190.2 + 79 6 12 7 9 6 3 4 3 15 7 7-11208.3176.8190.3 + 79 6 13 5 4 2 5 12 15 9 12 8-11193.7176.8190.3 + 79 6 14 9 9 6 6 6 9 6 5 7-11185.7176.7190.4 + 79 6 15 4 9 12 5 12 9 12 15 10-11176.0176.6190.5 + 79 6 16 12 12 18 9 27 12 22 15 16-11167.5176.6190.6 + 79 6 17 9 18 9 7 22 27 15 7 14-11158.1176.3190.7 + 79 6 18 5 9 6 5 4 6 6 5 6-11152.6176.0190.8 + 79 6 19 5 12 7 5 5 5 5 6 6-11146.2175.7190.8 + 79 6 20 6 4 7 4 9 9 12 12 8-11151.5175.5190.9 + 79 6 21 6 9 15 9 15 18 27 22 15-11148.9175.2191.0 + 79 6 22 27 7 18 12 22 32 56 18 24-11141.1174.8191.2 + 79 6 23 15 22 27 22 12 12 12 27 19-11139.0174.3191.3 + 79 6 24 12 18 15 7 6 5 7 7 10-11141.2173.8191.4 + 79 6 25 9 12 9 7 6 5 15 6 9-11147.8173.3191.4 + 79 6 26 2 4 6 7 48 32 32 27 20-11153.7172.9191.5 + 79 6 27 15 12 9 12 12 12 5 2 10-11158.5172.4191.6 + 79 6 28 2 4 7 3 3 3 6 5 4-11159.1172.2191.6 + 79 6 29 5 2 2 5 7 7 18 9 7-11166.9172.0191.6 + 79 6 30 7 6 6 6 6 22 9 15 10-11176.7172.1191.6 + 79 7 1 7 6 12 6 5 9 6 5 7-11186.3172.0191.6 + 79 7 2 6 3 2 3 4 4 5 4 4-11200.9172.0191.6 + 79 7 3 3 3 9 32 22 15 15 15 14-11213.4171.9191.6 + 79 7 4 15 18 15 6 5 3 4 5 9-11218.1171.8191.6 + 79 7 5 3 6 9 9 9 15 15 9 9-11204.5171.9191.6 + 79 7 6 4 7 12 27 12 9 80 27 22-11211.3172.1191.6 + 79 7 7 27 27 15 9 56 56 18 9 27-11207.2172.3191.7 + 79 7 8 7 9 9 7 9 15 9 9 9-11206.7172.5191.8 + 79 7 9 4 6 5 4 5 15 5 5 6-11197.9172.9191.9 + 79 7 10 4 6 3 3 7 5 9 7 6-11185.9173.2192.0 + 79 7 11 4 5 5 5 3 3 4 4 4-11178.6173.6192.1 + 79 7 12 3 4 2 4 12 27 27 9 11-11170.1173.8192.3 + 79 7 13 12 12 9 9 22 39 15 6 16-11161.4174.0192.5 + 79 7 14 7 5 4 9 12 6 39 32 14-11154.7174.0192.7 + 79 7 15 22 22 15 12 12 12 15 9 15-11151.1174.0192.7 + 79 7 16 15 9 12 5 7 9 15 18 11-11143.6174.0192.8 + 79 7 17 18 15 6 12 15 9 9 32 15-11142.7173.8192.8 + 79 7 18 18 15 18 12 12 9 12 22 15-11141.2173.5192.8 + 79 7 19 22 18 9 4 9 6 6 15 11-11143.6173.1192.8 + 79 7 20 4 9 7 27 39 15 18 27 18-11146.6172.5192.8 + 79 7 21 9 9 6 12 7 7 12 12 9-11143.7171.9192.7 + 79 7 22 6 6 6 4 4 6 9 4 6-11155.7171.3192.6 + 79 7 23 3 9 5 4 5 5 7 7 6-11163.1170.9192.5 + 79 7 24 9 6 4 3 6 5 4 6 5-11168.6170.7192.3 + 79 7 25 5 5 3 2 2 3 3 3 3-11164.5170.6192.1 + 79 7 26 3 4 6 5 5 6 39 67 17-11165.6170.6192.0 + 79 7 27 56 32 6 15 9 39 15 15 23-11159.1170.7191.9 + 79 7 28 32 15 2 3 3 6 7 15 10-11158.1171.0191.9 + 79 7 29 12 12 18 15 27 27 48 32 24-11156.7171.4191.9 + 79 7 30 15 7 6 15 12 9 7 4 9-11160.3171.9191.8 + 79 7 31 2 5 3 3 2 2 2 2 3-11152.4172.3191.8 + 79 8 1 2 2 3 22 39 22 15 22 16-11149.1172.8191.8 + 79 8 2 15 15 18 15 5 9 7 3 11-11143.9173.3191.8 + 79 8 3 7 15 15 18 7 6 4 9 10-11145.1173.8191.9 + 79 8 4 9 18 18 12 18 12 27 12 16-11141.7174.4192.0 + 79 8 5 4 12 7 5 3 9 12 9 8-11141.6174.9192.1 + 79 8 6 15 18 27 27 27 18 7 7 18-11149.5175.4192.2 + 79 8 7 7 7 15 7 7 9 18 12 10-11151.1175.9192.3 + 79 8 8 7 7 6 6 7 7 12 7 7-11152.7176.4192.3 + 79 8 9 9 7 6 7 7 9 5 2 7-11157.3177.0192.4 + 79 8 10 3 5 4 6 7 7 15 12 7-11152.1177.5192.4 + 79 8 11 9 6 5 7 9 6 18 18 10-11154.4177.9192.4 + 79 8 12 15 7 9 27 6 6 22 56 19-11144.8178.1192.5 + 79 8 13 15 4 18111154111132 67 77-11155.8178.1192.5 + 79 8 14 18 6 5 4 6 7 7 6 7-11158.2178.2192.5 + 79 8 15 3 5 4 3 4 5 5 7 5-11167.6178.5192.6 + 79 8 16 5 5 9 5 6 3 3 5 5-11164.8178.8192.6 + 79 8 17 7 5 7 3 3 15 18 4 8-11165.8179.1192.6 + 79 8 18 5 3 4 4 9 9 9 48 11-11180.0179.4192.6 + 79 8 19 67 48 32 48 32 22 12 22 35-11186.4179.8192.5 + 79 8 20 18 12 22 12 18132 94 32 43-11204.2180.3192.3 + 79 8 21 48 27 22 18 18 12 22 9 22-11207.6180.9192.2 + 79 8 22 15 12 12 9 15 15 12 7 12-11223.2181.5192.0 + 79 8 23 2 4 6 5 7 4 6 4 5-11218.6182.1191.8 + 79 8 24 3 3 5 6 9 39 27 12 13-11225.2182.7191.7 + 79 8 25 6 6 15 32 22 27 39 32 22-11229.3183.3191.6 + 79 8 26 22 15 18 12 15 9 22 5 15-11223.3183.9191.5 + 79 8 27 6 15 18 15 7 18 12 5 12-11212.8184.5191.5 + 79 8 28 15 12 9 15 9 7 3 12 10-11214.2185.2191.5 + 79 8 29 15 39 56 56 80179111 80 77-11197.6185.9191.6 + 79 8 30 39 27 18 12 6 6 6 5 15-11187.8186.7191.6 + 79 8 31 4 5 7 15 27 12 12 15 12-11179.9187.5191.6 + 79 9 1 7 4 3 5 6 9 27 15 10-11175.8188.2191.6 + 79 9 2 9 4 5 5 4 6 4 6 5-11180.1188.9191.6 + 79 9 3 18 9 9 9 12 5 9 4 9-11180.8189.7191.6 + 79 9 4 4 9 15 12 9 12 15 7 10-11175.3190.6191.6 + 79 9 5 22 18 12 15 18 18 22 12 17-11177.1191.4191.5 + 79 9 6 22 32 18 9 15 12 3 6 15-11180.4192.3191.5 + 79 9 7 7 15 5 3 3 3 5 3 6-11186.3193.2191.5 + 79 9 8 5 4 12 7 5 4 7 6 6-11183.6194.2191.4 + 79 9 9 7 5 6 2 4 4 5 6 5-11187.4195.1191.4 + 79 9 10 9 12 5 7 6 12 9 9 9-11184.6196.1191.3 + 79 9 11 9 6 12 27 15 22 9 9 14-11181.5197.1191.2 + 79 9 12 12 4 3 3 5 7 9 22 8-11181.7198.1191.0 + 79 9 13 15 15 3 4 9 5 5 9 8-11186.1199.0190.9 + 79 9 14 5 5 7 5 2 6 32 18 10-11192.6200.0190.8 + 79 9 15 12 7 4 9 12 7 7 6 8-11193.8200.9190.7 + 79 9 16 18 15 9 22 18 9 7 18 15-11196.3201.6190.6 + 79 9 17 12 9 6 9 7 12 6 27 11-11202.7202.3190.5 + 79 9 18 67 39132 94 67 80 27 9 64-11215.7203.0190.4 + 79 9 19 6 5 4 4 5 4 12 12 7-11218.1203.7190.3 + 79 9 20 18 6 7 12 48 48 9 27 22-11213.9204.5190.3 + 79 9 21 48 56 22 9 12 7 18 12 23-11218.4205.2190.2 + 79 9 22 12 9 3 4 9 6 5 4 7-11216.5206.1190.1 + 79 9 23 6 9 6 3 9 12 5 4 7-11224.2206.7190.1 + 79 9 24 3 18 9 18 27 12 9 27 15-11230.7207.3190.1 + 79 9 25 27 27 18 5 7 27 22 18 19-11235.5207.9190.0 + 79 9 26 22 22 18 12 18 18 27 18 19-11229.9208.8190.0 + 79 9 27 18 39 9 9 12 12 12 7 15-11228.7210.1190.0 + 79 9 28 9 27 27 9 7 12 18 22 16-11233.8211.4190.0 + 79 9 29 22 22 12 6 22 15 9 12 15-11225.0213.0190.1 + 79 9 30 22 32 22 12 12 18 7 15 18-11231.9214.3190.1 + 79 10 1 22 12 5 9 15 12 3 4 10-11212.8216.3190.0 + 79 10 2 2 2 2 6 7 9 12 15 7-11211.5217.6190.0 + 79 10 3 27 22 9 4 7 18 12 5 13-11204.7218.5189.9 + 79 10 4 15 6 18 27 2 3 2 0 9-11197.7219.1189.9 + 79 10 5 0 2 3 3 9 7 12 9 6-11192.8219.4189.9 + 79 10 6 18 22 22 48 67 80 15 12 36-11195.5219.6190.0 + 79 10 7 22 32 27 18 48 32 39 39 32-11197.0219.8190.2 + 79 10 8 67 32 32 39 27 39 22 39 37-11200.3220.1190.4 + 79 10 9 32 22 32 39 15 15 18 12 23-11209.5220.5190.6 + 79 10 10 27 27 15 15 18 7 22 7 17-11208.7220.8190.8 + 79 10 11 3 4 12 12 18 15 7 6 10-11211.8221.1191.0 + 79 10 12 3 5 4 7 7 7 12 22 8-11216.4221.3191.2 + 79 10 13 15 12 15 12 6 9 15 15 12-11239.1221.3191.4 + 79 10 14 9 3 12 7 4 7 4 3 6-11236.4221.4191.6 + 79 10 15 2 2 4 7 15 15 9 7 8-11230.7221.4191.7 + 79 10 16 15 12 6 7 9 4 5 4 8-11232.3221.2191.8 + 79 10 17 4 6 4 4 5 3 3 6 4-11226.0221.0191.9 + 79 10 18 4 4 4 0 2 0 3 5 3-11236.8220.6192.0 + 79 10 19 4 2 3 5 9 6 4 6 5-11237.3220.2192.1 + 79 10 20 12 2 7 7 4 9 5 6 7-11236.7219.8192.3 + 79 10 21 6 12 5 9 7 12 9 22 10-11230.1219.4192.4 + 79 10 22 18 18 22 12 7 18 7 6 14-11221.9219.1192.5 + 79 10 23 5 7 5 7 6 6 7 7 6-11214.9219.0192.6 + 79 10 24 7 15 15 18 15 15 7 4 12-11225.6219.1192.7 + 79 10 25 7 15 32 9 12 9 15 12 14-11215.2219.5192.7 + 79 10 26 6 18 5 6 7 6 6 9 8-11202.9219.8192.8 + 79 10 27 2 6 9 6 3 6 7 6 6-11211.2220.2192.7 + 79 10 28 6 12 6 12 12 5 4 18 9-11210.0220.4192.8 + 79 10 29 22 18 5 6 5 9 12 9 11-11214.8220.6192.8 + 79 10 30 12 7 5 5 4 2 2 2 5-11213.7220.8192.9 + 79 10 31 3 0 3 7 5 9 7 9 5-11214.9221.0192.9 + 79 11 1 15 15 9 15 15 18 22 15 16-11211.6221.1193.0 + 79 11 2 18 22 12 12 15 9 6 4 12-11209.5221.3193.2 + 79 11 3 3 2 4 12 9 18 18 18 11-11207.5221.4193.3 + 79 11 4 18 15 9 12 7 6 7 4 10-11214.2221.5193.4 + 79 11 5 2 0 2 3 4 3 4 2 3-11235.5221.5193.6 + 79 11 6 3 4 3 5 4 2 2 2 3-11273.2221.3193.7 + 79 11 7 4 7 6 9 9 22 27 9 12-11286.9221.0193.7 + 79 11 8 12 7 39 22 15 9 6 6 15-11310.1220.4193.8 + 79 11 9 9 9 12 5 27 39 32 18 19-11314.4219.9193.8 + 79 11 10 5 7 6 5 5 5 6 12 6-11367.0219.2193.9 + 79 11 11 15 18 6 7 7 15 7 6 10-11325.7218.8193.9 + 79 11 12 4 5 9 9 9 9 7 6 7-11294.4218.3193.9 + 79 11 13 27 39 22 32 27 48 56 32 35-11272.7217.9193.9 + 79 11 14 48 32 12 4 3 4 2 0 13-11256.4217.4194.0 + 79 11 15 0 4 3 5 5 3 2 4 3-11239.7217.1194.0 + 79 11 16 9 18 22 7 7 12 12 7 12-11230.6216.6194.1 + 79 11 17 18 9 12 7 4 3 7 4 8-11231.8216.1194.2 + 79 11 18 12 3 4 5 4 4 2 2 5-11231.9215.6194.3 + 79 11 19 2 3 5 7 7 7 7 15 7-11214.8215.2194.5 + 79 11 20 7 5 9 12 15 18 6 5 10-11205.9214.9194.8 + 79 11 21 12 7 7 4 4 5 6 2 6-11189.8214.6195.0 + 79 11 22 0 0 5 5 3 3 2 0 2-11182.5214.3195.4 + 79 11 23 2 0 2 6 4 4 6 7 4-11183.2213.8195.7 + 79 11 24 15 22 27 27 22 22 27 27 24-11175.2213.5196.1 + 79 11 25 32 48 9 7 6 4 5 6 15-11165.8213.3196.5 + 79 11 26 4 0 0 2 5 5 9 6 4-11161.6213.0196.9 + 79 11 27 7 4 9 3 4 3 3 2 4-11155.7212.9197.2 + 79 11 28 2 0 4 0 2 2 3 2 2-11150.1212.8197.6 + 79 11 29 2 0 3 3 3 9 9 4 4-11154.0212.7197.8 + 79 11 30 4 6 48 18 18 12 7 7 15-11152.2212.7198.0 + 79 12 1 6 4 12 12 9 12 9 7 9-11161.9213.0198.0 + 79 12 2 18 15 12 15 9 6 6 5 11-11172.0213.4198.0 + 79 12 3 9 18 18 9 6 4 4 2 9-11195.1213.8197.9 + 79 12 4 7 18 27 15 18 27 12 7 16-11221.0213.8197.7 + 79 12 5 7 5 9 7 9 9 4 6 7-11223.4213.6197.6 + 79 12 6 9 7 9 6 3 2 4 4 6-11223.4213.6197.4 + 79 12 7 5 4 3 4 3 3 6 5 4-11222.6213.3197.3 + 79 12 8 5 12 7 7 15 9 12 9 10-11228.9213.0197.0 + 79 12 9 7 7 7 9 7 5 6 6 7-11232.4212.6196.8 + 79 12 10 4 5 4 4 5 12 6 3 5-11230.3212.0196.7 + 79 12 11 9 5 3 3 3 3 9 5 5-11230.6211.2196.5 + 79 12 12 3 3 2 4 4 5 6 6 4-11232.3210.5196.4 + 79 12 13 2 3 5 3 5 3 4 4 4-11231.7209.9196.4 + 79 12 14 2 6 4 4 4 5 6 5 5-11238.3209.4196.4 + 79 12 15 4 15 6 12 7 9 12 6 9-11231.8208.8196.5 + 79 12 16 12 15 9 6 7 7 7 18 10-11216.3208.1196.5 + 79 12 17 22 9 15 7 12 15 9 12 13-11202.2206.9196.6 + 79 12 18 12 4 5 9 7 6 6 6 7-11187.4205.7196.7 + 79 12 19 6 7 6 5 4 5 6 9 6-11183.0204.3196.9 + 79 12 20 0 5 3 4 7 6 5 4 4-11180.8202.8197.1 + 79 12 21 2 0 2 3 3 5 9 7 4-11176.7200.7197.3 + 79 12 22 9 15 9 27 15 18 22 5 15-11175.3199.4197.6 + 79 12 23 3 2 3 3 0 4 4 7 3-11168.6198.3197.9 + 79 12 24 9 6 5 9 4 12 4 5 7-11160.2197.7198.2 + 79 12 25 0 0 0 0 5 2 4 5 2-11162.0197.3198.4 + 79 12 26 7 5 4 6 7 18 22 12 10-11159.7197.2198.7 + 79 12 27 5 15 15 15 15 18 6 4 12-11153.6197.0198.8 + 79 12 28 4 12 6 32 27 18 6 27 17-11163.1196.9199.0 + 79 12 29 27 48 27 22 27 22 48 32 32-11174.0196.8199.1 + 79 12 30 39 32 18 18 12 15 18 12 21-11185.5196.9199.1 + 79 12 31 9 9 5 4 5 6 9 22 9-11188.9196.9199.1 + 80 1 1 9 9 9 18 18 32 48 48 24-11189.1197.1199.0 + 80 1 2 32 15 7 9 18 7 4 7 12-11199.9197.5198.8 + 80 1 3 12 32 6 18 22 12 18 22 18-11211.9197.8198.6 + 80 1 4 15 18 15 15 9 27 18 15 17-11212.4198.4198.5 + 80 1 5 12 7 7 12 15 12 15 15 12-11207.7198.8198.3 + 80 1 6 12 18 7 5 7 7 5 5 8-11222.1199.3198.2 + 80 1 7 2 0 3 4 4 5 9 12 5-11228.0199.8198.0 + 80 1 8 12 9 7 9 3 2 4 3 6-11228.1200.2197.9 + 80 1 9 5 3 3 3 3 3 2 2 3-11240.9200.6197.8 + 80 1 10 2 2 0 3 5 4 3 5 3-11253.0200.9197.8 + 80 1 11 3 6 15 12 12 12 15 12 11-11255.7201.0197.8 + 80 1 12 3 4 5 6 5 4 4 4 4-11245.1201.0197.8 + 80 1 13 0 12 18 32 32 27 39 22 23-11221.6200.7197.9 + 80 1 14 22 15 7 7 6 7 5 6 9-11203.8199.9198.1 + 80 1 15 3 2 4 6 7 9 9 5 6-11200.0199.1198.3 + 80 1 16 32 15 9 4 5 2 2 2 9-11188.6198.4198.6 + 80 1 17 4 7 32 15 18 15 7 5 13-11186.9197.7198.9 + 80 1 18 5 3 4 3 5 2 5 6 4-11177.5197.0199.1 + 80 1 19 6 0 2 4 3 6 6 4 4-11164.4196.3199.4 + 80 1 20 12 9 3 3 4 3 7 9 6-11156.5195.6199.8 + 80 1 21 12 4 4 4 7 4 3 6 6-11153.4194.9200.0 + 80 1 22 2 0 4 5 4 6 15 6 5-11158.2194.2200.3 + 80 1 23 6 4 7 6 5 3 4 2 5-11166.7193.4200.4 + 80 1 24 2 0 3 6 6 9 9 4 5-11171.1192.6200.6 + 80 1 25 2 0 3 9 9 7 12 12 7-11171.3191.9200.7 + 80 1 26 5 9 4 4 6 3 7 9 6-11178.8191.3200.8 + 80 1 27 9 15 12 9 32 32 39 48 25-11190.6190.9200.9 + 80 1 28 15 22 9 9 22 48 56 32 27-11194.0190.6200.9 + 80 1 29 56 32 6 12 22 32 22 22 26-11197.0190.3200.9 + 80 1 30 18 9 15 9 7 7 5 6 10-11197.9190.0200.9 + 80 1 31 6 2 3 6 5 4 6 9 5-11213.9189.6200.9 + 80 2 1 7 5 6 9 6 6 22 18 10-11212.6189.2200.8 + 80 2 2 9 18 15 9 9 5 3 3 9-11217.9188.9200.8 + 80 2 3 3 4 4 3 2 3 2 4 3-11225.7188.7200.8 + 80 2 4 3 4 9 7 3 2 2 2 4-11231.7188.4200.7 + 80 2 5 0 0 3 5 4 4 4 3 3-11218.9188.1200.7 + 80 2 6 0 22 32 39 48 56 56 9 33-11221.7188.0200.7 + 80 2 7 7 7 18 6 18 7 18 18 12-11223.9187.8200.6 + 80 2 8 18 22 18 15 22 18 6 15 17-11218.7187.6200.6 + 80 2 9 6 15 15 9 12 12 15 7 11-11208.2187.3200.6 + 80 2 10 4 6 5 3 2 3 3 3 4-11204.6187.0200.7 + 80 2 11 2 9 5 4 4 4 4 2 4-11213.7186.7200.8 + 80 2 12 3 0 2 4 5 2 2 4 3-11213.7186.3200.9 + 80 2 13 2 0 0 3 3 3 4 4 2-11217.9185.9201.0 + 80 2 14 5 18 15 39 18 27 12 6 18-11201.0185.5201.0 + 80 2 15 9 12 7 7 12 15 67132 33-11201.2185.2201.1 + 80 2 16 80 67 67 32 32 15 15 9 40-11200.2184.9201.2 + 80 2 17 7 6 6 3 7 5 5 5 6-11182.8184.6201.2 + 80 2 18 15 6 12 7 7 7 12 15 10-11180.0184.2201.3 + 80 2 19 18 32 12 3 4 2 2 4 10-11177.3183.7201.3 + 80 2 20 7 4 6 7 5 7 4 5 6-11174.7182.8201.2 + 80 2 21 6 3 4 4 4 4 4 6 4-11169.6181.9201.2 + 80 2 22 4 4 2 5 3 6 3 6 4-11167.3181.1201.1 + 80 2 23 4 2 5 7 12 18 18 9 9-11160.1180.6200.9 + 80 2 24 9 9 5 7 9 9 2 2 7-11157.2180.3200.7 + 80 2 25 4 2 5 9 12 15 27 32 13-11165.7180.5200.5 + 80 2 26 22 15 5 15 18 15 12 7 14-11169.0181.1200.4 + 80 2 27 5 15 18 18 18 12 15 15 15-11173.2181.7200.2 + 80 2 28 12 12 12 12 6 4 6 15 10-11171.7182.5200.2 + 80 2 29 9 7 4 7 9 7 5 5 7-11176.7183.5200.1 + 80 3 1 5 5 3 2 4 4 2 2 3-11175.7184.6200.2 + 80 3 2 2 3 2 2 3 3 4 2 3-11172.9185.8200.2 + 80 3 3 3 2 2 3 4 12 6 5 5-11170.2186.9200.3 + 80 3 4 3 2 5 9 5 4 4 7 5-11172.7187.7200.4 + 80 3 5 9 12 7 12 4 3 3 3 7-11171.8188.4200.6 + 80 3 6 7 7 9 15 9 9 7 6 9-11169.4188.8200.7 + 80 3 7 9 9 4 6 5 6 7 7 7-11166.3189.0200.8 + 80 3 8 5 9 9 7 5 6 5 5 6-11164.9189.0200.9 + 80 3 9 7 6 15 5 7 9 4 5 7-11161.3189.1201.0 + 80 3 10 2 5 3 7 7 4 3 3 4-11153.9189.3201.0 + 80 3 11 7 0 2 12 6 4 2 3 5-11147.8189.5201.0 + 80 3 12 0 0 0 0 0 3 5 2 1-11138.6189.4201.0 + 80 3 13 4 5 15 4 6 3 7 9 7-11144.6189.3201.1 + 80 3 14 7 9 4 3 5 6 3 2 5-11141.2188.9201.0 + 80 3 15 0 0 2 2 2 2 0 5 2-11139.3188.4201.0 + 80 3 16 6 4 3 6 4 4 3 6 5-11137.3187.8200.9 + 80 3 17 5 5 5 9 6 4 4 3 5-11142.9187.4200.8 + 80 3 18 5 4 3 3 4 4 3 3 4-11147.4187.2200.7 + 80 3 19 2 3 18 15 15 15 6 4 10-11162.3186.9200.5 + 80 3 20 4 4 4 5 3 5 6 5 5-11162.1186.7200.3 + 80 3 21 9 18 22 12 15 12 32 22 18-11162.4186.6200.2 + 80 3 22 12 18 22 18 32 15 6 9 17-11162.5186.8200.0 + 80 3 23 9 15 4 5 3 4 4 0 6-11172.4186.9199.9 + 80 3 24 2 3 6 6 5 6 2 4 4-11172.4187.0199.8 + 80 3 25 3 0 2 4 5 6 7 22 6-11182.5187.1199.6 + 80 3 26 39 67 27 27 32 9 15 22 30-11185.2187.3199.5 + 80 3 27 15 5 6 6 7 5 4 6 7-11195.3187.4199.4 + 80 3 28 6 12 9 5 6 4 4 9 7-11203.5187.4199.3 + 80 3 29 9 9 12 4 4 7 7 9 8-11199.9187.6199.1 + 80 3 30 15 22 18 6 7 4 3 15 11-11194.3187.8199.0 + 80 3 31 22 27 27 27 22 15 7 18 21-11187.2188.0198.9 + 80 4 1 7 3 3 2 5 5 4 0 4-11181.9188.2198.8 + 80 4 2 3 3 2 3 3 3 2 6 3-11181.1188.4198.7 + 80 4 3 5 12 6 9 6 9 7 3 7-11176.1188.7198.6 + 80 4 4 2 5 15 15 12 18 15 4 11-11184.3189.3198.5 + 80 4 5 4 6 4 4 9 18 7 3 7-11209.7189.8198.5 + 80 4 6 2 9 5 39 48 48 56 18 28-11238.4190.2198.4 + 80 4 7 18 12 18 6 12 12 39 27 18-11236.1190.7198.4 + 80 4 8 18 22 12 27 27 12 6 12 17-11241.7191.2198.4 + 80 4 9 15 32 22 39 27 18 6 5 21-11244.7192.0198.4 + 80 4 10 27 48 27 39 12 9 7 9 22-11249.0192.8198.4 + 80 4 11 15 12 32 15 15 32 67 48 30-11249.9193.8198.5 + 80 4 12 48 22 15 18 18 32 18 56 28-11245.6195.1198.5 + 80 4 13 39 18 22 15 12 18 12 6 18-11232.8196.5198.6 + 80 4 14 4 7 6 2 5 12 15 27 10-11226.3198.0198.6 + 80 4 15 39 22 18 9 9 18 22 27 21-11206.1199.5198.7 + 80 4 16 15 15 12 5 9 15 7 15 12-11192.4200.9198.7 + 80 4 17 22 27 7 3 7 9 9 7 11-11191.9202.3198.7 + 80 4 18 4 7 3 4 4 3 3 6 4-11201.4203.8198.6 + 80 4 19 4 2 4 4 5 6 6 6 5-11214.5204.9198.5 + 80 4 20 9 7 3 4 5 4 7 6 6-11215.8205.7198.4 + 80 4 21 6 6 4 4 3 4 5 5 5-11207.7206.4198.3 + 80 4 22 18 12 4 5 12 7 6 6 9-11199.2207.0198.2 + 80 4 23 12 9 3 4 6 6 3 7 6-11186.2207.5198.2 + 80 4 24 12 12 4 4 4 7 4 7 7-11186.3208.0198.1 + 80 4 25 12 9 7 12 18 6 3 4 9-11185.9208.5198.1 + 80 4 26 3 7 5 2 7 5 4 5 5-11186.6209.0198.0 + 80 4 27 2 5 2 4 6 5 3 12 5-11200.6209.4197.9 + 80 4 28 6 4 2 5 6 7 3 3 5-11203.7209.6197.8 + 80 4 29 5 6 6 5 7 6 4 5 6-11203.5209.7197.7 + 80 4 30 6 9 4 12 15 9 6 6 8-11200.9209.9197.7 + 80 5 1 15 7 3 5 12 12 9 4 8-11218.5210.0197.6 + 80 5 2 5 4 5 4 4 5 4 3 4-11223.0210.3197.6 + 80 5 3 2 3 4 4 3 3 2 4 3-11221.2210.5197.7 + 80 5 4 2 6 3 5 7 6 3 2 4-11223.1210.7197.7 + 80 5 5 2 3 6 6 9 9 7 12 7-11221.9210.8197.8 + 80 5 6 12 12 12 12 15 9 12 12 12-11203.5210.8197.9 + 80 5 7 2 3 7 6 6 12 27 7 9-11203.4210.7197.8 + 80 5 8 15 15 6 3 5 3 4 6 7-11200.2210.7197.8 + 80 5 9 15 15 9 18 15 9 39 27 18-11193.6210.8197.7 + 80 5 10 18 5 5 6 5 5 9 9 8-11191.1211.1197.6 + 80 5 11 22 7 22 27 32 32 80 80 38-11191.4211.6197.3 + 80 5 12 39 48 22 18 12 12 15 15 23-11189.5212.2197.1 + 80 5 13 9 12 12 6 3 7 15 48 14-11192.9213.0197.0 + 80 5 14 32 22 9 7 9 15 32 9 17-11202.9213.9196.9 + 80 5 15 5 7 12 4 5 3 3 6 6-11199.8214.7196.8 + 80 5 16 4 5 5 4 2 2 2 0 3-11202.9215.1196.7 + 80 5 17 0 2 2 3 3 3 4 6 3-11207.5214.9196.7 + 80 5 18 0 2 3 6 4 7 5 3 4-11214.3214.6196.5 + 80 5 19 2 3 6 7 15 12 9 6 8-11234.2214.1196.4 + 80 5 20 7 5 6 4 5 4 4 2 5-11244.7213.4196.3 + 80 5 21 2 0 4 4 4 4 5 7 4-11252.6212.6196.2 + 80 5 22 4 6 7 6 9 9 5 4 6-11276.6211.5196.1 + 80 5 23 9 7 4 6 32 15 7 6 11-11289.5210.4196.1 + 80 5 24 7 4 4 9 12 15 27 22 13-11290.2209.3196.0 + 80 5 25 15 15 48 94 67 22 5 9 34-11292.8208.3196.0 + 80 5 26 12 4 6 12 4 3 5 12 7-11284.2207.7196.0 + 80 5 27 12 4 6 12 4 3 5 12 7-11281.2207.1196.1 + 80 5 28 5 5 3 6 5 5 3 2 4-11280.8206.7196.2 + 80 5 29 2 3 4 3 4 5 18 6 6-11252.3206.1196.3 + 80 5 30 12 7 15 7 9 12 12 6 10-11222.7205.3196.4 + 80 5 31 12 12 9 9 12 22 9 39 16-11200.6204.7196.5 + 80 6 1 15 18 22 39 18 22 18 22 22-11191.2204.2196.7 + 80 6 2 18 5 4 7 5 4 4 7 7-11184.0204.0196.8 + 80 6 3 12 4 6 9 18 7 12 7 9-11178.8204.1196.9 + 80 6 4 4 3 7 6 5 7 3 6 5-11181.5204.4196.8 + 80 6 5 3 2 5 6 3 3 3 4 4-11178.4204.8196.7 + 80 6 6 4 4 4 9 18 32 18 39 16-11172.4205.4196.6 + 80 6 7 22 18 15 22 32 32 39 39 27-11165.7206.0196.5 + 80 6 8 56 27 22 18 32 12 12 6 23-11172.4206.6196.3 + 80 6 9 7 5 5 18 12 9 15 39 14-11174.3207.2196.2 + 80 6 10 32 22 27 22 32 48 48 32 33-11176.1207.9196.0 + 80 6 11 18 18 67 48 94 67 80 80 59-11182.9208.4195.9 + 80 6 12 39 22 22 27 22 27 39 56 32-11189.3208.7195.8 + 80 6 13 32 27 27 18 15 27 39 32 27-11186.5208.9195.8 + 80 6 14 18 5 6 5 12 12 9 12 10-11188.8208.8195.8 + 80 6 15 4 6 3 3 5 6 6 4 5-11186.4208.7195.9 + 80 6 16 4 5 5 6 15 22 9 7 9-11193.3208.6196.0 + 80 6 17 3 5 2 3 2 2 2 4 3-11197.4208.4196.2 + 80 6 18 2 3 3 3 3 4 3 5 3-11207.6208.0196.4 + 80 6 19 2 6 6 4 6 12 22 7 8-11219.8207.5196.6 + 80 6 20 3 5 5 5 7 9 7 4 6-11227.9207.0196.8 + 80 6 21 5 5 4 7 6 12 5 5 6-11228.0206.3196.9 + 80 6 22 7 5 4 4 6 7 7 9 6-11250.0205.6197.1 + 80 6 23 7 5 4 4 9 6 6 5 6-11251.5204.8197.2 + 80 6 24 22 12 15 12 12 7 9 15 13-11245.9203.9197.4 + 80 6 25 12 9 7 4 6 5 12 12 8-11238.8203.1197.6 + 80 6 26 18 6 6 7 27 18 32 9 15-11226.3202.2197.8 + 80 6 27 5 2 3 2 3 2 2 3 3-11212.6201.4197.9 + 80 6 28 5 3 3 3 4 3 2 3 3-11199.7200.5198.1 + 80 6 29 4 4 4 5 4 4 4 9 5-11188.8199.5198.3 + 80 6 30 12 5 5 7 12 9 6 7 8-11183.4198.4198.3 + 80 7 1 7 5 5 4 4 4 3 6 5-11160.0197.4198.4 + 80 7 2 3 2 2 5 2 3 5 4 3-11154.9196.3198.4 + 80 7 3 3 5 4 6 5 4 2 4 4-11147.7195.0198.4 + 80 7 4 0 3 6 9 12 15 5 7 7-11146.7193.8198.3 + 80 7 5 12 27 12 12 18 18 18 6 15-11152.5192.6198.2 + 80 7 6 7 5 4 15 15 12 9 15 10-11150.1191.4198.1 + 80 7 7 9 7 18 22 12 12 12 9 13-11152.5190.4197.9 + 80 7 8 27 9 6 9 6 15 22 15 14-11152.8189.4197.7 + 80 7 9 12 12 9 9 6 5 7 3 8-11155.2188.8197.6 + 80 7 10 2 4 0 4 5 5 6 4 4-11162.3188.5197.4 + 80 7 11 7 7 4 6 27 7 9 12 10-11173.3188.4197.1 + 80 7 12 7 4 4 4 3 9 4 5 5-11178.0188.4196.9 + 80 7 13 9 9 9 4 9 22 6 4 9-11196.8188.4196.7 + 80 7 14 9 6 5 9 9 7 15 9 9-11209.7188.3196.5 + 80 7 15 9 9 4 6 4 6 4 7 6-11218.4188.1196.4 + 80 7 16 6 4 5 7 6 6 5 7 6-11235.4187.8196.2 + 80 7 17 7 6 6 4 4 4 12 9 7-11250.2187.6196.1 + 80 7 18 15 7 5 6 7 12 80111 30-11249.8187.5196.0 + 80 7 19 56 27 12 4 9 9 5 6 16-11255.2187.4196.0 + 80 7 20 6 5 5 3 18 18 12 6 9-11258.0187.5196.0 + 80 7 21 15 12 7 4 27 18 12 15 14-11254.0187.7196.0 + 80 7 22 4 3 3 2 2 6 4 15 5-11248.7187.9196.0 + 80 7 23 5 2 2 4 5 6 4 7 4-11235.1188.2196.0 + 80 7 24 4 7 3 2 9 5 15 9 7-11222.2188.6196.0 + 80 7 25 4 5 4 22 39 67 94132 46-11206.4189.2195.9 + 80 7 26 80 22 9 18 39 18 12 7 26-11197.4189.7195.9 + 80 7 27 18 18 15 18 9 9 12 18 15-11188.4189.9195.9 + 80 7 28 22 22 12 12 18 18 7 5 15-11169.5190.1195.8 + 80 7 29 3 6 4 4 6 9 9 6 6-11155.3190.2195.8 + 80 7 30 7 5 6 5 7 9 9 12 8-11143.3189.9195.8 + 80 7 31 7 6 7 6 5 4 6 4 6-11136.5189.5195.8 + 80 8 1 4 6 5 4 4 3 3 4 4-11131.9189.0195.8 + 80 8 2 2 3 3 4 9 7 12 18 7-11131.8188.2195.8 + 80 8 3 27 18 27 32 32 7 12 5 20-11133.2187.3195.7 + 80 8 4 6 7 9 7 18 9 4 2 8-11130.9186.4195.7 + 80 8 5 5 3 4 5 5 4 4 5 4-11132.6185.5195.6 + 80 8 6 27 15 7 12 39 18 32 15 21-11143.2184.6195.6 + 80 8 7 9 12 9 12 7 6 12 15 10-11142.3183.9195.5 + 80 8 8 6 4 2 3 4 4 3 7 4-11146.4183.4195.4 + 80 8 9 5 4 4 6 12 18 15 9 9-11156.5183.0195.3 + 80 8 10 9 15 15 7 9 9 6 4 9-11173.5182.7195.2 + 80 8 11 5 6 7 5 4 7 15 15 8-11184.1182.8195.1 + 80 8 12 32 7 7 3 5 4 5 5 9-11189.6182.8195.0 + 80 8 13 6 4 4 4 7 7 5 7 6-11193.3183.2194.9 + 80 8 14 4 2 7 7 7 9 6 4 6-11191.7183.7194.9 + 80 8 15 6 7 4 6 7 5 4 3 5-11191.9184.2194.9 + 80 8 16 4 4 5 5 56 94 27 12 26-11195.7184.6194.9 + 80 8 17 5 4 6 9 12 7 22 18 10-11197.7185.0194.8 + 80 8 18 15 18 27 48 9 7 6 15 18-11204.3185.4194.9 + 80 8 19 27 9 7 18 48 67 27 22 28-11201.4185.8194.9 + 80 8 20 9 5 3 12 9 12 22 12 11-11193.0186.0194.9 + 80 8 21 15 12 12 6 5 4 4 4 8-11194.1186.0194.9 + 80 8 22 5 9 9 9 9 9 15 18 10-11178.3185.9195.0 + 80 8 23 9 4 4 7 5 3 3 2 5-11174.1185.5195.0 + 80 8 24 7 6 4 3 5 4 4 2 4-11164.3185.1195.1 + 80 8 25 2 3 2 3 5 5 4 18 5-11153.8184.6195.3 + 80 8 26 27 18 7 6 9 5 7 18 12-11154.6183.9195.5 + 80 8 27 18 18 22 48 39 15 15 5 23-11159.3183.1195.7 + 80 8 28 7 6 5 4 3 5 2 2 4-11168.3182.5195.8 + 80 8 29 2 2 0 2 2 4 9 15 5-11178.5182.0196.0 + 80 8 30 7 9 6 5 5 9 6 4 6-11191.4181.5196.2 + 80 8 31 12 9 9 6 6 3 5 7 7-11198.7181.3196.3 + 80 9 1 18 9 12 4 4 5 3 4 7-11213.2181.2196.4 + 80 9 2 6 6 4 4 5 3 2 5 4-11224.5181.3196.6 + 80 9 3 2 0 5 7 15 27 18 22 12-11232.1181.7196.8 + 80 9 4 32 15 7 5 7 9 12 7 12-11225.1182.3197.0 + 80 9 5 9 12 6 6 7 15 15 12 10-11215.6182.8197.1 + 80 9 6 7 7 7 6 12 18 4 12 9-11210.9183.1197.2 + 80 9 7 15 12 4 9 5 6 7 18 10-11213.0183.5197.3 + 80 9 8 18 6 5 9 9 12 4 5 9-11200.9184.0197.4 + 80 9 9 6 7 9 9 18 27 7 12 12-11189.7184.8197.5 + 80 9 10 9 6 3 2 2 4 4 6 5-11188.7185.6197.7 + 80 9 11 5 6 4 6 6 9 5 6 6-11188.1186.5197.8 + 80 9 12 6 9 32 9 22 27 15 27 18-11178.9187.4198.0 + 80 9 13 22 27 15 15 27 12 7 5 16-11171.9188.1198.2 + 80 9 14 9 12 4 9 5 3 4 22 9-11163.4188.9198.4 + 80 9 15 12 7 7 6 7 7 7 9 8-11153.8189.5198.5 + 80 9 16 3 6 7 6 6 5 18 9 8-11159.6190.0198.6 + 80 9 17 12 9 12 27 18 9 6 15 14-11158.0190.4198.7 + 80 9 18 3 2 9 5 2 3 7 5 5-11154.4190.8198.7 + 80 9 19 3 2 2 6 7 6 6 12 6-11160.1191.2198.8 + 80 9 20 18 12 5 5 5 6 4 3 7-11167.5191.5198.9 + 80 9 21 2 0 2 2 3 3 2 2 2-11159.6191.9198.9 + 80 9 22 0 6 6 9 22 12 7 5 8-11178.6192.3199.0 + 80 9 23 3 6 4 7 3 4 6 5 5-11188.7192.8199.0 + 80 9 24 2 2 5 4 3 5 5 5 4-11191.3193.4199.1 + 80 9 25 6 15 6 6 5 6 6 4 7-11183.8194.1199.1 + 80 9 26 3 6 5 6 6 4 5 2 5-11184.3195.0199.1 + 80 9 27 3 7 3 6 6 7 12 7 6-11183.2195.9199.1 + 80 9 28 7 3 6 3 9 9 6 9 7-11185.2196.8199.2 + 80 9 29 5 3 7 5 6 9 27 7 9-11178.2197.6199.2 + 80 9 30 9 6 4 3 2 4 9 2 5-11174.1198.3199.3 + 80 10 1 0 0 0 3 5 4 3 4 2-11171.1199.1199.4 + 80 10 2 4 5 6 6 9 5 2 0 5-11167.9200.1199.4 + 80 10 3 0 0 3 4 3 7 7 15 5-11174.1200.8199.6 + 80 10 4 15 32 18 18 27 48 27 22 26-11175.2201.6199.7 + 80 10 5 39 32 27 18 22 15 12 12 22-11182.6202.4199.7 + 80 10 6 15 18 22 22 7 12 9 7 14-11185.3203.0199.7 + 80 10 7 22 15 12 9 18 7 9 6 12-11198.7203.4199.7 + 80 10 8 6 12 15 6 12 15 18 15 12-11212.1203.6199.8 + 80 10 9 22 12 22 18 9 15 22 7 16-11223.4203.5199.9 + 80 10 10 15 12 7 9 12 22 18 80 22-11232.7203.3200.0 + 80 10 11 39 67 80 56 48 9 9 9 40-11240.7202.8200.0 + 80 10 12 6 12 18 5 18 9 12 7 11-11247.8202.2200.0 + 80 10 13 4 4 7 6 7 5 5 5 5-11253.3201.5200.1 + 80 10 14 6 6 7 6 5 15 27 15 11-11251.1200.7200.2 + 80 10 15 18 22 22 18 9 7 9 12 15-11237.0200.1200.3 + 80 10 16 9 3 3 2 2 2 3 3 3-11214.9199.6200.5 + 80 10 17 0 5 6 6 6 4 6 7 5-11201.1199.4200.6 + 80 10 18 18 32 32 22 9 18 32 7 21-11200.6199.0200.7 + 80 10 19 7 6 9 12 9 12 18 15 11-11203.3198.9200.7 + 80 10 20 5 6 2 4 4 4 2 5 4-11200.5199.1200.6 + 80 10 21 5 9 7 7 9 9 7 6 7-11204.2199.4200.6 + 80 10 22 6 18 12 22 18 12 39 56 23-11205.3199.9200.6 + 80 10 23 18 32 67 67 80 32 39 15 44-11196.1200.3200.6 + 80 10 24 12 9 7 15 22 7 18 18 14-11192.5200.6200.7 + 80 10 25 27 9 27 22 18 27 27 32 24-11182.9201.1200.7 + 80 10 26 27 15 27 15 6 6 5 2 13-11180.3201.5200.8 + 80 10 27 2 3 4 3 3 3 5 2 3-11177.2201.6200.8 + 80 10 28 0 0 2 2 2 2 3 3 2-11178.2201.8200.7 + 80 10 29 3 0 3 2 3 4 5 3 3-11186.4202.0200.6 + 80 10 30 7 15 12 5 2 15 7 18 10-11201.8202.2200.5 + 80 10 31 18 18 27 18 56 48 27 27 30-11211.5202.4200.5 + 80 11 1 15 18 22 22 18 22 6 6 16-11226.3202.9200.4 + 80 11 2 6 15 6 12 12 22 12 5 11-11234.2203.7200.3 + 80 11 3 3 5 6 6 7 5 5 4 5-11241.6204.4200.3 + 80 11 4 3 15 12 39 9 7 9 4 12-11249.9205.1200.4 + 80 11 5 7 5 5 5 6 3 5 4 5-11263.3206.1200.4 + 80 11 6 2 6 5 6 6 7 7 9 6-11273.9207.2200.5 + 80 11 7 12 7 4 4 5 4 4 7 6-11272.7208.1200.6 + 80 11 8 7 5 4 5 9 5 7 5 6-11266.2209.0200.7 + 80 11 9 5 7 4 15 12 15 6 5 9-11255.4209.7200.7 + 80 11 10 9 18 15 22 22 6 5 12 14-11257.2210.5200.8 + 80 11 11 18 18 27 27 15 18 39 27 24-11256.0211.2200.9 + 80 11 12 27 12 12 15 9 5 6 7 12-11233.2211.9201.0 + 80 11 13 12 3 5 5 4 4 9 7 6-11226.8212.6201.1 + 80 11 14 6 5 4 15 18 15 12 6 10-11218.8213.2201.2 + 80 11 15 22 27 39 22 18 18 12 22 23-11205.2213.6201.2 + 80 11 16 18 18 15 18 18 15 9 15 16-11191.1214.1201.2 + 80 11 17 12 4 12 9 9 7 15 18 11-11181.6214.3201.1 + 80 11 18 15 12 12 22 18 22 12 18 16-11174.9214.6201.0 + 80 11 19 18 18 9 18 22 22 15 15 17-11172.4214.5200.8 + 80 11 20 9 15 22 12 18 27 27 9 17-11161.6214.2200.6 + 80 11 21 7 27 22 12 5 6 7 18 13-11161.8213.7200.3 + 80 11 22 12 9 9 7 6 6 5 7 8-11171.4213.0200.0 + 80 11 23 9 12 6 3 2 12 22 12 10-11167.2212.1199.7 + 80 11 24 15 18 15 7 6 7 9 18 12-11174.9211.1199.3 + 80 11 25 15 18 18 9 18 15 18 18 16-11176.4210.3199.0 + 80 11 26 27 32 22 27 32 12 12 7 21-11189.6209.6198.8 + 80 11 27 27 15 22 15 15 22 22 15 19-11185.3209.1198.5 + 80 11 28 39 22 27 32 22 12 9 18 23-11191.4208.7198.3 + 80 11 29 15 18 27 15 15 7 15 18 16-11206.1208.3198.1 + 80 11 30 39 18 12 12 9 27 32 39 24-11216.3207.8198.0 + 80 12 1 48 48 18 7 12 5 6 5 19-11223.0207.4197.9 + 80 12 2 5 4 3 7 9 6 9 15 7-11213.3206.8197.8 + 80 12 3 18 22 22 22 15 27 27 18 21-11197.9206.3197.6 + 80 12 4 9 22 9 7 7 4 3 6 8-11199.4205.9197.5 + 80 12 5 6 6 2 2 2 4 2 4 4-11186.4205.5197.4 + 80 12 6 3 4 3 3 3 5 5 2 4-11171.0205.2197.3 + 80 12 7 6 5 6 7 5 3 6 7 6-11176.4204.9197.2 + 80 12 8 9 15 9 4 3 6 9 15 9-11169.3204.6197.2 + 80 12 9 7 7 12 7 6 15 7 18 10-11175.1204.3197.1 + 80 12 10 18 22 9 9 7 5 7 6 10-11180.5203.8197.1 + 80 12 11 6 6 5 18 15 18 32 32 17-11203.5203.2197.0 + 80 12 12 39 22 12 9 5 5 18 15 16-11240.5202.3196.9 + 80 12 13 3 5 5 12 7 5 3 5 6-11244.2201.3196.8 + 80 12 14 4 2 2 12 9 15 12 9 8-11253.2200.3196.7 + 80 12 15 12 18 9 12 7 9 7 9 10-11266.2199.2196.7 + 80 12 16 15 12 9 18 22 32 18 5 16-11273.0198.0196.6 + 80 12 17 5 6 4 2 3 7 9 3 5-11254.8196.8196.5 + 80 12 18 5 6 27 18 9 27 15 12 15-11255.1195.6196.4 + 80 12 19 18 48 39 22154179132 39 79-11238.5194.7196.3 + 80 12 20 27 22 27 12 15 18 32 15 21-11235.9194.1196.1 + 80 12 21 27 39 39 18 12 15 32 27 26-11224.8193.5195.9 + 80 12 22 15 15 18 12 7 7 7 6 11-11231.2192.9195.6 + 80 12 23 5 6 4 9 5 4 6 4 5-11226.0192.6195.4 + 80 12 24 3 2 2 3 3 3 3 2 3-11223.6192.4195.2 + 80 12 25 4 9 6 6 9 5 3 18 8-11220.7192.2195.1 + 80 12 26 7 7 5 6 9 6 2 3 6-11220.1192.1195.0 + 80 12 27 3 12 18 22 12 5 6 5 10-11220.3192.1194.9 + 80 12 28 3 3 5 4 7 3 4 2 4-11231.5192.1194.9 + 80 12 29 3 7 5 6 15 9 9 15 9-11217.2192.2194.9 + 80 12 30 15 12 27 22 12 3 4 6 13-11209.9192.3194.9 + 80 12 31 22 18 12 5 6 18 22 18 15-11199.0192.5194.9 + 81 1 1 7 27 9 18 7 9 22 6 13-11189.7192.8195.0 + 81 1 2 5 5 7 6 7 22 9 9 9-11181.4193.0195.0 + 81 1 3 18 7 12 7 6 6 12 6 9-11173.1193.2195.1 + 81 1 4 27 22 15 9 4 9 18 12 15-11166.8193.5195.1 + 81 1 5 6 7 7 7 9 9 15 12 9-11161.8193.8195.1 + 81 1 6 9 7 6 5 12 12 9 12 9-11157.4193.9195.1 + 81 1 7 12 9 5 4 4 5 4 7 6-11168.6193.9195.1 + 81 1 8 7 6 7 12 15 15 12 15 11-11169.2193.8195.0 + 81 1 9 9 15 2 0 6 4 4 6 6-11167.0193.6195.0 + 81 1 10 2 3 5 5 6 9 22 22 9-11164.6193.2195.0 + 81 1 11 22 39 22 9 18 15 12 15 19-11160.5192.8195.0 + 81 1 12 9 6 4 2 0 2 4 4 4-11156.6192.5194.9 + 81 1 13 4 7 6 5 6 7 7 6 6-11158.1192.5194.9 + 81 1 14 6 6 5 6 15 3 0 3 6-11153.9192.7194.8 + 81 1 15 9 4 7 6 6 7 7 12 7-11149.8193.3194.7 + 81 1 16 18 22 15 15 12 6 5 4 12-11152.5194.0194.6 + 81 1 17 7 4 7 5 18 6 12 7 8-11155.3194.8194.4 + 81 1 18 7 6 5 3 2 3 2 2 4-11161.0195.6194.4 + 81 1 19 2 2 3 3 4 4 3 3 3-11165.4196.2194.3 + 81 1 20 7 0 3 4 4 4 7 4 4-11159.9196.8194.2 + 81 1 21 3 3 0 0 0 2 7 4 2-11156.6197.1194.2 + 81 1 22 6 4 5 7 15 12 12 12 9-11156.4197.1194.2 + 81 1 23 6 2 4 12 18 9 9 7 8-11156.8197.1194.3 + 81 1 24 5 5 12 7 12 9 9 9 9-11157.3196.8194.5 + 81 1 25 7 5 5 4 7 12 9 9 7-11169.2196.1194.7 + 81 1 26 3 3 7 6 22 7 9 6 8-11174.6195.3194.9 + 81 1 27 15 4 6 9 18 5 4 7 9-11175.8194.6195.0 + 81 1 28 18 18 12 15 18 7 18 18 16-11197.2193.9195.2 + 81 1 29 15 18 27 15 15 9 15 7 15-11204.2193.5195.4 + 81 1 30 9 6 4 6 9 9 7 7 7-11209.1193.1195.5 + 81 1 31 9 48 32 32 12 5 18 22 22-11209.1192.6195.7 + 81 2 1 6 18 18 18 18 7 12 18 14-11207.3192.3195.8 + 81 2 2 18 15 27 18 22 39 22 12 22-11210.1192.0196.0 + 81 2 3 15 9 15 12 15 15 18 6 13-11205.4191.8196.1 + 81 2 4 12 5 5 5 3 9 18 12 9-11197.5191.5196.3 + 81 2 5 7 27 18 32 32 32 27 22 25-11187.8191.0196.4 + 81 2 6 18 7 9 22 80 80111 56 48-11185.4190.5196.4 + 81 2 7 80 39 15 7 9 4 2 2 20-11180.5189.8196.5 + 81 2 8 0 2 2 3 22 32 15 32 14-11179.1189.4196.6 + 81 2 9 56 48 27 15 15 6 5 3 22-11176.7189.2196.6 + 81 2 10 3 3 2 0 5 4 5 2 3-11185.2189.0196.7 + 81 2 11 3 2 4 5 15 15 15 22 10-11186.4189.0196.7 + 81 2 12 27 9 9 15 7 4 9 6 11-11190.6189.1196.8 + 81 2 13 5 6 5 7 15 6 5 6 7-11197.8189.5196.8 + 81 2 14 0 2 3 4 2 5 3 3 3-11200.3189.9196.9 + 81 2 15 2 0 2 6 9 27 22 12 10-11193.5190.3197.0 + 81 2 16 12 18 7 15 9 12 5 4 10-11186.9190.9197.1 + 81 2 17 5 4 6 7 9 6 4 5 6-11188.1191.4197.2 + 81 2 18 2 3 3 5 7 6 6 12 6-11190.2191.9197.3 + 81 2 19 12 9 6 4 6 4 4 6 6-11178.8192.5197.5 + 81 2 20 4 2 7 18 15 15 5 4 9-11188.3193.0197.7 + 81 2 21 4 4 12 7 6 3 3 3 5-11189.9193.7198.0 + 81 2 22 0 0 0 3 3 5 7 32 6-11199.5194.5198.2 + 81 2 23 32 9 5 3 9 15 7 12 12-11217.9195.2198.4 + 81 2 24 7 12 6 9 15 32 39 39 20-11231.5196.1198.7 + 81 2 25 27 27 39 22 18 18 22 22 24-11233.8197.2199.0 + 81 2 26 22 18 12 22 18 27 80 32 29-11238.5198.3199.4 + 81 2 27 18 18 27 22 18 22 27 15 21-11235.4199.7199.7 + 81 2 28 15 9 9 7 6 7 15 22 11-11224.9201.3199.9 + 81 3 1 22 15 39 27 39 22 9 48 28-11224.4202.5200.1 + 81 3 2 18 22 48 48 27 18 12 6 25-11230.6203.9200.3 + 81 3 3 7 4 4 4 5 9 12 15 8-11238.9205.1200.3 + 81 3 4 15 27 27 12 5 4 3 6 12-11245.6206.3200.4 + 81 3 5 5 56 67111132154 94 32 81-11227.3207.5200.4 + 81 3 6 12 18 15 9 15 7 7 4 11-11212.7208.8200.4 + 81 3 7 12 9 12 27 22 32 39 9 20-11201.4209.7200.5 + 81 3 8 9 6 12 22 18 7 4 2 10-11200.6210.6200.6 + 81 3 9 4 3 3 4 4 4 4 5 4-11202.9211.2200.8 + 81 3 10 6 7 7 18 12 7 4 3 8-11203.1211.4201.0 + 81 3 11 5 7 9 12 7 6 5 2 7-11199.7211.4201.1 + 81 3 12 4 2 9 15 9 7 18 22 11-11188.8211.2201.3 + 81 3 13 18 9 15 15 32 39 39 56 28-11202.1211.0201.4 + 81 3 14 18 39 67 67 80 39 32 15 45-11208.9211.0201.6 + 81 3 15 12 39 18 7 15 27 18 18 19-11206.3210.9201.8 + 81 3 16 15 18 12 6 9 15 12 22 14-11194.9210.9201.9 + 81 3 17 39 15 9 15 18 15 15 18 18-11181.5210.9202.1 + 81 3 18 15 22 27 15 27 22 18 9 19-11180.0211.0202.3 + 81 3 19 9 7 7 7 5 18 18 6 10-11175.1210.9202.5 + 81 3 20 5 9 9 12 18 12 3 2 9-11182.7210.8202.7 + 81 3 21 0 3 7 5 5 4 18 18 8-11189.5210.8202.8 + 81 3 22 3 7 4 3 3 5 5 6 5-11189.4210.9202.9 + 81 3 23 2 2 4 6 7 4 2 2 4-11188.0211.0203.0 + 81 3 24 0 0 3 4 4 5 7 6 4-11191.4211.3203.0 + 81 3 25 18 39 39 9 67 56 32 32 37-11199.3211.7203.0 + 81 3 26 48 18 15 18 48 32 15 27 28-11198.6212.2203.0 + 81 3 27 12 18 15 6 22 15 12 9 14-11197.6212.5203.0 + 81 3 28 15 12 7 12 15 12 12 15 13-11203.7213.0203.0 + 81 3 29 12 15 22 27 18 27 15 6 18-11212.4213.5203.0 + 81 3 30 9 9 7 12 12 12 32 32 16-11208.2213.9203.1 + 81 3 31 56 27 9 18 18 32 27 22 26-11214.0214.2203.1 + 81 4 1 32 22 15 27 18 32 22 15 23-11210.8214.8203.2 + 81 4 2 5 7 7 9 15 12 15 9 10-11211.2215.2203.3 + 81 4 3 9 18 5 9 22 18 18 12 14-11221.2215.6203.4 + 81 4 4 12 9 6 6 9 7 22 15 11-11219.7216.0203.5 + 81 4 5 3 2 3 4 5 4 6 6 4-11226.2216.1203.5 + 81 4 6 6 15 22 12 9 5 5 7 10-11235.7216.0203.6 + 81 4 7 7 6 7 7 12 7 18 6 9-11242.3215.6203.6 + 81 4 8 12 4 9 9 4 22 15 12 11-11268.8215.1203.6 + 81 4 9 22 18 3 2 6 4 4 6 8-11287.7214.5203.6 + 81 4 10 4 5 6 15 6 9 9 6 8-11268.8213.9203.5 + 81 4 11 3 6 12 15 94 80 22 80 39-11272.1213.4203.5 + 81 4 12132132 67 48132 94 67 94 96-11251.9212.6203.4 + 81 4 13207236179 67 94 67 67 48121-11254.9211.6203.4 + 81 4 14 48 27 48 18 22 39 7 5 27-11256.5210.7203.4 + 81 4 15 3 6 6 7 12 15 9 7 8-11254.9210.1203.5 + 81 4 16 15 6 6 27 27 9 9 7 13-11247.5209.6203.6 + 81 4 17 7 18 39 15 18 15 22 18 19-11242.7209.3203.8 + 81 4 18 15 9 4 7 5 32 18 18 14-11229.2209.1204.1 + 81 4 19 80 80 18 39 67 39 27 9 45-11214.9208.7204.4 + 81 4 20 27 94 56 27 56 48 48 67 53-11200.9208.2204.6 + 81 4 21 32 32 56 39 48 32 48 39 41-11196.1207.7204.8 + 81 4 22 48 39 48 18 32 22 39 18 33-11191.5207.2204.8 + 81 4 23 27 39 39 32 32 22 27 27 31-11204.9206.5204.9 + 81 4 24 6 22 18 22 39 27 27 12 22-11203.0205.6204.9 + 81 4 25 32 22 15 12 15 22 15 22 19-11203.8204.7204.9 + 81 4 26 18 18 67 67154 48 56 67 62-11198.8203.9204.9 + 81 4 27 80 56 39 56 39 39 12 22 43-11194.7203.4204.9 + 81 4 28 7 5 6 12 12 27 9 27 13-11178.2203.0204.9 + 81 4 29 39 18 12 27 18 15 12 9 19-11176.9202.7204.9 + 81 4 30 7 5 9 6 15 4 7 5 7-11175.3202.3204.9 + 81 5 1 6 5 27 18 15 22 22 12 16-11188.0201.9204.9 + 81 5 2 18 7 7 6 5 6 4 5 7-11193.4201.5204.9 + 81 5 3 5 5 9 7 6 4 3 3 5-11206.5201.0204.9 + 81 5 4 3 4 6 5 4 5 4 2 4-11221.2200.5204.9 + 81 5 5 4 3 3 3 6 4 5 3 4-11237.5200.0205.0 + 81 5 6 4 5 4 4 6 6 6 4 5-11231.2199.6205.0 + 81 5 7 4 6 4 6 6 4 5 3 5-11234.2199.3205.0 + 81 5 8 5 6 4 9 7 22 22 15 11-11222.4198.9204.9 + 81 5 9 32 94 94 32 18 18 12 15 39-11218.6198.4204.8 + 81 5 10 22 18 12 6 7 27 32132 32-11217.7197.8204.7 + 81 5 11111111 80 80 56 18 12 18 61-11228.1197.2204.7 + 81 5 12 6 9 9 5 15 22 22 18 13-11223.4196.5204.6 + 81 5 13 18 27 15 5 6 3 3 4 10-11221.3195.9204.5 + 81 5 14 6 12 15 32 22 12 27 15 18-11232.5195.3204.4 + 81 5 15 27132 94 32 32 39 39 39 54-11223.9194.7204.4 + 81 5 16 39 48 67 94 67 80 56 18 59-11218.9194.2204.4 + 81 5 17 12 7 5 6 6 7 7 56 13-11207.6193.7204.3 + 81 5 18 48132111 48 32 32 39 12 57-11194.4193.1204.3 + 81 5 19 7 15 32 22 15 22 15 15 18-11186.6192.1204.3 + 81 5 20 32 39 94 18 27 39 80 18 43-11180.0190.9204.3 + 81 5 21 9 6 7 12 7 7 18 27 12-11180.4189.8204.2 + 81 5 22 7 7 7 5 6 6 7 5 6-11169.3188.6204.2 + 81 5 23 4 9 32 22 27 18 27 12 19-11159.6187.6204.2 + 81 5 24 18 9 15 18 15 27 18 27 18-11169.8186.4204.1 + 81 5 25 18 39 32 39 22 22 56 39 33-11177.2185.3204.1 + 81 5 26 22 7 5 4 4 6 6 7 8-11173.8184.0204.0 + 81 5 27 4 6 3 5 3 4 12 9 6-11177.0182.8204.0 + 81 5 28 12 32 7 7 18 9 5 7 12-11181.3181.7203.9 + 81 5 29 7 9 5 4 6 4 6 5 6-11170.6180.7203.9 + 81 5 30 5 6 4 6 7 9 6 9 7-11164.6179.9204.0 + 81 5 31 9 7 7 12 7 9 6 6 8-11156.1179.4204.0 + 81 6 1 7 6 9 6 4 12 9 5 7-11149.6179.0204.1 + 81 6 2 7 5 6 12 12 7 4 6 7-11144.3178.7204.1 + 81 6 3 6 9 15 6 27 27 27 15 17-11134.9178.4204.1 + 81 6 4 6 5 6 3 5 5 6 2 5-11133.8178.1204.3 + 81 6 5 9 4 5 5 7 4 5 6 6-11136.0178.0204.4 + 81 6 6 7 4 4 15 39 15 18 12 14-11140.6178.1204.6 + 81 6 7 18 32 48 32 39 67111 56 50-11146.7178.2204.8 + 81 6 8 39 18 15 5 5 18 15 9 16-11146.7178.5205.1 + 81 6 9 6 4 4 5 3 6 4 3 4-11152.8179.0205.4 + 81 6 10 3 3 4 5 4 5 6 5 4-11157.1179.8205.7 + 81 6 11 6 5 7 3 6 6 7 7 6-11154.8180.3206.0 + 81 6 12 6 4 2 4 3 2 5 5 4-11152.0180.8206.2 + 81 6 13 3 4 6 5 12 4 3 3 5-11152.6181.4206.2 + 81 6 14 2 2 2 5 4 7 6 3 4-11159.1181.9206.2 + 81 6 15 9 9 12 12 12 6 12 15 11-11164.7182.1206.0 + 81 6 16 22 27 9 15 15 22 27 32 21-11169.1182.7205.7 + 81 6 17 22 15 15 6 5 2 5 7 10-11171.2182.9205.4 + 81 6 18 9 7 9 9 7 15 15 7 10-11170.1182.9205.1 + 81 6 19 9 5 5 9 15 15 12 9 10-11165.9182.9204.8 + 81 6 20 9 12 12 12 12 7 7 7 10-11159.8182.7204.5 + 81 6 21 6 12 9 6 4 7 6 6 7-11153.6182.3204.2 + 81 6 22 4 2 2 2 3 6 15 5 5-11166.1181.9204.0 + 81 6 23 3 7 4 5 3 6 4 5 5-11171.2181.4203.8 + 81 6 24 6 4 6 18 15 18 32 4 13-11174.6180.9203.6 + 81 6 25 6 7 6 18 18 39 7 18 15-11183.6180.5203.4 + 81 6 26 12 9 15 18 27 15 7 9 14-11193.9180.0203.2 + 81 6 27 12 9 15 9 7 9 15 7 10-11193.4179.6203.1 + 81 6 28 12 9 18 9 7 9 7 4 9-11191.6179.4202.9 + 81 6 29 7 9 80 67 67 18 9 6 33-11187.5179.3202.8 + 81 6 30 18 7 5 6 12 15 32 18 14-11179.0179.3202.7 + 81 7 1 27 12 15 15 22 18 12 15 17-11175.4179.3202.6 + 81 7 2 12 15 39 27 39 12 18 15 22-11168.9179.7202.6 + 81 7 3 5 5 6 6 6 4 12 27 9-11163.3180.4202.6 + 81 7 4 9 5 4 4 6 9 7 27 9-11165.9180.8202.6 + 81 7 5 9 9 9 15 12 18 18 9 12-11152.5181.2202.6 + 81 7 6 15 15 27 22 18 22 22 9 19-11148.7181.9202.6 + 81 7 7 12 15 12 9 22 18 15 9 14-11149.8182.4202.6 + 81 7 8 15 12 9 12 6 3 6 3 8-11152.4183.0202.6 + 81 7 9 7 6 7 5 6 6 6 7 6-11150.0183.9202.6 + 81 7 10 4 5 4 3 3 4 6 5 4-11156.5185.0202.6 + 81 7 11 3 6 22 22 9 15 15 9 13-11167.4186.4202.6 + 81 7 12 9 18 15 22 22 27 22 27 20-11167.7187.9202.5 + 81 7 13 15 6 6 9 6 9 12 12 9-11174.2189.3202.5 + 81 7 14 12 6 3 5 7 15 5 4 7-11184.2190.8202.4 + 81 7 15 4 5 3 4 3 2 4 3 4-11194.5192.3202.3 + 81 7 16 9 7 6 9 4 12 7 9 8-11205.3193.8202.2 + 81 7 17 7 6 22 27 39 12 39 80 29-11200.8195.4202.2 + 81 7 18 27 9 6 7 7 4 9 9 10-11204.7197.1202.2 + 81 7 19 7 6 6 5 18 9 12 7 9-11220.3198.7202.2 + 81 7 20 9 9 5 18 32 9 6 6 12-11234.7200.0202.2 + 81 7 21 12 6 6 6 4 5 4 6 6-11228.1201.3202.2 + 81 7 22 9 15 6 22 39 39 22 39 24-11235.9202.6202.2 + 81 7 23 15 6 27 48 67 56 48 27 37-11254.7203.8202.2 + 81 7 24 6 5 6 6 15 15 12 39 13-11261.6204.9202.2 + 81 7 25 32 67111 32236236179179134-11259.7205.8202.2 + 81 7 26207111 80 48 67 67 27 18 78-11273.1206.6202.2 + 81 7 27 27 39 48 32 18 12 5 15 25-11255.8207.6202.2 + 81 7 28 7 12 9 7 9 5 6 7 8-11223.6208.7202.2 + 81 7 29 7 6 3 3 4 5 3 9 5-11213.3209.9202.3 + 81 7 30 7 5 7 12 12 12 12 7 9-11204.2211.1202.4 + 81 7 31 9 7 18 9 7 12 15 18 12-11197.6212.3202.5 + 81 8 1 12 22 18 22 7 15 32 15 18-11183.9213.5202.8 + 81 8 2 7 4 6 9 18 27 15 32 15-11182.6214.4203.0 + 81 8 3 12 22 32 15 15 18 18 9 18-11192.4215.2203.2 + 81 8 4 9 27 18 12 4 5 7 4 11-11190.6215.8203.4 + 81 8 5 3 22 22 12 12 9 22 15 15-11178.8216.4203.6 + 81 8 6 39 18 15 12 12 7 5 6 14-11179.6216.9203.7 + 81 8 7 5 6 6 5 12 15 22 7 10-11173.0217.3203.9 + 81 8 8 7 3 3 5 4 0 0 7 4-11178.4217.6204.0 + 81 8 9 15 6 2 2 3 5 12 9 7-11180.5218.0204.2 + 81 8 10 12 39 15 22 15 15 4 6 16-11182.0218.3204.4 + 81 8 11 7 7 6 7 12 27 39 18 15-11206.4218.7204.5 + 81 8 12 15 12 6 5 7 9 9 9 9-11209.0218.9204.6 + 81 8 13 9 12 9 7 7 6 9 15 9-11208.7219.2204.7 + 81 8 14 9 4 6 6 12 6 9 12 8-11208.2219.4204.7 + 81 8 15 3 5 5 5 7 6 32 39 13-11225.1219.8204.7 + 81 8 16 18 9 5 6 7 6 4 7 8-11221.8220.2204.7 + 81 8 17 32 15 27 48 18 18 18 22 25-11228.7220.7204.6 + 81 8 18 39 9 22 18 27 27 22 18 23-11244.1221.3204.6 + 81 8 19 12 12 9 7 15 7 9 7 10-11254.6221.9204.5 + 81 8 20 9 9 7 4 3 9 15 7 8-11269.8222.5204.4 + 81 8 21 9 6 22 9 15 22 22 9 14-11267.1222.9204.4 + 81 8 22 18 15 12 7 5 12 18 15 13-11262.2223.5204.4 + 81 8 23 48 27 48 39 94 80 32 80 56-11254.8223.9204.3 + 81 8 24 39 32 12 12 15 48 27 39 28-11258.9224.0204.2 + 81 8 25 22 7 15 12 12 22 22 15 16-11254.8224.0204.1 + 81 8 26 2 4 5 4 6 18 9 12 8-11272.9223.8204.0 + 81 8 27 9 7 6 18 56 56 32 15 25-11281.6223.8203.8 + 81 8 28 18 18 22 18 15 27 12 18 19-11275.3223.8203.7 + 81 8 29 12 12 18 32 32 18 9 7 18-11259.1223.6203.7 + 81 8 30 22 32 12 18 12 15 5 22 17-11265.1223.2203.7 + 81 8 31 18 56 18 7 7 6 3 2 15-11256.0223.0203.7 + 81 9 1 2 3 4 4 6 6 6 6 5-11248.3222.8203.7 + 81 9 2 9 15 27 15 18 32 15 12 18-11242.8222.6203.7 + 81 9 3 9 7 9 15 9 9 4 7 9-11229.0222.5203.7 + 81 9 4 7 0 4 9 12 7 15 32 11-11233.4222.7203.7 + 81 9 5 32 18 18 18 12 12 7 18 17-11248.7222.9203.8 + 81 9 6 12 9 12 6 6 5 4 7 8-11263.2223.5203.8 + 81 9 7 4 6 3 5 4 7 9 5 5-11262.5224.5203.8 + 81 9 8 5 22 9 4 2 2 4 32 10-11266.3225.5203.8 + 81 9 9 18 9 15 12 7 7 9 9 11-11256.5226.4203.8 + 81 9 10 9 7 5 9 15 12 9 7 9-11247.6227.1203.7 + 81 9 11 27 32 27 22 27 6 9 18 21-11240.8227.8203.7 + 81 9 12 9 12 7 7 18 9 15 6 10-11234.2228.3203.6 + 81 9 13 15 22 12 7 18 12 4 7 12-11230.2228.5203.6 + 81 9 14 2 5 9 6 22 12 12 12 10-11228.7228.6203.6 + 81 9 15 6 6 22 12 7 12 6 5 10-11230.4228.7203.7 + 81 9 16 6 15 7 6 6 6 5 6 7-11227.5228.6203.8 + 81 9 17 5 7 2 3 5 4 6 3 4-11218.2228.6204.0 + 81 9 18 5 2 4 3 4 4 56 67 18-11216.5228.6204.1 + 81 9 19 48 27 80 32 56 15 32 18 39-11210.5228.7204.2 + 81 9 20 12 9 6 6 6 9 12 9 9-11200.1228.9204.2 + 81 9 21 12 4 5 6 3 4 7 15 7-11191.2228.9204.3 + 81 9 22 7 32 27 7 6 3 7 18 13-11183.0229.1204.3 + 81 9 23 9 4 2 4 4 4 2 5 4-11183.8229.5204.3 + 81 9 24 4 7 7 7 9 9 7 9 7-11182.2230.1204.3 + 81 9 25 15 15 12 7 22 22 5 5 13-11182.0230.6204.3 + 81 9 26 9 22 32 32 39 32 48 39 32-11188.8231.0204.3 + 81 9 27 22 32 39 18 9 12 27 9 21-11202.8231.2204.3 + 81 9 28 15 7 4 5 5 6 3 6 6-11200.9231.1204.2 + 81 9 29 5 6 5 5 22 27 22 18 14-11204.5230.9204.2 + 81 9 30 9 15 12 15 18 15 18 15 15-11203.8230.4204.1 + 81 10 1 9 9 6 9 12 12 5 12 9-11210.6230.0204.0 + 81 10 2 18 9 6 7 15 12 94 18 22-11204.8229.4203.9 + 81 10 3 9 15 39 67 67 39 32 22 36-11196.5229.0203.8 + 81 10 4 12 27 18 22 15 12 22 7 17-11191.1228.5203.6 + 81 10 5 7 5 9 18 6 3 2 5 7-11193.6227.9203.4 + 81 10 6 2 2 4 9 12 7 4 7 6-11200.3226.9203.2 + 81 10 7 22 18 12 27 18 27 94 39 32-11204.1225.7203.0 + 81 10 8 22 32 48 32 12 15 18 22 25-11200.7224.4202.7 + 81 10 9 27 39 18 32 12 15 15 12 21-11205.4223.2202.4 + 81 10 10 7 18 18 22 22 48 48 32 27-11213.4221.9202.1 + 81 10 11 39 67 67 48 56 56 15 18 46-11220.0220.6201.9 + 81 10 12 22 27 27 12 2 2 2 3 12-11236.8219.4201.7 + 81 10 13 6 5 15 9 9 9 18 67 17-11256.2218.3201.5 + 81 10 14207179 32 22 18 22 39 67 73-11275.6217.3201.2 + 81 10 15 15 27 22 18 32 22 12 12 20-11287.1216.3200.9 + 81 10 16 6 18 15 5 4 3 4 5 8-11302.4215.2200.6 + 81 10 17 4 9 27 32 22 27 18 7 18-11302.9214.2200.4 + 81 10 18 15 5 5 4 3 7 6 6 6-11296.5213.3200.1 + 81 10 19 12 22 27 27 32 18 22 27 23-11278.6212.5199.9 + 81 10 20 27 22 18 39111132132 56 67-11257.8212.2199.8 + 81 10 21 56 67 22 48 18 27 9 18 33-11238.2212.0199.7 + 81 10 22 22 27 27 48132111 94111 72-11218.6211.8199.6 + 81 10 23 67 32 48 18 9 15 12 12 27-11208.2211.8199.5 + 81 10 24 3 2 5 18 22 48 18 27 18-11201.1211.9199.4 + 81 10 25 12 39 32 18 18 9 7 6 18-11186.0212.1199.4 + 81 10 26 6 6 18 18 12 7 5 6 10-11172.0212.4199.3 + 81 10 27 9 4 6 6 12 15 12 15 10-11171.2212.8199.2 + 81 10 28 9 9 22 18 15 12 32 32 19-11182.4213.6199.2 + 81 10 29 9 12 12 18 6 7 6 22 12-11187.5214.4199.1 + 81 10 30 9 9 7 12 22 22 7 9 12-11201.5215.4199.1 + 81 10 31 7 2 5 6 6 4 3 3 5-11207.1216.4199.0 + 81 11 1 5 9 4 15 9 6 5 6 7-11222.5217.3198.8 + 81 11 2 4 5 3 2 3 6 9 7 5-11241.3218.2198.7 + 81 11 3 12 12 6 9 5 5 12 5 8-11255.3218.7198.5 + 81 11 4 2 4 4 3 6 7 12 12 6-11263.1218.8198.2 + 81 11 5 9 15 18 12 15 7 6 6 11-11254.1218.7198.0 + 81 11 6 15 12 4 7 9 5 7 12 9-11244.6218.3197.8 + 81 11 7 18 39 22 18 22 15 7 9 19-11241.4217.6197.6 + 81 11 8 12 39 48 48 22 27 15 6 27-11234.7216.8197.4 + 81 11 9 5 3 4 6 7 4 3 4 5-11232.6215.8197.1 + 81 11 10 2 7 18 27 18 7 12 15 13-11231.0215.0196.9 + 81 11 11 9 18 15 18 80 39 32 39 31-11217.0214.1196.6 + 81 11 12 80111 48 39 15 9 4 4 39-11223.5213.4196.4 + 81 11 13 2 2 2 5 2 4 7 15 5-11215.9212.9196.1 + 81 11 14 9 18 12 32 39 39 22 48 27-11207.4212.4195.8 + 81 11 15 39 32 22 12 15 22 9 7 20-11191.2212.1195.6 + 81 11 16 22 27 15 9 12 7 22 22 17-11181.2211.6195.4 + 81 11 17 32 18 12 48 32 39 39 32 32-11172.7211.3195.3 + 81 11 18 22 18 27 39 27 22 32 18 26-11160.8211.1195.2 + 81 11 19 22 9 12 12 15 18 15 12 14-11157.0210.8195.1 + 81 11 20 15 7 15 18 15 9 9 18 13-11152.0210.5195.1 + 81 11 21 15 7 12 12 12 15 15 32 15-11153.9210.0195.1 + 81 11 22 18 15 18 12 7 7 4 7 11-11152.7209.3195.1 + 81 11 23 9 7 12 32 18 32 22 32 21-11151.9208.3195.0 + 81 11 24 18 9 7 6 15 6 6 6 9-11150.4207.1194.9 + 81 11 25 39 32 22 48 39 18 9 12 27-11159.1205.7194.9 + 81 11 26 12 12 9 6 9 9 12 5 9-11178.3204.0194.9 + 81 11 27 3 5 6 4 2 2 3 4 4-11190.3202.3194.8 + 81 11 28 15 4 4 3 3 5 5 9 6-11206.4200.7194.8 + 81 11 29 12 4 3 4 3 2 3 3 4-11226.5199.2194.8 + 81 11 30 0 0 0 4 3 2 0 2 1-11231.6198.0194.7 + 81 12 1 2 3 4 5 7 15 9 7 7-11230.7196.9194.7 + 81 12 2 7 4 5 22 7 5 9 12 9-11230.3195.9194.6 + 81 12 3 4 6 5 9 15 7 12 9 8-11238.6194.9194.7 + 81 12 4 15 18 9 9 7 6 7 12 10-11241.7194.0194.7 + 81 12 5 12 7 9 9 5 6 9 12 9-11260.0193.3194.8 + 81 12 6 6 9 6 2 2 4 3 2 4-11262.1192.9194.8 + 81 12 7 0 0 3 4 4 4 3 7 3-11275.6192.6194.8 + 81 12 8 7 9 15 4 15 27 32 12 15-11287.8192.2194.9 + 81 12 9 12 15 7 9 7 9 12 12 10-11292.4192.0195.0 + 81 12 10 7 27 15 7 3 5 3 4 9-11278.7191.6195.1 + 81 12 11 9 9 2 3 4 6 7 6 6-11266.7191.1195.3 + 81 12 12 18 9 15 15 39 32 27 27 23-11254.2190.4195.5 + 81 12 13 18 22 18 12 15 7 4 4 13-11218.9189.3195.7 + 81 12 14 7 9 5 5 3 5 7 5 6-11193.0187.9196.0 + 81 12 15 5 4 3 2 2 2 15 18 6-11172.6186.5196.2 + 81 12 16 5 0 5 5 2 3 6 7 4-11157.4185.5196.3 + 81 12 17 2 2 2 4 3 6 12 27 7-11144.2184.7196.4 + 81 12 18 27 15 15 15 9 15 9 9 14-11136.3184.2196.5 + 81 12 19 9 6 7 18 18 9 4 6 10-11129.7184.2196.6 + 81 12 20 6 9 5 5 4 6 7 7 6-11133.9184.6196.7 + 81 12 21 6 4 4 6 6 7 6 6 6-11142.2185.3196.9 + 81 12 22 2 0 3 3 3 6 3 2 3-11145.9186.2196.9 + 81 12 23 4 12 6 5 5 6 5 9 7-11153.0186.9197.0 + 81 12 24 18 22 7 6 5 7 7 12 11-11156.1187.7197.0 + 81 12 25 9 7 3 6 9 12 7 9 8-11162.1188.5196.9 + 81 12 26 12 7 6 9 4 3 5 2 6-11166.2189.3196.8 + 81 12 27 6 5 5 3 5 4 9 9 6-11176.8190.1196.6 + 81 12 28 27 9 12 7 18 9 7 6 12-11183.0191.0196.4 + 81 12 29 6 39 80 48 32 22 18 7 32-11183.6191.9196.2 + 81 12 30 18 67 48 22 39 22 15 9 30-11185.7193.0196.0 + 81 12 31 9 12 32 32 22 18 7 9 18-11182.8194.0195.8 + 82 1 1 7 6 6 6 9 27 6 4 9-11179.9194.7195.6 + 82 1 2 6 6 6 6 7 18 15 9 9-11177.2195.5195.5 + 82 1 3 15 15 9 12 7 32 39 27 20-11176.1196.1195.3 + 82 1 4 27 9 5 7 9 15 9 15 12-11170.4196.7195.2 + 82 1 5 9 6 6 7 3 2 3 0 5-11165.5197.0195.2 + 82 1 6 9 12 18 9 7 7 15 6 10-11166.8197.0195.1 + 82 1 7 9 12 12 7 15 15 15 12 12-11166.9196.8195.1 + 82 1 8 18 12 7 6 5 9 12 6 9-11156.9196.2195.2 + 82 1 9 6 6 2 4 3 3 3 5 4-11164.4195.5195.3 + 82 1 10 5 2 2 2 0 2 6 9 4-11145.7194.7195.5 + 82 1 11 9 12 4 3 4 4 6 0 5-11136.3194.0195.7 + 82 1 12 7 5 2 3 0 0 0 3 3-11132.4193.2195.9 + 82 1 13 0 5 5 4 3 5 3 3 4-11127.5192.3196.1 + 82 1 14 0 0 2 5 3 3 3 6 3-11130.5191.4196.3 + 82 1 15 9 27 7 9 9 9 12 12 12-11136.3190.5196.5 + 82 1 16 5 7 22 9 18 18 32 22 17-11146.7189.5196.7 + 82 1 17 22 12 7 12 9 9 5 4 10-11152.6188.6196.8 + 82 1 18 6 9 5 5 4 6 32 39 13-11167.6187.8196.8 + 82 1 19 7 2 0 3 5 3 3 3 3-11169.4187.0196.7 + 82 1 20 9 9 6 4 3 3 7 6 6-11167.0186.4196.6 + 82 1 21 4 9 12 18 15 27 15 12 14-11163.3185.9196.4 + 82 1 22 22 39 27 27 18 27 22 32 27-11152.9185.6196.0 + 82 1 23 22 32 15 18 27 15 27 22 22-11148.0185.9195.6 + 82 1 24 22 22 18 18 22 18 18 27 21-11149.1186.5195.2 + 82 1 25 12 12 9 6 12 7 5 7 9-11169.3187.2194.7 + 82 1 26 6 4 3 4 6 4 15 15 7-11182.7188.1194.3 + 82 1 27 12 15 9 9 18 7 6 27 13-11197.2188.9194.0 + 82 1 28 15 32 22 32 15 12 5 6 17-11234.7189.6193.6 + 82 1 29 3 6 4 4 7 22 27 12 11-11267.0190.2193.4 + 82 1 30 56 56 27 27 18 15 9 6 27-11284.5190.7193.2 + 82 1 31 18 39 22 48 67 39 27 12 34-11289.1191.2193.0 + 82 2 1 7 15 9 48 80 39 80 48 41-11284.8191.7192.9 + 82 2 2 48 80132 80 67 48 12 12 60-11279.7192.3192.8 + 82 2 3 22 39 48 32 39 32 27 39 35-11272.9192.9192.7 + 82 2 4 56 56 39 48 56 32 39 67 49-11252.8193.7192.7 + 82 2 5 80 80 15 22 15 39 18 27 37-11245.2194.5192.8 + 82 2 6 18 27 48 39 22 56 56 48 39-11245.2195.2192.9 + 82 2 7 56 48 22 22 7 12 18 27 27-11239.9195.6193.0 + 82 2 8 27 18 9 22 12 12 27 18 18-11245.1196.0193.1 + 82 2 9 22 22 15 15 18 9 9 12 15-11231.7196.3193.2 + 82 2 10 15 15 9 56 56 67 32 32 35-11213.7196.7193.2 + 82 2 11 32 56 27 15 48 67 32 80 45-11211.1197.0193.1 + 82 2 12 80 22 6 32 56 18 56 56 41-11204.0197.2193.0 + 82 2 13 56 32 56 39 48 48 56 94 54-11194.9197.3193.0 + 82 2 14 27 67 67 27 32 27 56 32 42-11185.3197.6192.8 + 82 2 15 22 18 32 27 27 15 3 3 18-11180.3198.0192.7 + 82 2 16 6 9 4 7 9 6 6 3 6-11170.5198.4192.5 + 82 2 17 2 9 27 48 39 39 39 39 30-11162.5198.8192.3 + 82 2 18 22 27 48 22 32 22 39 56 34-11165.7199.2192.0 + 82 2 19 32 67 48 22 39 27 32 22 36-11170.9199.5191.7 + 82 2 20 18 15 39 27 22 18 27 39 26-11171.3199.8191.3 + 82 2 21 15 6 12 56 39 7 18 18 21-11165.2200.2191.0 + 82 2 22 18 39 12 27 56 48111 94 51-11163.7200.7190.7 + 82 2 23 80 15 7 18 15 39 27 32 29-11173.1201.1190.3 + 82 2 24 48 32 18 15 22 12 9 39 24-11185.9201.4190.1 + 82 2 25 32 94 56 48 39 22 32 12 42-11184.1201.8189.8 + 82 2 26 32 67 48 48 18 15 48 67 43-11204.0202.0189.5 + 82 2 27 15 12 9 22 15 7 7 9 12-11222.1202.1189.3 + 82 2 28 7 3 6 7 6 12 32 7 10-11224.0202.1189.0 + 82 3 1 9 9 18 39 94132 39207 68-11231.3202.2188.8 + 82 3 2207179111154 80 56 39 27107-11228.3202.4188.6 + 82 3 3 18 12 9 22 15 12 12 7 13-11230.1202.5188.4 + 82 3 4 7 4 12 27 18 12 7 9 12-11238.3202.8188.2 + 82 3 5 22 39 39 15 6 4 3 3 16-11245.4202.9188.0 + 82 3 6 4 2 2 2 3 3 2 4 3-11230.0202.9187.9 + 82 3 7 3 3 0 2 2 3 2 6 3-11228.3202.7187.7 + 82 3 8 12 6 5 5 7 7 12 32 11-11207.1202.2187.5 + 82 3 9 39 9 9 15 15 27 18 27 20-11192.2201.6187.2 + 82 3 10 32 27 18 18 9 12 4 7 16-11178.9200.5187.0 + 82 3 11 6 18 22 4 6 12 9 5 10-11178.2199.0186.8 + 82 3 12 4 5 4 3 5 18 15 12 8-11181.2197.3186.6 + 82 3 13 39 22 9 7 7 4 7 7 13-11185.5195.6186.3 + 82 3 14 15 7 5 6 12 12 22 7 11-11201.3194.3186.1 + 82 3 15 18 12 6 3 3 4 3 5 7-11207.6193.0185.9 + 82 3 16 5 7 3 3 4 5 4 5 5-11227.7191.9185.7 + 82 3 17 3 3 6 7 22 27 18 27 14-11230.4191.0185.5 + 82 3 18 27 22 22 22 18 18 18 12 20-11226.8190.1185.2 + 82 3 19 22 15 15 7 7 4 4 7 10-11219.7189.0185.0 + 82 3 20 3 9 27 12 15 12 9 12 12-11217.0188.0184.8 + 82 3 21 5 18 32 18 15 32 39 27 23-11212.4186.8184.6 + 82 3 22 80 94 48 18 18 27 12 9 38-11213.7185.8184.5 + 82 3 23 9 9 7 9 15 6 2 4 8-11202.4185.0184.4 + 82 3 24 5 7 7 15 9 22 18 12 12-11189.0184.2184.3 + 82 3 25 22 18 18 22 27 22 18 15 20-11189.9183.5184.2 + 82 3 26 12 9 6 12 6 18 7 18 11-11192.8182.9184.1 + 82 3 27 22 12 9 9 9 4 4 3 9-11195.4182.5184.1 + 82 3 28 5 18 7 4 3 2 2 5 6-11200.6182.1184.1 + 82 3 29 6 22 32 9 5 6 9 15 13-11198.0181.9184.1 + 82 3 30 15 22 7 12 27 15 7 12 15-11194.5181.6184.1 + 82 3 31 22 27 15 15 15 27 18 22 20-11184.1181.2184.1 + 82 4 1 9 5 7 9 27 7 39 56 20-11172.2180.7184.1 + 82 4 2 48 56 27 15 39 67 39 48 42-11172.0180.2184.0 + 82 4 3 32 80 80 32 39 48 32 39 48-11169.9179.8184.1 + 82 4 4 48 27 27 18 12 12 18 18 23-11158.2179.4184.1 + 82 4 5 18 27 22 27 7 15 22 32 21-11159.9178.9184.0 + 82 4 6 15 22 27 18 15 22 12 15 18-11165.2178.3184.0 + 82 4 7 7 6 5 6 5 5 4 4 5-11164.0177.8183.8 + 82 4 8 4 9 12 9 15 9 15 22 12-11162.1177.1183.6 + 82 4 9 18 9 5 5 12 9 12 9 10-11167.3176.3183.5 + 82 4 10 18 18 22 32 80 94 94132 61-11177.1175.4183.3 + 82 4 11 67 56 56 56 39 39 39 22 47-11178.7174.6183.1 + 82 4 12 7 18 9 15 39 12 12 6 15-11177.5173.8182.8 + 82 4 13 18 27 12 6 6 3 2 12 11-11170.9172.8182.6 + 82 4 14 3 4 7 5 6 7 5 7 6-11157.9171.7182.3 + 82 4 15 5 5 12 12 9 12 7 15 10-11152.2170.5181.9 + 82 4 16 7 9 7 5 3 27 22 12 12-11148.2169.6181.5 + 82 4 17 18 9 48 27 18 15 9 7 19-11145.9168.9181.0 + 82 4 18 4 4 9 5 22 18 15 15 12-11147.0168.4180.5 + 82 4 19 5 6 5 5 9 15 7 15 8-11145.1168.2180.1 + 82 4 20 18 27 32 22 15 9 7 27 20-11144.2167.7179.7 + 82 4 21 32 12 27 27 48 32 48 32 32-11145.2167.2179.4 + 82 4 22 39 56 12 6 6 12 6 4 18-11156.9166.6179.2 + 82 4 23 6 5 7 15 12 15 7 7 9-11175.2166.0179.0 + 82 4 24 15 9 5 5 12 9 56 12 15-11181.0165.3179.0 + 82 4 25 32 80111 94 56 27 12 7 52-11182.6164.7178.9 + 82 4 26 4 4 5 9 7 7 9 12 7-11178.3163.8179.0 + 82 4 27 2 9 18 6 15 48 56 39 24-11167.3162.8179.0 + 82 4 28 39 27 15 12 18 15 18 27 21-11161.0161.9179.1 + 82 4 29 22 22 18 18 27 39 56 48 31-11155.6161.3179.1 + 82 4 30 48 32 39 22 22 39 18 22 30-11149.8160.8179.0 + 82 5 1 32 18 27 18 18 39 15 7 22-11151.7160.6178.9 + 82 5 2 32 32 15 22 32 27 56 27 30-11147.4160.7178.8 + 82 5 3 32 48 48 32 67 56 39 39 45-11147.7161.2178.6 + 82 5 4 18 12 12 48 27 22 6 6 19-11144.7161.8178.4 + 82 5 5 9 18 18 15 15 15 15 4 14-11148.7162.4178.1 + 82 5 6 9 7 6 6 5 7 5 6 6-11153.0163.0177.8 + 82 5 7 6 5 2 5 6 2 3 4 4-11151.0163.2177.4 + 82 5 8 9 5 5 4 3 4 3 6 5-11150.8163.2177.2 + 82 5 9 12 15 7 5 7 4 6 5 8-11139.8163.3176.9 + 82 5 10 7 6 4 2 6 4 5 6 5-11130.7163.4176.6 + 82 5 11 15 9 6 6 9 9 12 9 9-11132.3163.7176.4 + 82 5 12 6 7 7 9 4 7 6 3 6-11132.3164.2176.2 + 82 5 13 6 6 6 3 4 9 9 7 6-11129.8164.5176.0 + 82 5 14 6 7 4 12 15 9 4 6 8-11132.2164.7175.9 + 82 5 15 22 15 12 15 22 39 27 6 20-11132.1164.8175.7 + 82 5 16 7 7 15 15 7 9 9 9 10-11139.0164.8175.6 + 82 5 17 7 15 6 9 18 18 12 9 12-11142.2164.5175.5 + 82 5 18 18 15 12 56 18 9 12 22 20-11146.8164.1175.4 + 82 5 19 18 15 12 9 9 9 7 15 12-11155.9163.6175.4 + 82 5 20 9 9 9 12 7 9 5 6 8-11155.6162.9175.4 + 82 5 21 4 6 15 9 15 6 5 7 8-11165.4162.1175.5 + 82 5 22 4 5 4 5 3 3 2 4 4-11158.8161.2175.6 + 82 5 23 6 3 2 0 2 3 3 0 2-11155.7160.3175.7 + 82 5 24 3 4 5 3 6 5 4 3 4-11144.8159.5175.9 + 82 5 25 4 6 4 5 7 12 9 18 8-11145.7159.0176.1 + 82 5 26 12 12 7 9 27 48 48 32 24-11158.0158.5176.1 + 82 5 27 18 39 56 39 94 80 48 56 54-11171.5158.2176.1 + 82 5 28 39 56 48 48 80 56 39 80 56-11171.3157.9176.1 + 82 5 29 32 32 48 32 32 22 48 32 35-11170.9158.0176.0 + 82 5 30 27 22 32 39 32 32 27 67 35-11142.8158.4175.9 + 82 5 31 32 27 39 32 22 39 32 27 31-11136.7159.1175.7 + 82 6 1 27 18 15 7 7 18 32 32 20-11134.2160.1175.5 + 82 6 2 48 32 18 7 7 5 15 9 18-11135.1161.1175.4 + 82 6 3 12 12 9 9 7 6 5 12 9-11141.5162.1175.2 + 82 6 4 12 7 3 4 7 5 4 12 7-11158.2163.2175.0 + 82 6 5 6 6 5 7 5 6 5 6 6-11156.6164.3174.9 + 82 6 6 27 15 27 12 12 9 6 7 14-11149.6165.4174.7 + 82 6 7 15 12 22 27 12 9 6 6 14-11158.6166.7174.6 + 82 6 8 5 5 4 7 9 18 12 15 9-11167.3167.8174.5 + 82 6 9 48 22 12 12 18 5 5 6 16-11177.4168.8174.4 + 82 6 10 22 94 67 56 80 67 9 15 51-11196.0169.4174.3 + 82 6 11 22 39 32 15 12 32 39 67 32-11224.2169.6174.3 + 82 6 12 67 18 12 7 80111 94 80 59-11238.3169.7174.2 + 82 6 13 48 32 48 48 94 56 94 80 63-11240.2169.4174.2 + 82 6 14 12 27 32 27 18 39 32 9 25-11240.8169.1174.3 + 82 6 15 18 15 39 12 22 56 22 22 26-11235.8168.6174.4 + 82 6 16 18 6 7 7 18 12 9 7 11-11210.6168.0174.5 + 82 6 17 5 9 12 9 9 4 3 0 6-11206.0167.3174.7 + 82 6 18 3 12 12 4 5 5 9 5 7-11200.7166.6174.9 + 82 6 19 6 6 18 15 32 39 27 48 24-11207.5166.1175.0 + 82 6 20 27 12 22 15 15 22 18 12 18-11207.1165.9175.1 + 82 6 21 7 7 15 12 15 6 2 9 9-11210.7165.7175.2 + 82 6 22 6 6 7 7 32 22 32 48 20-11197.2165.6175.2 + 82 6 23 32 39 32 9 15 7 7 15 20-11187.3165.7175.2 + 82 6 24 7 7 15 12 12 5 27 80 21-11168.2165.9175.2 + 82 6 25 32 22 32 27 9 5 3 5 17-11159.1166.4175.3 + 82 6 26 5 9 7 6 15 18 27 39 16-11142.3166.9175.3 + 82 6 27 56 27 27 15 18 9 48 56 32-11127.6167.6175.3 + 82 6 28 27 32 18 32 15 32 18 39 27-11123.1168.5175.3 + 82 6 29 32 9 9 27 9 27 15 27 19-11111.7169.3175.2 + 82 6 30 32111 48 32 12 9 22 48 39-11108.5170.0175.1 + 82 7 1 32 15 18 18 15 7 22 18 18-11106.5170.5175.0 + 82 7 2 12 15 15 6 7 7 12 9 10-11106.9171.1174.8 + 82 7 3 9 7 5 6 5 6 4 3 6-11109.4171.6174.7 + 82 7 4 4 4 2 3 2 2 0 2 2-11111.5172.0174.6 + 82 7 5 2 2 3 2 9 5 4 4 4-11114.1172.4174.5 + 82 7 6 15 5 5 12 9 39 22 15 15-11121.3172.6174.4 + 82 7 7 27 27 18 12 22 27 22 7 20-11128.2172.5174.4 + 82 7 8 7 18 15 18 9 22 12 22 15-11150.3172.4174.3 + 82 7 9 22 12 12 7 6 6 7 7 10-11176.6172.3174.3 + 82 7 10 15 15 7 6 12 6 12 5 10-11203.5172.5174.3 + 82 7 11 7 9 7 48 94 67 32 27 36-11226.4172.6174.3 + 82 7 12 12 12 6 48111111 48 32 48-11239.7172.7174.3 + 82 7 13 39 67 48 32 32236300400144-11252.6172.7174.3 + 82 7 14400179111132 80132111 80153-11269.2172.7174.3 + 82 7 15 48 39 27 48 32 32 32 32 36-11274.0172.6174.3 + 82 7 16 18 18 32 80 15 80 22132 50-11269.4172.6174.3 + 82 7 17 80 18 15 32 15 5 5 22 24-11273.3172.8174.4 + 82 7 18 32 12 22 27 48 22 18 9 24-11247.2173.1174.3 + 82 7 19 27 12 18 27 67 27 12 32 28-11234.7173.2174.3 + 82 7 20 48 56 48 18 7 4 5 6 24-11196.5173.3174.2 + 82 7 21 6 6 7 5 12 18 18 18 11-11173.7173.0174.1 + 82 7 22 22 6 9 6 39 27 12 6 16-11149.5172.4174.0 + 82 7 23 15 7 6 12 22 12 12 9 12-11128.5171.8173.8 + 82 7 24 22 48 39 32 39111 80 27 50-11117.8170.9173.7 + 82 7 25 22 48 27 12 18 12 18 22 22-11108.2170.0173.6 + 82 7 26 39 27 18 27 22 32 22 27 27-11102.1169.4173.5 + 82 7 27 22 48 56 12 12 22 15 27 27-11 97.8169.0173.4 + 82 7 28 22 15 22 27 15 22 32 12 21-11 96.4168.6173.3 + 82 7 29 32 7 27 18 39 27 15 9 22-11 97.5168.3173.1 + 82 7 30 12 6 22 18 18 56 22 27 23-11112.4168.0172.8 + 82 7 31 18 39 56 27 15 15 9 15 24-11114.4167.6172.5 + 82 8 1 9 12 6 7 15 9 18 18 12-11123.4167.1172.2 + 82 8 2 32 22 12 48 56 80 94 94 55-11138.2166.6171.8 + 82 8 3 27 27 22 27 32 27 27 18 26-11153.5166.2171.5 + 82 8 4 12 9 9 15 15 18 27 15 15-11167.3166.0171.1 + 82 8 5 12 12 32 12 18 27 18 15 18-11180.9165.8170.8 + 82 8 6 18 9 7 32 27 15 56 39 25-11201.2165.9170.5 + 82 8 7 80179154111132179 18 4107-11219.6166.1170.3 + 82 8 8 5 4 6 6 7 7 7 6 6-11217.5166.4170.0 + 82 8 9 7 6 22 27 5 32 48 39 23-11212.5166.8169.8 + 82 8 10 32 22 39 22 22 32 22 22 27-11209.5167.2169.5 + 82 8 11 22 12 9 27 39 56 48 7 28-11205.0167.7169.2 + 82 8 12 12 15 18 32 56 18 12 15 22-11195.2168.2168.9 + 82 8 13 9 12 15 9 12 6 6 12 10-11182.9168.7168.6 + 82 8 14 9 6 5 5 5 9 9 6 7-11176.8169.2168.3 + 82 8 15 6 3 0 2 3 3 3 6 3-11173.0169.8168.0 + 82 8 16 3 5 3 3 5 9 7 15 6-11161.4170.4167.8 + 82 8 17 12 18 15 5 7 4 27 39 16-11165.1171.1167.5 + 82 8 18 18 18 15 6 15 15 18 27 17-11166.4171.6167.3 + 82 8 19 9 9 7 9 6 7 18 12 10-11159.2171.9167.1 + 82 8 20 15 7 4 7 18 9 15 18 12-11144.7171.9166.9 + 82 8 21 27 27 9 12 12 15 9 7 15-11138.6171.6166.7 + 82 8 22 18 9 9 18 27 32 48 32 24-11138.8171.2166.5 + 82 8 23 15 9 15 12 18 22 18 27 17-11141.2170.7166.3 + 82 8 24 27 22 22 12 22 15 18 7 18-11142.9169.8166.2 + 82 8 25 15 18 27 18 15 15 12 39 20-11158.5168.6166.0 + 82 8 26 18 15 18 15 48 12 15 22 20-11166.4167.3165.8 + 82 8 27 18 12 9 12 12 9 9 9 11-11180.4165.8165.6 + 82 8 28 6 3 4 7 5 12 22 39 12-11181.4164.5165.4 + 82 8 29 22 32 67 39 67 32 22 22 38-11183.4163.3165.2 + 82 8 30 15 32 48 22 27 27 27 22 28-11174.5162.6165.0 + 82 8 31 15 15 22 6 22 12 15 18 16-11175.0162.1164.7 + 82 9 1 12 7 6 12 12 12 7 6 9-11184.3161.9164.5 + 82 9 2 12 9 12 9 12 12 15 15 12-11168.7162.0164.2 + 82 9 3 12 22 27 39 32 12 15 12 21-11171.0162.4164.0 + 82 9 4 15 22 27 39 48 32 27 48 32-11188.1162.8163.7 + 82 9 5 22 32 48 27 39 27 9111 39-11179.4163.2163.5 + 82 9 6207236236236300154132 94199-11172.1163.6163.2 + 82 9 7132 94 48111 67 80154 22 89-11176.8164.0163.0 + 82 9 8 6 15 9 15 6 9 15 22 12-11178.5164.4162.8 + 82 9 9111 32 48 56 32 48 56 18 50-11179.2164.7162.6 + 82 9 10 18 15 5 5 5 18 9 7 10-11165.6165.1162.4 + 82 9 11 12 12 7 15 18 18 9 15 13-11158.3165.6162.2 + 82 9 12 18 18 7 7 5 6 22 27 14-11152.5165.9161.9 + 82 9 13 32 18 6 18 12 15 5 15 15-11151.3166.2161.7 + 82 9 14 6 27 7 5 9 12 32 12 14-11147.4166.5161.4 + 82 9 15 4 18 15 7 12 12 12 18 12-11149.0166.7161.0 + 82 9 16 12 7 9 9 15 12 15 15 12-11147.3166.6160.7 + 82 9 17 6 7 15 27 6 12 7 5 11-11147.0166.2160.4 + 82 9 18 32 32 18 15 27 22 56 39 30-11143.2165.8160.1 + 82 9 19 18 27 18 27 32 39 32 27 28-11142.6165.3159.9 + 82 9 20 12 18 39 27 27 22 9 39 24-11146.9164.7159.6 + 82 9 21 48111 80 67 67 39 39154 76-11145.4164.2159.3 + 82 9 22179236207179111 80 32 56135-11146.2163.8159.1 + 82 9 23 27 48 32 27 15 18 22 18 26-11152.6163.5158.9 + 82 9 24 18 27 39 22 27 22 7 12 22-11165.4163.1158.7 + 82 9 25 7 7 5 7 9 22 32 15 13-11170.3162.7158.5 + 82 9 26 9 22 32 67154154154 80 84-11187.3162.4158.3 + 82 9 27111 39 32 27 22 56 27 22 42-11191.4162.1158.0 + 82 9 28 32 27 9 7 5 6 6 18 14-11196.9161.8157.7 + 82 9 29 7 9 15 12 9 5 9 4 9-11204.6161.7157.5 + 82 9 30 3 5 12 12 18 12 15 18 12-11202.4161.7157.2 + 82 10 1 7 15 15 15 18 32 39 80 28-11205.2161.9157.0 + 82 10 2 48 22 27 27 32 15 15 9 24-11209.4162.1156.8 + 82 10 3 15 12 15 6 5 5 6 12 10-11197.0162.4156.7 + 82 10 4 6 12 22 15 12 7 6 4 11-11182.3162.6156.5 + 82 10 5 15 22 9 9 4 3 5 6 9-11163.9162.6156.3 + 82 10 6 15 18 15 15 18 15 32 27 19-11151.9162.5156.2 + 82 10 7 56 67 56 27 27 32 9 7 35-11140.2162.3156.0 + 82 10 8 22 32 22 9 15 18 27 22 21-11136.9162.0155.8 + 82 10 9 6 6 4 4 3 6 3 12 6-11137.4161.8155.7 + 82 10 10 18 7 5 22 12 12 15 32 15-11134.8161.9155.5 + 82 10 11 18 12 12 12 15 7 22 12 14-11137.3162.1155.3 + 82 10 12 12 9 9 15 6 9 32 27 15-11136.4162.3155.1 + 82 10 13 22 32 12 15 18 67 27 80 34-11143.9163.1154.9 + 82 10 14 67 48 32 27 27 18 15 9 30-11140.4163.4154.8 + 82 10 15 7 9 6 9 12 5 12 6 8-11134.1163.2154.6 + 82 10 16 7 7 12 12 18 22 15 22 14-11129.8163.0154.5 + 82 10 17 27 32 15 22 18 12 18 27 21-11130.1163.0154.4 + 82 10 18 27 27 22 18 27 32 18 15 23-11132.8162.7154.4 + 82 10 19 15 12 18 7 15 15 22 32 17-11136.7162.5154.3 + 82 10 20 22 18 27 18 15 7 4 5 15-11146.2162.3154.3 + 82 10 21 15 12 12 6 5 12 18 6 11-11161.4162.3154.2 + 82 10 22 22 15 4 2 6 5 4 4 8-11168.2162.4154.2 + 82 10 23 2 3 6 5 6 6 9 5 5-11177.3162.6154.1 + 82 10 24 3 4 3 5 4 7 7 4 5-11190.9162.9154.0 + 82 10 25 6 27 15 7 22 12 15 18 15-11196.8163.5153.9 + 82 10 26 56 39 32 56 27 22 6 6 31-11193.5164.1153.8 + 82 10 27 7 12 18 22 18 18 18 18 16-11187.7164.9153.7 + 82 10 28 7 4 7 15 12 5 15 18 10-11181.4166.1153.7 + 82 10 29 22 56 56 32 39 27 18 32 35-11170.9167.3153.7 + 82 10 30 32 27 27 22 27 32 22 27 27-11166.7168.7153.7 + 82 10 31 22 32 18 3 32 27 94 48 35-11165.1170.3153.7 + 82 11 1 80 22 22 22 32 48 48 15 36-11159.6171.7153.7 + 82 11 2 18 12 15 22 27 67 48 48 32-11154.5173.0153.6 + 82 11 3 39 39 32 32 22 4 0 0 21-11147.4174.1153.6 + 82 11 4 2 4 9 7 9 12 12 6 8-11143.4174.9153.6 + 82 11 5 12 5 5 9 12 9 15 4 9-11136.4175.6153.5 + 82 11 6 9 12 27 15 7 12 5 3 11-11142.1175.9153.4 + 82 11 7 5 5 4 3 3 2 4 4 4-11142.3176.0153.3 + 82 11 8 5 4 6 6 9 27 32 9 12-11144.8175.9153.3 + 82 11 9 12 12 9 6 6 5 6 6 8-11147.5175.5153.3 + 82 11 10 12 7 6 12 15 9 15 15 11-11152.9175.0153.4 + 82 11 11 32 27 12 22 18 18 12 22 20-11154.1174.3153.5 + 82 11 12 27 12 9 22 18 12 15 12 16-11164.9173.6153.6 + 82 11 13 32 22 7 27 7 12 27 7 18-11161.2173.1153.6 + 82 11 14 9 7 12 18 18 15 7 12 12-11159.5172.9153.7 + 82 11 15 7 9 4 22 12 18 15 15 13-11157.0173.0153.6 + 82 11 16 9 9 12 12 4 2 6 15 9-11163.3173.2153.6 + 82 11 17 5 3 3 2 3 6 12 12 6-11158.0173.5153.6 + 82 11 18 9 18 9 9 18 18 6 12 12-11170.2173.7153.6 + 82 11 19 15 12 3 4 7 9 15 18 10-11182.3173.9153.6 + 82 11 20 5 3 2 5 5 3 12 15 6-11189.2174.0153.5 + 82 11 21 22 32 22 18 18 18 32 39 25-11200.9173.9153.5 + 82 11 22 94 80 39 15 4 5 5 2 31-11231.1173.9153.5 + 82 11 23 0 3 5 18 18 94 94 56 36-11196.1173.7153.4 + 82 11 24 18 12 15 67154132154111 83-11172.9173.7153.4 + 82 11 25111 56 67 67 56 32 22 18 54-11164.8173.7153.4 + 82 11 26 15 27 32 27 27 32 7 39 26-11168.8174.0153.2 + 82 11 27 7 18 18 22 22 18 22 9 17-11158.6174.4153.1 + 82 11 28 80 22 15 22 15 18 27 22 28-11160.3174.8153.1 + 82 11 29 18 12 7 18 27 56 80 39 32-11161.4175.0153.0 + 82 11 30 27 18 15 6 22 9 3 3 13-11164.8175.1153.0 + 82 12 1 2 0 5 2 2 0 3 2 2-11167.8174.9153.0 + 82 12 2 2 2 0 4 7 5 3 5 4-11166.3174.5153.0 + 82 12 3 6 5 7 7 12 15 7 15 9-11181.6174.0153.0 + 82 12 4 18 18 5 3 3 5 12 39 13-11194.5173.3153.0 + 82 12 5 27 27 15 3 4 4 6 3 11-11195.9172.6153.0 + 82 12 6 5 5 3 3 3 3 2 3 3-11210.4171.9153.2 + 82 12 7 2 18 18 9 39 27 94 27 29-11244.3171.3153.2 + 82 12 8 32 22 22 32 32 27 39 9 27-11241.7170.8153.2 + 82 12 9 7 15 12 18 56 18 12 7 18-11258.6170.3153.2 + 82 12 10 9 12 94 80 56 56 39 22 46-11273.5169.9153.1 + 82 12 11 22 32 6 9 9 27 27 27 20-11259.3169.3152.8 + 82 12 12 18 9 7 27 22 15 7 7 14-11251.1168.8152.5 + 82 12 13 5 7 5 6 3 6 7 12 6-11239.0168.3152.2 + 82 12 14 5 7 4 6 4 2 12 27 8-11235.6167.9151.9 + 82 12 15 15 15 18 22 7 6 3 2 11-11221.9167.5151.6 + 82 12 16 4 5 9 12 12 18 15 32 13-11213.2167.3151.4 + 82 12 17 32 48154 80 67 32 48 32 62-11200.5167.2151.2 + 82 12 18 39 27 48 80 48 39 32 12 41-11186.5167.1151.0 + 82 12 19 27 27 48 67 39 12 12 39 34-11176.8167.1150.8 + 82 12 20 32 32 39 48 80 48 56 32 46-11159.2167.1150.6 + 82 12 21 18 27 39 32 27 56 39 56 37-11149.4167.1150.4 + 82 12 22111111 15 9 39 32 7 12 42-11150.1167.2150.3 + 82 12 23 9 7 18 48 39 39 27 22 26-11157.0167.2150.2 + 82 12 24 39 12 18 18 18 18 18 9 19-11166.8167.1150.1 + 82 12 25 15 12 18 9 18 22 9 5 14-11170.6166.9150.1 + 82 12 26 12 15 9 9 12 7 5 3 9-11168.7166.9150.1 + 82 12 27 12 7 39 18 18 12 9 27 18-11166.2166.8150.1 + 82 12 28 18 22 18 18 22 15 32 22 21-11157.0166.8150.1 + 82 12 29 22 27 22 18 18 15 22 15 20-11147.3166.4150.2 + 82 12 30 22 27 18 18 7 9 15 7 15-11142.5165.8150.2 + 82 12 31 18 9 4 6 5 4 4 6 7-11134.4165.0150.3 + 83 1 1 9 22 12 6 6 12 12 12 11-11131.4163.9150.3 + 83 1 2 6 9 6 6 12 6 6 6 7-11131.4162.4150.4 + 83 1 3 6 5 12 18 27 9 7 5 11-11136.2161.2150.4 + 83 1 4 6 5 6 9 18 7 12 12 9-11138.2160.2150.5 + 83 1 5 4 2 6 9 15 7 3 3 6-11154.6159.3150.5 + 83 1 6 3 2 4 2 3 5 4 4 3-11161.6158.3150.5 + 83 1 7 6 4 3 4 5 4 3 3 4-11163.3157.5150.5 + 83 1 8 6 9 4 5 15 7 12 12 9-11155.9156.6150.3 + 83 1 9 18 9 9 12 7 56 15 32 20-11150.0155.8150.1 + 83 1 10154236132 48 18 12 9 15 78-11144.2155.0149.8 + 83 1 11 4 7 15 5 9 12 7 32 11-11139.3154.1149.5 + 83 1 12 27 27 22 18 18 9 12 9 18-11135.7153.3149.2 + 83 1 13 12 12 7 2 5 12 9 9 9-11135.1152.4148.8 + 83 1 14 6 9 7 5 9 5 7 18 8-11137.2151.4148.4 + 83 1 15 32 18 18 9 18 39 22 18 22-11141.0150.3148.0 + 83 1 16 18 32 27 32 27 27 27 7 25-11140.2149.2147.5 + 83 1 17 32 12 12 22 39 18 32 32 25-11138.0147.8147.2 + 83 1 18 39 22 22 56 32 27 27 27 32-11134.8146.5146.9 + 83 1 19 9 22 22 18 32 15 7 9 17-11127.4145.0146.7 + 83 1 20 18 18 15 18 4 5 18 12 14-11120.5143.4146.5 + 83 1 21 15 22 9 5 12 7 18 7 12-11116.1141.9146.5 + 83 1 22 7 6 15 7 9 5 7 5 8-11113.5140.6146.5 + 83 1 23 4 12 5 5 4 4 15 27 10-11115.4139.4146.6 + 83 1 24 15 27 12 9 18 18 27 48 22-11114.1138.3146.6 + 83 1 25 18 18 12 18 15 15 22 12 16-11122.7137.3146.7 + 83 1 26 12 12 12 18 15 15 12 4 13-11132.6136.3146.8 + 83 1 27 9 15 15 7 6 6 18 4 10-11133.6135.4146.9 + 83 1 28 3 0 6 4 9 15 12 27 10-11140.6134.6147.0 + 83 1 29 12 12 5 5 18 48 18 12 16-11148.9133.8147.1 + 83 1 30 9 18 18 39 27 15 9 15 19-11154.8133.1147.2 + 83 1 31 18 22 9 7 15 9 15 9 13-11161.9132.5147.3 + 83 2 1 12 15 12 9 15 12 9 4 11-11162.6131.8147.3 + 83 2 2 0 3 2 3 3 12 5 12 5-11156.5131.1147.2 + 83 2 3 9 9 6 4 7 2 7 12 7-11145.5130.3147.2 + 83 2 4 7 7 7 7 7179179 80 59-11156.8129.5147.0 + 83 2 5154207154154154 80132111143-11154.3128.8146.9 + 83 2 6 94 67 48 48 56 48 9 5 47-11152.3128.2146.7 + 83 2 7 18 39 56 56 56 80 15 27 43-11142.2127.8146.4 + 83 2 8 39 32 27 12 9 7 4 12 18-11133.3127.4146.3 + 83 2 9 15 15 6 12 27 18 27 22 18-11121.9127.1146.1 + 83 2 10 56 56 15 18 9 9 12 7 23-11113.4126.9146.0 + 83 2 11 4 5 7 27 39 12 56 39 24-11106.9126.7145.8 + 83 2 12 27 15 22 67 80 27 15 9 33-11 99.8126.6145.7 + 83 2 13 32 27 48 56 32 18 27 39 35-11 95.5126.3145.7 + 83 2 14 32 22 56 22 15 22 12 39 28-11 91.7126.0145.5 + 83 2 15 12 22 27 27 39 32 27 15 25-11 88.5125.4145.5 + 83 2 16 22 56 27 22 27 39 22 22 30-11 89.7124.7145.4 + 83 2 17 15 18 12 18 15 18 22 12 16-11 91.9123.9145.2 + 83 2 18 22 18 22 12 15 7 9 6 14-11 97.2123.3145.1 + 83 2 19 4 12 18 9 9 7 4 18 10-11 94.6122.6145.1 + 83 2 20 32 27 27 22 39 48 56 80 41-11 97.3122.1145.0 + 83 2 21 32 48 27 39 32 39 27 48 37-11101.6121.6144.9 + 83 2 22 56 18 15 15 12 6 22 22 21-11106.2121.2144.8 + 83 2 23 27 27 7 6 6 22 18 22 17-11112.0120.8144.7 + 83 2 24 15 18 7 9 15 22 22 7 14-11114.3120.3144.6 + 83 2 25 3 6 4 5 5 9 7 5 6-11120.3119.8144.4 + 83 2 26 7 3 4 5 3 5 5 5 5-11126.2119.3144.2 + 83 2 27 5 3 5 15 5 4 12 9 7-11138.3118.9144.0 + 83 2 28 3 5 4 6 5 7 15 18 8-11137.6118.5143.8 + 83 3 1 22 18 15 15 18 15 32 32 21-11145.4118.2143.6 + 83 3 2132111132 67 67 80 48 48 86-11138.7118.0143.4 + 83 3 3 80 32 39 32 32 27 27 22 36-11141.0117.9143.2 + 83 3 4 32 22 27 12 22 15 32 48 26-11143.7117.9143.0 + 83 3 5 22 32 32 32 27 22 15 39 28-11146.6117.8142.9 + 83 3 6 56 7 3 4 4 7 5 6 12-11139.3117.7142.6 + 83 3 7 22 9 6 12 5 0 0 5 7-11132.3117.5142.5 + 83 3 8 12 3 2 4 9 9 6 6 6-11128.1117.3142.3 + 83 3 9 15 9 4 4 5 7 12 5 8-11122.0117.1142.2 + 83 3 10 3 3 6 6 4 6 18 9 7-11115.1116.9142.0 + 83 3 11 12 6 7 18 27 9 32 80 24-11103.0116.6141.8 + 83 3 12 48 12 15 27 18 80 67154 53-11 99.5116.4141.7 + 83 3 13 80 27 27 18 15 9 12 7 24-11 95.8116.1141.6 + 83 3 14 12 39 56 18 32 15 27 12 26-11 95.9115.8141.4 + 83 3 15 12 18 12 15 18 22 9 15 15-11100.6115.7141.3 + 83 3 16 4 22 9 6 27 5 6 9 11-11107.8115.7141.2 + 83 3 17 22 18 9 12 4 4 5 12 11-11114.5115.5141.1 + 83 3 18 7 7 9 6 6 32 27 67 20-11117.7115.5141.0 + 83 3 19 39 48 32 22 27 22 15 18 28-11118.3115.5140.8 + 83 3 20 39 67 15 9 22 39 39 22 32-11120.7115.6140.7 + 83 3 21 32 12 9 7 9 9 15 7 13-11118.8115.8140.6 + 83 3 22 15 15 7 4 6 5 9 9 9-11117.2116.0140.5 + 83 3 23 12 12 15 5 7 7 6 6 9-11116.2116.4140.4 + 83 3 24 15 18 6 6 6 6 18 9 11-11117.1116.8140.3 + 83 3 25 22 56 94 67 56 32 39 32 50-11114.2117.2140.1 + 83 3 26 39 27 7 3 7 4 7 7 13-11114.7117.7140.0 + 83 3 27 2 0 2 6 5 3 3 5 3-11109.6118.1139.8 + 83 3 28 7 27 56 39 27 67 32 39 37-11104.9118.4139.6 + 83 3 29 48 56 39 22 32 48 39 32 40-11 98.9118.9139.4 + 83 3 30 18 32 32 22 18 39 15 39 27-11100.7119.4139.2 + 83 3 31 39 56 18 39 22 12 27 15 29-11 98.7120.0139.0 + 83 4 1 9 22 22 18 12 39 27 15 21-11100.7120.8138.7 + 83 4 2 22 12 18 12 15 15 15 18 16-11101.2121.6138.5 + 83 4 3 22 27 9 15 22 6 4 18 15-11101.4122.2138.2 + 83 4 4 7 27 9 12 12 22 27 15 16-11100.8122.8138.0 + 83 4 5 56 18 12 9 18 12 6 5 17-11 98.7123.2137.9 + 83 4 6 22 27 32 39 67 32 39 22 35-11 99.5123.4137.8 + 83 4 7 22 32 22 56 56 27 27 32 34-11102.2123.6137.7 + 83 4 8 32 32 32 15 48 22 12 9 25-11104.1123.7137.7 + 83 4 9 15 15 18 12 15 39 18 22 19-11106.1123.8137.7 + 83 4 10 27 27 39 18 15 18 18 18 23-11103.3124.0137.7 + 83 4 11 9 15 15 6 3 3 6 5 8-11104.4124.1137.7 + 83 4 12 15 12 6 22 9 12 9 6 11-11107.7124.2137.7 + 83 4 13 39 48 15 80 48 22 18 18 36-11109.1124.3137.7 + 83 4 14 27 39 39 32 32 56 80 56 45-11111.7124.2137.6 + 83 4 15111 56 80 39 56 39 67 27 59-11103.6124.1137.6 + 83 4 16 48 32 22 27 32 32 22 48 33-11105.1124.0137.6 + 83 4 17 18 18 18 15 7 27 32 18 19-11113.5124.0137.6 + 83 4 18 15 15 6 6 12 15 15 6 11-11120.7124.1137.5 + 83 4 19 3 7 9 15 9 12 12 7 9-11125.0124.3137.4 + 83 4 20 27 18 7 12 7 9 15 9 13-11127.4124.5137.3 + 83 4 21 18 22 9 6 7 6 12 18 12-11133.3125.0137.2 + 83 4 22 32 27 27 32 5 5 2 4 17-11139.7125.4137.0 + 83 4 23 22 22 15 7 7 9 7 48 17-11140.4125.9136.8 + 83 4 24 39 56 39 48 67 67 94 80 61-11142.7126.4136.5 + 83 4 25 39 27 15 27 22 32 39 56 32-11145.6127.0136.3 + 83 4 26 48 32 39 15 22 27 12 32 28-11146.8127.8136.0 + 83 4 27 27 22 15 7 12 12 7 9 14-11149.6128.7135.7 + 83 4 28 18 22 12 7 15 6 7 7 12-11156.4129.5135.4 + 83 4 29 22 15 22 18 48 80 67 39 39-11148.4130.2135.2 + 83 4 30 27 32 32 18 27 27 27 18 26-11147.2130.7134.9 + 83 5 1 15 12 18 22 18 7 80 18 24-11142.0131.0134.7 + 83 5 2 18 12 5 6 7 32 27 7 14-11145.4131.3134.6 + 83 5 3 12 7 12 9 18 7 7 12 11-11139.4131.5134.4 + 83 5 4 15 32 22 22 39 39 22 18 26-11132.9131.7134.2 + 83 5 5 15 12 7 27 67 27 22 18 24-11130.8131.8134.1 + 83 5 6 12 27 18 12 9 12 12 7 14-11125.8132.0134.0 + 83 5 7 5 7 7 12 12 9 7 7 8-11117.4132.2133.9 + 83 5 8 15 6 9 7 6 12 12 18 11-11127.0132.6133.8 + 83 5 9 15 7 5 3 4 4 5 5 6-11132.2132.9133.7 + 83 5 10 6 5 2 7 7 7 15 12 8-11143.5133.4133.6 + 83 5 11 15 15 56 80 32 67 80 56 50-11159.3133.8133.5 + 83 5 12 80 56 39 32 27 67 48 67 52-11160.4134.4133.3 + 83 5 13 27 22 67 32 39 56 27 27 37-11154.4135.0133.2 + 83 5 14 48 27 22 15 12 27 27 7 23-11153.5135.5133.0 + 83 5 15 22 18 18 18 22 18 15 27 20-11145.7136.1132.8 + 83 5 16 7 7 7 7 12 9 9 15 9-11134.0136.6132.6 + 83 5 17 39 12 18 32 67 39154154 64-11131.7137.1132.4 + 83 5 18 15 9 18 18 12 9 7 6 12-11137.6137.6132.2 + 83 5 19 4 7 9 6 3 3 4 3 5-11146.8137.9132.0 + 83 5 20 4 5 3 2 4 3 15 48 11-11151.8138.2131.8 + 83 5 21 7 18 18 15 56 80 32 7 29-11149.8138.4131.5 + 83 5 22 18 56 56 27 27 48 94 80 51-11152.0138.7131.2 + 83 5 23 48 32 56 27 22 39 56 27 38-11143.7138.9130.9 + 83 5 24 27 27 15 12 39207179111 77-11140.5139.2130.4 + 83 5 25 48 18 7 4 2 2 5 2 11-11138.8139.5130.1 + 83 5 26 2 3 4 5 5 12 27 18 10-11132.3139.9129.9 + 83 5 27 18 12 9 5 12 15 7 12 11-11130.5140.2129.6 + 83 5 28 7 9 3 3 3 5 4 3 5-11133.1140.4129.4 + 83 5 29 4 4 3 15 6 4 2 3 5-11139.0140.5129.2 + 83 5 30 3 6 7 9 5 18 18 7 9-11135.4140.5129.0 + 83 5 31 15 9 18 6 9 18 7 9 11-11138.0140.4128.8 + 83 6 1 6 32 12 9 6 15 12 7 12-11131.3140.3128.6 + 83 6 2 2 6 9 7 12 12 6 5 7-11139.0140.2128.4 + 83 6 3 9 5 6 9 4 9 4 6 7-11139.3140.0128.2 + 83 6 4 5 3 6 2 2 2 2 4 3-11149.2139.7127.9 + 83 6 5 3 4 5 9 9 9 7 6 7-11167.9139.5127.6 + 83 6 6 7 5 12 5 15 18 7 12 10-11191.4139.2127.3 + 83 6 7 9 9 7 5 4 6 7 3 6-11179.5138.8127.0 + 83 6 8 2 6 7 18 15 22 15 15 13-11173.7138.3126.6 + 83 6 9 7 7 22 15 12 32 39 18 19-11159.5137.9126.2 + 83 6 10 27 22 12 27 94 94 15 7 37-11150.5137.7125.8 + 83 6 11 22 12 9 6 5 5 15 7 10-11139.2137.5125.4 + 83 6 12 15 18 9 18 15 18 15 22 16-11134.5137.4124.9 + 83 6 13132179 67 39 48 22 48 22 70-11128.3137.3124.5 + 83 6 14 22 15 15 7 7 9 7 12 12-11126.4137.4124.1 + 83 6 15 18 12 15 18 18 15 27 6 16-11128.7137.4123.8 + 83 6 16 9 5 5 7 9 18 6 9 9-11128.8137.5123.4 + 83 6 17 7 6 15 12 12 32 32 22 17-11130.7137.6123.1 + 83 6 18 18 48 67 27 22 56 22 39 37-11130.5137.6122.8 + 83 6 19 18 22 22 22 22 22 15 15 20-11133.8137.6122.5 + 83 6 20 22 18 12 18 27 18 12 12 17-11136.9137.6122.3 + 83 6 21 18 27 27 9 12 18 32 15 20-11144.0137.6122.1 + 83 6 22 6 7 9 12 27 48 39 9 20-11148.9137.5121.9 + 83 6 23 15 12 39 18 15 18 7 15 17-11149.8137.3121.7 + 83 6 24 12 9 6 3 5 6 5 3 6-11141.7137.2121.5 + 83 6 25 2 0 2 4 4 4 15 7 5-11141.4137.1121.3 + 83 6 26 5 12 7 9 18 27 9 15 13-11144.1137.1121.0 + 83 6 27 6 5 9 6 6 7 7 15 8-11137.1137.2120.8 + 83 6 28 9 4 3 12 22 18 15 12 12-11129.4137.3120.6 + 83 6 29 7 12 22 22 18 9 6 7 13-11128.9137.2120.3 + 83 6 30 6 5 7 9 7 7 6 7 7-11126.8137.1120.2 + 83 7 1 9 7 4 5 6 5 7 5 6-11124.1137.1120.0 + 83 7 2 4 6 5 5 9 12 18 12 9-11125.4137.1119.9 + 83 7 3 12 6 7 9 5 7 12 9 8-11131.5137.3119.7 + 83 7 4 6 6 5 4 9 12 15 7 8-11137.2137.3119.6 + 83 7 5 6 4 4 9 6 9 4 4 6-11132.1137.4119.5 + 83 7 6 6 7 9 39 18 12 9 12 14-11132.4137.4119.4 + 83 7 7 5 6 6 18 22 12 12 27 14-11132.7137.4119.2 + 83 7 8 7 9 18 9 6 9 9 12 10-11127.9137.4119.0 + 83 7 9 15 22 5 18 7 9 12 12 13-11123.1137.2118.8 + 83 7 10 6 7 6 5 3 3 4 3 5-11123.1136.9118.6 + 83 7 11 3 3 3 6 4 4 3 7 4-11125.7136.7118.4 + 83 7 12 6 3 5 9 22 22 39 22 16-11124.7136.5118.3 + 83 7 13 48 27 27 18 15 5 4 7 19-11123.5136.1118.2 + 83 7 14 3 7 9 7 7 7 6 4 6-11124.4135.8118.1 + 83 7 15 5 6 3 3 4 4 6 7 5-11124.6135.3118.0 + 83 7 16 12 18 7 32 32 15 32 22 21-11121.3134.5117.9 + 83 7 17 27 27 22 32 22 22 27 32 26-11120.0133.4117.8 + 83 7 18 39 27 15 15 18 18 12 15 20-11116.4132.5117.7 + 83 7 19 12 7 9 9 6 15 9 7 9-11119.5131.6117.5 + 83 7 20 9 9 12 5 4 5 6 7 7-11125.1131.0117.4 + 83 7 21 5 9 6 7 6 7 6 6 7-11128.1130.4117.3 + 83 7 22 9 4 4 4 3 3 12 39 10-11138.9130.0117.3 + 83 7 23 15 18 18 39 15 15 39 27 23-11132.9129.7117.2 + 83 7 24 67 48 27 22 80 27 27 18 40-11136.3129.4117.2 + 83 7 25 15 22 12 9 12 9 7 6 12-11136.7129.2117.2 + 83 7 26 9 7 6 7 7 6 6 7 7-11128.9129.0117.3 + 83 7 27 5 7 7 15 7 7 12 18 10-11123.1128.8117.3 + 83 7 28 5 7 7 9 7 18 18 15 11-11127.1128.7117.4 + 83 7 29 15 32 12 22 9 12 9 9 15-11138.5128.6117.5 + 83 7 30 27 18 12 27 12 9 15 27 18-11144.3128.4117.6 + 83 7 31 15 7 5 5 9 5 6 5 7-11153.1128.1117.7 + 83 8 1 3 6 7 3 5 3 5 9 5-11151.1127.7117.7 + 83 8 2 32 27 56 18 56 22 32 22 33-11145.4127.2117.7 + 83 8 3 22 12 5 9 18 15 32 22 17-11139.4126.7117.7 + 83 8 4 7 9 5 4 4 3 5 6 5-11136.5126.2117.7 + 83 8 5 3 2 2 0 2 2 3 5 2-11136.5125.8117.6 + 83 8 6 4 7 2 3 7 7 9 6 6-11142.0125.3117.5 + 83 8 7 4 3 7 6 7 9 32 80 19-11141.9124.9117.4 + 83 8 8154179 94 32 9 9 5 12 62-11141.0124.6117.3 + 83 8 9 39 15 6 6 7 7 5 4 11-11142.9124.3117.2 + 83 8 10 3 9 4 6 6 4 2 5 5-11151.6124.0117.2 + 83 8 11 7 6 3 5 6 6 12 5 6-11151.3123.7117.3 + 83 8 12 12 32 22 15 27 22 48 32 26-11156.7123.4117.3 + 83 8 13 27 18 32 48 27 7 12 32 25-11147.3123.1117.4 + 83 8 14 15 6 6 4 7 12 15 9 9-11141.6122.8117.5 + 83 8 15 15 7 4 12 9 18 6 12 10-11135.8122.5117.6 + 83 8 16 5 0 0 2 6 5 9 7 4-11132.1122.3117.7 + 83 8 17 9 7 5 6 5 4 5 9 6-11126.8122.0117.8 + 83 8 18 3 2 0 2 2 2 0 3 2-11122.2121.9117.8 + 83 8 19 0 2 2 7 18 27 9 9 9-11117.7121.8117.9 + 83 8 20 4 12 6 6 7 12 27 12 11-11118.7121.7118.0 + 83 8 21 32 15 18 39 18 32 22 27 25-11114.2121.6118.1 + 83 8 22 6 6 7 15 12 12 48 12 15-11110.8121.5118.2 + 83 8 23 15 80 39 27 27 18 39 12 32-11110.8121.4118.3 + 83 8 24 18 32 27 32 18 18 22 18 23-11108.7121.4118.4 + 83 8 25 80 27 56 27 27 18 39 15 36-11104.2121.4118.6 + 83 8 26 39 39 15 18 15 32 48 6 27-11105.8121.5118.7 + 83 8 27 9 2 2 3 9 6 5 3 5-11103.7121.7118.9 + 83 8 28 12 7 5 9 9 5 12 6 8-11102.8121.9119.0 + 83 8 29 12 9 5 9 15 18 27 39 17-11105.7122.0119.0 + 83 8 30 32 27 22 9 12 15 12 18 18-11104.0122.1119.0 + 83 8 31 48 22 27 18 12 39 32 32 29-11104.2122.1119.0 + 83 9 1 32 39 6 12 9 9 15 12 17-11110.5122.1119.1 + 83 9 2 7 6 5 5 4 7 7 9 6-11110.9122.1119.0 + 83 9 3 7 9 9 3 5 5 4 2 6-11106.4122.1119.0 + 83 9 4 3 0 2 3 2 2 5 6 3-11110.5122.0118.9 + 83 9 5 6 2 0 0 4 4 5 6 3-11117.6122.0118.8 + 83 9 6 7 7 4 4 4 5 6 6 5-11120.7122.0118.8 + 83 9 7 6 7 7 22 32 56 27 15 22-11118.6121.8118.7 + 83 9 8 9 7 22 22 18 12 18 12 15-11118.4121.3118.6 + 83 9 9 15 12 9 15 15 15 27 22 16-11115.3120.8118.6 + 83 9 10 18 7 7 12 9 12 18 9 12-11109.7120.2118.6 + 83 9 11 18 7 7 12 12 12 22 9 12-11110.5119.4118.6 + 83 9 12 9 15 18 18 22 4 6 9 13-11104.9118.7118.6 + 83 9 13 12 6 7 5 9 6 4 9 7-11104.4118.1118.7 + 83 9 14 7 5 7 4 5 9 6 7 6-11105.2117.5118.7 + 83 9 15 18 7 15 12 7 39 39 32 21-11106.3116.9118.8 + 83 9 16 12 27 32 22 27 39 27 18 26-11106.3116.2118.8 + 83 9 17 27 56 48 22 7 18 12 12 25-11105.1115.6118.8 + 83 9 18 15 12 9 6 7 9 15 18 11-11102.5114.9118.9 + 83 9 19 39 48 27 39 48 39 94 94 54-11101.2114.3118.9 + 83 9 20 32 32 18 18 27 27 12 9 22-11100.4113.6118.9 + 83 9 21 18 12 18 5 9 12 5 9 11-11103.0112.9118.9 + 83 9 22 18 12 18 32 7 6 4 7 13-11106.0112.2118.9 + 83 9 23 4 4 2 5 6 5 3 4 4-11112.6111.5118.9 + 83 9 24 15 5 4 6 12 15 6 9 9-11111.8111.0118.9 + 83 9 25 39 32 22 18 32 56 39 27 33-11110.5110.6118.9 + 83 9 26 48 56 39 32 18 7 9 12 28-11114.6110.3118.9 + 83 9 27 27 9 9 12 12 7 7 22 13-11119.8110.0119.0 + 83 9 28 27 15 3 5 9 9 7 9 11-11114.8109.8119.1 + 83 9 29 22 18 4 7 3 3 5 5 8-11114.5109.7119.2 + 83 9 30 3 0 2 3 4 2 3 5 3-11113.0109.4119.3 + 83 10 1 7 6 4 5 4 27 12 22 11-11117.5109.3119.5 + 83 10 2 18 48 27 18 22 18 18 18 23-11120.4109.1119.6 + 83 10 3 12 15 32 27 18 9 7 22 18-11123.1108.8119.6 + 83 10 4 15 18 32 48 80111 22 15 43-11125.1108.6119.7 + 83 10 5 7 6 12 7 12 5 6 12 8-11126.6108.5119.8 + 83 10 6 18 12 15 15 22 48 27 18 22-11132.7108.3119.9 + 83 10 7 9 27 7 9 6 12 6 12 11-11133.9108.1119.9 + 83 10 8 15 12 12 9 15 39 18 9 16-11131.1107.9119.9 + 83 10 9 12 6 4 3 4 5 4 5 5-11130.4107.6119.9 + 83 10 10 2 4 6 5 5 9 22 6 7-11133.6107.4119.9 + 83 10 11 6 9 9 7 6 5 2 0 6-11138.3107.1119.8 + 83 10 12 2 4 3 5 3 4 6 7 4-11133.7106.7119.8 + 83 10 13 39 56 27 27 18 39 15 22 30-11133.5106.3119.8 + 83 10 14 22 12 18 9 15 18 39 39 22-11131.5106.0119.8 + 83 10 15 27 22 15 27 18 9 22 15 19-11127.0105.6119.8 + 83 10 16 7 27 9 6 7 15 15 15 13-11117.2105.1119.9 + 83 10 17 9 18 48 48 56 56 56 94 48-11110.9104.6119.9 + 83 10 18 56 48 56 67 48 48 67 15 51-11103.6104.2119.9 + 83 10 19 15 15 12 7 3 7 4 3 8-11105.2103.8119.9 + 83 10 20 0 9 5 7 3 4 9 9 6-11 99.1103.5119.8 + 83 10 21 6 4 12 18 18 22 22 27 16-11 89.3103.2119.8 + 83 10 22 48 27 22 12 18 7 9 12 19-11 87.2103.0119.8 + 83 10 23 9 9 9 12 27 18 48 39 21-11 87.8102.8119.8 + 83 10 24 32 15 9 18 22 22 39 15 22-11 88.6102.6119.7 + 83 10 25 9 7 4 5 7 6 4 7 6-11 89.2102.4119.7 + 83 10 26 2 5 6 4 2 2 2 2 3-11 89.1102.2119.8 + 83 10 27 0 2 3 2 2 3 5 0 2-11 88.9102.1119.8 + 83 10 28 9 3 0 0 2 7 9 48 10-11 90.4102.0119.9 + 83 10 29 39 32 39 39 39 18 39 27 34-11 90.7102.0120.0 + 83 10 30 27 18 22 9 18 27 22 6 19-11 92.6102.1120.1 + 83 10 31 12 7 12 12 9 9 3 12 10-11 95.5102.2120.2 + 83 11 1 27 27 9 18 18 5 18 32 19-11 98.3102.2120.2 + 83 11 2 32 80 48 39 32 18 15 18 35-11 97.6102.1120.2 + 83 11 3 18 7 6 12 15 56 32 15 20-11 96.9101.9120.1 + 83 11 4 7 7 4 6 12 7 4 6 7-11103.1101.8120.1 + 83 11 5 4 4 3 5 3 2 2 3 3-11105.1101.5120.1 + 83 11 6 2 2 2 3 4 3 5 2 3-11106.8101.3120.0 + 83 11 7 2 4 5 12 12 18 18 22 12-11108.5100.9120.0 + 83 11 8 56 18 27 32 27 22 15 18 27-11103.5100.6120.0 + 83 11 9 22 39 18 27 32 27132 48 43-11 99.2100.3120.0 + 83 11 10 48 22 18 12 18 27 67 18 29-11100.8 99.9120.0 + 83 11 11 39 12 15 48 48 22 80 56 40-11 96.7 99.5119.9 + 83 11 12 22 48 80 32 56 32 48 32 44-11 89.6 99.0119.9 + 83 11 13 9 22 22 32 18 22 32 32 24-11 91.9 98.5119.9 + 83 11 14 4 18 39 32 39 56 27 7 28-11 91.0 98.0119.9 + 83 11 15 18 15 15 12 27 27 39 32 23-11 90.9 97.5119.9 + 83 11 16 48 18 22 12 18 39 27 56 30-11 90.6 96.8119.9 + 83 11 17 48 32 27 80 22 32 32 27 38-11 85.6 96.2119.9 + 83 11 18 39 48 9 22 22 32 27 15 27-11 84.4 95.6119.9 + 83 11 19 22 18 18 9 15 15 15 32 18-11 82.3 95.0119.8 + 83 11 20 22 15 27 32 32 32 32 18 26-11 80.3 94.3119.8 + 83 11 21 15 9 5 4 4 15 15 7 9-11 79.3 93.7119.8 + 83 11 22 9 9 9 5 4 3 5 4 6-11 80.1 93.1119.7 + 83 11 23 3 3 3 0 2 0 3 2 2-11 78.2 92.5119.7 + 83 11 24 5 12 12 15 9 15 18 6 12-11 78.8 92.0119.7 + 83 11 25 12 22 15 15 12 6 15 27 16-11 79.2 91.5119.7 + 83 11 26 48 32 32 9 12 12 22 7 22-11 80.4 91.2119.6 + 83 11 27 2 6 9 12 12 7 6 4 7-11 84.4 90.9119.6 + 83 11 28 4 4 4 6 18 32 32 18 15-11 86.6 90.6119.5 + 83 11 29 32 18 9 39 22 12 22 27 23-11 89.4 90.5119.5 + 83 11 30 27 15 18 18 18 27 39 12 22-11 90.0 90.4119.5 + 83 12 1 18 18 9 9 9 9 15 18 13-11 90.5 90.5119.4 + 83 12 2 7 12 9 6 9 9 7 4 8-11 88.9 90.6119.4 + 83 12 3 3 3 2 2 4 4 4 7 4-11 88.5 90.8119.3 + 83 12 4 0 5 5 4 3 9 4 5 4-11 91.9 91.0119.2 + 83 12 5 15 18 15 9 12 18 15 22 16-11 92.0 91.1119.0 + 83 12 6 18 32 39 27 48 18 22 22 28-11 97.1 91.2118.8 + 83 12 7 22 32 27 27 27 32 27 22 27-11 98.6 91.3118.5 + 83 12 8 22 15 9 6 12 4 9 12 11-11 98.3 91.3118.3 + 83 12 9 7 4 2 2 2 3 3 0 3-11108.2 91.4118.2 + 83 12 10 0 15 39 32 27 27 27 12 22-11108.0 91.4118.0 + 83 12 11 12 15 18 27 80 48 27 39 33-11101.7 91.5117.9 + 83 12 12 22 15 18 22 39 27 22 18 23-11101.1 91.5117.8 + 83 12 13 27 22 15 22 18 22 32 32 24-11100.8 91.7117.7 + 83 12 14 18 27 22 18 22 22 32 32 24-11 96.5 91.9117.6 + 83 12 15 27 18 18 15 15 12 6 22 17-11 92.2 92.2117.5 + 83 12 16 15 7 4 6 3 0 4 5 6-11 93.5 92.7117.5 + 83 12 17 9 5 3 4 6 7 7 7 6-11 92.0 93.4117.4 + 83 12 18 5 0 0 3 6 15 12 12 7-11 90.1 94.2117.4 + 83 12 19 15 15 9 9 5 7 7 7 9-11 86.2 95.0117.3 + 83 12 20 15 7 2 2 2 2 3 5 5-11 83.6 95.9117.2 + 83 12 21 3 6 2 2 3 5 4 4 4-11 82.3 96.7117.1 + 83 12 22 12 9 9 22 12 18 9 9 13-11 82.9 97.6117.0 + 83 12 23 12 15 12 7 15 9 12 6 11-11 83.0 98.4116.9 + 83 12 24 5 2 4 6 32 32 15 27 15-11 83.1 99.0116.8 + 83 12 25 22 12 6 12 12 9 12 6 11-11 82.4 99.5116.7 + 83 12 26 7 15 6 9 7 12 39 32 16-11 82.9 99.9116.6 + 83 12 27 27 15 5 7 7 12 27 18 15-11 83.5100.2116.5 + 83 12 28 18 15 12 18 15 6 7 12 13-11 80.7100.6116.4 + 83 12 29 15 6 12 12 15 6 3 4 9-11 81.1100.9116.3 + 83 12 30 12 27 32 48 32 56 39 18 33-11 81.3101.5116.2 + 83 12 31 15 27 18 18 18 48 39 32 27-11 83.8102.2116.2 + 84 1 1 39 32 39 18 27 27 22 22 28-11 84.3102.9116.1 + 84 1 2 27 27 27 18 39 12 6 7 20-11 87.4103.7116.0 + 84 1 3 18 18 27 12 27 27 15 12 20-11 89.5104.4116.0 + 84 1 4 27 22 80 27 15 12 32 27 30-11 91.0105.0115.9 + 84 1 5 56 56 22 12 27 9 12 12 26-11 88.2105.5115.8 + 84 1 6 12 15 12 18 18 18 9 9 14-11 85.6105.9115.7 + 84 1 7 4 9 5 6 4 4 4 6 5-11 86.5106.3115.6 + 84 1 8 4 2 5 5 2 3 2 2 3-11 92.3106.7115.6 + 84 1 9 2 6 3 4 2 4 4 7 4-11 94.4107.1115.5 + 84 1 10 9 12 5 5 5 18 27 27 14-11 95.2107.5115.5 + 84 1 11 15 9 6 7 6 6 18 15 10-11 96.8108.1115.4 + 84 1 12 9 7 5 4 3 6 3 6 5-11101.1108.8115.3 + 84 1 13 3 5 5 3 15 18 9 15 9-11102.1109.6115.2 + 84 1 14 5 7 3 4 12 4 7 7 6-11 99.2110.5115.1 + 84 1 15 6 4 12 3 5 5 4 5 6-11 97.8111.5115.0 + 84 1 16 4 6 5 3 7 9 7 7 6-11 96.6112.4115.0 + 84 1 17 22 12 5 4 3 3 4 3 7-11 95.2113.2114.9 + 84 1 18 0 3 2 5 6 6 9 18 6-11 95.0113.9114.8 + 84 1 19 32 22 22 18 18 15 7 15 19-11 93.4114.4114.7 + 84 1 20 12 18 6 18 4 4 3 5 9-11102.2114.9114.6 + 84 1 21 9 22 15 22 4 4 12 12 13-11103.3115.4114.4 + 84 1 22 22 12 15 12 9 7 9 6 12-11110.5115.9114.3 + 84 1 23 9 7 4 4 7 6 7 4 6-11113.3116.2114.2 + 84 1 24 15 7 9 3 2 0 2 2 5-11126.4116.4114.0 + 84 1 25 2 7 12 7 6 12 12 18 10-11146.8116.6113.9 + 84 1 26 18 27 32 7 9 15 12 9 16-11164.8116.8113.8 + 84 1 27 6 15 6 4 5 9 6 12 8-11172.3117.0113.7 + 84 1 28 15 15 22 32 18 32 18 22 22-11168.9117.1113.5 + 84 1 29 48 22 18 27 15 6 12 18 21-11174.6117.3113.4 + 84 1 30 32 39 18 32 32 39 39 22 32-11161.5117.5113.2 + 84 1 31 15 15 15 18 22 48 22 27 23-11169.3117.7113.0 + 84 2 1 32 22 22 18 5 12 15 5 16-11154.6117.9112.8 + 84 2 2 7 3 7 4 7 18 48 67 20-11142.0118.3112.7 + 84 2 3 56 15 6 5 5 9 22 32 19-11131.4118.8112.5 + 84 2 4 80 56 32 32 67 48 48 67 54-11126.0119.5112.4 + 84 2 5 22 22 18 18 12 7 6 4 14-11114.2120.0112.2 + 84 2 6 7 4 4 5 5 7 18 18 9-11111.8120.5112.1 + 84 2 7 15 12 7 7 7 6 4 12 9-11113.6121.1112.0 + 84 2 8 9 4 9 9 7 7 6 7 7-11127.2121.6111.8 + 84 2 9 12 9 9 9 6 7 5 12 9-11139.9122.2111.7 + 84 2 10 12 5 7 15 9 22 48 48 21-11136.7122.7111.5 + 84 2 11 80 27 18 7 12 7 9 7 21-11141.1123.1111.3 + 84 2 12 6 9 7 6 4 15 7 39 12-11135.8123.5111.2 + 84 2 13 56 39 27 39 22 32 48 22 36-11128.4123.8111.0 + 84 2 14 56 80 27 32 39 32 22 56 43-11120.3124.0110.9 + 84 2 15 67 39 18 15 4 3 2 7 19-11113.4124.4110.7 + 84 2 16 12 7 6 4 5 4 9 7 7-11114.5125.0110.6 + 84 2 17 9 18 9 9 5 6 5 12 9-11116.5125.6110.5 + 84 2 18 27 22 15 22 15 12 18 4 17-11122.2126.1110.4 + 84 2 19 3 7 6 5 7 12 9 6 7-11128.4126.7110.3 + 84 2 20 12 4 6 6 6 18 27 27 13-11134.6127.3110.2 + 84 2 21 27 18 7 9 15 15 7 12 14-11143.8127.8110.1 + 84 2 22 12 6 6 6 7 9 9 7 8-11158.0128.2110.0 + 84 2 23 12 7 27 18 22 12 12 7 15-11166.1128.6109.9 + 84 2 24 12 6 7 15 6 9 7 15 10-11172.9128.9109.8 + 84 2 25 9 2 6 12 6 2 4 15 7-11169.4129.2109.8 + 84 2 26 2 4 7 18 15 32 22 27 16-11164.2129.4109.7 + 84 2 27 80 56 27 15 9 15 32 39 34-11154.3129.6109.7 + 84 2 28 7 6 12 7 15 9 5 3 8-11148.8129.6109.7 + 84 2 29 0 4 12 15 18 22 9 4 11-11148.1129.6109.6 + 84 3 1 2 0 7 18 32 32 67 94 32-11143.6129.5109.6 + 84 3 2 67 48 39 39 22 18 39 32 38-11138.2129.5109.5 + 84 3 3 56 67 27 39 18 22 32 18 35-11122.5129.4109.5 + 84 3 4 18 15 9 9 4 9 3 2 9-11114.4129.4109.5 + 84 3 5 2 3 4 5 4 2 6 3 4-11109.3129.3109.4 + 84 3 6 7 22 48 9 22 22 67 48 31-11109.5129.0109.3 + 84 3 7 48 39 27 18 18 22 18 22 27-11105.0128.4109.3 + 84 3 8 22 18 27 22 18 32 39 56 29-11103.8127.8109.2 + 84 3 9 32 15 9 5 9 6 12 15 13-11102.4127.2109.1 + 84 3 10 18 9 15 7 9 18 22 39 17-11 98.8126.4109.0 + 84 3 11 18 5 3 9 7 6 12 15 9-11 98.6126.0108.9 + 84 3 12 18 18 5 5 5 12 12 15 11-11102.3125.5108.8 + 84 3 13 22 18 12 9 56 22 6 4 19-11114.7125.2108.7 + 84 3 14 4 9 9 9 6 5 5 2 6-11121.1125.1108.7 + 84 3 15 3 3 5 7 9 4 9 32 9-11134.4125.2108.6 + 84 3 16 4 9 27 5 32 32 12 7 16-11124.0125.6108.5 + 84 3 17 5 32 32 27 22 32 7 15 22-11129.1126.3108.4 + 84 3 18 6 12 12 48 15 32 9 12 18-11125.8127.2108.3 + 84 3 19 15 22 18 27 5 4 3 3 12-11126.5128.0108.2 + 84 3 20 7 2 4 9 4 0 0 2 4-11126.3128.7108.2 + 84 3 21 0 5 6 4 5 15 12 12 7-11122.4129.1108.1 + 84 3 22 32 27 32 18 3 9 22 22 21-11122.7129.3108.0 + 84 3 23 22 27 22 27 22 9 7 4 18-11115.1129.2107.9 + 84 3 24 7 12 6 7 15 15 6 12 10-11113.0129.1107.8 + 84 3 25 32 39 39 32 39 39 32 18 34-11111.6128.9107.7 + 84 3 26 18 6 7 9 9 12 32 32 16-11120.2128.8107.6 + 84 3 27 27 18 18 27 15 18 32 32 23-11129.1128.8107.5 + 84 3 28 22 39 32 32 48 39154111 60-11135.9128.8107.4 + 84 3 29 67 94 80 39 39 27 39 32 52-11138.1128.9107.3 + 84 3 30 32 32 39 32 32 22 27 18 29-11143.8129.1107.2 + 84 3 31 22 27 15 18 32 15 15 56 25-11143.7129.4107.1 + 84 4 1 48 48 48 48 22 27 18 12 34-11135.7129.5106.9 + 84 4 2 39 18 56 48 32 56 48 67 46-11134.6129.6106.8 + 84 4 3 56 48 27 32 27 39 48 56 42-11128.8129.5106.7 + 84 4 4 56 56 48 27 39132179132 84-11129.5129.3106.5 + 84 4 5 67 48 39 22 27 94 80 80 57-11118.7128.8106.4 + 84 4 6 27 22 7 9 9 7 9 9 12-11112.1128.4106.2 + 84 4 7 22 9 12 80 22 12 27 18 25-11107.8128.0106.1 + 84 4 8 56 94 67 67 32 32 32 80 58-11100.7127.8105.9 + 84 4 9154 39 15 12 15 15 32 12 37-11 94.9127.6105.8 + 84 4 10 6 9 6 6 5 6 9 15 8-11 93.9127.5105.6 + 84 4 11 32 6 9 15 7 18 15 5 13-11 97.3127.5105.4 + 84 4 12 5 22 7 6 12 27 9 32 15-11107.2127.4105.3 + 84 4 13 18 15 12 9 18 15 15 15 15-11113.7127.5105.1 + 84 4 14 7 7 3 2 9 32 32 56 19-11118.8127.7104.9 + 84 4 15 27 12 12 9 6 5 5 2 10-11119.7127.9104.8 + 84 4 16 3 3 7 5 5 2 4 6 4-11117.2128.0104.7 + 84 4 17 3 3 2 2 18 15 12 6 8-11122.9128.2104.6 + 84 4 18 6 12 6 6 7 5 7 7 7-11119.9128.4104.5 + 84 4 19 6 5 15 12 12 12 15 15 12-11112.5128.6104.4 + 84 4 20 12 48 39 18 9 15 6 9 20-11124.1128.9104.4 + 84 4 21 18 6 15 6 12 9 6 15 11-11127.7129.1104.3 + 84 4 22 12 5 5 5 3 3 2 2 5-11130.8129.2104.3 + 84 4 23 5 5 0 5 6 6 9 15 6-11136.6129.2104.2 + 84 4 24 6 9 9 5 5 5 4 6 6-11142.9129.1104.2 + 84 4 25 7 7 18 7 56 56 32 80 33-11152.4128.7104.2 + 84 4 26 94111 80 67 80132179 80103-11174.0128.5104.1 + 84 4 27 56 39 32 15 9 15 15 27 26-11183.7128.1104.1 + 84 4 28 12 18 22 27 15 27 9 9 17-11182.6127.8104.0 + 84 4 29 9 12 18 12 18 39 15 18 18-11178.2127.4103.9 + 84 4 30 5 12 5 4 2 2 6 39 9-11170.8127.0103.9 + 84 5 1 27 18 15 22 32 27 12 22 22-11153.7126.6103.8 + 84 5 2 22 18 15 22 12 9 4 4 13-11139.3126.2103.7 + 84 5 3 4 3 15 15 6 9 15 27 12-11123.1125.9103.6 + 84 5 4 15 15 15 18 9 6 9 15 13-11113.5125.8103.6 + 84 5 5 15 9 15 15 22 32 67 39 27-11114.9125.8103.5 + 84 5 6 22 15 18 4 9 7 6 2 10-11108.1125.7103.4 + 84 5 7 3 2 0 12 7 3 3 3 4-11118.3125.5103.3 + 84 5 8 5 5 6 7 3 4 4 3 5-11121.9125.1103.2 + 84 5 9 5 12 12 12 15 32 15 48 19-11138.3124.8103.1 + 84 5 10 18 48 22 15 39 56 12 6 27-11150.9124.3103.0 + 84 5 11 12 7 15 5 15 9 7 7 10-11147.9123.9102.9 + 84 5 12 7 6 9 12 9 9 22 18 12-11148.2123.5102.9 + 84 5 13 27 15 9 5 3 5 4 3 9-11151.4123.1102.8 + 84 5 14 0 2 3 15 22 18 15 22 12-11146.9122.8102.8 + 84 5 15 15 7 18 9 5 7 6 3 9-11139.6122.5102.7 + 84 5 16 3 7 5 12 7 4 4 12 7-11137.3122.3102.7 + 84 5 17 12 22 32 80 32 48 22 12 33-11130.1122.2102.6 + 84 5 18 9 9 9 6 7 12 9 39 13-11131.9122.1102.6 + 84 5 19 32 48 39 15 9 9 15 9 22-11137.6122.1102.6 + 84 5 20 18 15 27 18 32 48 39 39 30-11138.0122.2102.5 + 84 5 21 80 39 56 27 32 18 48 56 45-11145.3122.2102.5 + 84 5 22 18 22 48 22 39 56 18 32 32-11130.1122.3102.5 + 84 5 23 67 27 32 18 22 15 39 22 30-11130.0122.3102.5 + 84 5 24 12 9 22 27 56 56 32 22 30-11126.9122.1102.5 + 84 5 25 18 5 6 5 15 15 22 39 16-11125.7122.0102.5 + 84 5 26 22 27 27 9 7 12 9 3 15-11121.0121.8102.5 + 84 5 27 2 2 12 12 12 7 7 5 7-11120.3121.6102.5 + 84 5 28 4 3 3 6 5 5 12 22 8-11118.5121.3102.5 + 84 5 29 9 15 6 6 9 9 9 9 9-11121.0121.1102.5 + 84 5 30 15 15 22 27 9 18 15 12 17-11119.7121.0102.5 + 84 5 31 6 6 3 6 4 3 3 27 7-11115.9120.7102.4 + 84 6 1 6 4 4 9 9 9 7 6 7-11116.1120.3102.4 + 84 6 2 12 18 9 9 12 18 7 12 12-11111.3119.9102.4 + 84 6 3 9 5 15 22 94 67 27 18 32-11109.6119.3102.3 + 84 6 4 22 39 18 32 27 18 27 22 26-11106.8118.7102.3 + 84 6 5 27 27 18 22 27 7 6 15 19-11104.6118.0102.2 + 84 6 6 15 18 12 12 12 7 15 9 13-11 98.9116.9102.2 + 84 6 7 15 9 12 18 12 4 7 4 10-11 97.3115.7102.1 + 84 6 8 4 2 2 4 12 15 27 15 10-11 94.6114.5102.0 + 84 6 9 12 12 39 18 18 22 27 15 20-11 93.6113.4101.9 + 84 6 10 15 12 12 7 22 22 15 18 15-11 92.3112.3101.9 + 84 6 11 12 12 15 9 15 12 6 7 11-11 93.2111.5101.8 + 84 6 12 12 12 7 9 6 3 2 3 7-11 93.0110.8101.7 + 84 6 13 0 7 7 3 6 6 12 3 6-11 98.6110.4101.7 + 84 6 14 4 5 3 5 3 4 4 5 4-11110.2110.1101.6 + 84 6 15 7 12 9 18 18 39 48 39 24-11116.5109.7101.6 + 84 6 16111 67 48 39 27 12 9 22 42-11110.3109.4101.5 + 84 6 17 9 6 22 18 9 9 12 4 11-11109.5109.0101.5 + 84 6 18 12 9 18 22 67 39 27 22 27-11108.9108.5101.4 + 84 6 19 27 18 22 27 39 32 32 32 29-11107.8107.8101.4 + 84 6 20 39 32 15 15 7 7 7 4 16-11106.6106.9101.3 + 84 6 21 3 2 0 2 2 4 7 7 3-11103.4106.1101.3 + 84 6 22 9 6 4 3 9 6 4 6 6-11104.6105.3101.3 + 84 6 23 4 4 9 3 4 5 22 39 11-11105.3104.5101.2 + 84 6 24 67 56 5 9 9 9 7 12 22-11103.6103.8101.2 + 84 6 25 15 15 9 7 9 7 12 9 10-11104.6103.2101.2 + 84 6 26 9 7 9 7 5 7 12 12 9-11100.1102.5101.1 + 84 6 27 27 22 12 7 6 2 4 4 11-11101.5102.0101.1 + 84 6 28 15 18 18 9 22 27 27 32 21-11 99.5101.5101.1 + 84 6 29 22 7 6 15 5 15 12 18 13-11100.3101.0101.1 + 84 6 30 15 12 7 7 12 18 18 7 12-11101.1100.5101.0 + 84 7 1 5 12 7 9 5 22 39 15 14-11101.7 99.8101.0 + 84 7 2 22 6 7 7 7 18 12 18 12-11103.6 99.4101.0 + 84 7 3 27 7 7 12 12 15 9 7 12-11104.8 98.8100.9 + 84 7 4 6 9 15 5 7 7 22 22 12-11105.7 98.3100.8 + 84 7 5 22 15 18 7 6 9 9 7 12-11104.4 97.8100.8 + 84 7 6 9 15 6 5 9 6 12 18 10-11100.3 97.3100.7 + 84 7 7 6 6 6 5 5 6 15 9 7-11100.1 96.9100.7 + 84 7 8 6 12 15 7 9 15 6 9 10-11101.1 96.4100.6 + 84 7 9 12 15 7 6 9 12 7 5 9-11104.5 95.9100.6 + 84 7 10 6 12 7 12 32 18 18 9 14-11101.3 95.4100.5 + 84 7 11 6 2 2 3 7 18 9 39 11-11 96.8 94.9100.4 + 84 7 12 32 22 18 7 7 4 6 7 13-11 94.7 94.4100.3 + 84 7 13 12 39132 56132 56 39 32 62-11 92.6 94.0100.2 + 84 7 14 80 56 32 39 27 39 27 18 40-11 92.2 93.5100.1 + 84 7 15 22 27 27 18 12 22 32 39 25-11 92.2 93.2100.1 + 84 7 16 22 22 22 32 9 15 39 39 25-11 90.1 93.0100.0 + 84 7 17 32 80 48 48 27 48 32 27 43-11 87.3 92.8 99.9 + 84 7 18 15 27 7 12 22 27 27 15 19-11 85.5 92.7 99.9 + 84 7 19 22 22 18 12 9 9 12 12 15-11 84.7 92.7 99.8 + 84 7 20 12 9 15 6 7 9 5 32 12-11 84.8 92.6 99.8 + 84 7 21 9 6 12 7 5 4 5 15 8-11 86.7 92.6 99.7 + 84 7 22 7 22 6 6 6 9 9 6 9-11 86.3 92.6 99.6 + 84 7 23 12 5 5 5 7 9 9 12 8-11 87.3 92.6 99.6 + 84 7 24 18 18 12 22 5 9 6 7 12-11 86.8 92.6 99.5 + 84 7 25 9 9 7 6 9 5 12 9 8-11 85.9 92.4 99.4 + 84 7 26 15 7 4 5 3 2 4 4 6-11 83.4 92.1 99.2 + 84 7 27 22 9 7 5 22 15 18 12 14-11 83.0 91.8 98.9 + 84 7 28 32 32 22 9 15 12 18 4 18-11 82.5 91.5 98.7 + 84 7 29 4 7 6 6 9 39 18 7 12-11 82.3 91.2 98.4 + 84 7 30 12 6 5 6 15 9 5 6 8-11 82.2 90.9 98.1 + 84 7 31 6 5 5 6 22 18 15 56 17-11 83.0 90.6 97.8 + 84 8 1 67132111 80 56 39 56 56 75-11 84.0 90.3 97.6 + 84 8 2 48 48 27 15 22 18 9 9 25-11 86.3 90.0 97.3 + 84 8 3 12 15 15 18 9 12 9 18 14-11 88.4 89.6 97.1 + 84 8 4 27 9 15 9 18 12 12 9 14-11 85.7 89.3 97.0 + 84 8 5 12 9 7 4 5 9 9 3 7-11 85.7 88.9 96.8 + 84 8 6 4 4 3 4 6 6 4 5 5-11 89.9 88.6 96.7 + 84 8 7 3 3 3 4 4 3 3 5 4-11 92.4 88.2 96.6 + 84 8 8 18 15 12 18 18 9 6 18 14-11 94.0 87.9 96.5 + 84 8 9 6 9 15 15 22 9 9 48 17-11 94.4 87.6 96.3 + 84 8 10 6 7 7 15 5 6 9 6 8-11 95.4 87.3 96.2 + 84 8 11 4 6 18 15 6 6 12 22 11-11 90.8 86.9 96.0 + 84 8 12 32 12 12 18 12 6 15 15 15-11 88.0 86.6 95.8 + 84 8 13 15 15 5 4 6 6 6 5 8-11 86.5 86.2 95.6 + 84 8 14 4 2 5 9 39 39 27 39 21-11 84.0 85.8 95.5 + 84 8 15 39 39 15 15 18 27 15 12 23-11 82.6 85.5 95.3 + 84 8 16 18 27 15 12 22 9 7 9 15-11 83.1 85.2 95.2 + 84 8 17 15 18 15 6 6 7 7 15 11-11 81.0 84.9 95.1 + 84 8 18 4 7 6 7 6 5 9 5 6-11 79.1 84.5 95.0 + 84 8 19 3 3 5 9 12 27 39 15 14-11 76.2 84.1 94.8 + 84 8 20 12 12 22 5 5 9 9 3 10-11 75.6 83.8 94.7 + 84 8 21 5 3 3 4 5 2 3 2 3-11 77.2 83.5 94.5 + 84 8 22 0 0 2 2 2 2 0 2 1-11 75.7 83.2 94.3 + 84 8 23 3 2 3 3 18 9 7 18 8-11 76.0 83.0 94.1 + 84 8 24 9 22 39 32 32 22 18 9 23-11 81.6 82.7 93.8 + 84 8 25 15 22 15 48 6 7 18 15 18-11 83.0 82.5 93.6 + 84 8 26 9 22 18 6 7 7 5 4 10-11 87.7 82.3 93.3 + 84 8 27 15 9 9 22 39 56 56 80 36-11 90.4 82.2 93.0 + 84 8 28 48 9 67 39 22 39 22 39 36-11 88.6 82.0 92.8 + 84 8 29 18 27 39 18 18 12 15 22 21-11 90.3 81.9 92.6 + 84 8 30 22 18 12 18 22 15 9 12 16-11 91.8 81.8 92.4 + 84 8 31 22 9 12 6 15 12 7 9 12-11 93.1 81.6 92.2 + 84 9 1 15 12 18 5 3 7 12 15 11-11 94.1 81.4 92.0 + 84 9 2 15 22 12 7 7 15 9 5 12-11 93.2 81.3 91.8 + 84 9 3 15 32 18 7 6 6 6 7 12-11 94.5 81.1 91.7 + 84 9 4 12 12 56 48132179 18 12 59-11 91.9 81.0 91.6 + 84 9 5 56132 94 48 39 67 48 18 63-11 89.8 80.9 91.5 + 84 9 6 12 9 18 15 9 12 9 9 12-11 85.9 80.8 91.4 + 84 9 7 9 7 6 6 6 6 6 3 6-11 85.2 80.7 91.3 + 84 9 8 5 5 9 7 15 12 9 27 11-11 83.4 80.7 91.2 + 84 9 9 12 7 9 7 6 6 12 39 12-11 80.6 80.6 91.1 + 84 9 10 18 15 22 48 7 27 32 32 25-11 79.1 80.4 91.0 + 84 9 11 27 27 22 12 12 9 15 9 17-11 77.8 80.3 90.9 + 84 9 12 9 7 9 18 12 22 12 18 13-11 76.5 80.2 90.8 + 84 9 13 22 15 15 9 6 7 5 7 11-11 75.0 80.0 90.7 + 84 9 14 15 12 22 12 9 15 18 12 14-11 74.5 79.8 90.5 + 84 9 15 12 7 15 9 6 7 5 15 10-11 73.3 79.6 90.3 + 84 9 16 12 9 9 5 7 12 9 5 9-11 73.4 79.3 90.2 + 84 9 17 7 12 12 3 3 4 3 3 6-11 74.6 79.1 90.1 + 84 9 18 2 6 4 3 2 2 2 3 3-11 73.8 78.7 89.9 + 84 9 19 5 9 9 80 56 27 67 32 36-11 74.6 78.4 89.8 + 84 9 20 27 32 27 15 12 18 32 7 21-11 74.1 78.1 89.6 + 84 9 21 4 6 5 18 18 9 5 15 10-11 75.1 77.8 89.5 + 84 9 22 9 7 22 22 18 6 56 39 22-11 75.9 77.6 89.4 + 84 9 23 56111111111132132111132112-11 76.1 77.4 89.3 + 84 9 24 80 67 80 32 32 56 32 39 52-11 76.2 77.3 89.2 + 84 9 25 22 39 67 32 39 56 48 39 43-11 74.6 77.1 89.1 + 84 9 26 22 48 67 48 56 48 32 18 42-11 74.3 77.0 89.0 + 84 9 27 32 22 32 22 32 15 18 27 25-11 73.5 76.9 88.8 + 84 9 28 15 27 7 7 15 15 27 18 16-11 73.1 76.8 88.6 + 84 9 29 15 22 12 5 6 7 9 22 12-11 71.7 76.7 88.5 + 84 9 30 27 18 18 5 2 3 3 9 11-11 72.4 76.6 88.3 + 84 10 1 5 6 9 7 12 7 3 4 7-11 72.0 76.6 88.1 + 84 10 2 15 7 6 6 6 12 9 18 10-11 74.8 76.6 87.9 + 84 10 3 27 56 27 15 9 6 9 9 20-11 75.2 76.6 87.8 + 84 10 4 3 2 4 4 5 15 7 7 6-11 75.2 76.4 87.6 + 84 10 5 12 5 6 6 12 5 6 5 7-11 74.0 76.3 87.5 + 84 10 6 12 22 18 7 15 15 15 67 21-11 73.2 76.1 87.4 + 84 10 7 80 48 27 27 80 32 22 27 43-11 73.5 75.9 87.3 + 84 10 8 48 32 15 32 9 9 18 27 24-11 74.5 75.7 87.2 + 84 10 9 27 15 15 15 9 18 32 27 20-11 73.5 75.4 87.1 + 84 10 10 22 27 32 32 56 27 27 9 29-11 74.1 75.2 87.1 + 84 10 11 22 18 22 18 15 39 39 48 28-11 74.3 75.0 87.0 + 84 10 12 56 22 32 18 15 39 56 22 33-11 73.9 74.8 86.9 + 84 10 13 15 12 18 32 39 9 5 6 17-11 74.7 74.6 86.8 + 84 10 14 27 18 18 6 3 15 9 22 15-11 73.2 74.4 86.6 + 84 10 15 18 9 6 4 4 7 39 22 14-11 76.4 74.3 86.5 + 84 10 16 27 27 15 22 22 18 6 18 19-11 76.6 74.2 86.4 + 84 10 17 6 3 4 3 2 3 2 3 3-11 76.2 74.1 86.2 + 84 10 18 6 27 15 39 39 39111 67 43-11 76.5 74.1 86.1 + 84 10 19 94 56 67 56 80 80111 56 75-11 74.2 74.1 86.0 + 84 10 20 67 67 56 56 56 56111 32 63-11 73.5 74.0 85.8 + 84 10 21 22 32 39 27 39 67 80 67 47-11 73.2 74.0 85.7 + 84 10 22 48 56 48 32 32 48 67 39 46-11 74.5 74.0 85.6 + 84 10 23 27 22 39 22 18 32 32 27 27-11 72.7 74.0 85.5 + 84 10 24 39 39 48 32 56 39 39 22 39-11 70.8 74.0 85.3 + 84 10 25 12 27 18 9 15 9 22 67 22-11 70.2 74.0 85.1 + 84 10 26 56 9 9 6 5 9 5 9 14-11 69.4 74.0 84.9 + 84 10 27 7 9 9 6 12 15 5 4 8-11 68.6 74.0 84.6 + 84 10 28 4 9 12 7 7 7 9 12 8-11 69.3 74.0 84.3 + 84 10 29 7 7 7 6 9 7 6 7 7-11 68.2 74.0 84.1 + 84 10 30 12 15 7 5 3 3 4 4 7-11 68.8 74.0 83.8 + 84 10 31 5 0 2 2 3 4 7 22 6-11 69.8 74.0 83.6 + 84 11 1 18 18 67 67 22 6 9 12 27-11 69.5 74.1 83.5 + 84 11 2 6 6 6 9 5 18 32 15 12-11 70.1 74.1 83.3 + 84 11 3 9 5 9 9 32 27 32 18 18-11 72.0 74.1 83.2 + 84 11 4 22 15 15 22 15 12 22 18 18-11 72.2 74.1 83.1 + 84 11 5 9 22 18 12 18 12 7 5 13-11 71.7 74.1 83.0 + 84 11 6 6 9 18 22 12 22 12 7 14-11 71.0 74.1 82.9 + 84 11 7 7 22 9 7 9 48 18 39 20-11 70.1 74.1 82.8 + 84 11 8 27 32 27 18 18 18 12 7 20-11 70.5 74.1 82.7 + 84 11 9 6 9 9 7 12 15 27 15 13-11 72.7 74.1 82.5 + 84 11 10 18 15 7 4 32 7 15 48 18-11 75.8 74.0 82.3 + 84 11 11 15 18 12 22 22 15 7 48 20-11 73.1 74.0 82.2 + 84 11 12 7 22 12 7 5 3 2 3 8-11 72.8 73.9 82.0 + 84 11 13 4 5 6 9 4 15 15 18 10-11 71.6 73.9 81.9 + 84 11 14 9 15 9 15 32 9 12 12 14-11 72.0 73.9 81.7 + 84 11 15 32 39 18 56 32 39 48154 52-11 72.9 73.8 81.6 + 84 11 16179207132111 94 56 67 48112-11 70.7 73.8 81.5 + 84 11 17 56 32 32 39 32 48 22 22 35-11 71.0 73.8 81.4 + 84 11 18 32 27 39 18 15 6 22 15 22-11 71.7 73.8 81.3 + 84 11 19 32 22 22 7 12 27 22 22 21-11 72.3 73.8 81.1 + 84 11 20 18 27 27 18 22 15 22 9 20-11 74.8 73.7 81.0 + 84 11 21 18 27 18 27 22 22 22 18 22-11 78.3 73.7 80.8 + 84 11 22 7 18 9 22 9 18 18 12 14-11 78.2 73.6 80.7 + 84 11 23 22 15 12 6 12 5 5 2 10-11 79.3 73.5 80.6 + 84 11 24 7 12 9 12 3 9 12 12 10-11 81.1 73.4 80.4 + 84 11 25 15 6 7 4 3 9 18 18 10-11 83.1 73.3 80.3 + 84 11 26 18 12 7 4 5 7 7 4 8-11 82.5 73.2 80.2 + 84 11 27 2 3 6 6 9 15 7 6 7-11 82.5 73.1 80.1 + 84 11 28 12 5 6 9 5 3 3 3 6-11 81.1 73.0 79.9 + 84 11 29 0 7 48 22 7 5 7 6 13-11 77.1 72.9 79.8 + 84 11 30 22 80 80 22 18 15 18 32 36-11 76.4 72.9 79.7 + 84 12 1 15 27 22 15 15 4 6 18 15-11 77.0 72.8 79.5 + 84 12 2 39 48 32 15 9 22 27 22 27-11 76.8 72.7 79.4 + 84 12 3 18 18 27 18 22 27 27 15 22-11 77.9 72.7 79.3 + 84 12 4 15 12 48 22 15 39 32 39 28-11 75.9 72.7 79.3 + 84 12 5 32 18 22 22 15 22 12 15 20-11 73.4 72.7 79.2 + 84 12 6 22 18 22 32 22 18 18 27 22-11 73.0 72.7 79.2 + 84 12 7 22 22 15 22 18 22 18 7 18-11 72.7 72.8 79.1 + 84 12 8 12 15 7 9 5 4 5 9 8-11 74.1 72.9 79.1 + 84 12 9 12 4 2 3 4 6 7 7 6-11 74.5 73.0 79.1 + 84 12 10 6 15 9 7 12 12 6 6 9-11 75.7 73.1 79.1 + 84 12 11 3 9 5 9 22 18 27 56 19-11 78.9 73.2 79.1 + 84 12 12 48 39 9 15 9 7 6 6 17-11 77.8 73.4 79.1 + 84 12 13 39 80 18 18 22 18 15 7 27-11 76.2 73.6 79.1 + 84 12 14 6 5 4 9 7 12 7 15 8-11 75.8 73.7 79.0 + 84 12 15 15 12 12 12 9 9 56 67 24-11 74.9 73.8 78.9 + 84 12 16 27 27 32 27 22 27 48 56 33-11 74.2 73.8 78.8 + 84 12 17 27 27 22 18 32 32 39 27 28-11 72.6 73.8 78.8 + 84 12 18 15 18 12 15 15 22 9 15 15-11 70.2 73.8 78.7 + 84 12 19 9 6 12 6 12 4 7 5 8-11 71.0 73.8 78.6 + 84 12 20 9 5 5 4 6 9 9 4 6-11 69.9 73.7 78.5 + 84 12 21 2 9 6 7 9 15 27 32 13-11 69.7 73.6 78.4 + 84 12 22 12 6 4 6 5 12 9 15 9-11 70.7 73.6 78.3 + 84 12 23 12 18 12 15 9 18 18 22 16-11 71.3 73.6 78.2 + 84 12 24 6 7 3 4 3 5 3 4 4-11 71.8 73.6 78.1 + 84 12 25 7 12 9 4 2 0 4 5 5-11 72.2 73.6 78.0 + 84 12 26 9 32 22 22 27 22 39 32 26-11 72.3 73.6 77.9 + 84 12 27 12 5 3 9 32 18 15 39 17-11 72.0 73.6 77.8 + 84 12 28 27 22 56 18 18 39 27 39 31-11 72.2 73.6 77.8 + 84 12 29 22 39 18 39 15 18 27 27 26-11 72.1 73.6 77.7 + 84 12 30 18 22 27 18 15 15 22 32 21-11 71.4 73.6 77.6 + 84 12 31 22 18 15 22 39 27 27 22 24-11 70.0 73.6 77.5 + 85 1 1 18 32 22 22 12 22 67 67 33-11 68.4 73.5 77.5 + 85 1 2 27 18 18 9 12 7 9 39 17-11 67.8 73.5 77.4 + 85 1 3 22 12 9 12 4 6 18 22 13-11 67.7 73.4 77.3 + 85 1 4 15 7 5 6 4 5 5 12 7-11 67.8 73.3 77.3 + 85 1 5 7 6 4 4 4 6 5 12 6-11 67.0 73.1 77.3 + 85 1 6 9 7 3 3 3 5 7 6 5-11 67.9 72.9 77.2 + 85 1 7 5 9 5 2 3 4 6 6 5-11 68.1 72.8 77.2 + 85 1 8 7 4 7 5 9 22 56 39 19-11 67.4 72.7 77.2 + 85 1 9 32 80 67 39 67 39 22 18 46-11 68.1 72.6 77.2 + 85 1 10 32 48 22 39 18 32 27 15 29-11 67.4 72.6 77.2 + 85 1 11 15 18 27 27 15 15 22 18 20-11 67.7 72.6 77.2 + 85 1 12 12 22 18 18 22 18 18 22 19-11 68.4 72.6 77.2 + 85 1 13 15 18 15 12 18 18 12 6 14-11 72.6 72.5 77.2 + 85 1 14 5 12 6 9 12 18 5 5 9-11 72.3 72.5 77.1 + 85 1 15 5 5 7 9 7 18 15 7 9-11 72.4 72.4 77.1 + 85 1 16 9 15 9 9 9 7 4 3 8-11 74.7 72.4 77.0 + 85 1 17 0 2 4 18 9 18 12 7 9-11 75.8 72.3 77.0 + 85 1 18 7 6 4 5 6 5 7 5 6-11 74.1 72.3 77.0 + 85 1 19 3 3 7 12 7 15 4 2 7-11 75.4 72.2 76.9 + 85 1 20 5 3 5 4 4 12 12 5 6-11 81.7 72.1 76.9 + 85 1 21 6 39 15 9 12 7 5 5 12-11 84.9 72.0 76.8 + 85 1 22 5 4 9 7 5 9 9 39 11-11 85.3 71.9 76.8 + 85 1 23 18 67 56 48 39 27 15 22 37-11 82.5 71.8 76.7 + 85 1 24 4 6 9 4 7 7 9 7 7-11 78.2 71.7 76.7 + 85 1 25 15 15 15 7 5 4 5 4 9-11 73.9 71.6 76.7 + 85 1 26 4 4 5 6 4 12 6 9 6-11 71.0 71.6 76.7 + 85 1 27 9 12 5 4 4 6 18 32 11-11 69.5 71.5 76.7 + 85 1 28 67 48 39 48 67 80 48 67 58-11 69.6 71.5 76.7 + 85 1 29 48 27 4 7 7 9 27 67 25-11 68.7 71.4 76.7 + 85 1 30 27 15 18 12 9 22 12 18 17-11 68.3 71.4 76.7 + 85 1 31 18 9 9 27 22 15 7 15 15-11 69.9 71.4 76.7 + 85 2 1 12 15 18 18 12 27 12 6 15-11 72.2 71.4 76.7 + 85 2 2 4 27 12 9 9 9 12 9 11-11 73.8 71.4 76.6 + 85 2 3 6 6 4 4 18 12 12 2 8-11 73.6 71.4 76.6 + 85 2 4 4 4 2 2 2 0 4 4 3-11 70.9 71.4 76.6 + 85 2 5 5 18 32 15 39 22 18 22 21-11 71.2 71.3 76.6 + 85 2 6 48 27 56 39 56 56 67 22 46-11 70.6 71.4 76.5 + 85 2 7 18 12 22 27 32 18 9 22 20-11 70.3 71.4 76.5 + 85 2 8 27 9 6 32 15 32 32 39 24-11 72.5 71.4 76.4 + 85 2 9 15 18 39 18 22 18 9 15 19-11 73.2 71.5 76.4 + 85 2 10 22 22 32 15 22 22 48 9 24-11 73.6 71.6 76.3 + 85 2 11 7 12 12 9 15 15 18 18 13-11 73.2 71.7 76.3 + 85 2 12 7 18 15 7 15 15 6 3 11-11 72.3 71.8 76.2 + 85 2 13 3 0 2 6 12 12 32 18 11-11 70.8 72.0 76.2 + 85 2 14 15 12 22 9 7 22 12 27 16-11 70.6 72.1 76.1 + 85 2 15 22 15 12 3 2 3 6 9 9-11 70.2 72.2 76.1 + 85 2 16 2 4 4 5 9 9 15 7 7-11 69.8 72.3 76.1 + 85 2 17 7 18 15 9 18 15 12 4 12-11 70.9 72.5 76.0 + 85 2 18 2 5 6 5 3 3 4 3 4-11 73.4 72.6 76.0 + 85 2 19 5 7 3 4 4 4 12 18 7-11 76.1 72.7 76.0 + 85 2 20 18 15 18 9 9 3 5 4 10-11 75.0 72.7 76.0 + 85 2 21 0 4 6 5 6 12 18 12 8-11 74.2 72.8 76.0 + 85 2 22 12 7 4 7 7 7 6 7 7-11 73.3 72.8 76.0 + 85 2 23 7 7 6 5 7 6 12 9 7-11 71.7 72.8 75.9 + 85 2 24 22 27 22 12 12 9 9 27 18-11 70.5 72.8 75.9 + 85 2 25 9 18 22 9 7 18 5 6 12-11 70.1 72.8 75.9 + 85 2 26 12 9 5 0 0 3 7 6 5-11 69.7 72.7 75.8 + 85 2 27 7 6 4 6 6 5 9111 19-11 68.9 72.7 75.8 + 85 2 28 94132111 48 48 22 18 7 60-11 69.7 72.6 75.7 + 85 3 1 9 56 27 15 4 3 5 12 16-11 69.3 72.5 75.7 + 85 3 2 9 18 15 22 27 32 22 27 22-11 69.1 72.4 75.6 + 85 3 3 9 39 18 5 5 9 9 15 14-11 69.0 72.2 75.6 + 85 3 4 15 9 5 4 7 12 7 18 10-11 68.6 72.0 75.5 + 85 3 5 22 27 48 27 15 39 67 94 42-11 67.5 71.8 75.5 + 85 3 6 39 22 39 22 15 18 18 18 24-11 68.1 71.7 75.4 + 85 3 7 18 15 18 18 18 27 39 22 22-11 68.0 71.7 75.4 + 85 3 8 39 56 32 22 18 18 15 15 27-11 68.7 71.7 75.3 + 85 3 9 7 4 3 0 2 2 0 12 4-11 68.7 71.7 75.3 + 85 3 10 9 4 4 9 6 12 12 22 10-11 68.0 71.7 75.2 + 85 3 11 6 4 4 6 15 5 5 2 6-11 69.6 71.8 75.2 + 85 3 12 0 5 3 2 7 6 18 18 7-11 69.3 71.9 75.2 + 85 3 13 2 5 6 9 3 3 0 3 4-11 69.5 72.1 75.2 + 85 3 14 3 3 3 5 15 7 12 5 7-11 69.5 72.4 75.2 + 85 3 15 15 12 32 22 12 4 6 6 14-11 69.6 72.6 75.1 + 85 3 16 12 7 7 5 18 12 9 15 11-11 70.1 72.9 75.1 + 85 3 17 12 4 4 5 3 2 15 15 8-11 72.1 73.1 75.1 + 85 3 18 27 18 7 2 3 2 15 15 11-11 74.6 73.2 75.1 + 85 3 19 6 7 4 6 9 9 27 7 9-11 74.2 73.3 75.1 + 85 3 20 4 3 6 6 7 7 2 2 5-11 74.2 73.4 75.1 + 85 3 21 5 9 2 2 5 4 5 6 5-11 76.1 73.5 75.1 + 85 3 22 12 4 2 3 4 3 2 5 4-11 75.9 73.6 75.1 + 85 3 23 9 12 2 3 3 2 6 5 5-11 77.3 73.7 75.1 + 85 3 24 7 3 4 4 5 4 4 15 6-11 79.6 73.7 75.0 + 85 3 25 7 0 2 3 4 6 15 6 5-11 78.5 73.6 75.0 + 85 3 26 12 7 6 9 9 5 9 5 8-11 79.7 73.6 75.0 + 85 3 27 7 7 6 9 9 9 18 12 10-11 77.4 73.7 75.0 + 85 3 28 32 27 18 2 7 6 12 9 14-11 77.7 73.8 75.0 + 85 3 29 6 3 5 4 4 9 12 9 7-11 76.7 74.0 75.0 + 85 3 30 22 5 3 5 7 6 6 4 7-11 75.8 74.2 74.9 + 85 3 31 9 9 18 18 9 4 7 3 10-11 76.4 74.4 74.9 + 85 4 1 6 7 12 22 48 56 22 12 23-11 72.2 74.6 74.9 + 85 4 2 6 15 18 9 15 22 32 12 16-11 72.6 74.8 74.9 + 85 4 3 39 15 12 12 12 18 39 15 20-11 72.5 75.0 74.9 + 85 4 4 9 18 15 12 15 27 22 15 17-11 71.9 75.3 74.9 + 85 4 5 9 18 4 7 6 3 4 3 7-11 71.2 75.5 74.8 + 85 4 6 2 0 4 6 5 4 9 7 5-11 70.5 75.8 74.8 + 85 4 7 3 7 12 7 7 12 6 2 7-11 70.3 76.1 74.8 + 85 4 8 2 3 6 7 6 15 27 56 15-11 69.9 76.4 74.8 + 85 4 9 27 27 32 32 67 94 18 3 38-11 69.4 76.6 74.8 + 85 4 10 2 6 9 22 15 12 9 12 11-11 69.7 76.8 74.7 + 85 4 11 27 18 7 7 5 15 3 4 11-11 69.0 77.0 74.7 + 85 4 12 6 6 5 5 5 5 5 2 5-11 69.6 77.2 74.7 + 85 4 13 3 4 5 6 5 7 5 12 6-11 69.8 77.3 74.7 + 85 4 14 15 22 9 4 9 6 6 5 10-11 70.6 77.4 74.7 + 85 4 15 5 6 4 4 4 3 3 6 4-11 70.0 77.6 74.7 + 85 4 16 5 7 5 12 12 5 6 9 8-11 69.4 77.7 74.6 + 85 4 17 6 3 6 3 5 2 3 9 5-11 70.2 77.7 74.6 + 85 4 18 12 2 3 3 3 4 2 4 4-11 71.7 77.8 74.6 + 85 4 19 7 12 22 15 18 18 27 48 21-11 71.7 77.8 74.6 + 85 4 20 48 67 94 18 7 15 67111 53-11 72.3 77.9 74.6 + 85 4 21236154207 67 39 67 32 22103-11 77.9 77.9 74.7 + 85 4 22 15 9 9 22 9 12 6 9 11-11 89.8 77.9 74.7 + 85 4 23 22 9 12 7 12 15 12 7 12-11 93.3 77.9 74.7 + 85 4 24 27 32 32 18 9 9 5 5 17-11 89.0 78.0 74.8 + 85 4 25 22 32 27 32 18 9 9 18 21-11 95.2 78.1 74.9 + 85 4 26 39 48 32 27 7 22 27 39 30-11 88.3 78.3 74.9 + 85 4 27 22 48 22 18 32 39 18 67 33-11 80.6 78.4 74.9 + 85 4 28111 67132111 39 12 12 7 61-11 78.1 78.6 75.0 + 85 4 29 15 80 18 3 7 5 6 4 17-11 83.2 78.8 75.0 + 85 4 30 6 2 4 56154 48 48 18 42-11 80.8 79.0 75.0 + 85 5 1 9 9 9 15 15 9 2 9 10-11 80.6 79.2 75.0 + 85 5 2 48 80 80 67 12 6 5 6 38-11 76.5 79.4 75.0 + 85 5 3 4 3 7 12 7 6 5 7 6-11 72.6 79.5 75.0 + 85 5 4 7 12 12 9 12 15 5 4 10-11 70.8 79.6 75.0 + 85 5 5 5 7 7 4 5 7 12 12 7-11 71.4 79.7 75.0 + 85 5 6 22 9 18 4 6 7 6 9 10-11 75.0 79.8 75.0 + 85 5 7 18 6 5 4 5 4 6 15 8-11 79.1 79.8 75.0 + 85 5 8 9 6 7 12 5 9 5 12 8-11 83.7 79.8 75.0 + 85 5 9 12 15 9 9 5 4 7 0 8-11 89.6 79.8 75.0 + 85 5 10 0 0 2 2 4 4 6 18 5-11 91.7 79.7 75.0 + 85 5 11 7 7 9 5 3 4 5 3 5-11 89.9 79.7 75.0 + 85 5 12 4 5 18 12 18 9 15 15 12-11 92.1 79.7 75.0 + 85 5 13 18 12 5 5 6 12 9 22 11-11 91.9 79.7 75.0 + 85 5 14 18 9 6 5 5 6 9 5 8-11 90.7 79.6 75.0 + 85 5 15 22 18 9 9 12 18 12 22 15-11 92.0 79.6 75.0 + 85 5 16 4 6 6 6 12 15 15 22 11-11 95.5 79.6 75.0 + 85 5 17 6 4 3 5 12 9 6 15 8-11 92.3 79.6 75.0 + 85 5 18 12 6 5 4 9 9 12 15 9-11 92.7 79.6 75.1 + 85 5 19 12 9 7 5 7 12 9 9 9-11 89.6 79.6 75.1 + 85 5 20 12 4 3 0 3 6 9 5 5-11 86.7 79.7 75.1 + 85 5 21 6 6 3 3 6 12 12 12 8-11 84.4 79.7 75.1 + 85 5 22 6 6 5 4 2 3 6 5 5-11 82.7 79.8 75.1 + 85 5 23 9 9 3 2 3 2 4 4 5-11 80.0 80.0 75.1 + 85 5 24 5 4 2 2 3 4 12 9 5-11 78.3 80.1 75.1 + 85 5 25 2 3 3 2 5 12 9 32 9-11 77.2 80.2 75.1 + 85 5 26 18 6 4 6 9 12 9 6 9-11 75.5 80.4 75.0 + 85 5 27 5 6 5 7 9 4 3 4 5-11 74.6 80.6 75.0 + 85 5 28 3 5 4 4 6 4 5 6 5-11 72.7 80.9 75.0 + 85 5 29 6 5 6 2 2 5 4 4 4-11 72.5 81.3 74.9 + 85 5 30 0 2 3 3 4 3 2 6 3-11 71.4 81.6 74.9 + 85 5 31 15 9 6 2 2 3 5 12 7-11 69.6 82.0 74.9 + 85 6 1 32 22 15 22 9 15 15 12 18-11 69.5 82.2 74.8 + 85 6 2 6 5 4 5 7 4 9 6 6-11 72.4 82.3 74.8 + 85 6 3 3 2 0 3 5 6 6 5 4-11 74.6 82.2 74.8 + 85 6 4 6 2 4 3 5 6 6 5 5-11 77.5 82.0 74.8 + 85 6 5 5 5 5 4 4 4 5 6 5-11 84.3 81.8 74.8 + 85 6 6 12 15 6 9 39 48 15 56 25-11 87.4 81.6 74.7 + 85 6 7 22 32 39 32 39 32 32 12 30-11 88.4 81.5 74.7 + 85 6 8 27 32 22 18 9 9 7 7 16-11 88.9 81.4 74.7 + 85 6 9 5 9 9 4 3 9 39 94 22-11 89.8 81.2 74.7 + 85 6 10 56 67 39 32 9 9 15 15 30-11 91.7 81.1 74.7 + 85 6 11 12 18 7 9 6 9 12 12 11-11 91.2 81.0 74.7 + 85 6 12 15 15 12 5 7 7 9 7 10-11 89.8 80.9 74.7 + 85 6 13 3 3 3 2 5 6 5 9 5-11 89.2 80.9 74.7 + 85 6 14 5 3 5 3 4 3 2 6 4-11 85.3 80.9 74.7 + 85 6 15 6 15 3 2 2 3 6 4 5-11 83.8 81.0 74.7 + 85 6 16 3 4 4 2 2 2 3 4 3-11 80.9 81.0 74.7 + 85 6 17 7 4 5 4 9 18 6 6 7-11 77.3 81.0 74.8 + 85 6 18 3 5 3 4 5 7 4 3 4-11 73.8 81.0 74.8 + 85 6 19 4 3 3 4 4 3 3 3 3-11 72.2 80.9 74.8 + 85 6 20 2 6 4 6 18 48 7 15 13-11 71.9 80.8 74.8 + 85 6 21 6 9 6 6 9 6 5 6 7-11 71.5 80.7 74.8 + 85 6 22 7 12 9 7 3 4 3 3 6-11 71.6 80.6 74.9 + 85 6 23 12 7 3 6 12 6 3 4 7-11 71.8 80.4 74.9 + 85 6 24 3 2 4 4 5 5 5 9 5-11 70.8 80.3 74.9 + 85 6 25 15 9 15 5 6 7 27 15 12-11 71.0 80.1 74.9 + 85 6 26 12 12 12 22 32 15 39 22 21-11 70.0 79.9 74.8 + 85 6 27 15 7 9 6 7 22 18 18 13-11 70.2 79.7 74.8 + 85 6 28 27 18 18 15 18 12 15 22 18-11 71.0 79.6 74.8 + 85 6 29 15 7 12 27 12 12 15 7 13-11 72.3 79.4 74.8 + 85 6 30 9 3 3 5 5 7 18 27 10-11 74.8 79.3 74.8 + 85 7 1 48 9 15 5 7 7 9 9 14-11 76.9 79.1 74.8 + 85 7 2 5 3 2 2 3 3 4 5 3-11 79.1 79.0 74.8 + 85 7 3 4 6 4 2 5 5 7 18 6-11 81.3 78.8 74.8 + 85 7 4 18 9 15 18 80 27 56 39 33-11 80.4 78.7 74.8 + 85 7 5 15 15 12 15 18 9 15 27 16-11 83.3 78.6 74.8 + 85 7 6 18 15 18 12 15 12 27 48 21-11 87.5 78.5 74.8 + 85 7 7 32 27 18 12 22 12 9 18 19-11 97.7 78.5 74.8 + 85 7 8 5 9 12 12 12 22 32 27 16-11 96.7 78.4 74.8 + 85 7 9 12 27 9 4 4 4 4 4 9-11100.9 78.4 74.8 + 85 7 10 7 6 4 4 5 9 18 15 9-11104.6 78.3 74.8 + 85 7 11 12 12 9 7 9 7 18 9 10-11 97.3 78.3 74.8 + 85 7 12 32 48 22 56 48 48111 15 48-11 92.9 78.4 74.8 + 85 7 13 9 5 6 27 27 22 39 27 20-11 85.5 78.4 74.8 + 85 7 14 22 32 32 15 12 7 5 5 16-11 76.4 78.3 74.8 + 85 7 15 6 22 7 7 5 4 4 4 7-11 73.0 78.3 74.8 + 85 7 16 4 4 4 3 5 6 5 6 5-11 71.9 78.1 74.9 + 85 7 17 18 22 6 48 39 15 7 7 20-11 71.9 77.9 74.9 + 85 7 18 18 9 7 9 12 12 12 22 13-11 71.8 77.8 74.9 + 85 7 19 7 5 6 15 15 6 4 2 8-11 71.7 77.6 74.9 + 85 7 20 5 12 5 6 9 18 6 4 8-11 71.7 77.4 74.9 + 85 7 21 6 7 7 6 3 3 3 4 5-11 71.2 77.1 74.8 + 85 7 22 3 3 5 4 5 2 7 6 4-11 71.0 76.9 74.8 + 85 7 23 6 32 15 12 7 5 12 15 13-11 71.1 76.7 74.8 + 85 7 24 6 6 9 15 12 9 22 15 12-11 71.0 76.5 74.7 + 85 7 25 18 15 15 9 4 9 15 9 12-11 75.6 76.4 74.7 + 85 7 26 7 27 9 12 7 9 22 32 16-11 77.4 76.2 74.6 + 85 7 27 15 18 22 22 18 6 6 15 15-11 79.2 76.1 74.6 + 85 7 28 18 12 6 12 7 12 27 9 13-11 81.2 76.1 74.6 + 85 7 29 5 5 3 3 5 6 7 5 5-11 83.5 76.0 74.6 + 85 7 30 6 15 7 12 27 9 5 7 11-11 83.8 76.0 74.6 + 85 7 31 6 12 27 56 39 56 32 56 36-11 82.4 76.0 74.6 + 85 8 1 27 15 9 12 32 18 9 18 18-11 80.5 76.0 74.6 + 85 8 2 9 15 12 7 5 15 15 12 11-11 80.4 75.9 74.7 + 85 8 3 9 6 3 5 4 7 9 7 6-11 79.2 75.9 74.7 + 85 8 4 7 9 7 5 7 4 6 6 6-11 79.3 75.9 74.7 + 85 8 5 3 4 4 3 4 4 4 4 4-11 78.5 75.9 74.8 + 85 8 6 4 2 3 2 2 3 6 3 3-11 77.9 75.9 74.9 + 85 8 7 5 2 3 2 2 2 4 9 4-11 79.5 75.9 74.9 + 85 8 8 9 6 4 4 5 4 6 9 6-11 78.5 75.9 75.0 + 85 8 9 7 3 2 2 2 3 12 9 5-11 74.9 75.9 75.1 + 85 8 10 6 9 15 9 5 5 5 5 7-11 72.8 75.8 75.1 + 85 8 11 18 6 2 5 4 0 2 2 5-11 68.4 75.7 75.2 + 85 8 12 3 2 4 7 9 18 94 80 27-11 69.7 75.6 75.2 + 85 8 13 67 80 48 39 18 15 32 32 41-11 68.9 75.5 75.3 + 85 8 14 15 15 22 9 9 6 6 9 11-11 69.3 75.3 75.4 + 85 8 15 12 15 18 12 9 6 12 9 12-11 69.0 75.2 75.4 + 85 8 16 9 7 6 9 12 6 12 12 9-11 68.2 74.9 75.4 + 85 8 17 3 18 15 9 7 9 5 9 9-11 67.9 74.6 75.5 + 85 8 18 5 9 7 9 9 12 12 32 12-11 68.6 74.2 75.5 + 85 8 19 15 32 9 3 5 4 9 15 12-11 69.1 73.8 75.5 + 85 8 20 15 18 12 4 12 12 7 12 12-11 70.6 73.4 75.4 + 85 8 21 15 12 12 9 4 6 6 15 10-11 70.4 73.0 75.4 + 85 8 22 22 15 39 48 12 27 39 18 28-11 72.7 72.7 75.4 + 85 8 23 32 22 7 22 12 9 15 18 17-11 72.9 72.5 75.4 + 85 8 24 18 9 6 5 5 4 4 5 7-11 72.1 72.4 75.4 + 85 8 25 9 27 48 15 12 12 6 12 18-11 72.5 72.3 75.4 + 85 8 26 22 18 7 5 9 9 18 27 14-11 72.3 72.3 75.4 + 85 8 27 27 15 9 27 9 15 9 7 15-11 73.1 72.2 75.4 + 85 8 28 9 7 7 15 7 22 22 18 13-11 73.1 72.1 75.4 + 85 8 29 18 18 18 12 22 15 27 9 17-11 73.1 72.0 75.4 + 85 8 30 18 18 3 3 3 12 18 9 11-11 73.9 72.0 75.4 + 85 8 31 22 27 48 48 32 39 22 18 32-11 74.1 71.9 75.4 + 85 9 1 5 6 2 2 4 6 9 12 6-11 73.0 71.9 75.5 + 85 9 2 3 5 3 6 5 5 3 4 4-11 72.8 71.8 75.6 + 85 9 3 2 6 7 5 3 3 2 5 4-11 73.1 71.8 75.6 + 85 9 4 2 6 2 2 0 3 3 2 3-11 73.5 71.7 75.7 + 85 9 5 0 3 2 2 2 2 4 6 3-11 72.2 71.6 75.7 + 85 9 6 4 7 5 5 9 15 12 18 9-11 72.5 71.5 75.8 + 85 9 7 15 15 7 5 5 5 9 9 9-11 70.8 71.5 75.8 + 85 9 8 5 5 9 6 18 15 12 9 10-11 70.3 71.4 75.9 + 85 9 9 7 9 9 18 15 15 15 12 13-11 70.6 71.3 75.9 + 85 9 10 6 12 22 12 5 7 15 18 12-11 70.3 71.3 75.9 + 85 9 11 9 12 15 7 5 4 18 5 9-11 69.2 71.3 76.0 + 85 9 12 6 2 5 4 6 9 6 5 5-11 68.5 71.5 76.0 + 85 9 13 2 6 4 9 4 5 2 7 5-11 70.7 71.7 76.0 + 85 9 14 9 9 39 39 94 15 12 12 29-11 70.4 71.8 76.0 + 85 9 15 6 12 3 4 7 7 80 22 18-11 71.1 72.0 76.0 + 85 9 16 39 48 12 56 48 22 12 27 33-11 70.3 72.0 76.0 + 85 9 17 18 15 9 15 15 6 15 9 13-11 70.0 72.0 76.0 + 85 9 18 6 4 6 7 6 6 4 3 5-11 70.4 72.0 75.9 + 85 9 19 9 7 18 80 22 56 67 22 35-11 70.7 72.0 75.9 + 85 9 20 32 48 32 39 18 15 15 32 29-11 69.8 71.9 75.9 + 85 9 21 22 18 32 27 18 32 22 12 23-11 69.6 71.9 75.9 + 85 9 22 15 15 22 7 18 12 9 6 13-11 69.8 71.9 75.9 + 85 9 23 5 9 18 22 4 6 5 2 9-11 69.2 71.9 75.8 + 85 9 24 3 9 9 18 18 22 27 27 17-11 69.0 71.9 75.8 + 85 9 25 12 12 27 9 12 22 27 22 18-11 68.7 71.9 75.8 + 85 9 26 12 15 22 48 3 6 18 27 19-11 68.4 71.9 75.8 + 85 9 27 9 18 22 22 7 5 15 39 17-11 67.7 71.9 75.7 + 85 9 28 7 6 5 9 9 5 4 5 6-11 67.8 72.0 75.7 + 85 9 29 5 5 2 6 4 3 5 5 4-11 68.3 72.0 75.7 + 85 9 30 9 4 3 3 3 4 5 9 5-11 68.3 72.1 75.7 + 85 10 1 5 3 2 2 3 3 3 3 3-11 68.3 72.1 75.7 + 85 10 2 9 5 7 5 2 4 5 6 5-11 67.5 72.1 75.7 + 85 10 3 4 9 12 12 15 18 9 6 11-11 68.7 72.1 75.7 + 85 10 4 12 15 12 9 7 6 15 18 12-11 68.3 72.2 75.7 + 85 10 5 12 80 80 48 32 48132 94 66-11 67.0 72.2 75.7 + 85 10 6 56 27 67 56 48 27 18 32 41-11 66.0 72.3 75.7 + 85 10 7 27 32 27 18 12 48 27 22 27-11 65.9 72.4 75.7 + 85 10 8 18 22 15 15 9 18 22 9 16-11 65.8 72.5 75.7 + 85 10 9 6 12 9 2 5 5 7 4 6-11 66.0 72.5 75.7 + 85 10 10 4 7 9 5 6 3 9 6 6-11 66.7 72.5 75.7 + 85 10 11 7 12 18 12 9 22 22 22 16-11 67.7 72.6 75.7 + 85 10 12 39 7 6 5 7 12 9 9 12-11 66.9 72.6 75.7 + 85 10 13 12 39 12 9 22 32 15 15 20-11 66.7 72.6 75.8 + 85 10 14 7 15 6 18 6 6 6 4 9-11 69.8 72.6 75.8 + 85 10 15 6 39 56 9 7 9 7 15 19-11 71.7 72.5 75.8 + 85 10 16 27 27 32 18 9 12 4 9 17-11 73.2 72.5 75.8 + 85 10 17 15 18 7 9 15 22 18 15 15-11 75.5 72.5 75.8 + 85 10 18 27 9 9 27 32 22 22 32 23-11 75.5 72.5 75.8 + 85 10 19 27 15 18 27 9 5 4 3 14-11 77.7 72.5 75.8 + 85 10 20 4 7 12 7 6 3 7 2 6-11 79.4 72.4 75.8 + 85 10 21 3 9 12 12 15 48 12 18 16-11 84.7 72.4 75.8 + 85 10 22 22 27 27 6 6 9 22 18 17-11 94.3 72.4 75.8 + 85 10 23 15 12 9 15 9 12 9 22 13-11 93.2 72.4 75.8 + 85 10 24 12 9 9 4 2 7 12 5 8-11 92.5 72.4 75.8 + 85 10 25 12 15 7 7 6 9 9 7 9-11 88.5 72.3 75.7 + 85 10 26 3 4 6 5 5 0 3 4 4-11 83.0 72.3 75.7 + 85 10 27 3 2 4 3 2 3 5 9 4-11 78.5 72.3 75.7 + 85 10 28 9 4 6 5 2 0 2 2 4-11 76.7 72.4 75.7 + 85 10 29 18 18 15 22 7 6 2 3 11-11 73.6 72.4 75.7 + 85 10 30 3 3 3 3 4 2 6 3 3-11 70.5 72.4 75.7 + 85 10 31 4 7 3 6 5 12 9 4 6-11 69.5 72.5 75.7 + 85 11 1 12 12 9 12 15 22 32 9 15-11 69.0 72.6 75.7 + 85 11 2 2 7 15 12 39 32 80 67 32-11 68.8 72.7 75.7 + 85 11 3 56 39 12 39 22 32 9 15 28-11 68.0 72.8 75.7 + 85 11 4 32 22 15 7 6 18 15 9 16-11 67.6 72.9 75.7 + 85 11 5 5 4 6 12 9 7 9 27 10-11 68.5 73.0 75.7 + 85 11 6 15 39 7 6 12 15 6 6 13-11 70.0 73.2 75.6 + 85 11 7 7 15 7 7 4 2 5 7 7-11 71.8 73.4 75.6 + 85 11 8 12 2 3 0 6 5 12 9 6-11 73.7 73.5 75.5 + 85 11 9 7 12 4 15 15 27 22 7 14-11 72.9 73.6 75.5 + 85 11 10 18 18 15 18 15 7 12 48 19-11 72.5 73.7 75.4 + 85 11 11 15 9 12 12 7 7 9 7 10-11 74.7 73.8 75.4 + 85 11 12 3 6 4 3 3 2 6 7 4-11 74.7 73.8 75.3 + 85 11 13 12 9 7 9 27 18 80 32 24-11 74.3 73.9 75.3 + 85 11 14 32 18 7 12 15 12 15 22 17-11 76.9 73.9 75.2 + 85 11 15 22 15 5 18 27 7 15 15 16-11 82.2 73.9 75.2 + 85 11 16 12 15 7 12 9 7 7 12 10-11 78.8 73.9 75.1 + 85 11 17 3 6 9 9 18 39 22 9 14-11 77.4 73.9 75.1 + 85 11 18 12 22 15 7 12 15 18 22 15-11 77.3 73.9 75.0 + 85 11 19 32 48 5 6 4 6 7 5 14-11 75.6 73.9 75.0 + 85 11 20 4 3 2 4 2 0 3 6 3-11 75.7 73.9 75.0 + 85 11 21 7 4 4 4 3 2 7 7 5-11 73.7 73.9 75.0 + 85 11 22 15 18 4 5 7 5 9 2 8-11 73.1 73.9 75.0 + 85 11 23 4 6 3 3 3 3 2 5 4-11 72.8 73.9 75.0 + 85 11 24 2 6 5 4 4 2 2 6 4-11 71.9 73.9 75.0 + 85 11 25 9 5 4 6 7 4 5 4 6-11 70.3 73.9 75.0 + 85 11 26 5 15 12 5 2 2 4 5 6-11 69.5 73.8 75.0 + 85 11 27 3 22 39 18 27 32 9 9 20-11 69.8 73.8 75.0 + 85 11 28 12 18 5 7 3 5 6 5 8-11 69.0 73.7 75.0 + 85 11 29 3 2 15 18 15 22111111 37-11 69.1 73.7 75.0 + 85 11 30154 56 67 39 56 18 18 9 52-11 68.8 73.6 75.0 + 85 12 1 7 15 6 15 9 9 39 22 15-11 67.8 73.4 75.0 + 85 12 2 22 18 22 7 9 9 18 9 14-11 68.4 73.1 75.0 + 85 12 3 7 12 9 6 7 18 7 5 9-11 68.5 72.9 75.0 + 85 12 4 5 15 6 12 7 15 27 12 12-11 68.3 72.6 75.0 + 85 12 5 15 9 5 7 9 7 7 5 8-11 69.7 72.5 75.0 + 85 12 6 9 6 9 7 7 5 5 5 7-11 71.1 72.4 74.9 + 85 12 7 4 4 5 7 3 5 7 3 5-11 71.9 72.4 74.9 + 85 12 8 3 0 3 3 3 4 5 2 3-11 73.0 72.3 74.8 + 85 12 9 9 6 2 2 4 5 9 6 5-11 75.2 72.3 74.8 + 85 12 10 12 12 9 32 32 18 9 12 17-11 75.6 72.3 74.7 + 85 12 11 32 12 7 5 6 7 7 12 11-11 76.6 72.3 74.6 + 85 12 12 7 7 4 2 3 6 9 18 7-11 77.3 72.3 74.6 + 85 12 13 27 32 22 56 48 22 9 27 30-11 75.6 72.3 74.5 + 85 12 14 18 12 9 7 7 9 7 22 11-11 76.4 72.3 74.5 + 85 12 15 22 12 9 4 2 5 12 12 10-11 80.2 72.3 74.5 + 85 12 16 12 4 9 3 4 3 5 9 6-11 83.7 72.3 74.4 + 85 12 17 27 6 6 4 6 6 5 4 8-11 80.2 72.2 74.4 + 85 12 18 3 4 18 15 27 15 6 7 12-11 78.4 72.2 74.4 + 85 12 19 18 39 67 48 32 48 48 27 41-11 77.5 72.1 74.4 + 85 12 20 27 15 12 15 9 3 3 4 11-11 75.4 72.1 74.4 + 85 12 21 6 9 5 6 2 2 4 4 5-11 75.1 72.1 74.4 + 85 12 22 4 12 9 6 7 5 4 3 6-11 73.5 72.2 74.4 + 85 12 23 3 2 6 3 3 3 6 9 4-11 71.2 72.2 74.4 + 85 12 24 18 9 27 7 6 5 5 0 10-11 69.9 72.4 74.4 + 85 12 25 5 0 3 3 4 5 5 22 6-11 67.3 72.6 74.4 + 85 12 26 18 18 4 6 6 3 5 3 8-11 66.3 72.8 74.4 + 85 12 27 5 9 7 7 7 6 32 22 12-11 66.2 73.1 74.4 + 85 12 28 32 56 48 32 32 39 32 12 35-11 66.2 73.3 74.3 + 85 12 29 9 15 6 5 4 3 4 7 7-11 66.0 73.6 74.3 + 85 12 30 48 67 80 27 27 56 27 32 46-11 66.3 73.8 74.3 + 85 12 31 22 15 22 18 27 32 27 15 22-11 66.6 74.0 74.3 + 86 1 1 18 22 22 18 48 27 18 27 25-11 67.0 74.3 74.3 + 86 1 2 22 27 15 15 27 22 12 7 18-11 67.6 74.5 74.2 + 86 1 3 6 6 5 18 18 12 5 6 10-11 68.4 74.7 74.2 + 86 1 4 9 6 3 2 5 5 4 5 5-11 69.5 74.9 74.2 + 86 1 5 6 3 5 4 5 4 3 4 4-11 70.7 75.1 74.1 + 86 1 6 4 2 3 3 12 6 39 94 20-11 72.2 75.2 74.1 + 86 1 7 67 67 27 22 18 18 12 22 32-11 71.6 75.2 74.0 + 86 1 8 32 9 5 9 6 9 9 6 11-11 71.2 75.2 73.9 + 86 1 9 9 7 4 5 5 15 39 32 15-11 72.7 75.2 73.8 + 86 1 10 32 22 6 9 9 3 4 2 11-11 72.2 75.2 73.8 + 86 1 11 3 6 5 4 4 4 2 3 4-11 71.9 75.2 73.7 + 86 1 12 7 4 7 4 3 3 5 5 5-11 71.2 75.2 73.7 + 86 1 13 4 0 4 4 3 4 4 3 3-11 74.3 75.2 73.7 + 86 1 14 4 3 3 5 4 4 4 3 4-11 76.4 75.2 73.7 + 86 1 15 2 3 5 7 5 9 6 2 5-11 75.1 75.2 73.7 + 86 1 16 2 3 4 3 2 3 3 2 3-11 75.5 75.2 73.7 + 86 1 17 0 3 4 5 5 6 9 15 6-11 74.4 75.2 73.7 + 86 1 18 12 7 7 15 5 3 4 5 7-11 73.1 75.2 73.7 + 86 1 19 6 5 3 3 3 3 4 6 4-11 70.2 75.2 73.7 + 86 1 20 15 18 18 12 15 4 9 27 15-11 69.2 75.3 73.7 + 86 1 21 67 6 3 5 15 39 48 32 27-11 67.9 75.5 73.7 + 86 1 22 18 12 9 12 7 9 12 12 11-11 67.3 75.6 73.7 + 86 1 23 12 6 15 15 18 27 22 22 17-11 67.0 75.8 73.7 + 86 1 24 15 12 18 18 12 4 9 12 13-11 66.9 76.0 73.7 + 86 1 25 9 22 22 15 22 22 56 39 26-11 68.0 76.1 73.7 + 86 1 26 27 12 9 12 15 7 5 6 12-11 67.7 76.2 73.7 + 86 1 27 9 56 48 22 56 32 32 39 37-11 67.2 76.2 73.7 + 86 1 28 32 39 27 22 27 39 27 27 30-11 70.0 76.3 73.6 + 86 1 29 18 22 7 9 27 22 18 32 19-11 71.2 76.4 73.6 + 86 1 30 27 22 15 12 7 12 12 9 15-11 73.7 76.4 73.6 + 86 1 31 9 15 9 7 7 6 4 3 8-11 76.6 76.4 73.6 + 86 2 1 5 3 2 4 5 12 6 6 5-11 81.8 76.4 73.5 + 86 2 2 5 9 7 6 7 5 9 3 6-11 86.4 76.4 73.5 + 86 2 3 6 7 5 5 3 7 7 9 6-11 96.0 76.4 73.5 + 86 2 4 6 5 4 4 5 6 5 2 5-11 97.8 76.5 73.5 + 86 2 5 3 3 3 6 7 15 6 15 7-11 99.8 76.5 73.5 + 86 2 6 2 2 4 4 18 18 12 27 11-11 99.0 76.5 73.4 + 86 2 7 15 22 18 67 67179111179 82-11 96.7 76.6 73.4 + 86 2 8132132154111207179400300202-11 94.3 76.6 73.4 + 86 2 9300179 56 39 48 94 56 27100-11 92.5 76.6 73.4 + 86 2 10 18 7 4 7 4 6 15 18 10-11 93.4 76.6 73.4 + 86 2 11 9 12 6 12 27 39 22 32 20-11 95.1 76.7 73.4 + 86 2 12 27 18 22 12 12 22 22 12 18-11 88.4 76.7 73.4 + 86 2 13 22 18 9 9 12 6 12 32 15-11 86.4 76.7 73.4 + 86 2 14 39 22 6 12 15 18 15 22 19-11 86.2 76.7 73.4 + 86 2 15 9 7 3 4 5 4 4 3 5-11 79.6 76.7 73.4 + 86 2 16 0 3 3 4 3 4 9 15 5-11 71.2 76.7 73.4 + 86 2 17 9 4 3 5 5 7 15 27 9-11 68.3 76.7 73.4 + 86 2 18 27 15 7 9 6 9 5 32 14-11 68.7 76.7 73.4 + 86 2 19 22 7 5 7 7 6 9 6 9-11 68.1 76.7 73.4 + 86 2 20 15 15 12 9 18 27 22 15 17-11 68.1 76.7 73.4 + 86 2 21 22 18 22 39 18 15 22 56 27-11 66.0 76.7 73.4 + 86 2 22 39 27 32 27 27 39 22 27 30-11 67.7 76.7 73.4 + 86 2 23 56 39 22 18 39 48 39 22 35-11 67.7 76.6 73.4 + 86 2 24 15 22 18 18 22 9 22 27 19-11 68.6 76.6 73.4 + 86 2 25 22 22 12 18 15 15 22 22 19-11 70.1 76.5 73.4 + 86 2 26 15 18 18 22 22 67 18 27 26-11 72.0 76.5 73.4 + 86 2 27 27 32 15 32 12 9 18 18 20-11 75.2 76.5 73.3 + 86 2 28 22 18 12 22 15 48 48 18 25-11 77.0 76.5 73.3 + 86 3 1 18 9 22 18 12 32 22 9 18-11 84.1 76.5 73.3 + 86 3 2 12 12 18 18 15 7 6 7 12-11 89.2 76.5 73.3 + 86 3 3 9 6 5 5 6 9 15 39 12-11 91.1 76.6 73.3 + 86 3 4 12 7 7 6 9 7 12 7 8-11 91.4 76.7 73.3 + 86 3 5 6 6 5 5 7 15 9 15 9-11 90.5 76.8 73.3 + 86 3 6 32 18 4 22 48 39 27 67 32-11 89.7 76.9 73.3 + 86 3 7 48 27 22 27 18 32 39 48 33-11 87.6 77.0 73.3 + 86 3 8 48 22 15 15 15 32 27 12 23-11 85.1 77.1 73.2 + 86 3 9 7 9 9 5 2 3 2 2 5-11 84.3 77.2 73.2 + 86 3 10 0 0 3 2 2 5 3 2 2-11 81.6 77.2 73.2 + 86 3 11 0 2 0 2 2 3 4 5 2-11 79.3 77.3 73.2 + 86 3 12 3 2 9 9 15 6 3 9 7-11 76.9 77.3 73.2 + 86 3 13 27 18 22 22 22 27 9 18 21-11 74.3 77.3 73.2 + 86 3 14 27 7 6 4 5 5 6 6 8-11 71.9 77.3 73.2 + 86 3 15 6 9 7 5 5 4 15 15 8-11 69.7 77.3 73.2 + 86 3 16 9 7 9 9 6 3 4 4 6-11 68.9 77.2 73.2 + 86 3 17 6 6 12 5 4 6 6 4 6-11 68.9 77.0 73.2 + 86 3 18 12 7 6 12 9 9 4 6 8-11 68.9 76.8 73.2 + 86 3 19 9 15 9 7 5 12 9 5 9-11 68.8 76.6 73.2 + 86 3 20 0 0 4 2 4 5 5 3 3-11 68.4 76.3 73.2 + 86 3 21 3 9 12 18 39 15 15 27 17-11 68.5 76.1 73.2 + 86 3 22 48 39 15 7 15 18 12 18 22-11 69.1 75.8 73.2 + 86 3 23 9 7 9 9 12 9 22 12 11-11 69.8 75.6 73.2 + 86 3 24 15 15 12 22 39 32 27 9 21-11 69.5 75.3 73.2 + 86 3 25 27 18 27 12 22 18 56 39 27-11 69.6 75.1 73.2 + 86 3 26 18 7 7 5 12 22 12 15 12-11 70.8 74.9 73.2 + 86 3 27 32 22 32 15 15 12 9 4 18-11 70.2 74.7 73.2 + 86 3 28 15 12 22 9 12 15 22 9 15-11 70.4 74.6 73.2 + 86 3 29 12 9 6 3 6 15 9 4 8-11 71.5 74.6 73.2 + 86 3 30 2 0 4 6 6 6 9 7 5-11 71.5 74.6 73.2 + 86 3 31 4 2 4 7 9 12 12 6 7-11 71.5 74.6 73.2 + 86 4 1 5 6 6 15 5 5 15 4 8-11 71.8 74.7 73.2 + 86 4 2 7 7 3 6 4 4 5 6 5-11 70.6 74.7 73.2 + 86 4 3 22 27 18 4 7 12 12 6 14-11 70.9 74.8 73.3 + 86 4 4 2 5 4 4 3 3 4 6 4-11 71.7 74.8 73.3 + 86 4 5 3 15 7 7 4 9 12 18 9-11 71.9 74.9 73.3 + 86 4 6 3 6 6 2 3 3 4 7 4-11 71.9 74.9 73.3 + 86 4 7 6 6 4 5 4 5 5 5 5-11 71.9 75.0 73.3 + 86 4 8 3 5 5 9 7 2 4 7 5-11 71.8 75.1 73.3 + 86 4 9 12 18 12 6 15 9 15 15 13-11 72.0 75.1 73.3 + 86 4 10 39 27 27 12 12 27 6 0 19-11 72.5 75.2 73.4 + 86 4 11 3 9 5 2 3 6 4 12 6-11 72.4 75.1 73.4 + 86 4 12 18 6 12 9 6 9 7 9 10-11 73.1 75.0 73.4 + 86 4 13 7 3 5 5 5 3 7 6 5-11 74.2 74.8 73.4 + 86 4 14 4 5 4 4 4 5 5 5 5-11 76.0 74.7 73.5 + 86 4 15 2 9 5 4 9 12 6 6 7-11 76.0 74.6 73.5 + 86 4 16 15 7 3 15 7 9 6 5 8-11 75.8 74.4 73.5 + 86 4 17 3 4 3 6 7 6 9 7 6-11 75.3 74.3 73.5 + 86 4 18 18 12 7 3 3 2 3 9 7-11 74.4 74.1 73.5 + 86 4 19 15 12 6 7 12 15 12 6 11-11 74.9 74.0 73.5 + 86 4 20 5 4 3 6 4 5 6 7 5-11 75.0 73.9 73.6 + 86 4 21 22 6 4 7 4 3 4 7 7-11 74.2 73.8 73.6 + 86 4 22 7 18 9 22 6 6 12 9 11-11 75.1 73.7 73.6 + 86 4 23 6 9 12 6 4 7 22 15 10-11 82.1 73.7 73.6 + 86 4 24 18 12 15 15 7 9 12 6 12-11 87.4 73.7 73.6 + 86 4 25 12 12 7 6 6 5 4 4 7-11 85.7 73.7 73.6 + 86 4 26 15 12 7 7 6 2 4 5 7-11 84.2 73.7 73.7 + 86 4 27 6 5 3 3 2 6 2 6 4-11 83.4 73.7 73.7 + 86 4 28 15 18 22 15 7 7 4 3 11-11 80.1 73.7 73.7 + 86 4 29 6 15 15 12 12 3 3 3 9-11 77.0 73.7 73.8 + 86 4 30 6 7 3 4 5 6 4 3 5-11 74.7 73.7 73.8 + 86 5 1 4 5 6 4 7 0 9 5 5-11 72.5 73.8 73.9 + 86 5 2 7 15 12 18 67 48 67111 43-11 74.3 73.8 73.9 + 86 5 3154 80 56 12 6 3 6 6 40-11 73.8 73.8 74.0 + 86 5 4 6 6 7 27 48 15 6 22 17-11 71.6 73.8 74.0 + 86 5 5 15 12 5 5 15 12 15 56 17-11 70.8 73.8 74.1 + 86 5 6 39 67 48 32 48111 94 94 67-11 69.8 73.8 74.1 + 86 5 7 32 6 15 9 7 6 18 6 12-11 69.9 73.8 74.1 + 86 5 8 7 4 5 7 15 6 7 6 7-11 69.5 73.8 74.2 + 86 5 9 7 7 4 5 5 4 5 6 5-11 69.8 73.8 74.2 + 86 5 10 15 5 3 9 5 4 7 3 6-11 70.9 73.8 74.2 + 86 5 11 6 6 7 7 6 6 7 7 7-11 71.4 73.8 74.2 + 86 5 12 9 18 5 5 7 4 4 5 7-11 70.9 73.7 74.2 + 86 5 13 3 3 3 4 3 3 5 7 4-11 71.7 73.7 74.2 + 86 5 14 5 5 4 0 2 3 3 4 3-11 71.6 73.7 74.1 + 86 5 15 2 4 4 4 3 3 5 6 4-11 72.7 73.7 74.2 + 86 5 16 2 4 7 7 6 5 12 15 7-11 74.3 73.6 74.1 + 86 5 17 12 15 4 9 7 9 6 6 9-11 75.3 73.6 74.1 + 86 5 18 3 6 9 6 5 4 2 7 5-11 78.7 73.5 74.1 + 86 5 19 7 6 4 6 12 7 12 9 8-11 78.7 73.5 74.1 + 86 5 20 6 6 2 6 6 7 4 6 5-11 79.6 73.4 74.1 + 86 5 21 2 3 6 9 9 9 7 4 6-11 79.2 73.4 74.1 + 86 5 22 2 3 2 0 2 5 7 5 3-11 79.2 73.3 74.1 + 86 5 23 7 7 15 9 9 4 5 7 8-11 78.8 73.3 74.1 + 86 5 24 7 6 5 6 12 9 3 6 7-11 79.5 73.2 74.1 + 86 5 25 7 12 15 15 7 9 5 6 10-11 81.1 73.1 74.1 + 86 5 26 6 6 15 9 7 9 6 4 8-11 77.1 73.1 74.1 + 86 5 27 7 5 7 5 5 7 7 15 7-11 74.7 73.1 74.1 + 86 5 28 9 2 0 2 2 2 3 3 3-11 74.3 73.0 74.1 + 86 5 29 4 3 2 5 3 2 4 7 4-11 74.3 73.0 74.1 + 86 5 30 4 4 3 4 6 18 22 18 10-11 72.5 73.0 74.2 + 86 5 31 15 22 18 15 12 12 27 18 17-11 73.2 73.0 74.2 + 86 6 1 32 9 9 12 6 12 12 27 15-11 71.1 73.0 74.2 + 86 6 2 12 9 6 4 7 7 12 9 8-11 69.8 72.9 74.2 + 86 6 3 18 12 9 5 6 5 12 12 10-11 69.9 72.8 74.2 + 86 6 4 7 7 9 12 7 6 7 4 7-11 69.3 72.7 74.2 + 86 6 5 5 4 5 9 4 4 5 6 5-11 69.3 72.5 74.2 + 86 6 6 7 5 4 5 7 7 5 4 6-11 69.8 72.4 74.2 + 86 6 7 6 7 9 18 18 15 9 18 13-11 70.0 72.3 74.2 + 86 6 8 4 9 15 7 5 4 3 9 7-11 70.2 72.2 74.2 + 86 6 9 12 6 4 4 5 7 9 7 7-11 71.1 72.2 74.2 + 86 6 10 12 15 27 15 12 7 6 9 13-11 70.3 72.2 74.2 + 86 6 11 12 4 7 9 7 5 3 5 7-11 70.1 72.2 74.1 + 86 6 12 5 9 5 4 7 6 4 9 6-11 70.5 72.2 74.1 + 86 6 13 6 5 7 3 6 7 9 6 6-11 70.4 72.1 74.1 + 86 6 14 6 6 5 6 5 6 12 6 7-11 72.1 72.1 74.1 + 86 6 15 7 3 5 4 7 7 4 3 5-11 71.3 72.1 74.1 + 86 6 16 3 3 4 6 6 7 6 7 5-11 70.7 72.2 74.1 + 86 6 17 3 6 6 22 9 6 6 6 8-11 69.8 72.2 74.0 + 86 6 18 7 15 7 7 18 7 5 3 9-11 69.9 72.2 74.0 + 86 6 19 6 3 0 4 3 6 9 12 5-11 69.6 72.3 74.0 + 86 6 20 9 5 6 4 7 5 6 7 6-11 69.6 72.3 74.0 + 86 6 21 9 7 9 9 4 4 5 2 6-11 69.2 72.3 74.0 + 86 6 22 15 12 5 4 5 6 5 9 8-11 69.7 72.3 73.9 + 86 6 23 12 5 4 4 4 3 4 2 5-11 69.6 72.3 73.9 + 86 6 24 2 6 7 18 7 9 6 2 7-11 68.4 72.4 73.9 + 86 6 25 4 2 4 2 2 3 4 4 3-11 68.5 72.3 73.9 + 86 6 26 5 6 5 4 2 4 4 7 5-11 68.2 72.3 73.9 + 86 6 27 6 12 6 15 56 39 39 48 28-11 68.6 72.3 74.0 + 86 6 28 39 48 15 6 7 4 9 12 18-11 68.3 72.2 74.0 + 86 6 29 7 5 5 6 12 22 12 22 11-11 68.3 72.1 74.0 + 86 6 30 22 7 2 6 6 7 9 12 9-11 68.3 72.0 74.0 + 86 7 1 22 9 4 3 2 6 5 6 7-11 68.9 71.9 74.0 + 86 7 2 5 7 15 22 9 7 22 18 13-11 68.7 71.8 74.0 + 86 7 3 9 9 12 9 5 4 6 7 8-11 68.9 71.6 74.0 + 86 7 4 12 6 6 5 5 6 9 9 7-11 69.3 71.5 74.0 + 86 7 5 12 5 6 5 6 4 5 15 7-11 71.1 71.3 74.0 + 86 7 6 9 6 3 5 4 4 6 3 5-11 73.9 71.2 74.0 + 86 7 7 2 5 5 3 2 3 4 6 4-11 72.1 71.2 74.0 + 86 7 8 3 5 5 3 4 9 9 7 6-11 71.6 71.1 74.0 + 86 7 9 7 6 5 6 9 6 5 5 6-11 72.5 71.0 74.0 + 86 7 10 15 6 4 7 4 4 7 4 6-11 75.0 71.0 74.0 + 86 7 11 2 5 5 3 4 4 3 2 4-11 74.7 71.0 74.0 + 86 7 12 4 4 2 5 4 7 9 9 6-11 73.5 71.0 74.0 + 86 7 13 12 9 7 3 12 4 4 4 7-11 74.2 71.0 74.0 + 86 7 14 4 4 3 4 5 4 3 4 4-11 74.6 71.0 73.9 + 86 7 15 3 4 3 4 4 4 3 5 4-11 74.0 71.0 73.9 + 86 7 16 4 3 3 5 7 7 5 9 5-11 74.4 71.0 73.9 + 86 7 17 15 15 9 6 6 4 3 7 8-11 74.9 71.0 73.9 + 86 7 18 7 6 3 7 6 5 4 6 6-11 74.6 70.9 73.9 + 86 7 19 5 5 6 2 2 4 4 5 4-11 73.3 70.9 73.9 + 86 7 20 4 3 0 2 3 4 4 6 3-11 73.2 70.9 73.9 + 86 7 21 6 6 4 7 6 6 6 9 6-11 72.5 70.9 73.9 + 86 7 22 15 9 5 6 7 4 3 4 7-11 73.2 70.9 73.9 + 86 7 23 7 4 4 5 5 5 4 4 5-11 71.6 70.9 73.9 + 86 7 24 2 5 4 4 2 5 18 80 15-11 71.2 70.9 73.9 + 86 7 25 18 12 7 6 5 6 18 67 17-11 70.9 70.8 73.9 + 86 7 26 32 32 18 15 22 18 12 15 21-11 71.1 70.8 73.9 + 86 7 27 12 7 22 48 6 9 7 18 16-11 71.6 70.8 73.9 + 86 7 28 15 9 9 9 9 7 6 7 9-11 72.5 70.8 74.0 + 86 7 29 18 15 12 15 27 12 22 18 17-11 74.0 70.8 74.0 + 86 7 30 18 9 18 7 7 9 7 12 11-11 73.6 70.8 74.0 + 86 7 31 15 12 7 27 9 7 7 9 12-11 72.6 70.8 74.0 + 86 8 1 7 6 7 4 3 5 6 7 6-11 72.8 70.8 74.0 + 86 8 2 2 6 6 5 7 4 2 5 5-11 72.3 70.8 73.9 + 86 8 3 9 12 18 15 18 15 39 27 19-11 72.9 70.8 73.9 + 86 8 4 39 39 15 12 15 22 7 12 20-11 71.6 70.8 73.9 + 86 8 5 7 9 6 7 7 6 9 18 9-11 71.7 70.8 73.8 + 86 8 6 9 7 9 2 6 5 9 4 6-11 72.1 70.8 73.7 + 86 8 7 3 2 3 2 2 5 4 9 4-11 71.9 70.9 73.6 + 86 8 8 12 6 6 7 7 9 7 4 7-11 71.3 70.9 73.5 + 86 8 9 6 6 5 4 6 22 18 15 10-11 71.3 70.9 73.5 + 86 8 10 12 5 7 5 3 4 6 5 6-11 70.5 70.9 73.4 + 86 8 11 7 7 6 12 9 6 5 3 7-11 68.6 70.9 73.3 + 86 8 12 2 9 18 9 9 12 9 9 10-11 68.4 70.9 73.3 + 86 8 13 7 12 18 15 12 9 5 5 10-11 67.9 70.9 73.2 + 86 8 14 4 3 4 5 4 9 7 7 5-11 68.2 70.9 73.1 + 86 8 15 9 5 5 6 6 6 5 6 6-11 69.5 70.8 73.1 + 86 8 16 7 3 5 4 4 2 5 5 4-11 69.4 70.8 73.0 + 86 8 17 6 9 4 3 5 5 4 3 5-11 68.9 70.7 73.0 + 86 8 18 3 4 3 3 3 3 2 0 3-11 69.1 70.7 73.0 + 86 8 19 3 3 4 7 7 4 2 6 5-11 69.3 70.7 73.0 + 86 8 20 6 5 5 3 15 22 39 22 15-11 70.7 70.6 73.0 + 86 8 21 9 9 22 48 48 48 18 27 29-11 70.5 70.6 73.0 + 86 8 22 15 39 56 15 39 12 27 27 29-11 70.1 70.6 73.0 + 86 8 23 15 27 32 15 27 39 27 18 25-11 69.6 70.5 73.0 + 86 8 24 27 18 15 9 9 27 39 32 22-11 69.1 70.5 73.0 + 86 8 25 48 27 22 9 6 6 9 12 17-11 69.3 70.5 73.0 + 86 8 26 15 15 15 6 27 9 4 6 12-11 69.9 70.4 73.0 + 86 8 27 12 15 18 15 18 9 7 12 13-11 69.1 70.4 73.0 + 86 8 28 7 5 5 7 27 18 22 9 13-11 68.8 70.4 73.0 + 86 8 29 22 22 15 22 27 22 18 27 22-11 68.8 70.4 73.0 + 86 8 30 22 27 22 12 18 12 56 48 27-11 69.3 70.4 73.0 + 86 8 31 48 27 5 6 9 7 15 15 17-11 69.6 70.4 73.0 + 86 9 1 18 15 9 6 4 4 6 12 9-11 69.8 70.4 73.0 + 86 9 2 22 32 22 18 12 7 6 5 16-11 69.2 70.5 72.9 + 86 9 3 7 7 4 4 4 7 5 15 7-11 69.3 70.5 72.9 + 86 9 4 15 9 4 2 6 6 7 9 7-11 69.4 70.6 72.8 + 86 9 5 9 7 7 6 6 5 12 18 9-11 69.6 70.6 72.8 + 86 9 6 27 7 3 7 7 7 3 5 8-11 69.5 70.7 72.7 + 86 9 7 7 5 7 6 6 3 3 4 5-11 69.9 70.8 72.7 + 86 9 8 6 5 5 4 2 3 6 9 5-11 69.4 70.9 72.7 + 86 9 9 9 12 6 5 6 2 3 3 6-11 69.4 71.1 72.7 + 86 9 10 7 6 7 7 4 5 3 5 6-11 69.3 71.4 72.6 + 86 9 11 6 9 5 3 6 3 27 67 16-11 68.8 71.6 72.6 + 86 9 12 56300154 67 32 27 39 39 89-11 68.8 71.9 72.6 + 86 9 13 39 27 18 15 12 12 15 39 22-11 69.0 72.2 72.6 + 86 9 14 27 18 7 3 3 12 15 12 12-11 70.0 72.5 72.6 + 86 9 15 15 12 12 27 22 18 27 7 18-11 71.5 72.8 72.6 + 86 9 16 6 9 3 2 3 4 12 15 7-11 70.5 73.1 72.6 + 86 9 17 18 15 18 5 7 7 15 27 14-11 69.2 73.3 72.6 + 86 9 18 32 27 18 12 12 12 32 15 20-11 68.8 73.6 72.6 + 86 9 19 48 32 22 7 9 32 9 12 21-11 68.7 73.9 72.6 + 86 9 20 12 7 39 9 7 7 18 48 18-11 68.6 74.1 72.7 + 86 9 21 39 15 6 5 6 6 7 3 11-11 68.8 74.3 72.7 + 86 9 22 2 2 3 3 4 2 9 7 4-11 68.3 74.6 72.7 + 86 9 23 22 80 48 22 22 56 39 56 43-11 68.7 74.8 72.7 + 86 9 24 27 22 32 15 22 12 18 27 22-11 68.8 74.9 72.7 + 86 9 25 9 9 9 15 56 39 18 56 26-11 69.4 75.1 72.7 + 86 9 26 48 32 32 32 27 27 9 7 27-11 68.5 75.2 72.8 + 86 9 27 15 12 27 15 18 15 32 27 20-11 68.9 75.4 72.8 + 86 9 28 15 12 15 7 4 4 15 32 13-11 70.3 75.5 72.8 + 86 9 29 27 15 7 7 5 9 15 22 13-11 71.5 75.5 72.8 + 86 9 30 7 6 9 9 5 2 2 2 5-11 71.6 75.6 72.8 + 86 10 1 3 4 4 18 9 7 6 7 7-11 71.2 75.6 72.8 + 86 10 2 18 22 5 9 32 56 22 18 23-11 71.6 75.6 72.8 + 86 10 3 18 15 7 4 3 6 6 15 9-11 72.1 75.6 72.8 + 86 10 4 12 7 6 4 5 5 9 6 7-11 70.7 75.7 72.8 + 86 10 5 27 18 12 15 27 22 22 9 19-11 71.1 75.7 72.8 + 86 10 6 7 22 32 9 5 6 5 7 12-11 72.4 75.8 72.9 + 86 10 7 4 6 6 5 2 4 5 6 5-11 74.3 75.9 72.9 + 86 10 8 3 3 5 7 6 12 5 4 6-11 74.8 75.9 73.0 + 86 10 9 5 4 7 3 4 5 9 9 6-11 74.6 76.0 73.1 + 86 10 10 3 2 5 3 0 0 4 6 3-11 73.3 76.0 73.1 + 86 10 11 3 0 3 3 6 5 5 4 4-11 73.2 76.0 73.2 + 86 10 12 7 0 3 2 2 2 2 2 3-11 75.3 76.1 73.3 + 86 10 13 2 2 6 7 18 32111 48 28-11 75.1 76.2 73.4 + 86 10 14 32 56 39 39 39 7 18 18 31-11 75.0 76.2 73.4 + 86 10 15 9 7 27 18 15 9 15 9 14-11 71.8 76.3 73.5 + 86 10 16 4 9 5 5 5 4 7 6 6-11 79.1 76.4 73.5 + 86 10 17 12 7 5 5 3 3 4 12 6-11 82.6 76.5 73.6 + 86 10 18 4 3 3 7 12 32 27 18 13-11 86.3 76.5 73.6 + 86 10 19 22 18 18 22 39 18 18 12 21-11 88.6 76.6 73.7 + 86 10 20 12 9 9 9 12 22 22 15 14-11 92.2 76.6 73.7 + 86 10 21 18 15 9 9 7 7 12 9 11-11 91.5 76.6 73.7 + 86 10 22 9 9 9 7 2 3 4 2 6-11 94.4 76.6 73.7 + 86 10 23 5 3 3 3 5 4 12 5 5-11 97.9 76.7 73.7 + 86 10 24 2 0 0 2 2 6 0 4 2-11 97.3 76.7 73.7 + 86 10 25 2 3 3 3 3 3 3 12 4-11 94.4 76.7 73.7 + 86 10 26 5 0 3 3 2 5 3 6 3-11 94.2 76.7 73.6 + 86 10 27 7 9 15 12 18 39 12 12 16-11 94.3 76.6 73.6 + 86 10 28 22 18 3 5 2 0 6 18 9-11 93.6 76.6 73.6 + 86 10 29 22 15 18 18 12 4 7 27 15-11 91.4 76.6 73.6 + 86 10 30 15 18 9 9 7 15 15 27 14-11 89.8 76.7 73.6 + 86 10 31 9 9 6 5 4 7 3 7 6-11 89.2 76.7 73.6 + 86 11 1 27 32 18 9 3 4 5 4 13-11 87.6 76.7 73.6 + 86 11 2 3 3 6 7 6 5 9 6 6-11 84.1 76.8 73.7 + 86 11 3 7 18 12 9 4 12 15 48 16-11 80.8 76.8 73.7 + 86 11 4 80 80 39 94 67 56 80 39 67-11 82.3 76.8 73.7 + 86 11 5 39 48 27 15 6 5 9 9 20-11 81.5 76.9 73.8 + 86 11 6 12 12 9 7 7 7 27 18 12-11 80.6 76.9 73.8 + 86 11 7 15 6 4 3 5 4 0 7 6-11 76.9 76.9 73.9 + 86 11 8 7 6 4 5 3 5 4 2 5-11 73.5 76.9 73.9 + 86 11 9 4 4 5 4 4 3 0 2 3-11 71.9 76.9 74.0 + 86 11 10 3 5 2 2 3 4 9 9 5-11 70.4 76.9 74.0 + 86 11 11 12 39 27 7 7 6 7 6 14-11 69.9 76.9 74.1 + 86 11 12 27 15 12 5 4 3 2 4 9-11 71.4 76.9 74.1 + 86 11 13 4 2 3 3 7 7 12 5 5-11 76.0 76.9 74.2 + 86 11 14 7 5 4 6 4 3 4 5 5-11 74.1 76.9 74.2 + 86 11 15 12 6 5 9 15 22 12 18 12-11 75.1 76.9 74.3 + 86 11 16 12 9 7 12 12 18 12 6 11-11 75.0 76.8 74.3 + 86 11 17 12 7 7 9 6 7 7 6 8-11 73.8 76.8 74.4 + 86 11 18 7 12 6 4 4 2 5 5 6-11 73.0 76.7 74.5 + 86 11 19 2 3 0 3 2 5 9 9 4-11 72.5 76.6 74.5 + 86 11 20 12 9 3 2 2 2 4 6 5-11 72.5 76.6 74.6 + 86 11 21 0 2 4 3 0 4 4 4 3-11 74.1 76.5 74.6 + 86 11 22 0 5 2 2 0 0 3 4 2-11 74.5 76.5 74.7 + 86 11 23 3 2 2 3 5 6 15 56 12-11 75.8 76.4 74.7 + 86 11 24 67 56 12 27 9 39 80 80 46-11 77.0 76.4 74.8 + 86 11 25 48 39 27 39 56 39111 32 49-11 75.5 76.3 74.8 + 86 11 26 27 18 18 12 27 22 5 4 17-11 74.3 76.2 74.8 + 86 11 27 15 15 15 9 6 4 3 2 9-11 73.6 76.1 74.9 + 86 11 28 0 7 6 5 3 4 7 5 5-11 73.1 75.8 74.9 + 86 11 29 9 6 5 5 12 22 12 9 10-11 72.4 75.6 74.9 + 86 11 30 3 7 15 12 15 22 9 32 14-11 70.9 75.3 74.9 + 86 12 1 32 15 18 15 5 7 9 4 13-11 70.7 75.0 74.9 + 86 12 2 7 9 9 6 6 6 5 12 8-11 70.6 74.7 75.0 + 86 12 3 7 5 5 5 7 6 4 6 6-11 70.2 74.3 75.0 + 86 12 4 7 4 4 4 9 5 9 12 7-11 69.2 74.0 75.0 + 86 12 5 15 2 0 3 2 0 2 4 4-11 70.0 73.7 75.0 + 86 12 6 4 9 3 5 0 3 5 4 4-11 69.1 73.4 75.0 + 86 12 7 4 9 7 9 5 6 5 3 6-11 68.2 73.1 75.0 + 86 12 8 4 3 2 4 2 4 6 5 4-11 69.1 72.8 75.1 + 86 12 9 9 4 3 5 4 9 9 6 6-11 70.8 72.6 75.1 + 86 12 10 18 15 5 6 6 12 12 22 12-11 72.3 72.3 75.1 + 86 12 11 18 9 9 6 6 6 5 4 8-11 73.0 72.1 75.1 + 86 12 12 0 4 3 4 3 4 6 9 4-11 71.1 71.9 75.2 + 86 12 13 5 7 6 4 7 7 15 48 12-11 71.5 71.8 75.2 + 86 12 14 39 39 32 15 7 4 15 6 20-11 71.4 71.6 75.2 + 86 12 15 5 4 5 3 2 2 5 4 4-11 70.9 71.5 75.2 + 86 12 16 22 18 7 7 6 22 7 6 12-11 70.8 71.4 75.3 + 86 12 17 3 3 5 4 5 7 6 5 5-11 71.7 71.3 75.3 + 86 12 18 2 2 4 3 4 5 12 12 6-11 71.4 71.2 75.3 + 86 12 19 5 7 3 3 3 2 6 15 6-11 71.0 71.2 75.4 + 86 12 20 7 5 6 5 7 15 5 9 7-11 70.4 71.2 75.4 + 86 12 21 9 3 4 6 12 9 22 22 11-11 70.6 71.1 75.4 + 86 12 22 15 22 4 7 18 22 9 12 14-11 71.4 71.1 75.5 + 86 12 23 18 15 15 27 39 18 12 32 22-11 70.8 71.1 75.5 + 86 12 24 15 12 7 9 5 6 15 7 10-11 70.0 71.0 75.6 + 86 12 25 12 27 15 15 4 4 3 9 11-11 70.0 71.0 75.6 + 86 12 26 12 18 15 15 7 9 15 18 14-11 69.7 70.9 75.7 + 86 12 27 15 9 9 6 6 9 6 12 9-11 69.4 70.8 75.7 + 86 12 28 7 5 3 5 2 2 0 2 3-11 69.2 70.7 75.8 + 86 12 29 6 5 5 3 2 2 0 3 3-11 69.2 70.7 75.8 + 86 12 30 6 3 0 0 3 5 9 7 4-11 69.6 70.6 75.8 + 86 12 31 6 6 9 9 12 7 2 3 7-11 68.1 70.6 75.8 + 87 1 1 9 15 22 22 18 18 22 18 18-11 71.6 70.5 75.8 + 87 1 2 4 12 9 7 22 12 6 7 10-11 70.5 70.5 75.8 + 87 1 3 7 12 9 6 5 3 5 5 7-11 69.1 70.4 75.9 + 87 1 4 5 3 2 0 0 3 4 5 3-11 69.0 70.2 75.9 + 87 1 5 5 2 3 2 0 4 4 3 3-11 70.3 70.2 75.9 + 87 1 6 3 6 3 4 3 2 2 4 3-11 69.3 70.1 75.9 + 87 1 7 5 6 3 2 2 3 5 12 5-11 69.7 70.0 75.9 + 87 1 8 9 5 6 6 6 9 7 7 7-11 68.2 70.0 75.9 + 87 1 9 7 7 27 18 9 6 4 4 10-11 68.0 69.9 75.9 + 87 1 10 4 6 9 7 7 4 4 3 6-11 67.4 69.9 75.9 + 87 1 11 2 5 5 3 3 4 9 12 5-11 68.0 69.9 75.9 + 87 1 12 12 22 12 12 6 7 5 4 10-11 68.9 69.9 75.9 + 87 1 13 6 4 5 5 5 9 6 6 6-11 69.7 69.9 75.9 + 87 1 14 4 4 6 3 7 4 7 2 5-11 71.1 69.9 75.9 + 87 1 15 2 4 3 2 2 5 9 15 5-11 71.5 70.0 75.9 + 87 1 16 12 9 6 15 15 22 15 5 12-11 70.7 70.0 76.0 + 87 1 17 15 12 4 5 5 6 7 22 10-11 70.8 70.1 76.0 + 87 1 18 15 5 6 9 3 5 6 12 8-11 70.6 70.1 76.0 + 87 1 19 3 4 15 9 7 5 7 7 7-11 70.0 70.2 76.1 + 87 1 20 6 15 22 15 15 32 27 9 18-11 68.9 70.2 76.1 + 87 1 21 6 7 9 12 18 5 9 12 10-11 71.2 70.2 76.2 + 87 1 22 9 7 7 5 9 9 18 12 10-11 73.6 70.2 76.3 + 87 1 23 12 15 6 18 9 5 7 15 11-11 72.1 70.2 76.4 + 87 1 24 9 12 9 5 4 7 7 4 7-11 71.6 70.2 76.6 + 87 1 25 2 12 9 6 6 7 6 9 7-11 71.5 70.3 76.7 + 87 1 26 12 9 9 6 9 5 5 2 7-11 72.6 70.3 76.8 + 87 1 27 4 12 5 15 12 3 3 4 7-11 69.9 70.4 76.9 + 87 1 28 9 9 9 6 6 18 15 18 11-11 70.8 70.4 76.9 + 87 1 29 39 18 7 4 5 3 3 5 11-11 70.6 70.4 77.0 + 87 1 30 6 2 0 2 3 6 5 4 4-11 69.8 70.4 77.0 + 87 1 31 18 18 6 6 5 4 3 5 8-11 68.7 70.4 77.1 + 87 2 1 12 12 4 4 7 5 5 7 7-11 69.2 70.4 77.1 + 87 2 2 5 3 4 4 4 7 4 2 4-11 69.8 70.4 77.2 + 87 2 3 6 5 6 4 2 2 3 3 4-11 70.0 70.4 77.2 + 87 2 4 3 2 2 3 4 9 7 3 4-11 68.3 70.4 77.2 + 87 2 5 2 2 4 6 3 7 3 6 4-11 67.5 70.4 77.3 + 87 2 6 15 6 2 4 7 5 5 15 7-11 67.7 70.5 77.3 + 87 2 7 9 6 6 6 9 9 9 18 9-11 69.1 70.5 77.4 + 87 2 8 9 18 22 6 9 22 22 7 14-11 68.9 70.6 77.4 + 87 2 9 9 9 6 15 12 12 4 18 11-11 69.2 70.6 77.5 + 87 2 10 15 15 7 9 5 9 4 4 9-11 69.3 70.7 77.6 + 87 2 11 9 4 3 0 4 5 22 6 7-11 68.5 70.7 77.7 + 87 2 12 27 15 18 12 27 32 9 6 18-11 67.8 70.8 77.8 + 87 2 13 9 9 4 0 3 2 4 4 4-11 68.0 70.9 77.9 + 87 2 14 4 6 6 6 5 5 3 2 5-11 68.3 71.0 77.9 + 87 2 15 2 6 4 6 12 6 6 7 6-11 69.3 71.0 78.0 + 87 2 16 9 7 9 12 15 18 18 6 12-11 68.4 71.1 78.1 + 87 2 17 4 7 6 5 7 15 15 12 9-11 68.1 71.2 78.2 + 87 2 18 7 6 5 9 6 4 6 15 7-11 69.8 71.3 78.3 + 87 2 19 4 3 3 4 4 6 5 9 5-11 69.5 71.3 78.4 + 87 2 20 6 27 27 48 39 32 32 18 29-11 69.6 71.4 78.4 + 87 2 21 15 15 39 22 5 22 12 22 19-11 70.7 71.4 78.5 + 87 2 22 7 32 27 22 7 7 9 32 18-11 70.4 71.5 78.6 + 87 2 23 18 15 9 12 22 12 18 7 14-11 70.5 71.5 78.6 + 87 2 24 9 6 6 7 7 9 27 22 12-11 72.1 71.6 78.7 + 87 2 25 12 5 6 9 6 5 9 4 7-11 73.5 71.8 78.7 + 87 2 26 5 2 4 12 7 6 4 4 6-11 73.9 72.1 78.8 + 87 2 27 4 6 12 9 9 18 18 18 12-11 74.0 72.4 78.8 + 87 2 28 7 6 9 27 12 9 12 22 13-11 72.7 72.8 78.8 + 87 3 1 7 9 5 5 6 12 15 12 9-11 72.8 73.1 78.9 + 87 3 2 0 2 5 3 3 6 3 5 3-11 73.3 73.5 78.9 + 87 3 3 2 9 6 7 4 5 9 7 6-11 71.6 73.9 78.9 + 87 3 4 22 7 5 12 9 7 5 12 10-11 73.3 74.2 79.0 + 87 3 5 6 18 7 27 27 32 18 32 21-11 73.7 74.5 79.0 + 87 3 6 15 9 9 7 5 3 12 18 10-11 75.6 74.8 79.1 + 87 3 7 32 27 39 18 32 5 9 6 21-11 75.5 75.1 79.2 + 87 3 8 15 9 18 15 12 18 5 7 12-11 76.9 75.4 79.2 + 87 3 9 18 22 9 5 4 5 4 3 9-11 73.6 75.7 79.3 + 87 3 10 5 9 18 12 27 15 3 0 11-11 71.4 76.0 79.4 + 87 3 11 5 6 9 7 9 15 12 5 9-11 70.5 76.2 79.5 + 87 3 12 15 18 7 15 6 5 15 32 14-11 69.5 76.3 79.6 + 87 3 13 15 7 9 9 6 4 4 9 8-11 69.6 76.4 79.6 + 87 3 14 7 12 7 9 7 6 9 6 8-11 71.1 76.5 79.7 + 87 3 15 7 18 12 15 7 5 7 9 10-11 70.5 76.6 79.8 + 87 3 16 15 4 12 12 18 5 12 15 12-11 71.0 76.7 79.8 + 87 3 17 18 27 7 6 6 6 4 5 10-11 71.2 76.7 79.8 + 87 3 18 9 4 7 4 9 22 15 27 12-11 72.5 76.8 79.9 + 87 3 19 27 15 9 12 7 4 7 9 11-11 71.5 76.9 79.9 + 87 3 20 4 2 3 3 4 5 4 5 4-11 73.8 77.0 80.0 + 87 3 21 5 5 7 15 22 32 27 32 18-11 74.2 77.0 80.0 + 87 3 22 32 9 7 9 5 7 27 22 15-11 73.8 77.2 80.0 + 87 3 23 6 6 7 7 7 6 3 2 6-11 75.5 77.3 80.1 + 87 3 24 3 2 12 4 2 4 6 5 5-11 75.9 77.5 80.1 + 87 3 25 2 0 3 3 5 22 5 12 7-11 75.7 77.7 80.1 + 87 3 26 12 12 15 18 12 18 12 4 13-11 75.6 77.9 80.2 + 87 3 27 15 22 18 39 32 39 18 22 26-11 75.4 78.2 80.2 + 87 3 28 32 18 15 9 6 4 5 3 12-11 75.0 78.4 80.2 + 87 3 29 3 5 12 7 2 3 5 4 5-11 75.3 78.6 80.3 + 87 3 30 3 4 3 4 6 5 6 2 4-11 74.6 78.9 80.3 + 87 3 31 3 6 4 4 5 3 4 3 4-11 71.9 79.1 80.3 + 87 4 1 12 22 18 7 6 6 7 4 10-11 72.5 79.3 80.3 + 87 4 2 3 7 5 6 4 5 2 2 4-11 71.9 79.5 80.4 + 87 4 3 0 0 2 2 2 2 3 2 2-11 72.4 79.7 80.4 + 87 4 4 3 22 7 32 39 18 5 5 16-11 74.0 80.0 80.5 + 87 4 5 15 18 7 5 12 18 12 12 12-11 77.6 80.3 80.5 + 87 4 6 6 12 3 6 12 9 4 6 7-11 89.4 80.6 80.6 + 87 4 7 18 22 22 7 12 15 5 3 13-11 94.4 80.9 80.6 + 87 4 8 5 7 15 12 9 9 18 15 11-11 94.8 81.2 80.6 + 87 4 9 5 6 5 9 9 7 18 6 8-11100.5 81.5 80.7 + 87 4 10 32 27 6 6 3 3 3 0 10-11100.0 81.8 80.8 + 87 4 11 3 9 9 7 12 6 3 6 7-11101.3 82.2 80.8 + 87 4 12 4 9 3 3 5 4 2 7 5-11 98.6 82.5 80.9 + 87 4 13 7 5 6 12 3 32 15 18 12-11 99.3 82.8 81.0 + 87 4 14 2 4 4 7 15 9 6 4 6-11 97.7 83.1 81.1 + 87 4 15 7 5 3 4 7 7 7 5 6-11 97.8 83.4 81.2 + 87 4 16 3 5 5 4 5 4 0 5 4-11 95.3 83.6 81.3 + 87 4 17 9 3 2 3 6 6 5 3 5-11 97.3 83.8 81.4 + 87 4 18 3 3 3 5 4 4 4 4 4-11 94.0 83.9 81.4 + 87 4 19 7 9 18 12 5 4 6 5 8-11 91.7 83.9 81.5 + 87 4 20 5 22 22 27 7 5 2 2 12-11 85.6 84.0 81.5 + 87 4 21 0 7 6 4 2 2 0 0 3-11 78.3 84.1 81.5 + 87 4 22 0 7 4 5 5 4 5 6 5-11 76.5 84.2 81.5 + 87 4 23 3 6 3 3 3 3 3 4 4-11 76.5 84.3 81.5 + 87 4 24 9 9 9 9 18 5 9 6 9-11 78.6 84.4 81.5 + 87 4 25 3 5 5 4 5 5 4 5 5-11 75.8 84.4 81.5 + 87 4 26 5 5 2 4 7 4 4 3 4-11 74.3 84.5 81.5 + 87 4 27 4 5 15 12 6 15 7 6 9-11 74.8 84.6 81.5 + 87 4 28 6 0 0 2 2 0 2 4 2-11 74.3 84.6 81.5 + 87 4 29 5 3 3 4 2 4 9 5 4-11 73.6 84.7 81.5 + 87 4 30 3 3 3 3 3 5 5 6 4-11 76.8 84.7 81.6 + 87 5 1 3 2 5 15 6 7 9 12 7-11 79.3 84.8 81.6 + 87 5 2 6 4 7 6 4 6 6 5 6-11 80.2 84.9 81.6 + 87 5 3 3 4 12 9 9 5 5 2 6-11 82.8 84.9 81.7 + 87 5 4 4 6 12 5 5 5 3 3 5-11 84.4 85.0 81.7 + 87 5 5 2 2 3 6 5 7 6 3 4-11 86.1 85.1 81.8 + 87 5 6 2 2 0 2 5 6 12 12 5-11 87.9 85.1 81.8 + 87 5 7 12 18 7 7 5 5 3 5 8-11 88.1 85.2 81.9 + 87 5 8 4 7 3 4 3 4 2 5 4-11 89.1 85.3 81.9 + 87 5 9 3 6 5 6 5 4 3 4 5-11 87.3 85.4 81.9 + 87 5 10 4 5 7 22 22 9 6 4 10-11 89.5 85.5 82.0 + 87 5 11 6 4 4 5 3 4 7 12 6-11 86.4 85.6 82.0 + 87 5 12 3 3 0 0 2 2 3 5 2-11 85.4 85.7 82.1 + 87 5 13 3 4 7 4 5 7 7 15 7-11 87.4 85.9 82.2 + 87 5 14 15 6 7 7 15 7 6 9 9-11 91.2 86.1 82.2 + 87 5 15 2 4 5 5 5 6 3 3 4-11 93.6 86.3 82.3 + 87 5 16 3 6 4 4 4 4 6 3 4-11 98.2 86.4 82.3 + 87 5 17 4 3 2 3 4 4 5 5 4-11 96.7 86.3 82.4 + 87 5 18 3 2 3 2 2 3 3 2 3-11 98.5 86.1 82.4 + 87 5 19 2 2 2 2 2 4 2 4 3-11100.1 85.9 82.5 + 87 5 20 6 3 4 3 4 4 3 6 4-11 99.8 85.6 82.6 + 87 5 21 5 4 2 2 2 3 3 2 3-11 99.9 85.3 82.7 + 87 5 22 3 5 4 5 9 15 6 7 7-11101.0 85.0 82.8 + 87 5 23 6 6 7 6 5 7 12 15 8-11 94.9 84.7 82.9 + 87 5 24 7 18 12 12 12 27 27 48 20-11 98.5 84.4 83.0 + 87 5 25 15 67 32 15 32 12 22 4 25-11 96.8 84.1 83.1 + 87 5 26 3 5 7 7 7 7 27 7 9-11 92.3 83.8 83.2 + 87 5 27 12 15 22 22 9 7 15 12 14-11 87.5 83.5 83.3 + 87 5 28 7 6 6 7 6 4 15 32 10-11 85.1 83.3 83.3 + 87 5 29 18 39 32 39 27 6 5 2 21-11 79.3 83.0 83.4 + 87 5 30 2 3 5 12 18 9 15 6 9-11 77.9 82.8 83.5 + 87 5 31 6 6 9 12 9 12 22 12 11-11 77.3 82.7 83.5 + 87 6 1 12 5 3 6 12 6 7 9 8-11 77.8 82.7 83.6 + 87 6 2 18 15 9 5 4 4 4 4 8-11 77.9 82.7 83.6 + 87 6 3 2 4 3 5 5 4 5 7 4-11 76.4 82.7 83.6 + 87 6 4 7 5 5 7 7 5 5 6 6-11 77.3 82.6 83.7 + 87 6 5 5 6 5 4 9 12 9 9 7-11 76.1 82.7 83.7 + 87 6 6 4 7 48 39 32 18 27 27 25-11 75.8 82.8 83.8 + 87 6 7 15 4 4 12 9 9 12 7 9-11 76.0 82.8 83.8 + 87 6 8 5 4 5 3 3 3 2 4 4-11 77.0 82.9 83.9 + 87 6 9 3 2 3 3 2 4 3 7 3-11 76.8 83.1 83.9 + 87 6 10 6 4 2 4 6 5 3 4 4-11 78.1 83.3 84.0 + 87 6 11 6 5 6 15 7 7 6 6 7-11 80.7 83.5 84.0 + 87 6 12 7 12 7 12 18 18 15 12 13-11 82.1 83.8 84.1 + 87 6 13 9 9 6 6 6 4 6 5 6-11 82.3 84.2 84.1 + 87 6 14 6 5 12 6 5 3 3 6 6-11 80.6 84.6 84.2 + 87 6 15 3 2 2 3 2 9 7 5 4-11 80.4 84.9 84.2 + 87 6 16 6 4 9 4 5 7 18 12 8-11 81.3 85.2 84.3 + 87 6 17 12 6 3 4 6 3 3 7 6-11 81.8 85.4 84.4 + 87 6 18 7 6 6 6 5 6 5 6 6-11 82.9 85.6 84.4 + 87 6 19 15 15 32 27 15 5 6 22 17-11 82.4 85.7 84.5 + 87 6 20 7 5 4 6 7 6 18 15 9-11 81.1 85.7 84.5 + 87 6 21 12 6 4 4 2 4 7 9 6-11 82.6 85.8 84.6 + 87 6 22 4 3 4 4 3 4 5 4 4-11 87.1 85.9 84.6 + 87 6 23 3 5 3 2 3 3 4 3 3-11 87.5 85.9 84.7 + 87 6 24 2 4 7 4 3 7 12 15 7-11 89.1 85.9 84.7 + 87 6 25 3 4 3 5 3 4 18 18 7-11 86.3 85.7 84.8 + 87 6 26 22 12 4 3 6 5 9 12 9-11 84.3 85.5 84.8 + 87 6 27 6 5 6 9 5 4 2 2 5-11 78.9 85.4 84.9 + 87 6 28 3 6 5 3 3 2 4 7 4-11 79.2 85.3 85.0 + 87 6 29 4 6 4 5 3 5 5 7 5-11 76.6 85.2 85.1 + 87 6 30 5 4 3 3 2 3 2 2 3-11 75.9 85.1 85.2 + 87 7 1 2 3 0 2 3 4 3 3 3-11 76.0 85.1 85.3 + 87 7 2 3 4 2 2 2 3 6 5 3-11 74.4 85.1 85.3 + 87 7 3 4 4 3 6 4 4 27 18 9-11 73.7 85.1 85.4 + 87 7 4 22 9 7 4 3 5 9 5 8-11 73.2 85.2 85.5 + 87 7 5 7 6 7 5 6 4 6 6 6-11 73.4 85.2 85.6 + 87 7 6 5 6 4 4 5 5 5 6 5-11 73.3 85.3 85.7 + 87 7 7 3 3 3 3 4 3 7 3 4-11 74.1 85.5 85.7 + 87 7 8 7 12 9 15 12 7 6 9 10-11 76.1 85.7 85.8 + 87 7 9 6 12 12 6 5 9 7 15 9-11 76.3 86.0 85.9 + 87 7 10 18 12 7 12 18 7 7 4 11-11 76.3 86.2 86.0 + 87 7 11 7 9 9 4 5 5 7 7 7-11 75.7 86.5 86.1 + 87 7 12 3 7 9 9 9 6 7 9 7-11 75.5 86.8 86.2 + 87 7 13 5 3 3 3 4 2 4 9 4-11 75.1 87.0 86.3 + 87 7 14 7 7 6 5 2 4 6 6 5-11 76.6 87.2 86.4 + 87 7 15 6 6 18 22 39 27 32 39 24-11 78.8 87.3 86.5 + 87 7 16 27 18 18 22 6 27 15 27 20-11 80.9 87.5 86.6 + 87 7 17 12 22 12 15 22 6 12 15 15-11 81.5 87.6 86.7 + 87 7 18 15 12 7 9 9 7 15 9 10-11 82.5 87.7 86.9 + 87 7 19 9 6 3 7 9 7 12 12 8-11 85.1 87.8 87.0 + 87 7 20 6 12 5 4 7 7 12 22 9-11 93.8 87.8 87.1 + 87 7 21 6 6 9 5 5 6 5 6 6-11 95.6 87.8 87.2 + 87 7 22 7 9 12 7 4 5 9 7 8-11102.6 87.9 87.3 + 87 7 23 4 5 3 3 5 5 7 12 6-11115.6 87.9 87.5 + 87 7 24 6 5 4 3 6 27 27 15 12-11115.0 87.9 87.5 + 87 7 25 18 12 18 32 22 12 12 9 17-11114.9 88.0 87.6 + 87 7 26 3 3 6 4 3 3 3 3 4-11109.8 88.1 87.7 + 87 7 27 7 6 6 4 6 4 4 3 5-11105.4 88.3 87.8 + 87 7 28 5 6 9 22 48 32 32 56 26-11102.5 88.5 87.8 + 87 7 29111132 56 48 48 12 5 4 52-11 97.3 88.7 87.9 + 87 7 30 18 5 5 5 9 5 9 15 9-11 94.0 88.9 88.0 + 87 7 31 18 48 15 6 7 4 7 5 14-11 91.9 89.2 88.1 + 87 8 1 15 27 7 6 7 6 5 5 10-11 91.0 89.3 88.2 + 87 8 2 9 5 6 2 5 4 4 4 5-11 89.7 89.4 88.3 + 87 8 3 4 5 7 7 15 39 15 5 12-11 87.1 89.5 88.4 + 87 8 4 5 7 5 5 5 7 9 12 7-11 84.0 89.5 88.5 + 87 8 5 18 18 18 15 9 9 9 6 13-11 81.6 89.5 88.6 + 87 8 6 4 7 9 7 7 15 7 4 8-11 85.2 89.5 88.6 + 87 8 7 9 4 3 4 4 4 4 3 4-11 89.5 89.6 88.7 + 87 8 8 5 6 7 6 7 7 12 32 10-11 93.8 89.6 88.8 + 87 8 9 15 9 12 5 12 5 6 4 9-11 94.8 89.7 88.9 + 87 8 10 4 4 4 4 4 5 5 5 4-11 94.0 89.8 89.0 + 87 8 11 6 5 3 2 6 9 15 9 7-11 99.8 89.9 89.1 + 87 8 12 18 12 9 7 15 22 18 27 16-11100.0 90.0 89.2 + 87 8 13 18 15 67 32 12 9 15 18 23-11101.8 90.1 89.3 + 87 8 14 18 27 9 12 12 12 18 18 16-11102.4 90.2 89.4 + 87 8 15 9 15 27 22 22 9 18 32 19-11101.3 90.3 89.5 + 87 8 16 18 18 15 15 9 6 9 7 12-11102.7 90.3 89.6 + 87 8 17 9 9 7 7 15 27 9 7 11-11101.2 90.4 89.7 + 87 8 18 6 12 6 5 5 6 5 6 6-11100.4 90.4 89.7 + 87 8 19 5 12 12 5 12 9 5 9 9-11 99.0 90.5 89.8 + 87 8 20 9 7 7 12 9 7 9 5 8-11101.2 90.6 90.0 + 87 8 21 12 5 6 4 3 5 5 2 5-11 96.6 90.6 90.1 + 87 8 22 4 4 4 9 5 9 12 6 7-11 94.4 90.8 90.2 + 87 8 23 7 7 12 6 12 15 12 12 10-11 91.8 90.9 90.3 + 87 8 24 7 7 3 22 22 9 9 9 11-11 89.6 91.0 90.4 + 87 8 25 12 6 22 39 80 56 56 39 39-11 89.9 91.1 90.4 + 87 8 26 67 80 39 39 32 22 27 15 40-11 87.3 91.2 90.5 + 87 8 27 15 12 18 22 32 39 27 6 21-11 85.1 91.3 90.6 + 87 8 28 9 12 4 6 12 12 27 39 15-11 81.3 91.4 90.6 + 87 8 29 22 4 5 15 5 18 18 12 12-11 79.9 91.6 90.7 + 87 8 30 9 12 39 7 6 15 15 12 14-11 78.5 91.5 90.8 + 87 8 31 18 22 67 12 67 56 18 15 34-11 83.2 91.6 90.9 + 87 9 1 39 56 32 18 39 32 18 39 34-11 85.3 91.6 90.9 + 87 9 2 22 22 15 7 7 9 9 5 12-11 85.5 91.4 91.0 + 87 9 3 2 5 7 5 4 3 0 3 4-11 87.5 91.3 91.1 + 87 9 4 6 9 3 5 7 7 6 9 7-11 89.6 91.3 91.2 + 87 9 5 7 7 7 9 6 4 5 6 6-11 93.5 91.4 91.2 + 87 9 6 9 6 7 15 7 9 15 6 9-11 95.6 91.4 91.3 + 87 9 7 3 6 9 12 22 12 4 18 11-11 99.5 91.5 91.4 + 87 9 8 18 9 9 12 9 9 5 7 10-11101.9 91.6 91.5 + 87 9 9 7 9 27 12 6 4 6 6 10-11100.9 91.7 91.6 + 87 9 10 7 4 4 22 94 80 27 67 38-11 97.8 91.7 91.7 + 87 9 11 56 27 32 56 22 39 48 39 40-11 95.4 91.7 91.7 + 87 9 12 9 22 27 15 18 22 32 27 22-11 91.1 91.7 91.8 + 87 9 13 27 22 7 9 27 48 7 39 23-11 89.7 91.7 91.9 + 87 9 14 48 39 22 22 18 12 32 15 26-11 86.8 91.7 92.0 + 87 9 15 27 22 32 22 18 32 32 48 29-11 85.0 91.9 92.2 + 87 9 16 39 12 18 22 15 15 15 15 19-11 83.5 92.0 92.3 + 87 9 17 9 22 15 15 15 18 22 22 17-11 84.0 92.2 92.4 + 87 9 18 9 7 9 9 5 7 6 7 7-11 82.4 92.4 92.5 + 87 9 19 6 2 3 7 4 3 2 0 3-11 82.7 92.5 92.6 + 87 9 20 4 7 3 5 9 22 32 9 11-11 84.9 92.6 92.8 + 87 9 21 9 15 9 12 22 6 5 5 10-11 83.0 92.6 92.9 + 87 9 22 22 22 12 7 6 39 32 94 29-11 81.3 92.5 93.0 + 87 9 23 67 22 18 7 7 6 5 3 17-11 80.4 92.6 93.1 + 87 9 24 22 32 12 9 7 7 12 9 14-11 80.3 92.5 93.2 + 87 9 25 12 22 32 39 56 80 56 67 46-11 77.9 92.5 93.4 + 87 9 26 15 39 32 22 15 12 18 6 20-11 76.4 92.5 93.5 + 87 9 27 15 7 6 12 9 7 18 12 11-11 80.2 92.4 93.7 + 87 9 28 48 12 9 32 27 12 18 18 22-11 82.3 92.3 93.8 + 87 9 29 22 22 12 15 56 56 32 22 30-11 83.5 92.3 94.0 + 87 9 30 48 80 48 32 27 67 27 12 43-11 81.9 92.1 94.1 + 87 10 1 22 9 15 9 7 15 15 9 13-11 84.2 92.0 94.3 + 87 10 2 15 7 9 22 7 3 5 2 9-11 84.8 92.0 94.4 + 87 10 3 2 9 32 39 80 48 56 22 36-11 85.6 92.0 94.6 + 87 10 4 15 15 12 22 27 9 4 4 14-11 89.2 92.1 94.7 + 87 10 5 4 7 5 9 6 5 4 5 6-11 90.1 92.1 94.9 + 87 10 6 4 5 5 5 3 4 7 7 5-11 89.5 92.2 94.9 + 87 10 7 2 5 6 9 27 6 4 5 8-11 90.9 92.3 95.0 + 87 10 8 15 7 7 15 7 5 7 3 8-11 95.0 92.5 95.1 + 87 10 9 2 3 3 2 0 0 6 7 3-11 92.7 92.7 95.1 + 87 10 10 15 12 5 3 4 5 7 5 7-11101.1 93.1 95.2 + 87 10 11 12 15 27 15 22 67 48 22 29-11100.8 93.4 95.3 + 87 10 12 7 7 4 3 12 15 7 9 8-11102.2 93.8 95.3 + 87 10 13 15 15 15 15 27 32 39 32 24-11105.5 94.2 95.4 + 87 10 14 32 27 32 27 22 67 32 12 31-11113.3 94.5 95.5 + 87 10 15 15 39 32 39 22 32 22 9 26-11117.8 94.8 95.7 + 87 10 16 9 18 22 9 12 18 9 6 13-11111.1 94.9 95.8 + 87 10 17 9 5 7 27 39 22 18 15 18-11106.0 95.0 95.9 + 87 10 18 7 5 5 7 6 5 3 2 5-11106.5 94.9 96.1 + 87 10 19 5 5 3 7 12 9 5 5 6-11100.4 94.8 96.2 + 87 10 20 4 4 4 4 5 7 9 27 8-11 95.6 94.7 96.4 + 87 10 21 18 15 6 9 7 18 27 7 13-11 89.3 94.6 96.5 + 87 10 22 4 5 4 4 4 4 7 9 5-11 88.2 94.5 96.7 + 87 10 23 22 18 7 9 7 18 4 3 11-11 87.0 94.4 96.8 + 87 10 24 9 7 9 18 7 9 56 39 19-11 87.1 94.4 96.9 + 87 10 25 39 56 48 32 22 7 9 15 29-11 92.3 94.4 96.9 + 87 10 26 5 12 15 18 15 15 4 6 11-11 96.9 94.4 97.0 + 87 10 27 32 18 39 27 32 39 39 56 35-11105.9 94.4 97.1 + 87 10 28 67 48 48 56 32 48 39 18 45-11106.2 94.4 97.2 + 87 10 29 27 22 18 18 22 15 15 15 19-11102.7 94.5 97.3 + 87 10 30 9 18 18 22 9 5 12 9 13-11104.2 94.6 97.3 + 87 10 31 5 12 12 12 9 12 18 7 11-11 97.8 94.7 97.4 + 87 11 1 12 15 6 7 6 7 4 2 7-11 99.1 94.8 97.5 + 87 11 2 7 9 15 7 12 32 56 48 23-11105.0 94.9 97.6 + 87 11 3 32 15 7 12 22 39 56 32 27-11 98.0 95.0 97.7 + 87 11 4 18 12 7 5 12 3 7 9 9-11101.1 95.2 97.8 + 87 11 5 5 4 7 12 6 12 12 22 10-11 99.2 95.4 97.9 + 87 11 6 9 18 6 9 12 6 9 6 9-11 94.9 95.6 97.9 + 87 11 7 5 15 6 4 3 4 2 3 5-11 94.4 95.7 98.0 + 87 11 8 4 5 6 4 7 3 3 2 4-11 92.7 95.8 98.1 + 87 11 9 2 2 6 7 9 7 9 39 10-11 90.3 95.9 98.2 + 87 11 10 22 15 9 15 9 4 4 7 11-11 89.2 95.9 98.3 + 87 11 11 9 18 18 15 7 7 12 22 14-11 92.6 96.0 98.3 + 87 11 12 48 12 18 15 7 7 27 27 20-11 92.6 96.1 98.4 + 87 11 13 32 22 22 22 39 39 15 22 27-11 92.9 96.1 98.4 + 87 11 14 27 32 15 22 18 27 15 18 22-11 92.3 96.1 98.5 + 87 11 15 18 12 15 15 9 12 15 12 14-11 93.7 96.2 98.5 + 87 11 16 15 15 6 5 4 9 4 4 8-11 95.0 96.3 98.5 + 87 11 17 6 3 2 2 2 2 2 2 3-11 96.8 96.4 98.5 + 87 11 18 4 7 5 2 5 4 5 9 5-11100.0 96.5 98.5 + 87 11 19 7 18 18 15 12 15 7 5 12-11106.6 96.6 98.5 + 87 11 20 9 15 22 7 6 9 9 7 11-11112.2 96.6 98.6 + 87 11 21 7 12 9 7 5 2 5 2 6-11115.3 96.6 98.6 + 87 11 22 7 12 7 7 5 5 6 6 7-11117.8 96.5 98.6 + 87 11 23 9 15 56 48 48 18 56 32 35-11115.1 96.4 98.7 + 87 11 24 27 22 22 39 32 18 12 18 24-11109.4 96.2 98.8 + 87 11 25 9 15 18 7 22 15 7 7 13-11104.9 96.0 98.9 + 87 11 26 15 22 12 12 18 27 9 18 17-11101.3 95.8 99.0 + 87 11 27 18 18 39 22 22 27 9 9 21-11 94.9 95.8 99.1 + 87 11 28 7 9 7 18 7 9 7 6 9-11 92.3 95.7 99.2 + 87 11 29 6 4 0 4 2 3 2 0 3-11 90.7 95.8 99.4 + 87 11 30 0 0 0 4 3 5 7 5 3-11 89.1 95.9 99.6 + 87 12 1 5 6 3 6 4 5 5 3 5-11 87.6 96.0 99.8 + 87 12 2 7 5 3 2 4 6 4 3 4-11 86.5 96.2100.0 + 87 12 3 12 22 12 7 6 22 6 9 12-11 85.8 96.4100.2 + 87 12 4 6 4 4 2 4 9 15 32 10-11 85.1 96.7100.4 + 87 12 5 27 22 32 18 7 12 15 5 17-11 86.8 96.9100.6 + 87 12 6 4 12 6 4 7 9 9 15 8-11 85.7 97.1100.8 + 87 12 7 7 5 5 3 5 4 5 2 5-11 85.3 97.3101.0 + 87 12 8 2 0 0 2 2 0 2 3 1-11 88.7 97.5101.3 + 87 12 9 3 2 2 3 2 2 12 22 6-11 91.2 97.6101.5 + 87 12 10 12 12 15 18 27 56 56 32 29-11 90.1 97.7101.8 + 87 12 11 32 15 5 6 9 18 15 18 15-11 91.1 97.9101.9 + 87 12 12 15 18 9 9 9 7 5 3 9-11 91.5 98.0102.1 + 87 12 13 3 0 5 3 3 6 5 5 4-11 91.1 98.0102.2 + 87 12 14 4 4 5 3 3 3 5 6 4-11 91.5 98.1102.3 + 87 12 15 0 2 4 4 6 32 22 15 11-11 92.0 98.1102.4 + 87 12 16 39 67 56 27 39 39 15 32 39-11 93.4 98.1102.5 + 87 12 17 15 27 6 15 18 15 15 18 16-11 92.2 98.0102.6 + 87 12 18 18 18 9 6 5 4 2 5 8-11 90.2 98.1102.7 + 87 12 19 3 7 7 9 9 6 12 5 7-11 88.4 98.3102.8 + 87 12 20 2 6 5 5 7 5 6 0 5-11 86.9 98.4102.9 + 87 12 21 3 15 5 7 9 9 15 18 10-11 90.7 98.5103.0 + 87 12 22 27 27 22 12 18 12 27 32 22-11 88.1 98.6103.1 + 87 12 23 15 22 9 9 9 7 5 2 10-11 88.2 98.8103.2 + 87 12 24 4 9 6 7 6 6 5 7 6-11 89.9 98.9103.3 + 87 12 25 5 9 6 6 6 5 4 12 7-11 96.2 99.1103.5 + 87 12 26 5 7 3 6 4 4 4 3 5-11 96.8 99.2103.7 + 87 12 27 2 0 0 2 0 2 3 2 1-11101.4 99.3103.9 + 87 12 28 0 0 2 3 3 2 6 4 3-11102.5 99.4104.1 + 87 12 29 7 7 9 5 2 2 2 3 5-11101.4 99.4104.4 + 87 12 30 3 2 4 5 2 2 3 0 3-11 99.2 99.4104.7 + 87 12 31 2 3 5 5 6 4 6 5 5-11 99.7 99.2105.0 + 88 1 1 3 3 3 4 7 5 7 6 5-11100.1 99.1105.3 + 88 1 2 9 12 7 56 32 39 48 32 29-11 93.7 98.8105.7 + 88 1 3 9 12 9 7 5 5 4 4 7-11101.2 98.7106.0 + 88 1 4 9 7 4 3 6 7 18 56 14-11 98.2 98.6106.3 + 88 1 5 15 22 18 9 18 4 6 22 14-11 99.5 98.6106.6 + 88 1 6 18 9 22 32 12 48 80 27 31-11101.7 98.5106.8 + 88 1 7 80 32 15 12 7 7 15 27 24-11102.1 98.6107.0 + 88 1 8 22 32 7 22 22 22 15 9 19-11105.6 98.8107.2 + 88 1 9 9 18 9 9 2 2 4 4 7-11100.6 99.1107.3 + 88 1 10 3 0 2 2 4 3 9 12 4-11100.9 99.3107.5 + 88 1 11 18 27 22 4 4 4 2 5 11-11101.7 99.5107.7 + 88 1 12 7 6 15 39 48 18 27 5 21-11107.5 99.8107.9 + 88 1 13 2 4 5 5 7 6 7 22 7-11108.1100.0108.0 + 88 1 14 27 48 9 7 15 48 94132 48-11113.7100.2108.2 + 88 1 15154154 80 48 22 18 12 18 63-11112.4100.3108.4 + 88 1 16 7 2 6 5 9 3 3 6 5-11121.8100.4108.6 + 88 1 17 2 6 6 5 5 12 9 12 7-11116.4100.6108.8 + 88 1 18 5 5 12 7 4 12 39 9 12-11110.9100.7109.0 + 88 1 19 7 9 22 12 7 9 7 6 10-11114.2100.8109.1 + 88 1 20 15 9 18 12 12 9 9 15 12-11112.7100.9109.3 + 88 1 21 18 18 6 5 6 4 7 6 9-11111.6101.0109.4 + 88 1 22 6 7 4 5 9 12 7 3 7-11104.5101.1109.4 + 88 1 23 4 2 2 3 4 3 2 0 3-11104.7101.3109.5 + 88 1 24 2 2 5 4 6 5 6 7 5-11102.2101.4109.6 + 88 1 25 4 6 7 5 5 6 6 6 6-11 94.9101.6109.7 + 88 1 26 4 2 5 6 7 6 18 18 8-11 93.5101.7109.8 + 88 1 27 15 15 15 18 7 7 12 7 12-11101.6101.9110.0 + 88 1 28 6 15 7 6 3 3 2 3 6-11103.0102.1110.2 + 88 1 29 5 5 2 4 3 7 3 4 4-11 99.1102.3110.4 + 88 1 30 3 2 3 2 0 2 4 5 3-11100.1102.4110.7 + 88 1 31 0 4 3 2 4 4 2 2 3-11103.1102.6111.0 + 88 2 1 5 0 2 2 0 2 3 4 2-11105.5102.8111.2 + 88 2 2 4 3 2 4 3 4 12 6 5-11104.3103.0111.5 + 88 2 3 6 2 4 4 2 2 2 3 3-11103.6103.2111.7 + 88 2 4 4 4 5 5 6 7 9 15 7-11103.1103.4112.0 + 88 2 5 22 39 48 39 22 27 22 15 29-11102.6103.6112.2 + 88 2 6 15 9 9 9 7 9 6 22 11-11103.6103.8112.4 + 88 2 7 12 9 6 6 4 3 2 4 6-11105.3104.0112.6 + 88 2 8 5 3 2 2 3 4 15 6 5-11102.5104.2112.8 + 88 2 9 5 5 12 9 7 15 18 15 11-11101.0104.4113.1 + 88 2 10 12 12 22 18 22 9 6 4 13-11100.2104.6113.3 + 88 2 11 2 3 9 12 9 7 22 27 11-11 99.6104.8113.5 + 88 2 12 18 22 27 12 6 6 18 22 16-11101.3105.2113.7 + 88 2 13 6 22 15 18 15 22 9 9 15-11102.9105.4113.8 + 88 2 14 9 4 12 15 5 3 3 5 7-11102.6105.8114.0 + 88 2 15 9 12 27 39 18 27 12 6 19-11100.4106.2114.1 + 88 2 16 5 4 7 7 22 39 27 6 15-11101.0106.5114.2 + 88 2 17 9 9 4 27 6 22 7 32 15-11106.2106.8114.3 + 88 2 18 32 9 12 32 4 9 27 27 19-11112.5107.2114.4 + 88 2 19 4 9 7 5 6 9 12 4 7-11109.0107.5114.4 + 88 2 20 3 2 2 4 6 6 9 7 5-11106.5107.9114.5 + 88 2 21 27 27 39 27 9 12 15 48 26-11104.7108.2114.6 + 88 2 22111 94154 80111111 67 48 97-11102.5108.4114.6 + 88 2 23 80 94 32 22 15 18 22 5 36-11100.2108.7114.7 + 88 2 24 22 18 9 9 12 6 15 6 12-11 99.6108.8114.8 + 88 2 25 18 27 12 7 9 7 15 15 14-11 96.4108.8115.0 + 88 2 26 15 7 7 6 3 12 12 9 9-11 96.7108.7115.2 + 88 2 27 9 18 9 5 3 2 3 7 7-11 96.3108.8115.4 + 88 2 28 6 5 6 4 5 5 6 3 5-11 97.1108.9115.7 + 88 2 29 3 2 3 4 3 4 4 2 3-11103.3109.0116.0 + 88 3 1 5 4 5 5 3 2 6 6 5-11 99.8109.2116.3 + 88 3 2 3 2 6 5 5 7 3 18 6-11 99.1109.4116.6 + 88 3 3 12 5 9 5 7 15 15 12 10-11101.9109.7116.9 + 88 3 4 32 27 27 15 15 15 15 6 19-11102.6110.1117.1 + 88 3 5 9 12 5 6 5 5 7 12 8-11106.7110.6117.4 + 88 3 6 39 22 18 9 22 18 18 5 19-11107.6111.2117.6 + 88 3 7 9 6 9 5 3 18 22 18 11-11107.3111.9117.7 + 88 3 8 18 48 48 32 39 9 9 7 26-11104.1112.4117.9 + 88 3 9 12 22 12 22 7 12 9 5 13-11101.5113.0118.0 + 88 3 10 5 4 7 9 18 15 18 22 12-11 99.2113.4118.1 + 88 3 11 15 22 9 9 27 9 15 6 14-11102.9113.9118.2 + 88 3 12 6 6 7 9 6 9 9 18 9-11103.5114.2118.3 + 88 3 13 7 2 6 4 2 5 6 5 5-11107.8114.4118.3 + 88 3 14 12 7 12 5 15 9 15 22 12-11108.9114.4118.4 + 88 3 15 9 15 27 22 9 15 32 27 20-11112.6114.5118.6 + 88 3 16 22 22 22 22 5 5 9 7 14-11114.1114.5118.7 + 88 3 17 12 15 9 12 5 5 9 6 9-11117.4114.5118.8 + 88 3 18 9 6 9 7 5 5 7 6 7-11116.1114.5118.9 + 88 3 19 4 6 6 4 4 2 5 5 5-11116.1114.5119.1 + 88 3 20 3 3 7 18 9 3 3 2 6-11116.3114.5119.2 + 88 3 21 0 0 2 2 0 0 3 6 2-11117.5114.5119.4 + 88 3 22 6 4 3 2 3 2 3 3 3-11117.6114.6119.5 + 88 3 23 3 2 5 3 12 9 5 4 5-11120.9114.8119.8 + 88 3 24 12 9 3 4 4 2 2 4 5-11123.0115.0120.0 + 88 3 25 2 7 9 6 18 15 12 9 10-11128.5115.3120.3 + 88 3 26 15 22 32 22 22 39111132 49-11127.5115.5120.6 + 88 3 27 80 39 15 12 15 27 56 27 34-11128.0115.7120.8 + 88 3 28 15 18 15 32 15 18 48 48 26-11129.8115.8121.1 + 88 3 29 18 27 39 48 22 48 39 18 32-11131.7116.0121.4 + 88 3 30 67 80 22 32 32 9 9 22 34-11128.3116.1121.6 + 88 3 31 18 18 7 7 7 9 18 7 11-11130.6116.2121.9 + 88 4 1 12 12 15 7 9 15 18 18 13-11127.2116.3122.1 + 88 4 2 15 22 27 32 22 12 12 12 19-11126.5116.4122.4 + 88 4 3 12 12 48 39 6 32207 32 49-11127.6116.4122.7 + 88 4 4 39 56 67 94 94 94154 22 78-11122.6116.5123.0 + 88 4 5 48 22 18 7 9 6 18 67 24-11114.6116.5123.2 + 88 4 6 80 94 39 80 39 32 15 9 49-11116.8116.6123.5 + 88 4 7 7 22 22 15 15 18 12 7 15-11120.0116.7123.8 + 88 4 8 6 3 6 4 9 15 7 6 7-11121.8116.8124.0 + 88 4 9 32 7 6 9 6 9 5 9 10-11121.8116.9124.3 + 88 4 10 6 9 18 27 32 12 9 12 16-11127.2116.9124.5 + 88 4 11 15 7 6 5 15 15 6 6 9-11128.0117.1124.7 + 88 4 12 15 12 7 15 22 22 12 9 14-11130.6117.3124.9 + 88 4 13 7 9 6 12 12 6 7 18 10-11134.6117.5125.0 + 88 4 14 9 12 9 9 12 5 7 9 9-11146.3117.7125.1 + 88 4 15 3 4 2 4 12 7 6 7 6-11143.5118.0125.2 + 88 4 16 6 3 5 3 9 7 3 3 5-11147.6118.2125.3 + 88 4 17 6 4 5 3 3 6 3 7 5-11145.5118.5125.4 + 88 4 18 7 12 9 5 5 5 4 6 7-11145.3118.8125.6 + 88 4 19 7 15 9 15 12 7 5 5 9-11138.5119.3125.8 + 88 4 20 3 2 4 4 5 15 9 12 7-11134.9119.8126.0 + 88 4 21 7 7 6 5 6 7 4 18 8-11127.6120.4126.2 + 88 4 22 27 56 48 39 32 56 48 48 44-11120.1121.0126.4 + 88 4 23 48 39 22 9 22 6 12 7 21-11111.5121.5126.6 + 88 4 24 7 5 6 5 5 5 9 12 7-11105.6122.0126.8 + 88 4 25 3 2 4 5 6 12 7 5 6-11106.7122.5127.0 + 88 4 26 6 9 5 3 5 3 3 4 5-11103.8122.9127.2 + 88 4 27 5 7 0 2 5 6 12 12 6-11101.9123.4127.3 + 88 4 28 12 12 9 12 12 7 12 9 11-11101.6124.0127.5 + 88 4 29 12 7 15 6 2 2 2 3 6-11102.1124.7127.6 + 88 4 30 6 7 12 9 5 4 6 9 7-11104.8125.3127.8 + 88 5 1 7 5 5 6 5 5 4 6 5-11108.8125.7127.9 + 88 5 2 3 6 5 6 7 7 7 15 7-11113.1126.0128.1 + 88 5 3 5 6 6 4 4 7 12 12 7-11116.4126.0128.3 + 88 5 4 22 22 7 6 12 7 22 7 13-11127.4125.9128.4 + 88 5 5 4 5 12 32 15 6 7 80 20-11121.1125.7128.6 + 88 5 6111 80154132132154 56 32106-11116.5125.5128.8 + 88 5 7 5 6 6 15 15 12 18 27 13-11112.9125.5128.9 + 88 5 8 9 9 9 9 18 22 15 15 13-11116.7125.4129.1 + 88 5 9 7 6 18 12 9 9 9 7 10-11121.9125.3129.3 + 88 5 10 18 15 15 9 7 9 6 7 11-11116.4125.2129.4 + 88 5 11 6 9 9 7 6 7 4 4 7-11114.6125.1129.6 + 88 5 12 12 4 5 4 4 5 3 5 5-11111.6125.0129.8 + 88 5 13 6 6 3 5 6 6 4 2 5-11105.9125.0129.9 + 88 5 14 3 3 3 4 4 5 4 2 4-11105.2125.0130.1 + 88 5 15 5 15 6 5 4 3 3 6 6-11103.4125.2130.3 + 88 5 16 6 12 9 15 15 22 3 7 11-11103.3125.6130.5 + 88 5 17 7 27 22 27 48 22 22 18 24-11103.7126.2130.7 + 88 5 18 48 15 18 15 18 6 5 18 18-11106.7126.7130.9 + 88 5 19 12 6 7 7 6 5 4 3 6-11104.8127.4131.1 + 88 5 20 7 5 4 3 6 4 12 9 6-11106.1128.2131.3 + 88 5 21 7 12 12 5 6 9 9 22 10-11112.6129.0131.4 + 88 5 22 18 12 9 5 7 6 4 2 8-11114.0129.8131.5 + 88 5 23 6 6 4 3 4 4 5 15 6-11122.2130.7131.6 + 88 5 24 6 6 7 6 15 9 7 5 8-11119.8131.3131.7 + 88 5 25 5 4 4 4 4 4 9 18 7-11123.8131.8131.7 + 88 5 26 9 27 6 3 4 7 3 3 8-11127.8132.1131.8 + 88 5 27 2 4 2 2 3 3 3 4 3-11130.0132.2131.9 + 88 5 28 3 4 2 2 4 4 4 3 3-11130.1132.3132.0 + 88 5 29 3 7 7 6 12 9 5 6 7-11140.2132.3132.2 + 88 5 30 6 18 18 7 4 6 18 18 12-11142.8132.3132.3 + 88 5 31 15 7 6 12 9 9 9 6 9-11153.6132.3132.4 + 88 6 1 3 5 5 7 7 7 9 6 6-11149.3132.4132.6 + 88 6 2 6 6 3 4 4 3 6 6 5-11147.6132.6132.7 + 88 6 3 2 2 3 4 4 3 2 0 3-11149.5133.0132.9 + 88 6 4 2 2 0 2 5 4 3 4 3-11150.9133.6133.1 + 88 6 5 4 5 4 6 12 9 27 12 10-11151.2134.1133.2 + 88 6 6 22 15 4 4 2 4 4 5 8-11159.0134.7133.4 + 88 6 7 3 5 9 6 4 6 6 12 6-11164.6135.3133.6 + 88 6 8 5 7 7 7 6 5 5 4 6-11168.3136.0133.8 + 88 6 9 0 4 3 4 12 12 18 9 8-11165.9136.5134.0 + 88 6 10 15 15 15 5 4 9 4 5 9-11149.8136.9134.2 + 88 6 11 6 9 9 5 9 7 7 3 7-11137.8137.4134.4 + 88 6 12 3 5 4 4 4 2 2 5 4-11125.9137.7134.6 + 88 6 13 15 6 4 3 5 3 2 6 6-11115.0138.1134.9 + 88 6 14 18 27 27 18 15 12 12 27 20-11111.7138.2135.1 + 88 6 15 15 6 7 5 5 4 7 22 9-11113.5138.5135.4 + 88 6 16 9 6 6 4 7 4 5 6 6-11121.7138.9135.7 + 88 6 17 12 12 9 7 12 7 6 15 10-11124.8139.5136.1 + 88 6 18 7 6 7 6 12 32 32 7 14-11125.7140.2136.5 + 88 6 19 12 9 15 32 32 32 27 9 21-11119.4141.0137.0 + 88 6 20 18 27 27 12 6 5 3 3 13-11118.5141.9137.4 + 88 6 21 3 4 5 7 7 5 4 6 5-11122.8142.8137.8 + 88 6 22 6 12 12 15 18 9 15 7 12-11124.4143.7138.2 + 88 6 23 9 9 4 6 7 7 9 15 8-11129.3144.7138.6 + 88 6 24 15 27 6 12 18 27 15 18 17-11135.7145.5139.0 + 88 6 25 15 22 32 27 9 48 39 27 27-11153.7146.3139.4 + 88 6 26 18 6 18 6 7 18 39 27 17-11157.6147.0139.7 + 88 6 27 22 9 5 6 4 7 15 7 9-11160.5147.7140.0 + 88 6 28 7 7 18 18 7 9 6 6 10-11183.2148.5140.2 + 88 6 29 6 32 32 18 22 22 48 27 26-11189.5149.5140.5 + 88 6 30 27 22 15 18 27 39 18 9 22-11187.4150.4140.8 + 88 7 1 22 12 15 12 12 9 15 18 14-11194.4151.3141.0 + 88 7 2 18 12 12 12 7 6 9 6 10-11198.9152.1141.2 + 88 7 3 3 7 5 6 6 9 12 7 7-11190.2152.6141.4 + 88 7 4 6 7 4 3 2 4 2 2 4-11181.0153.1141.7 + 88 7 5 2 3 2 2 3 6 12 9 5-11171.2153.4141.9 + 88 7 6 15 15 9 7 12 12 9 9 11-11156.7153.6142.2 + 88 7 7 6 7 15 9 7 5 7 6 8-11152.4153.7142.5 + 88 7 8 9 7 9 9 15 7 15 7 10-11142.4153.9142.7 + 88 7 9 5 3 2 2 2 3 2 5 3-11137.7153.7143.1 + 88 7 10 6 5 4 5 7 9 12 6 7-11138.3153.5143.5 + 88 7 11 22 22 18 27 32 18 15 12 21-11137.7153.1144.0 + 88 7 12 12 15 18 15 18 9 18 15 15-11137.9152.7144.4 + 88 7 13 6 4 4 3 3 5 5 9 5-11141.3152.3144.8 + 88 7 14 12 9 7 4 5 7 6 7 7-11150.1151.9145.2 + 88 7 15 12 12 5 5 9 18 15 15 11-11150.7151.7145.7 + 88 7 16 15 18 22 32 48 12 15 12 22-11153.3151.6146.1 + 88 7 17 6 6 4 5 12 6 6 7 7-11152.8151.6146.6 + 88 7 18 5 15 15 12 6 9 6 7 9-11152.3151.6147.0 + 88 7 19 6 5 12 15 12 4 9 6 9-11142.1151.7147.5 + 88 7 20 3 3 4 3 2 4 3 4 3-11141.3152.0147.9 + 88 7 21 5 18 67 48 32 18 9 7 26-11145.8152.5148.2 + 88 7 22 39 39 12 22 18 27 32 27 27-11141.2153.2148.5 + 88 7 23 15 18 22 18 7 3 3 6 12-11144.6154.0148.8 + 88 7 24 7 9 6 7 6 5 6 7 7-11138.6154.8149.1 + 88 7 25 7 9 4 5 5 4 7 6 6-11140.9155.6149.4 + 88 7 26 12 7 12 15 18 22 18 27 16-11149.7156.2149.7 + 88 7 27 27 15 18 7 7 6 5 9 12-11161.5156.8150.0 + 88 7 28 7 6 6 6 7 12 22 22 11-11175.4157.1150.3 + 88 7 29 6 4 4 4 4 4 9 22 7-11185.9157.4150.6 + 88 7 30 9 7 7 3 3 5 5 9 6-11188.3157.6150.9 + 88 7 31 4 12 15 7 6 7 6 9 8-11192.5157.7151.2 + 88 8 1 9 12 9 4 5 5 12 5 8-11180.9157.6151.4 + 88 8 2 7 7 4 3 5 4 6 6 5-11187.6157.6151.7 + 88 8 3 7 12 9 6 6 5 2 3 6-11172.2157.6151.9 + 88 8 4 3 4 2 2 2 2 2 3 3-11163.6157.5152.1 + 88 8 5 2 3 5 3 9 12 6 12 7-11159.2157.2152.3 + 88 8 6 6 6 12 3 3 3 3 7 5-11163.4156.8152.5 + 88 8 7 7 5 4 5 5 4 5 3 5-11170.4156.4152.8 + 88 8 8 0 2 3 4 2 2 5 6 3-11186.9155.8153.0 + 88 8 9 7 9 7 7 18 12 27 18 13-11182.4155.2153.3 + 88 8 10 12 5 5 6 3 5 18 18 9-11181.8154.6153.7 + 88 8 11 7 6 7 15 9 6 7 9 8-11178.2154.0154.2 + 88 8 12 15 9 9 9 27 27 12 22 16-11161.2153.5154.6 + 88 8 13 18 22 12 18 22 18 12 15 17-11159.7153.4155.0 + 88 8 14 32 15 32 27 18 27 5 9 21-11151.6153.3155.5 + 88 8 15 7 18 32 22 15 15 12 7 16-11144.0153.4155.9 + 88 8 16 9 9 12 6 6 6 9 5 8-11137.8153.7156.3 + 88 8 17 4 7 6 5 3 3 3 6 5-11145.6153.9156.7 + 88 8 18 6 18 7 7 7 12 6 5 9-11128.5154.4157.1 + 88 8 19 6 7 6 7 7 15 6 9 8-11123.9154.8157.4 + 88 8 20 9 12 12 9 48 27 12 7 17-11118.1155.2157.7 + 88 8 21 6 7 6 4 3 3 3 27 7-11116.1155.7158.0 + 88 8 22 56 80 22 6 7 5 7 5 24-11114.9156.2158.3 + 88 8 23 12 7 9 6 9 9 15 15 10-11121.7156.9158.6 + 88 8 24 5 6 7 12 9 12 18 18 11-11133.7157.5158.9 + 88 8 25 6 7 15 27 27 18 15 7 15-11144.3158.0159.2 + 88 8 26 9 12 6 4 9 9 6 15 9-11157.1158.4159.5 + 88 8 27 27 22 15 12 7 12 15 7 15-11166.8158.9159.8 + 88 8 28 5 7 9 12 7 6 7 18 9-11174.0159.3160.1 + 88 8 29 22 9 22 18 6 12 5 12 13-11189.0159.7160.3 + 88 8 30 18 18 27 7 5 9 7 9 13-11190.0160.1160.4 + 88 8 31 15 7 4 3 9 27 15 22 13-11194.5160.5160.6 + 88 9 1 27 39 18 18 22 15 12 15 21-11191.3160.8160.8 + 88 9 2 15 22 9 6 12 9 9 18 13-11178.9160.9161.0 + 88 9 3 15 12 6 6 6 5 12 6 9-11177.3161.1161.2 + 88 9 4 9 7 9 7 7 5 5 6 7-11165.9161.2161.4 + 88 9 5 7 5 3 5 4 3 3 2 4-11166.3161.2161.7 + 88 9 6 2 0 0 3 5 5 9 3 3-11152.4161.1161.9 + 88 9 7 4 7 9 5 4 2 3 3 5-11145.4161.1162.2 + 88 9 8 0 6 4 4 6 6 15 7 6-11138.9160.8162.4 + 88 9 9 3 4 2 3 4 3 9 6 4-11128.0160.5162.7 + 88 9 10 6 2 4 6 4 6 12 18 7-11117.6160.2163.1 + 88 9 11 18 18 48 39 80 67 56 80 51-11121.9160.0163.5 + 88 9 12 67 22 22 5 9 12 12 12 20-11127.0159.7163.9 + 88 9 13 7 18 12 9 9 7 15 6 10-11124.8159.7164.3 + 88 9 14 15 7 18 15 12 9 6 6 11-11130.2159.8164.7 + 88 9 15 15 15 12 12 12 18 5 5 12-11126.1159.8165.1 + 88 9 16 6 9 6 5 12 5 3 2 6-11128.5159.7165.4 + 88 9 17 9 22 22 18 27 12 22 32 21-11135.3159.6165.7 + 88 9 18 80 48 22 18 27 6 18 56 34-11139.5159.2166.0 + 88 9 19 39 27 32 18 15 9 18 27 23-11138.6158.9166.3 + 88 9 20 12 15 9 9 7 6 18 9 11-11151.4158.6166.6 + 88 9 21 15 9 5 12 12 5 18 12 11-11157.8158.3166.9 + 88 9 22 15 22 27 22 18 39 7 7 20-11178.6158.3167.1 + 88 9 23 18 18 15 6 12 5 6 9 11-11177.8158.3167.3 + 88 9 24 5 5 7 12 9 5 7 15 8-11178.6158.4167.5 + 88 9 25 27 9 5 5 7 9 9 22 12-11177.4158.6167.6 + 88 9 26 4 6 6 9 22 6 5 7 8-11172.0158.9167.7 + 88 9 27 9 5 5 4 5 6 3 4 5-11179.6159.1167.8 + 88 9 28 7 5 4 3 5 6 6 6 5-11171.0159.4167.8 + 88 9 29 5 4 5 4 4 5 2 2 4-11172.0159.6167.9 + 88 9 30 2 3 9 7 12 9 15 9 8-11173.1160.1168.0 + 88 10 1 18 9 7 9 9 7 12 15 11-11179.4160.5168.1 + 88 10 2 9 6 6 3 6 2 3 3 5-11197.0160.9168.3 + 88 10 3 2 2 3 2 2 5 5 3 3-11200.4161.3168.5 + 88 10 4 0 3 5 3 4 4 18 32 9-11189.2161.6168.7 + 88 10 5 27 32 15 18 12 18 12 12 18-11191.0161.9168.9 + 88 10 6 48 22 32 32 39 56 67 12 39-11193.4162.0169.1 + 88 10 7 9 9 6 5 7 5 5 6 7-11182.4162.2169.3 + 88 10 8 5 5 3 5 9 12 12 5 7-11172.6162.3169.6 + 88 10 9 9 15 12 18 27 22 18 18 17-11176.5161.9169.8 + 88 10 10 27 32 94179154 67 80 48 85-11177.8161.4169.9 + 88 10 11 32 15 12 18 7 6 4 7 13-11168.2160.9170.0 + 88 10 12 9 9 9 5 4 4 5 2 6-11148.4160.4170.2 + 88 10 13 6 12 6 9 4 3 4 4 6-11157.5160.1170.3 + 88 10 14 7 9 6 5 6 6 2 3 6-11150.4159.5170.5 + 88 10 15 2 3 4 5 12 12 5 5 6-11149.1159.2170.6 + 88 10 16 9 12 7 6 4 15 22 7 10-11152.3158.8170.8 + 88 10 17 12 12 9 12 15 12 22 27 15-11175.0158.7171.0 + 88 10 18 27 15 18 39 32 48 27 32 30-11162.3158.6171.1 + 88 10 19 18 15 9 18 9 9 12 6 12-11164.0158.6171.3 + 88 10 20 18 27 22 12 12 27 15 15 19-11166.0158.7171.5 + 88 10 21 15 12 6 5 5 3 5 7 7-11165.9158.9171.7 + 88 10 22 5 4 2 2 2 4 2 2 3-11166.2159.3171.9 + 88 10 23 5 5 9 7 7 5 5 4 6-11171.1159.6172.1 + 88 10 24 12 6 6 6 4 4 4 7 6-11168.4159.9172.3 + 88 10 25 6 7 4 3 2 3 3 3 4-11162.1160.0172.5 + 88 10 26 3 5 7 5 6 6 12 9 7-11155.4160.4172.7 + 88 10 27 4 7 7 9 6 7 18 7 8-11161.8160.7172.9 + 88 10 28 15 15 12 12 6 4 3 5 9-11156.0160.9173.1 + 88 10 29 5 7 3 3 2 2 0 2 3-11155.9161.2173.3 + 88 10 30 3 3 0 0 2 2 15 15 5-11154.2161.6173.6 + 88 10 31 7 7 18 18 12 7 6 9 11-11160.4161.7173.8 + 88 11 1 6 5 6 5 3 12 9 9 7-11157.2161.9173.9 + 88 11 2 32 12 27 22 22 48 56 22 30-11156.5161.9174.2 + 88 11 3 32 32 27 22 39 12 27 15 26-11164.0161.9174.3 + 88 11 4 12 5 7 9 12 9 9 5 9-11159.7162.2174.5 + 88 11 5 15 9 12 7 15 15 7 3 10-11163.8162.6174.8 + 88 11 6 4 27 15 12 9 7 18 15 13-11161.2163.4175.0 + 88 11 7 18 27 9 12 15 22 18 18 17-11151.6164.2175.3 + 88 11 8 18 12 12 15 9 27 39 12 18-11143.5165.1175.5 + 88 11 9 12 5 7 18 18 18 6 12 12-11152.4165.9175.7 + 88 11 10 22 18 15 15 22 9 4 3 14-11147.7166.7176.0 + 88 11 11 4 4 7 6 6 12 22 22 10-11153.8167.5176.2 + 88 11 12 18 9 9 15 18 27 15 32 18-11150.6168.1176.5 + 88 11 13 18 5 6 9 7 7 9 7 9-11157.8168.6176.7 + 88 11 14 9 9 7 18 15 6 12 12 11-11173.2169.0177.0 + 88 11 15 18 27 9 12 12 7 12 9 13-11161.1169.2177.2 + 88 11 16 4 18 32 22 12 15 22 22 18-11186.1169.2177.4 + 88 11 17 18 15 18 15 7 4 7 5 11-11175.6169.4177.6 + 88 11 18 3 6 6 7 12 7 18 7 8-11161.8169.8177.9 + 88 11 19 6 3 4 4 4 3 4 5 4-11151.2170.0178.1 + 88 11 20 2 2 2 0 3 4 0 4 2-11146.6170.1178.4 + 88 11 21 9 6 7 4 2 3 6 7 6-11152.9170.2178.6 + 88 11 22 5 4 7 4 4 3 3 2 4-11153.1170.6178.9 + 88 11 23 2 6 4 3 0 0 0 4 2-11135.7171.0179.1 + 88 11 24 9 6 4 2 0 3 3 3 4-11138.0171.5179.3 + 88 11 25 7 4 4 3 5 4 15 15 7-11137.5172.1179.5 + 88 11 26 22 22 22 22 32 18 15 5 20-11137.4172.7179.6 + 88 11 27 18 7 12 12 12 18 12 6 12-11140.9173.0179.7 + 88 11 28 4 7 7 5 18 5 15 9 9-11138.8173.9179.8 + 88 11 29 12 7 6 6 6 6 7 12 8-11137.6175.1179.9 + 88 11 30 9 12 39 94 48 56 32 5 37-11135.8176.2180.1 + 88 12 1 5 4 4 7 15 2 3 2 5-11150.5177.2180.2 + 88 12 2 4 4 22 12 27 27 12 12 15-11149.4178.3180.3 + 88 12 3 12 12 12 12 12 32 39 15 18-11147.3179.4180.5 + 88 12 4 15 22 12 7 7 12 4 5 11-11142.7180.9180.7 + 88 12 5 3 5 3 4 3 4 3 5 4-11154.6182.3180.9 + 88 12 6 4 4 4 4 2 3 3 3 3-11157.7183.9181.0 + 88 12 7 2 3 2 3 4 5 0 3 3-11152.9185.5181.1 + 88 12 8 4 7 3 4 4 7 4 5 5-11164.1186.9181.3 + 88 12 9 6 2 2 0 3 4 4 7 4-11165.2188.3181.5 + 88 12 10 9 6 5 12 12 18 4 2 9-11161.2189.4181.7 + 88 12 11 6 9 9 15 27 22 27 18 17-11176.4190.1182.1 + 88 12 12 12 48 9 9 9 9 6 12 14-11173.9190.6182.5 + 88 12 13 9 22 18 15 27 18 32 18 20-11181.1191.2183.1 + 88 12 14 7 7 5 3 9 15 32 27 13-11204.4191.7183.7 + 88 12 15 18 27 15 4 5 5 4 2 10-11212.0192.4184.3 + 88 12 16 22 15 9 18 27 48 27 32 25-11232.1193.1184.8 + 88 12 17 12 12 27 39 22 6 94 67 35-11241.7193.7185.3 + 88 12 18 32 22 22 32 39 15 15 22 25-11243.5194.4185.7 + 88 12 19 32 32 22 15 12 22 22 7 21-11240.2195.2186.1 + 88 12 20 9 9 7 6 4 6 7 5 7-11238.8195.8186.5 + 88 12 21 7 18 12 22 12 7 7 5 11-11245.2196.3186.8 + 88 12 22 18 18 22 9 5 12 15 6 13-11246.6196.7187.1 + 88 12 23 6 6 3 4 3 2 5 4 4-11234.8197.1187.4 + 88 12 24 5 3 6 5 5 4 3 5 5-11221.6197.3187.7 + 88 12 25 7 7 12 32 32 32 32 18 22-11210.5197.5187.9 + 88 12 26 18 22 22 48 27 27 15 18 25-11193.0197.7188.1 + 88 12 27 22 27 27 22 18 22 12 6 20-11201.9197.8188.3 + 88 12 28 6 7 9 15 22 18 22 9 14-11201.6198.2188.4 + 88 12 29 27 15 27 22 22 5 18 22 20-11196.7198.8188.5 + 88 12 30 9 12 5 22 9 7 15 6 11-11179.5200.0188.6 + 88 12 31 5 9 12 9 12 12 15 18 12-11177.6201.3188.6 + 89 1 1 27 18 15 9 15 12 15 12 15-11179.5202.8188.6 + 89 1 2 6 4 6 6 5 4 9 7 6-11193.7204.1188.6 + 89 1 3 2 0 4 4 4 5 7 6 4-11189.2205.6188.6 + 89 1 4 6 6 9 4 7 6 9 22 9-11195.7207.1188.6 + 89 1 5 32 67 48 22 15 39 27 12 33-11201.6208.6188.7 + 89 1 6 15 12 12 9 6 4 7 12 10-11198.7209.9188.8 + 89 1 7 18 7 7 7 9 12 12 7 10-11239.5211.1189.0 + 89 1 8 4 9 9 9 32 27 22 27 17-11260.2212.3189.1 + 89 1 9 12 15 18 18 22 15 15 15 16-11251.3213.2189.2 + 89 1 10 22 9 9 15 12 12 9 6 12-11250.0214.2189.4 + 89 1 11 7 5 5 5 22 67 94 94 37-11254.7214.8189.5 + 89 1 12 80 27 15 7 7 7 9 7 20-11263.2215.7189.6 + 89 1 13 3 3 3 9 18 22 18 15 11-11291.7216.5189.7 + 89 1 14 18 4 4 4 12 12 22 39 14-11274.9217.4189.8 + 89 1 15 39 32 22 27 32 39 48 67 38-11280.1218.1189.9 + 89 1 16 67 48 67 32 22 32 39 39 43-11292.1218.7190.0 + 89 1 17 32 18 27 48 22 22 39 15 28-11266.7219.1190.1 + 89 1 18 27 15 15 22 15 9 7 7 15-11271.2219.2190.2 + 89 1 19 7 12 9 6 3 5 7 7 7-11241.6219.2190.4 + 89 1 20 15 6 7 12 94111 67 48 45-11222.0219.3190.5 + 89 1 21 22 27 27 27 27 39 27 32 29-11198.2219.2190.7 + 89 1 22 32 39 39 18 56 22 15 15 30-11203.6219.2190.8 + 89 1 23 18 32 27 18 22 22 18 15 22-11205.6218.9191.0 + 89 1 24 12 9 7 7 9 12 15 12 10-11211.0218.7191.1 + 89 1 25 7 15 12 15 18 7 12 12 12-11227.3218.6191.1 + 89 1 26 9 6 9 15 12 15 9 7 10-11206.3218.0191.2 + 89 1 27 18 22 12 15 15 9 4 4 12-11211.1217.6191.2 + 89 1 28 7 22 9 6 12 15 27 9 13-11207.1217.1191.1 + 89 1 29 9 5 6 9 15 22 9 6 10-11200.5216.7191.1 + 89 1 30 9 15 7 18 18 12 9 9 12-11187.3216.6191.1 + 89 1 31 18 15 15 18 18 32 56 80 32-11187.5216.6191.2 + 89 2 1 39 39 12 22 32 12 18 56 29-11184.8216.6191.2 + 89 2 2 27 22 9 5 12 7 56 27 21-11171.2217.0191.3 + 89 2 3 67 67 22 22 39 56 39 39 44-11185.8217.4191.5 + 89 2 4 39 27 15 22 27 12 27 27 25-11183.4218.0191.7 + 89 2 5 27 22 22 15 15 18 22 32 22-11195.1218.6191.9 + 89 2 6 39 18 22 22 18 22 22 18 23-11205.3219.0192.1 + 89 2 7 22 27 27 27 22 27 22 27 25-11210.5219.3192.3 + 89 2 8 22 18 15 15 9 9 6 15 14-11243.9219.5192.4 + 89 2 9 27 32 15 15 15 15 18 15 19-11259.3220.0192.5 + 89 2 10 27 15 9 15 18 4 3 3 12-11269.8220.5192.7 + 89 2 11 4 3 6 9 12 12 22 15 10-11257.0221.0193.0 + 89 2 12 15 12 7 9 12 12 22 22 14-11257.3221.0193.3 + 89 2 13 32 27 22 22 18 22 15 12 21-11258.4220.9193.6 + 89 2 14 15 27 12 9 15 22 5 4 14-11260.7220.6194.0 + 89 2 15 5 12 6 6 5 18 27 32 14-11241.3220.1194.3 + 89 2 16 27 39 9 15 15 5 9 15 17-11241.1219.6194.6 + 89 2 17 9 9 6 5 3 2 3 5 5-11233.9218.6195.0 + 89 2 18 4 12 6 3 18 15 12 4 9-11213.8217.4195.3 + 89 2 19 4 4 9 7 9 15 7 18 9-11214.0216.3195.7 + 89 2 20 18 18 22 18 27 27 27 9 21-11202.2215.4196.0 + 89 2 21 12 9 18 15 6 15 6 5 11-11217.8214.5196.2 + 89 2 22 7 9 27 18 12 7 15 9 13-11213.9213.7196.4 + 89 2 23 5 4 5 4 4 4 5 9 5-11214.7212.4196.5 + 89 2 24 12 12 12 9 12 5 4 5 9-11213.4211.4196.6 + 89 2 25 4 6 18 7 6 4 5 4 7-11203.8210.3196.6 + 89 2 26 3 2 4 4 6 3 2 4 4-11190.3209.2196.6 + 89 2 27 7 3 3 5 9 12 6 6 6-11168.6208.5196.6 + 89 2 28 5 7 12 7 15 15 18 22 13-11163.5207.5196.6 + 89 3 1 18 15 7 12 18 12 7 9 12-11168.8206.8196.6 + 89 3 2 18 67 22 18 27 18 15 18 25-11173.7206.3196.6 + 89 3 3 15 48 67 39 39 48 27 15 37-11169.0206.1196.7 + 89 3 4 18 9 7 18 32 15 4 3 13-11163.6205.8196.8 + 89 3 5 12 27 48 56 39 18 22 18 30-11183.5205.7197.0 + 89 3 6 27 15 18 22 39 27 27 18 24-11201.1205.6197.2 + 89 3 7 27 32 18 15 12 15 7 15 18-11190.3205.3197.5 + 89 3 8 9 9 12 2 3 32 56 67 24-11202.6205.4197.9 + 89 3 9 56 48 18 18 22 27 22 39 31-11204.2205.3198.3 + 89 3 10 32 27 22 12 12 15 15 18 19-11212.4205.3198.8 + 89 3 11 12 15 15 22 15 15 12 27 17-11232.4205.2199.3 + 89 3 12 48 15 15 12 15 39 27 15 23-11237.6205.3199.8 + 89 3 13 80179300236236236300400246-11253.0205.4200.3 + 89 3 14400179179 67 48 56179154158-11263.8205.4200.7 + 89 3 15111 80 39 48 32 39 27 15 49-11255.8205.6201.1 + 89 3 16 7 48 56111 56 48 48 22 50-11261.6205.5201.4 + 89 3 17 32 56 56 32 32 32 22 12 34-11240.7205.4201.7 + 89 3 18 4 7 7 7 27 56 5 7 15-11234.2205.2201.9 + 89 3 19 4 27 94 94111 80 18 12 55-11221.1204.9202.2 + 89 3 20 9 22 18 9 9 9 6 27 14-11218.2204.7202.4 + 89 3 21 27 27 32 22 22 12 15 22 22-11213.5203.9202.5 + 89 3 22 15 15 39 27 32 39 80 67 39-11222.5202.9202.6 + 89 3 23 32 15 15 32 48 67 39 39 36-11216.1201.9202.6 + 89 3 24 48 32 18 9 6 6 4 4 16-11193.2201.1202.5 + 89 3 25 5 4 5 9 5 12 27 15 10-11186.2200.3202.5 + 89 3 26 12 15 6 15 22 9 7 27 14-11171.6199.5202.4 + 89 3 27 18 12 32 22 67 94 48 56 44-11162.6198.7202.4 + 89 3 28 32 18 32 67 67 48 27 22 39-11157.3198.2202.4 + 89 3 29 94 80 56 32 39 56132 80 71-11155.8197.9202.5 + 89 3 30 32 56 56 22 15 18 67111 47-11159.8197.5202.5 + 89 3 31 56 56 32 32 48 67 67 56 52-11167.5197.5202.6 + 89 4 1 39 56 67 27 27 32 48 39 42-11173.8197.3202.7 + 89 4 2 22 32 18 22 39 48 18 12 26-11183.5197.2202.8 + 89 4 3 27 22 9 6 22 18 22 39 21-11196.5197.0202.8 + 89 4 4 39 39 32 39 32 48 80 56 46-11188.9196.7202.8 + 89 4 5 80 56 56 32 27 18 39 32 43-11191.1196.5203.0 + 89 4 6 32 15 7 6 9 12 18 15 14-11196.5196.2203.1 + 89 4 7 7 12 39 27 39 32 39 22 27-11199.8196.0203.1 + 89 4 8 32 18 22 15 15 27 18 12 20-11207.1195.9203.3 + 89 4 9 27 15 9 7 7 22 27 9 15-11194.0196.1203.4 + 89 4 10 12 6 5 5 9 7 7 9 8-11182.3196.6203.4 + 89 4 11 7 15 9 5 32 32 9 7 15-11180.7197.2203.5 + 89 4 12 7 7 7 3 6 7 6 7 6-11181.3197.5203.5 + 89 4 13 9 9 22 27 18 15 18 18 17-11185.3198.1203.7 + 89 4 14 22 15 12 7 12 22 39 67 25-11198.1198.6203.9 + 89 4 15 48 56 32 18 18 18 12 12 27-11199.5198.8204.1 + 89 4 16 5 4 5 3 27 32 32 48 20-11203.9198.6204.3 + 89 4 17 32 4 4 5 6 7 7 18 10-11210.6198.4204.5 + 89 4 18 18 32 7 6 5 3 3 4 10-11204.1198.1204.7 + 89 4 19 5 3 3 5 12 12 5 7 7-11209.7197.7204.8 + 89 4 20 9 22 15 5 7 9 7 7 10-11192.5197.3205.0 + 89 4 21 12 9 9 4 5 7 4 4 7-11196.1196.9205.1 + 89 4 22 18 5 2 3 12 6 4 9 7-11193.6196.3205.2 + 89 4 23 9 4 7 6 18 27 18 9 12-11183.1195.7205.3 + 89 4 24 15 6 4 6 6 9 6 12 8-11189.0195.0205.4 + 89 4 25 9 12 12 15 32 48 67 80 34-11179.7194.6205.5 + 89 4 26111111 80 48 27 56 94 80 76-11176.9194.0205.6 + 89 4 27 67 56 39 32 27 56 67 48 49-11176.9193.6205.7 + 89 4 28 48 39 39 27 48 32 48 32 39-11183.2193.3205.7 + 89 4 29 15 27 22 22 22 32 48 32 28-11189.5193.3205.7 + 89 4 30 39 18 18 12 18 9 15 9 17-11180.6193.6205.8 + 89 5 1 12 6 5 5 5 15 12 18 10-11180.5194.0205.9 + 89 5 2 18 22 22 9 12 18 32 15 19-11184.5194.6206.0 + 89 5 3 18 18 12 9 6 5 15 15 12-11190.6195.5206.1 + 89 5 4 32 22 9 9 9 18 12 48 20-11198.2197.1206.3 + 89 5 5111 80 56 32 18 12 22 22 44-11193.7198.8206.4 + 89 5 6 9 12 12 15 7 12 18 27 14-11195.9200.8206.6 + 89 5 7 3 32 56 32 56 56 56 80 46-11200.6202.8206.8 + 89 5 8 5 4 5 6 4 5 4 7 5-11212.4204.6207.1 + 89 5 9 4 4 6 4 7 7 3 4 5-11205.1206.0207.2 + 89 5 10 6 5 3 3 4 3 3 7 4-11208.7207.4207.6 + 89 5 11 5 4 4 4 5 7 7 12 6-11198.9208.4207.9 + 89 5 12 12 15 22 9 5 12 6 5 11-11197.2209.2208.1 + 89 5 13 6 6 6 7 18 18 6 4 9-11197.5209.8208.4 + 89 5 14 7 18 9 7 6 15 6 9 10-11193.1210.4208.7 + 89 5 15 6 9 15 18 12 12 18 12 13-11195.8210.8208.9 + 89 5 16 6 9 5 6 7 9 7 6 7-11188.6211.2209.1 + 89 5 17 7 12 9 7 7 6 6 4 7-11187.0211.7209.2 + 89 5 18 7 7 6 5 9 5 5 5 6-11184.9212.0209.3 + 89 5 19 3 5 4 9 6 6 6 5 6-11188.6212.3209.4 + 89 5 20 6 5 7 39 39 9 12 2 15-11203.1212.6209.6 + 89 5 21 6 7 12 12 12 6 6 4 8-11211.9213.0209.8 + 89 5 22 6 7 7 9 15 9 12 27 12-11203.9213.3210.0 + 89 5 23 9 12 5 7 67154 80 39 47-11212.2213.5210.2 + 89 5 24 56 48 80 48 80 94 67 67 68-11210.0213.6210.4 + 89 5 25 39 22 27 12 27 18 32 18 24-11194.6213.5210.6 + 89 5 26 18 9 6 9 18 18 27 32 17-11188.0213.3210.8 + 89 5 27 22 27 18 7 12 12 18 12 16-11176.6213.1211.0 + 89 5 28 12 9 5 9 18 22 18 15 14-11173.5212.9211.3 + 89 5 29 22 9 7 12 22 12 15 15 14-11173.6212.7211.6 + 89 5 30 18 12 7 5 5 7 12 9 9-11183.0212.5211.8 + 89 5 31 18 9 12 6 15 12 18 12 13-11194.2212.4212.0 + 89 6 1 12 12 5 9 9 12 15 15 11-11191.6212.3212.3 + 89 6 2 9 9 18 22 39 18 18 18 19-11208.2212.3212.5 + 89 6 3 22 15 7 5 9 22 18 15 14-11203.3212.3212.7 + 89 6 4 27 48 5 6 5 5 5 7 14-11221.3212.2212.9 + 89 6 5 7 4 5 6 4 12 6 12 7-11213.2212.3213.1 + 89 6 6 12 9 6 5 6 4 5 39 11-11212.2212.4213.2 + 89 6 7 80 32 39 67 18 3 15 22 35-11205.3212.5213.4 + 89 6 8 15 9 12 6 6 5 80 48 23-11222.9212.6213.5 + 89 6 9 94 39 9 9 12 18 32 56 34-11241.9212.6213.7 + 89 6 10 56 67 56 67111132 94 39 78-11250.9212.8213.7 + 89 6 11 27 32 32 9 15 18 22 18 22-11270.3212.9213.8 + 89 6 12 15 15 18 12 7 9 12 5 12-11285.8213.1213.8 + 89 6 13 6 6 7 12 18 32 32 12 16-11319.2213.2213.7 + 89 6 14 18 32 39 67 56 56 80 48 50-11327.2213.1213.7 + 89 6 15 39 18 48 32 48 48 48 15 37-11334.7213.0213.6 + 89 6 16 15 22 12 7 3 6 3 2 9-11320.9212.6213.4 + 89 6 17 0 2 3 4 5 18 4 7 5-11303.7212.3213.3 + 89 6 18 6 5 3 4 5 5 7 3 5-11271.5211.8213.1 + 89 6 19 5 9 6 6 7 5 12 18 9-11270.6211.5212.9 + 89 6 20 12 15 15 32 48 27 56 18 28-11249.3211.2212.8 + 89 6 21 5 4 6 4 5 3 3 6 5-11242.8211.1212.6 + 89 6 22 3 4 5 3 5 5 6 7 5-11233.1211.1212.5 + 89 6 23 6 4 4 4 6 7 6 5 5-11238.7211.1212.4 + 89 6 24 4 5 7 15 27 7 6 5 10-11227.6211.5212.3 + 89 6 25 9 9 9 6 7 5 4 9 7-11221.6211.8212.3 + 89 6 26 4 5 6 12 9 9 6 12 8-11233.0212.5212.4 + 89 6 27 9 5 3 4 6 4 5 9 6-11227.5213.1212.6 + 89 6 28 12 5 5 6 5 9 5 7 7-11227.4213.8212.8 + 89 6 29 12 18 9 15 18 15 9 9 13-11223.0214.4212.9 + 89 6 30 15 27 12 6 5 3 6 7 10-11217.4214.8213.0 + 89 7 1 5 4 7 6 5 56 94 32 26-11204.0215.0213.3 + 89 7 2 15 12 5 3 2 2 2 2 5-11193.4215.5213.4 + 89 7 3 2 3 2 2 4 3 4 2 3-11192.5216.1213.5 + 89 7 4 2 3 2 2 5 4 2 2 3-11189.8216.7213.5 + 89 7 5 6 4 4 7 9 32 39 22 15-11183.4217.7213.6 + 89 7 6 9 12 6 9 9 18 15 7 11-11192.3218.8213.5 + 89 7 7 9 9 12 5 7 6 9 6 8-11193.5219.8213.5 + 89 7 8 3 2 4 4 5 3 3 4 4-11188.9221.0213.4 + 89 7 9 9 12 4 4 4 3 6 5 6-11188.1222.1213.3 + 89 7 10 6 12 15 9 12 12 9 12 11-11184.1222.9213.0 + 89 7 11 5 4 3 4 4 4 4 4 4-11193.2223.4212.8 + 89 7 12 2 2 0 4 4 3 3 9 3-11190.7223.8212.6 + 89 7 13 6 9 12 5 7 5 4 5 7-11184.0223.8212.3 + 89 7 14 3 4 3 4 4 5 5 7 4-11183.9223.7212.1 + 89 7 15 3 6 5 6 7 9 6 6 6-11185.7223.2211.7 + 89 7 16 2 4 2 2 2 2 0 2 2-11183.9222.5211.4 + 89 7 17 18 9 18 9 12 15 12 9 13-11184.1221.9211.2 + 89 7 18 22 32 9 9 9 9 7 5 13-11189.2221.3210.9 + 89 7 19 5 4 6 3 4 3 3 3 4-11193.7220.7210.7 + 89 7 20 3 6 3 3 3 5 6 7 5-11192.4219.9210.5 + 89 7 21 6 7 5 6 3 4 4 5 5-11195.0219.2210.5 + 89 7 22 6 4 6 5 12 6 4 12 7-11200.9218.5210.5 + 89 7 23 12 22 9 6 15 12 6 6 11-11196.5217.7210.7 + 89 7 24 7 5 9 9 12 9 7 9 8-11191.1216.6210.8 + 89 7 25 7 7 7 6 7 4 3 9 6-11180.4215.6210.8 + 89 7 26 9 7 12 12 18 18 15 12 13-11169.8214.5210.9 + 89 7 27 9 15 7 4 7 7 6 12 8-11172.8213.9210.9 + 89 7 28 9 15 6 5 6 6 12 15 9-11170.7213.7211.0 + 89 7 29 9 7 6 7 12 9 18 12 10-11180.9214.1211.1 + 89 7 30 7 9 6 5 5 6 9 9 7-11185.1214.5211.1 + 89 7 31 6 4 5 3 4 3 4 7 5-11188.2215.3211.2 + 89 8 1 6 5 3 4 5 6 6 9 6-11198.5216.0211.3 + 89 8 2 12 6 9 4 3 3 4 6 6-11201.7216.8211.3 + 89 8 3 7 7 6 6 5 4 4 2 5-11220.2217.5211.4 + 89 8 4 3 4 6 9 12 18 7 9 9-11225.7217.8211.4 + 89 8 5 4 3 0 2 2 2 2 4 2-11241.5218.0211.3 + 89 8 6 4 5 4 4 6 9 18 12 8-11240.3218.0211.3 + 89 8 7 7 9 7 7 7 12 18 7 9-11240.6218.0211.1 + 89 8 8 7 9 9 12 5 4 6 6 7-11233.6217.9211.0 + 89 8 9 6 5 3 4 6 6 32 18 10-11233.9217.7210.8 + 89 8 10 22 22 80 67 32 32 27 48 41-11232.6217.5210.5 + 89 8 11 56 39 15 27 32 18 7 9 25-11243.6217.1210.2 + 89 8 12 15 9 7 6 9 3 5 9 8-11256.1216.7209.9 + 89 8 13 15 12 9 7 12 5 7 7 9-11263.9216.3209.5 + 89 8 14 18 27111 80111 18 27 48 55-11271.3215.9209.2 + 89 8 15111111 80 32 94 27 48111 77-11281.7215.6208.9 + 89 8 16 67 48 15 9 18 12 18 22 26-11259.8215.2208.6 + 89 8 17 18 12 18 12 56 67 39 48 34-11262.9215.1208.3 + 89 8 18 48 27 22 48 12 12 32 32 29-11265.0215.2208.1 + 89 8 19 27 39 9 4 4 6 15 4 14-11249.1215.3207.9 + 89 8 20 9 12 48 48 48 27 6 6 26-11236.4215.6207.7 + 89 8 21 7 5 4 4 18 27 56 48 21-11225.7215.7207.6 + 89 8 22 32 18 18 12 5 5 5 5 13-11205.4215.8207.6 + 89 8 23 15 18 12 15 48 39 56 22 28-11191.3216.1207.6 + 89 8 24 15 4 4 3 6 5 4 6 6-11182.0216.5207.6 + 89 8 25 3 4 5 3 5 4 5 9 5-11159.7217.1207.6 + 89 8 26 3 9 7 12 7 6 3 3 6-11161.0217.6207.6 + 89 8 27 7 32 15 12 27 18 67 32 26-11159.6218.1207.7 + 89 8 28 12 4 3 7 7 9 27111 23-11174.1218.5207.7 + 89 8 29132154 67 27 22 27 22 9 58-11180.3218.7207.9 + 89 8 30 7 32 7 15 18 27 15 12 17-11192.0218.9208.1 + 89 8 31 7 5 4 2 4 12 6 9 6-11208.9218.9208.1 + 89 9 1 9 7 12 9 12 9 3 2 8-11223.8218.7208.2 + 89 9 2 6 7 5 6 12 18 5 5 8-11233.3218.8208.2 + 89 9 3 4 15 12 4 5 6 4 12 8-11243.0219.2208.2 + 89 9 4 48 80 39 32 18 5 4 15 30-11245.0219.8208.2 + 89 9 5 39 27 56 18 7 6 7 9 21-11273.3220.5208.1 + 89 9 6 7 12 9 12 18 18 15 7 12-11288.4221.3208.0 + 89 9 7 9 7 6 22 27 67 27 15 23-11303.4221.9207.9 + 89 9 8 22 27 27 12 15 12 5 9 16-11302.1222.4207.7 + 89 9 9 9 7 3 12 12 12 18 12 11-11311.5222.8207.6 + 89 9 10 12 18 7 5 9 15 9 6 10-11303.3223.0207.3 + 89 9 11 4 2 2 3 2 2 3 9 3-11299.3223.1207.1 + 89 9 12 15 18 18 12 15 9 3 7 12-11292.2223.3206.8 + 89 9 13 6 7 7 5 7 15 12 15 9-11249.3223.2206.5 + 89 9 14 5 6 9 12 5 2 2 2 5-11244.9223.1206.2 + 89 9 15 12 39 15 15 39 39 80 94 42-11226.0222.3206.0 + 89 9 16 56 67 27 9 9 9 7 9 24-11233.7221.5205.8 + 89 9 17 6 3 7 4 5 4 9 15 7-11216.2220.7205.7 + 89 9 18 32 12 22 27 15 48 80179 52-11208.6220.0205.7 + 89 9 19111207132 48 27 15 12 5 70-11197.0219.2205.7 + 89 9 20 4 7 4 4 6 5 7 9 6-11173.1218.6205.8 + 89 9 21 12 12 9 7 7 5 2 12 8-11161.8218.1205.8 + 89 9 22 7 15 22 39 32 32 22 12 23-11159.3217.6205.9 + 89 9 23 6 5 5 3 3 4 3 6 4-11157.5217.0206.0 + 89 9 24 6 3 5 4 9 6 9 12 7-11157.0216.3206.1 + 89 9 25 5 4 4 6 5 5 5 3 5-11166.8215.6206.3 + 89 9 26 2 6 32 39 56 94132 67 54-11182.2215.3206.4 + 89 9 27 27 15 7 4 5 3 2 4 8-11199.4215.2206.5 + 89 9 28 12 9 3 4 5 7 12 9 8-11194.3214.5206.6 + 89 9 29 9 5 5 18 7 9 7 6 8-11204.7214.7206.7 + 89 9 30 15 9 5 4 6 15 27 18 12-11202.0215.0206.7 + 89 10 1 18 18 18 9 12 18 7 6 13-11198.4215.3206.7 + 89 10 2 5 22 12 7 7 9 6 4 9-11208.5215.8206.6 + 89 10 3 3 4 7 12 22 18 22 9 12-11222.4216.6206.5 + 89 10 4 7 7 4 3 7 9 4 7 6-11234.1217.3206.3 + 89 10 5 9 4 0 4 7 4 4 6 5-11223.2218.3206.2 + 89 10 6 7 4 7 12 12 15 9 15 10-11220.5219.0206.1 + 89 10 7 18 18 7 5 12 9 12 18 12-11225.7219.7206.0 + 89 10 8 12 12 9 6 7 5 4 15 9-11210.1220.2205.8 + 89 10 9 18 22 9 6 7 5 7 15 11-11201.9220.7205.7 + 89 10 10 12 15 12 9 12 18 7 7 12-11195.5221.2205.6 + 89 10 11 9 12 12 7 6 6 3 4 7-11191.5221.4205.6 + 89 10 12 5 12 9 7 7 7 7 7 8-11203.2221.4205.5 + 89 10 13 6 2 0 0 0 0 0 0 1-11224.2221.3205.6 + 89 10 14 0 2 0 2 3 0 0 0 1-11225.9220.9205.6 + 89 10 15 3 3 2 3 4 5 12 3 4-11225.4220.5205.7 + 89 10 16 6 6 6 12 18 15 12 7 10-11237.0219.8205.7 + 89 10 17 15 18 15 15 9 7 12 6 12-11225.3219.1205.8 + 89 10 18 32 22 5 18 18 9 9 22 17-11221.3218.3205.9 + 89 10 19 56 39 32 27 22 6 9 5 25-11214.7217.4206.0 + 89 10 20 9 15 32111179179236132112-11205.4216.2206.2 + 89 10 21 94111132236179111207 94146-11206.2215.5206.3 + 89 10 22 94 67 32 39 39 56 56 27 51-11217.8214.5206.4 + 89 10 23 15 67 48 9 7 7 12 15 23-11210.4213.6206.5 + 89 10 24 22 15 32 9 12 9 22 18 17-11214.2213.0206.6 + 89 10 25 48 48 39 22 5 7 4 9 23-11183.3212.6206.7 + 89 10 26 6 27 12 9 32 22 48 32 24-11171.7212.4206.7 + 89 10 27 32 18 18 22 9 7 15 15 17-11176.9212.1206.7 + 89 10 28 4 7 7 7 5 22 15 7 9-11173.0212.2206.6 + 89 10 29 9 15 9 6 12 7 22 22 13-11172.0212.1206.5 + 89 10 30 48 22 22 22 15 9 18 27 23-11186.3212.1206.3 + 89 10 31 27 15 7 7 18 18 12 4 14-11202.0212.2206.2 + 89 11 1 7 5 6 6 7 7 9 15 8-11211.4212.3206.1 + 89 11 2 39 18 15 4 9 15 48 22 21-11216.0212.4205.9 + 89 11 3 27 18 39 32 39 18 22 15 26-11217.6212.4205.7 + 89 11 4 9 12 48 48 27 27 18 32 28-11223.9212.5205.5 + 89 11 5 27 27 18 18 7 9 22 27 19-11235.4212.5205.4 + 89 11 6 12 12 7 9 12 12 15 9 11-11255.3212.2205.2 + 89 11 7 27 18 15 27 32 7 9 18 19-11207.3212.0205.1 + 89 11 8 12 15 12 32 15 18 15 3 15-11270.9211.9205.1 + 89 11 9 27 39 15 9 15 48 32 12 25-11257.2211.6205.0 + 89 11 10 9 22 9 6 9 9 7 9 10-11246.3211.5205.0 + 89 11 11 22 18 12 15 12 18 27 22 18-11249.1211.4205.1 + 89 11 12 18 15 9 5 7 4 6 15 10-11253.5211.3205.2 + 89 11 13 32 56 39 18 56 56 48 39 43-11240.3211.2205.2 + 89 11 14 32 18 18 15 5 6 5 9 14-11243.0211.1205.4 + 89 11 15 15 7 5 4 3 5 4 3 6-11216.5211.4205.6 + 89 11 16 3 3 5 7 6 5 6 7 5-11216.2211.8205.7 + 89 11 17 22 15 27132111179207179109-11215.0212.4206.0 + 89 11 18132111 56 22 9 12 9 7 45-11221.6212.9206.2 + 89 11 19 6 5 7 7 6 7 15 12 8-11229.2213.4206.4 + 89 11 20 9 12 9 7 9 6 7 9 9-11223.7214.2206.5 + 89 11 21 27 9 22 18 9 3 2 4 12-11229.4214.7206.7 + 89 11 22 3 2 3 7 5 15 7 9 6-11222.0214.8206.7 + 89 11 23 12 6 3 6 5 4 5 4 6-11213.4214.6206.7 + 89 11 24 5 9 9 7 9 6 7 9 8-11208.8214.2206.7 + 89 11 25 4 7 2 0 0 0 0 0 2-11216.0213.8206.7 + 89 11 26 3 3 5 12 6 18 27 15 11-11234.3213.1206.7 + 89 11 27 9 9 9 12 15 12 12 48 16-11239.4212.6206.6 + 89 11 28 39 32 39 22 27 18 18 27 28-11231.3212.0206.6 + 89 11 29 18 15 18 18 18 22 27 15 19-11215.1211.5206.5 + 89 11 30 27 18 18 15 18 15 22 27 20-11240.9210.9206.3 + 89 12 1 48 27 18 12 22 56 80 39 38-11223.7210.5206.2 + 89 12 2 32 27 39 15 7 9 9 39 22-11213.7209.9206.0 + 89 12 3 32 27 18 39 22 22 15 32 26-11205.6209.4205.8 + 89 12 4 56 48 18 15 15 15 32 48 31-11212.9208.8205.6 + 89 12 5 56 18 7 5 5 5 7 6 14-11209.7208.6205.5 + 89 12 6 7 6 4 4 6 4 4 5 5-11209.7208.7205.3 + 89 12 7 9 7 12 6 6 9 12 15 10-11221.5208.9205.3 + 89 12 8 4 5 5 6 9 7 5 7 6-11203.6209.0205.2 + 89 12 9 6 6 3 3 4 3 6 3 4-11194.6209.6205.1 + 89 12 10 3 3 3 2 2 2 4 3 3-11177.1210.2205.0 + 89 12 11 2 4 5 12 7 7 5 5 6-11171.7210.6204.8 + 89 12 12 7 6 5 4 9 5 7 18 8-11164.9211.1204.6 + 89 12 13 18 9 5 4 5 7 6 2 7-11163.2211.3204.3 + 89 12 14 0 2 3 18 15 22 18 15 12-11161.8211.5204.0 + 89 12 15 18 12 12 9 12 5 7 6 10-11165.5211.7203.6 + 89 12 16 6 7 7 22 27 22 12 22 16-11164.1211.7203.3 + 89 12 17 7 7 7 18 18 15 7 9 11-11176.0211.5203.0 + 89 12 18 7 5 7 7 6 6 12 9 7-11185.9211.8202.7 + 89 12 19 9 9 5 4 6 5 6 4 6-11188.2211.3202.4 + 89 12 20 5 9 4 4 4 5 9 12 7-11189.3210.9202.1 + 89 12 21 18 9 3 4 6 9 9 7 8-11189.9210.5201.9 + 89 12 22 27 18 9 15 48 27 56 12 27-11199.9210.0201.7 + 89 12 23 7 32 27 18 15 9 6 9 15-11213.8209.4201.4 + 89 12 24 9 9 9 22 22 32 32 27 20-11231.0208.6201.2 + 89 12 25 22 32 12 12 9 9 12 22 16-11248.0207.6201.0 + 89 12 26 15 7 9 18 18 18 48 39 22-11252.6206.8200.8 + 89 12 27 27 32 15 18 27 32 32 18 25-11274.8206.0200.6 + 89 12 28 18 18 7 5 6 4 6 15 10-11246.4205.2200.5 + 89 12 29 15 7 18 48 27 67111111 51-11242.7204.2200.5 + 89 12 30 48 27 27 22 18 27 32 39 30-11258.2203.1200.5 + 89 12 31 32 67 67 39 27 18 18 12 35-11236.7202.1200.6 + 90 1 1 7 15 12 18 12 18 27 22 16-11209.3201.1200.8 + 90 1 2 32 9 6 15 9 12 18 32 17-11208.6200.0201.0 + 90 1 3 48 18 7 5 9 15 9 6 15-11192.5199.1201.1 + 90 1 4 12 7 4 12 15 7 9 27 12-11189.2198.3201.3 + 90 1 5 22 12 9 12 12 18 22 27 17-11187.1197.5201.3 + 90 1 6 18 7 7 5 5 4 6 7 7-11180.9196.4201.4 + 90 1 7 12 12 9 4 4 2 2 4 6-11177.1195.3201.4 + 90 1 8 4 5 4 3 15 27 18 15 11-11170.9194.3201.4 + 90 1 9 32 15 12 7 15 7 3 18 14-11160.6193.7201.3 + 90 1 10 27 9 22 18 9 12 12 18 16-11167.2192.9201.2 + 90 1 11 15 12 18 22 22 18 22 18 18-11169.5192.5201.1 + 90 1 12 18 22 12 18 15 15 15 7 15-11170.0192.5201.1 + 90 1 13 12 9 9 12 9 7 5 7 9-11167.0192.6201.0 + 90 1 14 9 6 4 6 18 7 4 6 8-11165.9192.7200.9 + 90 1 15 9 12 7 6 12 15 6 4 9-11184.9192.9200.8 + 90 1 16 5 5 4 7 4 12 22 22 10-11187.6193.1200.7 + 90 1 17 12 12 7 6 5 7 6 15 9-11186.8193.0200.6 + 90 1 18 12 5 5 9 15 7 6 9 9-11217.2193.3200.4 + 90 1 19 4 0 2 2 3 2 7 9 4-11233.1193.6200.3 + 90 1 20 12 9 15 7 12 22 22 12 14-11238.2193.9200.2 + 90 1 21 27 9 22 22 18 12 15 9 17-11250.8194.1200.1 + 90 1 22 22 32 12 18 15 12 22 18 19-11233.7194.3200.1 + 90 1 23 27 22 15 18 22 12 18 27 20-11233.6194.4200.1 + 90 1 24 48 32 22 22 22 18 48 48 33-11239.8194.4200.2 + 90 1 25 48 12 22 18 18 18 7 7 19-11234.6194.3200.3 + 90 1 26 9 9 6 15 15 12 6 4 10-11238.8194.4200.4 + 90 1 27 4 7 3 2 2 5 5 0 4-11232.2194.1200.4 + 90 1 28 2 3 5 5 7 7 12 15 7-11230.1193.7200.4 + 90 1 29 32 22 39 22 22 12 18 27 24-11227.8193.2200.4 + 90 1 30 32 22 15 9 22 22 48 18 24-11211.4192.7200.4 + 90 1 31 32 18 18 22 18 18 15 5 18-11209.3192.1200.4 + 90 2 1 6 18 12 15 18 39 48 18 22-11200.8191.5200.4 + 90 2 2 27 39 22 22 22 27 22 22 25-11177.8190.7200.4 + 90 2 3 15 5 3 6 9 12 9 9 9-11157.9189.8200.3 + 90 2 4 22 18 12 9 15 48 56 48 29-11154.8189.0200.1 + 90 2 5 39 22 32 39 12 22 18 9 24-11150.9188.1199.9 + 90 2 6 27 18 18 5 2 6 4 3 10-11147.5187.1199.7 + 90 2 7 5 9 27 22 27 27 32 48 25-11144.3186.8199.6 + 90 2 8 22 18 7 5 4 3 2 2 8-11142.2186.5199.5 + 90 2 9 2 6 15 6 9 9 3 3 7-11142.0186.2199.3 + 90 2 10 5 4 7 7 15 15 6 6 8-11148.5186.2199.2 + 90 2 11 4 9 7 12 9 12 15 9 10-11134.9186.7199.0 + 90 2 12 15 12 9 7 3 2 2 2 7-11140.0187.0198.8 + 90 2 13 2 4 2 5 4 15 5 32 9-11142.8187.3198.6 + 90 2 14 39 94 56 22 12 9 4 7 30-11149.5187.8198.3 + 90 2 15 7 7 18 15 27 32 67111 36-11148.8188.2198.2 + 90 2 16111111 39 15 27 27 27 39 50-11148.8188.5198.1 + 90 2 17 80 48 18 22 22 27 18 32 33-11151.6188.6198.1 + 90 2 18 27 12 22 22 22 15 27 39 23-11161.1188.7198.1 + 90 2 19 48 27 12 27 39 27 39 48 33-11180.3188.9198.2 + 90 2 20 39 18 39 32 39 39 56 39 38-11189.5188.8198.4 + 90 2 21 27 22 12 12 18 12 18 9 16-11211.9188.6198.8 + 90 2 22 12 15 15 9 22 18 39 39 21-11215.7188.4199.1 + 90 2 23 48 12 27 39 39 48 27 48 36-11216.6188.1199.5 + 90 2 24 56 22 22 18 22 27 32 32 29-11231.5188.0199.9 + 90 2 25 32 48 22 27 22 18 39 27 29-11225.3187.6200.3 + 90 2 26 22 18 9 18 27 7 27 27 19-11213.3187.2200.6 + 90 2 27 27 32 48 39 22 9 18 12 26-11224.1186.8200.8 + 90 2 28 22 80 48 15 27 15 27 15 31-11222.0185.9200.9 + 90 3 1 27 22 15 15 18 22 18 22 20-11200.0184.9201.0 + 90 3 2 15 18 12 18 12 12 12 15 14-11192.7183.9200.9 + 90 3 3 12 9 9 7 7 9 15 9 10-11176.3182.9200.7 + 90 3 4 4 4 9 9 3 4 6 12 6-11168.9182.4200.6 + 90 3 5 15 15 7 6 6 9 5 22 11-11161.7182.2200.3 + 90 3 6 48 32 22 9 18 22 9 5 21-11163.8182.0200.1 + 90 3 7 6 12 7 9 15 7 4 6 8-11168.1181.9199.8 + 90 3 8 12 12 6 18 12 12 5 6 10-11157.1181.9199.4 + 90 3 9 5 7 9 22 6 7 5 6 8-11150.9182.0199.0 + 90 3 10 6 6 12 7 12 6 7 4 8-11149.0182.2198.7 + 90 3 11 22 22 9 15 12 15 9 5 14-11142.5182.6198.3 + 90 3 12 12 18 9 15 9 56 67154 43-11146.1182.9197.9 + 90 3 13 94 27 15 15 18 22 12 32 29-11146.3183.2197.6 + 90 3 14 56 27 15 32 39 15 12 9 26-11149.8183.5197.3 + 90 3 15 22 15 9 6 9 6 9 9 11-11164.2184.0197.2 + 90 3 16 15 9 6 5 6 4 5 9 7-11178.1184.5197.1 + 90 3 17 6 3 4 2 2 3 2 2 3-11182.0184.9197.0 + 90 3 18 4 6 18 22 56 67 56 48 35-11196.4185.1197.0 + 90 3 19 67 15 6 6 6 7 5 12 16-11216.3185.2196.9 + 90 3 20 22 15 9 18 22 22 18111 30-11223.9185.2196.9 + 90 3 21154 67 94 80 67 56 67 27 77-11227.6185.1197.0 + 90 3 22 32 18 22 27 27 32 39 27 28-11243.1184.9197.1 + 90 3 23 27 32 22 27 27 39 39 18 29-11245.3184.7197.2 + 90 3 24 22 22 15 15 18 12 22 18 18-11231.3184.6197.3 + 90 3 25 32 27 9 32 39 67 39 67 39-11223.9184.4197.4 + 90 3 26 80 48 27 32 27 48 48 18 41-11226.9184.2197.4 + 90 3 27 39 32 22 18 15 39 56 48 34-11215.1184.3197.4 + 90 3 28 22 27 22 18 18 22 27 32 24-11206.0184.3197.4 + 90 3 29 18 18 7 18 56 39 15 48 27-11184.1184.6197.2 + 90 3 30 32 39207132 56 56 18 9 69-11186.5184.9197.1 + 90 3 31 9 7 7 5 9 7 6 9 7-11172.8185.3197.0 + 90 4 1 9 5 6 2 5 5 9 7 6-11159.2185.6196.8 + 90 4 2 5 9 9 12 18 15 12 7 11-11153.3185.9196.7 + 90 4 3 7 12 15 22 32 18 18 12 17-11151.6186.1196.6 + 90 4 4 12 12 9 9 12 7 15 3 10-11148.6186.2196.5 + 90 4 5 7 5 12 15 15 12 7 3 10-11156.5186.6196.4 + 90 4 6 5 5 7 12 9 7 5 7 7-11150.2186.8196.2 + 90 4 7 7 9 9 7 5 15 6 7 8-11155.0187.1196.1 + 90 4 8 12 6 2 5 9 6 6 6 7-11152.3187.8195.9 + 90 4 9 6 12 39 56 67 56 27 12 34-11146.8188.5195.8 + 90 4 10 27 56132179207154154 80124-11149.3189.2195.8 + 90 4 11111111 56 56 39 56 67 12 64-11160.8189.9195.8 + 90 4 12 32179154 94111 56111 56 99-11169.9190.6195.8 + 90 4 13 32 39 56 27 27 32 56 32 38-11195.5191.4195.8 + 90 4 14 27 32 80 48 48 56 32 39 45-11215.7191.9195.8 + 90 4 15 48 48 22 18 27 15 9 6 24-11222.9192.2195.7 + 90 4 16 12 7 12 15 9 5 9 12 10-11226.3192.5195.8 + 90 4 17 22 9 39 80 56 32 27 56 40-11236.7192.4195.7 + 90 4 18 48 56 15 12 18 9 12 22 24-11243.0192.5195.6 + 90 4 19 12 5 5 5 6 9 15 15 9-11244.2192.4195.6 + 90 4 20 18 9 9 7 12 18 48 22 18-11257.1192.3195.6 + 90 4 21 39 32 12 6 5 4 3 5 13-11239.6192.3195.6 + 90 4 22 6 15 15 7 15 15 12 39 16-11232.8192.3195.5 + 90 4 23 27 67 48 22 27 67 18 18 37-11226.3192.2195.4 + 90 4 24 6 18 80 48 27 18 22 22 30-11217.4192.1195.3 + 90 4 25 22 27 27 22 18 15 9 15 19-11198.3191.9195.1 + 90 4 26 22 56 18 4 7 5 5 9 16-11188.9191.6195.0 + 90 4 27 12 27 15 9 18 18 6 18 15-11169.8191.4195.0 + 90 4 28 15 18 22 12 32 15 27 18 20-11152.7191.2195.0 + 90 4 29 32 39 39 32 12 12 22 48 30-11140.9191.0194.9 + 90 4 30 67 22 12 9 9 7 7 22 19-11136.9190.7194.9 + 90 5 1 12 15 6 7 7 9 7 4 8-11129.0190.5194.8 + 90 5 2 4 7 9 22 18 6 6 7 10-11129.2190.2194.6 + 90 5 3 7 15 12 22 22 7 32 27 18-11125.2189.9194.4 + 90 5 4 18 9 9 15 18 12 9 7 12-11123.6189.6194.2 + 90 5 5 7 6 15 18 6 9 12 5 10-11130.6189.4194.0 + 90 5 6 4 7 5 6 6 5 5 5 5-11151.0189.0193.8 + 90 5 7 6 6 6 5 9 15 3 5 7-11155.5188.7193.6 + 90 5 8 7 12 6 7 12 12 7 22 11-11170.7188.5193.5 + 90 5 9 15 7 18 15 22 7 15 32 16-11174.6188.3193.5 + 90 5 10 22 56 67 39 18 18 32 15 33-11195.4188.0193.3 + 90 5 11 27 56 32 12 22 9 18 18 24-11205.4187.9193.2 + 90 5 12 18 7 6 5 3 3 4 7 7-11215.2187.8193.0 + 90 5 13 3 5 5 5 7 27 18 18 11-11225.8187.7192.9 + 90 5 14 5 3 3 2 3 3 4 4 3-11224.2187.6192.7 + 90 5 15 5 6 5 4 7 7 6 2 5-11246.6187.5192.6 + 90 5 16 3 3 3 2 3 3 3 2 3-11251.5187.4192.4 + 90 5 17 3 5 5 5 4 4 5 3 4-11248.9187.5192.4 + 90 5 18 7 6 18 22 48 94 22 32 31-11271.8187.7192.4 + 90 5 19 27 32 12 9 12 18 15 18 18-11280.0188.1192.4 + 90 5 20 22 22 7 9 12 22 39 27 20-11272.5188.9192.3 + 90 5 21 27 7 4 15 18 27 27 48 22-11259.2189.9192.2 + 90 5 22 22 32 56 32 48 27 22 18 32-11250.0191.0192.1 + 90 5 23 18 12 9 15 7 15 5 6 11-11239.5192.3192.0 + 90 5 24 3 5 4 5 3 7 18 15 8-11209.2193.0191.9 + 90 5 25 15 18 15 22 32 18 18 18 20-11189.1193.3191.8 + 90 5 26 32 22 15 18 48 22 67154 47-11186.3193.4191.6 + 90 5 27 22 94111 56 15 32 12 15 45-11164.6193.3191.5 + 90 5 28 5 6 6 6 7 15 6 6 7-11159.3193.1191.3 + 90 5 29 9 6 7 9 7 9 12 18 10-11144.8192.4191.0 + 90 5 30 12 18 18 32 22 18 48 18 23-11142.5191.5190.9 + 90 5 31 15 15 6 12 9 9 12 12 11-11142.5190.3190.7 + 90 6 1 7 15 15 6 6 12 12 7 10-11140.6189.4190.5 + 90 6 2 7 6 7 7 5 5 5 4 6-11141.2188.5190.4 + 90 6 3 5 7 4 4 7 5 9 7 6-11146.1187.7190.3 + 90 6 4 4 9 7 5 5 2 3 7 5-11148.1186.9190.2 + 90 6 5 4 5 4 6 6 6 3 7 5-11153.7186.3190.2 + 90 6 6 9 12 9 9 9 9 9 18 11-11161.4185.8190.2 + 90 6 7 18 56 22 15 18 15 18 15 22-11183.6185.5190.2 + 90 6 8 15 22 22 18 9 15 12 18 16-11195.5185.4190.2 + 90 6 9 22 22 67 48 48 22 15 12 32-11203.9185.5190.3 + 90 6 10 39 15 7 15 15 12 7 27 17-11207.5185.7190.4 + 90 6 11 9 15 12 9 12 9 12 12 11-11217.2186.0190.5 + 90 6 12 27 15 32 32 56132179236 89-11221.8186.5190.7 + 90 6 13179 80 67 39 94 39 39 22 70-11208.8187.2190.9 + 90 6 14 80 94 18 67154179 27 15 79-11206.8188.0191.0 + 90 6 15 9 22 7 5 9 7 7 9 9-11196.3189.0191.1 + 90 6 16 9 4 5 3 4 4 5 3 5-11189.9189.7191.2 + 90 6 17 2 3 4 3 2 2 3 3 3-11187.5190.2191.3 + 90 6 18 3 7 9 7 9 15 22 12 11-11169.5190.5191.3 + 90 6 19 9 12 5 5 9 3 4 3 6-11163.5190.6191.3 + 90 6 20 2 2 3 2 3 2 3 3 3-11161.2190.5191.4 + 90 6 21 2 4 3 3 5 7 9 7 5-11155.8190.2191.3 + 90 6 22 7 9 5 4 5 5 3 6 6-11145.2190.0191.3 + 90 6 23 6 4 5 9 12 9 5 3 7-11139.1189.8191.3 + 90 6 24 6 7 7 9 6 9 7 9 8-11143.8189.4191.2 + 90 6 25 6 9 7 5 7 5 12 7 7-11149.3188.7191.1 + 90 6 26 6 7 6 12 6 5 6 7 7-11154.5187.9190.9 + 90 6 27 5 4 5 6 18 6 9 39 12-11173.4186.9190.7 + 90 6 28 7 7 15 9 6 6 4 4 7-11187.7185.7190.5 + 90 6 29 3 15 12 6 9 6 9 4 8-11210.8184.5190.3 + 90 6 30 4 3 2 3 5 4 3 5 4-11226.6183.4190.2 + 90 7 1 5 4 5 5 4 5 5 9 5-11248.3182.5190.0 + 90 7 2 12 9 6 4 6 6 5 4 7-11276.6181.8189.9 + 90 7 3 7 15 9 4 5 4 5 6 7-11253.8181.1189.8 + 90 7 4 6 3 5 6 3 15 12 18 9-11238.3180.9189.7 + 90 7 5 9 12 5 6 9 6 22 12 10-11231.6180.9189.6 + 90 7 6 6 6 4 4 6 9 12 6 7-11221.8181.1189.6 + 90 7 7 4 6 6 2 5 4 7 15 6-11215.7181.6189.5 + 90 7 8 5 12 12 9 7 12 12 12 10-11189.6182.5189.5 + 90 7 9 6 7 4 4 7 5 5 3 5-11170.9183.7189.6 + 90 7 10 3 32 9 27 22 7 6 6 14-11164.0185.3189.7 + 90 7 11 6 7 7 5 5 4 15 5 7-11160.2187.1189.8 + 90 7 12 5 12 15 9 5 4 6 9 8-11160.9189.0190.0 + 90 7 13 18 27 15 9 4 15 12 7 13-11161.5191.3190.1 + 90 7 14 12 3 5 7 18 15 27 12 12-11155.4193.5190.2 + 90 7 15 12 15 7 6 5 7 9 7 9-11149.1195.7190.2 + 90 7 16 12 6 3 4 5 4 12 7 7-11146.5197.6190.3 + 90 7 17 5 6 4 2 5 4 6 12 6-11147.6199.1190.3 + 90 7 18 15 5 9 4 5 7 12 5 8-11144.7200.1190.3 + 90 7 19 9 12 9 18 39 12 15 15 16-11145.3200.8190.3 + 90 7 20 18 18 32 12 18 9 15 9 16-11154.0201.1190.2 + 90 7 21 6 6 4 5 6 9 15 6 7-11159.2201.1190.1 + 90 7 22 7 6 6 4 6 5 5 9 6-11166.0200.7190.0 + 90 7 23 4 9 2 3 2 5 3 6 4-11180.4200.1189.9 + 90 7 24 4 6 6 4 2 4 5 2 4-11186.6199.6189.8 + 90 7 25 4 5 5 5 4 3 3 2 4-11213.6199.0189.8 + 90 7 26 3 2 4 4 4 12 56 27 14-11209.9198.6189.8 + 90 7 27 4 9 7 12 6 9 15 9 9-11197.2198.2189.8 + 90 7 28 15 39 94 48111154179179102-11193.1197.8189.9 + 90 7 29132132 94 67 80 39 27 32 75-11180.3197.7190.1 + 90 7 30 7 9 15 15 6 6 12 27 12-11188.3197.7190.3 + 90 7 31 15 6 12 6 4 2 3 4 7-11183.4197.9190.7 + 90 8 1 4 6 18 9 48 32 48 39 26-11199.0198.0191.1 + 90 8 2 18 12 12 6 6 4 5 12 9-11208.6198.5191.5 + 90 8 3 9 4 7 15 15 9 12 18 11-11192.4199.1191.7 + 90 8 4 15 6 7 4 5 5 6 4 7-11191.2199.8192.0 + 90 8 5 4 4 3 4 7 5 4 9 5-11180.8200.6192.3 + 90 8 6 6 7 7 6 5 12 18 9 9-11174.6201.2192.6 + 90 8 7 9 6 5 6 7 6 7 9 7-11172.1201.6192.7 + 90 8 8 7 12 6 3 5 5 3 4 6-11184.8201.9192.9 + 90 8 9 7 6 3 5 4 7 6 4 5-11183.2201.8193.0 + 90 8 10 3 4 4 6 6 5 9 12 6-11186.3201.7193.1 + 90 8 11 18 6 9 6 9 7 5 9 9-11187.1201.1193.2 + 90 8 12 9 12 5 7 5 4 5 7 7-11188.2200.2193.3 + 90 8 13 7 15 12 15 15 12 9 7 12-11192.5199.5193.4 + 90 8 14 12 9 56 27 15 12 9 15 19-11188.2198.9193.5 + 90 8 15 9 9 6 39 48 39 39 22 26-11199.6198.2193.6 + 90 8 16 15 18 32 22 32 39 9 32 25-11211.0197.5193.7 + 90 8 17 22 18 15 5 9 18 15 15 15-11228.4196.8193.8 + 90 8 18 15 12 12 12 15 12 7 7 12-11246.1196.4194.0 + 90 8 19 22 22 9 9 15 12 12 12 14-11268.0196.1194.1 + 90 8 20 15 39 22 15 22 18 18 5 19-11288.7196.0194.4 + 90 8 21 12 6 18 22 48 67 80 48 38-11298.3195.9194.7 + 90 8 22 56 67 56 56 48 32 27 48 49-11322.8195.9194.9 + 90 8 23 32 94 56 80132 94 94 32 77-11322.7196.0195.2 + 90 8 24 27 56 22 18 39 15 9 2 24-11329.2196.2195.4 + 90 8 25 5 5 5 3 5 7 9 12 6-11303.9196.7195.7 + 90 8 26 6 18111 80111 80 67 32 63-11285.1197.0195.9 + 90 8 27 32 18 15 12 22 9 7 7 15-11269.2197.3196.0 + 90 8 28 9 6 6 5 9 5 4 5 6-11250.2197.6196.2 + 90 8 29 5 6 6 22 9 7 22 12 11-11225.2197.9196.3 + 90 8 30 9 15 12 27 48 56 22 22 26-11210.4198.3196.3 + 90 8 31 39 22 15 18 12 6 7 6 16-11182.9198.8196.3 + 90 9 1 9 12 4 27111 27 12 5 26-11171.4199.2196.4 + 90 9 2 3 2 2 3 3 0 3 0 2-11168.9199.5196.5 + 90 9 3 0 3 3 6 6 3 4 4 4-11162.6199.8196.6 + 90 9 4 3 3 4 7 7 12 9 18 8-11158.2199.9196.7 + 90 9 5 18 12 9 9 12 9 7 9 11-11157.5200.1196.8 + 90 9 6 15 7 18 15 12 9 9 9 12-11157.6200.5197.0 + 90 9 7 15 12 15 18 18 22 5 7 14-11165.1200.5197.1 + 90 9 8 9 7 6 6 6 9 9 15 8-11163.5200.7197.3 + 90 9 9 12 9 5 12 12 7 12 9 10-11170.4201.0197.5 + 90 9 10 15 9 9 2 3 4 15 32 11-11171.2201.2197.7 + 90 9 11 12 18 27 22 27 27 27 39 25-11180.6201.1197.9 + 90 9 12 27 27 15 18 12 15 22 15 19-11193.3200.6198.2 + 90 9 13 39 15 6 18 18 18 12 27 19-11198.0200.3198.4 + 90 9 14 27 27 18 18 18 18 18 9 19-11209.4199.8198.7 + 90 9 15 18 27 15 27 39 22 18 9 22-11207.3199.6198.9 + 90 9 16 22 18 27 48 27 18 7 15 23-11205.2199.3199.0 + 90 9 17 12 15 15 12 9 7 15 15 13-11210.7199.2199.3 + 90 9 18 4 12 18 27 22 27 27 18 19-11207.5198.8199.4 + 90 9 19 32 18 12 6 6 22 12 22 16-11213.8198.5199.5 + 90 9 20 27 7 4 5 5 7 15 56 16-11204.0198.0199.5 + 90 9 21 22 9 9 18 15 12 15 18 15-11203.2197.5199.6 + 90 9 22 18 27 22 7 18 22 22 22 20-11195.3196.9199.6 + 90 9 23 22 27 15 9 7 12 5 5 13-11185.4196.2199.6 + 90 9 24 5 12 18 9 18 22 12 7 13-11178.7195.8199.7 + 90 9 25 18 18 9 6 4 6 18 12 11-11167.1195.2199.7 + 90 9 26 9 15 7 7 15 15 18 7 12-11159.6194.7199.6 + 90 9 27 12 9 12 6 9 6 4 5 8-11152.6194.3199.6 + 90 9 28 18 15 4 9 12 3 5 6 9-11152.1193.9199.6 + 90 9 29 12 9 7 7 5 0 5 9 7-11150.1193.2199.7 + 90 9 30 9 3 3 3 3 3 7 6 5-11157.8192.2199.7 + 90 10 1 5 6 3 0 0 2 0 2 2-11160.5190.9199.8 + 90 10 2 4 2 5 6 9 5 6 4 5-11162.8189.3199.9 + 90 10 3 6 9 5 6 7 7 15 22 10-11177.4187.7200.1 + 90 10 4 6 12 15 15 15 18 39 12 17-11186.8185.9200.2 + 90 10 5 7 9 9 9 15 7 5 15 10-11170.0184.6200.3 + 90 10 6 6 12 27 18 12 9 7 9 13-11170.0183.6200.4 + 90 10 7 6 7 6 7 6 7 12 9 8-11169.3182.9200.5 + 90 10 8 4 4 5 4 5 5 3 3 4-11175.9182.5200.6 + 90 10 9 5 5 4 6 15 18 18 27 12-11183.9182.1200.8 + 90 10 10 56 80 80 67 48 22 15 12 48-11194.7181.9201.0 + 90 10 11 48 27 56 32 18 32 56 67 42-11205.1181.9201.2 + 90 10 12 39 48 39 32 18 22 22 27 31-11200.6182.0201.4 + 90 10 13 18 18 18 9 12 9 27 18 16-11209.4182.1201.5 + 90 10 14 32 15 18 7 9 15 18 22 17-11220.6182.2201.7 + 90 10 15 32 27 12 18 39 39 22 15 26-11231.6182.3201.8 + 90 10 16 7 12 18 6 6 7 12 15 10-11224.6182.4201.9 + 90 10 17 15 7 9 4 2 0 2 3 5-11193.7182.3202.0 + 90 10 18 2 3 5 6 5 7 7 5 5-11198.2182.2201.9 + 90 10 19 18 15 7 9 5 4 6 9 9-11214.2182.3201.9 + 90 10 20 5 9 7 15 32 48 39 32 23-11201.7182.2201.8 + 90 10 21 15 12 18 12 15 4 6 4 11-11188.7182.2201.7 + 90 10 22 18 15 12 5 9 12 4 4 10-11167.9182.1201.5 + 90 10 23 5 5 6 6 5 5 18 27 10-11164.0181.9201.3 + 90 10 24 48 32 27 22 27 18 18 6 25-11157.5181.7201.1 + 90 10 25 18 22 6 7 6 4 5 6 9-11161.8181.6200.9 + 90 10 26 5 4 3 15 15 18 15 6 10-11153.5181.6200.8 + 90 10 27 6 15 5 6 7 12 6 5 8-11162.5181.8200.7 + 90 10 28 5 5 9 6 2 0 0 3 4-11150.9182.0200.7 + 90 10 29 2 4 3 7 7 12 27 18 10-11155.9182.1200.8 + 90 10 30 67 39 9 7 12 7 9 12 20-11151.1182.4200.8 + 90 10 31 15 27 22 18 18 32 39 27 25-11141.6182.7200.9 + 90 11 1 15 9 6 7 6 5 6 18 9-11141.6183.1201.0 + 90 11 2 12 22 6 5 5 7 7 18 10-11138.5183.5201.1 + 90 11 3 7 9 5 6 6 5 5 5 6-11150.2183.9201.2 + 90 11 4 6 3 3 4 2 2 2 0 3-11154.7184.1201.4 + 90 11 5 0 2 2 0 2 2 2 4 2-11169.7184.4201.5 + 90 11 6 2 2 2 2 2 2 3 3 2-11196.4184.8201.7 + 90 11 7 2 2 4 7 7 6 7 9 6-11214.3185.3201.9 + 90 11 8 5 5 9 6 7 12 12 9 8-11211.8185.9202.0 + 90 11 9 22 18 12 7 7 12 9 9 12-11210.2186.4202.1 + 90 11 10 18 12 12 7 6 18 15 9 12-11191.1186.7202.2 + 90 11 11 18 12 12 15 18 6 6 6 12-11195.0187.0202.3 + 90 11 12 5 12 3 4 3 6 5 3 5-11191.0187.2202.3 + 90 11 13 5 4 5 3 2 3 2 2 3-11181.5187.3202.3 + 90 11 14 4 0 2 3 2 0 0 0 1-11198.0187.3202.1 + 90 11 15 3 3 2 2 3 4 6 3 3-11207.3187.4202.0 + 90 11 16 9 15 22 18 27 18 12 18 17-11207.3187.7201.8 + 90 11 17 9 12 15 15 27 22 18 12 16-11217.1187.9201.5 + 90 11 18 22 15 6 9 22 18 15 15 15-11198.9188.1201.2 + 90 11 19 22 15 9 6 5 9 6 9 10-11191.2188.3200.9 + 90 11 20 9 12 9 5 5 4 4 5 7-11186.8188.2200.6 + 90 11 21 15 22 5 7 12 6 6 7 10-11177.6187.9200.3 + 90 11 22 3 3 2 2 3 3 7 0 3-11177.4187.7200.1 + 90 11 23 2 2 0 3 7 7 4 7 4-11171.7187.3200.0 + 90 11 24 7 4 0 0 2 0 0 3 2-11167.2186.6199.9 + 90 11 25 3 2 3 7 5 3 6 7 5-11162.3185.9199.9 + 90 11 26 12 12 5 7 12 5 2 18 9-11153.2185.2200.1 + 90 11 27 39 27 18 12 32111 94 27 45-11155.0185.1200.2 + 90 11 28 27 39 15 7 7 9 32 7 18-11167.1185.1200.5 + 90 11 29 5 9 4 3 2 3 6 7 5-11163.2185.0200.7 + 90 11 30 7 6 5 6 12 18 7 7 9-11169.6185.1200.9 + 90 12 1 9 12 2 2 4 6 3 3 5-11172.6185.4201.1 + 90 12 2 2 3 3 5 7 5 7 5 5-11178.0185.9201.4 + 90 12 3 6 4 3 2 4 9 9 15 7-11187.6186.4201.6 + 90 12 4 18 32 9 18 15 15 9 22 17-11199.3186.8201.9 + 90 12 5 15 6 12 15 12 22 12 7 13-11207.0187.1202.2 + 90 12 6 9 6 6 12 7 5 6 5 7-11221.0187.5202.4 + 90 12 7 7 7 6 3 2 4 5 2 5-11222.0187.7202.5 + 90 12 8 0 4 9 6 12 12 12 9 8-11223.6188.3202.7 + 90 12 9 6 5 4 6 7 7 4 3 5-11230.3188.8202.8 + 90 12 10 0 2 2 3 2 3 3 2 2-11233.4189.3202.9 + 90 12 11 3 2 2 2 2 5 2 0 2-11233.4190.0203.0 + 90 12 12 2 2 2 3 7 15 12 15 7-11228.0190.7203.0 + 90 12 13 32 22 27 18 6 5 6 5 15-11219.5191.7203.1 + 90 12 14 18 9 6 4 7 9 5 2 8-11195.3192.5203.1 + 90 12 15 5 9 9 5 3 6 6 5 6-11193.2193.5203.1 + 90 12 16 7 7 5 7 18 9 7 6 8-11186.2194.6203.1 + 90 12 17 7 12 4 4 3 6 7 5 6-11192.5195.6203.1 + 90 12 18 7 3 2 7 7 6 3 2 5-11201.6196.6203.1 + 90 12 19 2 2 2 2 3 4 2 2 2-11191.2197.9203.1 + 90 12 20 4 5 4 6 9 15 15 6 8-11181.6199.5203.2 + 90 12 21 4 5 3 0 0 6 4 4 3-11185.8201.6203.2 + 90 12 22 3 3 4 4 2 0 2 7 3-11178.1203.5203.3 + 90 12 23 2 2 15 9 4 6 4 15 7-11185.6204.9203.4 + 90 12 24 3 12 7 15 15 18 27 22 15-11184.9206.3203.5 + 90 12 25 12 18 5 9 9 15 9 6 10-11185.0207.0203.5 + 90 12 26 5 3 4 3 5 3 3 3 4-11188.1207.4203.7 + 90 12 27 4 15 4 5 6 6 5 3 6-11191.9207.5203.7 + 90 12 28 5 5 4 4 3 3 5 4 4-11192.4207.3203.8 + 90 12 29 3 4 2 3 3 5 6 3 4-11195.5207.2203.9 + 90 12 30 12 18 15 15 7 6 12 7 12-11189.6207.2203.9 + 90 12 31 3 3 4 9 15 18 9 12 9-11180.6207.1203.9 + 91 1 1 27 12 5 4 4 4 2 2 8-11180.6207.0203.9 + 91 1 2 12 22 9 7 9 7 9 7 10-11175.8207.0203.9 + 91 1 3 9 15 15 18 15 5 3 7 11-11170.0207.1203.9 + 91 1 4 9 18 7 5 5 5 5 9 8-11170.2207.3204.0 + 91 1 5 9 9 5 6 15 4 7 7 8-11172.9207.5204.1 + 91 1 6 4 6 3 3 3 2 3 4 4-11179.7208.0204.1 + 91 1 7 5 2 2 2 3 3 2 4 3-11199.6208.6204.1 + 91 1 8 9 6 9 7 15 5 9 7 8-11207.9209.1204.2 + 91 1 9 5 12 7 7 5 4 6 18 8-11209.1210.3204.3 + 91 1 10 15 4 6 7 12 12 5 12 9-11214.6211.5204.4 + 91 1 11 5 7 4 9 12 9 6 6 7-11209.4212.9204.6 + 91 1 12 27 12 48 12 7 22 15 9 19-11201.6214.4204.7 + 91 1 13 15 27 15 6 6 7 15 5 12-11190.5215.8204.8 + 91 1 14 4 3 3 2 4 5 5 3 4-11184.5217.2204.9 + 91 1 15 18 12 7 7 9 4 22 18 12-11184.6218.5205.0 + 91 1 16 6 3 6 7 12 5 6 12 7-11181.8219.4205.0 + 91 1 17 12 6 4 9 15 22 9 12 11-11202.0220.0205.2 + 91 1 18 12 7 5 6 9 18 12 15 11-11196.8220.3205.3 + 91 1 19 2 2 2 4 3 5 6 4 4-11192.3220.3205.4 + 91 1 20 6 3 3 5 3 9 7 2 5-11197.5220.0205.6 + 91 1 21 2 12 2 4 4 2 2 7 4-11195.9219.7205.8 + 91 1 22 7 6 3 2 3 3 2 4 4-11217.5219.5205.9 + 91 1 23 4 3 5 5 4 4 7 15 6-11216.0219.4206.1 + 91 1 24 39 18 18 27 12 27 22 12 22-11236.8219.6206.1 + 91 1 25 6 7 7 9 6 18 39 15 13-11260.9219.8206.2 + 91 1 26 12 22 9 7 7 6 4 18 11-11276.9220.1206.2 + 91 1 27 2 5 4 6 7 5 9 15 7-11293.8220.3206.3 + 91 1 28 4 6 5 5 3 6 4 7 5-11313.8220.5206.4 + 91 1 29 7 3 5 6 3 2 2 6 4-11344.5220.9206.5 + 91 1 30 2 2 2 3 5 7 7 4 4-11359.2221.4206.7 + 91 1 31 9 15 18 7 7 15 12 27 14-11348.6221.9206.7 + 91 2 1 15 5 18 22 15 27 56 67 28-11307.3222.7206.8 + 91 2 2 48 18 6 7 6 4 3 4 12-11289.3223.4206.8 + 91 2 3 3 7 7 6 6 3 3 4 5-11258.4224.1206.8 + 91 2 4 12 4 2 3 4 3 5 15 6-11239.2225.0206.8 + 91 2 5 9 7 12 7 6 7 6 12 8-11216.5225.7206.8 + 91 2 6 6 5 5 4 5 5 7 7 6-11198.7226.7206.8 + 91 2 7 6 9 7 7 12 12 9 18 10-11192.7227.6206.8 + 91 2 8 9 15 15 12 18 18 9 12 14-11192.7228.3206.7 + 91 2 9 22 6 6 9 12 32 27 22 17-11174.0229.1206.6 + 91 2 10 15 7 9 12 7 4 5 5 8-11169.5230.1206.5 + 91 2 11 15 22 15 12 6 18 12 32 17-11176.5230.7206.4 + 91 2 12 27 18 12 15 12 7 6 7 13-11181.6231.8206.3 + 91 2 13 12 12 5 12 12 12 9 12 11-11182.2232.6206.2 + 91 2 14 7 7 5 6 7 9 9 12 8-11184.0233.3206.3 + 91 2 15 22 5 7 5 7 6 7 12 9-11191.9233.7206.5 + 91 2 16 5 4 4 6 4 6 5 4 5-11200.4233.9206.6 + 91 2 17 4 5 2 3 5 5 3 3 4-11210.2233.8206.7 + 91 2 18 3 3 4 3 4 3 3 6 4-11259.6233.7206.8 + 91 2 19 4 3 4 7 9 18 12 6 8-11269.8233.5206.8 + 91 2 20 4 3 6 5 4 9 12 9 7-11283.8233.3206.8 + 91 2 21 12 12 9 12 5 6 7 3 8-11299.2233.0206.7 + 91 2 22 7 15 27 18 7 7 7 22 14-11302.6233.0206.6 + 91 2 23 12 12 22 18 27 22 27 27 21-11311.5233.0206.4 + 91 2 24 6 7 6 3 3 4 9 9 6-11313.1233.2206.2 + 91 2 25 12 4 5 22 15 12 9 6 11-11288.4233.4206.0 + 91 2 26 7 9 12 7 9 6 6 5 8-11271.8233.5205.8 + 91 2 27 4 4 7 12 12 7 15 12 9-11248.7233.3205.7 + 91 2 28 18 22 22 18 15 12 15 22 18-11228.0233.3205.6 + 91 3 1 12 12 12 9 12 9 18 18 13-11216.5233.7205.6 + 91 3 2 18 9 6 7 9 12 9 5 9-11207.5234.1205.6 + 91 3 3 12 4 6 5 4 4 7 9 6-11206.4234.9205.6 + 91 3 4 7 6 3 5 7 12 18 15 9-11218.9235.2205.6 + 91 3 5 12 18 22 39 27 32 12 18 23-11208.1235.8205.7 + 91 3 6 15 15 22 27 12 27 48 27 24-11206.7236.2205.7 + 91 3 7 18 18 27 22 22 18 32 39 25-11214.5236.3205.8 + 91 3 8 22 15 7 22 9 22 18 22 17-11209.1236.0205.8 + 91 3 9 32 27 15 22 32 18 12 39 25-11215.7235.3205.8 + 91 3 10 48 67 12 9 15 9 6 2 21-11222.8234.3205.9 + 91 3 11 2 2 5 4 7 5 4 7 5-11221.9233.0206.0 + 91 3 12 7 12 18 15 15 15 27 27 17-11228.7230.8206.0 + 91 3 13 94 27 48 12 9 18 5 2 27-11239.1228.5206.0 + 91 3 14 15 9 12 7 3 3 5 3 7-11241.6226.6206.0 + 91 3 15 5 2 3 9 12 9 3 3 6-11242.2224.7206.0 + 91 3 16 3 2 3 6 4 12 27 6 8-11258.5223.2205.9 + 91 3 17 12 18 9 12 7 9 18 22 13-11245.4222.0205.8 + 91 3 18 27 18 12 6 3 4 2 0 9-11274.8221.1205.7 + 91 3 19 3 9 6 9 12 18 27 15 12-11264.9220.6205.7 + 91 3 20 9 22 18 15 12 6 7 4 12-11254.2220.2205.6 + 91 3 21 4 7 15 18111 27 12 18 27-11253.1219.8205.5 + 91 3 22 12 18 27 27 22 6 9 39 20-11257.7219.7205.4 + 91 3 23 22 15 7 12 12 7 7 6 11-11233.4219.6205.3 + 91 3 24 15300207154 56 48207300161-11260.5219.4205.3 + 91 3 25179300 48 80179 67 56132130-11235.2219.2205.3 + 91 3 26132154132111207 80 56 39114-11229.4219.2205.3 + 91 3 27 27 32 27 27 39 32 27 39 31-11203.0219.5205.4 + 91 3 28 27 32 22 15 22 22 15 4 20-11197.7219.8205.5 + 91 3 29 4 5 4 5 2 3 3 9 4-11192.9220.2205.5 + 91 3 30 5 18 22 32 32 39 27 32 26-11201.3220.4205.6 + 91 3 31 12 12 9 9 3 3 4 22 9-11194.7220.2205.7 + 91 4 1 39 32 32 39 32 12 15 32 29-11192.8219.7205.9 + 91 4 2 22 18 27 27 15 22 15 27 22-11189.1219.3206.0 + 91 4 3 15 22 56 56 48 32 39 27 37-11195.9218.4206.1 + 91 4 4 18 12 12 94111 67 48 39 50-11195.1217.3206.2 + 91 4 5 27 18 15 12 15 15 9 12 15-11196.7215.8206.3 + 91 4 6 15 22 12 6 7 18 18 12 14-11199.9214.4206.4 + 91 4 7 15 15 15 9 9 9 6 6 11-11192.6213.0206.4 + 91 4 8 6 7 5 5 4 5 7 7 6-11182.8211.8206.4 + 91 4 9 15 15 7 5 9 7 15 7 10-11204.2210.7206.4 + 91 4 10 7 12 9 9 12 6 3 5 8-11223.6209.8206.4 + 91 4 11 4 4 4 6 4 5 6 5 5-11231.5209.0206.4 + 91 4 12 12 15 12 18 18 18 4 4 13-11254.4208.3206.3 + 91 4 13 4 5 5 5 6 5 5 6 5-11242.6207.7206.3 + 91 4 14 4 7 6 4 5 7 7 7 6-11269.3207.0206.2 + 91 4 15 6 6 6 5 9 5 6 4 6-11263.1206.7206.1 + 91 4 16 3 2 2 5 7 12 7 4 5-11269.1206.5206.0 + 91 4 17 5 15 9 12 18 22 18 6 13-11254.2206.3205.8 + 91 4 18 6 9 15 27 15 7 9 12 13-11239.1206.5205.8 + 91 4 19 9 27 22 22 6 5 9 9 14-11232.0206.7205.7 + 91 4 20 5 3 3 4 4 4 4 4 4-11235.3206.6205.5 + 91 4 21 4 4 5 12 7 7 6 5 6-11181.6206.7205.4 + 91 4 22 12 6 7 9 12 12 6 2 8-11168.7206.6205.3 + 91 4 23 4 5 3 12 5 18 7 9 8-11149.0206.7205.3 + 91 4 24 12 7 9 5 6 5 15 32 11-11137.4206.5205.4 + 91 4 25 39 32 15 15 12 4 9 9 17-11138.1206.5205.6 + 91 4 26 12 32 7 5 5 6 9 22 12-11138.3206.5205.8 + 91 4 27 27 56 12 12 15 18 18 32 24-11144.6206.5206.1 + 91 4 28 32 32 15 12 48 39 39 48 33-11158.4206.0206.3 + 91 4 29 80 48 39 56111 67 32 39 59-11161.0205.8206.6 + 91 4 30 56 56 32 22 39 27 22 15 34-11161.7205.7206.9 + 91 5 1 39 22 18 15 32 32 22 39 27-11163.6205.6207.2 + 91 5 2 39 32 32 27 80 67 48 32 45-11159.6205.4207.5 + 91 5 3 22 27 15 7 15 12 15 12 16-11159.5205.5207.7 + 91 5 4 15 6 7 4 9 15 7 9 9-11165.8205.0207.9 + 91 5 5 9 5 6 4 3 6 4 6 5-11183.2204.7208.0 + 91 5 6 6 6 5 2 5 4 3 7 5-11207.2204.4208.1 + 91 5 7 6 6 9 6 4 5 5 4 6-11215.3204.2208.1 + 91 5 8 9 7 12 12 5 9 22 4 10-11235.6204.0208.0 + 91 5 9 7 9 6 5 6 22 27 15 12-11230.1203.9208.0 + 91 5 10 5 6 9 9 12 12 7 15 9-11237.0203.6207.9 + 91 5 11 6 2 3 3 4 4 2 3 3-11234.5203.3207.9 + 91 5 12 2 5 3 4 4 5 6 4 4-11253.7203.1207.9 + 91 5 13 5 15 18 48 48 32 39 12 27-11219.7202.9207.9 + 91 5 14 4 18 39 56 39 67 22 22 33-11212.8202.6207.9 + 91 5 15 12 9 12 12 6 4 4 4 8-11197.7202.3207.9 + 91 5 16 5 4 4 5 7 9 56 27 15-11193.4202.1207.8 + 91 5 17 80 32 80 48 27 7 5 4 35-11176.2202.0207.7 + 91 5 18 4 6 3 3 4 4 2 2 4-11174.2202.1207.6 + 91 5 19 3 5 3 2 2 4 9 5 4-11162.7202.6207.4 + 91 5 20 5 5 4 4 4 4 2 2 4-11151.8202.9207.3 + 91 5 21 3 3 3 7 9 15 12 6 7-11153.0203.2207.2 + 91 5 22 27 15 18 22 7 12 18 15 17-11151.9203.4207.1 + 91 5 23 22 15 12 12 22 39 15 32 21-11158.6203.4207.0 + 91 5 24 39 15 22 9 48 15 39 22 26-11162.8203.6206.9 + 91 5 25 48 67 48 27 22 32 22 15 35-11178.8203.4206.8 + 91 5 26 15 15 22 15 27 39 32 18 23-11191.4203.4206.7 + 91 5 27 27 27 12 22 27 12 22 22 21-11202.9203.0206.6 + 91 5 28 48 22 18 22 9 39 39 48 31-11221.4202.7206.6 + 91 5 29 56 32 12 18 12 12 22 15 22-11231.1202.3206.6 + 91 5 30 15 7 15 9 9 18 9 15 12-11213.5201.9206.5 + 91 5 31 15 22 27 94 94111 39 15 52-11230.7201.5206.5 + 91 6 1 22 56132 94111154 7 18 74-11224.9201.8206.5 + 91 6 2 32 67 67 27 22 80 56132 60-11243.1202.3206.5 + 91 6 3 12 7 32 7 7 9 32 18 16-11226.8202.9206.4 + 91 6 4 7 12 9 15 39154132 94 58-11245.6203.6206.4 + 91 6 5111154207207207300207179197-11258.1204.3206.4 + 91 6 6111 67 80 67 27 12 6 22 49-11241.3204.7206.3 + 91 6 7 15 22 56 22 18 18 27 39 27-11236.6205.0206.2 + 91 6 8 18 12 9 12 27 56 56 22 27-11250.7205.4206.2 + 91 6 9111 56 22 32 32111 80 22 58-11245.3205.7206.2 + 91 6 10 22 27154111154154179154119-11246.2206.2206.2 + 91 6 11132154 94 67 67 39 94 56 88-11242.8206.9206.3 + 91 6 12 56 48 15 56 67 94111 80 66-11236.8207.8206.3 + 91 6 13154 56 94132179132179 32120-11224.7208.7206.3 + 91 6 14 18 7 12 9 6 4 3 5 8-11207.2209.7206.4 + 91 6 15 5 9 27 12 12 22 9 7 13-11203.1210.3206.4 + 91 6 16 3 3 4 5 5 5 6 7 5-11190.5210.6206.5 + 91 6 17 12 12 9 67 94 80154111 67-11182.1210.6206.6 + 91 6 18 39 32 27 18 12 22 32 22 26-11178.7210.4206.6 + 91 6 19 27 32 32 27 32 22 32 22 28-11180.7210.4206.6 + 91 6 20 27 12 9 7 6 15 18 18 14-11171.7210.3206.5 + 91 6 21 39 18 32 15 18 32 22 22 25-11175.1210.2206.6 + 91 6 22 18 22 18 9 15 15 22 27 18-11175.4209.9206.6 + 91 6 23 15 22 27 48 80 48 67 67 47-11166.6209.8206.7 + 91 6 24 48 48 27 22 32 18 22 32 31-11173.9209.9206.7 + 91 6 25 18 22 18 27 22 27 27 32 24-11178.8209.9206.9 + 91 6 26 27 22 18 18 27 18 27 18 22-11191.3209.7207.0 + 91 6 27 15 6 7 12 6 9 15 12 10-11206.3209.7207.2 + 91 6 28 12 15 12 7 6 7 7 7 9-11217.5209.6207.3 + 91 6 29 5 3 5 5 6 4 6 6 5-11234.4209.6207.5 + 91 6 30 18 32 12 15 27 18 22 27 21-11243.6209.7207.7 + 91 7 1 18 15 7 3 6 15 15 12 11-11250.3209.6207.9 + 91 7 2 5 12 22 22 22 27 27 32 21-11251.8209.5208.0 + 91 7 3 27 39 27 22 39 27 27 22 29-11257.3209.4208.2 + 91 7 4 39 12 15 9 12 7 6 4 13-11255.4209.3208.4 + 91 7 5 5 3 4 4 5 5 4 4 4-11259.5209.3208.7 + 91 7 6 5 6 4 5 6 12 12 15 8-11240.8209.7208.9 + 91 7 7 9 12 3 3 4 5 9 12 7-11226.1210.5209.2 + 91 7 8 9 12 22 32 39207154 67 68-11211.2211.2209.4 + 91 7 9 18 39207132207154111 67117-11200.6212.0209.5 + 91 7 10 48 32 22 9 18 7 9 6 19-11200.2213.0209.6 + 91 7 11 12 15 22 48 22 18 9 18 21-11202.3213.8209.7 + 91 7 12 15 15 18 67 39 22 18 27 28-11209.9214.6209.8 + 91 7 13 39 48111132207300 80154134-11202.3215.2209.7 + 91 7 14111 94111 80 94 32 56 22 75-11194.8215.8209.7 + 91 7 15 32 18 9 12 6 5 9 5 12-11192.0215.9209.7 + 91 7 16 12 9 5 5 7 48 56 32 22-11172.6215.7209.6 + 91 7 17 67 56 56 18 18 27 27 56 41-11163.9215.4209.6 + 91 7 18 39 9 6 7 18 22 32 32 21-11194.8215.0209.5 + 91 7 19 22 27 27 27 48 39 94 32 40-11184.1214.3209.4 + 91 7 20 15 22 48 32 22 32 27 27 28-11205.3213.7209.2 + 91 7 21 32 67 27 27 22 22 27 32 32-11221.6213.1209.1 + 91 7 22 22 22 18 18 32 18 12 39 23-11230.2212.4209.0 + 91 7 23 22 12 6 9 15 22 22 6 14-11234.0211.7209.0 + 91 7 24 6 6 9 7 5 6 7 6 7-11240.8211.2208.8 + 91 7 25 6 7 18 9 15 18 12 6 11-11237.5210.8208.7 + 91 7 26 3 6 5 3 5 4 5 6 5-11226.6210.5208.5 + 91 7 27 6 5 3 4 3 5 22 15 8-11219.5210.2208.3 + 91 7 28 7 9 4 3 3 4 3 15 6-11219.4210.1208.1 + 91 7 29 7 7 7 5 5 4 4 9 6-11226.6210.1207.9 + 91 7 30 6 12 18 5 5 7 9 5 8-11228.4210.3207.7 + 91 7 31 7 5 5 3 6 6 5 9 6-11225.9210.5207.4 + 91 8 1 27 6 6 12 12 80 67 80 36-11232.0210.6207.2 + 91 8 2 22 18 94 56 80 80 27 39 52-11213.2210.7207.1 + 91 8 3 32 18 22 39 94 48 32 48 42-11219.4210.9207.0 + 91 8 4 80 56 48 22 39 22 56 27 44-11198.8211.1206.9 + 91 8 5 27 56 22 27 27 12 32 56 32-11179.4211.1207.0 + 91 8 6 80 48 32 27 27 18 15 7 32-11171.4211.0207.0 + 91 8 7 15 56 15 5 6 6 6 15 16-11170.0210.7207.0 + 91 8 8 18 12 15 18 9 6 3 9 11-11163.5210.2207.1 + 91 8 9 9 15 9 9 32 22 15 12 15-11154.6209.5207.2 + 91 8 10 5 9 15 9 9 7 5 7 8-11145.7208.7207.3 + 91 8 11 32 27 27 22 39 27 12 7 24-11142.4207.7207.5 + 91 8 12 12 18 39 27154 67154 39 64-11150.7206.8207.6 + 91 8 13 22 6 7 7 6 5 9 5 8-11159.5205.9207.8 + 91 8 14 3 4 6 4 15 22 39 56 19-11179.6205.1207.8 + 91 8 15 48 48 39 32 32 27 32 32 36-11220.4204.1207.9 + 91 8 16 18 27 15 12 18 18 15 27 19-11270.7203.4207.9 + 91 8 17 12 27 18 32 18 18 27 15 21-11277.7203.1207.9 + 91 8 18 32 9 9 7 15 15 80 39 26-11290.5202.7207.9 + 91 8 19 39 39179179 80 32 27 15 74-11296.6202.4207.9 + 91 8 20 15 12 39154179 39 56 39 67-11293.1202.3207.7 + 91 8 21 80 67 67 39 22 22 12 18 41-11291.8202.3207.5 + 91 8 22 48132 94 22 27 15 15 27 48-11291.5202.3207.3 + 91 8 23 27 18 12 27 7 3 5 7 13-11277.0202.5207.0 + 91 8 24 18 15 9 4 7 12 12 12 11-11255.4202.7206.8 + 91 8 25 18 12 9 7 5 7 7 12 10-11243.4203.0206.6 + 91 8 26 7 9 6 12 7 6 12 9 9-11214.7203.2206.5 + 91 8 27 15 15 15 7 9 67111 56 37-11200.4203.5206.4 + 91 8 28 22 15 7 6 9 18 27 27 16-11193.7203.3206.3 + 91 8 29 4 4 9 9 12 12 32 27 14-11199.2203.2206.3 + 91 8 30 12 18 15 27 94 67 67 94 49-11199.4202.9206.3 + 91 8 31 15 18 80 56 80 80 27 56 52-11185.2202.4206.3 + 91 9 1 56 56 39 32 27 32 80 56 47-11179.1201.8206.2 + 91 9 2 32 39 67 32 18 18 5 9 28-11184.3201.2206.2 + 91 9 3 4 12 15 22 22 15 15 22 16-11178.1200.5206.0 + 91 9 4 9 15 18 12 15 6 6 15 12-11173.8199.8205.9 + 91 9 5 32 39 27 15 15 15 15 12 21-11166.2199.2205.7 + 91 9 6 15 32 12 12 9 18 7 9 14-11179.0198.8205.5 + 91 9 7 27 18 18 12 18 6 12 5 15-11177.1198.1205.4 + 91 9 8 22 18 9 9 32 22 48 15 22-11199.0197.3205.3 + 91 9 9 27 18 32 48 48 39 48132 49-11183.3196.3205.2 + 91 9 10 48 94 56 15 18 22 18 22 37-11187.2195.5205.0 + 91 9 11 32 9 9 32 32 18 32 12 22-11179.9194.7204.8 + 91 9 12 9 9 12 12 7 6 7 6 9-11185.4194.3204.6 + 91 9 13 9 9 9 7 9 12 18 32 13-11187.1193.9204.4 + 91 9 14 32 32 22 32 27 27 18 15 26-11183.4194.3204.2 + 91 9 15 27 12 5 4 6 5 7 7 9-11182.1195.0203.9 + 91 9 16 9 7 6 7 7 3 9 5 7-11176.1196.0203.7 + 91 9 17 6 5 4 2 5 7 5 7 5-11178.6196.9203.4 + 91 9 18 4 3 3 4 5 5 6 15 6-11182.9198.2203.1 + 91 9 19 15 12 6 12 9 7 6 12 10-11173.9199.6202.8 + 91 9 20 12 22 9 6 5 6 3 5 9-11171.1201.0202.6 + 91 9 21 9 6 4 4 3 3 2 6 5-11178.0202.0202.4 + 91 9 22 9 6 5 9 12 7 5 5 7-11189.0203.0202.2 + 91 9 23 6 5 3 3 4 3 5 5 4-11186.1203.7201.9 + 91 9 24 7 9 3 4 6 6 6 12 7-11180.9203.7201.7 + 91 9 25 27 39 22 22 48 80 67 94 50-11181.9203.1201.6 + 91 9 26 48 32 39 39 39 27 39 32 37-11201.6201.9201.5 + 91 9 27 48 67 48 48 48 56 48 18 48-11178.7200.8201.5 + 91 9 28 32 48 27 39 48 22 67 39 40-11176.3199.5201.5 + 91 9 29 18 9 6 15 18 27 27 27 18-11195.4198.3201.4 + 91 9 30 18 27 27 18 22 27 32 22 24-11200.3197.1201.4 + 91 10 1 18 22 48 18 22 18132154 54-11208.0195.8201.4 + 91 10 2 80 94 67 67 94 80 27 27 67-11220.9194.6201.4 + 91 10 3 18 22 27 22 18 9 15 18 19-11211.8193.5201.3 + 91 10 4 15 32 27 12 32 27 80 56 35-11212.6192.6201.2 + 91 10 5 27 22 22 12 12 7 15 4 15-11193.4191.8201.1 + 91 10 6 7 5 7 18 18 39 32 56 23-11181.9191.2201.0 + 91 10 7 67 56 32 27 27 15 18 18 33-11180.0190.7200.8 + 91 10 8 22 27 39 39 32 39111 18 41-11178.7190.3200.7 + 91 10 9 27 32 12 15 7 9 7 6 14-11183.7189.8200.6 + 91 10 10 27 56 39 18 27 39 18 12 30-11179.2189.3200.3 + 91 10 11 9 9 12 15 7 18 18 12 13-11178.2188.8200.1 + 91 10 12 7 6 6 6 3 4 6 9 6-11187.2188.4199.8 + 91 10 13 7 7 7 7 12 5 7 6 7-11182.5187.8199.5 + 91 10 14 7 4 6 3 12 9 15 6 8-11186.1187.2199.2 + 91 10 15 7 6 6 3 5 5 6 3 5-11177.7186.7198.9 + 91 10 16 5 7 4 4 5 4 4 3 5-11180.3186.2198.6 + 91 10 17 5 2 4 5 15 7 7 7 7-11168.2185.7198.3 + 91 10 18 18 12 6 7 15 12 9 9 11-11156.5185.4198.2 + 91 10 19 7 18 9 9 7 9 18 18 12-11153.0184.8198.1 + 91 10 20 27 18 22 39 27 18 12 9 22-11155.5184.5198.0 + 91 10 21 12 27 9 22 32 48 39 32 28-11166.8184.2198.1 + 91 10 22 22 32 32 32 18 22 15 7 23-11182.7184.0198.2 + 91 10 23 15 15 18 12 5 12 39 56 22-11192.0183.8198.3 + 91 10 24 39 22 22 18 15 18 22 27 23-11228.0183.7198.4 + 91 10 25 39 27 22 39 32 48 56 39 38-11237.4183.7198.4 + 91 10 26 32 22 32 22 48 32 32 32 32-11248.1183.7198.5 + 91 10 27 94 56 48 39 27 32 48 56 50-11246.3183.9198.5 + 91 10 28 56 56 39 94179236 56 67 98-11267.5184.2198.4 + 91 10 29179236207 94 39 80132 56128-11268.8184.7198.3 + 91 10 30 15 12 12 27 48 67 39 48 34-11258.0185.6198.3 + 91 10 31 48 18 56 67 48 48 56132 59-11228.1186.6198.2 + 91 11 1 56 18 56 56111207236132109-11226.8187.4198.1 + 91 11 2132 94 22 18 15 18 15 15 41-11214.8187.9198.0 + 91 11 3 7 9 15 27 22 15 15 27 17-11183.1188.7197.9 + 91 11 4 22 32 22 48 12 18 80 67 38-11173.9189.2197.8 + 91 11 5 67 39 27 18 18 18 18 9 27-11172.6189.5197.6 + 91 11 6 18 48 22 9 9 15 12 15 19-11183.4189.8197.4 + 91 11 7 18 15 9 12 7 12 12 9 12-11190.0190.0197.1 + 91 11 8 12 15 27 27111111179300 98-11196.7190.1196.9 + 91 11 9236236154111 80 48 56 32119-11193.6189.9196.6 + 91 11 10 22 12 27 27 27 15 22 22 22-11191.5189.8196.3 + 91 11 11 15 15 7 9 9 22 48 39 21-11193.6189.6195.9 + 91 11 12 18 15 22 7 4 4 6 7 10-11188.5189.5195.7 + 91 11 13 4 6 12 15 22 18 12 15 13-11177.4189.6195.4 + 91 11 14 27 27 22 18 18 7 7 18 18-11179.6189.7195.3 + 91 11 15 32 18 27 48 48 22 27 15 30-11169.4190.4195.1 + 91 11 16 22 27 27 27 32 18 15 32 25-11161.9191.3194.9 + 91 11 17 18 9 22 39 22 27 22 18 22-11160.8192.1194.8 + 91 11 18 32 27 22 32 27 18 32 48 30-11159.6193.1194.6 + 91 11 19 67 56 56 39 39 94 56 39 56-11154.6193.9194.6 + 91 11 20 7 12 22 15 12 22 27 27 18-11149.6194.9194.6 + 91 11 21 12 39 48 48 39111111111 65-11141.5195.6194.5 + 91 11 22 94 80 94 56 80 22 12 15 57-11135.7196.3194.5 + 91 11 23 27 22 48 48 39 27 22 32 33-11133.0197.1194.5 + 91 11 24 18 18 15 7 9 15 15 18 14-11128.1198.2194.3 + 91 11 25 15 12 15 5 9 9 15 9 11-11130.9199.3194.2 + 91 11 26 4 18 12 9 7 6 5 0 8-11140.4200.2193.9 + 91 11 27 7 7 5 4 7 12 9 6 7-11148.9201.2193.7 + 91 11 28 12 4 4 5 12 9 15 18 10-11150.4202.4193.3 + 91 11 29 27 18 4 7 18 15 7 32 16-11156.6203.6193.1 + 91 11 30 27 15 9 9 9 6 7 22 13-11163.2204.8192.7 + 91 12 1 12 9 9 6 9 9 12 12 10-11167.6205.5192.4 + 91 12 2 27 9 12 22 27 15 18 15 18-11166.2205.7192.0 + 91 12 3 7 9 12 15 18 9 12 18 13-11177.7205.6191.6 + 91 12 4 18 15 12 9 12 15 22 15 15-11185.2205.0191.3 + 91 12 5 12 15 7 7 5 6 12 6 9-11186.3204.2190.9 + 91 12 6 7 5 4 5 4 4 3 7 5-11191.6203.2190.5 + 91 12 7 5 6 5 5 6 4 6 12 6-11202.9202.1190.2 + 91 12 8 5 9 9 9 15 7 4 2 8-11219.6200.6189.9 + 91 12 9 4 5 6 12 6 15 12 18 10-11249.7199.1189.5 + 91 12 10 18 9 15 9 9 12 18 32 15-11252.5197.9189.2 + 91 12 11 22 12 6 6 9 12 18 27 14-11237.8197.1188.9 + 91 12 12 22 22 6 6 9 15 12 15 13-11235.8196.3188.6 + 91 12 13 15 12 9 18 27 15 12 15 15-11246.6195.8188.3 + 91 12 14 7 9 22 15 18 27 15 22 17-11222.2195.6188.1 + 91 12 15 15 9 7 4 7 4 3 4 7-11206.5195.6187.9 + 91 12 16 3 5 6 18 32 39 32 27 20-11225.1195.8187.7 + 91 12 17 56 48 32 32 32 32 32 18 35-11192.0196.1187.5 + 91 12 18 22 12 18 15 7 12 7 3 12-11189.0196.4187.4 + 91 12 19 4 5 15 18 18 22 15 6 13-11181.8196.8187.3 + 91 12 20 3 7 7 5 15 22 9 9 10-11191.8197.6187.1 + 91 12 21 39 39 32 32 22 22 12 18 27-11186.2198.6187.0 + 91 12 22 15 7 7 6 2 4 4 5 6-11216.0199.8186.8 + 91 12 23 18 22 15 12 9 9 15 15 14-11218.9200.9186.7 + 91 12 24 15 15 9 18 9 9 4 3 10-11222.3202.2186.5 + 91 12 25 4 3 5 7 15 6 6 9 7-11250.8203.2186.4 + 91 12 26 7 18 7 4 5 7 9 12 9-11252.2204.1186.2 + 91 12 27 27 15 15 39 18 39 39 94 36-11243.7205.1186.0 + 91 12 28 22 12 9 12 27 27 39 39 23-11263.3206.0185.7 + 91 12 29 27 32 39 12 15 18 32 56 29-11246.0206.9185.3 + 91 12 30 39 27 7 7 15 9 12 12 16-11263.2207.7185.0 + 91 12 31 12 5 4 6 12 12 15 9 9-11235.0208.7184.7 + 92 1 1 12 7 12 9 9 22 7 15 12-11240.3209.8184.3 + 92 1 2 39 32 22 48 9 15 7 6 22-11251.6210.8184.0 + 92 1 3 15 15 9 22 15 9 22 22 16-11270.4211.7183.7 + 92 1 4 18 27 18 12 9 7 15 22 16-11265.6212.5183.4 + 92 1 5 18 15 9 9 9 18 15 7 13-11257.7213.4183.1 + 92 1 6 9 18 15 5 15 15 12 18 13-11245.7214.1182.9 + 92 1 7 7 7 5 9 9 9 12 7 8-11253.7214.6182.8 + 92 1 8 12 15 22 18 18 15 22 9 16-11253.1215.3182.7 + 92 1 9 9 12 5 3 4 2 3 15 7-11248.8215.8182.6 + 92 1 10 22 15 9 12 12 9 9 22 14-11225.1216.2182.5 + 92 1 11 15 22 9 27 32 48 39 18 26-11202.4216.6182.4 + 92 1 12 32 22 32 27 18 18 18 12 22-11182.4217.1182.3 + 92 1 13 22 48 22 48 22 22 9 22 27-11177.3217.8182.3 + 92 1 14 27 15 18 12 18 32 18 27 21-11172.8218.5182.3 + 92 1 15 18 15 22 18 39 7 15 6 18-11167.7219.3182.3 + 92 1 16 6 22 22 18 18 15 56 56 27-11156.1220.0182.3 + 92 1 17 15 7 9 9 7 9 12 12 10-11150.6220.5182.1 + 92 1 18 12 12 12 7 5 4 2 2 7-11147.0220.8182.0 + 92 1 19 5 9 7 7 6 6 4 3 6-11155.0220.5181.7 + 92 1 20 12 18 15 15 15 22 7 9 14-11162.9220.0181.5 + 92 1 21 6 2 4 2 9 7 6 22 7-11168.7219.5181.2 + 92 1 22 18 6 4 9 12 7 3 0 7-11167.6218.8180.8 + 92 1 23 3 6 6 3 4 4 5 2 4-11167.6217.8180.4 + 92 1 24 4 2 4 4 3 4 3 7 4-11172.9217.0180.1 + 92 1 25 12 7 3 4 5 2 0 3 5-11195.9216.3179.7 + 92 1 26 0 2 2 3 9 15 12 12 7-11202.7215.4179.4 + 92 1 27 48 48 12 12 6 9 18 27 23-11214.0215.0179.1 + 92 1 28 27 27 7 7 15 9 9 12 14-11230.6214.9178.7 + 92 1 29 18 18 12 7 15 9 15 22 15-11258.3214.7178.4 + 92 1 30 27 32 18 15 15 22 22 22 22-11272.0214.4178.1 + 92 1 31 22 18 22 12 12 9 15 7 15-11293.5214.1177.7 + 92 2 1 7 12 18 18 27 32 22 94 29-11275.5213.4177.4 + 92 2 2 80 67 27 48 32 22 94 80 56-11280.1212.8177.2 + 92 2 3111132179 56 39 39 67111 92-11263.2212.0177.0 + 92 2 4 18 56 22 9 9 12 48 39 27-11244.4211.0176.9 + 92 2 5 15 4 6 9 9 5 3 4 7-11239.4209.8176.8 + 92 2 6 4 5 6 6 15 7 5 7 7-11232.1208.8176.7 + 92 2 7 12 15 12 39 32 18 4 5 17-11234.0207.5176.7 + 92 2 8 18 22 39 12111132 27 32 49-11218.9206.5176.6 + 92 2 9132 94 94 94 94 48 39 39 79-11229.3205.3176.6 + 92 2 10 22 32 15 18 39 48 15 9 25-11234.5204.5176.6 + 92 2 11 9 5 6 6 6 9 7 7 7-11218.4203.5176.6 + 92 2 12 15 15 9 7 12 12 3 12 11-11204.9202.4176.5 + 92 2 13 12 18 22 15 5 3 3 5 10-11193.0201.2176.4 + 92 2 14 5 6 9 9 12 15 9 12 10-11198.7200.2176.1 + 92 2 15 2 6 5 4 7 4 2 3 4-11197.9199.3175.7 + 92 2 16 4 5 5 2 5 4 4 5 4-11195.2198.4175.4 + 92 2 17 6 9 15 27 39 12 7 9 16-11201.7197.6174.9 + 92 2 18 22 22 12 18 9 15 6 7 14-11201.6196.9174.5 + 92 2 19 15 12 9 15 15 12 9 15 13-11191.2196.0174.1 + 92 2 20 39 56 32 67 67 56132 56 63-11199.0195.6173.7 + 92 2 21 67132154111 48 15 15 12 69-11212.3195.4173.3 + 92 2 22 39 32 56 18 18 12 18 22 27-11229.5195.1172.8 + 92 2 23 18 22 15 5 7 9 12 39 16-11244.0194.9172.5 + 92 2 24 12 12 22 18 18 27 32 80 28-11250.1194.7172.1 + 92 2 25111 94 67 39 32 27 32 39 55-11248.3194.5171.8 + 92 2 26 18 18 22 22 27 94207111 65-11248.0194.4171.5 + 92 2 27 94 39 80 94 39 56 67 15 61-11239.5194.3171.2 + 92 2 28 9 6 7 6 7 4 6 12 7-11228.8194.3170.9 + 92 2 29 9 9 7 67 67111 56 27 44-11213.9194.1170.6 + 92 3 1 15 27 39 15 6 9 9 9 16-11196.8193.9170.4 + 92 3 2 9 18 15 15 12 9 15 6 12-11178.3193.6170.2 + 92 3 3 9 18 9 7 6 18 15 6 11-11160.3193.3169.9 + 92 3 4 7 7 9 9 12 27 22 12 13-11157.1193.0169.8 + 92 3 5 7 15 15 9 7 18 15 12 12-11152.4192.8169.6 + 92 3 6 18 6 22 3 4 3 5 5 8-11153.1192.2169.4 + 92 3 7 6 4 6 7 7 18 9 22 10-11157.2191.7169.3 + 92 3 8 12 22 9 7 18 7 7 9 11-11179.4191.4169.2 + 92 3 9 18 12 15 56 22 32 39 9 25-11169.4191.0169.0 + 92 3 10 12 22 12 18 15 15 18 22 17-11167.0190.4168.8 + 92 3 11 18 22 18 39 22 22 15 6 20-11163.1189.6168.6 + 92 3 12 7 18 18 18 15 12 5 5 12-11161.7188.4168.5 + 92 3 13 4 12 12 7 5 4 3 0 6-11163.3187.3168.3 + 92 3 14 4 4 6 4 4 3 3 5 4-11162.9186.0168.1 + 92 3 15 4 5 15 18 7 12 7 6 9-11167.2184.8168.0 + 92 3 16 5 5 15 15 18 15 15 18 13-11159.7183.7167.8 + 92 3 17 12 9 6 39 39 32 39 22 25-11157.6182.5167.6 + 92 3 18 32 22 27 15 15 12 6 5 17-11159.0181.3167.5 + 92 3 19 4 2 3 2 4 7 4 4 4-11166.1180.1167.3 + 92 3 20 3 3 6 3 3 4 7 4 4-11167.2179.0167.2 + 92 3 21 6 7 15 32 48 27 22 27 23-11166.4177.8167.0 + 92 3 22 39 27 15 12 12 7 12 15 17-11159.7176.5166.8 + 92 3 23 27 48 27 22 22 12 32 18 26-11165.3175.5166.6 + 92 3 24 15 22 15 18 12 32 27 39 23-11174.7174.6166.4 + 92 3 25 27 32 15 15 12 12 12 6 16-11185.1173.9166.2 + 92 3 26 6 15 7 15 12 9 22 12 12-11177.9173.1166.0 + 92 3 27 12 7 6 5 9 7 22 22 11-11180.0172.3165.8 + 92 3 28 15 9 7 9 9 9 7 15 10-11185.4171.5165.6 + 92 3 29 15 22 18 15 12 22 22 15 18-11192.4170.8165.5 + 92 3 30 12 22 7 7 12 7 15 12 12-11182.1169.9165.3 + 92 3 31 27 9 4 9 7 22 22 15 14-11191.2169.1165.0 + 92 4 1 9 18 27 18 12 7 5 9 13-11185.9168.3164.8 + 92 4 2 5 6 5 5 4 7 15 5 7-11161.2167.2164.5 + 92 4 3 3 12 32 32 56 80 22 15 32-11159.8166.0164.3 + 92 4 4 7 9 9 22 22 9 15 6 12-11154.0164.6164.0 + 92 4 5 15 7 12 22 18 9 12 27 15-11154.7163.0163.8 + 92 4 6 22 48 67 18 9 18 6 6 24-11143.0161.4163.7 + 92 4 7 12 27 39 22 18 15 15 6 19-11141.8159.8163.6 + 92 4 8 18 22 18 22 27 12 39 5 20-11151.6158.3163.4 + 92 4 9 6 9 5 4 5 6 4 9 6-11140.2157.1163.3 + 92 4 10 7 7 5 3 5 4 3 3 5-11141.2156.2163.1 + 92 4 11 6 4 3 2 3 3 2 3 3-11144.0155.6162.9 + 92 4 12 2 6 4 4 5 5 3 3 4-11144.7155.2162.7 + 92 4 13 5 7 9 9 9 3 5 5 7-11147.1155.0162.5 + 92 4 14 5 6 6 3 4 6 12 9 6-11155.2154.8162.3 + 92 4 15 18 12 6 9 7 12 6 7 10-11150.3154.5162.1 + 92 4 16 5 5 4 3 6 7 3 4 5-11158.9154.1161.9 + 92 4 17 3 3 2 2 2 9 3 9 4-11185.6153.6161.7 + 92 4 18 7 9 18 18 56 12 7 27 19-11204.8152.8161.6 + 92 4 19 22 18 15 7 15 15 22 22 17-11207.7152.0161.4 + 92 4 20 27 22 18 12 18 22 12 15 18-11206.5151.2161.4 + 92 4 21 15 18 6 5 9 6 5 4 9-11197.1150.5161.3 + 92 4 22 15 15 12 12 9 9 12 15 12-11184.8149.7161.1 + 92 4 23 9 5 4 2 7 12 9 18 8-11174.7149.0161.0 + 92 4 24 18 18 7 12 9 15 12 12 13-11162.9148.4160.8 + 92 4 25 15 15 12 7 12 6 5 12 11-11155.7147.7160.5 + 92 4 26 7 6 7 6 5 3 22 6 8-11145.0147.2160.3 + 92 4 27 9 3 6 0 5 7 7 5 5-11139.1146.7160.1 + 92 4 28 7 7 7 18 22 4 7 6 10-11130.4146.2159.8 + 92 4 29 9 12 6 4 3 5 9 7 7-11132.5145.7159.5 + 92 4 30 15 12 9 18 12 5 3 6 10-11129.9145.1159.3 + 92 5 1 5 9 15 5 7 15 48 15 15-11133.0144.6159.3 + 92 5 2 12 27 32 5 5 5 7 6 12-11138.0144.3159.1 + 92 5 3 7 7 6 5 15 9 15 7 9-11127.8143.9158.9 + 92 5 4 15 27 6 12 12 15 4 7 12-11137.0143.3158.7 + 92 5 5 5 9 4 5 6 4 4 5 5-11135.4142.6158.6 + 92 5 6 3 2 4 5 4 4 7 12 5-11133.0141.9158.5 + 92 5 7 7 12 7 5 15 15 22 22 13-11131.5141.2158.4 + 92 5 8 15 18 32 32 48 39 32 18 29-11145.3140.6158.2 + 92 5 9 22 12 5 9 22 48111 80 39-11129.2139.7158.1 + 92 5 10 56 94207300236179207154179-11126.9138.9157.9 + 92 5 11154111 80 48 48 48 48 22 70-11128.8138.0157.7 + 92 5 12 18 12 6 9 9 12 15 7 11-11127.8137.2157.6 + 92 5 13 12 27 18 27 48 15 9 15 21-11128.2136.7157.4 + 92 5 14 7 7 3 4 4 3 2 4 4-11129.3136.3157.3 + 92 5 15 3 5 4 7 4 9 5 3 5-11124.8135.9157.1 + 92 5 16 4 4 3 5 6 5 4 3 4-11118.5135.5157.0 + 92 5 17 3 3 3 3 2 3 5 5 3-11115.5135.2156.9 + 92 5 18 12 6 4 4 7 9 27 56 16-11120.2134.8156.8 + 92 5 19 32 15 5 5 6 18 22 7 14-11134.5134.4156.8 + 92 5 20 15 5 4 5 9 6 9 12 8-11140.3134.0156.8 + 92 5 21 7 4 6 6 5 7 9 18 8-11145.5133.9156.8 + 92 5 22 7 48 48 39 94 80 67 18 50-11148.4133.7156.8 + 92 5 23 9 7 7 5 9 22 48 9 15-11145.6133.7156.9 + 92 5 24 18 12 9 5 5 5 4 9 8-11136.9133.6157.0 + 92 5 25 9 7 9 7 12 18 12 6 10-11126.1133.4157.1 + 92 5 26 4 3 5 6 9 5 12 18 8-11122.1133.5157.2 + 92 5 27 12 6 12 12 15 12 9 6 11-11117.7133.4157.3 + 92 5 28 7 6 18 18 15 9 9 22 13-11113.9133.1157.3 + 92 5 29 12 12 22 9 22 39 22 15 19-11108.1132.5157.3 + 92 5 30 12 15 15 12 18 22 12 9 14-11101.7132.0157.3 + 92 5 31 12 15 6 4 4 12 7 5 8-11101.8131.6157.2 + 92 6 1 12 15 12 5 7 5 3 3 8-11101.4131.3157.1 + 92 6 2 4 3 5 5 3 5 5 9 5-11105.0131.2157.0 + 92 6 3 4 4 4 4 9 15 5 3 6-11110.1131.3156.9 + 92 6 4 4 2 2 4 3 4 6 6 4-11111.5131.5156.7 + 92 6 5 5 3 4 7 9 9 6 4 6-11118.4131.7156.5 + 92 6 6 2 2 5 6 7 7 5 3 5-11123.2132.0156.3 + 92 6 7 4 5 6 6 4 7 22 39 12-11119.2132.0156.0 + 92 6 8 80 32 48 18 48 67 39 39 46-11118.7132.0155.7 + 92 6 9 39 9 22 18 15 7 12 12 17-11122.3131.9155.4 + 92 6 10 6 22 39 39 22 9 15 7 20-11129.3131.8155.1 + 92 6 11 12 22 6 15 15 18 56 67 26-11133.1131.6154.8 + 92 6 12 56 9 27 15 94 94 15 12 40-11130.6131.2154.6 + 92 6 13 12 15 7 6 15 7 18 18 12-11127.5130.9154.4 + 92 6 14 9 5 6 6 6 5 5 9 6-11127.2130.4154.2 + 92 6 15 12 7 6 3 12 18 15 6 10-11124.7130.0154.1 + 92 6 16 5 7 5 4 4 3 4 2 4-11122.9129.7153.9 + 92 6 17 3 4 5 3 9 9 5 4 5-11134.4129.3153.7 + 92 6 18 5 5 4 5 18 32 94 56 27-11119.8128.8153.6 + 92 6 19 15 6 6 6 7 18 27 7 12-11119.1128.4153.5 + 92 6 20 4 9 5 5 15 7 4 9 7-11116.8128.1153.4 + 92 6 21 27 6 5 3 5 9 5 9 9-11121.3127.8153.3 + 92 6 22 18 22 5 6 9 5 3 9 10-11120.0127.6153.1 + 92 6 23 15 22 9 5 9 9 18 18 13-11125.5127.6152.8 + 92 6 24 18 39 22 18 15 27 22 15 22-11121.8127.7152.6 + 92 6 25 18 12 12 9 15 18 18 12 14-11127.4127.8152.3 + 92 6 26 6 6 18 5 5 7 7 9 8-11115.3128.0152.0 + 92 6 27 9 5 5 12 7 9 27 15 11-11113.1128.3151.6 + 92 6 28 7 12 32 22 15 12 6 15 15-11112.0128.6151.3 + 92 6 29 27 80 27 12 32 32 48 48 38-11114.4128.8150.9 + 92 6 30 80111 39 15 9 15 6 18 37-11127.0128.8150.5 + 92 7 1 18 15 9 7 18 27 32 27 19-11134.1128.7150.2 + 92 7 2 12 39 32 15 9 6 4 12 16-11141.2128.5149.9 + 92 7 3 7 6 6 4 7 5 4 4 5-11141.1128.4149.5 + 92 7 4 2 5 4 4 3 5 5 7 4-11141.3128.3149.1 + 92 7 5 7 18 6 9 9 5 6 9 9-11150.6128.4148.7 + 92 7 6 7 7 5 5 6 5 4 3 5-11155.4128.5148.3 + 92 7 7 2 3 3 3 5 5 5 4 4-11159.9128.8148.0 + 92 7 8 4 4 3 4 9 9 5 4 5-11156.6129.1147.6 + 92 7 9 5 5 3 4 3 5 3 5 4-11165.0129.4147.3 + 92 7 10 5 7 5 3 4 5 12 4 6-11175.7129.8147.0 + 92 7 11 4 3 3 4 5 3 3 4 4-11173.9130.5146.7 + 92 7 12 12 12 12 15 22 18 15 15 15-11177.8130.9146.5 + 92 7 13 7 22 32 27 27 22 18 32 23-11181.4131.1146.3 + 92 7 14 18 15 12 12 12 9 15 6 12-11181.3131.1146.2 + 92 7 15 12 9 6 5 4 5 5 3 6-11173.3131.0146.1 + 92 7 16 4 5 7 15 18 15 18 12 12-11162.8130.8146.0 + 92 7 17 12 4 2 5 7 6 4 2 5-11140.4130.5145.9 + 92 7 18 6 6 5 4 5 4 4 3 5-11130.2130.2145.9 + 92 7 19 6 3 3 2 2 4 5 6 4-11122.3129.9145.8 + 92 7 20 6 6 3 4 9 15 12 9 8-11127.5129.6145.7 + 92 7 21 3 5 6 7 22 18 22 6 11-11111.8129.2145.6 + 92 7 22 9 18 39 48 67 22 48 18 34-11107.7128.8145.4 + 92 7 23 22 27 15 15 7 9 22 12 16-11101.9128.4145.2 + 92 7 24 9 6 4 6 9 9 6 6 7-11103.2128.2145.0 + 92 7 25 6 4 5 7 18 22 18 6 11-11101.5127.9144.8 + 92 7 26 5 4 3 5 4 4 4 3 4-11104.3127.7144.6 + 92 7 27 3 3 5 6 4 5 9 22 7-11103.4127.7144.3 + 92 7 28 22 48 18 9 12 9 7 12 17-11 98.5127.8144.0 + 92 7 29 4 5 5 4 5 5 4 5 5-11101.1127.9143.7 + 92 7 30 12 4 6 7 9 9 15 12 9-11 99.9128.1143.3 + 92 7 31 7 5 7 9 6 15 9 22 10-11106.3128.1142.8 + 92 8 1 18 12 6 7 7 6 5 7 9-11113.6128.1142.3 + 92 8 2 5 4 4 4 3 5 6 6 5-11128.2128.1141.9 + 92 8 3 3 3 4 3 5 5 6 4 4-11135.1128.0141.4 + 92 8 4 9 5 3 5 18 22 39 18 15-11134.7128.1141.1 + 92 8 5 67 67 48 27 32 9 15 12 35-11134.3128.0140.8 + 92 8 6 5 27 12 22 22 15 12 12 16-11141.9128.1140.5 + 92 8 7 18 15 27 56 48 18 15 7 26-11145.4128.3140.3 + 92 8 8 9 18 22 22 15 15 18 12 16-11147.5128.4140.1 + 92 8 9 18 6 9 18 12 15 12 5 12-11141.4128.4140.0 + 92 8 10 9 5 5 7 9 5 7 7 7-11136.3128.3139.9 + 92 8 11 9 9 18 9 9 18 12 22 13-11133.9127.9139.7 + 92 8 12 9 9 9 7 5 4 2 3 6-11131.7127.6139.6 + 92 8 13 2 3 4 4 15 32 9 18 11-11132.3127.2139.5 + 92 8 14 18 12 6 7 18 48 6 3 15-11132.0126.8139.4 + 92 8 15 7 5 12 5 4 4 15 12 8-11133.8126.4139.2 + 92 8 16 6 7 15 12 7 6 5 7 8-11140.0125.9139.0 + 92 8 17 6 6 2 2 4 3 4 5 4-11137.1125.4138.8 + 92 8 18 5 7 5 7 6 6 6 6 6-11132.7124.9138.7 + 92 8 19 4 5 6 3 9 12 15 15 9-11138.0124.3138.4 + 92 8 20 22 80 22 39 27 7 6 5 26-11159.1123.6138.2 + 92 8 21 6 7 5 12 18 56 48 6 20-11127.8122.9138.0 + 92 8 22 5 9 18 18 39 56 56111 39-11124.4122.2137.8 + 92 8 23179207 94 15 32 9 27 22 73-11113.2121.4137.5 + 92 8 24 9 9 6 7 4 9 18 18 10-11104.0120.7137.2 + 92 8 25 5 5 3 4 7 4 5 7 5-11100.1120.1136.8 + 92 8 26 18 9 22 7 9 7 7 7 11-11 94.4119.7136.5 + 92 8 27 9 12 7 15 27 9 22 7 14-11 95.8119.6136.2 + 92 8 28 7 9 3 3 4 4 5 7 5-11 97.6119.7135.9 + 92 8 29 39 32 12 15 7 4 7 9 16-11 97.1119.7135.6 + 92 8 30 4 4 5 5 15 4 7 4 6-11 96.6119.7135.3 + 92 8 31 4 7 3 4 3 6 5 3 4-11 99.0119.7135.1 + 92 9 1 4 3 2 0 3 3 2 2 2-11101.6119.7135.0 + 92 9 2 5 6 6 27 39 48 27 27 23-11106.3119.8135.0 + 92 9 3 18 48 67 56 39 67 56 32 48-11108.9119.8135.0 + 92 9 4 32 22 48 32 22 15 15 80 33-11106.4119.9135.0 + 92 9 5 56 39 32 22 15 12 27 18 28-11121.2119.8135.1 + 92 9 6 18 22 15 6 9 15 32 18 17-11141.3119.7135.0 + 92 9 7 22 18 18 32 27 18 27 12 22-11133.6119.8134.9 + 92 9 8 22 22 39 9 15 15 15 9 18-11130.8119.9134.9 + 92 9 9 56111 80154111 48 67 48 84-11118.5120.2134.8 + 92 9 10 67 94 94 67 56132111 80 88-11118.4120.6134.8 + 92 9 11 94 32 32 18 15 39 18 12 33-11120.1120.9134.8 + 92 9 12 9 7 4 2 3 3 5 6 5-11118.7121.1134.7 + 92 9 13 5 5 4 4 3 3 7 6 5-11128.8121.2134.6 + 92 9 14 5 9 7 6 5 7 9 12 8-11123.1121.3134.5 + 92 9 15 12 18 12 7 7 12 7 5 10-11121.5121.6134.4 + 92 9 16 6 9 15 7 12 12 22 12 12-11127.9122.0134.3 + 92 9 17 67111154111 56 48132 67 93-11120.6122.2134.2 + 92 9 18 32 48 27 39 32 15 32 22 31-11118.5122.6134.1 + 92 9 19 18 18 7 15 12 9 22 5 13-11113.4122.8134.0 + 92 9 20 6 7 9 9 9 4 12 12 9-11107.1123.9133.9 + 92 9 21 4 5 6 4 3 5 6 22 7-11110.4124.1133.8 + 92 9 22 32 48 7 6 6 5 15 15 17-11112.3124.2133.7 + 92 9 23 12 18 12 7 6 5 7 4 9-11112.6124.3133.5 + 92 9 24 2 2 2 3 2 3 5 9 4-11112.6124.3133.4 + 92 9 25 15 5 6 12 12 7 18 12 11-11116.5124.4133.2 + 92 9 26 18 9 5 3 4 18 6 2 8-11117.3124.3133.0 + 92 9 27 3 4 4 4 6 3 4 3 4-11121.6124.2132.9 + 92 9 28 2 5 6 6 12 18 39 39 16-11116.6124.2132.7 + 92 9 29 27111111 67 56 48 48 27 62-11117.7124.1132.5 + 92 9 30 39 27 27 15 27 67 48 27 35-11116.2123.8132.4 + 92 10 1 27 56 32 18 18 18 32 7 26-11118.2123.9132.2 + 92 10 2 22 15 7 7 6 7 5 6 9-11119.5123.9132.1 + 92 10 3 3 5 6 7 5 4 9 5 6-11120.2124.1132.0 + 92 10 4 12 22 9 4 4 2 3 3 7-11126.1124.3131.9 + 92 10 5 4 7 5 2 4 7 6 5 5-11130.1124.6131.8 + 92 10 6 22 15 5 7 12 7 4 4 10-11137.3125.0131.7 + 92 10 7 6 15 9 9 7 6 9 4 8-11135.8125.4131.7 + 92 10 8 18 9 3 2 0 4 18 12 8-11125.4126.1131.7 + 92 10 9 12 9 9 56 27 56 27 15 26-11121.0126.8131.7 + 92 10 10 4 6 15 18 12 5 5 15 10-11112.1127.6131.7 + 92 10 11 12 7 5 18 48 39 39 22 24-11110.0128.3131.6 + 92 10 12 15 27 48 32 94 32 15 9 34-11106.5129.0131.5 + 92 10 13 18 15 9 5 15 27 67 27 23-11108.2129.6131.3 + 92 10 14 18 22 18 18 12 9 39 67 25-11104.9130.4131.2 + 92 10 15 48 48 32 39 32 22 32 27 35-11 97.8131.2131.0 + 92 10 16 48 32 22 18 12 15 9 22 22-11 99.9131.7130.8 + 92 10 17 15 12 12 18 22 18 22 9 16-11105.8131.9130.6 + 92 10 18 12 5 5 4 18 9 12 27 12-11111.4132.2130.3 + 92 10 19 27 12 7 15 18 22 15 12 16-11123.4132.3130.0 + 92 10 20 32 27 6 9 6 4 5 5 12-11131.9132.5129.8 + 92 10 21 4 6 6 4 5 6 6 12 6-11139.2132.8129.6 + 92 10 22 18 7 3 4 15 15 5 6 9-11149.2132.8129.4 + 92 10 23 6 6 5 5 5 3 5 5 5-11140.3132.9129.3 + 92 10 24 4 4 2 2 2 3 0 6 3-11145.1132.8129.2 + 92 10 25 15 6 5 7 6 4 6 6 7-11159.4132.8129.1 + 92 10 26 18 15 12 7 6 7 27 18 14-11167.9132.6129.1 + 92 10 27 48 27 18 39 39 48 18 12 31-11168.9132.5129.0 + 92 10 28 32 15 18 27 9 18 12 18 19-11172.3132.4129.0 + 92 10 29 32 22 32 22 18 27 39 22 27-11161.6132.5128.9 + 92 10 30 15 15 15 12 22 22 9 15 16-11225.8132.7128.8 + 92 10 31 9 7 15 12 15 9 6 5 10-11147.3133.1128.7 + 92 11 1 7 4 6 5 6 15 9 80 17-11144.8133.7128.7 + 92 11 2 39 56 22 18 12 5 18 15 23-11138.8134.3128.6 + 92 11 3 22 22 32 27 7 4 9 12 17-11132.9135.0128.5 + 92 11 4 9 15 15 27 32 48 15 39 25-11140.4135.6128.5 + 92 11 5 32 9 15 18 18 9 9 7 15-11133.6136.0128.5 + 92 11 6 15 9 15 7 22 22 9 12 14-11130.5136.4128.5 + 92 11 7 15 7 15 12 7 15 7 18 12-11132.4136.7128.4 + 92 11 8 18 7 7 5 7 7 15 22 11-11129.7137.0128.4 + 92 11 9 12 27 94 80 48 32 15 32 43-11129.9137.3128.5 + 92 11 10 15 12 9 15 7 18 9 15 13-11133.7137.7128.5 + 92 11 11 22 27 22 22 18 18 12 9 19-11132.0137.9128.5 + 92 11 12 15 18 12 18 15 12 15 27 17-11124.7138.2128.5 + 92 11 13 15 9 9 27 32 15 15 12 17-11122.2138.4128.4 + 92 11 14 12 9 9 15 18 12 12 9 12-11123.4138.5128.4 + 92 11 15 15 9 6 6 27 32 18 39 19-11124.1138.5128.3 + 92 11 16 22 9 7 6 5 5 15 15 11-11133.7138.4128.3 + 92 11 17 9 18 7 5 6 5 7 7 8-11148.9138.2128.2 + 92 11 18 12 4 3 5 4 9 15 3 7-11158.2138.2128.1 + 92 11 19 3 7 7 12 15 5 4 3 7-11157.1138.2128.0 + 92 11 20 3 2 3 4 3 2 6 9 4-11155.0138.3127.8 + 92 11 21 22 18 6 2 2 2 3 4 7-11158.5138.5127.7 + 92 11 22 3 7 12 22 27 18 22 27 17-11162.0138.6127.5 + 92 11 23 39 67 32 18 18 39 15 18 31-11171.7138.7127.4 + 92 11 24 6 5 12 12 15 12 18 12 12-11169.4138.9127.4 + 92 11 25 12 7 7 22 22 7 7 15 12-11162.4139.2127.4 + 92 11 26 15 22 6 9 7 5 7 6 10-11158.2139.4127.4 + 92 11 27 5 5 6 4 9 6 2 5 5-11152.6139.7127.4 + 92 11 28 5 7 5 7 4 5 6 9 6-11144.7139.9127.5 + 92 11 29 5 4 6 5 9 6 4 2 5-11136.0139.9127.6 + 92 11 30 2 2 5 9 15 22 39 12 13-11135.9139.8127.7 + 92 12 1 27 12 22 18 15 18 7 18 17-11127.1139.7127.8 + 92 12 2 18 15 5 7 7 6 7 6 9-11126.0139.4127.9 + 92 12 3 18 18 6 18 12 22 12 15 15-11121.3139.4128.0 + 92 12 4 15 27 12 7 15 12 12 18 15-11115.9139.3128.1 + 92 12 5 22 12 7 4 4 5 2 2 7-11112.4138.9128.1 + 92 12 6 4 0 2 3 6 15 6 3 5-11115.9138.3128.1 + 92 12 7 2 5 15 9 32 4 9 48 16-11116.1137.8128.1 + 92 12 8 39 18 22 22 22 22 27 39 26-11124.8137.2128.1 + 92 12 9 18 15 15 15 32 27 12 15 19-11129.6136.7128.1 + 92 12 10 9 9 12 18 7 39 22 18 17-11137.5135.3128.1 + 92 12 11 18 9 6 6 7 9 9 12 10-11159.0134.8128.0 + 92 12 12 9 6 3 4 15 7 12 9 8-11163.1134.2127.9 + 92 12 13 15 15 6 6 7 7 5 6 8-11167.6133.8127.8 + 92 12 14 18 9 3 4 5 12 18 15 11-11161.8133.4127.7 + 92 12 15 27 15 7 9 9 12 12 22 14-11150.4132.9127.6 + 92 12 16 6 15 7 6 6 4 2 5 6-11145.8132.5127.5 + 92 12 17 2 4 18 12 27 67 56 15 25-11145.5132.2127.3 + 92 12 18 9 5 4 7 5 9 18 12 9-11144.9131.9127.2 + 92 12 19 6 3 5 6 12 7 27 22 11-11142.2131.6127.2 + 92 12 20 7 15 22 12 12 15 15 7 13-11143.2131.4127.1 + 92 12 21 4 7 9 15 9 27 27 18 15-11140.8131.1127.0 + 92 12 22 9 5 7 7 9 9 9 4 7-11137.6130.9127.0 + 92 12 23 5 12 9 7 15 7 7 3 8-11139.3130.9126.9 + 92 12 24 4 9 7 9 7 9 18 4 8-11132.0130.9126.9 + 92 12 25 2 2 3 4 5 7 7 7 5-11132.0131.0126.9 + 92 12 26 5 3 5 5 4 4 5 5 5-11127.2131.2127.0 + 92 12 27 3 2 3 2 2 2 12 39 8-11121.2131.5127.0 + 92 12 28 15 7 15 7 48 56 67 94 39-11123.4131.9127.1 + 92 12 29 67 67 48 27 32 56 22 15 42-11121.3132.0127.1 + 92 12 30 12 12 9 15 15 7 5 5 10-11121.9132.4127.1 + 92 12 31 15 9 12 9 18 15 5 4 11-11125.8132.7127.0 + 93 1 1 7 18 15 7 7 7 7 15 10-11118.3132.9126.9 + 93 1 2 18 18 18 39 27 27 27 22 25-11117.4133.0126.9 + 93 1 3 56 48 27 32 18 32 27 22 33-11120.6132.6126.8 + 93 1 4 56 18 22 32 39 22 27 32 31-11117.1132.2126.6 + 93 1 5 18 22 15 22 18 9 15 15 17-11120.8131.9126.5 + 93 1 6 18 22 15 12 15 15 18 15 16-11125.8131.5126.3 + 93 1 7 12 22 9 27 12 27 39 39 23-11126.3131.3126.2 + 93 1 8 18 12 7 7 9 22 22 22 15-11128.6131.0126.0 + 93 1 9 27 12 18 9 18 18 12 12 16-11124.5130.8125.7 + 93 1 10 18 27 80 27 27 15 4 4 25-11127.7130.6125.5 + 93 1 11 7 9 5 18 56 27 22 27 21-11127.4130.5125.2 + 93 1 12 27 18 12 7 7 15 9 5 13-11135.6130.4125.0 + 93 1 13 7 5 5 7 12 18 7 39 13-11136.6130.5124.7 + 93 1 14 22 39 12 18 22 18 18 27 22-11128.8130.7124.5 + 93 1 15 18 15 7 12 9 15 12 22 14-11121.9130.9124.4 + 93 1 16 12 22 7 4 7 12 9 15 11-11129.1131.0124.3 + 93 1 17 22 15 27 15 9 6 6 5 13-11121.9131.1124.2 + 93 1 18 7 12 5 7 7 12 12 27 11-11117.7131.1124.1 + 93 1 19 27 18 12 22 9 12 39 39 22-11112.7131.0124.1 + 93 1 20 22 6 18 15 22 18 4 3 14-11106.5130.9124.1 + 93 1 21 9 18 5 6 6 5 3 3 7-11103.3130.7124.1 + 93 1 22 3 6 5 4 4 5 12 15 7-11101.0130.5124.1 + 93 1 23 9 3 2 0 4 2 4 6 4-11102.7130.5124.1 + 93 1 24 4 9 9 18 7 9 18 5 10-11101.6130.5124.1 + 93 1 25 3 3 6 15 56 27 56 32 25-11102.6130.6124.1 + 93 1 26 48 22 22 18 18 18 18 9 22-11103.3130.7124.2 + 93 1 27 7 15 15 12 9 15 9 7 11-11107.6130.7124.2 + 93 1 28 5 18 7 7 6 4 4 3 7-11108.6130.6124.2 + 93 1 29 3 4 5 5 4 4 5 9 5-11110.7130.7124.2 + 93 1 30 18 22 9 7 9 7 9 18 12-11109.6130.7124.2 + 93 1 31 32 56 80 67 48 39 67 80 59-11115.6131.0124.1 + 93 2 1 48 27 39 27 18 48 18 22 31-11121.5131.0124.1 + 93 2 2 32 39 15 12 12 22 27 7 21-11124.7130.9124.0 + 93 2 3 5 12 6 5 4 5 18 22 10-11133.0130.9123.9 + 93 2 4 15 7 4 4 5 9 7 7 7-11143.2130.8123.8 + 93 2 5 5 4 9 5 3 6 6 9 6-11155.6130.7123.6 + 93 2 6 3 9 5 4 4 3 9 5 5-11178.8130.8123.5 + 93 2 7 5 27 32 27 9 22 56 39 27-11171.2130.9123.4 + 93 2 8 56 56 32 27 18 56 39 39 40-11183.4131.0123.2 + 93 2 9 22 39 18 39 27 32 27 18 28-11180.3131.1123.2 + 93 2 10 9 7 15 9 18 18 48 9 17-11175.0131.1123.1 + 93 2 11 27 18 15 12 15 18 18 39 20-11168.8131.1123.0 + 93 2 12 22 15 9 12 7 6 5 15 11-11144.9131.0122.9 + 93 2 13 27 12 6 7 12 7 7 15 12-11131.7131.0122.8 + 93 2 14 7 15 4 6 5 3 7 4 6-11137.9131.0122.7 + 93 2 15 3 5 3 6 7 4 4 3 4-11131.6131.0122.6 + 93 2 16 3 6 9 9 7 4 3 3 6-11130.5131.0122.5 + 93 2 17 7 27 22 39111 67 9 5 36-11121.4131.0122.4 + 93 2 18 4 4 6 15 22 15 18 22 13-11123.2131.0122.2 + 93 2 19 15 4 12 6 5 4 7 4 7-11113.4131.0122.1 + 93 2 20 15 27 39 32 22 12 15 48 26-11120.6131.0122.0 + 93 2 21 9 15 22 27 27 48 39 27 27-11120.3130.9121.9 + 93 2 22 18 22 80 32 27 22 18 22 30-11130.3130.7121.8 + 93 2 23 12 15 5 7 7 12 6 4 9-11129.6130.4121.8 + 93 2 24 7 12 6 7 7 4 2 5 6-11132.7130.3121.8 + 93 2 25 4 12 7 5 7 7 4 3 6-11125.5130.4121.8 + 93 2 26 3 5 6 4 6 7 4 5 5-11123.8130.4121.8 + 93 2 27 3 3 3 3 4 2 3 15 5-11121.6130.7121.7 + 93 2 28 22 22 22 22 32 18 7 5 19-11121.4130.9121.7 + 93 3 1 7 7 15 22 39 22 15 18 18-11129.6131.3121.7 + 93 3 2 6 18 39 18 15 27 32 39 24-11141.0131.4121.7 + 93 3 3 32 32 27 22 27 39 67 32 35-11148.6131.4121.6 + 93 3 4 67 48 22 12 5 15 12 5 23-11163.8131.4121.6 + 93 3 5 18 7 9 6 4 3 3 7 7-11162.5131.3121.5 + 93 3 6 5 3 7 12 7 7 15 7 8-11164.0131.1121.4 + 93 3 7 22 48 32 6 6 7 32 27 23-11150.9131.0121.3 + 93 3 8 18 18 18 7 18 39 22 94 29-11144.3130.9121.2 + 93 3 9111111 94 67 39 32 18 39 64-11140.6130.9121.0 + 93 3 10 48 18 7 5 18 7 4 12 15-11146.7130.9120.9 + 93 3 11 12 5 15 39 67111 80 67 50-11148.0131.0120.8 + 93 3 12 67 18 15 15 12 27 48 22 28-11158.7131.2120.7 + 93 3 13 39 48 22 12 18 48 48 15 31-11139.9131.2120.5 + 93 3 14 12 12 18 27 27 27 27 32 23-11134.2131.2120.4 + 93 3 15 32 22 67 56 56 39 32 56 45-11129.7131.3120.3 + 93 3 16 32 48 56 39 12 67 48 9 39-11120.5131.2120.2 + 93 3 17 27 18 9 39 18 12 22 39 23-11122.4131.0120.1 + 93 3 18 48 22 22 18 15 6 7 9 18-11126.2130.5120.0 + 93 3 19 6 5 7 12 9 27 15 6 11-11133.4129.7119.9 + 93 3 20 9 27 22 39 27 22 12 9 21-11127.0129.0119.8 + 93 3 21 15 32 22 48 56 27 18 18 30-11129.7128.0119.7 + 93 3 22 22 18 27 32 18 32 27 27 25-11126.6127.1119.7 + 93 3 23 12 6 7 7 15 6 7 32 12-11120.1126.2119.6 + 93 3 24 27 80154 80 39 32 18 32 58-11114.4125.5119.5 + 93 3 25 18 15 18 18 12 22 15 6 16-11116.0125.1119.4 + 93 3 26 4 9 5 7 6 5 15 9 8-11116.4124.9119.3 + 93 3 27 15 7 9 5 15 18 7 22 12-11122.4124.7119.3 + 93 3 28 22 12 7 9 7 15 27 39 17-11125.8124.8119.3 + 93 3 29 32 48 32 6 3 4 3 15 18-11128.3124.8119.2 + 93 3 30 18 9 18 15 27 39 15 9 19-11128.7124.9119.2 + 93 3 31 27 7 6 3 7 9 7 12 10-11124.9125.1119.2 + 93 4 1 7 12 7 4 5 9 12 12 9-11123.5125.3119.2 + 93 4 2 4 5 6 5 3 3 4 5 4-11120.7125.4119.2 + 93 4 3 6 4 2 2 3 3 5 6 4-11117.0125.4119.2 + 93 4 4 6 6 4 5 48 80132179 58-11116.4125.3119.2 + 93 4 5 94154132 67 94 67 67 18 87-11118.9125.0119.2 + 93 4 6 7 9 7 12 15 15 9 39 14-11133.1124.6119.2 + 93 4 7 7 15 9 7 6 15 9 27 12-11130.0124.2119.2 + 93 4 8 9 15 27 27 32 32 48 15 26-11143.5123.9119.1 + 93 4 9 22 15 15 6 7 56 32 67 28-11136.0123.5119.1 + 93 4 10 32 22 27 9 15 15 15 12 18-11139.2123.2119.0 + 93 4 11 6 12 6 7 12 5 6 12 8-11119.4122.7119.0 + 93 4 12 32 56 12 6 5 3 6 6 16-11103.7122.1119.0 + 93 4 13 7 48 39 67 32 27 27 7 32-11 97.7121.5119.0 + 93 4 14 22 32 18 18 5 22 22 22 20-11 92.8120.7118.9 + 93 4 15 32 39 32 18 6 6 39 56 29-11 88.8120.0118.9 + 93 4 16 18 39 22 7 7 15 12 9 16-11 90.9119.3118.9 + 93 4 17 6 7 7 12 6 18 22 6 11-11 96.5119.0118.9 + 93 4 18 22 32 18 32 22 18 12 5 20-11106.6118.8118.8 + 93 4 19 12 6 5 12 9 15 7 7 9-11111.9118.7118.8 + 93 4 20 18 48 22 18 27 22 15 12 23-11119.9118.7118.7 + 93 4 21 32 27 39 22 18 67 32 27 33-11120.5118.6118.6 + 93 4 22 22 12 15 6 9 27 48 32 21-11118.4118.4118.4 + 93 4 23 9 9 5 9 4 12 27 18 12-11122.9118.4118.3 + 93 4 24 15 6 7 9 12 12 7 5 9-11130.3118.5118.1 + 93 4 25 9 12 18 9 6 5 9 12 10-11126.2118.5118.0 + 93 4 26 4 4 7 4 6 5 5 3 5-11125.0118.8117.8 + 93 4 27 3 3 4 3 5 5 3 6 4-11119.6118.9117.6 + 93 4 28 5 4 4 4 6 6 6 3 5-11115.2118.7117.3 + 93 4 29 3 4 4 6 15 15 22 27 12-11108.1118.5117.1 + 93 4 30 32 15 12 6 9 9 15 7 13-11107.4118.4116.9 + 93 5 1 15 18 5 9 6 2 2 2 7-11104.2118.2116.5 + 93 5 2 2 4 5 5 5 5 12 7 6-11104.7118.0116.4 + 93 5 3 9 5 7 9 15 7 3 5 8-11108.9117.7116.2 + 93 5 4 3 5 6 2 5 9 3 4 5-11112.4117.4116.1 + 93 5 5 4 6 7 5 15 3 2 4 6-11120.0117.0116.0 + 93 5 6 9 7 7 7 9 12 15 7 9-11122.2116.6115.9 + 93 5 7 4 12 7 7 18 18 27 48 18-11133.0116.1115.8 + 93 5 8 67 22 48 39 39 22 39 48 41-11131.2115.7115.7 + 93 5 9 56 80 48 27 32 27 56 56 48-11131.5115.2115.6 + 93 5 10 56 94 67 67 48 15 12 27 48-11136.8114.7115.4 + 93 5 11 5 6 5 3 4 3 4 6 5-11134.7114.3115.3 + 93 5 12 7 15 12 15 12 15 27 27 16-11129.0113.9115.2 + 93 5 13 27 9 2 2 3 6 22 12 10-11122.4113.7115.1 + 93 5 14 7 12 7 22 39 9 7 7 14-11114.6113.6115.0 + 93 5 15 9 6 9 9 15 15 32 12 13-11106.7113.7114.9 + 93 5 16 12 32 7 6 9 6 6 15 12-11101.1113.8114.8 + 93 5 17 15 27 7 6 9 9 48 27 19-11 98.4113.7114.8 + 93 5 18 3 4 4 5 7 6 7 22 7-11 93.5113.7114.7 + 93 5 19 6 9 12 7 15 12 18 6 11-11 93.1113.5114.5 + 93 5 20 5 9 18 6 7 6 5 2 7-11 93.4113.4114.4 + 93 5 21 4 2 2 3 2 3 4 3 3-11 93.3113.2114.2 + 93 5 22 3 5 3 5 4 5 5 2 4-11 94.1113.1114.0 + 93 5 23 2 2 2 2 5 2 3 0 2-11 97.3113.2113.9 + 93 5 24 3 3 5 4 2 2 2 2 3-11100.9113.4113.7 + 93 5 25 3 3 0 0 2 2 2 2 2-11102.4113.6113.5 + 93 5 26 2 3 3 3 3 4 4 9 4-11110.4113.8113.3 + 93 5 27 9 27 27 18 18 7 18 18 18-11122.7113.9113.1 + 93 5 28 18 32 12 22 15 32 32 22 23-11129.2113.9112.9 + 93 5 29 22 7 7 18 4 6 6 7 10-11132.5113.8112.7 + 93 5 30 3 7 4 3 5 4 4 2 4-11144.1113.5112.6 + 93 5 31 4 3 3 5 9 5 6 3 5-11142.1113.1112.5 + 93 6 1 7 4 3 3 6 3 3 2 4-11140.4112.7112.4 + 93 6 2 4 4 5 7 12 4 6 4 6-11143.4112.3112.3 + 93 6 3 9 7 15 18 18 22 12 12 14-11140.4111.9112.2 + 93 6 4 27 56 67 80 39 27 67 67 54-11133.7111.5112.2 + 93 6 5 67 56 32 27 22 22 48 18 37-11137.7111.1112.2 + 93 6 6 18 18 27 12 12 15 27 18 18-11131.3110.8112.1 + 93 6 7 18 7 18 32 32 18 18 27 21-11115.7110.6112.1 + 93 6 8 22 15 12 7 15 9 22 6 14-11115.2110.5112.0 + 93 6 9 9 5 4 5 5 5 5 9 6-11118.9110.4112.0 + 93 6 10 0 5 6 6 4 12 56132 28-11116.0110.4111.9 + 93 6 11 27 7 6 6 6 7 9 6 9-11104.9110.5111.8 + 93 6 12 6 9 12 27 9 9 7 18 12-11 96.2110.5111.6 + 93 6 13 9 12 22 18 12 6 9 12 13-11 89.4110.6111.4 + 93 6 14 4 9 6 18 6 7 6 7 8-11 86.4110.6111.1 + 93 6 15 7 9 7 5 5 3 3 3 5-11 84.6110.4110.9 + 93 6 16 3 4 5 4 3 2 2 2 3-11 85.0110.2110.7 + 93 6 17 3 3 4 4 5 4 7 6 5-11 86.1109.9110.6 + 93 6 18 3 2 0 2 3 7 3 3 3-11 87.4109.5110.4 + 93 6 19 2 6 6 4 6 5 6 6 5-11 88.8109.2110.2 + 93 6 20 3 5 9 6 6 3 5 2 5-11 94.1108.7110.1 + 93 6 21 2 0 0 2 2 3 2 2 2-11 94.0108.3109.9 + 93 6 22 4 4 4 4 3 4 7 12 5-11 99.8108.0109.8 + 93 6 23 12 6 5 12 18 15 56 15 17-11113.1107.8109.7 + 93 6 24 18 32 39 18 32 32 15 18 26-11125.4107.6109.6 + 93 6 25 15 9 32 27 15 18 12 12 18-11122.6107.5109.5 + 93 6 26 12 9 6 4 6 7 5 9 7-11126.0107.4109.4 + 93 6 27 7 5 5 9 5 7 5 3 6-11131.7107.4109.4 + 93 6 28 4 5 5 6 4 3 3 3 4-11127.8107.4109.5 + 93 6 29 7 9 6 18 18 12 4 7 10-11126.7107.4109.5 + 93 6 30 12 9 9 4 5 18 12 15 11-11120.3107.5109.5 + 93 7 1 15 27 15 27 32 9 22 32 22-11111.8107.6109.5 + 93 7 2 22 12 9 27 27 18 39 80 29-11113.6107.8109.6 + 93 7 3 56 32 27 6 12 9 12 15 21-11114.2107.9109.6 + 93 7 4 15 12 6 9 5 7 4 6 8-11110.1107.9109.7 + 93 7 5 7 12 3 2 3 4 4 3 5-11103.9107.8109.7 + 93 7 6 2 3 3 12 4 3 5 6 5-11 98.4107.6109.7 + 93 7 7 15 12 7 4 5 5 9 5 8-11 96.5107.2109.8 + 93 7 8 9 15 18 15 18 22 12 7 15-11 96.4106.8109.8 + 93 7 9 12 18 9 7 27 32 7 7 15-11 93.2106.3109.8 + 93 7 10 9 9 7 12 15 7 18 15 12-11 89.0105.7109.7 + 93 7 11 22 48 32 18 7 18 7 5 20-11 85.8105.1109.7 + 93 7 12 9 6 9 7 7 12 5 7 8-11 88.7104.6109.6 + 93 7 13 9 12 15 9 12 7 6 6 10-11 89.5104.0109.6 + 93 7 14 3 3 3 2 3 3 3 3 3-11 95.7103.4109.5 + 93 7 15 4 6 5 3 6 4 6 7 5-11 96.3102.9109.3 + 93 7 16 3 3 2 2 3 6 4 5 4-11100.3102.3109.2 + 93 7 17 4 3 3 3 4 3 2 3 3-11102.6101.8109.1 + 93 7 18 4 3 5 6 7 4 4 5 5-11103.7101.5109.1 + 93 7 19 5 6 4 6 5 4 5 7 5-11104.1101.2109.0 + 93 7 20 5 6 12 32 7 15 32 22 16-11105.6100.9108.9 + 93 7 21 12 22 12 12 18 9 12 12 14-11108.9100.5108.9 + 93 7 22 12 9 12 12 9 6 7 12 10-11111.2100.4108.9 + 93 7 23 9 9 6 5 6 4 2 4 6-11113.3100.3108.9 + 93 7 24 4 2 3 5 4 7 5 3 4-11109.8100.2108.9 + 93 7 25 12 7 4 4 3 3 3 3 5-11105.1100.1109.0 + 93 7 26 4 5 2 4 3 6 2 3 4-11106.8100.1109.0 + 93 7 27 6 3 3 7 15 15 18 9 10-11106.4100.0109.1 + 93 7 28 9 7 6 5 4 5 5 7 6-11104.6 99.9109.1 + 93 7 29 6 4 7 7 27 32 48 12 18-11103.5 99.8109.2 + 93 7 30 15 9 5 4 5 4 5 4 6-11100.8 99.7109.2 + 93 7 31 9 9 4 6 6 3 5 5 6-11 99.1 99.6109.2 + 93 8 1 5 2 2 2 2 4 4 3 3-11102.8 99.4109.1 + 93 8 2 3 4 4 2 2 2 5 4 3-11103.7 99.1109.1 + 93 8 3 5 3 4 5 6 7 9 7 6-11100.8 98.7109.0 + 93 8 4 6 6 9 9 32 48 32 56 25-11 98.9 98.2108.9 + 93 8 5 48 39 18 12 6 7 12 5 18-11 97.0 97.7108.8 + 93 8 6 3 7 27 18 18 22 12 6 14-11 97.1 97.2108.7 + 93 8 7 12 27 12 15 12 7 12 22 15-11 93.8 96.7108.5 + 93 8 8 7 7 15 12 5 6 3 4 7-11 93.4 96.1108.2 + 93 8 9 12 9 7 18 9 9 15 6 11-11 99.1 95.6108.0 + 93 8 10 5 3 5 15 6 6 6 7 7-11104.5 95.2107.8 + 93 8 11 6 6 4 4 4 2 3 3 4-11111.2 94.8107.6 + 93 8 12 4 9 9 6 7 5 2 6 6-11103.2 94.4107.3 + 93 8 13 5 6 4 4 5 5 3 4 5-11 99.2 94.0107.1 + 93 8 14 2 0 0 2 2 3 3 2 2-11 94.6 93.6107.0 + 93 8 15 3 2 3 4 6 32 18 48 15-11 92.8 93.5106.9 + 93 8 16 56 48 80 94 56 67132 94 78-11 92.4 93.4106.8 + 93 8 17111 56 15 6 9 6 9 5 27-11 95.1 93.6106.7 + 93 8 18 15 22 22 18 18 18 15 12 18-11 94.3 93.7106.6 + 93 8 19 18 12 9 7 7 7 18 15 12-11 93.9 93.9106.6 + 93 8 20 12 6 9 7 4 5 6 3 7-11 93.8 94.2106.5 + 93 8 21 5 6 6 5 4 3 4 3 5-11 97.0 94.7106.5 + 93 8 22 4 5 5 9 4 4 6 9 6-11 96.2 95.0106.4 + 93 8 23 7 4 3 2 2 3 3 2 3-11 94.8 95.5106.4 + 93 8 24 0 3 5 7 6 3 4 6 4-11 92.5 95.8106.3 + 93 8 25 6 2 2 4 3 3 3 5 4-11 90.6 96.2106.3 + 93 8 26 7 3 5 5 6 5 7 7 6-11 90.2 96.4106.2 + 93 8 27 7 4 6 12 39 80 32 27 26-11 89.4 96.6106.1 + 93 8 28 9 7 5 15 15 12 9 15 11-11 90.2 96.8106.0 + 93 8 29 15 15 12 7 12 3 4 15 10-11 91.7 96.9105.9 + 93 8 30 5 5 5 3 2 3 3 6 4-11 90.7 97.0105.8 + 93 8 31 7 6 4 3 5 4 5 5 5-11 90.6 96.9105.7 + 93 9 1 2 2 2 2 2 4 4 3 3-11 87.1 96.8105.6 + 93 9 2 3 3 3 6 9 5 9 6 6-11 82.6 96.6105.5 + 93 9 3 9 15 18 22 56 32 67 67 36-11 80.9 96.4105.3 + 93 9 4 32 32 39 18 15 32 7 22 25-11 80.5 96.3105.1 + 93 9 5 32 15 9 6 15 7 7 12 13-11 81.0 96.1104.9 + 93 9 6 15 12 9 12 12 6 15 12 12-11 80.2 95.9104.8 + 93 9 7 5 15 9 4 7 6 4 12 8-11 79.6 95.7104.6 + 93 9 8 22 9 5 6 4 4 5 9 8-11 80.2 95.5104.5 + 93 9 9 5 2 4 5 5 5 6 5 5-11 80.1 95.4104.3 + 93 9 10 3 6 5 4 5 6 2 4 4-11 80.1 95.3104.1 + 93 9 11 9 4 3 6 6 5 6 9 6-11 79.8 95.2104.0 + 93 9 12 5 2 7 5 9 18 18 67 16-11 79.5 95.0103.8 + 93 9 13 67179154 94 67 80 56 32 91-11 81.1 94.9103.7 + 93 9 14 48 15 48 27 22 32 18 18 29-11 82.6 94.8103.6 + 93 9 15 27 22 22 12 15 7 12 9 16-11 85.6 94.7103.5 + 93 9 16 6 5 4 5 7 7 9 3 6-11 89.0 94.5103.4 + 93 9 17 3 6 7 4 4 4 3 5 5-11 85.9 94.5103.3 + 93 9 18 3 6 5 6 3 3 3 3 4-11 86.0 94.4103.1 + 93 9 19 7 5 4 6 5 3 0 3 4-11 85.0 94.3103.0 + 93 9 20 3 5 6 22 22 32 27 48 21-11 80.3 94.1102.9 + 93 9 21 56 9 4 3 6 12 12 7 14-11 80.6 93.8102.8 + 93 9 22 6 12 7 6 4 4 3 6 6-11 79.8 93.7102.7 + 93 9 23 2 0 2 4 15 7 15 48 12-11 82.0 93.6102.7 + 93 9 24 27 6 12 12 15 18 27 27 18-11 90.0 93.6102.6 + 93 9 25 7 7 6 15 15 12 12 12 11-11 96.5 93.6102.5 + 93 9 26 9 18 9 15 7 5 5 9 10-11106.8 93.6102.4 + 93 9 27 18 12 7 6 6 7 12 6 9-11104.9 93.6102.3 + 93 9 28 2 4 3 6 7 15 15 12 8-11111.7 93.6102.2 + 93 9 29 7 5 12 27 27 48 48 22 25-11116.8 93.5102.1 + 93 9 30 27 32 12 7 5 5 7 48 18-11120.9 93.5102.0 + 93 10 1 48 32 32 39 15 18 15 7 26-11117.1 93.4101.9 + 93 10 2 4 4 6 9 6 9 12 4 7-11126.9 93.3101.8 + 93 10 3 0 2 4 3 4 6 12 7 5-11124.8 93.2101.6 + 93 10 4 2 4 4 5 5 7 18 4 6-11121.5 93.2101.5 + 93 10 5 5 3 2 3 3 7 9 9 5-11123.7 93.2101.4 + 93 10 6 27 27 18 4 4 3 6 12 13-11118.0 93.3101.3 + 93 10 7 6 6 2 0 5 3 2 2 3-11116.6 93.4101.1 + 93 10 8 5 9 39 18 27 7 9 15 16-11113.1 93.5100.9 + 93 10 9 15 67 56111 27 18 32 56 48-11110.1 93.6100.7 + 93 10 10 27 48 32 27 39 12 32 32 31-11107.1 93.7100.6 + 93 10 11 27 18 18 32 32 56 15 22 28-11102.3 93.8100.4 + 93 10 12 27 22 18 12 27 18 7 12 18-11 97.3 93.9100.4 + 93 10 13 15 27 15 6 6 6 9 7 11-11 94.5 94.1100.3 + 93 10 14 18 9 7 6 9 6 3 4 8-11 90.8 94.3100.3 + 93 10 15 5 3 4 5 3 3 2 2 3-11 93.5 94.5100.2 + 93 10 16 5 5 5 4 4 6 5 7 5-11 90.3 94.7100.2 + 93 10 17 18 15 4 3 4 6 7 9 8-11 89.4 94.8100.2 + 93 10 18 7 18 5 4 6 6 4 4 7-11 86.7 94.9100.1 + 93 10 19 12 15 6 7 4 4 9 12 9-11 88.1 95.0100.0 + 93 10 20 6 3 4 2 3 5 7 5 4-11 93.5 95.2100.0 + 93 10 21 6 9 7 7 6 3 2 3 5-11 94.2 95.4 99.9 + 93 10 22 27 27 12 7 7 12 15 18 16-11 91.3 95.7 99.8 + 93 10 23 7 18 27 6 9 7 15 9 12-11 91.4 96.0 99.7 + 93 10 24 32 9 6 6 4 12 9 6 11-11 90.6 96.3 99.6 + 93 10 25 7 6 12 80 94 80 15 22 40-11 86.0 96.5 99.4 + 93 10 26 9 4 9 6 7 39 22 39 17-11 87.4 96.7 99.3 + 93 10 27 27 39 39 32 48 39 48 32 38-11 86.0 96.8 99.2 + 93 10 28 15 18 22 22 22 7 12 48 21-11 87.3 97.0 99.1 + 93 10 29 27 9 6 5 12 12 5 15 11-11 90.5 97.2 99.0 + 93 10 30 7 3 3 3 3 3 0 4 3-11 90.0 97.3 98.9 + 93 10 31 4 2 7 6 6 15 9 9 7-11 90.1 97.5 98.9 + 93 11 1 15 9 6 9 15 15 15 7 11-11 90.0 97.6 98.8 + 93 11 2 9 7 4 3 3 3 3 2 4-11 91.8 97.7 98.7 + 93 11 3 2 0 3 3 5 9 18 80 15-11 92.4 97.8 98.6 + 93 11 4111 94 56 80 80 67 80 48 77-11 94.1 97.7 98.5 + 93 11 5 27 18 56 39 32 32 32 32 34-11 94.8 97.5 98.3 + 93 11 6 22 12 32 32 27 22 27 32 26-11 94.9 97.2 98.2 + 93 11 7 22 12 18 22 22 32 22 32 23-11 93.5 96.9 98.0 + 93 11 8 22 12 9 15 12 18 32 18 17-11 90.2 96.6 97.9 + 93 11 9 15 18 9 12 7 6 9 15 11-11 88.7 96.2 97.7 + 93 11 10 15 15 15 7 12 12 12 4 12-11 88.2 95.8 97.6 + 93 11 11 5 18 6 6 6 4 3 3 6-11 87.0 95.4 97.5 + 93 11 12 4 6 4 3 3 3 3 2 4-11 88.9 95.0 97.4 + 93 11 13 3 6 7 5 12 12 9 6 8-11 92.2 94.8 97.3 + 93 11 14 6 9 7 12 15 32 18 15 14-11 92.3 94.6 97.3 + 93 11 15 15 18 5 6 5 6 15 32 13-11 99.9 94.5 97.3 + 93 11 16 15 9 9 7 9 12 9 12 10-11 98.2 94.5 97.3 + 93 11 17 12 2 2 2 0 2 18 12 6-11 97.7 94.8 97.3 + 93 11 18 9 5 4 4 48 80 67 32 31-11100.2 95.0 97.3 + 93 11 19 39 80 9 12 22 22 27 39 31-11 98.7 95.1 97.3 + 93 11 20 18 18 9 7 5 5 6 6 9-11 98.0 95.5 97.3 + 93 11 21 15 9 9 7 5 4 5 7 8-11 94.8 95.9 97.2 + 93 11 22 12 4 4 3 5 3 6 6 5-11 96.8 96.5 97.2 + 93 11 23 9 9 6 5 7 9 6 4 7-11 97.9 97.1 97.2 + 93 11 24 6 9 3 3 3 4 5 6 5-11 97.5 97.5 97.1 + 93 11 25 5 6 4 4 5 9 6 12 6-11 94.7 97.9 97.0 + 93 11 26 22 9 9 7 9 27 39 15 17-11 90.8 98.4 96.8 + 93 11 27 12 9 3 3 2 6 6 12 7-11 87.3 98.9 96.7 + 93 11 28 2 2 4 3 6 6 5 7 4-11 90.7 99.4 96.5 + 93 11 29 27 9 7 7 9 9 12 9 11-11 91.2 99.7 96.3 + 93 11 30 9 2 4 3 3 3 3 4 4-11100.8100.0 96.1 + 93 12 1 12 6 6 32 32 39 27 80 29-11105.6100.1 95.9 + 93 12 2 39 39 39 32 27 32 67111 48-11101.3100.2 95.7 + 93 12 3 94 56 48 27 22 9 22 15 37-11102.6100.3 95.5 + 93 12 4 6 4 5 7 6 6 18 9 8-11101.6100.3 95.4 + 93 12 5 5 4 4 9 15 22 18 9 11-11 98.3100.3 95.2 + 93 12 6 7 5 6 5 7 6 7 7 6-11 99.9100.3 95.0 + 93 12 7 12 4 6 4 32 27 27 48 20-11103.8100.5 94.9 + 93 12 8 94 94 48 48 32 39 18 5 47-11101.9100.7 94.8 + 93 12 9 4 3 2 2 0 3 2 6 3-11 95.4100.8 94.7 + 93 12 10 9 7 6 7 9 6 12 7 8-11 93.2100.9 94.7 + 93 12 11 18 9 7 5 6 5 6 3 7-11 89.7101.0 94.6 + 93 12 12 6 4 5 12 6 7 3 5 6-11 88.1101.2 94.6 + 93 12 13 5 4 2 4 2 2 2 6 3-11 85.1101.4 94.6 + 93 12 14 6 7 3 4 2 3 3 3 4-11 85.1101.7 94.6 + 93 12 15 9 12 22 15 15 6 6 4 11-11 82.8102.1 94.6 + 93 12 16 7 22 22 22 32 22 27 32 23-11 81.9102.5 94.6 + 93 12 17 18 27 15 15 18 22 32 22 21-11 81.1102.9 94.6 + 93 12 18 12 15 18 15 15 27 27 27 20-11 82.4103.2 94.6 + 93 12 19 27 15 12 7 7 9 12 7 12-11 84.2103.5 94.6 + 93 12 20 27 18 7 7 9 12 12 15 13-11 88.1103.6 94.5 + 93 12 21 18 12 15 18 18 27 18 32 20-11 89.9103.7 94.5 + 93 12 22 15 9 9 22 15 4 6 9 11-11 96.6103.8 94.4 + 93 12 23 9 12 5 9 6 9 9 32 11-11101.6103.8 94.3 + 93 12 24 12 7 9 12 15 12 12 15 12-11107.5103.8 94.2 + 93 12 25 7 18 7 12 15 5 9 15 11-11115.2103.9 94.1 + 93 12 26 9 4 6 5 9 9 9 22 9-11120.5103.8 93.9 + 93 12 27 7 9 6 4 7 12 5 3 7-11135.8103.7 93.8 + 93 12 28 2 0 2 3 4 4 5 5 3-11129.2103.6 93.6 + 93 12 29 4 6 4 2 2 0 0 2 3-11124.4103.5 93.5 + 93 12 30 7 6 5 5 6 2 0 2 4-11138.0103.5 93.4 + 93 12 31 7 18 48 32 9 15 7 22 20-11136.2103.5 93.3 + 94 1 1 27 27 32 32 27 27 18 15 26-11143.4103.4 93.3 + 94 1 2 12 18 27 22 32 22 18 15 21-11141.4103.4 93.2 + 94 1 3 15 7 15 18 15 22 22 6 15-11128.7103.3 93.1 + 94 1 4 6 18 7 4 5 4 5 3 7-11124.6103.3 93.1 + 94 1 5 2 4 3 4 4 3 4 9 4-11132.4103.3 93.1 + 94 1 6 18 12 9 7 9 18 6 18 12-11127.7103.5 93.0 + 94 1 7 3 0 2 5 7 4 9 7 5-11122.1103.7 93.0 + 94 1 8 5 9 12 5 6 5 5 5 7-11118.9103.8 93.0 + 94 1 9 3 0 3 4 3 4 5 2 3-11113.1104.0 93.0 + 94 1 10 2 3 4 2 3 2 0 0 2-11106.5104.0 93.0 + 94 1 11 3 7 15 12 15 56 56 32 25-11 97.8104.0 93.0 + 94 1 12 39 32 22 22 39 39 15 27 29-11 94.6104.1 93.0 + 94 1 13 27 32 15 18 32 27 18 39 26-11 91.9104.1 93.0 + 94 1 14 22 27 18 22 48 27 18 22 26-11 87.3104.1 92.9 + 94 1 15 22 22 12 7 15 18 39 22 20-11 92.6104.2 92.9 + 94 1 16 15 22 22 18 22 18 22 15 19-11 97.0104.1 92.8 + 94 1 17 32 48 32 18 18 22 22 22 27-11102.0104.0 92.8 + 94 1 18 18 18 15 18 48 39 22 18 25-11 97.5103.9 92.7 + 94 1 19 27 39 39 15 22 9 27 22 25-11 99.5103.8 92.6 + 94 1 20 22 18 18 9 15 12 12 9 14-11101.6103.8 92.6 + 94 1 21 9 9 4 5 6 9 18 12 9-11107.3103.9 92.5 + 94 1 22 27 9 5 5 6 3 7 9 9-11109.5104.0 92.4 + 94 1 23 7 9 5 6 5 6 6 9 7-11114.6104.2 92.3 + 94 1 24 9 4 4 5 2 0 0 4 4-11125.1104.3 92.2 + 94 1 25 5 9 6 2 2 3 5 9 5-11128.1104.4 92.1 + 94 1 26 12 18 39 15 27 22 27 18 22-11123.9104.5 92.1 + 94 1 27 18 22 22 12 18 22 22 22 20-11116.8104.6 92.0 + 94 1 28 32 18 12 22 18 7 6 9 16-11115.7104.7 91.9 + 94 1 29 6 12 15 9 18 9 6 9 11-11 98.9104.7 91.8 + 94 1 30 18 5 6 7 7 22 12 9 11-11 96.1104.7 91.8 + 94 1 31 18 7 6 6 6 7 5 18 9-11 94.7104.7 91.7 + 94 2 1 9 3 7 9 6 3 3 2 5-11 91.7104.6 91.6 + 94 2 2 2 9 18 27 32 15 9 2 14-11 93.5104.5 91.6 + 94 2 3 2 6 9 9 18 18 15 12 11-11 95.1104.2 91.5 + 94 2 4 7 7 7 5 12 22 32 15 13-11 92.7103.8 91.5 + 94 2 5 22 15 22 48 15 27 39 67 32-11 90.6103.4 91.4 + 94 2 6 80 32 22 56 67 94 80 80 64-11 92.2102.8 91.4 + 94 2 7 39 80 39 80 94 56 80 32 63-11 93.3102.3 91.3 + 94 2 8 94 67 67 48 67 56 56 56 64-11 92.6101.8 91.3 + 94 2 9 32 22 27 22 32 56 48 56 37-11 98.3101.2 91.2 + 94 2 10 56 48 32 32 39 39 32 39 40-11 91.8100.7 91.1 + 94 2 11 48 48 27 67 39 56 56 56 50-11 90.7100.0 91.1 + 94 2 12 39 32 22 27 39 32 39 39 34-11 95.1 99.4 91.0 + 94 2 13 39 22 18 27 22 56 94 39 40-11 95.4 98.9 91.0 + 94 2 14 39 32 32 18 22 80 32 48 38-11 98.9 98.5 91.0 + 94 2 15 27 18 18 15 32 27 32 39 26-11101.3 97.9 90.9 + 94 2 16 48 39 15 18 27 15 18 12 24-11102.3 97.4 90.9 + 94 2 17 12 12 12 9 12 12 12 7 11-11103.9 97.0 90.9 + 94 2 18 6 5 5 12 5 3 2 15 7-11103.9 96.6 90.8 + 94 2 19 27 22 32 22 32 15 32 18 25-11105.6 96.2 90.8 + 94 2 20 39 27 15 12 7 9 18 7 17-11105.2 95.9 90.7 + 94 2 21 9 12 18154179179 80132 95-11103.1 95.7 90.6 + 94 2 22179154 56 39 39 15 9 15 63-11104.4 95.5 90.6 + 94 2 23 12 18 12 12 7 6 18 9 12-11105.1 95.3 90.5 + 94 2 24 6 4 5 5 6 5 4 3 5-11102.9 95.2 90.5 + 94 2 25 7 12 27 22 12 12 15 7 14-11 94.8 94.9 90.4 + 94 2 26 18 7 5 5 9 6 3 3 7-11 92.6 94.6 90.4 + 94 2 27 3 7 7 18 12 6 3 3 7-11 93.0 94.3 90.3 + 94 2 28 2 2 18 12 7 3 9 27 10-11 90.8 94.0 90.3 + 94 3 1 27 7 18 9 6 7 7 18 12-11 92.4 93.7 90.3 + 94 3 2 27 9 7 12 12 9 27 48 19-11 96.3 93.4 90.3 + 94 3 3 22 39 56 32 15 6 7 7 23-11 99.2 92.9 90.3 + 94 3 4 4 3 6 6 3 3 3 3 4-11 96.3 92.5 90.3 + 94 3 5 6 3 3 6 4 3 7 32 8-11 94.2 92.1 90.3 + 94 3 6 12 18 9 7 3 5 12 22 11-11 94.1 91.5 90.4 + 94 3 7 56 27 27 67 48 94 67132 65-11 90.0 91.0 90.4 + 94 3 8 48 67 67 48 39 39 56 56 53-11 89.9 90.5 90.5 + 94 3 9 39 56 94 39 39 67 94 80 64-11 88.7 90.1 90.5 + 94 3 10 32 32 48 39 48 48 48 67 45-11 86.8 89.7 90.5 + 94 3 11 22 39 48 39 48 39 32 56 40-11 87.0 89.6 90.5 + 94 3 12 39 27 56 32 39 27 39 32 36-11 91.7 89.4 90.6 + 94 3 13 39 48 12 22 15 15 15 48 27-11 89.1 89.3 90.6 + 94 3 14 32 48 27 18 39 39 39 32 34-11 86.2 89.3 90.6 + 94 3 15 48 67 32 39 56 56 39 22 45-11 86.5 89.2 90.5 + 94 3 16 27 22 22 9 22 48 22 22 24-11 85.3 89.0 90.5 + 94 3 17 27 48 56 39 27 39 32 18 36-11 84.3 88.9 90.5 + 94 3 18 27 39 22 7 18 15 6 27 20-11 85.9 88.7 90.4 + 94 3 19 32 18 18 18 7 7 9 12 15-11 88.3 88.6 90.4 + 94 3 20 18 15 7 6 6 15 22 15 13-11 87.9 88.4 90.4 + 94 3 21 15 48 22 18 22 48 32 18 28-11 90.0 88.2 90.3 + 94 3 22 48 18 7 15 39 12 9 15 20-11 90.5 87.9 90.3 + 94 3 23 22 39 22 15 22 22 15 9 21-11 91.2 87.7 90.3 + 94 3 24 18 18 9 39 22 12 7 15 18-11 92.1 87.6 90.2 + 94 3 25 27 7 7 9 18 32 22 15 17-11 90.4 87.3 90.2 + 94 3 26 15 12 7 18 5 6 6 4 9-11 88.1 87.0 90.2 + 94 3 27 6 5 6 5 7 5 12 32 10-11 88.0 86.7 90.1 + 94 3 28 5 12 7 12 18 22 12 12 13-11 87.3 86.4 90.0 + 94 3 29 9 6 7 5 4 3 5 6 6-11 85.8 86.1 89.9 + 94 3 30 5 4 5 18 22 22 22 18 15-11 86.1 85.8 89.8 + 94 3 31 12 9 5 7 6 3 3 2 6-11 84.9 85.5 89.7 + 94 4 1 2 7 7 5 9 9 7 6 7-11 82.4 85.2 89.6 + 94 4 2 22 15 18 39 48 56132 94 53-11 79.3 85.0 89.5 + 94 4 3 67 94111 80 67 56111154 93-11 77.4 84.9 89.3 + 94 4 4132 94 48 39 39 39 48 32 59-11 77.2 84.7 89.2 + 94 4 5 39 27 32 32 48 48 22 80 41-11 77.2 84.6 89.1 + 94 4 6 39 32 56 56 48 56 48 48 48-11 73.3 84.5 89.0 + 94 4 7 39 56 48 39 39 48 27 32 41-11 73.0 84.5 88.9 + 94 4 8 32 56 56 32 39 27 39 39 40-11 72.9 84.6 88.8 + 94 4 9 80 48 39 80 39 48 48 32 52-11 72.9 84.5 88.7 + 94 4 10 48 39 18 32 39 39 48 48 39-11 75.7 84.6 88.6 + 94 4 11 32 67 67 56 22 32 32 56 46-11 74.6 84.5 88.6 + 94 4 12 39 27 27 18 18 22 48 39 30-11 74.2 84.4 88.5 + 94 4 13 18 27 32 18 27 56 39 32 31-11 74.3 84.2 88.5 + 94 4 14 56 18 18 22 22 27 22 22 26-11 79.9 84.0 88.5 + 94 4 15 22 22 12 15 12 22 22 22 19-11 80.6 83.8 88.5 + 94 4 16 15 48 18 9 15 15 80 56 32-11 82.3 83.5 88.5 + 94 4 17111236236132 39 15 15 18100-11 82.5 83.3 88.5 + 94 4 18 18 18 18 18 22 18 32 18 20-11 84.9 83.1 88.5 + 94 4 19 48 12 15 18 7 6 9 12 16-11 86.2 82.9 88.5 + 94 4 20 7 12 15 12 6 5 3 5 8-11 87.0 82.7 88.5 + 94 4 21 7 12 9 5 5 5 12 15 9-11 87.6 82.5 88.5 + 94 4 22 7 6 5 7 12 5 5 9 7-11 86.3 82.2 88.5 + 94 4 23 3 4 3 12 15 6 18 32 12-11 86.1 82.0 88.5 + 94 4 24 7 6 7 7 7 12 4 5 7-11 84.3 81.8 88.5 + 94 4 25 12 12 7 7 4 6 6 9 8-11 83.8 81.6 88.4 + 94 4 26 4 5 7 6 6 5 3 3 5-11 82.0 81.4 88.4 + 94 4 27 4 7 4 5 5 4 3 4 5-11 79.0 81.2 88.4 + 94 4 28 7 4 2 2 6 3 3 3 4-11 78.4 81.2 88.5 + 94 4 29 3 7 7 5 2 2 3 9 5-11 78.9 81.1 88.5 + 94 4 30 2 4 3 0 2 2 3 2 2-11 76.0 81.1 88.5 + 94 5 1 2 7 15 15 32 67132132 50-11 76.3 81.0 88.5 + 94 5 2 67 80 32 15 18 18 48111 49-11 77.1 81.0 88.5 + 94 5 3 56 94 48 22 39 39 32 18 44-11 75.6 81.0 88.5 + 94 5 4 27 27 18 12 39 32 22 27 26-11 74.4 80.9 88.5 + 94 5 5 32 39 39 22 39 67 39 39 40-11 74.4 80.9 88.5 + 94 5 6 39 48 39 22 15 22 27 80 37-11 75.3 80.9 88.5 + 94 5 7 80 39 56 39 27 18 32 22 39-11 75.2 81.0 88.5 + 94 5 8 32 39 48 39 27 27 48 39 37-11 75.8 81.0 88.4 + 94 5 9 22 39 22 27 22 32 27 18 26-11 78.8 80.9 88.4 + 94 5 10 32 27 56 15 27 27 39 39 33-11 81.4 80.8 88.3 + 94 5 11 32 32 18 18 22 39 18 27 26-11 83.6 80.8 88.3 + 94 5 12 22 27 12 6 4 5 3 12 11-11 89.2 80.7 88.3 + 94 5 13 12 12 7 4 3 5 4 7 7-11 91.4 80.6 88.3 + 94 5 14 9 39 39 12 18 18 12 27 22-11 92.1 80.6 88.2 + 94 5 15 18 22 48 67 32 27 39 32 36-11 93.4 80.6 88.2 + 94 5 16 32 22 22 27 39 48 32 12 29-11 93.3 80.6 88.2 + 94 5 17 27 15 15 18 9 15 12 9 15-11 97.2 80.6 88.1 + 94 5 18 22 27 15 12 22 15 7 27 18-11 95.8 80.6 88.0 + 94 5 19 12 18 15 15 12 6 3 4 11-11 92.7 80.7 88.0 + 94 5 20 6 9 6 5 6 7 3 4 6-11 91.9 80.8 87.9 + 94 5 21 3 3 3 6 9 6 5 4 5-11 89.8 80.9 87.9 + 94 5 22 3 4 3 5 7 7 12 9 6-11 86.7 81.1 87.8 + 94 5 23 4 5 3 9 9 12 6 15 8-11 83.6 81.2 87.7 + 94 5 24 22 39 18 15 12 18 18 15 20-11 79.9 81.4 87.7 + 94 5 25 22 39 15 18 6 15 7 27 19-11 76.1 81.5 87.6 + 94 5 26 5 9 18 18 9 6 5 9 10-11 73.4 81.6 87.6 + 94 5 27 7 5 2 3 4 7 4 4 5-11 72.1 81.6 87.5 + 94 5 28 2 2 3 7 39132111 56 44-11 71.4 81.7 87.5 + 94 5 29 56 56 22 48 39 56 22 27 41-11 71.4 81.8 87.5 + 94 5 30 39 80 32 32 56 56 48 67 51-11 71.3 81.8 87.4 + 94 5 31 22 48 27 22 22 12 48 32 29-11 71.1 81.8 87.4 + 94 6 1 18 27 32 27 18 12 27 27 24-11 69.6 81.9 87.3 + 94 6 2 32 12 18 27 15 32 32 27 24-11 69.9 81.8 87.3 + 94 6 3 18 22 15 12 22 22 48 27 23-11 70.3 81.8 87.2 + 94 6 4 22 15 18 18 12 18 15 32 19-11 69.5 81.8 87.1 + 94 6 5 12 15 15 22 18 22 32 32 21-11 70.3 81.8 87.1 + 94 6 6 18 12 12 18 15 18 32 22 18-11 72.7 81.9 87.0 + 94 6 7 15 12 18 15 15 9 15 18 15-11 79.4 81.9 86.9 + 94 6 8 15 7 6 9 7 9 6 7 8-11 82.9 82.0 86.9 + 94 6 9 7 9 15 15 5 7 5 5 9-11 85.5 82.0 86.8 + 94 6 10 5 9 12 22 15 39 18 18 17-11 88.0 82.0 86.8 + 94 6 11 12 12 15 27 7 9 12 18 14-11 89.1 82.1 86.8 + 94 6 12 18 18 22 32 27 32 27 15 24-11 89.0 82.1 86.8 + 94 6 13 15 12 5 7 9 22 22 15 13-11 87.7 82.2 86.8 + 94 6 14 12 15 15 18 18 15 9 15 15-11 88.0 82.2 86.8 + 94 6 15 12 5 7 6 6 4 5 5 6-11 91.0 82.2 86.8 + 94 6 16 6 3 4 4 6 4 5 4 5-11 90.8 82.3 86.8 + 94 6 17 4 6 5 7 12 18 5 5 8-11 86.6 82.3 86.9 + 94 6 18 12 27 12 9 9 12 5 7 12-11 80.9 82.3 86.9 + 94 6 19 6 7 15 39 27 12 18 22 18-11 79.8 82.3 86.9 + 94 6 20 12 18 9 7 22 15 15 15 14-11 78.9 82.2 86.9 + 94 6 21 9 7 12 12 7 6 7 9 9-11 76.8 82.1 86.9 + 94 6 22 9 9 6 4 9 4 5 6 7-11 74.6 82.0 86.8 + 94 6 23 3 3 2 0 2 3 4 5 3-11 75.5 81.8 86.8 + 94 6 24 5 5 3 4 4 3 2 2 4-11 75.2 81.6 86.7 + 94 6 25 0 2 4 2 5 3 3 6 3-11 75.5 81.4 86.6 + 94 6 26 12 27 22 32 32 32 27 18 25-11 76.3 81.3 86.5 + 94 6 27 27 18 22 12 12 6 7 7 14-11 75.4 81.0 86.4 + 94 6 28 9 6 6 9 7 9 32 67 18-11 76.4 80.8 86.2 + 94 6 29 22 39 22 22 18 22 32 27 26-11 81.4 80.6 86.1 + 94 6 30 18 18 18 18 18 22 15 27 19-11 85.4 80.4 86.0 + 94 7 1 32 22 27 22 15 15 22 39 24-11 89.7 80.3 85.8 + 94 7 2 18 48 32 27 18 27 15 27 27-11 85.6 80.2 85.6 + 94 7 3 12 9 15 15 9 6 7 15 11-11 89.3 80.2 85.4 + 94 7 4 6 9 7 5 15 12 15 12 10-11 87.4 80.3 85.3 + 94 7 5 6 4 5 3 3 4 3 9 5-11 86.2 80.4 85.1 + 94 7 6 7 6 9 6 7 6 9 32 10-11 87.1 80.6 85.0 + 94 7 7 15 27 15 9 18 15 22 12 17-11 91.1 80.7 84.8 + 94 7 8 5 5 4 4 6 4 3 3 4-11 88.7 80.8 84.7 + 94 7 9 5 3 3 2 7 15 5 3 5-11 88.8 80.8 84.5 + 94 7 10 2 2 5 3 5 5 5 4 4-11 88.9 80.9 84.4 + 94 7 11 4 4 0 2 6 7 4 5 4-11 88.5 81.0 84.3 + 94 7 12 6 4 0 0 2 4 2 0 2-11 85.7 81.0 84.2 + 94 7 13 2 4 6 2 3 4 5 5 4-11 84.1 81.0 84.1 + 94 7 14 5 6 6 27 56 67 27 48 30-11 84.6 81.1 84.0 + 94 7 15 48 12 12 7 12 12 12 56 21-11 85.7 81.1 84.0 + 94 7 16 80 27 15 39 22 22 22 32 32-11 85.1 81.1 84.0 + 94 7 17 22 12 9 18 15 9 9 12 13-11 83.0 81.2 83.9 + 94 7 18 18 15 9 7 15 6 7 5 10-11 82.7 81.1 83.9 + 94 7 19 18 12 12 7 9 4 7 18 11-11 80.1 80.9 83.8 + 94 7 20 6 3 5 5 6 4 4 4 5-11 79.4 80.9 83.8 + 94 7 21 7 12 9 9 15 6 6 7 9-11 79.8 80.8 83.7 + 94 7 22 9 7 5 5 5 3 4 2 5-11 80.1 80.8 83.7 + 94 7 23 4 7 4 5 6 9 6 7 6-11 78.2 80.7 83.7 + 94 7 24 6 5 5 7 5 5 6 15 7-11 77.7 80.8 83.6 + 94 7 25 15 9 7 7 15 9 6 9 10-11 77.8 80.9 83.6 + 94 7 26 4 5 3 4 4 3 5 5 4-11 76.3 81.0 83.5 + 94 7 27 9 48 7 4 4 5 9 18 13-11 76.6 81.1 83.4 + 94 7 28 18 22 15 18 15 7 22 18 17-11 77.1 81.2 83.3 + 94 7 29 15 12 12 7 7 12 9 15 11-11 78.0 81.3 83.2 + 94 7 30 22 12 6 5 7 6 7 15 10-11 77.6 81.4 83.1 + 94 7 31 9 7 5 9 7 5 5 27 9-11 76.8 81.5 83.0 + 94 8 1 12 9 6 4 4 4 5 6 6-11 76.2 81.6 83.0 + 94 8 2 6 3 2 4 2 3 3 5 4-11 77.2 81.7 83.0 + 94 8 3 4 4 4 5 3 4 5 5 4-11 78.7 81.7 83.0 + 94 8 4 4 2 2 2 4 3 2 3 3-11 77.4 81.7 82.9 + 94 8 5 5 7 5 5 3 4 5 3 5-11 77.8 81.7 82.9 + 94 8 6 3 5 6 4 4 3 3 5 4-11 77.5 81.7 82.9 + 94 8 7 2 2 2 3 6 5 3 6 4-11 77.9 81.6 82.8 + 94 8 8 4 2 0 0 2 3 2 3 2-11 75.9 81.6 82.8 + 94 8 9 3 4 4 2 3 4 9 6 4-11 77.4 81.5 82.8 + 94 8 10 7 5 12 7 22 12 15 9 11-11 79.7 81.3 82.7 + 94 8 11 18 18 9 12 12 18 12 15 14-11 78.7 81.0 82.7 + 94 8 12 22 22 15 12 15 12 32 15 18-11 82.9 80.9 82.7 + 94 8 13 18 39 32 12 39 27 32 18 27-11 86.7 80.6 82.6 + 94 8 14 27 27 48 32 12 18 22 18 26-11 91.2 80.4 82.6 + 94 8 15 27 7 7 7 15 9 15 18 13-11 83.5 80.3 82.6 + 94 8 16 9 6 5 9 6 5 15 15 9-11 78.8 80.1 82.5 + 94 8 17 6 7 12 6 6 7 5 4 7-11 79.5 80.0 82.4 + 94 8 18 3 5 6 9 9 6 4 6 6-11 79.3 79.8 82.4 + 94 8 19 6 5 6 3 4 5 6 3 5-11 77.1 79.6 82.4 + 94 8 20 4 9 9 6 5 6 7 7 7-11 74.0 79.5 82.3 + 94 8 21 9 6 2 3 15 15 4 3 7-11 72.7 79.3 82.3 + 94 8 22 7 6 3 5 9 9 9 32 10-11 72.2 79.1 82.2 + 94 8 23 12 9 4 4 4 4 5 3 6-11 73.5 79.0 82.2 + 94 8 24 3 6 4 3 4 9 9 9 6-11 73.5 78.9 82.1 + 94 8 25 7 15 9 15 15 9 9 3 10-11 72.5 78.8 82.1 + 94 8 26 2 6 7 6 3 5 6 12 6-11 73.7 78.7 82.0 + 94 8 27 18 9 9 6 5 7 12 7 9-11 72.5 78.7 82.0 + 94 8 28 9 18 7 6 3 3 5 3 7-11 72.5 78.7 81.9 + 94 8 29 4 3 7 5 5 5 2 6 5-11 79.1 78.8 81.9 + 94 8 30 3 3 4 4 4 5 4 5 4-11 84.7 78.9 81.9 + 94 8 31 4 4 2 3 9 9 4 12 6-11 83.8 79.0 81.9 + 94 9 1 27 22 5 6 4 4 15 12 12-11 87.3 79.1 81.9 + 94 9 2 9 15 3 3 4 3 2 3 5-11 94.9 79.2 81.9 + 94 9 3 6 7 7 5 6 5 3 6 6-11 98.2 79.4 81.8 + 94 9 4 7 2 4 4 4 5 3 4 4-11 95.8 79.5 81.8 + 94 9 5 6 7 9 15 12 6 6 7 9-11 95.1 79.7 81.8 + 94 9 6 5 18 9 39 12 12 9 9 14-11 95.0 79.9 81.8 + 94 9 7 6 22 32 56 48 27 80 48 40-11 92.1 80.1 81.7 + 94 9 8 18 39 39 48 12 22 27 18 28-11 89.6 80.2 81.7 + 94 9 9 22 32 39 22 56 39 39 32 35-11 87.3 80.4 81.7 + 94 9 10 32 22 22 18 18 12 7 7 17-11 82.8 80.5 81.6 + 94 9 11 18 27 22 12 15 7 15 7 15-11 82.0 80.7 81.6 + 94 9 12 7 4 7 22 9 18 18 7 12-11 78.2 80.8 81.6 + 94 9 13 4 22 15 5 6 7 7 27 12-11 76.5 80.8 81.5 + 94 9 14 12 12 5 4 18 5 3 3 8-11 74.8 80.9 81.5 + 94 9 15 7 5 5 6 6 6 6 12 7-11 72.3 81.0 81.5 + 94 9 16 12 15 12 7 7 12 7 7 10-11 71.6 81.2 81.5 + 94 9 17 7 12 12 12 5 9 6 9 9-11 71.0 81.3 81.5 + 94 9 18 9 6 5 4 7 5 3 7 6-11 72.5 81.6 81.5 + 94 9 19 18 4 6 0 4 6 6 5 6-11 70.8 81.8 81.5 + 94 9 20 6 7 3 4 4 5 6 7 5-11 70.3 82.0 81.5 + 94 9 21 7 5 4 4 7 6 6 12 6-11 70.4 82.2 81.5 + 94 9 22 15 6 4 3 3 3 5 5 6-11 71.2 82.3 81.5 + 94 9 23 5 7 2 3 2 4 4 6 4-11 71.8 82.4 81.5 + 94 9 24 12 15 5 4 2 6 3 5 7-11 73.3 82.3 81.5 + 94 9 25 9 4 5 2 5 9 56 56 18-11 76.6 82.3 81.5 + 94 9 26 22 39 27 22 15 18 7 6 20-11 77.4 82.3 81.5 + 94 9 27 27 22 15 18 7 18 9 27 18-11 75.0 82.3 81.5 + 94 9 28 32 22 15 22 5 7 5 6 14-11 74.2 82.4 81.5 + 94 9 29 12 6 9 5 5 4 4 7 7-11 74.7 82.4 81.5 + 94 9 30 3 4 5 4 4 5 3 6 4-11 74.7 82.4 81.5 + 94 10 1 6 5 5 4 3 2 3 3 4-11 74.7 82.5 81.5 + 94 10 2 2 4 4 5 6 27 22 56 16-11 74.6 82.6 81.4 + 94 10 3 94132132 67111 80 67 22 88-11 74.3 82.6 81.4 + 94 10 4 39 32 39 22 32 39 27 22 32-11 74.7 82.7 81.4 + 94 10 5 39 32 27 56 56 39 39 32 40-11 79.4 82.8 81.4 + 94 10 6 27 32 39 39 39 27 22 48 34-11 84.2 82.8 81.4 + 94 10 7 39 39 39 18 39 48 56 48 41-11 83.7 82.9 81.4 + 94 10 8 22 27 22 27 6 15 22 9 19-11 86.0 82.9 81.4 + 94 10 9 15 18 15 5 6 9 22 7 12-11 86.9 82.9 81.4 + 94 10 10 22 18 12 12 7 15 27 32 18-11 86.6 82.8 81.4 + 94 10 11 15 27 18 22 18 15 32 12 20-11 87.2 82.7 81.4 + 94 10 12 12 27 22 9 5 6 27 22 16-11 87.7 82.6 81.4 + 94 10 13 12 15 12 18 7 12 12 15 13-11 92.7 82.3 81.5 + 94 10 14 15 9 3 7 6 18 7 15 10-11 92.1 82.0 81.5 + 94 10 15 22 27 9 12 9 5 7 7 12-11 92.2 81.8 81.5 + 94 10 16 7 5 6 7 5 4 4 4 5-11 90.9 81.6 81.5 + 94 10 17 5 4 5 5 4 2 5 7 5-11 91.0 81.4 81.5 + 94 10 18 7 2 2 2 2 5 7 12 5-11 89.8 81.3 81.6 + 94 10 19 5 3 3 0 7 12 15 18 8-11 89.9 81.1 81.6 + 94 10 20 18 4 4 4 6 12 12 9 9-11 89.3 81.0 81.6 + 94 10 21 6 3 3 4 2 2 3 3 3-11 87.0 80.9 81.6 + 94 10 22 3 3 7 22 27 22 22 94 25-11 84.7 80.9 81.6 + 94 10 23 80 56 94 48 56 27 39 27 53-11 83.3 80.8 81.5 + 94 10 24 27 48 39 22 22 56 27 22 33-11 81.3 80.9 81.5 + 94 10 25 12 39 32 6 4 3 6 3 13-11 88.5 80.9 81.5 + 94 10 26 18 9 6 7 6 4 9 6 8-11 91.5 81.0 81.5 + 94 10 27 3 6 5 6 6 4 3 3 5-11 91.9 81.1 81.4 + 94 10 28 5 3 6 4 5 2 4 7 5-11 96.1 81.1 81.4 + 94 10 29 27 15 32 80132111 18 12 53-11 96.9 81.2 81.4 + 94 10 30 18 56111 67 48 27 94 32 57-11 96.4 81.4 81.3 + 94 10 31 48 22 32 67 39 27 39 22 37-11 95.2 81.6 81.3 + 94 11 1 27 32 15 12 15 22 9 12 18-11 90.9 81.8 81.3 + 94 11 2 22 22 15 18 27 18 9 18 19-11 90.0 82.1 81.3 + 94 11 3 7 12 12 9 22 15 18 9 13-11 85.9 82.4 81.3 + 94 11 4 18 56 18 18 9 12 27 22 23-11 82.6 82.6 81.3 + 94 11 5 27 15 6 12 12 12 27 39 19-11 82.0 82.8 81.3 + 94 11 6 39 67 67 56 27 48 32 6 43-11 79.7 83.0 81.3 + 94 11 7 9 15 12 9 4 6 12 4 9-11 80.4 83.1 81.3 + 94 11 8 5 3 3 5 6 4 3 12 5-11 78.6 83.3 81.3 + 94 11 9 9 7 6 7 22 27 27 32 17-11 77.4 83.4 81.3 + 94 11 10 18 39 27 15 7 9 15 9 17-11 78.5 83.4 81.3 + 94 11 11 7 12 9 12 6 4 5 7 8-11 77.5 83.5 81.3 + 94 11 12 7 5 5 4 3 5 6 4 5-11 78.5 83.5 81.3 + 94 11 13 4 7 5 6 6 9 6 5 6-11 79.5 83.6 81.2 + 94 11 14 9 9 7 6 5 6 15 18 9-11 77.0 83.6 81.2 + 94 11 15 12 6 7 9 7 7 15 18 10-11 77.2 83.6 81.2 + 94 11 16 12 6 5 3 4 7 4 2 5-11 77.2 83.5 81.2 + 94 11 17 4 15 6 5 3 3 9 6 6-11 77.3 83.4 81.2 + 94 11 18 3 4 3 9 7 9 6 6 6-11 78.1 83.3 81.2 + 94 11 19 18 39 27 15 15 27 15 18 22-11 76.6 83.1 81.2 + 94 11 20 15 27 48 32 39 15 7 9 24-11 76.9 83.0 81.1 + 94 11 21 12 12 7 6 5 4 4 5 7-11 76.0 82.8 81.1 + 94 11 22 4 9 4 6 4 6 9 6 6-11 74.5 82.6 81.1 + 94 11 23 4 5 3 3 4 4 2 6 4-11 75.6 82.4 81.0 + 94 11 24 3 6 7 3 3 6 4 4 5-11 76.6 82.2 81.0 + 94 11 25 3 5 2 2 3 2 4 4 3-11 79.4 82.0 81.0 + 94 11 26 4 12 39 94 80 32 18 9 36-11 81.0 81.8 81.0 + 94 11 27 18 27 32 39 39 32 22 12 28-11 78.3 81.5 81.0 + 94 11 28 9 7 22 22 15 15 12 5 13-11 77.6 81.3 81.0 + 94 11 29 4 9 7 7 7 12 12 12 9-11 77.4 81.1 81.0 + 94 11 30 18 22 27 39 18 12 12 18 21-11 76.1 80.9 81.0 + 94 12 1 12 22 18 18 22 18 6 27 18-11 76.9 80.7 81.0 + 94 12 2 18 22 22 15 39 22 22 32 24-11 76.8 80.5 81.0 + 94 12 3 39 12 18 9 18 5 9 9 15-11 79.5 80.4 81.0 + 94 12 4 12 6 5 6 5 3 12 3 7-11 79.5 80.3 81.0 + 94 12 5 4 5 7 7 9 9 6 12 7-11 78.4 80.1 81.1 + 94 12 6 15 15 56 18 22 32 27 27 27-11 76.2 80.0 81.1 + 94 12 7 27 18 18 9 9 22 12 22 17-11 77.7 79.8 81.1 + 94 12 8 18 12 15 15 12 12 15 15 14-11 78.8 79.6 81.1 + 94 12 9 18 6 9 9 9 7 9 15 10-11 84.0 79.5 81.1 + 94 12 10 18 9 6 6 4 12 12 12 10-11 83.8 79.3 81.1 + 94 12 11 7 6 5 5 6 15 27 22 12-11 92.3 79.3 81.1 + 94 12 12 22 15 12 9 9 12 22 22 15-11 96.4 79.3 81.1 + 94 12 13 22 27 27 12 15 18 6 6 17-11 93.8 79.3 81.1 + 94 12 14 9 6 2 6 6 5 12 15 8-11 91.7 79.4 81.1 + 94 12 15 9 12 18 12 39 27 22 32 21-11 90.3 79.6 81.0 + 94 12 16 18 22 22 18 27 15 6 6 17-11 90.1 79.6 81.0 + 94 12 17 6 7 12 7 5 7 9 6 7-11 88.9 79.7 80.9 + 94 12 18 6 6 6 3 6 9 7 7 6-11 84.6 79.7 80.9 + 94 12 19 5 18 6 7 7 3 2 4 7-11 82.3 79.8 80.9 + 94 12 20 9 7 9 9 9 12 12 15 10-11 79.8 79.8 80.9 + 94 12 21 9 6 9 4 6 5 4 5 6-11 79.6 79.9 80.9 + 94 12 22 7 12 2 2 3 2 2 2 4-11 79.5 80.0 80.9 + 94 12 23 15 9 9 12 3 9 5 12 9-11 77.2 80.0 80.9 + 94 12 24 27 27 39 32 32 39 39 39 34-11 77.0 80.1 80.9 + 94 12 25 32 22 15 12 18 18 9 18 18-11 78.0 80.1 80.9 + 94 12 26 27 15 12 12 15 22 15 22 18-11 77.2 80.2 80.8 + 94 12 27 9 9 6 6 9 6 39 27 14-11 73.4 80.2 80.8 + 94 12 28 18 5 3 6 12 15 5 12 10-11 76.3 80.3 80.8 + 94 12 29 22 15 27 18 12 12 5 4 14-11 77.0 80.3 80.8 + 94 12 30 9 18 7 6 5 5 5 3 7-11 74.0 80.4 80.8 + 94 12 31 3 5 6 4 4 4 5 7 5-11 74.8 80.5 80.8 + 95 1 1 4 0 3 5 2 4 12 3 4-11 72.9 80.5 80.8 + 95 1 2 5 9 12 18 9 22 39 27 18-11 74.8 80.6 80.8 + 95 1 3 56 27 32 22 18 39 22 32 31-11 74.3 80.6 80.8 + 95 1 4 27 22 18 18 22 12 15 12 18-11 74.4 80.7 80.7 + 95 1 5 18 15 18 27 27 27 27 22 23-11 73.8 80.7 80.7 + 95 1 6 12 12 12 18 18 12 15 32 16-11 72.0 80.7 80.7 + 95 1 7 12 9 12 15 15 9 9 12 12-11 72.2 80.8 80.7 + 95 1 8 18 9 5 4 7 7 9 4 8-11 71.3 80.9 80.7 + 95 1 9 7 7 18 4 3 4 5 7 7-11 71.4 81.0 80.7 + 95 1 10 3 3 5 6 9 6 12 18 8-11 70.9 81.2 80.6 + 95 1 11 18 18 12 18 32 15 9 9 16-11 72.8 81.4 80.6 + 95 1 12 12 3 3 3 3 4 6 9 5-11 73.7 81.5 80.6 + 95 1 13 4 15 18 9 7 4 5 5 8-11 72.5 81.5 80.6 + 95 1 14 6 4 5 3 2 3 5 7 4-11 74.7 81.6 80.5 + 95 1 15 6 3 5 3 3 3 3 3 4-11 78.0 81.6 80.5 + 95 1 16 9 7 6 32 27 12 27 18 17-11 80.1 81.7 80.5 + 95 1 17 15 22 27 39 15 27 56 94 37-11 80.8 81.8 80.5 + 95 1 18 80 94 56 22 15 7 7 12 37-11 83.9 81.9 80.5 + 95 1 19 7 4 2 6 7 4 4 3 5-11 87.3 81.9 80.4 + 95 1 20 3 3 2 3 5 5 18 12 6-11 89.6 82.0 80.4 + 95 1 21 9 7 6 4 3 7 15 12 8-11 93.4 81.9 80.4 + 95 1 22 9 5 4 5 15 9 6 9 8-11 92.5 81.9 80.4 + 95 1 23 12 18 5 4 4 2 5 5 7-11 93.0 81.8 80.3 + 95 1 24 6 5 4 5 4 2 3 2 4-11 94.1 81.7 80.3 + 95 1 25 5 9 6 6 5 5 4 3 5-11 86.8 81.6 80.3 + 95 1 26 5 2 2 4 4 4 2 4 3-11 83.1 81.5 80.3 + 95 1 27 3 2 3 5 6 5 3 2 4-11 85.8 81.4 80.3 + 95 1 28 2 4 4 4 3 2 4 4 3-11 80.2 81.3 80.3 + 95 1 29 7 39 12 22 27 32 32 94 33-11 82.1 81.2 80.3 + 95 1 30 56 48 27 27 22 39 48 48 39-11 83.9 81.1 80.2 + 95 1 31 56 32 27 7 22 22 48 18 29-11 84.2 81.1 80.2 + 95 2 1 15 18 15 15 15 15 18 7 15-11 84.6 81.1 80.2 + 95 2 2 18 27 27 22 27 39 22 27 26-11 83.5 81.1 80.2 + 95 2 3 22 27 18 18 27 22 32 27 24-11 80.4 81.1 80.2 + 95 2 4 56 22 18 12 22 27 15 12 23-11 83.6 81.2 80.2 + 95 2 5 7 4 6 3 4 7 5 3 5-11 78.8 81.2 80.2 + 95 2 6 15 12 5 7 12 15 5 12 10-11 82.0 81.5 80.2 + 95 2 7 22 15 12 5 4 5 5 39 13-11 81.5 81.5 80.2 + 95 2 8 27 56 48 32 32 12 5 7 27-11 83.2 81.7 80.2 + 95 2 9 4 9 6 2 0 2 2 2 3-11 81.5 81.9 80.2 + 95 2 10 0 0 0 2 2 5 3 6 2-11 79.3 82.1 80.2 + 95 2 11 12 12 56 18 27 27 22 48 28-11 79.0 82.3 80.2 + 95 2 12 32 27 15 22 15 39 56 32 30-11 79.1 82.6 80.1 + 95 2 13 56 32 39 39 67 39 18 32 40-11 83.5 82.8 80.1 + 95 2 14 48 27 12 18 48 32 27 12 28-11 80.4 83.0 80.0 + 95 2 15 18 18 12 15 7 22 18 22 17-11 82.9 83.2 80.0 + 95 2 16 6 7 7 6 5 18 5 7 8-11 83.5 83.3 80.0 + 95 2 17 4 4 9 9 7 7 5 5 6-11 86.9 83.4 80.0 + 95 2 18 15 15 7 9 7 9 15 5 10-11 86.7 83.5 80.0 + 95 2 19 6 12 7 6 4 5 6 9 7-11 92.4 83.6 80.0 + 95 2 20 6 9 5 5 4 5 5 3 5-11 88.8 83.6 80.0 + 95 2 21 6 4 4 7 4 0 4 7 5-11 87.1 83.7 80.0 + 95 2 22 2 3 4 4 2 0 2 2 2-11 83.4 83.7 80.0 + 95 2 23 4 4 7 6 6 4 3 4 5-11 82.9 83.7 80.0 + 95 2 24 4 2 3 3 0 2 5 4 3-11 81.7 83.7 80.0 + 95 2 25 0 0 0 2 3 2 2 2 1-11 81.6 83.6 80.0 + 95 2 26 6 15 27 9 12 15 18 15 15-11 84.5 83.5 80.1 + 95 2 27 9 27 15 27 32 22 48 22 25-11 85.9 83.4 80.1 + 95 2 28 32 27 32 48 12 15 67 39 34-11 89.1 83.2 80.1 + 95 3 1 27 39 32 67 12 32 39 32 35-11 88.3 83.1 80.1 + 95 3 2 27 39 39 22 22 39 12 12 27-11 88.7 83.0 80.1 + 95 3 3 18 5 5 4 4 3 5 6 6-11 89.4 82.8 80.0 + 95 3 4 9 5 7 12 18 22 39 94 26-11 87.6 82.7 80.0 + 95 3 5 39 9 9 18 15 15 22 15 18-11 82.9 82.6 79.9 + 95 3 6 5 15 4 2 3 4 0 0 4-11 82.2 82.6 79.8 + 95 3 7 0 4 3 3 3 5 4 3 3-11 82.7 82.7 79.8 + 95 3 8 5 5 5 2 2 0 5 3 3-11 79.6 82.7 79.7 + 95 3 9 3 12 18 6 7 9 48 32 17-11 75.8 82.8 79.7 + 95 3 10 56 22 9 7 12 12 15 18 19-11 78.1 83.0 79.6 + 95 3 11 39 18 22 4 15 32 39 67 30-11 75.1 83.0 79.6 + 95 3 12 80 80 27 18 15 27 39 56 43-11 75.3 83.0 79.5 + 95 3 13 32 22 27 39 56 80 39 22 40-11 76.6 83.0 79.5 + 95 3 14 27 27 18 18 22 22 22 15 21-11 78.1 83.0 79.5 + 95 3 15 9 15 18 15 9 4 15 18 13-11 80.2 82.8 79.5 + 95 3 16 18 18 15 9 15 12 12 9 14-11 83.3 82.7 79.4 + 95 3 17 6 12 7 6 7 12 9 7 8-11 82.5 82.6 79.4 + 95 3 18 7 5 6 4 4 2 5 3 5-11 90.9 82.4 79.4 + 95 3 19 6 4 4 2 3 4 5 5 4-11 83.4 82.3 79.4 + 95 3 20 4 0 3 5 7 7 5 2 4-11 88.3 82.1 79.4 + 95 3 21 0 3 4 2 2 2 2 2 2-11 89.3 81.9 79.4 + 95 3 22 2 4 4 3 3 3 2 3 3-11 92.9 81.8 79.5 + 95 3 23 3 0 0 12 9 9 9 5 6-11 93.6 81.7 79.5 + 95 3 24 9 4 7 3 5 6 4 4 5-11 94.4 81.6 79.5 + 95 3 25 6 9 4 6 4 3 5 6 5-11 91.8 81.5 79.5 + 95 3 26 7 5 18 32 67 56 32 27 31-11 89.9 81.4 79.5 + 95 3 27 18 7 27 18 27 18 22 18 19-11 88.6 81.3 79.5 + 95 3 28 22 18 18 7 22 32 18 6 18-11 83.4 81.3 79.5 + 95 3 29 15 39 27 18 18 12 9 12 19-11 80.7 81.2 79.5 + 95 3 30 15 12 5 6 15 6 4 3 8-11 79.5 81.1 79.5 + 95 3 31 5 5 7 12 6 7 7 7 7-11 76.7 81.0 79.5 + 95 4 1 3 2 2 2 5 22 39 27 13-11 75.3 80.9 79.5 + 95 4 2 32 67 9 27 27 6 5 4 22-11 76.2 80.8 79.5 + 95 4 3 2 2 2 2 2 0 2 2 2-11 75.2 80.7 79.5 + 95 4 4 5 3 4 2 2 4 2 5 3-11 73.1 80.7 79.4 + 95 4 5 12 7 5 18 7 6 15 9 10-11 72.2 80.8 79.4 + 95 4 6 12 5 2 2 3 2 7 12 6-11 71.9 80.9 79.4 + 95 4 7 27 67 80 56132207154 80100-11 70.7 81.1 79.4 + 95 4 8 27 39 39 48 27 56 18 18 34-11 72.0 81.2 79.3 + 95 4 9 39 32 32 27 22 27 12 12 25-11 72.9 81.3 79.3 + 95 4 10 15 39 27 39 27 27 15 15 26-11 74.8 81.2 79.3 + 95 4 11 9 32 22 15 12 15 48 22 22-11 78.0 81.1 79.3 + 95 4 12 32 27 12 9 9 15 15 7 16-11 82.3 80.9 79.3 + 95 4 13 12 18 7 4 3 6 5 9 8-11 83.3 80.6 79.3 + 95 4 14 12 5 3 3 4 4 5 6 5-11 88.9 80.4 79.3 + 95 4 15 4 4 2 2 5 5 4 2 4-11 92.0 80.2 79.3 + 95 4 16 3 2 5 4 2 2 6 6 4-11 89.7 80.0 79.2 + 95 4 17 15 6 4 4 2 4 3 4 5-11 89.6 79.9 79.2 + 95 4 18 9 5 5 9 6 7 7 5 7-11 90.7 79.7 79.2 + 95 4 19 7 9 9 4 3 4 6 7 6-11 92.6 79.6 79.2 + 95 4 20 6 15 9 6 7 9 6 4 8-11 87.2 79.5 79.1 + 95 4 21 2 2 2 0 2 3 3 3 2-11 85.5 79.5 79.1 + 95 4 22 4 2 2 9 22 27 32 15 14-11 84.8 79.4 79.1 + 95 4 23 22 15 18 22 18 27 15 39 22-11 77.6 79.4 79.1 + 95 4 24 27 48 32 9 12 27 32 18 26-11 73.4 79.4 79.1 + 95 4 25 39 39 12 7 12 12 12 6 17-11 71.3 79.4 79.0 + 95 4 26 15 18 12 12 18 22 15 32 18-11 70.2 79.4 79.0 + 95 4 27 27 18 94 32 32 15 15 5 30-11 69.1 79.4 79.0 + 95 4 28 7 12 15 22 18 9 6 5 12-11 68.6 79.3 78.9 + 95 4 29 9 7 6 5 12 6 7 7 7-11 69.0 79.4 78.8 + 95 4 30 5 3 3 3 3 2 5 7 4-11 68.2 79.4 78.8 + 95 5 1 0 3 2 2 3 3 3 6 3-11 69.7 79.4 78.7 + 95 5 2 12 48 27 15 48 94 56 94 49-11 69.9 79.3 78.6 + 95 5 3 80 56 48 67 39 32 32 32 48-11 70.2 79.1 78.6 + 95 5 4 48 67 48 15 27 18 22 32 35-11 71.8 79.0 78.5 + 95 5 5 32 56 39 67 48 39 32 32 43-11 74.2 78.8 78.5 + 95 5 6 56 18 48 39 15 9 15 12 27-11 77.8 78.6 78.5 + 95 5 7 9 18 27 27 27 15 27 39 24-11 79.0 78.4 78.5 + 95 5 8 32 32 9 12 27 12 15 18 20-11 79.4 78.3 78.4 + 95 5 9 9 9 9 9 6 5 18 12 10-11 79.2 78.2 78.4 + 95 5 10 7 7 3 5 6 5 6 5 6-11 79.3 78.1 78.4 + 95 5 11 9 6 6 5 6 5 6 5 6-11 78.4 78.1 78.4 + 95 5 12 9 6 6 5 9 6 7 4 7-11 82.4 78.1 78.4 + 95 5 13 5 9 7 9 18 12 5 7 9-11 82.2 78.1 78.4 + 95 5 14 6 9 9 5 4 5 5 3 6-11 81.6 78.0 78.4 + 95 5 15 2 3 3 4 7 4 5 9 5-11 87.8 78.0 78.4 + 95 5 16 12 27 32 39 80 56 56 56 45-11 95.9 78.1 78.3 + 95 5 17 39 67 39 27 12 18 22 15 30-11 97.3 78.1 78.3 + 95 5 18 9 5 6 7 15 6 12 22 10-11 93.4 78.1 78.3 + 95 5 19 9 12 22 9 7 7 15 9 11-11 88.3 78.2 78.3 + 95 5 20 15 12 12 15 7 9 22 15 13-11 82.8 78.3 78.3 + 95 5 21 12 6 3 3 4 3 4 3 5-11 77.0 78.3 78.3 + 95 5 22 6 9 5 5 6 4 3 9 6-11 72.6 78.4 78.3 + 95 5 23 7 4 4 5 9 18 48 67 20-11 70.4 78.4 78.3 + 95 5 24 18 56 39 32 15 22 12 12 26-11 68.8 78.3 78.3 + 95 5 25 15 22 7 5 12 9 15 6 11-11 68.9 78.3 78.2 + 95 5 26 7 6 6 12 22 12 22 15 13-11 68.1 78.2 78.2 + 95 5 27 4 6 5 6 5 7 9 2 6-11 67.5 78.1 78.2 + 95 5 28 6 7 6 5 9 6 5 7 6-11 68.4 78.0 78.2 + 95 5 29 4 6 4 5 12 7 9 6 7-11 68.7 77.9 78.2 + 95 5 30 9 32 39 67 67 27 48 22 39-11 69.4 77.8 78.1 + 95 5 31 32 18 22 27 32 39 48 18 30-11 70.9 77.7 78.1 + 95 6 1 32 27 22 18 27 39 22 15 25-11 72.5 77.6 78.1 + 95 6 2 18 27 15 15 18 22 12 15 18-11 75.4 77.5 78.1 + 95 6 3 22 39 32 22 15 15 22 15 23-11 76.8 77.5 78.1 + 95 6 4 7 4 6 6 6 9 7 6 6-11 81.4 77.5 78.0 + 95 6 5 7 6 5 3 4 7 6 12 6-11 84.2 77.6 78.0 + 95 6 6 12 5 5 6 9 5 7 6 7-11 81.8 77.7 78.0 + 95 6 7 12 3 5 5 4 5 6 9 6-11 85.0 77.7 78.0 + 95 6 8 5 6 3 3 2 3 3 2 3-11 86.8 77.8 78.0 + 95 6 9 3 3 4 5 5 6 6 6 5-11 89.0 77.9 78.0 + 95 6 10 12 18 9 9 5 6 3 4 8-11 87.0 77.9 77.9 + 95 6 11 9 9 6 3 3 3 3 3 5-11 85.1 77.9 77.9 + 95 6 12 3 3 4 4 3 4 3 2 3-11 83.3 77.9 77.8 + 95 6 13 2 2 3 3 2 2 3 3 3-11 79.2 77.9 77.8 + 95 6 14 2 0 3 5 6 6 12 9 5-11 78.1 77.9 77.7 + 95 6 15 5 6 6 5 6 5 6 5 6-11 75.6 77.9 77.6 + 95 6 16 22 12 4 9 15 7 27 7 13-11 73.1 77.8 77.6 + 95 6 17 7 5 5 6 4 4 4 5 5-11 72.1 77.8 77.5 + 95 6 18 4 12 39 18 18 6 4 12 14-11 71.8 77.7 77.4 + 95 6 19 15 27 27 32 67 18 32 15 29-11 73.7 77.6 77.4 + 95 6 20 9 48 32 12 15 27 12 9 21-11 74.2 77.5 77.4 + 95 6 21 12 18 9 9 9 9 7 7 10-11 74.7 77.4 77.3 + 95 6 22 9 6 5 6 12 7 5 6 7-11 75.5 77.3 77.3 + 95 6 23 6 7 12 9 6 9 4 4 7-11 74.3 77.3 77.3 + 95 6 24 4 5 6 4 4 4 5 4 5-11 73.4 77.2 77.2 + 95 6 25 0 4 5 6 27 32 39 18 16-11 73.2 77.0 77.2 + 95 6 26 32 27 18 12 7 9 15 15 17-11 73.2 76.8 77.2 + 95 6 27 7 6 9 5 3 4 5 7 6-11 74.7 76.5 77.2 + 95 6 28 6 5 6 6 12 12 12 22 10-11 77.0 76.3 77.2 + 95 6 29 5 4 5 4 7 15 6 5 6-11 80.1 76.2 77.2 + 95 6 30 15 9 7 22 27 22 48 56 26-11 80.8 76.1 77.2 + 95 7 1 48 15 12 7 6 5 6 7 13-11 81.5 76.1 77.2 + 95 7 2 9 3 3 4 4 5 9 5 5-11 80.3 76.1 77.2 + 95 7 3 12 6 5 9 9 4 6 18 9-11 80.7 76.1 77.2 + 95 7 4 12 9 5 3 7 9 5 4 7-11 83.5 76.2 77.1 + 95 7 5 4 3 3 4 4 3 3 3 3-11 82.9 76.2 77.2 + 95 7 6 3 2 2 3 2 3 3 4 3-11 83.6 76.3 77.2 + 95 7 7 5 9 3 3 5 4 4 2 4-11 83.3 76.3 77.2 + 95 7 8 3 4 5 5 9 5 4 2 5-11 84.2 76.4 77.2 + 95 7 9 2 3 3 5 12 9 6 3 5-11 82.9 76.4 77.2 + 95 7 10 2 2 3 2 3 3 3 2 3-11 79.9 76.5 77.3 + 95 7 11 2 2 2 0 2 2 4 4 2-11 78.6 76.5 77.3 + 95 7 12 4 2 0 2 4 5 4 6 3-11 76.7 76.5 77.3 + 95 7 13 6 7 6 5 4 5 5 2 5-11 74.9 76.5 77.3 + 95 7 14 3 2 3 5 4 9 12 9 6-11 76.8 76.5 77.2 + 95 7 15 6 6 6 6 6 5 6 6 6-11 76.8 76.4 77.2 + 95 7 16 5 3 6 6 56 80 32 56 31-11 75.9 76.4 77.2 + 95 7 17 39 27 18 15 27 32 9 18 23-11 74.7 76.3 77.2 + 95 7 18 18 7 7 9 18 6 12 6 10-11 74.4 76.3 77.1 + 95 7 19 6 9 12 7 5 4 9 22 9-11 72.8 76.2 77.1 + 95 7 20 15 9 6 22 7 6 4 4 9-11 72.0 76.1 77.1 + 95 7 21 3 3 5 6 6 6 5 4 5-11 70.8 76.0 77.0 + 95 7 22 3 6 4 4 7 7 7 5 5-11 71.1 75.9 77.0 + 95 7 23 12 5 3 3 7 9 9 6 7-11 70.7 75.8 76.9 + 95 7 24 15 22 56 22 22 9 32 27 26-11 71.5 75.8 76.8 + 95 7 25 27 12 5 5 3 4 3 4 8-11 72.0 75.7 76.8 + 95 7 26 6 6 5 4 6 5 5 6 5-11 71.6 75.7 76.7 + 95 7 27 5 7 5 3 3 3 9 7 5-11 72.7 75.8 76.7 + 95 7 28 7 4 3 4 4 4 7 12 6-11 72.6 75.8 76.6 + 95 7 29 12 7 2 3 4 7 4 5 6-11 72.0 75.8 76.6 + 95 7 30 6 0 2 7 5 6 6 15 6-11 71.9 75.7 76.6 + 95 7 31 6 6 5 2 3 6 5 12 6-11 72.9 75.7 76.5 + 95 8 1 7 5 5 6 3 3 3 2 4-11 74.8 75.6 76.5 + 95 8 2 4 3 4 3 5 7 12 3 5-11 75.7 75.5 76.5 + 95 8 3 6 6 15 6 9 7 6 5 8-11 75.5 75.4 76.5 + 95 8 4 3 4 5 3 3 4 6 9 5-11 75.1 75.4 76.4 + 95 8 5 3 5 4 7 6 12 4 6 6-11 77.2 75.4 76.4 + 95 8 6 3 3 4 2 4 3 6 6 4-11 77.3 75.3 76.4 + 95 8 7 3 3 3 9 12 7 15 15 8-11 75.8 75.3 76.3 + 95 8 8 32 27 15 9 9 7 48 18 21-11 75.6 75.2 76.3 + 95 8 9 32 22 15 9 18 22 27 32 22-11 75.5 75.1 76.3 + 95 8 10 22 27 18 15 7 9 9 7 14-11 75.0 75.0 76.2 + 95 8 11 5 6 9 7 7 6 6 9 7-11 74.9 75.0 76.2 + 95 8 12 18 4 3 7 9 4 6 12 8-11 73.8 74.9 76.2 + 95 8 13 15 15 9 6 7 5 12 27 12-11 72.7 74.8 76.1 + 95 8 14 39 22 39 22 12 15 15 22 23-11 71.9 74.7 76.1 + 95 8 15 18 22 12 9 12 6 18 12 14-11 73.2 74.6 76.1 + 95 8 16 7 18 22 5 6 5 3 3 9-11 72.3 74.5 76.0 + 95 8 17 9 7 7 15 18 15 12 6 11-11 71.5 74.4 76.0 + 95 8 18 5 4 3 4 7 7 9 7 6-11 73.6 74.2 75.9 + 95 8 19 9 5 15 5 6 7 15 15 10-11 73.4 74.1 75.9 + 95 8 20 5 6 6 5 7 5 4 4 5-11 73.0 74.1 75.8 + 95 8 21 3 3 4 5 4 2 2 2 3-11 72.7 74.0 75.8 + 95 8 22 4 2 2 2 18 9 32 56 16-11 71.9 73.9 75.7 + 95 8 23 32 22 15 12 6 4 4 4 12-11 75.9 73.9 75.7 + 95 8 24 6 4 4 5 9 6 7 9 6-11 78.8 73.8 75.6 + 95 8 25 18 27 18 27 6 7 7 12 15-11 78.8 73.8 75.6 + 95 8 26 7 9 9 5 6 3 4 7 6-11 78.9 73.7 75.6 + 95 8 27 9 7 6 6 5 6 9 9 7-11 81.6 73.6 75.6 + 95 8 28 3 3 4 5 6 6 6 4 5-11 83.2 73.6 75.5 + 95 8 29 15 12 9 18 7 7 9 7 11-11 79.7 73.6 75.5 + 95 8 30 6 7 5 3 4 3 4 3 4-11 78.9 73.7 75.4 + 95 8 31 3 3 2 2 2 5 3 4 3-11 77.0 73.8 75.4 + 95 9 1 6 3 2 3 3 4 5 2 4-11 75.0 74.0 75.3 + 95 9 2 4 2 2 3 4 4 6 4 4-11 74.6 74.3 75.3 + 95 9 3 6 4 3 3 3 4 5 5 4-11 74.9 74.5 75.2 + 95 9 4 2 6 6 3 5 3 3 9 5-11 75.6 74.7 75.2 + 95 9 5 15 12 12 27 56 39 56 56 34-11 75.9 74.8 75.1 + 95 9 6 67 15 18 22 18 18 7 18 23-11 73.0 75.0 75.1 + 95 9 7 22 22 15 27 18 27 18 6 19-11 71.2 75.1 75.1 + 95 9 8 15 56 94 56 22 39 22 6 39-11 70.1 75.2 75.1 + 95 9 9 18 32 18 15 15 7 5 7 15-11 69.7 75.3 75.0 + 95 9 10 3 4 6 7 6 9 18 39 12-11 68.9 75.4 75.0 + 95 9 11 67 39 18 15 15 22 18 18 27-11 68.9 75.5 75.0 + 95 9 12 9 9 5 9 6 12 27 27 13-11 69.5 75.6 75.0 + 95 9 13 15 22 22 39 12 15 9 12 18-11 70.1 75.6 75.0 + 95 9 14 12 9 5 4 4 5 9 12 8-11 70.3 75.5 74.9 + 95 9 15 22 39 22 27 32 48 15 4 26-11 70.9 75.5 74.9 + 95 9 16 12 9 15 15 15 5 7 9 11-11 70.4 75.4 74.9 + 95 9 17 9 9 4 5 6 5 6 2 6-11 70.5 75.4 74.8 + 95 9 18 2 0 0 4 2 2 5 6 3-11 72.3 75.4 74.8 + 95 9 19 4 2 3 4 2 4 6 4 4-11 74.3 75.3 74.7 + 95 9 20 6 15 12 6 12 7 6 9 9-11 76.2 75.3 74.7 + 95 9 21 7 7 3 4 6 7 5 5 6-11 74.5 75.3 74.6 + 95 9 22 5 3 2 2 3 3 5 5 4-11 75.1 75.3 74.5 + 95 9 23 18 15 3 9 15 7 15 12 12-11 75.5 75.3 74.5 + 95 9 24 15 18 6 9 3 5 4 2 8-11 74.2 75.2 74.4 + 95 9 25 4 7 7 4 2 5 4 2 4-11 74.5 75.2 74.4 + 95 9 26 2 6 5 7 3 3 5 3 4-11 73.9 75.3 74.3 + 95 9 27 7 12 9 22 32 56132 56 41-11 72.6 75.3 74.3 + 95 9 28 7 15 56 27 9 3 2 3 15-11 73.0 75.3 74.3 + 95 9 29 2 2 3 5 3 5 2 2 3-11 74.0 75.3 74.2 + 95 9 30 3 3 5 6 5 3 3 7 4-11 73.0 75.3 74.2 + 95 10 1 3 2 0 2 0 2 7 6 3-11 72.8 75.4 74.2 + 95 10 2 12 4 12 12 27 12 12 39 16-11 72.7 75.4 74.2 + 95 10 3 32 18 12 12 18 39 22 18 21-11 71.1 75.4 74.2 + 95 10 4 27 32 22111111 67 39 48 57-11 70.8 75.3 74.2 + 95 10 5 22 22 22 39 39 9 6 32 24-11 69.8 75.2 74.2 + 95 10 6 9 27 18 48 18 39 12 27 25-11 70.9 75.2 74.2 + 95 10 7 39 32 39 27 27 18 9 15 26-11 72.8 75.1 74.2 + 95 10 8 18 22 18 32 32 48 48 9 28-11 74.1 75.0 74.1 + 95 10 9 4 18 39 27 18 39 18 27 24-11 76.0 74.9 74.1 + 95 10 10 15 22 22 5 4 3 2 3 10-11 82.1 74.8 74.1 + 95 10 11 5 27 22 5 12 27 7 7 14-11 89.1 74.8 74.1 + 95 10 12 18 32 39 27 22 5 9 12 21-11 91.8 74.7 74.1 + 95 10 13 27 6 7 7 6 7 9 9 10-11 87.5 74.7 74.0 + 95 10 14 5 6 5 6 4 5 7 9 6-11 86.7 74.6 74.0 + 95 10 15 7 4 3 4 6 6 2 9 5-11 82.5 74.5 73.9 + 95 10 16 7 7 3 4 7 6 15 6 7-11 85.0 74.5 73.8 + 95 10 17 7 18 18 6 5 7 3 4 9-11 84.1 74.4 73.8 + 95 10 18 7 6 4 27 15 27 56111 32-11 80.9 74.4 73.7 + 95 10 19111 56 32 15 6 5 7 15 31-11 79.8 74.4 73.7 + 95 10 20 9 67 27 48 27 56 27 9 34-11 81.8 74.4 73.6 + 95 10 21 9 5 15 9 22 18 7 18 13-11 80.3 74.5 73.6 + 95 10 22 12 12 15 5 9 6 22 12 12-11 79.7 74.5 73.6 + 95 10 23 18 48 18 22 12 9 18 9 19-11 75.9 74.5 73.6 + 95 10 24 15 2 4 5 12 27 9 5 10-11 73.5 74.5 73.5 + 95 10 25 6 12 6 3 3 2 0 0 4-11 73.1 74.5 73.5 + 95 10 26 0 2 0 3 2 5 5 7 3-11 73.0 74.6 73.5 + 95 10 27 6 3 3 2 6 9 3 12 6-11 73.1 74.6 73.5 + 95 10 28 4 3 0 0 0 0 3 3 2-11 72.9 74.6 73.5 + 95 10 29 3 3 5 5 4 0 0 3 3-11 72.8 74.6 73.5 + 95 10 30 3 0 2 6 22 39 9 15 12-11 72.3 74.6 73.5 + 95 10 31 39 22 18 7 6 15 18 18 18-11 72.2 74.5 73.5 + 95 11 1 27 39 32 15 32 6 32 18 25-11 73.3 74.4 73.5 + 95 11 2 12 39 22 27 15 27 12 2 20-11 72.1 74.4 73.5 + 95 11 3 3 7 12 5 3 3 5 2 5-11 71.4 74.3 73.5 + 95 11 4 0 5 5 6 18 39 7 4 11-11 72.0 74.2 73.5 + 95 11 5 22 9 5 9 27 22 12 39 18-11 73.9 74.2 73.5 + 95 11 6 27 18 39 15 32 15 22 9 22-11 73.5 74.1 73.5 + 95 11 7 12 15 12 9 7 4 9 7 9-11 73.2 74.0 73.5 + 95 11 8 9 9 6 7 4 7 5 5 7-11 74.8 73.9 73.5 + 95 11 9 5 3 4 3 3 3 4 4 4-11 75.7 73.8 73.5 + 95 11 10 9 9 4 3 4 5 5 3 5-11 76.5 73.8 73.5 + 95 11 11 5 5 2 5 5 3 4 15 6-11 75.9 73.7 73.5 + 95 11 12 7 9 18 6 9 5 22 5 10-11 74.6 73.7 73.4 + 95 11 13 2 4 3 2 7 7 6 3 4-11 71.5 73.7 73.4 + 95 11 14 5 3 4 4 3 3 3 7 4-11 73.4 73.6 73.4 + 95 11 15 5 7 3 4 2 0 2 0 3-11 75.0 73.6 73.3 + 95 11 16 4 0 2 3 4 2 3 15 4-11 74.2 73.7 73.3 + 95 11 17 18 9 6 6 4 3 3 6 7-11 73.4 73.6 73.2 + 95 11 18 4 5 5 5 3 4 5 7 5-11 73.4 73.6 73.2 + 95 11 19 9 12 12 4 3 3 5 18 8-11 72.2 73.6 73.1 + 95 11 20 6 3 12 5 2 0 2 5 4-11 71.5 73.5 73.1 + 95 11 21 4 4 3 2 2 5 3 3 3-11 71.1 73.3 73.1 + 95 11 22 5 6 3 5 5 12 3 7 6-11 71.0 73.1 73.1 + 95 11 23 12 3 5 4 2 2 4 4 5-11 70.9 72.9 73.1 + 95 11 24 3 0 2 0 2 3 2 2 2-11 70.4 72.8 73.1 + 95 11 25 4 2 0 2 0 0 2 5 2-11 69.9 72.8 73.1 + 95 11 26 7 7 0 0 0 0 0 0 2-11 70.8 72.7 73.1 + 95 11 27 3 4 15 94 22 22 22 18 25-11 68.9 72.7 73.1 + 95 11 28 7 12 9 9 5 9 15 12 10-11 71.5 72.7 73.1 + 95 11 29 27 15 27 9 7 22 6 6 15-11 70.4 72.6 73.1 + 95 11 30 12 18 15 12 5 2 3 3 9-11 72.3 72.5 73.1 + 95 12 1 7 12 4 7 22 32 27 39 19-11 70.7 72.4 73.1 + 95 12 2 27 7 9 9 18 6 7 7 11-11 71.2 72.3 73.1 + 95 12 3 4 3 5 7 6 7 18 12 8-11 71.2 72.2 73.0 + 95 12 4 32 39 18 18 5 7 4 7 16-11 70.7 72.1 73.0 + 95 12 5 6 3 2 3 2 3 6 9 4-11 71.4 72.0 73.0 + 95 12 6 0 3 3 4 4 6 6 7 4-11 71.8 72.0 73.0 + 95 12 7 4 4 3 3 6 6 2 2 4-11 71.9 71.9 72.9 + 95 12 8 2 4 3 2 0 0 2 4 2-11 71.8 71.8 72.9 + 95 12 9 9 27 6 7 9 4 4 5 9-11 71.6 71.8 72.8 + 95 12 10 9 12 6 3 2 2 2 2 5-11 71.3 71.7 72.8 + 95 12 11 6 6 2 4 3 3 4 2 4-11 71.1 71.7 72.8 + 95 12 12 2 3 3 2 5 7 15 6 5-11 70.0 71.6 72.7 + 95 12 13 5 3 0 2 0 0 3 2 2-11 70.4 71.6 72.7 + 95 12 14 7 9 4 3 5 4 5 2 5-11 67.6 71.6 72.7 + 95 12 15 4 4 6 6 22 27 18 12 12-11 68.0 71.6 72.7 + 95 12 16 27 56 32 12 18 5 5 4 20-11 67.7 71.6 72.7 + 95 12 17 3 4 12 12 7 18 12 7 9-11 67.1 71.6 72.6 + 95 12 18 5 3 2 4 4 4 2 2 3-11 66.4 71.5 72.6 + 95 12 19 12 5 6 3 5 9 4 3 6-11 67.0 71.5 72.6 + 95 12 20 2 4 2 4 12 6 2 0 4-11 67.3 71.4 72.6 + 95 12 21 2 2 3 3 5 12 12 18 7-11 67.8 71.4 72.6 + 95 12 22 18 12 12 7 15 18 48 27 20-11 68.9 71.4 72.6 + 95 12 23 22 12 3 9 5 3 7 2 8-11 69.9 71.4 72.6 + 95 12 24 7 9 48 39 48 27 9 18 26-11 69.9 71.4 72.6 + 95 12 25 12 15 9 12 15 18 15 12 14-11 70.1 71.4 72.6 + 95 12 26 12 27 18 9 15 9 18 9 15-11 71.7 71.3 72.6 + 95 12 27 12 7 6 5 7 6 7 7 7-11 71.5 71.3 72.6 + 95 12 28 3 4 5 3 2 7 3 4 4-11 73.4 71.2 72.6 + 95 12 29 3 3 4 2 2 4 5 6 4-11 73.9 71.1 72.6 + 95 12 30 5 3 2 3 3 4 3 3 3-11 72.8 71.1 72.6 + 95 12 31 4 6 18 5 9 7 7 4 8-11 72.7 71.0 72.5 + 96 1 1 4 0 2 5 5 4 12 7 5-11 72.6 71.0 72.5 + 96 1 2 6 0 3 4 4 12 9 22 8-11 72.3 71.0 72.5 + 96 1 3 22 4 7 7 12 6 3 5 8-11 78.2 70.9 72.5 + 96 1 4 4 3 4 6 9 6 3 5 5-11 83.1 70.9 72.4 + 96 1 5 9 7 9 7 7 7 7 12 8-11 82.1 70.8 72.4 + 96 1 6 12 12 4 3 5 6 5 5 7-11 79.9 70.8 72.3 + 96 1 7 3 4 4 3 2 3 7 9 4-11 79.8 70.8 72.3 + 96 1 8 6 3 4 3 2 4 4 2 4-11 76.7 70.8 72.3 + 96 1 9 3 2 0 3 5 3 3 4 3-11 73.4 70.7 72.3 + 96 1 10 6 2 2 2 3 3 6 7 4-11 71.4 70.7 72.4 + 96 1 11 3 2 4 3 4 3 7 7 4-11 69.1 70.7 72.4 + 96 1 12 6 3 4 6 4 6 5 32 8-11 67.2 70.7 72.4 + 96 1 13 18 48 48 32 27 39 9 12 29-11 66.7 70.7 72.4 + 96 1 14 12 5 9 48 32 18 22 56 25-11 67.4 70.7 72.3 + 96 1 15 39 15 7 9 18 12 7 18 16-11 67.9 70.7 72.3 + 96 1 16 18 7 7 6 5 7 9 7 8-11 67.6 70.7 72.3 + 96 1 17 9 15 7 5 6 9 27 15 12-11 68.2 70.7 72.3 + 96 1 18 9 18 9 6 5 12 12 5 10-11 68.7 70.7 72.3 + 96 1 19 3 4 9 6 6 12 12 32 11-11 68.5 70.7 72.3 + 96 1 20 12 7 27 18 12 12 4 3 12-11 69.1 70.7 72.3 + 96 1 21 5 5 12 7 4 7 7 12 7-11 69.5 70.7 72.2 + 96 1 22 9 4 3 3 7 9 7 7 6-11 70.0 70.7 72.2 + 96 1 23 12 4 3 6 5 3 4 2 5-11 71.0 70.7 72.2 + 96 1 24 2 4 2 3 4 15 12 9 6-11 70.7 70.7 72.2 + 96 1 25 6 6 4 4 3 4 7 9 5-11 71.7 70.7 72.2 + 96 1 26 18 9 6 4 4 12 9 5 8-11 71.5 70.7 72.2 + 96 1 27 9 7 3 7 7 6 7 12 7-11 71.6 70.7 72.2 + 96 1 28 6 9 9 3 2 4 18 18 9-11 71.4 70.7 72.2 + 96 1 29 22 18 32 22 12 18 22 9 19-11 71.8 70.7 72.3 + 96 1 30 12 15 3 3 5 6 5 18 8-11 72.5 70.7 72.3 + 96 1 31 18 9 9 7 9 6 9 9 10-11 74.5 70.7 72.3 + 96 2 1 15 4 4 3 5 12 9 7 7-11 72.9 70.8 72.3 + 96 2 2 18 12 6 7 7 18 6 4 10-11 74.2 70.8 72.3 + 96 2 3 3 4 4 4 6 3 2 5 4-11 71.9 70.8 72.4 + 96 2 4 3 5 4 3 6 7 4 12 6-11 71.4 70.8 72.4 + 96 2 5 9 15 2 2 3 6 4 3 6-11 69.4 70.8 72.4 + 96 2 6 5 3 3 3 0 0 6 4 3-11 69.2 70.8 72.4 + 96 2 7 7 4 4 5 6 7 6 18 7-11 68.2 70.7 72.4 + 96 2 8 9 7 7 3 7 9 7 9 7-11 65.7 70.7 72.4 + 96 2 9 12 7 6 7 6 4 7 9 7-11 68.1 70.6 72.3 + 96 2 10 3 9 6 3 7 15 18 27 11-11 68.0 70.6 72.3 + 96 2 11 39 48 12 32 7 12 15 15 23-11 68.2 70.6 72.3 + 96 2 12 15 15 22 15 18 5 7 18 14-11 67.3 70.6 72.3 + 96 2 13 9 12 27 7 7 15 22 12 14-11 67.0 70.5 72.3 + 96 2 14 32 12 15 18 15 15 7 5 15-11 67.2 70.3 72.3 + 96 2 15 15 9 5 5 5 4 18 7 9-11 67.4 70.2 72.3 + 96 2 16 7 15 7 5 7 15 4 15 9-11 68.5 70.1 72.3 + 96 2 17 18 15 6 5 3 4 7 6 8-11 69.0 70.0 72.3 + 96 2 18 5 7 9 6 7 18 12 27 11-11 68.6 69.9 72.3 + 96 2 19 9 12 7 7 4 2 7 9 7-11 69.4 69.9 72.3 + 96 2 20 9 7 6 5 15 7 5 9 8-11 70.6 69.9 72.3 + 96 2 21 6 6 9 5 4 2 3 5 5-11 70.4 69.9 72.3 + 96 2 22 9 18 15 6 4 4 7 5 9-11 70.1 69.9 72.3 + 96 2 23 12 12 9 18 18 32 7 9 15-11 72.3 70.0 72.3 + 96 2 24 27 56 15 12 6 9 22 15 20-11 74.1 70.0 72.3 + 96 2 25 12 9 12 12 12 39 27 22 18-11 71.8 70.0 72.2 + 96 2 26 27 12 12 18 15 6 12 22 16-11 70.9 70.0 72.2 + 96 2 27 9 15 9 5 9 12 27 22 14-11 70.7 70.0 72.2 + 96 2 28 15 22 6 5 4 4 4 7 8-11 70.8 70.0 72.2 + 96 2 29 3 5 4 4 7 7 22 12 8-11 70.9 70.1 72.2 + 96 3 1 6 5 3 5 4 5 7 6 5-11 70.6 70.1 72.2 + 96 3 2 5 4 3 0 3 3 3 6 3-11 69.8 70.0 72.2 + 96 3 3 6 5 9 6 7 7 6 6 7-11 69.0 70.0 72.2 + 96 3 4 7 15 12 4 6 15 9 7 9-11 68.1 70.0 72.2 + 96 3 5 6 9 6 6 4 5 7 6 6-11 68.0 70.0 72.2 + 96 3 6 0 3 4 7 9 6 3 2 4-11 68.4 69.9 72.2 + 96 3 7 2 0 4 3 4 2 3 2 3-11 66.8 69.9 72.2 + 96 3 8 5 18 22 12 7 2 0 2 9-11 68.8 69.9 72.2 + 96 3 9 5 9 7 7 5 7 12 6 7-11 66.6 69.9 72.2 + 96 3 10 5 6 12 7 12 6 15 22 11-11 68.2 69.9 72.2 + 96 3 11 48 67 27 18 15 9 15 22 28-11 70.9 69.9 72.2 + 96 3 12 9 22 7 9 12 15 18 22 14-11 72.4 69.9 72.2 + 96 3 13 27 18 15 48 22 18 12 9 21-11 70.5 69.9 72.2 + 96 3 14 15 12 12 6 5 3 7 9 9-11 70.0 69.9 72.2 + 96 3 15 9 6 6 4 6 5 7 3 6-11 69.6 69.8 72.1 + 96 3 16 7 18 5 7 6 5 4 3 7-11 70.3 69.8 72.1 + 96 3 17 9 32 15 9 9 12 9 7 13-11 70.0 69.8 72.1 + 96 3 18 18 12 6 7 7 5 9 7 9-11 70.0 69.8 72.1 + 96 3 19 6 15 22 9 12 18 18 18 15-11 69.4 69.8 72.1 + 96 3 20 15 22 12 12 18 18 48 39 23-11 68.8 69.8 72.1 + 96 3 21 39 22 22 27 32 39 56 67 38-11 69.9 69.9 72.1 + 96 3 22 15 12 7 18 7 32 32 12 17-11 73.4 69.9 72.1 + 96 3 23 15 12 6 4 3 4 9 7 8-11 71.6 69.9 72.1 + 96 3 24 32 7 9 9 12 22 22 48 20-11 70.9 69.9 72.0 + 96 3 25 39 27 22 7 18 27 9 5 19-11 72.1 70.0 72.0 + 96 3 26 15 18 9 5 7 12 9 7 10-11 71.6 70.0 72.0 + 96 3 27 18 18 6 12 12 4 4 12 11-11 71.6 70.1 72.0 + 96 3 28 6 22 7 9 12 6 5 7 9-11 71.7 70.2 72.0 + 96 3 29 6 6 5 4 4 7 7 9 6-11 70.3 70.3 72.0 + 96 3 30 7 5 4 3 4 6 6 7 5-11 70.1 70.4 72.0 + 96 3 31 5 4 6 5 3 6 5 9 5-11 70.0 70.5 72.0 + 96 4 1 15 15 9 6 7 5 6 7 9-11 68.1 70.6 72.0 + 96 4 2 3 4 3 4 3 5 4 9 4-11 70.6 70.7 72.0 + 96 4 3 5 3 2 6 6 7 5 15 6-11 71.1 70.8 72.0 + 96 4 4 12 9 12 6 27 18 4 7 12-11 70.2 70.8 72.0 + 96 4 5 15 3 6 4 2 6 4 9 6-11 70.0 70.7 72.0 + 96 4 6 5 4 5 3 3 2 0 2 3-11 68.8 70.8 72.0 + 96 4 7 0 3 0 3 2 0 2 2 2-11 68.6 70.8 71.9 + 96 4 8 2 4 2 2 7 6 4 15 5-11 68.6 70.8 71.9 + 96 4 9 15 12 15 7 7 15 9 12 12-11 69.3 70.8 71.9 + 96 4 10 15 7 7 6 3 5 3 4 6-11 69.1 70.8 71.9 + 96 4 11 9 9 5 5 7 9 3 18 8-11 68.8 70.7 71.8 + 96 4 12 27 27 32 39 22 18 18 22 26-11 68.7 70.7 71.7 + 96 4 13 6 6 4 4 7 7 6 27 8-11 69.3 70.7 71.7 + 96 4 14 15 22 22 12 22 9 22132 32-11 69.1 70.7 71.6 + 96 4 15 48 18 32 9 7 12 6 12 18-11 68.5 70.7 71.6 + 96 4 16 12 7 9 6 6 12 5 18 9-11 68.8 70.7 71.5 + 96 4 17 32 39 12 15 15 48 32 56 31-11 69.9 70.8 71.5 + 96 4 18 32 56 18 18 22 9 15 27 25-11 70.8 70.8 71.5 + 96 4 19 18 18 22 22 22 48 48 18 27-11 71.2 70.8 71.4 + 96 4 20 22 27 9 22 27 7 12 9 17-11 72.3 70.8 71.4 + 96 4 21 22 9 18 9 12 7 12 12 13-11 74.8 70.8 71.4 + 96 4 22 12 22 6 6 7 5 5 5 9-11 73.2 70.7 71.3 + 96 4 23 18 18 9 5 6 6 15 9 11-11 71.9 70.7 71.3 + 96 4 24 6 5 2 4 5 6 9 5 5-11 69.5 70.8 71.3 + 96 4 25 9 9 4 3 5 4 3 3 5-11 68.7 70.8 71.3 + 96 4 26 7 4 2 3 3 5 3 2 4-11 69.1 70.8 71.3 + 96 4 27 5 2 3 4 5 3 7 18 6-11 69.2 70.9 71.3 + 96 4 28 6 7 5 3 3 4 3 3 4-11 68.6 70.9 71.3 + 96 4 29 2 6 5 4 5 5 5 4 5-11 69.5 71.0 71.3 + 96 4 30 6 7 5 5 6 5 5 3 5-11 69.6 71.0 71.3 + 96 5 1 6 12 7 5 4 4 6 4 6-11 68.9 71.0 71.2 + 96 5 2 6 5 6 6 7 5 3 5 5-11 69.0 71.0 71.2 + 96 5 3 4 7 4 4 9 7 4 12 6-11 69.5 70.9 71.2 + 96 5 4 15 7 4 5 12 9 12 12 10-11 70.6 70.9 71.2 + 96 5 5 15 7 15 5 5 4 0 3 7-11 72.0 70.9 71.2 + 96 5 6 6 5 4 4 5 2 5 5 5-11 76.0 70.9 71.2 + 96 5 7 7 3 2 5 5 3 4 5 4-11 76.3 70.9 71.2 + 96 5 8 7 9 7 5 3 4 4 3 5-11 77.5 70.8 71.2 + 96 5 9 5 7 2 2 6 6 3 5 5-11 77.7 70.8 71.1 + 96 5 10 4 7 3 4 4 4 7 6 5-11 79.1 70.8 71.1 + 96 5 11 4 6 4 4 7 4 4 3 5-11 78.0 70.9 71.1 + 96 5 12 3 3 3 4 2 3 7 9 4-11 75.1 70.9 71.1 + 96 5 13 15 9 22 9 15 15 9 15 14-11 74.3 70.9 71.1 + 96 5 14 15 15 7 7 6 5 12 22 11-11 73.4 70.9 71.1 + 96 5 15 3 5 15 6 9 7 15 4 8-11 72.5 71.0 71.1 + 96 5 16 7 9 12 6 5 6 18 7 9-11 72.6 71.0 71.0 + 96 5 17 9 6 9 18 4 3 4 6 7-11 72.9 71.1 71.0 + 96 5 18 3 5 2 0 2 2 2 0 2-11 72.0 71.2 71.0 + 96 5 19 3 2 6 7 6 7 15 9 7-11 70.4 71.2 71.0 + 96 5 20 22 4 4 6 15 6 9 15 10-11 69.6 71.3 71.0 + 96 5 21 15 7 7 9 6 9 9 4 8-11 68.5 71.3 71.0 + 96 5 22 3 3 3 3 7 4 6 15 6-11 68.1 71.4 71.0 + 96 5 23 6 6 5 2 5 4 3 4 4-11 68.9 71.4 71.0 + 96 5 24 6 9 6 5 7 4 15 6 7-11 69.0 71.4 71.1 + 96 5 25 5 12 2 5 5 6 6 9 6-11 68.7 71.5 71.1 + 96 5 26 12 9 5 6 3 6 2 2 6-11 68.7 71.5 71.2 + 96 5 27 0 4 5 6 6 22 15 15 9-11 68.4 71.5 71.3 + 96 5 28 6 4 5 3 4 3 3 4 4-11 67.8 71.6 71.4 + 96 5 29 4 5 6 15 9 9 9 9 8-11 68.3 71.7 71.4 + 96 5 30 12 5 6 9 5 7 7 6 7-11 68.4 71.9 71.5 + 96 5 31 6 6 5 9 6 6 7 12 7-11 69.9 72.1 71.6 + 96 6 1 5 5 3 2 4 4 2 5 4-11 70.4 72.1 71.6 + 96 6 2 4 5 3 2 2 4 6 5 4-11 70.2 72.2 71.6 + 96 6 3 2 3 4 6 4 3 3 5 4-11 71.2 72.2 71.6 + 96 6 4 5 6 4 3 3 5 4 5 4-11 71.2 72.2 71.6 + 96 6 5 4 7 5 4 3 4 7 12 6-11 72.8 72.2 71.6 + 96 6 6 9 32 22 18 12 9 7 5 14-11 73.8 72.2 71.6 + 96 6 7 3 5 4 6 4 4 5 2 4-11 75.4 72.2 71.6 + 96 6 8 3 3 4 5 4 3 9 5 5-11 72.4 72.2 71.6 + 96 6 9 3 3 3 2 4 6 5 4 4-11 72.0 72.1 71.6 + 96 6 10 4 6 3 6 6 4 4 3 5-11 71.1 72.1 71.6 + 96 6 11 2 4 4 3 6 4 4 5 4-11 70.2 72.1 71.6 + 96 6 12 5 4 5 3 5 3 4 2 4-11 69.5 72.1 71.6 + 96 6 13 2 4 3 3 2 0 2 3 2-11 70.3 72.1 71.6 + 96 6 14 3 4 4 4 4 2 3 3 3-11 69.8 72.0 71.6 + 96 6 15 3 4 3 5 6 6 12 6 6-11 69.5 72.0 71.7 + 96 6 16 6 7 4 3 5 5 5 3 5-11 69.0 72.0 71.7 + 96 6 17 6 9 3 6 7 7 5 12 7-11 69.6 72.0 71.8 + 96 6 18 4 4 6 4 4 5 6 22 7-11 69.9 72.0 71.8 + 96 6 19 32 15 9 9 7 9 6 9 12-11 70.7 72.0 71.9 + 96 6 20 9 7 6 6 6 5 5 3 6-11 71.9 72.1 71.9 + 96 6 21 5 2 5 4 7 2 3 5 4-11 72.6 72.1 71.9 + 96 6 22 5 2 3 2 4 4 4 5 4-11 72.0 72.2 72.0 + 96 6 23 4 3 2 3 7 5 4 3 4-11 70.9 72.3 72.0 + 96 6 24 12 5 5 4 4 5 9 4 6-11 74.7 72.4 72.0 + 96 6 25 2 2 2 2 4 3 3 7 3-11 74.3 72.5 72.0 + 96 6 26 5 3 4 4 4 3 3 6 4-11 74.2 72.5 72.0 + 96 6 27 4 5 5 15 6 5 6 5 6-11 73.8 72.6 72.0 + 96 6 28 12 6 5 3 5 3 5 9 6-11 73.8 72.6 72.0 + 96 6 29 12 4 3 4 9 15 15 12 9-11 73.3 72.6 72.0 + 96 6 30 6 5 6 4 4 2 4 6 5-11 73.1 72.6 72.0 + 96 7 1 6 3 0 2 5 4 18 15 7-11 72.4 72.7 72.0 + 96 7 2 12 6 3 4 3 5 6 12 6-11 72.8 72.8 72.0 + 96 7 3 18 18 7 9 7 6 6 6 10-11 71.3 72.8 72.0 + 96 7 4 15 18 9 4 4 5 7 4 8-11 71.5 72.8 72.0 + 96 7 5 15 22 7 12 7 6 5 2 10-11 71.0 72.9 72.0 + 96 7 6 3 5 4 6 5 6 5 3 5-11 70.5 72.9 71.9 + 96 7 7 7 9 12 4 12 9 6 2 8-11 74.3 72.9 71.9 + 96 7 8 6 6 18 7 15 15 6 9 10-11 84.3 72.9 71.9 + 96 7 9 6 4 3 4 4 2 2 2 3-11 86.5 72.9 71.9 + 96 7 10 0 3 3 3 2 3 3 2 2-11 82.5 72.9 71.9 + 96 7 11 2 3 4 2 6 4 3 5 4-11 79.6 72.9 71.9 + 96 7 12 5 9 12 7 6 5 9 12 8-11 76.2 72.9 71.9 + 96 7 13 7 5 4 4 15 6 5 7 7-11 72.5 73.0 71.9 + 96 7 14 5 6 6 4 4 3 6 15 6-11 70.0 73.0 71.9 + 96 7 15 6 5 4 5 9 18 12 7 8-11 69.3 73.1 71.9 + 96 7 16 3 6 3 6 6 5 4 7 5-11 69.1 73.1 71.9 + 96 7 17 12 15 6 6 12 7 5 5 9-11 69.0 73.2 71.9 + 96 7 18 6 4 7 4 4 9 4 5 5-11 67.0 73.2 71.9 + 96 7 19 6 5 4 4 6 4 3 5 5-11 68.3 73.2 72.0 + 96 7 20 12 9 6 9 12 7 7 5 8-11 67.5 73.2 72.0 + 96 7 21 6 6 4 6 6 9 12 6 7-11 67.2 73.3 72.0 + 96 7 22 7 6 5 3 5 5 12 6 6-11 68.2 73.4 72.0 + 96 7 23 6 7 4 4 4 6 5 3 5-11 68.9 73.4 72.0 + 96 7 24 2 4 4 4 3 4 3 7 4-11 68.3 73.5 72.0 + 96 7 25 5 4 4 6 5 7 9 6 6-11 70.4 73.5 72.0 + 96 7 26 6 6 5 3 4 4 6 7 5-11 72.4 73.5 72.0 + 96 7 27 3 5 4 5 4 4 2 0 3-11 75.6 73.6 72.0 + 96 7 28 5 3 0 3 12 22 32 9 11-11 77.8 73.6 72.0 + 96 7 29 4 6 6 5 5 5 2 3 5-11 80.3 73.6 72.0 + 96 7 30 7 12 9 5 5 2 9 7 7-11 82.3 73.6 72.0 + 96 7 31 22 6 6 27 22 18 7 15 15-11 82.7 73.5 72.0 + 96 8 1 18 15 12 7 12 7 6 18 12-11 82.8 73.5 72.0 + 96 8 2 12 5 15 9 15 6 4 5 9-11 81.9 73.5 72.0 + 96 8 3 6 9 6 12 5 5 3 7 7-11 81.6 73.4 72.0 + 96 8 4 3 4 7 7 5 6 5 4 5-11 79.9 73.3 72.0 + 96 8 5 7 9 6 4 6 4 5 6 6-11 76.2 73.3 72.0 + 96 8 6 4 4 4 4 9 9 15 7 7-11 75.1 73.2 72.0 + 96 8 7 3 4 5 5 3 4 12 6 5-11 73.7 73.1 72.0 + 96 8 8 4 5 3 4 3 4 3 5 4-11 71.7 73.1 72.0 + 96 8 9 7 2 2 7 9 9 7 12 7-11 72.1 73.0 72.1 + 96 8 10 6 7 4 3 4 3 3 3 4-11 73.6 73.0 72.1 + 96 8 11 6 3 5 2 2 4 5 7 4-11 74.8 72.9 72.1 + 96 8 12 5 5 4 4 4 3 3 7 4-11 72.0 72.9 72.1 + 96 8 13 12 6 4 4 6 3 3 4 5-11 71.4 72.9 72.1 + 96 8 14 6 6 4 9 18 15 22 15 12-11 70.5 72.9 72.1 + 96 8 15 7 5 7 9 5 6 4 4 6-11 69.3 72.9 72.1 + 96 8 16 6 5 6 15 12 15 18 9 11-11 69.3 72.9 72.1 + 96 8 17 22 15 9 9 7 6 4 7 10-11 69.5 72.8 72.1 + 96 8 18 3 3 4 6 5 7 5 5 5-11 68.4 72.6 72.1 + 96 8 19 5 5 5 5 4 4 2 5 4-11 69.3 72.5 72.1 + 96 8 20 6 6 12 9 9 6 7 4 7-11 70.1 72.3 72.1 + 96 8 21 2 5 4 7 6 4 6 5 5-11 71.3 72.2 72.1 + 96 8 22 5 6 2 2 5 9 3 5 5-11 74.5 72.1 72.1 + 96 8 23 9 18 18 12 12 4 7 6 11-11 75.8 72.1 72.1 + 96 8 24 9 7 6 6 9 6 6 15 8-11 76.2 72.1 72.1 + 96 8 25 22 12 22 12 12 22 15 7 16-11 76.3 72.1 72.1 + 96 8 26 9 15 18 7 4 6 7 15 10-11 75.8 72.1 72.1 + 96 8 27 15 22 18 9 6 15 12 12 14-11 75.9 72.1 72.1 + 96 8 28 15 9 9 9 18 15 12 18 13-11 74.7 72.1 72.1 + 96 8 29 39 67 56 22 27 22 15 56 38-11 75.0 72.1 72.1 + 96 8 30 48 15 18 5 5 9 12 12 16-11 74.7 72.1 72.1 + 96 8 31 15 18 15 15 12 6 6 3 11-11 77.6 72.1 72.1 + 96 9 1 12 6 5 6 4 4 6 2 6-11 74.8 72.0 72.2 + 96 9 2 4 6 5 5 5 5 3 4 5-11 73.6 72.0 72.2 + 96 9 3 0 3 3 4 3 3 2 3 3-11 72.4 72.0 72.2 + 96 9 4 2 3 3 6 7 15 7 32 9-11 72.0 72.0 72.2 + 96 9 5 7 9 6 5 4 5 4 7 6-11 71.4 71.9 72.2 + 96 9 6 9 4 5 6 5 5 2 7 5-11 70.8 71.8 72.2 + 96 9 7 6 12 12 9 6 3 4 7 7-11 70.5 71.7 72.2 + 96 9 8 12 12 3 5 6 3 5 3 6-11 69.2 71.6 72.3 + 96 9 9 2 3 2 7 6 4 6 32 8-11 68.8 71.4 72.3 + 96 9 10 48 48 39 39 22 15 27 9 31-11 68.9 71.3 72.3 + 96 9 11 18 27 18 15 18 12 12 32 19-11 68.5 71.1 72.3 + 96 9 12 39 22 48 15 27 32 15 32 29-11 68.6 71.0 72.3 + 96 9 13 39 9 9 15 7 9 27 27 18-11 68.1 70.8 72.3 + 96 9 14 22 12 9 15 6 5 6 5 10-11 67.9 70.6 72.3 + 96 9 15 7 7 15 12 27 9 48 18 18-11 67.1 70.6 72.3 + 96 9 16 9 27 27 15 18 27 7 9 17-11 68.7 70.5 72.3 + 96 9 17 15 15 5 5 5 6 7 12 9-11 69.6 70.5 72.4 + 96 9 18 22 6 22 22 27 15 15 12 18-11 69.6 70.4 72.4 + 96 9 19 5 3 6 12 12 48 22 9 15-11 69.8 70.4 72.4 + 96 9 20 39 27 32 67 32 18 15 39 34-11 69.7 70.3 72.4 + 96 9 21 48 32 39 32 18 32 18 15 29-11 70.3 70.3 72.4 + 96 9 22 22 22 56 18 39 56 7 6 28-11 69.1 70.2 72.4 + 96 9 23 15 39 22 48 27 39 12 15 27-11 70.4 70.2 72.4 + 96 9 24 9 7 7 9 12 5 7 6 8-11 70.4 70.1 72.4 + 96 9 25 4 22 12 9 9 9 4 9 10-11 71.2 70.1 72.3 + 96 9 26 12 32 15 9 15 32 94 32 30-11 70.4 70.1 72.3 + 96 9 27 32 27 12 22 12 7 4 9 16-11 70.1 70.1 72.3 + 96 9 28 6 32 22 7 15 18 12 6 15-11 71.2 70.1 72.4 + 96 9 29 9 12 9 4 6 5 9 3 7-11 70.3 70.0 72.4 + 96 9 30 2 6 4 4 5 5 4 2 4-11 69.7 70.0 72.4 + 96 10 1 6 7 4 0 2 2 7 9 5-11 69.6 70.0 72.4 + 96 10 2 4 7 9 4 15 18 7 12 10-11 69.8 70.0 72.4 + 96 10 3 9 22 22 6 9 18 22 15 15-11 69.6 69.9 72.5 + 96 10 4 4 6 3 3 9 12 5 6 6-11 69.4 69.8 72.5 + 96 10 5 3 4 2 4 3 2 4 2 3-11 68.5 69.8 72.5 + 96 10 6 5 2 4 3 3 2 0 0 2-11 68.8 69.7 72.5 + 96 10 7 0 2 0 4 4 5 7 6 4-11 68.2 69.7 72.6 + 96 10 8 6 6 6 6 7 15 27 7 10-11 67.7 69.6 72.6 + 96 10 9 12 39 32 9 12 12 27 18 20-11 67.7 69.6 72.6 + 96 10 10 15 27 5 6 9 9 7 5 10-11 67.4 69.6 72.6 + 96 10 11 6 6 4 5 12 9 12 6 8-11 66.4 69.5 72.6 + 96 10 12 7 18 9 15 22 22 12 15 15-11 66.9 69.5 72.7 + 96 10 13 15 48 32 18 6 9 9 12 19-11 67.3 69.6 72.7 + 96 10 14 32 18 7 18 15 12 3 5 14-11 68.2 69.8 72.7 + 96 10 15 6 9 5 3 2 4 6 3 5-11 68.6 70.1 72.8 + 96 10 16 12 6 12 7 18 15 7 4 10-11 68.1 70.5 72.8 + 96 10 17 3 4 3 5 4 6 7 15 6-11 68.0 70.8 72.8 + 96 10 18 56 56 32 22 9 7 15 18 27-11 69.0 71.2 72.8 + 96 10 19 32 32 22 39 48 56 18 56 38-11 70.4 71.5 72.8 + 96 10 20 27 27 22 9 12 9 9 12 16-11 70.6 71.8 72.8 + 96 10 21 9 9 7 9 4 12 5 6 8-11 69.0 72.0 72.8 + 96 10 22 22 27 18 27 27 32 39111 38-11 69.1 72.1 72.8 + 96 10 23154 67 22 18 6 15 9 7 37-11 67.1 72.2 72.7 + 96 10 24 22 12 9 7 7 12 7 5 10-11 69.1 72.2 72.8 + 96 10 25 5 7 15 7 5 3 6 4 7-11 69.1 72.2 72.8 + 96 10 26 12 5 4 3 3 5 2 2 5-11 70.3 72.3 72.8 + 96 10 27 3 3 3 9 7 2 3 6 5-11 71.2 72.2 72.8 + 96 10 28 22 22 15 12 9 9 12 15 15-11 67.5 72.2 72.8 + 96 10 29 18 12 7 9 18 15 15 18 14-11 69.4 72.2 72.8 + 96 10 30 7 7 6 7 6 32 32 18 14-11 69.7 72.2 72.8 + 96 10 31 18 9 7 6 4 4 5 6 7-11 68.6 72.2 72.8 + 96 11 1 6 3 2 0 3 3 2 3 3-11 68.5 72.3 72.8 + 96 11 2 4 3 3 2 0 2 0 2 2-11 67.9 72.4 72.8 + 96 11 3 2 0 0 0 0 2 5 6 2-11 68.3 72.5 72.8 + 96 11 4 12 5 7 15 15 9 7 9 10-11 67.8 72.6 72.9 + 96 11 5 7 9 7 4 4 7 6 6 6-11 67.1 72.7 72.8 + 96 11 6 12 15 7 9 2 5 6 9 8-11 68.0 72.9 72.8 + 96 11 7 4 7 5 4 2 5 3 4 4-11 67.3 73.1 72.8 + 96 11 8 3 7 4 5 3 4 3 2 4-11 67.8 73.2 72.8 + 96 11 9 3 12 7 12 15 7 22 9 11-11 68.9 73.4 72.8 + 96 11 10 22 12 6 7 7 7 6 3 9-11 69.6 73.6 72.8 + 96 11 11 3 3 3 3 2 6 7 4 4-11 70.0 73.7 72.8 + 96 11 12 18 9 15 7 6 4 2 6 8-11 70.7 73.8 72.8 + 96 11 13 5 9 4 7 7 15 48 32 16-11 71.5 73.9 72.8 + 96 11 14 56 9 6 18 18 18 27 15 21-11 72.1 74.0 72.8 + 96 11 15 15 9 9 22 27 22 9 4 15-11 71.9 74.1 72.8 + 96 11 16 4 5 5 5 5 4 4 5 5-11 72.2 74.1 72.8 + 96 11 17 7 7 12 12 5 5 27 27 13-11 70.4 74.2 72.8 + 96 11 18 22 27 12 12 15 12 9 5 14-11 72.4 74.2 72.8 + 96 11 19 15 15 7 6 7 6 6 15 10-11 72.6 74.3 72.9 + 96 11 20 7 6 6 6 3 7 12 18 8-11 72.7 74.3 72.9 + 96 11 21 15 9 4 3 2 4 4 5 6-11 72.6 74.3 73.0 + 96 11 22 7 4 5 4 5 5 2 2 4-11 80.6 74.4 73.0 + 96 11 23 2 5 5 4 2 3 6 4 4-11 88.7 74.4 73.0 + 96 11 24 2 3 6 12 12 12 6 39 12-11 97.3 74.4 73.0 + 96 11 25 12 12 9 7 4 4 4 4 7-11101.7 74.5 73.1 + 96 11 26 7 5 3 5 12 9 5 7 7-11100.8 74.5 73.1 + 96 11 27 27 22 9 7 5 3 3 5 10-11100.0 74.5 73.1 + 96 11 28 12 15 4 7 6 7 5 3 7-11 95.4 74.6 73.2 + 96 11 29 3 4 2 3 6 9 7 6 5-11 88.5 74.6 73.2 + 96 11 30 3 2 3 0 0 2 0 3 2-11 85.1 74.6 73.2 + 96 12 1 3 3 0 3 3 5 2 4 3-11 80.8 74.6 73.2 + 96 12 2 3 9 3 6 3 27 22 9 10-11 75.7 74.7 73.2 + 96 12 3 15 12 4 7 7 7 5 6 8-11 70.7 74.7 73.3 + 96 12 4 7 7 4 5 12 22 15 15 11-11 68.6 74.8 73.3 + 96 12 5 3 0 3 3 3 0 2 2 2-11 67.6 74.8 73.3 + 96 12 6 0 0 0 0 2 2 3 3 1-11 67.6 74.8 73.3 + 96 12 7 2 4 7 4 2 4 7 5 4-11 67.1 74.9 73.3 + 96 12 8 2 3 4 4 2 4 3 4 3-11 66.6 74.9 73.3 + 96 12 9 0 0 2 3 4 7 9 48 9-11 71.5 74.9 73.3 + 96 12 10 48 15 39 27 22 22 18 12 25-11 70.2 75.0 73.3 + 96 12 11 27 9 15 18 9 7 15 12 14-11 75.2 75.1 73.3 + 96 12 12 5 12 12 9 7 12 7 4 9-11 78.6 75.1 73.3 + 96 12 13 6 9 9 4 4 6 4 2 6-11 79.2 75.1 73.3 + 96 12 14 0 0 6 7 12 5 12 9 6-11 80.0 75.2 73.4 + 96 12 15 12 12 6 9 15 15 22 15 13-11 82.3 75.2 73.4 + 96 12 16 18 9 12 15 7 7 9 15 12-11 83.5 75.3 73.4 + 96 12 17 12 15 15 9 5 15 9 4 11-11 83.6 75.3 73.4 + 96 12 18 5 9 7 4 3 9 5 4 6-11 85.6 75.4 73.4 + 96 12 19 3 0 0 0 0 0 0 3 1-11 84.6 75.4 73.4 + 96 12 20 0 2 3 2 0 3 2 2 2-11 80.3 75.4 73.4 + 96 12 21 0 6 4 5 4 12 7 9 6-11 80.9 75.5 73.4 + 96 12 22 6 3 2 4 12 12 9 22 9-11 78.9 75.5 73.4 + 96 12 23 22 22 9 6 4 6 2 0 9-11 76.9 75.5 73.4 + 96 12 24 4 6 2 3 3 7 3 3 4-11 76.4 75.5 73.4 + 96 12 25 5 7 7 6 7 4 3 5 6-11 74.7 75.6 73.4 + 96 12 26 3 2 2 3 3 3 4 6 3-11 73.0 75.7 73.4 + 96 12 27 7 4 0 2 2 4 3 4 3-11 72.2 75.7 73.4 + 96 12 28 4 2 3 6 3 3 2 2 3-11 71.8 75.7 73.4 + 96 12 29 3 2 3 2 2 3 5 15 4-11 71.4 75.7 73.4 + 96 12 30 18 12 7 9 12 6 3 9 10-11 70.1 75.7 73.4 + 96 12 31 6 9 4 4 3 4 7 6 5-11 69.8 75.7 73.4 + 97 1 1 7 6 3 3 4 4 4 5 5-11 70.0 75.7 73.4 + 97 1 2 5 4 5 6 6 6 6 4 5-11 69.7 75.5 73.4 + 97 1 3 5 3 2 4 2 4 5 4 4-11 70.8 75.3 73.4 + 97 1 4 5 4 4 5 2 2 2 4 4-11 71.4 74.9 73.4 + 97 1 5 5 5 3 4 3 5 3 2 4-11 71.9 74.5 73.4 + 97 1 6 3 3 2 3 5 3 2 2 3-11 70.6 74.2 73.4 + 97 1 7 9 27 7 9 12 12 9 6 11-11 70.9 73.8 73.3 + 97 1 8 12 18 5 4 7 5 5 6 8-11 71.3 73.5 73.3 + 97 1 9 7 5 9 4 3 2 5 7 5-11 71.3 73.3 73.3 + 97 1 10 12 39 80 48 22 18 27 12 32-11 72.9 73.1 73.3 + 97 1 11 39 27 9 27 22 5 6 5 18-11 71.6 73.0 73.2 + 97 1 12 6 7 39 12 7 12 9 7 12-11 72.1 72.9 73.2 + 97 1 13 7 12 6 4 9 6 6 4 7-11 72.1 73.0 73.2 + 97 1 14 3 3 5 3 5 4 6 6 4-11 72.4 73.0 73.2 + 97 1 15 3 3 4 4 6 7 4 2 4-11 73.3 73.1 73.2 + 97 1 16 4 4 3 3 2 0 2 4 3-11 72.4 73.1 73.2 + 97 1 17 0 0 0 0 3 4 4 5 2-11 71.7 73.2 73.3 + 97 1 18 15 7 5 5 3 3 3 2 5-11 72.2 73.3 73.3 + 97 1 19 4 3 2 4 7 15 5 4 6-11 72.9 73.3 73.3 + 97 1 20 3 2 5 4 6 15 7 12 7-11 74.3 73.3 73.3 + 97 1 21 18 6 6 7 15 15 7 4 10-11 71.8 73.2 73.3 + 97 1 22 7 9 4 4 3 6 6 6 6-11 70.7 73.2 73.4 + 97 1 23 9 2 3 3 4 3 3 2 4-11 71.1 73.1 73.4 + 97 1 24 2 4 3 3 3 5 4 9 4-11 71.9 73.0 73.4 + 97 1 25 9 5 4 4 4 2 9 12 6-11 70.9 72.9 73.4 + 97 1 26 9 7 3 6 22 22 32 39 18-11 71.9 72.8 73.4 + 97 1 27 15 22 7 12 5 18 18 27 16-11 71.3 72.6 73.4 + 97 1 28 18 39 12 12 27 27 32 22 24-11 70.8 72.5 73.4 + 97 1 29 12 7 6 7 7 6 15 9 9-11 72.4 72.4 73.4 + 97 1 30 15 9 12 5 15 27 22 18 15-11 71.5 72.3 73.4 + 97 1 31 12 15 3 4 4 6 7 9 8-11 70.3 72.2 73.3 + 97 2 1 7 3 3 4 9 7 3 3 5-11 69.2 72.1 73.3 + 97 2 2 6 9 9 4 6 18 18 15 11-11 76.2 72.1 73.3 + 97 2 3 22 4 3 3 2 4 5 12 7-11 77.4 72.1 73.3 + 97 2 4 3 2 4 7 5 3 3 4 4-11 78.4 72.1 73.3 + 97 2 5 3 0 2 4 9 15 9 4 6-11 73.3 72.1 73.3 + 97 2 6 5 22 18 9 15 4 4 6 10-11 72.2 72.1 73.3 + 97 2 7 5 4 2 2 2 2 6 12 4-11 73.7 72.1 73.3 + 97 2 8 9 6 3 12 67 48 22 9 22-11 73.2 72.1 73.4 + 97 2 9 9 9 7 9 18 27 56 27 20-11 71.2 72.1 73.4 + 97 2 10 22 22 27 18 18 18 27 22 22-11 70.4 72.1 73.4 + 97 2 11 15 18 27 22 18 15 18 32 21-11 69.3 72.1 73.4 + 97 2 12 18 15 12 4 2 0 0 2 7-11 69.1 72.1 73.5 + 97 2 13 3 5 4 3 7 5 3 4 4-11 69.3 72.1 73.5 + 97 2 14 6 5 9 6 3 3 5 4 5-11 69.6 72.1 73.5 + 97 2 15 0 0 4 6 6 12 4 0 4-11 70.1 72.1 73.6 + 97 2 16 2 5 6 7 15 5 9 12 8-11 70.3 72.1 73.6 + 97 2 17 9 12 32 27 9 3 9 9 14-11 71.4 72.2 73.6 + 97 2 18 12 9 6 5 4 6 3 4 6-11 71.2 72.2 73.6 + 97 2 19 6 3 3 2 2 2 2 4 3-11 70.4 72.3 73.6 + 97 2 20 4 6 4 4 5 3 3 3 4-11 71.0 72.3 73.6 + 97 2 21 3 18 15 18 12 7 2 6 10-11 71.6 72.4 73.7 + 97 2 22 12 7 2 4 6 18 7 12 9-11 71.9 72.5 73.7 + 97 2 23 9 18 9 12 9 6 4 7 9-11 73.0 72.6 73.7 + 97 2 24 2 9 12 15 15 3 3 12 9-11 73.1 72.7 73.7 + 97 2 25 15 5 3 4 3 6 5 5 6-11 72.6 72.7 73.7 + 97 2 26 15 18 9 22 27 22 6 4 15-11 72.4 72.8 73.7 + 97 2 27 18 12 7 5 18 18 27132 30-11 72.4 72.8 73.8 + 97 2 28 56 94 39 18 15 27 27 18 37-11 71.5 72.9 73.8 + 97 3 1 15 9 9 7 15 27 18 6 13-11 70.5 73.0 73.9 + 97 3 2 4 22 18 18 7 18 4 5 12-11 71.1 73.0 73.9 + 97 3 3 3 2 5 7 6 18 9 9 7-11 72.8 73.1 74.0 + 97 3 4 7 2 3 4 4 3 3 3 4-11 72.8 73.2 74.1 + 97 3 5 2 2 3 3 9 15 22 15 9-11 73.4 73.3 74.1 + 97 3 6 18 15 12 6 7 7 2 0 8-11 74.2 73.4 74.2 + 97 3 7 0 3 7 9 15 9 5 9 7-11 73.1 73.4 74.3 + 97 3 8 6 6 3 3 9 9 2 4 5-11 73.6 73.4 74.3 + 97 3 9 3 0 0 0 0 3 0 2 1-11 74.1 73.4 74.4 + 97 3 10 0 0 0 3 3 3 3 5 2-11 73.8 73.4 74.6 + 97 3 11 9 4 2 3 4 2 0 3 3-11 73.4 73.4 74.7 + 97 3 12 7 18 18 15 18 9 12 6 13-11 73.4 73.4 74.8 + 97 3 13 12 7 9 4 4 9 9 6 8-11 73.3 73.4 74.9 + 97 3 14 7 6 6 6 3 3 4 7 5-11 74.7 73.4 75.1 + 97 3 15 18 4 7 6 4 4 5 5 7-11 75.0 73.3 75.2 + 97 3 16 6 12 12 6 5 6 5 4 7-11 75.0 73.2 75.3 + 97 3 17 5 5 5 3 4 5 9 9 6-11 74.4 73.2 75.4 + 97 3 18 9 12 5 4 4 4 4 5 6-11 73.7 73.2 75.4 + 97 3 19 3 4 3 3 6 2 0 0 3-11 73.1 73.2 75.5 + 97 3 20 2 5 3 2 2 2 5 2 3-11 71.0 73.2 75.5 + 97 3 21 0 0 5 7 5 4 3 5 4-11 70.0 73.2 75.6 + 97 3 22 15 22 7 12 9 6 3 2 10-11 70.1 73.2 75.7 + 97 3 23 0 2 2 4 6 5 4 0 3-11 70.3 73.2 75.7 + 97 3 24 3 5 3 12 6 4 15 22 9-11 70.6 73.3 75.7 + 97 3 25 15 9 7 7 15 12 12 22 12-11 70.2 73.3 75.8 + 97 3 26 12 18 12 15 18 18 22 22 17-11 69.5 73.4 75.9 + 97 3 27 18 3 2 3 3 5 9 4 6-11 71.9 73.4 75.9 + 97 3 28 4 4 3 6 9 48 67 27 21-11 72.9 73.5 76.0 + 97 3 29 18 27 7 22 15 15 15 39 20-11 75.1 73.5 76.0 + 97 3 30 9 22 9 9 9 7 9 5 10-11 73.8 73.5 76.1 + 97 3 31 4 6 2 3 5 6 9 6 5-11 74.6 73.6 76.1 + 97 4 1 15 32 15 4 6 4 4 6 11-11 76.2 73.6 76.2 + 97 4 2 7 15 9 5 12 6 15 4 9-11 80.4 73.6 76.2 + 97 4 3 15 22 4 2 3 2 6 3 7-11 78.8 73.7 76.3 + 97 4 4 27 18 12 7 7 6 9 15 13-11 78.6 73.7 76.3 + 97 4 5 22 18 4 5 2 7 9 22 11-11 80.3 73.7 76.3 + 97 4 6 9 4 12 12 9 18 3 12 10-11 78.3 73.8 76.4 + 97 4 7 15 15 5 5 7 7 7 9 9-11 77.0 73.8 76.4 + 97 4 8 5 3 3 4 4 3 6 5 4-11 76.3 73.8 76.5 + 97 4 9 6 6 2 3 6 6 4 12 6-11 78.3 73.9 76.5 + 97 4 10 15 2 0 2 7 15 15 48 13-11 78.0 74.0 76.6 + 97 4 11 48111 39 6 18 22 22 27 37-11 77.4 74.2 76.6 + 97 4 12 18 6 6 15 12 6 4 2 9-11 76.9 74.3 76.7 + 97 4 13 4 18 6 6 7 7 5 7 8-11 79.3 74.4 76.7 + 97 4 14 7 7 4 3 5 6 2 0 4-11 77.9 74.5 76.8 + 97 4 15 7 2 3 3 0 0 0 0 2-11 79.2 74.6 76.8 + 97 4 16 0 0 0 3 22 22 32 48 16-11 75.6 74.6 76.9 + 97 4 17 39 56 27 12 7 9 22 22 24-11 72.3 74.7 76.9 + 97 4 18 22 9 22 15 18 6 9 7 14-11 70.7 74.8 77.0 + 97 4 19 12 15 18 15 15 6 9 9 12-11 70.6 74.9 77.0 + 97 4 20 2 4 5 2 2 3 5 7 4-11 70.4 74.9 77.1 + 97 4 21 2 3 4 9 39 32 32 39 20-11 70.9 74.9 77.1 + 97 4 22 56 32 6 6 4 3 9 7 15-11 71.5 75.0 77.1 + 97 4 23 5 5 3 7 6 6 15 22 9-11 69.7 75.1 77.2 + 97 4 24 39 18 12 7 7 6 6 6 13-11 70.7 75.1 77.2 + 97 4 25 6 9 5 4 5 5 6 9 6-11 69.6 75.1 77.2 + 97 4 26 3 4 3 3 4 3 4 3 3-11 71.8 75.1 77.2 + 97 4 27 2 0 2 2 3 4 4 6 3-11 74.1 75.1 77.3 + 97 4 28 3 2 0 4 3 3 3 2 3-11 73.4 75.2 77.3 + 97 4 29 0 0 0 3 3 5 6 5 3-11 72.9 75.2 77.4 + 97 4 30 15 18 6 4 4 4 18 15 11-11 73.7 75.3 77.4 + 97 5 1 18 5 6 4 18 39 48 94 29-11 73.4 75.3 77.4 + 97 5 2 48 12 12 6 12 9 5 12 15-11 73.3 75.4 77.5 + 97 5 3 7 6 6 5 12 12 15 6 9-11 72.3 75.4 77.6 + 97 5 4 9 9 6 4 5 7 15 6 8-11 72.1 75.4 77.6 + 97 5 5 15 7 4 5 5 4 5 6 6-11 73.6 75.4 77.8 + 97 5 6 5 3 4 3 5 5 3 3 4-11 73.4 75.5 77.9 + 97 5 7 4 3 5 0 2 2 3 6 3-11 73.3 75.5 78.0 + 97 5 8 5 4 2 3 3 4 3 6 4-11 73.3 75.5 78.1 + 97 5 9 5 5 5 3 3 2 2 2 3-11 73.0 75.5 78.2 + 97 5 10 5 5 5 3 5 3 3 5 4-11 74.6 75.4 78.3 + 97 5 11 9 6 6 6 5 2 0 0 4-11 73.8 75.4 78.3 + 97 5 12 0 3 0 0 2 2 0 0 1-11 73.7 75.3 78.4 + 97 5 13 3 2 2 2 2 0 3 2 2-11 75.4 75.2 78.4 + 97 5 14 3 0 0 3 4 12 12 12 6-11 75.1 75.1 78.5 + 97 5 15 27 18111111 94 56 15 15 56-11 74.7 75.1 78.5 + 97 5 16 7 9 7 5 22 18 4 12 11-11 73.9 75.0 78.6 + 97 5 17 22 12 2 9 6 5 9 9 9-11 74.4 74.9 78.6 + 97 5 18 4 5 5 3 5 4 5 7 5-11 75.8 74.9 78.7 + 97 5 19 3 3 3 3 3 3 2 2 3-11 76.0 74.9 78.8 + 97 5 20 4 5 7 3 3 4 2 2 4-11 81.1 74.8 78.8 + 97 5 21 0 3 4 4 4 4 5 4 4-11 86.9 74.7 78.9 + 97 5 22 4 2 0 2 2 5 4 5 3-11 83.0 74.7 78.9 + 97 5 23 0 2 3 3 3 3 3 3 3-11 78.1 74.6 79.0 + 97 5 24 5 4 5 7 9 7 9 7 7-11 78.9 74.5 79.1 + 97 5 25 6 7 5 3 4 5 4 2 5-11 80.1 74.4 79.1 + 97 5 26 2 2 0 5 12 12 15 18 8-11 82.0 74.4 79.1 + 97 5 27 27 80 27 7 7 5 5 9 21-11 80.4 74.3 79.1 + 97 5 28 6 4 5 7 9 3 2 3 5-11 79.5 74.3 79.1 + 97 5 29 3 2 2 2 2 2 2 5 3-11 77.6 74.3 79.2 + 97 5 30 4 3 4 3 7 7 7 12 6-11 77.2 74.3 79.2 + 97 5 31 7 5 3 5 7 12 12 12 8-11 74.5 74.3 79.3 + 97 6 1 5 4 5 5 5 7 9 9 6-11 79.6 74.3 79.4 + 97 6 2 5 3 3 4 5 5 9 12 6-11 79.1 74.3 79.4 + 97 6 3 9 12 15 5 6 6 7 9 9-11 77.4 74.3 79.5 + 97 6 4 7 5 3 4 4 5 7 4 5-11 76.1 74.3 79.6 + 97 6 5 4 4 3 3 2 3 3 4 3-11 76.1 74.3 79.7 + 97 6 6 15 5 6 7 7 5 5 12 8-11 76.4 74.3 79.8 + 97 6 7 15 18 6 7 18 9 5 6 11-11 76.9 74.3 79.9 + 97 6 8 2 5 7 12 9 22 12 27 12-11 75.4 74.3 80.0 + 97 6 9 56 67 48 39 22 9 12 12 33-11 75.3 74.3 80.1 + 97 6 10 6 6 6 4 3 6 6 3 5-11 74.2 74.3 80.2 + 97 6 11 6 3 3 2 2 3 2 5 3-11 73.0 74.3 80.2 + 97 6 12 7 4 5 5 6 4 4 3 5-11 71.8 74.3 80.3 + 97 6 13 3 2 2 2 4 3 2 3 3-11 72.3 74.4 80.3 + 97 6 14 2 2 2 2 3 2 3 3 2-11 72.9 74.5 80.3 + 97 6 15 7 6 5 4 5 5 5 4 5-11 73.0 74.6 80.3 + 97 6 16 3 5 3 7 7 6 7 4 5-11 74.4 74.7 80.3 + 97 6 17 2 5 5 4 4 4 3 2 4-11 71.8 74.7 80.3 + 97 6 18 3 4 3 2 5 3 2 2 3-11 73.5 74.8 80.3 + 97 6 19 7 6 15 7 6 7 6 12 8-11 72.4 74.8 80.3 + 97 6 20 4 3 5 4 5 5 2 3 4-11 72.5 74.8 80.3 + 97 6 21 0 0 0 3 2 2 3 3 2-11 69.8 74.7 80.4 + 97 6 22 3 15 9 7 9 7 7 5 8-11 71.8 74.7 80.4 + 97 6 23 4 3 3 5 9 6 5 9 6-11 71.3 74.7 80.4 + 97 6 24 3 4 3 5 3 4 4 4 4-11 72.2 74.7 80.5 + 97 6 25 6 6 6 6 7 5 9 12 7-11 74.1 74.7 80.6 + 97 6 26 6 5 4 2 2 2 5 7 4-11 74.2 74.7 80.6 + 97 6 27 6 4 6 39 32 15 22 9 17-11 74.1 74.8 80.7 + 97 6 28 9 15 6 6 6 4 5 9 8-11 73.6 74.8 80.8 + 97 6 29 18 15 6 6 4 4 5 6 8-11 72.6 74.9 80.8 + 97 6 30 7 3 2 2 3 4 5 6 4-11 72.1 74.9 80.9 + 97 7 1 4 5 2 2 5 4 4 4 4-11 72.4 74.8 81.0 + 97 7 2 5 3 2 2 5 3 6 6 4-11 72.4 74.8 81.1 + 97 7 3 7 5 4 7 9 6 2 5 6-11 71.4 74.9 81.1 + 97 7 4 6 6 5 3 6 12 5 4 6-11 72.0 74.9 81.2 + 97 7 5 3 5 5 4 6 4 2 2 4-11 72.0 74.9 81.2 + 97 7 6 3 6 5 6 3 2 4 3 4-11 70.6 74.9 81.3 + 97 7 7 4 15 9 7 9 22 27 27 15-11 72.6 74.9 81.3 + 97 7 8 5 4 3 3 4 4 3 5 4-11 72.1 74.9 81.3 + 97 7 9 12 12 6 3 6 18 22 7 11-11 72.3 74.9 81.3 + 97 7 10 3 5 7 9 6 6 5 4 6-11 70.8 74.9 81.3 + 97 7 11 4 3 3 4 6 3 5 5 4-11 70.9 74.9 81.3 + 97 7 12 4 3 2 0 3 3 3 3 3-11 69.6 74.8 81.3 + 97 7 13 2 4 4 3 3 4 3 3 3-11 69.3 74.8 81.3 + 97 7 14 2 2 2 2 3 4 3 2 3-11 70.3 74.8 81.3 + 97 7 15 4 9 7 22 12 18 12 9 12-11 71.5 74.9 81.3 + 97 7 16 6 6 4 4 5 4 4 4 5-11 71.9 75.0 81.4 + 97 7 17 2 4 9 4 4 6 7 15 6-11 72.2 75.1 81.4 + 97 7 18 9 18 9 9 7 6 3 6 8-11 72.3 75.2 81.4 + 97 7 19 6 15 7 6 12 9 6 7 9-11 72.8 75.4 81.5 + 97 7 20 9 5 4 7 7 4 3 3 5-11 73.5 75.6 81.5 + 97 7 21 3 4 6 4 4 6 6 5 5-11 73.6 75.8 81.5 + 97 7 22 5 3 3 5 6 5 6 3 5-11 74.5 76.1 81.5 + 97 7 23 3 5 4 3 4 3 5 9 5-11 78.1 76.4 81.6 + 97 7 24 6 5 9 9 22 12 15 12 11-11 81.2 76.7 81.6 + 97 7 25 9 5 3 4 4 4 6 4 5-11 83.0 77.0 81.6 + 97 7 26 3 3 4 2 3 4 5 6 4-11 79.0 77.2 81.7 + 97 7 27 4 5 5 5 6 6 3 6 5-11 76.8 77.5 81.7 + 97 7 28 6 3 5 5 7 5 3 3 5-11 76.5 77.8 81.8 + 97 7 29 3 5 4 3 4 3 4 3 4-11 75.0 78.2 81.8 + 97 7 30 15 9 3 4 2 2 4 15 7-11 73.2 78.8 81.8 + 97 7 31 27 32 18 18 9 6 5 7 15-11 72.5 79.4 81.9 + 97 8 1 6 7 4 5 6 5 5 9 6-11 73.2 80.0 81.9 + 97 8 2 6 4 3 2 3 4 9 5 5-11 72.9 80.4 81.9 + 97 8 3 5 4 5 22 22 48 32 27 21-11 74.3 80.9 82.0 + 97 8 4 12 6 7 7 2 3 9 4 6-11 74.9 81.4 82.0 + 97 8 5 4 3 5 3 2 4 3 2 3-11 76.9 81.7 82.0 + 97 8 6 5 5 0 0 3 3 3 2 3-11 79.0 82.0 82.0 + 97 8 7 3 4 4 4 9 5 3 9 5-11 80.1 82.3 82.1 + 97 8 8 5 6 2 6 7 5 3 4 5-11 79.9 82.6 82.1 + 97 8 9 3 2 6 4 12 12 9 15 8-11 80.3 82.8 82.1 + 97 8 10 6 6 12 4 4 3 5 5 6-11 80.4 83.0 82.1 + 97 8 11 7 18 6 6 7 5 4 4 7-11 81.6 83.2 82.2 + 97 8 12 4 2 4 6 4 4 5 15 6-11 83.0 83.3 82.2 + 97 8 13 9 6 12 9 7 7 18 22 11-11 84.2 83.6 82.2 + 97 8 14 15 39 32 7 5 5 6 15 16-11 81.6 83.8 82.3 + 97 8 15 5 6 6 9 7 6 3 3 6-11 79.6 84.1 82.3 + 97 8 16 12 6 7 6 4 3 0 2 5-11 79.8 84.3 82.4 + 97 8 17 7 4 5 6 9 15 22 5 9-11 77.4 84.5 82.5 + 97 8 18 4 4 5 4 6 15 7 4 6-11 77.7 84.7 82.6 + 97 8 19 6 5 0 2 3 3 2 2 3-11 76.1 84.9 82.7 + 97 8 20 4 5 5 6 5 2 4 9 5-11 76.3 85.1 82.8 + 97 8 21 12 18 4 6 6 2 5 7 8-11 76.3 85.3 82.9 + 97 8 22 12 7 5 4 7 7 3 5 6-11 77.2 85.6 82.9 + 97 8 23 6 2 0 0 2 4 4 4 3-11 78.2 85.8 83.0 + 97 8 24 9 4 3 6 5 2 7 9 6-11 79.4 86.0 83.0 + 97 8 25 7 6 4 4 0 0 3 2 3-11 83.7 86.1 83.1 + 97 8 26 0 0 2 2 2 3 2 2 2-11 85.5 86.3 83.2 + 97 8 27 2 2 6 3 3 3 2 5 3-11 83.5 86.4 83.2 + 97 8 28 9 32 32 9 4 9 15 18 16-11 92.3 86.5 83.3 + 97 8 29 5 9 15 27 12 15 15 9 13-11 93.3 86.7 83.3 + 97 8 30 5 15 9 7 12 9 12 9 10-11 93.8 86.8 83.4 + 97 8 31 4 4 3 4 4 4 4 2 4-11 98.2 86.9 83.5 + 97 9 1 6 6 4 5 2 4 2 4 4-11 95.1 87.1 83.5 + 97 9 2 6 5 2 2 3 2 4 7 4-11 93.3 87.2 83.6 + 97 9 3 15 9 7 12 15 12 48 94 27-11 94.7 87.3 83.6 + 97 9 4 48 27 15 12 6 5 7 5 16-11 94.6 87.3 83.7 + 97 9 5 5 5 3 3 4 7 5 5 5-11 97.6 87.4 83.7 + 97 9 6 3 12 6 7 12 5 7 7 7-11 99.1 87.5 83.8 + 97 9 7 0 3 2 3 7 7 3 2 3-11103.6 87.6 83.8 + 97 9 8 2 0 2 9 22 22 22 15 12-11121.1 87.8 83.9 + 97 9 9 5 18 22 18 9 12 18 18 15-11117.7 87.9 83.9 + 97 9 10 18 7 9 9 18 27 27 39 19-11116.4 88.0 84.0 + 97 9 11 15 6 5 6 9 6 9 12 9-11110.0 88.2 84.1 + 97 9 12 32 15 9 7 15 9 18 6 14-11110.3 88.2 84.2 + 97 9 13 18 12 7 4 4 6 7 12 9-11108.9 88.3 84.3 + 97 9 14 15 18 9 18 15 9 9 6 12-11103.7 88.3 84.4 + 97 9 15 18 12 12 15 7 12 4 7 11-11 99.1 88.4 84.6 + 97 9 16 9 15 7 4 4 5 3 5 7-11 96.4 88.4 84.7 + 97 9 17 3 5 3 5 7 12 15 22 9-11 94.0 88.4 84.8 + 97 9 18 48 48 18 9 12 15 6 7 20-11 89.0 88.5 85.0 + 97 9 19 2 0 3 3 2 3 6 5 3-11 89.1 88.6 85.1 + 97 9 20 6 6 9 6 9 3 2 4 6-11 88.4 88.6 85.3 + 97 9 21 5 5 9 9 3 9 39 48 16-11 85.8 88.7 85.4 + 97 9 22 32 27 5 3 5 2 3 2 10-11 89.6 88.9 85.6 + 97 9 23 4 4 4 3 5 3 5 7 4-11 92.3 89.0 85.7 + 97 9 24 7 3 6 4 4 2 3 4 4-11 93.5 89.4 85.8 + 97 9 25 2 3 2 2 5 5 4 2 3-11 88.9 89.8 85.9 + 97 9 26 2 0 3 6 5 3 5 6 4-11 89.5 90.3 86.0 + 97 9 27 12 6 12 7 7 27 27 12 14-11 88.8 90.6 86.1 + 97 9 28 27 27 27 6 6 9 5 4 14-11 87.5 90.8 86.2 + 97 9 29 15 9 12 7 3 2 4 5 7-11 90.0 91.0 86.3 + 97 9 30 5 18 9 6 5 7 15 9 9-11 87.9 91.1 86.4 + 97 10 1 27 22 56 56 39132 27 6 46-11 87.3 91.3 86.5 + 97 10 2 6 7 3 3 5 3 0 12 5-11 86.0 91.4 86.5 + 97 10 3 5 6 9 12 12 9 7 3 8-11 85.8 91.6 86.6 + 97 10 4 6 2 2 5 7 4 2 4 4-11 83.4 91.7 86.7 + 97 10 5 4 2 0 2 0 2 3 3 2-11 84.3 91.8 86.8 + 97 10 6 0 0 0 2 2 5 5 7 3-11 83.6 91.9 87.0 + 97 10 7 5 7 5 5 7 15 7 22 9-11 83.4 92.1 87.1 + 97 10 8 4 5 15 12 27 18 7 22 14-11 82.7 92.1 87.3 + 97 10 9 15 22 32 12 18 9 18 9 17-11 83.3 92.1 87.5 + 97 10 10 15 22 32 12 9 18 39 94 30-11 84.0 92.2 87.6 + 97 10 11 67 94 22 6 2 3 2 2 25-11 85.8 92.0 87.7 + 97 10 12 3 12 7 7 5 4 3 3 6-11 88.3 92.1 87.9 + 97 10 13 12 7 4 9 4 3 5 3 6-11 87.8 92.1 88.0 + 97 10 14 0 4 5 5 6 3 2 0 3-11 84.3 92.2 88.0 + 97 10 15 0 0 2 4 4 6 2 2 3-11 86.4 92.3 88.1 + 97 10 16 2 3 4 3 0 2 4 6 3-11 86.9 92.4 88.2 + 97 10 17 0 0 4 9 7 7 9 9 6-11 87.5 92.5 88.3 + 97 10 18 6 7 4 3 2 3 2 3 4-11 85.9 92.6 88.4 + 97 10 19 2 2 3 4 3 4 2 3 3-11 84.0 92.5 88.5 + 97 10 20 9 7 9 3 4 3 5 2 5-11 82.1 92.4 88.5 + 97 10 21 5 3 4 4 3 2 0 3 3-11 84.2 92.4 88.6 + 97 10 22 6 7 2 3 2 3 6 5 4-11 79.9 92.4 88.6 + 97 10 23 0 0 6 7 6 9 9 22 7-11 78.8 92.4 88.7 + 97 10 24 9 12 9 32 56 15 7 18 20-11 77.7 92.4 88.8 + 97 10 25 48 39 9 18 15 9 9 15 20-11 80.5 92.4 88.8 + 97 10 26 39 18 3 2 9 27 18 27 18-11 81.0 92.4 88.9 + 97 10 27 39 27 22 9 5 7 22 22 19-11 83.3 92.6 88.9 + 97 10 28 27 9 7 12 12 18 22 15 15-11 84.4 92.6 89.0 + 97 10 29 12 9 15 7 3 3 6 6 8-11 86.0 92.7 89.1 + 97 10 30 5 0 6 9 12 5 7 7 6-11 86.9 92.7 89.2 + 97 10 31 7 6 4 2 3 6 4 4 5-11 89.2 92.8 89.3 + 97 11 1 4 18 12 9 6 5 7 6 8-11 93.0 92.9 89.4 + 97 11 2 4 4 2 0 0 2 3 0 2-11 97.8 92.9 89.5 + 97 11 3 0 0 0 3 3 5 7 9 3-11109.8 92.8 89.7 + 97 11 4 7 9 12 5 9 9 7 9 8-11117.9 92.7 89.8 + 97 11 5 2 5 6 9 18 9 5 3 7-11113.8 92.7 90.0 + 97 11 6 3 15 12 15 12 15 15 48 17-11105.3 92.6 90.2 + 97 11 7 80132 67 15 15 27 12 6 44-11 94.4 92.5 90.3 + 97 11 8 4 6 3 4 4 12 5 3 5-11 89.6 92.5 90.4 + 97 11 9 7 9 9 6 4 5 22 27 11-11 86.4 92.4 90.5 + 97 11 10 27 15 15 6 9 9 5 5 11-11 89.4 92.4 90.6 + 97 11 11 6 22 6 6 5 5 2 3 7-11 91.5 92.4 90.7 + 97 11 12 4 0 3 4 2 3 2 0 2-11 87.2 92.5 90.8 + 97 11 13 0 4 2 5 4 3 5 3 3-11 90.1 92.7 90.9 + 97 11 14 4 6 7 6 9 9 22 32 12-11 93.0 93.0 91.1 + 97 11 15 9 15 6 4 5 7 12 9 8-11 96.2 93.2 91.2 + 97 11 16 18 12 5 7 12 6 4 12 10-11 96.2 93.4 91.3 + 97 11 17 27 18 5 5 3 4 7 15 11-11 94.2 93.5 91.4 + 97 11 18 15 12 9 7 27 7 7 7 11-11 91.5 93.7 91.4 + 97 11 19 3 0 2 4 4 6 2 3 3-11 99.1 93.9 91.5 + 97 11 20 5 3 2 0 0 2 2 2 2-11 88.7 94.1 91.5 + 97 11 21 2 0 0 0 0 2 3 5 2-11 95.9 94.3 91.5 + 97 11 22 15 22 32 56 80 32 32 80 44-11100.2 94.3 91.5 + 97 11 23154132 39 56 39 7 15 27 59-11 99.8 94.3 91.6 + 97 11 24 15 18 7 6 12 9 6 6 10-11103.3 94.3 91.6 + 97 11 25 4 3 2 0 2 4 2 2 2-11102.1 94.2 91.7 + 97 11 26 5 3 2 3 3 3 3 5 3-11108.1 94.1 91.7 + 97 11 27 2 3 2 0 4 0 3 0 2-11111.1 94.0 91.8 + 97 11 28 2 4 0 0 0 0 2 4 2-11116.3 93.8 91.8 + 97 11 29 0 0 0 0 0 2 2 3 1-11112.1 93.7 91.9 + 97 11 30 4 7 7 7 5 4 6 3 5-11112.4 93.5 92.0 + 97 12 1 2 3 3 0 5 3 5 12 4-11113.7 93.4 92.0 + 97 12 2 6 3 0 4 5 2 4 4 4-11109.0 93.3 92.1 + 97 12 3 7 4 5 5 9 5 5 7 6-11109.0 93.4 92.2 + 97 12 4 6 0 3 5 5 6 6 15 6-11104.2 93.4 92.3 + 97 12 5 5 6 7 7 7 12 7 12 8-11100.7 93.4 92.4 + 97 12 6 6 4 5 5 2 2 2 5 4-11105.6 93.4 92.5 + 97 12 7 2 0 0 3 6 3 0 4 2-11 96.0 93.5 92.6 + 97 12 8 0 2 2 2 0 0 0 0 1-11 95.1 93.4 92.8 + 97 12 9 0 0 0 2 0 3 4 0 1-11 93.8 93.4 92.9 + 97 12 10 2 15 6 27 22 27 15 27 18-11 92.2 93.3 93.0 + 97 12 11 18 18 9 12 15 6 7 3 11-11 93.4 93.2 93.1 + 97 12 12 5 4 3 0 0 2 0 2 2-11 89.6 93.0 93.2 + 97 12 13 0 0 3 0 2 0 0 2 1-11 86.5 92.8 93.3 + 97 12 14 0 3 2 2 2 3 3 4 2-11 87.1 92.5 93.4 + 97 12 15 2 0 0 4 3 9 3 2 3-11 86.3 92.1 93.5 + 97 12 16 0 2 2 2 6 4 6 12 4-11 82.0 91.9 93.6 + 97 12 17 5 3 4 3 4 2 3 9 4-11 82.9 91.7 93.7 + 97 12 18 9 22 7 2 2 3 4 5 7-11 83.5 91.6 93.8 + 97 12 19 7 3 2 2 3 3 3 2 3-11 86.8 91.5 93.9 + 97 12 20 2 0 3 4 3 3 5 4 3-11 86.7 91.5 93.9 + 97 12 21 12 2 3 2 3 3 4 3 4-11 89.0 91.3 94.0 + 97 12 22 0 0 3 4 3 2 3 2 2-11 93.8 91.2 94.1 + 97 12 23 6 5 0 2 3 3 3 6 4-11100.7 91.2 94.2 + 97 12 24 9 6 4 2 3 4 3 2 4-11104.3 91.1 94.3 + 97 12 25 3 4 2 0 0 0 0 0 1-11101.3 91.1 94.4 + 97 12 26 4 2 0 0 3 0 2 3 2-11101.3 90.9 94.5 + 97 12 27 2 0 0 0 0 0 2 0 1-11 92.7 90.8 94.6 + 97 12 28 0 0 2 0 2 0 2 2 1-11 98.7 90.6 94.8 + 97 12 29 3 4 0 0 0 0 2 5 2-11101.0 90.5 94.9 + 97 12 30 15 27 9 18 15 39 39 5 21-11 98.0 90.3 95.1 + 97 12 31 4 3 4 4 4 2 2 2 3-11101.1 90.2 95.2 + 98 1 1 3 5 12 3 3 3 2 3 4-11 88.4 90.0 95.4 + 98 1 2 4 7 5 3 7 7 2 7 5-11 87.9 89.8 95.5 + 98 1 3 2 2 5 5 5 3 3 2 3-11 88.0 89.7 95.7 + 98 1 4 0 0 0 3 6 4 4 3 3-11 78.9 89.5 95.8 + 98 1 5 2 0 0 4 4 6 5 2 3-11 77.7 89.5 96.0 + 98 1 6 15 27 5 0 15 32 27 22 18-11 75.7 89.5 96.1 + 98 1 7 56 94 27 22 12 6 3 0 28-11 73.9 89.4 96.2 + 98 1 8 0 2 7 12 7 6 12 18 8-11 71.6 89.2 96.4 + 98 1 9 9 4 9 9 18 18 3 4 9-11 71.0 89.1 96.5 + 98 1 10 4 7 4 6 12 12 6 4 7-11 70.2 88.9 96.6 + 98 1 11 6 7 6 5 12 5 4 3 6-11 73.8 88.7 96.7 + 98 1 12 3 6 7 6 3 2 6 0 4-11 83.4 88.5 96.8 + 98 1 13 3 0 2 3 9 6 5 2 4-11 78.7 88.3 96.9 + 98 1 14 5 4 2 6 2 2 2 3 3-11 81.8 88.2 97.0 + 98 1 15 0 0 2 5 2 2 2 4 2-11 85.2 88.1 97.1 + 98 1 16 6 4 0 3 9 15 15 18 9-11 84.9 88.0 97.2 + 98 1 17 6 6 5 3 4 12 12 9 7-11 83.5 87.9 97.3 + 98 1 18 6 6 12 7 18 6 3 2 8-11 82.8 87.8 97.4 + 98 1 19 2 2 3 3 5 3 7 5 4-11 81.4 87.8 97.5 + 98 1 20 6 18 4 4 7 27 27 27 15-11 79.6 87.9 97.6 + 98 1 21 15 15 22 4 3 3 2 3 8-11 79.2 87.8 97.7 + 98 1 22 4 0 0 2 4 4 6 12 4-11 81.1 87.9 97.8 + 98 1 23 4 4 4 4 4 2 2 4 4-11 84.5 88.0 97.9 + 98 1 24 3 9 9 5 5 2 6 12 6-11 85.1 88.1 98.1 + 98 1 25 7 27 4 3 7 22 15 3 11-11 94.5 88.2 98.2 + 98 1 26 2 0 4 3 4 4 4 3 3-11 87.3 88.3 98.3 + 98 1 27 7 7 9 12 6 5 6 3 7-11 88.0 88.4 98.4 + 98 1 28 0 0 2 0 2 4 5 4 2-11 84.4 88.5 98.6 + 98 1 29 5 7 5 4 9 9 5 22 8-11 81.8 88.6 98.7 + 98 1 30 27 32 27 15 22 18 7 6 19-11 79.5 88.7 98.8 + 98 1 31 7 6 6 4 3 15 32 22 12-11 78.1 88.8 98.9 + 98 2 1 7 12 12 15 3 2 7 12 9-11 88.1 89.0 99.0 + 98 2 2 4 5 4 4 2 0 0 3 3-11 86.5 89.2 99.1 + 98 2 3 0 0 0 0 6 7 4 5 3-11 86.3 89.5 99.3 + 98 2 4 18 15 9 7 7 6 3 0 8-11 86.6 89.8 99.4 + 98 2 5 0 5 0 3 5 4 3 4 3-11 83.1 90.1 99.6 + 98 2 6 4 3 3 2 2 4 3 0 3-11 81.8 90.5 99.8 + 98 2 7 0 4 3 2 2 2 4 4 3-11 80.8 90.8100.0 + 98 2 8 3 4 2 4 5 5 18 27 9-11 81.3 91.1100.2 + 98 2 9 27 15 6 9 15 7 9 6 12-11 81.5 91.4100.4 + 98 2 10 18 9 9 5 6 6 6 9 9-11 81.5 91.7100.6 + 98 2 11 18 15 4 7 18 32 18 27 17-11 84.0 92.1100.8 + 98 2 12 22 6 6 9 9 9 12 7 10-11 88.3 92.5100.9 + 98 2 13 6 6 6 4 6 6 12 5 6-11 92.3 92.9101.1 + 98 2 14 3 2 6 5 3 4 9 15 6-11102.3 93.2101.2 + 98 2 15 12 7 2 3 0 0 0 0 3-11104.7 93.6101.4 + 98 2 16 2 3 3 2 2 4 3 4 3-11104.2 94.0101.6 + 98 2 17 2 3 3 5 15 18 27 67 18-11102.4 94.3101.7 + 98 2 18111 56 27 18 15 27 22 12 36-11100.9 94.7101.9 + 98 2 19 4 4 4 7 3 5 9 9 6-11 96.3 95.2102.1 + 98 2 20 27 6 6 5 3 6 12 7 9-11 93.6 95.6102.3 + 98 2 21 7 2 2 3 3 4 7 6 4-11 92.8 96.0102.4 + 98 2 22 6 6 6 9 5 12 9 2 7-11 93.5 96.2102.6 + 98 2 23 6 9 7 6 9 9 15 12 9-11 97.3 96.6102.7 + 98 2 24 5 2 4 3 3 3 0 4 3-11 96.6 97.2102.8 + 98 2 25 0 2 4 3 2 4 6 3 3-11 92.9 97.8102.9 + 98 2 26 2 0 2 2 2 2 4 3 2-11 90.9 98.4103.1 + 98 2 27 2 0 9 5 5 5 7 4 5-11 88.6 99.1103.2 + 98 2 28 5 7 9 6 18 18 9 48 15-11 92.3 99.8103.4 + 98 3 1 27 18 6 6 15 22 15 18 16-11 96.5100.4103.6 + 98 3 2 22 15 22 12 15 12 15 18 16-11 89.9101.0103.8 + 98 3 3 15 6 3 0 0 2 5 3 4-11 95.0101.5104.0 + 98 3 4 7 7 4 5 12 27 9 7 10-11100.0101.9104.2 + 98 3 5 12 6 12 15 3 2 3 22 9-11 95.1102.3104.4 + 98 3 6 18 9 6 4 9 6 3 5 8-11 90.3102.6104.6 + 98 3 7 6 6 5 5 3 0 0 0 3-11 90.5102.8104.7 + 98 3 8 3 3 0 0 2 2 2 0 2-11 89.9103.0104.9 + 98 3 9 0 0 5 5 3 0 0 2 2-11 88.7103.1105.1 + 98 3 10 4 7 22 48 27 80154 80 53-11 95.0103.2105.2 + 98 3 11 32 27 56 32 15 27 6 27 28-11 99.4103.5105.2 + 98 3 12 18 22 15 9 15 9 15 9 14-11100.3103.6105.3 + 98 3 13 12 15 9 9 7 18 12 15 12-11103.7103.8105.4 + 98 3 14 6 3 5 9 9 22 15 15 11-11118.2103.8105.5 + 98 3 15 48 39 27 7 9 6 5 15 20-11131.6103.9105.5 + 98 3 16 22 15 12 7 12 18 7 4 12-11122.6103.9105.6 + 98 3 17 9 12 5 15 6 3 4 9 8-11124.3104.0105.6 + 98 3 18 3 6 3 2 2 3 3 7 4-11125.9104.1105.7 + 98 3 19 5 2 2 3 4 4 3 6 4-11123.5104.3105.8 + 98 3 20 12 3 4 7 7 15 9 9 8-11125.5104.6105.9 + 98 3 21 9 6 9 32 67 94 56 9 35-11124.9104.9106.0 + 98 3 22 7 9 15 22 12 18 12 4 12-11126.8105.3106.1 + 98 3 23 12 12 3 2 3 3 3 6 6-11121.3105.8106.2 + 98 3 24 2 3 7 6 9 5 7 15 7-11119.9106.2106.4 + 98 3 25 9 15 4 9 32 39 12 6 16-11114.4106.6106.5 + 98 3 26 3 6 2 9 22 27 15 9 12-11109.5107.2106.6 + 98 3 27 18 12 18 12 15 15 18 12 15-11107.7107.5106.8 + 98 3 28 9 15 6 15 12 6 6 18 11-11103.6107.8106.9 + 98 3 29 39 27 9 5 9 39 22 12 20-11100.0108.0107.0 + 98 3 30 5 6 12 7 7 9 5 12 8-11107.2108.1107.1 + 98 3 31 18 22 15 5 5 2 0 4 9-11107.9108.2107.2 + 98 4 1 5 5 5 2 0 2 4 0 3-11105.6108.4107.3 + 98 4 2 2 0 2 0 3 2 4 9 3-11103.4108.6107.4 + 98 4 3 7 5 6 2 5 12 5 4 6-11103.6109.0107.4 + 98 4 4 9 18 9 5 6 7 3 7 8-11110.2109.3107.5 + 98 4 5 6 3 4 3 3 3 3 0 3-11126.4109.6107.6 + 98 4 6 5 0 2 5 7 4 6 3 4-11133.7109.9107.7 + 98 4 7 7 6 4 2 5 12 12 15 8-11135.5110.1107.8 + 98 4 8 12 7 5 2 2 4 15 6 7-11141.0110.3107.9 + 98 4 9 6 7 7 6 6 6 7 6 6-11140.2110.4108.0 + 98 4 10 9 12 7 6 5 27 27 32 16-11130.2110.5108.1 + 98 4 11 18 7 9 7 7 12 12 18 11-11128.8110.4108.2 + 98 4 12 27 18 5 7 3 4 4 5 9-11117.6110.4108.3 + 98 4 13 3 5 2 0 2 2 7 12 4-11115.5110.4108.4 + 98 4 14 6 12 6 5 7 7 3 3 6-11112.6110.3108.5 + 98 4 15 2 5 4 4 2 3 3 5 4-11113.5110.3108.5 + 98 4 16 7 3 7 9 6 3 3 12 6-11107.2110.4108.7 + 98 4 17 7 15 12 15 27 15 18 4 14-11102.1110.5108.8 + 98 4 18 4 4 9 15 7 3 3 0 6-11 99.4110.6108.9 + 98 4 19 0 0 2 2 4 7 12 7 4-11 96.7110.7109.0 + 98 4 20 3 9 12 7 22 4 4 12 9-11 98.7110.8109.1 + 98 4 21 7 12 4 6 6 6 5 7 7-11 92.9110.7109.2 + 98 4 22 3 12 4 3 6 6 6 7 6-11 88.5110.8109.3 + 98 4 23 6 12 9 4 3 3 48 32 15-11 91.3110.8109.4 + 98 4 24 39 67 56 39 39 7 7 27 35-11 91.7110.8109.5 + 98 4 25 48 27 15 15 27 18 48 12 26-11 93.0110.6109.6 + 98 4 26 39 39 22 18 48 39 15 27 31-11 91.8110.5109.6 + 98 4 27 27 22 9 12 9 5 7 5 12-11 92.6110.5109.7 + 98 4 28 15 9 6 6 6 6 7 9 8-11 99.8110.3109.8 + 98 4 29 6 5 3 4 4 4 3 6 4-11102.0110.3109.8 + 98 4 30 6 3 3 12 18 27 15 15 12-11104.1110.2109.9 + 98 5 1 5 6 6 4 7 5 6 32 9-11115.1110.1109.9 + 98 5 2 18 48 39 80111 80 48 80 63-11118.8109.9110.0 + 98 5 3 80 80 56 32 48 39 80 80 62-11119.3109.9110.1 + 98 5 4 80300236 67 80 22 9 15101-11123.2109.8110.2 + 98 5 5 18111 39 12 56 67 27 7 42-11135.7109.7110.3 + 98 5 6 5 5 4 4 7 5 3 9 5-11132.4109.6110.3 + 98 5 7 12 12 4 15 9 7 7 15 10-11125.6109.6110.4 + 98 5 8 27 18 18 27 32 32 18 9 23-11120.2109.6110.5 + 98 5 9 5 18 18 5 7 18 22 9 13-11112.8109.6110.7 + 98 5 10 5 4 12 15 15 9 12 9 10-11109.3109.6110.8 + 98 5 11 9 9 9 9 6 9 15 22 11-11110.2109.5111.0 + 98 5 12 22 18 15 12 9 9 15 5 13-11114.4109.5111.2 + 98 5 13 6 5 6 3 5 4 3 5 5-11119.1109.5111.3 + 98 5 14 3 4 5 3 5 2 3 4 4-11119.8109.5111.5 + 98 5 15 4 2 2 2 15 15 9 9 7-11118.6109.4111.6 + 98 5 16 6 7 4 5 7 18 27 22 12-11120.4109.2111.7 + 98 5 17 48 6 4 4 7 9 5 15 12-11113.0109.0111.8 + 98 5 18 7 5 5 5 15 9 15 12 9-11104.6108.8111.8 + 98 5 19 6 9 5 9 4 6 2 0 5-11101.5108.6111.9 + 98 5 20 4 3 5 7 18 22 32 6 12-11 94.1108.4111.9 + 98 5 21 15 18 15 9 12 5 15 18 13-11 91.2108.3112.0 + 98 5 22 18 4 4 6 7 12 4 4 7-11 89.6108.4112.1 + 98 5 23 9 9 12 6 9 7 15 18 11-11 92.6108.4112.1 + 98 5 24 15 12 22 7 12 12 9 7 12-11 98.0108.6112.2 + 98 5 25 5 5 15 7 7 15 12 12 10-11 94.7108.9112.3 + 98 5 26 15 3 3 2 6 12 15 9 8-11 94.9109.1112.4 + 98 5 27 7 7 4 6 5 5 4 7 6-11 96.6109.3112.5 + 98 5 28 3 5 3 2 4 3 6 15 5-11101.1109.5112.6 + 98 5 29 9 12 7 7 22111 18 18 26-11 97.6109.7112.7 + 98 5 30 39 27 22 12 9 18 6 9 18-11 98.8110.0112.8 + 98 5 31 7 4 3 4 3 2 6 4 4-11 96.8110.1113.0 + 98 6 1 6 4 4 2 3 4 5 4 4-11103.0110.4113.1 + 98 6 2 7 5 4 7 9 4 6 12 7-11107.7110.5113.2 + 98 6 3 5 5 7 15 27 12 18 22 14-11116.4110.8113.3 + 98 6 4 15 7 6 7 6 4 5 5 7-11115.0111.0113.4 + 98 6 5 6 7 6 9 22 27 15 7 12-11118.4111.1113.6 + 98 6 6 6 7 5 12 22 22 27 22 15-11118.5111.4113.7 + 98 6 7 32 22 18 7 7 9 9 12 15-11116.4111.5113.7 + 98 6 8 15 7 7 6 9 15 12 6 10-11120.5111.5113.9 + 98 6 9 3 4 12 9 7 7 15 6 8-11115.7111.6114.1 + 98 6 10 7 4 9 12 39 9 12 27 15-11115.3111.7114.2 + 98 6 11 15 5 5 6 3 3 5 2 6-11115.8111.7114.3 + 98 6 12 6 12 9 5 5 2 3 4 6-11115.7111.7114.4 + 98 6 13 3 4 2 2 4 4 12 6 5-11113.9111.7114.6 + 98 6 14 15 32 12 7 12 9 5 6 12-11105.1111.8114.7 + 98 6 15 3 5 5 9 15 9 4 4 7-11103.6111.6114.9 + 98 6 16 5 4 4 5 4 15 5 6 6-11107.3111.5115.0 + 98 6 17 4 5 3 0 2 0 0 3 2-11103.9111.5115.1 + 98 6 18 3 4 3 4 4 3 4 15 5-11103.3111.5115.3 + 98 6 19 12 4 15 27 9 9 9 4 11-11101.8111.7115.5 + 98 6 20 4 15 12 6 7 7 18 39 14-11104.4111.8115.6 + 98 6 21 18 18 18 22 9 4 12 15 15-11105.4111.9115.7 + 98 6 22 15 6 5 7 6 7 18 12 10-11103.8111.9115.9 + 98 6 23 6 5 6 4 3 9 12 32 10-11 98.9111.8115.9 + 98 6 24 12 15 7 15 18 22 15 22 16-11108.8111.7116.0 + 98 6 25 9 12 6 6 3 12 12 15 9-11109.7111.7116.1 + 98 6 26 94 94 48 32 22 12 27 7 42-11112.8111.8116.2 + 98 6 27 6 6 4 4 5 5 3 3 5-11119.1112.2116.3 + 98 6 28 0 2 3 4 4 3 3 3 3-11126.1112.7116.5 + 98 6 29 2 2 3 4 6 3 2 2 3-11123.3113.4116.7 + 98 6 30 3 3 2 2 5 4 2 3 3-11125.0114.1116.9 + 98 7 1 3 2 2 4 3 7 9 12 5-11131.1114.9117.1 + 98 7 2 18 6 9 5 6 4 5 7 8-11124.4115.7117.3 + 98 7 3 18 7 4 4 7 4 9 12 8-11131.9116.4117.5 + 98 7 4 9 12 9 5 6 7 18 12 10-11133.5117.0117.7 + 98 7 5 27 15 7 15 12 15 27 9 16-11127.6117.5117.9 + 98 7 6 15 27 22 15 48 12 6 5 19-11125.2118.0118.1 + 98 7 7 7 6 5 6 7 3 2 0 5-11118.5118.6118.2 + 98 7 8 2 6 3 2 2 3 4 3 3-11116.2119.1118.3 + 98 7 9 2 2 5 4 12 32 32 32 15-11118.2119.6118.4 + 98 7 10 12 4 2 3 2 4 4 7 5-11112.9120.0118.5 + 98 7 11 9 7 6 4 9 18 27 9 11-11111.3120.6118.7 + 98 7 12 5 5 15 6 4 3 3 6 6-11102.6121.0118.8 + 98 7 13 3 3 2 2 3 4 9 9 4-11109.7121.3118.8 + 98 7 14 2 0 2 2 4 2 3 0 2-11106.3121.5118.9 + 98 7 15 2 2 2 0 2 3 2 12 3-11108.2121.6119.0 + 98 7 16 18 80 32 39 32 48 27 22 37-11109.7121.7119.2 + 98 7 17 12 6 12 6 9 6 4 2 7-11103.6121.8119.3 + 98 7 18 5 3 2 5 6 6 5 12 6-11102.4122.1119.5 + 98 7 19 4 5 7 5 4 3 2 5 4-11105.2122.4119.7 + 98 7 20 7 4 3 0 2 2 3 5 3-11115.4122.8119.9 + 98 7 21 4 22 18 12 9 5 6 4 10-11113.9123.4120.2 + 98 7 22 5 4 3 5 15 18 7 27 11-11117.8124.2120.6 + 98 7 23 18 56 48 39 48 48 27 32 40-11119.1125.0120.8 + 98 7 24 27 22 18 48 22 39 27 18 28-11129.2125.7121.1 + 98 7 25 9 18 18 9 5 15 6 6 11-11125.5126.4121.3 + 98 7 26 7 7 4 4 5 4 2 3 5-11122.8127.1121.5 + 98 7 27 2 4 2 6 4 3 3 4 4-11123.2127.7121.6 + 98 7 28 2 3 2 3 7 5 7 12 5-11125.1128.5121.7 + 98 7 29 7 12 7 5 6 6 4 5 7-11123.1129.1121.8 + 98 7 30 6 5 2 4 5 7 12 48 11-11118.3129.8121.9 + 98 7 31 22 15 39 22 32 39 48 18 29-11117.2130.3122.0 + 98 8 1 6 5 9 7 32 32 67 9 21-11115.4130.8122.1 + 98 8 2 7 5 5 6 3 3 9 7 6-11112.9131.2122.2 + 98 8 3 4 4 5 9 5 3 5 6 5-11111.7131.7122.2 + 98 8 4 7 12 5 4 3 9 12 7 7-11119.2132.0122.3 + 98 8 5 4 6 5 9 9 7 6 4 6-11130.5132.1122.3 + 98 8 6 7 27 80154111 12 27 94 64-11142.2132.2122.4 + 98 8 7 32 80 18 15 22 6 12 9 24-11149.1132.2122.4 + 98 8 8 9 12 7 6 7 6 5 2 7-11150.9132.1122.5 + 98 8 9 0 2 2 2 4 5 3 2 3-11158.3132.1122.5 + 98 8 10 18 15 18 5 18 6 22 18 15-11153.3132.2122.7 + 98 8 11 9 3 4 5 5 5 5 15 6-11154.1132.2122.8 + 98 8 12 12 12 6 3 3 4 4 15 7-11150.9132.4123.0 + 98 8 13 12 7 7 6 4 4 2 0 5-11140.4132.5123.2 + 98 8 14 2 2 6 7 9 12 9 2 6-11140.6132.6123.4 + 98 8 15 0 3 0 5 6 6 9 5 4-11136.8132.7123.7 + 98 8 16 3 4 2 2 3 5 2 0 3-11143.3132.9124.0 + 98 8 17 2 5 3 2 2 3 2 3 3-11139.7133.1124.2 + 98 8 18 2 4 7 3 3 4 5 7 4-11135.8133.3124.4 + 98 8 19 6 3 5 3 5 7 15 27 9-11137.9133.3124.6 + 98 8 20 22 9 9 18 15 22 27 15 17-11141.9133.4124.8 + 98 8 21 15 4 3 2 2 0 0 9 4-11135.2133.5125.0 + 98 8 22 5 5 15 27 18 22 32 15 17-11135.9133.7125.2 + 98 8 23 22 15 27 27 22 15 12 5 18-11129.3133.7125.3 + 98 8 24 3 7 9 6 7 9 7 15 8-11123.9133.8125.4 + 98 8 25 22 18 4 5 5 5 12 9 10-11124.8133.9125.5 + 98 8 26 7 9 39 67 39 67 67 94 49-11129.6134.0125.5 + 98 8 27207207179111111111132 94144-11137.8134.2125.6 + 98 8 28 32 48 32 18 22 39 27 18 30-11142.0134.4125.7 + 98 8 29 22 15 12 6 22 22 56 7 20-11149.4134.7125.7 + 98 8 30 15 22 9 15 12 18 22 9 15-11166.4134.7125.8 + 98 8 31 12 9 22 15 22 27 15 12 17-11181.8134.8125.9 + 98 9 1 15 27 7 12 18 27 27 15 19-11180.2134.8126.0 + 98 9 2 7 3 3 12 12 12 9 12 9-11166.3134.8126.1 + 98 9 3 18 7 3 3 6 15 3 6 8-11165.5134.6126.2 + 98 9 4 6 6 6 4 3 3 5 6 5-11157.3134.5126.3 + 98 9 5 3 0 3 6 2 6 6 12 5-11156.8134.6126.3 + 98 9 6 9 9 3 5 6 3 2 5 5-11167.1134.7126.4 + 98 9 7 4 3 3 4 4 6 15 6 6-11153.5134.8126.5 + 98 9 8 22 22 4 4 3 7 7 5 9-11155.8134.9126.6 + 98 9 9 18 12 3 7 5 5 7 4 8-11147.4134.8126.7 + 98 9 10 12 12 4 3 3 3 5 4 6-11143.6134.9126.8 + 98 9 11 4 0 5 2 5 6 7 15 6-11140.4134.9126.9 + 98 9 12 9 7 12 12 15 18 12 9 12-11136.6134.9127.0 + 98 9 13 12 7 5 6 5 5 3 2 6-11132.3134.9127.1 + 98 9 14 4 2 4 3 2 2 4 7 4-11123.3134.8127.1 + 98 9 15 4 9 7 6 3 4 6 2 5-11118.6134.5127.2 + 98 9 16 3 0 5 4 6 3 4 6 4-11119.9134.0127.3 + 98 9 17 12 15 3 2 2 3 5 9 6-11118.6133.4127.3 + 98 9 18 9 7 5 22 56 32 48 22 25-11123.7132.9127.4 + 98 9 19 12 6 5 7 9 4 9 9 8-11128.0132.2127.4 + 98 9 20 12 3 4 4 4 3 2 5 5-11133.3131.7127.4 + 98 9 21 15 22 22 12 15 4 2 0 12-11139.4131.2127.4 + 98 9 22 0 6 12 5 5 4 18 5 7-11142.1130.9127.3 + 98 9 23 15 15 12 9 9 5 12 12 11-11144.1130.7127.3 + 98 9 24 18 39 27 22 5 12 18 80 28-11136.2130.8127.3 + 98 9 25179207236132 94 67 12 9117-11139.2130.8127.3 + 98 9 26 7 6 5 12 27 32 32 18 17-11136.2130.9127.2 + 98 9 27 18 9 7 15 15 7 6 5 10-11128.0130.9127.2 + 98 9 28 4 5 6 4 2 3 7 5 5-11123.0131.0127.3 + 98 9 29 3 9 7 6 5 5 15 6 7-11116.3131.1127.2 + 98 9 30 6 9 3 5 5 6 12 27 9-11121.8131.3127.2 + 98 10 1 56 22 18 15 15 32 18 15 24-11119.1131.5127.2 + 98 10 2 32 18 39 9 27 39 56 39 32-11112.9131.6127.2 + 98 10 3 32 27 18 6 15 4 4 3 14-11112.0131.8127.2 + 98 10 4 5 3 4 2 5 0 0 6 3-11114.9131.9127.2 + 98 10 5 6 2 0 2 2 2 5 4 3-11117.1131.9127.2 + 98 10 6 2 0 0 0 0 9 5 5 3-11116.9131.8127.3 + 98 10 7 15 12 12 12 32 67 56 15 28-11124.1131.6127.3 + 98 10 8 32 9 18 15 9 12 12 15 15-11123.8131.3127.3 + 98 10 9 15 27 22 15 15 9 9 15 16-11123.2130.8127.3 + 98 10 10 9 18 7 5 5 3 7 5 7-11120.3130.2127.3 + 98 10 11 15 6 4 3 7 3 7 5 6-11118.5129.4127.3 + 98 10 12 15 5 0 3 4 4 4 3 5-11113.4128.6127.3 + 98 10 13 5 6 4 7 3 3 3 6 5-11117.5128.1127.4 + 98 10 14 2 9 2 2 0 0 2 0 2-11118.4127.6127.4 + 98 10 15 0 2 3 2 5 12 5 2 4-11130.4127.4127.4 + 98 10 16 3 0 2 3 4 0 4 6 3-11130.1127.2127.5 + 98 10 17 5 7 12 7 9 12 7 6 8-11134.4127.0127.5 + 98 10 18 5 7 9 7 6 7 18 15 9-11125.0127.1127.5 + 98 10 19 56111 27 48 94 80 48 32 62-11116.8127.1127.6 + 98 10 20 15 15 18 22 7 7 48 48 23-11120.2127.3127.6 + 98 10 21 39 32 22 18 12 22 32 5 23-11117.2127.5127.6 + 98 10 22 7 9 27 27 22 32 22 15 20-11113.8127.7127.7 + 98 10 23 9 12 5 9 22 27 18 18 15-11111.4127.9127.7 + 98 10 24 18 18 12 6 7 6 9 15 11-11109.6128.1127.7 + 98 10 25 18 27 9 7 9 15 7 2 12-11106.3128.3127.7 + 98 10 26 2 5 7 4 2 2 3 7 4-11102.8128.6127.8 + 98 10 27 6 4 4 5 7 6 12 39 10-11101.8128.8127.8 + 98 10 28 15 7 9 7 6 6 9 9 9-11106.4129.1127.9 + 98 10 29 18 6 12 9 12 12 7 9 11-11108.0129.6127.9 + 98 10 30 9 12 6 5 2 0 2 2 5-11109.9129.8128.0 + 98 10 31 4 4 2 3 2 3 18 3 5-11117.0129.8128.0 + 98 11 1 6 5 2 3 0 3 6 3 4-11119.5129.8128.1 + 98 11 2 9 5 0 2 4 2 9 4 4-11124.1129.7128.1 + 98 11 3 5 6 3 6 3 7 9 9 6-11149.3129.7128.2 + 98 11 4 12 3 5 6 4 6 5 4 6-11139.0129.7128.2 + 98 11 5 7 3 5 6 12 15 7 9 8-11150.1129.7128.2 + 98 11 6 12 18 32 15 18 22 18 22 20-11138.4129.7128.3 + 98 11 7 12 12 15 27 48 48 27 18 26-11145.8129.9128.5 + 98 11 8 80179154 39 27 18 12 18 66-11149.9130.2128.7 + 98 11 9 39 67111 94 80 56111 39 75-11159.3130.4128.8 + 98 11 10 22 9 5 6 3 3 2 0 6-11150.8130.5129.0 + 98 11 11 0 0 2 5 3 2 3 6 3-11144.1130.7129.1 + 98 11 12 3 3 5 2 3 2 4 6 4-11138.7130.8129.2 + 98 11 13 80 67 67 48 32 67 80 67 64-11132.6131.1129.3 + 98 11 14 56 67 32 67 56 22 22 9 41-11123.8131.3129.3 + 98 11 15 6 4 4 9 15 9 18 15 10-11123.7131.6129.4 + 98 11 16 9 9 6 6 5 6 5 12 7-11121.8131.9129.5 + 98 11 17 15 9 7 3 3 4 2 2 6-11118.0132.4129.6 + 98 11 18 7 9 9 7 9 5 7 6 7-11112.2133.0129.8 + 98 11 19 12 7 6 7 7 9 5 4 7-11113.7133.7129.9 + 98 11 20 3 7 9 12 7 4 18 18 10-11118.6134.4130.1 + 98 11 21 7 7 5 5 6 9 4 5 6-11118.3135.0130.2 + 98 11 22 9 9 9 5 4 6 4 2 6-11123.0135.6130.3 + 98 11 23 12 9 6 7 15 12 9 18 11-11126.7136.0130.5 + 98 11 24 9 15 7 12 18 27 27 12 16-11136.7136.4130.6 + 98 11 25 7 15 9 7 6 22 22 15 13-11145.6136.6130.8 + 98 11 26 9 7 15 15 7 18 7 5 10-11152.3136.6130.9 + 98 11 27 15 15 7 7 9 12 3 3 9-11154.7136.4131.1 + 98 11 28 9 15 3 2 3 9 6 5 7-11160.4136.3131.2 + 98 11 29 9 9 5 6 5 2 22 7 8-11163.2136.2131.4 + 98 11 30 2 27 22 15 6 18 32 32 19-11158.9136.1131.6 + 98 12 1 18 18 7 12 18 9 5 4 11-11158.2135.9131.8 + 98 12 2 3 6 7 4 2 3 5 5 4-11147.4135.9132.0 + 98 12 3 6 3 6 4 9 18 9 4 7-11148.7135.8132.2 + 98 12 4 5 9 7 7 12 18 12 9 10-11144.0135.9132.3 + 98 12 5 12 15 22 12 18 9 15 5 14-11138.3136.2132.4 + 98 12 6 0 9 6 9 9 9 7 7 7-11138.1136.7132.6 + 98 12 7 9 3 9 4 6 12 5 12 8-11148.7137.3132.7 + 98 12 8 6 2 4 4 3 6 3 3 4-11157.1137.9132.8 + 98 12 9 6 6 6 5 5 18 4 0 6-11149.3138.6132.9 + 98 12 10 4 3 5 4 4 7 7 18 7-11129.8139.4133.0 + 98 12 11 39 39 56 27 27 39 18 18 33-11138.8140.8133.2 + 98 12 12 18 9 5 5 4 3 6 7 7-11138.9141.4133.3 + 98 12 13 4 2 0 2 2 4 5 5 3-11139.7142.0133.5 + 98 12 14 6 5 4 5 7 5 3 6 5-11139.9142.1133.6 + 98 12 15 15 3 3 3 3 3 3 15 6-11137.2142.4133.8 + 98 12 16 18 12 18 15 6 18 4 2 12-11136.1142.2133.9 + 98 12 17 2 0 0 0 0 0 0 0 0-11141.5142.0134.0 + 98 12 18 0 2 2 5 4 3 2 3 3-11149.8141.7134.1 + 98 12 19 4 2 3 4 12 15 9 22 9-11133.6141.3134.2 + 98 12 20 12 15 12 12 15 12 12 6 12-11130.4140.8134.4 + 98 12 21 3 2 3 3 4 5 3 5 4-11130.9140.3134.5 + 98 12 22 5 4 3 2 2 3 12 4 4-11124.6139.9134.6 + 98 12 23 5 2 7 6 6 9 6 6 6-11135.2139.6134.8 + 98 12 24 5 5 2 3 3 4 4 5 4-11134.9139.3135.0 + 98 12 25 15 9 7 27 6 9 9 15 12-11139.6139.1135.3 + 98 12 26 9 27 18 7 27 6 9 15 15-11140.2138.8135.5 + 98 12 27 7 2 0 3 2 2 0 0 2-11161.4138.6135.8 + 98 12 28 0 4 2 3 4 9 22 15 7-11178.3138.3136.0 + 98 12 29 7 9 12 15 22 27 48 32 22-11176.8138.3136.1 + 98 12 30 12 12 9 3 2 5 4 5 7-11173.1138.3136.4 + 98 12 31 6 4 3 3 4 3 4 2 4-11168.8138.4136.6 + 99 1 1 2 12 4 5 6 5 9 7 6-11161.6138.8136.8 + 99 1 2 7 9 4 9 9 9 5 3 7-11154.8139.3137.0 + 99 1 3 9 6 3 0 4 3 3 5 4-11149.4140.0137.1 + 99 1 4 4 7 6 6 6 7 5 12 7-11142.0140.7137.3 + 99 1 5 18 18 7 6 5 5 2 7 9-11132.0141.3137.4 + 99 1 6 9 5 12 4 18 9 15 9 10-11121.6141.7137.5 + 99 1 7 4 4 7 7 12 15 12 9 9-11111.3142.1137.6 + 99 1 8 18 12 9 22 15 15 27 18 17-11111.7142.4137.7 + 99 1 9 22 18 15 6 4 5 7 12 11-11111.0142.5137.9 + 99 1 10 9 5 7 15 3 0 5 4 6-11106.7142.5138.0 + 99 1 11 7 6 5 6 4 4 7 5 6-11108.2142.4138.1 + 99 1 12 5 2 4 4 7 3 7 9 5-11109.1142.4138.2 + 99 1 13 9 7 5 18 27 56 67132 40-11114.7142.1138.3 + 99 1 14 12 12 48 56 32 27 15 32 29-11132.4141.9138.4 + 99 1 15 22 39 15 18 18 22 15 7 20-11138.0141.6138.5 + 99 1 16 9 18 9 9 5 5 4 5 8-11153.4141.3138.6 + 99 1 17 12 7 7 4 4 4 3 5 6-11156.2140.9138.7 + 99 1 18 0 0 2 2 3 7 15 9 5-11165.4140.4138.8 + 99 1 19 7 4 5 6 2 2 2 3 4-11170.3140.0138.9 + 99 1 20 5 3 2 4 6 18 15 7 8-11231.3139.9139.0 + 99 1 21 4 9 5 15 6 3 3 2 6-11169.7139.7139.1 + 99 1 22 5 4 5 5 18 27 22 22 14-11172.3139.7139.3 + 99 1 23 9 15 15 18 7 32 27 48 21-11160.8139.7139.5 + 99 1 24 32 22 18 9 12 15 22 6 17-11156.8139.5139.6 + 99 1 25 22 12 9 9 5 5 6 5 9-11133.9139.2139.8 + 99 1 26 9 3 4 7 3 0 3 9 5-11129.1138.9140.0 + 99 1 27 7 15 6 7 12 12 9 5 9-11121.6138.7140.2 + 99 1 28 2 3 9 7 12 12 6 7 7-11115.2138.4140.4 + 99 1 29 5 7 7 7 9 9 6 7 7-11114.2138.4140.7 + 99 1 30 7 4 5 6 2 4 2 2 4-11114.5138.4140.9 + 99 1 31 3 6 4 3 4 4 2 0 3-11111.5138.5141.2 + 99 2 1 0 0 0 2 0 0 0 0 0-11114.5138.7141.5 + 99 2 2 0 2 0 0 0 0 2 4 1-11107.7138.9141.8 + 99 2 3 5 2 4 4 7 6 6 9 5-11105.8139.1142.0 + 99 2 4 4 7 4 7 12 15 15 7 9-11104.3139.3142.2 + 99 2 5 12 7 4 7 12 12 15 7 10-11100.9139.4142.2 + 99 2 6 6 15 12 12 9 22 15 7 12-11 96.6139.2142.3 + 99 2 7 7 12 15 18 12 18 6 15 13-11106.5138.7142.2 + 99 2 8 7 7 5 6 7 4 6 3 6-11121.1138.2142.2 + 99 2 9 6 5 3 0 2 3 3 3 3-11125.9137.6142.1 + 99 2 10 4 4 7 2 3 6 9 9 6-11148.4136.9142.1 + 99 2 11 22 12 15 15 27 27 27 15 20-11159.3136.3142.0 + 99 2 12 22 22 32 27 18 32 27 9 24-11183.6135.7142.0 + 99 2 13 7 12 12 7 4 4 7 7 8-11193.4135.2142.0 + 99 2 14 3 2 6 7 15 15 6 7 8-11199.6134.7141.9 + 99 2 15 27 22 12 15 15 9 12 7 15-11185.5134.3141.9 + 99 2 16 7 3 4 6 4 2 2 3 4-11187.3134.1141.9 + 99 2 17 3 12 22 48 27 7 6 9 17-11185.3134.0141.9 + 99 2 18 39 80111111111 56 80 48 80-11164.2133.9141.9 + 99 2 19 67 56 48 32 56 27 22 12 40-11160.5133.8142.0 + 99 2 20 2 0 2 0 3 4 9 5 3-11153.6133.8142.0 + 99 2 21 0 3 2 2 2 4 5 12 4-11144.0133.7142.2 + 99 2 22 9 5 7 5 3 2 7 9 6-11127.0133.6142.3 + 99 2 23 6 9 15 6 9 18 5 2 9-11124.3133.6142.6 + 99 2 24 3 6 7 15 18 15 7 4 9-11117.3133.6142.8 + 99 2 25 3 22 4 6 3 9 4 0 6-11117.1133.6143.1 + 99 2 26 0 2 0 0 4 3 0 0 1-11113.4133.5143.3 + 99 2 27 4 2 6 6 4 3 4 4 4-11112.9133.2143.6 + 99 2 28 0 3 7 4 12 27 27 56 17-11120.7132.9143.8 + 99 3 1 67 56 22 15 48 39 48 32 41-11118.0132.5143.9 + 99 3 2 67 27 15 6 15 18 12 12 22-11127.6131.2143.9 + 99 3 3 6 12 7 15 7 27 39 18 16-11134.6130.8143.9 + 99 3 4 15 22 48 22 27 48 39 22 30-11141.6130.2143.9 + 99 3 5 39 18 18 12 7 22 6 3 16-11125.4129.8143.8 + 99 3 6 9 15 3 7 7 9 18 39 13-11112.6129.3143.7 + 99 3 7 22 32 39 22 7 22 18 12 22-11108.3129.2143.6 + 99 3 8 12 22 6 6 5 7 9 32 12-11125.0129.1143.5 + 99 3 9 22 27 27 18 32 18 18 6 21-11125.3129.0143.4 + 99 3 10 48 94 39 48 9 12 12 9 34-11133.6128.9143.3 + 99 3 11 18 18 18 15 22 15 7 6 15-11135.3128.8143.2 + 99 3 12 5 9 9 15 12 9 18 12 11-11138.5128.7143.1 + 99 3 13 5 0 0 6 18 5 5 9 6-11142.7128.6143.1 + 99 3 14 15 12 5 12 27 15 15 22 15-11148.7128.4143.1 + 99 3 15 22 32 22 12 9 6 4 6 14-11148.4128.3143.2 + 99 3 16 2 2 5 5 3 4 2 4 3-11154.1128.3143.3 + 99 3 17 4 0 3 5 5 12 6 3 5-11152.9128.3143.4 + 99 3 18 4 6 7 7 6 9 7 2 6-11146.7128.4143.5 + 99 3 19 3 4 6 5 7 7 15 4 6-11138.1128.6143.6 + 99 3 20 5 4 4 5 5 6 7 2 5-11131.6128.8143.7 + 99 3 21 2 4 4 7 12 4 4 0 5-11123.1128.8143.7 + 99 3 22 2 0 0 2 6 5 4 2 3-11115.0129.0143.8 + 99 3 23 3 3 3 6 7 7 6 9 6-11112.2128.8143.8 + 99 3 24 2 4 4 7 4 3 2 2 4-11107.6128.5143.8 + 99 3 25 2 0 2 6 4 18 18 12 8-11106.4127.9143.8 + 99 3 26 4 7 7 12 9 4 2 2 6-11103.1127.3143.7 + 99 3 27 3 6 5 2 3 2 3 9 4-11104.1126.7143.7 + 99 3 28 6 6 9 6 6 5 5 4 6-11102.7126.5143.7 + 99 3 29 18 15 32 22 67 22 27 22 28-11103.8126.3143.7 + 99 3 30 27 12 27 22 18 27 22 18 22-11104.4126.3143.7 + 99 3 31 22 12 9 7 15 12 12 32 15-11101.7126.4143.7 + 99 4 1 32 32 5 5 4 9 3 3 12-11102.9126.4143.7 + 99 4 2 5 18 9 5 12 12 18 5 11-11 99.4126.4143.7 + 99 4 3 9 9 9 7 6 6 22 12 10-11102.7126.5143.8 + 99 4 4 18 9 9 6 15 7 27 18 14-11116.0126.8143.8 + 99 4 5 15 9 18 18 12 15 4 3 12-11132.7127.0143.9 + 99 4 6 18 27 6 4 6 6 6 6 10-11137.6127.5144.0 + 99 4 7 22 15 12 5 6 6 15 9 11-11141.7127.9144.0 + 99 4 8 3 4 5 4 7 27 9 7 8-11139.5128.3144.0 + 99 4 9 7 9 4 3 4 9 6 3 6-11136.7128.7144.1 + 99 4 10 6 12 22 9 22 18 15 22 16-11136.9129.0144.2 + 99 4 11 15 15 15 9 7 9 4 4 10-11131.3129.3144.3 + 99 4 12 22 6 4 15 5 5 3 2 8-11130.7129.5144.4 + 99 4 13 0 2 3 5 4 5 3 5 3-11130.3129.6144.6 + 99 4 14 5 3 15 15 4 6 6 4 7-11121.0129.6144.8 + 99 4 15 5 2 4 5 2 3 4 4 4-11122.7129.9145.0 + 99 4 16 6 7 2 12 22 22 22 48 18-11123.8130.4145.2 + 99 4 17 80154 56 48 9 9 12 6 47-11116.6131.0145.4 + 99 4 18 12 7 3 6 7 5 7 4 6-11113.8131.4145.5 + 99 4 19 3 5 6 22 12 9 18 18 12-11110.9131.8145.6 + 99 4 20 22 22 32 32 32 32 12 9 24-11105.8132.1145.8 + 99 4 21 6 7 12 9 9 32 12 5 12-11104.4132.5145.9 + 99 4 22 6 4 3 2 3 5 6 4 4-11101.4133.0146.0 + 99 4 23 3 4 5 6 6 6 4 3 5-11 99.3133.4146.1 + 99 4 24 9 9 5 5 4 6 4 2 6-11102.0133.7146.2 + 99 4 25 0 2 4 4 6 5 5 9 4-11103.8134.0146.4 + 99 4 26 5 2 3 9 9 9 7 4 6-11105.8134.1146.6 + 99 4 27 4 4 7 12 12 15 32 22 14-11110.0134.3146.8 + 99 4 28 15 12 12 27 9 18 18 39 19-11111.3134.4147.1 + 99 4 29 15 18 7 27 27 32 27 39 24-11123.9134.6147.3 + 99 4 30 32 22 27 18 18 15 22 27 23-11125.3135.1147.4 + 99 5 1 27 22 27 12 18 18 27 15 21-11134.9135.5147.6 + 99 5 2 9 9 12 9 12 7 18 12 11-11137.9136.1147.7 + 99 5 3 15 9 6 7 7 5 9 4 8-11129.2136.8147.8 + 99 5 4 3 5 5 4 3 3 5 5 4-11141.1137.6147.8 + 99 5 5 4 0 3 5 6 15 12 9 7-11143.3138.3147.8 + 99 5 6 12 7 12 12 12 5 6 7 9-11149.5139.0147.8 + 99 5 7 9 12 7 4 6 6 7 6 7-11166.4139.6147.9 + 99 5 8 5 5 2 4 4 3 4 6 4-11175.1140.2147.9 + 99 5 9 5 5 4 6 4 3 6 4 5-11181.7140.7147.9 + 99 5 10 7 7 3 5 4 4 3 0 4-11172.8141.1148.1 + 99 5 11 0 2 0 2 2 2 2 2 2-11162.6141.7148.2 + 99 5 12 2 7 7 7 9 18 12 6 9-11156.3142.2148.5 + 99 5 13 18 48 39 12 39 27 7 12 25-11150.5143.0148.7 + 99 5 14 12 9 15 6 5 5 5 5 8-11147.3143.8149.0 + 99 5 15 7 6 5 7 5 5 6 5 6-11146.8144.7149.2 + 99 5 16 5 4 4 4 3 5 0 0 3-11155.6145.5149.5 + 99 5 17 0 2 2 4 2 4 4 2 3-11148.6146.3149.7 + 99 5 18 22 27 27 22 32 27 48 9 27-11143.8147.1150.0 + 99 5 19 15 9 5 4 9 12 12 15 10-11145.8147.8150.2 + 99 5 20 7 7 5 6 6 7 6 12 7-11145.9148.5150.5 + 99 5 21 12 5 3 3 5 4 5 5 5-11143.7149.4150.8 + 99 5 22 3 4 3 3 5 3 2 3 3-11143.7150.2151.0 + 99 5 23 7 4 4 12 18 7 7 4 8-11144.2151.0151.2 + 99 5 24 7 15 6 9 7 6 12 27 11-11140.4151.9151.4 + 99 5 25 27 22 18 22 15 7 6 5 15-11146.8152.8151.5 + 99 5 26 9 6 5 3 6 9 6 6 6-11156.6153.5151.7 + 99 5 27 7 6 6 5 6 4 5 15 7-11159.3154.1151.8 + 99 5 28 9 5 7 5 5 6 9 9 7-11156.2154.7151.8 + 99 5 29 5 3 0 2 5 6 4 2 3-11152.7155.2151.8 + 99 5 30 0 0 2 4 7 9 7 4 4-11161.1155.7151.9 + 99 5 31 3 3 2 3 2 0 2 5 3-11170.1156.4151.8 + 99 6 1 2 4 5 3 7 9 9 9 6-11176.2157.1151.8 + 99 6 2 15 5 4 6 5 5 5 32 10-11173.1157.8151.9 + 99 6 3 18 6 5 6 6 3 5 6 7-11173.5158.4151.9 + 99 6 4 6 7 9 5 9 9 6 12 8-11170.9158.8151.9 + 99 6 5 7 2 2 4 4 3 6 4 4-11164.0159.2151.9 + 99 6 6 2 3 3 4 4 5 3 0 3-11167.9159.5151.9 + 99 6 7 2 4 3 3 5 6 6 9 5-11157.7159.9151.9 + 99 6 8 9 15 18 18 9 22 9 6 13-11156.5160.3151.9 + 99 6 9 12 15 5 3 12 27 22 18 14-11165.2160.6151.9 + 99 6 10 9 6 4 3 3 3 3 3 4-11161.1160.8151.9 + 99 6 11 2 3 3 4 4 4 6 7 4-11164.7161.0151.9 + 99 6 12 9 7 2 2 5 5 3 5 5-11168.0161.3152.0 + 99 6 13 7 5 3 3 4 3 5 6 5-11167.7162.2152.0 + 99 6 14 2 4 4 2 2 0 2 3 2-11168.2162.8152.1 + 99 6 15 2 0 2 3 9 18 5 5 6-11158.5163.3152.2 + 99 6 16 4 4 7 12 7 5 12 5 7-11152.7163.7152.2 + 99 6 17 7 7 9 4 5 5 4 5 6-11146.5163.8152.4 + 99 6 18 4 9 6 5 6 6 4 12 7-11146.5164.2152.5 + 99 6 19 6 6 4 3 4 5 3 2 4-11138.8164.5152.7 + 99 6 20 2 2 0 3 5 4 4 0 3-11151.5165.0152.9 + 99 6 21 0 2 2 3 3 3 2 2 2-11145.5165.5153.1 + 99 6 22 0 0 2 2 3 3 2 5 2-11161.6166.4153.3 + 99 6 23 3 4 5 5 3 3 5 7 4-11167.5167.2153.5 + 99 6 24 5 4 3 4 6 4 6 4 5-11185.0168.1153.6 + 99 6 25 6 4 2 3 2 3 3 4 3-11200.8168.8153.7 + 99 6 26 7 18 22 15 18 12 39 15 18-11199.5169.1153.8 + 99 6 27 7 12 9 22 48 27 56 22 25-11207.4169.5153.9 + 99 6 28 9 80 67 18 9 7 9 9 26-11196.6169.6153.9 + 99 6 29 5 6 6 9 7 9 7 4 7-11191.3169.6153.8 + 99 6 30 4 3 5 2 2 3 3 2 3-11209.5169.5153.7 + 99 7 1 4 3 5 5 5 4 12 12 6-11202.0169.4153.6 + 99 7 2 22 18 48 27 9 27 27 32 26-11193.4169.2153.5 + 99 7 3 15 9 22 6 3 7 2 5 9-11203.5169.0153.4 + 99 7 4 0 0 2 2 3 2 2 3 2-11191.9168.9153.3 + 99 7 5 0 0 0 2 3 4 5 6 3-11180.0168.7153.2 + 99 7 6 12 5 6 3 3 15 12 9 8-11173.5168.4153.2 + 99 7 7 5 5 3 2 2 4 7 6 4-11163.7168.1153.2 + 99 7 8 7 4 4 6 9 6 6 7 6-11154.1168.0153.3 + 99 7 9 9 4 3 3 3 2 3 3 4-11155.9167.7153.3 + 99 7 10 2 3 3 3 5 4 7 4 4-11161.5167.4153.5 + 99 7 11 2 3 4 3 4 3 4 9 4-11157.8167.3153.6 + 99 7 12 12 18 15 9 7 5 9 6 10-11159.2167.1153.7 + 99 7 13 5 5 3 3 3 5 6 3 4-11148.3167.2153.9 + 99 7 14 2 0 0 3 3 4 15 12 5-11133.9167.4154.1 + 99 7 15 15 7 9 6 9 9 7 6 9-11133.8167.8154.3 + 99 7 16 4 3 3 4 5 5 3 4 4-11136.4168.4154.5 + 99 7 17 3 2 3 3 5 5 4 2 3-11141.3169.2154.7 + 99 7 18 3 4 5 4 4 4 3 5 4-11142.8170.0154.8 + 99 7 19 6 4 3 4 4 3 2 3 4-11145.8171.2154.9 + 99 7 20 3 3 2 3 9 12 3 5 5-11144.1171.9155.0 + 99 7 21 5 3 7 7 6 39 39 6 14-11152.1172.4155.0 + 99 7 22 9 22 32 39 32 27 22 15 25-11157.8172.7154.8 + 99 7 23 15 9 5 9 12 15 15 6 11-11199.9172.7154.7 + 99 7 24 18 12 5 12 9 6 12 15 11-11190.1172.6154.7 + 99 7 25 9 7 7 5 6 4 15 12 8-11188.0172.2154.6 + 99 7 26 7 5 5 9 7 5 3 6 6-11177.8171.9154.6 + 99 7 27 6 6 9 4 6 3 4 2 5-11179.9171.6154.6 + 99 7 28 3 3 4 6 6 15 18 18 9-11203.9171.2154.6 + 99 7 29 15 9 4 4 4 3 4 6 6-11208.6170.8154.6 + 99 7 30 12 7 12 18 48 56179 94 53-11212.2170.5154.6 + 99 7 31 39 39 27 5 7 9 56 39 28-11206.7169.9154.6 + 99 8 1 32 15 5 4 3 4 0 2 8-11222.9169.7154.7 + 99 8 2 3 7 7 4 6 9 6 5 6-11218.8169.2154.7 + 99 8 3 7 3 3 4 2 3 7 7 5-11216.9168.9154.8 + 99 8 4 15 18 18 7 5 6 3 5 10-11206.0168.5154.8 + 99 8 5 9 6 3 5 9 7 5 9 7-11182.1168.0154.9 + 99 8 6 5 6 5 12 22 27 22 18 15-11175.3167.5155.0 + 99 8 7 22 7 6 6 5 5 12 15 10-11157.6166.9155.1 + 99 8 8 6 3 3 5 4 3 12 22 7-11141.7166.4155.3 + 99 8 9 22 18 22 18 12 9 2 2 13-11141.9166.0155.4 + 99 8 10 2 2 2 2 4 7 9 9 5-11130.8165.2155.5 + 99 8 11 12 7 3 4 4 4 9 6 6-11131.4164.5155.6 + 99 8 12 6 6 12 6 9 4 6 12 8-11126.4164.0155.6 + 99 8 13 7 15 12 9 6 3 5 7 8-11129.8163.2155.6 + 99 8 14 4 4 4 6 4 4 4 4 4-11131.5162.6155.5 + 99 8 15 4 4 5 18 32 32 39 18 19-11134.5162.0155.3 + 99 8 16 9 7 22 39 56 39 39 18 29-11134.4161.4155.2 + 99 8 17 39 39 56 18 32 18 22 9 29-11144.5160.9155.0 + 99 8 18 32 39 32 18 27 48 15 15 28-11133.9160.5154.9 + 99 8 19 27 27 32 32 18 15 22 22 24-11138.0160.1154.8 + 99 8 20 18 67 27 48 48 39 15 22 36-11155.2159.7154.7 + 99 8 21 6 5 5 7 7 4 3 2 5-11165.0159.3154.6 + 99 8 22 0 3 7 4 7 18 22 32 12-11176.7158.8154.5 + 99 8 23 67 39 18 12 32 27 27 27 31-11191.7158.6154.5 + 99 8 24 22 22 32 27 67 27 18 18 29-11206.4158.6154.6 + 99 8 25 9 6 5 3 5 6 9 27 9-11212.9158.7154.7 + 99 8 26 7 15 2 6 18 27 22 27 16-11226.9158.8154.8 + 99 8 27 15 12 18 5 12 18 18 9 13-11227.7158.7155.0 + 99 8 28 12 9 12 15 12 15 12 12 12-11253.4158.6155.2 + 99 8 29 12 7 7 7 4 15 15 9 10-11222.5158.6155.5 + 99 8 30 6 12 32 48 15 27 22 22 23-11201.9158.7155.7 + 99 8 31 15 18 15 18 9 18 48 39 23-11186.1158.8155.9 + 99 9 1 15 32 32 15 22 15 15 15 20-11165.8158.9156.2 + 99 9 2 18 12 12 6 6 7 7 4 9-11159.3158.7156.4 + 99 9 3 5 18 27 22 18 15 4 9 15-11141.7158.7156.5 + 99 9 4 9 18 18 12 7 12 7 7 11-11133.5158.9156.7 + 99 9 5 6 15 4 5 5 3 4 6 6-11123.8159.1157.0 + 99 9 6 4 4 6 5 3 6 7 7 5-11120.4159.2157.3 + 99 9 7 6 6 18 27 12 12 27 32 18-11114.1158.9157.6 + 99 9 8 15 4 4 5 9 15 4 12 9-11108.4158.4157.8 + 99 9 9 12 7 7 6 22 6 6 4 9-11108.0157.9158.0 + 99 9 10 9 15 18 15 22 9 18 18 16-11123.7157.2158.2 + 99 9 11 27 22 6 6 6 4 4 5 10-11124.1156.4158.3 + 99 9 12 12 18 7 48 15 22 80 48 31-11142.6155.7158.5 + 99 9 13 67 80 39 32 32 48 48 22 46-11156.5155.0158.6 + 99 9 14 39 27 27 22 9 18 12 12 21-11158.2154.4158.7 + 99 9 15 22 22 48 67 22 12 15 6 27-11156.6154.4158.7 + 99 9 16 18 80 48 32 18 22 15 12 31-11159.9154.5158.8 + 99 9 17 15 9 7 7 27 32 22 9 16-11159.1155.0158.9 + 99 9 18 5 12 12 22 27 22 4 3 13-11153.0155.5159.1 + 99 9 19 7 12 6 12 18 6 6 7 9-11150.6155.9159.3 + 99 9 20 7 7 7 5 6 7 18 7 8-11146.2156.3159.5 + 99 9 21 7 4 6 6 18 7 18 22 11-11147.9156.7159.9 + 99 9 22 15 7 7 12 48 22 80207 50-11141.5156.9160.2 + 99 9 23 94 80 18 5 4 7 7 7 28-11137.8157.1160.5 + 99 9 24 5 7 5 4 4 6 2 5 5-11132.4157.2160.8 + 99 9 25 5 3 2 4 4 4 3 3 4-11126.1157.3161.1 + 99 9 26 0 0 3 4 7 48 39 56 20-11123.3157.6161.4 + 99 9 27 32 32 39 32 48 67 56 39 43-11124.4157.6161.6 + 99 9 28 32 22 39 9 27 27 18 39 27-11126.5158.1161.9 + 99 9 29 32 32 39 18 12 18 15 32 25-11125.3158.7162.2 + 99 9 30 39 56 27 32 18 12 15 9 26-11125.1159.6162.5 + 99 10 1 9 12 5 6 15 6 15 5 9-11121.9160.6162.8 + 99 10 2 15 18 22 6 12 9 7 12 13-11126.6161.3163.1 + 99 10 3 7 7 9 7 6 12 5 12 8-11134.7161.7163.5 + 99 10 4 5 18 18 22 12 15 22 22 17-11144.4161.9163.7 + 99 10 5 12 15 9 18 27 22 12 27 18-11146.2161.9163.9 + 99 10 6 3 4 7 7 9 5 5 4 6-11133.5161.6164.1 + 99 10 7 6 9 6 5 3 2 5 4 5-11129.2161.6164.2 + 99 10 8 5 15 6 7 12 2 3 6 7-11150.9161.1164.3 + 99 10 9 3 4 5 4 3 6 12 15 7-11152.8161.0164.4 + 99 10 10 12 32 32 39 39 67 27 15 33-11160.0161.0164.5 + 99 10 11 32 18 39 22 18 39 18 48 29-11166.0161.2164.7 + 99 10 12 48 48 22 48 56 56 56 32 46-11182.9161.7164.8 + 99 10 13 39 15 27 12 22 27 27 18 23-11190.1162.0164.9 + 99 10 14 18 32 22 22 39 48 32 32 31-11198.7162.5165.0 + 99 10 15 48 48 32 27 22 39 18 12 31-11197.1163.1165.2 + 99 10 16 27 39 18 22 22 39 22 15 26-11187.8163.8165.3 + 99 10 17 27 22 39 22 32 12 5 7 21-11176.8164.4165.4 + 99 10 18 4 5 2 6 9 6 9 7 6-11171.4165.0165.5 + 99 10 19 15 7 12 4 2 0 2 2 6-11168.2165.8165.7 + 99 10 20 3 4 2 4 4 3 3 3 3-11157.4166.4165.8 + 99 10 21 18 48 7 7 6 15 18 39 20-11157.0166.8166.0 + 99 10 22132179207 56 39 32 67 18 91-11158.8167.3166.3 + 99 10 23 27 39 18 12 56 48 32 27 32-11162.8167.5166.6 + 99 10 24 39 27 32 22 27 15 18 32 27-11157.1167.4166.9 + 99 10 25 22 18 15 18 22 18 9 3 16-11177.2167.2167.2 + 99 10 26 3 9 7 12 9 12 12 12 10-11187.1167.0167.4 + 99 10 27 12 27 12 18 15 39 15 12 19-11194.8166.7167.7 + 99 10 28 9 6 12 6 32 27 56 18 21-11181.5166.6167.9 + 99 10 29 12 7 7 9 7 4 12 12 9-11177.2166.5168.0 + 99 10 30 4 4 6 7 9 7 4 6 6-11167.0166.5168.2 + 99 10 31 7 7 7 22 7 7 6 15 10-11158.1166.7168.3 + 99 11 1 12 9 7 22 9 6 9 5 10-11148.4166.8168.3 + 99 11 2 12 7 7 7 4 4 5 7 7-11140.6166.9168.4 + 99 11 3 15 2 2 5 4 2 6 7 5-11140.8167.2168.4 + 99 11 4 7 9 4 3 4 3 3 5 5-11145.1167.6168.4 + 99 11 5 5 3 2 2 2 3 7 15 5-11157.8168.2168.3 + 99 11 6 15 5 6 7 6 9 22 6 10-11147.4169.0168.2 + 99 11 7 18 32 39 32 48 48 12 18 31-11170.8169.8168.1 + 99 11 8 27 22 39 22 39 22 32 32 29-11188.4170.7168.0 + 99 11 9 22 39 22 27 27 32 27 32 29-11225.5171.6167.9 + 99 11 10 18 18 9 18 15 18 22 22 18-11243.6172.6168.0 + 99 11 11 22 39 27 27 18 18 27 27 26-11235.0173.7168.1 + 99 11 12 15 9 9 7 7 7 15 15 11-11227.1174.5168.2 + 99 11 13 32 32 22 12 48 48 94 56 43-11219.1175.2168.4 + 99 11 14 12 9 12 7 12 12 15 12 11-11214.2175.6168.6 + 99 11 15 9 3 5 5 5 3 4 4 5-11201.1176.0168.9 + 99 11 16 4 5 7 22 22 32 12 12 15-11228.2176.4169.2 + 99 11 17 7 6 9 15 15 15 15 12 12-11216.3176.8169.6 + 99 11 18 15 15 18 15 15 15 22 18 17-11212.9176.7169.9 + 99 11 19 12 18 9 6 7 6 9 27 12-11205.1176.5170.2 + 99 11 20 18 12 9 12 4 4 4 6 9-11199.5176.2170.5 + 99 11 21 9 12 18 7 3 12 18 15 12-11205.0175.7170.7 + 99 11 22 22 7 5 22 18 7 5 4 11-11187.2175.0170.9 + 99 11 23 7 27 39 12 12 9 12 32 19-11180.9174.2171.1 + 99 11 24 18 18 27 48 15 15 15 9 21-11181.9173.3171.3 + 99 11 25 7 9 15 39 22 15 18 15 18-11179.0172.5171.3 + 99 11 26 5 4 4 6 7 2 0 0 4-11167.7171.8171.4 + 99 11 27 0 0 2 2 5 2 0 3 2-11164.5171.4171.4 + 99 11 28 7 7 9 9 6 9 7 12 8-11170.1171.0171.4 + 99 11 29 9 5 3 6 4 0 2 5 4-11159.5170.8171.4 + 99 11 30 9 9 7 15 18 4 9 12 10-11158.3170.8171.3 + 99 12 1 9 3 2 5 3 5 7 5 5-11160.4170.8171.3 + 99 12 2 6 2 2 3 6 3 6 9 5-11160.9171.0171.2 + 99 12 3 12 12 7 27 15 22 15 15 16-11147.5171.3171.3 + 99 12 4 32 15 27 48 32 48 22 18 30-11143.3171.8171.3 + 99 12 5 27 22 32 22 12 22 15 12 21-11138.6172.0171.3 + 99 12 6 9 32 22 18 22 15 15 9 18-11138.6172.2171.3 + 99 12 7 22 12 18 18 9 15 18 15 16-11148.8172.3171.4 + 99 12 8 15 9 22 12 9 15 12 18 14-11145.6172.4171.5 + 99 12 9 18 22 12 12 9 7 15 15 14-11151.5172.5171.5 + 99 12 10 7 12 7 5 7 15 18 7 10-11159.5172.6171.6 + 99 12 11 4 9 12 7 18 7 0 0 7-11154.3172.7171.6 + 99 12 12 5 12 3 7 5 15 22 18 11-11154.4172.7171.7 + 99 12 13 27 39 67 27 22 18 5 2 26-11161.0172.8171.8 + 99 12 14 5 4 3 0 0 4 5 0 3-11163.1172.7171.9 + 99 12 15 2 2 0 0 2 2 5 15 4-11173.1172.6172.0 + 99 12 16 6 7 7 3 3 4 5 6 5-11187.9172.3172.2 + 99 12 17 7 12 6 5 7 9 7 3 7-11194.4172.2172.3 + 99 12 18 4 3 5 4 4 12 9 9 6-11198.9171.7172.5 + 99 12 19 4 7 3 4 7 5 4 4 5-11200.3170.9172.6 + 99 12 20 0 0 3 5 2 4 3 6 3-11202.4169.6172.7 + 99 12 21 2 2 4 3 0 3 3 2 2-11210.1168.2172.8 + 99 12 22 0 0 0 0 2 2 2 0 1-11195.1166.9172.9 + 99 12 23 0 0 0 0 4 5 3 6 2-11191.9165.6173.0 + 99 12 24 9 22 27 9 6 4 5 7 11-11176.5164.5173.0 + 99 12 25 12 12 18 5 18 7 5 5 10-11172.5163.5172.9 + 99 12 26 3 0 0 0 2 2 2 6 2-11171.2162.8172.8 + 99 12 27 18 12 6 5 3 4 6 3 7-11156.4161.8172.8 + 99 12 28 5 12 4 5 6 5 9 18 8-11145.4161.1172.7 + 99 12 29 18 12 7 3 2 7 5 12 8-11139.0160.4172.7 + 99 12 30 2 4 6 6 5 7 27 32 11-11131.2159.8172.6 + 99 12 31 67 32 22 22 27 22 39 56 36-11125.8159.2172.5 + 0 1 1 56 39 27 18 32 15 32 22 30-11125.6158.6172.4 + 0 1 2 15 18 18 18 12 18 18 15 17-11128.5158.1172.3 + 0 1 3 18 15 12 12 9 9 15 6 12-11128.7157.6172.3 + 0 1 4 9 9 9 15 18 12 9 22 13-11130.3157.1172.2 + 0 1 5 27 18 18 18 9 15 22 27 19-11132.0156.6172.2 + 0 1 6 12 18 7 18 32 32 15 18 19-11140.0156.2172.3 + 0 1 7 18 15 5 7 7 9 12 7 10-11144.8155.9172.4 + 0 1 8 7 3 5 6 6 9 3 0 5-11149.6155.7172.5 + 0 1 9 5 5 0 0 2 2 2 6 3-11155.3155.2172.7 + 0 1 10 5 7 3 3 4 6 7 15 6-11157.8154.9173.0 + 0 1 11 15 9 6 9 22 22 56 56 24-11171.8154.5173.2 + 0 1 12 22 15 12 7 4 7 9 7 10-11189.3154.2173.7 + 0 1 13 7 9 9 15 9 12 4 6 9-11195.4154.3174.0 + 0 1 14 15 9 4 3 6 9 9 6 8-11194.7154.5174.2 + 0 1 15 7 7 5 3 7 5 5 6 6-11203.9154.9174.4 + 0 1 16 5 4 5 5 6 6 6 7 6-11201.0155.5174.6 + 0 1 17 5 2 4 2 3 2 3 0 3-11190.1156.0174.9 + 0 1 18 2 2 3 3 4 5 3 3 3-11188.4156.6175.2 + 0 1 19 3 2 3 2 3 5 7 15 5-11172.9157.2175.6 + 0 1 20 9 6 9 7 15 9 22 6 10-11165.3157.6175.9 + 0 1 21 3 0 0 2 3 2 0 2 2-11154.3158.5176.1 + 0 1 22 5 9 9 15 18 18 56 48 22-11145.8159.2176.3 + 0 1 23 94 67 7 22 22 12 4 4 29-11136.1159.7176.4 + 0 1 24 6 12 27 18 9 9 9 15 13-11136.3160.1176.5 + 0 1 25 7 12 7 5 4 5 9 6 7-11133.1160.6176.6 + 0 1 26 7 15 7 5 4 4 5 15 8-11136.4161.0176.6 + 0 1 27 18 9 6 7 15 15 32 32 17-11128.4161.3176.5 + 0 1 28 48 48 32 22 32 22 18 32 32-11122.2161.5176.4 + 0 1 29 32 27 32 27 32 39 32 22 30-11123.9161.5176.2 + 0 1 30 12 12 18 7 18 15 22 15 15-11128.7161.5176.1 + 0 1 31 18 9 12 9 9 12 7 7 10-11134.5161.4175.9 + 0 2 1 9 5 7 3 15 7 9 12 8-11120.7161.4175.7 + 0 2 2 9 5 3 6 12 18 7 7 8-11126.2161.4175.5 + 0 2 3 4 4 9 5 15 12 12 22 10-11134.8161.4175.4 + 0 2 4 7 5 7 3 4 4 3 7 5-11146.5161.5175.3 + 0 2 5 4 2 2 4 4 15 32 32 12-11146.8161.6175.3 + 0 2 6 39 48 22 32 27 18 39 48 34-11155.5162.0175.3 + 0 2 7 56 22 22 27 39 27 27 27 31-11159.3162.6175.4 + 0 2 8 22 18 6 12 15 15 22 12 15-11152.1163.4175.5 + 0 2 9 6 15 12 5 15 22 7 6 11-11153.7164.4175.7 + 0 2 10 12 9 15 6 7 9 7 18 10-11154.0165.7175.8 + 0 2 11 15 32 12 12 9 15 12 32 17-11149.3167.0176.0 + 0 2 12 80 80 80111 67 32 18 15 60-11143.2168.1176.2 + 0 2 13 18 7 12 22 18 18 9 12 15-11140.3169.2176.3 + 0 2 14 22 32 27 32 56 39 27 27 33-11139.3170.2176.5 + 0 2 15 27 27 9 6 9 7 22 32 17-11136.9171.1176.7 + 0 2 16 12 9 4 3 7 9 7 5 7-11140.7171.9176.8 + 0 2 17 3 3 4 12 9 6 6 3 6-11148.0172.6176.9 + 0 2 18 0 2 2 2 2 0 2 0 1-11124.0173.3177.0 + 0 2 19 0 0 5 7 3 3 3 3 3-11127.4173.9177.0 + 0 2 20 2 3 6 4 2 0 4 22 5-11134.9174.8177.0 + 0 2 21 22 39 15 12 22 39 12 7 21-11133.9175.4177.0 + 0 2 22 7 9 3 3 7 6 4 6 6-11151.7175.8176.8 + 0 2 23 7 3 6 15 27 18 4 6 11-11163.1176.0176.7 + 0 2 24 15 39 22 39 27 27 32 39 30-11169.4176.2176.4 + 0 2 25 22 32 27 18 22 18 9 15 20-11185.6176.1176.2 + 0 2 26 15 12 15 18 7 15 27 18 16-11189.5175.8176.0 + 0 2 27 22 7 9 15 18 15 9 9 13-11200.6175.6175.7 + 0 2 28 15 27 15 15 27 12 7 9 16-11193.2175.5175.5 + 0 2 29 3 5 9 15 9 5 4 5 7-11193.6175.6175.4 + 0 3 1 9 22 32 22 18 18 15 32 21-11228.7175.7175.4 + 0 3 2 39 18 6 4 7 4 3 7 11-11209.6176.1175.4 + 0 3 3 4 2 2 4 7 5 9 6 5-11200.4176.4175.4 + 0 3 4 0 0 2 3 6 7 3 3 3-11197.0176.8175.4 + 0 3 5 2 7 3 4 5 6 7 15 6-11216.8177.2175.5 + 0 3 6 6 9 15 15 12 15 9 15 12-11219.1177.5175.6 + 0 3 7 15 22 18 15 15 15 12 18 16-11218.5177.8175.8 + 0 3 8 9 12 6 15 15 27 22 7 14-11211.8178.2176.0 + 0 3 9 9 3 2 3 6 3 4 4 4-11203.0178.7176.2 + 0 3 10 4 3 5 7 9 9 7 27 9-11200.7179.3176.3 + 0 3 11 22 18 12 6 22 7 5 9 13-11200.6179.9176.4 + 0 3 12 12 22 27 32 27 15 7 9 19-11200.8180.6176.4 + 0 3 13 12 5 2 0 0 0 6 6 4-11186.0181.6176.4 + 0 3 14 7 6 4 6 4 5 6 6 6-11180.6182.6176.4 + 0 3 15 3 0 2 2 2 3 2 0 2-11175.9183.6176.3 + 0 3 16 0 0 0 2 2 3 3 4 2-11182.5184.3176.3 + 0 3 17 7 5 6 6 6 2 2 0 4-11190.6184.8176.3 + 0 3 18 0 2 2 6 6 7 15 6 6-11193.0185.2176.3 + 0 3 19 7 15 7 6 7 6 6 4 7-11206.5185.5176.4 + 0 3 20 4 2 5 15 12 3 2 3 6-11208.7185.9176.6 + 0 3 21 2 2 5 3 6 6 5 0 4-11228.9186.1176.7 + 0 3 22 6 9 12 7 15 18 18 12 12-11232.2186.2176.9 + 0 3 23 15 18 12 15 22 18 5 5 14-11222.7186.2177.2 + 0 3 24 9 9 5 15 22 18 5 6 11-11217.7186.2177.4 + 0 3 25 7 9 9 6 5 15 12 2 8-11204.1186.1177.7 + 0 3 26 2 0 3 3 3 6 5 5 3-11210.4186.1178.0 + 0 3 27 4 5 4 3 5 3 3 4 4-11204.1186.0178.2 + 0 3 28 6 6 5 5 3 3 2 0 4-11200.3185.9178.5 + 0 3 29 2 2 3 4 4 4 27 32 10-11208.3185.8178.7 + 0 3 30 15 9 7 4 9 9 32 15 13-11205.1186.1178.9 + 0 3 31 18 39 22 22 32 12 18 22 23-11225.1186.8179.1 + 0 4 1 12 9 6 7 7 18 27 18 13-11222.7187.4179.3 + 0 4 2 27 22 18 12 15 5 7 15 15-11219.3188.1179.5 + 0 4 3 12 12 6 6 7 9 5 15 9-11215.5189.0179.7 + 0 4 4 48 22 9 5 22 15 39 15 22-11206.9189.9179.8 + 0 4 5 27 32 6 3 3 6 5 4 11-11194.7190.9180.0 + 0 4 6 6 32 12 9 18111236236 83-11178.1191.9180.1 + 0 4 7300 80 80 27 27 32 22 22 74-11175.4192.9180.1 + 0 4 8 9 9 15 15 7 6 9 12 10-11182.5193.6180.2 + 0 4 9 9 15 9 6 18 15 22 22 15-11176.9194.4180.1 + 0 4 10 22 27 22 18 15 15 12 18 19-11178.6195.1180.1 + 0 4 11 6 15 18 6 7 6 9 5 9-11182.4195.2180.0 + 0 4 12 9 12 9 2 4 6 5 6 7-11173.9195.4179.9 + 0 4 13 9 22 7 4 3 2 0 0 6-11165.0195.5179.8 + 0 4 14 0 2 2 3 2 3 5 2 2-11166.3195.4179.8 + 0 4 15 2 4 4 6 5 6 9 12 6-11164.9195.0179.7 + 0 4 16 18 32 32 32 32 12 9 7 22-11160.2194.4179.6 + 0 4 17 15 15 27 12 4 7 5 7 12-11159.2193.7179.5 + 0 4 18 5 9 4 2 3 3 12 6 6-11161.8193.1179.5 + 0 4 19 15 27 6 6 15 15 6 6 12-11169.2192.5179.4 + 0 4 20 15 18 18 7 15 15 9 6 13-11182.4191.9179.4 + 0 4 21 12 5 3 22 12 12 6 5 10-11189.2191.3179.4 + 0 4 22 4 6 7 7 6 3 4 4 5-11204.1190.7179.4 + 0 4 23 4 3 9 7 5 7 5 7 6-11208.4190.8179.4 + 0 4 24 6 18 27 27 56 15 7 9 21-11208.1190.7179.5 + 0 4 25 6 2 3 9 6 6 7 4 5-11205.1190.7179.4 + 0 4 26 0 0 4 3 3 0 3 3 2-11192.4190.6179.3 + 0 4 27 15 6 7 12 9 15 12 27 13-11186.0190.6179.3 + 0 4 28 39 18 15 9 7 7 9 9 14-11186.0190.5179.2 + 0 4 29 12 12 6 9 15 12 12 22 13-11177.5190.2179.2 + 0 4 30 15 32 5 4 7 9 15 6 12-11172.0189.8179.3 + 0 5 1 6 22 12 15 15 18 18 15 15-11160.1189.2179.4 + 0 5 2 18 7 7 32 39 22 18 22 21-11155.3188.8179.5 + 0 5 3 9 9 12 5 7 27 48 22 17-11139.6188.5179.7 + 0 5 4 5 5 6 9 6 6 7 7 6-11136.8188.3179.8 + 0 5 5 7 7 18 7 12 5 7 15 10-11132.1188.3179.9 + 0 5 6 18 18 6 6 9 7 6 15 11-11129.1188.3180.0 + 0 5 7 7 7 6 4 4 2 6 4 5-11133.4188.3180.1 + 0 5 8 3 0 3 3 4 4 6 7 4-11139.6188.3180.1 + 0 5 9 5 9 4 6 6 12 12 9 8-11152.5188.1180.1 + 0 5 10 12 9 4 3 5 4 4 5 6-11182.8187.9180.0 + 0 5 11 5 5 5 2 5 2 3 7 4-11181.3187.4179.7 + 0 5 12 7 18 27 15 7 4 12 27 15-11194.4187.1179.5 + 0 5 13 27 7 7 9 18 22 15 7 14-11222.0186.7179.3 + 0 5 14 22 9 5 5 6 5 12 6 9-11237.6186.2179.1 + 0 5 15 32 12 9 12 7 9 6 9 12-11249.9185.8178.9 + 0 5 16 12 32 15 15 12 12 15 15 16-11264.5185.7178.7 + 0 5 17 80 80 18 9 6 4 12 15 28-11268.1185.7178.5 + 0 5 18 18 9 6 6 4 3 3 5 7-11258.8185.8178.3 + 0 5 19 7 7 7 9 9 6 5 5 7-11260.4185.8178.2 + 0 5 20 4 3 4 3 4 4 9 5 5-11251.6185.7178.1 + 0 5 21 6 7 6 4 4 5 4 7 5-11238.0185.6178.0 + 0 5 22 5 9 7 12 7 5 9 7 8-11220.3185.4177.9 + 0 5 23 6 9 9 6 7 18111 67 29-11209.5185.3177.9 + 0 5 24207179 80 67 48 48 80 32 93-11194.3185.3177.9 + 0 5 25 39 39 27 27 15 22 27 27 28-11177.4185.2178.0 + 0 5 26 15 18 18 18 9 22 18 2 15-11172.4185.4178.0 + 0 5 27 7 6 5 6 9 12 9 12 8-11166.2185.6178.1 + 0 5 28 5 6 7 9 9 12 12 12 9-11160.2186.0178.2 + 0 5 29 7 15 9 9 22 39 48 39 24-11153.1186.7178.2 + 0 5 30 32 12 32 18 22 22 15 22 22-11150.5187.3178.3 + 0 5 31 12 27 9 4 4 4 6 12 10-11158.7188.2178.4 + 0 6 1 15 15 12 3 6 4 3 9 8-11152.3188.9178.4 + 0 6 2 6 7 9 4 4 4 7 7 6-11192.7190.4178.5 + 0 6 3 12 7 9 18 15 6 15 7 11-11170.7190.8178.5 + 0 6 4 4 6 12 2 3 15 32 22 12-11174.7190.8178.6 + 0 6 5 27 15 27 18 39 15 27 27 24-11176.1191.0178.6 + 0 6 6 15 9 9 12 18 48 6 5 15-11192.0191.4178.6 + 0 6 7 6 5 9 12 12 12 12 22 11-11185.8192.1178.6 + 0 6 8 12 22 32 94132 94 80 48 64-11179.9193.1178.6 + 0 6 9 3 5 5 9 5 4 2 9 5-11174.1194.1178.5 + 0 6 10 22 22 22 32 27 18 15 12 21-11185.1195.2178.4 + 0 6 11 7 15 12 39 32 48 39 6 25-11192.6196.4178.4 + 0 6 12 12 12 18 5 22 22 15 15 15-11198.7197.7178.4 + 0 6 13 6 9 9 12 18 7 6 12 10-11205.5198.7178.3 + 0 6 14 22 7 27 9 32 39 56 39 29-11206.9199.9178.3 + 0 6 15 67 12 12 12 22 22 32 7 23-11208.9200.9178.3 + 0 6 16 9 4 4 4 4 3 3 6 5-11203.8201.5178.3 + 0 6 17 5 3 4 4 7 9 6 7 6-11199.4201.9178.3 + 0 6 18 5 2 3 6 7 18 27 15 10-11193.7202.2178.2 + 0 6 19 12 15 2 3 2 7 6 5 7-11184.2202.3178.2 + 0 6 20 9 6 7 7 9 4 4 4 6-11189.7201.9178.2 + 0 6 21 4 3 3 4 5 6 6 18 6-11194.2201.6178.2 + 0 6 22 22 7 7 15 9 6 18 5 11-11185.6201.1178.1 + 0 6 23 9 22 7 6 56 32 56 27 27-11181.0200.2178.1 + 0 6 24 39 27 27 9 5 4 4 7 15-11173.9199.3178.1 + 0 6 25 5 3 3 3 3 3 6 18 6-11180.9198.1178.2 + 0 6 26 12 18 32 48 56 32 80 39 40-11183.4196.9178.2 + 0 6 27 32 12 15 9 22 15 15 22 18-11184.6195.7178.3 + 0 6 28 15 15 5 5 7 7 7 15 10-11181.2194.6178.4 + 0 6 29 18 9 12 4 6 5 3 5 8-11168.8193.6178.5 + 0 6 30 2 2 2 5 4 5 9 6 4-11165.0192.8178.6 + 0 7 1 9 4 9 5 4 3 12 9 7-11169.2192.1178.7 + 0 7 2 4 6 4 3 4 5 4 4 4-11167.9191.8178.8 + 0 7 3 7 6 5 7 12 6 7 12 8-11161.5191.6178.9 + 0 7 4 9 7 3 7 18 7 7 6 8-11163.7191.5179.1 + 0 7 5 5 6 9 12 18 15 6 3 9-11174.4191.7179.2 + 0 7 6 3 5 5 4 7 6 7 5 5-11180.1192.1179.3 + 0 7 7 7 5 4 5 4 4 6 6 5-11193.5192.4179.3 + 0 7 8 6 7 3 6 9 9 6 2 6-11217.1192.6179.4 + 0 7 9 3 4 6 6 6 5 6 9 6-11218.4192.9179.5 + 0 7 10 6 9 27 18 22 22 39 15 20-11252.7193.0179.5 + 0 7 11 18 32 18 32 56 32 32 48 34-11249.7193.0179.5 + 0 7 12 22 12 5 9 3 6 6 6 9-11325.1193.0179.5 + 0 7 13 4 7 9 67132 94 12 15 43-11239.6192.5179.4 + 0 7 14 15 15 18 27 27154111 39 51-11210.6192.1179.3 + 0 7 15 15 22 39 32207300400300164-11220.1191.6179.3 + 0 7 16179 80 32 39 39 15 7 6 50-11226.1191.1179.2 + 0 7 17 15 12 9 9 9 5 4 5 9-11235.8190.4179.1 + 0 7 18 6 9 9 5 15 15 15 18 12-11270.5190.0179.0 + 0 7 19 9 4 3 4 7 32 22 32 14-11258.0189.8178.9 + 0 7 20 39 80 56 48 27 9 18 15 37-11261.1189.7178.8 + 0 7 21 12 7 4 5 9 5 5 6 7-11259.0189.5178.8 + 0 7 22 6 9 9 18 9 22 15 7 12-11259.0189.2178.7 + 0 7 23 7 9 5 6 22 39 80 18 23-11224.3188.7178.7 + 0 7 24 9 9 5 2 3 2 2 6 5-11232.0188.1178.8 + 0 7 25 5 5 3 4 6 7 5 7 5-11208.2187.5178.9 + 0 7 26 7 9 18 12 22 12 32 39 19-11180.1187.1179.0 + 0 7 27 22 7 3 2 3 4 6 9 7-11167.4186.8179.0 + 0 7 28 12 15 39 32 67 67 18 6 32-11162.7186.6179.1 + 0 7 29 27 22 22 67 39 18 9 12 27-11157.9186.4179.2 + 0 7 30 12 15 4 5 9 6 7 7 8-11154.5186.1179.3 + 0 7 31 5 7 18 7 12 15 56 48 21-11152.4185.7179.4 + 0 8 1 9 7 6 9 7 22 15 18 12-11153.9185.0179.5 + 0 8 2 18 15 7 6 5 9 15 9 11-11155.1184.4179.6 + 0 8 3 9 9 7 9 7 12 12 7 9-11158.8183.9179.6 + 0 8 4 18 15 18 18 15 22 18 12 17-11158.7183.4179.7 + 0 8 5 9 15 48 39 18 27 15 27 25-11163.2183.0179.7 + 0 8 6 27 32 9 9 15 12 9 18 16-11170.8182.7179.7 + 0 8 7 5 4 6 12 12 5 7 7 7-11171.6182.6179.8 + 0 8 8 6 5 7 5 9 6 7 7 7-11175.6182.7179.8 + 0 8 9 6 6 4 4 4 4 4 9 5-11187.2183.1179.8 + 0 8 10 4 12 39 27 32 15 18 56 25-11185.9183.7179.8 + 0 8 11 67 67 48 32 32 12 48 67 47-11192.3184.2179.8 + 0 8 12 48154179179154154 94 22123-11194.3184.9179.8 + 0 8 13 32 67 15 6 9 6 6 12 19-11190.9185.8179.8 + 0 8 14 3 4 3 4 9 18 22 32 12-11194.3186.6179.8 + 0 8 15 15 22 4 6 5 5 6 5 9-11198.9187.2179.8 + 0 8 16 7 7 9 5 7 5 6 7 7-11190.3187.8179.8 + 0 8 17 7 12 6 7 6 4 5 5 7-11181.5188.2179.8 + 0 8 18 6 5 2 2 2 3 3 3 3-11173.6188.1179.7 + 0 8 19 4 2 2 3 4 9 5 4 4-11160.8187.9179.7 + 0 8 20 0 2 0 6 3 9 7 4 4-11156.0187.1179.7 + 0 8 21 7 18 6 12 6 6 7 22 11-11154.9186.4179.7 + 0 8 22 5 5 3 0 2 2 0 3 3-11147.5184.9179.8 + 0 8 23 2 0 3 7 9 18 9 5 7-11139.9184.5179.7 + 0 8 24 9 15 12 7 6 5 4 3 8-11133.5184.2179.7 + 0 8 25 0 4 2 2 3 3 6 4 3-11136.0183.8179.6 + 0 8 26 4 5 6 5 6 5 3 3 5-11139.9183.1179.5 + 0 8 27 7 4 3 4 12 7 7 9 7-11153.2182.2179.3 + 0 8 28 9 5 7 18 27 48 56 48 27-11163.2180.8179.1 + 0 8 29 67 39 48 27 15 32 39 15 35-11166.5179.4178.9 + 0 8 30 22 15 7 12 9 9 7 18 12-11167.9177.9178.8 + 0 8 31 18 12 9 18 15 12 7 18 14-11165.9176.4178.5 + 0 9 1 18 12 22 18 12 12 22 12 16-11160.5175.1178.3 + 0 9 2 27 22 32 32 27 27 9 9 23-11156.7174.3178.1 + 0 9 3 3 7 3 3 5 6 15 12 7-11156.7173.5177.9 + 0 9 4 5 4 6 6 12 15 67 27 18-11173.6173.0177.8 + 0 9 5 5 6 5 4 5 9 15 9 7-11183.1172.7177.6 + 0 9 6 5 3 5 2 9 27 22 27 13-11181.5172.6177.5 + 0 9 7 15 12 15 12 12 18 18 18 15-11175.8172.5177.3 + 0 9 8 15 7 12 22 22 22 15 22 17-11165.7172.4177.2 + 0 9 9 9 7 6 5 7 4 2 0 5-11153.0172.4177.1 + 0 9 10 0 2 3 6 4 5 6 5 4-11142.5172.5177.0 + 0 9 11 0 0 2 4 5 9 5 6 4-11136.7172.6176.9 + 0 9 12 7 18 12 27 32 15 32 27 21-11134.2172.6176.7 + 0 9 13 27 22 6 3 5 5 4 6 10-11134.8172.7176.6 + 0 9 14 4 7 6 3 3 4 4 4 4-11152.5172.7176.5 + 0 9 15 2 12 3 4 4 6 18 48 12-11161.1172.6176.4 + 0 9 16 22 15 12 18 15 22 32 94 29-11176.4172.6176.2 + 0 9 17 39 27 9 15 27 39 56236 56-11183.2172.6176.1 + 0 9 18179 67 48 80 80 80 15 15 71-11205.7172.7175.9 + 0 9 19 15 15 15 48 80 27 15 22 30-11208.8172.7175.8 + 0 9 20 22 22 4 12 18 7 6 6 12-11213.1172.7175.6 + 0 9 21 7 12 7 15 12 6 7 6 9-11226.7172.7175.4 + 0 9 22 12 9 6 5 6 5 6 3 7-11233.8172.8175.3 + 0 9 23 7 15 6 4 6 6 5 4 7-11226.7172.8175.3 + 0 9 24 2 5 3 4 5 15 48 18 13-11225.8172.8175.4 + 0 9 25 12 12 15 18 18 27 22 27 19-11226.8172.7175.5 + 0 9 26 39 27 22 22 32 15 15 18 24-11224.7172.6175.7 + 0 9 27 12 12 18 12 9 9 7 12 11-11205.5172.6175.9 + 0 9 28 9 22 6 18 18 12 4 3 12-11203.0172.6176.0 + 0 9 29 7 9 3 9 7 6 6 6 7-11192.6172.7176.2 + 0 9 30 18 27 56 48 67 48 48 94 51-11194.0172.8176.2 + 0 10 1 27 22 18 7 6 12 6 4 13-11201.9172.7176.3 + 0 10 2 2 4 5 6 9 32 9 12 10-11202.9172.7176.3 + 0 10 3 32 39 48 27 56 27 5 7 30-11192.1172.8176.4 + 0 10 4 7 18 48 48 94 67154 67 63-11184.1172.9176.4 + 0 10 5 56111179154179111 94 48117-11173.7173.0176.4 + 0 10 6 12 3 3 2 4 2 4 3 4-11157.9173.0176.4 + 0 10 7 0 4 5 4 9 6 6 0 4-11155.3173.0176.4 + 0 10 8 0 2 2 2 2 2 3 7 3-11148.6172.9176.4 + 0 10 9 3 2 2 2 4 4 6 7 4-11140.4173.0176.4 + 0 10 10 7 9 15 9 6 7 4 7 8-11139.1173.1176.4 + 0 10 11 27 39 9 6 12 5 18 4 15-11150.8173.1176.3 + 0 10 12 9 4 4 5 6 4 4 15 6-11161.9173.4176.2 + 0 10 13 80111 15 9 27 27 15 6 36-11167.2173.8176.2 + 0 10 14 22 39 67 48 48 56 32 48 45-11162.3174.3176.1 + 0 10 15 7 15 6 6 7 6 7 7 8-11160.1174.5176.0 + 0 10 16 32 7 5 5 6 12 7 7 10-11159.8174.7175.9 + 0 10 17 15 15 7 7 7 7 15 12 11-11153.0174.9175.8 + 0 10 18 15 9 6 7 12 6 6 12 9-11149.9175.0175.7 + 0 10 19 12 12 9 7 15 5 5 7 9-11156.5175.3175.7 + 0 10 20 3 4 2 3 2 3 4 2 3-11159.3175.7175.7 + 0 10 21 2 0 2 3 6 5 4 2 3-11156.5176.3175.7 + 0 10 22 3 3 7 15 18 39 32 12 16-11158.6176.8175.7 + 0 10 23 27 18 22 22 9 6 7 9 15-11164.8177.1175.6 + 0 10 24 9 6 9 18 12 5 6 6 9-11157.5177.4175.6 + 0 10 25 2 3 7 7 12 4 6 7 6-11162.0177.4175.6 + 0 10 26 12 9 7 7 7 4 6 9 8-11168.9177.1175.6 + 0 10 27 9 2 5 5 4 4 3 4 5-11173.7176.6175.6 + 0 10 28 3 3 9 39 27 9 15 56 20-11179.7176.1175.6 + 0 10 29 80 80 22 27 15 18 18 12 34-11184.5175.2175.7 + 0 10 30 48 22 12 18 6 7 6 4 15-11191.0174.3175.7 + 0 10 31 12 12 6 9 7 27 12 18 13-11190.5173.4175.8 + 0 11 1 18 9 7 2 4 4 5 9 7-11201.2172.3175.9 + 0 11 2 12 3 2 2 4 3 3 3 4-11193.2171.2176.0 + 0 11 3 0 0 2 2 4 4 7 7 3-11195.5170.4176.1 + 0 11 4 15 48 27 27 22 27 22 22 26-11191.4169.8176.2 + 0 11 5 22 15 7 3 15 18 18 18 15-11183.1169.2176.2 + 0 11 6 18 22 27 48 56 67132 67 55-11174.9168.7176.3 + 0 11 7 80111 56 56 22 12 27 7 46-11176.6168.5176.2 + 0 11 8 7 22 39 32 18 12 6 9 18-11169.5168.4176.2 + 0 11 9 12 7 6 4 15 18 15 27 13-11163.0168.4176.0 + 0 11 10 27 27 80 94 56 18 15 15 42-11150.4168.4175.9 + 0 11 11 9 18 6 9 18 27 27 15 16-11146.6168.2175.8 + 0 11 12 15 27 27 22 18 27 9 12 20-11143.6168.0175.6 + 0 11 13 6 15 5 12 7 7 9 9 9-11140.6167.9175.3 + 0 11 14 7 12 3 3 3 3 5 6 5-11145.4167.9175.0 + 0 11 15 4 4 4 3 4 2 7 4 4-11143.2168.0174.7 + 0 11 16 3 0 3 0 2 0 4 9 3-11150.7168.3174.3 + 0 11 17 5 2 3 3 3 3 2 0 3-11159.6168.7174.0 + 0 11 18 0 0 0 2 5 5 12 15 5-11172.9169.0173.7 + 0 11 19 6 9 7 7 5 6 4 7 6-11170.7169.5173.4 + 0 11 20 5 6 12 7 6 15 9 4 8-11169.6169.9173.2 + 0 11 21 15 7 7 6 9 9 12 9 9-11180.9170.1173.0 + 0 11 22 9 6 5 9 12 12 6 6 8-11190.1170.1172.9 + 0 11 23 7 12 3 6 6 6 6 0 6-11200.1170.2172.8 + 0 11 24 2 9 6 12 6 15 18 22 11-11192.1170.2172.8 + 0 11 25 15 12 3 3 2 3 9 5 7-11197.0170.3172.7 + 0 11 26 5 6 22 12 27 22 67 67 29-11197.0170.4172.7 + 0 11 27 94 80 67 39 27 12 27 12 45-11186.6170.7172.7 + 0 11 28 15 32 48 32 39 22 32 27 31-11190.3170.9172.6 + 0 11 29 94111111 39 48 18 9 15 56-11183.2171.0172.6 + 0 11 30 6 7 6 6 5 6 4 7 6-11187.0171.0172.5 + 0 12 1 7 9 3 6 7 9 3 2 6-11179.3171.0172.5 + 0 12 2 0 0 3 3 5 6 4 4 3-11162.3171.1172.3 + 0 12 3 4 7 15 7 15 15 15 5 10-11158.9171.1172.3 + 0 12 4 12 15 12 7 6 4 5 12 9-11147.6171.4172.2 + 0 12 5 5 7 4 6 7 4 2 2 5-11142.7171.5172.2 + 0 12 6 2 4 6 6 5 15 9 12 7-11136.9171.4172.1 + 0 12 7 15 15 18 12 18 7 9 27 15-11139.9171.2172.1 + 0 12 8 22 18 15 15 27 18 15 18 19-11134.1170.8172.1 + 0 12 9 15 22 18 12 9 18 18 32 18-11130.7170.4172.1 + 0 12 10 18 15 9 7 7 7 12 12 11-11142.1169.8172.0 + 0 12 11 15 12 9 6 6 3 5 12 9-11139.2169.3172.0 + 0 12 12 4 5 3 4 6 5 9 5 5-11145.2168.6171.9 + 0 12 13 12 6 3 4 3 2 3 5 5-11159.5168.2171.9 + 0 12 14 2 2 3 3 3 2 2 5 3-11176.5167.8171.8 + 0 12 15 3 0 2 3 3 2 3 2 2-11181.9167.5171.8 + 0 12 16 0 0 2 2 4 5 6 5 3-11184.4167.2171.9 + 0 12 17 7 9 4 5 15 9 18 4 9-11190.4167.1171.9 + 0 12 18 6 12 7 9 6 12 12 7 9-11191.6166.9172.0 + 0 12 19 7 6 3 7 5 5 5 2 5-11192.2166.8172.0 + 0 12 20 0 0 3 5 3 3 5 3 3-11194.8166.8172.1 + 0 12 21 2 0 2 6 6 6 3 5 4-11188.2166.8172.1 + 0 12 22 2 5 4 3 3 4 6 22 6-11183.8166.8172.2 + 0 12 23 32 67 27 9 12 9 7 7 21-11184.7167.0172.3 + 0 12 24 6 15 4 3 3 3 5 5 6-11186.7167.3172.3 + 0 12 25 7 4 3 3 15 9 2 9 7-11180.9167.4172.4 + 0 12 26 6 5 4 4 2 4 7 12 6-11182.6167.4172.3 + 0 12 27 7 5 4 4 9 18 9 6 8-11181.4167.6172.2 + 0 12 28 9 4 5 4 15 5 4 2 6-11179.3167.6172.1 + 0 12 29 4 18 6 4 2 4 5 7 6-11175.5167.5172.1 + 0 12 30 5 3 3 4 4 3 0 4 3-11176.1167.2172.0 + 0 12 31 5 0 2 4 3 0 0 2 2-11163.9167.1171.9 + 1 1 1 0 2 4 4 2 2 3 3 3-11165.3166.8171.8 + 1 1 2 5 2 0 0 3 2 4 12 4-11170.2166.3171.8 + 1 1 3 9 22 9 9 9 3 3 4 9-11164.2165.5171.7 + 1 1 4 9 5 15 9 15 15 9 9 11-11168.8164.9171.6 + 1 1 5 6 3 3 2 3 2 5 15 5-11170.5164.1171.4 + 1 1 6 7 4 4 3 4 4 2 4 4-11173.4163.3171.2 + 1 1 7 7 6 5 3 2 4 4 7 5-11170.9162.5171.0 + 1 1 8 7 7 4 6 4 7 27 22 11-11161.5161.8170.7 + 1 1 9 7 3 4 6 6 4 5 5 5-11160.8161.1170.4 + 1 1 10 2 2 2 2 4 15 7 9 5-11157.4160.4170.1 + 1 1 11 6 2 3 4 6 12 12 12 7-11160.5160.0169.6 + 1 1 12 18 15 12 6 4 2 0 2 7-11172.5159.7169.3 + 1 1 13 4 4 6 9 12 5 3 5 6-11178.3159.5169.1 + 1 1 14 9 12 9 6 4 4 9 7 8-11170.6159.4168.9 + 1 1 15 3 0 5 7 9 5 6 15 6-11163.8159.3168.7 + 1 1 16 4 2 5 5 15 6 4 4 6-11156.6159.3168.5 + 1 1 17 15 6 3 2 5 9 7 5 7-11147.0159.2168.2 + 1 1 18 0 0 5 7 5 3 4 7 4-11146.6159.1167.8 + 1 1 19 6 5 2 0 4 4 5 7 4-11147.7159.1167.5 + 1 1 20 3 3 12 9 9 9 12 18 9-11148.3159.0167.2 + 1 1 21 9 12 12 27 18 22 22 27 19-11146.7158.8166.9 + 1 1 22 22 18 9 9 9 12 7 12 12-11157.1158.7166.7 + 1 1 23 7 6 2 27 15 18 39 27 18-11162.0158.5166.4 + 1 1 24 12 15 4 18 27 27 39 15 20-11167.2158.2166.2 + 1 1 25 6 5 3 3 2 6 12 7 6-11163.4157.8166.1 + 1 1 26 7 9 22 12 7 7 9 12 11-11160.5157.7166.0 + 1 1 27 9 7 4 3 3 3 3 3 4-11161.8157.4165.9 + 1 1 28 2 4 5 6 15 7 15 12 8-11162.6157.0165.8 + 1 1 29 39 48 7 5 4 4 9 12 16-11160.5156.6165.7 + 1 1 30 7 7 2 2 2 3 0 0 3-11154.9156.1165.6 + 1 1 31 2 3 27 27 22 22 27 15 18-11148.8155.7165.5 + 1 2 1 7 18 12 7 5 4 7 7 8-11156.2155.2165.4 + 1 2 2 15 7 4 4 2 4 4 5 6-11161.6154.7165.3 + 1 2 3 2 0 2 2 3 2 0 0 1-11159.0154.0165.3 + 1 2 4 0 0 0 2 3 2 4 0 1-11144.0153.5165.3 + 1 2 5 0 0 0 3 3 3 5 7 3-11160.7152.9165.3 + 1 2 6 15 9 32 12 5 12 15 12 14-11165.3152.4165.3 + 1 2 7 9 12 7 3 4 4 7 4 6-11159.6152.0165.3 + 1 2 8 3 7 7 7 0 5 6 12 6-11152.3151.7165.2 + 1 2 9 5 2 4 5 6 5 7 6 5-11158.1151.4165.2 + 1 2 10 5 9 5 6 7 7 4 2 6-11156.5151.7165.1 + 1 2 11 12 7 9 7 6 2 4 5 7-11147.4151.8165.0 + 1 2 12 7 2 2 3 5 7 6 12 6-11140.9152.4164.9 + 1 2 13 12 32 32 15 18 22 27 39 25-11137.8153.1164.8 + 1 2 14 22 22 12 18 22 18 22 15 19-11134.6154.2164.7 + 1 2 15 5 4 9 9 4 5 3 3 5-11131.8155.5164.6 + 1 2 16 0 2 0 3 4 4 5 6 3-11126.5156.7164.5 + 1 2 17 6 0 0 2 0 5 4 2 2-11126.8157.8164.4 + 1 2 18 4 2 2 2 3 3 3 3 3-11129.0159.0164.4 + 1 2 19 4 3 5 5 6 4 5 3 4-11134.0160.0164.5 + 1 2 20 5 6 3 12 12 5 6 6 7-11142.3161.2164.5 + 1 2 21 7 6 5 7 9 5 3 6 6-11140.5162.1164.5 + 1 2 22 4 3 7 6 3 5 5 7 5-11142.7162.7164.6 + 1 2 23 15 15 12 7 9 7 5 7 10-11142.2163.0164.7 + 1 2 24 5 7 3 3 6 4 0 0 4-11134.6163.5164.9 + 1 2 25 0 2 3 3 2 2 5 3 3-11132.2163.8165.1 + 1 2 26 9 3 5 4 4 18 12 22 10-11132.8164.1165.2 + 1 2 27 27 22 18 15 7 4 3 3 12-11128.1164.4165.3 + 1 2 28 0 2 4 12 18 15 12 6 9-11129.4164.6165.4 + 1 3 1 15 6 5 2 3 6 6 5 6-11129.0164.9165.5 + 1 3 2 5 5 6 6 7 9 18 12 9-11127.4165.1165.6 + 1 3 3 12 9 4 22 22 12 27 12 15-11137.3165.1165.6 + 1 3 4 12 18 18 12 12 12 39 32 19-11138.7164.9165.7 + 1 3 5 48 39 32 12 7 7 5 6 20-11153.4164.6165.8 + 1 3 6 7 7 6 5 7 5 12 6 7-11155.4164.2166.0 + 1 3 7 7 15 7 6 7 18 6 4 9-11174.0163.7166.1 + 1 3 8 3 3 6 7 4 5 12 12 7-11164.8163.3166.2 + 1 3 9 12 5 6 5 7 7 5 2 6-11159.2162.9166.4 + 1 3 10 2 7 6 6 4 6 9 2 5-11158.0162.7166.6 + 1 3 11 4 7 4 3 4 2 4 2 4-11155.8163.0166.8 + 1 3 12 2 2 5 9 18 15 15 22 11-11155.7163.5167.1 + 1 3 13 15 12 6 18 7 5 5 7 9-11145.6164.0167.4 + 1 3 14 15 7 9 7 5 4 5 5 7-11140.7164.6167.7 + 1 3 15 0 2 4 2 3 2 2 3 2-11134.7165.0168.0 + 1 3 16 0 0 0 2 3 4 2 5 2-11138.5165.5168.3 + 1 3 17 0 2 2 2 4 9 9 6 4-11132.9166.1168.4 + 1 3 18 15 12 6 5 4 6 5 9 8-11138.5166.5168.5 + 1 3 19 7 7 6 18 32 56111 56 37-11145.7166.8168.6 + 1 3 20 39 67 80 67154132 32 22 74-11152.1167.3168.6 + 1 3 21 27 9 9 4 4 3 3 4 8-11158.2167.7168.5 + 1 3 22 3 3 3 3 18 32 18 15 12-11181.8168.1168.6 + 1 3 23 27 48 18 27 22 39 32 15 29-11178.9168.4168.6 + 1 3 24 5 22 18 7 9 12 15 2 11-11217.5168.7168.7 + 1 3 25 3 6 7 12 7 4 5 3 6-11215.7169.2168.8 + 1 3 26 2 3 3 4 6 3 4 4 4-11262.6169.5168.9 + 1 3 27 27 18 7 12 6 18 48 80 27-11272.4169.8169.1 + 1 3 28 15 7 56 80 94 67 15 22 45-11272.6169.9169.2 + 1 3 29 22 27 39 22 18 27 7 12 22-11261.0170.0169.4 + 1 3 30 9 9 12 7 12 12 15 18 12-11256.3170.0169.6 + 1 3 31111300300 94132207236154192-11245.3170.1169.8 + 1 4 1 48 67 56 15 18 15 39 48 38-11257.2170.1169.9 + 1 4 2 39 22 22 15 15 27 22 12 22-11227.9170.1169.9 + 1 4 3 9 6 5 4 4 12 5 7 7-11223.1170.1169.9 + 1 4 4 9 9 7 6 39 48 56 7 23-11205.0170.1169.9 + 1 4 5 6 7 32 32 15 22 18 18 19-11207.8170.2169.9 + 1 4 6 6 6 18 12 12 12 18 18 13-11192.0170.2169.9 + 1 4 7 22 32 15 7 7 22 39 12 20-11180.0170.5170.0 + 1 4 8 12 7 15 67132 48132 94 63-11169.7170.6170.0 + 1 4 9 12 22 27 18 15 48 15 7 21-11165.4170.8170.1 + 1 4 10 18 6 6 7 15 15 6 12 11-11170.4171.0170.2 + 1 4 11 15 9 7 7 22207179236 85-11160.3171.3170.3 + 1 4 12154 94 56 48 22 15 3 4 50-11149.8171.6170.4 + 1 4 13 4 6 18154 67 48 67 39 50-11137.8171.9170.4 + 1 4 14 32 22 18 18 18 18 12 7 18-11139.6172.4170.4 + 1 4 15 12 18 12 6 32 9 7 9 13-11135.1172.5170.5 + 1 4 16 18 9 5 5 6 6 5 9 8-11124.3172.5170.6 + 1 4 17 7 9 4 4 5 6 5 9 6-11127.1172.2170.7 + 1 4 18 80154111 15 7 12 9 12 50-11133.0172.0170.9 + 1 4 19 12 9 5 5 5 3 3 7 6-11145.8171.8171.1 + 1 4 20 12 12 4 5 7 3 3 5 6-11182.2171.5171.4 + 1 4 21 5 6 2 4 4 18 7 15 8-11193.0171.3171.6 + 1 4 22 22 18 27 22 48 94 39 27 37-11194.6171.0171.8 + 1 4 23 27 32 27 18 9 9 5 4 16-11198.6170.9172.0 + 1 4 24 5 9 9 6 5 4 3 5 6-11195.8171.0172.1 + 1 4 25 5 2 4 7 9 7 7 6 6-11196.3171.3172.3 + 1 4 26 4 6 12 6 5 5 6 6 6-11198.7171.6172.5 + 1 4 27 5 4 4 4 4 5 5 3 4-11193.3171.9172.7 + 1 4 28 6 67 27 27 80 67 27 18 40-11190.4172.3172.9 + 1 4 29 32 22 12 5 12 12 6 2 13-11194.5172.8173.0 + 1 4 30 3 0 2 0 0 0 4 2 1-11190.7173.2173.1 + 1 5 1 4 2 3 3 4 2 6 3 3-11187.4173.3173.2 + 1 5 2 4 5 7 6 4 5 3 3 5-11179.0173.1173.3 + 1 5 3 7 4 4 9 5 6 6 6 6-11175.1173.1173.4 + 1 5 4 4 7 15 7 4 4 6 6 7-11178.6172.7173.4 + 1 5 5 2 2 3 3 0 3 4 4 3-11163.5172.5173.4 + 1 5 6 2 2 6 5 5 4 6 7 5-11157.8171.8173.5 + 1 5 7 12 27 18 7 12 7 12 3 12-11140.9171.0173.7 + 1 5 8 5 3 9 9 18 22 32 27 16-11131.1170.3173.8 + 1 5 9 48 48 22 22 39 56 48 32 39-11131.9169.9174.1 + 1 5 10 56 48 22 12 12 9 15 12 23-11133.0169.2174.3 + 1 5 11 9 4 5 4 2 3 6 18 6-11139.4168.7174.5 + 1 5 12 18 9 18 39 56 32 32 39 30-11141.0168.1174.8 + 1 5 13 48 18 9 9 18 27 56 32 27-11141.9167.9175.0 + 1 5 14 32 15 15 4 4 6 6 4 11-11141.2167.8175.2 + 1 5 15 5 6 12 9 6 15 22 15 11-11145.2167.7175.5 + 1 5 16 12 7 12 6 5 5 3 9 7-11140.9167.5175.7 + 1 5 17 6 7 4 4 4 7 6 9 6-11150.8167.2175.8 + 1 5 18 12 9 4 4 6 5 5 15 8-11141.5166.9175.9 + 1 5 19 27 22 6 4 5 3 6 3 10-11144.6166.6176.0 + 1 5 20 4 6 6 5 7 5 4 4 5-11144.9166.3176.1 + 1 5 21 3 3 3 5 4 3 4 3 4-11153.8166.0176.1 + 1 5 22 5 5 5 7 7 7 12 7 7-11155.8165.7176.1 + 1 5 23 9 7 6 5 9 18 9 9 9-11162.8165.6176.1 + 1 5 24 9 7 3 4 4 4 4 4 5-11174.7165.6176.1 + 1 5 25 5 4 4 5 9 12 12 4 7-11166.1165.5176.1 + 1 5 26 6 7 6 5 3 3 3 4 5-11151.3165.3176.0 + 1 5 27 2 2 2 4 5 32 12 7 8-11150.8165.3175.9 + 1 5 28 9 7 9 22 22 32 18 27 18-11146.9165.2175.8 + 1 5 29 15 6 4 4 15 18 5 3 9-11142.3165.2175.8 + 1 5 30 2 2 0 2 5 3 5 4 3-11136.0165.0175.8 + 1 5 31 2 2 0 2 4 3 3 3 2-11136.6164.5175.9 + 1 6 1 2 3 3 9 15 9 12 22 9-11136.8163.8176.0 + 1 6 2 56 27 15 27 18 7 12 18 23-11137.8163.1176.1 + 1 6 3 6 6 9 4 4 5 9 7 6-11149.5162.3176.3 + 1 6 4 15 5 5 6 6 9 5 7 7-11158.3161.7176.5 + 1 6 5 9 7 5 3 3 3 3 6 5-11158.0161.1176.7 + 1 6 6 5 4 5 4 9 9 7 7 6-11162.4160.5176.9 + 1 6 7 7 18 5 12 9 6 7 6 9-11169.8160.0177.2 + 1 6 8 4 5 6 7 6 9 9 12 7-11185.7159.5177.4 + 1 6 9 6 12 9 18 18 22 48 67 25-11182.4158.9177.7 + 1 6 10 67 15 18 15 7 12 15 9 20-11168.0158.3177.9 + 1 6 11 15 7 4 5 9 9 7 6 8-11167.4157.8178.1 + 1 6 12 7 4 5 3 3 3 5 5 4-11171.6157.4178.3 + 1 6 13 9 12 12 7 6 6 7 5 8-11187.1157.0178.5 + 1 6 14 9 3 3 3 3 5 5 22 7-11200.9156.5178.7 + 1 6 15 15 15 6 9 2 3 5 2 7-11203.2156.2178.8 + 1 6 16 7 5 7 3 3 3 7 3 5-11214.3155.8178.9 + 1 6 17 2 3 6 5 22 9 6 5 7-11211.2155.6178.9 + 1 6 18 7 32 48 48 56 32 22 39 36-11228.5155.5178.9 + 1 6 19 22 9 4 5 5 15 18 18 12-11201.7155.3179.0 + 1 6 20 9 12 18 18 12 12 3 6 11-11205.0155.2179.0 + 1 6 21 6 12 15 7 9 22 22 9 13-11206.9154.9179.0 + 1 6 22 7 5 2 3 4 5 5 7 5-11210.3154.7179.1 + 1 6 23 5 5 4 4 5 5 5 5 5-11213.0154.5179.3 + 1 6 24 7 5 6 6 7 12 6 9 7-11201.3154.4179.5 + 1 6 25 6 7 5 4 6 7 5 4 6-11188.4154.5179.7 + 1 6 26 4 5 6 9 18 18 27 18 13-11173.5154.8179.9 + 1 6 27 22 12 5 2 2 3 0 2 6-11152.8155.0180.1 + 1 6 28 0 2 2 2 2 2 2 3 2-11144.9155.3180.3 + 1 6 29 0 0 2 4 3 3 4 6 3-11144.6155.7180.5 + 1 6 30 5 5 3 9 7 4 9 9 6-11141.2156.0180.7 + 1 7 1 12 6 4 3 4 5 12 12 7-11140.0156.1180.9 + 1 7 2 5 5 2 3 4 3 7 4 4-11138.8156.3181.1 + 1 7 3 3 5 5 6 9 5 9 4 6-11136.3156.3181.3 + 1 7 4 6 6 4 5 5 9 5 7 6-11131.3156.0181.4 + 1 7 5 7 9 12 7 15 15 15 12 12-11123.6155.8181.5 + 1 7 6 6 5 5 6 9 9 15 7 8-11120.3155.8181.7 + 1 7 7 6 5 3 4 4 5 6 5 5-11121.8155.8181.8 + 1 7 8 7 9 9 6 5 12 27 39 14-11130.5155.8181.8 + 1 7 9 48 9 4 2 4 5 6 5 10-11134.4156.0181.8 + 1 7 10 2 6 5 7 9 15 18 9 9-11134.3156.3181.9 + 1 7 11 18 15 3 3 5 4 7 3 7-11136.3156.6182.1 + 1 7 12 6 6 6 5 7 5 7 9 6-11138.3157.0182.2 + 1 7 13 6 7 3 5 2 2 7 12 6-11137.7157.3182.4 + 1 7 14 27 32 6 9 12 7 3 4 13-11145.4157.6182.6 + 1 7 15 3 3 7 5 12 22 22 9 10-11146.8157.8182.7 + 1 7 16 12 15 6 15 12 18 9 18 13-11154.7158.4182.8 + 1 7 17 32 22 12 9 18 18 7 6 16-11150.4158.8183.0 + 1 7 18 6 12 9 6 9 12 5 5 8-11147.7159.1183.1 + 1 7 19 4 5 5 7 7 15 7 4 7-11146.9159.3183.3 + 1 7 20 5 6 5 5 6 5 2 2 5-11147.2159.5183.4 + 1 7 21 4 5 3 4 5 4 3 6 4-11143.5160.0183.6 + 1 7 22 7 9 9 6 7 9 9 12 9-11144.9160.3183.8 + 1 7 23 15 12 6 6 9 9 9 7 9-11147.8160.5184.0 + 1 7 24 12 7 7 7 22 15 15 9 12-11136.7160.5184.1 + 1 7 25 9 22 27 32 18 27 18 9 20-11137.5160.5184.3 + 1 7 26 22 22 6 7 7 4 6 7 10-11127.2160.7184.5 + 1 7 27 4 5 9 6 6 7 5 7 6-11125.1160.8184.6 + 1 7 28 4 2 2 2 4 2 2 3 3-11119.0161.0184.9 + 1 7 29 5 7 7 5 6 6 4 3 5-11120.5161.0185.1 + 1 7 30 5 4 5 5 5 6 12 15 7-11118.0161.6185.3 + 1 7 31 22 32 27 12 48 39 12 18 26-11120.3162.1185.6 + 1 8 1 22 6 6 12 9 7 5 6 9-11123.8162.6185.9 + 1 8 2 4 5 7 5 7 9 4 3 6-11124.3163.1186.1 + 1 8 3 9 6 32 12 7 12 7 9 12-11135.5163.4186.3 + 1 8 4 5 6 5 5 6 9 7 7 6-11152.7163.9186.5 + 1 8 5 7 6 18 22 48 39 18 12 21-11160.5164.5186.7 + 1 8 6 9 18 15 18 27 18 12 18 17-11168.3165.1186.9 + 1 8 7 12 9 5 9 6 4 6 5 7-11171.0165.8187.1 + 1 8 8 12 5 5 5 6 3 7 4 6-11171.5166.5187.2 + 1 8 9 4 7 4 3 7 9 9 15 7-11167.8167.3187.2 + 1 8 10 12 6 7 5 3 3 7 7 6-11164.7168.0187.3 + 1 8 11 7 3 2 0 2 3 3 12 4-11169.5169.1187.4 + 1 8 12 5 4 5 22 6 18 15 18 12-11164.0170.4187.6 + 1 8 13 27 56 15 15 15 15 18 12 22-11155.5171.8187.7 + 1 8 14 7 9 6 12 15 9 9 12 10-11151.1173.4187.9 + 1 8 15 6 6 5 3 4 4 7 6 5-11150.5175.4188.0 + 1 8 16 3 4 2 3 3 3 3 4 3-11146.2177.3188.2 + 1 8 17 4 4 3 18 32 48132 94 42-11148.4179.3188.4 + 1 8 18 15 9 18 3 22 18 15 18 15-11159.9181.0188.5 + 1 8 19 2 9 15 15 5 6 9 2 8-11161.3182.9188.7 + 1 8 20 2 3 3 12 12 5 6 7 6-11159.8184.2188.9 + 1 8 21 4 6 5 22 15 22 18 12 13-11163.9185.5189.0 + 1 8 22 5 7 12 27 27 18 27 32 19-11165.2186.4189.1 + 1 8 23 22 9 12 4 6 4 4 5 8-11173.4187.2189.3 + 1 8 24 3 5 2 4 4 3 2 0 3-11178.7187.8189.4 + 1 8 25 0 5 3 9 12 18 18 15 10-11203.2188.3189.5 + 1 8 26 15 7 15 9 5 6 12 15 11-11193.8188.5189.7 + 1 8 27 5 9 4 6 9 9 39 22 13-11195.9188.9189.9 + 1 8 28 27 18 12 7 7 6 7 4 11-11203.1189.2190.1 + 1 8 29 4 6 7 9 5 5 4 3 5-11200.9189.5190.3 + 1 8 30 3 7 6 9 15 22 12 4 10-11203.0189.9190.5 + 1 8 31 12 12 9 18 6 27 7 7 12-11192.2190.3190.6 + 1 9 1 7 6 4 4 4 5 3 0 4-11187.4190.7190.8 + 1 9 2 0 0 0 3 6 9 6 9 4-11185.7191.0190.9 + 1 9 3 7 7 12 18 18 22 18 32 17-11202.1191.5191.0 + 1 9 4 18 32 15 12 9 18 9 7 15-11222.1192.2191.0 + 1 9 5 15 5 5 3 9 15 9 2 8-11221.8193.0191.1 + 1 9 6 7 4 6 5 5 3 5 6 5-11225.6194.0191.1 + 1 9 7 0 0 0 2 3 3 3 12 3-11229.5195.2191.1 + 1 9 8 15 7 4 5 6 5 4 2 6-11253.1196.5191.2 + 1 9 9 4 4 4 6 5 3 4 2 4-11239.5198.1191.3 + 1 9 10 5 3 2 2 3 4 4 4 3-11247.8199.6191.4 + 1 9 11 5 4 2 4 12 15 18 12 9-11252.9200.8191.4 + 1 9 12 12 12 22 9 12 6 9 15 12-11238.1202.1191.5 + 1 9 13 12 39 39 27 9 7 7 2 18-11242.6203.2191.6 + 1 9 14 18 6 5 5 9 5 4 18 9-11239.3204.2191.7 + 1 9 15 27 12 12 22 22 22 32 12 20-11221.7205.2191.8 + 1 9 16 9 5 3 4 7 12 12 9 8-11209.3206.0192.0 + 1 9 17 4 6 12 6 5 4 4 7 6-11201.1206.9192.1 + 1 9 18 7 6 3 3 6 22 32 6 11-11205.7207.5192.2 + 1 9 19 15 18 6 6 5 4 12 4 9-11200.6208.1192.3 + 1 9 20 4 5 3 6 5 3 3 7 5-11228.7208.8192.3 + 1 9 21 6 2 2 3 4 3 3 9 4-11240.5209.4192.3 + 1 9 22 7 5 7 18 18 9 4 0 9-11257.0210.2192.2 + 1 9 23 2 12 48 39 48 67 80 32 41-11260.2210.9192.1 + 1 9 24 27 7 6 7 6 6 6 3 9-11281.0211.7192.0 + 1 9 25 3 7 7 4 4 3 80154 33-11276.6212.6191.7 + 1 9 26 67 27 48 39 6 7 7 7 26-11284.0213.6191.4 + 1 9 27 5 6 5 12 7 18 27 9 11-11270.6214.6191.2 + 1 9 28 12 12 22 9 9 15 15 18 14-11285.5215.9191.0 + 1 9 29 18 18 12 39 15 27 39 56 28-11240.2216.9190.8 + 1 9 30 27 9 7 6 18 48 67 48 29-11236.3218.2190.7 + 1 10 1 48 80 67 67 32 27 15 48 48-11216.9219.2190.5 + 1 10 2 32 48 67 27 22 32 80111 52-11201.1220.0190.5 + 1 10 3 48 18 48132111111 39 48 69-11191.8220.6190.4 + 1 10 4 32 9 27 22 12 18 12 6 17-11186.5221.2190.4 + 1 10 5 3 4 4 9 5 15 15 5 8-11176.8221.3190.5 + 1 10 6 7 7 9 15 7 2 6 3 7-11180.2221.4190.5 + 1 10 7 2 0 3 3 6 2 2 7 3-11172.4221.4190.6 + 1 10 8 7 12 9 9 22 22 9 39 16-11170.8221.3190.7 + 1 10 9 27 15 15 32 22 22 5 5 18-11175.9221.1190.8 + 1 10 10 6 7 7 6 9 7 9 4 7-11178.1220.9190.9 + 1 10 11 12 12 6 4 9 48 56 18 21-11174.1220.8191.0 + 1 10 12 80 67 22 18 27 22 18 15 34-11178.5220.7191.2 + 1 10 13 15 15 15 15 7 9 7 3 11-11178.6220.7191.4 + 1 10 14 5 12 15 12 7 12 27 15 13-11190.8220.3191.6 + 1 10 15 15 22 7 9 6 7 4 6 10-11191.7219.6191.8 + 1 10 16 15 7 7 6 7 6 6 5 7-11205.8219.0192.0 + 1 10 17 9 4 5 4 3 3 2 4 4-11215.8218.3192.2 + 1 10 18 3 0 2 2 4 5 6 3 3-11226.9217.7192.3 + 1 10 19 3 4 4 6 12 18 15 7 9-11245.6217.0192.4 + 1 10 20 4 18 12 18 12 9 7 9 11-11242.5216.6192.4 + 1 10 21 15 12 7 5 7 80154179 57-11222.0216.3192.4 + 1 10 22132 39 22 80 80154132132 96-11230.4215.8192.3 + 1 10 23 56 32 22 6 7 5 5 4 17-11224.1215.8192.2 + 1 10 24 3 2 3 2 0 2 2 0 2-11236.0215.6192.2 + 1 10 25 0 3 15 9 4 7 9 7 7-11236.1215.5192.1 + 1 10 26 3 3 5 6 2 4 6 7 5-11233.6215.6192.0 + 1 10 27 5 12 3 6 9 4 3 3 6-11243.4216.0191.9 + 1 10 28 12111 67 39 48 18 27 27 44-11224.2216.2191.8 + 1 10 29 18 15 15 12 12 15 12 15 14-11212.8216.3191.7 + 1 10 30 9 15 9 7 4 5 3 5 7-11222.7216.5191.6 + 1 10 31 5 2 5 2 15 12 27 32 13-11217.8216.3191.6 + 1 11 1 48 39 39 12 27 18 7 3 24-11232.0216.0191.5 + 1 11 2 3 4 6 3 18 4 2 3 5-11210.1215.6191.6 + 1 11 3 3 0 2 2 2 3 2 0 2-11212.5215.0191.6 + 1 11 4 0 2 6 12 9 9 4 0 5-11223.5214.2191.6 + 1 11 5 3 2 5 12 15 27 56 48 21-11230.6213.4191.7 + 1 11 6300300132 48 56111 94 94142-11233.2212.3191.9 + 1 11 7 67 27 6 12 9 7 9 12 19-11263.9211.5192.0 + 1 11 8 7 9 7 7 3 4 4 5 6-11243.1210.5192.2 + 1 11 9 5 4 4 4 3 5 7 6 5-11265.6210.0192.4 + 1 11 10 6 6 3 5 5 5 6 18 7-11241.0209.7192.5 + 1 11 11 9 6 5 9 4 4 3 2 5-11229.3209.8192.7 + 1 11 12 5 2 2 5 4 0 0 0 2-11222.6210.3192.7 + 1 11 13 3 4 3 2 3 6 6 5 4-11226.8210.9192.8 + 1 11 14 3 3 5 3 3 2 3 2 3-11212.6211.9192.9 + 1 11 15 0 0 2 4 5 22 32 6 9-11202.4212.8192.9 + 1 11 16 9 9 9 7 9 6 4 4 7-11197.6213.8192.9 + 1 11 17 7 18 7 9 22 12 15 15 13-11194.0214.9193.0 + 1 11 18 9 12 5 7 12 12 9 18 11-11183.8216.0193.1 + 1 11 19 27 15 9 15 18 18 32 22 20-11186.8217.0193.2 + 1 11 20 18 15 27 5 2 0 0 0 8-11180.6217.7193.3 + 1 11 21 3 2 6 4 5 7 4 2 4-11179.7218.5193.4 + 1 11 22 4 12 7 9 9 7 12 12 9-11185.3219.1193.4 + 1 11 23 12 9 9 12 15 15 12 18 13-11172.9219.6193.5 + 1 11 24 18 56236132179154 15 39104-11168.6219.9193.5 + 1 11 25 6 12 12 15 7 7 4 3 8-11165.6220.1193.6 + 1 11 26 6 4 12 6 3 2 0 3 5-11170.3220.1193.7 + 1 11 27 3 2 0 2 0 3 3 4 2-11185.3219.8193.9 + 1 11 28 2 0 2 0 3 4 3 5 2-11193.1219.2194.0 + 1 11 29 5 2 5 4 3 2 2 0 3-11210.5218.6194.1 + 1 11 30 3 2 0 2 2 2 4 4 2-11219.6218.3194.3 + 1 12 1 3 3 6 7 12 12 4 6 7-11215.1218.3194.4 + 1 12 2 4 0 4 5 7 7 5 4 5-11238.1218.2194.5 + 1 12 3 2 6 3 5 9 7 18 18 9-11228.3218.2194.6 + 1 12 4 15 9 6 9 15 6 15 7 10-11226.6218.1194.6 + 1 12 5 27 12 5 9 7 7 12 7 11-11230.1218.0194.6 + 1 12 6 15 6 7 15 9 12 12 15 11-11239.5217.7194.6 + 1 12 7 9 5 3 4 9 12 4 6 7-11219.3217.3194.6 + 1 12 8 18 5 6 6 7 4 3 3 7-11213.9217.0194.5 + 1 12 9 2 3 0 5 3 0 2 6 3-11217.5216.9194.5 + 1 12 10 2 2 4 3 6 3 3 5 4-11212.3216.7194.5 + 1 12 11 3 4 3 3 4 4 6 6 4-11213.9216.7194.4 + 1 12 12 7 9 9 18 9 9 15 15 11-11229.4216.5194.3 + 1 12 13 7 6 4 2 4 4 0 0 3-11213.4216.6194.2 + 1 12 14 0 3 0 4 7 6 7 7 4-11209.9216.7194.0 + 1 12 15 9 15 7 9 15 6 4 9 9-11211.0216.7193.9 + 1 12 16 12 18 18 9 9 6 6 5 10-11202.5216.7193.7 + 1 12 17 12 22 15 15 18 22 15 6 16-11199.0216.9193.5 + 1 12 18 22 7 7 9 12 7 4 6 9-11205.0216.6193.3 + 1 12 19 15 9 7 12 4 6 9 5 8-11201.6216.7193.1 + 1 12 20 4 0 4 5 7 5 4 6 4-11214.0216.6193.0 + 1 12 21 2 7 9 12 9 22 27 22 14-11226.7216.6192.8 + 1 12 22 15 15 9 9 7 3 7 3 9-11234.9216.7192.6 + 1 12 23 5 7 5 12 6 7 4 7 7-11246.3216.9192.4 + 1 12 24 7 18 39 32 32 32 15 12 23-11265.5217.0192.3 + 1 12 25 12 9 6 12 6 7 4 15 9-11250.3217.2192.2 + 1 12 26 9 3 3 4 4 6 9 9 6-11259.0217.5192.1 + 1 12 27 9 4 4 5 6 7 12 6 7-11265.6217.7192.1 + 1 12 28 3 0 6 5 7 4 4 7 5-11254.6217.7192.1 + 1 12 29 6 27 9 12 9 9 7 12 11-11255.7217.8192.1 + 1 12 30 18 39 18 7 9 9 27 39 21-11238.5217.8192.1 + 1 12 31 18 18 7 5 5 15 22 27 15-11237.5217.9192.2 + 2 1 1 9 12 9 5 5 4 12 6 8-11224.5218.3192.2 + 2 1 2 7 3 4 7 12 12 9 7 8-11223.5218.5192.3 + 2 1 3 4 3 3 3 2 3 0 0 2-11213.0218.8192.3 + 2 1 4 3 4 2 3 3 3 3 3 3-11211.0219.2192.4 + 2 1 5 4 5 2 2 2 2 2 0 2-11205.2219.5192.4 + 2 1 6 2 0 0 0 4 5 2 4 2-11190.1219.8192.5 + 2 1 7 0 5 5 9 5 12 12 7 7-11182.4219.8192.5 + 2 1 8 15 15 22 6 15 6 4 2 11-11192.6219.8192.5 + 2 1 9 0 0 0 2 3 6 5 3 2-11220.9219.5192.5 + 2 1 10 5 6 9 9 27 48 27 18 19-11217.3219.1192.5 + 2 1 11 32 48 32 22 18 32 18 15 27-11221.4218.8192.5 + 2 1 12 22 18 22 22 12 22 15 5 17-11225.7218.3192.5 + 2 1 13 9 12 15 18 15 9 7 18 13-11232.9217.8192.5 + 2 1 14 12 9 6 5 9 7 6 7 8-11221.6217.2192.6 + 2 1 15 5 6 7 9 7 7 5 7 7-11211.2216.7192.6 + 2 1 16 5 4 7 3 3 3 3 0 4-11209.1216.3192.7 + 2 1 17 12 9 5 9 7 12 5 9 9-11205.0216.1192.8 + 2 1 18 15 7 3 5 4 5 2 0 5-11203.8215.9193.0 + 2 1 19 0 4 6 15 22 27 18 22 14-11206.9215.7193.1 + 2 1 20 22 15 6 6 6 7 7 9 10-11215.2215.3193.2 + 2 1 21 22 15 7 7 9 12 12 7 11-11217.5215.0193.3 + 2 1 22 4 5 7 6 7 6 5 6 6-11221.5214.4193.5 + 2 1 23 12 5 6 7 6 7 15 9 8-11219.4213.9193.7 + 2 1 24 6 15 0 2 2 4 2 2 4-11223.6213.4193.9 + 2 1 25 4 3 4 6 15 22 22 7 10-11227.6212.9194.3 + 2 1 26 15 9 7 7 5 7 7 4 8-11248.7212.6194.6 + 2 1 27 15 9 6 7 7 6 5 6 8-11240.5212.3194.9 + 2 1 28 9 4 4 9 12 7 6 7 7-11252.0212.3195.3 + 2 1 29 7 7 4 6 3 3 2 3 4-11253.2212.0195.6 + 2 1 30 3 0 2 2 3 3 4 4 3-11248.8211.6195.8 + 2 1 31 9 6 2 2 2 4 4 22 6-11235.5211.0196.1 + 2 2 1 32 18 7 9 22 12 5 7 14-11238.5210.3196.2 + 2 2 2 18 27 39 18 22 15 5 9 19-11233.7209.5196.3 + 2 2 3 7 6 3 4 5 6 2 2 4-11226.3208.4196.3 + 2 2 4 2 7 2 3 5 7 7 12 6-11228.1207.5196.3 + 2 2 5 27 15 7 9 18 18 48 39 23-11214.5206.6196.2 + 2 2 6 27 22 39 22 22 15 18 9 22-11196.9205.5196.2 + 2 2 7 12 18 18 18 22 7 6 18 15-11186.6204.5196.1 + 2 2 8 18 7 6 12 15 15 9 9 11-11186.4203.6196.0 + 2 2 9 12 15 9 9 6 5 12 22 11-11194.1202.8196.0 + 2 2 10 15 15 12 6 9 5 4 6 9-11210.9202.0196.0 + 2 2 11 15 9 9 18 18 15 12 12 14-11196.6201.3196.0 + 2 2 12 18 9 9 5 5 5 4 18 9-11203.1200.7196.2 + 2 2 13 9 7 15 18 15 22 5 4 12-11198.5200.1196.3 + 2 2 14 0 2 6 3 3 3 2 2 3-11191.3199.6196.5 + 2 2 15 0 2 4 2 3 6 6 4 3-11190.3199.1196.7 + 2 2 16 4 4 3 4 5 9 4 5 5-11188.9198.9196.9 + 2 2 17 12 18 27 9 9 7 4 7 12-11192.0198.9197.2 + 2 2 18 4 7 7 5 6 12 22 22 11-11188.4198.9197.4 + 2 2 19 15 4 6 3 3 4 7 5 6-11185.1198.7197.6 + 2 2 20 6 3 7 6 12 9 7 12 8-11189.1198.5197.8 + 2 2 21 5 7 9 6 7 6 7 15 8-11196.7198.3197.9 + 2 2 22 7 15 4 4 6 4 15 7 8-11187.9198.1198.1 + 2 2 23 9 5 4 3 4 3 0 4 4-11184.2197.9198.1 + 2 2 24 6 5 4 6 7 4 5 5 5-11188.9197.9198.1 + 2 2 25 7 0 5 6 9 6 7 9 6-11206.4197.8198.0 + 2 2 26 6 7 7 7 6 6 9 12 8-11203.5197.8197.9 + 2 2 27 12 3 4 5 6 4 4 6 6-11194.9197.8197.8 + 2 2 28 6 27 15 15 18 15 27 80 25-11200.4197.9197.8 + 2 3 1 39 18 6 5 6 3 3 2 10-11184.3197.7197.7 + 2 3 2 5 5 5 5 5 9 6 4 6-11187.6197.5197.7 + 2 3 3 6 5 9 9 15 7 15 22 11-11179.6197.5197.7 + 2 3 4 15 7 7 6 7 15 12 12 10-11172.0197.5197.6 + 2 3 5 32 32 15 18 15 27 18 12 21-11169.4197.4197.6 + 2 3 6 7 18 22 15 18 22 27 9 17-11175.0197.2197.4 + 2 3 7 6 7 9 15 15 5 4 12 9-11177.0196.8197.3 + 2 3 8 4 5 9 9 3 2 2 0 4-11174.2196.2197.2 + 2 3 9 2 0 3 5 7 12 6 3 5-11204.8195.5197.1 + 2 3 10 0 4 4 18 15 5 5 18 9-11176.9194.7196.9 + 2 3 11 12 27 6 7 7 7 7 5 10-11180.0193.7196.8 + 2 3 12 9 6 15 15 9 12 9 12 11-11176.2192.8196.7 + 2 3 13 7 3 7 5 9 4 3 0 5-11182.1192.1196.7 + 2 3 14 2 2 2 3 4 4 3 2 3-11178.6191.3196.6 + 2 3 15 0 2 5 3 2 5 9 12 5-11174.0190.6196.5 + 2 3 16 4 2 3 4 5 5 3 0 3-11182.7189.9196.4 + 2 3 17 0 0 0 2 3 2 4 3 2-11182.7189.1196.3 + 2 3 18 7 3 3 5 48 18 15 15 14-11176.5188.4196.3 + 2 3 19 48 56 18 7 4 4 6 7 19-11173.3187.9196.2 + 2 3 20 4 2 2 2 15 32 12 5 9-11186.3187.5196.2 + 2 3 21 7 5 12 6 5 5 9 6 7-11172.8187.1196.1 + 2 3 22 12 15 7 7 3 3 2 2 6-11170.4186.7195.9 + 2 3 23 0 0 3 15 22 22 18 27 13-11169.4186.2195.7 + 2 3 24 48 80 80 39 27 48 18 18 45-11174.3186.1195.4 + 2 3 25 9 7 3 3 7 15 7 4 7-11169.1185.9195.1 + 2 3 26 9 9 12 18 15 6 7 15 11-11164.9185.7194.8 + 2 3 27 3 5 6 2 3 3 4 3 4-11168.4185.8194.5 + 2 3 28 2 3 0 3 4 3 3 2 3-11175.6185.8194.1 + 2 3 29 0 0 2 4 4 4 5 18 5-11180.8185.8193.8 + 2 3 30 7 27 27 18 32 18 18 12 20-11188.2185.8193.4 + 2 3 31 9 27 27 22 15 18 27 15 20-11204.0185.9193.1 + 2 4 1 18 22 32 18 22 15 15 5 18-11206.7186.0192.9 + 2 4 2 7 27 32 22 7 5 7 5 14-11205.9186.0192.6 + 2 4 3 18 27 22 15 7 7 9 7 14-11209.4185.7192.5 + 2 4 4 6 7 6 6 7 3 3 3 5-11216.3185.4192.3 + 2 4 5 4 5 2 2 4 2 5 2 3-11217.6185.1192.3 + 2 4 6 4 5 2 4 4 4 4 4 4-11206.7184.8192.2 + 2 4 7 6 5 7 9 15 9 3 3 7-11208.4184.2192.2 + 2 4 8 0 0 3 3 3 2 3 2 2-11206.8183.8192.1 + 2 4 9 3 4 4 2 4 3 2 3 3-11205.8183.5192.1 + 2 4 10 0 3 4 5 12 9 5 5 5-11195.1183.2192.1 + 2 4 11 9 5 18 27 18 18 9 18 15-11198.3183.3192.1 + 2 4 12 32 12 9 12 22 12 12 15 16-11213.0183.3192.1 + 2 4 13 15 18 12 18 18 22 15 18 17-11227.3183.4192.1 + 2 4 14 18 18 4 4 32 22 5 2 13-11211.6183.6192.1 + 2 4 15 7 4 2 2 6 7 7 9 6-11204.7183.8192.1 + 2 4 16 7 12 12 3 5 3 6 5 7-11197.2184.0192.0 + 2 4 17 15 15 12 80111154 94 15 62-11195.0184.2191.9 + 2 4 18132111 67 67 32 39 27 32 63-11189.8184.4191.8 + 2 4 19 22 22 32 80 80 94111 56 62-11181.4184.2191.7 + 2 4 20132154 67 32 48 80 39 12 71-11179.0184.3191.5 + 2 4 21 9 6 4 3 4 3 5 9 5-11175.1184.4191.3 + 2 4 22 12 27 6 6 9 15 7 4 11-11171.7184.5191.2 + 2 4 23 4 39 80 18 18 32 9 18 27-11177.2184.5191.0 + 2 4 24 18 6 5 6 5 7 5 7 7-11178.9184.4190.9 + 2 4 25 7 3 0 2 3 3 4 0 3-11169.3184.4190.7 + 2 4 26 3 2 2 2 2 4 5 5 3-11164.7184.2190.5 + 2 4 27 5 5 4 9 15 12 18 15 10-11159.0183.9190.3 + 2 4 28 22 39 27 18 18 18 9 7 20-11149.2183.7190.0 + 2 4 29 7 4 5 12 15 12 7 9 9-11155.2183.6189.8 + 2 4 30 7 7 5 7 12 7 6 2 7-11155.6183.3189.7 + 2 5 1 4 5 4 4 4 2 3 3 4-11164.9183.1189.5 + 2 5 2 6 5 2 3 9 9 3 3 5-11171.7182.9189.4 + 2 5 3 5 7 5 3 5 5 6 3 5-11182.0182.6189.2 + 2 5 4 3 6 7 3 3 4 6 4 5-11192.7182.1189.1 + 2 5 5 3 2 2 4 4 2 3 5 3-11183.2181.7188.9 + 2 5 6 3 3 4 5 7 15 9 15 8-11194.3181.4188.8 + 2 5 7 9 5 4 4 7 9 12 15 8-11190.3181.0188.7 + 2 5 8 15 12 9 5 5 6 6 6 8-11190.2180.7188.5 + 2 5 9 12 4 7 9 6 2 3 4 6-11193.7180.3188.3 + 2 5 10 7 6 15 22 9 15 18 27 15-11194.8179.8188.2 + 2 5 11 4 3 7 67111111 56 32 49-11191.8179.2187.9 + 2 5 12 39 15 22 7 12 9 7 9 15-11187.1178.4187.8 + 2 5 13 22 12 4 5 9 5 4 4 8-11175.6177.7187.7 + 2 5 14 22 39 32 22 22 27 48 22 29-11164.2176.9187.5 + 2 5 15 22 18 9 9 6 9 12 7 12-11162.7176.1187.4 + 2 5 16 6 7 6 7 6 5 7 9 7-11162.0175.3187.3 + 2 5 17 4 2 5 4 9 5 6 5 5-11160.7174.6187.3 + 2 5 18 5 4 4 4 5 4 56 32 14-11166.8173.8187.3 + 2 5 19 18 27 27 4 3 2 2 3 11-11175.0173.0187.2 + 2 5 20 3 12 7 18 7 9 18 7 10-11175.4172.3187.2 + 2 5 21 18 4 18 4 6 3 5 22 10-11190.4171.7187.2 + 2 5 22 6 5 6 12 9 7 9 6 8-11185.6171.1187.1 + 2 5 23 12 12 7111179236 48 18 78-11184.8170.4187.0 + 2 5 24 3 2 2 2 2 0 2 3 2-11193.9169.5186.9 + 2 5 25 3 2 2 2 5 7 5 4 4-11187.4168.7186.8 + 2 5 26 5 4 5 5 5 9 6 15 7-11188.0168.0186.7 + 2 5 27 18 9 39 22 27 39 9 12 22-11191.6167.3186.7 + 2 5 28 9 12 12 5 9 9 9 7 9-11191.4166.6186.6 + 2 5 29 15 6 6 4 12 4 4 4 7-11189.8165.9186.4 + 2 5 30 6 5 7 5 7 6 4 5 6-11185.1165.4186.3 + 2 5 31 5 4 2 3 3 3 3 3 3-11187.0164.9186.1 + 2 6 1 0 2 3 3 2 4 5 9 4-11183.9164.4185.9 + 2 6 2 27 18 7 9 12 15 18 22 16-11180.0164.0185.7 + 2 6 3 15 18 9 4 6 4 12 9 10-11175.4163.5185.4 + 2 6 4 18 15 27 12 12 9 6 7 13-11174.7163.2185.2 + 2 6 5 15 9 5 3 5 4 5 5 6-11163.7163.1185.0 + 2 6 6 6 5 5 4 2 4 4 5 4-11159.1163.3184.7 + 2 6 7 5 4 4 4 4 4 5 9 5-11163.1163.6184.5 + 2 6 8 3 4 4 7 27 22 22 22 14-11159.9164.1184.3 + 2 6 9 12 12 7 6 5 6 12 7 8-11161.9164.5184.1 + 2 6 10 6 7 18 12 18 22 15 12 14-11156.2164.9183.9 + 2 6 11 9 6 9 9 6 7 9 7 8-11152.4165.2183.7 + 2 6 12 12 6 3 6 6 5 5 7 6-11146.2165.5183.6 + 2 6 13 5 9 6 5 6 9 12 5 7-11137.6165.8183.3 + 2 6 14 6 3 4 3 4 4 4 4 4-11135.6166.1183.2 + 2 6 15 4 3 3 3 3 2 4 9 4-11139.7166.6183.1 + 2 6 16 7 6 12 6 12 4 5 7 7-11141.0167.2183.1 + 2 6 17 9 5 5 4 3 4 3 3 5-11147.5167.8183.1 + 2 6 18 3 3 3 9 18 15 18 12 10-11147.5168.5183.1 + 2 6 19 22 12 9 12 5 9 7 15 11-11150.5169.1183.0 + 2 6 20 7 7 7 6 4 3 4 3 5-11149.8169.6183.0 + 2 6 21 6 9 4 5 9 7 9 5 7-11144.2169.9182.9 + 2 6 22 4 3 3 5 5 7 7 12 6-11146.6170.0182.8 + 2 6 23 6 9 15 15 9 5 7 7 9-11147.5170.1182.6 + 2 6 24 6 6 5 5 4 7 5 3 5-11155.3170.2182.4 + 2 6 25 7 5 4 6 18 5 6 12 8-11149.5170.2182.0 + 2 6 26 12 4 2 2 6 9 4 4 5-11148.6170.0181.7 + 2 6 27 4 2 2 2 2 2 4 0 2-11143.2169.8181.3 + 2 6 28 2 2 2 2 3 4 3 2 3-11141.9169.5180.9 + 2 6 29 4 3 2 5 4 5 9 9 5-11147.5169.0180.5 + 2 6 30 9 12 15 12 12 9 9 18 12-11151.4168.6180.1 + 2 7 1 15 18 7 15 22 15 12 4 14-11152.3168.2179.8 + 2 7 2 9 4 5 3 2 3 6 5 5-11153.5168.1179.4 + 2 7 3 3 3 3 4 5 3 6 3 4-11152.4168.1179.1 + 2 7 4 5 3 3 2 3 2 5 15 5-11151.3168.1178.8 + 2 7 5 7 5 9 7 9 12 27 18 12-11143.5168.5178.6 + 2 7 6 27 32 18 27 18 22 18 15 22-11138.0168.8178.4 + 2 7 7 18 5 6 5 7 9 9 4 8-11141.5169.1178.2 + 2 7 8 7 5 4 6 7 5 6 27 8-11135.3169.7178.1 + 2 7 9 15 9 12 12 9 15 15 12 12-11140.9170.4178.1 + 2 7 10 7 6 9 6 6 5 9 7 7-11133.1171.1178.0 + 2 7 11 5 2 3 4 6 4 7 12 5-11141.0171.6177.9 + 2 7 12 7 12 15 39 27 27 15 7 19-11137.7172.1177.8 + 2 7 13 7 7 5 5 6 6 6 4 6-11139.4172.7177.7 + 2 7 14 2 2 3 3 2 3 3 2 3-11148.6173.4177.5 + 2 7 15 3 2 5 3 4 5 6 5 4-11164.8173.7177.3 + 2 7 16 6 7 5 6 12 15 27 18 12-11177.2173.9177.1 + 2 7 17 12 22 15 9 9 48 27 15 20-11185.9174.1177.0 + 2 7 18 12 6 6 6 3 2 2 2 5-11186.6174.1176.8 + 2 7 19 2 3 2 18 7 18 6 27 10-11188.3174.2176.6 + 2 7 20 32 32 12 7 6 9 15 27 18-11190.7174.3176.4 + 2 7 21 32 39 18 5 22 22 18 4 20-11188.7174.5176.2 + 2 7 22 9 9 27 22 18 15 12 15 16-11195.8174.9176.0 + 2 7 23 22 7 9 7 12 18 22 39 17-11204.6175.4175.7 + 2 7 24 12 7 6 6 7 4 7 5 7-11215.0175.8175.4 + 2 7 25 9 9 6 12 12 12 15 22 12-11224.5176.3175.2 + 2 7 26 18 12 7 12 7 15 12 15 12-11249.1176.8174.9 + 2 7 27 22 15 9 18 27 18 15 15 17-11238.0177.2174.7 + 2 7 28 22 15 9 6 7 12 7 7 11-11246.2177.6174.3 + 2 7 29 6 9 7 4 32 15 6 5 11-11241.1178.1174.0 + 2 7 30 5 5 4 3 4 7 15 9 7-11234.1178.6173.6 + 2 7 31 6 4 3 7 9 15 7 4 7-11214.8179.4173.3 + 2 8 1 3 18 18 27 56 27 15 39 25-11198.3180.3172.9 + 2 8 2 80 80 22 9 32 22 27 67 42-11185.7181.2172.6 + 2 8 3 39 12 18 12 7 7 12 7 14-11172.7182.1172.2 + 2 8 4 18 32 18 12 5 6 9 3 13-11155.3182.7171.9 + 2 8 5 4 5 4 4 3 4 5 7 5-11146.0183.5171.7 + 2 8 6 7 5 3 3 5 2 2 3 4-11148.8184.0171.4 + 2 8 7 7 4 4 4 3 5 5 3 4-11140.1184.5171.2 + 2 8 8 4 6 2 4 6 5 9 15 6-11138.3185.2171.1 + 2 8 9 6 4 7 6 27 18 22 18 14-11144.0185.5170.9 + 2 8 10 22 39 7 12 18 7 6 12 15-11152.4185.7170.8 + 2 8 11 3 5 6 12 32 22 18 9 13-11176.9185.9170.6 + 2 8 12 15 15 12 12 15 6 7 12 12-11188.8186.0170.4 + 2 8 13 15 15 7 6 5 4 7 7 8-11196.8186.1170.3 + 2 8 14 6 6 7 7 22 22 12 15 12-11213.5186.1170.0 + 2 8 15 7 6 9 18 15 18 56 48 22-11215.7186.3169.9 + 2 8 16 12 9 32 9 12 6 5 4 11-11219.1186.5169.7 + 2 8 17 3 15 18 5 7 5 7 7 8-11232.3186.6169.5 + 2 8 18 18 12 5 5 7 6 56 56 21-11246.9186.8169.3 + 2 8 19 32 27 48 27 18 15 22 48 30-11242.6186.9169.1 + 2 8 20 18 27 6 6 5 18 67 94 30-11232.8187.0168.8 + 2 8 21 56 56 56 15 27 12 15 15 32-11225.0187.0168.6 + 2 8 22 15 12 12 4 4 5 6 4 8-11225.1187.0168.4 + 2 8 23 4 5 6 6 4 5 12 12 7-11229.5187.0168.2 + 2 8 24 7 4 4 4 5 4 3 3 4-11199.8186.9168.0 + 2 8 25 6 4 6 5 4 3 3 9 5-11182.4186.9167.8 + 2 8 26 7 7 6 18 22 39 18 15 17-11172.2186.6167.5 + 2 8 27 12 22 9 12 12 12 7 18 13-11164.7186.3167.2 + 2 8 28 7 6 7 5 5 6 9 9 7-11166.4186.0167.0 + 2 8 29 15 4 3 5 15 15 6 5 9-11172.6185.7166.7 + 2 8 30 4 12 15 6 12 6 9 2 8-11173.5185.4166.5 + 2 8 31 3 5 6 9 7 5 6 18 7-11183.7185.2166.4 + 2 9 1 22 9 7 6 6 5 7 27 11-11183.8185.0166.3 + 2 9 2 18 9 6 15 7 4 3 3 8-11176.9184.7166.2 + 2 9 3 2 3 3 9 5 3 18 12 7-11174.4184.2166.1 + 2 9 4 32 94 32 48 39 39 39 12 42-11174.2183.7166.1 + 2 9 5 7 18 6 6 6 6 5 5 7-11178.1182.8166.0 + 2 9 6 6 7 9 7 12 5 5 5 7-11180.9182.1165.9 + 2 9 7 7 18 15 6 12111154132 57-11185.6181.2165.8 + 2 9 8154 67 18 6 3 7 15 22 37-11194.4180.4165.7 + 2 9 9 6 3 2 3 6 7 18 27 9-11209.0179.7165.6 + 2 9 10 22 9 6 15 27 39 32 39 24-11223.5179.2165.5 + 2 9 11 9 9 27 48 15 39 22 39 26-11219.0179.0165.4 + 2 9 12 18 15 12 15 18 12 15 7 14-11215.1178.8165.2 + 2 9 13 18 15 15 15 6 5 7 5 11-11208.6178.7165.1 + 2 9 14 12 15 9 9 6 5 5 3 8-11209.2178.7165.0 + 2 9 15 6 4 5 6 5 6 9 7 6-11189.9179.0164.8 + 2 9 16 4 4 5 6 15 5 5 2 6-11184.5179.1164.7 + 2 9 17 2 12 7 15 12 12 12 15 11-11195.9179.3164.5 + 2 9 18 22 12 9 18 22 12 7 12 14-11178.4179.5164.3 + 2 9 19 12 5 7 15 22 39 7 15 15-11166.7179.7164.1 + 2 9 20 7 6 4 3 2 3 2 5 4-11165.8179.9163.9 + 2 9 21 6 4 4 7 9 12 4 3 6-11159.8179.7163.6 + 2 9 22 7 5 7 3 7 12 6 5 7-11161.1179.4163.4 + 2 9 23 4 2 3 0 0 3 3 0 2-11154.8179.0163.2 + 2 9 24 0 0 2 5 5 2 4 2 3-11158.9178.4163.0 + 2 9 25 0 0 0 2 5 4 2 4 2-11154.2177.9162.9 + 2 9 26 6 3 4 4 3 5 6 12 5-11150.6177.4162.9 + 2 9 27 15 5 2 5 6 6 3 6 6-11152.2176.8162.8 + 2 9 28 7 5 4 3 2 5 6 5 5-11149.1176.0162.7 + 2 9 29 2 3 4 2 5 4 3 6 4-11138.6175.3162.6 + 2 9 30 6 22 27 48 48 18 18 39 28-11140.1174.7162.5 + 2 10 1 6 12 39 67111154 39111 67-11140.1174.3162.3 + 2 10 2132154 56 22 12 18 12 18 53-11136.0173.7162.2 + 2 10 3 80 12 22 15 22 48 94 67 45-11146.1173.1162.1 + 2 10 4154 67 80 39 27 22 94 32 64-11157.6172.8161.9 + 2 10 5 32 32 12 18 39 56 18 15 28-11155.1172.8161.7 + 2 10 6 6 18 22 15 5 6 22 27 15-11161.6173.0161.4 + 2 10 7 18 56 67 22 48 39 67 67 48-11163.5173.4161.2 + 2 10 8 39 80 32 27 27 32 18 9 33-11165.1173.6160.9 + 2 10 9 4 15 32 18 22 27 22 18 20-11166.8173.6160.7 + 2 10 10 15 22 27 27 9 7 5 15 16-11171.4173.5160.4 + 2 10 11 5 7 7 6 7 6 4 6 6-11178.7173.1160.2 + 2 10 12 6 4 5 9 6 7 3 6 6-11179.7172.7159.9 + 2 10 13 5 6 6 4 4 4 6 6 5-11178.3172.3159.5 + 2 10 14 12 22 39 18 39 22 15 15 23-11180.2171.9159.2 + 2 10 15 12 18 12 27 12 27 22 12 18-11175.7171.5158.9 + 2 10 16 18 6 6 9 12 15 67 15 19-11181.4171.0158.7 + 2 10 17 22 18 12 6 15 7 9 12 13-11177.7170.4158.4 + 2 10 18 18 18 9 7 15 15 12 15 14-11171.3169.9158.2 + 2 10 19 12 18 12 7 7 9 22 22 14-11178.1169.2158.0 + 2 10 20 15 18 6 9 12 6 6 12 11-11178.7168.3157.8 + 2 10 21 7 12 12 6 7 7 6 7 8-11180.8167.3157.7 + 2 10 22 15 6 6 22 9 6 12 4 10-11167.7166.4157.6 + 2 10 23 4 4 7 7 15 18 15 18 11-11161.9165.5157.5 + 2 10 24 48 67 32 80 80 94 67 39 63-11158.5164.6157.3 + 2 10 25 80 48 48 32 39 15 18 32 39-11170.9163.8157.3 + 2 10 26 27 27 22 39 27 27 32 15 27-11156.1163.3157.2 + 2 10 27 15 27 22 12 22 27 27 48 25-11155.2162.8157.2 + 2 10 28 39 22 18 18 15 9 18 12 19-11156.3162.2157.2 + 2 10 29 18 12 15 22 12 6 15 15 14-11159.4161.8157.2 + 2 10 30 7 12 48 12 7 9 18 15 16-11165.3161.6157.2 + 2 10 31 27 18 15 18 27 27 18 7 20-11167.7161.5157.2 + 2 11 1 7 5 7 6 4 9 7 9 7-11159.7161.4157.1 + 2 11 2 39 15 18 27 22 22 48 32 28-11162.1161.2157.0 + 2 11 3 22 39 27 27 32 56 39 39 35-11166.5161.3156.9 + 2 11 4 27 27 22 18 12 27 15 39 23-11174.4161.5156.8 + 2 11 5 18 39 22 27 27 18 15 22 24-11180.0162.1156.6 + 2 11 6 27 18 18 18 18 18 32 22 21-11181.2162.6156.4 + 2 11 7 22 18 9 15 9 12 12 6 13-11186.4163.3156.1 + 2 11 8 4 5 5 6 5 3 7 2 5-11185.5163.8155.9 + 2 11 9 3 0 4 3 3 6 12 15 6-11187.0164.4155.6 + 2 11 10 22 32 48 6 7 7 6 9 17-11187.7165.0155.3 + 2 11 11 7 7 15 18 22 5 9 12 12-11181.0165.5155.1 + 2 11 12 7 12 9 27 18 6 27 27 17-11174.6165.9154.9 + 2 11 13 27 22 9 12 15 6 6 7 13-11178.6166.0154.7 + 2 11 14 15 7 5 6 7 12 7 7 8-11180.2165.8154.5 + 2 11 15 15 12 12 15 9 7 9 15 12-11193.2165.4154.4 + 2 11 16 15 5 4 2 4 3 6 18 7-11194.8165.0154.2 + 2 11 17 22 9 4 2 3 6 4 7 7-11180.5164.3154.0 + 2 11 18 15 7 6 5 9 7 15 15 10-11174.8163.7153.9 + 2 11 19 15 18 18 7 7 6 18 27 15-11164.3163.0153.7 + 2 11 20 18 12 5 9 4 27 80 48 25-11155.3162.2153.5 + 2 11 21 32 56111 56 39 32 39 32 50-11147.2161.4153.4 + 2 11 22 39 22 18 22 39 27 15 22 26-11145.5160.6153.2 + 2 11 23 27 32 15 12 12 18 12 7 17-11143.8159.8153.0 + 2 11 24 15 18 12 15 9 22 15 15 15-11142.5159.2152.8 + 2 11 25 12 12 15 18 18 22 7 18 15-11133.2158.7152.7 + 2 11 26 15 9 4 5 7 6 9 48 13-11138.5158.3152.5 + 2 11 27 48 48 32 12 18 7 12 12 24-11138.8158.0152.3 + 2 11 28 12 15 15 6 12 15 18 7 13-11136.0157.8152.2 + 2 11 29 12 9 15 7 12 18 18 18 14-11137.5157.7152.0 + 2 11 30 18 22 22 15 15 12 9 15 16-11142.1157.7151.8 + 2 12 1 22 18 15 18 18 22 9 22 18-11145.5157.7151.6 + 2 12 2 12 12 12 12 7 18 15 15 13-11142.0157.8151.5 + 2 12 3 12 15 7 12 15 7 12 6 11-11141.8157.9151.3 + 2 12 4 6 7 12 7 9 22 22 12 12-11144.5158.0151.2 + 2 12 5 15 12 9 7 7 7 6 6 9-11144.4157.9151.0 + 2 12 6 6 9 6 9 4 15 9 15 9-11143.9157.7150.9 + 2 12 7 22 15 15 22 18 15 18 18 18-11146.6157.5150.9 + 2 12 8 7 27 7 5 12 18 12 9 12-11149.8157.3150.9 + 2 12 9 15 3 3 4 5 6 4 5 6-11151.6157.0150.9 + 2 12 10 9 4 4 4 2 4 5 7 5-11156.5156.5150.9 + 2 12 11 2 5 6 6 5 4 4 3 4-11147.7156.1151.1 + 2 12 12 5 5 3 4 5 5 5 5 5-11148.4155.7151.1 + 2 12 13 6 5 2 3 4 5 5 6 5-11161.8155.2151.2 + 2 12 14 7 7 7 9 9 27 22 18 13-11180.1154.8151.2 + 2 12 15 18 7 5 6 9 5 7 6 8-11196.6154.2151.2 + 2 12 16 6 5 6 6 5 4 3 6 5-11196.5153.5151.1 + 2 12 17 7 4 2 0 2 2 3 3 3-11205.8152.8151.1 + 2 12 18 3 3 3 2 5 3 2 3 3-11190.6151.9151.0 + 2 12 19 12 22 32 32 32 27 39 7 25-11186.7151.2150.9 + 2 12 20 18 27 7 9 18 18 32 39 21-11190.3150.3150.9 + 2 12 21 48 67 12 6 7 15 6 9 21-11177.9149.5150.8 + 2 12 22 9 5 4 7 18 9 18 12 10-11166.4148.7150.7 + 2 12 23 18 15 27 32 27 15 27 27 24-11153.7148.0150.6 + 2 12 24 22 4 12 15 39 32 22 15 20-11142.5147.3150.5 + 2 12 25 15 12 12 7 18 9 18 6 12-11127.6146.7150.4 + 2 12 26 6 6 6 15 18 18 15 39 15-11123.2145.9150.4 + 2 12 27 39 80 39 32 32 32 22 18 37-11112.7145.2150.3 + 2 12 28 18 22 32 27 15 18 12 9 19-11113.1144.8150.3 + 2 12 29 15 7 9 12 9 22 15 12 13-11111.0144.4150.2 + 2 12 30 18 6 12 7 12 9 15 9 11-11110.1144.0150.2 + 2 12 31 18 9 6 7 6 3 2 5 7-11111.3143.8150.2 + 3 1 1 4 9 12 5 7 5 6 9 7-11111.2143.6150.1 + 3 1 2 9 4 4 6 6 6 6 6 6-11114.4143.5150.1 + 3 1 3 12 3 7 6 12 48 27 32 18-11133.1143.3150.1 + 3 1 4 39 32 9 7 9 9 15 12 17-11138.2143.1150.1 + 3 1 5 6 6 6 5 7 7 7 12 7-11143.2143.0150.0 + 3 1 6 3 3 3 2 3 5 5 9 4-11156.8142.8150.0 + 3 1 7 5 6 5 6 3 5 12 6 6-11157.8142.5150.0 + 3 1 8 7 3 7 3 3 4 3 2 4-11168.0142.2150.0 + 3 1 9 0 0 0 0 2 4 9 6 3-11176.9141.8150.0 + 3 1 10 9 9 5 7 12 12 15 27 12-11178.7141.5150.0 + 3 1 11 22 18 3 3 4 5 7 15 10-11182.6141.1149.9 + 3 1 12 9 9 12 6 7 7 9 5 8-11167.7140.8149.9 + 3 1 13 15 7 5 6 3 4 4 12 7-11166.2140.3149.8 + 3 1 14 18 15 9 9 7 6 3 5 9-11158.6139.8149.8 + 3 1 15 12 6 4 7 9 6 4 5 7-11145.0139.3149.6 + 3 1 16 6 2 4 6 9 3 5 4 5-11139.9138.7149.5 + 3 1 17 4 7 6 9 12 7 4 4 7-11137.1138.2149.4 + 3 1 18 7 9 12 12 22 9 12 12 12-11133.0137.8149.3 + 3 1 19 9 9 18 22 18 27 22 18 18-11126.1137.4149.2 + 3 1 20 39 39 9 9 12 15 15 12 19-11133.7137.2149.2 + 3 1 21 22 22 22 18 18 15 12 18 18-11129.4137.1149.0 + 3 1 22 22 15 12 9 12 18 18 48 19-11125.4137.1148.9 + 3 1 23 56 32 5 9 18 15 12 15 20-11131.6136.9148.7 + 3 1 24 22 9 9 15 15 22 22 27 18-11125.8136.5148.4 + 3 1 25 22 39 67 32 27 18 9 12 28-11124.9135.9148.0 + 3 1 26 39 22 22 18 18 9 12 18 20-11121.2135.3147.6 + 3 1 27 18 15 3 0 3 15 6 22 10-11117.7134.5147.2 + 3 1 28 22 32 12 9 6 5 7 9 13-11121.8134.0146.8 + 3 1 29 5 6 7 12 18 27 27 27 16-11120.7133.5146.5 + 3 1 30 48 18 27 22 22 39 22 5 25-11117.6132.9146.2 + 3 1 31 22 15 18 39 18 15 6 6 17-11116.9132.3145.9 + 3 2 1 15 7 3 3 5 12 39 32 15-11122.1131.9145.7 + 3 2 2 67 48 56 48 39 67 56 39 53-11123.0131.7145.6 + 3 2 3 48 15 12 15 18 22 27 22 22-11128.7131.6145.5 + 3 2 4 27 48 67 39 9 15 22 22 31-11131.0131.6145.5 + 3 2 5 22 12 9 12 22 22 6 9 14-11136.2131.6145.5 + 3 2 6 7 6 15 18 22 15 18 15 15-11145.4131.6145.5 + 3 2 7 18 15 9 9 18 9 15 9 13-11143.3131.5145.5 + 3 2 8 18 18 15 15 15 12 12 22 16-11135.4131.4145.4 + 3 2 9 27 12 18 9 18 32 18 18 19-11137.6131.1145.4 + 3 2 10 22 27 27 9 7 5 9 22 16-11132.6130.8145.3 + 3 2 11 27 12 15 7 5 6 5 5 10-11131.4130.6145.1 + 3 2 12 5 9 6 15 9 22 18 18 13-11128.2130.4144.9 + 3 2 13 7 6 4 6 4 2 4 22 7-11127.3130.1144.7 + 3 2 14 32 22 7 15 22 18 18 22 20-11128.1129.9144.5 + 3 2 15 27 32 12 27 27 32 12 12 23-11120.6129.9144.2 + 3 2 16 12 15 18 15 18 18 15 27 17-11115.7129.8143.9 + 3 2 17 18 9 12 18 12 9 6 12 12-11109.4129.7143.6 + 3 2 18 9 56 27 18 15 9 9 27 21-11107.4129.6143.2 + 3 2 19 9 12 7 7 18 15 9 27 13-11113.6129.4142.9 + 3 2 20 9 18 18 22 15 15 27 15 17-11115.7129.0142.6 + 3 2 21 7 18 15 12 5 22 18 12 14-11117.0128.7142.4 + 3 2 22 7 15 7 12 18 18 6 7 11-11104.3128.6142.1 + 3 2 23 15 12 7 7 18 9 9 9 11-11101.8128.4141.8 + 3 2 24 6 3 3 7 7 6 6 7 6-11 99.9128.1141.7 + 3 2 25 7 3 5 6 6 4 3 3 5-11 99.5127.9141.5 + 3 2 26 3 9 22 18 15 9 12 32 15-11107.2127.6141.4 + 3 2 27 48 39 18 18 32 27 22 32 30-11115.4127.3141.3 + 3 2 28 18 4 12 22 15 22 15 32 18-11122.6127.0141.2 + 3 3 1 32 7 6 18 18 12 12 12 15-11135.6126.7141.0 + 3 3 2 7 12 7 12 12 7 18 15 11-11144.7126.3140.8 + 3 3 3 18 5 7 7 15 27 56 56 24-11146.5126.0140.6 + 3 3 4 48 39 39 39 32 27 18 27 34-11143.6125.7140.4 + 3 3 5 18 12 12 18 18 27 18 27 19-11146.2125.4140.2 + 3 3 6 32 22 22 22 27 39 18 32 27-11147.9125.1140.1 + 3 3 7 27 18 18 18 9 5 12 15 15-11147.6124.7139.9 + 3 3 8 5 5 5 5 9 18 12 9 9-11146.2124.5139.7 + 3 3 9 9 18 15 5 6 6 9 22 11-11150.6124.4139.5 + 3 3 10 6 18 12 12 15 22 15 27 16-11141.7124.3139.2 + 3 3 11 18 12 15 9 9 22 6 4 12-11139.7124.3138.9 + 3 3 12 9 6 7 7 7 5 6 18 8-11136.2124.4138.6 + 3 3 13 27 18 12 12 22 5 6 6 14-11132.5124.6138.2 + 3 3 14 7 9 22 22 56 12 32 22 23-11137.3124.7137.9 + 3 3 15 48 27 22 18 22 32 18 22 26-11129.3124.8137.6 + 3 3 16 15 15 9 27 32 32 80 39 31-11127.2125.0137.3 + 3 3 17 15 39 48 22 56 39 48 67 42-11123.1125.2137.1 + 3 3 18 39 39 39 39 39 9 9 12 28-11117.3125.5136.8 + 3 3 19 18 27 15 6 9 9 9 7 13-11107.2125.6136.6 + 3 3 20 4 12 18 22 32 39 32 39 25-11 96.6125.7136.4 + 3 3 21 32 39 27 48 18 7 22 48 30-11 90.3126.0136.2 + 3 3 22 22 22 27 15 7 5 9 22 16-11 88.3126.2136.1 + 3 3 23 22 12 22 48 15 15 27 15 22-11 92.4126.3136.0 + 3 3 24 12 9 9 7 4 4 3 2 6-11 97.3126.5135.9 + 3 3 25 2 5 5 0 3 4 4 3 3-11108.2126.7135.8 + 3 3 26 2 9 6 5 6 5 15 12 8-11126.6126.8135.7 + 3 3 27 39 15 39 22 22 32 15 18 25-11140.5126.7135.7 + 3 3 28 27 27 27 9 7 22 32 67 27-11146.4126.6135.6 + 3 3 29 48 39 22 15 27 32 56 56 37-11154.6126.5135.6 + 3 3 30 56 22 27 27 27 39 48 67 39-11154.2126.4135.5 + 3 3 31 18 9 15 39 67 94 67 32 43-11159.8126.2135.5 + 3 4 1 39 22 9 7 9 22 27 9 18-11152.8125.9135.5 + 3 4 2 9 27 32 18 22 22 27 39 25-11157.3125.7135.5 + 3 4 3 18 12 18 7 15 15 18 32 17-11155.7125.5135.5 + 3 4 4 32 18 27 22 27 22 32 48 29-11148.8125.4135.4 + 3 4 5 32 27 15 15 22 39 56 22 29-11137.5125.4135.3 + 3 4 6 12 15 7 6 5 15 6 6 9-11126.1125.4135.2 + 3 4 7 5 2 3 6 12 7 3 3 5-11115.9125.5135.0 + 3 4 8 22 18 27 39 32 27 6 9 23-11112.6125.6134.9 + 3 4 9 27 18 39 27 32 18 7 9 22-11109.7125.6134.8 + 3 4 10 12 27 27 32 22 18 27 18 23-11104.1125.6134.6 + 3 4 11 9 18 7 9 6 15 27 22 14-11103.0125.4134.4 + 3 4 12 18 7 6 5 15 9 5 5 9-11102.6125.1134.2 + 3 4 13 18 18 7 7 9 5 4 5 9-11103.0124.8134.0 + 3 4 14 7 18 4 12 32 22 15 27 17-11102.6124.5133.8 + 3 4 15 22 27 22 27 12 6 7 15 17-11101.1124.2133.5 + 3 4 16 27 18 39 56 22 27 48 27 33-11 99.2124.0133.3 + 3 4 17 18 39 27 48 22 39 27 6 28-11101.8123.8133.1 + 3 4 18 7 32 18 32 32 18 12 18 21-11108.7123.6132.9 + 3 4 19 9 12 7 5 7 7 15 12 9-11113.1123.5132.7 + 3 4 20 18 22 12 5 12 15 7 22 14-11119.7123.3132.5 + 3 4 21 22 22 39 18 15 18 22 18 22-11127.0123.0132.4 + 3 4 22 22 27 18 32 12 22 22 27 23-11133.8122.7132.3 + 3 4 23 6 27 22 22 18 15 27 12 19-11134.3122.6132.3 + 3 4 24 18 9 22 18 27 32 39 48 27-11129.8122.4132.3 + 3 4 25 27 48 32 39 22 22 18 56 33-11145.3122.1132.4 + 3 4 26 18 9 18 9 12 18 27 12 15-11145.5122.0132.5 + 3 4 27 12 15 9 7 9 18 22 15 13-11156.1122.1132.8 + 3 4 28 15 32 22 22 7 5 5 6 14-11154.3122.3133.0 + 3 4 29 6 9 6 3 27 48 80 39 27-11157.4123.0133.4 + 3 4 30 56 56 22 32 18 48 48 80 45-11155.8123.8133.7 + 3 5 1111 56 39 32 39 27 22 15 43-11151.0124.9134.0 + 3 5 2 15 48 12 12 15 7 5 9 15-11145.3126.3134.2 + 3 5 3 7 15 7 15 9 7 5 9 9-11150.1127.2134.3 + 3 5 4 7 5 4 7 5 6 4 5 5-11144.4127.9134.4 + 3 5 5 5 9 6 6 9 32 27 22 15-11131.1128.3134.4 + 3 5 6 18 9 12 18 56 39 39 32 28-11124.1128.4134.3 + 3 5 7 48 48 67 39 32 27 27 18 38-11112.2128.2134.2 + 3 5 8 32 39 27 32 39 48 67 27 39-11102.8127.9133.9 + 3 5 9 27 32 48 39 56 22 7 18 31-11 98.9127.6133.7 + 3 5 10111 94 56 18 5 18 22 12 42-11 94.5127.2133.4 + 3 5 11 39 9 67 39 48 22 12 15 31-11 93.4126.8133.1 + 3 5 12 18 22 18 15 18 18 32 15 20-11 95.8126.3132.9 + 3 5 13 27 12 18 39 22 22 27 27 24-11 98.1125.8132.6 + 3 5 14 32 32 27 12 22 48 39 18 29-11 98.3125.3132.4 + 3 5 15 18 22 22 15 32 32 18 18 22-11101.4124.9132.2 + 3 5 16 18 6 6 4 6 6 9 15 9-11104.9124.7132.0 + 3 5 17 12 9 9 5 6 4 5 3 7-11104.7124.7131.7 + 3 5 18 4 5 4 2 4 12 22 15 9-11111.5124.8131.5 + 3 5 19 15 9 7 5 6 9 12 18 10-11117.4125.0131.3 + 3 5 20 15 6 9 12 15 5 6 12 10-11120.0125.3131.2 + 3 5 21 15 18 6 5 12 39 56 80 29-11122.2125.7131.2 + 3 5 22 56 32 22 9 27 27 27 9 26-11121.3126.1131.2 + 3 5 23 9 27 18 22 9 18 9 12 16-11120.9126.5131.3 + 3 5 24 12 22 27 12 18 22 32 22 21-11119.8126.9131.3 + 3 5 25 32 22 18 9 6 15 12 18 17-11124.3127.5131.4 + 3 5 26 32 12 22 9 9 9 12 27 17-11128.4128.0131.5 + 3 5 27 27 22 12 18 27 15 67 48 30-11132.3128.4131.6 + 3 5 28 67 27 39 32 27 27 27 27 34-11133.7128.9131.7 + 3 5 29 27 22 22 15132179236236109-11141.6129.2131.8 + 3 5 30154 56 27 15 22 80 48 67 59-11120.4129.4131.8 + 3 5 31 56 56 9 4 12 9 6 5 20-11116.3129.5131.9 + 3 6 1 7 22 18 12 22 18 39 39 22-11115.5129.5131.9 + 3 6 2 27 48 56 56 27 27 12 48 38-11124.8129.4131.9 + 3 6 3 39 15 15 27 27 22 32 56 29-11117.8129.4131.9 + 3 6 4 18 12 12 27 32 32 32 15 23-11108.7129.4131.8 + 3 6 5 9 9 9 7 12 15 12 9 10-11117.0129.2131.7 + 3 6 6 7 7 12 12 12 18 18 15 13-11129.4129.1131.6 + 3 6 7 22 22 18 22 39 27 18 32 25-11137.2128.9131.5 + 3 6 8 18 32 22 22 22 56 56 67 37-11158.0128.8131.4 + 3 6 9 15 18 18 27 15 22 32 80 28-11163.1128.7131.2 + 3 6 10 22 9 67 27 15 18 18 15 24-11182.0128.8131.0 + 3 6 11 9 15 18 12 12 12 15 7 13-11198.9128.9130.9 + 3 6 12 5 5 9 5 9 9 6 7 7-11168.6129.1130.7 + 3 6 13 9 4 3 3 5 5 18 22 9-11155.8129.1130.5 + 3 6 14 9 22 22 32 39 48 32 22 28-11137.7128.9130.3 + 3 6 15 22 39 18 12 18 12 15 12 19-11132.8128.7130.0 + 3 6 16 18 39 9 48 27 22 80 80 40-11126.5128.5129.8 + 3 6 17 56 80 56 48 48 48 22 32 49-11125.8128.4129.5 + 3 6 18 48 67111111 27 48 39 27 60-11124.3128.4129.3 + 3 6 19 27 18 12 12 9 12 18 6 14-11126.8128.5129.1 + 3 6 20 5 9 15 9 12 15 12 12 11-11120.8128.5128.9 + 3 6 21 39 22 27 7 12 27 12 27 22-11118.8128.7128.7 + 3 6 22 12 7 15 7 6 15 22 15 12-11113.9128.9128.6 + 3 6 23 27 27 18 22 9 12 12 18 18-11117.2129.1128.5 + 3 6 24 27 27 32 32 32 9 7 15 23-11118.3129.4128.4 + 3 6 25 7 9 22 12 12 18 22 27 16-11120.2129.7128.4 + 3 6 26 18 15 15 18 27 15 9 15 17-11122.9130.1128.4 + 3 6 27 27 18 39 27 48 39 27 22 31-11128.1130.4128.5 + 3 6 28 15 39 18 94 67 39 27 39 42-11128.1130.8128.5 + 3 6 29 22 18 27 39 18 22 22 27 24-11131.6131.0128.5 + 3 6 30 18 27 32 15 7 12 12 12 17-11132.5131.2128.5 + 3 7 1 7 9 7 6 9 9 6 7 8-11135.6131.3128.5 + 3 7 2 5 7 12 12 12 15 27 9 12-11139.3131.5128.4 + 3 7 3 12 12 5 7 18 22 48 27 19-11136.7131.5128.5 + 3 7 4 22 22 18 32 27 22 15 15 22-11144.8131.7128.4 + 3 7 5 27 18 22 9 22 18 15 12 18-11146.7131.8128.4 + 3 7 6 7 7 5 7 18 15 9 7 9-11134.0131.9128.3 + 3 7 7 12 9 22 7 18 9 6 4 11-11137.8131.9128.3 + 3 7 8 2 2 2 3 6 4 4 0 3-11135.7131.7128.1 + 3 7 9 2 6 3 3 4 2 6 5 4-11130.2131.5128.0 + 3 7 10 5 5 7 7 12 4 5 12 7-11126.9131.4127.9 + 3 7 11 12 32 80 48 56 56 67 67 52-11126.1131.4127.7 + 3 7 12 80111 56 18 27 15 22 18 43-11125.5131.5127.5 + 3 7 13 15 12 18 9 9 18 9 12 13-11130.7131.5127.4 + 3 7 14 7 9 12 5 15 18 15 27 14-11131.4131.5127.2 + 3 7 15 48 39 12 39 9 6 32 39 28-11129.9131.7127.1 + 3 7 16 32 32 56 80 80 22 27 56 48-11137.5131.7126.9 + 3 7 17 39 15 7 12 18 12 22 18 18-11143.2131.6126.9 + 3 7 18 15 22 6 5 7 12 15 39 15-11144.3131.5126.8 + 3 7 19 32 9 12 27 27 32 32 67 30-11150.8131.1126.8 + 3 7 20 32 15 15 12 15 12 15 22 17-11162.4130.5126.7 + 3 7 21 22 9 6 4 5 3 5 3 7-11160.7129.7126.7 + 3 7 22 7 4 7 9 5 7 7 2 6-11157.4128.6126.7 + 3 7 23 6 7 6 6 7 18 9 15 9-11148.7127.9126.7 + 3 7 24 9 5 2 2 5 6 7 22 7-11129.2127.3126.7 + 3 7 25 5 5 22 9 9 4 4 5 8-11115.1127.0126.6 + 3 7 26 9 9 9 18 32 48 80 56 33-11105.9126.8126.5 + 3 7 27 48 27 32 22 18 12 12 6 22-11104.9126.6126.5 + 3 7 28 7 6 7 15 56 39 18 18 21-11106.6126.3126.4 + 3 7 29 22 39 18 18 48 48 56 56 38-11103.0126.1126.3 + 3 7 30 18 27 27 32 27 27 32 27 27-11101.7125.8126.2 + 3 7 31 27 27 27 67 39 27 27 39 35-11105.2125.5126.1 + 3 8 1 56 48 32 32 56 15 18 56 39-11110.6125.3126.1 + 3 8 2 27 18 18 12 12 22 32 27 21-11114.7125.1126.0 + 3 8 3 15 18 12 15 6 9 15 18 14-11123.6124.8125.9 + 3 8 4 5 6 12 7 3 9 18 18 10-11126.0124.6125.8 + 3 8 5 15 4 4 4 4 4 6 15 7-11134.4124.3125.8 + 3 8 6 67 56 67 22 22 7 7 9 32-11132.4124.0125.7 + 3 8 7 4 6 6 7 27 48111 48 32-11140.9123.6125.6 + 3 8 8 48 56 39 32 15 27 32 18 33-11136.6123.4125.5 + 3 8 9 9 9 18 12 12 9 15 27 14-11133.6123.1125.4 + 3 8 10 27 6 7 7 7 6 9 6 9-11134.7122.9125.3 + 3 8 11 6 7 6 6 9 9 15 18 10-11132.7122.6125.2 + 3 8 12 22 27 39 27 32 27 18 15 26-11126.6122.3125.2 + 3 8 13 15 32 12 6 12 7 12 22 15-11134.3122.2125.1 + 3 8 14 15 18 18 7 9 12 18 15 14-11133.1121.9125.1 + 3 8 15 9 7 9 7 9 18 12 18 11-11134.7121.8125.0 + 3 8 16 12 9 6 6 12 12 6 4 8-11130.1121.8124.9 + 3 8 17 3 2 2 2 39 27 32 56 20-11122.3121.7124.9 + 3 8 18 67 94132111132154 94 80108-11118.7121.6124.8 + 3 8 19 67 22 12 9 7 18 12 7 19-11119.5121.7124.8 + 3 8 20 4 15 15 6 12 18 15 48 17-11114.5121.8124.8 + 3 8 21 32 39 80 32 56 67 80 80 58-11122.0121.9124.7 + 3 8 22 56 48 39 39 67 48 39 32 46-11123.7122.1124.7 + 3 8 23 27 56 67 39 39 27 18 18 36-11122.9122.0124.6 + 3 8 24 15 15 39 18 18 9 32 12 20-11119.0121.9124.6 + 3 8 25 27 39 32 15 15 18 7 9 20-11119.0121.7124.6 + 3 8 26 22 5 3 9 7 12 12 15 11-11123.4121.4124.6 + 3 8 27 7 7 7 7 7 9 12 12 9-11128.3121.0124.7 + 3 8 28 18 18 18 32 12 18 15 15 18-11121.1120.6124.7 + 3 8 29 4 5 5 15 15 22 48 12 16-11118.7120.1124.7 + 3 8 30 27 32 9 12 9 9 7 5 14-11116.2119.5124.7 + 3 8 31 5 7 6 6 7 6 7 4 6-11111.8118.9124.6 + 3 9 1 7 22 18 5 5 12 27 9 13-11110.1118.2124.5 + 3 9 2 18 6 6 9 27 9 6 15 12-11107.6117.6124.3 + 3 9 3 15 15 12 18 12 12 18 18 15-11112.4117.2124.2 + 3 9 4 18 18 22 15 27 15 27 32 22-11114.1116.9124.1 + 3 9 5 27 22 18 15 15 18 7 5 16-11109.8116.8123.9 + 3 9 6 12 7 7 9 7 7 9 9 8-11106.6116.6123.8 + 3 9 7 9 7 3 0 2 5 4 2 4-11109.4116.5123.7 + 3 9 8 3 2 2 3 7 5 6 15 5-11100.3116.6123.6 + 3 9 9 7 7 9 32 32 18 32 39 22-11 97.3116.8123.5 + 3 9 10 48 7 9 39 15 15 22 15 21-11100.6117.2123.4 + 3 9 11 27 27 5 9 7 12 15 12 14-11 98.0117.6123.3 + 3 9 12 9 18 15 7 7 6 7 5 9-11 95.6118.1123.3 + 3 9 13 18 15 9 6 2 2 4 9 8-11 97.3118.8123.2 + 3 9 14 5 3 4 2 5 5 5 6 4-11 95.8119.6123.1 + 3 9 15 5 2 0 0 2 3 7 15 4-11 98.4120.6123.0 + 3 9 16 39 27 32 27 67 32 32 15 34-11100.4122.0123.0 + 3 9 17 56 56 48 94132 56 48 67 70-11107.0123.4123.0 + 3 9 18 48 67 32 80 39 48 39 48 50-11110.2125.0123.0 + 3 9 19 39 22 56 56 48 32 39 18 39-11112.1126.8123.0 + 3 9 20 27 39 39 22 27 39 12 12 27-11112.9128.4123.1 + 3 9 21 27 12 15 18 27 18 18 9 18-11120.9129.8123.1 + 3 9 22 15 18 15 22 18 15 27 4 17-11123.5130.8123.2 + 3 9 23 9 27 9 9 15 18 15 15 15-11125.7131.5123.3 + 3 9 24 67 56 48 22 27 27 39 39 41-11134.3131.8123.3 + 3 9 25 32 27 27 32 27 27 32 22 28-11133.4132.2123.3 + 3 9 26 15 12 22 18 9 15 15 15 15-11131.8132.0123.2 + 3 9 27 18 4 3 3 2 2 3 9 6-11130.3131.7123.2 + 3 9 28 3 2 5 4 5 6 5 2 4-11137.6131.3123.1 + 3 9 29 6 7 2 5 3 2 3 6 4-11135.6131.0123.0 + 3 9 30 2 3 6 4 5 6 3 7 5-11133.3130.7123.0 + 3 10 1 15 7 5 4 4 4 15 27 10-11137.1130.3122.9 + 3 10 2 12 9 5 3 5 6 9 12 8-11125.0129.9122.7 + 3 10 3 18 39 15 6 15 22 15 7 17-11120.3129.6122.6 + 3 10 4 5 6 15 5 9 2 0 0 5-11119.0129.4122.5 + 3 10 5 0 3 2 0 2 6 12 18 5-11109.6129.1122.4 + 3 10 6 9 4 4 5 7 7 18 18 9-11112.0128.8122.4 + 3 10 7 32 7 12 18 12 18 12 9 15-11111.8128.4122.3 + 3 10 8 6 5 7 6 6 3 7 12 7-11113.1128.4122.3 + 3 10 9 27 9 4 5 5 4 3 2 7-11110.5128.7122.3 + 3 10 10 0 0 3 2 3 3 3 6 3-11111.4129.1122.2 + 3 10 11 4 0 3 2 2 0 2 3 2-11105.4129.9122.2 + 3 10 12 2 2 2 4 4 4 5 6 4-11 97.4130.6122.1 + 3 10 13 18 15 6 5 12 15 22 39 17-11 94.0131.4122.1 + 3 10 14 18 27 67 48 32 32154154 67-11 91.9132.2122.1 + 3 10 15 18 32 80 67 27 39 39 48 44-11 95.3132.9122.1 + 3 10 16 48 18 18 39 27 32 18 32 29-11 94.6133.6122.1 + 3 10 17 39 56 67 32 22 9 12 22 32-11 98.1134.3122.1 + 3 10 18 27 39 32 18 27 18 15 27 25-11107.8135.1122.0 + 3 10 19 22 32 32 18 39 39 56 56 37-11119.4135.9122.0 + 3 10 20 22 15 48 32 27 32 48 67 36-11133.9136.7122.0 + 3 10 21 39 27 39 39 56 56 56 80 49-11150.2137.3122.0 + 3 10 22 39 56 48 18 32 48 22 6 34-11152.0137.8121.9 + 3 10 23 12 5 9 6 4 4 3 2 6-11181.3138.3121.9 + 3 10 24 2 5 7 12 39111 48 80 38-11188.5138.5121.8 + 3 10 25 27 12 12 9 32 22 5 12 16-11219.0138.7121.7 + 3 10 26 9 7 6 7 4 4 18 22 10-11240.6138.9121.6 + 3 10 27 22 18 18 7 7 9 5 4 11-11254.0138.9121.5 + 3 10 28 15 39 22 39 12 27 18 27 25-11270.9138.7121.3 + 3 10 29 39 27400207179179300300204-11275.4138.5121.1 + 3 10 30300154 56 39 48132400400191-11267.6138.2121.0 + 3 10 31236179154111154 39 27 32117-11245.2137.9120.8 + 3 11 1 48 39 27 12 15 18 18 27 26-11207.2137.4120.7 + 3 11 2 18 22 18 15 12 18 32 12 18-11187.4136.9120.5 + 3 11 3 18 15 12 12 7 9 12 18 13-11164.2136.4120.4 + 3 11 4 15 15 94132 12 7 18 12 38-11165.6135.9120.3 + 3 11 5 6 0 5 4 3 5 9 18 6-11112.1135.4120.2 + 3 11 6 12 6 4 3 6 9 67 32 17-11 96.1135.1120.1 + 3 11 7 18 12 6 9 4 6 5 5 8-11 89.4134.9120.1 + 3 11 8 5 4 3 6 12 18 9 7 8-11 91.0134.6120.0 + 3 11 9 12 15 22 22 67 27 48 18 29-11 91.2134.4120.0 + 3 11 10 18 27 22 22 27 22 39 39 27-11 92.8134.3120.0 + 3 11 11 67 56 80 67 56 67 56 39 61-11 93.7134.2120.0 + 3 11 12 32 22 22 27 22 48 48 15 30-11 96.7134.3120.0 + 3 11 13 22 27 48 56 80 48 80 56 52-11100.0134.6120.0 + 3 11 14 56 48 39 39 39 18 39 22 38-11 96.8134.7120.1 + 3 11 15 15 27 80 39 48 56 32 27 41-11 95.6135.1120.1 + 3 11 16 27 39 48 27 48 56 32 48 41-11102.0135.3120.2 + 3 11 17 39 48 32 39 39 56 32 27 39-11118.2135.4120.2 + 3 11 18 48 22 18 27 27 32 18 15 26-11141.0135.5120.1 + 3 11 19 9 9 15 9 15 15 15 5 12-11151.5135.5120.1 + 3 11 20 4 22 94 94179300300207150-11171.0135.4120.1 + 3 11 21111 80 80 22 7 15 12 12 42-11172.8135.3120.0 + 3 11 22 32 15 9 12 15 39 80 39 30-11171.9135.5120.0 + 3 11 23 22 48 22 12 18 9 27 22 23-11173.8135.7120.0 + 3 11 24 12 7 9 9 27 15 9 15 13-11172.8136.0119.9 + 3 11 25 18 18 15 12 15 18 9 9 14-11166.3136.2119.9 + 3 11 26 9 7 6 5 12 9 7 12 8-11166.5136.6119.8 + 3 11 27 7 9 5 6 4 3 6 5 6-11170.1136.7119.7 + 3 11 28 6 7 4 7 9 6 2 2 5-11163.2136.8119.6 + 3 11 29 9 7 6 6 5 5 3 7 6-11161.4136.8119.6 + 3 11 30 7 15 4 4 9 22 22 15 12-11148.6136.5119.5 + 3 12 1 12 18 9 9 5 6 5 15 10-11139.3136.1119.5 + 3 12 2 12 9 12 7 5 2 2 4 7-11135.4135.7119.4 + 3 12 3 3 3 4 3 3 6 2 4 4-11120.3134.8119.3 + 3 12 4 5 2 3 3 4 5 6 22 6-11112.5133.9119.3 + 3 12 5 15 56 67 32 48 39 22 32 39-11108.5132.7119.2 + 3 12 6 39 27 22 22 15 27 18 15 23-11105.7131.1119.1 + 3 12 7 15 7 9 5 15 18 22 22 14-11 89.3129.4119.0 + 3 12 8 12 39 27 32 39 39 56 39 35-11 90.9127.5118.8 + 3 12 9 18 27 32 22 32 27 27 48 29-11 89.4125.6118.6 + 3 12 10 56 22 27 39 32 56 48 48 41-11 86.5123.9118.3 + 3 12 11 67 39 48 48 32 32 22 32 40-11 83.4122.4118.0 + 3 12 12 32 22 22 18 22 18 27 39 25-11 84.5121.4117.8 + 3 12 13 39 22 15 27 32 27 22 27 26-11 85.0120.5117.6 + 3 12 14 27 18 12 18 22 48 39 32 27-11 89.5119.9117.5 + 3 12 15 39 32 22 22 39 22 12 15 25-11 97.7119.1117.4 + 3 12 16 9 12 12 12 6 12 12 7 10-11103.0118.9117.4 + 3 12 17 9 12 7 6 6 7 4 2 7-11113.8118.9117.4 + 3 12 18 3 7 4 4 3 3 0 0 3-11119.1118.9117.3 + 3 12 19 0 0 3 2 3 0 0 3 1-11118.6118.9117.3 + 3 12 20 2 5 4 18 15 39 18 27 16-11125.9118.8117.3 + 3 12 21 32 32 27 18 15 27 22 18 24-11129.1118.8117.3 + 3 12 22 15 18 18 18 18 22 15 18 18-11133.2118.7117.3 + 3 12 23 7 7 5 7 9 9 9 6 7-11137.4118.7117.3 + 3 12 24 4 7 4 3 6 12 6 9 6-11134.4118.7117.3 + 3 12 25 6 3 3 4 9 7 2 5 5-11134.6118.7117.3 + 3 12 26 12 12 4 5 5 6 5 12 8-11132.7118.7117.2 + 3 12 27 6 15 4 12 6 7 9 32 11-11122.4118.7117.2 + 3 12 28 22 22 7 9 12 9 18 7 13-11115.1118.6117.1 + 3 12 29 5 0 4 6 6 15 4 2 5-11110.7118.1117.0 + 3 12 30 4 4 5 2 5 5 15 9 6-11104.2117.7116.9 + 3 12 31 15 7 5 9 15 39 32 27 19-11102.1117.0116.7 + 4 1 1 18 22 27 22 39 22 22 22 24-11112.2116.2116.6 + 4 1 2 27 15 7 9 15 15 18 15 15-11112.6115.5116.4 + 4 1 3 12 18 27 32 18 15 39 18 22-11112.3114.7116.2 + 4 1 4 18 22 22 22 22 32 22 15 22-11115.5113.9116.1 + 4 1 5 27 18 18 15 27 39 27 32 25-11119.0113.1115.9 + 4 1 6 22 22 27 9 6 7 15 80 24-11113.4112.2115.8 + 4 1 7 22 32 48 32 32 32 22 12 29-11114.9111.3115.6 + 4 1 8 6 2 3 7 7 5 7 18 7-11116.1110.5115.5 + 4 1 9 15 18 48 18 18 32 22 12 23-11114.4109.7115.4 + 4 1 10 18 32 56 22 27 22 27 7 26-11115.3109.1115.3 + 4 1 11 7 5 12 22 39 39 18 7 19-11114.6108.5115.3 + 4 1 12 5 7 2 2 7 12 18 22 9-11114.4108.0115.3 + 4 1 13 18 12 7 7 32 32 22 27 20-11114.1107.8115.3 + 4 1 14 27 12 6 7 15 9 7 12 12-11117.1107.6115.3 + 4 1 15 9 15 4 6 27 27 27 27 18-11115.2107.6115.3 + 4 1 16 39 18 9 32 22 39 39 32 29-11116.4107.7115.4 + 4 1 17 15 18 15 18 12 15 27 27 18-11118.6108.1115.4 + 4 1 18 9 22 22 12 12 6 32 32 18-11115.6108.4115.4 + 4 1 19 15 12 9 12 22 32 18 22 18-11130.3108.7115.4 + 4 1 20 18 22 15 12 22 32 12 15 19-11124.8109.0115.5 + 4 1 21 9 15 22 12 18 9 18 12 14-11126.0109.2115.6 + 4 1 22 48 48 48132111 27 56 39 64-11117.9109.3115.6 + 4 1 23 32 32 27 39 32 80 67 32 43-11111.6109.4115.8 + 4 1 24 48 15 9 18 9 12 15 18 18-11104.1109.5115.9 + 4 1 25 56 67 32 32 32 32 22 27 38-11 99.1109.6116.0 + 4 1 26 27 9 12 18 15 12 27 22 18-11 95.0109.6116.0 + 4 1 27 27 18 15 9 18 18 12 18 17-11 90.8109.4116.1 + 4 1 28 67 22 15 12 15 15 22 15 23-11 85.9109.3116.1 + 4 1 29 6 9 7 15 12 4 5 12 9-11 84.8109.1116.1 + 4 1 30 9 15 15 39 22 15 18 22 19-11 89.9109.0116.0 + 4 1 31 6 6 9 32 12 6 6 6 10-11 91.6108.8116.0 + 4 2 1 9 18 9 5 9 6 9 15 10-11 94.5108.4115.9 + 4 2 2 6 6 32 22 18 27 9 22 18-11 98.5108.0115.8 + 4 2 3 32 22 27 15 18 22 15 12 20-11 96.6107.6115.7 + 4 2 4 27 7 18 15 12 12 12 18 15-11 98.6107.2115.6 + 4 2 5 18 15 15 15 6 7 9 12 12-11102.5106.9115.5 + 4 2 6 6 27 39 32 15 22 22 7 21-11103.7106.7115.3 + 4 2 7 7 7 12 7 9 3 6 5 7-11108.1106.7115.2 + 4 2 8 0 2 3 3 3 4 5 12 4-11113.1106.7115.2 + 4 2 9 5 0 6 4 12 7 12 7 7-11114.7106.8115.1 + 4 2 10 7 5 5 7 6 9 3 6 6-11113.5106.9115.1 + 4 2 11 7 3 4 15 39 94 48 12 28-11111.2106.9115.1 + 4 2 12 18 27 48 32 22 32 39 18 30-11109.3107.0115.2 + 4 2 13 32 32 18 22 22 22 22 27 25-11105.1107.1115.2 + 4 2 14 22 15 12 18 22 27 22 22 20-11101.1107.2115.3 + 4 2 15 27 39 27 39 7 22 12 15 24-11 99.6107.3115.3 + 4 2 16 22 5 3 7 4 3 5 4 7-11 96.3107.4115.3 + 4 2 17 5 6 2 3 2 4 5 6 4-11 99.5107.6115.4 + 4 2 18 9 6 4 3 5 15 12 9 8-11 95.4107.8115.4 + 4 2 19 15 9 6 5 2 4 7 12 8-11 94.2107.9115.5 + 4 2 20 5 6 2 2 3 6 7 4 4-11 93.2108.0115.5 + 4 2 21 9 5 2 5 12 6 7 7 7-11 96.0108.0115.5 + 4 2 22 7 3 4 7 15 7 12 12 8-11101.7107.9115.5 + 4 2 23 9 9 6 9 9 9 9 12 9-11102.1107.8115.4 + 4 2 24 18 12 9 7 7 9 12 15 11-11103.4107.7115.4 + 4 2 25 9 6 4 6 6 2 6 9 6-11116.1107.6115.4 + 4 2 26 6 5 2 2 4 0 2 3 3-11118.4107.4115.3 + 4 2 27 4 22 6 9 6 5 27 18 12-11119.8107.2115.2 + 4 2 28 6 18 27 18 15 18 22 27 19-11113.6106.9115.1 + 4 2 29 7 18 12 56 32 15 22 32 24-11108.0106.4115.0 + 4 3 1 18 9 15 9 18 39 27 32 21-11100.0106.0115.0 + 4 3 2 32 15 32 9 15 15 27 22 21-11 97.1105.5114.9 + 4 3 3 7 9 7 32 18 12 12 5 13-11 88.9105.2114.9 + 4 3 4 5 6 7 7 4 7 7 4 6-11 95.9105.0114.8 + 4 3 5 7 7 6 6 3 3 2 6 5-11105.0104.9114.8 + 4 3 6 5 7 4 3 2 2 2 0 3-11102.9104.9114.8 + 4 3 7 0 0 3 5 3 3 4 6 3-11104.6104.9114.8 + 4 3 8 3 4 9 6 2 3 0 0 3-11106.3105.0114.8 + 4 3 9 3 7 9 15 18 56 48 67 28-11107.2105.3114.8 + 4 3 10 56 80 94 22 27 12 22 48 45-11111.1105.7114.9 + 4 3 11 32 27 22 12 27 67 94 39 40-11111.7105.9115.0 + 4 3 12 67 39 22 15 15 39 12 15 28-11106.2106.2115.1 + 4 3 13 18 7 32 12 15 9 12 9 14-11102.6106.5115.1 + 4 3 14 18 9 18 18 18 9 32 9 16-11101.3106.7115.2 + 4 3 15 22 18 6 15 18 15 18 9 15-11100.3106.9115.2 + 4 3 16 15 7 3 9 6 12 12 12 10-11108.5107.0115.3 + 4 3 17 12 12 3 4 3 4 9 5 7-11108.8107.0115.3 + 4 3 18 15 15 9 6 7 7 9 15 10-11114.4106.9115.3 + 4 3 19 22 9 2 5 4 3 6 7 7-11111.3106.7115.3 + 4 3 20 12 18 4 5 7 27 9 12 12-11112.7106.4115.3 + 4 3 21 18 15 9 9 12 9 12 6 11-11110.4106.1115.3 + 4 3 22 15 15 15 4 5 18 15 15 13-11115.6105.9115.2 + 4 3 23 18 7 7 5 2 4 9 6 7-11117.6105.8115.1 + 4 3 24 5 4 2 2 2 2 2 3 3-11119.0105.6115.1 + 4 3 25 2 0 2 2 4 9 7 6 4-11126.4105.4114.9 + 4 3 26 6 4 6 5 22 32 39 22 17-11123.2105.2114.8 + 4 3 27 12 9 9 22 18 32 15 56 22-11127.2105.1114.7 + 4 3 28 22 56 22 18 15 18 15 5 21-11128.6105.0114.6 + 4 3 29 6 12 9 9 15 18 6 9 11-11128.3104.8114.5 + 4 3 30 6 9 18 32 27 7 5 5 14-11126.4104.8114.3 + 4 3 31 6 7 15 5 9 9 18 5 9-11121.0104.8114.2 + 4 4 1 2 2 4 3 6 3 6 4 4-11112.6104.8114.1 + 4 4 2 6 2 2 3 2 3 3 2 3-11108.1104.9114.0 + 4 4 3 7 15 12 12 39 67 94 80 41-11107.4104.9113.9 + 4 4 4 94 9 5 5 6 9 6 7 18-11109.0105.0113.8 + 4 4 5 4 3 2 4 22 32 94 32 24-11108.9105.2113.8 + 4 4 6 48 27 32 39 18 6 18 15 25-11101.6105.3113.7 + 4 4 7 15 18 12 7 6 6 18 18 13-11 98.4105.2113.6 + 4 4 8 15 22 15 22 15 9 7 9 14-11 93.8105.1113.6 + 4 4 9 18 39 32 15 7 6 9 6 17-11 90.3105.1113.5 + 4 4 10 9 15 12 4 4 4 18 22 11-11 88.1105.0113.5 + 4 4 11 22 9 7 5 5 7 15 9 10-11 90.0105.2113.4 + 4 4 12 18 9 12 6 5 5 22 5 10-11 91.8105.3113.4 + 4 4 13 9 7 5 5 7 4 9 5 6-11 93.6105.5113.4 + 4 4 14 9 7 3 0 3 3 0 6 4-11 95.8105.6113.4 + 4 4 15 4 3 3 6 6 4 9 18 7-11 97.4105.6113.4 + 4 4 16 7 18 22 12 7 12 15 12 13-11 97.6105.7113.3 + 4 4 17 9 12 5 5 5 5 12 7 8-11 99.0105.7113.3 + 4 4 18 5 9 12 5 9 6 9 9 8-11110.0105.7113.3 + 4 4 19 12 6 6 6 5 5 4 3 6-11114.5105.6113.2 + 4 4 20 6 3 5 5 2 2 3 7 4-11111.8105.5113.1 + 4 4 21 5 15 5 5 5 6 9 4 7-11113.9105.3113.0 + 4 4 22 2 4 5 3 6 4 6 4 4-11118.4105.2112.9 + 4 4 23 9 12 22 27 27 22 12 22 19-11116.6105.1112.7 + 4 4 24 5 7 9 32 9 9 6 5 10-11112.9104.9112.6 + 4 4 25 6 18 22 15 7 9 6 7 11-11108.4104.8112.3 + 4 4 26 7 4 5 2 3 9 9 3 5-11100.9104.6112.1 + 4 4 27 4 6 3 3 3 6 6 5 5-11 96.4104.4111.7 + 4 4 28 5 2 5 3 5 18 22 15 9-11 90.7104.1111.3 + 4 4 29 4 7 4 3 2 2 4 7 4-11 89.8103.8111.0 + 4 4 30 12 15 9 3 5 12 32 39 16-11 90.8103.5110.6 + 4 5 1 22 9 9 6 7 7 6 9 9-11 95.7103.2110.3 + 4 5 2 15 3 3 9 4 4 7 5 6-11 99.1102.8110.1 + 4 5 3 4 6 7 5 4 7 9 9 6-11 92.8102.5109.9 + 4 5 4 7 9 7 4 6 4 7 15 7-11 88.9102.2109.8 + 4 5 5 9 15 12 9 12 27 18 12 14-11 90.1101.9109.8 + 4 5 6 6 9 7 6 7 5 12 12 8-11 88.0101.8109.8 + 4 5 7 15 27 15 9 12 15 22 15 16-11 86.8101.7109.9 + 4 5 8 12 12 6 7 9 7 7 7 8-11 88.9101.5110.0 + 4 5 9 7 9 4 3 6 5 2 4 5-11 95.0101.3110.1 + 4 5 10 6 7 4 3 4 4 6 12 6-11 94.8101.2110.2 + 4 5 11 22 15 4 4 4 5 18 27 12-11 92.0101.2110.3 + 4 5 12 27 39 6 5 4 5 7 5 12-11100.9101.3110.4 + 4 5 13 5 9 32 6 6 6 18 12 12-11103.0101.4110.4 + 4 5 14 6 9 4 2 5 4 6 6 5-11112.1101.5110.3 + 4 5 15 18 7 6 6 5 3 3 7 7-11117.9101.6110.3 + 4 5 16 6 4 4 3 3 3 3 6 4-11121.0101.5110.3 + 4 5 17 4 4 2 3 3 3 4 7 4-11113.7101.5110.3 + 4 5 18 5 3 4 5 5 3 3 2 4-11110.4101.6110.3 + 4 5 19 3 4 3 5 22 22 9 7 9-11111.4101.5110.2 + 4 5 20 6 6 12 32 6 9 15 18 13-11107.2101.5110.1 + 4 5 21 22 7 6 5 5 7 5 2 7-11109.6101.5109.9 + 4 5 22 5 12 18 7 5 5 3 5 8-11105.0101.4109.7 + 4 5 23 15 12 6 7 12 9 15 12 11-11106.6101.3109.5 + 4 5 24 18 7 18 9 18 5 5 4 11-11107.9101.2109.3 + 4 5 25 6 4 6 5 5 4 3 3 5-11105.1101.0109.1 + 4 5 26 3 3 3 3 4 4 2 5 3-11106.1100.8108.9 + 4 5 27 5 4 6 4 2 3 4 3 4-11104.6100.6108.7 + 4 5 28 4 2 4 4 9 9 12 12 7-11105.2100.4108.6 + 4 5 29 15 18 9 22 9 15 9 22 15-11104.0100.1108.4 + 4 5 30 7 6 5 15 12 7 18 22 12-11102.4 99.8108.3 + 4 5 31 32 9 9 12 12 6 12 7 12-11 98.1 99.6108.2 + 4 6 1 22 15 18 15 22 9 12 15 16-11 92.5 99.5108.1 + 4 6 2 12 7 7 7 7 12 15 15 10-11 93.0 99.6108.0 + 4 6 3 9 15 7 4 5 4 5 12 8-11 92.6 99.8108.0 + 4 6 4 12 7 4 6 9 7 5 6 7-11 92.0100.2107.9 + 4 6 5 12 7 5 9 9 9 12 22 11-11 87.0100.7107.9 + 4 6 6 15 18 12 7 9 6 15 7 11-11 91.0101.3107.8 + 4 6 7 12 6 5 5 6 4 5 22 8-11 91.2102.0107.9 + 4 6 8 18 9 4 12 7 9 9 6 9-11 88.6102.9107.8 + 4 6 9 15 6 9 18 15 18 15 9 13-11 87.9103.9107.9 + 4 6 10 18 9 6 3 7 3 18 12 10-11 85.0105.1107.8 + 4 6 11 12 4 6 5 3 4 4 2 5-11 86.5106.1107.8 + 4 6 12 2 6 5 4 5 2 2 0 3-11 90.7107.1107.9 + 4 6 13 0 3 4 4 3 4 4 6 4-11 98.2108.0107.9 + 4 6 14 4 4 6 15 18 12 12 7 10-11103.1108.8107.9 + 4 6 15 9 12 32 12 32 22 12 9 18-11112.9109.4107.8 + 4 6 16 12 7 15 5 6 5 3 5 7-11115.1110.0107.8 + 4 6 17 4 9 6 9 5 7 7 7 7-11114.9110.4107.7 + 4 6 18 5 7 6 9 18 12 9 6 9-11111.3110.6107.6 + 4 6 19 6 6 5 5 6 5 2 0 4-11116.4110.7107.6 + 4 6 20 3 3 5 3 3 4 4 3 4-11123.0110.7107.5 + 4 6 21 3 4 4 3 5 4 4 4 4-11119.6110.6107.4 + 4 6 22 2 3 2 3 2 2 3 3 3-11120.5110.4107.3 + 4 6 23 3 2 3 2 4 4 3 3 3-11116.2110.2107.2 + 4 6 24 2 5 7 2 6 2 3 0 3-11111.9110.0107.1 + 4 6 25 2 3 2 2 6 3 5 3 3-11106.3109.6106.9 + 4 6 26 3 4 3 5 22 15 6 7 8-11102.2109.2106.8 + 4 6 27 3 3 2 3 3 3 3 6 3-11100.4109.0106.7 + 4 6 28 12 18 5 12 9 6 27 22 14-11 92.4108.8106.7 + 4 6 29 27 27 27 15 12 12 22 12 19-11 87.9108.8106.6 + 4 6 30 12 7 12 9 7 5 7 5 8-11 84.5108.9106.6 + 4 7 1 9 7 12 9 9 5 7 9 8-11 84.0109.1106.6 + 4 7 2 6 7 6 7 7 9 9 12 8-11 83.4109.4106.6 + 4 7 3 9 5 6 5 6 5 7 3 6-11 82.2110.0106.5 + 4 7 4 7 5 5 6 4 5 4 7 5-11 82.1110.5106.5 + 4 7 5 9 6 2 4 5 5 7 9 6-11 80.9111.1106.4 + 4 7 6 5 9 5 5 3 4 3 3 5-11 81.6111.6106.3 + 4 7 7 2 5 4 2 4 2 3 3 3-11 81.9112.0106.2 + 4 7 8 2 2 2 2 3 2 2 2 2-11 84.6112.4106.1 + 4 7 9 5 5 4 2 2 3 5 2 4-11 89.6112.9106.0 + 4 7 10 4 7 7 5 4 6 6 5 6-11 96.4113.1106.0 + 4 7 11 12 4 4 18 32 7 22 48 18-11107.9113.5105.9 + 4 7 12 27 12 7 4 6 5 9 27 12-11129.2113.8105.8 + 4 7 13 32 15 18 9 7 9 12 9 14-11131.6114.1105.7 + 4 7 14 4 6 6 5 5 7 9 6 6-11142.6114.4105.7 + 4 7 15 4 3 3 3 2 7 12 15 6-11150.5114.6105.7 + 4 7 16 4 3 5 5 9 7 7 32 9-11151.3114.8105.7 + 4 7 17 80 27 32 9 7 4 5 6 21-11154.1114.9105.8 + 4 7 18 5 7 7 7 3 5 5 6 6-11160.2114.9105.8 + 4 7 19 3 9 5 6 6 12 7 15 8-11175.8114.9105.9 + 4 7 20 6 7 5 5 12 6 12 12 8-11180.8114.9105.9 + 4 7 21 4 6 6 2 2 3 2 3 4-11177.7115.0105.9 + 4 7 22 4 2 2 12 22 18 56132 31-11178.4115.0105.8 + 4 7 23 80 56 80 56 56 67 15 5 52-11170.4115.0105.8 + 4 7 24 12 12 32 15 80 48 27 67 37-11151.8115.0105.8 + 4 7 25132154 94179154207154154154-11143.9114.9105.8 + 4 7 26154 22 6 7 5 7 22154 47-11132.0114.8105.7 + 4 7 27236179154207300236 94 80186-11121.8114.6105.7 + 4 7 28 18 18 9 7 18 22 15 15 15-11103.8114.6105.7 + 4 7 29 7 9 7 5 4 5 4 4 6-11102.8114.7105.7 + 4 7 30 4 5 5 4 5 6 9 18 7-11 91.4114.8105.7 + 4 7 31 5 6 5 6 9 7 6 9 7-11 89.0114.9105.7 + 4 8 1 22 9 4 4 5 4 6 7 8-11 85.8115.1105.7 + 4 8 2 4 5 9 9 4 2 4 12 6-11 87.0115.0105.6 + 4 8 3 6 5 3 2 3 0 0 2 3-11 90.1115.0105.6 + 4 8 4 0 2 3 3 5 3 2 3 3-11 87.9115.1105.5 + 4 8 5 0 3 3 5 7 5 7 12 5-11 91.5115.2105.5 + 4 8 6 12 3 3 0 3 3 6 9 5-11 93.6115.4105.4 + 4 8 7 12 12 27 22 22 7 6 12 15-11 97.3115.5105.4 + 4 8 8 5 4 4 2 3 2 3 2 3-11107.7115.6105.4 + 4 8 9 7 6 18 7 5 9 27 32 14-11117.0115.8105.3 + 4 8 10 22 6 6 7 22 18 27 18 16-11124.7116.1105.3 + 4 8 11 9 5 9 18 9 9 15 9 10-11134.3116.3105.3 + 4 8 12 15 7 6 6 6 5 5 9 7-11151.1116.5105.3 + 4 8 13 7 6 4 3 5 5 9 12 6-11152.5116.6105.3 + 4 8 14 7 6 7 12 6 5 7 6 7-11153.1116.7105.3 + 4 8 15 3 3 2 3 12 2 3 3 4-11142.4116.8105.3 + 4 8 16 2 3 2 4 7 7 6 7 5-11137.0116.9105.4 + 4 8 17 15 5 2 5 9 9 22 15 10-11138.3117.0105.4 + 4 8 18 7 9 15 6 7 6 6 12 9-11143.3117.1105.5 + 4 8 19 5 3 2 4 4 6 4 6 4-11123.5117.1105.5 + 4 8 20 15 15 9 22 18 18 9 15 15-11124.2117.0105.5 + 4 8 21 18 22 27 12 6 9 15 22 16-11122.8116.8105.5 + 4 8 22 15 9 12 18 9 12 12 9 12-11117.8116.2105.5 + 4 8 23 7 5 5 4 4 5 4 3 5-11111.9115.7105.5 + 4 8 24 5 2 3 4 3 4 3 0 3-11107.2115.0105.5 + 4 8 25 2 5 3 5 5 5 4 3 4-11102.5114.3105.4 + 4 8 26 3 2 3 3 5 6 6 9 5-11 99.5113.6105.3 + 4 8 27 6 4 4 2 5 6 12 7 6-11 92.3112.8105.2 + 4 8 28 6 9 18 7 3 4 5 5 7-11 88.9112.0105.1 + 4 8 29 6 6 2 6 5 5 5 6 5-11 87.7110.9105.0 + 4 8 30 9 7 18 27 27 67 48132 42-11 91.6109.8104.9 + 4 8 31 56 39 48 15 18 15 18 12 28-11 89.7108.7104.8 + 4 9 1 9 6 6 5 6 6 7 9 7-11 91.5107.5104.7 + 4 9 2 9 6 7 6 3 4 4 5 6-11 95.6106.5104.7 + 4 9 3 5 3 2 2 2 3 3 0 3-11 98.3105.7104.6 + 4 9 4 2 0 3 4 3 0 2 4 2-11100.9105.0104.6 + 4 9 5 4 2 5 5 6 12 18 4 7-11104.8104.5104.5 + 4 9 6 12 6 15 18 12 22 7 22 14-11108.2104.1104.5 + 4 9 7 18 15 15 12 9 6 7 5 11-11120.7104.0104.4 + 4 9 8 12 15 12 5 6 3 2 2 7-11126.3103.9104.4 + 4 9 9 0 5 2 3 4 2 4 7 3-11132.8104.0104.4 + 4 9 10 3 3 3 4 3 0 0 0 2-11131.8104.2104.4 + 4 9 11 0 0 0 2 3 4 3 3 2-11117.9104.5104.4 + 4 9 12 4 3 0 0 2 5 0 2 2-11116.0105.0104.4 + 4 9 13 0 0 0 2 0 2 32 32 9-11119.1105.5104.4 + 4 9 14 18 39 32 27 27 27 56 27 32-11116.0106.1104.4 + 4 9 15 39 15 6 6 18 15 7 9 14-11110.8106.7104.4 + 4 9 16 18 15 22 12 22 18 22 22 19-11109.4107.2104.4 + 4 9 17 39 27 22 15 15 12 12 27 21-11105.5107.5104.3 + 4 9 18 39 48 6 15 9 3 2 0 15-11103.6107.9104.3 + 4 9 19 3 0 3 3 3 5 5 15 5-11106.1108.0104.2 + 4 9 20 12 5 39 15 12 7 2 6 12-11101.3108.1104.2 + 4 9 21 12 15 9 5 6 5 4 5 8-11 95.6108.2104.1 + 4 9 22 3 4 12 12 32 27 22 18 16-11 92.0108.0104.0 + 4 9 23 32 32 7 5 5 4 5 7 12-11 90.8107.7103.9 + 4 9 24 9 7 4 6 3 6 4 5 6-11 89.9107.4103.8 + 4 9 25 0 3 2 6 5 4 4 2 3-11 89.9107.3103.7 + 4 9 26 4 2 4 0 0 2 6 5 3-11 89.9107.4103.5 + 4 9 27 3 2 0 4 7 7 6 2 4-11 90.2107.2103.4 + 4 9 28 5 12 12 4 2 3 5 12 7-11 90.2107.0103.3 + 4 9 29 5 0 3 3 5 4 5 9 4-11 90.0107.0103.1 + 4 9 30 6 2 2 0 3 2 4 2 3-11 88.4107.2103.0 + 4 10 1 0 3 3 3 2 3 6 5 3-11 88.1106.9102.9 + 4 10 2 6 12 12 18 18 7 7 7 11-11 88.1106.6102.8 + 4 10 3 4 4 7 12 22 12 9 27 12-11 89.1106.4102.8 + 4 10 4 22 18 7 9 7 6 15 9 12-11 90.7106.2102.7 + 4 10 5 7 6 5 0 0 2 3 6 4-11 90.8106.2102.6 + 4 10 6 4 6 5 4 0 0 2 2 3-11 92.0106.2102.6 + 4 10 7 3 4 2 2 2 0 0 2 2-11 93.7106.4102.6 + 4 10 8 0 4 6 4 7 9 4 7 5-11 90.4106.5102.6 + 4 10 9 18 5 3 3 4 3 3 4 5-11 87.7106.7102.6 + 4 10 10 15 18 4 6 7 3 5 7 8-11 88.7106.8102.6 + 4 10 11 9 22 9 5 9 9 6 18 11-11 86.6106.9102.6 + 4 10 12 15 12 9 9 3 3 3 18 9-11 87.2107.0102.5 + 4 10 13 32 48 48 18 48 27 27 18 33-11 86.7107.1102.5 + 4 10 14 18 22 22 27 32 27 22 9 22-11 90.2107.2102.5 + 4 10 15 9 15 5 7 6 7 9 7 8-11 88.6107.2102.4 + 4 10 16 12 6 4 3 3 0 0 3 4-11 91.1107.2102.4 + 4 10 17 0 2 3 2 2 2 0 2 2-11 91.2107.2102.4 + 4 10 18 0 0 0 2 3 5 9 5 3-11 95.5107.1102.3 + 4 10 19 2 3 2 2 5 6 3 6 4-11 98.2106.9102.2 + 4 10 20 6 15 12 5 18 22 4 15 12-11110.3106.6102.1 + 4 10 21 15 18 12 6 3 2 5 5 8-11111.0106.3102.0 + 4 10 22 12 7 4 5 4 6 6 3 6-11121.2106.1101.9 + 4 10 23 0 0 0 3 2 3 3 6 2-11130.2106.0101.8 + 4 10 24 6 3 2 4 6 12 22 9 8-11138.7105.7101.7 + 4 10 25 12 18 18 18 9 9 5 6 12-11137.9105.5101.7 + 4 10 26 4 3 0 2 2 0 0 0 1-11135.0105.2101.6 + 4 10 27 0 0 2 2 6 6 4 5 3-11127.8105.0101.6 + 4 10 28 5 3 0 2 0 2 3 4 2-11134.0104.8101.7 + 4 10 29 0 0 3 6 15 7 15 6 7-11128.8104.7101.7 + 4 10 30 27 22 12 15 9 15 9 27 17-11134.4104.4101.7 + 4 10 31 12 7 5 12 12 18 15 15 12-11137.1104.2101.8 + 4 11 1 15 3 3 5 7 5 0 5 5-11133.4104.0101.8 + 4 11 2 5 0 4 4 5 6 6 4 4-11131.0104.0101.9 + 4 11 3 3 2 3 9 5 12 18 32 11-11133.7103.9102.0 + 4 11 4 7 15 9 5 4 7 7 12 8-11133.7103.9102.0 + 4 11 5 15 4 2 3 0 2 3 0 4-11138.8103.9102.1 + 4 11 6 0 0 0 2 2 0 3 0 1-11126.5103.8102.1 + 4 11 7 6 15 3 18 15 39 94207 50-11127.2103.8102.2 + 4 11 8300300236132 48 12 32 56140-11121.7103.9102.2 + 4 11 9 67 80 48 80132111300132119-11138.1103.9102.3 + 4 11 10179236300236154 94 56 32161-11102.6104.0102.4 + 4 11 11 27 48 32 22 9 15 9 32 24-11 93.0104.1102.4 + 4 11 12 39 39 27 32 18 27 32 27 30-11 94.0104.2102.5 + 4 11 13 9 7 9 6 5 7 3 9 7-11 94.4104.3102.5 + 4 11 14 27 12 7 5 4 5 4 2 8-11 98.1104.3102.4 + 4 11 15 2 2 3 0 2 2 0 2 2-11103.3104.3102.4 + 4 11 16 0 3 9 9 9 12 7 9 7-11104.2104.3102.3 + 4 11 17 5 6 15 9 2 2 2 3 6-11102.5104.3102.3 + 4 11 18 4 2 0 0 2 3 2 0 2-11101.6104.4102.2 + 4 11 19 0 6 3 0 0 4 6 9 4-11100.9104.5102.1 + 4 11 20 18 22 12 27 22 22 22 12 20-11 96.9104.6102.1 + 4 11 21 9 9 15 22 22 27 15 15 17-11 98.5104.7102.0 + 4 11 22 7 12 15 9 4 4 5 5 8-11103.7104.8101.9 + 4 11 23 9 4 3 6 3 6 6 9 6-11104.2104.9101.9 + 4 11 24 15 7 7 9 7 5 5 12 8-11104.5104.9101.8 + 4 11 25 27 32 15 12 27 12 18 15 20-11106.6104.9101.8 + 4 11 26 12 15 12 9 6 12 7 22 12-11108.2104.8101.8 + 4 11 27 6 5 9 7 7 22 15 15 11-11107.4104.7101.8 + 4 11 28 22 15 18 6 7 12 12 12 13-11109.8104.5101.7 + 4 11 29 15 15 18 15 12 15 18 27 17-11108.4104.3101.7 + 4 11 30 27 27 15 7 9 12 27 18 18-11107.5104.0101.7 + 4 12 1 7 18 27 12 4 7 5 12 12-11107.8103.7101.7 + 4 12 2 6 4 4 2 2 5 4 2 4-11102.6103.3101.7 + 4 12 3 3 2 2 2 3 3 4 4 3-11 97.9103.0101.8 + 4 12 4 0 0 0 0 0 0 0 0 0-11 94.6102.6101.8 + 4 12 5 2 4 32 7 6 7 6 6 9-11 93.1102.5101.8 + 4 12 6 9 15 27 15 32 22 22 22 21-11 90.4102.5101.9 + 4 12 7 15 15 15 9 15 12 22 15 15-11 87.1102.7101.9 + 4 12 8 12 15 12 6 9 9 7 18 11-11 93.6102.7102.0 + 4 12 9 12 3 4 9 7 7 9 9 8-11 84.7102.6102.1 + 4 12 10 7 9 7 7 9 15 9 15 10-11 82.3102.5102.2 + 4 12 11 3 5 12 4 32 18 18 27 15-11 87.1102.3102.3 + 4 12 12 39 27 27 27 15 56 18 15 28-11 87.7102.0102.3 + 4 12 13 32 22 12 5 3 4 2 2 10-11 87.0101.6102.3 + 4 12 14 2 4 9 9 9 5 9 7 7-11 86.5101.1102.3 + 4 12 15 9 7 7 0 3 9 5 7 6-11 86.5100.6102.2 + 4 12 16 7 18 9 2 12 9 22 27 13-11 88.4100.0102.2 + 4 12 17 18 27 18 15 9 18 9 18 17-11 90.2 99.5102.1 + 4 12 18 32 22 9 7 15 7 7 3 13-11 92.1 98.9102.1 + 4 12 19 5 3 4 3 0 0 3 3 3-11 94.0 98.5102.0 + 4 12 20 9 3 4 4 4 2 3 5 4-11 95.8 97.8101.9 + 4 12 21 7 3 15 32 6 12 12 12 12-11 97.7 97.5101.8 + 4 12 22 18 32 32 32 15 12 7 9 20-11 95.6 97.4101.7 + 4 12 23 9 5 5 4 5 9 6 9 7-11 93.2 97.3101.6 + 4 12 24 3 0 2 2 4 7 3 5 3-11 94.0 97.1101.5 + 4 12 25 22 27 27 9 5 6 9 9 14-11 90.0 96.9101.5 + 4 12 26 12 12 7 7 6 15 15 12 11-11 88.7 96.6101.4 + 4 12 27 7 9 12 5 4 4 12 12 8-11 93.7 96.4101.4 + 4 12 28 9 9 7 9 9 18 39 32 17-11101.7 96.3101.3 + 4 12 29 32 22 12 15 18 12 4 15 16-11 95.3 96.3101.3 + 4 12 30 12 18 39 15 22 22 7 12 18-11 96.7 96.4101.4 + 4 12 31 12 7 6 7 7 5 3 7 7-11 95.2 96.5101.5 + 5 1 1 6 18 15 9 15 18 32 27 18-11 95.6 96.6101.6 + 5 1 2 32 39 39 27 18 67 18 56 37-11 96.7 96.7101.8 + 5 1 3 22 22 12 22 27 22 15 9 19-11 91.0 96.8101.9 + 5 1 4 32 32 18 15 39 32 18 18 26-11 85.1 96.9102.0 + 5 1 5 27 18 22 18 18 18 7 9 17-11 84.1 97.1102.1 + 5 1 6 7 2 2 2 3 3 12 5 5-11 80.4 97.2102.3 + 5 1 7 2 0 0 6 48 56 27179 40-11 80.7 97.2102.4 + 5 1 8132 67 27 22 18 7 7 9 36-11 84.5 97.2102.4 + 5 1 9 4 4 2 15 3 2 4 0 4-11 84.6 97.1102.4 + 5 1 10 3 4 4 4 5 9 9 12 6-11 87.1 97.0102.4 + 5 1 11 7 15 22 9 5 18 7 27 14-11 91.1 96.8102.3 + 5 1 12 32 56 27 32 39 27 27 18 32-11 98.8 96.7102.2 + 5 1 13 12 22 12 7 9 18 22 15 15-11111.9 96.6102.1 + 5 1 14 12 12 9 5 5 5 32 48 16-11125.6 96.4101.9 + 5 1 15 22 32 27 15 15 18 12 6 18-11140.2 96.3101.7 + 5 1 16 18 9 12 12 18 18 15 27 16-11139.8 96.1101.5 + 5 1 17 48 32 27 80 94 94 48 39 58-11133.1 96.0101.3 + 5 1 18132 67179 67 56 56 48 67 84-11120.3 95.7101.0 + 5 1 19 94 80111 80 56 27 9 22 60-11128.3 95.6100.7 + 5 1 20 9 7 7 15 27 39 15 15 17-11118.8 95.5100.4 + 5 1 21 18 7 9 9 12111207154 66-11109.9 95.3100.1 + 5 1 22 67 80 22 12 22 18 27 15 33-11 99.1 95.1 99.9 + 5 1 23 22 22 18 12 18 27 12 18 19-11 92.8 95.0 99.7 + 5 1 24 15 6 6 7 15 15 7 6 10-11 91.7 94.9 99.6 + 5 1 25 4 2 4 4 3 4 6 4 4-11 91.2 94.9 99.4 + 5 1 26 3 2 2 3 3 2 3 3 3-11 86.6 94.9 99.4 + 5 1 27 2 0 2 2 0 3 4 5 2-11 84.3 94.9 99.3 + 5 1 28 9 6 3 3 3 3 12 12 6-11 82.4 95.0 99.4 + 5 1 29 18 7 15 27 18 15 27 32 20-11 83.9 95.0 99.4 + 5 1 30 27 32 15 18 15 12 7 7 17-11 82.9 95.1 99.5 + 5 1 31 18 12 15 22 39 27 15 3 19-11 83.6 95.3 99.5 + 5 2 1 15 2 3 6 5 6 3 4 6-11 81.3 95.5 99.6 + 5 2 2 3 9 7 6 6 15 18 5 9-11 79.4 95.7 99.7 + 5 2 3 7 27 18 7 4 5 4 3 9-11 80.7 95.9 99.7 + 5 2 4 0 0 2 6 5 6 3 3 3-11 79.8 96.0 99.8 + 5 2 5 2 3 4 2 4 0 2 0 2-11 92.0 96.2 99.8 + 5 2 6 4 12 18 6 4 5 12 15 10-11 94.3 96.2 99.8 + 5 2 7 15 18 9 15 39 22 67 56 30-11100.3 96.1 99.7 + 5 2 8 27 56 22 18 22 32 48 32 32-11105.4 96.0 99.6 + 5 2 9 18 32 39 27 22 18 22 22 25-11105.8 95.9 99.5 + 5 2 10 22 22 22 18 27 15 27 12 21-11111.1 95.8 99.3 + 5 2 11 12 12 9 18 9 5 15 15 12-11111.2 95.7 99.1 + 5 2 12 7 9 5 2 3 3 6 0 4-11113.5 95.6 98.9 + 5 2 13 6 4 3 3 2 3 7 2 4-11112.7 95.4 98.7 + 5 2 14 3 9 5 4 5 3 7 7 5-11115.2 95.4 98.6 + 5 2 15 3 4 6 2 2 2 5 5 4-11118.7 95.3 98.4 + 5 2 16 15 7 5 9 18 22 18 18 14-11110.2 95.3 98.2 + 5 2 17 6 7 0 5 4 5 3 22 7-11108.8 95.2 98.1 + 5 2 18 94 39 39 15 22 32 9 7 32-11101.8 95.2 98.0 + 5 2 19 5 7 18 27 22 18 15 12 16-11 96.3 95.1 97.9 + 5 2 20 27 18 15 2 5 15 15 15 14-11 93.6 94.9 97.9 + 5 2 21 15 12 5 4 4 3 2 4 6-11 92.5 94.8 98.0 + 5 2 22 2 4 0 2 4 6 6 6 4-11 90.4 94.6 98.0 + 5 2 23 5 2 5 3 3 2 5 3 4-11 82.8 94.3 98.0 + 5 2 24 0 2 5 5 15 5 4 5 5-11 78.6 93.8 98.0 + 5 2 25 4 5 7 9 7 18 18 7 9-11 76.7 93.2 97.9 + 5 2 26 15 9 9 9 15 12 9 6 11-11 75.1 92.5 97.9 + 5 2 27 2 12 12 4 15 6 6 5 8-11 74.4 92.0 98.0 + 5 2 28 7 12 15 18 12 9 7 22 13-11 73.6 91.6 98.0 + 5 3 1 9 9 18 18 5 7 6 18 11-11 72.4 91.1 98.0 + 5 3 2 22 15 15 18 15 18 5 5 14-11 73.4 90.7 97.9 + 5 3 3 5 4 3 2 5 5 7 3 4-11 75.7 90.4 97.9 + 5 3 4 3 0 2 2 2 3 4 2 2-11 77.7 90.2 97.9 + 5 3 5 5 12 9 5 7 9 15 27 11-11 79.9 90.1 97.8 + 5 3 6 56 22 32 27 15 48 39 56 37-11 82.3 90.0 97.7 + 5 3 7 39 32 56 32 27 39 67 27 40-11 85.7 90.0 97.7 + 5 3 8 39 56 27 15 12 22 32 32 29-11 92.2 89.9 97.6 + 5 3 9 18 32 18 12 12 22 48 39 25-11 98.5 89.9 97.6 + 5 3 10 22 18 15 12 12 22 9 5 14-11100.3 89.9 97.5 + 5 3 11 9 9 6 4 4 3 0 5 5-11103.6 89.8 97.4 + 5 3 12 6 3 4 0 2 3 2 6 3-11108.8 89.7 97.4 + 5 3 13 5 0 0 3 3 5 9 18 5-11112.5 89.6 97.4 + 5 3 14 32 27 12 15 39 12 7 9 19-11110.3 89.6 97.4 + 5 3 15 7 4 4 3 3 0 2 7 4-11107.0 89.7 97.9 + 5 3 16 3 2 3 6 15 7 7 7 6-11103.6 89.8 97.9 + 5 3 17 15 22 9 9 6 32 7 5 13-11100.7 89.9 97.9 + 5 3 18 3 4 5 6 3 6 27 27 10-11 95.7 90.0 98.0 + 5 3 19 39 27 6 6 5 0 2 4 11-11 92.2 90.0 98.0 + 5 3 20 2 7 4 4 4 2 4 2 4-11 88.3 90.1 98.0 + 5 3 21 2 2 5 18 18 6 4 5 8-11 89.2 90.1 98.0 + 5 3 22 2 2 2 2 3 3 4 6 3-11 86.7 90.2 97.9 + 5 3 23 2 0 2 2 6 4 7 6 4-11 87.1 90.3 97.9 + 5 3 24 2 3 2 3 12 4 6 6 5-11 86.6 90.3 97.9 + 5 3 25 6 22 27 15 22 22 12 32 20-11 81.7 90.3 97.9 + 5 3 26 6 22 18 22 22 15 15 7 16-11 77.4 90.2 97.8 + 5 3 27 9 7 15 12 15 22 22 7 14-11 78.1 90.2 97.8 + 5 3 28 6 6 5 2 2 2 5 6 4-11 79.4 90.0 97.8 + 5 3 29 0 4 3 2 3 5 3 12 4-11 78.6 89.9 97.7 + 5 3 30 12 12 12 6 4 7 3 2 7-11 77.5 90.0 97.7 + 5 3 31 5 15 9 4 3 12 18 9 9-11 76.5 90.2 97.7 + 5 4 1 3 7 9 4 4 4 5 4 5-11 78.2 90.6 97.6 + 5 4 2 3 2 3 4 3 5 2 2 3-11 80.2 90.9 97.6 + 5 4 3 7 6 3 4 3 4 6 7 5-11 81.1 91.4 97.5 + 5 4 4 5 7 7 12 12 32 56 80 26-11 84.9 91.5 97.5 + 5 4 5132111 48 18 18 15 15 39 50-11 88.5 91.8 97.5 + 5 4 6 22 12 5 7 7 12 7 12 11-11 88.2 92.1 97.5 + 5 4 7 12 9 9 7 6 6 0 3 7-11 88.0 92.3 97.4 + 5 4 8 9 2 3 2 3 2 4 2 3-11 87.9 92.4 97.4 + 5 4 9 6 3 0 2 2 2 2 5 3-11 88.8 92.5 97.3 + 5 4 10 4 2 2 2 4 3 0 2 2-11 88.6 92.7 97.3 + 5 4 11 5 6 0 3 4 15 27 27 11-11 87.9 92.8 97.3 + 5 4 12 48 48 18 18 32 12 32 32 30-11 85.3 93.0 97.3 + 5 4 13 12 32 27 27 32 48 27 39 31-11 84.0 93.1 97.2 + 5 4 14 18 32 9 9 15 12 15 15 16-11 86.0 93.2 97.2 + 5 4 15 12 15 7 6 15 15 12 22 13-11 85.5 93.3 97.2 + 5 4 16 15 5 4 3 4 5 7 6 6-11 83.6 93.4 97.2 + 5 4 17 5 9 6 2 4 2 3 3 4-11 84.2 93.6 97.1 + 5 4 18 4 12 7 4 7 6 5 7 7-11 82.0 93.6 97.1 + 5 4 19 6 6 12 5 9 5 4 7 7-11 78.9 93.6 97.0 + 5 4 20 9 39 27 32 22 15 9 6 20-11 77.8 93.5 97.0 + 5 4 21 6 2 3 0 2 3 3 2 3-11 77.9 93.5 96.9 + 5 4 22 9 5 3 3 15 6 15 7 8-11 78.1 93.3 96.8 + 5 4 23 5 3 4 4 4 9 9 6 6-11 80.2 93.1 96.6 + 5 4 24 15 12 6 5 7 6 6 6 8-11 83.2 93.0 96.5 + 5 4 25 9 18 12 6 7 4 4 6 8-11 87.1 92.9 96.3 + 5 4 26 3 0 2 3 3 2 4 3 3-11 92.1 92.9 96.1 + 5 4 27 0 0 0 4 5 2 0 0 1-11 96.6 93.0 96.0 + 5 4 28 0 0 0 2 5 5 4 2 2-11 99.4 93.2 95.8 + 5 4 29 3 4 7 5 12 7 18 22 10-11106.5 93.6 95.6 + 5 4 30 48 18 15 18 22 22 18 32 24-11108.0 94.0 95.5 + 5 5 1 27 39 22 18 22 15 27 9 22-11113.4 94.3 95.3 + 5 5 2 9 7 5 5 9 7 6 6 7-11114.0 94.6 95.1 + 5 5 3 12 6 5 9 15 12 6 6 9-11114.2 94.9 95.0 + 5 5 4 9 9 3 2 4 3 5 3 5-11110.6 95.0 94.8 + 5 5 5 4 5 4 5 4 6 3 2 4-11111.0 95.2 94.7 + 5 5 6 4 0 0 2 7 6 7 5 4-11112.4 95.4 94.5 + 5 5 7 5 3 2 4 12 7 12 39 11-11101.8 95.7 94.4 + 5 5 8 80 56 22 80236179 56 22 91-11103.2 95.9 94.2 + 5 5 9 15 12 4 4 3 9 12 22 10-11112.2 96.0 94.1 + 5 5 10 12 7 9 5 6 4 7 7 7-11121.6 96.2 94.0 + 5 5 11 4 2 7 7 9 18 27 22 12-11127.9 96.3 93.8 + 5 5 12 9 22 15 6 9 15 22 18 15-11119.9 96.4 93.7 + 5 5 13 39 27 27 12 18 27 12 7 21-11128.6 96.5 93.7 + 5 5 14 6 5 7 5 5 6 9 3 6-11101.7 96.4 93.7 + 5 5 15 67 67236179 27 27 48 48 87-11105.2 96.4 93.6 + 5 5 16 27 94 80 27 48 39 6 9 41-11101.4 96.3 93.6 + 5 5 17 18 32 22 9 7 22 6 12 16-11 92.0 96.2 93.6 + 5 5 18 12 9 7 7 9 9 2 4 7-11 85.8 96.1 93.6 + 5 5 19 4 7 15 6 6 5 7 7 7-11 86.7 96.0 93.6 + 5 5 20 12 39 48 27 18 18 7 12 23-11 85.6 96.0 93.5 + 5 5 21 12 27 22 15 12 12 27 15 18-11 83.9 96.2 93.5 + 5 5 22 22 7 9 9 12 3 4 5 9-11 84.2 96.6 93.5 + 5 5 23 6 3 3 3 9 5 3 3 4-11 85.5 97.1 93.5 + 5 5 24 3 2 0 2 4 2 4 7 3-11 87.4 97.8 93.5 + 5 5 25 5 4 5 4 3 5 2 0 4-11 86.0 98.3 93.4 + 5 5 26 0 2 2 2 2 2 2 0 2-11 92.8 98.8 93.4 + 5 5 27 2 3 2 2 4 0 0 0 2-11 98.1 99.4 93.3 + 5 5 28 2 7 5 6 6 22 27 18 12-11 95.1 99.9 93.2 + 5 5 29 15 15 15 15 5 15 15 67 20-11 95.3100.3 93.1 + 5 5 30 27 18 94 94154179111 39 90-11 97.5100.7 93.1 + 5 5 31 18 22 12 12 18 7 7 12 14-11 99.0101.1 93.0 + 5 6 1 15 7 6 6 4 5 4 3 6-11 96.9101.3 92.9 + 5 6 2 4 6 4 5 5 5 6 12 6-11 96.0101.5 92.9 + 5 6 3 6 7 7 6 9 6 4 3 6-11 98.0101.7 92.9 + 5 6 4 6 5 9 7 18 32 67 32 22-11 99.8101.9 92.9 + 5 6 5 18 15 22 15 9 15 27 15 17-11108.6101.9 92.9 + 5 6 6 22 12 9 3 3 4 7 22 10-11109.2101.7 92.9 + 5 6 7 15 22 15 15 15 9 7 7 13-11112.4101.5 92.9 + 5 6 8 9 5 5 4 3 2 3 3 4-11119.3101.2 92.9 + 5 6 9 3 3 3 6 7 4 4 5 4-11119.7100.8 92.9 + 5 6 10 3 3 0 3 3 3 3 3 3-11117.9100.4 92.9 + 5 6 11 5 3 3 3 3 5 6 7 4-11111.4 99.9 92.9 + 5 6 12 6 6 22 27 56 80154 80 54-11106.3 99.4 92.9 + 5 6 13 80 67 32 15 27 12 18 6 32-11 94.7 99.0 92.9 + 5 6 14 6 6 7 6 7 4 39 15 11-11 96.8 98.7 92.9 + 5 6 15 15 22 32 7 32 9 7 4 16-11 97.5 98.4 92.9 + 5 6 16 3 6 15 39 48 48 27 18 26-11101.3 98.1 92.9 + 5 6 17 39 18 6 6 12 12 12 5 14-11 93.7 98.0 92.9 + 5 6 18 5 7 7 5 5 4 6 4 5-11 92.9 97.9 92.8 + 5 6 19 5 4 4 4 5 6 3 5 5-11 89.8 97.9 92.8 + 5 6 20 4 3 3 4 4 4 2 0 3-11 88.9 97.7 92.8 + 5 6 21 0 0 2 0 0 2 3 4 1-11 85.5 97.5 92.8 + 5 6 22 6 3 3 6 5 4 5 12 6-11 82.1 97.5 92.7 + 5 6 23 22 48132 48 67 27 39 18 50-11 80.1 97.3 92.7 + 5 6 24 18 18 6 15 9 3 2 5 10-11 79.2 97.4 92.7 + 5 6 25 12 15 5 6 5 18 9 15 11-11 79.3 97.5 92.7 + 5 6 26 9 9 5 7 6 5 5 4 6-11 81.3 97.5 92.7 + 5 6 27 4 2 0 2 5 3 6 5 3-11 80.0 97.5 92.7 + 5 6 28 3 4 4 2 5 4 5 3 4-11 82.6 97.6 92.7 + 5 6 29 6 3 5 5 6 6 3 3 5-11 91.2 97.6 92.6 + 5 6 30 4 4 5 5 5 7 7 7 6-11104.8 97.6 92.6 + 5 7 1 9 6 5 3 7 32 32 22 15-11118.5 97.6 92.6 + 5 7 2 27 7 9 9 6 9 12 18 12-11128.0 97.5 92.5 + 5 7 3 15 7 6 7 7 4 4 9 7-11134.1 97.4 92.5 + 5 7 4 5 5 4 4 3 4 3 6 4-11127.8 97.3 92.5 + 5 7 5 4 4 4 5 5 2 2 4 4-11131.0 97.2 92.5 + 5 7 6 4 3 4 3 3 4 3 5 4-11127.2 97.0 92.4 + 5 7 7 3 5 5 4 7 9 5 12 6-11129.1 96.7 92.4 + 5 7 8 5 4 2 3 4 4 4 5 4-11114.2 96.5 92.4 + 5 7 9 7 7 12 22 48 32 32 32 24-11110.2 96.4 92.4 + 5 7 10 27 32 32 67 94 56 67 80 57-11105.2 96.4 92.4 + 5 7 11 22 18 27 18 15 15 48 7 21-11 96.4 96.4 92.4 + 5 7 12 39 56 27 56 94 32 7 5 40-11 99.4 96.4 92.3 + 5 7 13 6 15 48 48 56 32 18 22 31-11 96.2 97.2 92.3 + 5 7 14 5 15 9 6 7 4 2 4 7-11 92.9 97.4 92.2 + 5 7 15 2 4 4 4 5 4 7 6 5-11 90.1 97.4 92.1 + 5 7 16 15 9 9 4 6 9 7 7 8-11 78.8 97.3 92.0 + 5 7 17 12 7 18 48 15 18 9 48 22-11 76.5 97.1 91.8 + 5 7 18 32 56 56 9 9 5 7 22 25-11 74.4 96.9 91.6 + 5 7 19 12 5 6 4 5 5 6 15 7-11 73.5 96.5 91.5 + 5 7 20 15 9 9 22 39 18 27 18 20-11 74.4 96.2 91.4 + 5 7 21 48 48 27 9 6 12 9 12 21-11 75.2 95.8 91.3 + 5 7 22 15 9 5 5 15 18 18 12 12-11 75.9 95.5 91.2 + 5 7 23 5 3 5 3 3 7 3 5 4-11 82.7 95.2 91.1 + 5 7 24 2 2 3 3 6 4 5 3 4-11 82.8 95.0 91.1 + 5 7 25 5 4 4 2 3 3 3 6 4-11 86.5 94.7 91.1 + 5 7 26 4 3 4 4 3 4 4 6 4-11 89.2 94.4 91.1 + 5 7 27 4 9 6 4 12 7 22 48 14-11 93.4 94.1 91.1 + 5 7 28 15 56 15 12 39 12 15 18 23-11 98.7 94.0 91.1 + 5 7 29 12 18 12 12 15 32 18 15 17-11106.9 94.3 91.1 + 5 7 30 22 12 18 9 5 4 6 6 10-11108.2 94.4 91.1 + 5 7 31 6 7 6 5 12 3 5 18 8-11113.1 94.6 91.0 + 5 8 1 18 6 15 22 12 15 12 15 14-11114.6 95.0 91.0 + 5 8 2 9 12 6 15 12 7 7 4 9-11113.5 95.4 91.0 + 5 8 3 6 7 5 4 5 9 15 18 9-11112.2 95.9 91.0 + 5 8 4 12 6 12 7 9 6 5 9 8-11109.2 98.7 91.0 + 5 8 5 3 4 4 4 5 12 18 12 8-11101.7 99.1 91.0 + 5 8 6 27 32 32 39 22 22 39 18 29-11 96.1 99.6 91.0 + 5 8 7 15 18 18 22 9 5 12 12 14-11 94.9100.3 90.9 + 5 8 8 7 5 6 4 12 6 3 9 7-11 88.9100.6 90.8 + 5 8 9 9 9 5 6 7 6 15 12 9-11 84.7100.7 90.8 + 5 8 10 12 6 27 32 32 9 3 3 16-11 78.3100.6 90.7 + 5 8 11 3 0 4 4 5 2 2 2 3-11 77.9100.2 90.6 + 5 8 12 4 4 4 2 4 4 5 15 5-11 78.3 99.7 90.5 + 5 8 13 12 18 7 18 12 4 27 27 16-11 77.4 99.1 90.4 + 5 8 14 18 18 5 5 5 3 5 6 8-11 76.7 98.5 90.3 + 5 8 15 2 3 2 4 6 9 7 15 6-11 77.7 97.9 90.2 + 5 8 16 15 22 9 12 18 9 9 22 15-11 77.7 97.4 90.1 + 5 8 17 18 12 7 7 15 12 12 18 13-11 78.9 96.8 89.9 + 5 8 18 15 7 15 15 12 12 12 9 12-11 84.7 96.3 89.9 + 5 8 19 9 5 5 7 6 3 6 6 6-11 95.3 95.9 89.8 + 5 8 20 6 3 0 2 4 3 4 2 3-11100.4 95.5 89.7 + 5 8 21 3 4 3 3 7 39 9 7 9-11100.8 95.2 89.6 + 5 8 22 9 18 5 5 9 9 5 12 9-11160.9 94.9 89.6 + 5 8 23 7 5 6 6 12 9 6 6 7-11114.8 94.6 89.5 + 5 8 24 12 18 94300154111 94 32102-11100.7 94.4 89.5 + 5 8 25 39 18 9 12 22 48 22 9 22-11 94.4 94.3 89.5 + 5 8 26 12 12 9 4 0 4 4 6 6-11 95.2 94.3 89.5 + 5 8 27 12 6 7 5 4 2 2 3 5-11 94.0 94.3 89.4 + 5 8 28 7 5 2 4 3 4 5 12 5-11 91.6 94.4 89.4 + 5 8 29 15 18 7 4 3 3 0 3 7-11 90.9 94.5 89.5 + 5 8 30 2 2 0 2 0 2 12 6 3-11 87.6 94.5 89.5 + 5 8 31 5 9 9 12 48132111 67 49-11 85.6 94.5 89.5 + 5 9 1 32 27 7 7 18 4 4 12 14-11 80.6 94.6 89.5 + 5 9 2 12 18 27 18 32 67111 27 39-11 78.5 94.5 89.5 + 5 9 3 56 48 32 32 22 6 6 15 27-11 75.4 94.4 89.5 + 5 9 4 22 27 39 39 22 15 12 12 24-11 75.8 94.3 89.4 + 5 9 5 18 9 9 15 7 9 15 7 11-11 76.2 94.2 89.4 + 5 9 6 15 7 3 9 7 9 4 6 8-11 84.7 94.0 89.4 + 5 9 7 18 18 4 6 5 12 15 2 10-11118.8 93.8 89.3 + 5 9 8 9 7 4 4 5 5 6 7 6-11 95.5 93.4 89.2 + 5 9 9 5 7 3 6 32 32 32 18 17-11106.5 93.0 89.2 + 5 9 10 9 12 27 18 27 67 56 48 33-11117.6 92.6 89.1 + 5 9 11 94132179 94132 56 80 39101-11111.1 92.1 89.0 + 5 9 12 39 32132 67 39 80 80132 75-11119.5 91.6 88.9 + 5 9 13 67 39 27 80 67 7 39 22 44-11305.6 91.1 88.8 + 5 9 14 18 12 27 18 27 18 18 7 18-11117.9 90.6 88.7 + 5 9 15 15 6 18 67 94132 48 32 52-11120.6 90.3 88.6 + 5 9 16 22 22 22 27 18 9 18 9 18-11135.5 90.0 88.5 + 5 9 17 3 7 5 15 15 22 15 15 12-11104.9 89.7 88.4 + 5 9 18 6 12 15 15 12 6 6 4 10-11103.2 89.5 88.4 + 5 9 19 12 5 6 6 6 7 5 3 6-11 91.9 89.3 88.4 + 5 9 20 3 7 5 7 5 3 4 3 5-11 88.5 89.3 88.3 + 5 9 21 5 2 5 5 4 3 0 0 3-11 86.7 89.3 88.3 + 5 9 22 4 9 6 4 6 9 9 3 6-11 84.3 89.2 88.3 + 5 9 23 6 12 12 4 4 3 4 5 6-11 83.3 89.2 88.2 + 5 9 24 5 2 2 2 3 2 2 2 3-11 81.9 89.2 88.2 + 5 9 25 2 0 2 7 15 5 2 7 5-11 81.4 89.2 88.2 + 5 9 26 22 15 7 12 22 9 15 18 15-11 81.7 89.2 88.2 + 5 9 27 18 27 9 7 6 6 5 18 12-11 77.2 89.2 88.2 + 5 9 28 15 12 15 7 7 18 6 6 11-11 74.9 89.1 88.2 + 5 9 29 12 9 6 7 6 9 3 3 7-11 74.0 88.9 88.2 + 5 9 30 2 5 5 6 22 9 7 12 9-11 72.4 88.6 88.2 + 5 10 1 15 18 18 9 6 6 15 18 13-11 72.3 88.3 88.3 + 5 10 2 22 22 22 9 7 18 6 12 15-11 75.0 87.3 88.3 + 5 10 3 12 12 7 6 4 3 5 5 7-11 74.4 86.9 88.3 + 5 10 4 5 5 2 4 4 2 3 2 3-11 82.7 86.7 88.4 + 5 10 5 3 4 3 3 4 3 5 3 4-11 81.3 86.6 88.4 + 5 10 6 4 5 3 3 5 5 5 2 4-11 79.4 86.7 88.4 + 5 10 7 6 7 6 7 7 7 15 39 12-11 78.7 86.6 88.5 + 5 10 8 32 32 32 27 15 7 39 22 26-11 78.0 86.7 88.5 + 5 10 9 15 7 6 7 7 4 15 18 10-11 78.7 86.8 88.5 + 5 10 10 15 12 12 15 6 3 3 12 10-11 78.8 87.0 88.5 + 5 10 11 18 6 3 3 6 7 6 6 7-11 77.3 87.1 88.5 + 5 10 12 2 3 2 0 3 0 0 4 2-11 76.5 87.2 88.5 + 5 10 13 3 4 4 4 3 3 7 3 4-11 77.6 87.4 88.5 + 5 10 14 3 7 2 2 2 0 0 2 2-11 78.0 87.5 88.4 + 5 10 15 2 3 3 2 2 0 3 3 2-11 79.1 87.6 88.4 + 5 10 16 2 6 7 5 5 7 7 18 7-11 78.7 87.6 88.4 + 5 10 17 18 32 18 12 12 12 4 2 14-11 77.5 87.6 88.4 + 5 10 18 3 9 4 4 7 6 6 3 5-11 77.7 87.1 88.4 + 5 10 19 7 12 5 5 7 7 4 5 7-11 77.2 86.9 88.4 + 5 10 20 5 2 4 3 0 2 2 3 3-11 76.0 86.6 88.4 + 5 10 21 0 0 0 2 0 0 2 9 2-11 74.6 86.3 88.4 + 5 10 22 27 12 4 2 4 2 5 4 8-11 74.0 86.1 88.4 + 5 10 23 4 2 2 2 3 3 3 0 2-11 73.4 85.9 88.4 + 5 10 24 4 2 0 2 5 7 7 5 4-11 72.5 83.3 88.5 + 5 10 25 27 32 22 27 6 18 15 22 21-11 72.1 83.0 88.5 + 5 10 26 7 7 15 7 7 22 15 6 11-11 71.2 82.6 88.5 + 5 10 27 15 4 2 7 12 18 7 2 8-11 70.7 82.0 88.5 + 5 10 28 2 3 5 7 7 5 7 5 5-11 72.1 81.8 88.5 + 5 10 29 2 0 5 2 0 5 6 2 3-11 73.1 81.6 88.5 + 5 10 30 4 7 2 4 4 4 7 7 5-11 74.5 81.5 88.5 + 5 10 31 4 7 5 6 15 27 48 27 17-11 76.7 81.5 88.4 + 5 11 1 18 7 3 6 6 18 6 12 10-11 76.1 81.5 88.4 + 5 11 2 6 6 3 2 4 4 22 22 9-11 76.8 81.6 88.3 + 5 11 3 22 39 15 22 18 27 27 18 24-11 75.5 81.6 88.3 + 5 11 4 22 32 18 15 12 18 32 9 20-11 76.1 81.6 88.2 + 5 11 5 15 18 27 6 7 12 7 15 13-11 77.9 81.7 88.1 + 5 11 6 27 12 9 12 6 18 15 15 14-11 80.3 81.7 88.1 + 5 11 7 15 6 7 5 4 6 6 6 7-11 78.0 81.8 88.1 + 5 11 8 4 3 4 3 0 4 4 3 3-11 77.9 81.9 88.0 + 5 11 9 9 3 2 3 0 3 3 3 3-11 76.6 82.0 87.9 + 5 11 10 0 0 4 2 0 0 4 6 2-11 76.4 82.2 87.7 + 5 11 11 3 12 4 4 4 7 5 4 5-11 77.0 82.3 87.6 + 5 11 12 12 15 7 7 15 18 12 9 12-11 81.4 82.4 87.5 + 5 11 13 15 27 12 9 12 15 6 18 14-11 86.0 82.6 87.4 + 5 11 14 18 18 6 7 7 3 6 7 9-11 90.4 82.7 87.3 + 5 11 15 5 4 6 6 5 2 3 5 5-11 97.8 82.8 87.2 + 5 11 16 2 5 2 2 2 4 3 4 3-11 91.8 82.9 87.2 + 5 11 17 3 0 9 3 0 0 0 0 2-11 98.2 83.0 87.1 + 5 11 18 0 0 4 2 5 7 9 2 4-11 98.8 83.1 87.1 + 5 11 19 4 3 2 0 5 27 27 18 11-11 99.6 83.3 87.1 + 5 11 20 5 12 15 7 4 6 6 7 8-11 94.1 83.4 87.1 + 5 11 21 7 9 3 3 3 4 4 2 4-11 92.4 83.4 87.1 + 5 11 22 5 2 7 5 7 9 6 9 6-11 90.3 83.5 87.1 + 5 11 23 6 12 12 6 7 6 5 6 8-11 87.5 83.6 87.1 + 5 11 24 6 7 7 12 6 9 9 18 9-11 84.4 83.6 87.1 + 5 11 25 22 18 18 6 5 9 6 9 12-11 77.9 83.7 87.1 + 5 11 26 7 3 5 7 5 5 3 4 5-11 78.7 83.7 87.0 + 5 11 27 2 4 3 3 0 3 3 5 3-11 78.6 83.7 87.0 + 5 11 28 2 2 7 7 18 7 9 12 8-11 79.7 83.7 87.0 + 5 11 29 12 2 3 3 3 6 6 39 9-11 82.4 83.7 86.9 + 5 11 30 15 12 9 32 15 6 7 18 14-11 92.0 83.7 86.9 + 5 12 1 32 12 6 12 12 9 15 39 17-11 95.5 83.7 86.8 + 5 12 2 18 18 18 15 12 7 15 18 15-11103.3 83.7 86.8 + 5 12 3 27 15 6 9 12 18 18 12 15-11 98.4 83.7 86.7 + 5 12 4 6 3 4 5 7 6 12 5 6-11 92.5 83.7 86.7 + 5 12 5 5 5 2 3 2 2 3 0 3-11 89.0 83.7 86.6 + 5 12 6 0 2 3 3 4 2 2 3 2-11 86.5 83.8 86.5 + 5 12 7 0 0 2 0 0 0 0 2 1-11 86.3 84.0 86.4 + 5 12 8 0 0 0 0 0 2 3 4 1-11 86.9 84.1 86.3 + 5 12 9 6 2 2 3 2 4 6 22 6-11 86.4 84.2 86.2 + 5 12 10 15 32 18 4 6 7 15 15 14-11 88.7 84.3 86.1 + 5 12 11 22 9 12 27 12 39 32 15 21-11 90.2 84.5 86.0 + 5 12 12 15 18 7 5 7 15 15 15 12-11 85.6 84.6 85.9 + 5 12 13 3 6 4 3 9 4 7 6 5-11 85.2 84.8 85.9 + 5 12 14 2 4 6 3 3 0 3 2 3-11 86.8 85.0 85.8 + 5 12 15 4 3 3 4 0 0 0 2 2-11 84.2 85.1 85.8 + 5 12 16 5 18 5 6 5 7 7 3 7-11 83.1 85.2 85.7 + 5 12 17 0 4 5 6 6 3 2 3 4-11 82.5 85.3 85.7 + 5 12 18 5 3 3 6 5 2 0 4 4-11 82.8 85.3 85.6 + 5 12 19 4 4 5 4 9 9 22 22 10-11 86.6 85.3 85.6 + 5 12 20 27 18 9 7 18 15 27 15 17-11 84.9 85.3 85.6 + 5 12 21 5 7 9 12 15 15 5 6 9-11 83.7 85.3 85.5 + 5 12 22 12 4 5 5 2 2 4 3 5-11 84.8 85.3 85.5 + 5 12 23 2 0 0 0 0 0 0 0 0-11 90.1 85.2 85.5 + 5 12 24 0 0 2 5 9 4 6 6 4-11 88.9 85.1 85.5 + 5 12 25 5 12 7 6 9 5 2 3 6-11 88.8 84.9 85.5 + 5 12 26 0 0 4 2 5 6 15 18 6-11 89.5 84.7 85.5 + 5 12 27 15 4 2 4 12 27 39 56 20-11 89.2 84.4 85.5 + 5 12 28 22 12 12 15 15 15 18 32 18-11 86.1 84.1 85.5 + 5 12 29 18 15 18 12 9 12 7 12 13-11 87.4 83.8 85.5 + 5 12 30 12 15 6 7 4 7 7 9 8-11 86.9 83.5 85.4 + 5 12 31 15 9 9 4 12 15 7 18 11-11 84.5 83.2 85.3 + 6 1 1 12 5 3 4 12 6 5 6 7-11 84.5 83.0 85.2 + 6 1 2 6 7 6 7 4 5 4 12 6-11 81.7 82.8 85.1 + 6 1 3 9 3 0 0 3 6 5 0 3-11 82.1 82.6 85.0 + 6 1 4 2 4 2 3 2 2 3 0 2-11 81.2 82.5 84.9 + 6 1 5 0 0 5 5 5 4 4 4 3-11 80.6 82.4 84.8 + 6 1 6 6 9 6 5 15 9 5 4 7-11 79.3 82.4 84.7 + 6 1 7 7 6 6 5 5 12 3 2 6-11 76.6 82.4 84.6 + 6 1 8 0 2 6 6 5 4 2 3 4-11 75.6 82.4 84.5 + 6 1 9 0 3 0 2 0 0 0 0 1-11 75.0 82.3 84.4 + 6 1 10 0 0 0 0 3 4 2 2 1-11 75.2 82.1 84.3 + 6 1 11 3 0 0 3 4 5 3 2 3-11 74.7 81.8 84.3 + 6 1 12 6 5 4 3 0 2 3 4 3-11 74.0 81.5 84.2 + 6 1 13 4 0 0 2 4 6 4 3 3-11 74.0 81.2 84.2 + 6 1 14 3 2 0 4 4 5 6 2 3-11 74.9 80.9 84.1 + 6 1 15 7 5 3 2 2 7 12 6 6-11 78.3 80.7 84.1 + 6 1 16 3 12 9 12 15 15 15 18 12-11 81.1 80.6 84.1 + 6 1 17 15 22 9 7 6 6 5 4 9-11 79.8 80.5 84.1 + 6 1 18 9 9 12 27 5 12 5 7 11-11 82.9 80.3 84.1 + 6 1 19 7 5 6 7 12 9 6 12 8-11 85.8 80.2 84.1 + 6 1 20 7 3 3 6 7 12 15 6 7-11 87.9 80.0 84.1 + 6 1 21 6 9 4 6 6 2 0 0 4-11 90.9 79.8 84.1 + 6 1 22 0 3 5 7 12 12 2 4 6-11 89.9 79.7 84.1 + 6 1 23 5 22 18 22 18 12 9 22 16-11 89.6 79.6 84.1 + 6 1 24 15 15 12 5 3 3 0 4 7-11 89.8 79.4 84.0 + 6 1 25 6 3 2 5 3 6 15 22 8-11 86.3 79.2 84.0 + 6 1 26 27 32 7 18 15 56 32 56 30-11 84.2 79.1 84.0 + 6 1 27 18 6 9 12 12 9 9 12 11-11 81.0 79.0 83.9 + 6 1 28 9 7 6 6 4 2 9 6 6-11 77.6 78.8 83.8 + 6 1 29 4 4 3 2 0 0 0 3 2-11 77.2 78.7 83.7 + 6 1 30 4 2 2 3 0 2 0 0 2-11 76.5 78.5 83.6 + 6 1 31 0 2 0 0 3 5 2 2 2-11 75.3 78.4 83.5 + 6 2 1 0 2 5 3 4 3 2 9 4-11 75.3 78.2 83.4 + 6 2 2 6 3 2 5 3 3 6 6 4-11 75.1 78.0 83.3 + 6 2 3 2 2 3 6 3 5 15 5 5-11 76.4 77.8 83.2 + 6 2 4 9 15 5 4 4 4 2 2 6-11 74.9 77.6 83.1 + 6 2 5 4 0 6 3 2 2 6 3 3-11 74.2 77.4 83.0 + 6 2 6 6 22 7 7 22 9 15 22 14-11 72.9 77.1 83.0 + 6 2 7 7 5 4 0 2 3 5 6 4-11 72.0 77.0 82.9 + 6 2 8 12 3 5 3 2 0 2 2 4-11 72.0 76.9 82.9 + 6 2 9 0 0 2 3 4 0 5 5 2-11 72.8 76.7 82.9 + 6 2 10 4 2 0 0 0 2 6 15 4-11 73.2 76.6 82.9 + 6 2 11 7 7 7 3 7 12 5 2 6-11 74.1 76.5 83.0 + 6 2 12 9 15 6 3 4 5 0 0 5-11 74.1 76.4 83.0 + 6 2 13 0 0 0 0 3 6 4 4 2-11 74.4 76.4 83.0 + 6 2 14 0 0 0 0 2 0 0 5 1-11 75.4 76.3 83.1 + 6 2 15 3 4 7 15 7 6 18 22 10-11 76.6 76.2 83.1 + 6 2 16 15 12 15 9 5 5 6 5 9-11 77.3 76.2 83.1 + 6 2 17 4 12 6 3 4 4 2 4 5-11 77.3 76.2 83.2 + 6 2 18 0 2 0 3 6 3 3 3 3-11 76.7 76.3 83.2 + 6 2 19 7 7 7 4 5 5 9 6 6-11 74.8 76.5 83.1 + 6 2 20 9 7 12 18 32 39 18 18 19-11 74.5 76.6 83.1 + 6 2 21 18 22 15 27 18 22 15 12 19-11 74.2 76.8 82.9 + 6 2 22 27 18 18 18 12 18 6 6 15-11 74.4 77.1 82.8 + 6 2 23 6 7 5 5 2 2 4 4 4-11 73.6 77.5 82.7 + 6 2 24 12 6 4 9 9 3 2 2 6-11 74.4 77.8 82.7 + 6 2 25 7 3 2 2 0 0 0 0 2-11 74.5 78.0 82.6 + 6 2 26 4 9 3 2 5 7 6 12 6-11 75.0 78.2 82.6 + 6 2 27 6 5 6 3 3 0 2 5 4-11 75.5 78.3 82.6 + 6 2 28 2 0 4 7 5 3 6 9 5-11 75.7 78.4 82.5 + 6 3 1 15 9 7 9 15 5 2 2 8-11 75.6 78.4 82.5 + 6 3 2 3 3 4 3 3 0 2 4 3-11 74.7 78.5 82.5 + 6 3 3 4 0 2 2 3 4 5 2 3-11 74.2 78.4 82.5 + 6 3 4 3 4 5 3 2 0 0 4 3-11 73.8 78.2 82.5 + 6 3 5 2 0 2 0 0 3 0 3 1-11 73.0 78.1 82.5 + 6 3 6 3 2 3 6 15 12 22 22 11-11 72.5 78.0 82.5 + 6 3 7 32 22 9 5 5 3 6 6 11-11 73.3 77.9 82.5 + 6 3 8 6 5 2 3 6 3 6 5 5-11 71.3 77.8 82.5 + 6 3 9 0 3 0 0 2 3 12 5 3-11 71.8 77.8 82.4 + 6 3 10 5 9 9 15 15 12 9 39 14-11 71.2 77.7 82.4 + 6 3 11 22 15 15 9 4 7 5 5 10-11 73.1 77.8 82.3 + 6 3 12 0 5 6 6 5 4 5 0 4-11 72.3 77.8 82.3 + 6 3 13 2 3 2 3 3 2 3 4 3-11 71.7 77.9 82.2 + 6 3 14 0 0 0 3 4 2 2 7 2-11 72.8 78.1 82.1 + 6 3 15 7 7 7 9 6 7 15 2 8-11 73.4 78.3 81.5 + 6 3 16 6 9 9 9 6 9 4 5 7-11 71.7 78.5 81.4 + 6 3 17 0 2 2 4 3 2 3 6 3-11 71.3 78.9 81.3 + 6 3 18 2 6 18 39 15 48 48 67 30-11 71.7 79.2 81.1 + 6 3 19 94 56 39 22 32 15 27 22 38-11 74.6 79.6 81.1 + 6 3 20 32 27 27 18 7 9 27 12 20-11 76.2 79.9 81.0 + 6 3 21 9 22 6 5 9 27 18 15 14-11 76.1 80.3 80.9 + 6 3 22 15 18 12 4 3 5 12 9 10-11 75.4 80.6 80.9 + 6 3 23 6 7 4 3 2 3 2 3 4-11 76.1 80.8 80.9 + 6 3 24 5 2 2 4 3 4 5 9 4-11 75.4 81.0 80.8 + 6 3 25 6 12 5 4 4 5 12 2 6-11 75.2 81.2 80.8 + 6 3 26 3 5 0 5 6 9 18 9 7-11 73.3 81.4 80.8 + 6 3 27 18 15 2 2 5 12 4 18 10-11 74.0 81.6 80.7 + 6 3 28 5 18 4 2 4 5 6 4 6-11 79.0 81.7 80.7 + 6 3 29 4 7 3 4 3 3 6 9 5-11 81.5 81.8 80.7 + 6 3 30 5 3 2 2 2 2 6 7 4-11 83.7 81.9 80.7 + 6 3 31 4 0 4 6 6 5 7 3 4-11 86.1 81.9 80.7 + 6 4 1 0 0 0 2 3 2 0 0 1-11 86.9 82.0 80.7 + 6 4 2 0 0 0 2 4 0 2 2 1-11 91.1 82.0 80.7 + 6 4 3 0 0 0 2 2 3 2 3 2-11100.4 82.0 80.7 + 6 4 4 2 2 6 7 6 9 12 18 8-11 99.6 82.0 80.7 + 6 4 5 22 39 27 27 56 39 18 7 29-11 99.1 82.0 80.7 + 6 4 6 5 12 22 5 6 4 5 6 8-11 99.1 82.0 80.7 + 6 4 7 3 2 4 3 3 2 0 3 3-11 94.7 82.0 80.7 + 6 4 8 5 0 2 6 4 4 4 6 4-11 91.3 82.0 80.7 + 6 4 9 32 48 80 32 32 22 39 80 46-11 89.5 82.0 80.7 + 6 4 10 18 27 22 7 15 12 12 6 15-11 89.1 82.0 80.7 + 6 4 11 7 9 3 4 4 3 2 6 5-11 90.1 82.1 80.7 + 6 4 12 0 2 0 0 2 2 2 0 1-11 81.6 82.2 80.7 + 6 4 13 5 7 7 15 27 22 6 15 13-11 80.5 82.4 80.6 + 6 4 14 32 80111132 48 56 27 32 65-11 79.4 82.5 80.6 + 6 4 15 22 27 39 32 27 48 32 22 31-11 78.9 82.7 80.6 + 6 4 16 22 15 9 7 7 9 6 6 10-11 77.0 82.8 80.6 + 6 4 17 7 4 4 3 2 3 5 18 6-11 78.5 82.9 80.6 + 6 4 18 27 15 4 3 2 3 4 5 8-11 77.5 83.1 80.5 + 6 4 19 6 0 3 3 2 2 2 3 3-11 76.5 83.3 80.5 + 6 4 20 0 4 3 9 15 5 3 0 5-11 79.3 83.4 80.5 + 6 4 21 4 5 4 4 7 27 5 5 8-11 80.0 83.5 80.5 + 6 4 22 32 32 18 39 18 7 4 3 19-11 83.2 83.6 80.5 + 6 4 23 4 15 15 5 3 5 2 7 7-11 87.7 83.7 80.5 + 6 4 24 12 7 6 6 3 2 2 7 6-11 93.9 83.7 80.5 + 6 4 25 12 3 2 2 4 5 3 0 4-11 96.3 83.8 80.5 + 6 4 26 6 6 3 2 2 3 2 0 3-11101.3 83.9 80.5 + 6 4 27 4 5 4 3 5 5 3 4 4-11102.0 84.0 80.5 + 6 4 28 15 12 22 15 6 3 3 5 10-11101.5 84.2 80.5 + 6 4 29 3 2 2 3 2 2 2 3 2-11102.7 84.3 80.5 + 6 4 30 0 0 0 0 0 0 0 0 0-11101.4 84.3 80.5 + 6 5 1 0 2 4 3 0 0 0 2 1-11 94.8 84.3 80.5 + 6 5 2 6 0 4 2 3 4 5 3 3-11 90.9 84.4 80.5 + 6 5 3 4 2 2 0 0 3 6 6 3-11 90.4 84.4 80.5 + 6 5 4 3 6 12 7 39 18 12 9 13-11 93.4 84.4 80.6 + 6 5 5 27 15 12 9 5 4 2 4 10-11 88.2 84.5 80.6 + 6 5 6 5 12 5 5 22 48 32 39 21-11 88.6 84.5 80.6 + 6 5 7 15 22 48 18 12 7 12 9 18-11 87.8 84.6 80.6 + 6 5 8 9 12 7 5 3 2 3 3 6-11 86.3 84.5 80.6 + 6 5 9 3 2 4 5 2 4 2 4 3-11 84.2 84.5 80.7 + 6 5 10 0 0 0 2 2 2 6 12 3-11 79.8 84.4 80.7 + 6 5 11 15 22 22 15 15 9 18 22 17-11 77.9 84.2 80.7 + 6 5 12 32 18 18 7 15 6 7 9 14-11 77.3 84.1 80.7 + 6 5 13 18 18 7 6 6 4 9 9 10-11 75.0 83.9 80.8 + 6 5 14 15 12 6 5 5 3 3 4 7-11 73.6 83.5 80.8 + 6 5 15 4 4 3 2 3 3 3 5 3-11 73.2 83.3 80.8 + 6 5 16 3 2 0 2 3 2 0 2 2-11 73.1 83.0 80.8 + 6 5 17 5 6 3 3 6 7 3 5 5-11 73.6 82.7 80.8 + 6 5 18 5 7 15 12 6 32 22 9 14-11 75.0 82.6 80.8 + 6 5 19 6 7 7 3 4 5 7 9 6-11 77.1 82.5 80.8 + 6 5 20 6 5 6 6 3 6 6 5 5-11 78.0 82.5 80.8 + 6 5 21 12 3 4 5 2 7 12 5 6-11 79.4 82.5 80.7 + 6 5 22 12 4 3 5 6 9 7 22 9-11 85.1 82.5 80.7 + 6 5 23 15 5 5 4 5 3 2 0 5-11 86.3 82.6 80.6 + 6 5 24 2 5 5 4 6 4 0 0 3-11 85.9 82.7 80.6 + 6 5 25 2 5 4 2 2 2 5 6 4-11 85.9 82.9 80.6 + 6 5 26 5 3 3 2 4 4 3 3 3-11 83.8 83.0 80.5 + 6 5 27 4 2 2 2 2 2 0 3 2-11 85.2 83.1 80.5 + 6 5 28 4 6 4 7 5 3 4 6 5-11 87.0 83.2 80.5 + 6 5 29 3 2 2 2 2 3 3 5 3-11 83.3 83.2 80.5 + 6 5 30 4 4 2 6 22 9 12 6 8-11 82.3 83.2 80.5 + 6 5 31 9 4 4 3 6 4 6 3 5-11 80.6 83.1 80.5 + 6 6 1 9 7 6 15 7 12 15 7 10-11 79.4 83.1 80.5 + 6 6 2 9 9 7 5 4 5 4 3 6-11 77.5 82.9 80.5 + 6 6 3 5 3 4 3 6 4 3 4 4-11 78.1 82.7 80.4 + 6 6 4 2 2 2 2 2 2 3 2 2-11 77.8 82.5 80.4 + 6 6 5 3 3 3 2 2 5 4 2 3-11 80.2 82.2 80.4 + 6 6 6 7 6 22 32 18 18 56 27 23-11 80.3 81.8 80.4 + 6 6 7 27 18 15 15 18 15 18 39 21-11 85.2 81.5 80.5 + 6 6 8 27 15 22 15 15 27 12 12 18-11 82.5 81.2 80.6 + 6 6 9 18 7 9 7 6 6 9 6 9-11 80.0 80.8 80.6 + 6 6 10 9 7 5 5 9 7 9 6 7-11 78.5 80.5 80.6 + 6 6 11 7 5 4 3 5 4 4 5 5-11 76.7 80.2 80.6 + 6 6 12 4 0 3 2 5 4 3 4 3-11 76.5 80.0 80.6 + 6 6 13 4 2 0 0 3 2 3 4 2-11 79.5 79.9 80.7 + 6 6 14 4 3 2 5 4 4 12 15 6-11 77.7 79.7 80.7 + 6 6 15 7 18 32 27 18 22 22 18 21-11 78.8 79.6 80.7 + 6 6 16 15 7 9 4 4 6 12 7 8-11 77.7 79.4 80.7 + 6 6 17 7 9 18 5 7 7 7 3 8-11 75.6 79.3 80.7 + 6 6 18 0 6 12 15 4 3 3 4 6-11 75.7 79.2 80.7 + 6 6 19 7 3 3 0 2 2 0 2 2-11 75.7 79.1 80.7 + 6 6 20 6 2 2 3 4 4 2 2 3-11 75.3 79.0 80.6 + 6 6 21 0 0 2 2 3 3 3 3 2-11 75.1 79.0 80.6 + 6 6 22 4 7 5 4 5 4 7 3 5-11 74.4 78.9 80.5 + 6 6 23 0 0 2 2 2 3 3 2 2-11 74.1 78.9 80.5 + 6 6 24 0 0 2 2 4 3 5 3 2-11 76.1 78.9 80.5 + 6 6 25 7 4 3 4 3 4 2 3 4-11 76.5 78.9 80.4 + 6 6 26 2 0 0 2 3 2 2 2 2-11 79.0 78.9 80.4 + 6 6 27 2 2 2 3 7 6 7 7 5-11 81.2 78.9 80.3 + 6 6 28 12 7 18 15 27 7 12 12 14-11 86.3 78.8 80.3 + 6 6 29 12 7 7 9 7 15 12 12 10-11 88.4 78.8 80.2 + 6 6 30 9 6 7 6 12 7 5 5 7-11 89.0 78.8 80.2 + 6 7 1 3 7 4 4 5 2 2 2 4-11 88.4 78.8 80.2 + 6 7 2 2 2 2 2 2 3 2 0 2-11 90.0 78.8 80.2 + 6 7 3 0 2 3 3 2 3 4 3 3-11 88.8 78.8 80.2 + 6 7 4 2 4 3 7 22 15 15 27 12-11 95.1 78.8 80.2 + 6 7 5 32 27 48 7 6 9 9 15 19-11 87.5 78.9 80.2 + 6 7 6 18 6 12 6 5 6 5 6 8-11 87.9 78.9 80.2 + 6 7 7 6 4 4 5 7 9 5 4 6-11 82.6 79.1 80.2 + 6 7 8 2 3 4 2 2 2 2 3 3-11 80.0 79.2 80.3 + 6 7 9 2 2 2 2 2 2 3 18 4-11 77.1 79.2 80.3 + 6 7 10 12 5 3 6 15 18 15 5 10-11 75.2 79.4 80.3 + 6 7 11 2 3 3 4 7 9 12 9 6-11 73.6 79.5 80.3 + 6 7 12 9 7 9 27 27 6 5 5 12-11 72.9 79.6 80.4 + 6 7 13 7 9 6 5 4 2 2 3 5-11 72.2 79.7 80.4 + 6 7 14 3 5 3 7 32 27 18 9 13-11 73.3 79.7 80.4 + 6 7 15 2 6 5 4 7 3 3 4 4-11 72.6 79.7 80.4 + 6 7 16 0 5 4 2 2 4 3 2 3-11 73.2 79.7 80.4 + 6 7 17 3 4 3 3 4 3 4 0 3-11 73.3 79.7 80.4 + 6 7 18 2 3 0 3 2 3 3 2 2-11 73.6 79.6 80.4 + 6 7 19 3 4 2 0 0 0 2 3 2-11 73.4 79.5 80.4 + 6 7 20 2 4 2 3 3 2 2 3 3-11 74.5 79.5 80.4 + 6 7 21 3 2 2 2 2 0 2 0 2-11 75.0 79.4 80.3 + 6 7 22 3 6 4 3 2 3 2 6 4-11 75.9 79.5 80.3 + 6 7 23 5 4 4 4 3 3 3 3 4-11 78.9 79.6 80.3 + 6 7 24 3 2 6 5 6 9 4 6 5-11 79.5 79.5 80.2 + 6 7 25 9 12 5 2 5 4 4 9 6-11 77.9 79.5 80.2 + 6 7 26 12 5 3 4 3 4 2 2 4-11 77.0 79.6 80.2 + 6 7 27 3 2 3 3 7 7 15 22 8-11 76.7 79.6 80.1 + 6 7 28 80 56 22 15 9 7 3 5 25-11 74.9 79.7 80.1 + 6 7 29 7 3 4 4 3 3 5 3 4-11 75.2 79.9 80.1 + 6 7 30 4 5 4 3 2 3 2 6 4-11 76.2 80.0 80.1 + 6 7 31 6 12 15 22 27 9 7 15 14-11 74.6 80.2 80.1 + 6 8 1 12 15 18 15 9 15 4 6 12-11 74.9 80.3 80.2 + 6 8 2 12 12 7 9 7 6 5 15 9-11 74.3 80.5 80.2 + 6 8 3 12 5 3 4 3 3 5 5 5-11 73.4 80.6 80.2 + 6 8 4 2 4 2 0 0 0 3 3 2-11 71.6 80.7 80.3 + 6 8 5 5 5 3 2 2 2 3 2 3-11 71.5 80.8 80.3 + 6 8 6 3 2 3 2 4 5 2 3 3-11 71.5 80.8 80.3 + 6 8 7 15 22 48 67 32 39 18 12 32-11 71.8 80.8 80.3 + 6 8 8 9 12 18 9 9 7 9 3 10-11 73.4 80.7 80.3 + 6 8 9 7 18 4 15 7 5 4 15 9-11 76.1 80.6 80.4 + 6 8 10 3 2 2 2 3 2 3 15 4-11 82.5 80.4 80.4 + 6 8 11 5 5 4 5 7 6 3 4 5-11 86.2 80.2 80.4 + 6 8 12 7 9 5 4 5 6 4 3 5-11 87.0 79.9 80.4 + 6 8 13 0 0 2 3 2 3 2 2 2-11 88.1 79.7 80.4 + 6 8 14 2 0 3 3 5 3 2 2 3-11 88.6 79.4 80.4 + 6 8 15 2 3 3 3 2 4 2 5 3-11 87.8 79.2 80.4 + 6 8 16 4 2 2 3 4 2 2 3 3-11103.2 79.0 80.3 + 6 8 17 0 2 7 4 6 5 6 7 5-11 88.0 78.9 80.3 + 6 8 18 7 22 12 9 9 12 7 12 11-11 90.6 78.8 80.3 + 6 8 19 6 4 3 12 67 67 67 80 38-11 90.9 78.7 80.3 + 6 8 20 56 80 7 4 7 9 9 6 22-11 90.2 78.8 80.3 + 6 8 21 7 15 6 6 7 12 15 32 13-11 89.8 78.8 80.3 + 6 8 22 18 9 48 32 22 32 18 7 23-11 82.7 78.9 80.3 + 6 8 23 6 9 12 2 2 2 2 4 5-11 80.1 78.9 80.3 + 6 8 24 7 4 3 2 4 6 4 5 4-11 79.9 79.0 80.3 + 6 8 25 2 0 0 4 2 2 2 0 2-11 78.9 79.0 80.3 + 6 8 26 3 2 3 2 2 2 5 4 3-11 77.3 79.1 80.3 + 6 8 27 6 6 5 12 27 39 22 15 17-11 80.2 79.1 80.3 + 6 8 28 22 15 9 6 6 12 12 12 12-11 78.0 79.2 80.3 + 6 8 29 12 6 9 12 5 9 6 3 8-11 74.4 79.2 80.3 + 6 8 30 4 4 9 7 5 6 9 5 6-11 75.7 79.2 80.3 + 6 8 31 4 4 9 4 6 12 12 12 8-11 84.7 79.2 80.3 + 6 9 1 15 5 7 7 7 18 22 32 14-11 78.3 79.2 80.3 + 6 9 2 12 5 3 5 5 5 9 9 7-11 76.9 79.1 80.3 + 6 9 3 6 9 5 5 5 4 4 7 6-11 77.8 79.0 80.3 + 6 9 4 22 67 22 9 7 12 12 7 20-11 80.3 78.9 80.3 + 6 9 5 15 9 6 12 6 12 7 5 9-11 81.7 78.9 80.3 + 6 9 6 6 7 5 7 9 5 9 4 7-11 85.3 78.8 80.2 + 6 9 7 6 9 18 6 9 9 5 3 8-11 88.1 78.7 80.2 + 6 9 8 5 5 5 2 5 3 2 5 4-11 88.5 78.6 80.2 + 6 9 9 5 4 2 0 0 0 0 2 2-11 86.7 78.5 80.2 + 6 9 10 4 6 4 3 3 6 6 4 5-11 88.5 78.5 80.2 + 6 9 11 9 15 9 5 6 3 2 3 7-11 85.7 78.5 80.2 + 6 9 12 6 4 7 7 4 2 5 5 5-11 85.1 78.5 80.2 + 6 9 13 3 12 9 6 4 3 3 0 5-11 83.9 78.5 80.2 + 6 9 14 3 9 6 5 4 3 2 2 4-11 83.8 78.5 80.2 + 6 9 15 0 0 2 0 0 0 2 0 1-11 81.0 78.6 80.2 + 6 9 16 3 2 0 2 5 6 4 0 3-11 80.1 78.6 80.2 + 6 9 17 4 5 7 22 22 5 27 18 14-11 78.8 78.5 80.2 + 6 9 18 32 27 18 18 15 12 39 22 23-11 75.1 78.5 80.2 + 6 9 19 18 15 22 9 7 5 6 5 11-11 74.0 78.5 80.2 + 6 9 20 7 7 4 2 2 2 3 0 3-11 71.5 78.4 80.1 + 6 9 21 0 2 3 4 4 3 3 3 3-11 72.0 78.3 80.1 + 6 9 22 0 2 0 2 2 2 4 2 2-11 72.9 78.3 80.1 + 6 9 23 2 4 4 3 4 6 18 48 11-11 70.9 78.3 80.1 + 6 9 24 39 48 22 39 22 7 6 9 24-11 70.3 78.2 80.1 + 6 9 25 7 6 5 18 9 4 4 9 8-11 70.6 78.2 80.1 + 6 9 26 6 12 6 4 5 6 6 9 7-11 71.0 77.9 80.1 + 6 9 27 7 5 0 4 2 4 2 0 3-11 72.4 77.9 80.1 + 6 9 28 4 2 3 5 3 2 4 5 4-11 73.3 77.8 80.1 + 6 9 29 7 2 3 2 4 6 6 0 4-11 76.8 77.7 80.0 + 6 9 30 3 18 27 27 7 9 5 12 14-11 77.9 77.7 80.0 + 6 10 1 39 48 32 22 15 15 5 7 23-11 78.6 77.7 80.0 + 6 10 2 7 5 9 5 6 6 6 7 6-11 78.0 77.9 79.9 + 6 10 3 6 9 5 6 12 7 4 6 7-11 76.7 78.0 79.8 + 6 10 4 3 5 3 0 3 9 4 2 4-11 76.7 78.2 79.8 + 6 10 5 4 3 4 3 4 2 5 5 4-11 77.3 78.4 79.7 + 6 10 6 0 0 5 4 2 0 3 3 2-11 76.3 78.6 79.6 + 6 10 7 2 5 4 2 6 18 18 27 10-11 76.4 78.7 79.5 + 6 10 8 12 5 3 7 6 6 5 4 6-11 75.1 78.8 79.5 + 6 10 9 2 12 5 3 2 0 6 5 4-11 74.8 79.0 79.4 + 6 10 10 4 2 2 2 2 2 2 2 2-11 75.0 79.1 79.4 + 6 10 11 4 4 4 2 3 3 2 2 3-11 73.3 79.0 79.3 + 6 10 12 7 3 3 4 6 5 3 9 5-11 73.3 79.0 79.3 + 6 10 13 9 15 39 27 18 15 56 56 29-11 72.9 78.9 79.3 + 6 10 14 32 27 12 18 9 32 27 27 23-11 72.0 78.9 79.2 + 6 10 15 9 18 9 7 5 7 12 7 9-11 70.7 78.8 79.2 + 6 10 16 7 6 6 4 5 5 7 9 6-11 69.1 78.8 79.2 + 6 10 17 5 2 2 4 3 3 3 3 3-11 69.1 78.7 79.2 + 6 10 18 5 6 4 3 0 0 5 4 3-11 69.0 78.6 79.1 + 6 10 19 0 4 0 5 3 2 0 0 2-11 69.0 78.5 79.1 + 6 10 20 7 4 9 7 15 15 15 18 11-11 70.4 78.5 79.1 + 6 10 21 32 15 18 12 15 32 22 12 20-11 74.0 78.4 79.1 + 6 10 22 12 27 12 6 9 12 18 15 14-11 75.1 78.3 79.0 + 6 10 23 4 0 2 4 3 4 4 6 3-11 75.7 78.3 79.0 + 6 10 24 2 3 7 5 5 3 6 4 4-11 74.0 78.4 78.9 + 6 10 25 6 9 5 4 3 3 3 0 4-11 73.9 78.5 78.9 + 6 10 26 3 3 3 4 4 2 0 0 2-11 71.0 78.8 78.8 + 6 10 27 3 2 0 3 2 2 9 9 4-11 71.1 79.1 78.8 + 6 10 28 4 6 9 12 12 15 18 39 14-11 73.7 79.6 78.7 + 6 10 29 22 27 22 9 15 12 32 27 21-11 72.3 79.9 78.7 + 6 10 30 22 9 12 18 5 7 4 4 10-11 74.6 80.1 78.6 + 6 10 31 7 0 2 3 4 5 6 9 5-11 78.9 80.3 78.6 + 6 11 1 6 7 4 4 7 7 6 6 6-11 85.3 80.5 78.6 + 6 11 2 9 7 4 4 6 12 15 9 8-11 86.8 80.8 78.6 + 6 11 3 7 9 5 9 18 5 5 2 8-11 86.0 81.1 78.6 + 6 11 4 7 12 6 7 5 7 9 6 7-11 84.0 81.3 78.5 + 6 11 5 0 4 7 7 7 5 3 3 5-11 83.2 81.5 78.5 + 6 11 6 0 0 5 3 0 0 3 4 2-11 82.1 81.6 78.5 + 6 11 7 0 0 0 0 0 0 0 0 0-11 85.6 81.7 78.5 + 6 11 8 3 0 0 0 0 0 0 0 0-11 84.8 81.7 78.4 + 6 11 9 3 0 2 0 5 15 18 39 10-11 87.7 81.7 78.4 + 6 11 10 48 48 39 80 27 9 27 12 36-11 89.3 81.6 78.4 + 6 11 11 27 22 27 18 15 27 18 15 21-11 95.0 81.5 78.4 + 6 11 12 15 12 7 7 6 3 2 2 7-11 94.7 81.4 78.4 + 6 11 13 3 3 4 0 0 0 0 0 1-11 93.2 81.3 78.4 + 6 11 14 0 5 4 3 4 6 6 15 5-11 92.5 81.3 78.4 + 6 11 15 12 12 2 5 4 4 5 12 7-11 94.0 81.2 78.4 + 6 11 16 32 9 6 3 3 3 2 2 8-11 92.0 81.2 78.4 + 6 11 17 7 12 4 4 9 5 3 2 6-11 87.4 81.1 78.4 + 6 11 18 0 0 0 3 2 2 2 2 1-11 86.8 81.1 78.4 + 6 11 19 5 6 6 7 0 2 0 2 4-11 82.9 81.1 78.4 + 6 11 20 2 2 0 0 3 0 0 0 1-11 78.6 81.2 78.4 + 6 11 21 3 0 0 0 3 0 0 0 1-11 75.6 81.3 78.4 + 6 11 22 0 0 2 6 6 4 12 15 6-11 74.6 81.4 78.3 + 6 11 23 5 7 15 18 15 15 18 27 15-11 74.9 81.6 78.3 + 6 11 24 15 32 27 12 18 7 12 9 17-11 75.5 81.8 78.3 + 6 11 25 12 15 6 6 15 27 27 15 15-11 76.5 82.0 78.2 + 6 11 26 15 18 18 9 9 6 18 15 14-11 76.2 82.2 78.2 + 6 11 27 9 7 9 15 5 7 12 4 9-11 80.2 82.4 78.1 + 6 11 28 5 5 4 5 7 6 6 9 6-11 83.2 82.6 78.1 + 6 11 29 9 22 7 3 2 3 6 6 7-11 82.7 82.8 78.1 + 6 11 30 12 27 48 39 56 32 6 4 28-11 81.8 83.0 78.1 + 6 12 1 4 3 3 4 3 4 12 6 5-11 81.8 83.2 78.1 + 6 12 2 3 3 3 0 2 3 2 3 2-11 84.8 83.2 78.1 + 6 12 3 4 6 3 0 2 3 4 5 3-11 89.7 83.3 78.1 + 6 12 4 0 0 0 0 0 0 2 2 1-11 94.5 83.3 78.2 + 6 12 5 0 0 0 9 3 4 3 6 3-11 99.4 83.4 78.2 + 6 12 6 22 22 18 39 27 18 39 22 26-11110.2 83.5 78.2 + 6 12 7 48 27 32 22 22 22 9 18 25-11121.0 83.6 78.2 + 6 12 8 18 48 32 22 18 15 22 15 24-11 93.1 83.6 78.2 + 6 12 9 6 7 5 2 0 12 12 22 8-11 89.6 83.6 78.2 + 6 12 10 9 18 7 12 22 27 12 22 16-11 87.3 83.6 78.2 + 6 12 11 15 22 22 7 6 3 7 32 14-11 89.4 83.6 78.2 + 6 12 12 15 56 22 9 32 27 27 27 27-11101.0 83.5 78.2 + 6 12 13 18 18 4 3 2 4 4 12 8-11 91.7 83.3 78.2 + 6 12 14 15 9 7 7 48 56 56179 47-11 91.4 83.2 78.1 + 6 12 15236179111 67 80 27 27 22 94-11 85.4 83.2 78.1 + 6 12 16 15 18 5 5 3 12 18 18 12-11 80.0 83.1 78.1 + 6 12 17 15 5 4 2 3 5 12 4 6-11 79.5 83.0 78.1 + 6 12 18 6 9 4 7 6 12 9 32 11-11 73.0 82.9 78.1 + 6 12 19 15 18 7 18 18 9 9 9 13-11 72.0 82.9 78.0 + 6 12 20 27 18 15 12 22 22 39 39 24-11 70.3 82.8 78.0 + 6 12 21 39 18 22 18 15 18 9 7 18-11 71.6 82.8 78.0 + 6 12 22 18 18 22 32 15 12 12 18 18-11 72.2 82.7 78.0 + 6 12 23 12 12 22 9 18 27 18 9 16-11 71.2 82.6 78.0 + 6 12 24 12 9 9 7 15 18 15 7 12-11 71.9 82.5 77.9 + 6 12 25 18 12 9 5 7 7 2 5 8-11 73.9 82.4 77.9 + 6 12 26 5 4 6 3 7 6 4 0 4-11 72.5 82.2 77.9 + 6 12 27 3 3 2 2 3 3 2 2 3-11 70.9 82.1 77.9 + 6 12 28 2 0 0 2 2 3 5 5 2-11 73.8 82.0 77.9 + 6 12 29 4 2 0 2 2 3 4 3 3-11 75.8 81.9 77.8 + 6 12 30 4 2 2 4 3 3 4 2 3-11 78.2 81.8 77.8 + 6 12 31 3 0 0 2 2 2 2 3 2-11 82.3 81.8 77.8 + 7 1 1 5 3 4 12 22 12 7 9 9-11 85.5 81.8 77.7 + 7 1 2 39 32 9 27 39 15 12 18 24-11 88.6 81.8 77.7 + 7 1 3 9 22 15 22 32 27 15 22 21-11 84.8 81.7 77.6 + 7 1 4 15 22 27 18 15 18 12 12 17-11 88.0 81.7 77.6 + 7 1 5 12 9 7 9 15 9 6 6 9-11 86.5 81.6 77.6 + 7 1 6 5 7 3 2 3 12 5 5 5-11 85.6 81.5 77.5 + 7 1 7 2 0 0 2 3 0 0 2 1-11 85.3 81.4 77.5 + 7 1 8 3 5 0 2 4 4 5 2 3-11 85.7 81.3 77.5 + 7 1 9 0 2 5 3 4 5 6 3 4-11 89.1 81.2 77.6 + 7 1 10 2 9 6 7 5 12 5 4 6-11 83.3 81.1 77.6 + 7 1 11 5 9 9 5 7 6 6 4 6-11 81.2 81.0 77.6 + 7 1 12 15 2 2 2 2 2 0 0 3-11 81.0 80.9 77.6 + 7 1 13 0 0 0 0 0 0 0 0 0-11 78.7 80.7 77.6 + 7 1 14 0 0 2 2 6 3 5 7 3-11 79.4 80.4 77.6 + 7 1 15 7 12 15 15 48 15 12 4 16-11 79.3 80.1 77.7 + 7 1 16 2 39 4 5 7 12 12 27 14-11 76.1 79.7 77.7 + 7 1 17 32 22 27 18 18 12 39 32 25-11 75.6 79.1 77.7 + 7 1 18 15 18 18 18 15 18 18 27 18-11 74.4 78.8 77.6 + 7 1 19 15 32 7 7 12 9 7 15 13-11 73.9 78.6 77.6 + 7 1 20 15 7 9 9 4 5 6 9 8-11 76.3 78.5 77.6 + 7 1 21 9 15 15 7 6 6 6 2 8-11 76.1 78.3 77.6 + 7 1 22 3 0 4 4 3 3 6 0 3-11 76.0 77.9 77.6 + 7 1 23 5 7 2 4 2 2 0 0 3-11 76.8 77.7 77.5 + 7 1 24 0 0 2 3 2 4 4 3 2-11 77.9 77.4 77.5 + 7 1 25 0 0 2 4 2 2 2 6 2-11 77.5 77.2 77.5 + 7 1 26 3 2 4 3 4 3 0 4 3-11 77.3 77.1 77.5 + 7 1 27 3 7 2 3 3 0 3 7 4-11 78.0 77.0 77.5 + 7 1 28 9 7 3 3 2 2 5 6 5-11 79.3 77.0 77.5 + 7 1 29 18 9 15 7 56 56 39 27 28-11 84.1 77.0 77.5 + 7 1 30 22 32 27 18 22 18 22 27 24-11 84.9 77.0 77.4 + 7 1 31 18 15 18 18 15 27 27 18 20-11 86.6 77.0 77.4 + 7 2 1 15 6 9 9 5 4 9 12 9-11 87.3 77.0 77.4 + 7 2 2 3 4 6 4 3 5 3 4 4-11 87.7 76.9 77.4 + 7 2 3 6 6 3 3 0 0 0 0 2-11 84.8 76.9 77.4 + 7 2 4 2 2 4 4 0 0 2 3 2-11 81.3 76.8 77.4 + 7 2 5 4 5 4 4 7 6 7 7 6-11 80.7 76.8 77.4 + 7 2 6 6 12 12 7 2 4 4 3 6-11 79.6 76.8 77.4 + 7 2 7 15 7 12 15 9 9 22 12 13-11 79.8 76.7 77.4 + 7 2 8 9 18 9 7 7 12 5 4 9-11 76.3 76.7 77.4 + 7 2 9 6 12 7 4 2 3 5 4 5-11 74.6 76.6 77.4 + 7 2 10 7 4 2 2 2 6 6 4 4-11 73.9 76.5 77.3 + 7 2 11 0 3 0 0 0 0 6 6 2-11 72.8 76.3 77.3 + 7 2 12 2 2 2 9 15 12 7 15 8-11 71.8 76.1 77.2 + 7 2 13 15 15 9 7 6 18 32 67 21-11 70.9 75.9 77.2 + 7 2 14 32 15 15 18 9 18 32 9 19-11 70.9 75.8 77.1 + 7 2 15 12 32 7 12 7 9 15 9 13-11 71.8 75.6 77.0 + 7 2 16 7 7 6 4 7 6 9 15 8-11 72.9 75.5 77.0 + 7 2 17 12 12 5 5 12 9 5 12 9-11 73.5 75.3 76.9 + 7 2 18 6 0 4 6 5 6 6 5 5-11 74.1 75.2 76.9 + 7 2 19 0 0 2 3 5 6 2 3 3-11 73.2 75.0 76.8 + 7 2 20 0 2 0 3 2 3 0 4 2-11 73.1 74.8 76.7 + 7 2 21 2 3 0 0 0 0 0 0 1-11 73.2 74.7 76.7 + 7 2 22 0 0 0 0 3 5 3 6 2-11 73.9 74.6 76.7 + 7 2 23 6 3 0 0 2 3 4 3 3-11 73.6 74.5 76.7 + 7 2 24 7 0 2 2 2 0 2 2 2-11 73.9 74.4 76.7 + 7 2 25 5 3 2 0 3 3 6 3 3-11 75.1 74.3 76.6 + 7 2 26 15 18 6 6 0 0 0 0 6-11 73.9 74.2 76.6 + 7 2 27 0 2 15 7 5 15 22 27 12-11 73.4 74.2 76.6 + 7 2 28 22 32 32 22 12 15 15 27 22-11 74.4 74.1 76.6 + 7 3 1 32 12 12 7 12 9 3 3 11-11 73.4 74.1 76.6 + 7 3 2 0 5 7 4 4 3 5 5 4-11 74.2 74.0 76.5 + 7 3 3 0 0 2 0 3 3 2 3 2-11 72.0 73.9 76.5 + 7 3 4 0 2 4 4 4 2 5 7 4-11 71.3 73.8 76.5 + 7 3 5 15 3 3 15 7 6 22 9 10-11 70.8 73.7 76.5 + 7 3 6 22 39 9 22 22 6 4 18 18-11 70.8 73.6 76.5 + 7 3 7 22 18 18 18 15 18 12 12 17-11 71.8 73.5 76.4 + 7 3 8 12 7 3 3 2 2 4 2 4-11 71.4 73.4 76.4 + 7 3 9 0 2 0 0 3 3 4 4 2-11 70.6 73.3 76.3 + 7 3 10 6 4 4 4 3 4 7 4 5-11 70.2 73.2 76.3 + 7 3 11 3 2 4 12 9 9 12 9 8-11 70.1 73.0 76.2 + 7 3 12 5 9 4 12 22 12 15 15 12-11 70.3 72.8 76.2 + 7 3 13 48 27 27 27 18 18 15 15 24-11 70.6 72.6 76.1 + 7 3 14 18 18 7 12 15 9 9 4 12-11 69.2 72.4 76.1 + 7 3 15 5 9 12 7 7 7 12 18 10-11 68.5 72.2 76.0 + 7 3 16 27 22 4 4 9 4 6 22 12-11 68.0 72.1 76.0 + 7 3 17 15 12 6 6 6 6 5 0 7-11 68.6 72.1 75.9 + 7 3 18 3 2 3 3 5 5 3 3 3-11 69.8 72.1 75.9 + 7 3 19 0 3 2 4 2 2 2 3 2-11 69.5 72.2 75.9 + 7 3 20 0 0 0 0 2 2 2 2 1-11 72.0 72.3 75.8 + 7 3 21 0 0 3 2 3 2 0 0 1-11 72.3 72.4 75.8 + 7 3 22 4 4 2 3 2 5 3 2 3-11 72.0 72.6 75.8 + 7 3 23 2 5 5 9 12 18 9 18 10-11 72.0 72.8 75.8 + 7 3 24 27 39 22 22 22 6 5 5 19-11 72.4 72.9 75.8 + 7 3 25 9 5 7 32 18 5 4 5 11-11 73.3 73.1 75.8 + 7 3 26 4 6 5 6 7 32 15 9 11-11 73.5 73.2 75.8 + 7 3 27 7 12 12 18 5 7 18 6 11-11 73.0 73.3 75.8 + 7 3 28 15 15 7 5 3 4 4 2 7-11 74.3 73.4 75.7 + 7 3 29 4 3 0 2 2 2 3 5 3-11 73.6 73.4 75.7 + 7 3 30 12 6 5 6 5 2 0 0 5-11 73.9 73.4 75.7 + 7 3 31 0 2 4 3 5 3 3 7 3-11 73.1 73.4 75.7 + 7 4 1 48 32 32 22 27 18 22 32 29-11 71.6 73.4 75.7 + 7 4 2 27 48 27 18 15 9 18 18 23-11 71.1 73.4 75.6 + 7 4 3 15 18 9 6 6 22 9 6 11-11 70.8 73.4 75.6 + 7 4 4 18 18 6 6 6 5 6 7 9-11 70.8 73.4 75.6 + 7 4 5 5 5 5 2 3 3 2 4 4-11 71.0 73.5 75.5 + 7 4 6 5 6 4 3 2 2 4 4 4-11 71.1 73.5 75.5 + 7 4 7 12 4 0 0 3 2 0 2 3-11 71.4 73.6 75.5 + 7 4 8 0 0 3 3 3 3 2 7 3-11 71.3 73.6 75.5 + 7 4 9 22 18 15 9 5 3 3 4 10-11 70.2 73.7 75.5 + 7 4 10 7 2 0 6 12 12 7 9 7-11 69.7 73.7 75.4 + 7 4 11 9 7 3 3 2 2 2 2 4-11 69.5 73.7 75.4 + 7 4 12 9 9 6 12 22 9 6 3 10-11 68.6 73.7 75.4 + 7 4 13 3 0 2 2 2 0 0 0 1-11 68.6 73.7 75.4 + 7 4 14 0 4 3 0 5 6 3 9 4-11 68.6 73.7 75.4 + 7 4 15 7 7 5 5 4 4 2 0 4-11 69.8 73.7 75.4 + 7 4 16 0 0 0 0 2 0 0 0 0-11 69.8 73.7 75.3 + 7 4 17 0 4 6 7 18 12 12 12 9-11 69.8 73.6 75.3 + 7 4 18 15 18 4 5 4 5 9 12 9-11 69.3 73.6 75.3 + 7 4 19 12 7 5 4 4 2 3 4 5-11 68.9 73.6 75.3 + 7 4 20 5 5 3 0 2 2 0 5 3-11 69.1 73.7 75.3 + 7 4 21 2 4 0 0 0 2 2 3 2-11 69.4 73.8 75.3 + 7 4 22 9 9 5 7 7 12 12 12 9-11 69.7 73.9 75.3 + 7 4 23 27 48 32 5 3 5 2 2 16-11 69.8 74.1 75.3 + 7 4 24 5 3 3 3 3 4 6 5 4-11 74.0 74.3 75.2 + 7 4 25 7 6 3 3 9 7 3 2 5-11 77.4 74.6 75.2 + 7 4 26 12 3 3 4 5 9 7 6 6-11 81.5 74.8 75.2 + 7 4 27 7 5 3 12 7 22 27 48 16-11 83.8 75.0 75.2 + 7 4 28 39 22 27 32 27 22 22 32 28-11 86.1 75.2 75.2 + 7 4 29 27 27 39 18 12 9 15 18 21-11 86.0 75.4 75.2 + 7 4 30 32 27 27 7 7 9 5 4 15-11 88.2 75.5 75.1 + 7 5 1 9 12 9 3 4 6 5 6 7-11 87.6 75.6 75.1 + 7 5 2 4 4 0 2 2 3 0 2 2-11 88.8 75.6 75.1 + 7 5 3 3 2 5 3 4 6 5 3 4-11 84.4 75.6 75.0 + 7 5 4 4 2 0 4 3 2 4 0 2-11 83.9 75.6 75.0 + 7 5 5 3 3 3 2 0 0 0 3 2-11 82.4 75.6 74.9 + 7 5 6 2 0 0 0 0 2 2 3 1-11 79.4 75.6 74.9 + 7 5 7 3 4 15 9 15 48 15 18 16-11 77.1 75.5 74.8 + 7 5 8 9 27 18 9 15 9 12 9 14-11 74.7 75.5 74.8 + 7 5 9 5 5 6 5 5 5 4 4 5-11 73.5 75.4 74.7 + 7 5 10 3 0 0 2 2 4 9 4 3-11 72.6 75.3 74.7 + 7 5 11 2 2 0 2 4 3 4 3 3-11 72.9 75.3 74.6 + 7 5 12 3 4 2 4 2 2 0 2 2-11 72.9 75.2 74.6 + 7 5 13 2 5 3 3 2 2 0 0 2-11 75.0 75.2 74.5 + 7 5 14 2 2 2 4 2 3 5 2 3-11 74.4 75.1 74.4 + 7 5 15 4 3 4 5 5 3 5 5 4-11 78.5 75.1 74.4 + 7 5 16 2 4 3 3 3 2 3 5 3-11 78.9 75.1 74.3 + 7 5 17 4 4 3 3 4 2 6 12 5-11 78.3 75.1 74.2 + 7 5 18 9 6 22 27 32 15 9 12 17-11 77.6 75.2 74.2 + 7 5 19 7 9 15 12 12 12 18 9 12-11 76.6 75.3 74.1 + 7 5 20 12 6 5 5 4 4 5 9 6-11 75.9 75.3 74.1 + 7 5 21 9 4 0 2 2 4 6 15 5-11 75.0 75.4 74.0 + 7 5 22 4 4 5 5 15 15 32 27 13-11 73.7 75.5 74.0 + 7 5 23 32 15 39 56 27 9 48 48 34-11 71.9 75.6 74.0 + 7 5 24 67 18 18 9 27 27 39 39 31-11 71.7 75.7 74.0 + 7 5 25 6 9 15 15 12 18 27 9 14-11 69.9 75.7 73.9 + 7 5 26 15 22 9 15 15 15 9 7 13-11 69.5 75.8 73.9 + 7 5 27 9 7 12 15 9 15 9 6 10-11 68.8 75.8 73.9 + 7 5 28 9 6 4 4 4 0 2 3 4-11 70.5 75.9 73.9 + 7 5 29 2 4 4 3 4 6 4 4 4-11 71.5 76.0 73.8 + 7 5 30 5 4 3 3 3 3 2 2 3-11 72.6 76.1 73.8 + 7 5 31 3 2 2 2 2 3 5 7 3-11 76.7 76.3 73.8 + 7 6 1 7 6 3 6 3 6 9 9 6-11 81.6 76.4 73.7 + 7 6 2 7 7 7 5 3 6 4 6 6-11 85.6 76.6 73.7 + 7 6 3 6 6 4 4 6 18 27 12 10-11 89.5 76.7 73.7 + 7 6 4 12 7 4 5 7 12 12 3 8-11 88.2 76.7 73.6 + 7 6 5 2 2 2 2 3 3 2 3 2-11 83.6 76.7 73.6 + 7 6 6 0 2 2 2 3 4 2 2 2-11 84.7 76.7 73.5 + 7 6 7 3 2 2 2 3 3 3 3 3-11 85.7 76.5 73.4 + 7 6 8 12 7 6 3 7 7 6 9 7-11 86.8 76.4 73.3 + 7 6 9 4 5 7 6 7 5 5 7 6-11 81.0 76.2 73.3 + 7 6 10 15 6 12 6 4 3 5 3 7-11 78.2 76.0 73.2 + 7 6 11 4 0 2 2 2 4 3 4 3-11 75.6 75.7 73.2 + 7 6 12 2 3 2 2 2 2 3 3 2-11 72.6 75.5 73.2 + 7 6 13 3 2 3 4 4 7 18 7 6-11 73.1 75.3 73.2 + 7 6 14 15 15 9 32 12 22 18 22 18-11 70.6 75.1 73.2 + 7 6 15 9 12 9 6 6 5 2 5 7-11 71.3 75.0 73.2 + 7 6 16 9 7 3 3 9 6 5 3 6-11 70.2 74.9 73.2 + 7 6 17 6 5 6 6 9 5 5 3 6-11 68.9 74.8 73.2 + 7 6 18 4 3 4 5 3 6 7 5 5-11 68.8 74.7 73.2 + 7 6 19 9 5 5 4 5 6 3 2 5-11 68.5 74.7 73.2 + 7 6 20 4 4 5 4 3 4 2 3 4-11 67.8 74.7 73.2 + 7 6 21 3 7 6 18 18 18 15 27 14-11 67.6 74.7 73.2 + 7 6 22 18 9 12 18 7 7 12 18 13-11 67.5 74.6 73.2 + 7 6 23 15 12 12 5 4 4 5 6 8-11 68.1 74.6 73.2 + 7 6 24 9 5 4 6 6 4 7 4 6-11 69.1 74.6 73.2 + 7 6 25 5 2 0 2 4 4 2 4 3-11 69.8 74.5 73.2 + 7 6 26 0 2 2 5 5 2 3 3 3-11 72.8 74.4 73.2 + 7 6 27 7 6 5 2 2 4 3 5 4-11 75.7 74.3 73.1 + 7 6 28 5 3 3 3 6 4 3 7 4-11 77.4 74.2 73.1 + 7 6 29 4 4 5 4 6 7 27 15 9-11 77.8 74.1 73.1 + 7 6 30 7 6 5 3 3 3 3 3 4-11 76.4 74.1 73.1 + 7 7 1 3 4 4 5 4 4 3 5 4-11 76.8 74.0 73.1 + 7 7 2 2 3 4 4 3 3 0 2 3-11 75.1 73.9 73.1 + 7 7 3 2 4 3 5 6 12 6 22 8-11 74.2 73.9 73.1 + 7 7 4 15 18 15 32 15 12 12 4 15-11 74.9 73.9 73.0 + 7 7 5 5 5 6 5 5 3 4 6 5-11 73.9 73.9 73.0 + 7 7 6 4 4 4 4 5 6 6 4 5-11 73.5 73.9 73.0 + 7 7 7 6 6 5 2 3 4 5 7 5-11 75.5 73.9 72.9 + 7 7 8 6 6 4 3 3 2 3 2 4-11 77.6 73.9 72.9 + 7 7 9 2 2 2 2 2 2 2 0 2-11 79.7 73.9 72.9 + 7 7 10 0 2 4 2 3 2 5 18 5-11 80.8 73.8 72.9 + 7 7 11 22 27 39 48 9 15 6 5 21-11 81.1 73.7 72.8 + 7 7 12 6 6 9 2 4 3 4 5 5-11 79.5 73.6 72.8 + 7 7 13 2 3 2 2 2 3 5 12 4-11 80.6 73.4 72.8 + 7 7 14 6 4 5 15 18 32 56 18 19-11 78.2 73.2 72.7 + 7 7 15 32 22 15 6 5 5 5 6 12-11 77.1 73.0 72.7 + 7 7 16 4 5 5 4 3 3 4 2 4-11 75.3 72.9 72.7 + 7 7 17 5 3 3 4 3 3 3 2 3-11 74.7 72.8 72.7 + 7 7 18 3 3 3 2 2 2 2 2 2-11 71.8 72.6 72.7 + 7 7 19 0 0 2 2 3 3 2 3 2-11 70.5 72.4 72.7 + 7 7 20 2 5 15 27 27 9 6 18 14-11 69.5 72.3 72.6 + 7 7 21 7 22 9 5 12 5 15 5 10-11 68.6 72.2 72.6 + 7 7 22 3 4 4 3 2 3 2 0 3-11 68.3 72.2 72.6 + 7 7 23 2 3 3 4 3 2 3 5 3-11 69.3 72.1 72.6 + 7 7 24 0 2 2 3 4 3 2 3 2-11 70.2 72.1 72.6 + 7 7 25 2 2 0 2 3 3 2 0 2-11 70.8 72.1 72.5 + 7 7 26 0 2 2 3 5 22 22 15 9-11 70.6 72.1 72.5 + 7 7 27 12 15 6 5 9 5 2 2 7-11 70.9 72.1 72.5 + 7 7 28 4 3 4 2 2 3 3 7 4-11 72.1 72.0 72.5 + 7 7 29 18 22 7 12 12 7 12 22 14-11 71.1 72.0 72.5 + 7 7 30 15 15 15 5 5 9 7 4 9-11 71.0 72.0 72.4 + 7 7 31 3 3 7 5 6 4 4 6 5-11 70.1 72.0 72.4 + 7 8 1 22 12 18 15 12 12 15 15 15-11 70.4 72.0 72.4 + 7 8 2 4 4 7 4 7 7 5 2 5-11 71.5 72.0 72.3 + 7 8 3 4 5 4 2 5 4 2 4 4-11 72.4 72.0 72.3 + 7 8 4 2 2 2 2 2 0 0 3 2-11 71.4 72.0 72.2 + 7 8 5 0 0 0 2 2 2 4 4 2-11 70.9 72.0 72.2 + 7 8 6 3 2 6 6 6 12 27 67 16-11 72.0 71.9 72.1 + 7 8 7 48 18 27 9 15 18 22 18 22-11 71.0 71.8 72.1 + 7 8 8 7 12 7 3 4 3 3 4 5-11 71.0 71.7 72.1 + 7 8 9 4 2 4 5 2 3 4 3 3-11 69.3 71.5 72.0 + 7 8 10 2 2 5 9 32 32 22 15 15-11 69.3 71.4 72.0 + 7 8 11 9 7 9 6 7 9 18 9 9-11 69.5 71.3 72.0 + 7 8 12 6 5 5 7 4 4 3 2 5-11 70.0 71.2 72.0 + 7 8 13 4 3 0 2 2 2 2 3 2-11 69.5 71.1 72.0 + 7 8 14 4 2 3 2 3 3 3 9 4-11 70.3 71.0 72.0 + 7 8 15 12 12 5 5 7 9 7 6 8-11 69.3 70.9 72.0 + 7 8 16 7 4 6 7 3 3 5 3 5-11 69.0 70.9 72.0 + 7 8 17 7 3 0 2 3 3 4 5 3-11 69.3 70.8 72.0 + 7 8 18 6 2 0 2 0 0 3 2 2-11 69.6 70.6 72.0 + 7 8 19 0 0 2 4 12 6 2 2 4-11 69.4 70.5 71.9 + 7 8 20 3 2 2 2 2 2 3 4 3-11 70.7 70.3 71.9 + 7 8 21 7 3 2 4 5 4 2 3 4-11 70.9 70.1 71.9 + 7 8 22 0 2 2 4 6 5 4 0 3-11 71.6 70.0 71.9 + 7 8 23 0 2 2 3 3 0 2 0 2-11 72.4 69.8 71.9 + 7 8 24 0 3 2 2 0 2 2 0 1-11 73.2 69.7 71.9 + 7 8 25 9 3 3 7 15 6 9 5 7-11 73.1 69.5 71.9 + 7 8 26 6 5 6 5 12 12 27 15 11-11 71.6 69.5 71.9 + 7 8 27 15 9 22 7 7 7 27 15 14-11 70.7 69.4 71.9 + 7 8 28 15 9 7 22 7 4 7 6 10-11 71.6 69.3 71.8 + 7 8 29 7 3 3 2 4 4 6 6 4-11 71.0 69.3 71.8 + 7 8 30 6 7 4 3 3 2 3 5 4-11 73.0 69.3 71.8 + 7 8 31 6 4 4 5 3 5 12 9 6-11 72.2 69.3 71.8 + 7 9 1 7 5 9 9 9 9 12 22 10-11 72.1 69.3 71.8 + 7 9 2 39 39 15 22 27 12 27 9 24-11 70.6 69.3 71.8 + 7 9 3 9 12 7 12 12 9 5 12 10-11 69.1 69.2 71.8 + 7 9 4 7 6 6 6 4 3 4 6 5-11 69.4 69.2 71.8 + 7 9 5 12 15 18 9 9 5 9 7 11-11 68.8 69.1 71.8 + 7 9 6 15 9 4 7 5 12 12 27 11-11 67.8 69.1 71.7 + 7 9 7 32 22 5 5 6 12 6 4 12-11 68.2 69.0 71.7 + 7 9 8 7 6 7 6 5 7 6 3 6-11 67.6 69.0 71.7 + 7 9 9 0 0 2 3 3 3 0 3 2-11 67.7 68.9 71.7 + 7 9 10 3 2 3 3 2 2 2 2 2-11 67.9 68.9 71.7 + 7 9 11 0 0 3 3 3 3 3 3 2-11 67.0 68.8 71.7 + 7 9 12 4 4 3 3 2 0 0 2 2-11 66.7 68.8 71.7 + 7 9 13 0 0 0 2 0 0 4 3 1-11 67.2 68.7 71.7 + 7 9 14 4 0 0 3 3 9 9 7 4-11 67.6 68.6 71.7 + 7 9 15 7 2 2 3 4 5 4 6 4-11 68.5 68.6 71.7 + 7 9 16 5 4 0 2 2 3 4 0 3-11 67.8 68.5 71.7 + 7 9 17 0 0 0 2 3 2 4 7 2-11 67.6 68.5 71.7 + 7 9 18 15 5 0 2 3 2 0 0 3-11 67.1 68.4 71.7 + 7 9 19 2 6 5 4 5 3 2 0 3-11 67.4 68.4 71.7 + 7 9 20 0 4 2 6 12 15 27 18 11-11 67.4 68.3 71.7 + 7 9 21 12 6 6 5 7 7 9 22 9-11 67.4 68.3 71.7 + 7 9 22 15 12 12 6 9 12 22 12 13-11 67.2 68.2 71.7 + 7 9 23 18 32 27 12 7 4 7 18 16-11 66.8 68.2 71.7 + 7 9 24 18 22 9 5 9 9 6 7 11-11 66.5 68.2 71.7 + 7 9 25 12 6 5 4 3 5 12 12 7-11 66.6 68.1 71.7 + 7 9 26 7 5 3 4 2 0 4 2 3-11 66.8 68.1 71.8 + 7 9 27 3 0 0 12 6 48 39 32 18-11 67.4 68.1 71.8 + 7 9 28 27 22 39 7 5 12 32 48 24-11 67.4 68.0 71.8 + 7 9 29 39 48 48 27 27 12 22 18 30-11 67.8 68.0 71.8 + 7 9 30 18 18 22 7 6 6 12 9 12-11 65.1 68.0 71.9 + 7 10 1 12 9 6 7 6 7 5 6 7-11 67.8 68.0 71.9 + 7 10 2 7 6 6 4 0 0 5 15 5-11 66.5 67.9 71.9 + 7 10 3 18 22 18 9 27 9 12 18 17-11 67.3 67.9 71.9 + 7 10 4 22 15 7 12 7 12 9 2 11-11 67.4 67.8 71.9 + 7 10 5 7 15 7 4 6 3 6 2 6-11 67.8 67.8 71.9 + 7 10 6 3 2 4 5 4 3 5 5 4-11 68.9 67.7 71.9 + 7 10 7 4 0 3 2 4 0 0 0 2-11 68.1 67.7 71.9 + 7 10 8 0 0 0 0 0 0 2 3 1-11 67.9 67.6 71.9 + 7 10 9 2 2 2 0 0 0 2 0 1-11 68.6 67.6 71.9 + 7 10 10 0 4 3 0 0 0 0 0 1-11 67.9 67.5 71.9 + 7 10 11 0 0 0 0 0 0 2 3 1-11 68.6 67.5 71.9 + 7 10 12 0 3 4 4 3 5 6 9 4-11 68.3 67.4 71.9 + 7 10 13 0 0 2 3 4 2 3 5 2-11 67.3 67.4 71.9 + 7 10 14 6 6 7 6 4 5 2 3 5-11 66.7 67.4 71.9 + 7 10 15 6 2 2 2 3 2 2 0 2-11 66.8 67.4 71.9 + 7 10 16 0 2 2 3 5 5 2 0 2-11 66.7 67.4 71.9 + 7 10 17 3 0 0 2 0 0 0 0 1-11 67.0 67.4 71.9 + 7 10 18 4 15 12 22 7 6 15 12 12-11 67.7 67.4 71.9 + 7 10 19 15 12 9 12 22 18 18 18 16-11 66.8 67.4 71.9 + 7 10 20 27 22 15 9 4 9 12 3 13-11 66.3 67.5 71.9 + 7 10 21 3 5 5 4 4 3 6 7 5-11 66.6 67.5 71.9 + 7 10 22 5 6 2 2 3 6 15 12 6-11 66.0 67.5 71.9 + 7 10 23 18 12 5 5 6 4 7 2 7-11 66.4 67.6 71.9 + 7 10 24 3 2 2 3 4 5 3 2 3-11 66.8 67.6 71.9 + 7 10 25 2 4 3 15 22 32 39 22 17-11 66.3 67.7 71.9 + 7 10 26 12 12 7 9 18 22 22 7 14-11 66.7 67.7 71.9 + 7 10 27 9 18 7 22 12 18 6 12 13-11 66.2 67.8 71.8 + 7 10 28 9 9 4 7 6 15 5 3 7-11 66.6 68.0 71.8 + 7 10 29 7 3 4 4 6 9 39 32 13-11 66.2 68.2 71.8 + 7 10 30 27 15 7 4 5 12 3 4 10-11 66.3 68.4 71.7 + 7 10 31 5 3 6 4 4 4 6 3 4-11 66.1 68.6 71.6 + 7 11 1 12 3 5 4 2 4 4 3 5-11 66.3 68.9 71.6 + 7 11 2 2 5 4 4 0 0 2 2 2-11 66.8 69.2 71.6 + 7 11 3 3 2 2 3 4 0 0 0 2-11 66.5 69.5 71.5 + 7 11 4 4 0 2 2 4 9 6 7 4-11 66.5 69.8 71.5 + 7 11 5 3 5 4 4 0 0 0 3 2-11 66.2 70.0 71.4 + 7 11 6 0 0 0 0 3 0 0 0 0-11 67.3 70.2 71.4 + 7 11 7 0 0 0 0 0 0 0 2 0-11 66.9 70.3 71.4 + 7 11 8 4 5 4 0 2 3 5 5 4-11 68.4 70.4 71.4 + 7 11 9 5 3 2 3 6 5 2 7 4-11 68.2 70.4 71.4 + 7 11 10 7 2 4 5 5 5 2 0 4-11 68.4 70.5 71.4 + 7 11 11 4 2 3 2 3 0 2 4 3-11 67.7 70.5 71.4 + 7 11 12 2 0 0 2 2 5 6 6 3-11 68.3 70.5 71.3 + 7 11 13 15 15 7 7 12 5 7 15 10-11 68.4 70.6 71.3 + 7 11 14 15 12 7 9 12 15 5 6 10-11 68.9 70.6 71.3 + 7 11 15 7 6 3 3 7 7 9 12 7-11 67.7 70.6 71.3 + 7 11 16 5 3 6 7 7 6 9 18 8-11 69.1 70.6 71.3 + 7 11 17 18 9 9 3 4 6 5 2 7-11 68.2 70.6 71.3 + 7 11 18 4 6 0 2 2 4 0 0 2-11 67.2 70.7 71.3 + 7 11 19 3 0 0 0 0 0 7 12 3-11 67.9 70.7 71.2 + 7 11 20 12 7 12 32 56 32 18 22 24-11 68.0 70.7 71.2 + 7 11 21 18 27 22 27 15 9 6 5 16-11 67.4 70.8 71.2 + 7 11 22 3 12 5 5 5 22 22 22 12-11 68.0 70.9 71.2 + 7 11 23 27 18 15 7 15 7 12 7 14-11 68.3 71.0 71.2 + 7 11 24 12 7 9 7 12 27 22 12 14-11 69.5 71.1 71.2 + 7 11 25 15 15 18 9 12 18 12 18 15-11 68.8 71.3 71.2 + 7 11 26 15 15 9 12 4 4 6 6 9-11 69.6 71.4 71.2 + 7 11 27 4 12 5 4 3 5 5 5 5-11 69.6 71.5 71.2 + 7 11 28 7 2 3 3 5 9 3 4 5-11 69.3 71.6 71.2 + 7 11 29 0 2 2 3 4 7 5 2 3-11 69.3 71.7 71.2 + 7 11 30 0 0 3 3 3 3 5 4 3-11 69.2 71.8 71.2 + 7 12 1 15 2 3 4 0 0 0 2 3-11 69.9 71.9 71.1 + 7 12 2 0 4 3 3 0 0 2 3 2-11 71.0 71.9 71.1 + 7 12 3 0 2 0 0 2 0 2 0 1-11 70.5 72.0 71.0 + 7 12 4 2 0 0 2 2 0 2 2 1-11 71.5 72.1 71.0 + 7 12 5 7 2 4 2 2 3 0 0 3-11 73.1 72.2 70.9 + 7 12 6 0 5 3 2 5 2 3 3 3-11 75.9 72.2 70.9 + 7 12 7 3 4 0 0 0 0 2 0 1-11 79.8 72.3 70.8 + 7 12 8 0 0 0 0 0 0 0 3 0-11 84.4 72.4 70.8 + 7 12 9 4 3 0 0 3 5 7 4 3-11 86.2 72.4 70.8 + 7 12 10 0 6 5 6 7 7 7 32 9-11 84.3 72.4 70.7 + 7 12 11 18 15 12 12 15 18 22 18 16-11 90.5 72.4 70.7 + 7 12 12 12 15 18 15 5 3 4 12 11-11 91.1 72.5 70.7 + 7 12 13 9 12 4 4 4 4 7 0 6-11 90.9 72.5 70.7 + 7 12 14 3 6 3 7 3 4 5 2 4-11 89.0 72.5 70.7 + 7 12 15 2 2 2 4 2 4 2 2 3-11 86.1 72.6 70.7 + 7 12 16 3 3 2 0 0 3 2 9 3-11 79.1 72.6 70.7 + 7 12 17 9 12 22 27 27 22 9 18 18-11 76.9 72.6 70.7 + 7 12 18 22 22 22 22 22 18 18 27 22-11 74.4 72.7 70.7 + 7 12 19 12 18 9 9 9 6 9 9 10-11 72.1 72.7 70.7 + 7 12 20 15 15 9 7 12 27 18 12 14-11 70.2 72.7 70.7 + 7 12 21 18 18 15 7 12 18 15 5 14-11 68.7 72.7 70.7 + 7 12 22 6 9 5 5 9 9 18 9 9-11 69.1 72.7 70.7 + 7 12 23 9 9 9 7 7 7 3 9 8-11 69.1 72.7 70.7 + 7 12 24 2 4 4 3 2 2 4 5 3-11 69.1 72.8 70.6 + 7 12 25 2 0 3 0 3 2 0 0 1-11 69.7 72.8 70.6 + 7 12 26 3 0 2 2 3 3 0 3 2-11 70.2 72.8 70.6 + 7 12 27 3 6 5 4 4 3 6 7 5-11 69.7 72.8 70.6 + 7 12 28 15 9 2 2 2 2 3 0 4-11 69.5 72.8 70.6 + 7 12 29 0 0 0 3 2 0 2 5 2-11 70.3 72.8 70.6 + 7 12 30 6 6 2 4 4 5 3 2 4-11 72.5 72.8 70.5 + 7 12 31 2 3 3 4 5 5 12 7 5-11 74.2 72.9 70.5 + 8 1 1 6 6 3 4 3 3 3 4 4-11 76.7 72.9 70.5 + 8 1 2 2 0 2 2 2 3 4 2 2-11 77.0 72.9 70.5 + 8 1 3 0 3 2 2 2 0 2 3 2-11 76.7 73.0 70.5 + 8 1 4 0 0 0 3 3 4 2 6 2-11 76.4 73.0 70.4 + 8 1 5 7 15 22 22 22 15 22 27 19-11 77.1 73.0 70.4 + 8 1 6 12 22 15 9 15 22 22 18 17-11 76.6 72.9 70.4 + 8 1 7 27 22 9 15 15 5 5 12 14-11 75.2 72.9 70.4 + 8 1 8 9 15 12 15 9 22 18 15 14-11 73.0 72.9 70.3 + 8 1 9 18 9 9 6 4 4 4 6 8-11 74.0 72.9 70.3 + 8 1 10 7 3 4 4 5 4 3 4 4-11 73.2 72.9 70.3 + 8 1 11 6 3 3 4 0 2 4 2 3-11 73.5 72.9 70.2 + 8 1 12 2 0 4 5 7 27 15 7 8-11 73.2 72.9 70.2 + 8 1 13 12 9 6 4 15 15 18 7 11-11 72.9 72.9 70.2 + 8 1 14 18 15 12 32 15 18 27 18 19-11 73.1 72.9 70.1 + 8 1 15 15 12 9 7 15 9 5 7 10-11 71.3 72.9 70.1 + 8 1 16 12 12 18 12 9 15 12 15 13-11 70.6 72.8 70.1 + 8 1 17 15 7 6 7 15 7 12 22 11-11 71.3 72.7 70.1 + 8 1 18 18 15 15 6 9 15 12 7 12-11 68.8 72.5 70.1 + 8 1 19 6 7 9 15 15 22 6 6 11-11 68.6 72.2 70.1 + 8 1 20 3 15 7 5 6 3 6 7 7-11 68.0 72.1 70.1 + 8 1 21 3 5 5 5 6 6 9 6 6-11 69.3 71.8 70.1 + 8 1 22 3 5 2 0 2 3 3 2 3-11 68.1 71.5 70.1 + 8 1 23 0 2 4 4 4 5 7 9 4-11 68.4 71.2 70.1 + 8 1 24 5 3 4 3 7 6 9 6 5-11 69.1 70.9 70.1 + 8 1 25 12 22 12 7 3 5 15 7 10-11 68.9 70.7 70.1 + 8 1 26 15 9 6 6 5 6 3 6 7-11 70.3 70.6 70.0 + 8 1 27 5 3 0 2 2 5 7 6 4-11 69.8 70.5 70.0 + 8 1 28 4 6 2 4 3 2 5 7 4-11 69.2 70.4 70.0 + 8 1 29 5 12 6 6 3 0 0 0 4-11 69.5 70.4 70.0 + 8 1 30 4 6 0 2 0 0 0 0 2-11 70.6 70.4 70.0 + 8 1 31 0 0 0 3 3 9 15 12 5-11 69.9 70.4 70.0 + 8 2 1 18 9 18 12 6 18 32 32 18-11 69.0 70.4 70.0 + 8 2 2 32 39 15 7 18 9 18 15 19-11 69.8 70.4 70.0 + 8 2 3 15 15 18 18 9 18 22 18 17-11 69.5 70.4 70.0 + 8 2 4 12 12 7 7 4 5 9 7 8-11 69.3 70.4 70.0 + 8 2 5 7 7 0 2 4 5 5 2 4-11 68.5 70.3 70.0 + 8 2 6 0 2 3 2 4 5 9 7 4-11 69.6 70.3 70.0 + 8 2 7 15 9 0 0 2 9 5 15 7-11 68.9 70.3 69.9 + 8 2 8 18 5 5 3 3 4 7 9 7-11 69.0 70.3 69.9 + 8 2 9 4 2 0 3 7 4 6 6 4-11 70.3 70.3 69.9 + 8 2 10 2 12 15 22 32 39 18 27 21-11 70.7 70.2 69.9 + 8 2 11 18 27 12 22 18 18 9 12 17-11 70.2 70.1 69.9 + 8 2 12 12 15 12 12 15 12 12 12 13-11 70.3 70.0 69.9 + 8 2 13 12 12 22 7 22 18 9 6 14-11 68.7 70.0 69.9 + 8 2 14 9 7 9 7 15 5 32 22 13-11 68.8 70.2 69.9 + 8 2 15 7 15 15 18 18 15 7 7 13-11 68.0 70.2 69.9 + 8 2 16 15 18 9 7 12 4 12 0 10-11 68.6 70.3 69.9 + 8 2 17 2 7 7 7 6 3 4 5 5-11 69.4 70.4 69.9 + 8 2 18 3 4 7 15 22 18 15 18 13-11 69.5 70.5 69.9 + 8 2 19 18 15 22 12 12 12 12 5 14-11 70.0 70.6 69.9 + 8 2 20 5 15 7 5 5 5 2 4 6-11 69.3 70.7 69.9 + 8 2 21 3 3 5 6 9 9 6 3 6-11 70.3 70.7 69.9 + 8 2 22 3 4 6 4 4 3 2 4 4-11 70.8 70.8 69.9 + 8 2 23 2 3 4 3 4 7 9 7 5-11 70.1 70.8 69.8 + 8 2 24 4 3 3 3 3 4 4 5 4-11 69.3 70.8 69.8 + 8 2 25 5 5 4 5 2 3 2 2 4-11 69.9 70.8 69.8 + 8 2 26 2 6 3 3 4 4 5 5 4-11 69.3 70.8 69.8 + 8 2 27 7 7 4 4 6 12 32 12 11-11 69.4 70.8 69.8 + 8 2 28 22 18 12 18 15 32 32 32 23-11 68.7 70.8 69.8 + 8 2 29 32 18 27 22 15 56 32 48 31-11 68.5 70.8 69.8 + 8 3 1 56 22 15 15 22 18 12 12 22-11 67.4 70.8 69.8 + 8 3 2 9 9 15 7 6 9 7 9 9-11 68.0 70.8 69.8 + 8 3 3 9 9 6 9 3 5 4 2 6-11 67.3 70.8 69.7 + 8 3 4 6 5 6 3 5 0 0 2 3-11 67.2 70.8 69.7 + 8 3 5 6 6 6 7 18 12 7 4 8-11 68.2 70.8 69.7 + 8 3 6 3 3 2 2 2 5 2 5 3-11 69.3 70.8 69.7 + 8 3 7 5 4 3 0 2 0 3 3 3-11 69.5 70.8 69.7 + 8 3 8 0 0 3 7 27 18 18 5 10-11 68.8 70.8 69.7 + 8 3 9 32 67 48 22 18 22 12 22 30-11 68.5 70.8 69.7 + 8 3 10 27 22 7 18 18 18 18 22 19-11 69.4 70.8 69.7 + 8 3 11 12 9 22 12 27 22 7 6 15-11 69.3 70.8 69.7 + 8 3 12 12 22 22 7 7 5 22 12 14-11 68.5 70.9 69.7 + 8 3 13 9 12 9 18 18 7 9 7 11-11 68.7 70.9 69.7 + 8 3 14 15 18 15 7 9 27 15 22 16-11 69.1 70.9 69.7 + 8 3 15 18 12 9 18 12 6 5 6 11-11 68.8 70.9 69.7 + 8 3 16 12 7 5 3 6 6 5 6 6-11 69.6 71.0 69.7 + 8 3 17 9 3 0 3 3 7 6 4 4-11 69.1 71.0 69.7 + 8 3 18 18 22 5 5 5 5 2 3 8-11 69.0 71.0 69.7 + 8 3 19 0 4 6 4 12 15 9 9 7-11 68.4 71.0 69.7 + 8 3 20 6 6 4 7 18 12 7 7 8-11 67.9 71.0 69.7 + 8 3 21 7 6 3 5 3 5 7 12 6-11 67.7 71.0 69.7 + 8 3 22 6 2 2 3 4 3 4 12 5-11 69.1 70.9 69.7 + 8 3 23 18 15 12 9 6 6 4 5 9-11 71.5 70.9 69.7 + 8 3 24 2 6 3 3 3 3 3 3 3-11 79.0 70.9 69.8 + 8 3 25 0 0 2 3 5 4 5 7 3-11 88.2 70.9 69.8 + 8 3 26 5 7 22 32 39 32 48 27 27-11 81.2 70.9 69.8 + 8 3 27 48 48 27 15 12 39 48 48 36-11 84.5 70.9 69.8 + 8 3 28 32 22 32 22 32 18 22 15 24-11 82.6 70.9 69.8 + 8 3 29 7 15 5 5 9 7 12 15 9-11 82.4 70.9 69.8 + 8 3 30 22 12 9 6 6 5 5 9 9-11 80.4 70.9 69.8 + 8 3 31 6 4 0 4 6 2 5 5 4-11 79.1 70.9 69.8 + 8 4 1 5 12 6 3 4 3 3 0 5-11 77.7 70.9 69.8 + 8 4 2 0 3 2 0 0 2 2 2 1-11 75.9 70.9 69.8 + 8 4 3 5 3 0 2 3 3 0 0 2-11 76.4 70.8 69.8 + 8 4 4 0 2 2 3 9 22 32 18 11-11 73.1 70.9 69.8 + 8 4 5 5 5 4 18 12 48 22 32 18-11 71.1 70.9 69.8 + 8 4 6 18 39 39 15 18 7 9 15 20-11 69.5 70.9 69.8 + 8 4 7 18 22 7 6 5 22 12 15 13-11 69.3 71.0 69.8 + 8 4 8 6 7 6 12 15 7 9 15 10-11 70.0 71.0 69.8 + 8 4 9 18 12 22 18 12 6 7 9 13-11 68.2 71.0 69.8 + 8 4 10 15 12 7 6 9 6 9 9 9-11 68.1 71.1 69.8 + 8 4 11 9 5 2 6 6 5 2 3 5-11 67.4 71.1 69.8 + 8 4 12 12 18 15 12 15 5 12 12 13-11 68.5 71.1 69.8 + 8 4 13 4 6 5 9 15 15 7 4 8-11 69.7 71.2 69.8 + 8 4 14 5 4 0 0 0 2 0 2 2-11 69.0 71.2 69.8 + 8 4 15 0 0 2 2 7 5 6 15 5-11 69.7 71.2 69.8 + 8 4 16 15 9 15 9 18 12 27 12 15-11 70.0 71.2 69.8 + 8 4 17 18 12 4 4 5 6 6 3 7-11 69.8 71.2 69.8 + 8 4 18 7 9 7 6 6 5 5 5 6-11 70.8 71.3 69.8 + 8 4 19 7 6 4 4 3 5 5 12 6-11 71.7 71.3 69.8 + 8 4 20 7 2 2 3 3 6 4 3 4-11 71.5 71.3 69.8 + 8 4 21 7 9 3 5 4 6 3 3 5-11 71.6 71.3 69.8 + 8 4 22 2 3 3 5 3 12 9 15 7-11 72.1 71.3 69.8 + 8 4 23 15 27 56 18 22 32 27 22 27-11 71.5 71.3 69.8 + 8 4 24 22 22 22 18 18 7 7 12 16-11 71.2 71.3 69.8 + 8 4 25 9 12 9 6 7 6 6 5 8-11 70.7 71.2 69.8 + 8 4 26 15 5 7 7 6 18 9 12 10-11 69.9 71.2 69.8 + 8 4 27 12 9 7 6 5 7 5 4 7-11 69.0 71.2 69.8 + 8 4 28 5 3 7 7 12 22 18 15 11-11 69.4 71.2 69.8 + 8 4 29 15 9 5 2 4 3 5 4 6-11 69.6 71.2 69.8 + 8 4 30 0 2 2 4 4 15 32 4 8-11 68.0 71.2 69.8 + 8 5 1 3 5 5 3 2 7 12 27 8-11 69.6 71.2 69.8 + 8 5 2 39 15 9 4 12 3 2 4 11-11 69.2 71.2 69.8 + 8 5 3 12 9 9 15 15 7 15 7 11-11 68.5 71.1 69.8 + 8 5 4 3 6 9 9 5 12 9 9 8-11 69.5 71.0 69.8 + 8 5 5 9 9 18 3 12 18 18 9 12-11 68.8 70.8 69.8 + 8 5 6 27 9 9 7 5 3 4 5 9-11 68.4 70.6 69.8 + 8 5 7 7 3 2 2 4 4 6 7 4-11 67.8 70.4 69.8 + 8 5 8 6 4 5 5 4 4 4 3 4-11 67.7 70.2 69.8 + 8 5 9 5 3 3 3 3 2 2 3 3-11 68.6 70.0 69.8 + 8 5 10 4 6 4 4 2 2 5 7 4-11 68.7 69.9 69.8 + 8 5 11 4 4 3 3 3 3 6 2 4-11 69.4 69.7 69.8 + 8 5 12 2 2 3 3 2 4 4 5 3-11 69.5 69.6 69.8 + 8 5 13 6 6 0 2 3 4 4 2 3-11 69.7 69.5 69.8 + 8 5 14 2 3 2 3 4 2 3 2 3-11 70.5 69.4 69.8 + 8 5 15 0 4 2 2 2 2 3 5 3-11 72.7 69.3 69.8 + 8 5 16 5 4 2 5 6 5 5 3 4-11 73.2 69.3 69.8 + 8 5 17 3 0 0 2 0 2 0 0 1-11 72.8 69.3 69.8 + 8 5 18 0 3 2 3 6 2 2 2 3-11 73.3 69.2 69.8 + 8 5 19 7 6 5 7 7 7 6 3 6-11 70.5 69.2 69.8 + 8 5 20 6 5 9 4 7 7 9 15 8-11 70.2 69.2 69.8 + 8 5 21 15 22 7 9 9 9 6 6 10-11 70.8 69.2 69.8 + 8 5 22 12 7 6 4 6 18 15 7 9-11 71.0 69.2 69.8 + 8 5 23 7 6 0 5 9 6 18 12 8-11 69.6 69.2 69.8 + 8 5 24 18 3 7 7 7 7 3 6 7-11 70.3 69.2 69.8 + 8 5 25 9 7 5 4 6 4 3 5 5-11 70.1 69.2 69.8 + 8 5 26 3 5 3 5 2 2 2 4 3-11 69.8 69.2 69.8 + 8 5 27 2 0 3 2 3 4 3 7 3-11 69.7 69.1 69.8 + 8 5 28 12 7 15 6 18 15 5 7 11-11 69.6 69.1 69.8 + 8 5 29 15 9 6 4 9 12 12 6 9-11 69.9 69.1 69.8 + 8 5 30 18 4 3 4 9 22 18 6 11-11 69.0 69.0 69.8 + 8 5 31 3 6 9 9 15 9 12 6 9-11 68.8 69.0 69.8 + 8 6 1 7 7 6 5 6 12 9 6 7-11 68.5 69.0 69.7 + 8 6 2 6 5 3 4 5 5 5 3 5-11 69.0 68.9 69.7 + 8 6 3 2 6 3 4 4 5 5 6 4-11 68.2 68.8 69.7 + 8 6 4 6 4 4 0 4 3 0 2 3-11 67.1 68.8 69.7 + 8 6 5 2 0 2 4 3 4 2 0 2-11 68.4 68.8 69.7 + 8 6 6 3 7 6 9 4 4 7 7 6-11 67.9 68.7 69.7 + 8 6 7 7 5 18 12 12 7 15 12 11-11 67.6 68.7 69.6 + 8 6 8 15 5 5 4 12 7 3 5 7-11 66.9 68.7 69.6 + 8 6 9 6 3 2 2 2 0 5 4 3-11 68.0 68.7 69.5 + 8 6 10 3 2 0 2 4 3 2 2 2-11 68.2 68.7 69.5 + 8 6 11 3 3 5 4 3 2 2 3 3-11 67.8 68.6 69.4 + 8 6 12 2 4 5 2 2 3 3 4 3-11 69.2 68.6 69.4 + 8 6 13 3 2 0 0 2 2 4 2 2-11 68.6 68.6 69.3 + 8 6 14 3 2 3 2 6 18 39 67 18-11 69.2 68.6 69.2 + 8 6 15 27 32 18 12 9 12 9 18 17-11 68.6 68.6 69.2 + 8 6 16 9 6 7 12 9 12 22 22 12-11 67.4 68.6 69.2 + 8 6 17 15 9 9 9 7 9 7 7 9-11 68.1 68.6 69.1 + 8 6 18 18 18 9 6 7 4 3 3 9-11 67.5 68.6 69.1 + 8 6 19 4 3 3 6 6 7 12 6 6-11 67.0 68.6 69.1 + 8 6 20 9 15 15 6 5 5 7 7 9-11 67.3 68.6 69.1 + 8 6 21 4 3 3 4 3 4 5 5 4-11 67.0 68.6 69.1 + 8 6 22 5 2 2 4 3 2 2 3 3-11 67.5 68.5 69.1 + 8 6 23 6 6 3 4 4 3 3 2 4-11 67.5 68.5 69.1 + 8 6 24 3 3 3 3 3 4 7 15 5-11 68.0 68.5 69.1 + 8 6 25 12 9 9 4 4 9 18 15 10-11 68.1 68.4 69.0 + 8 6 26 27 18 9 22 12 7 7 6 14-11 67.5 68.4 69.0 + 8 6 27 18 7 6 9 7 9 5 4 8-11 68.3 68.3 69.0 + 8 6 28 4 5 3 5 5 5 7 5 5-11 68.1 68.3 69.0 + 8 6 29 7 7 4 7 5 6 7 15 7-11 68.8 68.2 69.0 + 8 6 30 4 5 4 3 5 5 5 2 4-11 68.9 68.2 69.0 + 8 7 1 7 5 6 3 7 3 0 2 4-11 67.8 68.1 69.0 + 8 7 2 5 3 2 3 2 2 2 0 2-11 68.2 68.1 69.0 + 8 7 3 2 2 0 2 4 5 2 3 3-11 67.7 68.1 68.9 + 8 7 4 2 3 2 2 5 6 3 3 3-11 67.6 68.0 68.9 + 8 7 5 5 5 3 7 12 9 7 9 7-11 67.3 68.0 68.9 + 8 7 6 5 4 5 2 4 2 3 0 3-11 68.3 68.0 68.8 + 8 7 7 3 3 3 2 2 0 0 4 2-11 67.7 67.9 68.8 + 8 7 8 2 0 2 2 2 2 2 4 2-11 67.8 67.9 68.8 + 8 7 9 2 3 2 3 2 3 3 3 3-11 68.3 67.9 68.8 + 8 7 10 2 0 0 4 5 4 4 5 3-11 67.6 67.9 68.8 + 8 7 11 4 3 5 6 9 4 5 15 6-11 67.9 67.9 68.7 + 8 7 12 15 32 27 18 18 7 9 6 17-11 67.1 67.9 68.7 + 8 7 13 6 7 12 12 9 15 15 12 11-11 67.4 67.9 68.7 + 8 7 14 7 7 12 12 9 15 6 9 10-11 67.8 67.9 68.7 + 8 7 15 12 6 6 6 5 5 6 7 7-11 67.9 67.9 68.7 + 8 7 16 5 6 4 4 4 5 3 6 5-11 66.7 67.9 68.7 + 8 7 17 9 4 3 3 3 3 4 0 4-11 67.1 67.9 68.7 + 8 7 18 2 4 5 3 5 3 2 2 3-11 67.4 67.9 68.7 + 8 7 19 0 0 0 2 3 2 2 3 2-11 68.5 67.9 68.7 + 8 7 20 5 2 0 2 2 2 5 3 3-11 68.0 67.9 68.7 + 8 7 21 4 5 5 5 5 5 5 6 5-11 68.4 67.9 68.7 + 8 7 22 3 4 5 7 18 15 12 22 11-11 68.0 67.9 68.7 + 8 7 23 15 22 15 7 27 15 15 15 16-11 67.6 67.9 68.7 + 8 7 24 22 12 12 7 7 5 6 7 10-11 67.5 67.9 68.7 + 8 7 25 2 4 2 5 2 0 0 3 2-11 67.9 67.9 68.7 + 8 7 26 6 4 3 4 4 4 6 3 4-11 68.1 67.8 68.7 + 8 7 27 0 0 2 6 4 4 7 22 6-11 68.4 67.8 68.6 + 8 7 28 7 7 7 5 4 4 2 2 5-11 68.3 67.8 68.6 + 8 7 29 0 2 3 3 3 4 5 4 3-11 68.1 67.8 68.6 + 8 7 30 4 7 3 4 2 2 4 4 4-11 68.5 67.8 68.6 + 8 7 31 0 2 3 4 3 4 3 3 3-11 67.5 67.8 68.6 + 8 8 1 3 3 2 2 4 4 6 5 4-11 68.1 67.8 68.6 + 8 8 2 0 2 2 2 3 0 3 3 2-11 68.2 67.9 68.6 + 8 8 3 2 3 2 3 3 4 5 7 4-11 67.4 67.8 68.6 + 8 8 4 5 2 2 3 4 2 3 3 3-11 68.2 67.8 68.6 + 8 8 5 2 2 3 4 3 2 2 0 2-11 68.4 67.8 68.6 + 8 8 6 3 3 3 5 5 5 5 5 4-11 68.9 67.8 68.6 + 8 8 7 4 4 2 2 3 4 5 7 4-11 68.0 67.9 68.6 + 8 8 8 0 2 2 0 2 5 3 7 3-11 67.3 67.9 68.6 + 8 8 9 9 18 9 7 9 22 39 56 21-11 67.3 67.8 68.6 + 8 8 10 22 22 18 5 5 15 6 6 12-11 67.4 67.8 68.6 + 8 8 11 12 5 4 5 7 5 3 5 6-11 67.5 67.8 68.6 + 8 8 12 7 7 7 5 6 7 4 5 6-11 66.9 67.8 68.6 + 8 8 13 9 4 2 4 4 3 3 3 4-11 67.0 67.9 68.6 + 8 8 14 9 15 3 3 4 3 3 2 5-11 67.6 67.9 68.6 + 8 8 15 7 5 2 2 0 2 2 0 3-11 67.0 67.9 68.6 + 8 8 16 0 3 4 3 2 3 4 12 4-11 67.8 67.9 68.6 + 8 8 17 18 6 3 6 7 5 3 6 7-11 68.2 67.9 68.6 + 8 8 18 9 18 12 18 39 22 18 15 19-11 67.8 67.9 68.5 + 8 8 19 12 9 9 7 9 12 7 5 9-11 68.9 67.9 68.5 + 8 8 20 7 6 4 4 4 3 2 2 4-11 67.4 67.9 68.5 + 8 8 21 0 0 3 5 4 2 4 4 3-11 68.7 67.9 68.5 + 8 8 22 3 3 5 4 3 0 2 3 3-11 69.1 67.9 68.5 + 8 8 23 4 3 0 0 5 3 2 4 3-11 69.4 67.9 68.5 + 8 8 24 0 0 2 2 3 2 2 4 2-11 68.6 67.8 68.5 + 8 8 25 0 0 2 0 2 0 0 2 1-11 68.0 67.8 68.5 + 8 8 26 2 0 0 0 3 4 2 2 2-11 68.3 67.8 68.5 + 8 8 27 6 6 3 2 3 2 2 2 3-11 68.0 67.8 68.5 + 8 8 28 2 4 0 2 3 4 4 4 3-11 67.4 67.8 68.5 + 8 8 29 3 3 3 2 2 4 3 3 3-11 68.1 67.8 68.5 + 8 8 30 2 2 2 4 3 2 2 0 2-11 68.4 67.8 68.5 + 8 8 31 2 2 3 4 6 5 5 4 4-11 67.9 67.8 68.5 + 8 9 1 5 4 0 2 3 2 4 3 3-11 67.0 67.9 68.5 + 8 9 2 3 2 3 4 4 2 2 4 3-11 67.2 67.9 68.5 + 8 9 3 2 5 7 9 5 12 9 15 8-11 67.3 67.9 68.5 + 8 9 4 67 80 22 18 22 18 9 9 31-11 67.0 67.9 68.5 + 8 9 5 9 12 4 5 7 4 5 7 7-11 66.3 68.0 68.5 + 8 9 6 15 6 4 6 15 6 7 7 8-11 66.8 68.0 68.5 + 8 9 7 15 9 3 4 12 6 18 4 9-11 67.6 68.0 68.5 + 8 9 8 4 12 12 7 7 9 15 7 9-11 68.0 68.0 68.5 + 8 9 9 6 12 6 4 4 3 4 12 6-11 68.0 68.0 68.5 + 8 9 10 6 5 4 4 3 5 6 4 5-11 68.1 68.1 68.5 + 8 9 11 0 3 0 2 2 2 2 6 2-11 67.8 68.1 68.5 + 8 9 12 3 0 0 0 0 0 2 0 1-11 67.1 68.0 68.5 + 8 9 13 0 0 0 2 0 0 0 2 1-11 67.2 68.0 68.5 + 8 9 14 0 0 4 3 3 3 18 18 6-11 67.6 68.0 68.5 + 8 9 15 12 9 27 22 22 18 15 9 17-11 68.2 68.0 68.5 + 8 9 16 4 15 12 7 5 15 7 4 9-11 70.1 68.0 68.5 + 8 9 17 9 9 0 2 2 2 0 3 3-11 67.7 67.9 68.5 + 8 9 18 7 12 7 9 7 4 3 3 7-11 67.8 67.9 68.5 + 8 9 19 0 5 4 5 5 4 6 3 4-11 68.4 67.9 68.5 + 8 9 20 7 6 3 2 3 4 2 2 4-11 68.4 67.9 68.5 + 8 9 21 0 0 0 0 2 3 2 6 2-11 68.4 67.9 68.5 + 8 9 22 15 12 0 0 0 2 0 2 4-11 69.6 67.9 68.5 + 8 9 23 5 0 4 3 3 2 2 2 3-11 69.8 67.9 68.4 + 8 9 24 2 3 2 5 4 2 0 0 2-11 68.8 67.9 68.4 + 8 9 25 2 0 0 2 2 3 7 9 3-11 68.6 67.9 68.4 + 8 9 26 6 4 2 2 3 2 0 0 2-11 68.0 67.9 68.3 + 8 9 27 0 0 0 2 2 5 7 5 3-11 67.6 67.9 68.3 + 8 9 28 0 2 3 4 6 2 0 0 2-11 67.3 67.8 68.3 + 8 9 29 0 3 4 4 3 0 0 3 2-11 67.0 67.8 68.2 + 8 9 30 0 2 2 0 5 6 7 12 4-11 66.4 67.8 68.2 + 8 10 1 7 5 9 6 7 12 9 9 8-11 65.9 67.8 68.2 + 8 10 2 9 12 9 22 27 12 15 9 14-11 66.4 67.8 68.2 + 8 10 3 15 15 18 9 22 12 9 15 14-11 67.2 67.8 68.2 + 8 10 4 12 27 7 12 7 5 3 7 10-11 66.6 67.8 68.2 + 8 10 5 5 9 5 3 3 2 2 5 4-11 67.4 67.8 68.1 + 8 10 6 4 12 3 3 0 2 2 3 4-11 67.2 67.8 68.1 + 8 10 7 2 0 0 0 3 3 4 2 2-11 66.6 67.7 68.1 + 8 10 8 5 3 0 0 0 0 0 3 1-11 67.5 67.7 68.2 + 8 10 9 0 0 2 0 2 0 0 0 1-11 68.5 67.7 68.2 + 8 10 10 0 2 2 4 3 3 0 6 3-11 68.7 67.7 68.2 + 8 10 11 5 9 27 18 56 94 48 12 34-11 70.5 67.7 68.2 + 8 10 12 22 15 12 9 7 15 5 18 13-11 69.7 67.7 68.2 + 8 10 13 15 12 9 6 3 4 7 6 8-11 70.5 67.7 68.2 + 8 10 14 2 2 4 5 3 3 4 2 3-11 70.0 67.7 68.2 + 8 10 15 15 15 12 6 4 3 4 6 8-11 70.5 67.7 68.2 + 8 10 16 6 4 4 5 2 2 3 3 4-11 71.4 67.7 68.2 + 8 10 17 0 2 0 2 4 3 2 0 2-11 69.5 67.7 68.2 + 8 10 18 0 0 0 0 0 2 3 0 1-11 68.6 67.7 68.2 + 8 10 19 6 5 3 6 7 9 15 12 8-11 69.0 67.7 68.2 + 8 10 20 6 2 2 0 3 4 4 5 3-11 68.6 67.6 68.2 + 8 10 21 6 7 2 3 3 2 3 3 4-11 68.2 67.6 68.2 + 8 10 22 0 0 0 2 4 12 12 9 5-11 67.0 67.6 68.2 + 8 10 23 5 6 5 3 2 2 2 2 3-11 66.5 67.6 68.2 + 8 10 24 0 4 3 0 0 0 0 0 1-11 66.7 67.6 68.2 + 8 10 25 0 0 0 0 3 3 2 2 1-11 66.7 67.6 68.2 + 8 10 26 3 12 6 3 5 5 0 4 5-11 66.0 67.6 68.2 + 8 10 27 4 0 3 0 0 0 0 0 1-11 66.1 67.5 68.2 + 8 10 28 0 3 6 5 3 6 7 5 4-11 66.2 67.5 68.2 + 8 10 29 9 22 32 6 9 22 18 18 17-11 65.8 67.5 68.2 + 8 10 30 15 9 9 15 12 22 15 9 13-11 65.9 67.5 68.2 + 8 10 31 6 12 7 5 2 4 6 7 6-11 67.1 67.5 68.2 + 8 11 1 6 2 3 2 0 2 4 3 3-11 65.6 67.5 68.2 + 8 11 2 0 0 2 4 6 2 4 6 3-11 68.0 67.5 68.2 + 8 11 3 0 0 2 0 0 0 2 3 1-11 68.3 67.4 68.2 + 8 11 4 4 0 0 0 0 0 2 2 1-11 66.8 67.4 68.2 + 8 11 5 2 2 2 2 2 2 2 2 2-11 66.5 67.4 68.2 + 8 11 6 0 0 0 0 0 0 4 2 1-11 67.3 67.4 68.2 + 8 11 7 2 6 7 7 9 7 7 32 10-11 66.5 67.4 68.2 + 8 11 8 27 18 12 18 12 7 9 5 14-11 67.0 67.4 68.2 + 8 11 9 27 12 9 9 5 5 9 18 12-11 67.1 67.4 68.2 + 8 11 10 5 7 3 3 4 4 0 0 3-11 67.9 67.4 68.2 + 8 11 11 0 5 2 3 0 0 0 0 1-11 70.0 67.4 68.3 + 8 11 12 4 0 4 3 2 3 2 4 3-11 69.5 67.4 68.3 + 8 11 13 3 2 2 2 0 0 0 0 1-11 67.6 67.4 68.3 + 8 11 14 0 0 0 0 0 3 2 2 1-11 66.8 67.4 68.3 + 8 11 15 5 5 0 0 0 3 7 12 4-11 66.7 67.4 68.3 + 8 11 16 22 22 7 6 6 4 7 7 10-11 66.2 67.3 68.3 + 8 11 17 9 6 4 0 0 0 3 2 3-11 66.2 67.4 68.3 + 8 11 18 2 0 0 0 2 0 3 0 1-11 68.2 67.4 68.3 + 8 11 19 0 2 0 0 0 3 3 0 1-11 67.7 67.3 68.3 + 8 11 20 0 4 0 0 2 0 3 4 2-11 67.9 67.3 68.3 + 8 11 21 2 0 0 0 0 0 2 0 1-11 66.8 67.3 68.3 + 8 11 22 0 0 0 0 0 0 2 0 0-11 67.3 67.2 68.4 + 8 11 23 6 6 4 2 0 0 2 0 3-11 67.2 67.2 68.4 + 8 11 24 0 0 0 0 0 0 0 15 2-11 66.1 67.2 68.4 + 8 11 25 22 18 22 9 9 9 12 9 14-11 66.0 67.1 68.4 + 8 11 26 22 22 12 5 5 6 7 12 11-11 66.5 67.1 68.4 + 8 11 27 18 9 5 6 6 5 12 12 9-11 66.4 67.0 68.4 + 8 11 28 5 9 3 2 2 4 5 12 5-11 65.2 67.0 68.4 + 8 11 29 3 4 5 4 2 2 2 4 3-11 66.4 67.0 68.4 + 8 11 30 3 0 2 0 2 4 2 0 2-11 66.5 67.0 68.4 + 8 12 1 0 0 0 0 0 0 0 0 0-11 66.2 67.0 68.4 + 8 12 2 0 0 0 0 0 0 0 0 0-11 67.0 67.0 68.4 + 8 12 3 3 3 3 3 4 6 5 7 4-11 67.2 67.0 68.4 + 8 12 4 7 18 9 9 12 7 4 4 9-11 67.6 67.0 68.4 + 8 12 5 5 6 6 22 7 27 5 22 13-11 66.8 67.0 68.4 + 8 12 6 22 32 18 9 9 27 15 7 17-11 67.1 67.1 68.4 + 8 12 7 7 9 9 9 9 9 5 3 8-11 67.0 67.1 68.5 + 8 12 8 2 5 0 2 2 3 5 2 3-11 66.4 67.1 68.5 + 8 12 9 0 0 0 0 2 2 2 2 1-11 66.7 67.2 68.5 + 8 12 10 0 0 0 2 4 4 6 5 3-11 68.7 67.2 68.5 + 8 12 11 6 5 5 3 5 6 4 3 5-11 68.0 67.2 68.5 + 8 12 12 4 2 2 5 4 3 2 3 3-11 68.8 67.2 68.5 + 8 12 13 5 3 2 2 2 0 2 0 2-11 67.5 67.2 68.5 + 8 12 14 3 0 0 0 2 0 0 0 1-11 66.6 67.2 68.5 + 8 12 15 3 5 3 2 0 2 2 4 3-11 66.7 67.2 68.5 + 8 12 16 3 5 3 4 6 5 9 12 6-11 67.2 67.2 68.5 + 8 12 17 12 9 5 2 6 7 5 3 6-11 66.6 67.2 68.5 + 8 12 18 0 2 0 0 2 3 3 3 2-11 66.2 67.2 68.5 + 8 12 19 3 3 2 5 5 5 3 4 4-11 67.0 67.2 68.5 + 8 12 20 2 0 3 3 3 3 2 0 2-11 66.9 67.2 68.5 + 8 12 21 2 4 3 2 0 0 0 0 1-11 66.2 67.2 68.5 + 8 12 22 0 2 0 0 2 18 9 6 5-11 65.5 67.2 68.6 + 8 12 23 9 12 6 7 7 12 15 22 11-11 66.3 67.2 68.6 + 8 12 24 12 9 6 7 4 6 7 4 7-11 67.1 67.2 68.6 + 8 12 25 2 2 0 4 7 3 6 5 4-11 67.0 67.2 68.6 + 8 12 26 6 2 0 0 2 2 3 3 2-11 67.0 67.2 68.6 + 8 12 27 5 0 0 0 2 2 2 3 2-11 67.1 67.2 68.6 + 8 12 28 4 0 2 3 2 3 2 2 2-11 67.5 67.2 68.6 + 8 12 29 2 0 0 2 0 2 0 2 1-11 67.5 67.2 68.6 + 8 12 30 0 0 0 0 0 0 2 4 1-11 66.3 67.3 68.6 + 8 12 31 15 18 15 18 9 9 12 9 13-11 67.0 67.3 68.6 + 9 1 1 6 9 12 7 9 6 3 6 7-11 66.6 67.3 68.6 + 9 1 2 3 3 0 2 3 7 6 12 5-11 67.6 67.3 68.6 + 9 1 3 12 15 12 22 7 9 3 7 11-11 67.2 67.3 68.6 + 9 1 4 9 3 3 4 3 9 6 2 5-11 66.6 67.3 68.6 + 9 1 5 4 5 4 4 4 6 4 7 5-11 66.9 67.3 68.6 + 9 1 6 7 6 2 4 4 5 0 0 4-11 66.5 67.4 68.7 + 9 1 7 2 3 4 2 2 3 0 3 2-11 66.7 67.4 68.7 + 9 1 8 0 0 2 3 7 5 3 5 3-11 66.5 67.4 68.7 + 9 1 9 6 5 4 3 7 6 6 4 5-11 67.4 67.5 68.7 + 9 1 10 15 9 4 4 2 0 2 4 5-11 68.5 67.5 68.7 + 9 1 11 4 0 0 3 0 0 0 0 1-11 67.7 67.5 68.7 + 9 1 12 0 0 0 0 0 0 2 0 0-11 67.0 67.5 68.7 + 9 1 13 4 7 6 0 4 4 5 4 4-11 68.2 67.5 68.7 + 9 1 14 9 7 4 6 9 3 5 5 6-11 68.9 67.5 68.7 + 9 1 15 5 7 4 5 3 7 9 9 6-11 68.8 67.6 68.7 + 9 1 16 7 7 0 3 3 5 4 0 4-11 68.5 67.6 68.7 + 9 1 17 2 3 4 2 2 5 4 2 3-11 69.6 67.6 68.7 + 9 1 18 2 0 2 3 2 3 4 4 3-11 68.8 67.6 68.7 + 9 1 19 27 9 9 3 4 6 6 9 9-11 68.6 67.7 68.7 + 9 1 20 7 3 3 2 2 0 7 5 4-11 68.1 67.7 68.7 + 9 1 21 0 0 0 4 3 7 7 4 3-11 67.2 67.7 68.7 + 9 1 22 0 3 2 2 2 2 2 0 2-11 66.9 67.7 68.8 + 9 1 23 0 0 2 2 3 0 0 3 1-11 67.8 67.7 68.8 + 9 1 24 4 4 0 0 0 2 0 2 2-11 66.6 67.7 68.8 + 9 1 25 3 0 0 0 3 2 2 6 2-11 67.7 67.7 68.8 + 9 1 26 18 9 12 7 15 18 6 2 11-11 67.8 67.7 68.8 + 9 1 27 2 4 2 2 2 6 7 6 4-11 67.6 67.7 68.8 + 9 1 28 0 0 0 4 3 3 2 3 2-11 67.4 67.7 68.8 + 9 1 29 0 7 9 5 5 2 2 0 4-11 67.3 67.8 68.8 + 9 1 30 2 5 2 4 2 2 5 7 4-11 67.1 67.8 68.8 + 9 1 31 5 4 9 6 12 5 7 7 7-11 67.4 67.8 68.8 + 9 2 1 3 9 4 3 2 2 2 2 3-11 67.5 67.8 68.8 + 9 2 2 2 0 0 2 2 2 0 0 1-11 67.1 67.8 68.8 + 9 2 3 0 0 2 0 0 0 7 22 4-11 67.3 67.8 68.8 + 9 2 4 22 4 6 18 15 18 15 12 14-11 67.5 67.9 68.8 + 9 2 5 22 7 4 4 5 3 2 6 7-11 68.1 67.9 68.8 + 9 2 6 7 2 0 0 0 0 0 2 1-11 68.2 67.9 68.8 + 9 2 7 2 7 2 0 2 2 0 0 2-11 69.2 67.9 68.8 + 9 2 8 0 0 2 0 0 0 0 2 1-11 69.3 67.9 68.8 + 9 2 9 6 2 0 0 0 2 0 4 2-11 68.8 67.9 68.8 + 9 2 10 2 2 0 2 2 2 2 3 2-11 65.8 68.0 68.8 + 9 2 11 6 2 4 3 3 2 4 3 3-11 68.5 68.0 68.8 + 9 2 12 3 3 0 3 4 6 3 0 3-11 68.0 68.0 68.9 + 9 2 13 2 0 0 0 3 4 5 3 2-11 68.3 68.0 68.9 + 9 2 14 6 9 22 22 32 18 5 22 17-11 68.4 68.0 68.9 + 9 2 15 12 22 6 7 15 7 7 7 10-11 67.9 68.1 68.9 + 9 2 16 7 2 0 3 3 6 4 4 4-11 67.9 68.1 68.9 + 9 2 17 0 0 0 0 0 0 2 4 1-11 69.0 68.2 68.9 + 9 2 18 7 2 0 0 2 2 4 7 3-11 68.2 68.2 68.9 + 9 2 19 0 0 0 0 0 5 2 3 1-11 67.4 68.3 68.9 + 9 2 20 4 4 3 2 3 4 7 9 5-11 67.6 68.3 68.9 + 9 2 21 2 2 0 5 4 3 3 4 3-11 69.1 68.3 68.9 + 9 2 22 2 2 5 7 5 2 3 5 4-11 68.8 68.4 68.9 + 9 2 23 2 0 0 3 7 15 7 9 5-11 69.3 68.4 68.9 + 9 2 24 15 18 9 5 4 3 2 4 8-11 69.5 68.4 68.9 + 9 2 25 6 5 3 4 3 2 3 2 4-11 69.3 68.4 68.9 + 9 2 26 3 4 0 2 3 3 3 4 3-11 68.6 68.4 68.9 + 9 2 27 6 6 7 27 18 7 7 7 11-11 67.6 68.5 68.9 + 9 2 28 12 12 7 2 0 0 4 5 5-11 69.3 68.5 68.9 + 9 3 1 7 4 3 2 3 2 0 0 3-11 68.1 68.5 68.9 + 9 3 2 0 0 0 2 2 0 2 0 1-11 68.0 68.5 68.9 + 9 3 3 4 3 6 9 7 9 12 9 7-11 68.0 68.5 68.9 + 9 3 4 7 12 5 5 6 4 7 12 7-11 68.6 68.6 68.9 + 9 3 5 6 12 2 2 0 2 2 3 4-11 68.1 68.6 68.9 + 9 3 6 5 3 3 2 0 0 0 3 2-11 68.0 68.6 68.9 + 9 3 7 2 2 2 0 0 2 2 2 2-11 68.0 68.7 68.9 + 9 3 8 7 4 15 12 15 12 3 2 9-11 67.9 68.7 68.9 + 9 3 9 2 0 0 3 3 2 2 0 2-11 67.2 68.7 69.0 + 9 3 10 3 2 0 2 6 7 6 2 4-11 67.8 68.8 69.0 + 9 3 11 2 2 3 2 2 3 9 12 4-11 68.0 68.8 69.0 + 9 3 12 15 15 3 5 3 3 6 12 8-11 67.8 68.9 69.0 + 9 3 13 39 27 18 15 12 12 7 9 17-11 67.4 68.9 69.0 + 9 3 14 15 7 7 9 4 12 7 15 10-11 67.7 69.0 69.0 + 9 3 15 9 15 12 6 6 6 2 7 8-11 67.7 69.0 69.0 + 9 3 16 9 3 4 6 3 6 6 2 5-11 68.7 69.1 69.0 + 9 3 17 4 3 3 2 4 6 6 5 4-11 68.2 69.1 69.0 + 9 3 18 2 2 2 2 2 2 2 3 2-11 67.8 69.1 69.0 + 9 3 19 6 3 3 2 6 2 4 5 4-11 68.5 69.1 69.0 + 9 3 20 6 0 2 3 2 6 5 4 4-11 68.2 69.1 69.0 + 9 3 21 0 3 6 12 15 4 9 15 8-11 69.6 69.1 69.0 + 9 3 22 6 12 4 3 2 0 4 6 5-11 68.2 69.1 69.0 + 9 3 23 5 2 3 0 0 0 4 3 2-11 67.6 69.2 69.0 + 9 3 24 3 12 7 7 12 7 5 6 7-11 68.7 69.2 69.1 + 9 3 25 18 22 7 7 3 3 4 6 9-11 68.2 69.2 69.1 + 9 3 26 7 15 12 4 5 5 4 4 7-11 68.8 69.2 69.1 + 9 3 27 2 0 0 2 4 12 15 6 5-11 71.4 69.3 69.1 + 9 3 28 5 0 0 3 3 3 7 5 3-11 70.4 69.3 69.1 + 9 3 29 4 3 4 3 3 5 3 4 4-11 70.7 69.3 69.1 + 9 3 30 5 5 2 4 6 3 5 2 4-11 70.8 69.4 69.1 + 9 3 31 4 3 4 3 6 3 2 2 3-11 71.1 69.5 69.2 + 9 4 1 4 0 2 4 3 3 5 7 4-11 70.7 69.5 69.2 + 9 4 2 2 2 3 2 4 2 2 2 2-11 70.6 69.6 69.2 + 9 4 3 3 0 2 0 2 5 3 2 2-11 70.4 69.7 69.2 + 9 4 4 0 0 0 2 2 2 2 2 1-11 70.1 69.8 69.2 + 9 4 5 5 6 6 4 3 5 3 2 4-11 70.5 69.9 69.2 + 9 4 6 3 2 2 5 4 5 2 3 3-11 68.9 69.9 69.2 + 9 4 7 3 3 4 3 2 2 2 2 3-11 70.4 70.0 69.2 + 9 4 8 2 5 5 5 9 5 7 7 6-11 70.2 70.1 69.2 + 9 4 9 15 18 15 7 6 18 9 9 12-11 70.3 70.2 69.3 + 9 4 10 7 5 7 5 6 7 18 5 8-11 69.7 70.2 69.3 + 9 4 11 18 12 7 7 9 12 6 9 10-11 69.7 70.3 69.3 + 9 4 12 9 9 5 3 3 5 9 12 7-11 69.7 70.4 69.3 + 9 4 13 12 7 4 2 3 2 2 2 4-11 68.8 70.4 69.3 + 9 4 14 4 3 0 4 3 2 0 2 2-11 69.9 70.4 69.3 + 9 4 15 6 5 2 2 5 5 5 3 4-11 69.9 70.5 69.3 + 9 4 16 3 4 5 3 6 9 4 7 5-11 70.5 70.5 69.3 + 9 4 17 6 3 3 5 7 5 3 7 5-11 70.4 70.5 69.2 + 9 4 18 6 18 12 5 6 6 4 6 8-11 70.5 70.5 69.2 + 9 4 19 6 9 6 2 4 2 4 5 5-11 70.8 70.6 69.3 + 9 4 20 7 6 4 3 4 5 2 2 4-11 70.4 70.6 69.3 + 9 4 21 4 4 9 5 3 2 4 3 4-11 71.8 70.6 69.3 + 9 4 22 6 6 2 5 4 2 2 5 4-11 71.9 70.7 69.3 + 9 4 23 3 2 2 2 2 3 2 0 2-11 71.4 70.8 69.3 + 9 4 24 9 5 6 5 9 5 6 4 6-11 70.5 70.9 69.3 + 9 4 25 3 4 2 5 4 6 4 6 4-11 70.3 70.9 69.3 + 9 4 26 3 4 3 4 3 3 2 4 3-11 70.1 71.0 69.3 + 9 4 27 9 6 0 3 2 2 3 2 3-11 68.6 71.0 69.4 + 9 4 28 0 3 2 2 3 3 4 3 3-11 69.8 71.1 69.4 + 9 4 29 0 2 3 4 4 4 5 2 3-11 70.5 71.1 69.4 + 9 4 30 3 3 3 3 3 2 0 2 2-11 70.5 71.1 69.5 + 9 5 1 2 2 4 5 3 3 2 4 3-11 69.6 71.2 69.5 + 9 5 2 3 4 5 3 5 2 3 5 4-11 69.4 71.2 69.5 + 9 5 3 6 2 2 3 4 5 0 3 3-11 69.7 71.2 69.5 + 9 5 4 2 6 4 4 3 2 2 0 3-11 69.2 71.3 69.5 + 9 5 5 0 2 3 3 2 3 0 4 2-11 69.2 71.3 69.5 + 9 5 6 7 4 3 4 6 6 9 12 6-11 70.0 71.3 69.6 + 9 5 7 12 9 4 4 3 5 6 12 7-11 70.8 71.3 69.6 + 9 5 8 27 15 12 6 6 5 9 7 11-11 72.2 71.3 69.6 + 9 5 9 0 5 6 7 6 6 4 5 5-11 73.7 71.3 69.6 + 9 5 10 4 4 3 3 4 3 4 5 4-11 73.2 71.2 69.6 + 9 5 11 7 5 3 4 5 3 3 2 4-11 73.3 71.2 69.6 + 9 5 12 0 0 0 0 2 2 2 3 1-11 75.5 71.2 69.6 + 9 5 13 3 2 2 2 2 5 3 2 3-11 75.3 71.2 69.6 + 9 5 14 3 5 4 15 9 9 15 6 8-11 75.5 71.2 69.6 + 9 5 15 4 3 0 3 2 3 2 2 2-11 75.4 71.2 69.6 + 9 5 16 4 4 2 5 3 4 4 5 4-11 75.8 71.2 69.6 + 9 5 17 3 4 0 0 2 0 0 2 1-11 75.7 71.2 69.7 + 9 5 18 4 2 3 2 2 3 2 7 3-11 74.6 71.2 69.7 + 9 5 19 4 4 3 3 3 3 3 2 3-11 74.0 71.2 69.7 + 9 5 20 5 4 4 3 3 4 12 6 5-11 73.2 71.2 69.7 + 9 5 21 5 3 5 4 4 3 3 3 4-11 73.5 71.2 69.7 + 9 5 22 2 3 5 7 6 7 4 3 5-11 73.9 71.2 69.8 + 9 5 23 2 0 4 5 2 4 5 7 4-11 72.2 71.2 69.8 + 9 5 24 5 5 3 4 2 4 3 3 4-11 71.0 71.2 69.8 + 9 5 25 2 0 2 3 2 2 2 2 2-11 70.7 71.2 69.8 + 9 5 26 2 2 4 2 3 3 3 2 3-11 69.9 71.3 69.8 + 9 5 27 0 2 0 2 2 0 2 3 1-11 68.5 71.3 69.9 + 9 5 28 0 9 7 9 7 5 2 0 5-11 69.6 71.3 69.9 + 9 5 29 3 5 3 5 5 5 5 4 4-11 70.1 71.3 69.9 + 9 5 30 4 6 2 2 2 2 4 2 3-11 70.4 71.3 69.9 + 9 5 31 2 2 6 2 2 4 5 3 3-11 70.4 71.3 69.9 + 9 6 1 2 3 3 0 2 2 2 2 2-11 74.6 71.3 69.9 + 9 6 2 2 2 0 3 3 3 2 4 2-11 74.0 71.3 69.9 + 9 6 3 4 2 0 3 3 9 9 5 4-11 74.6 71.3 69.9 + 9 6 4 3 9 5 4 4 3 3 6 5-11 73.1 71.3 69.9 + 9 6 5 3 4 6 6 4 6 3 4 5-11 72.2 71.2 70.0 + 9 6 6 3 4 4 2 4 3 3 3 3-11 71.1 71.2 70.0 + 9 6 7 2 2 3 5 5 9 5 5 5-11 71.0 71.2 70.0 + 9 6 8 4 3 3 3 2 3 3 2 3-11 71.1 71.2 70.0 + 9 6 9 0 0 0 3 3 3 2 3 2-11 71.2 71.2 70.0 + 9 6 10 3 5 6 3 3 3 2 0 3-11 71.3 71.2 70.0 + 9 6 11 3 3 2 4 2 2 2 3 3-11 71.4 71.2 70.0 + 9 6 12 2 2 2 2 2 0 0 0 1-11 71.2 71.2 70.0 + 9 6 13 0 2 5 2 3 4 3 5 3-11 70.4 71.2 70.0 + 9 6 14 6 3 2 3 7 4 6 6 5-11 70.3 71.2 70.0 + 9 6 15 3 6 3 2 3 3 2 2 3-11 69.5 71.3 70.1 + 9 6 16 0 2 2 2 7 4 3 0 3-11 70.5 71.3 70.1 + 9 6 17 2 3 3 2 2 3 0 0 2-11 70.0 71.3 70.1 + 9 6 18 0 2 2 3 3 4 3 7 3-11 69.9 71.2 70.2 + 9 6 19 5 2 2 2 2 2 2 0 2-11 69.2 71.2 70.2 + 9 6 20 0 4 6 4 4 4 7 5 4-11 68.8 71.2 70.3 + 9 6 21 6 9 6 6 12 4 3 0 6-11 69.2 71.1 70.3 + 9 6 22 2 4 2 2 3 3 2 2 3-11 70.2 71.1 70.3 + 9 6 23 2 2 3 4 2 3 3 18 5-11 70.2 71.0 70.4 + 9 6 24 9 15 27 6 6 7 48 12 16-11 69.1 70.9 70.4 + 9 6 25 7 4 5 4 7 5 5 9 6-11 70.3 70.8 70.4 + 9 6 26 6 3 2 3 2 2 2 3 3-11 69.0 70.7 70.4 + 9 6 27 2 0 3 4 5 7 6 6 4-11 69.3 70.7 70.4 + 9 6 28 7 4 4 3 6 15 27 18 11-11 69.2 70.6 70.5 + 9 6 29 22 9 5 6 7 4 3 2 7-11 70.8 70.5 70.5 + 9 6 30 3 6 4 4 2 5 4 3 4-11 70.5 70.5 70.5 + 9 7 1 3 5 4 3 2 2 2 2 3-11 69.8 70.4 70.5 + 9 7 2 2 3 3 2 2 2 2 0 2-11 68.7 70.4 70.5 + 9 7 3 2 3 2 4 3 3 3 5 3-11 69.5 70.3 70.6 + 9 7 4 4 3 2 2 3 4 3 4 3-11 73.4 70.3 70.6 + 9 7 5 7 7 2 2 2 4 7 6 5-11 74.0 70.3 70.6 + 9 7 6 5 6 3 2 2 2 3 4 3-11 71.2 70.3 70.6 + 9 7 7 3 3 2 4 3 6 5 3 4-11 73.7 70.3 70.6 + 9 7 8 4 2 6 5 4 4 3 3 4-11 73.1 70.3 70.7 + 9 7 9 5 3 5 4 2 6 12 9 6-11 71.4 70.3 70.7 + 9 7 10 9 15 5 5 6 6 3 5 7-11 70.1 70.3 70.7 + 9 7 11 4 5 5 2 3 2 2 4 3-11 70.5 70.2 70.7 + 9 7 12 3 3 4 3 4 2 2 4 3-11 70.3 70.2 70.8 + 9 7 13 3 3 2 4 12 18 9 15 8-11 69.5 70.1 70.8 + 9 7 14 22 9 6 5 7 4 3 5 8-11 68.8 70.0 70.9 + 9 7 15 4 6 5 4 4 4 2 2 4-11 68.7 70.0 70.9 + 9 7 16 3 2 4 2 2 0 2 2 2-11 68.9 69.9 71.0 + 9 7 17 0 2 0 2 0 2 0 0 1-11 68.4 69.9 71.0 + 9 7 18 0 3 2 2 3 0 2 0 2-11 69.2 69.9 71.1 + 9 7 19 0 2 2 2 2 0 0 0 1-11 69.9 69.8 71.1 + 9 7 20 2 5 5 7 6 9 2 0 5-11 70.4 69.8 71.1 + 9 7 21 3 4 3 4 3 4 4 4 4-11 69.9 69.8 71.2 + 9 7 22 15 67 48 32 6 6 9 5 24-11 70.0 69.8 71.2 + 9 7 23 5 5 7 6 6 9 9 7 7-11 69.9 69.8 71.2 + 9 7 24 7 4 7 5 5 7 3 4 5-11 70.5 69.7 71.3 + 9 7 25 7 7 2 4 4 2 3 5 4-11 71.2 69.7 71.3 + 9 7 26 3 2 3 2 3 2 2 0 2-11 69.8 69.7 71.3 + 9 7 27 3 3 3 2 4 3 3 3 3-11 70.5 69.7 71.4 + 9 7 28 4 5 4 4 3 4 0 3 3-11 70.9 69.7 71.4 + 9 7 29 3 4 2 3 3 2 0 0 2-11 70.4 69.7 71.4 + 9 7 30 2 0 0 5 4 7 5 2 3-11 70.1 69.7 71.4 + 9 7 31 0 3 9 6 5 4 3 3 4-11 70.8 69.8 71.4 + 9 8 1 0 4 3 4 4 5 2 3 3-11 70.2 69.8 71.5 + 9 8 2 2 2 0 2 2 2 4 9 3-11 70.1 69.8 71.5 + 9 8 3 12 7 7 5 5 4 6 3 6-11 69.3 69.8 71.5 + 9 8 4 3 4 3 2 3 4 4 4 3-11 67.8 69.8 71.5 + 9 8 5 5 5 5 7 7 3 2 6 5-11 68.1 69.8 71.5 + 9 8 6 9 15 27 5 9 7 6 5 10-11 68.7 69.8 71.5 + 9 8 7 6 6 3 5 4 12 7 12 7-11 69.7 69.8 71.6 + 9 8 8 4 5 2 2 3 4 3 2 3-11 68.8 69.8 71.6 + 9 8 9 7 7 7 6 5 3 4 5 6-11 69.1 69.8 71.6 + 9 8 10 7 0 0 2 3 4 5 3 3-11 69.0 69.8 71.7 + 9 8 11 2 2 4 2 2 3 3 5 3-11 68.4 69.8 71.8 + 9 8 12 3 3 4 5 6 2 3 6 4-11 68.2 69.9 71.8 + 9 8 13 7 3 4 4 4 2 3 2 4-11 68.9 69.9 71.9 + 9 8 14 2 4 3 2 0 2 2 4 2-11 69.4 70.0 72.0 + 9 8 15 3 0 4 0 2 0 2 0 1-11 69.8 70.0 72.0 + 9 8 16 2 2 2 2 2 0 2 3 2-11 70.6 70.0 72.1 + 9 8 17 0 2 0 2 3 3 4 2 2-11 69.8 70.0 72.1 + 9 8 18 3 3 2 2 2 3 3 4 3-11 69.1 70.0 72.2 + 9 8 19 2 2 3 7 15 9 12 15 8-11 68.7 70.0 72.2 + 9 8 20 18 22 7 7 6 3 6 9 10-11 69.2 70.0 72.3 + 9 8 21 6 3 12 5 12 9 5 6 7-11 67.9 70.0 72.3 + 9 8 22 4 7 4 4 4 3 5 4 4-11 68.1 70.1 72.3 + 9 8 23 5 9 5 4 3 2 3 3 4-11 68.8 70.1 72.4 + 9 8 24 4 2 0 2 2 2 2 0 2-11 69.1 70.1 72.4 + 9 8 25 2 4 0 2 3 3 2 3 2-11 68.5 70.2 72.4 + 9 8 26 7 4 6 4 2 2 2 0 3-11 68.7 70.2 72.5 + 9 8 27 3 5 3 4 5 12 9 4 6-11 69.1 70.2 72.5 + 9 8 28 3 5 2 0 0 2 2 2 2-11 69.3 70.2 72.5 + 9 8 29 0 2 4 3 2 2 2 0 2-11 69.3 70.2 72.6 + 9 8 30 7 5 12 7 15 67 32 18 20-11 68.5 70.1 72.6 + 9 8 31 9 5 5 5 5 5 6 3 5-11 69.6 70.1 72.6 + 9 9 1 5 2 0 3 5 3 2 4 3-11 70.4 70.1 72.6 + 9 9 2 6 3 0 2 4 3 2 4 3-11 69.4 70.1 72.7 + 9 9 3 2 2 3 3 4 9 7 9 5-11 69.8 70.1 72.7 + 9 9 4 7 12 7 7 5 6 5 2 6-11 69.5 70.1 72.7 + 9 9 5 4 4 3 2 0 2 3 2 3-11 69.6 70.1 72.7 + 9 9 6 0 6 2 6 3 3 4 3 3-11 70.3 70.1 72.8 + 9 9 7 0 0 2 4 3 4 3 2 2-11 69.8 70.1 72.8 + 9 9 8 3 0 0 0 0 4 3 4 2-11 70.0 70.1 72.8 + 9 9 9 4 2 0 2 3 2 3 2 2-11 70.2 70.1 72.8 + 9 9 10 2 0 0 3 6 2 3 2 2-11 70.2 70.1 72.9 + 9 9 11 0 3 3 3 4 4 5 4 3-11 70.2 70.1 72.9 + 9 9 12 0 3 3 2 3 2 2 3 2-11 69.8 70.1 73.0 + 9 9 13 4 5 3 3 4 9 7 5 5-11 69.9 70.1 73.1 + 9 9 14 15 4 4 4 2 5 4 6 6-11 69.8 70.2 73.1 + 9 9 15 2 7 6 3 4 6 3 9 5-11 69.9 70.3 73.1 + 9 9 16 7 6 7 5 2 3 3 3 5-11 69.5 70.4 73.2 + 9 9 17 9 18 7 3 3 3 5 5 7-11 69.8 70.6 73.2 + 9 9 18 7 4 0 2 3 0 2 0 2-11 69.6 70.7 73.3 + 9 9 19 2 0 3 3 2 2 2 0 2-11 71.1 70.8 73.3 + 9 9 20 0 0 2 3 5 4 12 12 5-11 71.9 70.8 73.4 + 9 9 21 15 6 7 9 6 4 4 0 6-11 72.5 70.9 73.4 + 9 9 22 3 0 4 4 5 3 0 2 3-11 75.3 70.9 73.4 + 9 9 23 2 0 0 0 0 0 0 0 0-11 76.6 71.0 73.5 + 9 9 24 0 0 0 0 2 3 3 2 1-11 75.0 71.0 73.5 + 9 9 25 0 4 0 2 3 2 2 0 2-11 72.8 71.0 73.6 + 9 9 26 0 0 0 2 4 3 4 12 3-11 72.2 71.0 73.6 + 9 9 27 7 18 4 7 4 3 5 5 7-11 72.6 71.0 73.7 + 9 9 28 9 12 18 6 4 2 5 7 8-11 73.5 71.0 73.7 + 9 9 29 2 0 2 2 2 2 0 0 1-11 72.5 71.0 73.7 + 9 9 30 6 5 5 3 6 3 6 5 5-11 72.1 71.0 73.8 + 9 10 1 3 5 2 2 0 2 2 2 2-11 72.2 71.0 73.8 + 9 10 2 3 2 0 3 2 0 2 0 2-11 71.7 71.1 73.8 + 9 10 3 2 0 0 0 2 0 3 0 1-11 71.7 71.1 73.8 + 9 10 4 0 9 4 7 6 3 2 2 4-11 71.1 71.1 73.8 + 9 10 5 3 4 0 2 2 4 3 3 3-11 69.9 71.2 73.9 + 9 10 6 0 3 2 2 3 2 0 2 2-11 68.8 71.3 73.9 + 9 10 7 0 0 2 3 2 3 2 2 2-11 68.4 71.3 73.9 + 9 10 8 3 4 2 0 0 0 0 5 2-11 68.6 71.4 73.9 + 9 10 9 0 3 3 3 0 2 2 2 2-11 69.0 71.5 73.9 + 9 10 10 0 0 0 3 2 0 0 0 1-11 69.8 71.5 74.0 + 9 10 11 7 9 18 5 5 6 4 4 7-11 70.1 71.6 74.0 + 9 10 12 0 2 3 0 2 0 3 2 2-11 69.8 71.7 74.0 + 9 10 13 3 0 4 3 3 2 4 4 3-11 69.4 71.7 74.0 + 9 10 14 0 0 0 2 0 0 2 2 1-11 70.5 71.8 74.0 + 9 10 15 0 0 7 5 6 6 9 4 5-11 70.0 71.8 74.0 + 9 10 16 9 7 3 2 2 0 0 0 3-11 69.2 71.8 74.0 + 9 10 17 0 0 0 3 0 0 0 2 1-11 70.2 71.9 74.1 + 9 10 18 0 0 2 2 2 3 0 0 1-11 69.5 71.9 74.1 + 9 10 19 0 0 3 0 4 4 2 0 2-11 70.3 71.9 74.1 + 9 10 20 3 0 0 0 0 0 0 0 0-11 70.3 71.9 74.1 + 9 10 21 0 0 0 2 4 2 0 2 1-11 70.6 71.9 74.1 + 9 10 22 15 12 7 15 7 6 22 22 13-11 70.9 71.9 74.1 + 9 10 23 22 18 6 22 5 3 2 3 10-11 72.1 71.9 74.1 + 9 10 24 3 2 5 5 6 7 27 12 8-11 74.7 71.9 74.2 + 9 10 25 15 5 5 5 7 4 2 0 5-11 74.7 71.9 74.2 + 9 10 26 2 0 3 5 2 6 6 4 4-11 80.3 71.9 74.2 + 9 10 27 3 2 3 4 4 2 5 0 3-11 80.4 71.9 74.2 + 9 10 28 3 2 4 5 2 2 2 2 3-11 78.9 71.9 74.2 + 9 10 29 3 4 3 2 7 5 9 6 5-11 75.6 71.9 74.2 + 9 10 30 15 18 18 12 3 3 3 3 9-11 74.2 71.9 74.3 + 9 10 31 2 0 0 2 3 2 4 5 2-11 74.0 71.9 74.3 + 9 11 1 4 5 3 3 0 3 3 0 3-11 71.2 71.8 74.3 + 9 11 2 0 2 7 5 2 3 2 0 3-11 70.3 71.8 74.4 + 9 11 3 0 0 0 0 2 0 2 0 1-11 70.3 71.8 74.4 + 9 11 4 0 0 0 0 0 0 3 0 0-11 70.2 71.8 74.4 + 9 11 5 0 2 2 0 2 0 0 0 1-11 69.3 71.9 74.5 + 9 11 6 0 0 0 0 0 0 0 0 0-11 69.6 72.0 74.5 + 9 11 7 0 0 0 0 0 0 0 4 1-11 69.3 72.1 74.5 + 9 11 8 4 5 3 6 9 9 12 9 7-11 69.6 72.2 74.5 + 9 11 9 6 7 6 5 2 3 0 2 4-11 70.7 72.3 74.5 + 9 11 10 3 2 0 0 0 0 2 2 1-11 71.3 72.4 74.5 + 9 11 11 3 0 0 0 0 0 0 0 0-11 71.0 72.5 74.5 + 9 11 12 0 0 0 0 0 0 0 4 1-11 71.7 72.6 74.5 + 9 11 13 0 2 0 0 2 2 5 4 2-11 72.6 72.6 74.5 + 9 11 14 5 4 6 7 6 4 4 7 5-11 73.2 72.7 74.5 + 9 11 15 9 4 5 2 6 12 4 2 6-11 73.5 72.7 74.5 + 9 11 16 0 0 0 0 0 0 3 0 0-11 74.5 72.8 74.5 + 9 11 17 4 0 0 0 0 3 3 0 1-11 75.4 72.9 74.5 + 9 11 18 0 0 4 3 2 2 0 3 2-11 74.4 72.9 74.4 + 9 11 19 0 2 0 2 2 3 2 7 2-11 74.9 73.0 74.4 + 9 11 20 5 0 0 2 3 3 5 2 3-11 74.4 73.0 74.4 + 9 11 21 15 7 7 6 5 2 9 12 8-11 74.0 73.1 74.4 + 9 11 22 12 3 6 2 4 7 3 2 5-11 74.4 73.1 74.4 + 9 11 23 0 0 0 0 2 0 0 0 0-11 73.8 73.2 74.5 + 9 11 24 2 0 0 3 12 15 22 12 8-11 72.8 73.3 74.5 + 9 11 25 9 12 6 4 6 2 2 4 6-11 72.3 73.3 74.5 + 9 11 26 5 3 5 7 4 9 6 5 6-11 72.7 73.3 74.5 + 9 11 27 2 4 3 2 0 2 2 0 2-11 71.7 73.4 74.5 + 9 11 28 0 0 5 4 2 3 2 2 2-11 70.9 73.5 74.5 + 9 11 29 0 0 2 0 0 0 0 0 0-11 70.1 73.5 74.5 + 9 11 30 0 0 2 2 2 0 0 0 1-11 70.4 73.6 74.6 + 9 12 1 0 0 0 0 0 0 0 0 0-11 70.2 73.8 74.6 + 9 12 2 0 0 2 2 2 0 2 0 1-11 69.4 73.9 74.6 + 9 12 3 0 0 0 0 0 0 0 0 0-11 69.6 74.2 74.6 + 9 12 4 0 0 0 0 0 0 0 0 0-11 69.4 74.3 74.6 + 9 12 5 0 0 4 3 3 3 9 7 4-11 69.6 74.5 74.6 + 9 12 6 9 6 3 2 0 0 2 2 3-11 69.8 74.5 74.6 + 9 12 7 5 0 2 2 4 4 5 2 3-11 69.0 74.5 74.6 + 9 12 8 0 0 0 0 0 2 0 2 1-11 70.0 74.5 74.6 + 9 12 9 0 0 0 2 0 0 0 0 0-11 70.8 74.6 74.6 + 9 12 10 0 0 2 2 2 2 2 0 1-11 71.6 74.7 74.6 + 9 12 11 0 0 0 0 0 0 0 0 0-11 69.9 74.7 74.6 + 9 12 12 0 0 3 2 2 3 4 4 2-11 72.2 74.8 74.6 + 9 12 13 0 0 3 3 4 2 3 3 2-11 73.1 74.9 74.6 + 9 12 14 5 15 7 5 3 4 3 2 6-11 76.2 75.1 74.7 + 9 12 15 0 0 2 0 2 0 3 4 1-11 79.0 75.2 74.7 + 9 12 16 7 6 3 4 6 6 3 2 5-11 80.6 75.4 74.7 + 9 12 17 0 2 0 4 4 4 3 2 2-11 84.2 75.4 74.7 + 9 12 18 0 0 4 6 4 5 2 0 3-11 81.6 75.5 74.7 + 9 12 19 3 2 2 3 0 0 0 2 2-11 79.1 75.6 74.7 + 9 12 20 3 0 0 3 3 5 2 0 2-11 81.0 75.6 74.7 + 9 12 21 4 3 0 2 0 2 7 3 3-11 80.0 75.6 74.7 + 9 12 22 2 0 2 2 2 3 6 5 3-11 79.5 75.6 74.7 + 9 12 23 2 4 5 3 3 3 3 5 4-11 75.9 75.6 74.8 + 9 12 24 3 4 3 2 2 2 0 2 2-11 74.6 75.6 74.8 + 9 12 25 0 0 2 2 4 4 7 9 4-11 73.5 75.6 74.8 + 9 12 26 6 7 4 3 2 6 2 0 4-11 73.4 75.6 74.8 + 9 12 27 0 2 2 4 5 4 2 0 2-11 74.3 75.6 74.8 + 9 12 28 0 0 0 3 0 3 2 0 1-11 73.3 75.7 74.9 + 9 12 29 0 0 2 0 0 0 0 0 0-11 72.7 75.9 74.9 + 9 12 30 0 0 0 0 0 0 0 0 0-11 74.3 76.1 74.9 + 9 12 31 0 0 0 0 2 0 0 0 0-11 77.2 76.3 74.9 + 10 1 1 0 0 0 0 0 0 0 4 1-11 72.7 76.5 74.9 + 10 1 2 0 0 2 2 0 2 2 2 1-11 75.4 76.7 74.9 + 10 1 3 2 5 3 7 6 3 0 2 4-11 73.8 76.9 74.9 + 10 1 4 2 0 5 4 2 0 2 0 2-11 70.6 77.2 74.9 + 10 1 5 0 0 0 0 3 4 2 0 1-11 74.3 77.4 74.9 + 10 1 6 3 2 2 2 0 0 0 0 1-11 74.7 77.5 75.0 + 10 1 7 0 0 0 0 0 0 3 0 0-11 75.5 77.7 75.0 + 10 1 8 3 0 2 0 0 2 0 0 1-11 74.9 77.8 75.0 + 10 1 9 0 0 0 2 2 2 0 2 1-11 79.0 78.0 75.0 + 10 1 10 0 0 3 4 5 6 3 0 3-11 81.6 78.1 75.1 + 10 1 11 3 6 9 9 9 6 4 4 6-11 86.3 78.3 75.1 + 10 1 12 5 7 3 2 0 0 6 6 4-11 90.2 78.4 75.1 + 10 1 13 15 9 5 3 4 6 5 9 7-11 87.5 78.6 75.2 + 10 1 14 6 6 0 5 5 3 5 3 4-11 87.0 78.8 75.2 + 10 1 15 4 2 2 2 2 4 7 9 4-11 82.6 78.9 75.2 + 10 1 16 2 0 0 3 2 0 0 2 1-11 81.4 79.0 75.3 + 10 1 17 0 2 0 2 2 0 0 0 1-11 79.9 79.2 75.3 + 10 1 18 0 4 2 2 3 5 3 3 3-11 78.9 79.2 75.3 + 10 1 19 3 0 0 0 2 2 0 2 1-11 81.6 79.3 75.4 + 10 1 20 3 0 5 3 9 27 27 22 12-11 79.1 79.4 75.4 + 10 1 21 7 12 9 4 4 2 0 2 5-11 80.0 79.5 75.5 + 10 1 22 4 6 0 3 3 2 3 4 3-11 79.8 79.6 75.5 + 10 1 23 9 5 4 7 6 2 2 4 5-11 82.0 79.6 75.6 + 10 1 24 4 5 5 6 5 4 3 2 4-11 81.9 79.7 75.6 + 10 1 25 3 3 5 2 5 0 2 5 3-11 78.7 79.6 75.7 + 10 1 26 7 5 2 2 2 2 3 3 3-11 77.3 79.6 75.7 + 10 1 27 0 0 2 2 0 0 0 3 1-11 75.4 79.5 75.8 + 10 1 28 3 2 0 2 4 5 6 2 3-11 74.0 79.4 75.8 + 10 1 29 3 2 0 3 0 0 0 3 1-11 71.1 79.4 75.9 + 10 1 30 7 7 4 2 4 4 5 7 5-11 72.8 79.4 75.9 + 10 1 31 9 4 2 3 4 3 5 4 4-11 73.0 79.5 75.9 + 10 2 1 5 0 6 6 12 12 7 22 9-11 73.1 79.7 76.0 + 10 2 2 15 7 4 6 7 6 5 27 10-11 73.0 79.8 76.0 + 10 2 3 15 4 12 12 12 12 7 3 10-11 72.3 80.0 76.0 + 10 2 4 9 5 2 0 0 0 0 4 3-11 71.8 80.1 76.1 + 10 2 5 3 4 2 2 2 3 0 2 2-11 75.6 80.3 76.1 + 10 2 6 2 0 0 3 7 12 5 5 4-11 85.1 80.4 76.2 + 10 2 7 3 2 2 2 0 3 6 7 3-11 87.8 80.5 76.2 + 10 2 8 12 9 2 4 2 0 0 6 4-11 91.2 80.6 76.3 + 10 2 9 4 2 3 4 2 3 2 2 3-11 89.0 80.8 76.3 + 10 2 10 4 5 3 4 2 0 3 3 3-11 88.9 80.8 76.4 + 10 2 11 7 7 6 5 7 3 2 4 5-11 91.8 81.0 76.4 + 10 2 12 6 18 6 4 3 5 3 4 6-11 93.1 81.1 76.5 + 10 2 13 4 4 2 2 2 6 9 4 4-11 91.8 81.2 76.5 + 10 2 14 3 2 2 3 7 0 2 12 4-11 87.2 81.4 76.6 + 10 2 15 15 15 6 7 5 7 22 32 14-11 85.5 81.6 76.6 + 10 2 16 22 7 9 9 2 3 5 18 9-11 84.7 81.7 76.7 + 10 2 17 18 9 3 2 0 0 2 15 6-11 84.8 81.8 76.7 + 10 2 18 2 0 2 4 7 15 7 2 5-11 83.1 81.9 76.7 + 10 2 19 5 3 2 3 4 3 7 6 4-11 81.8 81.9 76.8 + 10 2 20 0 0 0 0 2 3 0 2 1-11 82.0 81.9 76.8 + 10 2 21 0 0 0 0 3 3 3 2 1-11 81.7 81.8 76.8 + 10 2 22 4 7 0 4 4 5 5 6 4-11 81.9 81.6 76.8 + 10 2 23 9 5 0 2 0 2 2 0 3-11 82.4 81.5 76.8 + 10 2 24 3 9 2 3 2 2 4 3 4-11 80.9 81.4 76.9 + 10 2 25 7 0 2 0 0 2 4 12 3-11 81.1 81.3 76.9 + 10 2 26 12 2 0 2 0 0 0 0 2-11 78.9 81.3 76.9 + 10 2 27 0 0 0 0 0 3 4 2 1-11 77.1 81.2 76.9 + 10 2 28 0 0 4 2 4 3 2 3 2-11 76.6 81.2 76.9 + 10 3 1 5 4 4 3 7 5 6 5 5-11 76.5 81.1 76.9 + 10 3 2 2 2 0 5 7 4 3 9 4-11 78.0 81.1 77.0 + 10 3 3 5 7 3 7 9 12 9 9 8-11 79.0 81.0 77.0 + 10 3 4 7 15 7 3 7 6 4 4 7-11 80.0 80.9 77.0 + 10 3 5 2 0 4 5 6 3 3 3 3-11 78.2 80.9 77.0 + 10 3 6 12 2 2 0 0 3 4 6 4-11 77.1 80.8 77.1 + 10 3 7 7 15 9 3 3 0 0 0 5-11 75.4 80.7 77.1 + 10 3 8 3 6 4 2 0 2 3 2 3-11 75.1 80.7 77.1 + 10 3 9 0 0 2 2 6 4 2 3 2-11 76.8 80.7 77.2 + 10 3 10 5 3 5 4 12 22 9 12 9-11 79.3 80.7 77.2 + 10 3 11 22 12 15 9 6 3 6 3 10-11 83.1 80.8 77.2 + 10 3 12 12 18 9 6 7 7 6 5 9-11 88.5 80.8 77.2 + 10 3 13 5 0 2 2 0 4 6 4 3-11 90.7 80.9 77.2 + 10 3 14 12 4 4 3 7 4 4 7 6-11 88.3 80.9 77.3 + 10 3 15 2 0 0 0 2 4 9 2 2-11 85.5 81.0 77.3 + 10 3 16 0 4 5 3 4 2 3 7 4-11 84.3 81.0 77.3 + 10 3 17 3 22 9 4 2 2 3 12 7-11 85.9 81.1 77.3 + 10 3 18 15 9 2 0 3 3 6 6 6-11 85.0 81.1 77.4 + 10 3 19 3 0 4 3 2 3 6 5 3-11 83.7 81.0 77.4 + 10 3 20 6 12 9 4 6 6 6 2 6-11 82.8 80.8 77.5 + 10 3 21 3 0 2 2 2 0 0 2 1-11 84.1 80.7 77.5 + 10 3 22 0 0 2 0 0 0 0 0 0-11 81.9 80.6 77.5 + 10 3 23 2 0 0 0 3 2 2 0 1-11 83.3 80.5 77.6 + 10 3 24 0 0 0 2 7 9 3 5 3-11 83.9 80.4 77.6 + 10 3 25 4 6 2 5 6 9 12 3 6-11 87.1 80.2 77.6 + 10 3 26 0 5 4 4 6 0 0 7 3-11 85.5 80.1 77.6 + 10 3 27 6 9 2 2 2 3 3 0 3-11 87.8 80.1 77.7 + 10 3 28 0 15 9 5 6 5 4 3 6-11 85.7 80.0 77.7 + 10 3 29 6 2 3 3 5 5 2 9 4-11 82.9 79.9 77.7 + 10 3 30 12 5 3 3 3 5 12 12 7-11 82.6 79.8 77.7 + 10 3 31 7 7 3 6 2 3 3 7 5-11 80.9 79.7 77.8 + 10 4 1 18 15 7 6 18 15 5 12 12-11 79.1 79.7 77.8 + 10 4 2 15 12 22 15 7 7 15 12 13-11 76.1 79.5 77.9 + 10 4 3 12 5 5 4 7 18 12 9 9-11 77.4 79.4 77.9 + 10 4 4 18 12 18 5 6 7 15 22 13-11 78.7 79.3 77.9 + 10 4 5 15 18 56179 67 48 32 22 55-11 79.3 79.2 78.0 + 10 4 6 48 56 39 39 32 56 39 39 44-11 77.7 79.0 78.0 + 10 4 7 32 9 32 22 18 22 22 18 22-11 76.5 78.9 78.0 + 10 4 8 32 9 9 9 5 4 7 22 12-11 75.9 78.8 78.0 + 10 4 9 18 9 4 4 3 4 6 3 6-11 76.3 78.7 78.0 + 10 4 10 4 4 2 0 3 2 2 4 3-11 75.3 78.6 78.0 + 10 4 11 5 0 3 2 22 22 22 22 12-11 74.9 78.6 78.1 + 10 4 12 67 27 18 5 5 15 12 4 19-11 74.9 78.5 78.1 + 10 4 13 0 0 4 3 2 3 2 7 3-11 75.3 78.5 78.1 + 10 4 14 6 4 2 4 3 5 9 48 10-11 75.6 78.4 78.1 + 10 4 15 22 22 5 4 5 5 2 0 8-11 75.0 78.4 78.1 + 10 4 16 5 5 2 2 2 3 4 2 3-11 75.4 78.4 78.2 + 10 4 17 3 2 3 2 0 0 6 6 3-11 74.5 78.3 78.2 + 10 4 18 5 2 2 2 0 3 3 4 3-11 75.3 78.3 78.2 + 10 4 19 5 7 4 6 4 4 3 3 5-11 76.1 78.3 78.3 + 10 4 20 2 2 4 3 7 6 5 5 4-11 76.4 78.3 78.3 + 10 4 21 3 9 7 5 9 6 4 3 6-11 76.9 78.2 78.4 + 10 4 22 3 5 4 3 2 6 12 9 6-11 76.9 78.0 78.4 + 10 4 23 32 18 5 3 5 2 5 9 10-11 75.8 77.8 78.4 + 10 4 24 22 18 3 3 4 3 3 0 7-11 75.0 77.7 78.5 + 10 4 25 4 6 2 2 2 2 2 2 3-11 76.4 77.5 78.5 + 10 4 26 0 0 2 2 2 3 2 2 2-11 77.0 77.4 78.5 + 10 4 27 9 4 2 2 2 6 4 6 4-11 75.7 77.2 78.5 + 10 4 28 4 3 4 2 5 3 2 4 3-11 77.2 77.0 78.6 + 10 4 29 15 18 2 2 3 2 4 3 6-11 77.3 76.9 78.6 + 10 4 30 5 3 3 2 3 3 3 3 3-11 79.8 76.8 78.6 + 10 5 1 3 5 2 2 3 4 2 2 3-11 79.0 76.7 78.6 + 10 5 2 4 4 5 27 80 48 67 56 36-11 80.8 76.6 78.6 + 10 5 3 48 27 22 18 22 15 18 22 24-11 81.6 76.6 78.7 + 10 5 4 22 7 9 9 7 6 6 15 10-11 83.1 76.5 78.7 + 10 5 5 12 7 5 4 4 7 12 6 7-11 84.7 76.3 78.7 + 10 5 6 3 9 7 6 6 12 12 12 8-11 80.5 76.2 78.7 + 10 5 7 15 9 7 5 7 6 9 7 8-11 80.5 76.0 78.7 + 10 5 8 7 7 6 4 5 3 5 4 5-11 80.3 75.8 78.8 + 10 5 9 5 2 0 0 2 2 3 3 2-11 76.9 75.7 78.8 + 10 5 10 4 3 0 3 3 4 9 5 4-11 75.1 75.6 78.9 + 10 5 11 9 7 6 5 5 4 6 3 6-11 75.0 75.5 78.9 + 10 5 12 6 6 3 7 9 4 0 4 5-11 72.7 75.4 78.9 + 10 5 13 5 2 2 2 3 4 3 0 3-11 70.9 75.4 79.0 + 10 5 14 2 3 2 2 2 6 4 0 3-11 71.2 75.4 79.0 + 10 5 15 5 5 2 3 2 2 0 0 2-11 71.8 75.4 79.0 + 10 5 16 3 3 2 2 2 5 5 5 3-11 70.0 75.3 79.1 + 10 5 17 7 5 3 4 6 5 6 5 5-11 70.8 75.3 79.1 + 10 5 18 6 6 5 5 6 4 4 4 5-11 70.3 75.3 79.1 + 10 5 19 3 3 3 6 18 12 6 7 7-11 70.2 75.3 79.2 + 10 5 20 18 6 7 9 15 12 4 9 10-11 70.4 75.3 79.2 + 10 5 21 7 4 5 3 4 3 3 3 4-11 72.6 75.3 79.2 + 10 5 22 0 5 5 4 2 2 2 2 3-11 74.3 75.3 79.2 + 10 5 23 2 2 0 0 0 0 0 0 1-11 76.4 75.4 79.2 + 10 5 24 0 2 0 0 2 3 2 2 1-11 74.4 75.3 79.2 + 10 5 25 4 4 4 4 5 3 4 9 5-11 75.1 75.3 79.2 + 10 5 26 6 5 4 5 5 4 3 5 5-11 74.3 75.3 79.2 + 10 5 27 5 2 2 3 2 2 2 2 3-11 74.6 75.3 79.3 + 10 5 28 6 15 6 15 15 5 9 18 11-11 75.2 75.4 79.3 + 10 5 29 12 22 56 22 32 32 32 15 28-11 75.7 75.4 79.3 + 10 5 30 12 9 27 12 7 27 48 27 21-11 75.0 75.5 79.3 + 10 5 31 12 12 18 15 22 12 12 18 15-11 74.1 75.5 79.3 + 10 6 1 22 7 7 5 7 7 22 9 11-11 74.8 75.7 79.3 + 10 6 2 7 12 5 3 5 6 5 7 6-11 76.1 75.7 79.4 + 10 6 3 5 6 6 18 9 6 12 18 10-11 76.8 75.8 79.4 + 10 6 4 39 27 7 18 6 4 5 6 14-11 74.0 75.9 79.5 + 10 6 5 5 5 5 2 2 4 5 12 5-11 72.4 75.9 79.5 + 10 6 6 7 5 3 4 3 4 9 7 5-11 70.0 75.9 79.6 + 10 6 7 6 4 3 4 6 4 5 4 5-11 70.6 76.0 79.6 + 10 6 8 4 2 3 3 2 4 4 0 3-11 74.0 76.0 79.6 + 10 6 9 3 3 3 3 3 5 4 4 4-11 73.7 76.1 79.7 + 10 6 10 9 7 6 7 4 3 2 4 5-11 75.2 76.2 79.7 + 10 6 11 6 5 3 3 5 4 2 3 4-11 76.9 76.4 79.8 + 10 6 12 2 2 2 2 2 2 4 2 2-11 78.6 76.5 79.8 + 10 6 13 3 6 6 6 6 5 4 6 5-11 78.7 76.6 79.8 + 10 6 14 5 4 5 4 3 3 4 3 4-11 75.1 76.6 79.9 + 10 6 15 3 5 6 9 5 9 9 15 8-11 72.3 76.7 79.9 + 10 6 16 18 18 15 18 15 18 22 15 17-11 73.9 76.7 79.9 + 10 6 17 7 6 15 7 3 7 9 6 8-11 72.7 76.8 79.9 + 10 6 18 6 6 5 4 3 6 6 0 5-11 72.8 76.9 79.9 + 10 6 19 3 2 2 3 2 3 6 3 3-11 71.2 77.0 79.9 + 10 6 20 2 2 2 3 3 3 2 5 3-11 72.3 77.2 79.9 + 10 6 21 4 3 9 2 2 2 6 6 4-11 74.3 77.3 79.9 + 10 6 22 3 5 3 5 4 6 4 5 4-11 75.7 77.4 79.9 + 10 6 23 2 4 5 5 3 3 3 2 3-11 76.5 77.5 79.8 + 10 6 24 0 2 2 3 5 7 9 5 4-11 76.9 77.7 79.9 + 10 6 25 7 3 3 5 5 7 9 15 7-11 76.9 77.8 79.9 + 10 6 26 12 18 18 12 7 9 9 15 13-11 76.9 78.0 79.9 + 10 6 27 15 22 15 12 9 7 7 12 12-11 75.3 78.2 79.9 + 10 6 28 6 6 6 6 5 9 6 5 6-11 76.4 78.4 79.9 + 10 6 29 5 7 9 6 6 6 9 32 10-11 76.0 78.6 79.9 + 10 6 30 32 27 15 12 12 9 9 15 16-11 76.3 78.8 79.9 + 10 7 1 7 12 7 7 7 15 18 7 10-11 75.5 79.0 79.9 + 10 7 2 12 7 9 6 6 5 6 12 8-11 75.9 79.1 80.0 + 10 7 3 6 9 0 6 6 7 5 7 6-11 74.8 79.3 80.0 + 10 7 4 6 3 4 5 4 4 4 3 4-11 74.0 79.4 80.0 + 10 7 5 2 3 4 4 3 2 3 3 3-11 75.2 79.6 80.1 + 10 7 6 5 3 3 2 0 2 2 0 2-11 75.2 79.7 80.1 + 10 7 7 0 2 0 2 3 3 2 3 2-11 76.6 79.9 80.2 + 10 7 8 0 0 2 2 2 2 5 5 2-11 78.2 80.0 80.2 + 10 7 9 7 6 5 4 4 3 3 3 4-11 82.7 80.1 80.2 + 10 7 10 0 2 2 0 2 2 2 0 1-11 82.6 80.1 80.2 + 10 7 11 0 3 2 2 6 6 3 7 4-11 85.4 80.2 80.2 + 10 7 12 5 2 2 2 4 2 4 6 3-11 82.6 80.2 80.2 + 10 7 13 3 3 2 0 2 2 2 3 2-11 81.1 80.2 80.2 + 10 7 14 3 5 4 7 6 6 9 32 9-11 80.3 80.2 80.2 + 10 7 15 27 9 5 6 6 7 3 4 8-11 78.4 80.2 80.1 + 10 7 16 0 2 4 4 7 2 2 2 3-11 79.1 80.3 80.1 + 10 7 17 0 2 2 2 2 2 0 2 2-11 81.3 80.3 80.1 + 10 7 18 0 0 2 3 2 3 2 2 2-11 79.4 80.4 80.1 + 10 7 19 2 2 2 3 3 5 3 3 3-11 82.5 80.4 80.1 + 10 7 20 4 3 6 4 6 4 5 4 5-11 89.9 80.4 80.1 + 10 7 21 4 6 2 3 5 5 6 3 4-11 92.0 80.4 80.1 + 10 7 22 3 4 4 4 5 4 3 4 4-11 90.5 80.4 80.1 + 10 7 23 5 7 6 6 4 7 12 9 7-11 89.2 80.4 80.1 + 10 7 24 6 4 3 2 3 5 4 7 4-11 87.9 80.4 80.1 + 10 7 25 9 5 4 4 5 5 5 6 5-11 87.9 80.4 80.1 + 10 7 26 7 6 5 4 3 3 5 7 5-11 87.1 80.5 80.1 + 10 7 27 12 18 22 22 12 18 27 18 19-11 85.2 80.7 80.1 + 10 7 28 27 6 9 12 12 7 9 9 11-11 88.0 80.8 80.1 + 10 7 29 6 7 7 6 7 4 5 5 6-11 87.2 80.8 80.1 + 10 7 30 6 4 3 5 6 9 7 9 6-11 85.7 80.9 80.1 + 10 7 31 7 3 2 5 9 9 4 3 5-11 83.9 80.9 80.1 + 10 8 1 2 3 4 4 4 4 4 5 4-11 82.1 80.9 80.2 + 10 8 2 4 7 5 4 6 6 3 7 5-11 81.5 81.0 80.2 + 10 8 3 9 7 6 5 5 18 39111 25-11 83.0 81.0 80.2 + 10 8 4 94 32 12 48 48 22 94 39 49-11 83.2 81.1 80.2 + 10 8 5 27 12 3 4 6 4 5 7 9-11 85.1 81.1 80.2 + 10 8 6 5 9 5 4 5 4 5 4 5-11 84.4 81.2 80.2 + 10 8 7 3 5 5 4 2 4 3 3 4-11 93.1 81.3 80.2 + 10 8 8 2 2 0 4 3 4 7 3 3-11 84.9 81.4 80.2 + 10 8 9 9 15 6 5 9 12 7 7 9-11 86.5 81.4 80.2 + 10 8 10 7 7 6 3 5 4 5 12 6-11 85.8 81.5 80.2 + 10 8 11 18 7 12 5 4 5 4 3 7-11 88.1 81.6 80.2 + 10 8 12 6 5 4 3 3 3 3 4 4-11 86.0 81.7 80.2 + 10 8 13 4 5 2 2 2 4 3 2 3-11 86.0 81.9 80.2 + 10 8 14 2 2 2 3 4 4 3 3 3-11 87.4 82.0 80.2 + 10 8 15 9 5 2 4 5 4 6 7 5-11 87.8 82.1 80.2 + 10 8 16 5 6 4 4 3 5 7 3 5-11 86.9 82.2 80.3 + 10 8 17 4 4 2 3 4 6 6 4 4-11 83.1 82.3 80.3 + 10 8 18 5 9 5 3 5 2 2 2 4-11 81.8 82.3 80.4 + 10 8 19 4 4 4 5 3 2 2 2 3-11 79.8 82.4 80.5 + 10 8 20 0 0 0 2 5 4 2 4 2-11 78.9 82.5 80.6 + 10 8 21 0 3 0 2 3 3 3 3 2-11 77.3 82.5 80.7 + 10 8 22 0 2 0 2 2 2 0 2 1-11 76.3 82.6 80.7 + 10 8 23 2 2 2 2 5 4 5 22 6-11 76.5 82.6 80.7 + 10 8 24 22 22 22 15 27 18 9 22 20-11 75.2 82.6 80.8 + 10 8 25 32 39 9 12 15 15 6 15 18-11 75.1 82.6 80.8 + 10 8 26 15 12 15 6 9 7 6 6 10-11 75.0 82.5 80.8 + 10 8 27 7 15 18 18 12 18 5 15 14-11 74.8 82.5 80.8 + 10 8 28 12 7 12 6 6 5 5 6 7-11 73.3 82.4 80.8 + 10 8 29 5 0 3 2 2 0 2 3 2-11 75.4 82.3 80.9 + 10 8 30 2 0 0 0 0 2 2 2 1-11 76.4 82.1 80.9 + 10 8 31 2 0 3 2 4 3 3 5 3-11 76.0 81.9 81.0 + 10 9 1 0 4 2 2 3 5 9 9 4-11 77.7 81.7 81.1 + 10 9 2 7 6 7 7 4 9 4 3 6-11 78.4 81.6 81.2 + 10 9 3 5 2 0 3 2 0 3 0 2-11 78.5 81.4 81.3 + 10 9 4 0 2 0 0 2 2 2 4 2-11 83.6 81.3 81.5 + 10 9 5 0 2 2 3 0 3 4 15 4-11 83.5 81.3 81.6 + 10 9 6 12 15 6 5 5 6 6 9 8-11 81.0 81.3 81.9 + 10 9 7 12 15 4 12 12 12 7 9 10-11 77.3 81.2 82.1 + 10 9 8 9 9 4 6 22 22 9 7 11-11 75.6 81.3 82.3 + 10 9 9 4 0 0 5 9 15 3 5 5-11 74.7 81.3 82.4 + 10 9 10 4 4 3 2 2 2 0 0 2-11 76.4 81.3 82.5 + 10 9 11 0 0 2 2 2 0 0 0 1-11 79.1 81.3 82.6 + 10 9 12 0 0 3 2 2 2 2 0 1-11 79.3 81.3 82.7 + 10 9 13 2 0 0 2 3 6 3 0 2-11 80.4 81.3 82.7 + 10 9 14 3 6 15 7 5 9 9 12 8-11 81.6 81.2 82.8 + 10 9 15 22 5 5 9 3 2 2 4 7-11 82.1 81.2 82.8 + 10 9 16 3 2 2 2 6 9 22 6 7-11 83.3 81.3 82.8 + 10 9 17 7 15 12 9 6 6 5 4 8-11 83.0 81.2 82.8 + 10 9 18 12 4 4 4 2 4 3 3 5-11 82.9 81.2 82.8 + 10 9 19 4 5 3 3 3 3 3 3 3-11 81.9 81.1 82.9 + 10 9 20 3 6 2 3 3 3 7 2 4-11 83.3 81.1 82.9 + 10 9 21 6 12 7 4 2 0 0 3 4-11 85.2 81.0 82.9 + 10 9 22 5 2 0 0 2 2 2 3 2-11 85.4 80.9 83.0 + 10 9 23 4 5 7 6 9 5 6 5 6-11 84.9 80.8 83.1 + 10 9 24 9 12 18 7 12 27 12 22 15-11 83.1 80.7 83.1 + 10 9 25 18 15 7 5 5 5 3 3 8-11 83.4 80.6 83.2 + 10 9 26 4 2 4 4 12 12 9 7 7-11 84.3 80.5 83.3 + 10 9 27 5 0 3 2 6 12 12 12 7-11 83.4 80.6 83.4 + 10 9 28 7 5 32 18 12 7 6 3 11-11 83.5 80.6 83.5 + 10 9 29 4 12 3 3 4 3 2 0 4-11 91.0 80.6 83.6 + 10 9 30 0 0 2 3 2 2 2 3 2-11 90.2 80.6 83.7 + 10 10 1 3 3 0 2 2 0 0 2 2-11 86.9 80.7 83.7 + 10 10 2 0 0 0 0 0 0 0 0 0-11 85.1 80.8 83.8 + 10 10 3 3 4 0 3 0 0 2 0 2-11 80.1 80.9 83.9 + 10 10 4 0 0 0 0 3 2 3 4 2-11 76.1 81.0 84.0 + 10 10 5 6 6 9 7 4 5 3 2 5-11 75.4 81.1 84.1 + 10 10 6 5 0 5 5 9 7 6 2 5-11 74.2 81.3 84.2 + 10 10 7 3 4 3 3 5 2 0 5 3-11 75.0 81.5 84.3 + 10 10 8 15 6 3 4 2 3 2 4 5-11 74.7 81.7 84.4 + 10 10 9 7 5 4 6 2 4 3 2 4-11 76.2 81.8 84.5 + 10 10 10 2 0 0 3 4 3 4 7 3-11 75.7 81.9 84.6 + 10 10 11 3 7 15 22 32 32 27 18 20-11 75.0 81.9 84.6 + 10 10 12 15 22 7 5 6 12 5 12 11-11 74.9 81.9 84.7 + 10 10 13 6 5 7 3 3 5 3 2 4-11 77.7 81.8 84.9 + 10 10 14 3 0 0 2 0 0 0 2 1-11 79.9 81.7 85.0 + 10 10 15 3 3 3 6 5 5 7 7 5-11 81.7 81.6 85.1 + 10 10 16 9 6 3 0 4 7 12 12 7-11 86.3 81.5 85.2 + 10 10 17 9 18 22 7 5 3 9 12 11-11 83.0 81.4 85.4 + 10 10 18 9 3 3 4 2 2 6 12 5-11 89.9 81.4 85.5 + 10 10 19 9 12 9 6 5 3 3 5 7-11 85.9 81.4 85.6 + 10 10 20 7 5 2 5 7 2 4 4 5-11 83.2 81.5 85.7 + 10 10 21 6 3 0 2 4 4 3 0 3-11 82.7 81.6 85.8 + 10 10 22 0 3 5 4 4 5 9 15 6-11 81.4 81.6 85.9 + 10 10 23 22 12 22 32 48 22 15 39 27-11 83.4 81.7 86.0 + 10 10 24 22 27 9 15 15 15 27 9 17-11 81.2 81.8 86.1 + 10 10 25 5 7 7 6 12 4 12 5 7-11 85.2 81.8 86.2 + 10 10 26 12 6 7 7 5 7 15 7 8-11 85.1 81.8 86.3 + 10 10 27 3 4 5 3 4 3 12 4 5-11 86.5 81.9 86.4 + 10 10 28 3 2 3 5 5 4 4 2 4-11 85.3 81.9 86.5 + 10 10 29 6 7 3 0 4 4 0 0 3-11 84.5 81.9 86.6 + 10 10 30 0 0 0 4 3 6 0 2 2-11 83.6 81.9 86.7 + 10 10 31 0 5 3 7 9 3 3 4 4-11 80.0 82.0 86.8 + 10 11 1 0 3 5 3 6 0 3 3 3-11 77.9 82.0 86.8 + 10 11 2 2 2 4 5 2 2 2 2 3-11 77.7 82.0 86.9 + 10 11 3 6 6 4 4 4 4 6 3 5-11 77.2 82.0 87.0 + 10 11 4 6 5 0 3 5 3 0 3 3-11 77.8 82.0 87.1 + 10 11 5 0 0 3 4 4 5 3 0 2-11 81.6 82.0 87.1 + 10 11 6 0 0 0 2 2 3 0 3 1-11 87.1 82.0 87.2 + 10 11 7 3 0 0 0 2 2 6 2 2-11 83.5 81.9 87.2 + 10 11 8 0 0 4 4 7 6 5 3 4-11 82.2 81.9 87.3 + 10 11 9 0 7 3 2 2 2 0 2 2-11 82.5 81.7 87.4 + 10 11 10 0 0 2 0 0 4 7 15 4-11 83.9 81.5 87.4 + 10 11 11 18 5 7 18 18 18 12 39 17-11 82.8 81.4 87.5 + 10 11 12 22 18 22 22 18 7 6 15 16-11 83.7 81.3 87.6 + 10 11 13 12 3 4 4 5 5 12 12 7-11 83.6 81.2 87.6 + 10 11 14 6 7 3 4 4 12 9 15 8-11 84.6 81.2 87.7 + 10 11 15 9 18 6 9 4 2 3 22 9-11 88.8 81.3 87.8 + 10 11 16 18 7 3 6 7 9 4 3 7-11 89.8 81.3 87.8 + 10 11 17 3 12 6 4 4 2 3 4 5-11 89.1 81.3 87.9 + 10 11 18 4 9 6 5 6 4 6 4 6-11 84.5 81.4 87.9 + 10 11 19 3 5 2 3 3 2 0 0 2-11 82.0 81.4 88.0 + 10 11 20 0 3 6 4 2 2 2 2 3-11 77.9 81.5 88.0 + 10 11 21 6 3 0 6 4 3 6 3 4-11 75.8 81.6 88.0 + 10 11 22 3 5 6 7 7 7 5 5 6-11 72.9 81.8 88.1 + 10 11 23 7 7 15 4 5 15 15 9 10-11 73.4 81.9 88.1 + 10 11 24 6 5 5 5 4 6 12 6 6-11 73.9 82.0 88.1 + 10 11 25 5 5 5 3 5 2 3 0 4-11 75.9 82.1 88.1 + 10 11 26 0 0 0 2 2 2 4 0 1-11 74.2 82.1 88.2 + 10 11 27 0 0 0 2 3 6 39 39 11-11 74.5 82.1 88.3 + 10 11 28 15 18 7 4 4 7 12 6 9-11 77.9 82.0 88.4 + 10 11 29 2 3 5 4 5 2 7 2 4-11 80.2 82.0 88.5 + 10 11 30 4 4 3 4 3 4 4 3 4-11 84.0 81.9 88.6 + 10 12 1 5 2 2 0 0 2 6 2 2-11 84.1 81.9 88.7 + 10 12 2 6 5 3 0 2 0 0 2 2-11 84.1 81.9 88.8 + 10 12 3 0 3 0 0 0 0 2 2 1-11 84.4 81.8 88.9 + 10 12 4 0 0 3 2 2 0 4 0 1-11 84.9 81.8 89.0 + 10 12 5 0 0 0 0 0 0 0 6 1-11 85.4 81.7 89.1 + 10 12 6 3 2 2 3 2 4 6 2 3-11 85.9 81.6 89.2 + 10 12 7 4 2 4 4 7 7 6 5 5-11 84.5 81.5 89.3 + 10 12 8 6 7 5 2 3 15 15 4 7-11 84.6 81.4 89.3 + 10 12 9 2 2 3 2 0 0 0 2 1-11 84.2 81.3 89.4 + 10 12 10 0 2 0 2 0 0 2 0 1-11 85.8 81.2 89.4 + 10 12 11 2 2 2 0 2 0 0 2 1-11 84.3 81.2 89.4 + 10 12 12 0 0 2 0 3 15 7 9 5-11 86.7 81.3 89.4 + 10 12 13 12 12 9 3 4 6 15 12 9-11 85.0 81.4 89.5 + 10 12 14 9 12 9 15 18 18 22 22 16-11 87.5 81.5 89.6 + 10 12 15 18 22 6 4 7 7 6 4 9-11 84.2 81.5 89.6 + 10 12 16 9 6 7 7 2 5 6 4 6-11 81.4 81.4 89.7 + 10 12 17 7 5 0 2 3 6 6 5 4-11 79.1 81.3 89.8 + 10 12 18 2 9 3 0 4 4 4 3 4-11 78.0 81.3 89.9 + 10 12 19 5 3 2 0 0 2 0 7 2-11 78.3 81.2 90.0 + 10 12 20 5 22 9 9 7 7 6 22 11-11 75.4 81.2 90.1 + 10 12 21 3 3 2 2 3 4 2 0 2-11 75.3 81.1 90.1 + 10 12 22 0 0 0 2 2 2 0 0 1-11 75.2 81.1 90.2 + 10 12 23 2 0 0 2 0 0 0 3 1-11 77.5 81.0 90.3 + 10 12 24 4 7 4 0 3 4 2 0 3-11 76.1 80.9 90.3 + 10 12 25 6 5 5 3 4 7 7 4 5-11 76.8 80.8 90.4 + 10 12 26 4 3 3 2 2 2 6 5 3-11 77.9 80.7 90.4 + 10 12 27 7 0 0 0 0 0 2 5 2-11 77.4 80.6 90.5 + 10 12 28 2 3 3 3 22 27 15 5 10-11 78.0 80.5 90.5 + 10 12 29 6 4 4 3 4 4 7 0 4-11 79.9 80.4 90.5 + 10 12 30 0 0 4 4 5 9 6 5 4-11 80.2 80.5 90.6 + 10 12 31 6 3 4 5 3 5 3 2 4-11 87.9 80.6 90.6 + 11 1 1 5 3 0 3 4 5 3 7 4-11 88.0 80.7 90.7 + 11 1 2 5 6 2 3 3 5 6 5 4-11 88.1 80.9 90.7 + 11 1 3 3 3 2 4 4 7 7 9 5-11 89.1 81.2 90.7 + 11 1 4 5 12 4 4 5 6 6 3 6-11 87.6 81.5 90.8 + 11 1 5 0 0 0 3 3 3 5 4 2-11 84.8 82.0 90.8 + 11 1 6 5 2 0 2 2 4 7 32 7-11 83.9 82.4 90.8 + 11 1 7 48 12 9 9 7 9 15 15 16-11 83.5 82.9 90.9 + 11 1 8 7 6 6 9 12 9 7 9 8-11 82.0 83.2 90.9 + 11 1 9 5 12 3 5 4 9 9 12 7-11 80.0 83.8 90.9 + 11 1 10 12 5 6 5 6 3 6 5 6-11 80.6 84.0 90.9 + 11 1 11 5 7 2 3 6 12 12 15 8-11 79.9 84.3 91.0 + 11 1 12 6 9 6 9 4 3 7 6 6-11 77.4 84.4 91.0 + 11 1 13 9 6 2 2 6 12 15 18 9-11 76.9 84.4 91.1 + 11 1 14 12 7 9 6 7 15 9 9 9-11 76.7 84.5 91.1 + 11 1 15 4 9 4 5 7 4 4 3 5-11 77.6 84.5 91.2 + 11 1 16 5 4 2 2 7 7 7 4 5-11 77.8 84.5 91.2 + 11 1 17 9 9 5 5 6 5 4 6 6-11 79.1 84.6 91.3 + 11 1 18 9 5 5 2 3 4 3 6 5-11 78.4 84.6 91.3 + 11 1 19 12 9 6 12 9 9 7 4 9-11 78.2 84.7 91.4 + 11 1 20 3 3 4 6 6 5 7 3 5-11 79.7 85.0 91.4 + 11 1 21 2 3 0 2 5 6 4 4 3-11 84.8 85.3 91.4 + 11 1 22 5 6 4 0 4 3 5 2 4-11 84.9 85.7 91.4 + 11 1 23 2 2 3 3 4 3 0 0 2-11 81.7 86.2 91.4 + 11 1 24 0 2 6 4 3 5 7 9 5-11 79.9 86.8 91.4 + 11 1 25 15 3 4 5 4 4 5 9 6-11 78.0 87.5 91.5 + 11 1 26 5 3 3 0 2 5 7 3 4-11 77.6 88.3 91.5 + 11 1 27 5 0 4 3 3 2 4 2 3-11 78.1 89.4 91.6 + 11 1 28 7 4 2 3 2 9 6 6 5-11 78.1 90.2 91.6 + 11 1 29 12 6 3 3 4 5 0 0 4-11 79.0 90.8 91.7 + 11 1 30 2 2 2 0 0 0 0 2 1-11 80.2 91.4 91.8 + 11 1 31 0 3 2 2 2 7 12 9 5-11 78.9 91.9 92.0 + 11 2 1 7 12 12 5 6 18 18 6 11-11 77.6 92.4 92.1 + 11 2 2 15 7 5 6 6 5 5 2 6-11 77.0 92.7 92.2 + 11 2 3 2 2 3 2 0 2 2 0 2-11 78.1 93.0 92.3 + 11 2 4 6 18 9 6 6 9 56 67 22-11 79.8 93.4 92.4 + 11 2 5 48 22 12 9 5 9 15 12 17-11 78.7 93.5 92.4 + 11 2 6 9 12 12 12 15 22 7 7 12-11 78.0 93.6 92.5 + 11 2 7 6 3 2 3 3 4 4 7 4-11 80.1 93.7 92.5 + 11 2 8 9 12 3 5 0 0 4 5 5-11 87.3 93.9 92.6 + 11 2 9 2 0 0 4 2 2 2 0 2-11 86.4 94.1 92.6 + 11 2 10 0 4 9 6 4 2 4 5 4-11 89.0 94.3 92.6 + 11 2 11 4 6 2 3 3 4 12 7 5-11 88.9 94.5 92.6 + 11 2 12 5 7 6 4 3 3 5 0 4-11 93.1 94.7 92.6 + 11 2 13 0 0 4 0 2 2 4 3 2-11104.1 95.0 92.6 + 11 2 14 0 0 2 2 3 15 27 56 13-11109.8 95.3 92.6 + 11 2 15 6 6 6 6 7 6 5 12 7-11110.0 95.7 92.6 + 11 2 16 3 9 3 4 2 2 2 2 3-11111.4 96.1 92.7 + 11 2 17 0 0 3 2 2 4 5 3 2-11108.3 96.5 92.7 + 11 2 18 15 39 48 22 15 15 9 7 21-11121.9 96.9 92.8 + 11 2 19 12 6 7 6 7 4 3 4 6-11106.9 97.3 92.9 + 11 2 20 4 4 12 12 7 9 15 9 9-11102.2 97.7 92.9 + 11 2 21 7 12 4 6 7 7 9 9 8-11 94.6 98.0 93.0 + 11 2 22 6 3 0 4 2 2 0 0 2-11 89.0 98.5 93.1 + 11 2 23 0 3 4 0 4 3 3 2 2-11 87.4 98.9 93.2 + 11 2 24 0 6 2 3 0 0 0 0 1-11 87.0 99.3 93.3 + 11 2 25 0 2 2 3 4 2 4 4 3-11 86.4 99.8 93.4 + 11 2 26 0 2 3 4 3 4 4 5 3-11 88.4100.2 93.4 + 11 2 27 2 0 0 3 3 4 3 0 2-11 88.7100.6 93.5 + 11 2 28 0 2 3 3 3 2 3 4 3-11 94.0100.9 93.6 + 11 3 1 12 9 12 22 27 56 48 27 27-11108.5101.3 93.7 + 11 3 2 32 22 12 7 18 27 18 12 19-11111.4101.6 93.8 + 11 3 3 12 15 22 9 15 22 15 22 17-11118.8101.9 93.9 + 11 3 4 6 12 12 12 12 15 18 15 13-11124.7102.3 94.0 + 11 3 5 5 9 3 5 6 5 6 7 6-11132.5102.8 94.1 + 11 3 6 2 5 2 2 9 7 6 15 6-11140.3103.4 94.2 + 11 3 7 7 7 4 6 9 6 22 15 10-11152.3103.9 94.3 + 11 3 8 7 6 6 3 4 4 4 5 5-11164.3104.4 94.4 + 11 3 9 7 3 5 3 4 3 5 6 5-11141.1104.8 94.5 + 11 3 10 7 9 32 22 12 7 27 39 19-11129.5105.2 94.6 + 11 3 11 48 56 32 7 6 32 48 67 37-11121.5105.7 94.7 + 11 3 12 39 12 12 6 5 4 22 22 15-11119.2106.1 94.8 + 11 3 13 4 2 2 9 6 18 15 4 8-11111.5106.6 94.9 + 11 3 14 6 6 4 3 0 0 2 0 3-11106.1107.1 95.1 + 11 3 15 0 2 2 0 2 0 0 2 1-11100.3107.6 95.2 + 11 3 16 0 0 3 0 2 0 2 3 1-11103.8108.1 95.4 + 11 3 17 2 5 3 2 3 4 22 4 6-11 89.2108.5 95.5 + 11 3 18 4 3 5 2 0 2 2 2 3-11 86.8108.8 95.7 + 11 3 19 4 2 3 6 7 3 3 3 4-11 88.0109.3 95.9 + 11 3 20 3 5 2 3 6 7 4 15 6-11 91.2109.6 96.1 + 11 3 21 9 3 4 2 0 3 4 15 5-11100.2109.9 96.2 + 11 3 22 18 18 4 5 7 3 0 5 8-11 99.1110.2 96.4 + 11 3 23 15 7 12 12 7 18 18 9 12-11104.0110.5 96.6 + 11 3 24 3 0 4 5 6 4 6 3 4-11106.9110.7 96.7 + 11 3 25 0 0 3 4 7 4 4 4 3-11112.0110.9 96.9 + 11 3 26 2 2 2 0 2 0 0 0 1-11113.9110.9 97.2 + 11 3 27 0 0 2 0 0 2 3 5 2-11115.1110.9 97.5 + 11 3 28 3 0 0 3 4 3 4 3 3-11118.1110.8 97.7 + 11 3 29 2 0 0 2 2 7 2 7 3-11115.9110.7 97.8 + 11 3 30 18 5 0 4 3 2 0 2 4-11117.3110.7 97.9 + 11 3 31 0 2 3 6 4 4 3 2 3-11113.1110.4 98.1 + 11 4 1 5 4 5 9 7 22 22 18 12-11108.7110.3 98.2 + 11 4 2 32 18 18 22 15 6 18 32 20-11107.4110.2 98.3 + 11 4 3 22 18 15 15 12 9 22 18 16-11114.0110.2 98.5 + 11 4 4 18 12 6 5 3 3 3 4 7-11112.7110.2 98.6 + 11 4 5 7 6 4 6 2 2 7 12 6-11109.3110.3 98.8 + 11 4 6 12 12 4 39 48 39 32 22 26-11117.2110.4 98.9 + 11 4 7 15 7 3 2 2 3 4 3 5-11112.5110.5 99.0 + 11 4 8 6 2 4 6 15 9 15 27 11-11109.0110.6 99.2 + 11 4 9 15 12 9 5 4 3 0 3 6-11105.3110.5 99.3 + 11 4 10 4 0 0 2 3 4 3 4 3-11105.2110.4 99.4 + 11 4 11 9 2 4 5 9 15 9 5 7-11106.3110.1 99.5 + 11 4 12 9 12 39 32 48 27 5 15 23-11110.8109.8 99.7 + 11 4 13 22 22 22 12 9 5 2 4 12-11118.4109.4 99.8 + 11 4 14 4 7 6 3 2 0 3 6 4-11119.4108.9100.0 + 11 4 15 5 7 3 4 4 4 4 3 4-11130.2108.3100.2 + 11 4 16 2 4 4 4 3 3 2 4 3-11120.0107.6100.3 + 11 4 17 3 2 2 4 6 4 3 3 3-11115.3106.9100.5 + 11 4 18 2 3 12 18 18 12 3 5 9-11111.9106.1100.7 + 11 4 19 3 5 4 4 4 3 3 9 4-11111.9105.8100.8 + 11 4 20 18 48 22 12 12 6 3 3 16-11118.1105.6101.0 + 11 4 21 3 6 4 2 3 4 6 6 4-11114.1105.5101.2 + 11 4 22 9 7 4 6 5 5 3 4 5-11116.0105.5101.4 + 11 4 23 7 2 3 6 2 3 2 2 3-11120.4105.5101.7 + 11 4 24 4 4 2 3 5 7 6 18 6-11118.5105.6101.8 + 11 4 25 6 12 4 2 2 4 3 0 4-11113.5105.7102.0 + 11 4 26 0 0 3 2 3 2 2 3 2-11110.8105.7102.2 + 11 4 27 0 0 2 0 2 3 2 0 1-11109.3105.9102.3 + 11 4 28 0 0 2 2 2 5 5 4 3-11111.9106.0102.4 + 11 4 29 4 7 4 3 4 7 15 56 13-11111.2106.1102.5 + 11 4 30 39 18 18 39 27 15 27 27 26-11111.1106.1102.6 + 11 5 1 22 15 15 12 27 22 9 12 17-11107.7105.9102.7 + 11 5 2 18 27 32 15 15 18 18 15 20-11111.5105.8102.9 + 11 5 3 18 22 9 15 12 9 12 7 13-11108.8105.6103.1 + 11 5 4 9 3 5 6 4 5 3 3 5-11108.7105.4103.3 + 11 5 5 9 15 6 3 6 4 9 4 7-11106.7105.2103.5 + 11 5 6 2 2 3 4 3 2 3 6 3-11103.7105.1103.7 + 11 5 7 3 2 3 3 7 7 7 6 5-11104.1105.0103.9 + 11 5 8 4 2 0 2 2 0 2 4 2-11104.1104.9104.2 + 11 5 9 5 2 0 2 3 5 2 0 2-11105.7104.7104.4 + 11 5 10 4 3 9 9 18 18 12 12 11-11 99.4104.6104.7 + 11 5 11 7 12 4 3 4 3 4 2 5-11 96.0104.4105.0 + 11 5 12 5 2 3 2 0 2 2 2 2-11 94.7104.3105.2 + 11 5 13 3 3 3 4 4 4 3 3 3-11 93.5104.1105.5 + 11 5 14 5 5 0 2 2 4 3 6 3-11 93.4103.9105.7 + 11 5 15 7 6 5 9 12 22 7 12 10-11 96.6103.8105.9 + 11 5 16 9 6 18 22 22 7 9 9 13-11 94.3103.6106.1 + 11 5 17 5 6 12 15 7 7 9 9 9-11 93.6103.3106.2 + 11 5 18 7 6 4 4 6 7 3 3 5-11 92.7103.1106.4 + 11 5 19 4 2 5 5 4 3 2 2 3-11 86.4102.8106.5 + 11 5 20 3 3 2 2 3 2 2 0 2-11 85.7102.6106.7 + 11 5 21 0 3 4 3 4 4 7 7 4-11 85.7102.5106.8 + 11 5 22 7 9 3 2 4 4 3 2 4-11 86.6102.3107.0 + 11 5 23 2 3 2 3 6 3 5 6 4-11 86.3102.0107.1 + 11 5 24 9 5 3 5 7 6 4 5 6-11 83.8101.7107.3 + 11 5 25 4 4 2 2 3 2 2 4 3-11 82.4101.3107.5 + 11 5 26 6 5 4 3 9 9 5 6 6-11 84.9100.7107.7 + 11 5 27 4 6 6 6 12 15 18 18 11-11 92.3100.3107.8 + 11 5 28 39 12 94 80 94 7 5 27 45-11103.2100.0108.0 + 11 5 29 27 56 39 27 22 56 32 15 34-11113.8 99.7108.1 + 11 5 30 12 6 7 9 7 6 9 9 8-11115.0 99.4108.3 + 11 5 31 15 9 12 9 7 12 18 22 13-11115.2 99.1108.4 + 11 6 1 12 4 12 5 9 18 7 12 10-11116.8 98.9108.6 + 11 6 2 7 7 12 6 6 4 9 4 7-11114.8 98.6108.8 + 11 6 3 4 4 4 4 3 3 2 3 3-11110.2 98.3108.9 + 11 6 4 2 3 3 0 2 2 39 56 13-11105.8 98.1109.2 + 11 6 5 94 22 18 15 15 15 15 7 25-11105.9 97.9109.4 + 11 6 6 7 5 6 5 4 5 5 6 5-11103.2 97.7109.5 + 11 6 7 3 2 3 2 3 9 22 27 9-11 99.3 97.7109.7 + 11 6 8 27 22 5 4 12 6 5 7 11-11 92.9 97.6109.9 + 11 6 9 12 15 6 6 6 4 9 9 8-11 90.2 97.5110.0 + 11 6 10 7 2 7 9 7 7 9 15 8-11 89.4 97.4110.2 + 11 6 11 7 18 15 9 15 5 7 6 10-11 87.2 97.3110.3 + 11 6 12 4 4 5 12 12 9 6 3 7-11 87.3 97.1110.4 + 11 6 13 6 4 5 9 9 15 9 7 8-11 89.4 96.9110.6 + 11 6 14 7 7 9 18 3 4 4 7 7-11102.5 96.6110.7 + 11 6 15 6 6 6 6 9 6 4 7 6-11104.8 96.4110.8 + 11 6 16 4 3 3 4 6 12 3 2 5-11106.6 96.3110.9 + 11 6 17 12 12 4 4 9 18 6 4 9-11107.6 96.3111.0 + 11 6 18 7 4 5 3 3 3 3 3 4-11102.4 96.4111.1 + 11 6 19 3 2 5 4 4 2 4 4 4-11102.4 96.5111.2 + 11 6 20 7 9 12 4 6 4 5 6 7-11 99.6 96.7111.3 + 11 6 21 9 12 7 4 15 9 12 7 9-11 98.2 97.0111.5 + 11 6 22 12 7 5 6 9 18 27 12 12-11 96.0 97.5111.7 + 11 6 23 22 18 12 18 18 12 18 22 18-11 99.5 97.8111.8 + 11 6 24 12 9 7 6 9 12 18 15 11-11 99.4 98.2112.0 + 11 6 25 7 6 5 5 4 5 6 7 6-11 96.7 98.5112.2 + 11 6 26 12 18 4 4 6 5 5 4 7-11 93.1 98.7112.3 + 11 6 27 4 4 3 3 4 2 4 6 4-11 92.2 99.0112.5 + 11 6 28 4 6 0 2 5 2 2 0 3-11 89.8 99.2112.7 + 11 6 29 0 3 2 2 2 3 3 2 2-11 90.3 99.4112.8 + 11 6 30 4 6 3 3 3 5 7 5 5-11 92.2 99.6113.0 + 11 7 1 7 18 22 9 18 22 7 4 13-11 90.5 99.6113.2 + 11 7 2 0 2 2 4 4 5 7 12 5-11 88.5 99.6113.3 + 11 7 3 12 15 4 4 5 4 5 3 7-11 89.2 99.6113.4 + 11 7 4 4 6 5 5 7 9 22 27 11-11 87.9 99.7113.5 + 11 7 5 18 32 6 5 3 4 15 7 11-11 87.7 99.8113.6 + 11 7 6 6 12 15 5 5 6 6 9 8-11 87.5 99.9113.7 + 11 7 7 9 4 4 6 6 5 7 7 6-11 88.4 99.9113.9 + 11 7 8 3 3 7 6 4 6 4 15 6-11 88.7 99.9114.0 + 11 7 9 9 27 4 7 5 9 7 15 10-11 88.5 99.7114.2 + 11 7 10 12 18 12 5 9 12 5 6 10-11 93.7 99.5114.3 + 11 7 11 9 5 15 22 7 18 9 12 12-11 93.1 99.4114.4 + 11 7 12 15 7 3 5 9 9 12 3 8-11 94.7 99.2114.6 + 11 7 13 9 7 4 5 7 5 6 5 6-11 97.7 99.1114.7 + 11 7 14 6 7 7 12 6 6 4 6 7-11 97.2 99.1114.8 + 11 7 15 4 12 4 2 5 4 3 3 5-11 96.9 99.1114.9 + 11 7 16 3 3 4 5 3 4 4 3 4-11 96.9 99.1115.0 + 11 7 17 4 5 2 3 3 4 5 6 4-11107.0 99.1115.2 + 11 7 18 3 9 6 9 5 5 4 6 6-11105.3 99.2115.3 + 11 7 19 3 3 7 18 12 27 27 22 15-11103.6 99.4115.5 + 11 7 20 15 18 15 27 18 12 22 18 18-11103.4 99.5115.7 + 11 7 21 22 12 12 7 12 9 7 12 12-11 99.1 99.7115.9 + 11 7 22 12 15 15 7 7 9 9 7 10-11 95.4100.0116.0 + 11 7 23 9 12 6 6 4 4 6 6 7-11 91.1100.3116.2 + 11 7 24 3 3 3 4 2 5 5 5 4-11 88.9100.7116.3 + 11 7 25 6 9 9 12 22 7 9 9 10-11 89.8100.9116.5 + 11 7 26 12 6 6 4 5 2 6 4 6-11 96.4101.1116.6 + 11 7 27 3 5 2 2 0 4 2 3 3-11102.5101.3116.7 + 11 7 28 3 5 2 2 2 2 3 5 3-11110.7101.3116.8 + 11 7 29 2 2 2 3 6 9 5 2 4-11115.2101.5117.0 + 11 7 30 4 3 4 9 12 22 48 27 16-11116.2101.6117.1 + 11 7 31 15 7 9 6 5 7 9 12 9-11122.2101.8117.2 + 11 8 1 6 12 9 4 4 3 3 6 6-11128.7102.0117.3 + 11 8 2 7 3 3 3 3 2 2 2 3-11125.2102.3117.4 + 11 8 3 3 2 2 2 4 3 3 4 3-11123.5102.7117.5 + 11 8 4 0 2 2 2 4 4 2 15 4-11119.7103.0117.6 + 11 8 5 15 7 2 2 2 15111179 42-11112.5103.6117.6 + 11 8 6 94 48 22 27 22 18 5 15 31-11113.2104.2117.7 + 11 8 7 22 6 6 3 4 3 6 7 7-11108.4104.9117.8 + 11 8 8 7 9 5 9 9 4 4 7 7-11104.3105.6117.8 + 11 8 9 12 12 15 6 3 3 6 5 8-11100.2106.3117.9 + 11 8 10 6 6 12 6 4 4 4 4 6-11 92.7107.0117.9 + 11 8 11 3 4 5 3 3 2 6 6 4-11 86.5107.6118.0 + 11 8 12 3 6 3 5 3 5 5 0 4-11 85.7108.3118.0 + 11 8 13 3 5 3 2 3 2 3 7 4-11 85.3109.1118.1 + 11 8 14 9 7 6 5 5 12 9 18 9-11 90.4110.0118.1 + 11 8 15 27 7 5 6 5 12 12 15 11-11 92.7111.3118.1 + 11 8 16 7 7 7 9 12 4 5 5 7-11 95.4112.3118.1 + 11 8 17 15 6 6 5 6 3 4 3 6-11100.0113.0118.1 + 11 8 18 2 2 0 2 4 4 3 0 2-11100.2113.7118.0 + 11 8 19 0 0 2 3 3 2 2 5 2-11100.6114.2118.0 + 11 8 20 3 5 2 2 6 4 7 12 5-11102.9114.8118.0 + 11 8 21 3 2 2 3 3 4 5 3 3-11103.3115.3118.0 + 11 8 22 7 4 7 3 0 6 12 9 6-11110.7115.9118.0 + 11 8 23 7 2 4 6 7 18 18 7 9-11106.1116.3118.0 + 11 8 24 18 6 2 5 6 6 2 9 7-11106.4116.7118.0 + 11 8 25 6 2 2 4 6 5 7 3 4-11106.4117.1118.1 + 11 8 26 0 2 2 2 2 4 7 9 4-11106.8117.4118.1 + 11 8 27 9 2 3 3 5 6 6 4 5-11106.0117.6118.2 + 11 8 28 6 5 4 5 3 5 9 6 5-11103.1117.9118.2 + 11 8 29 12 4 12 12 5 7 5 7 8-11103.2118.0118.3 + 11 8 30 4 3 2 5 4 3 5 2 4-11103.2118.2118.3 + 11 8 31 2 0 3 0 2 2 0 2 1-11111.0118.6118.3 + 11 9 1 5 4 0 2 2 2 2 3 3-11113.8119.0118.2 + 11 9 2 3 5 2 3 3 2 4 5 3-11117.5119.5118.2 + 11 9 3 9 15 7 15 15 12 6 9 11-11120.8120.1118.2 + 11 9 4 12 15 5 3 9 15 7 3 9-11121.5120.7118.1 + 11 9 5 5 2 3 3 5 12 15 5 6-11120.7121.2118.1 + 11 9 6 5 9 9 6 6 5 5 6 6-11113.2121.8118.1 + 11 9 7 15 4 4 4 5 3 6 4 6-11114.5122.3118.0 + 11 9 8 4 6 2 2 0 3 2 0 2-11111.7122.7118.0 + 11 9 9 0 4 3 5 39 67 56 67 30-11113.4123.0118.0 + 11 9 10 67 39 22 39 12 39 32 67 40-11117.8123.5118.1 + 11 9 11 22 9 4 5 18 6 7 22 12-11122.9123.9118.1 + 11 9 12 32 22 22 22 18 22 39 39 27-11125.5124.4118.1 + 11 9 13 32 39 32 15 9 4 7 9 18-11131.0124.8118.2 + 11 9 14 5 4 4 6 5 4 4 5 5-11144.3125.1118.2 + 11 9 15 6 6 5 4 5 5 7 7 6-11142.3125.4118.3 + 11 9 16 3 2 2 4 3 4 3 4 3-11144.6125.6118.3 + 11 9 17 4 12 27 56 56 56 32 15 32-11146.2125.8118.3 + 11 9 18 7 4 2 6 7 3 3 7 5-11151.6126.2118.4 + 11 9 19 0 0 3 2 2 4 4 2 2-11142.2126.4118.4 + 11 9 20 3 15 6 6 6 3 5 5 6-11145.5126.8118.4 + 11 9 21 0 0 4 5 7 6 2 7 4-11145.3127.5118.4 + 11 9 22 4 2 2 4 3 4 5 7 4-11151.9128.1118.4 + 11 9 23 3 2 2 2 0 3 2 3 2-11159.3128.9118.4 + 11 9 24 2 0 2 6 6 3 5 5 4-11191.6129.7118.3 + 11 9 25 3 2 3 7 5 7 4 4 4-11169.8130.6118.3 + 11 9 26 5 3 4 5 39 94 94 56 38-11149.0131.5118.3 + 11 9 27 67 39 32 15 22 12 18 39 31-11139.6132.4118.2 + 11 9 28 32 39 32 9 22 15 6 5 20-11134.0133.4118.2 + 11 9 29 67 48 22 7 15 12 12 6 24-11137.0134.3118.2 + 11 9 30 15 2 0 2 3 3 15 15 7-11138.5135.2118.2 + 11 10 1 39 27 9 7 9 9 12 15 16-11137.2136.1118.2 + 11 10 2 6 12 22 9 12 18 9 15 13-11131.1136.9118.2 + 11 10 3 0 2 4 5 7 7 5 4 4-11129.1137.6118.2 + 11 10 4 5 0 9 6 6 6 4 5 5-11130.4138.1118.1 + 11 10 5 6 7 12 22 22 32 15 9 16-11126.7138.8118.1 + 11 10 6 5 12 5 6 9 7 6 5 7-11123.9139.3118.1 + 11 10 7 5 7 6 6 2 3 3 4 5-11121.9139.7118.0 + 11 10 8 3 5 5 3 4 7 15 22 8-11118.2140.2118.0 + 11 10 9 18 15 15 6 6 6 5 12 10-11120.7140.6118.0 + 11 10 10 4 6 2 0 2 3 2 2 3-11126.0141.1117.9 + 11 10 11 0 0 5 0 6 6 5 2 3-11129.7141.4117.9 + 11 10 12 3 9 7 3 3 4 7 5 5-11133.5141.7117.9 + 11 10 13 3 9 3 3 4 2 2 0 3-11137.0141.9117.8 + 11 10 14 0 0 2 2 3 2 3 2 2-11135.4142.1117.7 + 11 10 15 18 9 2 5 7 12 3 4 8-11136.9142.3117.7 + 11 10 16 9 12 5 4 12 4 4 7 7-11150.0142.4117.6 + 11 10 17 12 3 3 2 0 4 2 6 4-11151.6142.6117.6 + 11 10 18 5 6 5 2 3 5 4 2 4-11145.7142.8117.6 + 11 10 19 7 9 3 7 7 3 3 4 5-11146.1143.1117.6 + 11 10 20 7 5 3 3 3 4 9 2 5-11157.8143.4117.7 + 11 10 21 9 7 5 0 2 2 3 3 4-11166.3143.7117.8 + 11 10 22 3 2 2 2 3 0 0 0 2-11162.5144.0117.9 + 11 10 23 0 0 2 3 3 3 3 4 2-11153.9144.3117.9 + 11 10 24 6 2 6 3 2 4 56132 26-11143.8144.7118.0 + 11 10 25154 67 39 15 15 7 5 3 38-11137.3144.8118.1 + 11 10 26 3 5 3 3 4 5 3 5 4-11130.6145.0118.1 + 11 10 27 2 7 6 5 5 3 2 3 4-11129.9145.0118.2 + 11 10 28 0 0 0 2 0 0 0 0 0-11132.2145.0118.2 + 11 10 29 0 0 0 0 0 0 2 0 0-11121.4144.8118.2 + 11 10 30 4 2 2 6 9 15 3 7 6-11124.9144.8118.2 + 11 10 31 22 4 5 7 5 6 15 15 10-11136.1144.7118.2 + 11 11 1 22 9 15 39 22 27 9 12 19-11136.5144.5118.2 + 11 11 2 12 12 12 12 9 6 4 3 9-11151.2144.2118.3 + 11 11 3 6 5 3 2 0 3 4 2 3-11157.8143.8118.3 + 11 11 4 2 0 2 4 6 3 4 5 3-11161.1143.0118.3 + 11 11 5 6 5 3 3 3 0 3 2 3-11169.0142.4118.4 + 11 11 6 0 0 0 3 4 6 2 6 3-11173.6142.0118.4 + 11 11 7 0 6 4 3 3 7 5 4 4-11178.9141.7118.4 + 11 11 8 9 9 9 6 9 9 4 0 7-11177.7141.6118.5 + 11 11 9 0 0 2 2 3 3 0 0 1-11176.7141.4118.6 + 11 11 10 2 0 0 2 3 5 6 4 3-11175.2141.4118.7 + 11 11 11 3 6 3 6 3 2 2 0 3-11170.4141.4118.8 + 11 11 12 0 0 5 5 4 7 2 0 3-11165.3141.5118.9 + 11 11 13 0 0 3 4 2 2 2 2 2-11152.1141.6119.0 + 11 11 14 0 2 0 2 2 2 0 0 1-11157.7141.7119.1 + 11 11 15 0 5 9 9 7 6 2 6 6-11145.1141.8119.2 + 11 11 16 6 6 2 2 3 2 3 2 3-11139.2142.1119.3 + 11 11 17 4 4 6 3 3 2 5 3 4-11144.4142.2119.5 + 11 11 18 3 3 2 0 5 3 2 3 3-11141.1142.5119.6 + 11 11 19 2 0 0 0 0 0 0 0 0-11136.3142.8119.7 + 11 11 20 0 0 0 0 0 3 3 3 1-11136.6142.9119.9 + 11 11 21 2 2 4 3 3 6 5 15 5-11137.7142.9120.0 + 11 11 22 7 4 5 7 9 12 3 6 7-11138.9142.8120.1 + 11 11 23 9 12 6 5 4 4 5 7 7-11136.5142.7120.2 + 11 11 24 7 3 2 6 15 6 7 12 7-11133.8142.7120.3 + 11 11 25 9 7 5 2 2 2 2 6 4-11131.7142.6120.4 + 11 11 26 3 0 4 4 4 3 4 6 4-11129.3142.4120.4 + 11 11 27 4 6 7 7 6 9 5 3 6-11131.7142.2120.5 + 11 11 28 2 0 2 0 2 0 2 27 4-11134.0142.1120.5 + 11 11 29 27 18 12 7 5 6 18 5 12-11136.8141.9120.4 + 11 11 30 15 4 2 18 18 12 15 9 12-11140.1141.6120.4 + 11 12 1 15 9 5 6 6 3 6 4 7-11148.0141.1120.5 + 11 12 2 4 0 4 2 2 5 12 15 6-11152.9140.6120.5 + 11 12 3 7 4 12 12 5 6 15 15 10-11159.4140.1120.6 + 11 12 4 12 5 4 4 4 3 0 2 4-11159.0139.8120.6 + 11 12 5 0 2 0 0 2 2 5 6 2-11153.6139.6120.7 + 11 12 6 0 0 0 0 2 3 2 0 1-11146.6139.6120.8 + 11 12 7 0 0 0 2 0 0 2 4 1-11144.5139.7121.0 + 11 12 8 2 0 2 0 2 2 6 0 2-11140.4139.7121.1 + 11 12 9 2 2 4 4 6 6 3 4 4-11139.2140.0121.2 + 11 12 10 12 7 12 7 4 4 7 15 9-11135.8140.3121.3 + 11 12 11 7 3 6 5 12 12 7 4 7-11130.2140.3121.4 + 11 12 12 9 5 4 3 4 12 6 6 6-11127.5140.3121.6 + 11 12 13 6 4 4 4 7 3 3 5 5-11129.0140.2121.7 + 11 12 14 4 5 2 2 0 2 4 2 3-11127.9139.9121.8 + 11 12 15 0 3 2 0 0 0 0 2 1-11120.3139.6122.0 + 11 12 16 2 0 0 0 0 0 0 0 0-11117.2139.0122.1 + 11 12 17 0 0 0 0 2 0 0 3 1-11115.8138.4122.2 + 11 12 18 0 0 0 3 2 0 5 3 2-11123.3137.9122.2 + 11 12 19 6 7 5 3 5 7 12 7 7-11124.1137.1122.3 + 11 12 20 7 3 5 4 3 5 12 5 6-11133.0136.2122.3 + 11 12 21 3 4 2 4 6 6 9 12 6-11139.9135.4122.4 + 11 12 22 12 4 2 2 2 3 5 4 4-11141.1134.7122.4 + 11 12 23 3 3 0 3 0 0 0 0 1-11133.7134.1122.4 + 11 12 24 0 0 3 3 2 2 4 3 2-11138.1133.6122.3 + 11 12 25 5 6 4 2 2 0 3 0 3-11139.6133.0122.3 + 11 12 26 0 0 2 0 0 2 2 0 1-11140.8132.5122.3 + 11 12 27 0 0 0 0 0 0 0 0 0-11135.7132.0122.3 + 11 12 28 2 2 0 3 7 7 6 4 4-11140.0131.5122.4 + 11 12 29 3 7 15 22 5 5 7 7 9-11142.3131.1122.5 + 11 12 30 4 7 4 2 3 15 12 9 7-11136.4130.6122.5 + 11 12 31 9 5 5 6 3 4 5 7 6-11128.5130.1122.7 + 12 1 1 6 4 3 2 6 6 5 4 5-11129.4129.7122.8 + 12 1 2 0 0 2 0 5 4 9 9 4-11130.3129.4123.0 + 12 1 3 18 22 6 5 5 6 4 4 9-11130.2129.0123.2 + 12 1 4 6 0 0 0 3 2 2 3 2-11131.6128.6123.4 + 12 1 5 4 4 3 3 12 4 6 3 5-11136.6128.3123.6 + 12 1 6 4 3 3 5 4 7 12 12 6-11131.0128.0123.8 + 12 1 7 12 6 4 4 4 5 4 12 6-11135.9127.6124.0 + 12 1 8 5 7 5 2 2 3 6 4 4-11131.4127.2124.3 + 12 1 9 9 9 6 6 5 12 5 7 7-11137.6126.8124.5 + 12 1 10 3 4 3 6 9 5 6 4 5-11124.6126.3124.8 + 12 1 11 7 12 5 3 3 6 6 6 6-11116.1125.8125.0 + 12 1 12 7 5 0 5 5 5 9 7 5-11113.0125.2125.2 + 12 1 13 12 15 18 4 2 4 2 3 8-11120.0124.5125.3 + 12 1 14 3 2 3 2 2 0 0 2 2-11128.0123.8125.5 + 12 1 15 2 5 2 0 2 4 6 12 4-11129.2123.2125.6 + 12 1 16 7 5 4 9 18 9 15 5 9-11135.1122.7125.8 + 12 1 17 15 7 3 4 4 4 6 4 6-11134.5122.2125.8 + 12 1 18 9 2 2 4 3 3 3 4 4-11143.4121.7125.9 + 12 1 19 2 4 0 3 0 5 2 2 2-11152.0121.3125.8 + 12 1 20 7 7 4 2 2 4 5 0 4-11136.7120.8125.8 + 12 1 21 7 9 5 6 7 4 7 7 7-11137.2120.5125.8 + 12 1 22 3 5 32 22 32 22 39 39 24-11136.6120.2125.8 + 12 1 23 48 22 9 3 3 3 0 4 12-11139.8120.0125.9 + 12 1 24 27 12 5 5 7 32 32 22 18-11131.5119.9125.9 + 12 1 25 15 27 18 32 15 7 6 9 16-11122.5120.0126.0 + 12 1 26 9 2 7 9 6 12 7 5 7-11124.3120.3126.0 + 12 1 27 6 6 15 7 9 6 5 2 7-11137.4120.5126.0 + 12 1 28 7 9 4 3 3 2 9 12 6-11111.0120.6126.1 + 12 1 29 12 9 6 4 0 4 7 5 6-11106.6120.9126.1 + 12 1 30 0 0 3 0 0 15 22 22 8-11111.0121.1126.2 + 12 1 31 9 5 3 2 2 0 0 3 3-11113.1120.9126.2 + 12 2 1 7 9 9 6 6 2 2 3 6-11114.1120.6126.3 + 12 2 2 5 6 5 5 4 0 4 6 4-11114.6120.7126.4 + 12 2 3 9 7 5 6 9 5 3 2 6-11107.9120.4126.4 + 12 2 4 9 12 9 7 12 7 7 12 9-11104.0120.0126.5 + 12 2 5 12 6 4 6 12 6 15 7 9-11 99.8119.5126.6 + 12 2 6 6 9 5 3 5 15 9 5 7-11108.9119.1126.6 + 12 2 7 7 12 7 18 15 9 27 22 15-11104.3118.6126.7 + 12 2 8 27 9 12 7 9 5 12 6 11-11 94.6118.1126.8 + 12 2 9 6 3 0 5 7 6 12 4 5-11 96.6117.6126.9 + 12 2 10 3 4 5 3 5 3 7 9 5-11107.9117.3127.1 + 12 2 11 12 5 4 2 3 2 5 4 5-11109.4116.9127.2 + 12 2 12 6 5 0 3 3 5 4 4 4-11107.6116.6127.2 + 12 2 13 4 5 15 9 15 12 7 12 10-11105.7116.2127.3 + 12 2 14 12 12 7 6 7 12 15 27 12-11104.8115.9127.3 + 12 2 15 9 56 22 18 12 15 18 22 22-11102.0115.4127.4 + 12 2 16 9 0 5 6 7 2 0 0 4-11100.8115.1127.4 + 12 2 17 0 2 5 3 0 0 0 0 1-11101.3114.8127.4 + 12 2 18 0 0 0 2 0 3 6 22 4-11101.7114.5127.4 + 12 2 19 48 67 9 7 5 6 7 18 21-11102.9114.2127.3 + 12 2 20 18 39 15 15 18 18 15 18 20-11108.7114.0127.3 + 12 2 21 18 9 6 6 3 4 3 7 7-11101.0113.9127.3 + 12 2 22 18 18 18 15 9 5 4 2 11-11102.0113.8127.3 + 12 2 23 0 0 4 4 2 2 3 9 3-11101.2113.6127.2 + 12 2 24 6 15 4 5 5 6 3 0 6-11106.7113.3127.2 + 12 2 25 0 3 6 7 9 5 12 6 6-11105.9112.9127.2 + 12 2 26 7 7 7 4 5 3 6 15 7-11104.9112.5127.3 + 12 2 27 22 9 5 7 18 32 56 6 19-11103.5112.0127.3 + 12 2 28 5 7 48 9 4 9 4 12 12-11101.3111.4127.3 + 12 2 29 12 18 12 2 0 2 3 4 7-11100.2110.7127.4 + 12 3 1 2 15 22 22 15 12 27 22 17-11101.6110.2127.4 + 12 3 2 15 15 12 6 12 7 7 7 10-11106.3109.6127.5 + 12 3 3 9 9 9 7 3 12 4 7 8-11114.5109.1127.6 + 12 3 4 22 15 15 9 9 6 15 6 12-11118.2108.6127.6 + 12 3 5 12 7 7 9 5 6 12 18 10-11129.5108.2127.7 + 12 3 6 15 7 12 3 12 7 7 12 9-11136.0108.0127.7 + 12 3 7 22 39 80 67 56 56 39 27 48-11133.7107.8127.8 + 12 3 8 7 4 6 48 39 39 27 27 25-11137.5107.5127.8 + 12 3 9 39 94207154111 67 15 9 87-11143.5107.6127.9 + 12 3 10 39 39 18 12 7 15 18 5 19-11146.9108.0128.0 + 12 3 11 7 6 4 6 9 12 15 18 10-11129.5108.4128.0 + 12 3 12 15 6 9 94 80 22 18 15 32-11113.5108.9128.0 + 12 3 13 22 18 5 5 7 6 7 6 10-11139.0109.3127.9 + 12 3 14 12 7 4 4 7 15 7 9 8-11117.5109.7127.8 + 12 3 15 22 12 7 7 39 94 48 56 36-11109.4110.0127.7 + 12 3 16 32 18 15 32 18 48 27 22 27-11 97.6110.3127.6 + 12 3 17 27 27 22 12 12 32 32 48 27-11101.4110.6127.5 + 12 3 18 27 22 9 9 6 6 9 15 13-11101.1110.7127.3 + 12 3 19 7 22 7 6 9 5 9 12 10-11100.9110.9127.2 + 12 3 20 5 3 4 5 3 4 7 7 5-11 98.8111.2127.1 + 12 3 21 5 3 4 4 6 4 9 6 5-11 99.2111.5127.0 + 12 3 22 3 6 2 2 2 2 12 27 7-11101.7111.5126.9 + 12 3 23 15 3 5 4 3 6 4 0 5-11104.2111.6126.8 + 12 3 24 5 15 32 12 7 7 6 7 11-11102.1111.7126.7 + 12 3 25 6 3 6 5 6 3 0 0 4-11100.8111.8126.6 + 12 3 26 3 5 4 4 3 3 2 4 4-11101.9112.0126.5 + 12 3 27 7 12 6 12 15 15 18 48 17-11105.2112.2126.5 + 12 3 28 39 32 12 6 9 5 9 5 15-11106.6112.5126.5 + 12 3 29 0 0 0 0 5 3 5 9 3-11111.2112.8126.5 + 12 3 30 12 7 5 3 4 3 0 2 5-11110.4113.1126.5 + 12 3 31 2 2 2 3 6 7 9 2 4-11109.9113.5126.5 + 12 4 1 5 6 4 6 5 7 6 7 6-11107.2113.9126.5 + 12 4 2 18 15 6 5 9 6 6 6 9-11105.9114.3126.5 + 12 4 3 7 7 3 2 3 3 6 7 5-11103.6114.7126.4 + 12 4 4 7 9 2 2 5 7 6 15 7-11102.1115.1126.4 + 12 4 5 15 18 27 27 12 18 6 7 16-11101.0115.4126.3 + 12 4 6 4 3 2 0 0 2 2 7 3-11 97.6115.7126.3 + 12 4 7 12 18 9 18 9 3 2 7 10-11 98.7116.1126.2 + 12 4 8 9 5 4 4 4 3 3 2 4-11 93.5116.5126.2 + 12 4 9 3 3 0 2 2 2 6 7 3-11 94.9116.9126.1 + 12 4 10 18 7 4 4 4 5 5 7 7-11 93.7117.4126.1 + 12 4 11 4 4 7 5 5 2 2 7 5-11 93.8117.7126.0 + 12 4 12 3 22 9 6 6 15 39 22 15-11 95.8117.9126.0 + 12 4 13 39 48 22 15 6 12 7 12 20-11 98.3118.0125.9 + 12 4 14 18 22 7 5 7 7 9 3 10-11 98.8118.0125.9 + 12 4 15 4 6 4 4 5 4 7 4 5-11102.4117.9125.9 + 12 4 16 5 5 2 2 5 5 5 6 4-11108.8117.6125.8 + 12 4 17 5 2 9 9 9 9 18 9 9-11114.7117.3125.8 + 12 4 18 18 12 12 5 6 5 4 5 8-11122.6117.0125.8 + 12 4 19 4 4 2 2 2 2 12 12 5-11139.1116.6125.7 + 12 4 20 4 18 18 6 5 4 3 4 8-11143.1116.2125.7 + 12 4 21 5 2 2 4 2 6 18 22 8-11150.6116.1125.6 + 12 4 22 18 12 6 12 7 4 3 4 8-11149.5116.3125.6 + 12 4 23 6 27 18 4 9 32 48 67 26-11143.4116.3125.6 + 12 4 24111 67 39 7 12 12 32 48 41-11135.2116.5125.6 + 12 4 25 32 18 22 27 15 27 56 22 27-11128.8116.7125.6 + 12 4 26 32 39 9 6 12 5 12 9 16-11120.7117.3125.6 + 12 4 27 15 9 7 3 6 5 6 9 8-11119.5118.0125.6 + 12 4 28 5 3 3 7 4 7 7 9 6-11122.8118.3125.5 + 12 4 29 9 7 3 3 3 2 4 2 4-11117.7118.7125.5 + 12 4 30 2 3 3 3 0 0 2 3 2-11115.9119.1125.5 + 12 5 1 2 2 3 2 2 4 3 6 3-11111.6119.5125.4 + 12 5 2 7 4 2 3 3 0 2 9 4-11117.4120.0125.3 + 12 5 3 12 7 6 5 5 5 4 15 7-11115.9120.5125.1 + 12 5 4 7 5 0 0 2 5 3 0 3-11115.9121.0125.0 + 12 5 5 0 2 2 5 5 3 0 3 3-11118.1121.7124.8 + 12 5 6 4 2 5 7 6 3 5 0 4-11119.4122.3124.6 + 12 5 7 0 2 2 6 3 3 0 2 2-11123.9122.7124.4 + 12 5 8 3 7 5 5 7 7 7 27 9-11125.1122.9124.1 + 12 5 9 22 27 27 15 22 27 39 32 26-11129.8123.1123.9 + 12 5 10 9 15 7 6 6 5 9 22 10-11133.3123.1123.7 + 12 5 11 22 15 7 6 5 15 7 6 10-11139.2123.1123.5 + 12 5 12 15 6 6 6 12 9 7 9 9-11132.2123.0123.4 + 12 5 13 12 18 9 7 7 6 12 12 10-11133.3122.8123.3 + 12 5 14 12 5 2 0 2 2 3 5 4-11132.9122.6123.3 + 12 5 15 6 7 5 3 3 0 0 6 4-11131.9122.4123.2 + 12 5 16 9 5 4 4 7 9 12 22 9-11133.9122.3123.2 + 12 5 17 6 4 3 2 3 2 4 4 4-11139.5122.4123.2 + 12 5 18 15 6 5 6 4 9 6 9 8-11135.3122.5123.2 + 12 5 19 7 5 3 5 4 5 4 3 5-11134.1122.9123.2 + 12 5 20 15 27 12 6 12 5 3 2 10-11134.0123.2123.2 + 12 5 21 0 2 2 2 0 2 22 5 4-11128.2123.6123.2 + 12 5 22 12 27 9 9 22 22 32 22 19-11124.3124.2123.2 + 12 5 23 22 39 27 12 7 9 9 7 17-11120.2125.1123.2 + 12 5 24 6 6 7 6 6 7 6 5 6-11118.5125.8123.1 + 12 5 25 7 4 4 7 5 9 3 4 5-11120.3126.6123.1 + 12 5 26 9 3 3 3 2 0 0 0 3-11112.9127.5123.0 + 12 5 27 2 5 3 2 2 4 2 0 3-11113.7128.1123.0 + 12 5 28 2 2 0 3 6 7 9 4 4-11113.3128.7123.0 + 12 5 29 3 5 2 3 5 5 6 9 5-11109.3129.5122.9 + 12 5 30 9 5 4 6 6 7 7 3 6-11114.1130.0122.9 + 12 5 31 12 5 7 7 6 9 22 3 9-11120.6130.4122.8 + 12 6 1 3 6 2 7 6 7 5 5 5-11132.2130.6122.7 + 12 6 2 3 4 4 5 5 15 12 22 9-11132.9130.9122.5 + 12 6 3 9 6 6 12 56 67 32 5 24-11133.2131.0122.3 + 12 6 4 5 12 12 27 27 9 15 22 16-11131.9131.2122.2 + 12 6 5 9 22 15 12 27 15 18 18 17-11142.8131.4122.0 + 12 6 6 18 22 7 12 18 15 32 12 17-11156.4131.9121.8 + 12 6 7 7 6 7 5 6 6 9 7 7-11132.1132.1121.7 + 12 6 8 6 6 9 12 4 2 7 3 6-11127.9131.9121.6 + 12 6 9 5 9 4 6 6 4 18 7 7-11132.3131.8121.5 + 12 6 10 0 3 2 3 9 7 5 7 5-11132.3131.5121.4 + 12 6 11 7 6 12 6 7 12 27 56 17-11138.1131.3121.3 + 12 6 12 48 22 5 4 5 4 4 3 12-11145.8131.0121.2 + 12 6 13 7 6 4 4 2 4 4 3 4-11147.3130.8121.2 + 12 6 14 3 3 3 4 4 2 3 0 3-11153.3130.7121.1 + 12 6 15 0 0 0 2 3 3 3 3 2-11149.6130.6121.1 + 12 6 16 2 3 2 9 15 12 22 94 20-11138.8130.6121.1 + 12 6 17 22 18 56 80 80 27 32 27 43-11128.0130.6121.1 + 12 6 18 32 56 15 7 9 7 5 4 17-11121.9130.7121.1 + 12 6 19 0 2 3 0 0 2 2 2 1-11113.5130.7121.0 + 12 6 20 4 5 3 3 2 2 3 0 3-11107.1130.8121.0 + 12 6 21 2 3 0 2 3 3 3 3 2-11100.9130.9120.9 + 12 6 22 3 3 6 5 7 4 2 0 4-11 91.4131.2120.8 + 12 6 23 2 2 4 4 2 7 5 2 4-11 86.8131.2120.8 + 12 6 24 6 2 4 3 4 4 4 2 4-11 88.1131.4120.7 + 12 6 25 5 6 9 6 18 12 6 5 8-11 91.5131.5120.6 + 12 6 26 7 12 9 7 5 4 2 6 7-11102.5131.5120.5 + 12 6 27 3 4 4 4 9 9 6 7 6-11109.9131.5120.4 + 12 6 28 5 5 12 6 6 4 3 3 6-11123.7131.5120.3 + 12 6 29 4 3 4 3 5 4 5 9 5-11121.3131.5120.2 + 12 6 30 9 15 22 32 39 27 22 32 25-11128.2131.5120.1 + 12 7 1 22 22 18 18 15 15 15 18 18-11137.9131.5120.1 + 12 7 2 18 22 32 15 27 27 15 7 20-11171.4131.5120.0 + 12 7 3 9 7 6 12 7 18 7 9 9-11150.7131.5120.0 + 12 7 4 9 15 6 9 9 3 3 6 8-11168.6131.4119.9 + 12 7 5 7 5 4 18 32 18 12 15 14-11170.1131.2119.9 + 12 7 6 7 12 6 7 9 22 27 32 15-11163.0131.1119.9 + 12 7 7 7 6 6 6 5 4 12 7 7-11163.7130.9119.9 + 12 7 8 6 6 6 15 9 12 9 32 12-11183.7130.8119.9 + 12 7 9 39 22 32 22111 56 18 32 42-11179.6130.6120.0 + 12 7 10 22 7 12 22 12 7 9 7 12-11179.2130.4120.0 + 12 7 11 9 9 22 15 4 5 7 15 11-11167.1130.2120.1 + 12 7 12 12 15 22 15 6 6 3 5 11-11170.9129.7120.3 + 12 7 13 2 3 2 3 2 2 2 2 2-11152.1129.3120.4 + 12 7 14 2 3 3 4 9 15 67 48 19-11152.8128.9120.5 + 12 7 15 32 56111 80 56 80132 80 78-11145.1128.5120.6 + 12 7 16 94 56 39 32 48 39 12 15 42-11159.5128.1120.6 + 12 7 17 22 39 32 6 7 12 7 9 17-11131.7127.6120.6 + 12 7 18 5 4 5 4 3 4 5 5 4-11113.1127.4120.6 + 12 7 19 2 5 6 4 6 5 6 4 5-11103.2127.2120.6 + 12 7 20 5 15 5 15 9 15 9 9 10-11 95.3127.1120.5 + 12 7 21 9 6 7 4 3 15 12 6 8-11 92.8127.0120.4 + 12 7 22 3 9 12 9 6 3 3 7 7-11 96.7127.0120.3 + 12 7 23 9 7 4 5 12 15 7 12 9-11 99.8127.0120.2 + 12 7 24 9 12 5 5 12 7 9 3 8-11105.7127.0120.1 + 12 7 25 15 4 7 5 4 2 3 3 5-11108.7126.8120.0 + 12 7 26 2 0 3 2 4 4 2 0 2-11118.3126.7120.0 + 12 7 27 0 5 4 3 3 4 3 6 4-11127.1126.7119.9 + 12 7 28 3 5 7 6 12 12 22 18 11-11130.5126.7119.8 + 12 7 29 9 6 6 6 5 3 4 2 5-11135.4126.9119.7 + 12 7 30 5 6 15 12 15 32 18 7 14-11140.1127.1119.7 + 12 7 31 6 5 3 2 6 5 4 5 5-11144.0127.3119.6 + 12 8 1 4 5 4 4 5 4 6 7 5-11154.6127.4119.6 + 12 8 2 2 2 3 6 39 48 27 15 18-11138.6127.6119.5 + 12 8 3 12 12 6 4 4 4 3 3 6-11143.8127.8119.5 + 12 8 4 4 4 5 3 5 7 5 9 5-11142.7128.0119.5 + 12 8 5 2 2 3 5 4 5 6 9 5-11137.9128.1119.5 + 12 8 6 9 15 6 9 7 15 7 12 10-11137.9128.1119.5 + 12 8 7 6 4 4 6 5 4 6 15 6-11132.1127.9119.5 + 12 8 8 39 6 6 5 6 9 3 4 10-11137.0127.7119.5 + 12 8 9 12 6 4 5 3 4 3 3 5-11134.8127.5119.5 + 12 8 10 2 4 2 0 2 2 2 3 2-11128.8127.3119.5 + 12 8 11 0 2 2 2 6 4 6 7 4-11123.0127.0119.5 + 12 8 12 6 7 7 4 6 5 9 9 7-11115.3126.4119.5 + 12 8 13 3 5 6 6 9 15 12 6 8-11110.9126.0119.5 + 12 8 14 6 7 5 6 6 5 4 9 6-11108.5125.6119.5 + 12 8 15 5 0 4 5 5 5 6 9 5-11103.2125.2119.5 + 12 8 16 7 7 7 4 12 22 15 18 12-11100.8124.9119.4 + 12 8 17 22 9 6 4 4 4 5 6 8-11 97.5124.6119.4 + 12 8 18 4 7 6 7 7 9 22 15 10-11 99.4124.0119.4 + 12 8 19 6 7 5 27 18 6 5 27 13-11 98.5123.5119.4 + 12 8 20 18 15 12 6 18 6 9 7 11-11 98.5123.0119.4 + 12 8 21 6 4 4 5 5 5 3 12 6-11 96.4122.6119.4 + 12 8 22 4 5 2 4 9 5 4 9 5-11 96.9122.1119.5 + 12 8 23 15 7 7 7 7 9 15 3 9-11 98.8121.7119.5 + 12 8 24 9 7 5 5 7 5 7 12 7-11106.4121.2119.5 + 12 8 25 5 7 9 6 9 9 12 15 9-11108.1120.7119.5 + 12 8 26 4 6 6 15 18 9 22 7 11-11115.6120.1119.4 + 12 8 27 6 15 6 3 3 3 3 6 6-11113.7119.6119.4 + 12 8 28 3 2 2 5 4 2 3 3 3-11113.4119.5119.4 + 12 8 29 4 4 5 3 3 3 0 3 3-11120.6119.5119.4 + 12 8 30 2 2 3 3 4 3 4 2 3-11130.2119.6119.4 + 12 8 31 0 0 2 3 4 0 0 0 1-11132.9119.8119.4 + 12 9 1 6 6 7 6 5 4 3 6 5-11148.2120.1119.4 + 12 9 2 15 12 9 9 9 12 22 39 16-11144.7120.3119.4 + 12 9 3 18 27 22 15 67 39 32 27 31-11144.0120.6119.4 + 12 9 4 18 15 32 7 7 9 9 27 16-11139.9120.8119.3 + 12 9 5 67 56 48 27 7 18 18 12 32-11134.9121.1119.3 + 12 9 6 32 27 3 3 3 15 12 4 12-11130.0121.2119.2 + 12 9 7 5 15 9 5 7 6 18 15 10-11135.4121.2119.2 + 12 9 8 12 9 5 6 7 7 7 4 7-11130.5121.2119.1 + 12 9 9 4 4 4 5 3 3 4 3 4-11124.8121.2119.0 + 12 9 10 6 3 4 2 4 3 3 0 3-11112.8121.3119.0 + 12 9 11 0 0 2 2 0 2 0 2 1-11106.4121.2119.0 + 12 9 12 4 4 5 7 5 3 4 7 5-11103.8121.3118.9 + 12 9 13 15 6 5 2 2 6 4 3 5-11100.3121.3119.0 + 12 9 14 3 5 3 3 5 6 4 15 6-11101.7121.2119.0 + 12 9 15 9 7 6 5 3 5 5 9 6-11 98.6121.1119.1 + 12 9 16 9 12 3 6 4 4 15 5 7-11 98.3121.0119.1 + 12 9 17 7 6 0 4 3 2 3 6 4-11102.5120.8119.2 + 12 9 18 15 18 7 6 9 12 2 4 9-11105.3120.6119.2 + 12 9 19 4 9 3 5 6 22 22 39 14-11110.8120.2119.2 + 12 9 20 18 7 15 9 7 7 7 6 10-11118.4119.9119.2 + 12 9 21 5 5 5 5 9 12 6 3 6-11117.8119.7119.2 + 12 9 22 6 4 5 5 2 2 2 5 4-11125.3119.4119.2 + 12 9 23 0 0 0 0 0 0 2 0 0-11134.4119.2119.2 + 12 9 24 0 0 0 0 2 5 3 3 2-11137.4119.0119.2 + 12 9 25 3 3 3 2 2 2 0 0 2-11140.6118.9119.1 + 12 9 26 3 2 3 3 6 4 15 9 6-11139.9118.8119.1 + 12 9 27 12 6 5 3 2 2 2 4 5-11133.8118.8119.1 + 12 9 28 0 0 2 0 0 0 0 0 0-11138.3118.8119.1 + 12 9 29 0 4 5 3 3 3 4 3 3-11136.4118.9119.1 + 12 9 30 3 4 5 15 15 15 12 32 13-11135.9119.1119.1 + 12 10 1111 94 22 7 7 5 4 5 32-11128.3119.3119.1 + 12 10 2 6 2 0 9 7 6 4 6 5-11118.3119.8119.1 + 12 10 3 12 9 5 3 3 3 3 4 5-11111.8120.3119.2 + 12 10 4 3 2 2 3 0 0 0 0 1-11109.5120.7119.3 + 12 10 5 0 0 2 4 3 7 4 9 4-11106.1121.1119.4 + 12 10 6 9 5 4 5 9 7 5 6 6-11 98.7121.4119.5 + 12 10 7 3 6 3 5 2 2 6 12 5-11 97.9121.7119.6 + 12 10 8 15 27 94 67 27 9 56 27 40-11103.2121.9119.7 + 12 10 9111 80 67 32 6 7 15 48 46-11105.9122.1119.9 + 12 10 10 15 7 7 9 9 18 15 7 11-11111.6122.1120.0 + 12 10 11 12 7 4 5 7 5 3 6 6-11116.2122.2120.1 + 12 10 12 18 27 9 7 9 15 12 5 13-11121.3122.0120.2 + 12 10 13 18 48 67 56 67 67 32 22 47-11124.3121.8120.3 + 12 10 14 32 15 18 22 27 12 18 27 21-11131.3121.5120.4 + 12 10 15 22 12 7 7 6 3 7 5 9-11135.9121.2120.4 + 12 10 16 4 5 9 5 5 6 4 4 5-11136.1121.0120.4 + 12 10 17 12 7 9 3 5 4 3 12 7-11134.1120.9120.4 + 12 10 18 12 3 3 5 3 6 4 4 5-11136.5120.6120.4 + 12 10 19 9 3 2 0 2 2 2 2 3-11140.3120.4120.3 + 12 10 20 0 0 2 2 2 2 3 2 2-11150.1120.2120.1 + 12 10 21 3 3 4 3 3 3 3 2 3-11142.8120.1120.0 + 12 10 22 5 3 2 0 0 3 3 2 2-11153.9120.0119.9 + 12 10 23 6 9 6 7 6 6 9 4 7-11140.1119.9119.9 + 12 10 24 5 7 3 3 3 2 3 0 3-11134.1119.9119.8 + 12 10 25 4 5 2 3 3 0 2 5 3-11128.5119.7119.8 + 12 10 26 2 2 6 3 3 6 4 6 4-11129.1119.7119.8 + 12 10 27 6 4 4 3 3 2 2 3 3-11120.2119.6119.8 + 12 10 28 0 3 6 3 4 2 3 0 3-11115.4119.5119.9 + 12 10 29 2 2 5 2 0 0 0 4 2-11106.9119.4119.9 + 12 10 30 6 0 2 2 0 0 2 2 2-11104.8119.3120.0 + 12 10 31 0 0 2 2 4 15 6 9 5-11102.7119.1120.2 + 12 11 1 15 15 15 22 18 39 32 18 22-11 96.8118.9120.3 + 12 11 2 9 9 4 2 3 4 5 6 5-11 94.9118.7120.4 + 12 11 3 0 0 2 3 5 4 3 2 2-11 91.8118.4120.5 + 12 11 4 0 4 2 2 3 2 0 0 2-11 93.4118.1120.5 + 12 11 5 0 0 3 3 3 6 3 2 3-11 94.9117.9120.5 + 12 11 6 3 2 3 3 3 7 5 4 4-11 96.9117.6120.6 + 12 11 7 12 18 5 5 15 22 27 15 15-11 99.8117.3120.6 + 12 11 8 4 0 2 4 3 0 2 5 3-11102.2117.0120.6 + 12 11 9 0 0 3 0 0 0 2 0 1-11112.9116.6120.6 + 12 11 10 0 0 0 2 3 2 3 6 2-11119.8116.3120.6 + 12 11 11 2 0 0 2 5 3 0 2 2-11130.6116.1120.6 + 12 11 12 5 0 0 0 0 5 5 27 5-11140.8116.0120.7 + 12 11 13 39 18 9 18 12 18 15 22 19-11143.1116.0120.7 + 12 11 14 67 94 67 32 22 7 3 5 37-11139.1116.0120.8 + 12 11 15 5 3 3 4 2 2 3 5 3-11138.6116.1120.8 + 12 11 16 6 7 4 3 5 7 12 9 7-11135.2116.1120.8 + 12 11 17 6 15 6 7 7 7 12 9 9-11132.4116.2120.8 + 12 11 18 4 9 4 4 4 5 0 6 5-11137.7116.2120.8 + 12 11 19 5 2 6 4 7 6 2 4 5-11130.7116.1120.8 + 12 11 20 12 12 12 9 7 15 32 22 15-11137.8116.0120.8 + 12 11 21 15 15 9 6 3 4 6 4 8-11137.0116.0120.9 + 12 11 22 4 2 2 2 3 0 2 5 3-11124.5115.9120.9 + 12 11 23 0 2 3 3 2 0 5 39 7-11123.5115.8120.9 + 12 11 24 39 27 18 7 15 7 5 5 15-11115.0115.7120.9 + 12 11 25 3 6 4 2 5 5 3 4 4-11118.4115.7121.0 + 12 11 26 12 7 5 3 0 4 4 2 5-11118.6115.8121.0 + 12 11 27 2 4 4 4 3 4 5 3 4-11114.0115.8121.0 + 12 11 28 2 2 0 0 0 0 3 4 1-11111.2115.9121.0 + 12 11 29 0 3 2 4 0 5 3 2 2-11110.0116.0120.9 + 12 11 30 0 0 0 3 0 3 0 2 1-11107.5116.2120.9 + 12 12 1 4 4 2 2 3 3 9 9 5-11 98.8116.5120.8 + 12 12 2 12 12 12 12 7 3 2 0 8-11 94.9116.7120.8 + 12 12 3 2 4 5 3 4 4 3 5 4-11 93.9116.9120.7 + 12 12 4 5 12 7 2 2 0 2 0 4-11 93.4117.2120.7 + 12 12 5 0 0 0 2 0 0 3 5 1-11 92.7117.4120.6 + 12 12 6 0 0 0 2 2 0 0 0 1-11 94.6117.5120.5 + 12 12 7 0 0 0 0 0 0 3 0 0-11 94.2117.6120.4 + 12 12 8 0 2 0 2 0 0 0 2 1-11 98.1117.7120.4 + 12 12 9 3 5 0 3 3 4 4 12 4-11100.6117.7120.3 + 12 12 10 9 3 3 3 2 2 3 2 3-11100.9117.7120.2 + 12 12 11 5 4 0 0 0 0 3 2 2-11100.5117.7120.0 + 12 12 12 0 0 3 2 3 2 0 3 2-11108.4117.8119.9 + 12 12 13 6 4 0 0 2 2 3 2 2-11113.0118.0119.8 + 12 12 14 4 4 3 2 0 2 4 6 3-11115.5118.1119.7 + 12 12 15 7 12 6 6 15 7 9 9 9-11118.5118.2119.6 + 12 12 16 5 2 5 6 6 7 6 4 5-11115.8118.2119.5 + 12 12 17 9 12 12 22 22 9 3 3 12-11111.3118.2119.5 + 12 12 18 6 7 6 9 6 9 2 5 6-11112.5118.1119.5 + 12 12 19 4 9 4 4 5 4 4 2 5-11109.8118.0119.6 + 12 12 20 2 6 6 6 15 15 7 6 8-11110.4117.8119.6 + 12 12 21 9 5 4 4 2 3 2 2 4-11110.9117.5119.7 + 12 12 22 0 0 2 2 0 2 0 0 1-11111.6117.1119.9 + 12 12 23 0 0 0 2 3 4 2 0 1-11110.4116.6120.0 + 12 12 24 0 0 0 2 2 9 3 2 2-11109.4116.2120.1 + 12 12 25 4 3 0 2 0 3 4 5 3-11109.3115.8120.2 + 12 12 26 2 6 3 3 4 0 0 3 3-11106.2115.4120.2 + 12 12 27 3 0 0 0 0 0 0 0 0-11103.2115.0120.2 + 12 12 28 0 0 0 2 2 0 4 3 1-11102.3114.6120.1 + 12 12 29 2 5 4 4 2 0 0 5 3-11100.9114.1120.1 + 12 12 30 5 2 3 5 7 7 6 2 5-11103.2113.7120.0 + 12 12 31 0 0 0 2 0 2 2 2 1-11109.8113.3119.9 + 13 1 1 3 2 2 0 2 0 0 0 1-11113.9112.9119.8 + 13 1 2 3 3 5 4 3 3 4 3 4-11115.0112.6119.7 + 13 1 3 6 3 3 2 3 0 0 0 2-11124.6112.3119.6 + 13 1 4 6 2 4 2 0 0 3 3 3-11138.4112.1119.6 + 13 1 5 3 4 4 3 0 0 2 0 2-11140.3111.9119.5 + 13 1 6 3 3 3 4 4 4 6 4 4-11137.5111.6119.4 + 13 1 7 5 2 6 2 2 0 2 3 3-11144.8111.4119.2 + 13 1 8 3 5 4 5 2 4 4 9 5-11150.5111.3119.1 + 13 1 9 9 5 2 9 3 2 3 3 5-11163.8111.2118.9 + 13 1 10 5 2 3 3 2 2 3 2 3-11168.2111.3118.8 + 13 1 11 3 3 4 3 3 0 3 6 3-11166.7111.4118.7 + 13 1 12 7 4 4 4 3 2 4 2 4-11163.0111.6118.6 + 13 1 13 12 5 7 5 9 12 12 22 11-11151.4111.7118.5 + 13 1 14 18 9 12 9 7 6 7 6 9-11149.1111.7118.4 + 13 1 15 7 7 5 7 6 3 5 2 5-11135.2111.8118.3 + 13 1 16 5 4 7 3 3 4 9 7 5-11132.6111.7118.2 + 13 1 17 15 15 6 6 15 27 12 15 14-11118.8111.8118.3 + 13 1 18 15 15 6 7 15 7 7 15 11-11111.5111.8118.3 + 13 1 19 18 4 3 2 5 9 7 12 8-11103.3111.8118.3 + 13 1 20 18 15 22 7 12 4 2 3 10-11103.2112.0118.4 + 13 1 21 7 7 3 5 4 3 2 4 4-11104.9112.1118.4 + 13 1 22 3 2 4 2 0 0 0 0 1-11106.9112.1118.5 + 13 1 23 3 4 6 2 0 2 0 2 2-11101.6112.1118.5 + 13 1 24 5 3 6 2 0 0 0 0 2-11100.2112.1118.5 + 13 1 25 3 3 5 4 2 6 6 15 6-11 97.5112.0118.5 + 13 1 26 32 9 18 18 15 22 27 27 21-11 96.3112.0118.4 + 13 1 27 18 9 4 4 4 7 6 2 7-11 94.7112.0118.4 + 13 1 28 5 4 5 2 4 4 5 6 4-11 94.7112.0118.3 + 13 1 29 7 2 6 2 2 0 2 0 3-11 92.6112.1118.3 + 13 1 30 3 2 6 0 0 2 0 2 2-11 93.8112.2118.2 + 13 1 31 3 2 5 2 0 2 3 4 3-11 99.7112.3118.1 + 13 2 1 7 0 0 4 4 6 5 9 4-11100.7112.5118.0 + 13 2 2 6 18 9 12 7 7 15 4 10-11108.6112.6117.9 + 13 2 3 12 3 2 4 6 4 2 3 5-11107.9112.8117.8 + 13 2 4 3 3 4 2 5 7 9 2 4-11103.7112.9117.7 + 13 2 5 2 4 5 3 3 2 0 0 2-11102.2113.2117.7 + 13 2 6 0 0 0 0 0 0 3 4 1-11100.7113.3117.6 + 13 2 7 4 5 12 15 7 4 5 5 7-11100.0113.4117.5 + 13 2 8 6 9 15 6 12 7 4 5 8-11101.4113.5117.4 + 13 2 9 6 6 4 3 0 0 4 2 3-11104.8113.5117.4 + 13 2 10 6 6 5 3 2 3 7 4 5-11103.2113.4117.3 + 13 2 11 5 6 3 2 3 4 7 7 5-11102.5113.2117.3 + 13 2 12 4 2 0 3 5 6 6 12 5-11 99.2113.0117.4 + 13 2 13 12 15 5 6 4 5 18 32 12-11 97.8112.6117.4 + 13 2 14 27 22 18 15 12 7 9 7 15-11 97.0112.0117.5 + 13 2 15 0 4 4 4 3 5 7 5 4-11 97.7111.4117.6 + 13 2 16 3 0 0 3 9 27 18 4 8-11100.8110.9117.7 + 13 2 17 2 6 6 7 12 18 15 7 9-11103.1110.4117.8 + 13 2 18 2 0 0 2 3 3 4 18 4-11102.3109.9117.9 + 13 2 19 2 5 5 6 7 9 7 6 6-11109.9109.3118.0 + 13 2 20 5 5 6 15 9 7 7 4 7-11111.0108.7118.1 + 13 2 21 15 9 9 3 3 5 6 7 7-11106.2108.1118.2 + 13 2 22 9 12 6 7 15 7 9 18 10-11104.7107.7118.3 + 13 2 23 15 5 2 7 9 4 9 9 8-11 97.5107.4118.3 + 13 2 24 3 6 3 4 2 4 2 3 3-11 93.0107.2118.3 + 13 2 25 0 0 2 3 4 5 4 6 3-11 93.5107.2118.3 + 13 2 26 4 6 4 6 5 4 7 4 5-11 96.8107.3118.3 + 13 2 27 4 5 6 3 5 3 0 3 4-11100.0107.6118.3 + 13 2 28 6 4 6 4 6 3 6 27 8-11103.6108.0118.3 + 13 3 1 39 22 39 48 32 32 27 32 34-11110.6108.6118.2 + 13 3 2 27 18 12 5 7 12 15 18 14-11109.1109.0118.2 + 13 3 3 12 15 9 6 6 6 7 9 9-11110.1109.4118.0 + 13 3 4 9 3 5 5 6 2 2 3 4-11112.4109.6117.9 + 13 3 5 12 2 2 2 3 3 4 3 4-11116.6109.8117.8 + 13 3 6 5 9 2 2 2 0 2 2 3-11112.6110.0117.8 + 13 3 7 2 3 4 4 4 0 0 2 2-11112.1110.2117.7 + 13 3 8 0 0 2 2 3 3 5 3 2-11113.3110.4117.6 + 13 3 9 9 7 5 6 7 5 6 2 6-11114.6110.5117.5 + 13 3 10 4 0 3 2 2 4 4 7 3-11117.7110.6117.4 + 13 3 11 15 9 5 2 3 2 2 2 5-11118.2110.7117.4 + 13 3 12 5 4 5 4 9 5 7 4 5-11121.5110.9117.3 + 13 3 13 7 3 4 3 2 2 3 3 3-11121.5111.1117.3 + 13 3 14 0 3 0 5 12 6 3 3 4-11121.5111.3117.3 + 13 3 15 3 18 9 6 4 2 2 4 6-11121.8111.4117.2 + 13 3 16 18 22 12 7 6 5 6 5 10-11124.8111.6117.2 + 13 3 17 7 9111 94 67 94111 80 72-11124.5111.8117.2 + 13 3 18 15 9 7 6 5 3 6 5 7-11116.6112.2117.2 + 13 3 19 5 5 3 2 3 3 6 12 5-11109.5112.6117.2 + 13 3 20 7 12 6 3 7 9 12 18 9-11106.7113.1117.2 + 13 3 21 32 32 22 4 4 3 3 4 13-11105.3113.8117.2 + 13 3 22 3 3 2 4 4 4 7 9 5-11100.2114.5117.2 + 13 3 23 6 3 5 6 12 6 18 27 10-11 97.6115.1117.1 + 13 3 24 15 5 5 5 5 5 4 2 6-11 95.4115.7117.1 + 13 3 25 0 0 3 3 3 3 6 3 3-11 92.2116.3117.0 + 13 3 26 5 3 2 3 3 2 2 0 3-11 92.0116.8117.0 + 13 3 27 6 12 12 15 15 48 18 32 20-11 92.6117.2116.9 + 13 3 28 27 6 4 7 5 15 7 9 10-11 98.3117.6116.8 + 13 3 29 18 22 39 27 22 56 22 15 28-11104.8118.0116.7 + 13 3 30 48 48 9 6 7 4 18 9 19-11108.2118.3116.6 + 13 3 31 5 3 3 2 3 4 6 7 4-11113.1118.6116.5 + 13 4 1 4 6 6 5 4 4 3 7 5-11119.0119.0116.5 + 13 4 2 7 2 2 0 2 3 4 6 3-11122.1119.5116.4 + 13 4 3 2 2 2 2 3 2 2 5 3-11127.0120.1116.4 + 13 4 4 6 7 3 4 4 3 3 2 4-11128.6120.6116.4 + 13 4 5 0 2 2 2 3 2 5 5 3-11134.5121.3116.4 + 13 4 6 5 5 6 5 5 3 4 5 5-11137.3121.9116.4 + 13 4 7 4 6 4 4 7 6 5 0 5-11138.2122.5116.4 + 13 4 8 0 2 3 2 3 3 2 2 2-11139.6123.0116.4 + 13 4 9 5 5 2 5 2 3 3 2 3-11147.0123.5116.5 + 13 4 10 2 4 5 5 5 3 3 9 5-11148.6123.9116.5 + 13 4 11 2 2 3 5 4 5 3 7 4-11137.8124.1116.5 + 13 4 12 7 6 5 4 5 3 2 2 4-11138.6124.4116.5 + 13 4 13 7 9 3 5 3 3 2 15 6-11125.8124.8116.6 + 13 4 14 12 18 18 12 9 15 6 7 12-11117.5125.0116.6 + 13 4 15 4 5 4 2 4 0 15 7 5-11114.1125.1116.5 + 13 4 16 4 0 0 0 0 4 6 7 3-11114.1125.2116.5 + 13 4 17 3 3 3 2 3 2 0 2 2-11109.0125.2116.5 + 13 4 18 4 0 2 2 2 2 3 0 2-11105.9125.2116.5 + 13 4 19 0 0 0 0 2 0 2 2 1-11100.3125.1116.5 + 13 4 20 2 0 3 5 7 3 0 3 3-11105.9125.0116.5 + 13 4 21 0 2 2 2 2 5 3 2 2-11110.5124.8116.4 + 13 4 22 6 6 2 3 4 4 2 3 4-11114.1124.6116.4 + 13 4 23 2 4 4 5 5 9 7 12 6-11118.8124.5116.4 + 13 4 24 22 15 9 27 39 18 48 15 24-11116.1124.5116.4 + 13 4 25 15 9 5 12 9 12 12 6 10-11120.7124.4116.5 + 13 4 26 15 39 15 15 12 15 12 18 18-11123.5124.2116.6 + 13 4 27 9 7 6 4 5 6 3 5 6-11128.8124.1116.7 + 13 4 28 2 0 2 6 9 7 7 7 5-11133.5124.0116.8 + 13 4 29 12 2 3 2 4 0 3 5 4-11144.5124.0116.9 + 13 4 30 5 3 4 6 6 5 3 12 6-11156.7123.9117.0 + 13 5 1 12 15 39 22 39 18 67 18 29-11161.7123.8117.1 + 13 5 2 18 22 7 6 4 6 15 6 11-11151.8123.7117.2 + 13 5 3 6 5 4 3 5 7 6 3 5-11150.4123.6117.4 + 13 5 4 5 3 5 5 5 6 5 6 5-11144.1123.7117.5 + 13 5 5 7 7 6 5 7 18 6 2 7-11139.5124.0117.6 + 13 5 6 5 4 9 9 6 7 7 9 7-11133.0124.3117.8 + 13 5 7 15 12 12 9 7 6 6 3 9-11131.1124.6117.9 + 13 5 8 15 6 6 4 5 6 5 5 7-11129.3125.0118.0 + 13 5 9 5 5 4 5 3 3 2 2 4-11130.9125.3118.2 + 13 5 10 4 5 3 5 5 2 3 2 4-11127.3125.5118.3 + 13 5 11 0 5 3 4 2 2 3 3 3-11139.4125.7118.4 + 13 5 12 4 6 3 4 2 4 2 2 3-11150.4125.9118.5 + 13 5 13 3 4 5 3 3 9 4 2 4-11153.5126.1118.5 + 13 5 14 5 3 7 9 9 6 7 6 7-11151.1126.2118.6 + 13 5 15 2 4 6 7 27 9 7 3 8-11148.8126.1118.7 + 13 5 16 18 27 6 6 18 27 9 18 16-11148.0125.8118.8 + 13 5 17 9 9 5 5 6 9 18 7 9-11139.6125.5118.9 + 13 5 18 32 56 15 9 7 6 18 7 19-11135.2125.1119.0 + 13 5 19 18 7 7 7 9 12 7 22 11-11138.5124.6119.1 + 13 5 20 7 5 2 4 6 9 9 7 6-11135.2124.1119.1 + 13 5 21 6 4 6 4 3 3 4 9 5-11128.4123.6119.2 + 13 5 22 15 6 6 9 12 9 12 9 10-11136.7123.2119.2 + 13 5 23 5 15 5 7 9 6 7 6 8-11137.9123.0119.2 + 13 5 24 7 12 7 12 18 9 67 32 21-11130.6123.0119.2 + 13 5 25 32 48 15 32 27 48 48 48 37-11124.5123.3119.3 + 13 5 26 27 22 27 6 7 27 22 7 18-11123.2123.7119.3 + 13 5 27 7 15 7 9 15 18 27 9 13-11113.1124.0119.3 + 13 5 28 12 15 9 7 7 4 3 0 7-11107.6124.3119.3 + 13 5 29 0 2 0 0 2 2 2 0 1-11109.8124.5119.3 + 13 5 30 2 0 0 2 2 3 3 0 2-11106.9124.8119.3 + 13 5 31 0 2 2 3 5 18 22 22 9-11104.7125.0119.4 + 13 6 1 67132 94 48 67 18 22 15 58-11108.8125.1119.4 + 13 6 2 27 18 18 15 18 12 15 12 17-11114.1125.2119.5 + 13 6 3 15 7 6 6 5 7 12 15 9-11115.0125.1119.6 + 13 6 4 15 9 7 5 3 4 6 12 8-11113.1125.2119.7 + 13 6 5 9 5 4 4 5 4 5 4 5-11112.1125.1119.8 + 13 6 6 5 15 15 15 22 48 27 39 23-11112.3125.0120.0 + 13 6 7 48 67 39 27 15 9 6 5 27-11113.1124.9120.1 + 13 6 8 9 15 15 9 4 2 2 4 8-11106.3124.7120.3 + 13 6 9 4 5 5 4 9 12 9 9 7-11 99.0124.4120.4 + 13 6 10 9 18 18 12 9 7 6 2 10-11 96.2123.9120.6 + 13 6 11 2 2 2 4 12 9 5 5 5-11 92.3123.3120.8 + 13 6 12 4 5 4 4 4 3 2 4 4-11 96.2122.8121.0 + 13 6 13 6 4 0 2 2 2 2 3 3-11102.0122.3121.1 + 13 6 14 4 2 2 4 2 2 4 5 3-11112.6121.9121.2 + 13 6 15 6 3 5 4 2 3 2 4 4-11114.5121.5121.4 + 13 6 16 2 0 0 3 2 2 3 2 2-11119.7121.3121.5 + 13 6 17 2 4 4 3 3 2 3 3 3-11127.8121.0121.5 + 13 6 18 3 5 3 2 3 4 5 3 4-11128.8120.8121.7 + 13 6 19 5 5 2 2 4 4 4 7 4-11127.4120.6121.8 + 13 6 20 9 6 4 6 7 9 32 18 11-11130.5120.5121.9 + 13 6 21 27 22 12 12 15 15 22 15 18-11137.6120.2122.0 + 13 6 22 18 15 15 12 7 9 18 12 13-11134.2119.7122.0 + 13 6 23 18 27 22 12 7 22 18 15 18-11132.4119.3122.1 + 13 6 24 15 15 9 9 22 27 32 12 18-11124.6118.8122.2 + 13 6 25 15 9 6 4 2 5 5 6 7-11112.9118.3122.2 + 13 6 26 2 2 2 2 2 4 2 2 2-11110.1117.8122.2 + 13 6 27 3 2 2 2 18 7 7 12 7-11102.9117.3122.3 + 13 6 28 18 15 6 12 18 39 32 39 22-11104.3117.0122.3 + 13 6 29 67 94 67 56 39 27 32 22 51-11103.6116.6122.4 + 13 6 30 18 7 4 12 12 9 9 12 10-11106.3116.3122.5 + 13 7 1 15 9 9 5 4 2 4 2 6-11111.4116.0122.6 + 13 7 2 2 3 3 3 3 5 4 4 3-11118.1115.7122.7 + 13 7 3 4 2 3 3 2 4 4 6 4-11128.7115.5122.8 + 13 7 4 4 2 2 0 3 5 5 6 3-11142.3115.4122.9 + 13 7 5 6 7 6 5 7 7 22 6 8-11145.6115.4123.0 + 13 7 6 15 32 39 22 39 27 15 27 27-11138.7115.5123.4 + 13 7 7 27 4 2 0 3 4 3 2 6-11129.8115.6123.5 + 13 7 8 2 6 6 3 3 3 3 3 4-11123.3116.2123.7 + 13 7 9 0 2 4 6 9 12 18 18 9-11124.0116.4123.9 + 13 7 10 32 27 15 32 22 27 32 18 26-11121.9116.7124.0 + 13 7 11 9 15 39 12 15 22 39 7 20-11117.1117.1124.1 + 13 7 12 6 9 9 6 6 7 9 15 8-11121.6117.4124.1 + 13 7 13 15 15 9 4 3 5 6 9 8-11117.8117.6124.1 + 13 7 14 15 15 18 22 32 27 48 27 26-11116.7117.8124.0 + 13 7 15 56 48 22 22 22 9 6 6 24-11117.9117.8124.0 + 13 7 16 2 4 4 4 5 4 9 4 5-11117.6117.9124.0 + 13 7 17 2 4 4 2 3 3 4 6 4-11114.9117.9123.9 + 13 7 18 4 2 6 7 32 39 39 9 17-11118.6117.9123.9 + 13 7 19 12 12 22 12 18 12 22 12 15-11117.3117.9123.9 + 13 7 20 15 3 5 4 3 2 2 3 5-11116.1118.1123.9 + 13 7 21 3 3 3 4 4 4 5 5 4-11112.9118.2124.0 + 13 7 22 2 2 2 3 6 6 5 12 5-11113.4118.5124.1 + 13 7 23 7 5 2 4 3 4 4 5 4-11110.1118.6124.2 + 13 7 24 7 3 3 2 4 3 4 5 4-11111.0118.6124.3 + 13 7 25 2 4 3 3 6 22 27 27 12-11110.3118.6124.3 + 13 7 26 27 18 6 6 9 9 7 6 11-11112.9118.5124.4 + 13 7 27 12 6 5 9 12 9 12 9 9-11111.3118.4124.5 + 13 7 28 7 9 4 4 3 4 6 9 6-11112.7118.1124.6 + 13 7 29 5 6 5 4 7 3 2 4 5-11115.6117.8124.7 + 13 7 30 3 5 4 4 7 4 5 6 5-11116.5117.4124.9 + 13 7 31 7 4 0 3 4 4 5 3 4-11112.0117.0125.1 + 13 8 1 5 6 3 4 5 7 2 0 4-11115.4116.5125.2 + 13 8 2 2 3 2 3 2 4 3 0 2-11116.2116.0125.4 + 13 8 3 3 2 2 2 4 3 5 7 4-11110.5115.5125.6 + 13 8 4 5 4 9 9 5 39 22 27 15-11107.9115.1125.8 + 13 8 5 32 22 9 12 7 9 12 9 14-11107.3114.9126.0 + 13 8 6 7 5 6 5 5 2 4 6 5-11106.8114.7126.2 + 13 8 7 5 4 5 2 3 2 3 0 3-11108.5114.6126.5 + 13 8 8 2 2 4 2 3 3 4 6 3-11107.3114.5126.7 + 13 8 9 3 7 6 7 7 4 9 5 6-11106.5114.5126.9 + 13 8 10 4 5 6 6 9 3 4 4 5-11105.3114.6127.1 + 13 8 11 4 4 4 5 5 4 3 4 4-11113.4114.5127.2 + 13 8 12 4 2 2 3 3 4 6 15 5-11117.2114.5127.4 + 13 8 13 7 2 2 7 5 18 15 9 8-11125.1114.3127.6 + 13 8 14 22 15 6 2 4 5 9 15 10-11128.5113.8127.7 + 13 8 15 22 9 7 12 12 22 6 18 14-11125.8113.4127.9 + 13 8 16 22 56 18 9 32 32 18 18 26-11122.9113.1128.1 + 13 8 17 9 9 9 5 7 6 5 6 7-11153.4112.8128.2 + 13 8 18 6 3 7 5 5 6 7 4 5-11129.2112.7128.4 + 13 8 19 6 5 3 3 5 5 3 3 4-11131.4112.4128.5 + 13 8 20 3 0 2 3 2 3 3 9 3-11134.6112.2128.6 + 13 8 21 9 22 9 15 15 18 27 32 18-11133.4112.1128.7 + 13 8 22 22 22 9 5 6 6 15 22 13-11134.5111.9128.9 + 13 8 23 32 15 18 12 7 12 12 9 15-11126.8111.8129.0 + 13 8 24 9 6 6 6 9 5 7 4 7-11119.9111.7129.1 + 13 8 25 4 6 5 6 7 7 3 5 5-11115.0111.6129.3 + 13 8 26 7 4 4 4 4 3 6 7 5-11113.5111.5129.5 + 13 8 27 12 3 2 5 15 15 48 32 17-11111.9111.4129.7 + 13 8 28 27 15 7 5 6 5 3 4 9-11110.3111.3130.0 + 13 8 29 2 0 2 2 2 3 3 2 2-11111.0111.2130.2 + 13 8 30 0 0 4 7 7 6 9 27 8-11109.5111.2130.3 + 13 8 31 27 12 15 9 12 6 2 9 12-11109.5111.3130.5 + 13 9 1 18 7 9 5 12 7 9 9 10-11105.6111.5130.6 + 13 9 2 5 18 18 7 12 6 5 3 9-11107.5111.7130.7 + 13 9 3 5 2 4 6 7 4 6 18 7-11107.9111.9130.9 + 13 9 4 7 3 4 6 5 3 6 5 5-11111.1112.1130.9 + 13 9 5 0 0 0 6 3 3 4 3 2-11111.9112.2131.0 + 13 9 6 5 5 3 4 4 3 7 6 5-11102.9112.4131.1 + 13 9 7 2 4 4 3 3 2 2 3 3-11100.0112.7131.2 + 13 9 8 6 15 5 4 6 5 3 0 6-11 97.1113.0131.3 + 13 9 9 0 4 5 4 2 2 3 2 3-11 95.6113.1131.4 + 13 9 10 0 0 0 9 9 12 12 9 6-11 96.2113.4131.5 + 13 9 11 6 2 3 6 6 4 6 6 5-11 94.1113.6131.6 + 13 9 12 9 2 5 5 4 5 7 12 6-11 94.1114.0131.6 + 13 9 13 15 6 7 5 7 22 9 4 9-11 92.7114.5131.7 + 13 9 14 6 6 9 5 5 2 4 3 5-11 93.6115.1131.7 + 13 9 15 5 0 0 0 0 3 3 4 2-11 93.8115.8131.7 + 13 9 16 6 3 5 4 3 3 2 4 4-11 95.5116.5131.8 + 13 9 17 6 9 9 3 6 6 15 7 8-11 99.7117.2131.8 + 13 9 18 9 9 2 5 7 12 9 12 8-11105.1117.9131.9 + 13 9 19 12 15 27 22 6 6 12 6 13-11108.9118.4132.1 + 13 9 20 6 9 6 5 7 2 3 7 6-11110.0118.8132.2 + 13 9 21 5 7 6 12 7 9 7 6 7-11111.2119.2132.3 + 13 9 22 9 7 7 3 5 3 2 3 5-11111.9119.5132.5 + 13 9 23 3 7 5 2 3 3 6 5 4-11108.5119.7132.7 + 13 9 24 6 4 3 22 32 18 4 5 12-11110.9119.8132.8 + 13 9 25 12 6 6 2 2 0 0 3 4-11111.7120.1133.0 + 13 9 26 0 0 0 2 2 0 2 0 1-11110.5120.3133.1 + 13 9 27 0 0 0 0 2 0 3 2 1-11108.3120.3133.3 + 13 9 28 0 0 0 0 0 0 2 0 0-11106.0120.5133.4 + 13 9 29 0 0 0 0 0 0 4 6 1-11103.4120.7133.5 + 13 9 30 6 4 2 0 0 0 0 2 2-11105.2120.8133.6 + 13 10 1 0 0 3 2 7 6 7 9 4-11107.0121.0133.7 + 13 10 2 56179 67 22 15 18 67 39 58-11108.3121.3133.8 + 13 10 3 18 2 0 0 0 5 6 0 4-11113.9121.8133.8 + 13 10 4 0 0 0 0 0 3 2 0 1-11109.2122.4133.9 + 13 10 5 0 0 0 2 0 0 0 0 0-11105.9123.1133.9 + 13 10 6 0 0 2 2 3 2 2 5 2-11106.5123.8133.9 + 13 10 7 4 12 6 3 3 3 3 3 5-11111.8124.6133.9 + 13 10 8 2 3 2 3 5 4 48 67 17-11111.7125.3133.9 + 13 10 9 48 48 56 22 15 18 6 18 29-11113.1125.9133.9 + 13 10 10 22 22 6 7 4 5 3 4 9-11120.3126.4133.9 + 13 10 11 6 7 7 5 6 3 4 3 5-11128.5126.8133.9 + 13 10 12 0 4 2 4 3 3 7 9 4-11127.3127.2133.8 + 13 10 13 5 0 0 2 0 2 3 0 2-11128.6127.6133.9 + 13 10 14 0 9 9 18 18 32 27 27 18-11124.3127.9134.0 + 13 10 15 32 27 15 27 12 3 4 15 17-11124.5128.1134.1 + 13 10 16 22 12 6 6 7 12 6 9 10-11127.2128.1134.3 + 13 10 17 12 15 9 9 12 7 5 4 9-11135.1128.2134.5 + 13 10 18 2 0 3 0 2 0 6 2 2-11138.8128.6134.7 + 13 10 19 0 0 2 3 2 3 0 0 1-11131.6129.0134.9 + 13 10 20 0 0 2 2 2 2 2 4 2-11132.2129.3135.0 + 13 10 21 0 0 2 0 2 4 2 0 1-11134.5129.7135.2 + 13 10 22 0 2 7 6 2 3 6 7 4-11144.8130.1135.3 + 13 10 23 4 9 6 5 2 0 2 0 4-11151.1130.6135.3 + 13 10 24 2 4 0 4 2 0 0 0 2-11158.8131.0135.4 + 13 10 25 0 2 3 0 2 3 2 4 2-11159.6131.5135.4 + 13 10 26 2 0 2 2 0 2 2 4 2-11169.7132.2135.4 + 13 10 27 0 0 3 3 4 2 4 0 2-11164.8132.8135.3 + 13 10 28 2 2 2 2 0 2 0 0 1-11157.8133.5135.3 + 13 10 29 0 0 2 12 7 3 9 9 5-11150.6134.1135.2 + 13 10 30 2 3 9 15 15 18 18 27 13-11139.9134.8135.2 + 13 10 31 7 2 3 6 7 9 5 7 6-11140.5135.5135.1 + 13 11 1 9 7 4 5 5 3 4 2 5-11144.2136.2135.0 + 13 11 2 5 5 0 3 2 3 0 6 3-11139.4136.8135.0 + 13 11 3 12 12 12 4 2 0 9 6 7-11141.1137.4135.0 + 13 11 4 0 5 6 6 4 9 5 4 5-11144.9138.0135.0 + 13 11 5 6 3 4 5 2 3 2 5 4-11145.9138.5135.0 + 13 11 6 2 0 4 4 2 4 6 7 4-11150.8139.0135.0 + 13 11 7 6 18 12 27 18 4 7 6 12-11145.3139.5135.1 + 13 11 8 12 6 5 4 2 2 0 0 4-11143.3140.1135.2 + 13 11 9 15 39 48 32 22 9 7 5 22-11145.2140.7135.2 + 13 11 10 15 15 6 12 7 9 18 18 13-11151.1141.1135.3 + 13 11 11 32 27 39 22 22 22 9 2 22-11160.4141.5135.4 + 13 11 12 3 3 2 3 2 0 2 0 2-11164.0141.9135.4 + 13 11 13 0 3 4 3 5 0 2 2 2-11167.4142.1135.4 + 13 11 14 0 0 2 3 3 3 2 3 2-11172.0142.3135.4 + 13 11 15 7 9 4 3 5 9 12 27 10-11174.0142.4135.4 + 13 11 16 18 22 15 15 9 6 5 7 12-11170.6142.6135.4 + 13 11 17 6 7 9 6 5 3 5 5 6-11172.9142.8135.4 + 13 11 18 4 0 3 3 0 2 0 0 2-11159.5143.0135.4 + 13 11 19 0 0 3 3 3 4 7 4 3-11149.3143.2135.3 + 13 11 20 4 6 5 5 6 0 2 0 4-11143.5143.5135.3 + 13 11 21 0 0 0 0 0 0 2 3 1-11137.8143.6135.2 + 13 11 22 3 0 0 0 0 0 4 4 1-11139.2143.9135.2 + 13 11 23 3 12 18 15 7 4 4 0 8-11132.2144.3135.2 + 13 11 24 0 0 0 2 0 0 0 0 0-11123.9144.9135.1 + 13 11 25 0 0 0 0 0 0 0 0 0-11116.0146.5135.1 + 13 11 26 0 0 0 2 0 2 2 3 1-11112.4147.5135.1 + 13 11 27 0 0 0 0 2 3 0 0 1-11125.6148.3135.1 + 13 11 28 0 0 0 0 2 3 0 2 1-11129.3149.4135.1 + 13 11 29 4 9 5 5 5 7 18 6 7-11125.0150.1135.1 + 13 11 30 5 4 5 7 7 7 12 22 9-11127.6150.7135.1 + 13 12 1 22 18 12 5 12 4 0 3 10-11126.9151.1135.1 + 13 12 2 2 0 0 0 2 2 0 0 1-11130.0151.3135.0 + 13 12 3 5 7 5 7 9 7 12 6 7-11131.9151.3135.0 + 13 12 4 9 5 3 0 0 3 6 4 4-11134.0151.0135.0 + 13 12 5 2 5 3 6 5 3 4 3 4-11145.3150.7135.0 + 13 12 6 4 5 4 2 2 2 3 5 3-11146.1150.1135.1 + 13 12 7 7 4 6 0 2 2 7 12 5-11152.3149.5135.2 + 13 12 8 80 67 22 7 7 18 15 6 28-11160.6149.1135.3 + 13 12 9 3 0 0 2 5 7 5 5 3-11163.1148.8135.5 + 13 12 10 4 12 4 4 4 2 2 0 4-11169.9148.6135.7 + 13 12 11 3 3 3 4 4 2 2 4 3-11165.6148.5135.9 + 13 12 12 2 2 0 0 0 0 0 2 1-11159.8148.5136.1 + 13 12 13 2 2 0 2 7 6 3 3 3-11158.1148.5136.3 + 13 12 14 18 27 7 5 5 18 27 9 15-11159.0148.4136.4 + 13 12 15 7 4 4 4 4 12 4 4 5-11151.3148.2136.4 + 13 12 16 9 12 6 3 4 3 5 5 6-11149.4148.0136.4 + 13 12 17 6 3 0 0 0 4 9 3 3-11153.9147.8136.4 + 13 12 18 3 4 5 3 0 3 2 5 3-11151.1147.7136.4 + 13 12 19 5 5 2 0 3 9 7 6 5-11148.5147.8136.3 + 13 12 20 9 9 0 3 3 5 6 4 5-11144.4147.9136.3 + 13 12 21 4 6 2 3 2 0 3 2 3-11139.5148.0136.2 + 13 12 22 0 2 0 3 0 0 0 0 1-11133.4148.0136.1 + 13 12 23 3 2 2 0 2 2 2 3 2-11131.6148.1136.0 + 13 12 24 0 0 0 0 0 3 2 6 1-11124.1148.3135.9 + 13 12 25 7 4 6 5 15 7 5 2 6-11118.7148.4135.9 + 13 12 26 2 2 2 2 3 2 2 0 2-11120.6148.5135.8 + 13 12 27 0 0 0 0 0 0 4 2 1-11126.3148.7135.9 + 13 12 28 0 0 0 0 3 3 4 4 2-11130.1148.9135.9 + 13 12 29 6 3 3 6 3 4 4 0 4-11132.5149.1136.0 + 13 12 30 0 0 4 3 3 3 0 2 2-11138.2149.3136.1 + 13 12 31 5 6 7 5 5 4 4 3 5-11140.5149.5136.2 + 14 1 1 3 5 7 7 22 15 15 15 11-11154.3149.8136.4 + 14 1 2 18 32 18 9 12 18 32 9 19-11155.2150.1136.5 + 14 1 3 7 6 7 7 15 12 12 4 9-11176.3150.4136.7 + 14 1 4 3 3 4 7 9 7 7 5 6-11253.3150.9136.8 + 14 1 5 2 4 5 3 4 3 0 2 3-11210.3151.5137.0 + 14 1 6 0 2 4 2 3 3 5 5 3-11197.2152.0137.2 + 14 1 7 2 6 0 3 3 18 9 12 7-11229.3152.4137.4 + 14 1 8 15 18 4 4 3 3 4 5 7-11188.2152.6137.6 + 14 1 9 15 12 5 6 4 4 12 6 8-11178.1152.9137.8 + 14 1 10 7 6 3 3 4 6 3 2 4-11169.4153.2138.0 + 14 1 11 0 0 0 2 3 3 9 6 3-11160.7153.5138.0 + 14 1 12 4 3 4 4 5 4 12 18 7-11150.2153.8138.1 + 14 1 13 7 15 7 4 4 3 0 4 6-11138.7154.2138.1 + 14 1 14 18 12 6 4 18 9 5 12 11-11132.6154.6138.0 + 14 1 15 6 3 4 3 2 4 2 2 3-11122.1154.9138.0 + 14 1 16 0 0 4 3 2 2 0 2 2-11117.1155.2137.9 + 14 1 17 0 0 2 0 4 3 2 6 2-11124.7155.4137.8 + 14 1 18 3 0 0 0 2 0 4 0 1-11125.5155.6137.8 + 14 1 19 0 0 0 0 2 2 0 0 1-11123.4155.6137.7 + 14 1 20 0 0 3 2 2 3 3 2 2-11133.0155.5137.6 + 14 1 21 12 4 6 6 9 12 7 6 8-11141.4155.4137.6 + 14 1 22 7 7 12 18 9 6 6 12 10-11138.9155.4137.6 + 14 1 23 9 6 7 5 3 5 7 6 6-11132.1155.4137.5 + 14 1 24 15 6 0 2 3 2 0 2 4-11131.3155.2137.5 + 14 1 25 9 6 4 2 4 6 6 15 7-11129.1155.2137.6 + 14 1 26 12 12 6 4 0 6 5 5 6-11133.7155.1137.6 + 14 1 27 3 3 2 2 3 4 3 6 3-11139.6155.0137.7 + 14 1 28 0 0 3 3 3 6 7 9 4-11152.5154.9137.7 + 14 1 29 7 7 7 6 4 7 5 5 6-11151.8154.9137.9 + 14 1 30 7 9 3 2 0 0 2 0 3-11155.8155.1138.0 + 14 1 31 0 0 0 3 2 0 0 2 1-11160.9155.2138.2 + 14 2 1 0 0 2 2 3 4 5 12 4-11171.6155.3138.3 + 14 2 2 3 7 4 0 3 2 3 3 3-11184.4155.5138.4 + 14 2 3 7 9 6 5 5 5 3 5 6-11183.0155.6138.5 + 14 2 4 6 5 3 3 3 3 3 4 4-11182.9155.8138.6 + 14 2 5 3 3 2 0 7 3 4 5 3-11188.1156.0138.7 + 14 2 6 7 15 6 7 9 7 4 5 8-11186.1156.1138.8 + 14 2 7 2 0 4 4 5 9 12 27 8-11173.2156.3138.8 + 14 2 8 39 39 27 7 9 7 22 32 23-11167.2156.6138.9 + 14 2 9 22 15 15 3 15 12 27 18 16-11164.6156.7138.9 + 14 2 10 15 9 5 7 3 5 22 18 11-11156.8156.9138.9 + 14 2 11 7 6 6 2 2 0 5 12 5-11167.8156.9138.8 + 14 2 12 15 15 5 4 5 6 4 4 7-11156.1156.9138.8 + 14 2 13 0 0 2 3 0 0 0 0 1-11162.5156.6138.7 + 14 2 14 0 2 3 4 6 3 0 2 3-11162.5155.4138.7 + 14 2 15 2 0 0 0 15 12 12 32 9-11158.1154.6138.7 + 14 2 16 48 15 9 7 18 18 22 15 19-11150.2154.0138.6 + 14 2 17 6 2 2 3 2 3 6 9 4-11148.9152.9138.5 + 14 2 18 4 0 6 5 4 9 12 9 6-11147.9152.4138.5 + 14 2 19 32 80 94 48 67 9 7 9 43-11154.2152.1138.4 + 14 2 20 5 80 80 48 39 22 7 15 37-11153.0151.9138.4 + 14 2 21 15 7 7 9 12 9 6 15 10-11153.4151.8138.4 + 14 2 22 32 18 9 9 7 12 6 6 12-11159.7151.8138.4 + 14 2 23 7 7 18 12 18 27 32 22 18-11168.2152.0138.5 + 14 2 24 4 4 5 7 7 6 6 2 5-11167.2152.2138.6 + 14 2 25 3 0 0 3 4 3 2 7 3-11170.4152.4138.7 + 14 2 26 6 0 2 2 0 2 2 3 2-11174.7152.7138.7 + 14 2 27 3 4 2 3 12 27 56 56 20-11172.4152.8138.7 + 14 2 28 27 12 18 12 5 7 5 3 11-11167.5152.8138.8 + 14 3 1 6 4 6 6 5 3 6 12 6-11161.6153.0138.8 + 14 3 2 18 5 2 2 2 2 0 2 4-11158.5153.1138.8 + 14 3 3 9 6 7 4 7 3 2 5 5-11158.3153.0138.9 + 14 3 4 7 4 2 7 9 7 4 9 6-11155.4153.0139.0 + 14 3 5 5 3 5 6 7 7 7 7 6-11146.7153.2139.1 + 14 3 6 3 0 3 4 7 6 12 5 5-11146.5153.6139.2 + 14 3 7 2 0 2 0 4 3 3 3 2-11146.0154.3139.3 + 14 3 8 3 2 3 3 3 3 0 3 3-11139.5154.9139.4 + 14 3 9 3 0 2 2 0 2 3 3 2-11143.8155.3139.6 + 14 3 10 2 2 3 7 4 3 4 3 4-11149.5155.6139.8 + 14 3 11 0 2 3 3 3 4 3 3 3-11162.5155.7140.0 + 14 3 12 6 3 2 3 3 5 5 12 5-11145.8155.8140.2 + 14 3 13 27 22 15 6 7 4 5 3 11-11145.9155.6140.4 + 14 3 14 4 7 7 4 6 6 3 3 5-11142.1155.2140.5 + 14 3 15 7 3 3 2 0 2 5 4 3-11137.5154.5140.7 + 14 3 16 0 2 3 2 0 2 0 0 1-11134.2153.8140.8 + 14 3 17 0 0 2 2 2 2 2 5 2-11135.1153.1140.9 + 14 3 18 3 6 6 4 6 6 6 3 5-11137.0152.2141.0 + 14 3 19 6 3 6 3 3 3 2 3 4-11147.9151.4141.1 + 14 3 20 3 6 6 9 4 3 4 4 5-11150.1150.8141.2 + 14 3 21 9 9 9 9 9 15 5 5 9-11151.4150.3141.2 + 14 3 22 6 2 3 5 7 4 3 4 4-11153.8149.8141.2 + 14 3 23 4 6 6 4 6 5 7 6 6-11156.0149.6141.3 + 14 3 24 6 0 3 4 4 5 3 0 3-11157.7149.2141.3 + 14 3 25 2 2 2 6 6 5 15 18 7-11152.0148.9141.4 + 14 3 26 22 5 22 5 3 3 6 4 9-11152.5148.6141.5 + 14 3 27 4 4 5 6 7 6 6 2 5-11144.2148.4141.7 + 14 3 28 3 3 5 5 7 5 9 15 7-11145.9148.3141.8 + 14 3 29 15 9 3 5 3 4 4 12 7-11142.3148.3142.0 + 14 3 30 7 3 4 4 3 4 4 3 4-11148.1148.4142.2 + 14 3 31 0 3 4 5 9 12 9 2 6-11152.1148.4142.4 + 14 4 1 2 2 3 2 7 9 4 9 5-11153.1148.6142.6 + 14 4 2 2 0 0 3 5 5 5 5 3-11154.6148.8142.7 + 14 4 3 3 6 4 6 7 5 5 5 5-11153.0148.9142.8 + 14 4 4 2 4 5 5 6 9 5 2 5-11157.0149.0142.9 + 14 4 5 4 3 5 22 22 15 9 15 12-11142.3148.8143.0 + 14 4 6 7 0 0 2 2 3 0 4 2-11141.2148.5143.0 + 14 4 7 12 6 7 3 15 27 6 6 10-11140.2148.1143.1 + 14 4 8 7 3 0 4 7 4 3 0 4-11132.4147.5143.1 + 14 4 9 0 2 5 5 6 5 5 3 4-11131.0146.9143.2 + 14 4 10 0 0 2 2 3 2 3 2 2-11137.3146.3143.2 + 14 4 11 0 4 7 4 4 7 6 22 7-11138.2145.7143.2 + 14 4 12 39 32 32 12 15 6 12 9 20-11136.5145.2143.1 + 14 4 13 22 27 18 15 6 7 15 9 15-11137.9144.7143.1 + 14 4 14 6 6 15 4 0 4 9 6 6-11151.2144.4143.0 + 14 4 15 5 9 5 3 3 3 5 4 5-11163.0144.0143.1 + 14 4 16 0 0 3 4 5 2 3 7 3-11185.2143.6143.1 + 14 4 17 15 12 6 5 12 22 9 4 11-11180.3143.1143.1 + 14 4 18 6 6 3 5 7 5 6 12 6-11173.7142.6143.1 + 14 4 19 22 18 9 12 12 15 15 5 14-11170.8142.2143.2 + 14 4 20 15 7 4 22 48 27 32 22 22-11164.1141.6143.3 + 14 4 21 27 27 18 22 12 27 6 4 18-11160.4140.9143.5 + 14 4 22 4 6 3 3 2 5 2 3 4-11146.3140.4143.7 + 14 4 23 3 4 4 6 5 6 7 7 5-11137.6140.0143.9 + 14 4 24 18 6 12 7 9 12 12 12 11-11131.6139.6144.1 + 14 4 25 18 12 3 5 7 7 7 5 8-11126.2139.2144.2 + 14 4 26 3 9 5 3 4 4 4 6 5-11122.3139.0144.4 + 14 4 27 4 2 0 0 4 3 3 6 3-11119.6139.0144.5 + 14 4 28 5 9 5 5 3 3 2 5 5-11122.5139.0144.6 + 14 4 29 3 2 0 2 3 2 3 18 4-11121.8139.1144.6 + 14 4 30 12 18 18 12 27 15 18 4 16-11125.5139.3144.6 + 14 5 1 7 9 5 3 3 3 4 2 5-11127.7139.5144.6 + 14 5 2 3 6 2 2 2 0 0 0 2-11137.6139.8144.5 + 14 5 3 0 2 0 2 0 7 12 15 5-11134.8140.1144.4 + 14 5 4 12 32 22 7 15 9 5 5 13-11133.7140.1144.4 + 14 5 5 4 15 9 7 9 9 9 6 9-11141.5140.0144.3 + 14 5 6 2 3 3 3 2 2 0 0 2-11141.3139.8144.3 + 14 5 7 0 0 0 3 4 2 3 7 2-11148.6139.5144.3 + 14 5 8 9 18 18 39 12 22 15 27 20-11150.8139.2144.2 + 14 5 9 15 6 15 7 2 2 2 3 7-11155.2138.8144.2 + 14 5 10 6 15 5 4 3 3 12 12 8-11155.1138.4144.2 + 14 5 11 22 15 6 12 5 6 7 9 10-11167.7137.8144.1 + 14 5 12 6 7 7 9 7 5 6 5 7-11166.3137.2144.1 + 14 5 13 2 3 4 4 3 2 3 3 3-11162.7136.5144.0 + 14 5 14 5 4 2 2 7 6 3 5 4-11166.7135.8144.0 + 14 5 15 3 4 3 4 3 5 6 4 4-11155.5135.1144.0 + 14 5 16 5 5 2 2 6 7 6 0 4-11141.8134.5143.9 + 14 5 17 5 3 2 3 2 2 2 2 3-11136.6134.1143.9 + 14 5 18 4 5 3 3 5 6 3 4 4-11130.4133.7143.9 + 14 5 19 2 4 3 2 4 5 3 6 4-11119.7133.5143.8 + 14 5 20 2 4 4 5 5 4 2 0 3-11120.1133.5143.8 + 14 5 21 2 0 0 2 2 2 2 2 2-11116.7133.6143.9 + 14 5 22 4 4 3 3 7 18 9 18 8-11114.1133.8143.9 + 14 5 23 15 6 5 2 4 22 27 56 17-11119.2134.3144.0 + 14 5 24 6 5 6 2 5 4 3 4 4-11127.7134.9144.1 + 14 5 25 5 5 3 2 2 5 2 0 3-11116.0135.4144.2 + 14 5 26 4 3 4 3 2 2 2 2 3-11111.1135.8144.2 + 14 5 27 0 0 2 3 4 4 6 4 3-11108.7136.1144.3 + 14 5 28 5 5 2 3 3 4 3 4 4-11102.1136.4144.5 + 14 5 29 2 3 3 12 7 7 7 4 6-11105.5136.8144.6 + 14 5 30 0 5 5 9 9 12 32 5 10-11104.4137.3144.8 + 14 5 31 4 4 2 2 2 2 3 0 2-11106.6137.5144.9 + 14 6 1 3 0 3 4 2 3 2 3 3-11106.2137.6145.0 + 14 6 2 2 3 2 2 2 3 5 9 4-11108.3137.7145.1 + 14 6 3 18 7 3 4 3 5 5 3 6-11110.1137.6145.2 + 14 6 4 5 5 5 4 4 5 4 7 5-11108.5137.4145.3 + 14 6 5 6 4 5 9 5 4 9 12 7-11113.8137.1145.3 + 14 6 6 7 5 2 0 2 6 6 6 4-11136.9136.8145.3 + 14 6 7 5 5 7 5 6 27 22 27 13-11140.8136.4145.2 + 14 6 8 15 67 94 48 39 27 12 6 39-11153.1136.0145.1 + 14 6 9 2 3 7 6 3 3 9 3 5-11166.1135.6145.1 + 14 6 10 3 4 5 7 9 7 7 7 6-11171.3135.2145.0 + 14 6 11 6 6 4 9 7 7 5 4 6-11173.6134.8144.9 + 14 6 12 3 5 2 2 2 3 3 3 3-11179.9134.2144.9 + 14 6 13 4 2 3 3 6 5 5 5 4-11157.5133.8144.8 + 14 6 14 7 7 12 5 4 5 7 4 6-11148.0133.5144.8 + 14 6 15 4 2 4 4 4 3 2 3 3-11134.3133.1144.8 + 14 6 16 3 5 4 3 7 6 4 4 5-11120.5132.9144.9 + 14 6 17 7 5 9 4 5 4 9 18 8-11118.0132.6144.9 + 14 6 18 15 7 9 7 6 18 27 39 16-11114.4132.4145.0 + 14 6 19 12 15 12 5 5 6 7 7 9-11114.7132.3145.2 + 14 6 20 5 4 9 7 12 15 5 7 8-11105.5132.3145.4 + 14 6 21 6 7 7 6 3 3 0 3 4-11104.5132.2145.5 + 14 6 22 2 4 3 2 3 3 4 5 3-11 97.3132.3145.7 + 14 6 23 2 2 2 2 2 2 2 15 4-11 95.6132.3145.8 + 14 6 24 9 12 6 3 2 3 6 3 6-11 96.6132.1145.9 + 14 6 25 3 3 5 4 4 6 4 7 5-11100.2132.0145.9 + 14 6 26 2 2 3 5 9 4 3 0 4-11103.3132.0146.0 + 14 6 27 4 2 0 2 3 3 5 3 3-11107.6132.1146.0 + 14 6 28 4 5 3 4 12 9 4 3 6-11118.4132.2146.0 + 14 6 29 12 5 4 3 3 2 6 15 6-11129.9132.3146.0 + 14 6 30 15 4 3 2 3 5 4 3 5-11145.2132.2146.0 + 14 7 1 3 5 3 2 2 3 2 2 3-11156.9132.2146.0 + 14 7 2 0 4 5 4 4 6 3 3 4-11175.1132.1145.9 + 14 7 3 7 7 7 7 6 3 2 2 5-11184.1131.9145.9 + 14 7 4 5 4 5 5 6 2 2 3 4-11193.9131.6145.8 + 14 7 5 0 0 2 2 2 3 7 5 3-11199.4131.5145.7 + 14 7 6 3 2 2 5 3 3 3 5 3-11207.7131.6145.4 + 14 7 7 7 3 3 5 7 7 6 3 5-11204.5131.6145.2 + 14 7 8 5 4 4 4 9 6 6 6 6-11208.1131.8145.1 + 14 7 9 6 5 6 4 4 6 12 12 7-11205.0131.9144.8 + 14 7 10 15 9 6 4 5 6 5 5 7-11183.3132.0144.7 + 14 7 11 4 3 5 5 5 6 7 5 5-11171.8132.2144.7 + 14 7 12 5 7 7 6 9 4 2 0 5-11149.9132.5144.6 + 14 7 13 5 5 3 6 3 3 3 7 4-11131.0132.8144.6 + 14 7 14 3 2 4 5 18 15 12 9 9-11113.0133.1144.6 + 14 7 15 6 6 7 9 9 5 4 5 6-11103.9133.5144.6 + 14 7 16 3 4 5 2 5 4 5 3 4-11 95.1134.0144.6 + 14 7 17 2 4 4 2 3 3 6 4 4-11 91.5134.0144.6 + 14 7 18 3 3 3 3 2 0 0 2 2-11 91.4133.8144.6 + 14 7 19 0 2 2 4 2 0 0 0 1-11 88.9133.4144.6 + 14 7 20 3 2 2 0 5 3 0 3 2-11 89.9132.8144.6 + 14 7 21 2 0 0 2 5 5 6 6 3-11 93.0132.3144.6 + 14 7 22 9 3 3 3 5 4 2 6 4-11 95.5131.7144.6 + 14 7 23 2 2 2 2 2 4 12 9 4-11102.2131.1144.5 + 14 7 24 3 4 5 7 7 4 4 3 5-11107.4130.8144.5 + 14 7 25 12 5 7 5 4 3 3 2 5-11109.9130.7144.4 + 14 7 26 5 6 6 6 6 7 7 3 6-11120.1130.9144.4 + 14 7 27 6 5 5 4 3 3 4 4 4-11125.2131.2144.4 + 14 7 28 6 9 15 6 7 15 7 5 9-11136.3131.8144.4 + 14 7 29 3 5 2 2 3 4 4 2 3-11146.0132.3144.4 + 14 7 30 9 4 2 2 3 3 2 2 3-11156.6133.0144.4 + 14 7 31 4 4 4 4 4 5 6 7 5-11161.1133.7144.5 + 14 8 1 7 5 3 6 7 6 15 18 8-11173.5134.6144.5 + 14 8 2 9 5 6 9 18 15 5 6 9-11160.2135.3144.4 + 14 8 3 3 15 3 5 2 4 7 7 6-11156.2136.0144.3 + 14 8 4 9 15 12 7 6 6 15 18 11-11143.3136.6144.2 + 14 8 5 9 7 12 6 12 7 12 6 9-11143.3137.1144.1 + 14 8 6 7 12 6 6 5 5 4 3 6-11140.5137.5144.0 + 14 8 7 5 4 4 4 5 4 6 5 5-11140.0137.8143.9 + 14 8 8 15 18 6 7 6 3 3 2 8-11126.4138.0143.8 + 14 8 9 2 3 5 3 3 2 3 2 3-11116.3137.9143.7 + 14 8 10 3 2 4 5 7 7 22 7 7-11111.3137.6143.7 + 14 8 11 4 4 4 3 5 7 5 18 6-11107.3137.2143.6 + 14 8 12 12 5 4 4 5 12 32 22 12-11106.8136.6143.5 + 14 8 13 7 7 5 5 6 3 5 4 5-11105.6136.0143.4 + 14 8 14 3 3 2 3 3 4 3 7 4-11105.4135.3143.3 + 14 8 15 4 3 2 3 5 5 3 5 4-11116.0134.6143.2 + 14 8 16 2 2 0 2 0 0 2 3 1-11114.8134.1143.1 + 14 8 17 5 3 2 7 12 7 3 4 5-11117.9133.7143.0 + 14 8 18 3 5 7 0 3 5 5 4 4-11113.3133.4142.9 + 14 8 19 3 3 7 12 6 12 22 56 15-11113.3133.1142.8 + 14 8 20 9 3 5 5 5 4 6 6 5-11121.1133.0142.7 + 14 8 21 15 15 6 7 7 5 12 6 9-11131.3132.9142.6 + 14 8 22 4 7 2 0 3 2 0 3 3-11129.3133.0142.5 + 14 8 23 3 7 4 3 2 5 4 3 4-11134.9133.2142.4 + 14 8 24 3 2 3 3 5 0 0 0 2-11144.0133.5142.3 + 14 8 25 0 2 0 3 3 3 3 3 2-11154.8133.8142.1 + 14 8 26 2 2 0 5 3 4 4 4 3-11130.8134.2142.0 + 14 8 27 3 9 18 22 22 32 27 18 19-11125.3134.7141.8 + 14 8 28 18 39 27 15 9 22 12 9 19-11121.0135.1141.6 + 14 8 29 18 22 15 27 12 9 15 22 18-11122.5135.6141.5 + 14 8 30 22 22 6 18 18 6 12 6 14-11125.5135.9141.4 + 14 8 31 7 6 9 22 12 6 27 22 14-11127.1136.3141.3 + 14 9 1 15 9 9 9 12 7 7 12 10-11128.9136.5141.2 + 14 9 2 7 9 7 6 12 7 7 15 9-11138.7136.5141.1 + 14 9 3 12 18 12 6 5 5 5 7 9-11140.1136.6141.0 + 14 9 4 12 7 5 7 6 3 3 5 6-11148.4136.9141.0 + 14 9 5 5 5 6 6 6 7 6 12 7-11146.3136.9140.9 + 14 9 6 4 9 12 5 6 18 9 12 9-11159.8137.1140.9 + 14 9 7 15 15 9 3 3 3 3 2 7-11162.6137.2140.8 + 14 9 8 0 5 6 3 4 5 6 7 5-11166.3137.5140.8 + 14 9 9 7 6 5 6 6 6 9 9 7-11161.6137.7140.7 + 14 9 10 9 0 3 4 3 7 9 15 6-11177.0138.2140.6 + 14 9 11 12 22 9 9 6 4 5 18 11-11153.4138.5140.5 + 14 9 12 56 32 7 15 6 48 39 94 37-11154.0139.2140.5 + 14 9 13 22 12 27 5 7 7 9 5 12-11146.9140.0140.4 + 14 9 14 2 2 3 2 3 3 0 0 2-11141.0140.9140.3 + 14 9 15 0 2 4 2 3 2 2 3 2-11134.4141.8140.3 + 14 9 16 6 9 7 5 4 5 7 12 7-11134.1142.7140.2 + 14 9 17 7 3 0 2 3 6 7 7 4-11134.2143.3140.1 + 14 9 18 7 4 3 3 4 5 12 12 6-11121.3143.8140.0 + 14 9 19 22 39 18 18 18 22 15 9 20-11122.8144.2139.9 + 14 9 20 7 7 4 5 9 4 2 4 5-11120.1144.5139.8 + 14 9 21 5 15 5 4 4 4 6 4 6-11124.9144.6139.7 + 14 9 22 4 9 7 6 12 7 7 6 7-11136.8144.8139.7 + 14 9 23 12 7 7 7 12 15 12 9 10-11139.1145.0139.6 + 14 9 24 22 22 12 27 22 18 15 27 21-11145.6145.2139.5 + 14 9 25 22 9 9 12 7 6 9 15 11-11167.8145.3139.5 + 14 9 26 15 18 12 12 27 18 7 15 16-11171.0145.7139.5 + 14 9 27 32 27 18 9 9 9 7 4 14-11182.2145.9139.5 + 14 9 28 6 5 5 9 9 7 9 4 7-11181.8146.2139.5 + 14 9 29 7 6 5 9 7 5 22 12 9-11175.6146.4139.4 + 14 9 30 12 27 9 18 9 7 9 9 13-11162.6146.5139.4 + 14 10 1 27 9 12 9 6 9 6 7 11-11155.4146.6139.3 + 14 10 2 7 9 6 5 6 7 5 9 7-11149.3146.7139.2 + 14 10 3 9 2 4 2 2 4 3 2 4-11136.9146.9139.1 + 14 10 4 5 6 7 4 3 2 4 6 5-11127.6147.0139.0 + 14 10 5 6 6 5 3 6 6 5 4 5-11128.4147.0139.0 + 14 10 6 12 7 2 3 3 2 4 12 6-11129.9147.3138.9 + 14 10 7 7 15 2 2 3 3 2 4 5-11125.2147.8138.8 + 14 10 8 4 5 5 15 7 6 7 12 8-11126.2148.4138.8 + 14 10 9 18 27 22 9 7 6 7 7 13-11118.6148.9138.7 + 14 10 10 12 18 5 2 3 4 5 6 7-11120.4149.4138.7 + 14 10 11 6 12 12 9 15 5 3 2 8-11111.6149.8138.6 + 14 10 12 0 0 2 4 5 3 5 3 3-11110.0150.2138.6 + 14 10 13 4 2 5 0 4 7 12 12 6-11112.6150.5138.6 + 14 10 14 3 4 3 6 18 32 32 48 18-11131.9150.8138.6 + 14 10 15 27 15 7 5 6 4 2 3 9-11125.0150.8138.6 + 14 10 16 6 4 3 6 6 6 6 15 7-11138.0151.0138.5 + 14 10 17 5 12 3 6 5 4 5 15 7-11144.8151.1138.4 + 14 10 18 18 15 9 9 15 27 9 15 15-11171.1151.2138.4 + 14 10 19 15 18 9 7 6 3 9 5 9-11171.7151.3138.3 + 14 10 20 15 15 27 22 18 48 27 22 24-11202.2151.5138.3 + 14 10 21 15 9 15 15 18 15 22 9 15-11197.1151.4138.3 + 14 10 22 22 15 12 9 12 22 9 6 13-11214.2151.5138.3 + 14 10 23 5 7 7 7 9 6 18 7 8-11224.8151.6138.3 + 14 10 24 15 3 6 7 7 22 7 6 9-11215.4151.7138.3 + 14 10 25 15 9 6 6 7 15 7 4 9-11216.8151.8138.3 + 14 10 26 15 12 15 15 9 7 7 4 11-11214.0151.8138.3 + 14 10 27 12 9 7 12 7 12 7 27 12-11185.4151.7138.3 + 14 10 28 22 12 9 15 12 12 9 4 12-11165.1151.6138.2 + 14 10 29 18 9 7 6 4 7 6 0 7-11148.4151.7138.2 + 14 10 30 2 3 3 5 3 4 5 7 4-11138.4151.9138.1 + 14 10 31 3 7 5 5 7 3 9 5 6-11119.5152.2138.0 + 14 11 1 3 4 12 9 12 7 4 2 7-11118.1152.4138.0 + 14 11 2 7 4 2 4 15 18 9 3 8-11122.4152.6137.9 + 14 11 3 7 6 4 5 3 2 2 5 4-11123.2152.8137.9 + 14 11 4 5 4 9 22 27 18 39 39 20-11127.3152.9137.9 + 14 11 5 18 18 15 22 9 6 7 12 13-11142.7152.9137.8 + 14 11 6 5 7 7 6 9 4 4 15 7-11133.1153.0137.8 + 14 11 7 15 15 6 12 7 9 9 18 11-11142.9153.1137.9 + 14 11 8 6 4 7 7 9 7 4 15 7-11129.6153.4137.9 + 14 11 9 12 9 6 4 6 9 12 12 9-11129.2153.8137.9 + 14 11 10 27 15 12 32 22 32 15 9 21-11133.4154.3137.9 + 14 11 11 9 9 6 9 7 5 6 39 11-11139.5154.8137.9 + 14 11 12 22 9 7 4 3 4 4 7 8-11149.8155.1137.9 + 14 11 13 5 6 3 6 4 3 3 3 4-11150.3155.4137.8 + 14 11 14 15 15 12 4 9 7 18 15 12-11157.6155.6137.8 + 14 11 15 12 18 15 18 15 4 12 32 16-11157.1155.8137.8 + 14 11 16 22 27 22 18 18 22 12 15 20-11167.7155.8137.7 + 14 11 17 7 5 4 7 18 12 18 7 10-11163.8155.9137.7 + 14 11 18 12 12 9 7 15 12 4 5 10-11163.6155.9137.7 + 14 11 19 18 2 5 7 7 5 12 4 8-11165.7156.0137.6 + 14 11 20 15 7 7 12 5 9 18 6 10-11164.1156.1137.6 + 14 11 21 22 18 6 12 9 9 15 9 13-11158.6156.3137.6 + 14 11 22 12 9 6 6 5 4 9 18 9-11162.6156.6137.5 + 14 11 23 6 7 7 9 12 9 12 4 8-11168.8156.9137.4 + 14 11 24 9 5 4 5 6 9 7 4 6-11140.7157.1137.4 + 14 11 25 4 4 2 5 5 7 6 4 5-11165.0157.3137.3 + 14 11 26 4 4 4 4 7 0 0 4 3-11166.5157.3137.3 + 14 11 27 5 12 6 4 7 7 7 7 7-11174.1157.2137.3 + 14 11 28 2 0 0 2 9 6 4 4 3-11176.6156.8137.3 + 14 11 29 3 3 5 3 4 5 5 4 4-11172.5156.6137.3 + 14 11 30 4 7 7 5 4 12 12 12 8-11172.4155.9137.2 + 14 12 1 6 9 7 5 5 9 9 22 9-11163.4155.3137.2 + 14 12 2 15 15 12 5 12 9 15 5 11-11163.0154.5137.2 + 14 12 3 12 6 3 5 5 6 12 7 7-11149.8153.6137.2 + 14 12 4 9 6 3 3 7 12 7 22 9-11153.0152.7137.2 + 14 12 5 12 15 7 9 18 9 4 7 10-11132.8151.7137.3 + 14 12 6 7 7 9 9 6 7 22 22 11-11125.0150.7137.3 + 14 12 7 39 9 12 18 39 32 27 27 25-11127.9149.9137.3 + 14 12 8 18 12 9 9 15 27 12 12 14-11128.7149.3137.2 + 14 12 9 27 9 9 9 15 9 22 15 14-11135.5149.0137.2 + 14 12 10 18 9 9 9 4 3 5 5 8-11145.3148.8137.1 + 14 12 11 5 2 3 0 3 4 6 9 4-11143.0148.8137.0 + 14 12 12 15 12 18 15 32 15 22 18 18-11149.4148.9136.9 + 14 12 13 6 9 5 4 12 7 9 12 8-11154.9148.8136.9 + 14 12 14 7 15 6 7 9 12 18 6 10-11161.2148.7136.8 + 14 12 15 6 12 15 18 18 12 12 18 14-11164.0148.6136.8 + 14 12 16 4 5 4 5 12 7 6 9 7-11178.8148.4136.9 + 14 12 17 12 9 5 4 3 5 5 3 6-11192.3148.5137.0 + 14 12 18 4 5 3 3 5 9 5 7 5-11206.4148.6137.1 + 14 12 19 12 6 9 5 4 9 7 7 7-11208.9148.9137.1 + 14 12 20 12 9 6 5 6 6 3 9 7-11196.7149.4137.2 + 14 12 21 12 12 9 7 12 7 18 22 12-11199.2149.7137.3 + 14 12 22 48 56 18 7 4 12 4 5 19-11173.4149.8137.8 + 14 12 23 3 0 3 27 7 7 15 27 11-11160.5149.6137.8 + 14 12 24 27 9 7 7 22 15 18 18 15-11146.5149.5137.9 + 14 12 25 6 6 5 3 15 12 18 22 11-11140.6149.4137.9 + 14 12 26 27 27 9 7 6 7 39 12 17-11132.5149.3137.9 + 14 12 27 18 7 5 6 6 4 2 2 6-11129.7148.9137.9 + 14 12 28 9 7 5 5 5 6 22 9 9-11128.2148.6137.8 + 14 12 29 7 15 9 18 22 39 18 39 21-11127.1148.4137.7 + 14 12 30 15 27 22 7 15 12 12 9 15-11126.0148.2137.6 + 14 12 31 5 9 5 6 7 18 5 6 8-11129.2147.9137.5 + 15 1 1 9 4 4 4 5 5 6 9 6-11132.9147.7137.3 + 15 1 2 15 4 5 6 9 9 15 27 11-11141.0147.2137.2 + 15 1 3 39 15 9 15 12 4 5 0 12-11143.8146.7137.0 + 15 1 4 3 4 7 18 22 48 18 27 18-11144.8146.5136.8 + 15 1 5 56 15 9 6 7 6 9 15 15-11137.2145.9136.6 + 15 1 6 7 15 18 22 7 15 12 4 13-11137.2145.3136.4 + 15 1 7 9 6 80 94 27 9 7 18 31-11142.4144.5136.2 + 15 1 8 22 27 12 7 9 6 6 12 13-11152.0143.8136.0 + 15 1 9 7 6 9 6 7 5 4 7 6-11146.2143.1135.8 + 15 1 10 9 18 5 7 9 18 4 3 9-11146.9142.4135.7 + 15 1 11 15 9 15 7 9 4 7 12 10-11148.6141.8135.6 + 15 1 12 2 5 5 6 12 9 9 7 7-11153.4141.2135.6 + 15 1 13 6 6 4 5 12 12 7 7 7-11145.3140.8135.6 + 15 1 14 7 3 4 6 12 5 6 4 6-11137.2140.3135.6 + 15 1 15 2 3 5 5 15 6 2 2 5-11127.1140.1135.6 + 15 1 16 5 15 7 5 7 4 6 4 7-11120.7139.9135.6 + 15 1 17 12 15 3 6 5 0 2 6 6-11118.0139.6135.6 + 15 1 18 2 2 0 3 5 4 4 9 4-11121.7139.5135.7 + 15 1 19 9 2 0 3 3 3 4 7 4-11125.9139.3135.7 + 15 1 20 4 0 4 5 2 0 0 2 2-11121.6139.0135.7 + 15 1 21 5 7 6 5 7 22 18 15 11-11120.0138.9135.7 + 15 1 22 22 15 6 15 15 5 9 7 12-11116.6138.5135.6 + 15 1 23 12 15 7 7 7 7 6 3 8-11117.3138.1135.6 + 15 1 24 2 4 4 4 6 6 9 9 6-11121.4137.8135.6 + 15 1 25 4 6 3 3 4 4 5 12 5-11122.7137.4135.5 + 15 1 26 18 15 18 27 12 15 9 7 15-11142.5136.8135.5 + 15 1 27 15 12 15 7 6 9 9 18 11-11153.3136.0135.4 + 15 1 28 12 7 15 9 4 3 2 5 7-11154.5134.9135.3 + 15 1 29 7 3 3 6 6 7 22 12 8-11166.7133.8135.1 + 15 1 30 9 12 7 4 4 6 18 15 9-11154.6133.0135.0 + 15 1 31 5 9 5 5 6 9 9 22 9-11149.0132.1134.8 + 15 2 1 27 12 15 7 7 15 32 48 20-11137.6131.4134.6 + 15 2 2 48 39 27 22 15 22 27 15 27-11139.8130.8134.5 + 15 2 3 27 27 12 9 12 15 9 15 16-11145.1130.4134.4 + 15 2 4 9 6 4 6 12 15 5 5 8-11150.1130.1134.3 + 15 2 5 6 15 5 9 18 18 12 9 12-11138.0129.9134.3 + 15 2 6 0 5 9 12 6 5 4 0 5-11139.3129.7134.2 + 15 2 7 3 3 15 18 9 12 9 5 9-11148.9129.4134.2 + 15 2 8 7 12 12 7 5 9 15 12 10-11148.7129.2134.2 + 15 2 9 15 3 4 2 9 7 7 9 7-11141.9129.1134.2 + 15 2 10 3 9 4 2 4 6 6 15 6-11137.3129.0134.2 + 15 2 11 5 15 3 6 9 3 0 2 5-11127.7128.9134.2 + 15 2 12 5 3 0 3 7 5 5 4 4-11124.4128.8134.2 + 15 2 13 0 0 0 4 4 3 2 2 2-11121.8128.7134.2 + 15 2 14 0 6 2 2 2 2 0 4 2-11117.4128.6134.1 + 15 2 15 2 6 6 4 15 6 6 4 6-11116.7128.6134.0 + 15 2 16 0 2 4 4 6 4 9 12 5-11115.3128.7134.0 + 15 2 17 22 18 18 22 15 12 22 48 22-11115.7128.7133.9 + 15 2 18 48 27 18 12 7 7 12 15 18-11118.2128.5133.9 + 15 2 19 15 12 9 6 6 6 6 6 8-11116.0128.3133.8 + 15 2 20 3 6 6 6 6 3 3 7 5-11117.0128.0133.8 + 15 2 21 12 12 4 5 6 4 4 9 7-11113.6127.6133.8 + 15 2 22 9 9 4 6 5 5 3 9 6-11115.0127.2133.8 + 15 2 23 15 12 12 18 18 18 15 22 16-11114.3126.9133.7 + 15 2 24 56 56 27 22 12 9 5 12 25-11112.1126.7133.6 + 15 2 25 3 5 15 7 15 12 7 2 8-11108.8126.7133.6 + 15 2 26 6 2 5 5 4 0 2 4 4-11109.1126.6133.6 + 15 2 27 0 0 2 2 3 4 2 5 2-11115.7126.5133.6 + 15 2 28 3 12 9 7 7 15 22 15 11-11121.1126.3133.5 + 15 3 1 48 48 56 22 7 5 9 12 26-11125.3126.2133.4 + 15 3 2 27 32 56 39 22 22 15 7 28-11128.1126.2133.3 + 15 3 3 15 15 7 7 6 5 9 18 10-11122.9126.4133.2 + 15 3 4 7 5 6 18 15 2 6 12 9-11122.1126.7133.1 + 15 3 5 5 2 2 5 7 9 6 5 5-11137.9127.1133.0 + 15 3 6 5 12 22 7 6 6 7 15 10-11125.4127.5132.8 + 15 3 7 22 32 18 18 15 22 18 22 21-11135.7127.9132.6 + 15 3 8 12 9 12 15 22 7 6 2 11-11122.3128.0132.4 + 15 3 9 18 9 2 0 3 4 2 4 5-11121.2127.9132.2 + 15 3 10 5 5 6 5 3 2 4 2 4-11119.2127.9132.0 + 15 3 11 2 15 12 6 9 12 9 4 9-11129.9127.7131.8 + 15 3 12 6 18 9 9 9 7 3 0 8-11125.1127.7131.5 + 15 3 13 4 2 2 6 18 7 4 4 6-11117.9127.8131.4 + 15 3 14 2 9 6 5 6 3 2 9 5-11114.3127.8131.2 + 15 3 15 7 7 12 5 5 5 7 4 7-11113.1127.8131.1 + 15 3 16 6 18 22 15 12 12 5 2 12-11116.0127.6131.0 + 15 3 17 7 39 67 56179179154179108-11113.2127.2130.9 + 15 3 18 80 39 32 32 56 56 39 39 47-11113.7126.8130.8 + 15 3 19 32 27 22 48 32 15 9 22 26-11108.3126.5130.7 + 15 3 20 39 15 39 15 12 9 18 32 22-11111.8125.9130.7 + 15 3 21 27 12 18 12 9 6 6 5 12-11112.7125.4130.7 + 15 3 22 9 18 94 39 18 4 4 4 24-11121.5124.9130.6 + 15 3 23 22 32 9 15 22 15 12 22 19-11127.2124.5130.6 + 15 3 24 6 5 5 9 18 22 6 7 10-11132.2124.3130.5 + 15 3 25 7 9 12 18 22 12 18 7 13-11137.0124.3130.4 + 15 3 26 9 5 6 3 7 9 7 15 8-11135.5124.4130.3 + 15 3 27 15 9 9 5 9 5 4 5 8-11137.2124.7130.2 + 15 3 28 0 6 18 6 6 9 7 12 8-11145.1125.1130.0 + 15 3 29 27 18 9 6 7 6 7 7 11-11144.0125.5129.9 + 15 3 30 6 7 3 3 2 2 3 6 4-11133.3126.1129.7 + 15 3 31 2 3 9 9 15 15 12 7 9-11127.8126.6129.6 + 15 4 1 5 4 5 6 5 15 7 7 7-11123.9127.2129.5 + 15 4 2 3 6 7 9 9 9 18 39 13-11121.2127.8129.4 + 15 4 3 18 12 9 9 15 12 7 15 12-11119.8128.4129.3 + 15 4 4 15 12 6 9 15 18 7 6 11-11122.4128.8129.2 + 15 4 5 6 7 5 3 4 6 4 15 6-11122.3129.1129.1 + 15 4 6 9 9 6 3 6 3 3 4 5-11125.8129.4129.0 + 15 4 7 7 9 2 0 3 3 5 2 4-11111.4129.6128.8 + 15 4 8 4 2 0 0 4 4 6 3 3-11106.3129.7128.7 + 15 4 9 9 15 12 12 9 12 7 12 11-11111.6129.7128.6 + 15 4 10 56 48 56 32 32 18 15 7 33-11115.5129.5128.5 + 15 4 11 27 27 22 18 12 12 9 5 17-11123.5129.2128.4 + 15 4 12 2 4 4 2 4 3 5 3 3-11134.6128.9128.3 + 15 4 13 9 9 6 4 5 5 5 3 6-11142.1128.6128.3 + 15 4 14 2 3 5 4 15 32 22 22 13-11147.7128.4128.2 + 15 4 15 9 12 12 48 56 22 39 22 28-11155.7127.9128.1 + 15 4 16 39 39 39 32 22 27 56 80 42-11151.3127.5128.1 + 15 4 17 48 39 27 15 15 15 12 7 22-11150.8127.1128.0 + 15 4 18 12 7 7 7 7 9 18 12 10-11148.9126.7127.9 + 15 4 19 15 9 6 5 6 7 7 9 8-11153.0126.4127.8 + 15 4 20 15 15 5 5 7 5 12 12 10-11151.0126.1127.6 + 15 4 21 27 22 18 27 32 18 12 18 22-11155.3125.7127.4 + 15 4 22 9 7 18 9 9 6 6 12 10-11151.8125.5127.2 + 15 4 23 6 18 4 4 3 3 2 5 6-11142.0125.3127.0 + 15 4 24 7 9 2 3 2 2 2 0 3-11136.0125.3126.7 + 15 4 25 0 2 0 0 0 0 2 0 1-11127.4125.4126.4 + 15 4 26 0 2 0 2 3 2 0 4 2-11120.0125.5126.0 + 15 4 27 2 0 3 6 6 5 5 6 4-11108.9125.8125.7 + 15 4 28 9 4 5 6 6 5 4 2 5-11109.2126.2125.5 + 15 4 29 3 2 2 4 6 5 3 4 4-11105.5126.5125.4 + 15 4 30 7 3 4 3 2 2 9 3 4-11103.3126.9125.3 + 15 5 1 5 7 3 2 4 6 5 6 5-11101.4127.2125.2 + 15 5 2 5 6 4 6 5 6 15 12 7-11107.3127.5125.2 + 15 5 3 15 15 9 5 4 5 5 3 8-11112.9127.7125.2 + 15 5 4 6 5 7 5 12 9 6 4 7-11125.4127.8125.2 + 15 5 5 3 3 4 7 9 4 4 7 5-11130.0127.8125.2 + 15 5 6 18 15 18 22 56 27 18 6 23-11138.6127.8125.2 + 15 5 7 7 6 3 3 6 9 6 6 6-11149.2127.8125.1 + 15 5 8 12 6 6 6 4 3 3 3 5-11152.6127.8125.0 + 15 5 9 2 2 2 12 5 12 12 9 7-11157.5127.9125.0 + 15 5 10 6 5 7 22 18 3 6 7 9-11163.1128.0124.9 + 15 5 11 18 22 7 6 15 12 9 22 14-11166.2128.2124.8 + 15 5 12 12 15 15 18 15 12 15 15 15-11166.5128.3124.7 + 15 5 13 48 67 67 39 32 32 48 32 46-11160.3130.0124.6 + 15 5 14 9 9 12 5 6 4 7 15 8-11148.2130.0124.5 + 15 5 15 6 9 7 9 6 3 5 7 7-11139.5129.9124.4 + 15 5 16 5 3 5 4 5 4 5 6 5-11134.0129.7124.2 + 15 5 17 7 6 4 2 4 5 6 2 5-11122.3129.4124.1 + 15 5 18 5 6 7 9 15 5 15 56 15-11117.6129.3123.9 + 15 5 19 48 18 6 9 7 7 7 3 13-11112.9129.2123.7 + 15 5 20 12 12 7 5 7 3 3 0 6-11108.2129.0123.6 + 15 5 21 0 2 0 2 4 2 3 4 2-11104.3128.9123.4 + 15 5 22 5 2 0 3 4 2 2 0 2-11101.6128.8123.3 + 15 5 23 0 3 3 5 3 3 3 2 3-11100.2128.6123.2 + 15 5 24 5 6 3 2 2 2 5 5 4-11101.2128.3123.0 + 15 5 25 2 0 2 3 3 2 3 2 2-11 99.0127.9122.9 + 15 5 26 6 6 5 4 5 9 6 2 5-11 97.0127.6122.8 + 15 5 27 0 4 2 4 9 5 3 7 4-11 97.8127.4122.7 + 15 5 28 7 9 4 7 6 5 4 5 6-11 95.5127.3122.5 + 15 5 29 3 7 5 7 7 7 7 7 6-11 94.8127.1122.3 + 15 5 30 3 4 3 4 7 4 4 5 4-11 97.7126.7122.0 + 15 5 31 5 4 5 2 3 6 4 6 4-11 97.0126.5121.8 + 15 6 1 15 9 4 6 2 4 9 3 7-11103.2126.1121.6 + 15 6 2 2 2 0 2 2 2 2 2 2-11103.9125.7121.4 + 15 6 3 2 3 3 5 5 3 3 2 3-11111.6125.4121.2 + 15 6 4 2 2 0 2 2 2 4 0 2-11121.4125.0121.1 + 15 6 5 0 2 0 2 2 2 2 2 2-11129.7124.8120.9 + 15 6 6 3 7 2 6 5 3 3 3 4-11136.6124.6120.8 + 15 6 7 0 4 4 4 6 6 15 15 7-11141.4124.5120.7 + 15 6 8 15 22 80 48 32 48 22 22 36-11138.2124.3120.6 + 15 6 9 22 15 12 5 15 18 12 9 14-11140.6124.3120.6 + 15 6 10 15 7 15 12 12 9 12 9 11-11139.5124.2120.5 + 15 6 11 9 15 9 7 7 12 5 5 9-11144.2124.1120.4 + 15 6 12 4 5 4 4 9 9 6 6 6-11141.0123.9120.3 + 15 6 13 12 6 9 9 6 9 7 9 8-11140.3123.7120.2 + 15 6 14 27 15 22 32 6 12 12 12 17-11135.8123.3120.1 + 15 6 15 7 7 9 15 22 15 12 9 12-11139.1122.9120.0 + 15 6 16 15 12 12 6 7 15 6 7 10-11140.5122.4119.9 + 15 6 17 15 15 18 12 27 15 4 3 14-11140.2121.8119.7 + 15 6 18 12 6 4 4 7 9 4 2 6-11155.7121.2119.5 + 15 6 19 9 3 2 4 3 2 2 0 3-11141.8120.6119.2 + 15 6 20 2 2 0 0 2 0 0 2 1-11139.8119.9119.0 + 15 6 21 3 3 2 2 4 22 9 12 7-11136.0119.1118.7 + 15 6 22 4 18 32 15 39 56236 56 57-11255.0118.3118.5 + 15 6 23132179 94 56 67 12 22 18 73-11119.9117.7118.4 + 15 6 24 27 18 27 12 12 15 12 4 16-11113.1117.2118.3 + 15 6 25 7 12 56 48 67 32 18 12 32-11105.2116.8118.3 + 15 6 26 12 9 7 12 3 3 2 12 8-11104.6116.6118.2 + 15 6 27 9 9 12 5 6 5 4 12 8-11100.5116.6118.2 + 15 6 28 15 18 18 6 22 7 15 5 13-11100.5116.7118.1 + 15 6 29 5 5 7 5 4 4 3 3 5-11100.4116.9118.0 + 15 6 30 4 7 5 2 3 4 6 9 5-11104.2117.0118.0 + 15 7 1 5 4 3 5 7 6 3 0 4-11113.3117.0117.9 + 15 7 2 2 2 2 3 2 2 2 2 2-11117.6117.1117.8 + 15 7 3 0 2 3 2 3 3 2 2 2-11116.1117.1117.7 + 15 7 4 2 5 2 4 18 15 56 48 19-11120.7117.0117.6 + 15 7 5 56 48 9 18 12 9 12 12 22-11129.0117.0117.4 + 15 7 6 18 22 12 5 5 4 9 4 10-11137.9116.9117.3 + 15 7 7 7 3 3 5 4 3 4 6 4-11137.1116.8117.2 + 15 7 8 3 4 4 3 4 4 5 4 4-11133.2116.7117.1 + 15 7 9 3 6 3 3 4 4 4 4 4-11126.0116.7117.0 + 15 7 10 3 3 2 2 2 4 9 39 8-11133.3116.7116.8 + 15 7 11 32 39 27 22 15 12 22 15 23-11124.3116.8116.7 + 15 7 12 15 9 9 15 9 12 15 15 12-11119.9117.1116.6 + 15 7 13 15 48 39 32 18 27 67 15 33-11113.8117.3116.5 + 15 7 14 15 5 4 3 4 4 6 5 6-11108.7117.6116.3 + 15 7 15 4 7 4 4 7 6 5 9 6-11104.4117.7116.2 + 15 7 16 15 6 7 6 6 6 4 4 7-11102.9117.6116.1 + 15 7 17 5 5 4 4 4 5 2 2 4-11100.6117.5116.0 + 15 7 18 0 3 0 3 3 2 5 2 2-11 99.1117.1116.0 + 15 7 19 0 2 2 3 2 2 2 0 2-11102.6116.8115.9 + 15 7 20 0 2 3 5 4 2 3 3 3-11 96.3116.3115.8 + 15 7 21 9 7 9 7 7 4 9 7 7-11 94.0115.8115.8 + 15 7 22 3 2 3 6 7 15 9 5 6-11 91.9115.1115.7 + 15 7 23 12 27 56 12 12 12 22 12 21-11 92.2114.5115.6 + 15 7 24 6 4 4 3 7 5 5 6 5-11 95.2113.9115.6 + 15 7 25 9 4 12 9 5 4 6 9 7-11 96.9113.3115.5 + 15 7 26 12 4 3 9 3 5 9 6 6-11100.1112.7115.5 + 15 7 27 7 6 12 15 12 5 6 6 9-11103.2112.0115.4 + 15 7 28 5 9 6 7 15 5 6 5 7-11104.2111.4115.3 + 15 7 29 5 5 4 4 5 4 6 3 5-11103.8110.5115.2 + 15 7 30 6 6 4 4 7 15 32 18 12-11105.1109.8115.1 + 15 7 31 12 9 5 7 18 22 18 15 13-11103.8109.1114.9 + 15 8 1 15 6 5 7 6 12 9 9 9-11106.0108.5114.8 + 15 8 2 18 9 9 5 15 12 5 7 10-11104.5106.5114.6 + 15 8 3 7 12 6 4 6 4 5 5 6-11108.7106.3114.5 + 15 8 4 6 7 5 4 5 4 5 12 6-11109.9106.1114.4 + 15 8 5 5 3 2 3 5 5 5 9 5-11115.5106.0114.3 + 15 8 6 7 4 9 18 15 9 9 12 10-11125.1106.0114.2 + 15 8 7 12 7 32 9 48 27 6 5 18-11125.5106.1114.2 + 15 8 8 6 7 12 12 15 7 12 12 10-11124.4106.2114.1 + 15 8 9 5 9 9 18 7 9 7 15 10-11117.6106.2114.0 + 15 8 10 12 12 9 7 6 6 9 5 8-11109.1106.3113.9 + 15 8 11 12 9 7 6 4 5 3 9 7-11105.6106.2113.8 + 15 8 12 7 7 12 4 9 15 12 18 11-11101.9106.1113.7 + 15 8 13 15 32 7 6 9 5 4 4 10-11 97.3106.0113.7 + 15 8 14 0 2 0 3 3 3 3 4 2-11 95.7105.9113.7 + 15 8 15 9 6 18 80 80 39 18 32 35-11 91.7105.6113.6 + 15 8 16 56 39 67 18 12 22 22 22 32-11 87.8105.4113.6 + 15 8 17 18 27 32 22 27 22 22 9 22-11 89.2105.2113.5 + 15 8 18 15 12 9 5 3 6 4 9 8-11 90.9105.1113.5 + 15 8 19 22 27 18 12 22 18 12 9 18-11100.6105.1113.5 + 15 8 20 12 12 7 9 18 9 12 12 11-11105.3105.0113.4 + 15 8 21 4 5 6 4 9 4 5 4 5-11121.4105.1113.3 + 15 8 22 6 3 4 9 18 9 7 9 8-11119.6105.1113.3 + 15 8 23 15 12 56 39 39 12 22 9 26-11136.1105.1113.2 + 15 8 24 15 6 6 6 6 4 6 3 7-11130.6104.9113.2 + 15 8 25 7 9 7 6 4 6 12 9 8-11123.9104.7113.1 + 15 8 26 15 18 15 27 27 39 39 39 27-11128.9104.5113.0 + 15 8 27 39 94 67 27 27 39 27 94 52-11112.5104.2113.0 + 15 8 28 56 39 15 15 48 56 67 27 40-11111.3104.0112.9 + 15 8 29 32 12 7 18 6 12 12 7 13-11102.1103.7112.8 + 15 8 30 6 3 4 3 2 3 4 5 4-11 93.4103.5112.7 + 15 8 31 5 4 2 3 3 4 6 6 4-11 92.7103.4112.6 + 15 9 1 6 4 3 5 4 3 4 6 4-11 90.7103.3112.6 + 15 9 2 7 5 3 2 6 9 15 9 7-11 89.8103.2112.5 + 15 9 3 7 12 5 4 4 6 6 18 8-11 88.0103.2112.4 + 15 9 4 32 27 32 18 18 9 9 12 20-11 91.5103.3112.3 + 15 9 5 6 9 12 7 9 22 22 7 12-11 86.8103.3112.2 + 15 9 6 9 12 12 12 15 9 27 7 13-11 86.9103.4112.1 + 15 9 7 9 15 22 12 39 94 67 94 44-11 85.0103.5112.0 + 15 9 8 80 56 12 5 7 7 6 22 24-11 84.7103.7112.0 + 15 9 9 27 67 80 80 56 39 67 56 59-11 83.5103.9111.9 + 15 9 10 12 4 6 4 7 18 32 15 12-11 84.6104.2111.8 + 15 9 11 15 27132 94 67111 15 22 60-11 94.1104.4111.7 + 15 9 12 27 15 32 22 12 9 5 6 16-11100.4104.6111.6 + 15 9 13 4 5 6 12 7 22 18 12 11-11100.0104.7111.6 + 15 9 14 7 7 6 9 7 39 27 12 14-11 97.7104.6111.5 + 15 9 15 27 18 9 18 22 15 9 15 17-11102.2104.5111.5 + 15 9 16 9 12 7 5 9 18 12 18 11-11110.6104.2111.4 + 15 9 17 32 9 9 9 5 3 2 12 10-11107.9104.0111.3 + 15 9 18 7 7 18 12 15 7 15 9 11-11103.8103.9111.3 + 15 9 19 22 27 39 12 6 2 4 15 16-11106.7103.8111.2 + 15 9 20 15 39132 56 32 48 12 15 44-11111.3103.9111.1 + 15 9 21 18 12 6 9 6 6 4 4 8-11104.2104.1111.1 + 15 9 22 9 9 22 6 12 7 6 5 10-11107.8104.3110.9 + 15 9 23 5 6 18 15 9 22 18 5 12-11111.4104.6110.8 + 15 9 24 12 9 6 4 4 4 6 9 7-11107.4104.9110.7 + 15 9 25 7 6 5 9 15 3 2 5 7-11120.5105.2110.5 + 15 9 26 5 3 2 2 2 6 7 5 4-11120.8105.4110.4 + 15 9 27 3 4 3 2 2 2 5 5 3-11128.1105.7110.2 + 15 9 28 4 3 0 2 3 4 5 6 3-11124.5106.0110.1 + 15 9 29 9 12 5 5 0 2 2 3 5-11129.6106.1110.0 + 15 9 30 0 0 0 3 3 2 2 3 2-11131.5106.1109.8 + 15 10 1 4 4 5 4 12 22 15 18 11-11120.0105.8109.7 + 15 10 2 12 22 22 9 12 9 7 6 12-11107.6105.6109.6 + 15 10 3 7 18 12 6 7 12 9 5 10-11 97.0105.2109.5 + 15 10 4 22 32 27 9 12 6 7 22 17-11 88.3104.8109.4 + 15 10 5 22 22 22 48 15 5 6 7 18-11 82.6104.6109.3 + 15 10 6 9 22 12 6 15 18 32 32 18-11 81.3104.3109.2 + 15 10 7 22 80 67 48 48 94154 80 74-11 80.4104.2109.1 + 15 10 8 39 67 67 32 48 39 39 32 45-11 79.5104.1109.1 + 15 10 9 27 22 12 18 39 39 32 27 27-11 81.0104.1109.0 + 15 10 10 18 15 18 6 6 12 5 7 11-11 81.2104.3109.0 + 15 10 11 22 12 5 5 12 9 15 15 12-11 84.3104.5109.0 + 15 10 12 4 12 12 27 18 48 22 27 21-11 88.7104.8108.9 + 15 10 13 7 22 32 32 9 27 32 32 24-11 95.2105.2108.8 + 15 10 14 27 32 27 27 22 12 15 9 21-11100.2105.5108.7 + 15 10 15 12 7 7 7 5 5 7 12 8-11106.1105.8108.6 + 15 10 16 12 12 6 4 6 5 2 5 7-11108.4106.0108.5 + 15 10 17 7 12 6 7 9 9 22 6 10-11115.8106.2108.4 + 15 10 18 15 15 22 39 18 22 9 9 19-11118.6106.3108.3 + 15 10 19 0 6 4 4 4 3 4 4 4-11122.7106.4108.1 + 15 10 20 7 12 6 6 9 7 9 9 8-11121.7106.6108.0 + 15 10 21 4 9 6 18 22 7 7 5 10-11127.8106.7107.8 + 15 10 22 4 3 6 2 3 6 7 5 5-11119.3106.6107.6 + 15 10 23 9 3 3 4 6 7 5 7 6-11113.7106.5107.4 + 15 10 24 9 12 9 3 3 3 22 12 9-11105.2106.4107.2 + 15 10 25 7 6 9 5 12 6 3 3 6-11105.2106.4107.1 + 15 10 26 2 0 3 2 2 0 2 0 1-11104.9106.3107.0 + 15 10 27 0 2 2 3 5 2 4 7 3-11108.7106.2106.9 + 15 10 28 0 4 0 0 0 2 0 0 1-11110.7106.1106.9 + 15 10 29 2 0 3 4 3 3 5 9 4-11111.4106.1106.9 + 15 10 30 9 3 2 5 12 15 6 15 8-11119.5106.1106.9 + 15 10 31 2 2 3 5 7 6 7 12 6-11116.7106.0106.8 + 15 11 1 5 18 9 9 15 6 9 3 9-11122.4106.1106.8 + 15 11 2 2 0 2 2 12 9 0 5 4-11120.1106.2106.7 + 15 11 3 9 18 48 39 32 32 39 18 29-11122.2106.3106.6 + 15 11 4 32 56 48 32 48 12 9 7 31-11112.0106.4106.5 + 15 11 5 9 6 22 18 12 27 15 15 16-11108.1106.4106.4 + 15 11 6 22 7 7 9 7 5 27 32 15-11113.2106.4106.2 + 15 11 7 39 80 80 39 27 18 18 4 38-11112.9106.2106.1 + 15 11 8 5 3 3 7 18 15 32 27 14-11105.7106.1105.9 + 15 11 9 27 22 27 22 15 22 27 39 25-11105.6105.9105.7 + 15 11 10 32 27 48 56 56 32 22 22 37-11103.3105.7105.5 + 15 11 11 39 15 27 15 22 32 22 5 22-11102.9105.6105.3 + 15 11 12 4 2 5 6 3 4 3 4 4-11101.4105.9105.1 + 15 11 13 6 5 4 9 15 22 22 22 13-11100.8106.3104.9 + 15 11 14 15 9 7 7 7 5 5 9 8-11104.1106.7104.8 + 15 11 15 7 9 5 7 5 5 7 15 8-11103.5107.2104.8 + 15 11 16 18 12 9 9 15 12 9 12 12-11103.2107.6104.7 + 15 11 17 6 15 4 5 3 12 12 6 8-11104.6108.0104.7 + 15 11 18 3 12 6 9 7 15 22 48 15-11105.1108.3104.7 + 15 11 19 22 7 6 15 6 2 4 2 8-11105.6108.6104.7 + 15 11 20 2 4 9 9 2 0 0 4 4-11108.4108.8104.7 + 15 11 21 7 4 2 2 0 0 2 2 2-11119.2108.9104.7 + 15 11 22 3 3 3 0 0 2 2 0 2-11119.9109.0104.7 + 15 11 23 0 0 3 0 3 0 2 2 1-11116.7109.0104.6 + 15 11 24 0 0 0 0 0 0 0 0 0-11110.3109.0104.6 + 15 11 25 0 0 0 0 0 0 0 0 0-11106.2108.8104.6 + 15 11 26 0 0 0 0 0 2 5 4 1-11101.2108.6104.6 + 15 11 27 9 15 6 5 4 4 3 5 6-11 96.3108.4104.6 + 15 11 28 4 4 3 5 9 4 9 12 6-11 94.0108.1104.6 + 15 11 29 4 4 6 6 7 6 15 15 8-11 92.9107.9104.6 + 15 11 30 15 18 48 22 9 6 9 9 17-11 93.1107.7104.6 + 15 12 1 9 15 4 7 15 22 12 22 13-11 91.9107.4104.5 + 15 12 2 7 7 12 5 9 9 6 6 8-11 92.6107.2104.5 + 15 12 3 4 5 4 2 2 2 4 5 4-11 91.8107.1104.4 + 15 12 4 4 9 5 2 2 3 2 6 4-11 94.8107.0104.3 + 15 12 5 5 5 22 22 9 18 18 15 14-11 97.6107.0104.2 + 15 12 6 7 27 12 32 32 22 22 22 22-11 99.3106.9104.0 + 15 12 7 18 22 18 18 22 22 22 9 19-11 97.8106.8103.9 + 15 12 8 22 12 6 12 12 5 4 9 10-11107.9106.6103.7 + 15 12 9 9 12 2 4 5 9 18 6 8-11105.5106.4103.5 + 15 12 10 18 48 22 18 12 22 22 27 24-11105.2106.1103.4 + 15 12 11 27 15 12 18 15 32 18 15 19-11110.3105.9103.2 + 15 12 12 12 18 12 6 7 9 7 7 10-11113.1105.6103.1 + 15 12 13 12 12 7 7 6 4 2 3 7-11118.7105.3103.0 + 15 12 14 7 7 3 4 15 32 39 56 20-11120.2105.0102.9 + 15 12 15 39 22 9 6 15 18 5 12 16-11115.2104.8102.7 + 15 12 16 22 15 2 2 0 2 2 2 6-11122.2104.8102.6 + 15 12 17 2 2 2 4 5 7 22 7 6-11114.0104.8102.5 + 15 12 18 6 3 5 3 3 3 3 12 5-11113.3104.7102.3 + 15 12 19 4 3 2 3 4 18 22 27 10-11115.2104.7102.1 + 15 12 20 27 80 67 32 56 94111 94 70-11112.8104.7102.0 + 15 12 21111 80 48 22 15 9 5 15 38-11117.8104.7101.9 + 15 12 22 12 7 18 32 9 4 9 9 13-11125.8104.6101.4 + 15 12 23 7 9 6 7 9 7 12 18 9-11129.5104.6101.3 + 15 12 24 9 12 18 6 12 7 12 9 11-11128.4104.6101.2 + 15 12 25 9 7 9 7 6 6 7 6 7-11122.3104.6101.1 + 15 12 26 12 7 7 9 18 15 9 32 14-11113.5104.8101.0 + 15 12 27 12 7 9 9 15 9 7 7 9-11106.7105.0101.0 + 15 12 28 5 3 5 7 6 3 2 5 5-11108.4105.1100.9 + 15 12 29 9 3 2 3 7 6 7 9 6-11101.9105.2100.9 + 15 12 30 0 0 2 3 4 3 3 5 3-11 98.1105.3100.8 + 15 12 31 18 15 22 27 56 27 48 67 35-11 93.0105.4100.7 + 16 1 1 80 56 48 18 6 4 7 6 28-11 95.1105.2100.6 + 16 1 2 15 9 15 9 9 6 6 5 9-11 96.6105.1100.4 + 16 1 3 2 6 7 3 5 9 6 12 6-11 98.5105.0100.3 + 16 1 4 2 6 6 3 3 7 6 3 5-11 92.2105.0100.2 + 16 1 5 2 4 4 6 4 7 9 7 5-11 92.1105.0100.0 + 16 1 6 39 12 15 18 12 9 9 18 17-11 96.9105.0 99.8 + 16 1 7 27 12 12 18 12 12 9 5 13-11 99.9105.1 99.7 + 16 1 8 4 9 6 9 15 5 5 5 7-11104.9105.1 99.6 + 16 1 9 6 4 5 4 7 6 4 5 5-11103.5105.1 99.5 + 16 1 10 9 6 4 7 9 5 9 12 8-11105.4105.1 99.4 + 16 1 11 5 12 9 6 7 15 27 22 13-11104.5105.2 99.4 + 16 1 12 27 7 12 9 9 7 15 15 13-11102.0105.2 99.3 + 16 1 13 27 27 7 6 9 9 15 4 13-11100.7105.2 99.3 + 16 1 14 5 7 9 7 6 6 6 12 7-11 99.9105.1 99.3 + 16 1 15 7 7 4 3 3 4 4 4 5-11100.1105.0 99.3 + 16 1 16 0 4 3 5 4 2 2 2 3-11 96.7104.9 99.3 + 16 1 17 2 0 5 3 4 4 3 2 3-11 97.4104.7 99.3 + 16 1 18 0 0 0 2 4 6 3 15 4-11 96.7104.5 99.4 + 16 1 19 32 12 9 12 5 5 2 4 10-11 94.4104.3 99.4 + 16 1 20 2 7 18 32 39 39 39 32 26-11 97.2104.1 99.4 + 16 1 21 22 67 56 18 12 22 27 39 33-11100.7103.9 99.5 + 16 1 22 18 18 18 15 9 6 12 9 13-11 97.3103.7 99.5 + 16 1 23 5 18 22 7 15 12 6 5 11-11 95.8103.5 99.5 + 16 1 24 12 9 6 4 5 9 27 4 10-11100.6103.2 99.4 + 16 1 25 2 2 3 2 2 2 0 0 2-11104.3103.0 99.4 + 16 1 26 0 0 3 4 4 5 6 4 3-11111.3102.6 99.3 + 16 1 27 4 7 4 5 4 3 0 2 4-11109.3102.3 99.2 + 16 1 28 2 0 9 9 4 4 3 3 4-11106.6102.1 99.1 + 16 1 29 2 3 3 3 3 3 2 3 3-11103.7101.9 99.0 + 16 1 30 2 0 2 2 2 3 0 3 2-11102.0101.6 98.9 + 16 1 31 4 6 9 9 7 7 6 22 9-11 98.3101.3 98.9 + 16 2 1 12 22 9 9 2 2 0 0 7-11 97.3100.9 98.8 + 16 2 2 0 0 4 3 5 7 7 12 5-11 99.1100.5 98.7 + 16 2 3 27 39 12 4 3 4 3 2 12-11108.9100.0 98.6 + 16 2 4 2 2 5 6 9 6 5 3 5-11119.8 99.7 98.5 + 16 2 5 12 18 9 9 7 7 9 7 10-11116.3 99.4 98.4 + 16 2 6 6 9 5 5 5 6 6 9 6-11113.9 99.2 98.3 + 16 2 7 7 2 4 5 7 22 7 7 8-11113.9 98.9 98.2 + 16 2 8 48 32 32 6 5 4 4 2 17-11112.1 98.8 98.1 + 16 2 9 7 4 5 15 12 5 5 12 8-11114.1 98.6 98.1 + 16 2 10 12 5 4 3 2 2 3 4 4-11109.2 98.6 98.1 + 16 2 11 7 7 7 5 6 9 6 18 8-11109.8 98.5 98.1 + 16 2 12 18 9 7 22 15 9 7 7 12-11109.3 98.4 98.1 + 16 2 13 7 12 15 6 4 4 3 3 7-11107.5 98.2 98.0 + 16 2 14 9 12 7 9 9 15 6 4 9-11105.4 98.1 98.0 + 16 2 15 9 9 15 6 6 4 4 32 11-11104.7 98.0 98.0 + 16 2 16 27 12 18 39 56 48 56 39 37-11101.5 97.9 98.0 + 16 2 17 48 18 32 15 27 22 39 67 34-11 97.5 97.8 98.0 + 16 2 18 32 48 27 32 15 18 39 18 29-11 92.7 97.5 98.0 + 16 2 19 15 18 9 18 15 22 22 7 16-11 91.9 97.3 97.9 + 16 2 20 9 7 7 3 4 3 2 2 5-11 97.8 97.0 97.8 + 16 2 21 4 6 3 0 3 3 6 6 4-11 93.5 96.7 97.7 + 16 2 22 0 0 0 3 4 4 3 4 2-11 91.7 96.5 97.5 + 16 2 23 9 3 2 2 3 3 6 15 5-11 89.1 96.2 97.4 + 16 2 24 12 6 5 4 9 4 5 6 6-11 86.1 96.0 97.3 + 16 2 25 6 6 6 4 4 3 3 7 5-11 89.9 95.8 97.2 + 16 2 26 22 12 6 4 5 3 4 0 7-11 87.2 95.7 97.1 + 16 2 27 0 5 5 4 2 2 3 3 3-11 88.6 95.7 97.0 + 16 2 28 4 0 5 4 4 2 2 3 3-11 91.5 95.7 97.0 + 16 2 29 7 0 3 4 4 2 2 7 4-11 89.3 95.8 97.0 + 16 3 1 15 7 6 6 7 6 4 12 8-11 95.1 96.0 97.0 + 16 3 2 9 4 3 7 9 12 4 2 6-11 96.5 96.2 97.0 + 16 3 3 6 9 7 9 7 4 2 5 6-11 97.1 96.4 97.0 + 16 3 4 12 6 0 3 2 3 2 2 4-11 98.9 96.5 97.1 + 16 3 5 0 2 5 5 7 2 0 2 3-11 94.7 96.7 97.1 + 16 3 6 0 3 7 7 12 48 80 94 31-11 94.1 96.8 97.1 + 16 3 7 32 39 22 12 12 18 22 39 25-11 92.8 96.8 97.1 + 16 3 8 9 7 6 6 7 5 9 3 7-11 94.2 96.7 97.2 + 16 3 9 7 6 5 5 7 6 5 6 6-11 96.0 96.6 97.2 + 16 3 10 7 12 6 5 5 4 6 9 7-11 93.7 96.4 97.2 + 16 3 11 5 12 15 18 56 15 18 12 19-11 93.0 96.2 97.2 + 16 3 12 15 15 7 6 4 18 18 3 11-11 93.9 96.0 97.2 + 16 3 13 2 6 3 4 3 2 0 3 3-11 91.5 95.7 97.2 + 16 3 14 6 5 5 4 3 9 18 48 12-11 92.4 95.5 97.2 + 16 3 15 27 27 32 18 5 12 56 18 24-11 93.1 95.1 97.1 + 16 3 16 48 12 12 15 12 5 15 39 20-11 90.1 94.7 97.1 + 16 3 17 39 39 22 27 7 18 15 12 22-11 90.7 94.3 97.0 + 16 3 18 5 7 9 6 7 7 7 9 7-11 89.5 94.1 97.0 + 16 3 19 7 15 22 22 15 22 9 4 15-11 88.6 93.9 96.9 + 16 3 20 5 12 5 5 6 22 22 6 10-11 86.9 93.6 96.8 + 16 3 21 7 5 6 6 6 6 4 9 6-11 88.2 93.4 96.8 + 16 3 22 9 9 5 7 4 2 2 6 6-11 86.7 93.2 96.7 + 16 3 23 6 18 22 6 6 4 5 12 10-11 86.2 93.0 96.7 + 16 3 24 12 6 6 4 5 5 3 5 6-11 86.0 92.8 96.6 + 16 3 25 15 6 4 5 4 4 2 0 5-11 85.1 92.6 96.5 + 16 3 26 0 0 3 2 3 2 3 3 2-11 85.1 92.4 96.4 + 16 3 27 12 7 15 12 9 18 9 7 11-11 87.9 92.2 96.3 + 16 3 28 7 22 4 3 6 5 12 12 9-11 87.4 92.0 96.2 + 16 3 29 18 18 9 12 12 12 5 5 11-11 87.5 91.9 96.1 + 16 3 30 18 6 5 7 18 9 18 7 11-11 83.6 91.9 96.0 + 16 3 31 15 12 5 3 4 4 2 4 6-11 81.6 91.8 95.9 + 16 4 1 5 0 0 0 2 2 4 3 2-11 82.0 91.8 95.8 + 16 4 2 7 2 0 2 12 48 32 48 19-11 81.5 91.8 95.7 + 16 4 3 32 18 15 12 3 6 6 22 14-11 82.3 91.9 95.6 + 16 4 4 12 12 4 5 6 2 2 4 6-11 83.5 92.1 95.6 + 16 4 5 4 4 2 3 7 5 12 5 5-11 83.5 92.4 95.7 + 16 4 6 7 4 5 9 7 7 3 4 6-11 87.2 92.5 95.7 + 16 4 7 7 4 3 5 4 9 39 67 17-11 92.5 92.8 95.8 + 16 4 8 39 12 4 3 2 2 3 2 8-11 98.6 93.0 95.8 + 16 4 9 0 0 0 2 3 4 2 2 2-11105.9 93.1 95.9 + 16 4 10 4 7 12 6 5 3 3 9 6-11111.1 93.2 96.0 + 16 4 11 0 0 0 3 6 15 6 4 4-11117.2 93.3 96.0 + 16 4 12 12 12 5 7 18 18 27 48 18-11111.9 93.3 96.0 + 16 4 13 48 22 27 27 27 22 18 12 25-11108.8 93.4 96.0 + 16 4 14 18 15 9 32 27 39 18 18 22-11111.8 93.3 96.0 + 16 4 15 27 7 2 3 5 7 5 6 8-11113.2 93.4 96.0 + 16 4 16 2 2 7 9 7 15 22 22 11-11114.0 93.4 95.9 + 16 4 17 22 27 18 7 12 15 27 12 18-11102.9 93.4 95.8 + 16 4 18 9 4 6 5 3 0 4 3 4-11 95.4 93.3 95.7 + 16 4 19 0 2 2 2 4 2 0 2 2-11 89.9 93.2 95.6 + 16 4 20 0 5 4 5 3 2 2 3 3-11 84.0 93.1 95.5 + 16 4 21 2 6 3 4 4 5 5 4 4-11 77.5 93.1 95.3 + 16 4 22 7 5 5 6 15 22 12 27 12-11 77.5 93.0 95.2 + 16 4 23 5 9 4 6 9 6 12 39 11-11 79.6 93.0 95.1 + 16 4 24 5 5 6 6 15 27 18 4 11-11 82.8 92.9 95.0 + 16 4 25 4 5 6 6 6 5 4 0 5-11 82.9 92.7 94.9 + 16 4 26 3 3 3 5 6 4 7 12 5-11 86.3 92.6 94.9 + 16 4 27 4 7 9 6 12 15 9 9 9-11 93.8 92.5 94.8 + 16 4 28 7 4 4 4 4 2 3 2 4-11 96.3 92.4 94.7 + 16 4 29 3 4 0 2 2 2 4 3 3-11 93.8 92.3 94.6 + 16 4 30 2 5 5 5 7 7 9 15 7-11 95.4 92.3 94.5 + 16 5 1 9 7 7 9 15 18 27 22 14-11 93.6 92.3 94.4 + 16 5 2 48 67 6 9 12 18 39 39 30-11 91.3 92.4 94.2 + 16 5 3 18 18 9 6 5 6 6 9 10-11 91.5 92.5 94.1 + 16 5 4 6 4 0 4 4 4 2 3 3-11 91.6 92.6 94.0 + 16 5 5 0 5 6 7 7 9 4 7 6-11 88.7 92.7 93.9 + 16 5 6 9 6 6 12 15 22 32 15 15-11 91.2 92.7 93.8 + 16 5 7 22 4 5 7 6 7 4 15 9-11 89.7 92.8 93.7 + 16 5 8 67 94 80 39 56 67 67 94 71-11 85.6 92.8 93.6 + 16 5 9 94 22 12 18 22 15 27 27 30-11 90.2 92.8 93.5 + 16 5 10 15 22 15 9 18 9 7 9 13-11 90.5 92.8 93.4 + 16 5 11 12 6 2 2 2 5 5 7 5-11 95.8 92.9 93.3 + 16 5 12 3 4 3 4 4 0 3 4 3-11 93.9 92.9 93.3 + 16 5 13 4 3 6 5 7 6 9 7 6-11 95.4 92.9 93.2 + 16 5 14 9 5 7 7 7 4 12 18 9-11103.4 92.9 93.1 + 16 5 15 15 12 7 5 18 22 22 4 13-11110.8 92.8 93.1 + 16 5 16 9 15 12 15 18 9 9 5 12-11104.3 92.8 93.0 + 16 5 17 9 7 18 12 15 12 12 15 13-11105.6 92.7 92.9 + 16 5 18 6 12 6 9 9 5 3 4 7-11104.7 92.5 92.8 + 16 5 19 5 3 9 6 9 12 7 3 7-11101.2 92.2 92.8 + 16 5 20 9 9 5 4 4 2 3 7 5-11102.0 91.8 92.7 + 16 5 21 9 15 39 9 12 18 15 4 15-11100.2 91.4 92.6 + 16 5 22 6 9 7 12 9 4 3 0 6-11 99.8 90.9 92.5 + 16 5 23 2 4 5 6 3 0 4 2 3-11 99.8 90.4 92.3 + 16 5 24 5 4 4 9 5 2 3 3 4-11 96.7 90.0 92.2 + 16 5 25 2 4 2 4 3 2 2 0 2-11 96.1 89.5 92.1 + 16 5 26 0 2 2 2 2 3 5 4 3-11 94.2 89.1 92.1 + 16 5 27 9 9 4 7 7 7 15 15 9-11 92.8 88.6 92.0 + 16 5 28 15 9 27 9 7 18 12 9 13-11 90.1 88.4 91.9 + 16 5 29 6 5 5 6 4 5 6 15 7-11 85.3 88.4 91.9 + 16 5 30 27 12 12 9 4 7 5 9 11-11 88.7 88.4 91.9 + 16 5 31 6 4 9 6 5 9 18 22 10-11 89.0 88.6 91.9 + 16 6 1 6 4 4 3 5 5 7 5 5-11 88.4 88.9 91.8 + 16 6 2 2 4 2 3 3 2 2 3 3-11 87.7 89.1 91.8 + 16 6 3 4 2 2 2 0 2 2 3 2-11 85.7 89.3 91.8 + 16 6 4 3 2 2 2 2 3 5 5 3-11 82.4 89.5 91.7 + 16 6 5 5 7 7 22 56 39 56 39 29-11 81.5 89.8 91.7 + 16 6 6 32 56 22 27 22 7 15 6 23-11 80.8 90.1 91.6 + 16 6 7 6 5 3 9 7 7 15 15 8-11 80.8 90.3 91.6 + 16 6 8 7 7 3 7 6 6 2 2 5-11 82.6 90.5 91.5 + 16 6 9 7 3 2 2 4 3 3 2 3-11 87.8 90.6 91.4 + 16 6 10 2 4 2 3 5 5 18 9 6-11 87.5 90.8 91.3 + 16 6 11 15 5 6 5 7 7 7 18 9-11 90.9 90.9 91.2 + 16 6 12 5 6 9 6 12 15 22 7 10-11 97.1 90.9 91.1 + 16 6 13 12 22 5 6 7 4 6 3 8-11 93.9 90.9 90.9 + 16 6 14 12 6 5 6 7 12 94 27 21-11 90.4 90.8 90.8 + 16 6 15 32 7 9 15 12 9 4 3 11-11 90.1 90.6 90.7 + 16 6 16 6 5 5 7 9 7 5 5 6-11 91.0 90.5 90.5 + 16 6 17 5 6 6 7 12 9 9 3 7-11 89.4 90.3 90.4 + 16 6 18 6 9 9 9 9 5 6 6 7-11 86.3 90.1 90.3 + 16 6 19 6 6 7 3 4 5 3 0 4-11 87.9 89.9 90.2 + 16 6 20 4 4 5 2 3 3 4 4 4-11 87.1 89.7 90.1 + 16 6 21 3 3 2 3 4 3 3 2 3-11 82.9 89.4 89.9 + 16 6 22 3 4 3 5 6 18 39 18 12-11 80.9 89.2 89.8 + 16 6 23 6 15 3 3 4 18 12 22 10-11 80.0 88.9 89.6 + 16 6 24 18 22 15 6 9 9 6 15 13-11 78.2 88.6 89.5 + 16 6 25 12 7 6 3 4 4 7 12 7-11 79.6 88.2 89.3 + 16 6 26 6 5 6 5 7 15 15 22 10-11 79.2 87.9 89.2 + 16 6 27 15 9 12 4 4 4 5 7 8-11 78.0 87.7 89.1 + 16 6 28 9 6 5 5 7 5 4 2 5-11 75.5 87.6 89.0 + 16 6 29 6 4 4 3 3 4 6 3 4-11 76.0 87.5 88.9 + 16 6 30 2 3 2 3 2 7 15 12 6-11 75.4 87.4 88.9 + 16 7 1 18 7 9 7 5 3 0 2 6-11 74.4 87.4 88.8 + 16 7 2 3 4 4 3 5 4 12 22 7-11 73.3 87.4 88.7 + 16 7 3 12 7 5 5 4 9 7 12 8-11 74.8 87.4 88.7 + 16 7 4 6 6 7 5 4 2 6 4 5-11 76.3 87.3 88.6 + 16 7 5 4 5 3 2 2 2 3 3 3-11 74.9 87.2 88.5 + 16 7 6 0 2 2 3 3 4 5 12 4-11 79.7 87.2 88.5 + 16 7 7 12 12 12 12 18 32 39 32 21-11 86.1 87.1 88.4 + 16 7 8 18 9 18 22 27 22 27 9 19-11 90.0 87.1 88.3 + 16 7 9 18 9 18 9 15 15 9 6 12-11 95.3 87.0 88.2 + 16 7 10 9 7 7 12 12 6 9 7 9-11 97.6 87.0 88.1 + 16 7 11 9 12 5 7 12 9 12 12 10-11 97.8 86.9 88.0 + 16 7 12 15 32 32 22 9 6 12 18 18-11 95.5 86.7 87.9 + 16 7 13 15 7 5 6 6 6 5 7 7-11100.0 86.7 87.8 + 16 7 14 6 9 27 18 6 7 6 7 11-11 98.2 86.6 87.8 + 16 7 15 9 15 12 12 6 9 6 12 10-11105.4 86.6 87.7 + 16 7 16 12 5 5 5 15 5 6 4 7-11110.1 86.6 87.6 + 16 7 17 5 5 3 4 5 5 5 7 5-11108.6 86.6 87.6 + 16 7 18 3 3 4 3 2 2 2 5 3-11110.6 86.7 87.5 + 16 7 19 4 3 2 3 3 3 2 48 9-11104.1 86.7 87.4 + 16 7 20 48 39 22 9 9 9 12 4 19-11111.5 86.8 87.4 + 16 7 21 3 2 4 5 5 12 3 7 5-11103.3 86.9 87.3 + 16 7 22 5 5 5 6 9 12 9 6 7-11 93.3 87.0 87.3 + 16 7 23 7 15 15 5 4 2 3 6 7-11 88.9 87.0 87.2 + 16 7 24 6 3 4 5 6 22 39 27 14-11 84.8 87.1 87.2 + 16 7 25 27 22 15 15 22 18 12 9 18-11 75.9 87.2 87.2 + 16 7 26 3 5 3 2 4 4 4 5 4-11 75.9 87.3 87.1 + 16 7 27 3 2 0 0 2 2 3 7 2-11 73.8 87.4 87.0 + 16 7 28 9 18 15 6 7 12 27 18 14-11 72.5 87.4 86.9 + 16 7 29 18 22 15 15 9 9 12 6 13-11 72.6 87.5 86.9 + 16 7 30 15 5 4 4 3 3 4 4 5-11 73.1 87.6 86.8 + 16 7 31 6 2 2 4 2 4 3 0 3-11 73.7 87.7 86.7 + 16 8 1 5 2 0 0 2 3 3 5 3-11 74.1 87.8 86.6 + 16 8 2 4 5 5 9 9 22 32 48 17-11 77.1 87.9 86.6 + 16 8 3 48 27 39 48 27 39 15 15 32-11 77.0 88.0 86.5 + 16 8 4 22 18 12 12 15 27 15 6 16-11 78.5 88.1 86.4 + 16 8 5 5 22 22 27 15 12 7 18 16-11 82.1 88.2 86.3 + 16 8 6 15 6 12 18 12 12 7 18 13-11 85.5 88.3 86.2 + 16 8 7 32 6 5 5 12 15 6 12 12-11 95.3 88.3 86.0 + 16 8 8 18 7 6 6 12 22 9 3 10-11 99.0 88.4 85.9 + 16 8 9 5 12 6 18 18 12 6 18 12-11 94.9 88.5 85.8 + 16 8 10 22 15 18 18 7 12 15 15 15-11 97.6 88.6 85.7 + 16 8 11 6 3 5 6 5 9 15 15 8-11 97.2 88.7 85.6 + 16 8 12 22 18 7 9 7 6 4 4 10-11 97.3 88.9 85.5 + 16 8 13 5 5 4 3 4 5 6 3 4-11 92.9 89.0 85.4 + 16 8 14 5 2 3 4 6 2 3 2 3-11 89.4 89.1 85.3 + 16 8 15 3 2 5 3 2 4 0 4 3-11 89.8 89.3 85.2 + 16 8 16 0 2 3 3 6 4 4 18 5-11 88.7 89.3 85.1 + 16 8 17 12 15 5 4 5 2 6 12 8-11 84.9 89.4 85.0 + 16 8 18 6 15 4 4 6 4 3 6 6-11 84.4 89.3 85.0 + 16 8 19 2 0 5 5 4 5 4 3 4-11 82.7 89.2 84.9 + 16 8 20 7 5 5 2 3 0 0 2 3-11 80.0 89.0 84.9 + 16 8 21 0 0 2 4 12 22 9 12 8-11 78.4 88.8 84.8 + 16 8 22 5 4 4 3 2 3 5 4 4-11 81.8 88.6 84.8 + 16 8 23 5 7 2 9 18 15 48 39 18-11 83.1 88.4 84.7 + 16 8 24 56 12 6 18 22 7 7 22 19-11 79.7 88.3 84.7 + 16 8 25 7 5 9 12 7 12 12 18 10-11 80.3 88.1 84.7 + 16 8 26 12 6 2 3 4 7 6 6 6-11 83.6 88.0 84.7 + 16 8 27 7 9 3 6 4 3 3 0 4-11 85.6 87.9 84.7 + 16 8 28 2 2 2 4 3 2 2 2 2-11 87.1 87.8 84.6 + 16 8 29 4 0 2 5 6 6 9 15 6-11 89.5 87.8 84.6 + 16 8 30 12 9 6 6 18 32 27 27 17-11102.3 87.7 84.6 + 16 8 31 6 3 4 3 3 3 12 12 6-11 99.3 87.7 84.5 + 16 9 1 27 22 27 15 27 18 39 48 28-11 96.9 87.8 84.5 + 16 9 2 80 56 15 18 39 27 12 48 37-11 96.3 87.9 84.4 + 16 9 3 22 67 39 27 32 39 32 32 36-11100.7 88.0 84.3 + 16 9 4 32 18 27 22 22 27 32 22 25-11 99.0 88.2 84.3 + 16 9 5 15 18 18 9 5 18 39 15 17-11 95.3 88.3 84.2 + 16 9 6 15 15 15 9 12 9 22 9 13-11 93.9 88.4 84.2 + 16 9 7 15 18 5 7 18 18 5 6 12-11 94.4 88.4 84.1 + 16 9 8 15 22 15 9 9 7 9 6 12-11 95.9 88.5 84.0 + 16 9 9 7 2 2 0 4 3 3 6 3-11 92.3 88.5 84.0 + 16 9 10 4 5 5 3 0 0 2 6 3-11 94.3 88.5 83.9 + 16 9 11 3 2 3 3 4 4 4 3 3-11 87.5 88.5 83.8 + 16 9 12 7 6 3 3 6 2 3 5 4-11 87.5 88.5 83.8 + 16 9 13 6 5 4 4 3 3 3 4 4-11 87.0 88.5 83.7 + 16 9 14 5 5 5 6 9 6 15 9 8-11 86.2 88.5 83.6 + 16 9 15 12 9 6 4 3 3 3 5 6-11 85.3 88.4 83.6 + 16 9 16 0 0 0 2 3 4 6 2 2-11 84.5 88.3 83.5 + 16 9 17 5 2 0 5 3 0 2 4 3-11 81.0 88.1 83.5 + 16 9 18 5 4 6 9 9 7 4 5 6-11 83.8 87.8 83.4 + 16 9 19 5 3 9 9 9 12 5 15 8-11 83.3 87.6 83.4 + 16 9 20 32 32 22 22 6 12 12 9 18-11 85.2 87.3 83.3 + 16 9 21 27 7 7 15 4 0 4 4 9-11 86.1 87.1 83.3 + 16 9 22 7 4 6 3 3 0 0 0 3-11 85.7 86.8 83.2 + 16 9 23 0 4 5 2 3 3 2 4 3-11 86.1 86.6 83.2 + 16 9 24 0 2 3 2 4 3 7 9 4-11 85.4 86.4 83.2 + 16 9 25 27 32 4 22 12 15 32 32 22-11 85.1 86.2 83.2 + 16 9 26 18 22 15 12 18 18 22 32 20-11 87.2 86.1 83.1 + 16 9 27 48 22 27 48 32 67 15 22 35-11 85.9 85.9 83.1 + 16 9 28 32 39 15 32 27 48 67 32 37-11 84.8 85.8 83.1 + 16 9 29 22 39 56 48 27 48 32 15 36-11 83.0 85.7 83.1 + 16 9 30 27 22 18 18 9 15 48 7 21-11 80.8 85.7 83.1 + 16 10 1 15 27 9 12 7 22 32 15 17-11 81.2 85.7 83.2 + 16 10 2 18 15 12 7 18 9 32 18 16-11 82.4 85.6 83.3 + 16 10 3 9 22 18 4 7 12 18 15 13-11 87.9 85.6 83.4 + 16 10 4 22 48 15 27 27 7 18 18 23-11 93.1 85.5 83.4 + 16 10 5 18 18 15 7 7 9 6 9 11-11 99.3 85.5 83.4 + 16 10 6 7 6 4 0 2 9 7 4 5-11101.4 85.4 83.4 + 16 10 7 12 6 4 2 3 6 7 3 5-11104.0 85.3 83.3 + 16 10 8 7 18 7 7 4 4 6 5 7-11104.1 85.2 83.2 + 16 10 9 5 4 5 4 6 3 7 4 5-11104.2 85.0 83.1 + 16 10 10 18 12 9 4 4 12 15 3 10-11101.6 84.6 83.0 + 16 10 11 0 0 3 4 2 0 2 3 2-11 98.8 84.3 82.9 + 16 10 12 3 2 3 2 2 4 6 15 5-11 97.2 84.0 82.8 + 16 10 13 9 15 32 39 39 94 94 48 46-11 94.8 83.8 82.7 + 16 10 14 67 39 39 15 6 6 3 3 22-11 92.3 83.5 82.6 + 16 10 15 12 9 7 7 7 12 7 15 10-11 84.4 83.2 82.5 + 16 10 16 12 5 12 15 15 9 48 22 17-11 80.4 83.0 82.4 + 16 10 17 18 18 22 27 9 22 18 27 20-11 75.6 82.8 82.3 + 16 10 18 12 15 15 7 5 5 4 9 9-11 76.8 82.7 82.3 + 16 10 19 12 7 4 5 4 5 5 3 6-11 75.8 82.5 82.3 + 16 10 20 5 0 2 0 2 0 5 2 2-11 74.0 82.4 82.3 + 16 10 21 0 3 2 0 0 0 0 2 1-11 77.1 82.2 82.3 + 16 10 22 4 0 3 5 4 6 9 6 5-11 76.7 82.1 82.3 + 16 10 23 2 7 12 5 7 7 12 15 8-11 76.0 82.1 82.3 + 16 10 24 22 22 12 7 22 15 7 22 16-11 74.5 82.0 82.3 + 16 10 25 32 32 18 48 94 94 56 80 57-11 76.9 81.9 82.3 + 16 10 26 39 48 22 67 27 67 39 39 44-11 77.1 81.9 82.3 + 16 10 27 32 39 22 15 18 39 27 18 26-11 77.8 81.8 82.3 + 16 10 28 12 12 18 12 12 18 15 32 16-11 78.2 81.7 82.2 + 16 10 29 48 56 39 18 22 9 12 9 27-11 78.0 81.6 82.2 + 16 10 30 27 18 15 9 22 18 15 7 16-11 75.1 81.4 82.1 + 16 10 31 12 15 9 9 5 7 6 3 8-11 75.5 81.2 82.1 + 16 11 1 7 7 7 12 15 7 7 22 11-11 75.4 81.0 82.0 + 16 11 2 32 7 4 9 22 12 6 22 14-11 74.8 80.8 82.0 + 16 11 3 15 15 27 22 12 12 7 22 17-11 74.4 80.6 82.0 + 16 11 4 12 6 4 3 0 0 4 2 4-11 75.4 80.4 81.9 + 16 11 5 3 2 3 3 2 0 2 0 2-11 75.3 80.2 81.9 + 16 11 6 4 2 5 4 7 2 4 6 4-11 74.9 80.0 81.8 + 16 11 7 7 3 5 3 3 3 0 0 3-11 75.1 79.8 81.8 + 16 11 8 0 0 2 3 4 2 0 4 2-11 75.4 79.6 81.7 + 16 11 9 0 0 7 6 7 4 12 12 6-11 78.3 79.5 81.7 + 16 11 10 6 6 7 9 18 39 15 15 14-11 78.6 79.4 81.6 + 16 11 11 32 7 6 7 6 9 6 18 11-11 76.8 79.3 81.5 + 16 11 12 12 22 9 27 22 18 15 18 18-11 76.8 79.2 81.5 + 16 11 13 22 22 18 18 15 15 39 22 21-11 76.2 79.0 81.4 + 16 11 14 5 9 9 9 12 15 6 15 10-11 75.6 78.7 81.3 + 16 11 15 18 9 6 6 9 5 2 2 7-11 74.9 78.3 81.2 + 16 11 16 3 4 3 2 2 4 6 6 4-11 79.1 77.9 81.1 + 16 11 17 4 2 2 2 0 2 5 5 3-11 76.8 77.5 81.0 + 16 11 18 7 0 0 0 2 5 0 2 2-11 75.8 77.1 81.0 + 16 11 19 0 0 0 0 2 3 3 2 1-11 74.9 76.7 80.9 + 16 11 20 0 0 2 3 4 3 2 4 2-11 74.6 76.3 80.8 + 16 11 21 3 6 3 3 5 4 9 9 5-11 73.1 76.0 80.7 + 16 11 22 4 3 4 7 9 15 15 32 11-11 75.4 75.7 80.7 + 16 11 23 27 15 12 6 5 6 12 4 11-11 75.7 75.4 80.6 + 16 11 24 22 9 15 15 39 18 22 22 20-11 77.0 75.1 80.6 + 16 11 25 32 56 48 12 32 22 32 7 30-11 78.8 74.9 80.6 + 16 11 26 12 15 9 9 7 15 12 7 11-11 79.1 74.8 80.5 + 16 11 27 9 12 9 7 7 3 7 9 8-11 80.4 74.7 80.5 + 16 11 28 5 6 6 5 7 12 7 9 7-11 82.9 74.7 80.5 + 16 11 29 7 5 2 3 4 3 6 7 5-11 83.1 74.6 80.5 + 16 11 30 4 3 5 2 2 3 2 2 3-11 81.3 74.5 80.4 + 16 12 1 3 6 4 2 2 0 0 0 2-11 82.1 74.4 80.4 + 16 12 2 2 4 3 3 3 5 5 3 4-11 82.0 74.4 80.4 + 16 12 3 2 2 3 0 0 2 4 0 2-11 82.2 74.3 80.4 + 16 12 4 0 3 0 2 0 0 0 2 1-11 80.0 74.3 80.3 + 16 12 5 9 3 0 0 3 4 4 5 4-11 80.3 74.3 80.3 + 16 12 6 2 2 4 7 18 7 5 9 7-11 77.4 74.2 80.3 + 16 12 7 0 6 15 7 6 12 15 12 9-11 74.9 74.2 80.3 + 16 12 8 18 27 12 12 12 27 32 27 21-11 72.6 74.2 80.3 + 16 12 9 27 7 18 22 15 22 39 39 24-11 70.7 74.2 80.3 + 16 12 10 27 18 9 18 12 12 15 12 15-11 70.0 74.2 80.3 + 16 12 11 18 32 7 15 9 12 15 6 14-11 69.2 74.3 80.2 + 16 12 12 7 9 5 2 2 6 3 5 5-11 68.6 74.4 80.2 + 16 12 13 5 3 2 4 4 3 2 6 4-11 69.0 74.5 80.1 + 16 12 14 5 3 3 5 3 2 5 3 4-11 70.1 74.6 80.1 + 16 12 15 0 0 2 3 2 2 4 3 2-11 70.2 74.6 80.0 + 16 12 16 3 2 0 0 0 0 2 4 1-11 70.3 74.7 80.0 + 16 12 17 0 0 2 2 4 6 9 18 5-11 69.8 74.8 80.0 + 16 12 18 15 12 9 5 6 6 5 4 8-11 70.0 74.8 79.9 + 16 12 19 4 6 5 4 3 5 7 3 5-11 70.5 74.8 79.9 + 16 12 20 4 4 4 5 4 7 3 12 5-11 72.5 74.8 79.9 + 16 12 21 7 7 5 15 18 80 27 27 23-11 72.6 74.7 79.9 + 16 12 22 39 32 18 15 15 12 27 15 22-11 72.4 74.7 79.9 + 16 12 23 15 27 12 18 15 18 27 22 19-11 71.3 74.6 79.8 + 16 12 24 15 12 12 7 15 18 9 7 12-11 70.7 74.6 79.8 + 16 12 25 18 18 7 22 27 27 27 12 20-11 70.1 74.6 79.8 + 16 12 26 39 18 18 15 22 22 12 18 21-11 71.4 74.5 79.8 + 16 12 27 22 18 7 7 9 5 7 12 11-11 71.3 74.4 79.8 + 16 12 28 6 7 2 3 3 7 5 5 5-11 70.9 74.4 79.8 + 16 12 29 7 4 2 4 5 7 2 2 4-11 70.9 74.3 79.8 + 16 12 30 0 5 2 2 3 3 2 3 3-11 71.2 74.2 79.8 + 16 12 31 3 9 7 12 18 18 18 12 12-11 71.1 74.2 79.8 + 17 1 1 18 22 12 9 9 15 7 6 12-11 70.1 74.2 79.8 + 17 1 2 6 9 7 6 5 7 2 3 6-11 70.6 74.2 79.8 + 17 1 3 2 6 7 22 12 15 12 12 11-11 71.0 74.1 79.8 + 17 1 4 4 6 5 7 9 9 22 18 10-11 70.0 74.1 79.8 + 17 1 5 18 18 7 7 15 22 22 27 17-11 70.9 74.0 79.8 + 17 1 6 22 22 12 9 12 12 12 15 15-11 69.6 73.9 79.8 + 17 1 7 22 15 18 12 32 27 18 15 20-11 69.7 73.8 79.8 + 17 1 8 15 12 9 18 15 12 22 27 16-11 69.2 73.7 79.8 + 17 1 9 18 9 6 7 18 18 5 9 11-11 68.9 73.6 79.8 + 17 1 10 7 7 7 3 4 22 15 12 10-11 70.3 73.6 79.8 + 17 1 11 12 7 6 2 4 9 9 7 7-11 72.0 73.5 79.8 + 17 1 12 7 9 0 2 0 0 5 6 4-11 73.0 73.5 79.8 + 17 1 13 4 4 0 2 3 6 5 4 4-11 72.4 73.5 79.8 + 17 1 14 4 6 4 2 3 4 3 4 4-11 74.1 73.5 79.7 + 17 1 15 7 4 6 3 4 3 7 2 5-11 75.0 73.5 79.7 + 17 1 16 3 2 2 0 0 0 3 2 2-11 75.8 73.5 79.6 + 17 1 17 3 0 2 2 4 7 2 2 3-11 76.1 73.6 79.5 + 17 1 18 2 12 12 12 18 18 22 18 14-11 76.1 73.7 79.4 + 17 1 19 18 12 12 12 6 7 4 6 10-11 77.0 73.8 79.3 + 17 1 20 15 18 7 5 9 4 9 12 10-11 80.6 73.9 79.3 + 17 1 21 18 5 7 6 5 6 18 18 10-11 83.4 74.0 79.2 + 17 1 22 18 12 9 7 9 6 6 6 9-11 84.0 74.1 79.2 + 17 1 23 0 0 3 3 3 7 7 7 4-11 81.5 74.2 79.1 + 17 1 24 7 3 2 2 0 0 3 3 3-11 79.7 74.2 79.1 + 17 1 25 7 15 4 6 2 0 0 3 5-11 82.5 74.2 79.1 + 17 1 26 0 0 7 7 15 22 22 12 11-11 80.6 74.2 79.1 + 17 1 27 32 32 27 22 22 18 5 6 21-11 77.9 74.2 79.1 + 17 1 28 15 15 6 4 3 4 7 18 9-11 76.1 74.2 79.1 + 17 1 29 12 9 6 5 7 6 5 2 7-11 74.4 74.2 79.1 + 17 1 30 2 4 4 4 9 7 5 12 6-11 74.7 74.1 79.1 + 17 1 31 12 15 18 18 18 32 27 39 22-11 73.8 74.1 79.1 + 17 2 1 32 18 18 15 27 48 18 48 28-11 73.9 74.1 79.1 + 17 2 2 18 22 22 18 12 22 22 32 21-11 73.1 74.0 79.1 + 17 2 3 18 22 32 9 15 18 15 15 18-11 73.0 74.0 79.1 + 17 2 4 9 18 12 7 7 6 9 9 10-11 71.9 74.0 79.1 + 17 2 5 15 22 15 7 12 18 22 7 15-11 70.6 74.0 79.0 + 17 2 6 15 15 6 6 12 15 9 22 13-11 70.5 74.0 79.0 + 17 2 7 12 9 4 5 12 6 6 5 7-11 70.1 74.0 78.9 + 17 2 8 4 0 3 4 6 6 4 5 4-11 71.1 74.0 78.8 + 17 2 9 7 5 4 6 4 7 9 9 6-11 71.5 74.0 78.8 + 17 2 10 9 4 7 5 7 9 5 9 7-11 72.1 74.0 78.7 + 17 2 11 12 4 3 3 2 0 3 2 4-11 73.8 74.0 78.6 + 17 2 12 3 0 2 2 2 5 6 2 3-11 74.3 74.0 78.6 + 17 2 13 9 5 2 3 2 7 6 5 5-11 73.0 74.1 78.5 + 17 2 14 0 0 0 0 0 2 3 3 1-11 72.7 74.1 78.5 + 17 2 15 0 0 3 3 3 3 5 3 3-11 73.0 74.3 78.5 + 17 2 16 3 7 9 3 9 18 9 7 8-11 72.2 74.4 78.5 + 17 2 17 6 22 32 27 9 18 12 27 19-11 72.8 74.6 78.4 + 17 2 18 32 32 9 6 5 7 15 18 16-11 74.9 74.8 78.5 + 17 2 19 15 18 9 4 5 12 15 2 10-11 76.4 75.1 78.5 + 17 2 20 2 18 6 6 7 12 15 5 9-11 78.9 75.5 78.5 + 17 2 21 7 7 3 2 2 3 0 7 4-11 80.7 76.0 78.5 + 17 2 22 22 15 9 9 4 6 6 3 9-11 81.4 76.4 78.6 + 17 2 23 6 9 7 6 9 18 9 15 10-11 81.6 76.7 78.6 + 17 2 24 39 18 15 27 18 12 6 12 18-11 80.5 76.8 78.6 + 17 2 25 12 12 6 5 3 2 2 6 6-11 78.5 76.8 78.6 + 17 2 26 3 4 0 2 3 0 0 0 2-11 77.5 76.8 78.5 + 17 2 27 3 6 4 5 5 4 15 12 7-11 80.6 76.7 78.5 + 17 2 28 12 9 6 5 5 3 9 12 8-11 80.1 76.7 78.5 + 17 3 1 15 15 18 39 39 32 56 67 35-11 79.3 76.7 78.5 + 17 3 2 56 32 27 39 39 18 32 9 32-11 77.8 76.6 78.5 + 17 3 3 18 27 27 22 15 27 7 4 18-11 76.7 76.5 78.5 + 17 3 4 32 27 15 15 12 15 12 32 20-11 73.9 76.3 78.5 + 17 3 5 12 12 15 15 12 15 32 27 18-11 71.6 76.2 78.5 + 17 3 6 27 15 5 22 22 18 48 27 23-11 71.3 76.2 78.8 + 17 3 7 12 18 18 12 9 18 15 12 14-11 70.6 76.1 78.8 + 17 3 8 15 5 3 7 12 6 22 22 12-11 69.6 76.0 79.0 + 17 3 9 22 15 7 18 12 7 15 9 13-11 70.3 76.1 79.1 + 17 3 10 7 15 18 18 9 4 2 6 10-11 70.0 76.2 79.1 + 17 3 11 3 2 5 3 0 3 5 22 5-11 69.1 76.3 79.2 + 17 3 12 18 22 5 3 7 4 3 3 8-11 69.2 76.4 79.2 + 17 3 13 0 5 4 3 3 2 0 0 2-11 69.5 76.5 79.2 + 17 3 14 2 5 3 2 6 6 4 4 4-11 68.8 76.6 79.1 + 17 3 15 3 5 6 6 4 3 5 15 6-11 69.1 76.7 79.1 + 17 3 16 12 7 0 2 4 2 4 5 5-11 69.7 76.8 79.1 + 17 3 17 0 5 4 2 0 2 2 5 3-11 69.9 76.9 79.0 + 17 3 18 4 0 2 0 0 0 3 4 2-11 69.6 77.1 79.0 + 17 3 19 0 0 3 3 0 2 2 3 2-11 70.5 77.2 79.0 + 17 3 20 2 0 2 2 0 3 2 0 1-11 72.1 77.3 79.0 + 17 3 21 4 18 27 9 15 39 56 27 24-11 70.5 77.4 78.9 + 17 3 22 27 22 12 18 22 27 32 32 24-11 72.0 77.4 78.9 + 17 3 23 27 18 7 6 4 7 3 3 9-11 71.5 77.5 78.9 + 17 3 24 7 9 5 3 6 6 3 2 5-11 71.9 77.5 78.8 + 17 3 25 0 5 2 3 3 4 2 4 3-11 73.7 77.5 78.8 + 17 3 26 6 0 2 3 4 4 0 5 3-11 76.8 77.6 78.8 + 17 3 27 9 48 39 67 32 56 94 27 47-11 82.5 77.6 78.8 + 17 3 28 56 56 18 22 18 15 18 15 27-11 83.4 77.6 78.9 + 17 3 29 22 18 27 18 15 32 7 18 20-11 83.1 77.6 78.9 + 17 3 30 18 27 12 6 15 18 27 32 19-11 85.7 77.5 78.9 + 17 3 31 39 39 32 22 27 27 15 18 27-11 90.4 77.5 78.9 + 17 4 1 12 12 15 15 12 32 15 9 15-11100.9 77.4 78.9 + 17 4 2 7 9 7 5 9 15 4 2 7-11111.9 77.3 78.9 + 17 4 3 2 3 3 5 7 5 3 3 4-11107.9 77.2 79.0 + 17 4 4 12 22 39 39 15 5 3 15 19-11 93.9 77.1 79.0 + 17 4 5 6 4 9 5 5 7 9 18 8-11 84.7 77.0 78.9 + 17 4 6 5 2 4 5 9 15 6 5 6-11 75.8 76.9 78.9 + 17 4 7 15 7 7 6 3 3 12 18 9-11 74.1 76.8 78.8 + 17 4 8 15 15 22 12 7 7 12 32 15-11 73.3 76.8 78.8 + 17 4 9 27 39 15 12 9 9 3 4 15-11 74.7 76.7 78.7 + 17 4 10 9 2 2 2 7 5 4 5 5-11 73.9 76.6 78.6 + 17 4 11 4 5 12 15 9 7 22 9 10-11 74.9 76.6 78.5 + 17 4 12 15 7 5 4 2 2 2 0 5-11 71.8 76.5 78.5 + 17 4 13 2 4 2 0 3 5 9 5 4-11 73.9 76.6 78.4 + 17 4 14 15 18 12 7 12 7 12 7 11-11 73.3 76.6 78.3 + 17 4 15 18 7 6 2 3 3 5 2 6-11 73.5 76.7 78.2 + 17 4 16 3 3 5 4 2 2 4 4 3-11 75.0 76.9 78.2 + 17 4 17 2 2 5 3 5 3 3 4 3-11 75.8 77.0 78.2 + 17 4 18 9 2 2 3 4 5 6 15 6-11 86.4 77.2 78.2 + 17 4 19 15 32 18 5 3 7 15 15 14-11 81.6 77.3 78.1 + 17 4 20 39 67 27 39 18 12 15 9 28-11 81.4 77.3 78.1 + 17 4 21 2 5 4 2 6 32 48 39 17-11 83.1 77.4 78.1 + 17 4 22 48 67 48 48 48 39 22 56 47-11 84.5 77.5 78.1 + 17 4 23 27 27 56 32 48 39 27 32 36-11 83.4 77.7 78.1 + 17 4 24 18 27 18 22 7 18 22 18 19-11 81.1 77.8 78.1 + 17 4 25 12 12 9 7 15 7 9 7 10-11 82.3 77.9 78.1 + 17 4 26 12 5 9 5 6 9 9 9 8-11 80.6 78.1 78.2 + 17 4 27 9 9 9 3 3 3 7 5 6-11 79.3 78.2 78.1 + 17 4 28 4 4 6 3 5 4 5 9 5-11 79.1 78.3 78.1 + 17 4 29 6 4 6 5 4 4 7 7 5-11 78.2 78.3 78.1 + 17 4 30 5 3 3 5 4 6 7 6 5-11 78.6 78.4 78.1 + 17 5 1 9 7 0 2 2 3 5 7 4-11 76.4 78.5 78.1 + 17 5 2 2 7 3 5 2 3 2 6 4-11 78.4 78.5 78.1 + 17 5 3 3 3 2 4 5 4 2 0 3-11 76.2 78.6 78.1 + 17 5 4 0 5 6 3 3 2 5 18 5-11 75.4 78.7 78.1 + 17 5 5 15 6 0 2 4 2 2 2 4-11 74.8 78.7 78.1 + 17 5 6 3 6 4 4 4 3 5 4 4-11 74.1 78.7 78.1 + 17 5 7 6 12 12 5 3 5 15 7 8-11 73.0 78.7 78.1 + 17 5 8 9 3 7 5 3 4 6 4 5-11 71.8 78.6 78.0 + 17 5 9 4 5 4 4 7 7 4 5 5-11 70.2 78.5 78.0 + 17 5 10 6 4 0 0 12 4 4 12 5-11 69.9 78.4 78.0 + 17 5 11 5 12 6 3 4 4 4 6 6-11 70.5 78.2 78.0 + 17 5 12 6 4 9 9 12 4 5 5 7-11 70.4 77.9 77.9 + 17 5 13 2 5 3 4 3 3 4 5 4-11 71.9 77.5 77.9 + 17 5 14 7 6 5 15 12 7 6 9 8-11 72.7 77.1 77.9 + 17 5 15 2 6 9 22 7 12 22 12 12-11 72.2 76.9 77.9 + 17 5 16 12 9 6 6 15 5 4 5 8-11 73.5 76.8 77.9 + 17 5 17 9 6 7 7 5 5 6 7 7-11 73.1 76.8 77.8 + 17 5 18 22 15 15 5 2 4 5 6 9-11 73.9 76.8 77.8 + 17 5 19 9 12 7 4 9 22 22 15 13-11 74.0 76.8 77.8 + 17 5 20 22 22 27 22 22 32 18 12 22-11 74.2 76.8 77.8 + 17 5 21 9 12 7 6 6 5 9 6 8-11 75.3 76.8 77.8 + 17 5 22 6 7 6 7 9 9 15 12 9-11 76.3 76.8 77.8 + 17 5 23 5 15 4 4 6 5 12 9 8-11 77.9 76.8 77.8 + 17 5 24 5 4 4 3 3 2 2 2 3-11 79.9 76.8 77.8 + 17 5 25 0 2 0 3 4 4 2 4 2-11 78.1 76.8 77.8 + 17 5 26 4 2 2 3 2 2 3 0 2-11 82.4 76.8 77.8 + 17 5 27 3 2 0 0 4 18 12 67 13-11 84.1 76.9 77.7 + 17 5 28 80132 80 48 22 6 4 3 47-11 81.0 77.0 77.7 + 17 5 29 2 2 3 6 27 18 9 3 9-11 77.9 77.0 77.7 + 17 5 30 7 18 4 3 2 3 2 3 5-11 75.7 77.2 77.7 + 17 5 31 0 5 2 2 5 4 3 6 3-11 76.2 77.4 77.6 + 17 6 1 2 3 3 2 5 12 9 12 6-11 77.9 77.5 77.6 + 17 6 2 6 5 3 4 4 3 4 4 4-11 80.4 77.6 77.6 + 17 6 3 2 2 6 7 18 22 6 4 8-11 80.2 77.8 77.5 + 17 6 4 3 3 2 2 2 0 2 2 2-11 79.9 78.0 77.5 + 17 6 5 3 4 2 4 12 5 4 5 5-11 81.8 78.1 77.5 + 17 6 6 7 7 4 3 4 3 2 3 4-11 77.6 78.2 77.4 + 17 6 7 3 6 6 3 4 4 2 5 4-11 77.8 78.3 77.4 + 17 6 8 4 3 2 2 5 3 2 4 3-11 76.2 78.3 77.4 + 17 6 9 9 4 0 2 3 3 3 2 3-11 76.0 78.3 77.3 + 17 6 10 5 4 2 3 2 2 3 3 3-11 77.0 78.2 77.3 + 17 6 11 2 7 9 5 15 48 22 12 15-11 76.6 78.2 77.3 + 17 6 12 5 5 4 3 9 7 9 9 6-11 77.5 78.1 77.3 + 17 6 13 12 6 4 9 5 7 4 2 6-11 77.2 78.1 77.3 + 17 6 14 0 3 5 9 7 7 4 3 5-11 76.4 78.0 77.3 + 17 6 15 6 4 2 4 3 2 4 2 3-11 79.9 78.0 77.3 + 17 6 16 4 7 27 22 39 22 18 48 23-11 75.8 77.9 77.3 + 17 6 17 22 22 5 7 7 7 27 18 14-11 77.2 77.9 77.3 + 17 6 18 18 15 7 7 9 6 9 7 10-11 77.3 77.9 77.3 + 17 6 19 5 7 6 6 6 2 2 2 5-11 76.0 77.9 77.3 + 17 6 20 0 3 4 2 2 4 0 0 2-11 76.9 78.0 77.3 + 17 6 21 0 2 2 2 4 4 6 6 3-11 76.2 78.0 77.3 + 17 6 22 9 4 3 2 2 2 9 4 4-11 76.1 78.1 77.3 + 17 6 23 4 2 3 4 3 3 7 9 4-11 76.1 78.1 77.3 + 17 6 24 5 5 6 12 9 7 12 12 9-11 76.6 78.2 77.3 + 17 6 25 7 7 18 9 9 7 6 7 9-11 76.2 78.2 77.3 + 17 6 26 9 6 3 7 6 6 7 5 6-11 76.2 78.3 77.4 + 17 6 27 6 5 3 4 5 4 3 3 4-11 76.6 78.3 77.3 + 17 6 28 5 6 4 5 3 2 0 2 3-11 74.5 78.3 77.3 + 17 6 29 2 6 7 6 3 3 3 3 4-11 74.2 78.3 77.3 + 17 6 30 0 2 3 3 4 3 3 6 3-11 73.9 78.3 77.3 + 17 7 1 6 18 12 6 12 15 18 7 12-11 73.1 78.3 77.3 + 17 7 2 12 12 32 32 12 6 15 18 17-11 73.6 78.2 77.3 + 17 7 3 6 7 5 5 3 4 3 6 5-11 74.1 78.1 77.3 + 17 7 4 4 5 4 2 2 2 4 6 4-11 74.2 78.0 77.3 + 17 7 5 2 2 0 2 2 0 2 3 2-11 75.5 78.0 77.3 + 17 7 6 3 3 5 4 6 6 5 15 6-11 78.5 77.9 77.3 + 17 7 7 7 5 2 2 3 4 4 5 4-11 82.2 77.8 77.3 + 17 7 8 4 2 2 3 2 2 3 2 3-11 89.5 77.8 77.3 + 17 7 9 48 15 7 56 7 15 27 18 24-11 94.0 77.8 77.3 + 17 7 10 18 22 6 4 3 4 3 6 8-11 98.2 78.0 77.3 + 17 7 11 6 9 9 5 6 7 4 5 6-11 94.1 78.2 77.2 + 17 7 12 4 3 3 3 4 5 3 3 4-11 93.2 78.3 77.2 + 17 7 13 3 3 2 2 5 3 3 4 3-11 95.3 78.4 77.2 + 17 7 14 2 2 2 2 3 3 2 2 2-11 97.0 78.5 77.2 + 17 7 15 3 4 3 2 2 3 3 4 3-11 94.6 78.5 77.2 + 17 7 16 7 4 39 56 67 56 80 39 44-11 89.3 78.5 77.2 + 17 7 17 15 32 27 27 32 67 6 6 27-11 88.4 78.6 77.2 + 17 7 18 9 15 6 4 4 3 2 5 6-11 80.8 78.6 77.2 + 17 7 19 2 3 2 3 2 4 5 3 3-11 75.5 78.7 77.1 + 17 7 20 3 3 3 3 5 7 15 12 6-11 72.5 78.8 77.1 + 17 7 21 22 18 9 5 9 18 5 15 13-11 71.6 78.9 77.1 + 17 7 22 15 9 32 32 6 9 9 9 15-11 71.8 79.1 77.1 + 17 7 23 12 7 12 12 12 9 9 27 13-11 72.8 79.4 77.0 + 17 7 24 7 12 15 6 9 9 6 18 10-11 72.3 79.7 77.0 + 17 7 25 9 5 7 9 12 7 9 15 9-11 72.0 80.2 76.9 + 17 7 26 22 9 27 5 7 5 5 0 10-11 70.7 81.5 76.9 + 17 7 27 2 4 4 3 5 12 3 9 5-11 70.5 82.1 76.9 + 17 7 28 5 4 3 5 7 12 12 6 7-11 71.6 82.8 76.8 + 17 7 29 2 4 5 4 3 4 2 3 3-11 72.1 83.5 76.8 + 17 7 30 4 4 3 3 2 3 4 0 3-11 71.7 84.0 76.8 + 17 7 31 0 4 2 3 4 2 2 3 3-11 74.4 84.4 76.7 + 17 8 1 3 3 5 6 9 4 2 3 4-11 75.7 84.7 76.7 + 17 8 2 4 3 2 4 6 6 3 4 4-11 76.6 84.8 76.7 + 17 8 3 2 3 2 4 6 22 22 22 10-11 77.3 84.8 76.7 + 17 8 4 9 18 22 32 32 32 18 12 22-11 76.3 84.8 76.7 + 17 8 5 12 22 12 7 12 22 18 15 15-11 76.3 84.8 76.7 + 17 8 6 18 7 9 32 9 5 12 7 12-11 75.6 84.7 76.6 + 17 8 7 3 6 6 7 6 3 2 3 5-11 74.8 84.7 76.7 + 17 8 8 2 3 3 4 4 6 7 3 4-11 73.0 84.7 76.7 + 17 8 9 0 2 4 4 5 4 5 4 4-11 73.4 84.6 76.7 + 17 8 10 0 4 5 5 7 4 2 6 4-11 73.0 84.6 76.7 + 17 8 11 6 6 5 5 5 6 15 5 7-11 71.7 84.6 76.7 + 17 8 12 12 18 7 4 5 3 12 12 9-11 72.2 84.6 76.7 + 17 8 13 9 7 6 5 7 5 6 7 7-11 70.0 84.7 76.7 + 17 8 14 7 4 2 4 5 4 4 4 4-11 74.9 84.8 76.7 + 17 8 15 3 4 2 2 0 2 2 4 2-11 76.1 84.9 76.7 + 17 8 16 5 3 4 5 5 5 7 7 5-11 79.2 85.1 76.7 + 17 8 17 12 7 39 39 39 15 22 22 24-11 78.5 85.2 76.7 + 17 8 18 32 15 6 15 22 15 39 12 20-11 82.0 85.2 76.7 + 17 8 19 32 18 39 32 27 39 15 32 29-11 88.9 85.2 76.7 + 17 8 20 32 48 15 9 9 18 15 15 20-11 88.0 85.1 76.7 + 17 8 21 9 9 15 12 6 5 7 12 9-11 89.1 85.0 76.7 + 17 8 22 39 32 15 6 12 9 7 18 17-11 92.3 84.9 76.6 + 17 8 23 15 22 15 9 32 39 39 12 23-11 87.0 84.8 76.6 + 17 8 24 15 22 15 6 9 6 2 2 10-11 80.5 84.7 76.5 + 17 8 25 0 3 5 5 6 4 3 6 4-11 82.5 84.6 76.5 + 17 8 26 2 2 4 2 3 5 4 3 3-11 79.2 84.5 76.5 + 17 8 27 9 4 2 6 5 12 15 15 9-11 79.8 84.5 76.4 + 17 8 28 3 3 3 3 2 3 0 3 3-11 83.2 84.4 76.4 + 17 8 29 4 5 5 4 4 9 27 9 8-11 85.9 84.5 76.4 + 17 8 30 7 7 4 2 0 2 3 0 3-11 88.6 84.5 76.3 + 17 8 31 6 15 56 56 48 27 22 12 30-11 93.6 84.4 76.3 + 17 9 1 18 18 7 27 22 7 7 22 16-11 95.1 84.4 76.3 + 17 9 2 22 39 39 15 6 12 12 15 20-11101.7 84.4 76.2 + 17 9 3 9 9 3 6 12 7 3 7 7-11122.2 84.3 76.2 + 17 9 4 22 18 6 7 6 12 22 39 17-11185.5 84.3 76.2 + 17 9 5 27 15 9 6 7 9 12 5 11-11122.5 84.3 76.2 + 17 9 6 5 5 5 12 15 6 2 18 9-11134.9 84.3 76.2 + 17 9 7 12 22 22 22 12 7 12179 36-11130.4 84.3 76.2 + 17 9 8207 39 32 48236154 94 39106-11118.5 84.3 76.2 + 17 9 9 9 6 2 2 3 2 0 0 3-11108.7 84.3 76.2 + 17 9 10 0 0 0 0 2 12 7 15 5-11101.6 84.3 76.1 + 17 9 11 18 12 9 7 12 7 12 12 11-11 80.9 84.3 76.1 + 17 9 12 7 6 9 7 12 9 27 56 17-11 76.4 84.3 76.1 + 17 9 13 56 12 22 9 6 5 6 0 15-11 76.0 84.3 76.1 + 17 9 14 7 7 4 12 27 56 27 32 22-11 75.1 84.3 76.1 + 17 9 15 67 22 32 15 27 18 56 39 35-11 73.6 84.3 76.1 + 17 9 16 48 56 18 18 27 27 15 15 28-11 72.9 84.3 76.1 + 17 9 17 15 18 7 9 22 27 9 5 14-11 72.9 84.3 76.1 + 17 9 18 32 22 27 27 12 12 12 18 20-11 72.9 84.3 76.1 + 17 9 19 9 6 4 6 5 7 12 9 7-11 71.3 84.4 76.1 + 17 9 20 15 18 7 7 7 4 7 3 9-11 74.5 84.4 76.1 + 17 9 21 3 5 9 5 6 2 5 6 5-11 73.6 84.4 76.1 + 17 9 22 5 4 4 2 4 4 9 9 5-11 78.1 84.4 76.1 + 17 9 23 3 5 4 3 4 3 9 4 4-11 81.7 84.4 76.1 + 17 9 24 4 6 3 3 4 6 9 12 6-11 87.4 84.4 76.1 + 17 9 25 9 9 4 3 2 2 2 2 4-11 90.4 84.3 76.0 + 17 9 26 2 3 5 4 2 0 2 7 3-11 91.1 84.2 76.0 + 17 9 27 15 12 39 27 22 22 67 94 37-11 91.3 84.1 75.9 + 17 9 28 56 94111 39 22 27 22 39 51-11 91.2 83.9 75.9 + 17 9 29 15 9 9 12 18 6 7 12 11-11 90.0 83.6 75.9 + 17 9 30 7 12 18 7 18 27 9 15 14-11 89.6 83.3 75.8 + 17 10 1 18 6 12 7 6 18 6 15 11-11 85.9 83.1 75.7 + 17 10 2 5 18 5 6 5 2 2 0 5-11 86.1 82.7 75.6 + 17 10 3 9 15 12 4 0 2 2 4 6-11 86.5 82.5 75.5 + 17 10 4 7 9 2 2 2 2 6 7 5-11 86.8 82.4 75.4 + 17 10 5 15 3 2 0 0 4 4 18 6-11 84.7 82.3 75.4 + 17 10 6 12 12 5 5 7 6 5 9 8-11 84.0 82.2 75.3 + 17 10 7 5 2 2 2 3 3 6 4 3-11 79.5 82.1 75.3 + 17 10 8 5 6 2 0 2 2 2 3 3-11 76.5 82.0 75.3 + 17 10 9 7 0 0 2 0 0 0 2 1-11 72.1 81.8 75.3 + 17 10 10 0 0 0 2 2 2 2 7 2-11 70.7 81.6 75.3 + 17 10 11 18 27 39 22 27 39 27 22 28-11 69.3 81.4 75.3 + 17 10 12 48 18 27 32 32 18 15 22 27-11 69.9 81.1 75.3 + 17 10 13 12 32 7 18 67 39 67 56 37-11 69.4 80.7 75.2 + 17 10 14 48 32 39 48 22 27 15 12 30-11 68.6 80.1 75.2 + 17 10 15 32 56 12 27 32 22 15 3 25-11 69.9 78.7 75.2 + 17 10 16 7 15 6 6 5 4 12 9 8-11 70.4 78.0 75.2 + 17 10 17 5 4 5 5 6 4 5 4 5-11 69.8 77.3 75.2 + 17 10 18 4 6 3 3 4 0 4 9 4-11 72.7 76.6 75.2 + 17 10 19 15 9 9 7 9 22 12 12 12-11 72.8 76.0 75.1 + 17 10 20 22 7 6 5 6 2 5 6 7-11 75.1 75.5 75.1 + 17 10 21 5 6 6 6 9 9 9 15 8-11 75.7 75.1 75.1 + 17 10 22 15 6 2 3 4 3 5 6 6-11 76.5 74.9 75.1 + 17 10 23 9 3 3 6 4 3 2 4 4-11 77.2 74.9 75.0 + 17 10 24 6 3 7 12 32 39 9 39 18-11 76.7 74.7 75.0 + 17 10 25 22 22 39 18 9 9 15 18 19-11 77.9 74.6 75.0 + 17 10 26 18 9 22 12 22 32 15 5 17-11 76.4 74.5 75.0 + 17 10 27 7 5 4 4 2 0 5 5 4-11 75.0 74.5 74.9 + 17 10 28 5 6 5 7 3 5 4 3 5-11 74.4 74.4 74.9 + 17 10 29 3 6 0 2 3 2 3 2 3-11 74.3 74.3 74.9 + 17 10 30 3 4 0 2 0 2 0 3 2-11 74.5 74.3 74.9 + 17 10 31 5 0 0 2 6 0 0 0 2-11 74.2 74.2 74.9 + 17 11 1 5 0 0 3 4 0 4 3 2-11 71.5 74.2 74.8 + 17 11 2 12 7 5 5 6 5 5 15 8-11 72.4 74.1 74.8 + 17 11 3 18 7 7 9 12 3 5 5 8-11 72.0 73.9 74.8 + 17 11 4 4 4 3 2 4 3 2 5 3-11 70.9 73.7 74.8 + 17 11 5 2 0 0 0 0 2 3 2 1-11 69.9 73.5 74.8 + 17 11 6 3 0 0 0 0 0 0 2 1-11 68.1 73.2 74.8 + 17 11 7 3 12 18 39 22 22 94 67 35-11 67.0 72.9 74.8 + 17 11 8 67 94 18 32 48 32 18 39 44-11 66.4 72.6 74.8 + 17 11 9 22 18 12 18 15 22 18 22 18-11 64.6 72.3 74.8 + 17 11 10 15 18 22 22 22 27 15 15 20-11 67.2 72.1 74.8 + 17 11 11 15 9 7 7 5 5 3 4 7-11 65.9 72.0 74.8 + 17 11 12 4 6 3 4 4 4 6 9 5-11 68.0 71.8 74.8 + 17 11 13 5 9 5 6 4 9 4 2 6-11 70.6 71.7 74.8 + 17 11 14 15 15 12 5 7 15 9 12 11-11 72.8 71.5 74.8 + 17 11 15 7 12 12 15 9 18 9 7 11-11 72.6 71.4 74.8 + 17 11 16 27 32 18 9 4 6 7 12 14-11 71.6 71.2 74.8 + 17 11 17 4 6 5 9 6 0 0 4 4-11 74.7 71.0 74.7 + 17 11 18 6 6 7 6 6 6 4 6 6-11 74.3 70.9 74.7 + 17 11 19 3 6 9 5 3 2 4 2 4-11 72.7 70.9 74.7 + 17 11 20 3 2 2 2 2 7 9 22 6-11 71.8 70.9 74.7 + 17 11 21 32 48 39 18 15 22 22 22 27-11 71.4 70.9 74.7 + 17 11 22 9 15 6 7 15 7 12 7 10-11 71.6 70.8 74.7 + 17 11 23 9 4 7 12 9 6 7 12 8-11 70.6 70.8 74.7 + 17 11 24 15 7 7 3 2 2 18 18 9-11 72.2 70.8 74.7 + 17 11 25 18 12 5 4 0 4 3 2 6-11 72.4 70.8 74.7 + 17 11 26 0 0 4 0 3 3 4 3 2-11 73.5 70.7 74.6 + 17 11 27 6 5 3 2 7 4 5 4 5-11 71.7 70.7 74.6 + 17 11 28 18 9 5 6 6 2 4 3 7-11 70.0 70.6 74.6 + 17 11 29 4 4 6 3 0 4 5 7 4-11 70.6 70.6 74.6 + 17 11 30 9 27 4 5 9 15 5 9 10-11 69.8 70.5 74.6 + 17 12 1 5 12 5 4 5 12 9 3 7-11 68.3 70.4 74.6 + 17 12 2 3 0 2 0 2 9 2 3 3-11 69.5 70.3 74.6 + 17 12 3 0 0 0 2 2 0 0 3 1-11 67.0 70.2 74.6 + 17 12 4 0 0 6 4 9 15 18 27 10-11 66.4 70.1 74.6 + 17 12 5 18 15 27 39 48 32 22 22 28-11 66.0 70.0 74.6 + 17 12 6 18 27 18 6 15 12 15 9 15-11 66.3 69.9 74.6 + 17 12 7 7 7 9 4 18 15 9 9 10-11 65.9 69.8 74.5 + 17 12 8 5 5 7 5 6 3 4 3 5-11 67.8 69.7 74.5 + 17 12 9 3 0 2 2 6 6 4 2 3-11 69.0 69.6 74.5 + 17 12 10 0 0 4 0 3 3 2 5 2-11 69.8 69.6 74.5 + 17 12 11 4 12 9 9 18 9 9 6 10-11 70.1 69.5 74.5 + 17 12 12 9 12 9 9 5 12 27 15 12-11 69.2 69.4 74.5 + 17 12 13 3 0 5 4 6 7 12 9 6-11 69.9 69.4 74.5 + 17 12 14 12 4 2 2 2 0 4 3 4-11 69.8 69.3 74.5 + 17 12 15 0 0 2 4 5 4 3 5 3-11 69.5 69.3 74.4 + 17 12 16 0 0 3 3 3 3 2 7 3-11 69.0 69.3 74.4 + 17 12 17 12 15 39 15 18 22 39 22 23-11 68.8 69.2 74.4 + 17 12 18 27 22 32 18 15 9 6 3 17-11 69.4 69.2 74.4 + 17 12 19 3 4 2 2 4 6 6 9 5-11 66.6 69.2 74.4 + 17 12 20 7 7 4 6 3 5 6 0 5-11 71.8 69.3 74.4 + 17 12 21 2 2 3 4 3 3 0 0 2-11 73.6 69.3 74.5 + 17 12 22 0 2 2 0 2 0 0 4 1-11 72.9 69.3 74.5 + 17 12 23 5 12 5 6 3 0 3 3 5-11 73.7 69.3 74.5 + 17 12 24 5 7 7 9 18 18 9 15 11-11 73.6 69.2 74.5 + 17 12 25 15 3 7 12 5 7 15 7 9-11 73.2 69.1 74.5 + 17 12 26 12 12 5 6 5 6 22 15 10-11 69.5 69.1 74.5 + 17 12 27 6 9 5 5 4 12 6 12 7-11 68.6 69.1 74.5 + 17 12 28 4 2 5 4 6 5 4 6 5-11 68.8 69.1 74.5 + 17 12 29 3 4 2 2 3 4 9 3 4-11 69.1 69.1 74.5 + 17 12 30 2 5 2 0 3 4 2 6 3-11 68.1 69.2 74.5 + 17 12 31 2 0 0 2 2 3 5 7 3-11 68.3 69.2 74.4 + 18 1 1 18 22 9 9 12 4 4 5 10-11 66.8 69.3 74.4 + 18 1 2 6 3 2 3 6 4 7 4 4-11 67.2 69.3 74.4 + 18 1 3 0 3 4 3 2 4 2 0 2-11 68.3 69.4 74.4 + 18 1 4 3 0 4 0 3 2 5 4 3-11 67.2 69.4 74.4 + 18 1 5 3 6 5 3 3 5 4 7 5-11 67.0 69.5 74.4 + 18 1 6 5 0 3 0 2 0 2 2 2-11 67.1 69.4 74.4 + 18 1 7 4 0 0 0 2 3 3 2 2-11 67.6 69.4 74.3 + 18 1 8 2 3 9 6 22 15 7 6 9-11 68.0 69.4 74.3 + 18 1 9 22 9 7 5 7 7 6 6 9-11 68.5 69.3 74.2 + 18 1 10 5 6 4 4 2 4 2 0 3-11 68.1 69.3 74.2 + 18 1 11 2 4 0 2 3 0 2 3 2-11 68.5 69.3 74.1 + 18 1 12 3 5 4 4 3 5 2 0 3-11 68.6 69.2 74.0 + 18 1 13 0 0 5 5 7 6 15 9 6-11 68.5 69.2 74.0 + 18 1 14 39 27 7 5 6 7 4 7 13-11 68.2 69.2 73.9 + 18 1 15 22 7 12 5 3 7 6 7 9-11 67.9 69.3 73.9 + 18 1 16 7 2 3 5 3 3 4 4 4-11 68.8 69.2 73.8 + 18 1 17 0 0 0 3 2 0 0 2 1-11 68.6 69.3 73.8 + 18 1 18 0 2 0 0 2 2 2 2 1-11 68.8 69.3 73.8 + 18 1 19 5 12 9 6 3 3 9 12 7-11 68.5 69.2 73.8 + 18 1 20 12 15 12 4 3 4 5 4 7-11 67.4 69.2 73.8 + 18 1 21 4 3 6 9 15 7 15 12 9-11 66.1 69.2 73.8 + 18 1 22 15 15 7 6 4 12 18 12 11-11 67.9 69.1 73.8 + 18 1 23 7 7 2 3 4 5 2 2 4-11 68.3 69.1 73.8 + 18 1 24 0 0 2 3 15 18 4 27 9-11 67.7 69.0 73.8 + 18 1 25 15 9 7 7 5 15 9 6 9-11 68.2 69.0 73.8 + 18 1 26 15 9 12 4 2 3 6 6 7-11 67.7 69.0 73.8 + 18 1 27 12 6 3 4 4 5 6 5 6-11 66.7 68.9 73.8 + 18 1 28 4 4 0 3 5 3 2 6 3-11 66.4 68.9 73.8 + 18 1 29 2 2 4 4 3 3 4 2 3-11 66.2 68.9 73.8 + 18 1 30 3 9 6 3 2 0 2 2 3-11 66.9 68.8 73.8 + 18 1 31 0 0 5 7 9 6 5 12 6-11 67.2 68.8 73.7 + 18 2 1 12 2 2 2 2 0 5 5 4-11 67.0 68.7 73.7 + 18 2 2 7 4 3 3 3 2 2 0 3-11 66.8 68.6 73.7 + 18 2 3 2 2 4 4 2 2 6 5 3-11 67.3 68.6 73.7 + 18 2 4 3 0 0 2 2 4 9 4 3-11 71.0 68.5 73.7 + 18 2 5 12 7 7 6 15 9 4 2 8-11 72.0 68.5 73.7 + 18 2 6 2 9 5 6 5 0 3 5 4-11 74.8 68.5 73.7 + 18 2 7 2 2 3 4 6 0 0 0 2-11 74.6 68.5 73.7 + 18 2 8 0 4 3 3 2 0 2 5 2-11 75.5 68.5 73.7 + 18 2 9 5 12 3 0 0 0 2 9 4-11 76.1 68.5 73.7 + 18 2 10 4 9 5 9 7 5 5 3 6-11 76.2 68.5 73.7 + 18 2 11 3 0 2 2 2 3 2 0 2-11 76.2 68.5 73.6 + 18 2 12 0 4 6 2 2 2 6 3 3-11 76.6 68.5 73.6 + 18 2 13 0 3 3 2 2 2 2 3 2-11 74.1 68.5 73.6 + 18 2 14 4 0 0 0 0 0 4 5 2-11 73.4 68.5 73.6 + 18 2 15 4 0 7 4 9 39 15 12 11-11 70.8 68.5 73.6 + 18 2 16 9 9 9 5 3 5 6 9 7-11 69.8 68.5 73.6 + 18 2 17 15 22 15 5 15 6 4 9 11-11 67.4 68.5 73.5 + 18 2 18 27 7 9 7 15 22 9 9 13-11 68.7 68.5 73.5 + 18 2 19 27 27 9 6 12 7 27 12 16-11 67.5 68.5 73.4 + 18 2 20 12 0 2 2 5 4 2 0 3-11 66.3 68.6 73.4 + 18 2 21 0 0 3 7 2 2 3 2 2-11 66.1 68.6 73.3 + 18 2 22 6 5 3 6 9 12 22 18 10-11 67.0 68.5 73.3 + 18 2 23 6 22 15 32 5 7 18 12 15-11 66.2 68.5 73.2 + 18 2 24 18 18 12 6 5 2 2 4 8-11 66.8 68.5 73.2 + 18 2 25 3 0 3 0 2 6 7 5 3-11 65.9 68.5 73.2 + 18 2 26 7 6 6 6 4 5 2 15 6-11 68.4 68.5 73.2 + 18 2 27 27 56 6 7 32 9 5 4 18-11 66.6 68.5 73.1 + 18 2 28 9 9 3 5 6 4 6 5 6-11 67.5 68.5 73.1 + 18 3 1 3 6 3 4 5 3 12 9 6-11 66.0 68.5 73.1 + 18 3 2 12 2 2 2 2 2 3 3 4-11 66.6 68.5 73.0 + 18 3 3 4 0 4 7 5 4 7 12 5-11 66.7 68.6 72.9 + 18 3 4 12 7 6 3 5 5 3 3 6-11 66.4 68.6 72.8 + 18 3 5 5 0 4 5 4 5 5 5 4-11 66.5 68.6 72.7 + 18 3 6 6 3 3 4 4 7 3 3 4-11 66.5 68.7 72.4 + 18 3 7 2 0 3 0 0 2 12 4 3-11 66.8 68.7 72.2 + 18 3 8 3 5 6 4 2 0 4 2 3-11 65.6 68.7 72.0 + 18 3 9 12 15 3 4 4 4 9 32 10-11 66.6 68.8 71.9 + 18 3 10 27 22 12 5 7 5 9 6 12-11 66.8 68.8 71.7 + 18 3 11 9 5 5 2 2 3 4 4 4-11 66.9 68.9 71.6 + 18 3 12 2 0 0 2 4 4 3 0 2-11 67.3 69.0 71.5 + 18 3 13 0 0 4 3 4 3 4 2 3-11 67.7 69.2 71.5 + 18 3 14 2 2 4 3 5 27 12 22 10-11 66.9 69.3 71.5 + 18 3 15 27 9 6 12 6 18 18 22 15-11 68.3 69.3 71.5 + 18 3 16 15 32 12 9 15 27 15 22 18-11 67.9 69.4 71.5 + 18 3 17 32 15 9 6 9 6 9 22 14-11 69.0 69.4 71.4 + 18 3 18 12 9 3 4 18 22 32 80 23-11 68.5 69.4 71.4 + 18 3 19 32 22 15 4 6 7 9 15 14-11 69.7 69.3 71.4 + 18 3 20 15 15 2 2 5 2 7 5 7-11 68.2 69.3 71.4 + 18 3 21 4 7 3 0 2 2 7 4 4-11 68.8 69.2 71.4 + 18 3 22 4 7 2 2 3 6 12 15 6-11 68.0 69.1 71.4 + 18 3 23 27 15 5 15 7 6 22 22 15-11 67.7 69.0 71.4 + 18 3 24 7 7 5 7 6 7 9 12 8-11 67.2 68.9 71.3 + 18 3 25 18 22 15 18 7 12 9 27 16-11 68.0 68.8 71.3 + 18 3 26 12 15 12 7 5 9 12 9 10-11 67.5 68.8 71.3 + 18 3 27 12 15 7 7 9 5 2 3 8-11 68.0 68.7 71.2 + 18 3 28 3 2 3 0 2 0 2 2 2-11 68.3 68.7 71.1 + 18 3 29 0 0 3 6 4 6 3 4 3-11 68.8 68.7 71.1 + 18 3 30 5 9 3 4 5 3 3 3 4-11 68.6 68.8 71.0 + 18 3 31 12 6 5 5 5 6 3 3 6-11 68.9 68.8 71.0 + 18 4 1 5 4 4 5 4 5 4 4 4-11 68.9 68.9 70.9 + 18 4 2 6 4 3 3 5 5 5 5 5-11 68.4 68.9 70.9 + 18 4 3 5 7 4 2 0 0 0 0 2-11 67.8 69.0 70.8 + 18 4 4 0 0 2 6 6 6 5 6 4-11 68.6 69.0 70.8 + 18 4 5 15 7 3 3 5 12 15 5 8-11 66.4 69.1 70.7 + 18 4 6 3 2 2 3 4 6 4 3 3-11 67.4 69.2 70.7 + 18 4 7 2 4 3 2 4 5 3 7 4-11 67.0 69.2 70.6 + 18 4 8 3 5 2 3 2 6 7 9 5-11 68.1 69.3 70.6 + 18 4 9 5 5 7 5 7 9 15 32 11-11 68.9 69.3 70.6 + 18 4 10 7 27 27 12 18 15 9 22 17-11 68.8 69.4 70.6 + 18 4 11 32 22 15 6 5 2 4 7 12-11 68.6 69.4 70.6 + 18 4 12 6 6 12 5 7 5 9 15 8-11 70.4 69.5 70.6 + 18 4 13 22 9 6 5 4 3 7 12 9-11 70.1 69.6 70.6 + 18 4 14 7 5 0 2 7 7 5 6 5-11 69.9 69.7 70.6 + 18 4 15 9 5 5 3 6 3 3 6 5-11 71.0 69.9 70.6 + 18 4 16 4 3 0 2 2 2 0 4 2-11 69.7 70.0 70.6 + 18 4 17 3 3 3 0 2 3 3 4 3-11 69.8 70.1 70.6 + 18 4 18 5 6 3 3 6 7 6 3 5-11 71.4 70.3 70.6 + 18 4 19 0 0 0 4 2 0 3 3 2-11 71.4 70.4 70.6 + 18 4 20 18 27 80 67 32 48 56 18 43-11 73.7 70.5 70.5 + 18 4 21 15 12 12 7 9 18 15 5 12-11 77.5 70.7 70.5 + 18 4 22 5 6 4 2 6 4 4 6 5-11 76.5 70.8 70.5 + 18 4 23 12 6 2 0 4 3 15 7 6-11 74.7 70.9 70.5 + 18 4 24 2 0 3 2 5 5 7 6 4-11 73.7 71.0 70.5 + 18 4 25 7 7 4 3 2 0 0 5 4-11 71.6 71.0 70.5 + 18 4 26 6 3 2 4 4 2 3 6 4-11 70.3 71.1 70.4 + 18 4 27 5 0 0 3 5 12 6 7 5-11 69.6 71.2 70.4 + 18 4 28 6 3 3 2 5 3 2 0 3-11 71.1 71.2 70.4 + 18 4 29 2 0 4 3 5 5 2 3 3-11 72.2 71.2 70.4 + 18 4 30 9 5 3 3 7 6 5 0 5-11 71.3 71.2 70.4 + 18 5 1 0 2 4 2 2 2 2 3 2-11 69.5 71.3 70.3 + 18 5 2 4 7 6 4 4 3 2 0 4-11 68.1 71.3 70.3 + 18 5 3 2 2 2 2 3 3 4 5 3-11 67.6 71.4 70.3 + 18 5 4 2 3 5 3 3 4 5 4 4-11 68.9 71.4 70.3 + 18 5 5 3 3 2 12 27 39 32 67 23-11 68.7 71.5 70.3 + 18 5 6 67 27 18 12 15 9 32 32 27-11 68.4 71.6 70.3 + 18 5 7 22 27 15 6 15 18 9 18 16-11 70.9 71.6 70.3 + 18 5 8 12 15 9 12 12 22 22 7 14-11 70.9 71.7 70.2 + 18 5 9 18 12 9 6 9 9 27 22 14-11 70.9 71.8 70.3 + 18 5 10 18 12 15 7 7 15 3 12 11-11 71.0 71.9 70.3 + 18 5 11 7 18 22 6 15 7 22 18 14-11 71.7 72.1 70.3 + 18 5 12 12 22 4 5 4 3 6 7 8-11 71.2 72.3 70.3 + 18 5 13 3 6 9 7 7 7 9 9 7-11 72.4 72.5 70.3 + 18 5 14 4 4 4 3 3 3 3 7 4-11 71.8 72.7 70.3 + 18 5 15 0 2 3 2 3 5 3 4 3-11 71.9 72.8 70.3 + 18 5 16 0 0 2 2 5 3 5 5 3-11 71.5 72.9 70.2 + 18 5 17 12 6 6 12 15 9 9 7 10-11 70.5 72.9 70.2 + 18 5 18 6 4 2 4 5 4 4 4 4-11 71.1 73.0 70.2 + 18 5 19 0 0 0 2 3 4 4 2 2-11 71.9 73.1 70.2 + 18 5 20 2 4 4 2 3 2 0 2 2-11 70.4 73.1 70.2 + 18 5 21 0 3 2 3 0 2 0 4 2-11 71.3 73.1 70.2 + 18 5 22 0 2 7 3 5 5 7 6 4-11 72.6 73.1 70.2 + 18 5 23 5 7 18 12 9 5 3 5 8-11 75.0 73.1 70.2 + 18 5 24 4 5 2 2 3 3 2 3 3-11 75.6 73.1 70.2 + 18 5 25 5 2 2 2 5 2 2 2 3-11 77.7 73.1 70.1 + 18 5 26 0 3 2 2 3 2 4 5 3-11 74.9 73.1 70.1 + 18 5 27 4 5 2 5 3 2 3 3 3-11 76.6 73.1 70.1 + 18 5 28 2 4 4 4 6 5 3 2 4-11 78.9 73.2 70.1 + 18 5 29 3 6 3 3 4 3 3 2 3-11 77.0 73.2 70.1 + 18 5 30 2 2 3 2 3 4 6 6 4-11 77.3 73.3 70.1 + 18 5 31 5 5 3 5 6 22 32 15 12-11 78.9 73.3 70.1 + 18 6 1 15 22 39 32 39 22 9 9 23-11 76.9 73.3 70.1 + 18 6 2 12 27 12 7 12 9 27 22 16-11 76.5 73.3 70.1 + 18 6 3 12 6 4 6 12 12 7 6 8-11 75.7 73.3 70.0 + 18 6 4 4 5 5 5 3 4 5 3 4-11 72.6 73.3 70.0 + 18 6 5 6 5 4 4 6 6 6 3 5-11 73.4 73.3 70.0 + 18 6 6 3 3 2 2 5 9 22 6 7-11 73.2 73.3 70.1 + 18 6 7 12 6 4 4 2 3 4 5 5-11 71.3 73.4 70.1 + 18 6 8 3 7 3 6 5 2 2 2 4-11 70.2 73.4 70.1 + 18 6 9 4 3 4 4 2 3 5 0 3-11 68.8 73.4 70.1 + 18 6 10 3 4 0 0 2 4 3 0 2-11 72.4 73.5 70.1 + 18 6 11 4 2 2 2 4 5 2 4 3-11 72.0 73.5 70.1 + 18 6 12 6 6 2 2 3 2 2 3 3-11 72.5 73.5 70.1 + 18 6 13 2 3 4 2 2 2 7 7 4-11 73.0 73.5 70.1 + 18 6 14 5 4 5 4 5 4 4 4 4-11 74.7 73.5 70.1 + 18 6 15 3 3 2 4 3 4 2 0 3-11 72.8 73.5 70.1 + 18 6 16 0 3 2 0 2 2 2 3 2-11 72.7 73.5 70.1 + 18 6 17 3 3 4 2 2 4 6 6 4-11 74.6 73.5 70.0 + 18 6 18 27 18 22 18 15 9 9 7 16-11 76.1 73.5 70.0 + 18 6 19 5 6 9 6 4 3 4 4 5-11 79.0 73.5 70.0 + 18 6 20 2 6 9 6 4 4 3 4 5-11 84.7 73.5 70.0 + 18 6 21 3 3 3 4 2 3 2 2 3-11 84.2 73.5 70.0 + 18 6 22 2 4 4 2 2 4 5 3 3-11 83.0 73.5 70.0 + 18 6 23 9 18 6 27 27 15 18 22 18-11 79.7 73.5 70.0 + 18 6 24 12 6 9 6 7 3 5 4 7-11 77.0 73.5 70.0 + 18 6 25 4 3 3 6 12 7 15 48 12-11 75.2 73.5 70.0 + 18 6 26 39 22 12 22 22 15 18 7 20-11 73.4 73.5 70.0 + 18 6 27 4 9 5 5 7 5 5 12 7-11 72.4 73.5 70.0 + 18 6 28 6 3 2 5 6 5 6 4 5-11 71.9 73.5 69.9 + 18 6 29 3 5 3 3 4 4 2 0 3-11 70.9 73.5 69.9 + 18 6 30 2 2 4 4 4 4 3 4 3-11 71.1 73.5 69.9 + 18 7 1 2 3 2 2 2 2 2 0 2-11 70.4 73.5 69.9 + 18 7 2 0 3 2 2 4 2 2 0 2-11 68.8 73.5 69.9 + 18 7 3 0 0 0 2 6 6 3 3 3-11 70.5 73.4 69.9 + 18 7 4 3 4 5 3 4 4 3 3 4-11 70.2 73.3 69.9 + 18 7 5 9 4 2 7 22 32 39 22 17-11 70.4 73.2 70.0 + 18 7 6 22 7 4 7 4 4 3 7 7-11 72.9 73.2 70.0 + 18 7 7 7 6 4 4 3 5 6 4 5-11 74.4 73.1 70.0 + 18 7 8 4 3 4 3 5 2 3 4 4-11 74.0 73.0 70.0 + 18 7 9 2 3 2 2 2 2 0 2 2-11 75.4 72.9 70.0 + 18 7 10 7 9 6 5 9 6 5 2 6-11 74.5 72.8 70.0 + 18 7 11 2 5 9 9 12 6 9 7 7-11 75.8 72.7 70.0 + 18 7 12 5 12 12 5 6 5 5 5 7-11 74.6 72.6 70.0 + 18 7 13 12 7 5 3 3 5 4 3 5-11 74.9 72.5 70.0 + 18 7 14 6 4 4 4 4 2 4 0 4-11 74.7 72.4 70.0 + 18 7 15 4 5 2 2 2 2 3 2 3-11 74.1 72.4 70.0 + 18 7 16 3 6 12 6 4 7 9 12 7-11 74.3 72.4 70.0 + 18 7 17 4 15 15 4 3 5 3 4 7-11 73.5 72.4 70.0 + 18 7 18 2 2 3 2 3 3 4 4 3-11 73.6 72.4 70.0 + 18 7 19 4 2 3 4 3 4 4 3 3-11 72.8 72.4 70.0 + 18 7 20 7 3 4 7 7 3 7 7 6-11 72.7 72.5 69.9 + 18 7 21 6 7 15 12 18 12 6 6 10-11 72.2 72.4 69.9 + 18 7 22 5 4 5 5 4 5 4 3 4-11 70.4 72.4 69.9 + 18 7 23 0 3 4 3 3 2 4 4 3-11 69.1 72.3 69.9 + 18 7 24 22 15 18 12 7 15 18 27 17-11 69.0 72.3 69.9 + 18 7 25 12 18 7 5 5 5 4 5 8-11 67.9 72.2 69.9 + 18 7 26 3 4 2 3 5 3 3 3 3-11 68.3 72.2 70.0 + 18 7 27 3 3 2 2 2 2 3 6 3-11 68.6 72.1 70.0 + 18 7 28 6 7 3 5 5 3 5 2 5-11 70.0 72.1 70.0 + 18 7 29 5 4 3 4 4 3 5 3 4-11 70.0 72.0 70.0 + 18 7 30 3 2 0 2 6 4 7 7 4-11 70.4 71.8 70.0 + 18 7 31 5 4 2 2 2 3 7 9 4-11 71.0 71.7 70.0 + 18 8 1 7 2 2 3 6 6 7 9 5-11 72.3 71.5 70.0 + 18 8 2 12 7 6 4 5 2 2 0 5-11 72.0 71.3 70.1 + 18 8 3 3 5 4 12 9 5 2 3 5-11 72.3 71.2 70.1 + 18 8 4 6 7 4 5 2 3 2 5 4-11 72.5 71.1 70.1 + 18 8 5 3 4 3 7 5 4 2 3 4-11 71.2 71.1 70.1 + 18 8 6 0 3 3 3 4 3 3 2 3-11 71.1 71.0 70.1 + 18 8 7 7 7 5 7 15 12 15 6 9-11 71.5 71.0 70.1 + 18 8 8 3 3 5 5 6 4 4 5 4-11 71.6 70.9 70.0 + 18 8 9 5 3 5 5 3 2 3 3 4-11 72.2 70.9 70.0 + 18 8 10 5 3 2 2 3 4 4 4 3-11 71.4 70.9 70.0 + 18 8 11 5 6 6 6 15 9 7 22 10-11 69.3 70.8 70.0 + 18 8 12 4 3 3 6 6 4 6 7 5-11 69.9 70.8 70.0 + 18 8 13 2 4 4 4 5 3 2 4 4-11 69.6 70.8 69.9 + 18 8 14 5 2 3 4 3 3 2 4 3-11 70.5 70.8 69.9 + 18 8 15 7 4 6 12 27 15 15 18 13-11 70.6 70.8 69.9 + 18 8 16 22 9 7 9 12 5 6 9 10-11 70.0 70.7 69.9 + 18 8 17 15 27 9 7 4 2 18 18 13-11 69.0 70.6 69.9 + 18 8 18 5 12 18 12 7 9 5 6 9-11 68.9 70.6 69.9 + 18 8 19 9 7 5 5 4 12 9 7 7-11 68.4 70.5 69.9 + 18 8 20 22 18 6 7 12 15 27 9 15-11 69.6 70.4 69.9 + 18 8 21 12 5 7 7 5 5 5 9 7-11 69.4 70.3 69.9 + 18 8 22 6 9 5 2 5 3 2 7 5-11 68.4 70.3 69.9 + 18 8 23 6 4 3 2 4 3 3 3 4-11 71.1 70.2 69.9 + 18 8 24 0 3 5 5 12 5 2 3 4-11 74.0 70.1 69.9 + 18 8 25 3 4 7 9 12 6 22 32 12-11 73.1 70.0 69.9 + 18 8 26 48111154 39 39 80 48 15 67-11 72.6 69.9 69.9 + 18 8 27 5 9 12 22 22 67 48 12 25-11 71.0 69.9 69.9 + 18 8 28 22 12 6 12 7 3 3 2 8-11 71.2 69.8 69.9 + 18 8 29 9 6 3 4 4 7 5 5 5-11 71.8 69.8 69.9 + 18 8 30 5 3 4 2 2 2 3 6 3-11 69.6 69.7 69.9 + 18 8 31 4 3 2 3 4 6 9 3 4-11 68.8 69.7 70.0 + 18 9 1 3 3 2 2 5 3 7 5 4-11 69.5 69.7 70.0 + 18 9 2 5 7 4 2 2 5 5 6 5-11 68.9 69.7 70.0 + 18 9 3 5 5 2 2 4 4 3 5 4-11 69.3 69.8 70.0 + 18 9 4 6 12 12 3 4 6 7 15 8-11 68.6 69.8 70.0 + 18 9 5 18 15 6 12 12 6 5 4 10-11 68.6 69.8 70.0 + 18 9 6 7 5 4 2 3 4 5 6 5-11 68.4 69.8 70.0 + 18 9 7 9 7 4 3 4 4 2 3 5-11 68.6 69.8 70.0 + 18 9 8 2 0 9 2 3 4 3 6 4-11 69.7 69.8 70.0 + 18 9 9 6 5 5 3 5 6 6 12 6-11 69.4 69.8 70.0 + 18 9 10 2 2 3 9 12 48 32 48 20-11 69.9 69.8 70.0 + 18 9 11 22 48 80 67 15 15 22 9 35-11 70.3 69.8 70.1 + 18 9 12 7 7 4 5 6 12 7 27 9-11 70.6 69.7 70.1 + 18 9 13 27 27 15 15 15 18 6 15 17-11 70.5 69.7 70.1 + 18 9 14 32 27 9 7 7 6 12 15 14-11 69.8 69.7 70.1 + 18 9 15 12 7 7 6 7 4 3 9 7-11 69.2 69.6 70.1 + 18 9 16 6 9 5 5 3 2 4 6 5-11 69.8 69.6 70.1 + 18 9 17 18 12 7 6 7 12 12 12 11-11 68.5 69.6 70.1 + 18 9 18 9 7 7 7 3 3 3 4 5-11 68.8 69.5 70.1 + 18 9 19 4 9 5 2 2 3 0 0 3-11 68.5 69.5 70.1 + 18 9 20 2 0 3 2 2 0 0 0 1-11 67.2 69.4 70.1 + 18 9 21 0 3 2 3 3 5 5 32 7-11 67.4 69.4 70.2 + 18 9 22 39 32 22 27 32 12 27 22 27-11 68.4 69.3 70.2 + 18 9 23 18 12 6 9 9 7 7 9 10-11 68.9 69.3 70.2 + 18 9 24 9 7 5 7 4 3 6 6 6-11 69.0 69.2 70.2 + 18 9 25 7 12 4 9 15 7 12 12 10-11 68.0 69.2 70.2 + 18 9 26 4 6 7 4 6 12 5 9 7-11 69.3 69.1 70.2 + 18 9 27 5 7 6 6 6 3 2 9 6-11 67.4 69.1 70.2 + 18 9 28 15 15 12 3 2 2 3 6 7-11 69.4 69.1 70.2 + 18 9 29 9 12 7 7 7 7 4 18 9-11 68.9 69.1 70.2 + 18 9 30 5 9 2 4 3 2 6 6 5-11 68.5 69.1 70.2 + 18 10 1 0 5 4 5 22 12 9 9 8-11 70.3 69.1 70.2 + 18 10 2 22 12 7 2 5 3 6 2 7-11 67.1 69.1 70.2 + 18 10 3 2 3 3 6 3 4 6 9 5-11 68.4 69.0 70.2 + 18 10 4 5 2 2 2 4 6 5 4 4-11 67.2 68.9 70.2 + 18 10 5 15 12 6 7 12 3 4 9 9-11 68.7 68.8 70.3 + 18 10 6 15 4 4 4 3 2 0 0 4-11 68.6 68.7 70.3 + 18 10 7 2 3 4 9 22 56 56 39 24-11 69.4 68.7 70.3 + 18 10 8 27 32 22 7 32 22 7 6 19-11 68.7 68.7 70.3 + 18 10 9 15 12 15 22 15 22 12 15 16-11 69.3 68.7 70.4 + 18 10 10 18 4 6 7 18 15 39 12 15-11 69.6 68.7 70.4 + 18 10 11 15 12 7 6 7 12 7 5 9-11 70.6 68.7 70.4 + 18 10 12 5 6 4 5 3 5 5 6 5-11 71.3 68.7 70.4 + 18 10 13 4 9 5 2 6 32 27 18 13-11 72.1 68.7 70.5 + 18 10 14 7 5 3 6 5 5 4 6 5-11 71.1 68.6 70.5 + 18 10 15 15 6 6 6 9 12 12 12 10-11 69.6 68.6 70.5 + 18 10 16 7 3 4 5 6 6 3 3 5-11 69.3 68.6 70.5 + 18 10 17 0 4 6 2 2 3 0 0 2-11 69.6 68.6 70.5 + 18 10 18 2 0 2 0 0 0 0 0 1-11 69.0 68.6 70.5 + 18 10 19 0 2 2 2 2 0 3 2 2-11 69.0 68.5 70.5 + 18 10 20 0 0 0 0 2 0 2 2 1-11 69.8 68.5 70.5 + 18 10 21 2 0 0 7 7 6 5 4 4-11 70.4 68.4 70.5 + 18 10 22 12 6 6 3 4 3 4 4 5-11 70.2 68.4 70.5 + 18 10 23 4 4 2 4 3 2 0 2 3-11 70.9 68.4 70.5 + 18 10 24 2 2 4 5 2 2 4 4 3-11 68.9 68.3 70.5 + 18 10 25 2 7 2 6 5 7 7 6 5-11 68.6 68.3 70.5 + 18 10 26 7 5 3 6 5 4 7 9 6-11 68.3 68.3 70.4 + 18 10 27 3 6 6 4 2 0 2 0 3-11 68.5 68.3 70.4 + 18 10 28 5 3 3 3 2 3 2 3 3-11 67.4 68.2 70.4 + 18 10 29 0 0 0 0 2 2 2 2 1-11 67.9 68.2 70.4 + 18 10 30 7 6 3 2 0 2 3 4 3-11 66.1 68.3 70.4 + 18 10 31 3 0 0 2 5 6 6 5 3-11 67.1 68.3 70.4 + 18 11 1 3 5 7 6 4 4 2 5 5-11 65.8 68.3 70.4 + 18 11 2 12 2 2 5 3 4 3 2 4-11 66.5 68.3 70.4 + 18 11 3 7 7 2 2 2 0 2 5 3-11 66.3 68.3 70.4 + 18 11 4 4 3 3 3 4 12 39 56 16-11 65.5 68.3 70.5 + 18 11 5 32 67 48 39 18 18 22 9 32-11 67.2 68.3 70.5 + 18 11 6 7 22 5 6 5 4 2 6 7-11 67.6 68.3 70.5 + 18 11 7 15 18 12 4 5 4 7 9 9-11 67.5 68.3 70.5 + 18 11 8 15 27 7 18 4 4 6 5 11-11 68.2 68.3 70.5 + 18 11 9 5 2 4 6 5 15 22 27 11-11 67.6 68.2 70.6 + 18 11 10 7 6 7 32 7 5 22 18 13-11 67.6 68.2 70.6 + 18 11 11 15 9 6 4 3 2 12 7 7-11 68.0 68.2 70.6 + 18 11 12 9 18 15 6 6 4 7 9 9-11 66.8 68.2 70.6 + 18 11 13 7 4 4 3 2 0 2 0 3-11 65.6 68.2 70.6 + 18 11 14 0 3 2 2 4 4 5 3 3-11 66.5 68.2 70.6 + 18 11 15 0 2 0 2 0 3 0 3 1-11 66.9 68.2 70.6 + 18 11 16 0 0 0 0 2 4 0 0 1-11 69.5 68.2 70.7 + 18 11 17 2 3 2 0 0 0 0 0 1-11 71.7 68.1 70.7 + 18 11 18 2 3 0 2 4 3 2 3 2-11 70.6 68.1 70.7 + 18 11 19 5 5 3 2 2 6 5 6 4-11 69.5 68.1 70.7 + 18 11 20 12 15 5 4 0 3 2 3 6-11 68.8 68.1 70.6 + 18 11 21 5 12 4 4 3 2 2 3 4-11 67.1 68.0 70.6 + 18 11 22 4 0 3 2 2 2 2 0 2-11 67.5 68.0 70.6 + 18 11 23 3 4 3 3 2 0 0 2 2-11 67.5 68.0 70.6 + 18 11 24 0 0 2 2 4 6 3 5 3-11 68.2 68.0 70.6 + 18 11 25 3 3 2 3 4 3 0 3 3-11 67.8 68.0 70.6 + 18 11 26 3 3 0 0 0 2 2 3 2-11 66.8 68.0 70.5 + 18 11 27 3 3 0 3 6 9 9 7 5-11 66.6 68.0 70.5 + 18 11 28 4 2 0 0 0 3 3 4 2-11 65.7 68.0 70.5 + 18 11 29 7 2 2 2 0 0 0 4 2-11 66.0 68.0 70.5 + 18 11 30 5 2 0 2 2 0 3 0 2-11 66.1 68.0 70.5 + 18 12 1 0 5 3 2 6 12 15 6 6-11 67.4 67.9 70.4 + 18 12 2 6 7 7 6 7 15 15 22 11-11 67.0 67.9 70.4 + 18 12 3 9 4 5 6 7 15 15 7 9-11 66.4 67.8 70.4 + 18 12 4 15 12 7 5 2 6 6 9 8-11 66.8 67.8 70.4 + 18 12 5 6 6 2 2 5 4 3 7 4-11 68.8 67.8 70.4 + 18 12 6 7 7 4 3 7 3 3 3 5-11 67.7 67.8 70.4 + 18 12 7 4 9 12 7 7 9 18 9 9-11 68.1 67.8 70.4 + 18 12 8 9 12 15 6 7 18 9 6 10-11 68.4 67.8 70.4 + 18 12 9 5 5 4 4 5 12 15 22 9-11 69.5 67.8 70.4 + 18 12 10 12 15 15 9 9 6 5 5 10-11 68.8 67.8 70.4 + 18 12 11 4 7 12 7 2 12 12 5 8-11 68.9 67.8 70.4 + 18 12 12 7 3 3 3 3 3 6 3 4-11 68.6 67.8 70.4 + 18 12 13 0 4 2 0 2 3 0 0 1-11 68.0 67.8 70.4 + 18 12 14 2 3 0 2 0 3 0 2 2-11 68.6 67.9 70.4 + 18 12 15 2 0 0 0 2 2 2 2 1-11 68.9 67.9 70.4 + 18 12 16 2 0 3 2 2 3 2 2 2-11 67.6 68.0 70.4 + 18 12 17 0 3 6 3 5 5 9 7 5-11 67.9 68.1 70.3 + 18 12 18 12 5 4 4 6 6 12 3 7-11 68.1 68.1 70.3 + 18 12 19 3 5 5 7 3 6 5 7 5-11 68.0 68.2 70.3 + 18 12 20 15 15 15 6 3 7 12 12 11-11 67.6 68.2 70.3 + 18 12 21 7 4 4 4 3 2 6 4 4-11 68.8 68.3 70.2 + 18 12 22 3 4 0 2 2 0 3 0 2-11 68.7 68.3 70.2 + 18 12 23 3 0 0 2 2 2 2 2 2-11 68.0 68.3 70.1 + 18 12 24 3 0 0 3 3 0 3 5 2-11 67.2 68.4 70.1 + 18 12 25 3 6 0 0 3 4 5 4 3-11 67.3 68.4 70.1 + 18 12 26 2 0 0 2 4 3 2 0 2-11 66.5 68.4 70.1 + 18 12 27 6 5 2 0 0 0 3 9 3-11 66.2 68.4 70.1 + 18 12 28 27 27 32 15 22 15 18 18 22-11 67.0 68.4 70.1 + 18 12 29 9 15 12 7 9 6 7 7 9-11 66.7 68.4 70.1 + 18 12 30 7 15 12 7 7 15 7 5 9-11 67.1 68.3 70.1 + 18 12 31 15 7 6 6 9 4 2 4 7-11 67.0 68.3 70.1 + 19 1 1 4 5 12 6 7 2 0 3 5-11 69.5 68.3 70.1 + 19 1 2 0 0 0 0 2 2 0 0 1-11 72.7 68.4 70.1 + 19 1 3 4 0 0 2 2 0 0 2 1-11 70.2 68.4 70.1 + 19 1 4 5 2 4 6 7 15 12 18 9-11 69.1 68.4 70.1 + 19 1 5 48 27 9 9 6 9 7 15 16-11 68.8 68.4 70.1 + 19 1 6 6 12 9 6 7 12 15 7 9-11 69.6 68.4 70.1 + 19 1 7 6 9 6 7 6 2 2 7 6-11 69.1 68.5 70.0 + 19 1 8 9 6 5 9 5 3 5 2 6-11 69.0 68.5 70.0 + 19 1 9 6 3 4 5 3 2 4 4 4-11 69.2 68.5 70.0 + 19 1 10 4 3 4 4 5 2 0 3 3-11 67.8 68.5 70.0 + 19 1 11 5 6 18 5 5 2 5 2 6-11 65.9 68.6 70.0 + 19 1 12 3 2 0 0 4 3 2 2 2-11 67.3 68.6 70.0 + 19 1 13 2 4 3 3 0 0 3 4 2-11 66.6 68.6 70.0 + 19 1 14 7 6 7 7 3 6 4 12 7-11 67.8 68.7 69.9 + 19 1 15 12 3 5 3 3 4 5 4 5-11 67.3 68.7 69.9 + 19 1 16 2 6 6 2 2 4 7 12 5-11 67.5 68.7 69.9 + 19 1 17 12 7 3 5 4 7 7 6 6-11 66.4 68.7 69.9 + 19 1 18 6 5 3 7 5 6 4 3 5-11 66.6 68.7 69.9 + 19 1 19 2 0 3 6 0 4 4 12 4-11 67.4 68.7 69.9 + 19 1 20 6 4 3 2 3 3 3 3 3-11 67.0 68.7 69.9 + 19 1 21 4 2 0 2 2 3 5 6 3-11 67.7 68.7 69.9 + 19 1 22 0 2 0 0 2 4 6 7 3-11 68.5 68.7 69.9 + 19 1 23 12 9 7 12 15 9 9 27 13-11 69.3 68.7 69.9 + 19 1 24 22 18 22 5 5 12 22 32 17-11 70.2 68.7 69.9 + 19 1 25 7 12 18 12 18 15 9 6 12-11 72.7 68.8 69.9 + 19 1 26 6 6 5 4 15 12 3 3 7-11 74.3 68.8 69.9 + 19 1 27 7 5 5 4 2 2 4 3 4-11 72.8 68.8 69.9 + 19 1 28 3 0 2 0 0 2 2 0 1-11 73.5 68.8 69.9 + 19 1 29 6 0 0 2 3 2 0 0 2-11 70.9 68.9 69.9 + 19 1 30 0 0 0 0 0 0 4 4 1-11 71.4 68.9 69.9 + 19 1 31 4 2 4 4 12 18 15 56 14-11 70.0 68.9 69.9 + 19 2 1 9 18 18 9 9 22 15 22 15-11 70.0 68.9 69.9 + 19 2 2 22 27 15 9 7 18 15 15 16-11 68.8 68.9 69.8 + 19 2 3 18 15 12 4 5 9 7 9 10-11 69.1 69.0 69.8 + 19 2 4 3 0 3 2 5 6 15 9 5-11 68.7 69.0 69.8 + 19 2 5 15 5 3 2 2 4 4 2 5-11 68.7 69.0 69.8 + 19 2 6 4 7 7 12 12 5 9 9 8-11 67.9 69.0 69.8 + 19 2 7 6 5 4 0 2 3 4 7 4-11 68.3 69.1 69.8 + 19 2 8 7 6 6 5 3 5 9 22 8-11 68.1 69.2 69.8 + 19 2 9 12 7 7 9 6 9 15 4 9-11 68.4 69.3 69.8 + 19 2 10 9 12 3 5 2 2 4 4 5-11 68.1 69.5 69.8 + 19 2 11 4 5 6 3 15 15 7 9 8-11 68.0 69.6 69.8 + 19 2 12 7 9 2 2 4 3 0 9 5-11 68.4 69.7 69.8 + 19 2 13 6 12 12 22 22 15 5 7 13-11 68.6 69.7 69.8 + 19 2 14 12 18 9 15 2 3 9 6 9-11 69.7 69.7 69.8 + 19 2 15 9 4 3 2 3 2 3 0 3-11 69.2 69.7 69.8 + 19 2 16 0 0 4 0 4 7 5 3 3-11 69.0 69.6 69.8 + 19 2 17 0 0 3 2 0 2 7 9 3-11 68.4 69.6 69.8 + 19 2 18 15 15 2 5 5 4 2 2 6-11 68.3 69.6 69.8 + 19 2 19 2 4 4 2 0 2 3 2 2-11 68.6 69.6 69.8 + 19 2 20 2 0 2 0 2 4 5 6 3-11 69.4 69.7 69.8 + 19 2 21 12 7 22 6 12 6 4 15 11-11 69.2 69.7 69.8 + 19 2 22 7 2 4 3 2 0 3 5 3-11 69.7 69.8 69.8 + 19 2 23 2 0 2 0 0 4 4 0 2-11 69.2 69.8 69.8 + 19 2 24 0 0 3 3 4 0 0 0 1-11 69.0 69.9 69.7 + 19 2 25 0 0 3 2 0 2 0 3 1-11 68.9 69.9 69.7 + 19 2 26 3 0 0 3 2 4 0 3 2-11 69.2 70.1 69.7 + 19 2 27 4 0 3 4 15 18 15 27 11-11 69.4 70.2 69.7 + 19 2 28 32 18 7 18 32 22 39 15 23-11 68.8 70.4 69.7 + 19 3 1 32 27 15 22 12 22 27 27 23-11 68.7 70.5 69.7 + 19 3 2 27 18 15 7 7 15 7 6 13-11 68.2 70.6 69.7 + 19 3 3 9 12 3 3 5 3 3 7 6-11 68.3 70.8 69.7 + 19 3 4 5 9 5 7 7 4 2 7 6-11 69.7 70.9 69.7 + 19 3 5 9 4 2 3 4 3 3 7 4-11 70.8 71.0 69.7 + 19 3 6 4 6 15 5 7 3 7 6 7-11 71.3 71.0 69.7 + 19 3 7 2 2 0 2 9 12 12 12 6-11 69.9 71.1 69.7 + 19 3 8 12 3 4 6 0 3 2 5 4-11 70.7 71.1 69.7 + 19 3 9 2 0 3 4 9 4 4 9 4-11 69.7 71.1 69.7 + 19 3 10 9 7 3 2 2 2 0 2 3-11 70.1 71.1 69.7 + 19 3 11 0 0 3 5 3 0 2 3 2-11 69.5 71.1 69.7 + 19 3 12 6 5 12 7 5 3 5 5 6-11 69.8 71.1 69.7 + 19 3 13 2 6 5 2 3 3 5 2 4-11 70.0 71.1 69.7 + 19 3 14 0 4 5 3 12 5 12 15 7-11 69.3 71.1 69.7 + 19 3 15 9 12 7 3 3 4 12 4 7-11 68.9 71.1 69.7 + 19 3 16 3 5 6 15 9 12 9 39 12-11 68.8 71.1 69.7 + 19 3 17 39 27 27 12 6 7 3 2 15-11 68.6 71.1 69.7 + 19 3 18 2 3 0 2 3 3 3 2 2-11 69.3 71.1 69.7 + 19 3 19 3 3 4 6 7 6 12 9 6-11 69.1 71.1 69.7 + 19 3 20 3 6 5 5 6 6 3 4 5-11 76.2 71.1 69.7 + 19 3 21 2 4 2 2 2 0 0 0 2-11 79.4 71.1 69.7 + 19 3 22 0 0 3 0 2 2 0 0 1-11 81.8 71.1 69.7 + 19 3 23 0 0 0 4 2 0 0 0 1-11 78.9 71.1 69.7 + 19 3 24 0 0 2 0 0 0 0 7 1-11 75.0 71.2 69.7 + 19 3 25 7 4 3 2 4 5 2 9 5-11 70.8 71.2 69.7 + 19 3 26 9 9 2 2 3 2 2 6 4-11 68.7 71.3 69.7 + 19 3 27 7 6 12 7 6 3 7 3 6-11 68.6 71.4 69.7 + 19 3 28 3 9 9 7 15 7 7 15 9-11 68.1 71.5 69.7 + 19 3 29 7 7 7 7 4 6 7 5 6-11 68.6 71.6 69.7 + 19 3 30 7 5 2 2 3 2 2 2 3-11 69.2 71.8 69.7 + 19 3 31 9 22 12 4 7 6 9 3 9-11 69.4 71.9 69.7 + 19 4 1 9 6 7 12 7 7 3 0 6-11 69.2 72.0 69.7 + 19 4 2 3 2 3 2 3 3 18 15 6-11 70.8 72.1 69.7 + 19 4 3 9 18 12 6 9 6 7 12 10-11 70.6 72.2 69.7 + 19 4 4 12 6 5 9 12 22 9 4 10-11 70.3 72.3 69.7 + 19 4 5 15 18 12 6 12 9 12 12 12-11 71.8 72.3 69.7 + 19 4 6 9 15 6 5 3 4 7 5 7-11 73.7 72.4 69.7 + 19 4 7 2 6 2 4 6 3 5 7 4-11 76.6 72.5 69.7 + 19 4 8 12 18 9 6 15 15 7 9 11-11 78.8 72.5 69.7 + 19 4 9 18 7 9 7 6 9 7 7 9-11 79.3 72.5 69.7 + 19 4 10 22 27 12 4 7 18 15 5 14-11 78.4 72.5 69.7 + 19 4 11 5 12 6 7 7 7 3 3 6-11 78.9 72.6 69.6 + 19 4 12 15 6 5 4 6 6 6 9 7-11 77.7 72.6 69.6 + 19 4 13 15 15 6 2 4 3 7 5 7-11 78.3 72.6 69.6 + 19 4 14 3 6 6 2 3 3 2 5 4-11 75.9 72.5 69.6 + 19 4 15 5 5 9 9 5 3 9 7 7-11 75.9 72.5 69.6 + 19 4 16 7 6 9 5 5 3 5 3 5-11 74.7 72.5 69.6 + 19 4 17 3 3 0 2 0 3 6 5 3-11 76.7 72.5 69.6 + 19 4 18 0 0 0 0 4 3 3 3 2-11 75.2 72.5 69.6 + 19 4 19 0 2 5 5 5 4 6 4 4-11 73.3 72.5 69.6 + 19 4 20 4 3 3 3 3 3 5 4 4-11 70.6 72.5 69.6 + 19 4 21 6 4 3 3 3 2 2 2 3-11 69.9 72.5 69.5 + 19 4 22 0 0 4 2 4 5 4 2 3-11 70.2 72.5 69.5 + 19 4 23 4 2 2 3 3 9 18 18 7-11 69.6 72.6 69.5 + 19 4 24 15 5 2 6 9 6 3 5 6-11 70.1 72.6 69.5 + 19 4 25 4 6 6 6 6 2 4 2 5-11 68.4 72.6 69.5 + 19 4 26 3 0 2 3 3 5 5 6 3-11 68.0 72.7 69.5 + 19 4 27 4 2 7 6 5 4 7 7 5-11 67.8 72.7 69.5 + 19 4 28 3 2 4 2 3 5 7 7 4-11 68.8 72.7 69.5 + 19 4 29 6 4 0 4 5 7 3 4 4-11 67.9 72.7 69.5 + 19 4 30 6 4 0 3 4 4 6 5 4-11 69.5 72.7 69.5 + 19 5 1 2 6 5 5 7 12 27 22 11-11 68.7 72.6 69.5 + 19 5 2 18 18 9 9 7 9 12 4 11-11 70.3 72.4 69.5 + 19 5 3 7 7 6 4 6 5 7 12 7-11 70.9 72.3 69.5 + 19 5 4 3 7 7 12 12 12 9 5 8-11 73.5 72.3 69.5 + 19 5 5 5 4 0 2 2 4 3 3 3-11 74.7 72.3 69.5 + 19 5 6 4 2 2 4 6 5 6 5 4-11 77.3 72.3 69.5 + 19 5 7 5 7 3 2 4 5 6 3 4-11 80.1 72.3 69.5 + 19 5 8 3 2 0 0 0 2 2 4 2-11 76.8 72.3 69.5 + 19 5 9 5 5 9 6 5 4 4 9 6-11 77.7 72.3 69.5 + 19 5 10 5 6 3 3 4 7 12 15 7-11 77.8 72.3 69.5 + 19 5 11 48 22 32 27 27 9 9 22 25-11 79.5 72.3 69.5 + 19 5 12 6 3 4 2 0 4 5 5 4-11 77.6 72.3 69.5 + 19 5 13 3 2 4 6 4 12 6 7 6-11 76.2 72.3 69.5 + 19 5 14 18 67 94 18 7 22 22 5 32-11 76.0 72.2 69.6 + 19 5 15 3 6 3 2 6 9 9 3 5-11 75.6 72.2 69.6 + 19 5 16 4 6 5 4 5 4 12 15 7-11 75.3 72.2 69.6 + 19 5 17 9 3 4 2 5 4 2 3 4-11 73.8 72.2 69.6 + 19 5 18 3 3 6 7 4 2 2 2 4-11 72.2 72.1 69.6 + 19 5 19 0 3 3 2 2 2 2 6 3-11 69.6 72.0 69.6 + 19 5 20 18 6 4 3 4 4 2 2 5-11 70.4 71.9 69.6 + 19 5 21 3 4 2 3 6 2 2 2 3-11 69.7 71.8 69.6 + 19 5 22 2 5 6 4 3 2 4 4 4-11 69.0 71.7 69.6 + 19 5 23 3 4 2 5 5 5 4 6 4-11 68.2 71.6 69.6 + 19 5 24 4 6 2 2 3 5 6 5 4-11 68.1 71.4 69.6 + 19 5 25 2 2 2 2 2 6 5 4 3-11 68.7 71.4 69.6 + 19 5 26 3 3 2 2 2 3 2 15 4-11 69.8 71.3 69.6 + 19 5 27 9 9 18 5 4 9 7 3 8-11 69.3 71.2 69.6 + 19 5 28 3 4 4 5 12 4 9 15 7-11 70.0 71.1 69.6 + 19 5 29 18 22 18 9 7 6 9 15 13-11 70.1 71.0 69.6 + 19 5 30 15 7 5 6 5 5 9 7 7-11 70.6 71.0 69.6 + 19 5 31 6 5 5 3 2 2 3 2 4-11 70.6 71.0 69.6 + 19 6 1 3 2 3 3 2 2 4 3 3-11 71.7 71.0 69.6 + 19 6 2 7 2 2 2 2 2 2 4 3-11 71.9 71.0 69.6 + 19 6 3 2 0 2 5 5 5 3 3 3-11 71.8 71.0 69.6 + 19 6 4 5 5 5 4 6 9 9 7 6-11 72.1 71.0 69.6 + 19 6 5 9 3 3 2 2 3 4 3 4-11 71.8 71.0 69.6 + 19 6 6 3 3 3 2 2 0 2 0 2-11 70.9 71.0 69.6 + 19 6 7 2 2 4 3 5 5 4 3 4-11 71.0 71.0 69.6 + 19 6 8 3 3 3 6 18 48 56 22 20-11 70.5 71.0 69.6 + 19 6 9 15 6 5 4 4 4 4 5 6-11 70.5 71.0 69.6 + 19 6 10 2 2 0 2 3 3 3 3 2-11 71.0 71.0 69.6 + 19 6 11 3 3 2 2 2 2 2 2 2-11 71.9 71.0 69.6 + 19 6 12 4 3 3 2 5 3 2 2 3-11 71.6 71.0 69.6 + 19 6 13 5 6 7 5 9 6 6 27 9-11 69.6 71.0 69.6 + 19 6 14 9 6 9 6 6 4 3 3 6-11 70.1 71.0 69.6 + 19 6 15 2 4 5 5 3 3 0 3 3-11 68.8 70.9 69.6 + 19 6 16 4 5 4 2 3 4 3 3 4-11 68.0 70.8 69.6 + 19 6 17 0 2 2 3 4 3 2 0 2-11 68.5 70.7 69.6 + 19 6 18 2 2 2 2 5 3 4 3 3-11 69.2 70.6 69.6 + 19 6 19 3 2 3 4 4 3 2 3 3-11 70.2 70.5 69.6 + 19 6 20 2 6 9 6 4 4 7 9 6-11 69.9 70.3 69.6 + 19 6 21 5 6 4 5 5 3 5 9 5-11 68.6 70.2 69.6 + 19 6 22 5 6 5 3 2 3 2 0 3-11 68.6 70.1 69.6 + 19 6 23 0 0 2 3 5 3 2 2 2-11 69.5 70.0 69.6 + 19 6 24 6 6 2 3 6 3 5 3 4-11 70.2 69.9 69.6 + 19 6 25 3 2 2 3 4 2 3 5 3-11 70.2 69.8 69.6 + 19 6 26 6 5 6 6 4 4 2 5 5-11 70.3 69.8 69.6 + 19 6 27 5 4 0 2 4 3 4 3 3-11 69.3 69.7 69.6 + 19 6 28 7 4 2 2 3 3 4 3 4-11 70.4 69.7 69.6 + 19 6 29 2 2 3 2 3 3 3 4 3-11 69.9 69.7 69.7 + 19 6 30 9 2 2 2 5 3 2 4 4-11 69.7 69.7 69.7 + 19 7 1 9 15 9 5 7 5 5 6 8-11 70.5 69.7 69.7 + 19 7 2 5 3 4 4 5 6 7 2 5-11 69.5 69.7 69.7 + 19 7 3 0 2 5 4 5 5 5 0 3-11 69.1 69.7 69.7 + 19 7 4 0 2 2 2 7 5 9 7 4-11 69.9 69.7 69.7 + 19 7 5 6 3 4 4 6 3 2 2 4-11 69.0 69.7 69.7 + 19 7 6 4 4 3 3 2 2 2 3 3-11 68.8 69.7 69.7 + 19 7 7 2 4 5 4 4 3 4 6 4-11 69.6 69.7 69.7 + 19 7 8 9 5 3 0 2 3 22 18 8-11 68.7 69.7 69.7 + 19 7 9 15 9 7 6 6 12 48 18 15-11 69.7 69.7 69.7 + 19 7 10 6 32 39 18 9 7 4 6 15-11 70.1 69.7 69.7 + 19 7 11 12 7 15 4 4 3 3 2 6-11 69.4 69.7 69.7 + 19 7 12 3 5 7 6 5 3 3 4 5-11 69.0 69.6 69.7 + 19 7 13 2 3 4 6 6 7 9 5 5-11 68.2 69.6 69.7 + 19 7 14 7 3 3 2 3 4 6 9 5-11 69.4 69.5 69.7 + 19 7 15 12 6 4 9 6 4 9 2 7-11 69.3 69.5 69.7 + 19 7 16 2 5 6 5 4 4 6 4 5-11 69.5 69.4 69.7 + 19 7 17 5 9 5 4 5 3 4 6 5-11 70.0 69.4 69.7 + 19 7 18 2 0 2 3 4 4 3 5 3-11 69.2 69.3 69.7 + 19 7 19 3 2 2 4 3 3 3 4 3-11 68.9 69.3 69.7 + 19 7 20 0 0 3 2 3 2 3 2 2-11 69.1 69.2 69.7 + 19 7 21 0 3 6 5 4 6 15 22 8-11 69.8 69.2 69.7 + 19 7 22 6 5 9 9 9 6 7 4 7-11 69.5 69.1 69.7 + 19 7 23 3 7 7 6 7 3 3 6 5-11 69.6 69.1 69.7 + 19 7 24 4 4 0 3 5 5 4 5 4-11 70.0 69.1 69.7 + 19 7 25 2 0 0 2 4 3 2 3 2-11 70.3 69.1 69.7 + 19 7 26 0 0 2 2 2 2 2 2 2-11 69.8 69.1 69.7 + 19 7 27 2 2 2 5 3 4 9 5 4-11 68.7 69.1 69.7 + 19 7 28 5 6 4 4 4 4 3 2 4-11 69.2 69.1 69.7 + 19 7 29 6 6 5 2 4 5 2 2 4-11 68.2 69.2 69.7 + 19 7 30 5 2 0 3 12 18 9 12 8-11 68.3 69.2 69.7 + 19 7 31 12 5 12 5 4 4 6 7 7-11 68.9 69.2 69.7 + 19 8 1 18 6 5 3 3 3 6 12 7-11 68.8 69.2 69.7 + 19 8 2 4 4 4 3 3 2 2 3 3-11 68.9 69.2 69.7 + 19 8 3 2 2 0 2 2 2 3 2 2-11 67.7 69.2 69.7 + 19 8 4 2 2 6 4 2 3 2 4 3-11 68.8 69.2 69.7 + 19 8 5 3 15 48 56 56 48 22 22 34-11 70.1 69.2 69.7 + 19 8 6 12 12 7 15 9 7 4 12 10-11 70.1 69.2 69.7 + 19 8 7 9 6 4 5 4 4 4 7 5-11 69.9 69.2 69.7 + 19 8 8 5 6 5 4 12 7 4 3 6-11 70.6 69.2 69.7 + 19 8 9 0 3 5 6 5 7 6 12 6-11 69.1 69.1 69.7 + 19 8 10 12 6 5 6 6 4 5 6 6-11 69.1 69.1 69.7 + 19 8 11 2 4 4 6 9 4 4 7 5-11 69.5 69.1 69.7 + 19 8 12 3 5 4 5 5 4 4 6 5-11 69.0 69.1 69.7 + 19 8 13 6 5 4 7 6 7 5 6 6-11 68.6 69.1 69.7 + 19 8 14 4 4 4 5 4 3 2 2 4-11 69.1 69.0 69.7 + 19 8 15 0 3 3 3 4 3 5 4 3-11 69.4 69.0 69.8 + 19 8 16 5 3 5 7 4 3 3 2 4-11 69.2 69.0 69.8 + 19 8 17 5 7 3 4 4 3 2 2 4-11 69.7 69.0 69.8 + 19 8 18 12 6 5 3 3 4 5 4 5-11 69.2 68.9 69.7 + 19 8 19 3 4 2 3 3 4 2 3 3-11 69.3 68.9 69.8 + 19 8 20 6 5 3 3 5 3 3 4 4-11 68.9 68.9 69.8 + 19 8 21 4 5 4 2 3 5 4 2 4-11 68.4 68.9 69.8 + 19 8 22 5 4 4 5 3 3 9 6 5-11 67.3 68.9 69.8 + 19 8 23 3 6 4 5 2 2 3 3 4-11 68.0 68.9 69.8 + 19 8 24 7 5 2 5 2 4 3 0 4-11 67.8 68.8 69.8 + 19 8 25 4 4 6 2 2 2 2 3 3-11 67.4 68.8 69.8 + 19 8 26 5 2 4 7 4 4 5 9 5-11 67.2 68.8 69.8 + 19 8 27 12 15 7 15 7 6 9 7 10-11 67.5 68.8 69.8 + 19 8 28 7 6 5 3 4 3 3 2 4-11 67.2 68.8 69.8 + 19 8 29 3 0 0 3 6 4 3 3 3-11 67.2 68.7 69.8 + 19 8 30 3 4 4 5 12 12 18 15 9-11 67.8 68.7 69.8 + 19 8 31 22 39 27 56 67 27 32 32 38-11 67.7 68.7 69.8 + 19 9 1 39 39 56 48 56 32 39 39 44-11 68.3 68.7 69.8 + 19 9 2 48 27 22 12 7 12 27 18 22-11 70.0 68.7 69.8 + 19 9 3 15 12 9 7 6 5 6 6 8-11 69.8 68.6 69.8 + 19 9 4 15 12 12 7 9 7 15 7 11-11 69.8 68.6 69.8 + 19 9 5 18 27 15 12 6 5 7 9 12-11 69.4 68.5 69.7 + 19 9 6 6 18 7 12 3 2 6 3 7-11 70.0 68.5 69.7 + 19 9 7 2 5 9 5 5 6 6 9 6-11 75.0 68.4 69.7 + 19 9 8 6 7 9 6 6 9 9 12 8-11 68.5 68.4 69.7 + 19 9 9 15 9 15 18 15 18 6 9 13-11 69.8 68.4 69.7 + 19 9 10 5 5 3 7 6 2 0 2 4-11 70.9 68.3 69.7 + 19 9 11 3 4 7 6 4 4 3 2 4-11 69.0 68.3 69.7 + 19 9 12 5 3 6 7 5 6 5 4 5-11 70.3 68.2 69.7 + 19 9 13 7 12 12 6 6 4 5 4 7-11 69.1 68.2 69.7 + 19 9 14 0 7 6 6 4 3 6 7 5-11 69.4 68.1 69.7 + 19 9 15 4 12 7 5 5 6 7 15 8-11 68.4 68.1 69.7 + 19 9 16 22 27 5 4 3 7 7 7 10-11 69.4 68.0 69.7 + 19 9 17 18 5 3 3 2 3 9 22 8-11 68.2 68.0 69.7 + 19 9 18 12 6 7 7 15 4 5 5 8-11 66.9 68.0 69.7 + 19 9 19 4 2 3 3 3 2 5 2 3-11 67.7 68.0 69.7 + 19 9 20 4 2 2 2 3 2 3 3 3-11 67.7 68.0 69.7 + 19 9 21 9 7 9 7 5 4 4 5 6-11 68.2 68.0 69.7 + 19 9 22 9 4 2 2 2 3 3 2 3-11 68.8 68.0 69.6 + 19 9 23 2 0 2 3 2 5 3 3 3-11 66.6 68.0 69.6 + 19 9 24 9 15 9 3 18 22 12 4 12-11 67.5 68.0 69.6 + 19 9 25 2 3 7 6 2 2 2 5 4-11 67.9 68.0 69.6 + 19 9 26 9 3 2 2 2 0 0 4 3-11 67.4 68.0 69.6 + 19 9 27 2 5 6 6 18 32 56 48 22-11 66.8 68.0 69.6 + 19 9 28 9 32 39 32 18 15 22 22 24-11 67.5 68.0 69.6 + 19 9 29 6 12 9 6 4 22 22 18 12-11 67.7 68.0 69.6 + 19 9 30 15 18 22 9 7 12 5 9 12-11 68.1 68.0 69.6 + 19 10 1 18 27 15 9 4 3 3 5 11-11 68.8 68.0 69.6 + 19 10 2 15 0 0 7 12 4 4 9 6-11 68.4 68.0 69.6 + 19 10 3 6 5 4 4 2 3 5 4 4-11 68.3 68.0 69.6 + 19 10 4 4 6 12 6 7 7 6 3 6-11 68.1 68.0 69.6 + 19 10 5 5 5 4 7 6 6 6 15 7-11 67.8 68.0 69.6 + 19 10 6 4 7 6 5 3 5 0 2 4-11 67.3 68.1 69.6 + 19 10 7 2 3 4 3 5 12 9 7 6-11 67.6 68.1 69.6 + 19 10 8 5 5 5 3 3 4 6 4 4-11 67.0 68.1 69.6 + 19 10 9 6 9 6 22 5 6 4 5 8-11 67.9 68.1 69.6 + 19 10 10 5 32 32 7 5 15 5 6 13-11 67.3 68.1 69.5 + 19 10 11 3 4 7 7 5 15 9 5 7-11 68.3 68.1 69.5 + 19 10 12 7 7 3 5 4 3 4 3 5-11 68.0 68.1 69.5 + 19 10 13 3 0 0 0 0 0 0 0 0-11 66.9 68.1 69.5 + 19 10 14 3 6 4 4 4 7 7 3 5-11 65.8 68.1 69.5 + 19 10 15 9 3 0 2 0 2 6 5 3-11 66.9 68.1 69.4 + 19 10 16 6 5 7 5 4 2 6 6 5-11 65.9 68.0 69.4 + 19 10 17 6 5 6 5 4 4 4 4 5-11 65.6 68.0 69.4 + 19 10 18 4 7 6 5 5 3 4 6 5-11 65.6 68.0 69.4 + 19 10 19 4 3 3 4 4 6 6 4 4-11 65.5 68.0 69.4 + 19 10 20 3 5 4 3 3 3 5 9 4-11 64.4 67.9 69.4 + 19 10 21 12 2 3 6 3 0 4 5 4-11 63.4 67.9 69.4 + 19 10 22 0 2 3 3 2 5 5 0 3-11 64.9 67.9 69.4 + 19 10 23 2 0 0 0 2 3 3 0 1-11 63.9 67.9 69.4 + 19 10 24 0 5 5 27 15 32 27 32 18-11 64.3 67.9 69.4 + 19 10 25 39 27 56 27 18 18 9 9 25-11 67.9 67.8 69.4 + 19 10 26 18 15 15 39 27 32 22 22 24-11 67.8 67.8 69.4 + 19 10 27 27 15 15 6 5 15 27 12 15-11 68.0 67.8 69.4 + 19 10 28 9 12 18 7 6 7 12 9 10-11 68.5 67.8 69.4 + 19 10 29 12 15 3 0 3 12 9 5 7-11 68.2 67.9 69.4 + 19 10 30 4 5 4 4 9 9 9 9 7-11 68.8 67.9 69.4 + 19 10 31 22 2 2 5 0 2 12 6 6-11 70.2 67.9 69.4 + 19 11 1 5 9 3 2 3 0 0 0 3-11 69.6 67.9 69.4 + 19 11 2 0 0 0 0 0 0 2 4 1-11 69.6 67.9 69.4 + 19 11 3 4 2 0 0 0 0 0 3 1-11 68.3 67.9 69.4 + 19 11 4 4 3 7 4 4 3 3 2 4-11 69.6 67.9 69.4 + 19 11 5 6 4 0 4 4 7 7 7 5-11 69.2 67.9 69.4 + 19 11 6 6 4 3 3 7 5 5 12 6-11 68.1 67.9 69.3 + 19 11 7 7 7 3 4 0 3 2 2 4-11 68.5 67.9 69.3 + 19 11 8 3 2 0 3 3 4 3 4 3-11 68.9 67.9 69.3 + 19 11 9 9 6 0 2 3 3 2 6 4-11 68.3 67.9 69.3 + 19 11 10 5 2 5 4 2 0 0 0 2-11 69.4 67.9 69.3 + 19 11 11 0 6 5 12 9 12 6 12 8-11 68.1 67.9 69.2 + 19 11 12 9 3 3 2 4 4 2 0 3-11 69.3 67.9 69.2 + 19 11 13 0 0 0 0 0 0 3 5 1-11 69.6 67.9 69.2 + 19 11 14 7 4 2 2 3 2 0 0 3-11 68.4 68.0 69.2 + 19 11 15 0 0 0 2 2 4 5 3 2-11 68.5 68.0 69.2 + 19 11 16 6 6 2 3 6 6 9 7 6-11 68.2 68.0 69.2 + 19 11 17 5 4 3 0 2 2 5 12 4-11 68.5 68.1 69.2 + 19 11 18 0 0 0 0 0 0 2 0 0-11 68.8 68.1 69.2 + 19 11 19 0 5 2 0 0 4 4 0 2-11 67.6 68.1 69.2 + 19 11 20 0 4 0 0 0 0 0 4 1-11 68.5 68.1 69.2 + 19 11 21 6 6 4 6 7 15 15 22 10-11 69.1 68.1 69.2 + 19 11 22 27 7 9 7 12 15 15 9 13-11 67.9 68.1 69.2 + 19 11 23 15 7 5 12 12 9 12 6 10-11 68.5 68.2 69.2 + 19 11 24 18 15 12 6 12 9 5 9 11-11 68.8 68.2 69.2 + 19 11 25 6 3 4 4 3 4 3 7 4-11 67.7 68.3 69.2 + 19 11 26 6 7 0 0 0 2 2 2 2-11 68.6 68.3 69.2 + 19 11 27 2 3 3 4 4 7 6 5 4-11 69.6 68.3 69.2 + 19 11 28 5 2 2 2 2 4 6 2 3-11 68.3 68.4 69.2 + 19 11 29 3 3 2 3 3 4 5 12 4-11 67.9 68.4 69.2 + 19 11 30 5 3 2 2 3 3 4 5 3-11 68.5 68.5 69.2 + 19 12 1 5 3 0 0 3 4 5 6 3-11 69.2 68.6 69.2 + 19 12 2 2 4 3 0 0 0 0 0 1-11 68.4 68.7 69.2 + 19 12 3 0 2 0 2 0 2 2 2 1-11 67.9 68.8 69.2 + 19 12 4 4 6 3 2 4 2 3 0 3-11 67.6 68.8 69.2 + 19 12 5 0 0 0 3 3 3 2 0 1-11 68.6 68.8 69.2 + 19 12 6 0 4 3 2 3 3 2 3 3-11 68.3 68.9 69.2 + 19 12 7 3 0 0 3 2 2 2 3 2-11 68.2 68.9 69.2 + 19 12 8 0 2 2 0 2 3 5 5 2-11 69.4 68.9 69.2 + 19 12 9 12 4 0 0 2 3 2 6 4-11 68.6 68.9 69.2 + 19 12 10 3 7 4 4 2 2 3 4 4-11 68.4 68.9 69.3 + 19 12 11 12 7 2 3 4 6 3 6 5-11 68.6 68.9 69.3 + 19 12 12 4 0 5 5 2 0 2 6 3-11 68.3 68.9 69.3 + 19 12 13 5 7 5 2 0 2 3 0 3-11 66.8 68.9 69.3 + 19 12 14 3 0 2 0 2 2 0 5 2-11 68.1 68.9 69.3 + 19 12 15 7 7 4 2 2 2 3 9 5-11 68.8 68.8 69.3 + 19 12 16 3 0 2 0 4 3 2 0 2-11 67.7 68.9 69.3 + 19 12 17 0 3 4 3 0 0 0 0 1-11 68.2 68.9 69.3 + 19 12 18 4 5 5 18 22 27 12 5 12-11 68.0 68.9 69.3 + 19 12 19 15 22 22 9 7 9 5 2 11-11 67.7 69.0 69.3 + 19 12 20 9 4 4 2 6 7 4 6 5-11 67.7 69.0 69.3 + 19 12 21 9 2 5 4 3 2 6 3 4-11 68.4 69.1 69.3 + 19 12 22 6 0 6 0 2 2 4 4 3-11 68.7 69.1 69.3 + 19 12 23 0 5 2 5 4 3 0 2 3-11 70.2 69.1 69.3 + 19 12 24 5 0 2 2 2 0 0 0 1-11 70.3 69.1 69.3 + 19 12 25 2 0 3 3 2 4 6 6 3-11 69.8 69.1 69.3 + 19 12 26 9 4 2 3 2 3 3 4 4-11 69.7 69.1 69.3 + 19 12 27 4 3 3 3 0 2 0 0 2-11 70.1 69.1 69.3 + 19 12 28 3 2 0 0 0 2 0 2 1-11 69.8 69.2 69.3 + 19 12 29 0 0 2 0 0 0 0 3 1-11 69.6 69.2 69.3 + 19 12 30 0 0 2 2 0 3 2 3 2-11 68.6 69.2 69.3 + 19 12 31 3 4 2 0 3 3 5 3 3-11 68.2 69.2 69.3 + 20 1 1 2 0 0 3 3 5 4 3 3-11 69.4 69.2 69.3 + 20 1 2 0 0 2 2 2 3 4 4 2-11 69.5 69.2 69.3 + 20 1 3 3 4 12 7 4 3 2 5 5-11 68.9 69.2 69.3 + 20 1 4 6 3 3 3 4 7 9 7 5-11 69.8 69.2 69.4 + 20 1 5 6 4 6 5 7 7 18 12 8-11 69.4 69.2 69.4 + 20 1 6 18 15 6 2 3 4 9 6 8-11 68.1 69.2 69.4 + 20 1 7 4 6 4 2 3 4 5 7 4-11 69.3 69.2 69.4 + 20 1 8 4 4 2 2 6 12 6 9 6-11 71.2 69.2 69.4 + 20 1 9 12 15 22 9 6 9 9 6 11-11 71.9 69.3 69.4 + 20 1 10 4 3 9 9 6 6 5 3 6-11 70.4 69.3 69.4 + 20 1 11 7 9 7 5 2 5 2 3 5-11 71.0 69.3 69.4 + 20 1 12 4 6 3 2 2 0 0 2 2-11 69.5 69.3 69.4 + 20 1 13 2 3 2 2 2 0 3 3 2-11 69.1 69.3 69.4 + 20 1 14 2 2 2 3 2 2 0 0 2-11 69.5 69.3 69.4 + 20 1 15 2 0 3 7 3 3 3 5 3-11 68.9 69.3 69.4 + 20 1 16 3 9 6 5 3 3 2 2 4-11 69.4 69.3 69.4 + 20 1 17 3 2 2 0 2 5 4 2 3-11 67.9 69.4 69.4 + 20 1 18 6 6 3 0 2 0 0 2 2-11 69.0 69.4 69.4 + 20 1 19 0 3 0 0 0 2 0 0 1-11 69.5 69.4 69.4 + 20 1 20 0 2 0 0 0 0 2 0 1-11 69.0 69.4 69.4 + 20 1 21 0 0 3 4 5 12 9 9 5-11 68.3 69.4 69.4 + 20 1 22 6 9 4 5 4 2 4 15 6-11 69.6 69.4 69.4 + 20 1 23 6 9 2 2 0 2 5 3 4-11 68.6 69.4 69.4 + 20 1 24 4 0 0 0 2 2 2 2 2-11 68.8 69.4 69.4 + 20 1 25 0 9 3 2 2 0 2 0 2-11 70.4 69.4 69.5 + 20 1 26 4 3 0 2 4 6 3 0 3-11 72.4 69.4 69.5 + 20 1 27 2 4 4 0 2 0 0 0 2-11 70.7 69.4 69.5 + 20 1 28 4 5 4 2 0 2 3 15 4-11 72.0 69.4 69.5 + 20 1 29 15 18 6 5 2 6 6 7 8-11 72.0 69.5 69.5 + 20 1 30 7 12 7 6 9 18 18 15 12-11 71.9 69.5 69.5 + 20 1 31 9 22 6 7 4 3 0 5 7-11 71.7 69.5 69.5 + 20 2 1 4 2 4 3 7 7 6 9 5-11 70.4 69.5 69.6 + 20 2 2 7 4 4 3 2 5 9 9 5-11 70.2 69.5 69.6 + 20 2 3 5 7 5 2 2 2 4 2 4-11 70.0 69.4 69.6 + 20 2 4 7 6 3 4 3 5 5 12 6-11 68.3 69.4 69.6 + 20 2 5 6 7 5 6 4 2 3 2 4-11 68.6 69.4 69.6 + 20 2 6 3 9 27 15 15 9 27 15 15-11 69.3 69.4 69.6 + 20 2 7 15 15 15 5 15 12 12 18 13-11 68.9 69.5 69.7 + 20 2 8 12 6 3 3 7 5 5 5 6-11 70.0 69.5 69.7 + 20 2 9 12 6 4 4 3 6 6 7 6-11 68.8 69.5 69.7 + 20 2 10 7 4 6 4 3 3 4 5 5-11 68.3 69.5 69.7 + 20 2 11 12 15 6 2 0 0 3 5 5-11 69.3 69.5 69.7 + 20 2 12 6 7 5 7 3 0 0 5 4-11 69.8 69.5 69.7 + 20 2 13 2 0 3 2 0 2 2 5 2-11 69.4 69.6 69.8 + 20 2 14 6 4 2 0 0 0 0 3 2-11 69.5 69.6 69.8 + 20 2 15 4 0 0 7 12 4 3 3 4-11 68.8 69.6 69.8 + 20 2 16 9 3 0 3 2 2 0 0 2-11 68.8 69.6 69.8 + 20 2 17 5 2 5 3 4 5 15 15 7-11 69.0 69.6 69.8 + 20 2 18 3 9 22 7 15 15 18 12 13-11 69.4 69.6 69.8 + 20 2 19 9 27 18 18 7 5 4 6 12-11 69.4 69.5 69.8 + 20 2 20 9 12 6 4 6 3 9 9 7-11 69.2 69.5 69.8 + 20 2 21 22 12 12 18 6 15 5 15 13-11 69.6 69.5 69.8 + 20 2 22 12 7 5 6 6 7 12 6 8-11 70.7 69.5 69.9 + 20 2 23 3 2 4 2 2 5 7 9 4-11 68.8 69.5 69.9 + 20 2 24 7 6 0 2 3 2 3 5 4-11 68.7 69.5 69.9 + 20 2 25 5 2 2 2 3 0 0 2 2-11 69.1 69.6 69.9 + 20 2 26 2 2 3 0 3 2 9 4 3-11 68.7 69.6 69.9 + 20 2 27 7 0 2 3 3 2 2 3 3-11 69.6 69.6 69.9 + 20 2 28 6 6 4 6 5 5 3 9 6-11 69.3 69.6 69.9 + 20 2 29 6 6 5 9 9 12 7 22 10-11 68.8 69.6 69.9 + 20 3 1 18 5 5 7 3 3 3 4 6-11 68.1 69.6 69.9 + 20 3 2 6 4 0 3 7 5 2 4 4-11 68.1 69.7 69.9 + 20 3 3 7 4 3 5 7 6 3 7 5-11 68.8 69.7 70.0 + 20 3 4 0 5 4 4 6 15 7 5 6-11 68.7 69.7 70.0 + 20 3 5 3 4 4 3 6 3 3 0 3-11 68.3 69.7 70.0 + 20 3 6 3 2 4 6 7 6 0 0 4-11 68.9 69.7 70.0 + 20 3 7 2 4 5 4 7 3 2 2 4-11 68.8 69.7 70.0 + 20 3 8 5 6 5 2 3 6 6 6 5-11 69.2 69.6 69.9 + 20 3 9 3 7 6 3 4 5 6 4 5-11 69.8 69.6 70.0 + 20 3 10 7 2 5 3 3 3 0 4 3-11 69.8 69.6 70.0 + 20 3 11 6 2 2 3 3 2 0 2 3-11 69.6 69.5 70.0 + 20 3 12 3 5 6 3 5 9 12 3 6-11 69.1 69.5 70.0 + 20 3 13 7 12 7 9 4 6 4 4 7-11 67.9 69.5 70.0 + 20 3 14 0 0 2 3 3 2 4 3 2-11 67.4 69.5 70.0 + 20 3 15 0 2 2 6 5 4 6 6 4-11 69.5 69.5 70.0 + 20 3 16 7 2 3 4 5 4 6 3 4-11 69.1 69.5 70.0 + 20 3 17 6 2 5 6 5 6 5 6 5-11 70.9 69.6 70.0 + 20 3 18 2 3 3 2 7 7 15 6 6-11 71.4 69.6 70.0 + 20 3 19 32 9 9 7 9 6 3 6 10-11 71.5 69.6 70.0 + 20 3 20 9 4 7 0 3 7 7 12 6-11 71.1 69.6 70.0 + 20 3 21 6 9 15 7 5 7 6 5 8-11 70.3 69.6 70.0 + 20 3 22 9 7 4 4 5 6 9 6 6-11 69.8 69.6 70.0 + 20 3 23 9 18 5 15 9 7 18 7 11-11 69.9 69.7 70.0 + 20 3 24 12 4 4 2 2 2 2 0 4-11 70.8 69.7 70.0 + 20 3 25 6 0 2 3 4 0 2 6 3-11 70.9 69.7 70.1 + 20 3 26 2 2 2 4 5 6 3 15 5-11 69.9 69.7 70.1 + 20 3 27 7 6 4 3 4 7 7 2 5-11 69.2 69.7 70.1 + 20 3 28 0 3 5 6 5 2 6 9 5-11 69.0 69.7 70.1 + 20 3 29 3 2 7 7 18 7 6 4 7-11 68.6 69.7 70.1 + 20 3 30 5 9 5 4 5 18 18 27 11-11 69.1 69.8 70.1 + 20 3 31 18 27 22 7 15 12 9 5 14-11 69.8 69.8 70.2 + 20 4 1 7 9 4 3 2 5 4 7 5-11 69.2 69.7 70.2 + 20 4 2 4 7 7 5 4 3 7 12 6-11 69.7 69.8 70.2 + 20 4 3 9 7 3 3 4 5 9 22 8-11 70.0 69.8 70.2 + 20 4 4 7 2 0 5 2 3 6 6 4-11 70.2 69.8 70.2 + 20 4 5 6 5 3 5 4 3 2 4 4-11 71.3 69.8 70.2 + 20 4 6 4 4 2 0 4 2 0 0 2-11 70.1 69.8 70.2 + 20 4 7 0 0 0 2 0 2 7 7 2-11 70.1 69.8 70.2 + 20 4 8 6 12 7 12 18 22 6 18 13-11 70.7 69.8 70.2 + 20 4 9 6 3 3 3 5 2 6 4 4-11 70.6 69.9 70.3 + 20 4 10 0 3 4 5 4 9 4 2 4-11 69.5 69.9 70.3 + 20 4 11 4 3 3 3 7 18 9 9 7-11 70.9 69.9 70.3 + 20 4 12 3 6 5 4 9 6 12 5 6-11 71.1 70.0 70.3 + 20 4 13 4 6 3 3 5 5 5 5 5-11 70.7 70.0 70.3 + 20 4 14 9 18 9 6 3 2 2 7 7-11 69.4 70.0 70.3 + 20 4 15 15 12 6 4 4 3 4 5 7-11 68.9 70.1 70.3 + 20 4 16 7 4 4 2 2 4 4 2 4-11 69.0 70.1 70.4 + 20 4 17 4 2 5 4 3 2 2 5 3-11 68.4 70.1 70.4 + 20 4 18 5 6 5 4 3 2 2 0 3-11 70.4 70.1 70.4 + 20 4 19 0 0 2 0 3 2 2 0 1-11 69.2 70.2 70.4 + 20 4 20 9 15 18 39 32 9 2 3 16-11 68.9 70.2 70.5 + 20 4 21 5 6 4 6 12 18 7 9 8-11 69.8 70.2 70.5 + 20 4 22 15 15 5 4 6 4 4 5 7-11 71.4 70.2 70.5 + 20 4 23 3 4 2 4 2 2 2 6 3-11 69.5 70.3 70.5 + 20 4 24 9 3 3 4 4 7 9 12 6-11 70.5 70.4 70.6 + 20 4 25 9 7 6 2 3 4 0 0 4-11 69.8 70.4 70.6 + 20 4 26 3 7 3 5 6 6 6 12 6-11 70.1 70.4 70.6 + 20 4 27 12 5 4 3 6 7 7 4 6-11 69.9 70.5 70.6 + 20 4 28 12 4 0 5 4 5 3 5 5-11 69.9 70.5 70.6 + 20 4 29 4 2 0 2 3 2 3 2 2-11 71.0 70.5 70.7 + 20 4 30 4 2 2 2 0 0 0 0 1-11 70.9 70.6 70.7 + 20 5 1 2 5 7 5 6 4 2 3 4-11 71.3 70.6 70.8 + 20 5 2 0 6 6 5 4 4 3 4 4-11 70.3 70.7 70.8 + 20 5 3 2 5 2 2 3 2 6 12 4-11 69.8 70.7 70.8 + 20 5 4 6 5 3 5 7 5 2 4 5-11 70.5 70.7 70.8 + 20 5 5 5 5 4 5 3 7 6 7 5-11 70.5 70.7 70.9 + 20 5 6 18 9 0 2 3 2 3 2 5-11 71.1 70.8 70.9 + 20 5 7 2 4 5 4 4 2 2 2 3-11 70.0 70.8 71.0 + 20 5 8 4 2 3 3 5 0 2 4 3-11 69.2 70.8 71.0 + 20 5 9 3 0 0 2 2 2 2 0 1-11 72.4 70.8 71.1 + 20 5 10 2 0 0 2 2 4 6 9 3-11 69.3 70.8 71.1 + 20 5 11 5 6 6 5 2 2 2 3 4-11 67.5 70.9 71.2 + 20 5 12 3 2 3 2 3 2 2 9 3-11 70.3 70.9 71.2 + 20 5 13 5 2 0 3 3 4 2 5 3-11 70.2 70.9 71.3 + 20 5 14 2 2 2 2 2 2 2 2 2-11 69.0 70.9 71.3 + 20 5 15 2 4 4 4 2 2 2 0 3-11 69.4 70.8 71.4 + 20 5 16 0 2 3 3 6 3 2 2 3-11 71.0 70.8 71.4 + 20 5 17 0 2 0 3 2 3 2 4 2-11 71.2 70.8 71.4 + 20 5 18 2 0 0 2 3 7 6 3 3-11 71.8 70.9 71.4 + 20 5 19 4 4 5 6 5 3 4 5 5-11 70.3 70.9 71.4 + 20 5 20 4 2 0 2 3 3 3 2 2-11 71.3 70.9 71.5 + 20 5 21 4 7 4 3 3 4 5 7 5-11 71.9 70.9 71.5 + 20 5 22 6 4 4 3 7 7 9 3 5-11 72.6 70.9 71.5 + 20 5 23 5 6 4 2 2 3 3 0 3-11 70.9 70.9 71.6 + 20 5 24 3 2 0 2 6 9 6 4 4-11 70.6 70.9 71.6 + 20 5 25 6 4 4 3 6 4 4 7 5-11 72.1 70.9 71.7 + 20 5 26 4 3 3 3 2 2 2 6 3-11 71.6 70.9 71.8 + 20 5 27 4 2 2 4 5 2 5 0 3-11 69.9 71.0 71.8 + 20 5 28 0 3 2 2 4 3 2 3 2-11 69.3 71.0 71.9 + 20 5 29 3 2 2 2 3 2 2 6 3-11 71.5 71.0 72.0 + 20 5 30 7 12 18 18 15 12 18 18 15-11 71.9 71.0 72.1 + 20 5 31 4 4 2 2 4 4 2 4 3-11 72.8 71.0 72.3 + 20 6 1 3 4 2 4 2 4 12 12 5-11 71.2 71.0 72.4 + 20 6 2 6 15 5 5 6 4 6 5 7-11 72.4 71.0 72.4 + 20 6 3 4 4 0 2 4 3 2 2 3-11 72.0 71.0 72.5 + 20 6 4 3 2 4 2 2 4 6 6 4-11 72.1 71.0 72.6 + 20 6 5 2 2 2 4 5 4 3 2 3-11 73.2 71.1 72.7 + 20 6 6 2 2 2 3 5 2 2 0 2-11 73.8 71.1 72.8 + 20 6 7 3 5 2 4 4 9 22 9 7-11 73.8 71.1 72.8 + 20 6 8 6 7 3 3 3 4 4 2 4-11 73.2 71.1 72.9 + 20 6 9 3 3 0 2 3 4 7 12 4-11 74.6 71.1 72.9 + 20 6 10 6 9 9 9 4 4 4 5 6-11 73.2 71.1 72.9 + 20 6 11 6 5 2 2 3 2 2 0 3-11 73.7 71.1 73.0 + 20 6 12 2 4 3 3 3 3 2 2 3-11 72.7 71.1 73.0 + 20 6 13 0 3 3 2 5 3 2 0 2-11 71.6 71.2 73.0 + 20 6 14 0 2 2 0 0 3 4 3 2-11 72.4 71.2 73.1 + 20 6 15 2 3 3 5 4 2 3 0 3-11 72.7 71.2 73.1 + 20 6 16 3 4 6 4 3 4 9 6 5-11 71.5 71.2 73.1 + 20 6 17 5 3 3 4 6 5 0 0 3-11 71.0 71.3 73.2 + 20 6 18 2 6 4 4 4 3 4 3 4-11 70.2 71.3 73.2 + 20 6 19 3 4 2 4 3 3 5 6 4-11 71.1 71.4 73.2 + 20 6 20 7 7 9 4 2 4 3 4 5-11 70.0 71.4 73.3 + 20 6 21 3 3 2 5 5 3 3 3 3-11 69.9 71.5 73.3 + 20 6 22 0 2 3 2 2 2 2 4 2-11 69.9 71.6 73.3 + 20 6 23 3 2 5 2 3 3 2 5 3-11 69.3 71.6 73.3 + 20 6 24 4 4 3 4 3 3 2 3 3-11 69.1 71.7 73.4 + 20 6 25 3 3 2 2 2 3 2 4 3-11 71.2 71.8 73.4 + 20 6 26 7 2 2 2 4 4 9 12 5-11 70.0 71.8 73.5 + 20 6 27 12 5 5 9 9 2 3 5 6-11 71.2 71.9 73.5 + 20 6 28 4 4 2 3 0 2 3 4 3-11 71.5 71.9 73.5 + 20 6 29 3 3 0 2 2 3 2 2 2-11 71.0 72.0 73.6 + 20 6 30 6 6 6 2 2 3 0 5 4-11 70.4 72.1 73.6 + 20 7 1 3 4 3 4 2 2 9 7 4-11 71.2 72.1 73.7 + 20 7 2 3 3 2 2 3 5 4 3 3-11 70.3 72.2 73.7 + 20 7 3 2 4 4 4 3 3 3 2 3-11 71.6 72.2 73.7 + 20 7 4 4 4 5 4 7 5 9 15 7-11 71.8 72.3 73.7 + 20 7 5 6 12 18 12 5 4 7 12 10-11 71.8 72.3 73.8 + 20 7 6 4 4 5 3 5 5 5 2 4-11 70.8 72.3 73.8 + 20 7 7 2 4 6 2 2 2 2 3 3-11 70.0 72.3 73.8 + 20 7 8 0 3 2 2 2 2 2 2 2-11 69.4 72.3 73.8 + 20 7 9 2 2 4 3 4 4 3 0 3-11 71.0 72.4 73.8 + 20 7 10 0 2 5 2 2 2 2 0 2-11 71.1 72.4 73.8 + 20 7 11 3 2 0 2 2 2 3 4 2-11 71.0 72.4 73.8 + 20 7 12 2 0 2 3 3 2 0 2 2-11 69.8 72.4 73.8 + 20 7 13 4 5 7 6 3 4 5 12 6-11 70.5 72.4 73.8 + 20 7 14 22 22 18 5 6 4 2 2 10-11 71.2 72.4 73.8 + 20 7 15 0 5 5 4 7 7 3 0 4-11 70.6 72.4 73.8 + 20 7 16 0 2 2 6 4 4 4 4 3-11 70.9 72.3 73.8 + 20 7 17 4 2 2 3 4 5 4 5 4-11 71.3 72.3 73.8 + 20 7 18 5 3 4 2 4 2 2 4 3-11 70.0 72.3 73.8 + 20 7 19 0 3 4 4 4 3 3 6 3-11 71.1 72.3 73.9 + 20 7 20 2 4 4 2 2 3 3 4 3-11 71.6 72.2 73.9 + 20 7 21 4 5 3 2 3 4 3 6 4-11 72.1 72.2 73.9 + 20 7 22 3 3 2 2 2 5 4 0 3-11 72.2 72.2 73.9 + 20 7 23 2 2 3 3 4 2 2 2 3-11 72.5 72.1 73.9 + 20 7 24 4 12 12 7 9 22 12 15 12-11 71.7 72.1 73.9 + 20 7 25 22 12 9 7 7 6 6 27 12-11 72.6 72.1 73.9 + 20 7 26 4 2 2 2 3 2 2 4 3-11 73.6 72.1 74.0 + 20 7 27 3 3 4 2 3 3 3 4 3-11 73.7 72.1 74.0 + 20 7 28 7 3 3 2 4 3 3 3 4-11 74.1 72.1 74.0 + 20 7 29 7 3 6 2 5 3 3 2 4-11 74.9 72.1 74.0 + 20 7 30 4 4 6 3 2 2 0 3 3-11 75.6 72.1 74.0 + 20 7 31 4 4 2 4 5 4 3 3 4-11 74.4 72.1 74.0 + 20 8 1 0 3 3 2 3 4 4 2 3-11 74.1 72.1 74.0 + 20 8 2 2 3 4 12 18 15 7 15 10-11 74.9 72.1 74.0 + 20 8 3 18 18 15 12 9 18 15 18 15-11 74.8 72.1 74.0 + 20 8 4 7 18 5 6 5 5 5 6 7-11 75.1 72.1 74.0 + 20 8 5 6 5 4 3 3 4 9 5 5-11 75.6 72.1 74.0 + 20 8 6 3 5 2 3 6 5 3 7 4-11 75.1 72.1 74.0 + 20 8 7 6 4 0 2 2 2 3 5 3-11 76.0 72.1 74.0 + 20 8 8 7 6 5 4 5 4 3 2 5-11 76.8 72.1 74.0 + 20 8 9 0 2 2 3 2 2 2 3 2-11 76.0 72.1 74.0 + 20 8 10 2 2 2 2 0 3 2 3 2-11 76.2 72.1 74.0 + 20 8 11 4 3 2 2 2 0 0 2 2-11 75.4 72.1 74.0 + 20 8 12 2 5 4 3 4 3 3 2 3-11 75.1 72.1 74.0 + 20 8 13 6 3 2 2 5 2 2 5 3-11 74.2 72.1 74.0 + 20 8 14 4 6 2 2 3 2 3 3 3-11 72.6 72.1 74.0 + 20 8 15 0 0 4 2 2 2 2 2 2-11 72.4 72.1 74.0 + 20 8 16 4 4 4 4 2 2 2 3 3-11 72.6 72.2 74.1 + 20 8 17 3 2 3 4 3 2 2 3 3-11 72.5 72.2 74.0 + 20 8 18 4 5 5 5 6 3 4 15 6-11 73.1 72.3 74.0 + 20 8 19 12 9 2 2 2 3 3 4 5-11 72.2 72.3 74.1 + 20 8 20 2 3 0 3 4 3 2 3 3-11 71.6 72.3 74.1 + 20 8 21 3 2 2 2 2 3 6 5 3-11 72.6 72.4 74.1 + 20 8 22 3 7 6 6 4 5 6 9 6-11 71.6 72.4 74.1 + 20 8 23 7 7 5 7 9 6 4 12 7-11 72.1 72.4 74.1 + 20 8 24 3 3 2 0 3 3 2 0 2-11 71.8 72.4 74.1 + 20 8 25 3 2 3 2 3 4 4 2 3-11 72.1 72.5 74.1 + 20 8 26 6 9 4 6 3 9 4 6 6-11 71.9 72.5 74.1 + 20 8 27 9 5 6 6 18 4 4 4 7-11 71.4 72.5 74.1 + 20 8 28 0 2 3 6 12 39 6 9 10-11 71.5 72.5 74.2 + 20 8 29 12 12 18 9 5 7 18 18 12-11 71.6 72.5 74.2 + 20 8 30 7 18 7 5 6 7 4 12 8-11 71.4 72.5 74.2 + 20 8 31 22 32 12 39 32 22 22 15 25-11 70.5 72.5 74.2 + 20 9 1 12 32 12 15 15 27 12 15 18-11 70.8 72.5 74.2 + 20 9 2 12 9 7 12 12 9 6 6 9-11 69.5 72.5 74.2 + 20 9 3 0 0 4 3 5 3 2 6 3-11 71.2 72.5 74.3 + 20 9 4 12 5 5 7 7 6 9 2 7-11 70.8 72.6 74.3 + 20 9 5 6 5 6 7 6 2 4 4 5-11 70.3 72.6 74.3 + 20 9 6 7 4 2 4 4 2 3 6 4-11 70.5 72.6 74.3 + 20 9 7 4 5 5 3 3 4 2 0 3-11 71.3 72.5 74.3 + 20 9 8 3 2 4 4 3 5 4 0 3-11 70.9 72.6 74.3 + 20 9 9 3 0 0 0 0 2 0 0 1-11 70.7 72.5 74.4 + 20 9 10 0 0 0 2 2 2 4 2 2-11 70.2 72.5 74.4 + 20 9 11 0 0 2 2 0 3 4 4 2-11 69.6 72.5 74.4 + 20 9 12 5 5 7 5 2 3 5 4 5-11 70.2 72.5 74.4 + 20 9 13 4 5 5 2 5 6 5 15 6-11 70.6 72.5 74.4 + 20 9 14 18 18 9 12 15 4 3 7 11-11 69.7 72.4 74.4 + 20 9 15 9 7 5 5 2 3 5 5 5-11 69.6 72.4 74.4 + 20 9 16 0 2 4 4 0 4 4 2 3-11 70.2 72.4 74.5 + 20 9 17 0 2 5 3 2 0 2 5 2-11 70.4 72.5 74.5 + 20 9 18 4 2 0 3 6 6 5 0 3-11 70.6 72.6 74.5 + 20 9 19 0 4 3 2 0 3 4 0 2-11 71.2 72.7 74.5 + 20 9 20 0 0 0 9 4 3 3 5 3-11 70.7 72.7 74.5 + 20 9 21 2 2 0 2 2 0 4 3 2-11 71.9 72.7 74.5 + 20 9 22 5 12 7 6 3 3 3 3 5-11 72.9 72.7 74.5 + 20 9 23 6 4 6 6 22 7 22 9 10-11 73.7 72.8 74.5 + 20 9 24 15 18 67 22 18 15 2 5 20-11 74.1 72.9 74.5 + 20 9 25 15 18 12 9 5 32 15 27 17-11 73.8 73.1 74.5 + 20 9 26 27 39 22 27 39 12 7 18 24-11 72.9 73.3 74.6 + 20 9 27 9 27 6 6 6 12 39 56 20-11 74.4 73.5 74.6 + 20 9 28 39 39 27 18 22 27 39 48 32-11 74.1 73.7 74.6 + 20 9 29 27 18 18 12 12 15 12 18 17-11 73.0 73.9 74.6 + 20 9 30 27 22 15 12 7 6 18 18 16-11 73.5 74.1 74.6 + 20 10 1 9 5 7 15 12 18 9 6 10-11 73.0 74.3 74.6 + 20 10 2 7 7 5 12 9 6 9 5 8-11 72.3 74.5 74.6 + 20 10 3 6 5 5 6 3 3 4 4 5-11 71.9 74.6 74.6 + 20 10 4 3 6 2 3 6 2 2 4 4-11 71.2 74.7 74.7 + 20 10 5 2 2 4 4 9 18 32 12 10-11 72.2 74.8 74.7 + 20 10 6 9 22 4 3 4 2 2 3 6-11 71.6 74.8 74.7 + 20 10 7 2 3 2 4 9 5 3 4 4-11 70.6 74.9 74.7 + 20 10 8 3 2 3 2 0 2 2 3 2-11 71.5 75.0 74.7 + 20 10 9 2 0 2 0 0 0 0 0 1-11 72.9 75.0 74.7 + 20 10 10 0 0 0 3 0 3 0 0 1-11 73.3 75.0 74.7 + 20 10 11 0 0 2 2 2 3 2 5 2-11 72.6 75.2 74.7 + 20 10 12 2 0 0 2 3 4 3 5 2-11 73.4 75.3 74.7 + 20 10 13 4 3 2 2 0 3 2 2 2-11 72.0 75.5 74.7 + 20 10 14 0 0 0 0 0 0 0 0 0-11 74.1 75.8 74.7 + 20 10 15 0 0 0 0 0 2 3 4 1-11 73.4 76.1 74.7 + 20 10 16 5 3 3 3 3 3 3 5 4-11 74.8 76.5 74.7 + 20 10 17 3 6 7 4 3 2 5 5 4-11 72.5 76.9 74.8 + 20 10 18 3 2 2 2 0 2 2 4 2-11 75.3 77.3 74.8 + 20 10 19 2 4 4 7 15 6 6 6 6-11 74.2 77.7 74.8 + 20 10 20 9 6 3 2 0 2 4 3 4-11 74.0 78.3 74.8 + 20 10 21 9 9 22 7 3 3 4 6 8-11 73.0 78.7 74.9 + 20 10 22 18 2 2 2 4 3 5 5 5-11 74.2 79.1 74.9 + 20 10 23 5 5 2 2 6 12 39 39 14-11 72.8 79.5 74.9 + 20 10 24 18 27 27 15 6 18 15 9 17-11 71.3 79.8 74.9 + 20 10 25 12 5 7 12 22 22 22 9 14-11 73.3 80.1 74.9 + 20 10 26 7 22 18 12 18 7 15 15 14-11 74.1 80.5 75.0 + 20 10 27 6 6 18 12 2 2 9 7 8-11 81.4 80.7 75.0 + 20 10 28 6 12 5 6 12 18 18 6 10-11 86.4 80.9 75.0 + 20 10 29 4 12 12 18 9 27 5 7 12-11 83.5 81.0 75.0 + 20 10 30 7 5 3 4 2 2 4 7 4-11 78.4 81.1 75.0 + 20 10 31 3 5 9 7 6 9 0 3 5-11 75.6 81.2 75.0 + 20 11 1 3 2 6 7 15 15 12 4 8-11 76.1 81.3 75.1 + 20 11 2 0 0 3 2 0 0 3 4 2-11 80.3 81.4 75.1 + 20 11 3 6 0 0 3 2 0 0 3 2-11 81.6 81.5 75.1 + 20 11 4 3 2 2 2 2 2 2 0 2-11 86.6 81.5 75.1 + 20 11 5 0 0 2 3 5 2 4 6 3-11 89.1 81.6 75.1 + 20 11 6 4 6 5 6 7 12 9 5 7-11 92.1 81.7 75.1 + 20 11 7 5 3 4 5 3 7 12 15 7-11 88.9 81.8 75.1 + 20 11 8 5 6 7 4 4 5 3 0 4-11 88.3 81.8 75.1 + 20 11 9 0 0 0 0 0 0 0 0 0-11 88.3 81.9 75.1 + 20 11 10 0 0 2 2 0 0 0 0 1-11 85.1 82.0 75.2 + 20 11 11 0 0 2 2 3 5 5 7 3-11 86.3 82.0 75.2 + 20 11 12 4 0 5 5 2 2 2 3 3-11 83.3 82.2 75.2 + 20 11 13 4 4 4 3 3 0 2 2 3-11 80.2 82.3 75.2 + 20 11 14 0 0 2 0 3 3 7 4 2-11 78.5 82.5 75.2 + 20 11 15 5 7 0 2 2 4 0 0 3-11 76.9 82.6 75.2 + 20 11 16 0 0 0 0 2 2 0 0 1-11 74.9 82.8 75.3 + 20 11 17 0 0 0 4 3 0 0 4 1-11 77.3 83.0 75.3 + 20 11 18 4 2 5 2 2 0 3 3 3-11 75.5 83.1 75.3 + 20 11 19 0 0 2 5 0 0 2 5 2-11 74.9 83.2 75.3 + 20 11 20 9 15 7 7 3 3 6 3 7-11 79.7 83.3 75.3 + 20 11 21 7 6 4 3 12 12 18 18 10-11 82.9 83.4 75.3 + 20 11 22 12 22 27 27 39 27 22 18 24-11 85.5 83.5 75.4 + 20 11 23 7 12 9 7 4 7 6 6 7-11 93.1 83.5 75.4 + 20 11 24 6 4 0 2 3 4 2 4 3-11 97.9 83.6 75.4 + 20 11 25 3 9 3 5 5 7 6 12 6-11101.0 83.6 75.5 + 20 11 26 6 2 4 4 9 7 9 5 6-11103.0 83.6 75.5 + 20 11 27 4 9 9 7 12 5 2 3 6-11103.5 83.6 75.5 + 20 11 28 15 18 12 5 7 6 6 5 9-11106.6 83.5 75.5 + 20 11 29 0 5 7 5 4 5 0 0 3-11113.1 83.5 75.6 + 20 11 30 4 15 18 7 3 5 0 5 7-11106.4 83.5 75.6 + 20 12 1 4 0 0 0 0 2 2 3 1-11101.2 83.5 75.6 + 20 12 2 5 2 5 3 0 3 3 3 3-11101.9 83.4 75.6 + 20 12 3 0 0 0 2 4 6 2 2 2-11 99.9 83.4 75.6 + 20 12 4 0 0 0 0 0 2 0 0 0-11 93.0 83.4 75.7 + 20 12 5 0 0 0 3 7 4 12 4 4-11 97.0 83.3 75.7 + 20 12 6 5 4 4 4 7 4 7 9 6-11 88.2 83.3 75.7 + 20 12 7 3 0 2 3 0 3 0 0 1-11 86.8 83.2 75.7 + 20 12 8 3 6 5 4 4 0 2 4 4-11 80.0 83.1 75.7 + 20 12 9 6 12 7 2 2 6 15 5 7-11 79.6 83.0 75.8 + 20 12 10 18 9 4 2 3 3 5 9 7-11 79.1 82.9 75.8 + 20 12 11 12 9 5 4 3 3 7 5 6-11 80.8 82.9 75.8 + 20 12 12 5 3 4 2 2 3 4 6 4-11 79.3 82.9 75.8 + 20 12 13 15 5 0 0 3 2 6 5 5-11 78.1 82.8 75.8 + 20 12 14 0 2 0 3 2 4 6 4 3-11 80.4 82.8 75.8 + 20 12 15 5 0 3 0 0 0 3 4 2-11 80.3 82.6 75.8 + 20 12 16 4 2 0 0 2 3 2 3 2-11 79.3 82.5 75.9 + 20 12 17 3 2 0 0 0 0 0 2 1-11 79.2 82.2 75.9 + 20 12 18 2 0 2 2 2 3 2 0 2-11 79.2 82.0 75.9 + 20 12 19 5 2 4 6 7 4 5 4 5-11 79.1 81.9 76.0 + 20 12 20 3 3 5 4 5 5 2 5 4-11 81.1 81.7 76.0 + 20 12 21 12 18 9 7 7 3 9 32 12-11 77.0 81.5 76.0 + 20 12 22 18 18 15 12 12 9 15 6 13-11 83.0 81.3 76.0 + 20 12 23 18 32 9 9 6 5 5 7 11-11 83.6 81.2 76.1 + 20 12 24 3 12 7 7 12 15 4 5 8-11 84.5 81.0 76.1 + 20 12 25 9 5 4 3 7 4 0 0 4-11 84.9 81.0 76.2 + 20 12 26 0 6 3 2 3 3 6 7 4-11 85.0 80.9 76.2 + 20 12 27 6 5 3 6 6 4 4 7 5-11 84.9 80.8 76.3 + 20 12 28 7 7 9 7 7 4 6 5 7-11 84.3 80.8 76.3 + 20 12 29 9 12 3 3 3 5 5 7 6-11 81.4 80.7 76.4 + 20 12 30 9 12 6 7 7 4 3 12 8-11 80.1 80.7 76.4 + 20 12 31 5 4 2 4 3 2 0 2 3-11 78.5 80.5 76.5 + 21 1 1 0 2 3 2 2 5 3 3 3-11 77.7 80.4 76.6 + 21 1 2 2 0 0 2 0 0 0 0 1-11 78.8 80.2 76.7 + 21 1 3 0 0 0 0 2 2 0 2 1-11 77.8 79.9 76.7 + 21 1 4 2 0 2 3 2 2 2 2 2-11 75.0 79.6 76.8 + 21 1 5 6 3 4 3 27 12 5 22 10-11 72.6 79.2 76.8 + 21 1 6 15 15 22 9 6 6 5 5 10-11 71.7 78.8 76.8 + 21 1 7 5 6 4 3 2 2 5 9 5-11 72.2 78.4 76.9 + 21 1 8 2 2 2 2 2 0 0 2 2-11 72.8 77.9 76.9 + 21 1 9 3 5 2 2 0 0 0 0 2-11 71.8 77.4 76.9 + 21 1 10 3 2 3 2 0 3 4 4 3-11 70.7 76.9 76.9 + 21 1 11 4 0 2 9 18 22 18 27 13-11 70.8 76.6 76.9 + 21 1 12 22 15 9 7 5 4 4 3 9-11 70.4 76.2 76.9 + 21 1 13 3 2 2 4 5 3 3 4 3-11 70.8 75.9 76.9 + 21 1 14 0 0 0 2 2 2 0 2 1-11 71.2 75.6 77.0 + 21 1 15 6 0 0 0 0 4 4 2 2-11 71.0 75.4 77.0 + 21 1 16 2 4 3 3 3 3 3 4 3-11 75.2 75.2 77.0 + 21 1 17 2 5 0 0 2 0 0 2 1-11 74.8 75.1 77.0 + 21 1 18 3 6 0 0 2 0 5 7 3-11 72.9 75.1 77.1 + 21 1 19 12 7 3 4 5 3 5 3 5-11 75.6 75.0 77.1 + 21 1 20 3 3 7 6 9 7 4 2 5-11 74.7 75.0 77.2 + 21 1 21 0 2 0 2 0 2 0 4 1-11 75.2 74.9 77.2 + 21 1 22 2 0 0 0 3 4 4 4 2-11 75.8 74.8 77.3 + 21 1 23 3 0 4 4 0 3 5 7 3-11 75.5 74.8 77.3 + 21 1 24 2 6 4 3 5 5 6 7 5-11 75.2 74.7 77.4 + 21 1 25 6 6 18 18 9 12 9 39 15-11 74.8 74.6 77.4 + 21 1 26 22 27 6 4 5 9 9 7 11-11 73.4 74.6 77.4 + 21 1 27 9 18 7 9 6 12 4 15 10-11 74.0 74.6 77.4 + 21 1 28 15 2 3 2 0 0 0 2 3-11 73.4 74.5 77.4 + 21 1 29 0 4 4 2 2 2 2 3 2-11 73.2 74.5 77.4 + 21 1 30 0 2 0 2 2 3 2 0 1-11 71.6 74.4 77.5 + 21 1 31 3 0 0 0 0 0 0 3 1-11 71.2 74.4 77.5 + 21 2 1 6 7 0 0 4 7 5 7 5-11 70.8 74.3 77.5 + 21 2 2 27 27 22 12 22 9 3 6 16-11 70.2 74.2 77.5 + 21 2 3 9 15 7 9 3 12 27 12 12-11 71.3 74.0 77.5 + 21 2 4 9 15 9 6 7 0 2 6 7-11 71.2 73.9 77.5 + 21 2 5 12 7 3 6 3 3 4 4 5-11 71.1 73.7 77.5 + 21 2 6 3 0 0 2 5 18 18 7 7-11 71.0 73.5 77.5 + 21 2 7 32 39 22 22 15 6 6 5 18-11 70.8 73.4 77.5 + 21 2 8 2 6 4 5 3 5 6 15 6-11 71.3 73.3 77.5 + 21 2 9 5 4 7 5 3 2 0 0 3-11 71.0 73.2 77.5 + 21 2 10 2 0 3 3 4 3 2 0 2-11 71.0 73.2 77.5 + 21 2 11 0 2 3 4 0 4 0 0 2-11 70.5 73.2 77.5 + 21 2 12 0 2 2 0 4 9 9 12 5-11 71.7 73.2 77.5 + 21 2 13 15 15 9 32 12 5 3 9 13-11 69.6 73.1 77.5 + 21 2 14 5 6 7 3 4 3 0 0 4-11 69.7 73.1 77.5 + 21 2 15 0 0 3 3 3 4 9 12 4-11 68.0 73.1 77.5 + 21 2 16 5 18 22 27 6 12 5 4 12-11 69.1 73.2 77.5 + 21 2 17 5 9 7 5 7 6 6 9 7-11 70.0 73.2 77.5 + 21 2 18 7 7 4 5 3 0 0 3 4-11 70.6 73.2 77.5 + 21 2 19 7 5 5 6 22 22 27 27 15-11 69.9 73.2 77.6 + 21 2 20 15 12 27 15 15 32 27 27 21-11 71.7 73.3 77.6 + 21 2 21 22 22 32 27 27 7 7 15 20-11 70.9 73.3 77.6 + 21 2 22 22 27 9 15 15 9 22 18 17-11 73.2 73.3 77.6 + 21 2 23 22 18 12 9 15 7 7 4 12-11 74.2 73.3 77.6 + 21 2 24 12 12 27 15 7 27 32 22 19-11 77.6 73.3 77.7 + 21 2 25 27 22 12 7 4 12 12 15 14-11 77.1 73.3 77.7 + 21 2 26 15 9 4 9 7 7 15 9 9-11 78.1 73.3 77.8 + 21 2 27 4 6 4 3 3 5 2 3 4-11 76.4 73.2 77.8 + 21 2 28 0 7 2 2 5 4 7 12 5-11 75.7 73.2 77.9 + 21 3 1 22 67 48 27 7 7 18 5 25-11 72.7 73.2 77.9 + 21 3 2 6 9 9 7 18 27 48 32 20-11 73.3 73.1 78.0 + 21 3 3 32 39 32 12 12 9 7 12 19-11 74.4 73.1 78.0 + 21 3 4 22 15 3 2 7 7 6 12 9-11 74.1 73.1 78.1 + 21 3 5 5 5 7 4 3 3 6 5 5-11 73.9 73.1 78.1 + 21 3 6 27 32 15 9 15 5 9 9 15-11 74.4 73.1 78.2 + 21 3 7 6 6 3 6 3 15 5 22 8-11 76.4 73.1 78.2 + 21 3 8 2 3 2 2 4 5 15 6 5-11 78.7 73.1 78.3 + 21 3 9 5 3 3 2 3 3 2 0 3-11 75.4 73.1 78.4 + 21 3 10 0 0 0 2 0 2 5 2 1-11 75.3 73.2 78.5 + 21 3 11 0 2 0 2 3 3 4 12 3-11 74.6 73.4 78.6 + 21 3 12 9 9 18 7 6 12 18 12 11-11 74.7 73.4 78.6 + 21 3 13 15 32 12 12 6 12 22 18 16-11 75.0 73.5 78.7 + 21 3 14 22 48 32 15 7 18 18 27 23-11 74.2 73.6 78.8 + 21 3 15 12 9 5 6 4 9 5 3 7-11 73.1 73.7 78.8 + 21 3 16 3 4 0 0 3 3 3 2 2-11 72.9 73.8 78.8 + 21 3 17 7 3 2 0 5 12 4 2 4-11 72.1 73.9 78.8 + 21 3 18 7 6 5 4 3 2 2 6 4-11 72.5 74.0 78.9 + 21 3 19 9 7 4 4 2 3 5 6 5-11 72.5 74.1 78.9 + 21 3 20 9 15 67 39 18 22 22 22 27-11 74.1 74.2 78.9 + 21 3 21 27 18 6 5 22 39 39 22 22-11 74.6 74.2 78.9 + 21 3 22 12 9 6 5 5 5 6 5 7-11 76.0 74.2 78.9 + 21 3 23 15 18 9 5 7 9 6 12 10-11 76.4 74.2 78.9 + 21 3 24 15 12 9 6 5 3 7 18 9-11 75.3 74.3 79.0 + 21 3 25 48 27 18 6 15 4 3 15 17-11 74.8 74.3 79.0 + 21 3 26 18 15 15 9 5 6 5 6 10-11 74.7 74.3 79.1 + 21 3 27 0 2 2 3 2 3 15 27 7-11 74.7 74.3 79.1 + 21 3 28 18 3 4 2 3 2 4 5 5-11 73.6 74.4 79.2 + 21 3 29 3 6 3 2 2 2 2 4 3-11 73.2 74.5 79.2 + 21 3 30 0 3 2 0 3 2 6 7 3-11 74.5 74.6 79.2 + 21 3 31 12 9 7 6 5 9 6 15 9-11 72.4 74.7 79.3 + 21 4 1 15 12 9 4 2 4 7 5 7-11 77.8 74.8 79.4 + 21 4 2 5 3 0 3 4 15 9 3 5-11 71.4 74.9 79.4 + 21 4 3 4 5 3 4 4 2 4 3 4-11 72.2 74.9 79.5 + 21 4 4 4 0 3 2 4 3 2 3 3-11 72.0 74.9 79.5 + 21 4 5 3 2 2 6 9 4 3 2 4-11 71.8 74.9 79.5 + 21 4 6 0 0 0 2 3 2 4 3 2-11 71.3 74.9 79.6 + 21 4 7 7 9 12 22 22 32 15 4 15-11 70.7 74.9 79.6 + 21 4 8 4 3 0 4 4 3 6 4 4-11 70.5 74.9 79.6 + 21 4 9 2 7 0 3 2 4 0 2 3-11 70.8 74.9 79.7 + 21 4 10 3 2 2 3 4 7 3 6 4-11 70.8 74.9 79.7 + 21 4 11 7 9 6 3 3 3 7 6 6-11 72.2 74.9 79.7 + 21 4 12 4 2 3 6 5 7 4 3 4-11 74.5 75.0 79.8 + 21 4 13 2 4 3 5 5 7 5 6 5-11 73.6 75.0 79.8 + 21 4 14 3 4 0 6 4 6 7 15 6-11 74.3 75.0 79.8 + 21 4 15 15 18 39 4 9 7 3 5 13-11 76.0 75.2 79.9 + 21 4 16 7 9 12 9 18 15 48 32 19-11 75.2 75.4 79.9 + 21 4 17 32 39 39 22 32 22 15 22 28-11 75.9 75.5 79.9 + 21 4 18 22 18 18 22 12 9 15 18 17-11 76.4 75.5 79.9 + 21 4 19 18 22 15 18 15 12 18 18 17-11 81.1 75.5 79.9 + 21 4 20 12 15 7 15 6 9 18 15 12-11 83.7 75.6 79.9 + 21 4 21 7 9 9 6 6 3 3 4 6-11 77.7 75.7 79.9 + 21 4 22 5 5 5 5 5 0 2 7 4-11 78.6 75.7 80.0 + 21 4 23 12 12 7 7 4 15 12 32 13-11 76.1 75.8 80.0 + 21 4 24 12 12 6 7 5 4 5 12 8-11 77.7 75.8 80.0 + 21 4 25 48 27 12 12 12 6 18 7 18-11 78.7 75.9 80.1 + 21 4 26 32 27 15 4 6 3 3 6 12-11 79.2 75.9 80.2 + 21 4 27 12 15 5 5 4 4 2 2 6-11 79.4 76.0 80.3 + 21 4 28 4 0 0 2 2 3 2 3 2-11 77.9 76.1 80.3 + 21 4 29 4 5 4 4 5 4 5 2 4-11 78.0 76.3 80.4 + 21 4 30 2 4 0 4 2 12 9 6 5-11 74.0 76.4 80.5 + 21 5 1 5 0 4 7 5 5 4 5 4-11 72.7 76.4 80.6 + 21 5 2 15 12 15 5 3 7 5 6 9-11 73.1 76.4 80.6 + 21 5 3 7 4 7 6 4 4 2 3 5-11 72.8 76.5 80.7 + 21 5 4 5 2 3 4 2 3 5 3 3-11 71.8 76.4 80.7 + 21 5 5 2 2 0 2 0 0 2 3 1-11 70.7 76.5 80.7 + 21 5 6 4 3 2 3 5 4 2 0 3-11 72.1 76.5 80.8 + 21 5 7 0 2 0 2 3 4 4 4 2-11 75.9 76.6 80.8 + 21 5 8 3 2 3 5 5 2 2 0 3-11 77.4 76.8 80.7 + 21 5 9 0 2 2 2 3 5 2 5 3-11 77.7 76.8 80.7 + 21 5 10 4 7 5 7 7 5 7 5 6-11 78.0 76.9 80.7 + 21 5 11 6 4 2 2 2 0 2 2 3-11 77.6 77.0 80.7 + 21 5 12 4 4 27 32132111 7 15 42-11 76.3 77.0 80.8 + 21 5 13 7 6 6 5 7 4 5 7 6-11 76.3 77.2 80.8 + 21 5 14 2 3 3 0 2 4 5 7 3-11 72.4 77.3 80.8 + 21 5 15 18 5 9 6 5 4 3 4 7-11 74.9 77.5 80.8 + 21 5 16 3 0 3 5 5 3 6 3 4-11 74.9 77.6 80.8 + 21 5 17 3 4 5 4 4 7 7 7 5-11 76.5 77.8 80.8 + 21 5 18 12 22 12 9 6 4 3 2 9-11 78.2 78.0 80.8 + 21 5 19 6 3 5 3 4 3 5 9 5-11 77.7 78.3 80.8 + 21 5 20 12 7 9 32 56 27 27 18 24-11 74.0 78.6 80.8 + 21 5 21 9 6 7 6 4 4 4 3 5-11 75.5 78.9 80.8 + 21 5 22 5 3 4 4 4 4 7 3 4-11 77.5 79.2 80.8 + 21 5 23 2 4 3 4 3 2 3 5 3-11 81.0 79.5 80.8 + 21 5 24 5 2 0 3 2 2 2 0 2-11 74.5 79.8 80.8 + 21 5 25 2 2 0 2 3 4 2 5 3-11 85.7 80.1 80.7 + 21 5 26 3 4 4 4 12 15 39 15 12-11 90.3 80.3 80.7 + 21 5 27 32 15 27 15 7 9 7 4 15-11 85.5 80.4 80.6 + 21 5 28 2 3 0 2 3 2 2 0 2-11 79.5 80.4 80.6 + 21 5 29 0 2 3 9 7 4 9 6 5-11 78.1 80.4 80.6 + 21 5 30 4 3 4 5 3 4 6 9 5-11 76.5 80.4 80.5 + 21 5 31 3 3 3 0 2 3 2 0 2-11 84.0 80.3 80.5 + 21 6 1 4 2 0 0 0 0 0 0 1-11 77.3 80.3 80.4 + 21 6 2 0 2 2 2 12 7 5 5 4-11 78.5 80.2 80.4 + 21 6 3 6 6 9 6 5 5 3 0 5-11 77.7 80.2 80.3 + 21 6 4 4 4 2 4 5 4 5 4 4-11 79.4 80.1 80.3 + 21 6 5 2 3 2 2 5 2 5 7 4-11 76.6 80.1 80.2 + 21 6 6 7 4 3 2 0 2 4 5 3-11 79.7 80.1 80.2 + 21 6 7 3 5 9 7 12 18 15 22 11-11 83.2 80.1 80.2 + 21 6 8 7 7 6 3 3 3 4 3 5-11 82.3 80.2 80.1 + 21 6 9 5 5 4 2 2 2 3 0 3-11 81.0 80.2 80.1 + 21 6 10 4 2 2 2 4 7 5 6 4-11 75.6 80.4 80.1 + 21 6 11 9 12 7 6 9 6 5 9 8-11 79.7 80.7 80.1 + 21 6 12 15 22 5 7 9 7 5 5 9-11 80.0 81.0 80.1 + 21 6 13 15 12 2 3 2 4 2 0 5-11 71.1 81.2 80.1 + 21 6 14 3 2 3 4 3 2 5 6 4-11 79.3 81.4 80.1 + 21 6 15 6 5 6 6 18 22 48 22 17-11 77.9 81.5 80.1 + 21 6 16 27 15 9 9 7 12 9 15 13-11 82.8 81.7 80.1 + 21 6 17 5 9 7 3 5 6 4 3 5-11 87.7 81.7 80.2 + 21 6 18 7 6 6 6 9 4 5 5 6-11 79.5 81.8 80.3 + 21 6 19 5 4 4 3 2 3 2 3 3-11 79.6 81.8 80.4 + 21 6 20 3 4 2 2 2 2 4 12 4-11 78.9 81.8 80.5 + 21 6 21 3 2 0 3 4 4 5 4 3-11 81.7 81.8 80.6 + 21 6 22 5 9 5 5 7 4 3 5 5-11 83.5 81.8 80.8 + 21 6 23 9 4 3 3 3 2 2 0 3-11 82.3 81.8 80.9 + 21 6 24 2 3 4 2 4 4 6 9 4-11 83.3 81.9 81.0 + 21 6 25 15 6 5 5 5 4 3 2 6-11 86.1 81.9 81.1 + 21 6 26 2 2 3 5 5 4 2 2 3-11 85.1 81.9 81.3 + 21 6 27 2 2 4 2 4 4 3 3 3-11 89.9 81.9 81.4 + 21 6 28 4 2 2 2 3 4 3 3 3-11 91.6 81.8 81.5 + 21 6 29 4 2 3 3 6 7 9 2 5-11 95.6 81.8 81.5 + 21 6 30 2 7 12 15 5 15 22 27 13-11 97.3 81.8 81.6 + 21 7 1 15 9 4 3 2 3 3 3 5-11 97.2 81.8 81.7 + 21 7 2 3 5 5 4 4 6 4 4 4-11 98.1 81.8 81.7 + 21 7 3 7 3 5 3 4 3 2 0 3-11 96.8 81.7 81.8 + 21 7 4 2 5 3 2 2 3 2 2 3-11 94.1 81.7 81.8 + 21 7 5 7 5 4 7 7 5 12 7 7-11 92.4 81.6 81.8 + 21 7 6 7 5 9 4 12 5 6 3 6-11 86.0 81.4 81.8 + 21 7 7 4 5 6 4 3 4 5 7 5-11 78.6 81.3 81.8 + 21 7 8 5 4 6 2 3 3 4 2 4-11 75.9 81.3 81.9 + 21 7 9 6 5 4 4 2 3 3 5 4-11 76.2 81.3 82.0 + 21 7 10 12 9 3 2 2 5 5 7 6-11 76.5 81.3 82.0 + 21 7 11 2 0 2 2 4 5 5 4 3-11 76.0 81.2 82.1 + 21 7 12 4 2 3 3 9 12 9 9 6-11 74.0 81.2 82.2 + 21 7 13 9 4 2 3 3 3 4 5 4-11 74.3 81.2 82.3 + 21 7 14 0 3 4 9 22 32 27 15 14-11 74.5 81.3 82.3 + 21 7 15 6 7 6 9 9 9 12 9 8-11 75.9 81.3 82.4 + 21 7 16 6 2 2 2 3 4 6 3 4-11 77.5 81.4 82.5 + 21 7 17 4 3 2 2 4 6 4 2 3-11 80.0 81.5 82.6 + 21 7 18 2 2 2 4 5 4 2 7 4-11 83.0 81.6 82.7 + 21 7 19 6 7 12 2 6 6 9 6 7-11 85.3 81.8 82.8 + 21 7 20 9 5 15 6 5 9 18 12 10-11 89.8 81.9 82.9 + 21 7 21 7 7 4 5 7 9 3 0 5-11 96.5 82.1 83.0 + 21 7 22 5 6 18 15 15 4 3 2 9-11 91.8 82.2 83.1 + 21 7 23 0 2 3 3 3 3 2 5 3-11 90.2 82.2 83.1 + 21 7 24 2 4 3 3 2 3 2 5 3-11 86.5 82.4 83.2 + 21 7 25 2 3 2 2 2 2 2 4 2-11 84.2 82.5 83.2 + 21 7 26 3 4 3 2 3 2 4 4 3-11 83.4 82.6 83.3 + 21 7 27 0 2 4 5 3 4 4 12 4-11 82.1 82.8 83.3 + 21 7 28 22 15 12 9 7 12 22 4 13-11 81.2 82.9 83.4 + 21 7 29 7 15 9 6 5 5 5 9 8-11 78.1 83.2 83.5 + 21 7 30 2 5 6 6 9 6 6 6 6-11 77.8 83.5 83.6 + 21 7 31 6 5 9 5 5 4 6 4 6-11 78.2 83.8 83.7 + 21 8 1 4 2 0 3 4 4 5 3 3-11 77.2 84.0 83.9 + 21 8 2 4 2 2 6 12 27 39 27 15-11 76.8 84.1 84.0 + 21 8 3 22 9 9 7 9 4 3 5 9-11 78.1 84.2 84.2 + 21 8 4 7 5 5 5 3 5 2 0 4-11 72.8 84.2 84.3 + 21 8 5 0 0 0 2 2 4 3 0 1-11 76.5 84.1 84.4 + 21 8 6 3 7 4 4 5 9 7 12 6-11 76.5 84.0 84.6 + 21 8 7 12 12 9 9 12 12 9 5 10-11 75.8 83.8 84.7 + 21 8 8 9 3 2 2 4 4 4 5 4-11 75.5 83.6 84.9 + 21 8 9 5 3 6 4 3 2 4 2 4-11 75.0 83.3 85.0 + 21 8 10 6 7 4 5 7 5 4 9 6-11 75.3 83.0 85.2 + 21 8 11 9 6 7 5 5 2 2 2 5-11 75.8 82.8 85.3 + 21 8 12 0 2 3 2 4 4 6 6 3-11 75.6 82.7 85.4 + 21 8 13 5 4 9 6 4 5 2 3 5-11 74.8 82.6 85.5 + 21 8 14 3 3 4 3 2 5 3 2 3-11 74.5 82.5 85.6 + 21 8 15 9 7 18 5 5 6 6 12 9-11 76.5 82.5 85.7 + 21 8 16 15 9 5 4 7 6 3 7 7-11 76.3 82.5 85.8 + 21 8 17 4 4 3 9 5 5 0 6 5-11 75.0 82.6 85.9 + 21 8 18 12 7 4 5 5 4 5 2 6-11 77.1 82.8 86.0 + 21 8 19 0 2 2 5 5 5 5 4 4-11 76.7 82.9 86.1 + 21 8 20 0 3 9 6 9 12 5 2 6-11 79.5 83.2 86.1 + 21 8 21 2 2 4 5 5 3 3 2 3-11 78.9 83.5 86.2 + 21 8 22 3 2 3 2 3 3 2 0 2-11 78.8 83.7 86.3 + 21 8 23 2 2 2 2 2 0 2 4 2-11 79.8 83.8 86.3 + 21 8 24 2 2 3 4 2 3 7 9 4-11 82.6 84.0 86.4 + 21 8 25 9 15 18 5 5 6 4 2 8-11 85.4 84.1 86.4 + 21 8 26 7 6 4 6 4 3 4 4 5-11 90.5 84.1 86.5 + 21 8 27 15 3 7 27 27 27 32 27 21-11 91.3 84.2 86.5 + 21 8 28 48 15 18 9 5 12 5 2 14-11 91.7 84.2 86.6 + 21 8 29 7 5 3 3 3 7 22 12 8-11 90.5 84.3 86.6 + 21 8 30 5 12 9 5 6 3 4 9 7-11 92.4 84.2 86.7 + 21 8 31 12 9 6 4 5 4 2 5 6-11 86.0 84.0 86.7 + 21 9 1 6 5 4 6 4 3 2 5 4-11 85.7 84.0 86.8 + 21 9 2 3 3 2 5 5 3 5 0 3-11 87.3 83.9 86.9 + 21 9 3 4 5 5 9 9 6 5 9 7-11 85.3 83.9 87.0 + 21 9 4 6 3 4 6 3 3 3 7 4-11 88.0 83.8 87.1 + 21 9 5 7 9 5 4 7 6 2 4 6-11 94.9 83.8 87.3 + 21 9 6 7 12 2 4 3 6 5 7 6-11101.1 83.8 87.4 + 21 9 7 3 3 4 7 6 7 12 22 8-11102.8 83.7 87.5 + 21 9 8 27 6 15 27 15 9 9 4 14-11101.9 83.7 87.6 + 21 9 9 3 6 4 4 3 3 4 6 4-11101.1 83.7 87.7 + 21 9 10 4 7 6 3 3 5 15 18 8-11 97.6 83.7 87.8 + 21 9 11 18 2 6 5 4 4 6 6 6-11 93.0 83.8 88.0 + 21 9 12 4 4 5 7 5 6 5 6 5-11 88.8 83.9 88.1 + 21 9 13 4 2 15 6 12 9 6 12 8-11 84.3 84.0 88.2 + 21 9 14 7 2 4 6 9 5 6 3 5-11 79.0 84.2 88.3 + 21 9 15 6 7 5 5 3 3 3 7 5-11 76.1 84.5 88.4 + 21 9 16 3 5 2 2 2 3 3 4 3-11 74.0 84.9 88.5 + 21 9 17 7 15 3 18 15 22 48 56 23-11 74.1 85.4 88.5 + 21 9 18 12 18 15 9 6 2 2 3 8-11 74.4 85.8 88.6 + 21 9 19 3 0 0 2 5 0 2 0 2-11 75.7 86.2 88.7 + 21 9 20 5 2 0 4 2 2 2 4 3-11 80.7 86.6 88.7 + 21 9 21 9 0 2 2 3 12 9 15 7-11 85.5 86.9 88.8 + 21 9 22 22 12 27 12 5 3 5 7 12-11 89.2 87.2 88.9 + 21 9 23 9 12 22 6 7 6 5 2 9-11 90.2 87.4 89.0 + 21 9 24 7 7 6 4 4 18 6 3 7-11 88.9 87.6 89.1 + 21 9 25 7 9 6 6 4 3 4 7 6-11 88.9 87.8 89.2 + 21 9 26 2 2 0 0 0 0 2 3 1-11 86.7 88.0 89.3 + 21 9 27 9 9 4 4 3 6 5 9 6-11 85.6 88.1 89.6 + 21 9 28 5 7 9 9 7 7 15 12 9-11 89.3 88.2 89.8 + 21 9 29 2 0 3 5 7 4 6 5 4-11102.0 88.4 90.0 + 21 9 30 5 0 0 3 4 12 27 9 8-11 94.8 88.5 90.4 + 21 10 1 15 9 22 18 18 9 6 0 12-11 90.7 88.7 90.6 + 21 10 2 0 0 3 27 15 9 4 0 7-11 87.1 88.8 90.8 + 21 10 3 0 7 4 6 6 5 4 7 5-11 86.1 88.8 91.0 + 21 10 4 12 5 3 3 2 3 2 6 5-11 83.5 88.8 91.2 + 21 10 5 9 12 2 2 3 2 2 4 5-11 81.7 88.7 91.3 + 21 10 6 7 6 5 7 9 15 12 3 8-11 84.7 88.5 91.4 + 21 10 7 3 2 2 3 4 5 3 0 3-11 85.6 88.4 91.5 + 21 10 8 7 5 3 2 2 0 4 2 3-11 92.2 88.2 91.6 + 21 10 9 5 5 3 4 6 3 3 3 4-11 80.8 88.1 91.7 + 21 10 10 2 6 4 5 12 9 9 39 11-11 84.2 87.9 91.8 + 21 10 11 18 18 12 7 12 5 18 22 14-11 88.2 87.8 91.9 + 21 10 12 48 80 39 94 39 32 18 18 46-11 83.1 87.7 92.0 + 21 10 13 18 7 3 0 2 3 3 3 5-11 83.1 87.6 92.0 + 21 10 14 7 7 4 7 5 5 9 7 6-11 83.6 87.5 92.1 + 21 10 15 6 6 5 5 0 0 2 9 4-11 81.2 87.4 92.2 + 21 10 16 15 7 3 5 0 5 4 2 5-11 79.8 87.3 92.3 + 21 10 17 2 4 4 9 7 9 27 22 11-11 77.1 87.2 92.5 + 21 10 18 18 12 6 3 7 6 7 12 9-11 76.2 87.0 92.7 + 21 10 19 9 15 6 4 7 27 27 5 13-11 78.2 86.9 92.9 + 21 10 20 4 9 3 3 6 5 5 7 5-11 77.2 86.7 93.1 + 21 10 21 6 6 5 4 3 6 4 7 5-11 81.6 86.6 93.4 + 21 10 22 3 0 2 2 6 2 3 5 3-11 84.8 86.5 93.6 + 21 10 23 6 0 2 2 2 2 4 2 3-11 89.1 86.4 93.8 + 21 10 24 3 3 2 3 4 6 4 3 4-11 92.8 86.4 94.1 + 21 10 25 3 5 3 2 4 9 4 3 4-11100.6 86.5 94.3 + 21 10 26 5 6 3 3 3 3 2 9 4-11109.4 86.6 94.5 + 21 10 27 3 0 0 2 4 2 3 2 2-11110.8 86.6 94.7 + 21 10 28 0 0 0 0 0 5 2 0 1-11111.3 86.6 94.8 + 21 10 29 0 0 0 0 0 3 2 5 1-11106.5 86.6 94.9 + 21 10 30 7 12 9 3 3 6 6 22 9-11108.9 86.6 95.1 + 21 10 31 9 9 2 15 27 9 15 27 14-11100.2 86.5 95.2 + 21 11 1 9 12 4 6 3 3 12 18 8-11 96.1 86.4 95.3 + 21 11 2 18 39 12 22 18 9 12 7 17-11 94.5 86.2 95.4 + 21 11 3 12 4 5 3 4 3 27 94 19-11 90.9 86.1 95.6 + 21 11 4 94 67132179 67 22 6 7 72-11 90.8 86.1 95.7 + 21 11 5 5 18 6 3 9 22 15 12 11-11 89.6 86.2 95.8 + 21 11 6 27 15 15 18 6 22 15 15 17-11 85.4 86.5 96.0 + 21 11 7 27 4 2 2 2 2 2 0 5-11 88.2 86.9 96.1 + 21 11 8 0 0 0 3 5 4 7 15 4-11 89.1 87.3 96.2 + 21 11 9 6 5 6 3 3 3 9 12 6-11 89.6 87.4 96.3 + 21 11 10 15 5 9 5 4 3 5 2 6-11 95.0 87.7 96.5 + 21 11 11 2 0 3 5 7 5 3 2 3-11 82.5 88.2 96.6 + 21 11 12 4 6 3 0 0 2 0 3 2-11 82.3 88.8 96.8 + 21 11 13 0 2 0 2 0 2 2 3 1-11 81.9 89.3 97.1 + 21 11 14 4 3 0 2 3 3 2 4 3-11 77.4 89.8 97.3 + 21 11 15 0 0 2 2 4 6 27 27 9-11 79.1 90.3 97.5 + 21 11 16 18 27 12 9 7 9 6 7 12-11 79.0 90.8 97.8 + 21 11 17 18 9 18 15 6 7 7 12 12-11 78.5 91.2 98.1 + 21 11 18 7 9 5 4 2 4 2 4 5-11 77.1 91.5 98.4 + 21 11 19 5 2 3 3 6 6 5 5 4-11 77.0 91.8 98.6 + 21 11 20 9 4 5 7 9 18 9 12 9-11 79.7 92.0 98.9 + 21 11 21 15 12 7 12 12 18 9 12 12-11 77.9 92.1 99.1 + 21 11 22 15 15 2 4 4 7 9 9 8-11 77.5 92.2 99.4 + 21 11 23 6 9 5 15 6 12 7 9 9-11 78.9 92.3 99.6 + 21 11 24 6 6 5 4 3 3 2 4 4-11 84.4 92.2 99.7 + 21 11 25 5 9 4 4 3 3 3 3 4-11 82.7 92.2 99.8 + 21 11 26 2 3 3 2 2 5 0 2 2-11 91.1 92.3 99.9 + 21 11 27 0 2 2 2 3 3 3 15 4-11 90.0 92.4100.0 + 21 11 28 15 15 6 5 3 4 6 18 9-11 91.0 92.8100.0 + 21 11 29 22 18 3 3 3 3 7 4 8-11 89.8 93.0100.1 + 21 11 30 2 0 3 2 2 4 7 56 10-11 87.5 93.3100.2 + 21 12 1 27 22 12 9 15 18 15 22 18-11 84.0 93.5100.2 + 21 12 2 9 6 15 5 6 12 12 7 9-11 84.2 93.7100.3 + 21 12 3 3 3 2 7 9 15 18 7 8-11 82.9 93.8100.4 + 21 12 4 15 9 9 3 3 4 7 3 7-11 85.6 93.9100.5 + 21 12 5 5 7 2 4 5 15 12 9 7-11 80.3 94.0100.5 + 21 12 6 7 3 6 5 6 12 6 6 6-11 77.6 94.0100.6 + 21 12 7 9 5 2 0 2 5 3 2 4-11 76.6 94.1100.6 + 21 12 8 4 3 6 5 2 3 2 4 4-11 74.6 94.0100.7 + 21 12 9 3 3 0 0 2 3 0 0 1-11 74.4 94.1100.8 + 21 12 10 0 2 2 2 2 4 3 6 3-11 73.4 94.0100.9 + 21 12 11 7 18 4 0 0 0 2 2 4-11 73.9 94.0101.0 + 21 12 12 4 5 0 0 0 4 5 2 3-11 77.4 93.9101.1 + 21 12 13 2 12 7 6 0 0 2 2 4-11 78.2 93.9101.3 + 21 12 14 5 5 5 3 3 5 4 4 4-11 86.2 93.9101.5 + 21 12 15 4 7 7 12 9 18 6 6 9-11 99.3 93.9101.6 + 21 12 16 6 9 15 7 4 5 6 7 7-11114.2 94.0101.8 + 21 12 17 6 4 3 2 2 2 0 2 3-11117.0 94.2102.0 + 21 12 18 2 0 2 2 4 4 6 3 3-11117.4 94.4102.2 + 21 12 19 2 0 0 3 7 22 27 48 14-11111.6 94.6102.4 + 21 12 20 22 15 9 18 9 15 7 12 13-11118.8 95.0102.5 + 21 12 21 22 6 6 3 9 9 12 4 9-11132.2 95.4102.7 + 21 12 22 7 9 7 7 15 7 15 9 10-11135.8 96.0102.8 + 21 12 23 9 0 2 3 3 2 5 4 4-11125.6 96.5103.0 + 21 12 24 3 3 3 5 4 4 6 9 5-11122.1 97.0103.1 + 21 12 25 5 4 7 6 12 7 6 3 6-11126.5 97.6103.1 + 21 12 26 3 2 0 4 2 2 6 3 3-11121.2 98.1103.2 + 21 12 27 6 5 9 9 27 12 7 3 10-11119.9 98.7103.2 + 21 12 28 9 12 12 6 6 9 3 2 7-11116.5 99.2103.2 + 21 12 29 4 7 3 4 5 7 5 9 6-11107.8 99.8103.3 + 21 12 30 15 9 6 9 9 5 5 2 8-11 99.0100.3103.3 + 21 12 31 0 2 4 2 5 7 3 4 3-11 98.2100.8103.3 + 22 1 1 9 27 9 6 6 15 15 5 12-11 90.8101.3103.3 + 22 1 2 15 6 5 5 4 9 9 18 9-11 86.0101.7103.3 + 22 1 3 7 27 18 15 7 5 6 7 12-11 81.3102.0103.3 + 22 1 4 9 15 3 5 3 0 2 2 5-11 82.7102.3103.4 + 22 1 5 3 9 0 0 3 5 0 0 3-11 81.0102.5103.5 + 22 1 6 0 0 0 0 0 0 2 0 0-11 90.6102.8103.6 + 22 1 7 0 0 0 0 0 0 0 0 0-11103.8102.9103.8 + 22 1 8 0 0 4 3 4 5 48 39 13-11 99.1103.0104.0 + 22 1 9 15 9 7 3 7 5 7 12 8-11 98.7103.0104.2 + 22 1 10 9 7 2 2 4 7 9 6 6-11 98.8103.0104.4 + 22 1 11 3 5 3 4 5 7 3 0 4-11 96.7103.1104.7 + 22 1 12 2 4 0 0 3 4 5 4 3-11 99.8103.3105.0 + 22 1 13 4 0 0 2 2 2 4 4 2-11102.1103.4105.2 + 22 1 14 0 0 2 4 7 12 27 67 15-11106.6103.5105.5 + 22 1 15 32 22 9 6 12 15 27 39 20-11111.8103.6105.8 + 22 1 16 22 18 9 12 9 12 32 15 16-11115.6103.8106.0 + 22 1 17 15 3 4 7 9 12 12 9 9-11109.9104.1106.2 + 22 1 18 48 18 15 7 9 15 12 15 17-11110.8104.3106.4 + 22 1 19 56 48 18 15 15 7 7 15 23-11101.9104.6106.5 + 22 1 20 18 2 3 2 2 3 2 2 4-11 96.1104.9106.6 + 22 1 21 2 0 3 4 12 12 9 18 8-11 94.3105.3106.7 + 22 1 22 9 15 7 4 9 9 6 15 9-11 92.2105.7106.7 + 22 1 23 12 15 7 7 5 5 0 2 7-11 90.6106.1106.8 + 22 1 24 2 0 3 2 5 3 4 7 3-11 92.2106.5106.9 + 22 1 25 9 12 15 12 12 18 12 18 14-11 97.8106.7106.9 + 22 1 26 6 9 9 12 6 12 9 15 10-11 98.7106.7107.0 + 22 1 27 3 3 3 4 7 5 15 12 7-11103.9106.7107.0 + 22 1 28 5 6 6 5 4 3 6 22 7-11110.0106.6107.1 + 22 1 29 27 27 15 15 22 3 3 4 15-11121.6106.8107.1 + 22 1 30 9 12 15 7 12 6 6 15 10-11125.8106.9107.2 + 22 1 31 12 12 6 15 6 9 5 7 9-11125.7106.7107.2 + 22 2 1 6 6 3 3 5 3 2 18 6-11124.9106.6107.3 + 22 2 2 27 12 3 2 6 22 6 5 10-11124.5106.4107.3 + 22 2 3 7 32 48 56 27 15 15 12 27-11122.9106.3107.5 + 22 2 4 27 27 22 22 27 56 48 27 32-11126.0106.0107.6 + 22 2 5 12 15 7 9 15 12 12 6 11-11122.4105.8107.7 + 22 2 6 22 15 12 15 15 6 12 12 14-11120.2105.5107.8 + 22 2 7 9 5 4 6 4 9 5 7 6-11123.7105.2107.9 + 22 2 8 5 2 3 3 4 5 7 4 4-11119.8105.0108.0 + 22 2 9 2 0 0 2 2 0 0 7 2-11122.5105.0108.1 + 22 2 10 12 12 7 7 12 39 48 32 21-11114.9105.1108.2 + 22 2 11 27 15 7 27 5 12 32 27 19-11110.2105.3108.4 + 22 2 12 18 15 9 6 12 12 18 15 13-11107.7105.6108.5 + 22 2 13 22 15 9 12 15 18 9 15 14-11102.8105.9108.6 + 22 2 14 12 6 9 6 5 7 5 3 7-11103.9106.4108.8 + 22 2 15 7 7 3 3 3 3 2 2 4-11111.5107.0109.0 + 22 2 16 4 7 6 5 9 12 15 12 9-11100.4107.8109.1 + 22 2 17 9 5 4 4 4 0 4 5 4-11 94.4108.3109.2 + 22 2 18 0 0 5 5 6 6 12 7 5-11 91.1109.0109.3 + 22 2 19 9 12 5 5 7 12 5 9 8-11 93.5110.7109.4 + 22 2 20 39 18 9 6 3 7 15 6 13-11 91.2111.3109.4 + 22 2 21 3 3 7 9 27 12 15 12 11-11 95.6111.9109.5 + 22 2 22 15 32 39 18 7 2 7 6 16-11 93.3112.4109.6 + 22 2 23 3 2 7 6 7 7 6 9 6-11 93.5112.7109.6 + 22 2 24 12 15 9 2 0 2 0 5 6-11 90.5112.9109.7 + 22 2 25 7 9 15 18 9 2 0 4 8-11 94.2112.9109.8 + 22 2 26 0 0 3 2 0 0 0 0 1-11 94.7112.9109.9 + 22 2 27 3 6 22 18 15 15 7 5 11-11 95.1112.9110.4 + 22 2 28 6 9 5 7 7 6 7 5 7-11 97.1112.8110.5 + 22 3 1 7 7 9 7 9 6 9 6 8-11 97.5112.8110.6 + 22 3 2 3 3 3 6 3 3 2 4 3-11107.6112.9110.7 + 22 3 3 2 3 2 2 4 5 7 9 4-11109.0112.9110.8 + 22 3 4 18 12 7 6 5 7 9 18 10-11111.2113.0110.9 + 22 3 5 18 6 6 22 39 27 39 56 27-11118.2113.2111.0 + 22 3 6 39 15 39 15 18 4 6 9 18-11113.9113.4111.1 + 22 3 7 9 9 3 5 15 9 7 5 8-11116.5113.7111.2 + 22 3 8 12 9 2 3 3 0 5 7 5-11113.6114.2111.3 + 22 3 9 12 3 3 4 4 3 2 6 5-11113.1114.6111.4 + 22 3 10 6 3 5 5 5 9 22 9 8-11125.4115.3111.4 + 22 3 11 27 18 27 9 15 15 15 32 20-11124.9115.8111.5 + 22 3 12 39 32 9 4 4 2 4 5 12-11123.1116.3111.6 + 22 3 13 5 3 2 27 67 56 67 94 40-11121.4116.8111.8 + 22 3 14 67 12 6 6 6 7 3 4 14-11113.6117.2111.9 + 22 3 15 4 5 3 2 6 7 5 15 6-11109.2117.7112.1 + 22 3 16 3 0 3 5 7 7 9 7 5-11105.5118.1112.3 + 22 3 17 7 7 6 6 3 3 2 3 5-11101.8118.4112.5 + 22 3 18 7 0 0 0 3 3 3 2 2-11 96.8118.7112.7 + 22 3 19 3 2 7 6 2 3 5 7 4-11 93.5118.9112.8 + 22 3 20 15 18 7 4 3 4 3 12 8-11 94.1118.9113.0 + 22 3 21 7 0 2 2 3 3 3 4 3-11 97.0118.9113.1 + 22 3 22 7 12 5 2 6 6 18 9 8-11105.2118.8113.3 + 22 3 23 7 4 6 5 6 7 6 3 6-11104.9118.7113.4 + 22 3 24 18 12 5 9 18 9 4 6 10-11110.9118.8113.6 + 22 3 25 15 12 5 7 7 6 6 3 8-11111.8119.1113.7 + 22 3 26 7 2 3 5 2 7 15 7 6-11118.1119.4113.9 + 22 3 27 6 7 7 18 12 27 27 18 15-11129.7119.6114.0 + 22 3 28 27 22 5 4 4 3 3 4 9-11155.4119.7114.2 + 22 3 29 4 7 6 5 6 12 9 9 7-11148.7119.9114.3 + 22 3 30 0 3 3 6 2 7 7 18 6-11151.0120.2114.4 + 22 3 31 39 39 22 22 39 32 9 9 26-11239.0120.6114.5 + 22 4 1 15 15 12 18 27 12 9 9 15-11146.4121.1114.6 + 22 4 2 22 39 27 6 9 12 32 12 20-11143.2121.6114.8 + 22 4 3 15 5 4 2 6 12 9 7 8-11140.2122.3115.0 + 22 4 4 22 22 12 7 6 7 9 2 11-11128.0123.1115.2 + 22 4 5 5 7 7 6 5 5 5 4 6-11122.5123.9115.4 + 22 4 6 12 4 5 5 4 6 4 5 6-11117.1124.8115.6 + 22 4 7 5 22 12 12 7 9 7 12 11-11111.3125.8115.8 + 22 4 8 18 9 6 3 4 5 6 7 7-11109.2126.9116.0 + 22 4 9 22 22 22 12 18 22 12 3 17-11107.5127.9116.1 + 22 4 10 9111 56 22 9 7 7 12 29-11101.4128.8116.4 + 22 4 11 22 22 12 9 6 5 7 4 11-11 99.2129.7116.6 + 22 4 12 7 4 0 7 18 22 15 12 11-11 96.7130.5116.7 + 22 4 13 15 15 18 6 4 0 0 6 8-11 99.2131.2116.9 + 22 4 14 18 18 27 39 32 80 67 32 39-11104.0131.6117.0 + 22 4 15 48 32 15 27 27 22 7 9 23-11111.0131.9117.1 + 22 4 16 6 5 5 4 12 9 6 9 7-11123.3132.1117.2 + 22 4 17 12 15 7 6 12 15 6 7 10-11135.9132.1117.3 + 22 4 18 5 9 9 7 4 9 18 6 8-11141.6131.9117.5 + 22 4 19 15 9 5 5 7 4 2 3 6-11161.5131.8117.6 + 22 4 20 15 5 7 5 2 5 7 18 8-11167.0131.5117.7 + 22 4 21 12 12 15 6 12 6 6 5 9-11166.0131.2117.8 + 22 4 22 5 9 3 5 6 7 7 5 6-11164.2131.0117.8 + 22 4 23 7 6 5 18 15 9 12 18 11-11161.6130.8117.9 + 22 4 24 7 7 7 3 3 5 4 0 5-11160.3130.7117.9 + 22 4 25 0 2 4 6 4 4 6 3 4-11158.5130.6118.0 + 22 4 26 0 0 3 2 4 4 2 2 2-11150.8130.6118.0 + 22 4 27 5 6 5 4 48 32 15 22 17-11143.4130.5118.1 + 22 4 28 22 18 18 6 7 12 15 15 14-11134.1130.6118.1 + 22 4 29 18 22 7 7 12 9 12 7 12-11125.3130.7118.2 + 22 4 30 32 27 15 9 7 15 6 7 15-11121.5130.9118.2 + 22 5 1 15 12 9 5 6 5 6 6 8-11110.6131.1118.3 + 22 5 2 12 4 3 0 2 5 6 3 4-11113.7131.2118.3 + 22 5 3 6 6 6 4 6 4 4 9 6-11115.6131.5118.4 + 22 5 4 6 6 7 6 5 2 4 7 5-11132.3131.8118.5 + 22 5 5 2 5 4 0 3 5 4 3 3-11122.0132.3118.6 + 22 5 6 0 2 6 4 4 5 4 2 3-11121.3132.6118.7 + 22 5 7 0 0 0 2 3 2 0 4 1-11120.2132.9118.8 + 22 5 8 6 4 4 5 7 6 4 6 5-11121.4132.8118.9 + 22 5 9 9 15 7 5 5 4 4 2 6-11119.3132.8119.0 + 22 5 10 0 2 0 0 5 5 2 4 2-11118.1132.8119.1 + 22 5 11 5 4 3 2 4 7 7 7 5-11135.6131.6119.3 + 22 5 12 7 7 4 2 12 12 12 5 8-11135.7131.5119.4 + 22 5 13 7 3 4 5 6 4 9 12 6-11152.6131.4119.5 + 22 5 14 6 4 4 4 4 12 9 7 6-11155.9131.2119.7 + 22 5 15 18 18 9 6 7 9 6 3 10-11156.9131.1119.8 + 22 5 16 5 15 15 12 7 7 7 3 9-11165.3131.0120.0 + 22 5 17 3 12 15 12 18 7 9 7 10-11174.7130.8120.1 + 22 5 18 15 6 2 5 3 4 4 7 6-11184.0130.7120.3 + 22 5 19 9 12 12 5 7 6 7 9 8-11177.3130.6120.4 + 22 5 20 5 12 6 9 7 22 9 15 11-11169.5130.5120.5 + 22 5 21 12 12 7 4 15 22 9 3 11-11170.8130.4120.6 + 22 5 22 22 15 15 7 9 6 5 3 10-11168.8130.5120.7 + 22 5 23 5 4 9 7 2 2 0 0 4-11162.2130.6120.8 + 22 5 24 3 5 0 4 6 2 2 3 3-11150.6130.6120.8 + 22 5 25 6 9 6 6 2 5 5 6 6-11140.1130.7120.9 + 22 5 26 3 5 3 4 4 4 4 3 4-11126.0130.7121.0 + 22 5 27 2 3 5 9 48 32 15 27 18-11116.7130.6121.1 + 22 5 28 48 48 39 15 9 6 3 7 22-11104.5130.5121.1 + 22 5 29 15 15 18 9 15 22 15 15 16-11101.1130.4121.1 + 22 5 30 15 9 6 5 4 6 9 9 8-11103.4130.2121.2 + 22 5 31 18 7 6 5 7 7 12 6 9-11100.7130.1121.2 + 22 6 1 7 7 5 5 3 4 2 4 5-11107.1130.1121.3 + 22 6 2 2 2 2 4 5 4 5 6 4-11103.8130.1121.4 + 22 6 3 4 3 4 3 3 3 3 5 4-11103.6130.3121.5 + 22 6 4 2 3 4 2 2 3 3 2 3-11103.9130.4121.6 + 22 6 5 2 3 3 4 4 4 6 3 4-11101.6130.7121.7 + 22 6 6 6 5 5 15 9 7 12 12 9-11 99.3131.0121.9 + 22 6 7 7 9 5 9 4 5 4 9 7-11101.3131.3122.1 + 22 6 8 7 0 3 6 2 2 7 4 4-11102.9131.6122.3 + 22 6 9 5 5 3 4 5 4 4 5 4-11109.6131.9122.4 + 22 6 10 7 3 2 5 6 3 2 2 4-11113.9132.1122.6 + 22 6 11 7 7 15 4 5 6 5 6 7-11115.6132.2122.8 + 22 6 12 5 7 6 9 12 15 9 6 9-11125.1132.3123.0 + 22 6 13 22 39 9 6 7 12 7 6 14-11135.6132.3123.2 + 22 6 14 6 6 6 5 6 6 7 9 6-11150.1132.0123.4 + 22 6 15 6 18 22 15 32 27 6 7 17-11144.5131.8123.6 + 22 6 16 5 9 9 9 15 7 7 22 10-11151.4131.6123.7 + 22 6 17 15 9 9 15 15 9 18 9 12-11153.7131.3123.9 + 22 6 18 18 12 6 9 3 6 15 32 13-11144.7131.0124.0 + 22 6 19 18 15 6 9 9 12 5 3 10-11148.2130.7124.0 + 22 6 20 5 4 9 9 18 12 18 5 10-11141.0130.4124.1 + 22 6 21 6 6 4 9 6 6 5 12 7-11143.2130.0124.2 + 22 6 22 7 6 15 7 9 6 12 9 9-11132.9129.5124.2 + 22 6 23 12 15 7 9 5 6 15 7 10-11125.5128.9124.2 + 22 6 24 9 2 2 2 3 5 15 12 6-11119.2128.2124.2 + 22 6 25 9 6 7 6 7 12 32 39 15-11111.7127.6124.2 + 22 6 26 39 9 6 32 27 15 27 22 22-11105.4127.0124.2 + 22 6 27 27 27 12 2 3 2 5 6 11-11101.4126.3124.3 + 22 6 28 5 9 7 5 5 2 6 18 7-11 99.3125.5124.4 + 22 6 29 6 5 6 6 6 2 2 3 5-11 99.4124.8124.5 + 22 6 30 4 3 4 3 3 2 3 3 3-11 98.9124.1124.6 + 22 7 1 3 2 2 3 3 4 12 18 6-11101.3123.3124.8 + 22 7 2 27 39 27 9 7 12 3 12 17-11103.6122.7125.0 + 22 7 3 9 0 4 5 7 4 9 15 7-11105.7122.2125.2 + 22 7 4 12 27 22 15 15 22 22 15 19-11107.9121.9125.3 + 22 7 5 2 2 3 2 2 4 3 3 3-11113.1121.8125.5 + 22 7 6 3 3 6 5 3 5 3 0 4-11118.4121.9125.7 + 22 7 7 0 2 7 9 56 27 27 27 19-11125.3122.1125.8 + 22 7 8 48 39 15 12 15 7 12 6 19-11133.9122.3126.1 + 22 7 9 4 4 2 3 12 7 6 5 5-11141.5122.6126.2 + 22 7 10 2 4 9 6 9 5 5 3 5-11158.2122.6126.5 + 22 7 11 3 2 4 9 7 15 27 15 10-11166.4122.7126.7 + 22 7 12 12 9 22 18 32 12 18 9 17-11170.4122.6126.9 + 22 7 13 5 4 3 4 6 5 3 0 4-11170.3122.6127.2 + 22 7 14 2 2 3 3 5 4 5 5 4-11174.6122.6127.5 + 22 7 15 6 7 2 4 9 7 7 12 7-11177.0122.7127.8 + 22 7 16 6 9 15 7 3 3 3 3 6-11182.0122.9128.1 + 22 7 17 3 3 3 3 3 3 6 4 4-11166.5123.2128.4 + 22 7 18 2 4 6 9 9 5 12 15 8-11154.3123.5128.7 + 22 7 19 12 27 32 22 39 27 32 22 27-11148.8125.4129.0 + 22 7 20 6 9 2 5 6 5 5 5 5-11136.5125.7129.2 + 22 7 21 6 3 5 12 15 56 39 22 20-11125.6125.9129.6 + 22 7 22 18 9 12 12 5 9 5 9 10-11118.4125.9129.9 + 22 7 23 27 56 18 6 7 4 6 12 17-11114.1125.8130.2 + 22 7 24 12 9 7 5 5 12 7 6 8-11110.5125.8130.4 + 22 7 25 9 6 2 3 3 4 4 6 5-11105.5125.5130.7 + 22 7 26 18 7 2 6 6 4 4 7 7-11101.9125.3130.9 + 22 7 27 9 9 6 7 7 9 7 12 8-11101.1125.0131.1 + 22 7 28 6 7 9 4 9 7 5 4 6-11 96.3124.7131.2 + 22 7 29 4 2 2 2 3 4 6 5 4-11 95.9124.5131.3 + 22 7 30 5 5 3 5 9 9 3 9 6-11 93.6124.3131.4 + 22 7 31 6 5 6 6 15 27 7 15 11-11 97.1124.1131.4 + 22 8 1 12 9 6 6 7 4 6 7 7-11 98.2124.1131.4 + 22 8 2 7 9 7 9 6 9 9 9 8-11100.7124.3131.5 + 22 8 3 12 9 6 5 6 7 7 7 7-11102.8124.6131.5 + 22 8 4 6 5 5 4 6 7 7 4 6-11111.9125.1131.5 + 22 8 5 15 7 2 3 4 5 2 6 6-11115.4125.5131.5 + 22 8 6 3 2 2 2 3 3 3 4 3-11119.7126.0131.5 + 22 8 7 4 7 9 18 27 27 27 67 23-11119.4126.3131.6 + 22 8 8 48 32 39 22 15 12 22 22 27-11116.2126.8131.7 + 22 8 9 12 27 18 27 27 18 15 9 19-11112.4127.2131.8 + 22 8 10 7 15 5 9 12 15 22 9 12-11110.5127.6132.0 + 22 8 11 9 6 9 18 15 27 32 18 17-11117.9128.1132.3 + 22 8 12 12 3 9 7 7 5 2 3 6-11122.7128.5132.5 + 22 8 13 4 7 9 7 7 12 7 7 8-11127.5128.9132.8 + 22 8 14 12 7 5 5 5 3 2 2 5-11128.8129.4133.0 + 22 8 15 3 4 5 4 9 7 3 2 5-11134.0129.8133.2 + 22 8 16 3 4 3 4 4 3 2 6 4-11131.7130.0133.4 + 22 8 17 5 15 4 9 9 39111 67 32-11125.7130.1133.6 + 22 8 18 12 9 18 12 48 48 39 39 28-11119.4130.1133.7 + 22 8 19 18 15 7 7 7 27 48 27 20-11107.9130.1134.4 + 22 8 20 27 15 12 4 2 2 15 18 12-11103.9129.8134.6 + 22 8 21 15 9 6 12 12 32 15 7 14-11 99.2129.5134.8 + 22 8 22 15 12 5 5 3 4 5 3 7-11104.9129.2135.0 + 22 8 23 2 2 0 3 3 2 2 7 3-11103.2129.0135.1 + 22 8 24 2 3 2 4 2 3 0 3 2-11110.2128.7135.3 + 22 8 25 3 2 3 4 4 2 0 5 3-11120.3128.4135.4 + 22 8 26 2 4 2 3 4 3 4 5 3-11121.2128.2135.6 + 22 8 27 5 4 3 15 22 9 18 12 11-11130.2128.0136.1 + 22 8 28 6 6 5 15 5 6 7 3 7-11257.0128.1136.3 + 22 8 29 7 22 12 15 15 6 12 5 12-11133.1128.2136.5 + 22 8 30 9 27 9 15 7 6 12 15 13-11128.1128.5136.6 + 22 8 31 15 15 5 7 9 9 12 32 13-11115.5129.0136.8 + 22 9 1 9 18 12 9 4 5 5 5 8-11118.4129.3137.0 + 22 9 2 5 3 6 9 9 3 5 22 8-11132.1129.7137.2 + 22 9 3 48 18 18 18 15 12 18 32 22-11125.6129.9137.4 + 22 9 4 48 67 80 94 39 80 39 48 62-11130.4130.1137.5 + 22 9 5 48 39 32 39 32 48 22 32 37-11132.4130.2137.7 + 22 9 6 27 27 15 15 12 18 22 18 19-11128.2130.4137.9 + 22 9 7 15 7 15 9 15 22 15 5 13-11128.1130.8138.1 + 22 9 8 7 27 27 15 15 12 15 32 19-11128.5131.0138.2 + 22 9 9 22 7 12 22 12 7 3 7 12-11128.0131.2138.4 + 22 9 10 12 7 18 7 12 18 18 6 12-11137.7131.5138.4 + 22 9 11 12 5 5 6 6 18 7 5 8-11153.5131.6138.5 + 22 9 12 12 9 9 6 5 3 6 3 7-11152.3131.6138.6 + 22 9 13 0 2 5 3 3 3 0 3 2-11155.9131.7138.6 + 22 9 14 3 3 6 5 6 6 12 27 9-11146.0131.7138.7 + 22 9 15 22 3 3 2 4 7 3 4 6-11141.3131.7138.8 + 22 9 16 2 5 5 5 3 6 2 3 4-11132.5131.7138.9 + 22 9 17 3 2 3 5 6 2 4 7 4-11132.8131.8139.0 + 22 9 18 6 7 12 12 18 7 7 7 10-11137.4132.0139.1 + 22 9 19 12 5 3 6 15 22 9 15 11-11129.1132.2139.3 + 22 9 20 7 7 5 5 6 5 12 9 7-11138.4132.4139.4 + 22 9 21 7 2 6 6 4 3 2 4 4-11138.0132.5139.6 + 22 9 22 0 3 4 2 6 6 5 15 5-11137.7132.6139.7 + 22 9 23 9 4 18 9 15 15 9 9 11-11147.3132.6139.8 + 22 9 24 7 18 6 15 12 18 15 9 13-11147.4132.5139.9 + 22 9 25 5 6 6 6 5 5 0 6 5-11135.5132.3140.0 + 22 9 26 5 0 0 4 4 2 2 18 4-11135.8132.2140.1 + 22 9 27 56 39 7 32 15 7 9 15 23-11135.1132.3140.1 + 22 9 28 4 3 2 0 3 5 5 5 3-11135.3132.4140.1 + 22 9 29 3 2 7 7 12 9 4 5 6-11137.7132.7140.1 + 22 9 30 12 22 27 12 18 6 4 2 13-11137.5133.1139.8 + 22 10 1 2 0 2 2 0 5 3 3 2-11148.3133.5139.7 + 22 10 2 9 5 4 7 9 15 9 39 12-11154.1133.9139.7 + 22 10 3 22 15 15 5 27 27 67 15 24-11155.3134.3139.7 + 22 10 4 15 22 32 9 5 5 32 15 17-11152.5134.6139.7 + 22 10 5 9 18 15 6 7 15 18 18 13-11161.0134.8139.7 + 22 10 6 9 9 18 9 15 18 27 22 16-11155.6135.0139.8 + 22 10 7 22 27 15 12 15 15 4 3 14-11159.5135.0139.9 + 22 10 8 4 15 18 6 12 12 15 6 11-11156.9133.2139.9 + 22 10 9 27 22 22 15 22 32 22 22 23-11160.1133.0140.0 + 22 10 10 9 18 7 15 4 5 5 9 9-11162.7132.8140.1 + 22 10 11 15 5 4 2 4 4 5 9 6-11149.8132.8140.3 + 22 10 12 3 0 2 4 7 4 9 6 4-11140.0132.7140.4 + 22 10 13 4 3 4 2 3 2 5 5 4-11129.4132.5140.6 + 22 10 14 7 9 22 27 32 15 5 12 16-11119.9132.3140.8 + 22 10 15 39 15 6 12 5 15 27 7 16-11114.4132.0140.9 + 22 10 16 15 6 9 22 27 15 9 18 15-11118.4131.7141.1 + 22 10 17 3 3 2 0 5 15 0 3 4-11124.8131.4141.2 + 22 10 18 3 2 5 5 4 7 6 9 5-11113.1131.1141.2 + 22 10 19 5 5 4 3 3 2 3 4 4-11112.3130.8141.2 + 22 10 20 3 0 4 6 15 6 4 9 6-11114.8130.5141.1 + 22 10 21 3 4 4 5 2 2 5 5 4-11108.4130.2141.1 + 22 10 22 7 7 12 22 22 56 48 15 24-11103.9129.7141.0 + 22 10 23 12 7 7 4 6 22 32 27 15-11107.3129.3141.0 + 22 10 24 12 9 7 5 7 3 3 4 6-11113.6129.0140.9 + 22 10 25 0 0 4 5 4 7 2 2 3-11115.0128.9140.8 + 22 10 26 0 0 0 2 4 5 6 12 4-11120.9128.9140.8 + 22 10 27 7 6 7 12 15 15 7 6 9-11128.1129.0140.8 + 22 10 28 7 9 9 7 9 32 15 32 15-11127.7129.2140.8 + 22 10 29 27 18 39 39 27 18 15 15 25-11132.1129.2140.9 + 22 10 30 7 15 9 12 9 9 15 7 10-11128.7129.4141.0 + 22 10 31 12 12 15 7 9 18 7 6 11-11126.0129.4141.1 + 22 11 1 4 3 18 12 7 3 6 5 7-11126.1129.4141.3 + 22 11 2 9 18 12 7 12 27 15 7 13-11127.7129.5141.4 + 22 11 3 12 6 18 32 39 48 18 39 27-11123.3129.6141.5 + 22 11 4 22 22 18 15 9 12 7 9 14-11115.7129.7141.6 + 22 11 5 12 18 6 12 9 6 3 4 9-11128.8130.0141.7 + 22 11 6 3 3 3 3 2 2 2 3 3-11128.5130.3141.8 + 22 11 7 4 6 6 18 27 48 39 6 19-11132.1130.5141.9 + 22 11 8 9 18 15 12 15 6 5 6 11-11129.8130.7142.1 + 22 11 9 9 15 7 5 3 0 0 0 5-11135.0130.8142.3 + 22 11 10 0 0 0 0 0 0 2 0 0-11136.0130.8142.4 + 22 11 11 0 4 9 6 9 12 6 12 7-11134.9130.7142.4 + 22 11 12 9 9 6 3 3 3 2 0 4-11135.4130.3142.4 + 22 11 13 5 12 4 5 7 9 6 4 7-11134.1129.9142.4 + 22 11 14 0 2 4 6 4 3 5 0 3-11138.5129.6142.3 + 22 11 15 2 4 2 2 2 2 2 2 2-11131.3129.4142.2 + 22 11 16 0 0 0 2 2 5 5 2 2-11130.0129.2142.2 + 22 11 17 0 3 0 0 3 0 0 3 1-11116.5129.2142.1 + 22 11 18 2 0 2 3 7 7 15 15 6-11113.4129.2142.0 + 22 11 19 9 0 4 5 4 2 3 4 4-11112.4129.1142.1 + 22 11 20 3 2 0 2 3 12 12 9 5-11116.3129.2142.0 + 22 11 21 18 18 7 7 6 5 4 6 9-11114.2129.4142.0 + 22 11 22 3 3 2 2 2 4 2 0 2-11112.9129.5142.0 + 22 11 23 0 0 2 0 4 3 4 2 2-11110.5129.6142.1 + 22 11 24 4 6 6 3 5 3 5 9 5-11106.9129.9142.1 + 22 11 25 9 15 27 15 18 15 22 22 18-11105.7130.3142.2 + 22 11 26 22 12 18 7 18 12 15 15 15-11104.3130.7142.3 + 22 11 27 12 15 7 7 18 12 22 12 13-11104.4131.2142.5 + 22 11 28 32 56 15 9 4 6 32 22 22-11104.1131.9142.6 + 22 11 29 27 15 18 15 27 27 18 9 20-11105.0132.7142.8 + 22 11 30 15 18 9 39 27 15 56 15 24-11108.0133.6143.0 + 22 12 1 12 39 22 22 27 27 22 22 24-11115.4134.6143.1 + 22 12 2 15 18 15 15 12 15 18 12 15-11120.6135.6143.3 + 22 12 3 7 18 9 9 6 15 7 6 10-11130.0136.8143.5 + 22 12 4 6 7 4 7 15 32 32 27 16-11139.6137.9143.7 + 22 12 5 0 9 9 6 12 7 5 2 6-11145.4139.2143.9 + 22 12 6 0 5 2 3 6 3 4 2 3-11140.0140.5144.1 + 22 12 7 4 4 3 12 39 32 18 12 16-11143.6141.6144.3 + 22 12 8 6 12 7 5 4 4 7 27 9-11138.8142.7144.5 + 22 12 9 32 9 7 12 6 5 6 6 10-11144.6143.7144.6 + 22 12 10 15 7 3 12 3 7 12 6 8-11137.4144.8144.8 + 22 12 11 7 12 9 5 7 12 5 12 9-11143.2145.9144.9 + 22 12 12 12 5 2 2 3 4 6 9 5-11146.2146.8145.0 + 22 12 13 7 2 2 2 3 3 0 3 3-11148.3147.6145.0 + 22 12 14 0 5 3 2 2 6 7 6 4-11159.6148.4145.0 + 22 12 15 6 7 6 4 4 5 5 3 5-11160.7149.1145.0 + 22 12 16 12 4 0 2 3 3 5 5 4-11158.0149.5145.1 + 22 12 17 4 6 0 2 0 2 2 0 2-11149.7149.8145.1 + 22 12 18 2 2 2 4 3 3 4 7 3-11150.7149.9145.2 + 22 12 19 7 22 12 5 6 5 7 7 9-11147.5149.9145.2 + 22 12 20 5 4 4 2 2 4 7 9 5-11141.7149.9145.4 + 22 12 21 6 6 12 7 6 18 6 6 8-11134.2149.8145.5 + 22 12 22 3 0 5 7 15 18 22 12 10-11127.0149.8145.6 + 22 12 23 22 9 22 12 32 22 7 39 21-11123.6149.7145.7 + 22 12 24 15 32 27 18 18 32 18 15 22-11129.0149.7145.9 + 22 12 25 12 15 5 4 7 6 6 12 8-11139.3149.6146.0 + 22 12 26 12 7 15 32 67 39 6 5 23-11145.5149.7146.1 + 22 12 27 27 32 32 27 27 32 9 7 24-11153.8149.8146.3 + 22 12 28 9 6 5 3 3 3 3 4 5-11155.1150.2146.5 + 22 12 29 0 2 5 6 15 18 12 22 10-11157.4151.0146.7 + 22 12 30 39 27 27 18 32 39 32 15 29-11172.4152.0146.8 + 22 12 31 15 15 12 6 15 12 18 27 15-11159.5153.2147.0 + 23 1 1 9 15 7 12 6 12 22 27 14-11147.5154.3147.2 + 23 1 2 7 7 4 6 5 5 7 15 7-11141.5155.4147.4 + 23 1 3 5 2 3 2 4 7 9 12 6-11143.6156.4147.6 + 23 1 4 27 39 32 18 18 7 6 3 19-11146.0157.4147.7 + 23 1 5 2 3 4 5 12 15 12 12 8-11149.2158.2147.8 + 23 1 6 4 2 2 3 4 2 5 5 3-11166.7159.0148.0 + 23 1 7 4 9 4 2 2 12 9 2 6-11173.0159.7148.0 + 23 1 8 7 9 7 6 15 5 4 3 7-11177.8162.6148.2 + 23 1 9 6 2 2 4 3 6 7 5 4-11184.7163.3148.3 + 23 1 10 3 3 3 3 7 15 6 7 6-11186.6164.0148.4 + 23 1 11 6 12 6 6 4 7 9 9 7-11188.7164.5148.5 + 23 1 12 15 7 7 6 7 7 6 15 9-11204.7165.0148.6 + 23 1 13 9 6 7 9 9 6 18 27 11-11201.7165.2148.6 + 23 1 14 15 18 9 6 3 4 6 12 9-11220.4165.3148.7 + 23 1 15 39 22 22 22 22 22 27 48 28-11226.7165.4148.7 + 23 1 16 27 6 15 15 18 18 6 3 14-11220.7167.1148.7 + 23 1 17 0 6 6 4 4 2 0 18 5-11214.6167.2148.9 + 23 1 18 27 27 18 12 12 9 6 3 14-11213.2167.5149.1 + 23 1 19 0 4 12 12 9 2 3 5 6-11218.9167.7149.2 + 23 1 20 4 4 0 5 6 12 5 5 5-11210.6167.9149.4 + 23 1 21 9 27 27 6 9 15 18 12 15-11202.1168.2149.5 + 23 1 22 7 5 9 7 7 9 18 6 9-11192.3168.7149.7 + 23 1 23 2 6 4 3 15 7 5 9 6-11183.2169.1149.9 + 23 1 24 4 2 3 5 5 4 3 2 4-11174.6169.3150.1 + 23 1 25 0 0 2 7 15 9 6 5 6-11166.5169.6150.2 + 23 1 26 4 12 12 9 12 12 12 4 10-11146.0169.8150.4 + 23 1 27 3 2 6 9 12 18 6 9 8-11140.5170.2150.6 + 23 1 28 15 12 7 4 12 9 12 5 10-11133.4170.5150.9 + 23 1 29 0 2 7 4 4 7 3 6 4-11132.9170.8151.1 + 23 1 30 4 2 3 4 3 3 4 12 4-11131.9170.9151.4 + 23 1 31 0 7 12 7 4 18 9 6 8-11132.9171.1151.6 + 23 2 1 4 3 2 2 4 5 12 9 5-11129.6171.3151.8 + 23 2 2 18 6 2 3 2 0 2 3 5-11131.0171.5152.0 + 23 2 3 7 6 2 2 6 15 12 6 7-11130.7171.5152.1 + 23 2 4 12 12 3 2 4 3 0 4 5-11135.1171.5152.3 + 23 2 5 2 7 2 4 4 5 6 5 4-11140.0171.3152.5 + 23 2 6 15 18 12 18 12 9 22 22 16-11152.4171.1152.6 + 23 2 7 27 27 18 22 15 15 12 12 19-11179.7170.9152.8 + 23 2 8 15 18 15 27 18 12 18 15 17-11192.3170.9152.9 + 23 2 9 15 27 12 15 9 18 18 32 18-11209.1170.6153.0 + 23 2 10 27 12 9 12 15 7 18 22 15-11202.3170.6153.1 + 23 2 11 18 15 7 9 9 4 4 2 9-11204.1170.7153.2 + 23 2 12 6 7 6 7 6 6 9 7 7-11194.6170.8153.3 + 23 2 13 3 0 3 3 7 4 5 4 4-11184.4171.0153.4 + 23 2 14 7 2 9 7 4 5 3 9 6-11175.3171.2153.4 + 23 2 15 12 22 56 32 18 27 18 32 27-11169.5171.3153.5 + 23 2 16 15 12 48 32 32 32 5 5 23-11159.2171.2153.6 + 23 2 17 6 15 7 5 5 3 4 0 6-11335.0170.9153.7 + 23 2 18 4 7 3 5 7 3 9 7 6-11163.6170.4153.8 + 23 2 19 12 3 5 4 7 5 5 5 6-11165.2169.7154.0 + 23 2 20 3 2 6 15 9 6 9 6 7-11156.3169.0154.1 + 23 2 21 15 18 18 27 22 6 4 5 14-11157.4168.2154.2 + 23 2 22 5 2 5 6 7 7 7 9 6-11148.6167.3154.4 + 23 2 23 32 22 15 12 12 27 18 22 20-11145.1166.5154.5 + 23 2 24 9 4 7 5 6 3 0 2 5-11160.7165.5154.5 + 23 2 25 3 2 6 7 7 18 15 18 10-11273.7164.4154.6 + 23 2 26 18 9 15 18 15 6 48 67 25-11155.9163.3154.6 + 23 2 27 48 80111111 94111 94 80 91-11158.1162.4154.3 + 23 2 28 67 39 15 15 6 5 27 32 26-11157.9161.5154.4 + 23 3 1 15 4 5 12 3 5 7 7 7-11159.0160.5154.4 + 23 3 2 3 5 7 7 5 6 12 22 8-11165.8159.7154.5 + 23 3 3 22 22 18 18 18 7 27 27 20-11187.5159.1154.5 + 23 3 4 18 15 15 18 7 12 18 27 16-11178.6158.7154.5 + 23 3 5 18 18 22 12 27 18 32 22 21-11176.8158.6154.5 + 23 3 6 22 15 12 7 12 15 12 22 15-11185.0158.6154.6 + 23 3 7 9 15 15 12 7 4 4 3 9-11177.5158.7154.6 + 23 3 8 2 6 7 6 5 5 15 9 7-11179.2159.0154.7 + 23 3 9 7 15 27 18 15 15 9 7 14-11176.2159.2154.8 + 23 3 10 18 6 6 2 4 15 9 12 9-11168.8159.4154.9 + 23 3 11 12 6 5 2 4 3 5 12 6-11155.3159.6155.0 + 23 3 12 15 7 15 9 3 2 3 3 7-11148.1159.8155.0 + 23 3 13 2 0 2 2 3 5 3 2 2-11141.5159.9155.1 + 23 3 14 12 22 18 18 18 15 12 32 18-11136.9160.0155.1 + 23 3 15 22 67 27 27 15 7 7 67 30-11134.2160.1155.1 + 23 3 16 22 9 3 4 0 2 3 2 6-11133.9160.1155.1 + 23 3 17 2 5 6 9 9 3 2 7 5-11132.9160.1155.1 + 23 3 18 7 12 7 9 9 5 9 5 8-11139.0160.2155.1 + 23 3 19 6 12 7 5 6 9 18 6 9-11141.4160.2155.1 + 23 3 20 15 2 2 7 22 27 5 9 11-11154.8159.9155.2 + 23 3 21 9 4 6 7 4 9 5 7 6-11150.4159.4155.3 + 23 3 22 22 22 15 18 9 15 18 2 15-11157.7158.7155.3 + 23 3 23 3 6 15 39111 39 94132 55-11150.0158.2155.4 + 23 3 24154207 94 27 9 22 39 32 73-11156.6157.6155.5 + 23 3 25 15 7 22 22 12 9 12 9 14-11159.4157.2155.6 + 23 3 26 12 12 6 3 3 4 12 6 7-11158.6157.0155.7 + 23 3 27 2 2 2 2 2 3 4 4 3-11157.5156.7155.8 + 23 3 28 5 2 2 3 6 4 3 4 4-11158.1156.6155.9 + 23 3 29 7 3 3 3 6 5 5 6 5-11147.3156.8155.9 + 23 3 30 15 9 9 15 12 22 48 12 18-11140.0155.1156.0 + 23 3 31 27 32 18 18 9 9 15 27 19-11129.0155.3156.0 + 23 4 1 7 4 6 18 18 22 12 22 14-11125.1155.3156.1 + 23 4 2 22 22 12 18 9 3 7 18 14-11126.7155.2156.1 + 23 4 3 18 5 5 6 12 15 22 15 12-11133.5155.1156.1 + 23 4 4 22 22 9 9 7 5 12 15 13-11135.7155.0156.1 + 23 4 5 15 7 6 7 15 18 12 7 11-11136.7154.9156.1 + 23 4 6 5 5 4 9 7 4 15 7 7-11137.2154.6156.1 + 23 4 7 15 12 6 6 6 4 5 7 8-11136.6153.0156.1 + 23 4 8 4 7 6 4 3 5 2 7 5-11136.2153.0156.1 + 23 4 9 15 4 3 4 4 5 5 7 6-11140.7153.1156.1 + 23 4 10 12 18 18 15 12 12 5 5 12-11140.3153.3156.1 + 23 4 11 2 4 9 3 4 5 6 2 4-11144.0153.4156.1 + 23 4 12 0 0 4 2 5 4 2 4 3-11154.7153.4156.1 + 23 4 13 9 6 2 2 3 7 6 7 5-11160.4153.0156.2 + 23 4 14 5 0 5 7 9 7 3 7 5-11172.3152.9156.2 + 23 4 15 9 5 9 6 7 6 5 7 7-11176.9152.7156.3 + 23 4 16 3 3 6 4 4 2 4 4 4-11179.1152.3156.4 + 23 4 17 5 4 5 5 4 6 2 5 5-11167.8152.1156.5 + 23 4 18 2 4 2 2 22 39 22 12 13-11154.4151.8156.5 + 23 4 19 12 4 4 18 22 9 4 3 10-11148.3151.6156.5 + 23 4 20 2 3 3 3 5 9 4 6 4-11148.4151.5156.6 + 23 4 21 7 5 4 6 6 9 18 15 9-11152.7151.7156.6 + 23 4 22 9 9 5 2 2 6 5 9 6-11142.7151.9156.7 + 23 4 23 9 6 5 18 39 56236154 65-11136.7152.2156.7 + 23 4 24111207132 67 22 15 9 15 72-11135.5152.6156.7 + 23 4 25 5 2 2 4 12 12 18 9 8-11132.3153.1156.7 + 23 4 26 12 18 7 9 18 15 18 15 14-11138.2153.6156.8 + 23 4 27 32 27 18 22 18 22 12 15 21-11142.6154.1156.8 + 23 4 28 18 27 12 12 18 27 15 18 18-11151.8154.5156.8 + 23 4 29 18 18 18 27 27 22 18 9 20-11158.0154.9156.8 + 23 4 30 15 15 15 5 6 6 3 5 9-11155.8155.1156.8 + 23 5 1 12 5 7 5 5 9 12 18 9-11150.1155.3156.8 + 23 5 2 18 12 6 12 4 4 6 3 8-11159.2155.3156.9 + 23 5 3 0 0 2 2 4 4 3 7 3-11158.7155.3156.9 + 23 5 4 5 5 6 3 3 7 4 9 5-11164.7155.3157.0 + 23 5 5 6 3 3 3 2 2 3 3 3-11164.7155.1157.1 + 23 5 6 32 80 18 39 32 12 15 7 29-11154.5155.1157.2 + 23 5 7 4 6 7 5 9 27 7 12 10-11160.0155.2157.3 + 23 5 8 32 6 5 4 22 18 9 22 15-11175.1155.2157.3 + 23 5 9 22 12 4 5 9 7 6 32 12-11198.4155.5157.3 + 23 5 10 22 56 12 27 39 18 7 12 24-11173.4155.9157.4 + 23 5 11 12 12 7 6 5 6 7 9 8-11166.7156.6157.4 + 23 5 12 9 15 15 9 56 18 12 9 18-11152.2157.3157.4 + 23 5 13 9 7 7 3 5 9 22 27 11-11146.8158.0157.4 + 23 5 14 3 5 3 4 7 18 15 9 8-11142.7158.5157.4 + 23 5 15 4 2 2 2 4 5 12 6 5-11137.4158.9157.4 + 23 5 16 9 7 12 4 5 5 6 5 7-11137.3159.2157.3 + 23 5 17 4 3 2 3 3 3 3 2 3-11141.0159.5157.3 + 23 5 18 3 2 2 2 2 0 2 0 2-11154.1159.7157.3 + 23 5 19 2 2 2 3 4 6 15 27 8-11168.5160.0157.3 + 23 5 20 67 48 39 39 12 18 15 18 32-11173.7160.4157.3 + 23 5 21 12 7 5 5 15 27 67 67 26-11167.3160.6157.3 + 23 5 22 39 18 12 12 9 18 27 27 20-11165.5161.0157.4 + 23 5 23 12 15 12 7 3 4 18 22 12-11158.8161.2157.6 + 23 5 24 7 9 5 7 12 9 15 12 10-11168.2161.5157.8 + 23 5 25 15 12 15 12 7 5 15 6 11-11156.0161.5158.0 + 23 5 26 6 6 5 4 4 4 5 6 5-11152.9161.3158.2 + 23 5 27 3 4 3 3 2 2 4 7 4-11161.1161.1158.4 + 23 5 28 12 15 7 7 15 5 6 6 9-11155.4161.1158.6 + 23 5 29 3 2 2 3 3 4 4 5 3-11158.6161.2158.8 + 23 5 30 3 2 3 4 3 4 5 7 4-11166.5161.6159.2 + 23 5 31 9 5 9 6 9 12 9 15 9-11165.9162.2159.3 + 23 6 1 22 9 22 7 15 9 9 7 13-11168.5163.1159.5 + 23 6 2 7 5 5 3 3 3 4 6 5-11166.9163.8159.6 + 23 6 3 4 3 3 3 2 2 3 6 3-11169.3164.7159.7 + 23 6 4 7 4 7 9 5 5 27 7 9-11173.2165.3159.7 + 23 6 5 2 3 4 5 2 3 6 6 4-11174.1166.0159.7 + 23 6 6 12 7 4 5 7 3 3 2 5-11176.9166.6159.6 + 23 6 7 2 3 2 4 3 2 3 7 3-11172.1167.1159.6 + 23 6 8 6 5 4 5 6 4 4 2 5-11173.6168.1159.6 + 23 6 9 4 3 0 2 0 4 6 4 3-11169.3168.5159.5 + 23 6 10 3 2 2 5 5 5 5 3 4-11166.1168.9159.5 + 23 6 11 9 15 9 5 7 12 6 5 9-11158.6169.3159.4 + 23 6 12 5 4 5 5 9 7 5 5 6-11150.7169.5159.4 + 23 6 13 4 4 5 5 5 9 3 5 5-11150.9169.8159.3 + 23 6 14 12 3 2 3 2 3 2 2 4-11148.0169.9159.3 + 23 6 15 5 5 5 7 32 48 48 56 26-11157.9170.0159.2 + 23 6 16 39 80 27 39 27 15 12 15 32-11162.2170.2159.2 + 23 6 17 9 7 7 7 6 9 7 6 7-11163.2170.3159.2 + 23 6 18 12 9 5 6 6 9 15 7 9-11169.4170.3159.2 + 23 6 19 9 6 6 5 9 15 18 18 11-11174.3170.1159.2 + 23 6 20 12 7 4 6 7 9 6 12 8-11186.0170.2159.2 + 23 6 21 7 7 4 4 4 3 5 12 6-11182.2170.4159.4 + 23 6 22 3 5 12 12 12 7 9 12 9-11178.8170.7159.5 + 23 6 23 9 7 5 9 7 12 9 7 8-11175.2171.1159.7 + 23 6 24 5 15 15 9 12 15 22 32 16-11166.1171.4159.8 + 23 6 25 48 9 6 4 9 18 18 12 16-11159.9171.9159.9 + 23 6 26 7 9 9 7 12 15 7 15 10-11162.9172.5160.0 + 23 6 27 9 7 9 6 7 7 6 7 7-11156.2172.9160.0 + 23 6 28 7 9 5 9 6 5 7 9 7-11160.1173.2160.0 + 23 6 29 12 18 15 15 6 22 22 18 16-11167.6173.1159.9 + 23 6 30 12 5 6 6 15 6 2 0 7-11163.9172.9159.9 + 23 7 1 7 7 3 3 3 3 4 5 4-11171.0172.8159.8 + 23 7 2 3 5 3 5 6 4 2 4 4-11175.9172.7159.7 + 23 7 3 5 3 3 4 4 4 3 5 4-11179.0172.6159.7 + 23 7 4 3 4 3 3 4 4 3 3 3-11172.8172.5159.7 + 23 7 5 5 3 2 2 5 12 6 9 6-11159.8172.5159.6 + 23 7 6 7 7 6 18 15 9 6 12 10-11162.9172.6159.6 + 23 7 7 15 12 22 27 12 12 22 18 18-11166.8172.6159.6 + 23 7 8 18 5 5 4 2 4 5 3 6-11165.9172.6159.5 + 23 7 9 0 2 2 4 4 5 3 4 3-11185.2172.6159.5 + 23 7 10 4 4 2 4 5 4 5 3 4-11196.9172.4159.5 + 23 7 11 7 3 12 4 7 7 6 6 7-11220.6172.2159.4 + 23 7 12 7 5 5 5 5 6 9 4 6-11199.7172.0159.4 + 23 7 13 7 3 5 3 5 15 9 6 7-11209.7171.9159.4 + 23 7 14 15 18 18 6 12 32 39 22 20-11186.6171.6159.4 + 23 7 15 12 6 4 12 9 4 3 3 7-11184.5171.3159.3 + 23 7 16 3 3 2 2 3 3 18 27 8-11190.4170.9159.2 + 23 7 17 12 6 27 27 15 7 39 32 21-11185.9170.5159.1 + 23 7 18 32 12 7 6 18 5 22 6 14-11225.7170.2158.9 + 23 7 19 3 4 5 4 5 4 3 3 4-11195.1169.8158.8 + 23 7 20 3 4 3 3 5 32 22 7 10-11190.3169.5158.6 + 23 7 21 9 18 6 5 4 7 9 32 11-11178.5169.2158.5 + 23 7 22 15 12 9 7 6 2 4 6 8-11180.0169.0158.3 + 23 7 23 2 3 5 4 6 9 9 7 6-11178.0168.8158.2 + 23 7 24 9 5 3 4 6 4 6 9 6-11170.3168.6158.2 + 23 7 25 4 3 6 3 7 6 9 32 9-11174.4168.4158.2 + 23 7 26 18 39 27 18 15 15 12 9 19-11172.6168.2158.2 + 23 7 27 7 6 5 7 4 7 6 4 6-11170.5168.0158.2 + 23 7 28 2 2 2 4 7 5 9 9 5-11173.4167.8158.2 + 23 7 29 7 9 2 4 15 15 9 6 8-11184.1167.7158.2 + 23 7 30 3 12 5 9 12 7 7 6 8-11179.7167.6158.2 + 23 7 31 4 4 6 5 7 9 3 5 5-11182.4167.3158.2 + 23 8 1 7 6 3 5 15 12 9 7 8-11179.9167.1158.2 + 23 8 2 6 5 4 18 27 22 7 6 12-11178.1167.1158.2 + 23 8 3 5 6 5 7 6 5 2 2 5-11167.7166.9158.2 + 23 8 4 0 3 5 5 12 27 27 27 13-11175.8166.6158.2 + 23 8 5 48 94 56 39 18 6 3 3 33-11180.8166.5158.3 + 23 8 6 0 2 0 0 2 3 4 2 2-11178.5166.2158.4 + 23 8 7 15 7 2 4 7 5 12 27 10-11174.5166.0158.5 + 23 8 8 27 5 3 4 4 6 5 4 7-11163.4165.8158.5 + 23 8 9 6 4 5 4 7 6 6 9 6-11157.7165.7158.6 + 23 8 10 6 7 4 5 5 12 5 6 6-11160.0165.7158.5 + 23 8 11 4 3 3 2 4 5 3 4 4-11157.0165.6158.4 + 23 8 12 6 9 7 4 5 5 7 6 6-11152.2165.5158.4 + 23 8 13 7 4 3 3 4 4 3 4 4-11154.4165.5158.3 + 23 8 14 5 3 2 2 5 4 5 5 4-11158.1165.5158.3 + 23 8 15 2 2 2 3 4 2 4 4 3-11162.1165.7158.4 + 23 8 16 6 4 2 4 12 15 6 5 7-11164.2165.8158.4 + 23 8 17 9 6 7 2 6 7 5 3 6-11155.7165.8158.4 + 23 8 18 7 7 15 15 5 9 9 15 10-11154.4165.6158.4 + 23 8 19 9 5 4 5 5 5 15 7 7-11154.3165.2157.9 + 23 8 20 18 12 5 7 4 5 7 7 8-11149.8164.7157.9 + 23 8 21 7 6 12 9 12 5 7 5 8-11152.2163.9157.9 + 23 8 22 9 18 7 4 5 3 3 4 7-11154.4163.4157.8 + 23 8 23 4 3 2 2 2 2 3 6 3-11150.3162.8157.9 + 23 8 24 0 3 3 3 6 15 15 12 7-11147.3162.4157.9 + 23 8 25 7 3 2 2 4 5 3 3 4-11141.9162.0158.0 + 23 8 26 5 7 7 5 6 6 5 6 6-11142.2161.6158.0 + 23 8 27 18 18 9 4 6 7 9 5 10-11144.5161.2157.8 + 23 8 28 5 7 6 6 5 6 7 3 6-11144.5160.4157.8 + 23 8 29 0 0 2 5 7 4 4 7 4-11145.0159.9157.8 + 23 8 30 7 3 4 5 7 5 5 2 5-11141.2159.6157.9 + 23 8 31 3 5 6 6 4 5 7 6 5-11142.5159.4157.9 + 23 9 1 12 12 12 15 18 12 12 5 12-11138.3159.1157.8 + 23 9 2 18 32 39 39 48 32 32 56 37-11133.6158.9157.7 + 23 9 3 56 22 32 18 18 15 5 15 23-11132.8158.6157.6 + 23 9 4 12 9 4 4 5 7 7 0 6-11138.4158.3157.5 + 23 9 5 3 3 2 4 6 27 22 6 9-11145.2157.9157.4 + 23 9 6 6 3 7 3 18 9 3 2 6-11149.4157.6157.3 + 23 9 7 7 3 3 4 6 6 5 6 5-11163.3157.1157.2 + 23 9 8 12 5 0 3 5 9 5 2 5-11163.4156.5157.0 + 23 9 9 12 5 5 12 12 9 3 2 8-11163.7155.9156.9 + 23 9 10 4 0 0 2 0 4 3 5 2-11166.2155.2156.8 + 23 9 11 4 5 3 6 6 5 5 7 5-11178.8154.4156.8 + 23 9 12 3 2 3 15 56 56 22 27 23-11155.5153.7156.7 + 23 9 13 39 22 9 9 12 15 6 15 16-11144.4153.1156.7 + 23 9 14 32 9 15 5 6 9 27 32 17-11146.9152.4156.7 + 23 9 15 7 7 3 2 6 6 5 15 6-11140.6151.7156.7 + 23 9 16 5 2 3 2 2 6 15 12 6-11141.9151.1156.7 + 23 9 17 18 18 9 15 12 12 18 12 14-11146.1150.5156.7 + 23 9 18 32 27 15 7 39 48 48 27 30-11156.0150.0156.8 + 23 9 19 56 94 39 18 80 56 22 12 47-11167.6149.7156.9 + 23 9 20 22 18 18 12 7 7 15 18 15-11156.8149.4156.9 + 23 9 21 9 9 7 6 7 12 6 12 9-11169.4149.3157.0 + 23 9 22 6 4 7 7 7 18 6 12 8-11177.0149.3157.2 + 23 9 23 12 12 5 9 7 4 7 12 9-11174.1149.3157.3 + 23 9 24 7 5 7 6 4 4 67 67 21-11174.8149.3157.4 + 23 9 25 56 39 27 18 18 12 9 7 23-11171.1149.2157.5 + 23 9 26 15 27 39 39 48 18 18 18 28-11165.7149.0157.5 + 23 9 27 22 15 18 18 12 15 7 3 14-11156.7148.9157.6 + 23 9 28 6 15 2 3 3 2 0 7 5-11148.4148.7157.6 + 23 9 29 7 12 22 27 12 5 3 3 11-11155.5148.6157.7 + 23 9 30 5 7 9 7 9 9 9 9 8-11159.5148.4157.7 + 23 10 1 22 6 6 5 7 4 6 6 8-11161.5148.3157.8 + 23 10 2 12 15 4 5 6 5 5 9 8-11157.7148.1157.7 + 23 10 3 3 7 5 4 7 9 7 7 6-11153.8147.9157.7 + 23 10 4 12 9 12 7 6 6 7 18 10-11155.1147.7157.6 + 23 10 5 27 48 7 15 7 3 3 7 15-11156.1147.4157.6 + 23 10 6 7 9 7 5 5 5 3 15 7-11155.3147.1157.5 + 23 10 7 4 5 4 2 2 3 6 5 4-11157.0146.7157.5 + 23 10 8 9 6 7 5 3 5 5 7 6-11156.8146.4157.4 + 23 10 9 7 6 5 5 7 9 15 5 7-11165.2146.1157.4 + 23 10 10 3 7 4 4 2 3 0 0 3-11163.9146.1157.4 + 23 10 11 0 3 3 4 3 2 2 4 3-11157.5146.2157.3 + 23 10 12 4 0 2 2 0 3 3 3 2-11156.4146.6157.3 + 23 10 13 3 12 18 12 15 22 12 7 13-11148.4147.2157.3 + 23 10 14 5 4 5 7 4 2 15 5 6-11147.4147.9157.2 + 23 10 15 0 0 2 3 2 3 4 6 3-11143.8148.3157.3 + 23 10 16 7 0 2 2 5 0 0 0 2-11143.1148.7157.3 + 23 10 17 0 0 2 2 2 2 0 3 1-11136.4149.0157.4 + 23 10 18 0 7 5 12 12 15 9 7 8-11134.3149.2157.6 + 23 10 19 9 18 5 7 6 9 7 3 8-11127.7150.3157.8 + 23 10 20 4 5 6 7 7 4 7 12 7-11124.6150.3158.0 + 23 10 21 27 39 48 15 12 18 5 3 21-11121.4150.2158.1 + 23 10 22 6 5 6 7 5 6 15 6 7-11117.6150.0158.3 + 23 10 23 2 0 2 0 3 2 2 0 1-11120.8149.8158.6 + 23 10 24 2 0 3 4 3 3 4 3 3-11119.8149.7158.8 + 23 10 25 3 0 0 2 3 4 4 6 3-11124.4149.6159.0 + 23 10 26 9 12 7 27 27 15 32 39 21-11124.9149.5159.1 + 23 10 27 15 27 12 9 5 6 6 4 11-11125.9149.3159.1 + 23 10 28 3 15 18 22 22 15 12 27 17-11126.3149.1159.1 + 23 10 29 39 22 32 27 27 27 18 18 26-11133.3148.8159.1 + 23 10 30 27 9 4 15 18 5 7 9 12-11137.7148.3159.0 + 23 10 31 9 7 6 9 12 4 5 6 7-11145.1147.9159.0 + 23 11 1 6 12 6 12 9 7 5 5 8-11156.2147.3158.9 + 23 11 2 6 9 4 5 7 6 4 4 6-11155.9146.6158.9 + 23 11 3 3 3 4 4 3 2 0 0 2-11153.6146.1158.9 + 23 11 4 3 2 4 3 6 12 39 27 12-11152.7145.8158.9 + 23 11 5 12 7 6 67 94154111 39 61-11152.2145.4159.0 + 23 11 6 27 67 39 32 12 22 56 32 36-11143.6145.1159.0 + 23 11 7 48 22 9 9 12 15 15 15 18-11142.5145.0159.1 + 23 11 8 9 22 18 18 5 7 27 15 15-11143.1145.1159.2 + 23 11 9 12 9 15 7 7 6 15 12 10-11136.1145.3159.4 + 23 11 10 9 18 7 6 7 6 4 6 8-11141.1145.7159.5 + 23 11 11 5 5 6 3 4 3 3 2 4-11138.7146.0159.7 + 23 11 12 2 4 27 12 7 5 4 12 9-11134.4146.3159.9 + 23 11 13 48 22 4 6 15 12 6 3 15-11130.0146.5160.1 + 23 11 14 7 3 0 3 6 15 7 3 6-11121.2146.8160.4 + 23 11 15 12 7 9 6 18 15 18 12 12-11116.4146.8160.6 + 23 11 16 5 3 7 6 6 7 5 7 6-11115.3146.8160.8 + 23 11 17 0 0 0 3 3 7 5 0 2-11116.9146.6160.9 + 23 11 18 0 2 0 0 0 0 3 5 1-11124.2146.4161.0 + 23 11 19 2 2 4 4 3 0 4 4 3-11136.8146.1161.1 + 23 11 20 3 3 5 6 5 5 4 4 4-11152.8145.7161.2 + 23 11 21 4 9 32 18 18 22 15 27 18-11167.3145.5161.3 + 23 11 22 27 48 56 32 18 27 22 9 30-11184.8145.2161.4 + 23 11 23 15 12 9 4 5 2 0 2 6-11189.3145.1161.5 + 23 11 24 7 6 4 6 7 7 12 9 7-11173.5144.9161.5 + 23 11 25 15 18 27 39 39 39 94 22 37-11171.9144.7161.5 + 23 11 26 27 12 15 5 6 0 3 5 9-11175.5144.7161.5 + 23 11 27 5 5 6 6 7 9 5 7 6-11182.3144.9161.5 + 23 11 28 5 7 7 6 5 7 6 5 6-11247.8145.3161.6 + 23 11 29 3 6 5 3 4 3 6 3 4-11166.0145.8161.6 + 23 11 30 6 9 4 4 5 2 4 2 5-11162.0146.4161.6 + 23 12 1 32 22 27111 80 39 56 48 52-11157.6147.1161.7 + 23 12 2 56 27 5 3 3 5 3 5 13-11144.0147.9161.9 + 23 12 3 9 12 12 7 12 15 7 6 10-11135.2148.7161.9 + 23 12 4 7 12 12 12 12 6 5 4 9-11133.9149.4161.9 + 23 12 5 15 18 12 18 18 12 9 9 14-11137.5150.1162.0 + 23 12 6 12 9 9 9 12 15 7 6 10-11126.1150.7162.1 + 23 12 7 4 4 4 4 3 3 7 7 5-11130.6151.3162.1 + 23 12 8 4 2 3 4 3 6 7 5 4-11128.6151.9162.2 + 23 12 9 0 0 3 0 2 3 2 0 1-11124.1152.1162.3 + 23 12 10 3 3 3 2 3 3 5 3 3-11122.8152.3162.3 + 23 12 11 0 4 0 0 2 2 0 0 1-11122.1152.5162.4 + 23 12 12 0 5 3 3 18 18 9 3 7-11122.3152.7162.4 + 23 12 13 3 7 5 4 5 12 9 9 7-11130.7153.2162.5 + 23 12 14 22 32 15 18 12 7 4 7 15-11150.3153.4162.6 + 23 12 15 5 3 2 12 15 15 18 15 11-11139.8153.6162.6 + 23 12 16 18 27 15 6 12 3 12 12 13-11144.3153.6162.7 + 23 12 17 18 39 32 39 56 56 9 18 33-11149.7153.7162.7 + 23 12 18 9 18 56 22 18 15 15 32 23-11156.3153.7162.7 + 23 12 19 22 18 7 6 6 7 7 12 11-11173.5153.7162.8 + 23 12 20 27 15 9 6 7 12 5 3 11-11189.1153.7162.8 + 23 12 21 12 2 2 7 3 5 2 0 4-11187.4153.5162.9 + 23 12 22 2 5 4 2 0 2 2 2 2-11180.7153.5163.0 + 23 12 23 2 2 7 3 7 12 3 4 5-11168.6153.4163.1 + 23 12 24 12 12 12 15 9 4 4 3 9-11177.4153.5163.2 + 23 12 25 2 4 3 2 2 4 5 0 3-11161.3153.9163.3 + 23 12 26 2 6 5 6 6 5 4 3 5-11149.1154.5163.4 + 23 12 27 7 6 4 5 2 3 3 2 4-11144.5155.2163.5 + 23 12 28 0 0 3 2 2 2 0 6 2-11141.8156.0163.5 + 23 12 29 5 4 5 7 6 3 6 9 6-11138.2156.8163.6 + 23 12 30 4 9 5 2 3 4 4 0 4-11135.1157.3163.7 + 23 12 31 0 3 2 2 2 3 4 5 3-11141.4157.6163.7 + 24 1 1 3 2 3 5 7 15 18 27 10-11131.2157.9163.7 + 24 1 2 12 9 3 7 9 12 7 3 8-11137.4157.8163.7 + 24 1 3 12 12 4 6 6 12 18 15 11-11135.5157.9163.7 + 24 1 4 5 3 6 3 3 5 4 12 5-11121.6158.1163.7 + 24 1 5 7 6 2 4 5 6 2 2 4-11147.6158.2163.7 + 24 1 6 2 4 0 0 0 0 3 4 2-11154.1158.2163.8 + 24 1 7 0 0 0 2 2 2 0 0 1-11161.6158.0163.8 + 24 1 8 0 0 0 2 4 3 5 7 3-11170.4157.0163.8 + 24 1 9 9 4 9 3 3 5 2 4 5-11170.1156.8163.7 + 24 1 10 5 6 5 7 9 6 7 6 6-11179.9156.7163.7 + 24 1 11 3 5 6 5 7 5 3 6 5-11186.2156.6163.8 + 24 1 12 0 5 2 4 5 5 3 4 4-11180.3156.8163.8 + 24 1 13 2 0 2 3 3 3 2 3 2-11179.4157.3163.9 + 24 1 14 3 5 6 7 6 7 7 7 6-11181.7157.7164.1 + 24 1 15 4 3 6 6 9 2 5 6 5-11176.6158.2164.2 + 24 1 16 12 7 3 3 3 4 4 2 5-11173.8158.8164.4 + 24 1 17 3 2 5 3 3 3 3 4 3-11168.5159.3164.4 + 24 1 18 4 4 4 6 5 5 9 9 6-11157.1159.7164.5 + 24 1 19 5 12 6 5 6 6 5 9 7-11152.4160.3164.5 + 24 1 20 6 9 5 4 7 6 5 5 6-11161.0160.8164.6 + 24 1 21 0 5 5 7 6 4 3 4 4-11172.9161.2164.7 + 24 1 22 3 2 4 5 6 7 15 18 8-11189.9161.5164.7 + 24 1 23 7 12 6 4 5 4 4 7 6-11174.7161.6164.8 + 24 1 24 18 15 15 6 5 2 2 2 8-11166.6161.5164.8 + 24 1 25 2 3 3 5 6 6 5 9 5-11155.6161.5164.8 + 24 1 26 2 5 2 3 7 6 5 6 5-11151.9161.4164.8 + 24 1 27 9 5 4 4 3 3 3 3 4-11143.6161.2164.9 + 24 1 28 3 4 4 7 5 6 15 15 7-11136.8160.8165.0 + 24 1 29 12 7 4 3 9 7 9 7 7-11136.1160.3165.1 + 24 1 30 7 9 6 6 4 4 9 7 7-11131.0159.5165.3 + 24 1 31 7 9 5 5 5 7 7 4 6-11132.2158.7165.5 + 24 2 1 4 4 7 7 4 7 7 2 5-11132.9158.1165.6 + 24 2 2 2 2 4 3 3 3 2 0 2-11138.5157.6165.9 + 24 2 3 0 3 2 2 0 3 0 2 2-11152.0157.0166.1 + 24 2 4 3 5 3 5 3 5 7 15 6-11165.6156.5166.3 + 24 2 5 0 2 5 4 7 9 6 12 6-11168.6156.5166.5 + 24 2 6 15 7 5 6 6 6 7 3 7-11185.1156.5166.8 + 24 2 7 0 2 5 5 5 3 3 3 3-11183.3156.9167.2 + 24 2 8 3 4 3 5 6 6 6 2 4-11180.0157.3167.7 + 24 2 9 3 0 2 5 7 2 4 15 5-11178.6157.8168.1 + 24 2 10 3 3 5 9 6 3 2 3 4-11188.7158.5168.5 + 24 2 11 32 18 18 15 6 9 6 6 14-11175.7159.3168.9 + 24 2 12 6 9 7 2 2 2 2 2 4-11203.0160.1169.2 + 24 2 13 5 7 4 7 7 22 7 12 9-11189.9160.9169.5 + 24 2 14 15 9 3 4 3 3 2 4 5-11179.5161.7169.8 + 24 2 15 4 2 3 3 3 3 5 3 3-11173.9162.1169.9 + 24 2 16 4 0 3 5 7 5 0 3 3-11164.8162.3170.2 + 24 2 17 4 2 0 5 6 3 5 7 4-11165.9162.4170.4 + 24 2 18 18 6 4 5 4 2 2 0 5-11152.9162.4170.6 + 24 2 19 0 0 0 0 2 0 2 2 1-11148.6162.0170.9 + 24 2 20 2 3 7 6 7 5 4 9 5-11149.2161.4171.1 + 24 2 21 3 0 3 3 3 5 5 2 3-11166.2160.6171.4 + 24 2 22 6 5 6 6 4 4 5 4 5-11169.6159.8171.6 + 24 2 23 0 0 2 4 5 3 2 3 2-11169.2159.0171.9 + 24 2 24 3 2 3 4 7 9 7 9 6-11175.5158.1172.1 + 24 2 25 9 15 7 7 15 6 12 12 10-11177.1157.4172.4 + 24 2 26 15 15 9 12 9 5 5 7 10-11168.3156.8172.4 + 24 2 27 22 32 15 3 4 4 15 4 12-11165.1156.3172.6 + 24 2 28 4 5 6 7 3 3 4 4 5-11175.7155.9172.8 + 24 2 29 2 0 4 5 6 4 2 3 3-11161.1155.5173.0 + 24 3 1 12 12 9 4 5 6 5 3 7-11150.1155.2173.2 + 24 3 2 9 5 3 3 6 2 2 3 4-11149.7154.8173.5 + 24 3 3 12 3 2 18 48 67 94 27 34-11143.1154.4173.7 + 24 3 4 27 9 7 5 5 4 4 9 9-11137.6154.2174.0 + 24 3 5 12 4 7 5 6 4 6 2 6-11139.2154.4174.3 + 24 3 6 3 15 4 6 6 5 0 2 5-11133.9154.8174.7 + 24 3 7 9 5 9 12 7 12 22 15 11-11134.5155.4174.9 + 24 3 8 12 15 7 3 6 3 6 22 9-11127.2156.3175.2 + 24 3 9 27 15 9 7 6 5 12 6 11-11132.6157.5175.3 + 24 3 10 6 5 6 9 6 7 9 3 6-11125.3158.5175.5 + 24 3 11 5 4 7 4 3 4 0 3 4-11125.1159.4175.7 + 24 3 12 9 2 4 5 5 6 2 0 4-11128.9160.5175.8 + 24 3 13 4 2 18 7 9 15 7 3 8-11126.8161.7175.9 + 24 3 14 3 9 5 6 4 6 6 15 7-11125.7162.7176.1 + 24 3 15 18 9 7 5 5 3 2 2 6-11127.7163.3176.2 + 24 3 16 2 0 2 0 3 3 2 0 2-11142.6163.4176.3 + 24 3 17 0 0 2 0 0 0 0 0 0-11149.8163.2176.4 + 24 3 18 0 0 2 0 3 3 7 12 3-11175.8162.8176.4 + 24 3 19 12 7 7 7 5 4 5 5 7-11167.5162.3176.5 + 24 3 20 5 2 5 3 2 0 4 9 4-11174.1161.8176.4 + 24 3 21 15 9 15 7 32 39 32 27 22-11195.5161.3176.5 + 24 3 22 18 15 12 18 4 5 3 2 10-11196.2160.6176.4 + 24 3 23 12 39 27 18 27 22 39 67 31-11209.3160.2176.4 + 24 3 24 32 18 18 22 80236111 27 68-11194.0159.7176.3 + 24 3 25 32 48 27 32 27 18 7 6 25-11189.1159.4176.3 + 24 3 26 15 12 3 15 7 7 12 12 10-11177.4159.4176.3 + 24 3 27 15 5 9 5 3 3 4 5 6-11173.9159.4176.4 + 24 3 28 7 5 5 6 12 6 7 9 7-11172.1160.0176.4 + 24 3 29 6 6 6 5 5 3 2 2 4-11166.8160.8176.5 + 24 3 30 0 0 2 3 5 6 4 6 3-11139.3161.8176.6 + 24 3 31 22 7 9 5 4 5 4 9 8-11133.4162.8176.8 + 24 4 1 6 18 22 6 6 7 9 5 10-11120.3163.6176.9 + 24 4 2 4 6 5 12 7 7 6 4 6-11112.7164.4177.1 + 24 4 3 12 9 5 3 6 6 3 2 6-11111.7165.0177.5 + 24 4 4 0 3 7 12 12 15 15 18 10-11113.8165.7177.9 + 24 4 5 7 18 12 12 7 9 9 9 10-11120.6166.3178.3 + 24 4 6 15 12 15 6 7 5 6 7 9-11123.1166.7178.6 + 24 4 7 5 5 3 5 7 9 6 7 6-11124.9167.2178.9 + 24 4 8 9 12 18 5 2 5 2 0 7-11125.2167.6179.2 + 24 4 9 2 9 18 6 9 6 7 12 9-11124.8168.0179.4 + 24 4 10 12 6 5 6 5 12 7 5 7-11131.8168.5179.5 + 24 4 11 7 12 2 3 4 4 3 4 5-11144.4169.1179.7 + 24 4 12 5 9 5 4 4 3 3 5 5-11152.3169.7179.9 + 24 4 13 5 7 2 2 6 6 4 6 5-11161.9170.2180.0 + 24 4 14 6 0 5 5 5 5 5 6 5-11179.5170.5180.2 + 24 4 15 5 5 2 5 3 7 9 12 6-11193.2170.7180.3 + 24 4 16 27 18 27 18 18 39 56 48 31-11200.2171.0180.3 + 24 4 17 15 4 3 5 3 6 5 7 6-11218.2171.5180.4 + 24 4 18 5 2 2 3 3 3 2 6 3-11228.8172.1180.5 + 24 4 19 6 9 39 39 48 67132 22 45-11215.4172.6180.6 + 24 4 20 7 7 12 12 6 12 9 12 10-11211.6173.3180.7 + 24 4 21 18 15 9 15 27 22 22 15 18-11219.4174.0180.8 + 24 4 22 7 9 9 5 5 6 6 9 7-11229.2175.3180.9 + 24 4 23 5 4 6 6 6 5 12 7 6-11221.6176.0181.1 + 24 4 24 4 3 2 2 3 3 2 3 3-11201.4176.8181.3 + 24 4 25 0 0 0 3 3 2 3 3 2-11168.8177.7181.5 + 24 4 26 4 12 15 7 27 48 18 7 17-11154.6178.4181.7 + 24 4 27 18 15 6 4 18 9 15 12 12-11154.6179.0182.0 + 24 4 28 22 7 4 3 3 3 2 4 6-11142.0179.2182.3 + 24 4 29 6 5 5 5 5 6 12 4 6-11139.5179.5182.6 + 24 4 30 6 5 0 3 12 18 27 32 13-11132.1179.7183.0 + 24 5 1 22 7 6 2 4 4 7 4 7-11136.9179.5183.3 + 24 5 2 9 6 9 18 48111111 27 42-11144.1179.2183.6 + 24 5 3 27 15 4 5 3 3 6 5 9-11158.6178.7183.9 + 24 5 4 3 3 2 3 3 4 5 15 5-11169.5178.5184.1 + 24 5 5 6 5 7 6 4 5 15 32 10-11180.0178.3184.4 + 24 5 6 56 9 9 9 27 7 7 5 16-11174.3178.3184.6 + 24 5 7 5 5 4 5 7 12 5 5 6-11207.4178.3184.9 + 24 5 8 4 6 6 6 6 7 3 4 5-11231.4178.4185.2 + 24 5 9 3 5 3 5 4 4 9 7 5-11237.7178.8185.4 + 24 5 10 12 12 9 7 22179300300105-11227.9179.6185.7 + 24 5 11400236236400300236179179271-11218.0180.5185.9 + 24 5 12 94132 22 32 7 15 27 94 53-11226.4181.6186.1 + 24 5 13 56 80 18 12 18 12 9 9 27-11220.0182.7186.2 + 24 5 14 5 5 5 9 9 6 7 3 6-11224.6183.8186.3 + 24 5 15 5 7 9 12 7 7 15 9 9-11220.8184.9186.4 + 24 5 16 12 15 80 48 32 15 9 4 27-11211.9185.9186.5 + 24 5 17 5 9 5 6 22 56 80 56 30-11208.7186.7186.6 + 24 5 18 27 18 9 15 7 7 5 4 12-11198.8187.5186.6 + 24 5 19 4 12 4 7 12 7 9 6 8-11205.5188.2186.7 + 24 5 20 3 9 9 3 7 3 3 7 6-11204.5189.1186.7 + 24 5 21 6 3 3 9 12 12 6 5 7-11195.4189.7186.7 + 24 5 22 6 2 2 0 2 3 5 5 3-11200.6190.1186.7 + 24 5 23 3 5 5 7 9 6 9 18 8-11180.7190.3186.7 + 24 5 24 9 15 12 15 7 5 2 4 9-11167.0190.4186.6 + 24 5 25 5 5 5 3 3 7 5 9 5-11156.4190.4186.7 + 24 5 26 5 9 3 9 12 12 12 4 8-11159.7190.1186.7 + 24 5 27 4 2 9 15 9 5 5 7 7-11174.6189.8186.9 + 24 5 28 7 6 6 3 2 3 3 3 4-11170.9189.3186.9 + 24 5 29 2 3 6 6 4 6 9 6 5-11175.2188.6186.9 + 24 5 30 2 3 3 5 7 18 7 12 7-11177.7188.2187.0 + 24 5 31 12 32 9 4 5 6 6 5 10-11184.5188.3187.1 + 24 6 1 12 2 3 4 5 5 3 0 4-11233.3188.2187.2 + 24 6 2 2 3 2 4 3 4 5 9 4-11185.0188.1187.3 + 24 6 3 6 4 5 6 6 5 7 32 9-11191.4188.4187.5 + 24 6 4 9 12 7 7 4 3 2 2 6-11198.0188.9187.6 + 24 6 5 3 7 6 5 9 5 6 9 6-11201.1189.8187.6 + 24 6 6 6 5 7 3 6 6 2 2 5-11196.7190.9187.8 + 24 6 7 4 9 9 22 94 67 15 15 29-11190.0191.9187.9 + 24 6 8 39 15 12 12 7 12 7 6 14-11196.2192.8188.0 + 24 6 9 5 3 4 3 7 4 6 5 5-11186.4193.6188.1 + 24 6 10 5 2 3 4 3 22 27 7 9-11183.3194.7188.3 + 24 6 11 22 32 9 5 4 4 3 5 11-11170.1195.5188.4 + 24 6 12 3 3 3 3 4 5 4 5 4-11170.0196.1188.5 + 24 6 13 2 2 2 2 4 4 4 0 3-11175.5196.3188.5 + 24 6 14 2 3 7 6 4 3 6 9 5-11174.3196.5188.6 + 24 6 15 9 9 7 15 39 18 12 27 17-11176.1196.4188.6 + 24 6 16 12 3 7 18 22 15 27 6 14-11172.6196.5188.7 + 24 6 17 7 9 6 6 9 18 18 15 11-11185.7196.5188.7 + 24 6 18 6 12 12 12 12 18 6 5 10-11199.0196.4188.8 + 24 6 19 12 15 7 5 18 12 7 4 10-11202.3196.3188.7 + 24 6 20 7 5 5 4 6 5 9 9 6-11210.0196.4188.7 + 24 6 21 5 5 3 2 2 2 4 3 3-11203.3196.7188.7 + 24 6 22 5 2 2 2 3 4 3 3 3-11202.1196.9188.7 + 24 6 23 4 6 12 15 18 12 9 6 10-11202.2197.3188.8 + 24 6 24 6 2 2 2 3 3 4 5 3-11205.3197.6189.0 + 24 6 25 5 5 7 7 6 12 6 4 7-11200.1198.0189.2 + 24 6 26 4 5 9 12 12 12 9 5 9-11187.4198.5189.5 + 24 6 27 6 5 3 4 7 9 9 18 8-11188.6199.3189.8 + 24 6 28 22 27 27 80179 67 56 22 60-11186.7200.7190.1 + 24 6 29 27 9 7 9 7 15 15 12 13-11192.7202.5190.4 + 24 6 30 9 9 5 12 18 22 9 6 11-11179.6203.8190.7 + 24 7 1 5 5 6 5 6 6 4 2 5-11176.3205.1190.9 + 24 7 2 4 5 3 3 5 3 4 5 4-11169.3206.2191.1 + 24 7 3 5 4 5 3 5 3 4 5 4-11173.1207.4191.3 + 24 7 4 6 7 4 5 7 15 15 12 9-11178.8208.6191.5 + 24 7 5 6 12 5 7 15 9 3 2 7-11171.2209.9191.7 + 24 7 6 4 3 2 2 2 2 2 3 3-11171.6210.8191.8 + 24 7 7 6 5 4 2 6 5 12 12 7-11177.1211.5191.9 + 24 7 8 6 6 7 15 18 9 7 9 10-11174.1212.2191.9 + 24 7 9 6 6 3 6 9 4 5 6 6-11184.2213.0191.9 + 24 7 10 6 4 5 4 4 4 4 5 5-11220.8213.8191.8 + 24 7 11 7 5 5 3 6 5 6 7 6-11211.9214.6191.7 + 24 7 12 7 6 6 5 4 4 3 3 5-11216.7214.7191.7 + 24 7 13 3 4 2 2 4 4 5 2 3-11246.3215.3191.6 + 24 7 14 5 4 4 5 5 3 4 5 4-11241.7216.0191.5 + 24 7 15 4 4 5 3 4 4 7 15 6-11240.9216.5191.4 + 24 7 16 18 7 7 4 6 12 7 7 9-11249.9217.0191.4 + 24 7 17 3 5 6 4 9 5 4 3 5-11231.1216.4191.4 + 24 7 18 2 3 4 5 4 4 5 2 4-11215.5216.8191.5 + 24 7 19 2 4 4 3 4 4 5 3 4-11208.2217.1191.6 + 24 7 20 6 6 7 5 4 6 12 4 6-11214.1217.3191.8 + 24 7 21 4 2 2 2 5 5 6 6 4-11204.2217.8192.0 + 24 7 22 6 5 6 15 9 5 9 6 8-11191.0218.6192.1 + 24 7 23 2 2 2 3 4 4 12 6 4-11181.0219.3192.2 + 24 7 24 6 5 5 4 5 3 3 6 5-11180.4220.1192.3 + 24 7 25 3 5 3 4 7 12 15 18 8-11172.4221.0192.4 + 24 7 26 27 48 27 9 22 32 15 12 24-11181.8222.1192.6 + 24 7 27 4 9 9 12 27 12 4 5 10-11210.0223.0192.6 + 24 7 28 5 4 6 5 7 5 12 9 7-11221.1223.9192.7 + 24 7 29 7 6 4 6 5 5 6 6 6-11230.0224.2192.7 + 24 7 30 27 56 27 22 15 18 5 7 22-11236.1224.5192.8 + 24 7 31 5 4 5 4 12 27 39 22 15-11242.2224.6192.9 + 24 8 1 56 32 18 9 15 9 9 7 19-11241.4224.7193.0 + 24 8 2 9 12 6 4 6 6 5 12 8-11254.5224.8193.2 + 24 8 3 6 9 4 7 7 9 7 12 8-11251.8224.8193.4 + 24 8 4 12 22 32 27111132 32 27 49-11247.9224.6193.5 + 24 8 5 9 12 15 7 7 6 6 6 9-11254.4224.3193.6 + 24 8 6 6 5 5 2 3 5 5 6 5-11277.7224.1193.7 + 24 8 7 4 6 4 7 7 5 4 9 6-11311.7223.9193.8 + 24 8 8 12 5 5 6 4 4 5 5 6-11345.4223.7193.8 + 24 8 9 7 5 3 5 7 6 4 6 5-11313.9223.3193.7 + 24 8 10 5 7 3 3 9 9 6 5 6-11299.0223.1193.7 + 24 8 11 7 7 39 32 48 32 22 39 28-11289.0222.8193.6 + 24 8 12111132132111207179 67 80127-11279.6222.7193.6 + 24 8 13 32 12 6 5 4 3 15 32 14-11266.7222.6193.4 + 24 8 14 22 18 7 4 5 5 5 15 10-11254.6222.5193.4 + 24 8 15 5 3 2 2 6 4 5 7 4-11233.2222.5193.4 + 24 8 16 12 7 7 7 12 5 2 3 7-11230.5222.5193.4 + 24 8 17 4 2 5 5 22 94 48 56 30-11235.2222.6193.4 + 24 8 18 9 12 7 18 22 9 7 7 11-11236.6222.8193.4 + 24 8 19 3 5 3 5 15 15 15 12 9-11244.8222.9193.5 + 24 8 20 18 6 6 6 9 9 6 6 8-11243.8222.6193.6 + 24 8 21 18 5 5 6 7 12 6 5 8-11244.5222.6193.6 + 24 8 22 15 12 7 7 7 7 6 9 9-11235.8223.0193.7 + 24 8 23 5 5 9 5 7 3 6 5 6-11247.1223.3193.7 + 24 8 24 6 6 12 12 6 15 5 6 9-11237.3224.2193.8 + 24 8 25 7 9 7 5 3 2 3 4 5-11237.6224.8194.0 + 24 8 26 6 4 2 4 4 5 2 2 4-11151.2225.2194.0 + 24 8 27 0 3 12 6 12 15 9 18 9-11225.8225.6194.1 + 24 8 28 67 27 48 9 12 9 5 12 24-11216.1226.3194.1 + 24 8 29 7 4 3 4 6 4 4 4 5-11207.9226.5194.1 + 24 8 30 5 3 22 15 39 39 39 32 24-11218.3226.6194.1 + 24 8 31 27 32 32 6 22 39 27 15 25-11235.9226.7194.1 + 24 9 1 22 18 7 7 18 22 15 9 15-11229.5227.0194.1 + 24 9 2 7 7 5 5 7 12 9 4 7-11241.8227.4194.1 + 24 9 3 4 5 7 7 4 5 5 4 5-11246.3227.6194.2 + 24 9 4 2 2 6 32 32 15 6 7 13-11266.2227.7194.2 + 24 9 5 5 5 3 4 3 3 4 6 4-11244.6227.5194.2 + 24 9 6 2 0 4 12 15 4 5 7 6-11252.8227.0194.3 + 24 9 7 7 7 4 6 9 7 7 4 6-11225.0226.4194.3 + 24 9 8 7 7 5 5 9 7 6 6 7-11231.0225.6194.4 + 24 9 9 9 5 9 5 4 12 12 9 8-11217.8224.7194.4 + 24 9 10 9 5 6 5 5 3 9 5 6-11207.9223.6194.5 + 24 9 11 3 4 3 5 15 22 7 12 9-11209.6222.7194.6 + 24 9 12 7 22 67111111 80132 39 71-11203.7221.7194.7 + 24 9 13 56 32 27 18 18 22 27 80 35-11188.1220.8194.9 + 24 9 14 27 22 7 27 32 6 12 15 19-11174.4220.2195.0 + 24 9 15 6 27 27 18 22 22 9 7 17-11174.6219.6195.1 + 24 9 16 18 27 22 22 22 9 6 27 19-11170.9219.1195.2 + 24 9 17154132 56 94 56 32 18 27 71-11167.0218.2195.3 + 24 9 18 22 7 4 7 7 12 6 22 11-11164.8217.1195.3 + 24 9 19 32 12 7 18 22 32 15 4 18-11162.6216.4195.3 + 24 9 20 2 2 3 4 3 3 5 18 5-11155.0216.0195.2 + 24 9 21 5 7 6 5 4 4 6 4 5-11159.2215.7195.1 + 24 9 22 4 2 3 6 6 7 5 4 5-11164.0215.4195.0 + 24 9 23 5 3 6 15 22 32 6 4 12-11168.5215.1194.9 + 24 9 24 18 9 9 7 9 12 15 32 14-11173.4214.9194.8 + 24 9 25 32 39 27 22 22 39 27 27 29-11175.2215.0194.8 + 24 9 26 27 18 6 6 12 6 6 3 11-11182.0215.1194.7 + 24 9 27 5 9 7 5 9 3 2 2 5-11186.7215.4194.7 + 24 9 28 0 0 5 6 7 15 6 7 6-11195.2215.4194.6 + 24 9 29 12 7 18 18 22 9 12 15 14-11197.8215.1194.7 + 24 9 30 27 9 5 3 5 6 9 9 9-11214.7214.8194.8 + 24 10 1 5 7 5 3 4 7 5 4 5-11245.1214.6195.0 + 24 10 2 7 6 6 5 7 3 5 4 5-11274.8213.9195.2 + 24 10 3 4 5 6 6 15 5 9 7 7-11312.1212.9195.4 + 24 10 4 6 6 5 4 6 9 9 15 8-11291.1211.8195.5 + 24 10 5 9 2 6 4 6 4 6 6 5-11277.1210.6195.7 + 24 10 6 3 2 9 5 12 18 18 39 13-11264.2210.5195.8 + 24 10 7 56 39 15 56 67 39 94 67 54-11276.5209.4195.9 + 24 10 8111132 67 27 18 22 27 32 55-11224.2208.5196.0 + 24 10 9 27 32 22 15 18 12 7 9 18-11219.7208.0196.1 + 24 10 10 7 12 5 12 22179236300 97-11215.6207.2196.2 + 24 10 11236179179179 94 27 15 18116-11213.1206.2196.3 + 24 10 12 18 6 9 39 27 15 15 12 18-11212.6205.4196.3 + 24 10 13 2 0 2 5 6 4 6 4 4-11193.9204.6196.3 + 24 10 14 3 3 5 3 3 3 9 22 6-11180.9203.9196.3 + 24 10 15 9 9 18 9 12 18 7 7 11-11170.9203.1196.1 + 24 10 16 6 12 15 15 12 15 15 12 13-11166.6202.7196.0 + 24 10 17 12 15 6 3 2 5 9 7 7-11172.2202.3195.8 + 24 10 18 15 9 2 4 12 18 15 22 12-11163.9202.2195.6 + 24 10 19 48 39 22 18 15 7 27 22 25-11160.9201.9195.5 + 24 10 20 15 7 6 2 3 3 3 5 6-11160.3201.8195.3 + 24 10 21 2 2 5 5 4 6 6 7 5-11162.4201.7195.2 + 24 10 22 5 6 6 7 9 15 7 6 8-11174.3201.4195.0 + 24 10 23 6 12 6 15 12 3 7 5 8-11183.7201.1194.9 + 24 10 24 12 32 18 6 4 5 6 7 11-11194.4200.9194.8 + 24 10 25 4 2 0 0 2 2 2 4 2-11206.8200.8194.8 + 24 10 26 4 0 3 4 12 15 27 27 12-11235.5200.7194.8 + 24 10 27 12 6 4 12 7 12 12 12 10-11243.0200.7194.8 + 24 10 28 12 39 27 9 12 9 7 9 16-11252.1200.9194.8 + 24 10 29 15 6 9 6 7 12 27 9 11-11261.9201.0194.9 + 24 10 30 22 15 18 27 15 9 6 5 15-11265.9201.0194.9 + 24 10 31 3 3 5 5 6 9 15 22 9-11265.9201.2195.0 + 24 11 1 12 5 5 9 12 2 3 0 6-11252.2201.1195.0 + 24 11 2 0 0 7 27 22 9 9 18 12-11246.6201.0195.0 + 24 11 3 9 2 2 3 3 15 15 27 10-11236.7200.9195.0 + 24 11 4 22 32 12 9 7 6 3 15 13-11238.3200.8194.9 + 24 11 5 12 5 12 12 12 9 12 12 11-11241.4200.7194.9 + 24 11 6 18 15 9 7 9 7 7 6 10-11255.9200.4194.7 + 24 11 7 4 6 9 7 4 15 7 15 8-11234.8200.2194.5 + 24 11 8 9 5 4 6 7 9 22 18 10-11226.7199.8194.2 + 24 11 9 27 27 22 32 48 39 32 22 31-11216.7199.5194.0 + 24 11 10 22 32 6 7 22 27 67 15 25-11226.0199.0193.7 + 24 11 11 12 7 15 9 6 12 6 4 9-11178.6198.4193.4 + 24 11 12 6 5 6 3 4 5 4 2 4-11168.1197.7193.2 + 24 11 13 7 7 2 6 12 6 6 2 6-11147.1196.7192.9 + 24 11 14 2 18 4 5 7 15 22 18 11-11143.7196.2192.6 + 24 11 15 15 18 12 7 15 12 9 7 12-11145.6195.8192.4 + 24 11 16 18 7 9 6 6 0 0 2 6-11136.8195.6192.1 + 24 11 17 2 12 7 7 12 3 5 4 7-11142.9195.2191.9 + 24 11 18 3 7 0 2 3 5 3 6 4-11161.2195.6191.7 + 24 11 19 4 4 6 7 9 12 12 4 7-11153.5195.9191.4 + 24 11 20 2 12 12 9 7 6 3 6 7-11158.7195.9191.2 + 24 11 21 0 5 6 7 6 6 15 12 7-11162.1195.9191.2 + 24 11 22 7 7 3 6 15 18 12 15 10-11174.7195.9191.2 + 24 11 23 9 5 6 6 12 6 7 7 7-11194.9196.0191.3 + 24 11 24 5 7 6 2 2 4 6 27 7-11197.6196.2191.4 + 24 11 25 18 9 7 7 15 15 6 7 11-11214.7196.6191.5 + 24 11 26 15 7 2 3 4 3 4 6 6-11216.4196.5191.5 + 24 11 27 3 3 3 4 3 4 4 9 4-11219.0196.4191.6 + 24 11 28 6 4 2 3 2 0 5 0 3-11208.1196.4191.6 + 24 11 29 6 9 4 7 6 3 9 12 7-11213.8196.3191.7 + 24 11 30 32 15 12 3 3 4 4 7 10-11198.3196.3191.7 + 24 12 1 5 4 6 4 4 5 7 12 6-11181.1196.2191.6 + 24 12 2 9 7 3 0 4 3 6 7 5-11180.0195.9191.6 + 24 12 3 18 12 7 6 9 15 18 6 11-11169.3195.5191.6 + 24 12 4 5 6 4 7 7 5 7 6 6-11169.7195.0191.6 + 24 12 5 6 9 4 4 3 3 3 3 4-11169.5194.4191.6 + 24 12 6 5 9 4 2 3 4 4 4 4-11172.3193.6191.5 + 24 12 7 3 5 4 6 4 5 6 6 5-11177.1193.1191.6 + 24 12 8 2 5 5 5 9 6 7 3 5-11172.4192.7191.5 + 24 12 9 32 15 9 9 12 22 15 18 17-11167.3192.1191.6 + 24 12 10 7 9 9 7 4 4 5 6 6-11166.7191.6191.6 + 24 12 11 7 7 7 3 4 4 3 5 5-11155.6191.1191.6 + 24 12 12 9 7 3 3 3 4 5 2 5-11155.9190.9191.7 + 24 12 13 0 0 5 4 4 6 3 3 3-11158.6190.4191.8 + 24 12 14 3 4 4 7 5 15 18 12 9-11165.1190.0191.8 + 24 12 15 15 9 6 12 15 7 12 9 11-11166.6189.5191.8 + 24 12 16 5 12 12 12 6 9 22 22 13-11161.4188.7191.9 + 24 12 17 22 56 48 32 18 27 7 15 28-11164.6187.6191.9 + 24 12 18 18 6 9 22 15 18 22 4 14-11168.0186.7191.9 + 24 12 19 22 15 6 5 7 5 7 15 10-11169.4185.9191.9 + 24 12 20 22 15 4 5 15 15 18 7 13-11178.1185.3191.8 + 24 12 21 15 18 7 15 12 12 18 18 14-11194.7184.7191.8 + 24 12 22 5 9 9 15 18 15 12 15 12-11216.1185.0191.8 + 24 12 23 18 7 6 4 9 15 12 22 12-11230.6185.2191.7 + 24 12 24 9 12 6 3 9 9 7 18 9-11250.1185.9191.7 + 24 12 25 7 7 6 6 4 4 3 2 5-11244.5186.8191.7 + 24 12 26 0 0 2 2 2 2 0 2 1-11247.4187.6191.7 + 24 12 27 2 0 2 2 3 5 4 2 3-11250.0188.2191.7 + 24 12 28 3 0 4 5 2 3 5 2 3-11251.8188.7191.7 + 24 12 29 5 2 4 6 5 5 3 3 4-11246.3188.9191.7 + 24 12 30 2 6 9 5 6 5 7 7 6-11216.1189.0191.7 + 24 12 31 2 3 6 5 5 27 27 27 13-11210.4189.0191.8 + 25 1 1 27 56 39 80111207111 32 83-11211.9189.0191.8 + 25 1 2 18 7 22 32 27 22 15 15 20-11205.4188.6191.9 + 25 1 3 12 18 18 6 3 4 4 6 9-11193.3188.4191.9 + 25 1 4 9 39 48 27 18 27 48 15 29-11202.4188.1192.0 + 25 1 5 18 9 12 18 18 32 27 12 18-11163.0187.6192.1 + 25 1 6 18 27 15 12 9 15 12 9 15-11166.2187.1192.1 + 25 1 7 9 15 12 12 9 18 9 7 11-11162.2186.6192.2 + 25 1 8 22 12 6 0 5 9 4 3 8-11154.9186.2192.2 + 25 1 9 6 4 6 7 18 12 6 5 8-11156.8185.8192.1 + 25 1 10 3 22 7 12 15 5 9 27 13-11151.7185.5192.0 + 25 1 11 9 4 5 5 5 15 6 3 7-11150.8185.4192.0 + 25 1 12 5 6 6 5 6 4 5 7 6-11153.2185.6191.8 + 25 1 13 27 9 4 9 7 7 7 6 10-11154.4185.9191.6 + 25 1 14 12 9 9 7 6 9 15 12 10-11161.0186.7191.5 + 25 1 15 18 22 22 12 15 18 12 6 16-11167.8187.1191.3 + 25 1 16 15 18 6 7 9 15 18 15 13-11201.5187.3191.2 + 25 1 17 22 27 22 15 15 18 27 27 22-11219.5187.2191.1 + 25 1 18 12 9 9 7 9 6 7 7 8-11215.3187.1191.0 + 25 1 19 5 9 22 15 18 12 18 22 15-11228.3186.9190.9 + 25 1 20 27 18 15 15 32 15 15 18 19-11224.7186.7190.9 + 25 1 21 9 15 6 6 4 9 15 9 9-11229.0186.6190.9 + 25 1 22 15 9 15 12 6 5 4 15 10-11207.5186.7190.9 + 25 1 23 18 6 4 4 6 22 22 9 11-11208.7186.7191.0 + 25 1 24 4 5 9 5 7 3 4 7 6-11198.2186.6191.0 + 25 1 25 3 0 2 2 3 4 0 3 2-11176.2186.3191.1 + 25 1 26 3 3 2 2 2 0 0 2 2-11165.4186.1191.0 + 25 1 27 2 0 5 6 5 12 7 7 6-11157.6185.9190.9 + 25 1 28 7 5 2 9 15 12 22 12 11-11166.3185.6190.8 + 25 1 29 9 5 4 7 7 6 5 5 6-11168.6185.3190.6 + 25 1 30 4 3 3 3 3 4 7 15 5-11178.3185.1190.4 + 25 1 31 6 3 4 6 7 6 6 12 6-11200.5184.6190.3 + 25 2 1 22 22 22 15 22 27 32 27 24-11182.4184.1190.0 + 25 2 2 15 27 22 15 22 32 9 6 19-11209.5183.5189.8 + 25 2 3 4 2 3 4 2 0 2 4 3-11214.2182.6189.6 + 25 2 4 5 4 6 6 3 2 4 3 4-11206.6181.8189.4 + 25 2 5 4 7 3 4 5 12 5 7 6-11186.0181.2189.1 + 25 2 6 12 12 7 4 9 7 4 4 7-11182.6180.4188.7 + 25 2 7 3 2 3 3 3 4 0 2 3-11176.7179.5188.1 + 25 2 8 0 9 22 15 15 6 4 4 9-11168.7178.5187.7 + 25 2 9 5 9 5 7 15 27 39 32 17-11158.7177.9187.3 + 25 2 10 39 12 22 27 18 22 22 22 23-11155.1177.5186.9 + 25 2 11 22 15 12 18 12 18 15 15 16-11149.5176.9186.6 + 25 2 12 18 27 12 15 12 15 15 12 16-11176.6176.3186.3 + 25 2 13 15 32 18 22 22 12 22 32 22-11169.0175.8186.1 + 25 2 14 32 39 18 15 32 18 18 22 24-11174.2175.2185.9 + 25 2 15 22 22 18 48 15 27 22 39 27-11179.5175.1185.7 + 25 2 16 9 27 15 22 12 15 22 27 19-11180.6175.0185.6 + 25 2 17 12 18 9 9 15 18 6 18 13-11176.1174.9185.4 + 25 2 18 22 18 7 3 4 9 7 32 13-11174.5175.1185.2 + 25 2 19 48 18 39 7 5 9 22 18 21-11173.9175.3184.9 + 25 2 20 22 12 5 2 4 0 0 3 6-11180.0175.7184.7 + 25 2 21 15 3 3 3 5 2 2 6 5-11192.8176.0184.5 + 25 2 22 12 3 2 4 6 2 4 12 6-11194.8176.3184.3 + 25 2 23 15 5 5 3 0 2 3 15 6-11234.9176.7184.1 + 25 2 24 15 5 7 15 12 6 32 9 13-11198.8176.9183.9 + 25 2 25 5 4 7 6 3 5 12 15 7-11186.3176.9184.0 + 25 2 26 15 18 15 12 15 15 15 7 14-11176.7176.5183.9 + 25 2 27 27 32 18 67 22 32 18 32 31-11160.8175.7183.8 + 25 2 28 48 27 48 32 39 32 27 15 34-11154.4175.1183.7 + 25 3 1 9 22 27 22 22 6 15 15 17-11149.5174.2183.5 + 25 3 2 6 7 9 5 5 2 0 2 5-11148.5173.5183.3 + 25 3 3 5 4 4 4 2 3 4 4 4-11160.4172.8183.2 + 25 3 4 5 9 6 5 6 6 12 39 11-11157.9172.2182.9 + 25 3 5 22 15 9 9 6 12 6 9 11-11154.0171.5182.7 + 25 3 6 9 5 9 6 3 5 9 5 6-11147.7171.0182.4 + 25 3 7 4 12 9 15 7 12 7 4 9-11144.3170.7182.1 + 25 3 8 6 15 15 18 9 18 39 39 20-11145.4170.5181.9 + 25 3 9 48 67 27 48 27 12 12 18 32-11145.5170.5181.7 + 25 3 10 12 7 7 9 9 12 5 7 9-11147.4170.4181.5 + 25 3 11 7 9 7 9 9 6 5 12 8-11159.3170.3181.4 + 25 3 12 27 18 15 27 27 48 48 39 31-11158.3170.1181.2 + 25 3 13 48 39 32 27 39 22 39 27 34-11173.8169.7181.1 + 25 3 14 56 15 18 15 18 22 12 18 22-11178.1169.5181.0 + 25 3 15 27 22 22 22 18 15 4 3 17-11176.0169.0181.0 + 25 3 16 7 7 7 9 18 4 7 12 9-11183.9168.4181.0 + 25 3 17 15 18 12 6 15 15 18 12 14-11201.5167.8181.1 + 25 3 18 18 18 9 9 15 15 6 9 12-11182.3167.5181.1 + 25 3 19 9 27 27 12 15 18 39 15 20-11177.9167.2181.2 + 25 3 20 7 6 7 3 5 2 4 7 5-11168.8166.9181.2 + 25 3 21 18 15 6 6 9 27 56 39 22-11164.1166.6181.3 + 25 3 22 67 48 15 9 22 27 22 27 30-11176.7166.6181.4 + 25 3 23 27 7 12 6 7 4 6 5 9-11167.0166.6181.5 + 25 3 24 27 32 12 18 22 18 12 6 18-11155.1166.6181.6 + 25 3 25 18 12 12 15 7 9 27 18 15-11155.3166.4181.6 + 25 3 26 32 32 9 18 67 67 80 39 43-11151.6166.4181.7 + 25 3 27 22 39 39 27 39 39 18 22 31-11152.0166.2181.7 + 25 3 28 9 15 12 7 9 15 15 27 14-11159.8165.9181.7 + 25 3 29 15 22 6 5 4 4 0 4 8-11156.1165.5181.7 + 25 3 30 6 9 7 5 3 3 4 3 5-11170.7165.1181.6 + 25 3 31 4 6 7 7 4 4 4 3 5-11171.6164.6181.6 + 25 4 1 4 3 3 3 5 4 7 7 5-11181.7164.0181.4 + 25 4 2 27 22 18 22 12 7 18 22 19-11179.8163.3181.1 + 25 4 3 22 12 22 18 22 15 27 48 23-11178.4162.4180.7 + 25 4 4 27 27 18 27 39 32 39 32 30-11180.5161.5180.2 + 25 4 5 67 48 39 32 27 18 56 32 40-11184.6160.1179.7 + 25 4 6 48 15 12 22 12 18 15 18 20-11167.2159.1179.2 + 25 4 7 18 12 6 6 6 7 27 15 12-11162.6158.3178.9 + 25 4 8 15 22 22 7 39 22 32 27 23-11159.0157.6178.4 + 25 4 9 39 18 27 27 15 15 15 15 21-11167.3157.1178.2 + 25 4 10 27 22 22 9 6 6 12 27 16-11153.2156.7178.1 + 25 4 11 27 15 7 9 15 6 18 27 16-11170.8156.4177.9 + 25 4 12 15 9 9 15 9 22 18 39 17-11166.2156.5177.7 + 25 4 13 27 22 12 7 15 7 12 9 14-11164.6156.4177.6 + 25 4 14 18 32 15 7 9 18 15 22 17-11153.6156.4177.5 + 25 4 15 18 7 5 4 7 48 56 94 30-11154.6156.4177.5 + 25 4 16 48 18 15 48154 94154 56 73-11149.5156.5177.5 + 25 4 17 15 22 4 3 15 6 5 7 10-11151.9156.7177.6 + 25 4 18 15 32 9 7 7 7 12 12 13-11157.1156.8177.6 + 25 4 19 27 18 18 9 15 22 12 39 20-11158.8157.0177.6 + 25 4 20 48 9 7 5 4 3 12 9 12-11157.8157.1177.7 + 25 4 21 32 32 48 39 56 32 48 12 37-11164.6157.1177.8 + 25 4 22 22 18 15 6 6 12 12 12 13-11165.1157.1177.9 + 25 4 23 4 9 6 12 6 5 3 4 6-11169.6156.8177.9 + 25 4 24 12 12 22 18 22 6 7 5 13-11171.6156.5177.9 + 25 4 25 4 3 3 5 4 3 6 7 4-11166.0156.2177.8 + 25 4 26 5 5 4 9 6 5 5 6 6-11157.7155.8177.6 + 25 4 27 4 9 4 4 3 12 7 6 6-11157.8155.1177.4 + 25 4 28 9 2 2 4 3 2 2 3 3-11155.7154.7177.1 + 25 4 29 2 5 7 6 4 5 7 6 5-11151.3154.3176.7 + 25 4 30 22 9 12 12 7 5 4 12 10-11150.2154.1176.3 + 25 5 1 18 27 22 27 27 18 39 39 27-11154.7153.9175.8 + 25 5 2 48 48 27 32 39 39 22 48 38-11154.7153.6175.4 + 25 5 3 56 27 27 39 18 15 12 22 27-11154.6153.3175.0 + 25 5 4 27 18 39 9 22 32 27 27 25-11161.6153.3174.6 + 25 5 5 18 39 32 32 27 32 27 27 29-11161.4153.3174.3 + 25 5 6 18 9 9 12 9 9 18 22 13-11158.7153.3174.0 + 25 5 7 9 12 9 7 6 3 4 7 7-11157.0153.3173.7 + 25 5 8 9 15 15 6 7 7 3 27 11-11151.3153.2173.2 + 25 5 9 12 7 5 6 9 18 27 32 15-11138.9153.1172.9 + 25 5 10 39 22 6 7 6 4 5 7 12-11136.8152.8172.7 + 25 5 11 9 15 7 6 15 5 32 27 15-11128.3152.4172.4 + 25 5 12 7 6 4 5 7 3 4 7 5-11117.9151.8172.1 + 25 5 13 5 6 5 5 5 12 18 18 9-11119.2151.3172.1 + 25 5 14 22 9 7 12 22 18 27 6 15-11124.4150.7172.1 + 25 5 15 18 27 12 7 7 15 7 15 14-11121.4150.1172.3 + 25 5 16 7 9 12 7 12 7 6 22 10-11120.0149.3172.4 + 25 5 17 80 56 18 39 39 32 18 18 38-11119.9148.9172.6 + 25 5 18 27 15 32 15 9 27 27 9 20-11121.0148.6172.8 + 25 5 19 18 15 6 6 7 9 5 5 9-11119.6148.4172.9 + 25 5 20 7 15 18 12 15 9 7 15 12-11121.6147.9173.0 + 25 5 21 27 12 18 15 7 4 6 0 11-11122.3147.8173.1 diff --git a/srcPython/gitm_3d_test.py b/srcPython/deprecated/gitm_3d_test.py similarity index 100% rename from srcPython/gitm_3d_test.py rename to srcPython/deprecated/gitm_3d_test.py diff --git a/srcPython/deprecated/useful_functions.py b/srcPython/deprecated/useful_functions.py new file mode 100644 index 00000000..79cc4cfd --- /dev/null +++ b/srcPython/deprecated/useful_functions.py @@ -0,0 +1,188 @@ +#!/usr/bin/env python +""" Standard model visualization routines +""" + +import matplotlib as mpl +mpl.use('Agg') +import matplotlib.pyplot as plt +import numpy as np +import os +import re +from glob import glob +import argparse +import sys + +from aetherpy.io import read_routines +from aetherpy.utils import inputs, time_conversion +from aetherpy.plot import data_prep, movie_routines + +def determine_file_type(file): + + IsGitm = False + HasHeader = False + m = re.match(r'(.*)bin', file) + if m: + IsGitm = True + # check for a header file: + checkFile = glob(m.group(1)+"header") + if (len(checkFile) > 0): + if (len(checkFile[0]) > 1): + HasHeader = True + + return IsGitm, HasHeader + +def fix_vars(vars): + newvars = [] + for v in vars: + nv = re.sub('!U', '', v) + nv = re.sub('!N', '', nv) + nv = re.sub('!D', '', nv) + newvars.append(nv) + + return newvars + +# ---------------------------------------------------------------------------- +# Read in all of the model files: +# ---------------------------------------------------------------------------- + +def read_in_model_files(args, header): + + # Define the plotting inputs + plot_vars = [0, 1, 2, args.var] + + # Update plotting variables to include the wind, if desired + if args.winds: + plot_vars.append(16 if args.cut in ['alt', 'lat'] else 17) + plot_vars.append(18 if args.cut in ['lat', 'lon'] else 17) + + all_winds_x = [] + all_winds_y = [] + + # Prepare to load the desired file data + all_2dim_data = [] + all_times = [] + all_int_data = [] + + for j, filename in enumerate(header['filename']): + # Read in the data file + if header['IsGitm']: + print('=> Reading file : ', filename) + data = read_routines.read_gitm_file(filename, plot_vars) + ivar = args.var + else: + if j == 0: + var_list = [] + for pvar in plot_vars: + var_list.append(header["vars"][pvar]) + if (header["HasHeader"]): + data = read_routines.read_aether_one_binary_file(header, j, + plot_vars) + ivar = args.var + else: + data = read_routines.read_aether_file(filename, var_list) + ivar = 3 + + # For the first file, initialize the necessary plotting data + if j == 0: + # Get 1D arrays for the coordinates + alts = data[2][0][0] / 1000.0 # Convert from m to km + lons = np.degrees(data[0][:, 0, 0]) # Convert from rad to deg + lats = np.degrees(data[1][0, :, 0]) # Convert from rad to deg + # Find the desired index to cut along to get a 2D slice + isgrid = False + + if (args.cut == 'lon'): + pos = args.lon + if (args.cut == 'lat'): + pos = args.lat + + if (args.cut == 'alt'): + pos = args.alt + if (len(alts) == 1): + print("Only one alt found, setting alt pos = 0"); + pos = 0 + isgrid = True + lat2d = data[1][:, :, 0] # Convert from rad to deg + dlon = data[0][1, 0, 0] - data[0][0, 0, 0] + dlat = data[1][0, 1, 0] - data[1][0, 0, 0] + area = np.cos(lat2d) * dlon * dlat * \ + ((6372.0 + 100.0)*1000.0)**2 + icut, cut_data, x_pos, y_pos, z_val = data_prep.get_cut_index( + lons, lats, alts, pos, isgrid, args.cut) + + if (args.cut == 'alt'): + int_data = data[ivar][cut_data] * area + if (args.mean): + int_data = int_data / np.sum(area) + all_int_data.append(np.sum(int_data)) + + # Save the time data + all_times.append(data["time"]) + + # Save the z-axis data + if args.tec: + all_2dim_data.append(data_prep.calc_tec(alts, data[ivar], 2, -4)) + else: + all_2dim_data.append(data[ivar][cut_data]) + + if (args.winds): + all_winds_x.append(data[plot_vars[-2]][cut_data]) + all_winds_y.append(data[plot_vars[-1]][cut_data]) + + # Convert data list to a numpy array + all_2dim_data = np.array(all_2dim_data) + + if args.winds: + all_winds_x = np.array(all_winds_x) + all_winds_y = np.array(all_winds_y) + + data = {'winds_x' : np.array(all_winds_x), + 'winds_y' : np.array(all_winds_y), + 'times' : all_times, + 'slices' : np.array(all_2dim_data), + 'integrated_data': np.array(all_int_data), + 'icut' : icut, + 'x_pos' : x_pos, + 'y_pos' : y_pos, + 'z_val' : z_val} + + return data + +# ---------------------------------------------------------------------------- +# get header info from a file +# ---------------------------------------------------------------------------- + +def get_file_info(args): + + # determine what kind of files we are dealing with + IsGitm, HasHeader = determine_file_type(args.filelist[0]) + + if ((IsGitm) and (not HasHeader)): + header = read_routines.read_gitm_headers(args.filelist, finds = 0) + else: + if (HasHeader): + header = read_routines.read_aether_ascii_header(args.filelist) + IsGitm = 0 + else: + header = read_routines.read_aether_header(args.filelist) + + header['vars'] = fix_vars(header['vars']) + header['IsGitm'] = IsGitm + header['HasHeader'] = HasHeader + + return header + +# ---------------------------------------------------------------------------- +# list the variables in the header +# ---------------------------------------------------------------------------- + +def list_vars(header): + for k, v in header.items(): + if (k != 'vars'): + print(k, '-> ', v) + else: + print('vars : ') + for i, var in enumerate(v): + print(i, var) + return + diff --git a/srcPython/dst.py b/srcPython/dst.py new file mode 100644 index 00000000..406e6c49 --- /dev/null +++ b/srcPython/dst.py @@ -0,0 +1,191 @@ +#!/usr/bin/env python3 + +import re +import datetime as dt +import numpy as np +import requests + +# The parsing of Dst function was downloaded from spedas +# The downloading of the data started from the spedas code and then +# was pretty much rewritten. + +def parse_dst_html(html_text, year=None, month=None): + """ + Parses the HTML content to extract relevant information. + + Parameters + ---------- + html_text : str + The HTML content to parse. + year : int, optional + The year to consider while parsing the HTML content. If not provided, all years are considered. + month : int, optional + The month to consider while parsing the HTML content. If not provided, all months are considered. + + Returns + ------- + dict + A dictionary containing the parsed information. + """ + times = [] + data = [] + # remove all of the HTML before the table + html_data = html_text[html_text.find("Hourly Equatorial Dst Values") :] + # remove all of the HTML after the table + html_data = html_data[: html_data.find("")] + html_lines = html_data.split("\n") + data_strs = html_lines[5:] + # loop over days + for day_str in data_strs: + # the first element of hourly_data is the day, the rest are the hourly Dst values + hourly_data = re.findall(r'[-+]?\d+', day_str) + ## if the data is not complete for a whole day (which is typically the case for real time data): + if len(hourly_data[1:]) != 24: + ## if the data is not completely missing for a whole day: + if len(hourly_data[1:]) != 3: + for idx, dst_value in enumerate(hourly_data[1:]): + ## The kyoto website uses a 4 digit format. + remainder = len(dst_value) % 4 + ## if the remainder is not zero, it can be either the regular case '-23' or + ## the ill case '-159999'. index by 0:remainder gives the correct -23 or -15 + if remainder > 0: + times.append( + dt.datetime(int(year), + int(month), + int(hourly_data[0]), + int(idx), + 30, + 0)) + data.append(float(dst_value[0:remainder])) + ## if the remainder is zero, it can be either the regular case '-1599999' or + ## the ill case '9999...9999' with the number of nine being the multiple of 4. + ## we further test if the first four digits are 9999. If not, we simply index by + ## [0:4], which gives -159 in the regular case. Else, we ignore missing data. + elif dst_value[0:4] != '9999': + times.append( + dt.datetime(int(year), + int(month), + int(hourly_data[0]), + int(idx), + 30, + 0)) + data.append(float(dst_value[0:4])) + ## if the data is complete for a whole day. + else: + for idx, dst_value in enumerate(hourly_data[1:]): + times.append( + dt.datetime(int(year), + int(month), + int(hourly_data[0]), + int(idx), + 30, + 0)) + data.append(float(dst_value)) + + return (times, data) + + +def get_dst( + times = None, + datatypes=["final", "provisional", "realtime"], + time_clip=True, + prefix="", + suffix="", + no_download=False, + local_data_dir="", + download_only=False, + force_download=False, +): + """ + Loads Dst index data from the Kyoto servers. + + Parameters + ---------- + times : list of str, required + Time range of interest with the format ['YYYY-MM-DD','YYYY-MM-DD'] or + to specify more or less than a day ['YYYY-MM-DD/hh:mm:ss','YYYY-MM-DD/hh:mm:ss']. + time_clip : bool, optional + Time clip the variables to exactly the range specified in the trange keyword. + Defaults to True. + remote_data_dir : str, optional + The remote directory from where to load the Dst index data. + Defaults to "http://wdc.kugi.kyoto-u.ac.jp/". + suffix : str, optional + The tplot variable names will be given this suffix. + By default, no suffix is added. + force_download: bool + Download file even if local version is more recent than server version + Default: False + + Returns + ------- + list of str + List of tplot variables created. + + Notes + ----- + There are three types of Dst data available: final, provisional, and realtime. + Usually, only one type is available for a particular month. + is function tries to download final data, if this is not available then + it downloads provisional data, and if this is not available then it downloads + realtime data. + + Examples + -------- + >>> from pyspedas.projects.kyoto import dst + >>> dst_data = dst(times=['2015-01-01', '2015-01-02']) + >>> print(dst_data) + kyoto_dst + """ + + vars = [] # list of tplot variables created + + if times is None: + print("Keyword times is required to download data.") + return vars + if (len(times) > 1): + if (times[0] >= times[1]): + print("Invalid time range. End time must be greater than start time.") + return vars + + if local_data_dir == "": + local_data_dir = "./" + if local_data_dir[-1] != "/": + local_data_dir += "/" + + remote_data_dir = "https://wdc.kugi.kyoto-u.ac.jp/" + + datatypes = ["final", "provisional", "realtime"] + + remoteNames = [] + localNames = [] + allTimes = [] + allDst = [] + for time in times: + ymd = time.split('-') + filename = ymd[0] + ymd[1] + '/index.html' + didWork = False + iType = 0 + while ((not didWork) and (iType < len(datatypes))): + remote = remote_data_dir + \ + 'dst_' + datatypes[iType] + '/' + \ + filename + print(remote, didWork, iType) + result = requests.get(url = remote) + if (len(result.text) > 1000): + didWork = True + t, d = parse_dst_html(result.text, year=int(ymd[0]), month=int(ymd[1])) + if (len(allTimes) < 1): + allTimes = t + allDst = d + else: + allTimes = np.concatenate(allTimes, t) + allDst = np.concatenate(allTimes, d) + else: + iType = iType + 1 + + data = {'times': allTimes, + 'dst': allDst} + + return data + diff --git a/srcPython/eclipse.py b/srcPython/eclipse.py new file mode 100755 index 00000000..b853aa51 --- /dev/null +++ b/srcPython/eclipse.py @@ -0,0 +1,240 @@ +#!/usr/bin/env python + +import matplotlib as mpl +mpl.use('Agg') +import matplotlib.pyplot as plt +import numpy as np +import re +import argparse +import datetime as dt + +# ---------------------------------------------------------------------- +# +# ---------------------------------------------------------------------- + +months = {'Jan' : 1, + 'Feb' : 2, + 'Mar' : 3, + 'Apr' : 4, + 'May' : 5, + 'Jun' : 6, + 'Jul' : 7, + 'Aug' : 8, + 'Sep' : 9, + 'Oct' : 10, + 'Nov' : 11, + 'Dec' : 12} + +def read_file(file): + + fpin = open(file, 'r') + + lines = fpin.readlines() + + iStart = 0 + iEnd = len(lines) + iLine = iStart + + inBetween = False + + lats = [] + lons = [] + times = [] + + while (iLine < iEnd): + line = lines[iLine] + + m = re.match(r'.*Path of Total Solar Eclipse of (\d\d\d\d) (...) (\d\d).*', line) + if m: + year = int(m.group(1)) + month = months[m.group(2)] + day = int(m.group(3)) + + m = re.match(r'.*>Limits<',line) + if m: + if (inBetween): + iLine = iEnd + else: + inBetween = True + else: + + if (inBetween): + parts = line.split('') + # figure out time: + hour = int(parts[0][-5:-3]) + minute = int(parts[0][-2:]) + times.append(dt.datetime(year, month, day, hour, minute, 0)) + # Grab Latitudes + lats_deg = float(parts[5][0:2]) + lats_min = float(parts[5][3:7]) / 60.0 + if (parts[5][-1] == 'S'): + fac = -1.0 + else: + fac = 1.0 + lats.append(fac * (lats_deg + lats_min)) + # Grab Longitudes + lons_deg = float(parts[6][0:3]) + lons_min = float(parts[6][4:8]) / 60.0 + if (parts[6][-1] == 'W'): + lon = 360.0 - (lons_deg + lons_min) + else: + lon = lons_deg + lons_min + lons.append(lon) + iLine += 1 + + data = { + 'lats': np.array(lats), + 'lons': np.array(lons), + 'times': times} + + return data + +# ---------------------------------------------------------------------- +# +# ---------------------------------------------------------------------- + +def calc_declinations(times): + declinations = [] + maxDec = 23.5 + year = times[0].year + equinox = dt.datetime(year, 3, 21, 0, 0, 0) + sInYear = 365.25 * 24.0 * 3600.0 + for t in times: + rads = (t - equinox).total_seconds() / sInYear * np.pi * 2 + declinations.append(maxDec * np.sin(rads)) + return np.array(declinations) + +# ---------------------------------------------------------------------- +# +# ---------------------------------------------------------------------- + +def calc_localtimes(lons, times): + localtimes = [] + for i, t in enumerate(times): + ut = t.hour + t.minute/60.0 + t.second/3600.0 + localtimes.append((lons[i]/15.0 + ut) % 24.0) + return np.array(localtimes) + + +def calc_gse(latitudes, localtimes, declinations): + + r = 6371.0 + lts = localtimes * np.pi / 12.0 + decs = declinations * np.pi / 180.0 + lats = latitudes * np.pi / 180.0 + x = r * np.cos(lts - np.pi) * np.cos(lats) + y = r * np.sin(lts - np.pi) * np.cos(lats) + z = r * np.sin(lats) + # rotate around y-axis for the Earth Tilt: + xp = x * np.cos(-decs) - z * np.sin(-decs) + yp = y + zp = x * np.sin(-decs) + z * np.cos(-decs) + + gse = {'x' : xp, + 'y' : yp, + 'z' : zp} + return gse + +# ---------------------------------------------------------------------- +# +# ---------------------------------------------------------------------- + +def extend(var, n, dir): + if (dir > 0): + dv = var[-1] - var[-2] + new = var[-1] + dv * n + else: + dv = var[0] - var[1] + new = var[0] + dv * n + return new + +# ---------------------------------------------------------------------- +# +# ---------------------------------------------------------------------- + +def extend_time(var, n, dir): + if (dir > 0): + dv = (var[-1] - var[-2]).total_seconds() + new = var[-1] + dt.timedelta(seconds = dv * n) + else: + dv = (var[0] - var[1]).total_seconds() + new = var[0] + dt.timedelta(seconds = dv * n) + return new + +# ------------------------------------------------------------------- +# Make a label that shows the whole time range +# ------------------------------------------------------------------- + +def get_label_time_range(times): + startTime = times[0] + endTime = times[-1] + label = startTime.strftime('%b %d, %Y %H:%M UT') + ' - ' + \ + endTime.strftime('%b %d, %Y %H:%M UT (Hours)') + return label +# ---------------------------------------------------------------------- +# +# ---------------------------------------------------------------------- + +# Code tested with this website: +# https://eclipsewise.com/solar/SEpath/2001-2100/SE2024Apr08Tpath.html + +file = 'eclipse_20240408.html' +data = read_file(file) +decs = calc_declinations(data['times']) +lts = calc_localtimes(data['lons'], data['times']) + +gse = calc_gse(data['lats'], lts, decs) + +fig = plt.figure(figsize = (10,9)) +plt.rcParams.update({'font.size': 14}) + +ax = fig.add_axes([0.12, 0.08, 0.85, 0.85]) + +ax.scatter(gse['y'], gse['z'], color = 'blue') +nP = 20 +yP = extend(gse['y'], nP, 1.0) +zP = extend(gse['z'], nP, 1.0) +yM = extend(gse['y'], nP, -1.0) +zM = extend(gse['z'], nP, -1.0) +tP = extend_time(data['times'], nP, 1.0) +tM = extend_time(data['times'], nP, -1.0) +ax.scatter([yM, yP], [zM, zP], color = 'red') +ax.set_ylim(-9000, 9000) +ax.set_xlim(-9000, 9000) + +sTime = get_label_time_range([tM, tP]) +ax.set_title('Eclipse from : ' + sTime) +ax.set_xlabel('GSE-Y (km)') +ax.set_ylabel('GSE-Z (km)') + +theta = np.arange(0, 361.0, 1.0) * np.pi / 180.0 +r = 6371.0 +ax.plot(r * np.cos(theta), r * np.sin(theta), color = 'k') +ax.set_aspect(1) + +ax.text(yM+100, zM, 'Start', color = 'red') +ax.text(yP+100, zP, 'End', color = 'red') + + +print('#ECLIPSE') +print(tM.strftime('%Y %m %d %H %M %S Start Time')) +print(tP.strftime('%Y %m %d %H %M %S End Time')) +print('%7.1f Start GSE-Y' % yM) +print('%7.1f Start GSE-Z' % zM) +print('%7.1f End GSE-Y' % yP) +print('%7.1f End GSE-Z' % zP) + +peak = 0.9 +width = 3000.0 +minExp = 0.07 +expWidth = 400.0 + +print(' %5.3f Peak Depletion' % peak) +print('%7.1f Width' % width) +print(' %5.3f Min Exp Amplitude' % minExp) +print('%7.1f Exp width' % expWidth) + +plotfile = 'eclipse.png' +print('writing : ',plotfile) +fig.savefig(plotfile) +plt.close() diff --git a/srcPython/f107_download.py b/srcPython/f107_download.py index 956cfd4a..4a6eb8d3 100755 --- a/srcPython/f107_download.py +++ b/srcPython/f107_download.py @@ -11,6 +11,9 @@ import numpy as np import re +# running this without any parameters produces an f107_downloaded.txt file. +# this can be copied into ../srcData/f107.txt and committed. + # ---------------------------------------------------------------------- # There are two sites that seem to have this data: # diff --git a/srcPython/format_GITM.py b/srcPython/format_GITM.py old mode 100644 new mode 100755 index 33ad2957..2ef8c1ed --- a/srcPython/format_GITM.py +++ b/srcPython/format_GITM.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import io import glob @@ -56,11 +57,16 @@ def check_line_lengths(input_args=None): is_commented = (comment_idx != -1) and (comment_idx < subrout_idx) is_ended = (end_idx != -1) and (end_idx < subrout_idx) - if is_ended: - tmp_subroutine_lengths[-1] = n - tmp_subroutine_lengths[-1] - elif not is_commented: - tmp_subroutine_lengths.append(n) - subrout_info.append([n, l]) + if is_commented: + continue + try: + if is_ended: + tmp_subroutine_lengths[-1] = n - tmp_subroutine_lengths[-1] + elif not is_commented: + tmp_subroutine_lengths.append(n) + subrout_info.append([n, l]) + except IndexError: + print(f, "\nCould not be formatted!") except: @@ -301,4 +307,4 @@ def parse_arguments(): check_line_lengths(input_args) - print('No critical warnings generated.') \ No newline at end of file + print('No critical warnings generated.') diff --git a/srcPython/gitm_makejob.py b/srcPython/gitm_makejob.py index 73839000..af6b8c51 100755 --- a/srcPython/gitm_makejob.py +++ b/srcPython/gitm_makejob.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import argparse import re @@ -140,7 +140,7 @@ def modify_job(inLines, \ line = '#PBS -N ' + name m = re.match(r'.*walltime.*', line) if m: - line = '#PBS -l walltime=' + walltime + ':00:00' + line = '#PBS -lwalltime=' + walltime + ':00:00' m = re.match(r'.*group_list.*', line) if m: line = '#PBS -W group_list=' + gid diff --git a/srcPython/gitm_makerun.py b/srcPython/gitm_makerun.py index 2de7b5fb..f62eea7a 100755 --- a/srcPython/gitm_makerun.py +++ b/srcPython/gitm_makerun.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 from gitm_routines import * from omniweb import * @@ -527,6 +527,14 @@ def convert_time(sTime): # ---------------------------------------- # Deal with F107 stuff: +needF107 = True +if '#NGDC_INDICES' in uam: + f107file = uam['#NGDC_INDICES'][0][0] + if (f107file == 'UA/DataIn/f107.txt'): + needF107 = False + print('--> F107 file was specified in UAM.in file.') + print(' will not write out F107 values.') + diff = (end - start).total_seconds() mid = start + timedelta(seconds = diff/2) @@ -560,11 +568,15 @@ def convert_time(sTime): f107s = ('%5.1f' % f107).strip() f107as = ('%5.1f' % f107a).strip() -uam['#F107'] = { - 0: [f107s, ' data from '+f107file], - 1: [f107as, ' 81 day average of f107'] } -print('--> Setting F107, F107a : ' + f107s + ', ' + f107as) +if (needF107): + uam['#F107'] = { + 0: [f107s, ' data from '+f107file], + 1: [f107as, ' 81 day average of f107'] } + print('--> Setting F107, F107a : ' + f107s + ', ' + f107as) +else: + print(' --> Read F107, F107a : ' + f107s + ', ' + f107as) + print(' BUT NOT USING THESE, since there is a file found.\n') # ---------------------------------------- # FISM @@ -574,7 +586,7 @@ def convert_time(sTime): fromRunDir = 'UA/DataIn/FISM/' fismFound = False - if (os.path.exists(fismFile)): + if (os.path.exists(fromRunDir + fismFile)): fismFound = True else: if (useGitmDir): @@ -699,9 +711,12 @@ def convert_time(sTime): # FTA model of the aurora if (args.fta): - # turn on fang auroral energy deposition + # turn on fta auroral precip model uam['#FTAMODEL'] = { 0 : ['T', ' Use FTA model of the aurora'] } + uam['#IEMODELS'] = { + 0 : ['FTA', ' Use FTA model of the aurora'], + 1 : ['Weimer', ' Use Weimer potential model'] } print('--> Turning on FTA Model') # Turn off other aurora @@ -726,6 +741,10 @@ def convert_time(sTime): 5 : ['T', ' Average patterns'] } print('--> Turning on Newell Ovation Model') + uam['#IEMODELS'] = { + 0 : ['OVATION', ' Use OVATION model of the aurora'], + 1 : ['Weimer', ' Use Weimer potential model'] } + uam['#FTAMODEL'] = { 0 : ['F', ' Use FTA model of the aurora'] } print(' --> Turning off FTA Model') diff --git a/srcPython/gitm_plot_simple.py b/srcPython/gitm_plot_simple.py new file mode 100755 index 00000000..3d9fcd53 --- /dev/null +++ b/srcPython/gitm_plot_simple.py @@ -0,0 +1,414 @@ +#!/usr/bin/env python3 +""" Standard model visualization routines +""" + +import matplotlib as mpl +mpl.use('Agg') +import matplotlib.pyplot as plt +import numpy as np +import argparse + +from pylab import cm +from gitm_routines import * + +def get_args(): + + parser = argparse.ArgumentParser( + description = 'Plot Aether / GITM model results') + + parser.add_argument('-list', \ + action='store_true', default = False, \ + help = 'list variables in file') + + parser.add_argument('-var', \ + default = 3, type = int, \ + help = 'variable to plot (number)') + + parser.add_argument('-cut', metavar = 'cut', default ='alt', \ + choices = ['alt', 'lat', 'lon'], + help = 'alt,lat,lon : which cut you would like') + + parser.add_argument('-alt', metavar = 'alt', default = 250.0, \ + help = 'altitude : alt in km (closest)') + parser.add_argument('-lat', metavar = 'lat', default = 0.0, \ + help = 'latitude : latitude in degrees (closest)') + parser.add_argument('-lon', metavar = 'lon', default = 0.0,\ + help = 'longitude in degrees (closest)') + + parser.add_argument('-log', default = False, + action="store_true", + help = 'plot the log of the variable') + + parser.add_argument('-mini', default = 1e32, type = float, \ + help = 'manually set the minimum value for the plots') + parser.add_argument('-maxi', default = -1e32, type = float, \ + help = 'manually set the maxiumum value for the plots') + + parser.add_argument('filelist', nargs='+', \ + help = 'list files to use for generating plots') + + args = parser.parse_args() + + return args + +# ---------------------------------------------------------------------------- +# get header info from a file +# ---------------------------------------------------------------------------- + +def get_file_info(args): + + header = read_gitm_header(args.filelist) + header['vars'] = remap_variable_names(header['vars']) + + return header + +# ---------------------------------------------------------------------------- +# list the variables in the header +# ---------------------------------------------------------------------------- + +def list_vars(header): + for k, v in header.items(): + if (k != 'vars'): + print(k, '-> ', v) + else: + print('vars : ') + for i, var in enumerate(v): + print(i, var) + return + +# ---------------------------------------------------------------------------- +# Read in data from the files: +# ---------------------------------------------------------------------------- + +def read_in_model_files(filelist, varlist): + + # first read in spatial information: + vars = [0, 1, 2] + spatialData = read_gitm_one_file(filelist[0], vars) + + lons = np.degrees(spatialData[0]) # Convert from rad to deg + nLons = len(lons[:, 0, 0]) + lats = np.degrees(spatialData[1]) # Convert from rad to deg + nLats = len(lats[0, :, 0]) + alts = spatialData[2] / 1000.0 # Convert from m to km + nAlts = len(alts[0, 0, :]) + + nTimes = len(filelist) + nVars = len(varlist) + if (nVars == 1): + allData = np.zeros((nTimes, nLons, nLats, nAlts)) + else: + allData = np.zeros((nTimes, nVars, nLons, nLats, nAlts)) + allTimes = [] + for iTime, filename in enumerate(filelist): + data = read_gitm_one_file(filename, varlist) + allTimes.append(data["time"]) + if (nVars == 1): + allData[iTime, :, :, :] = data[varlist[0]][:, :, :] + else: + for iVar, var in enumerate(varlist): + allData[iTime, iVar, :, :, :] = data[var][:, :, :] + vars = [] + for var in varlist: + vars.append(data['vars'][var]) + + data = {'times': allTimes, + 'data': allData, + 'vars': vars, + 'lons': lons, + 'lats': lats, + 'alts': alts, + 'nTimes': nTimes, + 'nVars': nVars, + 'nLons' : nLons, + 'nLats': nLats, + 'nAlts': nAlts} + + return data + +# ---------------------------------------------------------------------------- +# take a dictionary containing all of the model data and +# return slices. The data should have the shape: +# [nTimes, nVars, nLons, nLats, nAlts] +# or +# [nTimes, nLons, nLats, nAlts] +# ---------------------------------------------------------------------------- + +def data_slice(allData3D, iLon = -1, iLat = -1, iAlt = -1): + + nTimes = allData3D['nTimes'] + nVars = allData3D['nVars'] + nLons = allData3D['nLons'] + nLats = allData3D['nLats'] + nAlts = allData3D['nAlts'] + + if (nVars > 1): + if (iAlt > -1): + slices = np.zeros((nTimes, nVars, nLons, nLats)) + slices[:, :, :, :] = allData3D['data'][:, :, :, :, iAlt] + elif (iLat > -1): + slices = np.zeros((nTimes, nVars, nLons, nAlts)) + slices[:, :, :, :] = allData3D['data'][:, :, :, iLat, :] + else: + slices = np.zeros((nTimes, nVars, nLats, nAlts)) + slices[:, :, :, :] = allData3D['data'][:, :, iLon, :, :] + else: + if (iAlt > -1): + slices = np.zeros((nTimes, nLons, nLats)) + slices[:, :, :] = allData3D['data'][:, :, :, iAlt] + elif (iLat > -1): + slices = np.zeros((nTimes, nLons, nAlts)) + slices[:, :, :] = allData3D['data'][:, :, iLat, :] + else: + slices = np.zeros((nTimes, nLats, nAlts)) + slices[:, :, :] = allData3D['data'][:, iLon, :, :] + + return slices + +#----------------------------------------------------------------------------- +# find which cut direction to make, then which cut to take +#----------------------------------------------------------------------------- + +def find_cut(args, allData): + + cutValue = -1e32 + cutString = '' + cutShort = '' + iLon = -1 + iLat = -1 + iAlt = -1 + xLabel = '' + yLabel = '' + lons1d = allData['lons'][:, 0, 0] + lats1d = allData['lats'][0, :, 0] + alts1d = allData['alts'][0, 0, :] + xRange = [0,0] + yRange = [0,0] + + if (args.cut == 'alt'): + altGoal = float(args.alt) + diff = np.abs(alts1d - altGoal) + iAlt = np.argmin(diff) + cutValue = alts1d[iAlt] + cutString = 'Alt : %d km' % int(cutValue) + cutShort = 'alt%04d_' % iAlt + xLabel = 'Longitude (deg)' + yLabel = 'Latitude (deg)' + xPos1d = lons1d + yPos1d = lats1d + xRange = [0, 360] + yRange = [-90.0, 90.0] + if (args.cut == 'lon'): + lonGoal = float(args.lon) + diff = np.abs(lons1d - lonGoal) + iLon = np.argmin(diff) + cutValue = lons1d[iLon] + cutString = 'Lon : %d deg' % int(cutValue) + cutShort = 'lon%04d_' % iLon + xLabel = 'Latitude (deg)' + yLabel = 'Altitude (km)' + xPos1d = lats1d + yPos1d = alts1d + xRange = [-90.0, 90.0] + yRange = [alts1d[2], alts1d[-3]] + if (args.cut == 'lat'): + latGoal = float(args.lat) + diff = np.abs(lats1d - latGoal) + iLat = np.argmin(diff) + cutValue = lats1d[iLat] + cutString = 'Lat : %d deg' % int(cutValue) + cutShort = 'lat%04d_' % iLat + xLabel = 'Longitude (deg)' + yLabel = 'Altitude (km)' + xPos1d = lons1d + yPos1d = alts1d + xRange = [0.0, 360.0] + yRange = [alts1d[2], alts1d[-3]] + + cut = {'iLon': iLon, + 'iLat': iLat, + 'iAlt': iAlt, + 'cutValue': cutValue, + 'cutString': cutString, + 'cutShort': cutShort, + 'xLabel': xLabel, + 'yLabel': yLabel, + 'xRange': xRange, + 'yRange': yRange, + 'xPos': xPos1d, + 'yPos': yPos1d} + + return cut + +# ---------------------------------------------------------------------------- +# This function calculates the edges of cells based on the centers of the cells +# it assumes a 1D array. +# ---------------------------------------------------------------------------- + +def move_centers_to_edges(pos): + edges = (pos[1:] + pos[:-1])/2 + dpLeft = pos[1] - pos[0] + dpRight = pos[-1] - pos[-2] + edges = np.append(edges[0] - dpLeft, edges) + edges = np.append(edges, dpRight + edges[-1]) + return edges + +# ---------------------------------------------------------------------------- +# Get max and min values +# model_data is [time, xpositions, ypositions] +# ---------------------------------------------------------------------------- + +def get_min_max_data(allSlices, yPos, \ + yMin = -1e32, yMax = 1e32, \ + color = 'default', \ + minVal = 1e32, maxVal = -1e32, + isLog = False): + + symmetric = False + if (color == 'default'): + cmap = mpl.cm.plasma + if (color == 'red'): + cmap = mpl.cm.YlOrRd + + mask = ((yPos >= yMin) & (yPos <= yMax)) + if (mask.max()): + doPlot = True + maxi = allSlices[:, :, mask].max() * 1.01 + mini = allSlices[:, :, mask].min() * 0.99 + + if ((mini < 0.0) and (not isLog)): + symmetric = True + cmap = mpl.cm.bwr + maxi = abs(allSlices[:, :, mask]).max() * 1.05 + mini = -maxi + + else: + doPlot = False + mini = -1.0 + maxi = 1.0 + + if (minVal < 1e31): + mini = minVal + if (maxVal > -1e31): + maxi = maxVal + + min_max_data = {'mini' : mini, + 'maxi' : maxi, + 'cmap' : cmap, + 'symmetric' : symmetric, + 'doPlot': doPlot, + 'mask': mask} + + return min_max_data + +# ---------------------------------------------------------------------------- +# Plot a series of slices +# allSlices: 3D - [time, xpositions, ypositions] +# xPosEdges: 1D - [xpositions] (edges of cells, not centers) +# yPosEdges: 1D - [ypositions] (edges of cells, not centers) +# dataMinMax: dictionary that contains info on min, max, and color map +# varName: puts this string on the colorbar +# titleAddOn: puts this string after the time on the title +# xLabel: string label for the x axis +# yLabel: string label for the y axis +# filenamePrefix: string to add before time for filename (like varX_) +# xLimits: limits for the x axis - (array of 2 elements) +# yLimits: limits for the y axis - (array of 2 elements) +# dpi: dots per inch for file +# ---------------------------------------------------------------------------- + +def plot_series_of_slices(allSlices, + allTimes, + xPosEdges, + yPosEdges, + dataMinMax, + varName = '', + titleAddOn = '', + xLabel = '', + yLabel = '', + filenamePrefix = '', + xLimits = [0, 0], + yLimits = [0, 0], + dpi = 120): + + for iTime, uTime in enumerate(allTimes): + + fig = plt.figure(figsize=(10, 5.5), dpi = dpi) + ax = fig.add_axes([0.07, 0.08, 0.97, 0.87]) + + title = uTime.strftime("%d %b %Y %H:%M:%S UT") + titleAddOn + value2d = allSlices[iTime, :, :].transpose() + con = ax.pcolormesh(xPosEdges, yPosEdges, value2d, \ + cmap = dataMinMax['cmap'], \ + vmin = dataMinMax['mini'], \ + vmax = dataMinMax['maxi']) + if (xLimits[1] > xLimits[0]): + ax.set_xlim(xLimits) + if (yLimits[1] > yLimits[0]): + ax.set_ylim(yLimits) + #ax.set_aspect(1.0) + ax.set_title(title) + ax.set_xlabel(xLabel) + ax.set_ylabel(yLabel) + + cbar = fig.colorbar(con, ax = ax, shrink = 0.75, pad = 0.02) + cbar.set_label(varName, rotation=90) + + sTimeOut = uTime.strftime('%y%m%d_%H%M%S') + outFile = filenamePrefix + sTimeOut + '.png' + print(" ==> Writing file : ", outFile) + fig.savefig(outFile, dpi = dpi) + plt.close(fig) + +#----------------------------------------------------------------------------- +# Main code +#----------------------------------------------------------------------------- + +if __name__ == '__main__': + + # Get the input arguments + args = get_args() + + header = get_file_info(args) + + if (args.list): + list_vars(header) + exit() + + allData = read_in_model_files(args.filelist, [args.var]) + cut = find_cut(args, allData) + + allSlices = data_slice(allData, \ + iLon = cut['iLon'], \ + iLat = cut['iLat'], \ + iAlt = cut['iAlt']) + allTimes = allData['times'] + + # get min and max values, plus color table: + dataMinMax = get_min_max_data(allSlices, cut['yPos'], \ + color = 'red', \ + minVal = args.mini, maxVal = args.maxi) + + varName = allData['vars'][0] + if (args.log): + allSlices = np.log10(allSlices) + varName = 'log10(' + varName + ')' + dataMinMax['mini'] = np.log10(dataMinMax['mini']) + dataMinMax['maxi'] = np.log10(dataMinMax['maxi']) + sVarNum = 'var%03d_' % args.var + sFilePre = sVarNum + cut['cutShort'] + sTitleAdd = '; ' + cut['cutString'] + xEdges = move_centers_to_edges(cut['xPos']) + yEdges = move_centers_to_edges(cut['yPos']) + plot_series_of_slices(allSlices, + allTimes, + xEdges, + yEdges, + dataMinMax, + xLabel = cut['xLabel'], + yLabel = cut['yLabel'], + varName = varName, + titleAddOn = sTitleAdd, + filenamePrefix = sFilePre, + xLimits = cut['xRange'], + yLimits = cut['yRange']) diff --git a/srcPython/gitm_routines.py b/srcPython/gitm_routines.py index 56c18012..78d6c6bc 100644 --- a/srcPython/gitm_routines.py +++ b/srcPython/gitm_routines.py @@ -220,7 +220,7 @@ def read_gitm_header(file): #----------------------------------------------------------------------------- -def read_gitm_headers(pre='./3DALL'): +def read_gitm_headers(pre='./3DALL', files = ['']): r""" Grab ancillary information from the GITM files Parameters @@ -234,7 +234,10 @@ def read_gitm_headers(pre='./3DALL'): """ - filelist = sorted(glob(pre+'*.bin')) + if (len(files[0]) < 5): + filelist = sorted(glob(pre+'*.bin')) + else: + filelist = files print("Found ", len(filelist), "files") header = {"nFiles": len(filelist), \ @@ -351,8 +354,9 @@ def read_gitm_one_file(file_to_read, vars_to_read=-1): # Collect variable names. for i in range(data["nVars"]): - data["vars"].append(unpack(endChar+'%is'%(recLen),f.read(recLen))[0]) - (oldLen, recLen)=unpack(endChar+'2l',f.read(8)) + v = unpack(endChar+'%is'%(recLen),f.read(recLen))[0] + data["vars"].append(v.decode('utf-8').replace(" ","")) + (oldLen, recLen)=unpack(endChar+'2l',f.read(8)) # Extract time. (yy,mm,dd,hh,mn,ss,ms)=unpack(endChar+'lllllll',f.read(recLen)) diff --git a/srcPython/guvi_read.py b/srcPython/guvi_read.py new file mode 100755 index 00000000..d570b745 --- /dev/null +++ b/srcPython/guvi_read.py @@ -0,0 +1,107 @@ +#!/usr/bin/env python + +import matplotlib as mpl +mpl.use('Agg') + +import datetime as dt +import numpy as np +from scipy.io import readsav +import matplotlib.pyplot as plt +import matplotlib.dates as dates + +def convert_fractional_date_to_datetime(year, days): + basetime = dt.datetime(year, 1, 1, 0, 0, 0) + times = [] + for doy in days: + seconds = (doy - 1) * 24.0 * 3600.0 + times.append(basetime + dt.timedelta(seconds = seconds)) + return times + +def read_guvi_sav_file(savFile): + + print('Reading file : ', savFile) + guvi = readsav(savFile) + nOrbits = len(guvi['saved_data']) + year = int(guvi['year']) + + allLats = [] + allLons = [] + allOn2 = [] + allTimes = [] + startTimes = [] + for iOrbit in range(nOrbits): + nPts = guvi['saved_data'][iOrbit][5] + lats = guvi['saved_data'][iOrbit][0][0:nPts] + lons = guvi['saved_data'][iOrbit][1][0:nPts] + on2 = guvi['saved_data'][iOrbit][3][0:nPts] + dates = guvi['saved_data'][iOrbit][4][0:nPts] + times = convert_fractional_date_to_datetime(year, dates) + allLats = np.concatenate((allLats, lats)) + allLons = np.concatenate((allLons, lons)) + allOn2 = np.concatenate((allOn2, on2)) + allTimes = np.concatenate((allTimes, times)) + startTimes.append(times[0]) + + periods = [] + for i, sts in enumerate(startTimes[1:]): + periods.append((sts - startTimes[i]).total_seconds()) + data = {'lats' : allLats, + 'lons' : allLons, + 'times' : allTimes, + 'on2' : allOn2, + 'period' : np.array(periods)} + return data + +def merge_dicts(dict1, dict2): + combined = {} + for key in dict1.keys(): + combined[key] = np.concatenate(( dict1[key], dict2[key])) + return combined + +def copy_dict(dict1): + combined = {} + for key in dict1.keys(): + combined[key] = dict1[key] + return combined + +def read_list_of_guvi_files(filelist): + nFiles = len(filelist) + if (nFiles == 1): + alldata = read_guvi_sav_file(filelist[0]) + else: + for iFile, file in enumerate(filelist): + onefile = read_guvi_sav_file(file) + if (iFile > 0): + print(' -> merging') + alldata = merge_dicts(alldata, onefile) + else: + print(' -> copying') + alldata = copy_dict(onefile) + return alldata + + +def plot_guvi(guvi): + + fig = plt.figure(figsize = (10,10)) + plt.rcParams.update({'font.size': 14}) + + ax = fig.add_subplot(111) + ax.set_position([0.1, 0.1, 0.8, 0.8]) + + lats = guvi['lats'] + lons = guvi['lons'] + on2 = guvi['on2'] + times = guvi['times'] + cmap = mpl.cm.plasma + cax = ax.scatter(lons, lats, c = on2, cmap = cmap) + cbar = fig.colorbar(cax, ax = ax, shrink = 0.5, pad=0.01) + + sTime = times[0].strftime('GUVI O/N2 : %b %d, %Y %H:%M UT') + ' - ' + \ + times[-1].strftime('%b %d, %Y %H:%M UT') + ax.set_title(sTime) + + plotfile = times[-1].strftime('guvi_on2%Y%m%d.png') + + print('Writing plotfile : ', plotfile) + fig.savefig(plotfile) + plt.close() diff --git a/srcPython/omni_download_write_swmf.py b/srcPython/omni_download_write_swmf.py index fbfd5514..a2ba4d1a 100755 --- a/srcPython/omni_download_write_swmf.py +++ b/srcPython/omni_download_write_swmf.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys import datetime as dt diff --git a/srcPython/pGITM.py b/srcPython/pGITM.py index d90e8c05..2cfdc2d0 100755 --- a/srcPython/pGITM.py +++ b/srcPython/pGITM.py @@ -1,10 +1,10 @@ #!/usr/bin/env python3 ''' -A wrapper for PostGITM.exe to handle all unconcatenated output fragments +Handle all unconcatenated output fragments produced during a GITM simulation. -This script is an alternative to pGITM (written in cshell) that works robustly -and securely on a range of unix-like environments with Python available +This script works robustly and securely on a range of +unix-like environments with Python available (i.e., any modern computer.) ''' @@ -19,6 +19,14 @@ from scipy.io import FortranFile from struct import unpack +# check if netcdf can be imported. if not, don't error unless writing netcdf files +canWriteCDF = True +try: + from netCDF4 import Dataset + from pyitm.fileio import variables +except: + canWriteCDF = False + # This should work on most systems: endChar='<' @@ -28,7 +36,8 @@ def get_args_pgitm(): parser = argparse.ArgumentParser( - description = 'Plot Aether / GITM model results') + description = "Post-process GITM model results." + " (note: NetCDF functionality is only available through post_process.py)") parser.add_argument('-v', \ action='store_true', default = False, \ help = 'set verbose to true') @@ -86,6 +95,134 @@ def write_gitm_file(file, data, isVerbose = False): fp.close() +def create_netcdf(filename, data, isVerbose=False): + + if isVerbose: + print(" --> Creating netCDF file:", filename) + + # get dimensions: + nz, ny, nx = data["Longitude"].shape + + with Dataset(filename, mode="w", format="NETCDF4") as ncfile: + # Dimensions + t = ncfile.createDimension('time', None) + xdim = ncfile.createDimension('lon', nx) + ydim = ncfile.createDimension('lat', ny) + zdim = ncfile.createDimension('z', nz) + + # time! + reftime = datetime.date(1965, 1, 1) + time = ncfile.createVariable('time', np.float64, ('time',)) + time.units = 'seconds since ' + str(reftime) + time.long_name = 'time' + time[:] = [(data['time'] + - datetime.datetime(reftime.year, reftime.month, reftime.day) + ).total_seconds()] + + if isVerbose: + print(" --> Created dataset with dimensions:") + [print(dim) for dim in ncfile.dimensions.items()] + + # Add in attributes. Version, etc. + ncfile.title = f"{filename[:5]} GITM Outputs" + ncfile.model = "GITM" + ncfile.version = data['version'] + + if isVerbose: + print(" --> Attributes added. Current ncfile:") + print(ncfile) + + # We'll try to add the coordinates, if they can be added cleanly... + if np.all(data['Longitude'][0, 0, :] == data['Longitude']): + lon = ncfile.createVariable('lon', np.float64, ('lon')) + lon[:] = np.rad2deg(data['Longitude'][0, 0, :]) + lon.units = 'degrees_east' + lon.long_name = 'Longitude' + + # Latitude needs to be checked differently... + diffarray = np.diff(data['Latitude'], axis=2) + if np.all(diffarray == diffarray[0, 0, 0]): + lat = ncfile.createVariable('lat', np.float64, ('lat')) + lat[:] = np.rad2deg(data['Latitude'][0, :, 0]) + lat.units = 'degrees_north' + lat.long_name = 'Latitude' + + if np.all(data['Altitude'][:, 0, 0] == data['Altitude'].T): + alt = ncfile.createVariable('z', np.float64, ('z')) + alt[:] = data['Altitude'][:, 0, 0] / 1000 + alt.units = 'km' + alt.long_name = 'Altitude' + + # Then put the variables in + for varname in data['vars']: + unit = None + newname = variables.get_short_names([varname])[0] + thisvar = ncfile.createVariable(newname, np.float64, + ('time', 'lon', 'lat', 'z')) + thisvar[0, :, :, :] = data[varname].T + if 'V' in newname: + unit = 'm/s' + elif '[' in varname: + unit='/m3' + elif 'Temp' in varname: + unit = 'K' + if unit: + ncfile[newname].units = unit + + ncfile[newname].long_name = variables.get_long_names([varname])[0] + + return + +def append_netcdf(filename, data, isVerbose): + + if isVerbose: + print(" --> file already found. appending...") + + with Dataset(filename, mode='a', format='NETCDF4') as ncfile: + time = ncfile['time'] + + reftime = datetime.datetime.strptime(time.units.split("since ")[-1], "%Y-%m-%d") + time[len(time)] = (data["time"] - reftime).total_seconds() + + for varname in data['vars']: + newname = variables.get_short_names([varname])[0] + ncfile[newname][-1, :, :, :] = data[varname].T + + return + + +def write_to_netcdf(file, data, combine=False, runname='', isVerbose=False): + """ + Dispatcher for writing/appending netCDFs + + inputs: + file (str): file name (that the bin would have been written to). Used to + determine if the data is 2D/3D & whether we need to drop ghost cells + data (dict): The gitm outputs. + runname (str, optional): name to add to processed files. output format is: + 'runname_3DALL.nc', or if no runname is given its just '3DALL.nc' + isVerbose (bool): whether to print extra info. + + """ + + if combine: + file = file.split('_')[0] + '.nc' + if runname: + file = runname + '_' + file + else: + file = file.replace('bin', 'nc') + + if file.startswith('1D'): + raise ValueError("Cannot write netcdf files for 1D outputs yet!") + + if (isVerbose): + print(' -> Writing NetCDF for: ', file, " to:", runname) + + if os.path.exists(file) and combine: + append_netcdf(file, data, isVerbose) + else: + create_netcdf(file, data, isVerbose) + # ---------------------------------------------------------------------------- # # ---------------------------------------------------------------------------- @@ -151,7 +288,8 @@ def delete_files(header, isVerbose = False): def read_header(headerFile, isVerbose = False): - print(' --> Reading file : ', headerFile) + if (isVerbose): + print(' --> Reading file : ', headerFile) fpin = open(headerFile, 'r') lines = fpin.readlines() fpin.close() @@ -298,11 +436,12 @@ def remove_files(header, isVerbose = False): # # ---------------------------------------------------------------------------- -def process_one_file(header, isVerbose = False): +def process_one_file(header, isVerbose = False, dowrite=True, + write_nc=False, combine=False, runname=''): fileOut = header.replace('.header','.bin') - print('Processing : ', header) + print(' -> Processing : ', header) headerInfo = read_header(header, isVerbose = isVerbose) fpin = open(header, 'r') @@ -362,11 +501,23 @@ def process_one_file(header, isVerbose = False): iLonStart:iLonEnd] iBlock += 1 - write_gitm_file(fileOut, data, isVerbose = isVerbose) + if dowrite: + if write_nc: + if canWriteCDF: + write_to_netcdf(fileOut, data, runname=runname, combine=combine, + isVerbose=isVerbose) + else: + raise ImportError("Cant import netCDF4") + else: # default !! + write_gitm_file(fileOut, data, isVerbose = isVerbose) + return + + # return data if dowrite is false (for debugging) return data -def post_process_gitm(dir, doRemove, isVerbose = False): +def post_process_gitm(dir, doRemove, isVerbose = False, + write_nc=False, combine=False, runname=''): # Get into the correct directory for processing processDir = dir @@ -374,16 +525,18 @@ def post_process_gitm(dir, doRemove, isVerbose = False): print('Processing directory doesnt exist: ', processDir) print('Make sure to put in a valid -dir= ') exit() - # Move into the UA/data directory (required by PostGITM.exe) + # Move into the UA/data directory if (isVerbose): print('Moving into processing directory : ', processDir) cwd = os.getcwd() os.chdir(processDir) # Get list of header files to process: - headers = glob('*.header') + headers = sorted(glob('*.header')) if (isVerbose): print('Found %i files to process' % len(headers)) + elif len(headers) == 0: + print(" -> Did not find any files to process.") # Process each single header: for head in headers: @@ -391,7 +544,18 @@ def post_process_gitm(dir, doRemove, isVerbose = False): if (isVerbose): print(f' --> Processing {head}') - data = process_one_file(head, isVerbose = isVerbose) + if os.path.exists("../../PostGITM.exe"): + if write_nc: + raise ValueError( + "Cannot use PostGITM and netCDF at the same time, yet." + "\n >> either remove PostGITM.exe or disable -nc option") + # Check if we can use the old postprocessor. it's faster. + # Pipe the header filename into PostGITM.exe + run(f"echo {head} | ../../PostGITM.exe ", check=True, shell=True) + else: + process_one_file(head, isVerbose=isVerbose, + write_nc=write_nc, combine=combine, runname=runname) + if (doRemove): remove_files(head, isVerbose = isVerbose) diff --git a/srcPython/plot_drivers.py b/srcPython/plot_drivers.py index b95ee0d9..58b8dd6c 100755 --- a/srcPython/plot_drivers.py +++ b/srcPython/plot_drivers.py @@ -1,13 +1,15 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import re import datetime as dt import numpy as np import matplotlib.pyplot as plt import matplotlib.dates as dates +import argparse, os from swmf_imf import * from read_ae import * +from dst import * #------------------------------------------------------------------------------ # Get closest day boundary @@ -47,72 +49,160 @@ def plot_day_boundaries(ax, times): ax.xaxis.set_major_formatter(dates.DateFormatter('%d-%H')) return -imfFile = 'imf.dat' -aeFile = 'ae_20110610.txt' - -imf = read_swmf_file(imfFile) -ae = read_ae(aeFile) - -fig = plt.figure(figsize = (7,10)) -plt.rcParams.update({'font.size': 14}) - -zeros = np.array(imf["bz"]) * 0.0 - -nY = 4 -ax = [] - -xStart = 0.15 -xSize = 0.81 -ySize = 0.19 -yGap = 0.04 -yEnd = 0.95 - -iY = 1 -ax.append(fig.add_subplot(nY*100 + 10 + iY)) -yStart = yEnd - ySize * iY - yGap * (iY-1) -ax[-1].set_position([xStart, yStart, xSize, ySize]) - -ax[-1].plot(imf["times"], imf["bz"]) -ax[-1].plot(imf["times"], zeros, 'k:') -ax[-1].set_ylabel('(a) IMF Bz (nT)') -ax[-1].set_title('IMF, Solar Wind, and AE Drivers for GITM') -plot_day_boundaries(ax[-1], imf["times"]) - -iY = 2 -ax.append(fig.add_subplot(nY*100 + 10 + iY)) -yStart = yEnd - ySize * iY - yGap * (iY-1) -ax[-1].set_position([xStart, yStart, xSize, ySize]) -ax[-1].plot(imf["times"], imf["by"]) -ax[-1].plot(imf["times"], zeros, 'k:') -ax[-1].set_ylabel('(b) IMF By (nT)') -plot_day_boundaries(ax[-1], imf["times"]) - -iY = 3 -ax.append(fig.add_subplot(nY*100 + 10 + iY)) -yStart = yEnd - ySize * iY - yGap * (iY-1) -ax[-1].set_position([xStart, yStart, xSize, ySize]) -ax[-1].plot(imf["times"], imf["vx"]) -ax[-1].set_ylabel('(c) SW Vx (km/s)') -plot_day_boundaries(ax[-1], imf["times"]) - -iY = 4 -ax.append(fig.add_subplot(nY*100 + 10 + iY)) -yStart = yEnd - ySize * iY - yGap * (iY-1) -ax[-1].set_position([xStart, yStart, xSize, ySize]) -ax[-1].plot(ae["time"], ae["ae"]) -ax[-1].set_ylabel('(d) AE (nT)') -ax[-1].set_ylim(0.0, np.max(ae["ae"])*1.05) - -plot_day_boundaries(ax[-1], imf["times"]) - -mint = np.min(imf["times"]) -maxt = np.max(imf["times"]) - -sTime = mint.strftime('%b %d, %Y %H:%M UT') + ' - ' + \ - maxt.strftime('%b %d, %Y %H:%M UT') -ax[-1].set_xlabel(sTime) - -plotfile = imf["times"][0].strftime('drivers%Y%m%d.png') -fig.savefig(plotfile) -plt.close() + +def main(imf=None, ae=None, dst=None): + """ + Makes plots of IMF and/or AE + + inputs: + + imf: returned from swmf_imf.read_swmf_file() + ae: returned from read_ae.readae() + + Outputs: + nothing + + A plot is created called 'driversYYYYMMDD.png' (min date given) + + """ + + fig = plt.figure(figsize = (7,10)) + nY = 4 + if imf is not None: + zeros = np.array(imf["bz"]) * 0.0 + elif ae is not None: + zeros = np.array(ae["ae"]) * 0.0 + else: + raise ValueError("Neither AE nor IMF were provided!") + + if dst is not None: + nY = nY + 1 + + plt.rcParams.update({'font.size': 14}) + + ax = [] + + xStart = 0.15 + xSize = 0.81 + + yGap = 0.04 + yEnd = 0.95 + + ySize = (yEnd - 0.06 - yGap * (nY-1)) / nY + + iY = 0 + + if imf is not None: + iY += 1 + ax.append(fig.add_subplot(nY*100 + 10 + iY)) + yStart = yEnd - ySize * iY - yGap * (iY-1) + ax[-1].set_position([xStart, yStart, xSize, ySize]) + + ax[-1].plot(imf["times"], imf["bz"]) + ax[-1].plot(imf["times"], zeros, 'k:') + ax[-1].set_ylabel('(a) IMF Bz (nT)') + ax[-1].set_title('IMF, Solar Wind, and AE Drivers for GITM') + plot_day_boundaries(ax[-1], imf["times"]) + + iY += 1 + ax.append(fig.add_subplot(nY*100 + 10 + iY)) + yStart = yEnd - ySize * iY - yGap * (iY-1) + ax[-1].set_position([xStart, yStart, xSize, ySize]) + ax[-1].plot(imf["times"], imf["by"]) + ax[-1].plot(imf["times"], zeros, 'k:') + ax[-1].set_ylabel('(b) IMF By (nT)') + plot_day_boundaries(ax[-1], imf["times"]) + + iY += 1 + ax.append(fig.add_subplot(nY*100 + 10 + iY)) + yStart = yEnd - ySize * iY - yGap * (iY-1) + ax[-1].set_position([xStart, yStart, xSize, ySize]) + ax[-1].plot(imf["times"], imf["vx"]) + ax[-1].set_ylabel('(c) SW Vx (km/s)') + plot_day_boundaries(ax[-1], imf["times"]) + mint = np.min(imf["times"]) + maxt = np.max(imf["times"]) + + if ae is not None: + iY += 1 + ax.append(fig.add_subplot(nY*100 + 10 + iY)) + yStart = yEnd - ySize * iY - yGap * (iY-1) + ax[-1].set_position([xStart, yStart, xSize, ySize]) + ax[-1].plot(ae["time"], ae["ae"]) + ax[-1].set_ylabel('(d) AE (nT)') + ax[-1].set_ylim(0.0, np.max(ae["ae"])*1.05) + + plot_day_boundaries(ax[-1], ae["time"]) + if (np.min(ae["time"]) > mint): + mint = np.min(ae["time"]) + if (np.max(ae["time"]) < maxt): + maxt = np.max(ae["time"]) + + if dst is not None: + iY += 1 + ax.append(fig.add_subplot(nY*100 + 10 + iY)) + yStart = yEnd - ySize * iY - yGap * (iY-1) + ax[-1].set_position([xStart, yStart, xSize, ySize]) + ax[-1].plot(dst["times"], dst["dst"]) + ax[-1].set_ylabel('(e) Dst (nT)') + maxi = np.max([np.max(dst["dst"]) * 1.05, 0.0]) + mini = np.floor(np.min(dst["dst"])/100.0) * 100.0 + ax[-1].set_ylim(mini, maxi) + plot_day_boundaries(ax[-1], dst["times"]) + zeros = np.array(dst["dst"]) * 0.0 + ax[-1].plot(dst["times"], zeros, 'k:') + + sTime = mint.strftime('%b %d, %Y %H:%M UT') + ' - ' + \ + maxt.strftime('%b %d, %Y %H:%M UT') + ax[-1].set_xlabel(sTime) + for iY in range(nY): + ax[iY].set_xlim(mint, maxt) + + plotfile = mint.strftime('drivers%Y%m%d.png') + print('-> Writing: ', plotfile) + fig.savefig(plotfile) + plt.close() + + +def parse_args(): + parser = argparse.ArgumentParser( + description = 'Plot AE and IMF data') + + parser.add_argument('-imf', type=str, default='imf.txt', + help='Path to IMF file') + + parser.add_argument('-ae', type=str, default='ae.txt', + help='Path to AE file') + + parser.add_argument('-dst', \ + help='plot dst with drivers', \ + action="store_true") + + args = parser.parse_args() + + return args + + +if __name__ == '__main__': + + args = parse_args() + + if os.path.exists(args.imf): + imf = read_swmf_file(args.imf) + else: + imf = None + + if os.path.exists(args.ae): + ae = read_ae(args.ae) + else: + ae=None + + if (args.dst): + sTime = imf["times"][0].strftime('%Y-%m-%d') + print(sTime) + dst = get_dst(times = [sTime]) + else: + dst = None + + main(imf, ae, dst = dst) diff --git a/srcPython/plot_logfiles.py b/srcPython/plot_logfiles.py index 34758fcf..28c21684 100755 --- a/srcPython/plot_logfiles.py +++ b/srcPython/plot_logfiles.py @@ -27,10 +27,61 @@ def get_args_timeline(): parser.add_argument('filelist', nargs='+', \ help = 'list files to use for generating plots') + parser.add_argument('-gitm', \ + action='store_true', default = False, \ + help = 'GITM log file') + + parser.add_argument('-start', default = '0000', \ + help = 'start date as YYYYMMDD[.HHMM]') + parser.add_argument('-end', default = '0000', \ + help = 'end date as YYYYMMDD[.HHMM]') + args = parser.parse_args() return args +# ---------------------------------------------------------------------- +# convert a yyyymmdd.hhmm string to date time +# ---------------------------------------------------------------------- + +def convert_time(sTime): + + yTime = sTime[0:4] + mo = sTime[4:6] + da = sTime[6:8] + + if (len(sTime) >= 11): + hr = sTime[9:11] + if (len(sTime) >= 13): + mi = sTime[11:13] + else: + mi = '00' + else: + hr = '00' + mi = '00' + + daTime = dt.datetime(int(yTime), int(mo), int(da), int(hr), int(mi), 0) + diTime = { + 0: [yTime, ' year'], + 1: [mo, ' month'], + 2: [da, ' day'], + 3: [hr, ' hour'], + 4: [mi, ' minute'], + 5: ['00', ' second'] + } + return daTime, diTime + +# ---------------------------------------------------------------------- +# Find closest time, given an array of datetimes and a datetime to find +# ---------------------------------------------------------------------- + +def find_closest_time(timeArray, timeToFind): + deltas = [] + for time in timeArray: + deltas.append((timeToFind - time).total_seconds()) + iTime_ = np.argmin(np.abs(deltas)) + return iTime_ + # ---------------------------------------------------------------------- # Read file # ---------------------------------------------------------------------- @@ -108,6 +159,67 @@ def read_timeline_file(file): return data +# ---------------------------------------------------------------------- +# Read GITM Run log file +# GITM log files have a specific (old) format with a header that can +# basically be ignored, and you just have to look for the #START +# The variables are the line after that and then the data starts. +# time lines include: +# iStep yyyy mm dd hh mm ss ms data1 data2 .... +# ---------------------------------------------------------------------- + +def read_gitm_log_file(file): + + data = {"times" : [], + "vars": [], + "integral" : 'values', + "file": file, + "alt": 0} + + fpin = open(file, 'r') + + lines = fpin.readlines() + + iStart = 0 + iEnd = len(lines) + iLine = iStart + + while (iLine < iEnd): + line = lines[iLine] + + m = re.match(r'#START',line) + if m: + iLine += 1 + aline = lines[iLine].split() + data["vars"] = aline[8:] + iStart = iLine + 1 + break + + iLine += 1 + + nVars = len(data['vars']) + nTimes = iEnd - iStart + allValues = np.zeros([nVars, nTimes]) + for i in range(iStart, iEnd): + aline = lines[i].split() + year = int(aline[1]) + month = int(aline[2]) + day = int(aline[3]) + hour = int(aline[4]) + minute = int(aline[5]) + second = int(aline[6]) + t = dt.datetime(year, month, day, hour, minute, second) + + data["times"].append(t) + for iVar in range(nVars): + allValues[iVar, i - iStart] = float(aline[8 + iVar]) + + data['values'] = allValues + + return data + + + # ---------------------------------------------------------------------- # match filename with colors and linestyles # ---------------------------------------------------------------------- @@ -190,6 +302,12 @@ def assign_file_to_color(file): line = 'dashed' label = 'FTA Model' + m = re.match(r'swmf', file) + if m: + color = 'blue' + line = 'dashdot' + label = 'SWMF Driven' + m = re.match(r'ae', file) if m: color = 'plum' @@ -229,20 +347,57 @@ def assign_file_to_color(file): nFiles = len(args.filelist) nVars = len(args.vars) - + + useStartTime = False + useEndTime = False + if (args.start != '0000'): + startTime, dummy = convert_time(args.start) + useStartTime = True + print(' -> startTime set to : ', startTime) + if (args.end != '0000'): + endTime, dummy = convert_time(args.end) + useEndTime = True + print(' -> endTime set to : ', endTime) + fig = plt.figure(figsize = (10,10)) ax = fig.add_subplot(111) for file in args.filelist: - print("Reading file : ",file) - data = read_timeline_file(file) - + print("Reading file : ", file) + if (args.gitm): + data = read_gitm_log_file(file) + else: + data = read_timeline_file(file) + if (not useStartTime): + if (file == args.filelist[0]): + startTime = data["times"][0] + else: + if (data["times"][0] < startTime): + startTime = data["times"][0] + if (not useEndTime): + if (file == args.filelist[0]): + endTime = data["times"][-1] + else: + if (data["times"][-1] > endTime): + endTime = data["times"][-1] + for iVar in args.vars: if (nFiles > 1): - color,line,label = assign_file_to_color(file) - if (nVars > 1): - color,line,label = assign_var_to_color(data['vars'][iVar]) - + color, line, label = assign_file_to_color(file.lower()) + if (nVars > 1): + label = data['vars'][iVar] + ' (' + label + ')' + if (iVar == args.vars[0]): + line = 'solid' + #else: + # line = 'dashed' + else: + fileColor, fileLine, fileLabel = assign_file_to_color(file.lower()) + color, line, label = assign_var_to_color(data['vars'][iVar]) + print(fileLabel, ' -> ', label) + if (label == 'GITM'): + label = label + '(' + fileLabel + ')' + print('Label Changed : ', label) + print(label) ax.plot(data["times"], data["values"][iVar], label = label, color = color, linestyle = line, linewidth = 2.0) @@ -253,7 +408,75 @@ def assign_file_to_color(file): ax.set_ylabel(ytitle) ax.legend() + ax.set_xlim(startTime, endTime) + sTime = startTime.strftime('%b %d, %Y %H:%M UT') + ' - ' + \ + endTime.strftime('%b %d, %Y %H:%M UT (Hours)') + ax.set_xlabel(sTime) + + if (nFiles == 1): + iStart_ = find_closest_time(data["times"], startTime) + iEnd_ = find_closest_time(data["times"], endTime) + + print('Calculating Statistics between start and end indices :', iStart_, iEnd_) + print(' --> Start Time : ', data["times"][iStart_]) + print(' --> End Time : ', data["times"][iEnd_]) + iRef = args.vars[0] + var0 = data['vars'][iRef] + for iVar in args.vars[1:]: + var1 = data['vars'][iVar] + print(' -> Comparing variables : ', var0, ' (ref) to ', var1) + + vals0 = data["values"][iRef][iStart_ : iEnd_] + vals1 = data["values"][iVar][iStart_ : iEnd_] + diff = vals1 - vals0 + + ratio_ave = np.mean(data["values"][iVar][iStart_ : iEnd_]) / \ + np.mean(data["values"][iRef][iStart_ : iEnd_]) + min1 = np.min(data["values"][iVar][iStart_ : iEnd_]) + max1 = np.max(data["values"][iVar][iStart_ : iEnd_]) + min0 = np.min(data["values"][iRef][iStart_ : iEnd_]) + max0 = np.max(data["values"][iRef][iStart_ : iEnd_]) + range1 = (max1 - min1) + range0 = (max0 - min0) + ratio_max = max1 / max0 + ratio_range = range1 / range0 + + mean_diff = np.mean(vals1 - vals0) + nrmse = np.sqrt(np.mean(diff**2)) / (max0 - min0) + pe = 1.0 - np.sqrt(np.mean(diff**2)) / np.sqrt(np.mean(vals0**2)) + + sRatioMeans = 'Ratio of means : %4.2f' % ratio_ave + sRatioMaxs = 'Ratio of maxes : %4.2f' % ratio_max + sRatioRanges = 'Ratio of ranges : %4.2f' % ratio_range + sMeanDiff = 'Mean Difference : %10.4e' % mean_diff + sNrms = 'Normalized RMSE : %4.2f' % nrmse + sPE = 'Prediction Eff. : %5.2f' % pe + print(' -> Ratio of means : ', ratio_ave) + print(' -> Ratio of maxs : ', ratio_max) + print(' -> Ratio of ranges : ', ratio_range) + print(' -> Mean Difference : ', mean_diff) + print(' -> nrmse : ', nrmse) + print(' -> pe : ', pe) + + if (len(args.vars) == 2): + mini = np.min([min1, min0]) + maxi = np.max([max1, max0]) + r = maxi - mini + mini = mini - 0.15 * r + maxi = maxi + 0.02 * r + deltaT = (data["times"][iEnd_] - data["times"][iStart_]).total_seconds() + t10 = data["times"][iStart_] + dt.timedelta(seconds = deltaT * 0.1) + t40 = data["times"][iStart_] + dt.timedelta(seconds = deltaT * 0.4) + ax.set_ylim(mini, maxi) + ax.text(t10, mini + 0.01 * r, sRatioMeans) + ax.text(t10, mini + 0.05 * r, sRatioMaxs) + ax.text(t10, mini + 0.09 * r, sRatioRanges) + ax.text(t40, mini + 0.01 * r, sMeanDiff) + ax.text(t40, mini + 0.05 * r, sNrms) + ax.text(t40, mini + 0.09 * r, sPE) + plotfile = args.plotfile print('writing : ',plotfile) fig.savefig(plotfile) plt.close() + diff --git a/srcPython/post_process.py b/srcPython/post_process.py index 9d06e187..ffca69b4 100755 --- a/srcPython/post_process.py +++ b/srcPython/post_process.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import argparse import os @@ -7,7 +7,7 @@ from pGITM import * from datetime import datetime -IsVerbose = True +IsVerbose = False DoRm = True # ---------------------------------------------------------------------- @@ -16,8 +16,11 @@ def parse_args_post(): - parser = argparse.ArgumentParser(description = - 'Post process and move model results') + parser = argparse.ArgumentParser( + description = "Post process and (optionally) move model results.\n"+ + "- This functions similar to pGITM.py, but can copy files to\n"+ + " a remote location, or postprocess files as they are created.", + formatter_class=argparse.RawTextHelpFormatter) parser.add_argument('-remotefile', help = 'File that contains info. about remote system', default = 'remote') @@ -31,19 +34,19 @@ def parse_args_post(): default = 'none') parser.add_argument('-dir', - help = 'remote directory to use', + help = 'remote directory to use (default none)', default = 'none') parser.add_argument('-sleep', - help = 'how long to sleep between loops', + help = 'how long to sleep between loops in seconds, (default 300)', default = 300, type = int) parser.add_argument('-totaltime', - help = 'specify how long to run in total (in hours)', - default = 24, type = int) - - parser.add_argument('-q', - help = 'Run with verbose turned off', + help = 'specify how long to run in total in hours, (default 0 - only run once)', + default = 0, type = int) + + parser.add_argument('-v', '--verbose', + help = 'Run with verbose', action = 'store_true') parser.add_argument('-norm', @@ -53,7 +56,20 @@ def parse_args_post(): parser.add_argument('-tgz', help = "tar and zip raw GITM file instead of process", action = 'store_true') + + parser.add_argument('-nc', action = 'store_true', + help = "Postprocess to netCDF files instead on '.bin'?") + parser.add_argument('--combine', action='store_true', + help="If processing to netCDF, we can combine each timestep to a" + " single file per output type. (ex: 3DALL.nc, etc.). " + "Will not work without -nc or if using remote.") + + parser.add_argument('--runname', type=str, default='', help= + "When combining, this is prepended to the output type in the " + "resulting files: '[runname]_3DALL.nc'. Default is no descriptor.") + + args = parser.parse_args() return args @@ -396,7 +412,9 @@ def transfer_model_output_files(user, server, dir): # Post process and then transfer files once: # ---------------------------------------------------------------------- -def do_loop(doTarZip, user, server, dir, IsRemote): +def do_loop(doTarZip, user, server, dir, IsRemote, + write_nc=False, combine=False, runname='', # For writing outputs to netCDF + ): DidWork = True @@ -422,10 +440,17 @@ def do_loop(doTarZip, user, server, dir, IsRemote): if (doTarZip): DidWork = tar_and_zip_gitm() else: + # Default should be UA/data processDir = 'UA/data' - DidWork = post_process_gitm(processDir, DoRm, isVerbose = IsVerbose) - #DidWork = post_process_gitm() - + if (not os.path.exists(processDir)): + # Maybe we are in the UA directory? + processDir = 'data' + if (not os.path.exists(processDir)): + # Maybe we are already in the data directory??? + processDir = '.' + DidWork = post_process_gitm(processDir, DoRm, isVerbose = IsVerbose, + write_nc=write_nc, combine=combine, runname=runname) + # 4 - Check if remote data directory exists, make it if it doesn't: data_remote = '/data' if (IsRemote and DidWork): @@ -477,10 +502,24 @@ def load_remote_file(args): # make local variables for arguments: doTarZip = args.tgz - IsVerbose = not args.q + IsVerbose = args.verbose if (args.norm): DoRm = False + # Sanity check netCDF-related arguments... + if args.nc or args.combine or (args.runname != ''): + if not args.nc: + raise ValueError(f"Combine and Runname can only be used with NetCDF files!") + if (args.runname != '') and not args.combine: + print(f"Using runname '{args.runname}' and combining") + args.combine = True + # For compatibility, make sure we can import PyITM if we're using netcdf files + try: + import pyitm + except ImportError: + raise ImportError("\n>> PyITM is required for NetCDF post-processing!\n" + " It is available at https://github.com/GITMCode/PyITM.git") + # Check if stop file exists: check_for_stop_file(delete = True) @@ -490,9 +529,15 @@ def load_remote_file(args): while DidWork: # load remote file every iteration so we can change it if needed: IsRemote, user, server, dir = load_remote_file(args) - print('Move files to remote system? ', IsRemote) - - DidWork = do_loop(doTarZip, user, server, dir, IsRemote) + if (IsVerbose): + print('Move files to remote system? ', IsRemote) + print('Process into netCDF files? ', args.nc) + if IsRemote and args.nc and args.combine: + raise ValueError( + "The remote transfer & netcdf combine options cannot be used together") + + DidWork = do_loop(doTarZip, user, server, dir, IsRemote, + args.nc, args.combine, args.runname) if (DidWork): # Check if stop file exists: stopCheck = check_for_stop_file() @@ -504,7 +549,11 @@ def load_remote_file(args): currentTime = datetime.now() dt = ((currentTime - startTime).total_seconds())/3600.0 if (dt > args.totaltime): - print(" --> Stopping due to totaltime exceeded!") + if args.totaltime == 0: + # Different exit message for non-continuous runs + print(" -> All done!") + else: + print(" -> Stopping due to totaltime exceeded!") # want to break out of loop, so set loop breaking condition: DidWork = False diff --git a/srcPython/example_gitm_cindi_plot_script.py b/srcPython/python2/example_gitm_cindi_plot_script.py similarity index 100% rename from srcPython/example_gitm_cindi_plot_script.py rename to srcPython/python2/example_gitm_cindi_plot_script.py diff --git a/srcPython/gitm.py b/srcPython/python2/gitm.py similarity index 100% rename from srcPython/gitm.py rename to srcPython/python2/gitm.py diff --git a/srcPython/gitm_3D_global_plots.py b/srcPython/python2/gitm_3D_global_plots.py similarity index 100% rename from srcPython/gitm_3D_global_plots.py rename to srcPython/python2/gitm_3D_global_plots.py diff --git a/srcPython/gitm_alt_plots.py b/srcPython/python2/gitm_alt_plots.py similarity index 100% rename from srcPython/gitm_alt_plots.py rename to srcPython/python2/gitm_alt_plots.py diff --git a/srcPython/gitm_comparison_plots.py b/srcPython/python2/gitm_comparison_plots.py similarity index 100% rename from srcPython/gitm_comparison_plots.py rename to srcPython/python2/gitm_comparison_plots.py diff --git a/srcPython/gitm_diff_images.py b/srcPython/python2/gitm_diff_images.py similarity index 100% rename from srcPython/gitm_diff_images.py rename to srcPython/python2/gitm_diff_images.py diff --git a/srcPython/gitm_loc_rout.py b/srcPython/python2/gitm_loc_rout.py similarity index 100% rename from srcPython/gitm_loc_rout.py rename to srcPython/python2/gitm_loc_rout.py diff --git a/srcPython/gitm_movie_script.py b/srcPython/python2/gitm_movie_script.py similarity index 100% rename from srcPython/gitm_movie_script.py rename to srcPython/python2/gitm_movie_script.py diff --git a/srcPython/gitm_plot_rout.py b/srcPython/python2/gitm_plot_rout.py similarity index 100% rename from srcPython/gitm_plot_rout.py rename to srcPython/python2/gitm_plot_rout.py diff --git a/srcPython/gitm_sat_plots.py b/srcPython/python2/gitm_sat_plots.py similarity index 100% rename from srcPython/gitm_sat_plots.py rename to srcPython/python2/gitm_sat_plots.py diff --git a/srcPython/gitm_time.py b/srcPython/python2/gitm_time.py similarity index 100% rename from srcPython/gitm_time.py rename to srcPython/python2/gitm_time.py diff --git a/srcPython/load_files.py b/srcPython/python2/load_files.py similarity index 100% rename from srcPython/load_files.py rename to srcPython/python2/load_files.py diff --git a/srcPython/plot_3D_global.py b/srcPython/python2/plot_3D_global.py similarity index 100% rename from srcPython/plot_3D_global.py rename to srcPython/python2/plot_3D_global.py diff --git a/srcPython/plot_alt_profiles.py b/srcPython/python2/plot_alt_profiles.py similarity index 100% rename from srcPython/plot_alt_profiles.py rename to srcPython/python2/plot_alt_profiles.py diff --git a/srcPython/plot_stats.py b/srcPython/python2/plot_stats.py similarity index 100% rename from srcPython/plot_stats.py rename to srcPython/python2/plot_stats.py diff --git a/srcPython/read_files.py b/srcPython/python2/read_files.py similarity index 100% rename from srcPython/read_files.py rename to srcPython/python2/read_files.py diff --git a/srcPython/solar_rout.py b/srcPython/python2/solar_rout.py similarity index 100% rename from srcPython/solar_rout.py rename to srcPython/python2/solar_rout.py diff --git a/srcPython/write_fftcoeff_wpgitm.py b/srcPython/python2/write_fftcoeff_wpgitm.py similarity index 100% rename from srcPython/write_fftcoeff_wpgitm.py rename to srcPython/python2/write_fftcoeff_wpgitm.py diff --git a/srcPython/write_files.py b/srcPython/python2/write_files.py similarity index 100% rename from srcPython/write_files.py rename to srcPython/python2/write_files.py diff --git a/srcPython/saber_compare.py b/srcPython/saber_compare.py new file mode 100644 index 00000000..0d26c3f3 --- /dev/null +++ b/srcPython/saber_compare.py @@ -0,0 +1,2198 @@ +#!/usr/bin/env python + +# Script for comparing GITM outputs to TIMED/SABER data. + +# Top-level imports +import numpy as np +from astropy.utils.masked.function_helpers import datetime_as_string +from tensorboard.manager import start +import matplotlib.pyplot as plt +import sys, os, csv +from netCDF4 import Dataset +import xarray +from scipy.interpolate import InterpolatedUnivariateSpline, griddata +from datetime import datetime, timedelta +import pandas as pd +import aacgmv2 +import scipy.stats +from netCDF4 import Dataset +import argparse +import matplotlib +matplotlib.use('Qt5Agg') +from scipy.interpolate import interp1d, griddata +from scipy.interpolate import RegularGridInterpolator +import scipy.integrate as integ +from tqdm import tqdm +import pickle +from scipy.signal import savgol_filter +import plotly.graph_objects as go +from plotly.subplots import make_subplots +import plotly.io as pio +import time +import pdb #, kaleido, math, apexpy +from scipy.stats import linregress +# import warnings +# warnings.filterwarnings("error") +import pathlib +import seaborn as sns + +# ---------------------------------------------------------------------- +# Function to parse input arguments +# ---------------------------------------------------------------------- + +def parse_args(): + parser = argparse.ArgumentParser(description='Compare GITM NO profiles to SABER data.') + parser.add_argument('gitm_loc', metavar='gitm_directory', nargs=1, help='location of GITM outputs') + parser.add_argument('saber_loc', metavar='saber_directory', nargs=1, + help='location of SABER observations') + parser.add_argument('plot_type', metavar='plotting_information', nargs=1, help="The type of plot to " + "produce. Can be 'peak' for a " + "timeseries of peak NO cooling, " + "'integrated' for a timeseries of " + "height-integrated NO cooling, or " + "'both' for generating both.") + parser.add_argument('override', metavar='overwritting_cmd', nargs=1, help="Boolean argument that controls whether processed data is rewritten. Default value is False.", default=False) + args = parser.parse_args() + return args + +# ---------------------------------------------------------------------- +# Helper functions +# ---------------------------------------------------------------------- +def clean_saber(nitric_oxide_profile, altitude_values, region=[100, 250]): + "Clean SABER data corresponding to a NO volume emission rate altitude profile." + good_inds_altitude = np.where(altitude_values != -999.)[0] + altitude_subset = altitude_values[good_inds_altitude] + nitric_oxide_subset = nitric_oxide_profile[good_inds_altitude] + good_inds_nitric_oxide = np.where(nitric_oxide_subset > 0)[0] + altitude_subset_2 = altitude_subset[good_inds_nitric_oxide] + nitric_oxide_subset_2 = nitric_oxide_subset[good_inds_nitric_oxide] + # Fit an interpolator: + interp = InterpolatedUnivariateSpline(altitude_subset_2, nitric_oxide_subset_2, k=3) + # Application of the interpolation: + subset_length = len(np.where((altitude_values >= region[0]) & (altitude_values <= region[-1]))[0]) + altitude_range = np.linspace(region[0], region[1], num=subset_length) + NO_values = interp(altitude_range) + return NO_values, altitude_range + +def gitm_file_mean_profile(filename): + """ + Reads a single GITM NETCDF file (processed by Aaron Bukowski's code) and returns the mean altitude profile of NO + emission between 100 and 250 km. DOES NOT use any interpolation to fill in bad values, due to GITM data being fully + dense. + Parameters + ---------- + filename: str + Name of the GITM NETCDF4 file to read in. + Returns + ---------- + NO_prof: array + Mean NO emission rate values for the entire profile (index in lat and lon). + mean_altitude_prof: array + Altitude values for the profile. + """ + # Read in the GITM file: + info = Dataset(filename, "r") + # Compute the averaged NO cooling rate altitude profile: + mean_altitude_prof = np.asarray(info['alt']) + NO_cooling = np.asarray(info['NOCooling']) + # Convert the units of NO_prof from -K/s to W/m^3: + Cp = np.asarray(info['Cp']) + Rho = np.asarray(info['Rho']) + NO_prof = -1 * np.multiply(np.multiply(NO_cooling, Cp), Rho) + try: + obs_time = datetime.strptime(info['time'].units[11:].replace(' ', 'T'), "%Y-%m-%dT%H:%M:%S") + timedelta(seconds=int(info['time'][:][0]/86400)) + except: + obs_time = datetime.strptime(info['time'].units[11:].replace(' ', 'T'), "%Y-%m-%dT%H:%M:%S.%f") + timedelta( + seconds=int(info['time'][:][0] / 86400)) + + alt_inds = np.where((mean_altitude_prof >= 100) & (mean_altitude_prof <= 250))[0] + + return NO_prof[:,:, alt_inds], mean_altitude_prof[alt_inds], obs_time, np.asarray(info['lat']), np.asarray(info['lon']) + +def saber_file_mean_profile(filename): + """ + Reads a single SABER file and returns the mean altitude profile of NO emission between 100 and 250 km. Uses cubic + interpolation to fill in bad values in the profile. + Parameters + ---------- + filename: str + Name of the SABER NETCDF4 file to read in. + Returns + ------- + clean_mean_NO_prof: array + Mean NO emission rate values for the entire profile. + clean_mean_altitude_prof: array + Altitude values for the profile. + """ + # Read in the SABER file: + info = Dataset(filename, "r") + # Compute the averaged NO cooling rate altitude profile (both upper and lower regions): + mean_altitude_profile = np.mean(info.variables['tpaltitude'], axis=0) + mean_altitude_profile_top = np.mean(info.variables['tpaltitude_top'], axis=0) + mean_NO_profile = np.mean(info.variables['NO_ver_unfilt'], axis=0) + mean_NO_profile_top = np.mean(info.variables['NO_ver_top_unfilt'], axis=0) + # Combine the profiles together: + mean_alt_prof = np.flip(np.concatenate((mean_altitude_profile_top, mean_altitude_profile))) # We flip the result, since the altitudes in the file are arranged in descending order + mean_NO_prof = np.flip(np.concatenate((mean_NO_profile_top, mean_NO_profile))) + # Clean bad values (eliminate them and use cubic interpolation to fill them in); only consider the region between 100 and 250 km altitude (like Chand, et al. 2024): + clean_mean_NO_prof, clean_mean_altitude_prof = clean_saber(mean_NO_prof, mean_alt_prof, region=[100,250]) + + # Time values for the sounding measurements: + dates = np.array(info.variables['date']) # Date YYYY DDD + times = np.array(info.variables['time']) # Time in milliseconds since midnight. + meanDate = dates[len(dates)//2] + meanTime = np.nanmean(times) + observation_time = datetime.strptime(str(meanDate)[:4] + "-" + str(meanDate)[4:], "%Y-%j") + timedelta(seconds=meanTime*0.001) + + # Extract Geolocation Information for the Sounding Measurements: + mean_tplat = np.nanmean(info.variables['tplatitude']) + mean_tplat_top = np.nanmean(info.variables['tplatitude_top']) + mean_tplon = np.nanmean(info.variables['tplongitude']) + mean_tplon_top = np.nanmean(info.variables['tplongitude_top']) + obs_lat = np.mean([mean_tplat, mean_tplat_top]) + obs_lon = np.mean([mean_tplon, mean_tplon_top]) + + return clean_mean_NO_prof, clean_mean_altitude_prof, observation_time, obs_lat, obs_lon + +def saber_file_data(filename, **kwargs): + """ + Return the (cleaned) NO data contained in a single SABER file. + """ + # Read in the SABER file: + info = Dataset(filename, "r") + + # Time values for the sounding measurements: + dates = np.array(info.variables['date']) # Date YYYY DDD + times = np.array(info.variables['time']) # Time in milliseconds since midnight. + startDate = datetime.strptime(str(dates[0])[:4] + "-" + str(dates[0])[4:], "%Y-%j") + timedelta(seconds=times[0,0]*0.001) + # Make a 2D array of datetimes for the observations: + observation_times = np.zeros(times.shape, dtype=datetime) + sst = np.zeros(times.shape, dtype=datetime) + for i in range(times.shape[0]): + # Rows + for j in range(times.shape[1]): + # Columns: + if times[i,j] == -999.0: + observation_times[i, j] = np.nan + sst[i, j] = 0 + else: + tV = datetime.strptime(str(dates[i])[:4] + "-" + str(dates[i])[4:], "%Y-%j") + timedelta(seconds=times[i,j]*0.001) + dateRef = kwargs['dateRef'] + upperDateBoundary = dateRef + timedelta(hours=24) + if tV > upperDateBoundary: + observation_times[i, j] = np.nan + sst[i, j] = 0 + else: + observation_times[i, j] = datetime.strptime(str(dates[i])[:4] + "-" + str(dates[i])[4:], "%Y-%j") + timedelta(seconds=times[i,j]*0.001) + sst[i, j] = (observation_times[i, j] - startDate).total_seconds() + + ssc_r = sst.ravel() + smallDate = np.argmin(ssc_r) + bigDate = np.argmax(ssc_r) + smallDate_ = observation_times.ravel()[smallDate] + bigDate_ = observation_times.ravel()[bigDate] + + # Grab the data: + tp_alt = info.variables['tpaltitude'] + tp_alt_top = info.variables['tpaltitude_top'] + tp_lat = info.variables['tplatitude'] + tp_lat_top = info.variables['tplatitude_top'] + tp_lon = info.variables['tplongitude'] + tp_lon_top = info.variables['tplongitude_top'] + NO_data = info.variables['NO_ver_unfilt'] + NO_data_top = info.variables['NO_ver_top_unfilt'] + + # Arrange the data: + all_alts = np.hstack((np.array(tp_alt_top), np.array(tp_alt))) + all_lats = np.hstack((np.array(tp_lat_top), np.array(tp_lat))) + all_lons = np.hstack((np.array(tp_lon_top), np.array(tp_lon))) + all_NO_data = np.hstack((np.array(NO_data_top), np.array(NO_data))) * 0.1 # Convert NO cooling from ergs/cm^3/sec to W/m^3 + + # Clean the NO data: + # all_NO_data_clean = interp2d(all_NO_data) + + # Replace bad values with NaNs: + all_NO_data_na = all_NO_data.copy(); all_NO_data_na[all_NO_data_na == -9.9900002e+01] = np.nan + all_alts_na = all_alts.copy(); all_alts_na[all_alts_na == -999.0] = np.nan + all_lats_na = all_lats.copy(); all_lats_na[all_lats_na == -999.0] = np.nan + all_lons_na = all_lons.copy(); all_lons_na[all_lons_na == -999.0] = np.nan + + # Mask the bad values: + # all_NO_data_ma = np.ma.masked_where(all_NO_data == -999.0, all_NO_data) + # all_alts_ma = np.ma.masked_where(all_NO_data == -999.0, all_alts) + # all_lats_ma = np.ma.masked_where(all_NO_data == -999.0, all_lats) + # all_lons_ma = np.ma.masked_where(all_NO_data == -999.0, all_lons) + # all_observation_times_ma = np.ma.masked_where(observation_times == -999.0, observation_times) + # all_NO_data_ma = np.ma.masked_where(all_NO_data_na == np.nan, all_NO_data_na) + # all_alts_ma = np.ma.masked_where(all_NO_data_na == np.nan, all_alts_na) + # all_lats_ma = np.ma.masked_where(all_NO_data_na == np.nan, all_lats_na) + # all_lons_ma = np.ma.masked_where(all_NO_data_na == np.nan, all_lons_na) + # all_observation_times_ma = np.ma.masked_where(observation_times == np.nan, observation_times) + + # Truncation step - SABER data often contain values for the next day; EXCLUDE those: + # if kwargs: + # dateRef = kwargs['dateRef'] + # upperDateBoundary = dateRef + timedelta(hours=24) + # ss_dR = (upperDateBoundary - dateRef).total_seconds() + # boolean_array = np.zeros_like(sst, dtype=bool) + # for row_index in range(sst.shape[0]): + # for col_index in range(sst.shape[1]): + # if sst[row_index, col_index] > ss_dR: + # boolean_array[row_index, col_index] = False + # else: + # boolean_array[row_index, col_index] = True + + # Cleaning data: + all_NO_data_na_c = interp2d_join(all_NO_data_na, smooth=False) + + # Dealing with unusable data - if interp2d_join returns None, simply return None as well. + if all_NO_data_na_c is None: + pdb.set_trace() + return + else: + all_alts_na_c = interp2d_join(all_alts_na) + all_lats_na_c = interp2d_join(all_lats_na) + all_lons_na_c = interp2d_join(all_lons_na) + try: + observation_times_c = interp2d_join(observation_times, dataType=datetime) + if observation_times_c is None: + observation_times_c = interp2d_join(observation_times, dataType=datetime, impute=True) + except: + raise Exception + + # Return the data: + return all_alts_na_c, all_lats_na_c, all_lons_na_c, all_NO_data_na_c, observation_times_c, smallDate_, bigDate_ + +def interp2d_simple(arraylike, k=3, axis=-1): + """ + Performs (naive) interpolation for 2D data, using the InterpolatedUnivariateSpline class from scipy. + """ + if axis != -1: + arraylike = arraylike.T + + # Make a copy of the input data: + arr = np.zeros_like(arraylike) + + # Loop through each row (column) of the arraylike: + for i in range(arraylike.shape[0]): + current_line = arraylike[i, :] + # If there are NaNs in the line, isolate only those values that are non-NaNs: + good_indices = ~np.isnan(current_line) + bad_indices = np.isnan(current_line) + # Make no changes if ALL the values are good: + if len(current_line[good_indices]) == len(current_line): + arr[i, :] = current_line + else: + # Otherwise, proceed with interpolation: + if len(current_line[good_indices]) <= k: + # For lines that are ALL NaNs, do nothing (TODO: replace with bette strategy) + arr[i, :] = current_line + else: + # Construct an x-axis at the valid points: + all_locs = np.asarray([int(element) for element in np.linspace(0,len(current_line)-1, len(current_line))]) + good_locs = all_locs[good_indices] + bad_locs = all_locs[bad_indices] + # Fit a spline between the x-axis and the values at the valid points: + spl = InterpolatedUnivariateSpline(good_locs, current_line[good_indices], k=k) + # Using the spline, determine the missing data: + out = spl(bad_locs) + # Update the array: + arr[i, :] = current_line + j = 0 + for idx in bad_locs: + # If the interpolated value is larger than the peak cooling in the given profile, replace it with the + # MINIMUM cooling value in that given profile: + max_cooling = np.nanmax(arr[:, idx]) + if out[j] >= max_cooling: + arr[i, idx] = np.nanmin(arr[:, idx]) + else: + arr[i, idx] = out[j] + j += 1 + + # Sanity Check - plot the before and after images on the same color scale: + # g_vmin = np.nanmin([np.nanmin(arraylike), np.nanmin(arr)]) + # g_vmax = np.nanmax([np.nanmax(arraylike), np.nanmax(arr)]) + # fig, axs = plt.subplots(nrows=1, ncols=2, sharex=True, sharey=True) + # axs[0].imshow(arraylike, aspect='auto', vmin=g_vmin, vmax=g_vmax, cmap='viridis') + # pos = axs[1].imshow(arr, aspect='auto', vmin=g_vmin, vmax=g_vmax, cmap='viridis') + # fig.colorbar(pos, ax=axs[1]) + + return arr + +def interp2d_join(arraylike, smooth=True, dataType=None, impute=False): + # If dataType = datetime.datetime, convert everything to seconds: + if dataType: + new_array_like = np.zeros_like(arraylike, dtype=float) + baseDatetime = arraylike[0, 0] + for i in range(new_array_like.shape[0]): + for j in range(new_array_like.shape[1]): + try: + new_array_like[i, j] = (baseDatetime - arraylike[i, j]).total_seconds() + except: + new_array_like[i, j] = np.nan + arraylike = new_array_like + + if dataType and impute == True: + # Fill in the array with interpolated data, uniformly between the smallest and largest time values: + lowerBoundary = np.nanmin(arraylike) + upperBoundary = np.nanmax(arraylike) + imputedValues = np.linspace(lowerBoundary, upperBoundary, int(2*arraylike.size)) + arr = np.reshape(imputedValues, (arraylike.shape[0], int(2*arraylike.shape[1]))) + # Note: This approach assumes that the starting and ending date are VERY CLOSE (within minutes) of each other! + else: + # Make a copy of the input data: + arr = np.zeros_like(arraylike) + + # STANDARD PROCESSING + # Loop through each row of the arraylike: + for i in range(arraylike.shape[0]): + current_row = arraylike[i, :] + # Clip all NaN values: + current_row_clipped = current_row[~np.isnan(current_row)] + # Smooth the data in a 50 km window: + if smooth: + # df = pd.Series(current_row_clipped) + # c_y_ma = df.rolling(200, center=True).mean() + try: + c_y_ma = smart_roll(current_row_clipped, 200) + except: + # If this situation obtains, it is because the given row is ALL NaNs. We assume that there exist + # preceding rows not full of NaNs, and just linearly interpolate from those rows to the current one: + current_row_extrapolated = np.zeros_like(arr[0, :]) + for j in range(arr.shape[1]): + xvals = np.linspace(1, len(arr[:i-1, j]), num=len(arr[:i-1, j])) + try: + result = linregress(xvals, arr[:i-1, j]) + except: + # In this case, there are likely so many NaN values that the problem is likely intractible. We check if the number of NaN values exceeds half the number of values in the array. If so, processing this array is abandoned. + if arraylike[np.isnan(arraylike)].size >= int(arraylike.size/2): + print('More than half the values in this data are bad. Abandoning processing...') + return + else: + pdb.set_trace() + newResult = result.intercept + result.slope*(xvals[-1] + 1) + current_row_extrapolated[j] = newResult + # Then we perform the desired operation: + c_y_ma = smart_roll(current_row_extrapolated, 200) + i_d = c_y_ma + else: + i_d = current_row_clipped + # Extend the size of the data to 800 datapoints, using interp/extrap: + x = np.arange(len(i_d)) + try: + interpolator = interp1d( + x, i_d, + kind="linear", + fill_value="extrapolate", + assume_sorted=True, + ) + except: + raise Exception + # Perform the extrapolation: + if dataType: + x_new = np.linspace(0, 399, 400) + else: + x_new = np.linspace(0, 799, 800) + new_row = interpolator(x_new) + # Update the array: + arr[i, :] = new_row + + if dataType: + final_arraylike = np.zeros_like(arraylike, dtype=object) + for i in range(final_arraylike.shape[0]): + for j in range(final_arraylike.shape[1]): + final_arraylike[i, j] = baseDatetime + timedelta(seconds=arr[i, j]) + arr = final_arraylike + + return arr + +def smart_roll(u_d_arr, windowSize): + """ + Computes rolling average (arithmetic mean) for some 1D array or list and a specified windowsize. Performs + interpolation on the leading and trailing edge by default. + """ + + # Initial roll: + df = pd.Series(u_d_arr) + rolled = df.rolling(windowSize, center=True).mean() + # Leading window: + x = np.array([0, 1]) + leadingInterpolator = interp1d( + x, u_d_arr[[0, windowSize]], kind="linear", assume_sorted=True + ) + x_new = np.linspace(0, 1, windowSize) + leadingInterpVals = leadingInterpolator(x_new) + rolled[:windowSize] = leadingInterpVals + # Trailing window: + trailingInterpolator = interp1d( + x, u_d_arr[[-windowSize, -1]], kind="linear", assume_sorted=True + ) + trailingInterpVals = trailingInterpolator(x_new) + rolled[-windowSize:] = trailingInterpVals + + return rolled + +def movingAverage(arr, windowSize): + """ + Compute a moving average along a 1D array with a given window size. + """ + cumsum, moving_aves = ([0] + , []) + for i, x in enumerate(arr, 1): + cumsum.append(cumsum[i - 1] + x) + if i >= windowSize: + moving_ave = (cumsum[i] - cumsum[i - windowSize]) / windowSize + # can do stuff with moving_ave here + moving_aves.append(moving_ave) + return moving_aves + +def interp2d(arr, badVal=-999.0, smooth=True): + """ + Wrapper for interp1d used to interpolate 2D data to fill NaNs. Proceeds one row at a time and interpolates values + in each row; by default, extrapolates data outside the data range. + """ + arr = arr.copy() + if badVal: + arr[arr==badVal] = np.nan + + def interp_nans(y, x=None): + if x is None: + x = np.arange(len(y)) + nans = np.isnan(y) + interpolator = interp1d( + x[~nans], + y[~nans], + kind="linear", + fill_value="extrapolate", + assume_sorted=True, + ) + return interpolator(x) + + for i in range(arr.shape[0]): + current_y = arr[i, :] + if smooth: + # Take moving average in a 50 km window + df = pd.Series(current_y) + c_y_ma = df.rolling(200, center=True).mean() + i_d = c_y_ma + else: + i_d = current_y + # Interpolate over the (smoothed) data + result2 = interp_nans(i_d) + # Replace the bad values with the good ones: + current_y[np.isnan(current_y)] = result2[np.isnan(current_y)] + arr[i, :] = current_y + + return arr + +def gitmPlot(thermData, dateStr, latStr): + """ + Helper function to generate a NO altitude profile from GITM 3DTHM data. + :param thermData: + 3DTHM altitude profile data collected by the function 'gitm_saber_profile_comparison'. + :param dateStr: + A string describing the dates over which the profiles are being averaged. + :param latStr: str + A string describing what latitudinal region the data corresponds to. + :return meanProfile_u: numpy.ndarray + The mean altitude profile in the region under consideration. + :return meanAltitudes: numpy.ndarray + The mean altitudes to which the profile corresponds. + """ + profs = np.asarray([element[0] for element in thermData]) + mean_prof = np.mean(profs, axis=0) + # stddev = np.std(profs, axis=0) + alts = thermData[0][1] + + # Compute 95%CI bounds: + def conf_int(profile_data, confidence=0.95): + lb = [] + ub = [] + for i in range(profile_data.shape[1]): + a = 1.0 * np.array(profile_data[:, i]) + n = len(a) + m, se = np.mean(a), scipy.stats.sem(a) + h = se * scipy.stats.t.ppf((1 + confidence) / 2., n - 1) + lb.append(m - h) + ub.append(m + h) + return np.asarray(lb), np.asarray(ub) + + profile_lb, profile_ub = conf_int(profs) + + # Convert the emission rates from ergs/cm^3/s to nW/m^3: + meanProfile_u = mean_prof #/ (1e-6) / (1e7) * -1e9 + profile_lb_u = profile_lb #/ (1e-6) / (1e7) * -1e9 + profile_ub_u = profile_ub #/ (1e-6) / (1e7) * -1e9 + plt.figure() + plt.title(r'GITM NO Cooling (' + dateStr + '): ' + latStr) + plt.fill_betweenx(alts, profile_lb_u, profile_ub_u, where=profile_ub_u > profile_lb_u, color='b', + alpha=0.3) + plt.plot(meanProfile_u, alts, color='b') + plt.xlabel('NO Cooling (W/m$^3$)') # (ergs/cm$^3$/s)') + plt.ylabel('Altitude (km)') + plt.close() + + return meanProfile_u, profile_lb_u, profile_ub_u, alts + +def saberPlot(soundingData, dateStr, latStr): + """ + Helper function to generate a NO altitude profile from SABER sounding data. + :param soundingData: + Sounding data collected by the function 'gitm_saber_profile_comparison'. + :param dateStr: + A string describing the dates over which the profiles are being averaged. + :param latStr: str + A string describing what latitudinal region the data corresponds to. + :return meanProfile_u: numpy.ndarray + The mean altitude profile in the region under consideration. + :return meanAltitudes: numpy.ndarray + The mean altitudes to which the profile corresponds. + """ + profs = [element[0] for element in soundingData] + alts = [element[1] for element in soundingData] + elementLength = min([len(element) for element in profs]) + profs_S = np.array([element[:elementLength] for element in profs]) + alts_S = np.array([element[:elementLength] for element in alts]) + meanProfile = np.mean(profs_S, axis=0) + meanAltitudes = np.mean(alts_S, axis=0) + profile_lb, profile_ub = conf_int(profs_S) + # Convert the emission rates from ergs/cm^3/s to nW/m^3: + meanProfile_u = meanProfile * 0.1 # / (1e-6) / (1e7) * 1e9 + profile_lb_u = profile_lb * 0.1 # / (1e-6) / (1e7) * 1e9 + profile_ub_u = profile_ub * 0.1 # / (1e-6) / (1e7) * 1e9 + # + plt.figure() + plt.title(r'SABER NO Cooling (' + dateStr + '): '+latStr) + plt.fill_betweenx(meanAltitudes, profile_lb_u, profile_ub_u, where=profile_ub_u>profile_lb_u, color='b', alpha=0.3) + plt.plot(meanProfile_u, meanAltitudes, color='b') + plt.xlabel('NO Cooling (W/m$^3$)') # (ergs/cm$^3$/s)') + plt.ylabel('Altitude (km)') + plt.close() + return meanProfile_u, profile_lb_u, profile_ub_u, meanAltitudes + +def compPlot_ci(saberSoundingData, gitmSoundingData, dateStr, latStr): + """ + Does the same thing as 'saberPlot' and 'gitmPlot', but takes BOTH SABER and GITM data and plots the mean profiles, + along with confidence bands. + """ + # SABER + profs_saber = [element[0] for element in saberSoundingData] + alts_saber = [element[1] for element in saberSoundingData] + elementLength_saber = min([len(element) for element in profs_saber]) + profs_S = np.array([element[:elementLength_saber] for element in profs_saber]) + alts_S = np.array([element[:elementLength_saber] for element in alts_saber]) + meanProfile_saber = np.mean(profs_S, axis=0) + meanAltitudes_saber = np.mean(alts_S, axis=0) + profile_lb, profile_ub = conf_int(profs_S) + # Convert the emission rates from ergs/cm^3/s to nW/m^3: + meanProfile_u_saber = meanProfile_saber * 0.1 # / (1e-6) / (1e7) * 1e9 + profile_lb_u_saber = profile_lb * 0.1 # / (1e-6) / (1e7) * 1e9 + profile_ub_u_saber = profile_ub * 0.1 # / (1e-6) / (1e7) * 1e9 + + # GITM + profs_gitm = [element[0] for element in gitmSoundingData] + alts_gitm = [element[1] for element in gitmSoundingData] + elementLength_gitm = min([len(element) for element in profs_gitm]) + profs_G = np.array([element[:elementLength_gitm] for element in profs_gitm]) + alts_G = np.array([element[:elementLength_gitm] for element in alts_gitm]) + meanProfile_gitm = np.nanmean(profs_G, axis=0) + meanAltitudes_gitm = np.nanmean(alts_G, axis=0) + profile_lb_gitm, profile_ub_gitm = conf_int(profs_G) + + plt.figure() + plt.title(r'NO Cooling (' + dateStr + '): ' + latStr) + plt.fill_betweenx(meanAltitudes_saber, profile_lb_u_saber, profile_ub_u_saber, where=profile_ub_u_saber > profile_lb_u_saber, color='b', + alpha=0.3) + plt.plot(meanProfile_u_saber, meanAltitudes_saber, color='b') + # + plt.fill_betweenx(meanAltitudes_gitm, profile_lb_gitm, profile_ub_gitm, + where=profile_ub_gitm > profile_lb_gitm, color='r', + alpha=0.3) + plt.plot(meanProfile_gitm, meanAltitudes_gitm, color='r') + plt.xlabel('NO Cooling (W/m$^3$)') # (ergs/cm$^3$/s)') + plt.ylabel('Altitude (km)') + plt.close() + # TODO: Save the figure... + + return + +def compPlot(gitmProfile, saberProfile, dateStr, latStr, latLabel): + """ + Helper function for taking outputs from gitmPlot and saberPlot and comparing the profiles together in the same + figure. This function return nothing but rather saves a figure to a default location. + :param gitmProfile: list + Output from gitmPlot; the outputs from that function are arranged into a list: [meanProfile_u, profile_lb_u, + profile_ub_u, alts] + :param saberProfile: list + Output from saberPlot; the outputs from that function are arranged into a list: [meanProfile_u, profile_lb_u, + profile_ub_u, meanAltitudes] + :param dateStr: + A string describing the dates over which the profiles are being averaged. + :param latStr: str + A string describing what latitudinal region the data corresponds to. + :param latLabel: str + A label describing the latitudinal region (i.e. 'Polar', 'Auroral', 'Midlatitude', 'Equatorial') + """ + plt.figure() + plt.title('NO Cooling ('+dateStr+'): '+latStr) + # SABER + plt.fill_betweenx(saberProfile[-1], saberProfile[1], saberProfile[2], where=saberProfile[2]>saberProfile[1], + color='b', alpha=0.3) + plt.plot(saberProfile[0], saberProfile[-1], color='b', label='SABER') + # GITM + plt.fill_betweenx(gitmProfile[-1], gitmProfile[1], gitmProfile[2], where=gitmProfile[2]>gitmProfile[1], color='r', alpha=0.3) + plt.plot(gitmProfile[0], gitmProfile[-1], color='r', label='GITM') + # Labels and Axes + plt.legend(loc='best') + plt.xlabel('NO Cooling (W/m$^3$)') + plt.ylabel('Altitude (km)') + # Save the figure: + date_str = dateStr[:10] + plt.savefig('gitmSaber_NO_compare_'+date_str+'_'+latLabel+'.png', dpi=300) + plt.close() + + return + +def gitm_saber_profile_comparison(gitm_data_dir, saveLoc): + """ + Given the location of where GITM run data has been stored for an arbitrary GITM simulation, (1) download TIMED/SABER + data during the same time period and (2) collect NO volume emission rates between GITM and SABER during the same + time period. The data can then be broken down into comparisons by latitude region and is output to a file so that + results between multiple runs can be compared. + :param gitm_data_dir: str + Location of where GITM simulation results are located (i.e. 'v10x20/UA/data') + :param saveLoc: str + The location where SABER data AND analysis output files will be placed. + :return saber_NO: numpy.ndarray + An array containing ALL the TIMED/SABER mean daily altitude profiles of NO emissions (per sounding). + All soundings taken by SABER over the interval in question are contained in this matrix. + :return saber_LOCS: numpy.ndarray + An array of the same shape (minus the altitudinal dimension) as 'saber_NO' but with geolocation information + for each sounding. + :return saber_TIMES: numpy.ndarray + An array with time values for the SABER soundings. + :return gitm_NO: numpy.ndarray + Contains the same NO emission profile information as 'saber_NO' but corresponding to GITM. + :return gitm_LOCS: numpy.ndarray + Contains the geolocation information for the NO emission profiles in GITM. + :return gitm_TIMES: numpy.ndarray + Contains the times corresponding to each GITM NO emission profile. + """ + # Grab the names of all the files in the GITM data directory : + filenames = os.listdir(gitm_data_dir) + validFilenames = [] + datetime_strs = [] + datetime_stamps = [] + for file_ in filenames: + if file_.endswith('.nc'): + validFilenames.append(file_) + datetime_strs.append( '20'+file_[1:3]+'-'+file_[3:5]+'-'+file_[5:7]+'T'+file_[8:10]+':'+file_[10:12]+':'+file_[12:14] ) + datetime_stamps.append( datetime.strptime(datetime_strs[-1], "%Y-%m-%dT%H:%M:%S" ) ) + # Arrange the files in chronological order: + ordering = np.argsort(np.asarray(datetime_stamps)) + orderedValidFilenames = np.asarray(validFilenames)[ordering] + orderedDatetimeStrs = np.asarray(datetime_strs)[ordering] + orderedDatetimeStamps = np.asarray(datetime_stamps)[ordering] + + # From the list of filenames, grab the starting and ending dates: + # startingFile = orderedValidFilenames[0] + # endingFile = orderedValidFilenames[-1] + startingTimeStr = orderedDatetimeStrs[0] + endingTimeStr =orderedDatetimeStrs[-1] + startingDatetime = orderedDatetimeStamps[0] # datetime.strptime('20' + startingTimeStr[1:3] + "-" + startingTimeStr[3:5] + "-" + startingTimeStr[5:7], "%Y-%m-%d") + timedelta(hours=int(startingTimeStr[8:10])) + timedelta(minutes=int(startingTimeStr[10:12])) + endingDatetime = orderedDatetimeStamps[-1] # datetime.strptime('20' + endingTimeStr[1:3] + "-" + endingTimeStr[3:5] + "-" + endingTimeStr[5:7], "%Y-%m-%d") + timedelta(hours=int(endingTimeStr[8:10])) + timedelta(minutes=int(endingTimeStr[10:12])) + if datetime.strftime(startingDatetime, "%Y-%m-%dT%H:%M:%S") == datetime.strftime(endingDatetime, "%Y-%m-%dT%H:%M:%S"): + titleStr = datetime.strftime(startingDatetime, "%Y-%m-%dT%H:%M:%S") + else: + titleStr = datetime.strftime(startingDatetime, "%Y-%m-%dT%H:%M:%S") + ' to ' + datetime.strftime(endingDatetime, "%Y-%m-%dT%H:%M:%S") + + gitmData = [] + id = 0 + for gitm_file in orderedValidFilenames: + current_NO_prof, current_altitude_prof, current_obs_time, current_obs_lat, current_obs_lon = gitm_file_mean_profile( + gitm_data_dir + gitm_file) + gitmData.append( + [current_NO_prof, current_altitude_prof, current_obs_time, current_obs_lat, current_obs_lon, current_obs_lat, + current_obs_lon]) + id += 1 + + # Compute the GITM profiles in latitudinal chunks (using the boundaries from Brandt and Ridley 2022 - doi:10.1029/2021SW002922): + print('Processing GITM data to obtain NO cooling profiles...') + # 1: Polar Region |MLAT| >= 80 + polar_inds = np.where(gitmData[0][-2] >= 80)[0] + polar_profs = [] + for gitmProfData in gitmData: + polar_profs.append( [np.mean(np.mean(gitmProfData[0][:, polar_inds, :], axis=0), axis=0), current_altitude_prof] ) + latStrPol = '$|\mathrm{MLAT}| \geq 80^{\degree}$' + meanPolarProfile_gitm, meanPolarProfile_gitm_lb, meanPolarProfile_gitm_ub, meanPolarAltitudes_gitm = gitmPlot(polar_profs, titleStr, latStrPol) + writeCSV(meanPolarProfile_gitm, meanPolarProfile_gitm_lb, meanPolarProfile_gitm_ub, meanPolarAltitudes_gitm, + source='GITM', label='Polar_' + titleStr, location=saveLoc[:-6]+'gitm/') + + # 2: Auroral Region 60 <= |MLAT| < 80 + auroral_inds = np.where((gitmData[0][-2] >= 60) & (gitmData[0][-2] < 80))[0] + auroral_profs = [] + for gitmProfData in gitmData: + auroral_profs.append([np.mean(np.mean(gitmProfData[0][:, auroral_inds, :], axis=0), axis=0), current_altitude_prof]) + latStrAur = '$60 \leq |\mathrm{MLAT}| < 80^{\degree}$' + meanAuroralProfile_gitm, meanAuroralProfile_gitm_lb, meanAuroralProfile_gitm_ub, meanAuroralAltitudes_gitm = gitmPlot( + auroral_profs, titleStr, latStrAur) + writeCSV(meanAuroralProfile_gitm, meanAuroralProfile_gitm_lb, meanAuroralProfile_gitm_ub, meanAuroralAltitudes_gitm, + source='GITM', label='Auroral_' + titleStr, location=saveLoc[:-6] + 'gitm/') + + # 3: Midlatitudes 30 <= |MLAT| < 60 + midlat_inds = np.where((gitmData[0][-2] >= 30) & (gitmData[0][-2] < 60))[0] + midlat_profs = [] + for gitmProfData in gitmData: + midlat_profs.append( + [np.mean(np.mean(gitmProfData[0][:, midlat_inds, :], axis=0), axis=0), current_altitude_prof]) + latStrMid = '$30 \leq |\mathrm{MLAT}| < 60^{\degree}$' + meanMidlatProfile_gitm, meanMidlatProfile_gitm_lb, meanMidlatProfile_gitm_ub, meanMidlatAltitudes_gitm = gitmPlot( + midlat_profs, titleStr, latStrMid) + writeCSV(meanMidlatProfile_gitm, meanMidlatProfile_gitm_lb, meanMidlatProfile_gitm_ub, meanMidlatAltitudes_gitm, + source='GITM', label='Midlatitudes_' + titleStr, location=saveLoc[:-6] + 'gitm/') + + # 4: Low Latitudes / Equatorial region |MLAT| < 30 + eq_inds = np.where(gitmData[0][-2] < 30)[0] + eq_profs = [] + for gitmProfData in gitmData: + eq_profs.append( + [np.mean(np.mean(gitmProfData[0][:, eq_inds, :], axis=0), axis=0), current_altitude_prof]) + latStrEq = '$|\mathrm{MLAT}| \leq 30^{\degree}$' + meanEqProfile_gitm, meanEqProfile_gitm_lb, meanEqProfile_gitm_ub, meanEqAltitudes_gitm = gitmPlot( + eq_profs, titleStr, latStrEq) + writeCSV(meanEqProfile_gitm, meanEqProfile_gitm_lb, meanEqProfile_gitm_ub, meanEqAltitudes_gitm, + source='GITM', label='Equatorial_' + titleStr, location=saveLoc[:-6] + 'gitm/') + + #################################################################################################################### + + # Download saber data between the starting and ending dates (inclusive): + pdb.set_trace() + here = pathlib.Path(__file__).parent.resolve() + saber_download_file_str = '../srcPython/saber_download.py' + saber_download_file = here.joinpath(saber_download_file_str) + pdb.set_trace() + cmd = 'python '+str(saber_download_file)+' '+str(startingDatetime)[:10].replace('-', '')+' '+str(endingDatetime)[:10].replace('-', '')+' '+saveLoc + os.system(cmd) + + # Read in the SABER data and generate the SABER data matrix and all other associated information: + dateList = np.asarray(pd.date_range(startingTimeStr[:-9], endingTimeStr[:-9], periods=(endingDatetime - startingDatetime).days+1).to_pydatetime()) + # np.asarray(pd.date_range('20' + startingTimeStr[1:3] + "-" + startingTimeStr[3:5] + "-" + startingTimeStr[5:7], + # '20' + endingTimeStr[1:3] + "-" + endingTimeStr[3:5] + "-" + endingTimeStr[5:7], periods=(endingDatetime - startingDatetime).days+1).to_pydatetime()) + saberData = [] + for date in dateList: + current_directory = saveLoc + str(date.year) + '/' + dateList[0].strftime('%j') + current_saberfiles = os.listdir(current_directory) + for saberfile in current_saberfiles: + current_NO_prof, current_altitude_prof, current_obs_time, current_obs_lat, current_obs_lon = saber_file_mean_profile(current_directory+'/'+saberfile) + out_lat, out_lon, out_r = aacgmv2.wrapper.convert_latlon(current_obs_lat, current_obs_lon, current_altitude_prof[0], current_obs_time) # TODO: DETERMINE IF AACGM IS ACTUALLY NEEDED + saberData.append([current_NO_prof, current_altitude_prof, current_obs_time, current_obs_lat, current_obs_lon, out_lat, out_lon, out_r]) + + # Compute the SABER profiles in latitudinal chunks (using the boundaries from Brandt and Ridley 2022 - doi:10.1029/2021SW002922): + # 1: Polar Region |MLAT| >= 80 + polarSoundings = [element for element in saberData if abs(element[-3])>=80] + + # 2: Auroral Region 60 <= |MLAT| < 80 + auroralSoundings = [element for element in saberData if ((abs(element[-3]) >= 60) & (abs(element[-3]) < 80))] + + # 3: Midlatitudes 30 <= |MLAT| < 60 + midlatitudeSoundings = [element for element in saberData if ((abs(element[-3]) >= 30) & (abs(element[-3]) < 60))] + + # 4: Low Latitudes / Equatorial region |MLAT| < 30 + equatorialSoundings = [element for element in saberData if abs(element[-3]) < 30] + + # Plots the SABER profiles (with confidence bounds)!! + # then, output the saber profile data (by latitudinal regions) individual .CSV files for each region: + if len(polarSoundings) > 0: + latStrPol = '$|\mathrm{MLAT}| \geq 80^{\degree}$' + meanPolarProfile, meanPolarProfile_lb, meanPolarProfile_ub, meanPolarAltitudes = saberPlot(polarSoundings, titleStr, latStrPol) + writeCSV(meanPolarProfile, meanPolarProfile_lb, meanPolarProfile_ub, meanPolarAltitudes, source='SABER', label='Polar_'+titleStr, location=saveLoc) + if len(auroralSoundings) > 0: + latStrAur = '$60 \leq |\mathrm{MLAT}| < 80^{\degree}$' + meanAuroralProfile, meanAuroralProfile_lb, meanAuroralProfile_ub, meanAuroralAltitudes = saberPlot(auroralSoundings, titleStr, latStrAur) + writeCSV(meanAuroralProfile, meanAuroralProfile_lb, meanAuroralProfile_ub, meanAuroralAltitudes, + source='SABER', label='Auroral_'+titleStr, location=saveLoc) + if len(midlatitudeSoundings) > 0: + latStrMid = '$30 \leq |\mathrm{MLAT}| < 60^{\degree}$' + meanMidlatitudeProfile, meanMidlatitudeProfile_lb, meanMidlatitudeProfile_ub, meanMidlatitudeAltitudes = saberPlot(midlatitudeSoundings, titleStr, latStrMid) + writeCSV(meanMidlatitudeProfile, meanMidlatitudeProfile_lb, meanMidlatitudeProfile_ub, meanMidlatitudeAltitudes, + source='SABER', label='Midlatitudes_'+titleStr, location=saveLoc) + if len(equatorialSoundings) > 0: + latStrEq = '$|\mathrm{MLAT}| \leq 30^{\degree}$' + meanEqProfile, meanEqProfile_lb, meanEqProfile_ub, meanEqAltitudes = saberPlot(equatorialSoundings, titleStr, latStrEq) + writeCSV(meanEqProfile, meanEqProfile_lb, meanEqProfile_ub, meanEqAltitudes, source='SABER', label='Equatorial_'+titleStr, location=saveLoc) + + #################################################################################################################### + + # Joint visualization; plots with GITM/SABER side-by-side or overlaid, in each latitudinal region (these plots are saved): + if len(polarSoundings) > 0: + compPlot( + [meanPolarProfile_gitm, meanPolarProfile_gitm_lb, meanPolarProfile_gitm_ub, meanPolarAltitudes_gitm], + [meanPolarProfile, meanPolarProfile_lb, meanPolarProfile_ub, meanPolarAltitudes], + titleStr, latStrPol, 'Polar') + if len(auroralSoundings) > 0: + compPlot( + [meanAuroralProfile_gitm, meanAuroralProfile_gitm_lb, meanAuroralProfile_gitm_ub, meanAuroralAltitudes_gitm], + [meanAuroralProfile, meanAuroralProfile_lb, meanAuroralProfile_ub, meanAuroralAltitudes], + titleStr, latStrAur, 'Auroral') + if len(midlatitudeSoundings) > 0: + compPlot([meanMidlatProfile_gitm, meanMidlatProfile_gitm_lb, meanMidlatProfile_gitm_ub, meanMidlatAltitudes_gitm], + [meanMidlatitudeProfile, meanMidlatitudeProfile_lb, meanMidlatitudeProfile_ub, meanMidlatitudeAltitudes], titleStr, latStrMid, 'Midlatitudes') + if len(equatorialSoundings) > 0: + compPlot([meanEqProfile_gitm, meanEqProfile_gitm_lb, meanEqProfile_gitm_ub, meanEqAltitudes_gitm], + [meanEqProfile, meanEqProfile_lb, meanEqProfile_ub, meanEqAltitudes], titleStr, latStrEq, 'Equatorial') + + return + +def extract_feature(data, time_array, feature='peak', axis=0): + """ + Given some 2D array, either extract the maximum value along a desired dimension of that array (and return the + indices of those values), or integrate the quantities in the 2D array along the desired dimension and return the + result (along with the index corresponding to the centroid of the data that is integrated along each dimension). + Note that if feature = 'integrated', then 'data' should have two entries; the first is the data to be integrated + and the second are the 'x-values' (grid points) which are used to determine bounds of integration. + """ + stacked_time_array = np.hstack((time_array, time_array)) + if feature == 'integral': + if len(data) != 2: + raise ValueError("If determining the integral, 'Data' should have TWO elements!") + else: + if axis != 0: + raise ValueError("If determining the integral, the axis must equal 0, and the second dimension of the" + "the first element of 'data' should refer to altitude.") + else: + limits = [100, 250] # Defines the bounds of integration to between 100 and 250 km. + values = data[0] + alt_grid = data[1] + # Subsetting + mean_alt_profile = np.nanmean(alt_grid, axis=0) + subset_inds = np.where( (mean_alt_profile >= limits[0]) & (mean_alt_profile <= limits[-1]) )[0] + subset_values = values[:, subset_inds] + subset_alt_grid = alt_grid[:, subset_inds] + # Smooth the values in a 5 km window: + cleaned_vals, cleaned_vals_low_CI, cleaned_vals_high_CI = smooth_array(subset_values, subset_alt_grid, resolution=5) + # Integrate: + vals = np.zeros(values.shape[0]) + times = np.zeros(values.shape[0], dtype=object) + inds = np.full_like(vals, fill_value=subset_inds[len(subset_inds)//4]) + for i in range(len(vals)): + out = np.nansum(cleaned_vals[i, :]) * ( (subset_alt_grid[0, :][0] - subset_alt_grid[0, :][-1]) * 1e3 ) # W/m^2 + vals[i] = out + times[i] = stacked_time_array[i, int(inds[i])] + else: + inds = np.zeros(data.shape[axis]) + vals = np.zeros(data.shape[axis]) + times = np.zeros(data.shape[axis], dtype=object) + for i in range(data.shape[axis]): + try: + max_ind = np.nanargmax(data[i, :500]) + except: + max_ind = 0 + inds[i] = 100 # 50 # max_ind + vals[i] = data[i, max_ind] + try: + times[i] = stacked_time_array[i, max_ind] + except: + raise Exception + + return vals, inds, times + +def gitm_saber_direct_compare(gitm_data_dir, saveLoc, contour=False, plot_type=None, override=False): + """ + Does the same thing as gitm_saber_profile_comparison but instead extracts GITM data at locations identical to those + corresponding to the SABER data. Uses 3D interpolation to perform the extrapolation if SABER locations are + sufficiently far away from GITM locations. + :param gitm_data_dir: str + Location of where GITM simulation results are located (i.e. 'v10x20/out/') + :param saveLoc: str + The location where SABER data AND analysis output files will be placed. + :param contour: bool + Indicates whether altitude vs. time contour plots of NO are generated. + :param plot_type: str + Can either be 'peak' for which the peak cooling only is compared or 'integrated' for which the height-integrated + cooling is compared. Default is None, for which comparisons across the entire altitude profiles of NO will be + compared between GITM and SABER. + :param override: bool + Determines if pre-existing processed data is overriden. Default is False. + """ + # Grab the names of all the files in the GITM data directory : + filenames = os.listdir(gitm_data_dir) + validFilenames = [] + datetime_strs = [] + datetime_stamps = [] + for file_ in filenames: + if file_.endswith('.nc'): + validFilenames.append(file_) + datetime_strs.append('20' + file_[1:3] + '-' + file_[3:5] + '-' + file_[5:7] + 'T' + file_[8:10] + ':' + file_[ + 10:12] + ':' + file_[ + 12:14]) + datetime_stamps.append(datetime.strptime(datetime_strs[-1], "%Y-%m-%dT%H:%M:%S")) + # Arrange the files in chronological order: + ordering = np.argsort(np.asarray(datetime_stamps)) + orderedValidFilenames = np.asarray(validFilenames)[ordering] + orderedDatetimeStrs = np.asarray(datetime_strs)[ordering] + orderedDatetimeStamps = np.asarray(datetime_stamps)[ordering] + + # From the list of filenames, grab the starting and ending dates: + # startingFile = orderedValidFilenames[0] + # endingFile = orderedValidFilenames[-1] + startingTimeStr = orderedDatetimeStrs[0] + endingTimeStr = orderedDatetimeStrs[-1] + startingDatetime = orderedDatetimeStamps[ + 0] # datetime.strptime('20' + startingTimeStr[1:3] + "-" + startingTimeStr[3:5] + "-" + startingTimeStr[5:7], "%Y-%m-%d") + timedelta(hours=int(startingTimeStr[8:10])) + timedelta(minutes=int(startingTimeStr[10:12])) + endingDatetime = orderedDatetimeStamps[ + -1] # datetime.strptime('20' + endingTimeStr[1:3] + "-" + endingTimeStr[3:5] + "-" + endingTimeStr[5:7], "%Y-%m-%d") + timedelta(hours=int(endingTimeStr[8:10])) + timedelta(minutes=int(endingTimeStr[10:12])) + if datetime.strftime(startingDatetime, "%Y-%m-%dT%H:%M:%S") == datetime.strftime(endingDatetime, + "%Y-%m-%dT%H:%M:%S"): + titleStr = datetime.strftime(startingDatetime, "%Y-%m-%dT%H:%M:%S") + else: + titleStr = datetime.strftime(startingDatetime, "%Y-%m-%dT%H:%M:%S") + ' to ' + datetime.strftime(endingDatetime, + "%Y-%m-%dT%H:%M:%S") + + # Download saber data between the starting and ending dates (inclusive): + here = pathlib.Path(__file__).parent.resolve() + saber_download_file_str = '../srcPython/saber_download.py' + saber_download_file = here.joinpath(saber_download_file_str) + cmd = 'python '+str(saber_download_file)+' '+ str(startingDatetime)[:10].replace('-', '') + ' ' + str(endingDatetime)[ + :10].replace('-', + '') + ' ' + saveLoc + + os.system(cmd) + + # Read in the SABER data and generate the SABER data matrix and all other associated information: + dateList = np.asarray(pd.date_range(startingTimeStr[:-9], endingTimeStr[:-9], + periods=(endingDatetime - startingDatetime).days + 1).to_pydatetime()) + # np.asarray(pd.date_range('20' + startingTimeStr[1:3] + "-" + startingTimeStr[3:5] + "-" + startingTimeStr[5:7], + # '20' + endingTimeStr[1:3] + "-" + endingTimeStr[3:5] + "-" + endingTimeStr[5:7], periods=(endingDatetime - startingDatetime).days+1).to_pydatetime()) + + combined_NO_data = [] + print('Interpolating GITM data to the SABER locations...') + gitm_time_starts = [] + gitm_time_ends = [] + goodFiles = [] + badFiles = [] + idx = 0 + for date in dateList: + current_directory = saveLoc + str(date.year) + '/' + dateList[idx].strftime('%j') + current_saberfiles = os.listdir(current_directory) + # Order the files in 'current_saberfiles' chronologically: + current_filename_tref = [int(element[10:17]) + int(element[18:23]) for element in current_saberfiles] + + ordered_current_saberfiles = np.array(current_saberfiles)[np.argsort(current_filename_tref)] + # For each day, read in the SABER data: + jdx = 0 + for saberfile in ordered_current_saberfiles: + + saber_file_output = saber_file_data(current_directory + '/' + saberfile, dateRef=date) + + if saber_file_output is None: + badFiles.append(saberfile) + pdb.set_trace() + continue + else: + current_alts, current_lats, current_lons, current_NO_data, current_observation_times, lowestDate, highestDate = saber_file_output + + # Read in GITM data that is closest in time and space to the saber data; interpolate to the SABER location: + gitm_time_start, gitm_ind_start = find_nearest(orderedDatetimeStamps, lowestDate) + gitm_time_end, gitm_ind_end = find_nearest(orderedDatetimeStamps, highestDate) + + try: + # TODO: Fix issue with NO GITM DATA AFTER 2011-08-07 + gitm_NO_data = gitm_NO_at_saber_loc_strict([current_alts, current_lats, current_lons, current_NO_data, current_observation_times], + dataLoc=gitm_data_dir, filenames=orderedValidFilenames ,fileInds=[gitm_ind_start, gitm_ind_end], startDate=gitm_time_start, endDate=gitm_time_end, override=override, fileFlag=[idx, jdx]) + except: + pdb.set_trace() + goodFiles.append(saberfile) + + if plot_type == 'peak': + # SABER + current_saber_peak_cooling, inds_saber_peak, saber_peak_times = extract_feature(current_NO_data, + current_observation_times, + feature=plot_type) + # GITM + current_gitm_peak_cooling, inds_gitm_peak, gitm_peak_times = extract_feature(gitm_NO_data, + current_observation_times, + feature=plot_type) + combined_NO_data.append( + [current_alts, current_lats, current_lons, current_NO_data, gitm_NO_data, current_observation_times, + lowestDate, highestDate, current_saber_peak_cooling, inds_saber_peak, saber_peak_times, + current_gitm_peak_cooling, inds_gitm_peak, gitm_peak_times]) + elif plot_type == 'integral': + # SABER + current_saber_integrated_cooling, inds_saber_integrated, saber_integ_times = extract_feature([current_NO_data, + current_alts], + current_observation_times, + feature=plot_type) + # GITM + current_gitm_integrated_cooling, inds_gitm_integrated, gitm_integ_times = extract_feature( + [gitm_NO_data, current_alts], current_observation_times, feature=plot_type) + combined_NO_data.append( + [current_alts, current_lats, current_lons, current_NO_data, gitm_NO_data, current_observation_times, + lowestDate, highestDate, current_saber_integrated_cooling, inds_saber_integrated, + saber_integ_times, current_gitm_integrated_cooling, inds_gitm_integrated, gitm_integ_times]) + elif plot_type == 'both': + # SABER - Peak + current_saber_peak_cooling, inds_saber_peak, saber_peak_times = extract_feature(current_NO_data, + current_observation_times, + feature='peak') + # GITM - Peak + current_gitm_peak_cooling, inds_gitm_peak, gitm_peak_times = extract_feature(gitm_NO_data, current_observation_times, + feature='peak') + # SABER - Integrated + current_saber_integrated_cooling, inds_saber_integrated, saber_integ_times = extract_feature([current_NO_data, + current_alts], + current_observation_times, + feature='integral') + # GITM - Integrated + current_gitm_integrated_cooling, inds_gitm_integrated, gitm_integ_times = extract_feature( + [gitm_NO_data, current_alts], current_observation_times, feature='integral') + # + combined_NO_data.append( + [current_alts, current_lats, current_lons, current_NO_data, gitm_NO_data, current_observation_times, + lowestDate, highestDate, current_saber_peak_cooling, inds_saber_peak, saber_peak_times, + current_gitm_peak_cooling, inds_gitm_peak, gitm_peak_times, current_saber_integrated_cooling, + inds_saber_integrated, saber_integ_times, current_gitm_integrated_cooling, inds_gitm_integrated, + gitm_integ_times]) + else: + combined_NO_data.append([current_alts, current_lats, current_lons, current_NO_data, gitm_NO_data, current_observation_times, lowestDate, highestDate]) + + # gitm_time, gitm_ind = find_nearest(orderedDatetimeStamps, current_obs_time) + # current_NO_prof_gitm, current_altitude_prof_gitm, current_lat_gitm, current_lon_gitm = ( + # gitm_NO_at_saber_loc(dataLoc=gitm_data_dir, filenames=orderedValidFilenames, fileInd=gitm_ind, + # lat=current_obs_lat, lon=current_obs_lon, alts=current_altitude_prof, + # time=current_obs_time)) + + # saberData.append([current_alts, current_lats, current_lons, current_NO_data, current_observation_times]) + # gitmData.append([current_alts_GITM, current_lats_GITM, current_lons_GITM, current_NO_data_GITM, current_observation_times_GITM]) + + # Sanity check: + # plt.figure() + # plt.title('NO Cooling') + # # SABER + # plt.plot(current_NO_prof, current_altitude_prof, color='b', label='SABER') + # # GITM + # plt.plot(current_NO_prof_gitm, current_altitude_prof_gitm, color='r', label='GITM') + # # Labels and Axes + # plt.legend(loc='best') + # plt.xlabel('NO Cooling (W/m$^3$)') + # plt.ylabel('Altitude (km)') + gitm_time_starts.append(gitm_time_start) + gitm_time_ends.append(gitm_time_end) + jdx += 1 + idx += 1 + print('--\nComplete for '+str(date)[:10]+'.\n--') + time.sleep(0.5) + + if plot_type == 'both': + pdb.set_trace() + # Plot the Peak Cooling throughout the interval: + all_peak_times_saber = np.concatenate([element[10] for element in combined_NO_data]) + all_peak_cooling_saber = np.concatenate([element[8] for element in combined_NO_data]) + all_peak_times_gitm = np.concatenate([element[13] for element in combined_NO_data]) + all_peak_cooling_gitm = np.concatenate([element[11] for element in combined_NO_data]) + plt.figure() + sortInds_saber_peak = np.argsort(all_peak_times_saber) + sortInds_gitm_peak = np.argsort(all_peak_times_gitm) + plt.plot(all_peak_times_saber[sortInds_saber_peak], all_peak_cooling_saber[sortInds_saber_peak], label='SABER') + plt.plot(all_peak_times_gitm[sortInds_gitm_peak], all_peak_cooling_gitm[sortInds_gitm_peak], label='GITM') + plt.xlabel('Time') + plt.ylabel('Peak NO Cooling (W/m$^3$)') + plt.xlim([gitm_time_starts[0], gitm_time_ends[-1]]) + plt.xticks(rotation=45) + plt.legend(loc='best') + plt.tight_layout() + plt.savefig(os.getcwd() + '/peak_cooling_' + str(gitm_time_starts[0]) + '_' + str(gitm_time_ends[-1]) + '.png', dpi=300) + + # Plot the height-integrated cooling throughout the interval: + all_integ_times_saber = np.concatenate([element[16] for element in combined_NO_data]) + all_integ_cooling_saber = np.concatenate([element[14] for element in combined_NO_data]) + all_integ_times_gitm = np.concatenate([element[-1] for element in combined_NO_data]) + all_integ_cooling_gitm = np.concatenate([element[17] for element in combined_NO_data]) + plt.figure() + sortInds_saber_integ = np.argsort(all_integ_times_saber) + sortInds_gitm_integ = np.argsort(all_integ_times_gitm) + plt.plot(all_integ_times_saber[sortInds_saber_integ], all_integ_cooling_saber[sortInds_saber_integ], label='SABER') + plt.plot(all_integ_times_gitm[sortInds_gitm_integ], all_integ_cooling_gitm[sortInds_gitm_integ], label='GITM') + plt.xlabel('Time') + plt.ylabel('Height-Integrated NO Cooling (W/m$^2$)') + plt.xlim([gitm_time_starts[0], gitm_time_ends[-1]]) + plt.xticks(rotation=45) + plt.legend(loc='best') + plt.tight_layout() + plt.savefig(os.getcwd() + '/height_integrated_cooling_' + str(gitm_time_starts[0]) + '_' + str(gitm_time_ends[-1]) + '.png', + dpi=300) + + # TODO: Determine static x-limits for the two histograms below... + # Histogram of residuals between GITM and SABER peak cooling: + gitm_saber_residuals_peak_cooling = np.subtract(all_peak_cooling_gitm[sortInds_gitm_peak], all_peak_cooling_saber[sortInds_saber_peak]) + plt.figure() + sns.histplot(gitm_saber_residuals_peak_cooling, bins=50, stat='density', label=r'$\mathrm{log}(\mu)$='+str(np.round(np.log10(np.nanmean(gitm_saber_residuals_peak_cooling)), 2))+ + '\n$\mathrm{log}(\sigma)$='+str(np.round(np.log10(np.nanstd(gitm_saber_residuals_peak_cooling)), 2)) ) + sns.kdeplot(gitm_saber_residuals_peak_cooling, color='r') + plt.xlabel('Residual (W/m$^3$)') + plt.title('Distribution of Residuals of Peak NO Cooling') + plt.legend(loc='best') + plt.savefig(os.getcwd() + '/hist_peak_cooling_residuals.png', dpi=300) + + # Histogram of residuals between GITM and SABER integrated cooling: + gitm_saber_residuals_int_cooling = np.subtract(all_integ_cooling_gitm[sortInds_gitm_integ], + all_integ_cooling_saber[sortInds_saber_integ]) + plt.figure() + sns.histplot(gitm_saber_residuals_int_cooling, bins=50, stat='density', + label=r'$\mu$=' + str(np.round(np.nanmean(gitm_saber_residuals_int_cooling),4)) + '\n$\sigma$=' + str(np.round(np.nanstd(gitm_saber_residuals_int_cooling),4))) + sns.kdeplot(gitm_saber_residuals_int_cooling, color='r') + plt.xlabel('Residual (W/m$^2$)') + plt.title('Distribution of Residuals of Height-Integrated Peak NO Cooling') + plt.legend(loc='best') + plt.savefig(os.getcwd() + '/hist_integrated_cooling_residuals.png', dpi=300) + + # Plot histograms for each and compute the Wasserstein Metric between them: + from scipy.stats import wasserstein_distance + from scipy.stats import gaussian_kde + + fig, axs = plt.subplots(nrows=2, ncols=1, sharex=False, figsize=(10, 8)) + # Top: Peak Cooling + bins = 50 + binRange = (np.min([np.nanmin(all_peak_cooling_saber), np.nanmax(all_peak_cooling_gitm)]), + np.max([np.nanmin(all_peak_cooling_saber), np.nanmax(all_peak_cooling_gitm)])) + kde_saber_peak = gaussian_kde(all_peak_cooling_saber) + kde_gitm_peak = gaussian_kde(all_peak_cooling_gitm[~np.isnan(all_peak_cooling_gitm)]) + xx = np.linspace(binRange[0], binRange[-1], num=bins) + axs[0].hist(all_peak_cooling_saber, bins=bins, range=binRange, label='SABER', edgecolor='black', density=True, alpha=0.8) + axs[0].plot(xx, kde_saber_peak(xx), color='blue', linewidth=3) + axs[0].hist(all_peak_cooling_gitm, bins=bins, range=binRange, label='GITM', alpha=0.5, edgecolor='black', density=True) + axs[0].plot(xx, kde_gitm_peak(xx), color='darkorange', linewidth=3) + axs[0].set_xlabel('Peak NO Cooling (W/m$^2$)') + axs[0].set_ylabel('Probability Density') + axs[0].set_title('Distributions of Peak Nitric Oxide Cooling') + dist_peak = wasserstein_distance(all_peak_cooling_saber[~np.isnan(all_peak_cooling_saber)], + all_peak_cooling_gitm[~np.isnan(all_peak_cooling_gitm)]) + axs[0].legend(loc='best', title=r'$W=${:0.3e}'.format(dist_peak)) + + # Bottom: Integrated Cooling + binRangeInteg = (np.min([np.nanmin(all_integ_cooling_saber), np.nanmax(all_integ_cooling_gitm)]), + np.max([np.nanmin(all_integ_cooling_saber), np.nanmax(all_integ_cooling_gitm)])) + kde_saber_integ = gaussian_kde(all_integ_cooling_saber) + kde_gitm_integ = gaussian_kde(all_integ_cooling_gitm[~np.isnan(all_integ_cooling_gitm)]) + xx = np.linspace(binRangeInteg[0], binRangeInteg[-1], num=bins) + axs[1].hist(all_integ_cooling_saber, bins=bins, range=binRangeInteg, label='SABER', edgecolor='black', density=True, + alpha=0.8) + axs[1].plot(xx, kde_saber_integ(xx), color='blue', linewidth=3) + axs[1].hist(all_integ_cooling_gitm, bins=bins, range=binRangeInteg, label='GITM', alpha=0.5, edgecolor='black', + density=True) + axs[1].plot(xx, kde_gitm_integ(xx), color='darkorange', linewidth=3) + axs[1].set_xlabel('Height-integrated Nitric Oxide Cooling (W/m$^2$)') + axs[1].set_ylabel('Probability Density') + axs[1].set_title('Distributions of Integrated Nitric Oxide Cooling') + dist_integrated = wasserstein_distance(all_integ_cooling_saber[~np.isnan(all_integ_cooling_saber)], + all_integ_cooling_gitm[~np.isnan(all_integ_cooling_gitm)]) + axs[1].legend(loc='best', title=r'$W=${:0.3e}'.format(dist_integrated)) + + # Minor adjustments and saving the figure: + plt.tight_layout() + plt.savefig( + 'NO_distributions_'+str(gitm_time_starts[0])+'_'+str(gitm_time_ends[0])+'.png', dpi=300) + plt.close() + + # data_dist_figure = True + # # pdb.set_trace() + # if data_dist_figure: + # # Lat vs Local time plot for ALL data (AACGM coordinates) + # desired_shape = (sum([element[0].shape[0] for element in combined_NO_data]), sum([element[0].shape[-1] for element in combined_NO_data])) + # only_alts = [element[0] for element in combined_NO_data] + # only_lats = [element[1] for element in combined_NO_data] + # only_lons = [element[2] for element in combined_NO_data] + # only_times = [element[5] for element in combined_NO_data] + # alt_arr = np.concatenate(only_alts, axis=0) + # lat_arr = np.concatenate(only_lats, axis=0) + # lon_arr = np.concatenate(only_lons, axis=0) + # time_arr = np.concatenate(only_times, axis=0) + # mlats = np.zeros_like(alt_arr) + # mlons = np.zeros_like(alt_arr) + # mlts = np.zeros_like(alt_arr) + # for rowIndex in tqdm(range(alt_arr.shape[0])): + # for columnIndex in range(alt_arr.shape[1]): + # try: + # m_coord = aacgmv2.wrapper.get_aacgm_coord(lat_arr[rowIndex, columnIndex], + # lon_arr[rowIndex, columnIndex], + # alt_arr[rowIndex, columnIndex], + # time_arr[rowIndex, columnIndex]) + # except: + # try: + # apex_out = apexpy.Apex(date=time_arr[rowIndex, columnIndex]) + # try: + # mlat, mlt = apex_out.convert(lat=lat_arr[rowIndex, columnIndex], lon=lon_arr[rowIndex, columnIndex], source='geo', dest='mlt', datetime=time_arr[rowIndex, columnIndex]) + # mlon = apex_out.mlt2mlon(mlt=mlt, dtime=time_arr[rowIndex, columnIndex]) + # m_coord = [mlat, mlon, mlt] + # except UserWarning: + # m_coord = [np.nan, np.nan, np.nan] + # except: + # m_coord = [np.nan, np.nan, np.nan] + # mlats[rowIndex, columnIndex] = m_coord[0] + # mlons[rowIndex, columnIndex] = m_coord[1] + # mlts[rowIndex, columnIndex] = m_coord[2] + # mlat_1d = np.ravel(mlats) + # mlons_1d = np.ravel(mlons) + # mlts_1d = np.ravel(mlts) + # sorted_mlt_inds = np.argsort(mlts_1d) + # # + # plt.figure() + # plt.plot(mlts_1d[sorted_mlt_inds], mlat_1d[sorted_mlt_inds]) + # plt.xlabel('MLT') + # plt.ylabel('MLAT') + # plt.title('SABER Data Coverage: '+str(gitm_time_starts[0]).replace(' ','T')+' to '+str(gitm_time_ends[-1]).replace(' ','T')) + # plt.show() + # # One orbit of SABER data: + # geographic_lats_1d = np.ravel(lat_arr) + # times_1d = np.ravel(time_arr) + # times_1d_scc = np.zeros_like(times_1d) + # for jdx in range(len(times_1d_scc)): + # if type(times_1d[jdx]) == float: + # times_1d_scc[jdx] = np.nan + # else: + # times_1d_scc[jdx] = (times_1d[jdx] - times_1d[0]).total_seconds() + # sorted_time_inds = np.argsort(times_1d_scc) + # sorted_geographic_lats_1d = geographic_lats_1d[sorted_time_inds] + # sorted_times_ssc_1d = times_1d_scc[sorted_time_inds] + # sorted_times_1d = times_1d[sorted_time_inds] + # one_orbit_time_inds = np.where((sorted_times_ssc_1d >= sorted_times_ssc_1d[0]) & (sorted_times_ssc_1d <= (sorted_times_ssc_1d[0] + 97*60)) )[0] + # sorted_mlts_1d = mlts_1d[sorted_time_inds] + # # + # plt.figure() + # plt.plot(sorted_mlts_1d[one_orbit_time_inds], sorted_geographic_lats_1d[one_orbit_time_inds]) + # plt.xlabel('MLT (hours)') + # plt.ylabel('Geographic Latitude (degrees)') + # plt.title('SABER Data Coverage: ' + str(gitm_time_starts[0]).replace(' ', 'T') + ' to ' + str( + # gitm_time_starts[0] + timedelta(minutes=97)).replace(' ', 'T')) + + # pdb.set_trace() + + print('Interpolations complete. Generating comparison plots in each latitudinal boundary ('+str(gitm_time_starts[0])+' to '+str(gitm_time_ends[-1])+').\n') + print('Out of '+str(len(goodFiles)+len(badFiles))+' total files, '+str(len(goodFiles))+' were good and '+str(len(badFiles))+' were bad and contained too many NaN values to use for analysis.') + time.sleep(1) + + # Loop through the NO profiles and average them in 5 km sliding windows (with CIs): + cleaned_NO_data = [] + for data in combined_NO_data: + current_cleaned_SABER_NO_data, current_cleaned_SABER_NO_data_low_CI, current_cleaned_SABER_NO_data_high_CI = smooth_array(data[3], current_alts, resolution=5) + current_cleaned_GITM_NO_data, current_cleaned_GITM_NO_data_low_CI, current_cleaned_GITM_NO_data_high_CI = smooth_array(data[4], current_alts, resolution=5) + cleaned_NO_data.append([data[0], data[1], data[2], current_cleaned_SABER_NO_data, + current_cleaned_SABER_NO_data_low_CI, current_cleaned_SABER_NO_data_high_CI, + current_cleaned_GITM_NO_data, current_cleaned_GITM_NO_data_low_CI, + current_cleaned_GITM_NO_data_high_CI, data[5], data[6], data[7]]) + + # Generate comparison plots in different latitudinal regions: + # Polar Region |MLAT| >= 80: + polInds = [np.where(element[1][:, 0] >= 80) for element in cleaned_NO_data] + if len(set([len(element[0]) for element in polInds])) == 1: + print('No polar data.\n') + else: + polData = [] + for i in range(len(polInds)): + if len(polInds[i]) > 0: + soundingInfo_pol = cleaned_NO_data[i] + currentInds = polInds[i][0] + polData.append([soundingInfo_pol[0][currentInds, :], soundingInfo_pol[1][currentInds, :], + soundingInfo_pol[2][currentInds, :], + soundingInfo_pol[3][currentInds, :], soundingInfo_pol[4][currentInds, :], + soundingInfo_pol[5][currentInds, :], + soundingInfo_pol[6][currentInds, :], soundingInfo_pol[7][currentInds, :], + soundingInfo_pol[8][currentInds, :], + soundingInfo_pol[9][currentInds, :], soundingInfo_pol[10], soundingInfo_pol[11]]) + complot(polData, label='Polar', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + if contour: + gitm_saber_contour(polData, label='Auroral', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + gitm_saber_lat_contour(polData, alt=120, label='Polar', timeStart=gitm_time_starts[0], + timeEnd=gitm_time_ends[-1]) + + # Auroral Region 60 <= |MLAT| < 80: + aurInds = [np.where((element[1][:, 0] >= 60) & (element[1][:, 0] < 80)) for element in cleaned_NO_data] + if len(set([len(element[0]) for element in aurInds])) == 1: + print('No auroral data.\n') + else: + aurData = [] + for i in range(len(aurInds)): + if len(aurInds[i]) > 0: + soundingInfo_aur = cleaned_NO_data[i] + currentInds = aurInds[i][0] + aurData.append([soundingInfo_aur[0][currentInds, :], soundingInfo_aur[1][currentInds, :], + soundingInfo_aur[2][currentInds, :], + soundingInfo_aur[3][currentInds, :], soundingInfo_aur[4][currentInds, :], + soundingInfo_aur[5][currentInds, :], + soundingInfo_aur[6][currentInds, :], soundingInfo_aur[7][currentInds, :], + soundingInfo_aur[8][currentInds, :], + soundingInfo_aur[9][currentInds, :], soundingInfo_aur[10], soundingInfo_aur[11]]) + complot(aurData, label='Auroral', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + if contour: + gitm_saber_contour(aurData, label='Auroral', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + gitm_saber_lat_contour(aurData, alt=120, label='Auroral', timeStart=gitm_time_starts[0], + timeEnd=gitm_time_ends[-1]) + + # Mid-latitudes 30 <= |MLAT| < 60: + midInds = [np.where((element[1][:, 0] >= 30) & (element[1][:, 0] < 60)) for element in cleaned_NO_data] + if len(set([len(element[0]) for element in midInds])) == 1: + print('No midlatitude data.\n') + else: + midData = [] + for i in range(len(midInds)): + if len(midInds[i]) > 0: + soundingInfo_mid = cleaned_NO_data[i] + currentInds = midInds[i][0] + midData.append( [ soundingInfo_mid[0][currentInds, :], soundingInfo_mid[1][currentInds, :], soundingInfo_mid[2][currentInds, :], + soundingInfo_mid[3][currentInds, :], soundingInfo_mid[4][currentInds, :], soundingInfo_mid[5][currentInds, :], + soundingInfo_mid[6][currentInds, :], soundingInfo_mid[7][currentInds, :], soundingInfo_mid[8][currentInds, :], + soundingInfo_mid[9][currentInds, :], soundingInfo_mid[10], soundingInfo_mid[11] ] ) + complot(midData, label='Midlatitudes', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + if contour: + gitm_saber_contour(midData, label='Midlatitudes', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + gitm_saber_lat_contour(midData, alt=120, label='Midlatitudes', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + + # Low Latitudes/Equatorial Region |MLAT| < 30: + eqInds = [np.where(element[1][:, 0] < 30) for element in cleaned_NO_data] + if len(set([len(element[0]) for element in eqInds])) == 1: + print('No equatorial data.\n') + else: + eqData = [] + for i in range(len(eqInds)): + if len(eqInds[i]) > 0: + soundingInfo_eq = cleaned_NO_data[i] + currentInds = eqInds[i][0] + try: + eqData.append( + [soundingInfo_eq[0][currentInds, :], soundingInfo_eq[1][currentInds, :], soundingInfo_eq[2][currentInds, :], + soundingInfo_eq[3][currentInds, :], soundingInfo_eq[4][currentInds, :], soundingInfo_eq[5][currentInds, :], + soundingInfo_eq[6][currentInds, :], soundingInfo_eq[7][currentInds, :], soundingInfo_eq[8][currentInds, :], + soundingInfo_eq[9][currentInds, :], soundingInfo_eq[10], soundingInfo_eq[11]]) + except: + try: + eqData.append( + [soundingInfo_eq[0][currentInds, :-1], soundingInfo_eq[1][currentInds, :-1], soundingInfo_eq[2][currentInds, :-1], + soundingInfo_eq[3][currentInds, :-1], soundingInfo_eq[4][currentInds, :-1], soundingInfo_eq[5][currentInds, :-1], + soundingInfo_eq[6][currentInds, :-1], soundingInfo_eq[7][currentInds, :-1], soundingInfo_eq[8][currentInds, :-1], + soundingInfo_eq[9][currentInds, :-1], soundingInfo_eq[10], soundingInfo_eq[11]]) + except: + # Usually this occurs because of an IndexError in at indices 6 through 8. The current naive solution involves TRUNCATING the indices by one: + pdb.set_trace() + raise Exception + complot(eqData, label='Equatorial', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + if contour: + gitm_saber_contour(eqData, label='Equatorial', timeStart=gitm_time_starts[0], timeEnd=gitm_time_ends[-1]) + gitm_saber_lat_contour(eqData, alt=120, label='Equatorial', timeStart=gitm_time_starts[0], + timeEnd=gitm_time_ends[-1]) + + print('Comparisons complete!') + return + +def gitm_saber_lat_contour(info, alt, label, timeStart, timeEnd): + """ + Helper function that takes data aggregated by gitm_saber_direct_compare and creates latitude vs. time contour plots + at a selected altitude level by the user). + """ + # Arrange the NO VER data (and time data) into (a) a giant 2D array: + for i in range(len(info)): + if i > 0: + # Times... + stacked_times = np.vstack((stacked_times, current_times)) + # Latitudes... + stacked_latitudes = np.vstack((stacked_latitudes, current_latitudes)) + # SABER... + stacked_saber_NO = np.vstack((stacked_saber_NO, current_saber_NO)) + # GITM + stacked_gitm_NO = np.vstack((stacked_gitm_NO, current_gitm_NO)) + else: + stacked_times = info[i][9] + stacked_latitudes = info[i][8] + stacked_saber_NO = info[i][3] + stacked_gitm_NO = info[i][6] + current_times = info[i][9] + current_latitudes = info[i][1] + current_saber_NO = info[i][3] + current_gitm_NO = info[i][6] + + # With the NO VER array complete, extract the y-scale (altitudes): + all_alts = [] + for i in range(len(info)): + current_alts = np.nanmean(info[i][0], axis=0) + all_alts.append(current_alts) + alt_scale = np.nanmean(np.array(all_alts), axis=0) + + # Data sorting: + stacked_seconds = np.zeros_like(stacked_times) + for row in range(stacked_times.shape[0]): + for col in range(stacked_times.shape[1]): + if type(stacked_times[row, col]) != datetime: + stacked_seconds[row, col] = np.nan + else: + stacked_seconds[row, col] = (stacked_times[row, col] - timeStart).total_seconds() + stacked_seconds_double = np.hstack((stacked_seconds, stacked_seconds)) + stacked_times_double = np.hstack((stacked_times, stacked_times)) + + # Extract data at the altitude of interest: + altVal, altIdx = find_nearest(alt_scale, alt) + gitm_NO_subset = stacked_gitm_NO[:, altIdx] + saber_NO_subset = stacked_saber_NO[:, altIdx] + latitudes_subset = stacked_latitudes[:, altIdx] + times_subset = stacked_times_double[:, altIdx] + t_dt = np.array([(element - times_subset[0]).total_seconds() for element in times_subset]) + # Make the Contour Plots: + # plt.figure() + # plt.tricontourf(t_dt, latitudes_subset, gitm_NO_subset) + + numel = 1000 + xvals = np.linspace(np.min(t_dt), np.max(t_dt), numel) + yvals = np.linspace(np.min(latitudes_subset), np.max(latitudes_subset), numel) + xx, yy = np.meshgrid(xvals, yvals) + time_subset_upsampled = pd.date_range(str(times_subset[0]), str(times_subset[-1]), periods=numel).to_pydatetime() + xx_dates, yy = np.meshgrid(time_subset_upsampled, yvals) + gitm_grid = griddata((t_dt, latitudes_subset), gitm_NO_subset, (xx, yy), method='cubic') + gitm_grid[gitm_grid < 0] = 0 + saber_grid = griddata((t_dt, latitudes_subset), saber_NO_subset, (xx, yy), method='cubic') + saber_grid[saber_grid < 0] = 0 + perc_dev_grid = np.divide( 100*(np.abs(np.subtract(gitm_grid, saber_grid))), saber_grid) + vmin_ = 0 # np.nanpercentile([np.nanmax(gitm_grid), np.nanmax(saber_grid)], 5) + vmax_ = np.nanpercentile([np.nanmax(gitm_grid), np.nanmax(saber_grid)], 75) + fig, axs = plt.subplots(1, 3, sharex=True, sharey=True, figsize=(18,8)) + # Colorbar boundaries: + numLevels = 25 + levels = np.linspace(vmin_, vmax_, numLevels) + levels_r = np.linspace(np.nanpercentile(perc_dev_grid, 25), np.nanpercentile(perc_dev_grid, 75), numLevels) + # Latitude cutoff if considering the midlatitudes: + if label == 'Midlatitudes': + lat_cutoff = 42. + else: + lat_cutoff = np.nanmin(yy) + # SABER + # im_saber = axs[0].contourf(xx_dates, yy, saber_grid, cmap='bwr', levels=levels, vmin=vmin_, vmax=vmax_) + im_saber = axs[0].imshow(saber_grid, aspect='auto', cmap='bwr', interpolation='bicubic', + extent=[np.min(xx_dates), np.max(xx_dates), lat_cutoff, np.nanmax(yy)], + vmin=vmin_, vmax=vmax_, origin='lower') + axs[0].set_title('SABER') + axs[0].set_ylabel('Latitude') + axs[0].set_xlabel('Time') + cbar_saber = plt.colorbar(im_saber) + cbar_saber.set_label('NO Cooling (W/m$^3$)') + # GITM + # im_gitm = axs[1].contourf(xx_dates, yy, gitm_grid, cmap='bwr', levels=levels, vmin=vmin_, vmax=vmax_) + im_gitm = axs[1].imshow(gitm_grid, aspect='auto', cmap='bwr', interpolation='bicubic', + extent=[np.min(xx_dates), np.max(xx_dates), lat_cutoff, np.nanmax(yy)], + vmin=vmin_, vmax=vmax_, origin='lower') + axs[1].set_title('GITM') + axs[1].set_xlabel('Time') + cbar_gitm = plt.colorbar(im_gitm) + cbar_gitm.set_label('NO Cooling (W/m$^3$)') + # Residual + # im_residual = axs[2].contourf(xx_dates, yy, perc_dev_grid, levels=levels_r, cmap='Spectral', vmin=np.nanpercentile(perc_dev_grid, 25), vmax=np.nanpercentile(perc_dev_grid, 75)) + im_residual = axs[2].imshow(perc_dev_grid, aspect='auto', cmap='bwr', interpolation='bicubic', + extent=[np.min(xx_dates), np.max(xx_dates), lat_cutoff, np.nanmax(yy)], + vmin=-250., vmax=250., origin='lower') + # vmin=np.nanpercentile(perc_dev_grid, 5), vmax=np.nanpercentile(perc_dev_grid, 95), + # origin='lower') + axs[2].set_title('Percent Difference') + axs[2].set_xlabel('Time') + cbar_residual = plt.colorbar(im_residual) + cbar_residual.set_label('Percent Deviation from SABER') + # Axes Labeling and Ticks: + plt.setp(axs[0].xaxis.get_majorticklabels(), rotation=45) + plt.setp(axs[1].xaxis.get_majorticklabels(), rotation=45) + plt.setp(axs[2].xaxis.get_majorticklabels(), rotation=45) + plt.suptitle('NO Cooling at '+str(np.round(altVal,2))+' km Altitude ('+str(timeStart)+' to '+str(timeEnd)+')') + # Save the plot + plt.savefig('saber_gitm_latitude_vs_time'+label+'_'+str(timeStart).replace(" ", "T").replace(":", "_")+'_to_'+str(timeEnd).replace(" ", "T").replace(":", "_")+'.png', dpi=300) + + return + +def gitm_saber_contour(info, label, timeStart, timeEnd): + """ + Helper function that takes data aggregated by gitm_saber_direct_compare and creates altitude vs. time contour plots + (with identical scales for the NO Volume Emission Rate). + """ + # Arrange the NO VER data (and time data) into (a) a giant 2D array: + for i in range(len(info)): + if i > 0: + # Times... + stacked_times = np.vstack((stacked_times, current_times)) + # SABER... + stacked_saber_NO = np.vstack((stacked_saber_NO, current_saber_NO)) + # GITM + stacked_gitm_NO = np.vstack((stacked_gitm_NO, current_gitm_NO)) + else: + stacked_times = info[i][9] + stacked_saber_NO = info[i][3] + stacked_gitm_NO = info[i][6] + current_times = info[i][9] + current_saber_NO = info[i][3] + current_gitm_NO = info[i][6] + + # VITAL: SORT the NO data BY TIME: + stacked_seconds = np.zeros_like(stacked_times) + for row in range(stacked_times.shape[0]): + for col in range(stacked_times.shape[1]): + if type(stacked_times[row, col]) != datetime: + stacked_seconds[row, col] = np.nan + else: + stacked_seconds[row, col] = (stacked_times[row, col] - timeStart).total_seconds() + stacked_seconds_double = np.hstack((stacked_seconds, stacked_seconds)) + stacked_times_double = np.hstack((stacked_times, stacked_times)) + sortInds = np.argsort(stacked_seconds_double, axis=0) + sorted_times = np.take_along_axis(stacked_times_double, sortInds, axis=0) + sorted_saber = np.take_along_axis(stacked_saber_NO, sortInds, axis=0) + sorted_gitm = np.take_along_axis(stacked_gitm_NO, sortInds, axis=0) + + # TODO: FIX THE X VALUES!!! + + # With the NO VER array complete, extract the y-scale (altitudes): + all_alts = [] + for i in range(len(info)): + current_alts = np.nanmean(info[i][0], axis=0) + all_alts.append(current_alts) + alt_scale = np.nanmean(np.array(all_alts), axis=0) + + # Then extract the x-scale (time): + t = np.linspace(pd.Timestamp(timeStart).value, pd.Timestamp(np.nanmax(sorted_times)).value, sorted_times.shape[0]) # pd.Timestamp(timeEnd).value, sorted_times.shape[0]) + t = pd.to_datetime(t) + t_dt = np.array([element.to_pydatetime() for element in t]) + + # Subset to between 100 and 250 km in altitude: + alt_subset_inds = np.where((alt_scale >= 100) & (alt_scale <= 250))[0] + alt_subset = alt_scale[alt_subset_inds] + sorted_saber_subset = sorted_saber[:, alt_subset_inds] + sorted_gitm_subset = sorted_gitm[:, alt_subset_inds] + + # Finally, generate a contour plot: (https://stackoverflow.com/questions/65899604/plotly-using-one-colorbar-for-multiple-contour-plots) + vmin = np.log10(np.min([np.nanpercentile(sorted_saber_subset, 25), np.nanpercentile(sorted_gitm_subset, 25)])) + vmax = np.log10(np.max([np.nanmax(sorted_saber_subset), np.nanmax(sorted_gitm_subset)])) + fig, axs = plt.subplots(1, 2, sharex=True, sharey=True, figsize=(15,8)) + axs[0].imshow(np.log10(sorted_saber_subset.T), cmap='bwr', extent=[t_dt[0], t_dt[-1], 100, 250], vmin=vmin, vmax=vmax, aspect='auto', interpolation='bicubic') + axs[0].tick_params(axis='x', labelrotation=45) + axs[0].set_xlabel('Time') + axs[0].set_ylabel('Altitude (km)') + axs[0].set_title('SABER') + axs[0].set_xlim([np.nanmin(sorted_times), timeEnd]) + out = axs[1].imshow(np.log10(sorted_gitm_subset.T), cmap='bwr', extent=[t_dt[0], t_dt[-1], 100, 250], vmin=vmin, vmax=vmax, aspect='auto', interpolation='bicubic') + axs[1].tick_params(axis='x', labelrotation=45) + axs[1].set_xlabel('Time') + axs[1].set_title('GITM') + axs[1].set_xlim([np.nanmin(sorted_times), timeEnd]) + cbar = fig.colorbar(out, ax=axs[1]) + cbar.ax.set_ylabel('Logarithm of NO Cooling (W/m$^3$)') + fig.suptitle('Nitric Oxide Volume Emission Rate', fontsize=16) + fig.tight_layout() + fig.savefig('saber_gitm_contour_'+label+'_'+str(timeStart).replace(" ", "T").replace(":", "_")+'_to_'+str(timeEnd).replace(" ", "T").replace(":", "_")+'.png', dpi=300) + plt.close() + + # Generate a contour plot of the DIFFERENCE between GITM and SABER: + # gitm_saber_perc_diff = 100*(np.divide(np.abs(np.subtract(sorted_gitm_subset.T, sorted_saber_subset.T)), sorted_saber_subset.T)) + # Replace all infs with NaNs: + # gitm_saber_perc_diff[gitm_saber_perc_diff ==np.inf] = np.nan + # Distribution of Percent Difference + # fig, ax_h = plt.subplots() + # ax_h.hist(gitm_saber_perc_diff.ravel(), bins=75, range=(0, 400), density=True) + # ax_h.set_xlabel('Percent Difference (%)') + # ax_h.set_ylabel('Probability Density') + # fig.tight_layout() + # plt.show() + + # Contour plot of residuals + gitm_residual = np.log10(np.subtract(sorted_gitm_subset.T, sorted_saber_subset.T)) + # gitm_perc_error = 100 * (np.divide(np.abs(np.subtract(sorted_gitm_subset.T, sorted_saber_subset.T)), sorted_saber_subset.T)) + limit = np.max([np.abs(np.nanmin(gitm_residual)), np.abs(np.nanmax(gitm_residual))]) + fig_d, ax = plt.subplots() + out_d = ax.imshow(gitm_residual, cmap='bwr', extent=[t_dt[0], t_dt[-1], 100, 250], vmin=-limit, vmax=limit, aspect='auto', interpolation='bicubic') + ax.tick_params(axis='x', labelrotation=45) + ax.set_xlabel('Time') + ax.set_ylabel('Altitude (km)') + ax.set_title('GITM Deviation from SABER NO Cooling') + cbar_d = plt.colorbar(out_d, ax=ax) + cbar_d.ax.set_ylabel('Residual (GITM - SABER) (W/m$^3$)') + fig.tight_layout() + plt.savefig('saber_gitm_residual_'+label+'_'+str(timeStart).replace(" ", "T").replace(":", "_")+'_to_'+str(timeEnd).replace(" ", "T").replace(":", "_")+'.png', dpi=300) + plt.close() + + # pio.renderers.default = "browser" + # contours = dict(start=0, end=np.nanmax([np.nanmax(sorted_gitm_subset), np.nanmax(sorted_saber_subset)])) + # figc = make_subplots(rows=1, cols=2, shared_xaxes=True, shared_yaxes=True, horizontal_spacing=0.05) + # figc.add_trace( + # go.Contour( + # z=sorted_saber_subset.T, + # x=t_dt, # horizontal axis + # y=alt_subset, # vertical axis + # contours=contours + # ), + # row=1, + # col=1 + # ) + # figc.add_trace( + # go.Contour( + # z=sorted_gitm_subset.T, + # x=t_dt, # horizontal axis + # y=alt_subset, # vertical axis + # contours=contours, + # colorbar=dict( + # title=dict( + # text='NO Cooling (W/m^3)', + # side='right', + # font=dict( + # size=20, + # family='Arial, sans-serif' + # ) + # ) + # ) + # ), + # row=1, + # col=2 + # ) + # figc.update_layout( + # title=dict( + # text="SABER and GITM NO Cooling ("+label+"):\n" + str(t_dt[0]) + " to " + str(t_dt[-1]), + # font=dict( + # size=25 + # ) + # ), + # title_x=0.5, + # yaxis_title="Altitude (km)", + # width=1800, + # height=1000 + # ) + # figc.update_yaxes(tickfont=dict(size=25)) + # show(figc) + # # Save the contour plot: + # pio.write_image(figc, + # 'saber_gitm_contour_'+label+ + # '_'+str(timeStart).replace(" ", "T").replace(":", "_")+ + # '_to_'+str(timeEnd).replace(" ", "T").replace(":", "_"), format='png') + + return + +def show(fig): + """ + Helper function to display Plotly images in a standalone window. + Source: https://stackoverflow.com/questions/53570384/plotly-how-to-make-a-standalone-plot-in-a-window + Takes as its sole argument a fig object generated by plotly.graph_objs + """ + import io + import plotly.io as pio + from PIL import Image + buf = io.BytesIO() + pio.write_image(fig, buf) + img = Image.open(buf) + img.show() + +def complot(input, saveLoc=os.getcwd(), label=None, timeStart=None, timeEnd=None): + """ + Take processed NO data for SABER and GITM, and make a comparison plot (for a given latitudinal region). Takes as + an optional argument the location with which to save a figure. + input format: + 0 - Alts + 1 - Lats + 2 - Lons + 3 - Cleaned SABER NO data + 4 - Cleaned SABER NO data (low CI) + 5 - Cleaned SABER NO data (high CI) + 6 - Cleaned GITM NO data + 7 - Cleaned GITM NO data (low CI) + 8 - Cleaned GITM NO data (high CI) + 9 - Observation times + 10 - Start Date of Observations + 11 - End Date of Observations + """ + averaged_alt_rulers = [] + averaged_profs_SABER = [] + averaged_profs_GITM = [] + numSoundings = 0 + for i in range(len(input)): + averaged_alt_rulers.append(np.average(input[i][0], axis=0)) + averaged_profs_SABER.append(np.average(input[i][3], axis=0)) + averaged_profs_GITM.append(np.average(input[i][6], axis=0)) + numSoundings += input[i][0].shape[0] + averaged_alt_rulers_arr = np.array(averaged_alt_rulers) + averaged_profs_SABER_arr = np.array(averaged_profs_SABER) + averaged_profs_GITM_arr = np.array(averaged_profs_GITM) + + # Averaging, with CIs: + averaged_alt_ruler = np.average(averaged_alt_rulers_arr, axis=0) + # + average_prof_SABER = np.nanmean(averaged_profs_SABER_arr, axis=0) + average_std_SABER = np.nanstd(averaged_profs_SABER_arr, axis=0) + average_prof_SABER_upper_CI = np.add(average_prof_SABER, 1 * average_std_SABER) + average_prof_SABER_lower_CI = np.subtract(average_prof_SABER, 1 * average_std_SABER) + average_prof_SABER_lower_CI[average_prof_SABER_lower_CI < 0] = 0 + # + average_prof_GITM = np.nanmean(averaged_profs_GITM_arr, axis=0) + average_std_GITM = np.nanstd(averaged_profs_GITM_arr, axis=0) + average_prof_GITM_upper_CI = np.add(average_prof_GITM, 1 * average_std_GITM) + average_prof_GITM_lower_CI = np.subtract(average_prof_GITM, 1 * average_std_GITM) + average_prof_GITM_lower_CI[average_prof_GITM_lower_CI < 0] = 0 + + # Subset everything to between 100 and 250 km: + relevant_alt_inds = np.where((averaged_alt_ruler >= 100) & (averaged_alt_ruler <= 250))[0] + alt_subset = averaged_alt_ruler[relevant_alt_inds] + average_prof_SABER_lower_CI_subset = average_prof_SABER_lower_CI[relevant_alt_inds] + average_prof_SABER_upper_CI_subset = average_prof_SABER_upper_CI[relevant_alt_inds] + average_prof_SABER_subset = average_prof_SABER[relevant_alt_inds] + average_prof_GITM_lower_CI_subset = average_prof_GITM_lower_CI[relevant_alt_inds] + average_prof_GITM_upper_CI_subset = average_prof_GITM_upper_CI[relevant_alt_inds] + average_prof_GITM_subset = average_prof_GITM[relevant_alt_inds] + + # Plotting! + plt.figure() + # + plt.fill_betweenx(alt_subset, average_prof_SABER_lower_CI_subset, average_prof_SABER_upper_CI_subset, + where=average_prof_SABER_lower_CI_subset= datetime(2011, 8, 3, 23, 40): + # raise Exception + # try: + # stacked_observation_times_c = clean_NaNs(stacked_observation_times, axis=-1) + # except: + # raise Exception + + stacked_observation_times_c = clean_NaNs(stacked_observation_times, axis=-1) + + for i in tqdm(range(gitm_NO_data.shape[0])): + # Rows + for j in range(gitm_NO_data.shape[1]): + # Columns + currentTime = stacked_observation_times_c[i, j] + if type(currentTime) == float: + gitm_NO_data[i, j] = np.nan + validData = False + else: + # try: + # Isolate the GITM data that is relevant: + if currentTime < startDate: + currentTime = startDate + if currentTime > endDate: + currentTime = endDate + # if currentTime >= datetime(2011, 8, 7, 4): + # pdb.set_trace() + _, current_file_ind = find_nearest(gitm_times, currentTime) + current_gitm_subset = gitm_NO_data_raw[np.array([current_file_ind-1, current_file_ind, current_file_ind+1])] + gitm_times_subset = np.asarray(gitm_times)[np.array([current_file_ind-1, current_file_ind, current_file_ind+1])] + gitm_times_s_subset = np.asarray(gitm_times_s)[np.array([current_file_ind-1, current_file_ind, current_file_ind+1])] + validData = True + + # Interpolate the GITM data: + interp = RegularGridInterpolator((np.array([0, 0.5, 1]), gitm_lons[0], gitm_lats[0], gitm_alts[0]), current_gitm_subset, bounds_error=False) + + # Get the location of the datapoint to interpolate: + time_s = (currentTime - gitm_times[0]).total_seconds() / gitm_times_s_subset[-1] # Normalize the time value to be between 0 and 1. + current_point = np.array([time_s, current_lons[i,j], current_lats[i, j], current_alts[i, j]]) + if (current_point[-1] >= 244) == True: + too_high.append([i,j,current_point]) + current_point[-1] = np.nanmax(gitm_alts[0]) + gitm_NO_data[i,j] = interp(current_point) + else: + out = interp(current_point) + # try: + # out = interp(current_point) + # except: + # pdb.set_trace() + # Save the interpolated datapoint: + gitm_NO_data[i, j] = out + # except: + # The presence of masked data indicates a bad value: + # pdb.set_trace() + # gitm_NO_data[i, j] = np.nan + + # Sanity checks (viewing profiles side-by-side): + # for k in range(current_NO_data.shape[0]-90): + # plt.figure(); plt.plot(current_NO_data[k, :], current_alts[k, :], label='SABER'); plt.plot(gitm_NO_data[k, :], current_alts[k, :], label='GITM'); plt.legend(loc='best') + + # Final cleaning; any remaining NaNs are simply interpolated over (across profiles rather than vertically along + # an individual profile): + clean_data = True + if clean_data: + gitm_NO_data_cleaned = interp2d_simple(gitm_NO_data.T, k=3, axis=-1) + gitm_NO_data = gitm_NO_data_cleaned.T + + # Sanity check - Looking at SABER data spatial coverage overtop GITM outputs. + timeSelect = current_observation_times[45, 0] + tVal, tDex = find_nearest(gitm_times, timeSelect) + gitm_data_subset = gitm_NO_data_raw[tDex, :, :, :] + aVal, aDex = find_nearest(gitm_alts[0], 125) + gitm_data_at_125_km = gitm_data_subset[:, :, aDex] # SHAPE: Lon, Lat + plt.figure() + plt.imshow(gitm_data_at_125_km.T, extent=[np.min(gitm_lons[0]), np.max(gitm_lons[0]), np.min(gitm_lats[0]), np.max(gitm_lats[0])]) + for i in range(current_lons.shape[0]): + plt.plot(current_lons[i, :], current_lats[i, :], color='r') + plt.xlabel('Geographic Longitude') + plt.ylabel('Geographic Latitude') + plt.xlim([np.min(gitm_lons[0]), np.max(gitm_lons[0])]) + plt.ylim([np.min(gitm_lats[0]), np.max(gitm_lats[0])]) + plt.title('SABER Observations over GITM Data at 125 km: '+str(stacked_observation_times[0, 0])+' to '+str(stacked_observation_times[-1, 0])) + plt.close() + + # CACHE the interpolated NO data (to the GITM directory in 'dataLoc'), so that if it already exists, it is just read-in: + NO_dict = { + 'gitm_NO_data_raw': gitm_NO_data_raw, + 'gitm_NO_data': gitm_NO_data + } + + pickle_save(NO_dict, GITM_NO_FILENAME) + else: + print('Loaded in GITM data for SABER NETCDF4 file covering the time period: ' + str(startDate) + ' to ' + str( + endDate) + '...') + NO_dict = pickle_load(GITM_NO_FILENAME) + gitm_NO_data_raw = NO_dict['gitm_NO_data_raw'] + gitm_NO_data = NO_dict['gitm_NO_data'] + + return gitm_NO_data + +def clean_NaNs(data, axis=-1): + new_data = np.zeros_like(data) + for idx in range(data.shape[0]): + row = data[idx,:] + reference = firstNonNan(row) + arr = [] + for element in row: + if type(element) == float: + arr.append(np.nan) + else: + arr.append((element - reference).total_seconds()) + #arr = np.array([(element - reference).total_seconds() for element in row]) + arr = np.asarray(arr) + arr_clean = clean_arr(arr) + new_data[idx, :] = np.array([reference + timedelta(seconds=element) for element in arr_clean]) + + return new_data + +def firstNonNan(listarr): + for item in listarr: + if type(item) != float: + return item + +def clean_arr(arr): + x_vals = np.linspace(0, len(arr)-1, len(arr)) + try: + interpolator = interp1d(x_vals[~np.isnan(arr)], arr[~np.isnan(arr)], kind='linear', bounds_error=False, fill_value='extrapolate') + except: + raise Exception + clean_arr = interpolator(x_vals) + return clean_arr + +def gitm_NO_at_saber_loc(dataLoc, fileInd, filenames, lat, lon, alts, time): + """ + Given the location of GITM data, a file to read in, and the desired lat and lon, extract a Nitric Oxide VER profile. + Use interpolation in 3D to obtain the desired profile. + :param dataLoc: str + A string with the location of the GITM data. + :param filenames: list of strings + A list of strings of the filenames to get data from. + :param fileInd: int + The file number identifying the file to read in; provided by gitm_saber_direct_compare. + :param lat: int + The latitude at which to extract the data. + :param lon: int + The longitude at which to extract the data. + :param alts: list or array + The altitude values at which to extract the data. + :param time: datetime + The time at which to extract the data. + """ + # Step 1: Read in the GITM data + fileIndices = [fileInd-1, fileInd, fileInd+1] + gitm_data = [] + for ind in fileIndices: + try: + out = gitm_file_mean_profile(dataLoc+'/'+filenames[ind]) # NO_prof[:,:, alt_inds], mean_altitude_prof[alt_inds], obs_time, np.asarray(info['lat']), np.asarray(info['lon']) + except IndexError: + # Just double-count the last file if nothing is beyond it... + if ind == fileIndices[-1]: + out = gitm_file_mean_profile(dataLoc + '/' + filenames[ind-1]) + gitm_data.append(out) + gitm_alts = [element[1] for element in gitm_data] + gitm_lats = [element[3] for element in gitm_data] + gitm_lons = [element[4] for element in gitm_data] + + # Step 2: Interpolate the GITM data to the location and time desired + NO_data = np.asarray([element[0] for element in gitm_data]) + gitm_times = [element[2] for element in gitm_data] + gitm_times_s = [(element - gitm_times[0]).total_seconds() for element in gitm_times] + time_s = gitm_times_s[-1] / (time - gitm_times[0]).total_seconds() # Normalize the time value to be between 0 and 3. + + # First, interpolate in time in order to get an idea of how densely to interpolate in space. + # closest_time, closest_time_ind = find_nearest(gitm_times, time) + # time_diff = np.abs(time - closest_time) # Round to nearest seconds + # time_diff_pd = pd.Timedelta(time_diff) + # res = time_diff_pd.round('s') + # interp_times = np.asarray(pd.date_range(gitm_times[0], gitm_times[-1], freq=res).to_pydatetime()) + # final_time, final_time_ind = find_nearest(interp_times, time) + # # Second, do the interpolation in space-time (in 4D): + + # Obtain interpolated data at each altitude: + interp = RegularGridInterpolator((np.array([1, 2, 3]), gitm_lons[0], gitm_lats[0], gitm_alts[0]), NO_data, bounds_error=False) + gitm_NO_interp = np.zeros_like(alts) + if lon < 0: + lon = 360 + lat + for i in range(len(alts)): + current_point = np.array([time_s, lon, lat, alts[i]]) + out = interp(current_point) + gitm_NO_interp[i] = out + + # from scipy.interpolate import interpn + # grid = (np.array([1, 2, 3]), gitm_lons[0], gitm_lats[0], gitm_alts[0]) + # point = np.array([time_s, lon, lat, alts[0]]) + # result = interpn(grid, NO_data, point, method='linear') + + return gitm_NO_interp, alts, lat, lon + +def writeCSV(profile, profile_lb, profile_ub, altitudes, source, label=None, location=None): + """ + Helper function to save processed GITM altitude profile data to a CSV file. + :param profile: numpy.ndarray + Mean Nitric Oxide altitude profile for SABER. + :param profile_lb: numpy.ndarray + 5% CI lower boundary Nitric Oxide altitude profile for SABER. + :param profile_ub: numpy.ndarray + 95% CI upper boundary Nitric Oxide altitude profile for SABER. + :param altitudes: numpy.ndarray + Altitude values in km, for the Nitric Oxide profile. + :param source: str + Either 'GITM' or 'SABER'. + :param label: str + Optional label for the latitude region the Nitric Oxide profile corresponds to. + :param location: str + The place where the CSV file should be saved. If None, defaults is the working directory. + :return: + """ + if location is None: + location = os.getcwd() + '/' + if source != 'SABER' and source != 'GITM': + print(source) + raise ValueError("Invalid value for argument 'source' - must be either 'SABER' or 'GITM'.") + + with open(location + source + '_NO_Profiles_'+label+'.csv', 'w') as f: + writer = csv.writer(f, delimiter=',', lineterminator='\n') + writer.writerow(['Mean_NO_Emission_(nW/m^3)', '5%CI_NO_Emission_(nW/m^3)', '95%CI_NO_Emission_(nW/m^3)', 'Altitude_(km)']) + for i in range(len(profile)): + writer.writerow([str(profile[i]), str(profile_lb[i]), str(profile_ub[i]), str(altitudes[i])]) + return + +# def saberCSV(profile, profile_lb, profile_ub, altitudes, label=None, location=None): +# """ +# Helper function to save processed SABER altiude profile data to a CSV file. +# :param profile: numpy.ndarray +# Mean Nitric Oxide altitude profile for SABER. +# :param profile_lb: numpy.ndarray +# 5% CI lower boundary Nitric Oxide altitude profile for SABER. +# :param profile_ub: numpy.ndarray +# 95% CI upper boundary Nitric Oxide altitude profile for SABER. +# :param altitudes: numpy.ndarray +# Altitude values in km, for the Nitric Oxide profile. +# :param label: str +# Optional label for the latitude region the Nitric Oxide profile corresponds to. +# :param location: str +# The place where the CSV file should be saved. If None, defaults is the working directory. +# :return: +# """ +# if location is None: +# location = os.getcwd() + '/' +# with open(location + 'SABER_NO_Profiles_'+label+'.csv', 'w') as saber_f: +# writer = csv.writer(saber_f, delimiter=',', lineterminator='\n') +# writer.writerow(['Mean_NO_Emission_(nW/m^3)', '5%CI_NO_Emission_(nW/m^3)', '95%CI_NO_Emission_(nW/m^3)', 'Altitude_(km)']) +# for i in range(len(profile)): +# writer.writerow([str(profile[i]), str(profile_lb[i]), str(profile_ub[i]), str(altitudes[i])]) +# return + +def find_nearest(array, value): + array = np.asarray(array) + idx = (np.abs(array - value)).argmin() + return array[idx], idx + +# Compute 95%CI bounds: +def conf_int(profile_data, confidence=0.95): + lb = [] + ub = [] + for i in range(profile_data.shape[1]): + a = 1.0 * np.array(profile_data[:, i]) + n = len(a) + m, se = np.nanmean(a), scipy.stats.sem(a, nan_policy='omit') + h = se * scipy.stats.t.ppf((1 + confidence) / 2., n-1) + lb.append(m-h) + ub.append(m+h) + return np.asarray(lb), np.asarray(ub) + +def pickle_save(data, fname): + with open(fname, 'wb') as handle: + pickle.dump(data, handle, protocol=pickle.HIGHEST_PROTOCOL) + +def pickle_load(fname): + with open(fname, 'rb') as handle: + b = pickle.load(handle) + return b + +# ---------------------------------------------------------------------- +# Example command-line usage: +# +# python saber_compare.py /home/daabrand/Projects/TECHNO/Analysis2/20110805.Storm/v10x20/out/ /home/daabrand/Projects/TECHNO/Analysis2/20110805.Storm/v10x20/saber/ both False +# +args = parse_args() + +gitm_data_loc = args.gitm_loc[0] +saber_data_loc = args.saber_loc[0] +plot_type = args.plot_type[0] +override = args.override[0] + +gitm_saber_direct_compare(gitm_data_loc, saveLoc=saber_data_loc, contour=True, plot_type = plot_type, override = override) + +# ---------------------------------------------------------------------- + +# ---------------------------------------------------------------------- +# Execution (debugging) +# ---------------------------------------------------------------------- +# if __name__ == '__main__': + # # fname = '/home/daabrand/Projects/TECHNO/Analysis1/20110805.Storm/SABER/2011/217/SABER_L2A_2011217_52308_02.07.nc' + # # NO_vals, altitude_vals, time_val, lat, lon = saber_file_mean_profile(fname) + # # + # # plt.figure() + # # plt.plot(NO_vals, altitude_vals) + # # plt.xlabel('NO Cooling (ergs/cm$^3$/s)') + # # plt.ylabel('Altitude (km)') + # + # gitm_data_location = '/home/daabrand/Projects/TECHNO/Analysis2/20110805.Storm/v10x20/out/' # '/home/daabrand/Projects/TECHNO/Analysis2/20110805.Storm/v10x20/UA/data/' + # saber_download_location = '/home/daabrand/Projects/TECHNO/Analysis2/20110805.Storm/v10x20/saber/' + # + # # gitm_saber_profile_comparison(gitm_data_location, saveLoc=saber_download_location) + # + # gitm_saber_direct_compare(gitm_data_location, saveLoc=saber_download_location, contour=True, plot_type = 'both', override = False) + + + diff --git a/srcPython/saber_download.py b/srcPython/saber_download.py new file mode 100644 index 00000000..a4ee14f0 --- /dev/null +++ b/srcPython/saber_download.py @@ -0,0 +1,136 @@ +#!/usr/bin/env python + +# Script for downloading SABER data for a specified time period. + +# Top-level imports: +import sys, os +import numpy as np +import argparse +from datetime import datetime, timedelta +import requests +from bs4 import BeautifulSoup +import pooch + +# ---------------------------------------------------------------------- +# Function to parse input arguments +# ---------------------------------------------------------------------- + +def parse_args(): + parser = argparse.ArgumentParser(description='Obtain TIMED/SABER data.') + parser.add_argument('start', metavar='start', nargs=1, \ + help='start date as YYYYMMDD') + parser.add_argument('end', metavar='end', nargs=1, \ + help='end date as YYYYMMDD') + parser.add_argument('loc', metavar='location', nargs=1,\ + help='directory to download data to') + + args = parser.parse_args() + + return args + +# ---------------------------------------------------------------------- +# Helper functions +# ---------------------------------------------------------------------- + +def get_url_paths(url, ext='', params={}): + response = requests.get(url, params=params) + if response.ok: + response_text = response.text + else: + return response.raise_for_status() + soup = BeautifulSoup(response_text, 'html.parser') + parent = [url + node.get('href') for node in soup.find_all('a') if node.get('href').endswith(ext)] + return parent + +def download_saber(dateStart, dateEnd, location): + """ + Scrape the SABER website for Nitric Oxide volume emission data. If version 2.0 Level 2A data is available, + preferentially grab that. + + Parameters + ---------- + dateStart: str + YYYYMMDD of the starting date to grab data. + dateEnd: str + YYYYMMDD of the ending date to grab data. This date is inclusive. + location: str + Place to save SABER data to. + Returns + ------- + Nothing. Just prints messages saying whether getting data was successful. + """ + yearStart = int(dateStart[:4]) + yearEnd = int(dateEnd[:4]) + if not yearEnd == yearStart: + raise ValueError('Ending year must equal starting year.') + topUrl = 'https://data.gats-inc.com/saber/Version2_0/Level2A/'+str(yearStart)+'/' + # Find the day numbers that you'll need to get data for: + dateStartDatetime = datetime(yearStart, int(dateStart[4:6]), int(dateStart[6:])) + dateEndDatetime = datetime(yearStart, int(dateEnd[4:6]), int(dateEnd[6:])) + doy_start = dateStartDatetime.timetuple().tm_yday + doy_end = dateEndDatetime.timetuple().tm_yday + myDoys = np.linspace(doy_start, doy_end, num=doy_end-doy_start+1) + myDoysInts = [int(element) for element in myDoys] + # Loop over each individual day, and download ALL the files for that day. Arrange things so that subdirectories for + # each day are made: + for i in range(len(myDoysInts)): + print('Downloading SABER files for day '+str(myDoysInts[i])+' of '+str(yearStart)+'...\n') + currentURL = topUrl+str(myDoysInts[i])+'/' + ext = 'nc' + initial_result = get_url_paths(currentURL, ext) + # Verify there are no duplicates + result = np.unique(initial_result) + # Check if there are data files corresponding to version 2; if so, ONLY grab those: + combined = '_'.join(result) + if '02.07.nc' in combined: + newResult = [] + for fileName in result: + if '02.07.nc' in fileName: + newResult.append(fileName) + else: + newResult = result + fileNamesOnly = [element.split('/')[-1:][0] for element in newResult] + # With the filenames obtained, grab all of them for this day and save them in the desired location, with a + # sensible directory structure - do this with Pooch to avoid overwriting existing files: + cacheLoc = location+'/'+str(yearStart)+'/'+str(myDoysInts[i])+'/' + if os.path.isdir(cacheLoc) == False: + os.makedirs(cacheLoc, exist_ok=True) + for j in range(0,len(newResult)): + fileStr = newResult[j] + pooch.retrieve( + url=fileStr, + known_hash=None, + fname=fileNamesOnly[j], + path=cacheLoc, + progressbar=True + ) + print('SABER files for day '+str(myDoysInts[i])+' of '+str(yearStart)+' obtained!\n') + if dateEnd == dateStart: + print( + 'COMPLETE: SABER files for ' + dateStart + ' have been downloaded to: ' + location) + else: + print('COMPLETE: SABER files between '+dateStart+' and '+dateEnd+' inclusive have been downloaded to: '+location) + +#------------------------------------------------------------------------------ +# SCRIPT USE +# example command line input: python saber_download.py 20110805 20110808 /home/daabrand/Projects/TECHNO/Analysis1/20110805.Storm/SABER + +args = parse_args() + +#assuming first two args are the start/end dates, then info desired + +start = args.start +if (not np.isscalar(start)): + start = start[0] +end = args.end +if (not np.isscalar(end)): + end = end[0] +loc = args.loc[0] + +fileout = download_saber(start, end, loc) + +# if __name__ == '__main__': +# saveLoc = '/home/daabrand/Projects/TECHNO/Analysis2/20110805.Storm/v10x20/saber/' +# dS = '20110803' +# dE = '20110803' +# download_saber(dS, dE, saveLoc) \ No newline at end of file diff --git a/srcPython/supermag_download_ae.py b/srcPython/supermag_download_ae.py index c104acd2..ca03eeef 100755 --- a/srcPython/supermag_download_ae.py +++ b/srcPython/supermag_download_ae.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 from supermag_api import * import argparse diff --git a/srcPython/thermo_compare.py b/srcPython/thermo_compare.py new file mode 100644 index 00000000..d288279b --- /dev/null +++ b/srcPython/thermo_compare.py @@ -0,0 +1,185 @@ +# Takes in .txt file outputs from thermo_goce.py and compares the results of TWO runs. + +# Top-level imports +import os +import numpy as np +import matplotlib.pyplot as plt +import matplotlib +matplotlib.use('Qt5Agg') +import argparse +from datetime import datetime + +# ---------------------------------------------------------------------------------------------------------------------- +# Global Plotting Settings: +import matplotlib.pylab as pylab +params = {'legend.fontsize': 'large', + 'figure.figsize': (16, 8), + 'axes.labelsize': 'large', + 'axes.titlesize':'x-large', + 'xtick.labelsize':'x-large', + 'ytick.labelsize':'x-large'} +pylab.rcParams.update(params) +# ---------------------------------------------------------------------------------------------------------------------- + +# ---------------------------------------------------------------------- +# Function to parse input arguments +# ---------------------------------------------------------------------- + +def parse_args(): + parser = argparse.ArgumentParser(description='Compare the outputs of two GITM runs from thermo_goce.py.') + parser.add_argument('file1', nargs=1, \ + help='Output .txt file for first GITM run.') + parser.add_argument('file2', nargs=1, \ + help='Output .txt file for second GITM run.') + parser.add_argument('tag1', nargs=1, help='Label for first GITM run.') + parser.add_argument('tag2', nargs=1, help='Label for second GITM run.') + parser.add_argument('file3', nargs=1, help='Output .txt file for third GITM run.', default=None) + parser.add_argument('tag3', nargs=1, help='Label for third GITM run.', default=None) + parser.add_argument('loc', nargs='?', metavar='location',\ + help='Location with which to save the combined figure.', default=os.getcwd()) + + args = parser.parse_args() + + return args + +# ---------------------------------------------------------------------------------------------------------------------- +# Helper functions +# ---------------------------------------------------------------------------------------------------------------------- +def percErr(experimental, theoretical): + return np.divide(np.subtract(experimental, theoretical), np.abs(theoretical)) * 100 + +def read_thermo(filename): + """ + Read the output of thermo_goce.py text file, and return information about the contents. + """ + times = [] + goce_rho = [] + gitm_rho = [] + goce_rho_smoothed = [] + gitm_rho_smoothed = [] + print('Reading data from '+filename+'...') + with open(filename, 'r') as File: + lines = File.readlines() + i = 0 + for line in lines: + if i == 7: + altitude = float(line.split()[0]) + if i >= 22: + # Collect the observations by parsing each line at a time... + splitted = line.split() + times.append( + datetime(int(splitted[0]), int(splitted[1]), int(splitted[2]), int(splitted[3]), int(splitted[4]), + int(splitted[5]))) + goce_rho.append(float(splitted[6])) + gitm_rho.append(float(splitted[7])) + goce_rho_smoothed.append(float(splitted[8])) + gitm_rho_smoothed.append(float(splitted[9])) + i += 1 + print('Complete!\n') + return altitude, np.asarray(times), np.asarray(goce_rho), np.asarray(gitm_rho), np.asarray(goce_rho_smoothed), np.asarray(gitm_rho_smoothed) + +def combine_plot(file1, file2, tag1, tag2, file3=None, tag3=None, saveLoc=None): + """ + Take two (or three).txt files generated by thermo_goce.py (corresponding to different GITM runs over the same time period) + and combine their results into a single figure. Generates and saves a .png to a user-defined location. + Parameters + ---------- + file1: str + The location/name of the first .txt file. + file2: + The location/name of the second .txt file. + tag1: str + A label for the first GITM run - used in the plot legend. + tag2: str + A label for the second GITM run - used in the plot legend. + file3: str + The location/name of the third .txt file. Default is None. + tag3: str + A label for the third GITM run - used in the plot legend. Default is None. + saveLoc: str + The full path (incl. the filename) with which to save the figure. Default is None, in which case the figure is + saved to the current working directory + Returns + ------- + Nothing. + """ + # Read in the contents of the first file: + altitude1, times1, goce_rho1, gitm_rho1, goce_rho_smoothed1, gitm_rho_smoothed1 = read_thermo(file1) + + # Read in the contents of the second file: + altitude2, times2, goce_rho2, gitm_rho2, goce_rho_smoothed2, gitm_rho_smoothed2 = read_thermo(file2) + + if file3: + nfiles = 3 + # Read in the contents of the third file: + altitude3, times3, goce_rho3, gitm_rho3, goce_rho_smoothed3, gitm_rho_smoothed3 = read_thermo(file3) + else: + nfiles = 2 + + # Make a figure of densities: + validInds = np.where((times1>= times2[0]) & (times1 <= times2[-1]))[0] + fig, axs = plt.subplots(1, nfiles, sharex=True, sharey=True) + fig.set_size_inches(14, 8) + axs[0].plot(times1[validInds], goce_rho1[validInds], color='b', alpha=0.3) + axs[0].plot(times1[validInds], goce_rho_smoothed1[validInds], color='b', label='GOCE') + axs[0].plot(times1[validInds], gitm_rho1[validInds], color='r', alpha=0.3) + axs[0].plot(times1[validInds], gitm_rho_smoothed1[validInds], color='r', label='GITM ('+tag1+')') + axs[0].set_xlabel('Time') + axs[0].set_ylabel('Neutral Density (kg/m$^3$)') + axs[0].legend(loc='best') + axs[0].tick_params(axis='x', labelrotation=45) + axs[1].plot(times2, goce_rho2, color='b', alpha=0.3) + axs[1].plot(times2, goce_rho_smoothed2, color='b', label='GOCE') + axs[1].plot(times2, gitm_rho2, color='r', alpha=0.3) + axs[1].plot(times2, gitm_rho_smoothed2, color='r', label='GITM ('+tag2+')') + axs[1].set_xlabel('Time') + axs[1].set_ylabel('Neutral Density (kg/m$^3$)') + axs[1].legend(loc='best') + axs[1].tick_params(axis='x', labelrotation=45) + if nfiles == 3: + axs[2].plot(times3, goce_rho3, color='b', alpha=0.3) + axs[2].plot(times3, goce_rho_smoothed3, color='b', label='GOCE') + axs[2].plot(times3, gitm_rho3, color='r', alpha=0.3) + axs[2].plot(times3, gitm_rho_smoothed3, color='r', label='GITM ('+tag3+')') + axs[2].set_xlabel('Time') + axs[2].set_ylabel('Neutral Density (kg/m$^3$)') + axs[2].legend(loc='best') + axs[2].tick_params(axis='x', labelrotation=45) + fig.suptitle('Neutral Density Along GOCE Orbit', fontsize=18, fontweight='bold') + fig.tight_layout() + plt.savefig(saveLoc + '/gitm_goce_rho_compare.png', dpi=300) + + # Make a figure for percent differences: + percDev_1 = percErr(gitm_rho1[validInds], goce_rho1[validInds]) + percDev_smoothed_1 = percErr(gitm_rho_smoothed1[validInds], goce_rho_smoothed1[validInds]) + percDev_2 = percErr(gitm_rho2[validInds], goce_rho2[validInds]) + percDev_smoothed_2 = percErr(gitm_rho_smoothed2[validInds], goce_rho_smoothed2[validInds]) + if nfiles == 3: + percDev_3 = percErr(gitm_rho3[validInds], goce_rho3[validInds]) + percDev_smoothed_3 = percErr(gitm_rho_smoothed3[validInds], goce_rho_smoothed3[validInds]) + f2 = plt.figure(figsize=(10,6)) + plt.axhline(y=0, linestyle='--', color='gray') + plt.plot(times1[validInds], percDev_1, color='c', alpha=0.3) + plt.plot(times1[validInds], percDev_smoothed_1, color='c', label='GITM ('+tag1+'): $\mu=$'+str(np.round(np.mean(percDev_smoothed_1), 2))) + plt.plot(times2, percDev_2, color='m', alpha=0.3) + plt.plot(times2, percDev_smoothed_2, color='m', label='GITM ('+tag2+'): $\mu=$'+str(np.round(np.mean(percDev_smoothed_2), 2))) + if nfiles == 3: + plt.plot(times3, percDev_3, color='limegreen', alpha=0.3) + plt.plot(times3, percDev_smoothed_3, color='forestgreen', label='GITM ('+tag3+'): $\mu=$'+str(np.round(np.mean(percDev_smoothed_3), 3))) + plt.xlabel('Time') + plt.ylabel('Percent Error in Neutral Density') + plt.legend(loc='best') + plt.title('Neutral Density Error', fontsize=18, fontweight='bold') + plt.tick_params(axis='x', labelrotation=45) + plt.tight_layout() + plt.savefig(saveLoc+'/gitm_goce_rho_error_compare.png', dpi=300) + + return 0 + +#------------------------------------------------------------------------------ +# SCRIPT USE +# example command line input: python thermo_compare.py gitm_compare_GOCE_20110805_v1.txt gitm_compare_GOCE_20110805_vOvation.txt FTA OP + +args = parse_args() + +fileout = combine_plot(args.file1[0], args.file2[0], args.tag1[0], args.tag2[0], args.file3[0], args.tag3[0], args.loc) diff --git a/srcPython/thermo_correlate.py b/srcPython/thermo_correlate.py new file mode 100755 index 00000000..5a8cd57e --- /dev/null +++ b/srcPython/thermo_correlate.py @@ -0,0 +1,203 @@ +#!/usr/bin/env python3 + +from datetime import datetime +from datetime import timedelta +import numpy as np +from scipy import signal +import matplotlib.pyplot as plt +from glob import glob +import os +from gitm_routines import * +from scipy.stats import pearsonr +import argparse + +# ------------------------------------------------------------------------------------ +# +# ------------------------------------------------------------------------------------ + +def get_args(): + + parser = argparse.ArgumentParser( + description = 'Plot Aether / GITM model results') + + parser.add_argument('-list', \ + action='store_true', default = False, \ + help = 'list variables in file') + + parser.add_argument('-var', \ + default = 3, type = int, \ + help = 'variable to plot (number)') + + parser.add_argument('-alt', metavar = 'alt', default = 350.0, type = int, \ + help = 'altitude : alt in km (closest)') + + parser.add_argument('filelist', nargs='+', \ + help = 'list files to use for generating plots') + + args = parser.parse_args() + + return args + + +def my_correlate(a, b): + af = a.flatten() + bf = b.flatten() + a = (af - np.mean(af)) / (np.std(af) * len(af)) + b = (bf - np.mean(bf)) / (np.std(bf)) + c = pearsonr(a, b) + return c[0] + +# ------------------------------------------------------------------------------------ +# Main code +# ------------------------------------------------------------------------------------ + +# Get the input arguments +args = get_args() + +targetAlt = args.alt + +files = args.filelist + +if (args.list): + data = read_gitm_one_file(files[0], [0]) + for iVar, var in enumerate(data['vars']): + print('%2d. ' % iVar, var.decode('utf-8').replace(" ","")) + exit() + +nTimes = 12 * 3 +nStep = 6 + +rtod = 180.0 / np.pi +dtor = 1.0 / rtod + +iVar = args.var + +nTimesTotal = len(files) +nSteps = int((nTimesTotal - nTimes) / nStep) + +# get lons, lats, alts: +vars = [0,1,2] +data = read_gitm_one_file(files[0], vars) +Alts = data[2][0][0]/1000.0; +Lons = data[0][:,0,0]*rtod; +Lats = data[1][0,:,0]*rtod; +Lats2d = data[1][:,:,0]*rtod; + +nLons = len(Lons) +nLats = len(Lats) +nAlts = len(Alts) + +allData = np.zeros((nTimesTotal, nLons, nLats)) + +dLon = Lons[1]-Lons[0] +dLat = Lats[1]-Lats[0] + +dAlt = np.abs(Alts - targetAlt) +iAlt = np.argmin(dAlt) + + +correlations = np.zeros((nSteps, nTimes)) +correlationsNorth = np.zeros((nSteps, nTimes)) +correlationsSouth = np.zeros((nSteps, nTimes)) +dts = np.zeros((nSteps, nTimes)) +allTimes = [] + +for iTime, file in enumerate(files): + data4d = read_gitm_one_file(file, [iVar]) + allData[iTime, :, :] = data4d[iVar][:, :, iAlt] + allTimes.append( data4d["time"]) + +for i in range(nSteps): + iStart = i * nStep + data0 = allData[iStart, :, :] + for iTime in range(nTimes): + data = allData[iTime + iStart, :, :] + correlations[i, iTime] = my_correlate(data, data0) + correlationsNorth[i, iTime] = my_correlate(data[Lats2d > 45.0], data0[Lats2d > 45.0]) + correlationsSouth[i, iTime] = my_correlate(data[Lats2d < -45.0], data0[Lats2d < -45.0]) + + dts[i, iTime] = (allTimes[iTime + iStart] - allTimes[iStart]).total_seconds() + +corrMeans = np.zeros(nTimes) +corrMeansNorth = np.zeros(nTimes) +corrMeansSouth = np.zeros(nTimes) +for iTime in range(nTimes): + corrMeans[iTime] = np.mean(correlations[:, iTime]) + corrMeansNorth[iTime] = np.mean(correlationsNorth[:, iTime]) + corrMeansSouth[iTime] = np.mean(correlationsSouth[:, iTime]) + +fig = plt.figure(figsize=(10, 8.5)) + +xLeft = 0.07 +xSize = 1.0 - xLeft - 0.02 +yBot = 0.06 +nY = 3 +ySpace = 0.03 +yS = (1.0 - ySpace * nY - yBot) / nY + +i = 2 +axG = fig.add_axes([xLeft, yBot + (yS+ySpace) * i, xSize, yS]) +i = 1 +axN = fig.add_axes([xLeft, yBot + (yS+ySpace) * i, xSize, yS]) +i = 0 +axS = fig.add_axes([xLeft, yBot + (yS+ySpace) * i, xSize, yS]) + +for iStep in range(nSteps): + axG.plot(dts[iStep, :]/60.0, correlations[iStep, :], color = 'k', alpha = 0.1) + axN.plot(dts[iStep, :]/60.0, correlationsNorth[iStep, :], color = 'b', alpha = 0.1) + axS.plot(dts[iStep, :]/60.0, correlationsSouth[iStep, :], color = 'r', alpha = 0.1) + +axG.plot(dts[1, :]/60.0, corrMeans, label = 'Global', color = 'k') +axN.plot(dts[1, :]/60.0, corrMeansNorth, label = 'North', color = 'b') +axS.plot(dts[1, :]/60.0, corrMeansSouth, label = 'South', color = 'r') + +axG.set_ylabel('Correlation (Global)') +axN.set_ylabel('Correlation (North Polar)') +axS.set_ylabel('Correlation (South Polar)') + +axS.set_xlabel('Delta-T (min)') + +sTime = allTimes[0].strftime('%b %d, %Y %H:%M UT') + ' - ' + \ + allTimes[-1].strftime('%b %d, %Y %H:%M UT') + +sTimeOut = allTimes[0].strftime('%Y%m%d%H') + '-' + \ + allTimes[-1].strftime('%Y%m%d%H') + +#varName = remap_variable_names(data4d['vars'][iVar].decode('utf-8').replace(" ","")) +varName = data4d['vars'][iVar].decode('utf-8').replace(" ","") +print(varName) + +axG.set_title(varName + '; ' + sTime) + +axG.set_ylim(0.0, 1.02) +axN.set_ylim(0.0, 1.02) +axS.set_ylim(0.0, 1.02) + +# Report out things at 90 minutes: +t0 = 90.0 # minutes + +diff = np.abs(t0 - dts[0, :]/60.0) +i90 = np.argmin(diff) + +axG.axvline(t0, linestyle = ':') +axG.text(t0 + 1, 0.9, 'Mean Corr : %4.2f' % corrMeans[i90]) +mini = np.min(correlations[:, i90]) +axG.scatter(t0, mini, color = 'k') +axG.text(t0 + 1, 0.05, 'Min Corr = %4.2f' % mini) + +axN.axvline(t0, linestyle = ':') +axN.text(t0 + 1, 0.9, 'Mean Corr : %4.2f' % corrMeansNorth[i90], color = 'b') +mini = np.min(correlationsNorth[:, i90]) +axN.scatter(t0, mini, color = 'b') +axN.text(t0 + 1, 0.05, 'Min Corr = %4.2f' % mini, color = 'b') + +axS.axvline(t0, linestyle = ':') +axS.text(t0 + 1, 0.9, 'Mean Corr : %4.2f' % corrMeansSouth[i90], color = 'r') +mini = np.min(correlationsSouth[:, i90]) +axS.scatter(t0, mini, color = 'r') +axS.text(t0 + 1, 0.05, 'Min Corr = %4.2f' % mini, color = 'r') + +fileout = 'corr_' + sTimeOut + '_var%02d.png' % iVar +print('Writing file : ' + fileout) +fig.savefig(fileout) + diff --git a/srcPython/thermo_guvi.py b/srcPython/thermo_guvi.py new file mode 100755 index 00000000..e765e639 --- /dev/null +++ b/srcPython/thermo_guvi.py @@ -0,0 +1,387 @@ +#!/usr/bin/env python + +# this basically makes it so that the machine doesn't have to figure +# out x-windows stuff: +import matplotlib as mpl +mpl.use('Agg') + +from datetime import datetime +from datetime import timedelta +import numpy as np +import matplotlib.pyplot as plt +import glob +import os +from gitm_routines import * +from guvi_read import * +from pylab import cm +import argparse + +#----------------------------------------------------------------------------- +# get arguments from the user +#----------------------------------------------------------------------------- + +def get_args(): + parser = argparse.ArgumentParser( + description = 'Calculate O/N2 from model results') + parser.add_argument('-on2', \ + action='store_true', default = False, \ + help = 'plot only on2') + parser.add_argument('filelist', nargs='+', \ + help = 'list files to use for generating plots') + args = parser.parse_args() + return args + +#----------------------------------------------------------------------------- +# vertically integrate the 3D data given the altitudes. +#----------------------------------------------------------------------------- + +def vertically_integrate(value, alts, calc3D = False): + [nLons, nLats, nAlts] = value.shape + integrated = np.zeros((nLons, nLats, nAlts)) + descending = np.arange(nAlts-2, -1, -1) + dz = alts[:,:,-1] - alts[:,:,-2] + integrated[:,:,-1] = value[:,:,-1] * dz + for i in descending: + dz = alts[:,:,i+1] - alts[:,:,i] + integrated[:,:,i] = integrated[:,:,i+1] + value[:,:,i] * dz + if (not calc3D): + integrated = integrated[:,:,0] + return integrated + +#----------------------------------------------------------------------------- +# make a time vs latitude map: +#----------------------------------------------------------------------------- + +def make_map(ix, iy, values, lats, lsts, nX, nY): + + asc = 0.0 + ascN = 0 + nPts = len(ix) + mapA = np.zeros([nX, nY+1]) + mapAc = np.zeros([nX, nY+1]) + + for iPt in range(nPts-1): + i = int(ix[iPt]) + j = int(iy[iPt]) + mapA[i][j] = mapA[i][j] + values[iPt] + mapAc[i][j] = mapAc[i][j] + 1 + if (np.abs(lats[iPt]) < 45.0): + asc = asc + lsts[iPt] + ascN = ascN + 1 + + if (ascN == 0): + ascN = 1 + asc = asc / ascN + mapA[mapAc > 0] = mapA[mapAc > 0] / mapAc[mapAc > 0] + mapA[mapAc == 0] = np.nan + + return mapA, asc + +#----------------------------------------------------------------------------- +# make a time vs latitude map: +#----------------------------------------------------------------------------- + +def plot_map(mTime, mLats, gitmM, guviM, ltnode, node, \ + miniV, maxiV, sTimeL, + miniLat, maxiLat, plotfile): + + fig = plt.figure(figsize = (10,10)) + plt.rcParams.update({'font.size': 14}) + + ax1 = fig.add_axes([0.075, 0.535, 1.0, 0.42]) + ax2 = fig.add_axes([0.075, 0.06, 1.0, 0.42]) + + cmap = mpl.cm.plasma + + cax1 = ax1.pcolor(mTime, mLats, guviM, \ + vmin = miniV, vmax = maxiV, cmap = cmap) + + cbar1 = fig.colorbar(cax1, ax = ax1, shrink = 0.5, pad=0.01) + ax1.set_ylim(miniLat, maxiLat) + ax1.set_xlim(np.min(mTime), np.max(mTime)) + ax1.set_ylabel('Latitude (deg)') + ax1.set_title('GUVI O/N2 ' + ltnode + node) + + cax2 = ax2.pcolor(mTime, mLats, gitmM, \ + vmin = miniV, vmax = maxiV, cmap = cmap) + cbar2 = fig.colorbar(cax2, ax = ax2, shrink = 0.5, pad=0.01) + ax2.set_ylim(miniLat, maxiLat) + ax2.set_xlim(np.min(mTime), np.max(mTime)) + ax2.set_xlabel(sTimeL) + ax2.set_ylabel('Latitude (deg)') + ax2.set_title('GITM O/N2') + + print('Writing plotfile : ', plotfile) + fig.savefig(plotfile) + plt.close() + + +#----------------------------------------------------------------------------- +#----------------------------------------------------------------------------- +# Main Code! +#----------------------------------------------------------------------------- +#----------------------------------------------------------------------------- + +# define some constants +rtod = 180.0 / np.pi +dtor = 1.0 / rtod + +# Get the input arguments +args = get_args() + +#headers = read_gitm_headers('3DALL') +headers = read_gitm_headers(files = args.filelist) + +# get lons, lats, alts: +iVars_ = [0,1,2] +iFile = 0 +data = read_gitm_one_file(headers["filename"][iFile], iVars_) +Alts3d = data[2]; +Alts = data[2][0,0,:]/1000.0; +Lons = data[0][:,0,0]*rtod; +Lats = data[1][0,:,0]*rtod; +[nLons, nLats, nAlts] = data[0].shape + +dLon = Lons[1]-Lons[0] +dLat = Lats[1]-Lats[0] + +vars = remap_variable_names(headers["vars"]) + +iO_ = vars.index('[O] (/m3)') +iN2_ = vars.index('[N2] (/m3)') + +nGitmFiles = len(headers["time"]) + +on2all = [] +times = [] + +for iFile, file in enumerate(headers["filename"]): + + # Read O and N2: + iVars_ = [iO_, iN2_] + data = read_gitm_one_file(file, iVars_) + times.append(headers["time"][iFile]) + oDensity = data[iO_] + n2Density = data[iN2_] + + intBnd = 1.0e21 + # 1e21/m2 is the integration boundary. + n2Int = vertically_integrate(n2Density, Alts3d, calc3D = True) + oInt = vertically_integrate(oDensity, Alts3d, calc3D = True) + on2 = np.zeros((nLons, nLats)) + + iAlts = np.arange(nAlts) + for iLat in range(nLats): + for iLon in range(nLons): + n21d = n2Int[iLon,iLat,:]/intBnd + o1d = oInt[iLon,iLat,:] + + i = iAlts[n21d < 1.0][0] + r = (1.0 - n21d[i]) / (n21d[i-1] - n21d[i]) + n2 = (r * n21d[i-1] + (1.0 - r) * n21d[i]) * intBnd + o = r * o1d[i-1] + (1.0 - r) * o1d[i] + on2[iLon, iLat] = o / n2 + + on2all.append(on2) + + +#guvidir = '/Users/ridley/Data/Gitm/run.202405/guvi/' +guvidir = '/backup/Data/Guvi/' + +# brute force! +oldday = -1 +guvifilelist = [] +for t in times: + if (t.day != oldday): + guvifile = guvidir + t.strftime('%Y/ON2_%Y_%jm.sav') + guvifilelist.append(guvifile) + oldday = t.day + +guvi = read_list_of_guvi_files(guvifilelist) + +period = np.mean(guvi['period']) + +saveTimes = [] +saveLats = [] +saveLons = [] +saveLts = [] +guviOn2 = [] +gitmOn2 = [] + +iAfter = 0 +for iTime, time in enumerate(guvi['times']): + + if ((time >= times[0]) & (time <= times[-1])): + + while (time > times[iAfter]): + iAfter = iAfter+1 + if (iAfter >= nGitmFiles-1): + break + + iBefore = iAfter-1 + + dt = (times[iAfter] - \ + times[iBefore]).total_seconds() + xt = (time - times[iBefore]).total_seconds() / dt + + lon = guvi['lons'][iTime] + lat = guvi['lats'][iTime] + + xLon = (lon-Lons[0])/dLon + iLon = int(xLon) + xLon = xLon - iLon + + yLat = (lat-Lats[0])/dLat + jLat = int(yLat) + yLat = yLat - jLat + + on2Before = \ + (1-xLon)*(1-yLat)*on2all[iBefore][iLon, jLat]+\ + ( xLon)*(1-yLat)*on2all[iBefore][iLon+1, jLat]+\ + (1-xLon)*( yLat)*on2all[iBefore][iLon, jLat+1]+\ + ( xLon)*( yLat)*on2all[iBefore][iLon+1, jLat+1] + on2After = \ + (1-xLon)*(1-yLat)*on2all[iAfter][iLon, jLat]+\ + ( xLon)*(1-yLat)*on2all[iAfter][iLon+1, jLat]+\ + (1-xLon)*( yLat)*on2all[iAfter][iLon, jLat+1]+\ + ( xLon)*( yLat)*on2all[iAfter][iLon+1, jLat+1] + + guviOn2.append(guvi['on2'][iTime]) + gitmOn2.append((1-xt) * on2Before + xt * on2After) + saveTimes.append(time) + saveLats.append(lat) + saveLons.append(lon) + ut = time.hour + time.minute/60.0 + time.second/3600.0 + localtime = (lon/15.0 + ut) % 12.0 + saveLts.append(localtime) + +nPts = len(saveTimes) +print(' -> Found ', nPts, ' GITM/GUVI points that match in time') + +# now convert to maps: + +StartTime = datetime(saveTimes[0].year, \ + saveTimes[0].month, \ + saveTimes[0].day, \ + saveTimes[0].hour) + +tInS = [] +for t in saveTimes: + tInS.append((t - StartTime).total_seconds()) +tInS = np.array(tInS) + +EndTimeS = tInS[-1] +dLat = 1.0 +nX = int(np.round(EndTimeS/period))+1 +nY = int(180.0/dLat) + +mapTime = [] +mapTime1D = [] +mapLats = np.zeros([nX, nY+1]) + +for i in range(nX): + mapLats[i,:] = np.arange(nY+1) * dLat - 90.0 #+ dLat/2.0 + dt = i * period - period/2 + temp = [ dt ] * (nY+1) + mapTime.append(temp) + mapTime1D.append(StartTime + timedelta(seconds = dt)) + +saveLats = np.array(saveLats) +mapTime = np.array(mapTime)/3600.0 + +ix = np.round(tInS/period) +iy = np.round((saveLats + 90.0)/dLat) + +maxLat = 82.0 + +gitmOn2 = np.array(gitmOn2) +guviOn2 = np.array(guviOn2) +saveLats = np.array(saveLats) +saveLts = np.array(saveLts) +ix = np.array(ix) +iy = np.array(iy) +# combined ascending and descending nodes: +#gitmOn2Map, localtime = make_map(ix, iy, gitmOn2, saveLats, saveLts, nX, nY) +#guviOn2Map, localtime = make_map(ix, iy, guviOn2, saveLats, saveLts, nX, nY) + +all = [gitmOn2, guviOn2] +maxi = np.max(all) +mini = np.min(all) + +sTime = saveTimes[0].strftime('%b %d, %Y %H:%M UT') + ' - ' + \ + saveTimes[-1].strftime('%b %d, %Y %H:%M UT Hours') +minLat = np.min(saveLats)-5 +maxLat = np.max(saveLats)+5 + +dlat = np.concatenate((saveLats[1:] - saveLats[0:-1],[0])) + +# ascending only: +gitmOn2a = gitmOn2[dlat > 0] +guviOn2a = guviOn2[dlat > 0] +saveLatsa = saveLats[dlat > 0] +saveLtsa = saveLts[dlat > 0] +ixa = ix[dlat > 0] +iya = iy[dlat > 0] + +gitmOn2MapA, localtimeA = \ + make_map(ixa, iya, gitmOn2a, saveLatsa, saveLtsa, nX, nY) +guviOn2MapA, localtimeA = \ + make_map(ixa, iya, guviOn2a, saveLatsa, saveLtsa, nX, nY) +sLt = '(Local Time = %4.1f, ' % localtimeA + +outfile = saveTimes[-1].strftime('guvi_gitm_on2%Y%m%d_asc.png') +node = 'Ascending)' + +plot_map(mapTime, mapLats, gitmOn2MapA, guviOn2MapA, sLt, node, \ + mini, maxi, sTime, + minLat, maxLat, outfile) + +# descending only: +gitmOn2d = gitmOn2[dlat < 0] +guviOn2d = guviOn2[dlat < 0] +saveLatsd = saveLats[dlat < 0] +saveLtsd = saveLts[dlat < 0] +ixd = ix[dlat < 0] +iyd = iy[dlat < 0] + +gitmOn2MapD, localtimeD = \ + make_map(ixd, iyd, gitmOn2d, saveLatsd, saveLtsd, nX, nY) +guviOn2MapD, localtimeD = \ + make_map(ixd, iyd, guviOn2d, saveLatsd, saveLtsd, nX, nY) +sLt = '(Local Time = %4.1f, ' % localtimeD + +outfile = saveTimes[-1].strftime('guvi_gitm_on2%Y%m%d_dec.png') +node = 'Descending)' + +plot_map(mapTime, mapLats, gitmOn2MapD, guviOn2MapD, sLt, node, \ + mini, maxi, sTime, + minLat, maxLat, outfile) + +# output some statistics: + +diff = gitmOn2 - guviOn2 + +globalMedianGuvi = np.median(guviOn2) +globalMedianGitm = np.median(gitmOn2) +globalMedianDiff = np.median(diff) / globalMedianGuvi * 100.0 +print('Global Medians (GUVI, GITM) : ', globalMedianGuvi, globalMedianGitm, globalMedianDiff) + +northMeanGuvi = np.mean(guviOn2[saveLats > 0.0]) +northMeanGitm = np.mean(gitmOn2[saveLats > 0.0]) +northRMS = np.sqrt(np.mean(diff**2)) / northMeanGuvi * 100.0 +print('North Means (GUVI, GITM, RMS) : ', northMeanGuvi, northMeanGitm, northRMS) +northStdGuvi = np.std(guviOn2[saveLats > 0.0]) / northMeanGuvi * 100.0 +northStdGitm = np.std(gitmOn2[saveLats > 0.0]) / northMeanGitm * 100.0 +print('North Std (GUVI, GITM) : ', northStdGuvi, northStdGitm) +northPolarMeanGuvi = np.mean(guviOn2[saveLats > 40.0]) +northPolarMeanGitm = np.mean(gitmOn2[saveLats > 40.0]) +print('North Polar Mean (GUVI, GITM) : ', northPolarMeanGuvi, northPolarMeanGitm) +southPolarMeanGuvi = np.mean(guviOn2[saveLats < -40.0]) +southPolarMeanGitm = np.mean(gitmOn2[saveLats < -40.0]) +print('South Polar Mean (GUVI, GITM) : ', southPolarMeanGuvi, southPolarMeanGitm) +northPolarStdGuvi = np.std(guviOn2[saveLats > 40.0]) / northPolarMeanGuvi * 100.0 +northPolarStdGitm = np.std(gitmOn2[saveLats > 40.0]) / northPolarMeanGitm * 100.0 +print('North Polar Std (GUVI, GITM) : ', northPolarStdGuvi, northPolarStdGitm) +southPolarStdGuvi = np.std(guviOn2[saveLats < -40.0]) / southPolarMeanGuvi * 100.0 +southPolarStdGitm = np.std(gitmOn2[saveLats < -40.0]) / southPolarMeanGitm * 100.0 +print('South Polar Std (GUVI, GITM) : ', southPolarStdGuvi, southPolarStdGitm) diff --git a/srcPython/thermo_on2.py b/srcPython/thermo_on2.py index b3206452..192d9f31 100755 --- a/srcPython/thermo_on2.py +++ b/srcPython/thermo_on2.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# this basically makes it so that the machine doesn't have to figure +# out x-windows stuff: +import matplotlib as mpl +mpl.use('Agg') + from datetime import datetime from datetime import timedelta import numpy as np @@ -17,9 +22,11 @@ def get_args(): parser = argparse.ArgumentParser( description = 'Calculate O/N2 from model results') - parser.add_argument('-something', \ + parser.add_argument('-on2', \ action='store_true', default = False, \ - help = 'plot something') + help = 'plot only on2') + parser.add_argument('filelist', nargs='+', \ + help = 'list files to use for generating plots') args = parser.parse_args() return args @@ -44,14 +51,78 @@ def vertically_integrate(value, alts, calc3D = False): # Make a plot with a color bar #----------------------------------------------------------------------------- -def make_plot(ax, lons, lats, vals, var): - cax = ax.pcolor(lons, lats, vals) +def make_plot(ax, lons, lats, vals, var, doLabelY = True, minmax = []): + + if (len(minmax) == 2): + mini = minmax[0] + maxi = minmax[1] + else: + maxi = np.max(np.abs(vals)) + mini = np.min(vals) + + cmap = mpl.cm.plasma + cax = ax.pcolor(lons, lats, vals, vmin = mini, vmax = maxi, cmap = cmap) + ax.set_aspect(1) - ax.set_ylim(-90,90) - ax.set_xlim(0,360) + ax.set_ylim(-90, 90) + ax.set_xlim(0, 360) ax.set_title(var) - cbar = fig.colorbar(cax, ax=ax, shrink = 0.5, pad=0.02) - cbar.set_label(var, rotation=90) + ax.set_xlabel('Longitude (deg)') + if (doLabelY): + ax.set_ylabel('Latitude (deg)') + else: + ax.set_yticks([]) + + cbar = fig.colorbar(cax, ax = ax, shrink = 0.5, pad=0.01) + #cbar.set_label(var, rotation=90) + + return + + +# ------------------------------------------------------------------- +# This gives the axes for multi-row, multi-column plots. +# Inputs: +# - figIn: this is the figure (e.g., fig = plt.figure(figsize=(10, 10))) +# - nPlots: number of plots in total +# - yBottom: space desired below the bottom plot +# - yTop: space desired above the top plot +# - yBuffer: space desired between each plot +# Optional Inputs: +# - xLeft: space desired to the left of the plots +# - xRight: space desired to the right of the plots +# Outputs: +# - ax: array of axes +# ------------------------------------------------------------------- + +def get_axes(figIn, + nPlots, + yBottom, + yTop, + yBuffer, + xLeft, + xRight, + xBuffer): + + n = np.sqrt(nPlots) + nX = int(np.ceil(n)) + nY = int(np.ceil(nPlots / nX)) + + # plot size in y direction: + ySize = (1.0 - yBottom - yTop) / nY - yBuffer * (nY - 1) / nY + xSize = (1.0 - xLeft - xRight) / nX - xBuffer * (nX - 1) / nX + + ax = [] + for iPlot in range(nPlots): + iX = int(iPlot % nX) + iY = int(iPlot / nX) + # I want to reverse y, so that 0 is the top left plot: + iY = nY - iY - 1 + ax.append(figIn.add_axes([xLeft + iX * (xSize + xBuffer), + yBottom + iY * (ySize + yBuffer), + xSize, + ySize])) + + return ax #----------------------------------------------------------------------------- #----------------------------------------------------------------------------- @@ -66,7 +137,9 @@ def make_plot(ax, lons, lats, vals, var): # Get the input arguments args = get_args() -headers = read_gitm_headers('3DALL') +#headers = read_gitm_headers('3DALL') +headers = read_gitm_headers(files = args.filelist) + nGitmFiles = len(headers["time"]) iFile = 0 @@ -74,7 +147,7 @@ def make_plot(ax, lons, lats, vals, var): # get lons, lats, alts: iVars_ = [0,1,2] data = read_gitm_one_file(headers["filename"][iFile], iVars_) -Alts3d = data[2]; +Alts3d = data[2] Alts = data[2][0,0,:]/1000.0; Lons2d = data[0][:,:,0]*rtod; Lats2d = data[1][:,:,0]*rtod; @@ -86,11 +159,18 @@ def make_plot(ax, lons, lats, vals, var): iN2_ = vars.index('[N2] (/m3)') ie_ = vars.index('[e-] (/m3)') +on2all = [] +tecall = [] +nmf2all = [] +hmf2all = [] +times = [] + for iFile, file in enumerate(headers["filename"]): # Read O and N2: iVars_ = [iO_, iN2_, ie_] data = read_gitm_one_file(file, iVars_) + times.append(headers["time"][iFile]) oDensity = data[iO_] n2Density = data[iN2_] eDensity = np.array(data[ie_]) @@ -119,27 +199,55 @@ def make_plot(ax, lons, lats, vals, var): ie = np.argmax(e1d) nmf2[iLon, iLat] = e1d[ie] hmf2[iLon, iLat] = Alts3d[iLon, iLat, ie]/1000.0 - - fig = plt.figure(figsize=(10, 5)) + on2all.append(on2) + tecall.append(tec) + nmf2all.append(nmf2) + hmf2all.append(hmf2) + + +on2MM = [np.min(on2all), np.max(on2all)] + +for iFile, file in enumerate(headers["filename"]): + + fig = plt.figure(figsize=(10, 6)) ax = [] cax = [] cbar = [] - size = 0.42 - ax.append(fig.add_axes([0.05, 0.55, size, size])) - ax.append(fig.add_axes([0.55, 0.55, size, size])) - ax.append(fig.add_axes([0.05, 0.05, size, size])) - ax.append(fig.add_axes([0.55, 0.05, size, size])) - - make_plot(ax[0], Lons2d, Lats2d, on2, 'O/N2 Ratio') - make_plot(ax[1], Lons2d, Lats2d, tec, 'TEC (1e16/m2)') - make_plot(ax[2], Lons2d, Lats2d, nmf2/1e12, 'NMF2 (1e12/m3)') - make_plot(ax[3], Lons2d, Lats2d, hmf2, 'HMF2 (km)') - - time = headers["time"][iFile] + time = times[iFile] sTime = time.strftime('%y%m%d_%H%M%S') - outfile = 'all_'+sTime+'.png' + plotTime = time.strftime(' at %B %d, %Y %H%M UT') + + if (not args.on2): + nPlots = 4 + yBot = 0.00 + yTop = 0.00 + yBuf = 0.00 + xLef = 0.065 + xRig = 0.00 + xBuf = 0.00 + lead = 'all_' + else: + nPlots = 1 + yBot = 0.00 + yTop = 0.00 + yBuf = 0.00 + xLef = 0.065 + xRig = 0.00 + xBuf = 0.00 + lead = 'on2_' + ax = get_axes(fig, nPlots, yBot, yTop, yBuf, xLef, xRig, xBuf) + + make_plot(ax[0], Lons2d, Lats2d, on2all[iFile], \ + 'O/N2 Ratio' + plotTime, doLabelY = True, + minmax = on2MM) + if (not args.on2): + make_plot(ax[1], Lons2d, Lats2d, tec, 'TEC (1e16/m2)', doLabelY = False) + make_plot(ax[2], Lons2d, Lats2d, nmf2/1e12, 'NMF2 (1e12/m3)') + make_plot(ax[3], Lons2d, Lats2d, hmf2, 'HMF2 (km)', doLabelY = False) + + outfile = lead + sTime + '.png' print('--> Writing file : ' + outfile) plt.savefig(outfile) plt.close() diff --git a/srcPython/thermo_vista.py b/srcPython/thermo_vista.py new file mode 100755 index 00000000..c34f5d8e --- /dev/null +++ b/srcPython/thermo_vista.py @@ -0,0 +1,392 @@ +#!/usr/bin/env python + +# this basically makes it so that the machine doesn't have to figure +# out x-windows stuff: +import matplotlib as mpl +mpl.use('Agg') + +from datetime import datetime, timedelta +import numpy as np + +import matplotlib.pyplot as plt +import glob +import os +import argparse + +from gitm_routines import * +from vista_read import * + +# ------------------------------------------------------------------- +# This gives the axes for multi-row, but single column plots. +# Inputs: +# - figIn: this is the figure (e.g., fig = plt.figure(figsize=(10, 10))) +# - nPlots: number of plots in total +# - yBottom: space desired below the bottom plot +# - yTop: space desired above the top plot +# - yBuffer: space desired between each plot +# Optional Inputs: +# - xLeft: space desired to the left of the plots +# - xRight: space desired to the right of the plots +# Outputs: +# - ax: array of axes +# ------------------------------------------------------------------- + +def get_axes_one_column(figIn, + nPlots, + yBottom, + yTop, + yBuffer, + xLeft = 0.11, + xRight = 0.02): + + # plot size in y direction: + ySize = (1.0 - yBottom - yTop) / nPlots - yBuffer * (nPlots - 1) / nPlots + xSize = 1.0 - xLeft - xRight + + ax = [] + for iPlot in range(nPlots): + # I want to reverse this, so that 0 is the top plot: + i = nPlots - iPlot - 1 + ax.append(figIn.add_axes([xLeft, + yBottom + i * (ySize + yBuffer), + xSize, + ySize])) + + return ax + + + +#----------------------------------------------------------------------------- +# get arguments from the user +#----------------------------------------------------------------------------- + +def get_args(): + parser = argparse.ArgumentParser( + description = 'Compare GITM and VISTA results') + parser.add_argument('filelist', nargs='+', \ + help = 'list files to use for generating plots') + args = parser.parse_args() + return args + +#----------------------------------------------------------------------------- +# vertically integrate the 3D data given the altitudes. +#----------------------------------------------------------------------------- + +def vertically_integrate(value, alts, calc3D = False): + [nLons, nLats, nAlts] = value.shape + integrated = np.zeros((nLons, nLats, nAlts)) + descending = np.arange(nAlts-2, -1, -1) + dz = alts[:,:,-1] - alts[:,:,-2] + integrated[:,:,-1] = value[:,:,-1] * dz + for i in descending: + dz = alts[:,:,i+1] - alts[:,:,i] + integrated[:,:,i] = integrated[:,:,i+1] + value[:,:,i] * dz + if (not calc3D): + integrated = integrated[:,:,0] + return integrated + +#----------------------------------------------------------------------------- +# +#----------------------------------------------------------------------------- + +def calc_tec_stats(time, lats, lons, tecmap): + # calculate the average in different regions of the globe: + # - assume grid is in degrees + + ut = time.hour + time.minute/60.0 + time.second/3600.0 + lts = (lons/15.0 + ut) % 24 + + lts2d, lats2d = np.meshgrid(lts, lats) + + #localtimes = lons2d/15.0 #(lons2d/15.0 + ut) % 24.0 + + # assume a uniform grid to calculate the area of each cell: + dlat = lats[1] - lats[0] + dlon = lons[1] - lons[0] + # take 120 km altitude, convert to m + r = (6372.0 + 120.0) * 1000.0 + area = r * r * dlat * dlon * np.cos(lats2d * np.pi / 180.0) + + stats = {} + std = {} + + # total TEC: + stats['global'] = np.sum(tecmap * area) / np.sum(area) + std['global'] = np.std(tecmap) + + # north polar TEC: + polar = 60.0 + stats['north_polar'] = np.sum(tecmap[lats2d >= polar] * \ + area[lats2d >= polar]) / \ + np.sum(area[lats2d >= polar]) + std['north_polar'] = np.std(tecmap[lats2d >= polar]) + + stats['south_polar'] = np.sum(tecmap[lats2d <= -polar] * \ + area[lats2d <= -polar]) / \ + np.sum(area[lats2d <= -polar]) + std['south_polar'] = np.std(tecmap[lats2d <= -polar]) + + mid = 30.0 + stats['equator'] = np.sum(tecmap[np.abs(lats2d) < mid] * \ + area[np.abs(lats2d) < mid]) / \ + np.sum(area[np.abs(lats2d) < mid]) + std['equator'] = np.std(tecmap[np.abs(lats2d) < mid]) + # make a normalized grid (north mid): + dl = (polar - mid)/2 + c = (polar + mid)/2.0 + l2d = np.abs(lats2d - c) / dl + areas = area[(l2d <= 1)] + stats['north_mid'] = np.sum(tecmap[(l2d <= 1)] * \ + area[(l2d <= 1)]) / \ + np.sum(area[(l2d <= 1)]) + std['north_mid'] = np.std(tecmap[(l2d <= 1)]) + # make a normalized grid (south mid): + dl = (polar - mid)/2 + c = -(polar + mid)/2.0 + l2d = np.abs(lats2d - c) / dl + areas = area[(l2d <= 1)] + stats['south_mid'] = np.sum(tecmap[(l2d <= 1)] * \ + area[(l2d <= 1)]) / \ + np.sum(area[(l2d <= 1)]) + std['south_mid'] = np.std(tecmap[(l2d <= 1)]) + + lats2dmod = np.abs(lats2d) + 0.001 + tonoon = np.abs(lts2d - 12.0) + # daytime is defined as tonoon < 5.0 + lats2dmod[tonoon > 5.0] = lats2dmod[tonoon > 5.0] + 99.0 + stats['day_eq'] = np.mean(tecmap[lats2dmod < mid]) + #stats['day_eq'] = np.sum(tecmap[lats2dmod < mid] * \ + # area[lats2dmod < mid]) / \ + # np.sum(area[lats2dmod < mid]) + std['day_eq'] = np.std(tecmap[lats2dmod < mid]) + + lats2dmod = lats2d + 0.001 + tonoon = np.abs(lts2d - 12.0) + # nighttime is defined as tonoon > 7.0 + # regions to EXCLUDE: + lats2dmod[tonoon < 7.0] = lats2dmod[tonoon < 7.0] + 99.0 + + # make a normalized grid (north mid): + polar = 50.0 + mid = 40.0 + dl = (polar - mid)/2 + c = (polar + mid)/2.0 + l2d = np.abs(lats2dmod - c) / dl + areas = area[(l2d <= 1)] + stats['n_mid_n'] = np.sum(tecmap[(l2d <= 1)] * \ + area[(l2d <= 1)]) / \ + np.sum(area[(l2d <= 1)]) + std['n_mid_n'] = np.std(tecmap[(l2d <= 1)]) + + # make a normalized grid (north mid): + dl = (polar - mid)/2 + c = -(polar + mid)/2.0 + l2d = np.abs(lats2dmod - c) / dl + areas = area[(l2d <= 1)] + stats['s_mid_n'] = np.sum(tecmap[(l2d <= 1)] * \ + area[(l2d <= 1)]) / \ + np.sum(area[(l2d <= 1)]) + std['s_mid_n'] = np.std(tecmap[(l2d <= 1)]) + + + return stats, std + +#----------------------------------------------------------------------------- +# Main Code: +#----------------------------------------------------------------------------- + +# define some constants +rtod = 180.0 / np.pi +dtor = 1.0 / rtod + +dir = '/Users/ridley/Data/VISTA/' + +file = dir + 'VISTA_110805.hdf5' + +vista = read_vista_file(file) +vLats = vista['lats'] +vLocalTimes = vista['localtimes'] + +# Get the input arguments +args = get_args() + +headers = read_gitm_headers(files = args.filelist) + +vars = remap_variable_names(headers["vars"]) +ie_ = vars.index('[e-] (/m3)') + +# get lons, lats, alts: +iVars_ = [0,1,2] +iFile = 0 +data = read_gitm_one_file(headers["filename"][iFile], iVars_) +Alts3d = data[2]; +Alts = data[2][0,0,:]/1000.0; +Lons = data[0][:,0,0]*rtod; +Lats = data[1][0,:,0]*rtod; +[nLons, nLats, nAlts] = data[0].shape + +gTec = [] +gTimes = [] + +for iFile, file in enumerate(headers["filename"]): + + iVars_ = [ie_] + data = read_gitm_one_file(file, iVars_) + gTimes.append(headers["time"][iFile]) + + eDensity = np.array(data[ie_]) + tec = vertically_integrate(eDensity, Alts3d)/1e16 + gTec.append(tec) + +time = vista['times'][0] +vTec = vista['tec'][:,:,0] + +stats1 = calc_tec_stats(time, vLats, vLocalTimes*15.0, vTec) + +def find_time(tArray, tGoal): + tDiff = [] + for t in tArray: + tDiff.append(np.abs((t - tGoal).total_seconds())) + i_ = np.argmin(tDiff) + return i_ + +keys = ['global', 'north_polar', 'north_mid', 'n_mid_n', \ + 'equator', 'day_eq', \ + 'south_mid', 's_mid_n', 'south_polar'] + +nStats = len(keys) +gStats = np.zeros((len(gTimes), nStats)) +vStats = np.zeros((len(gTimes), nStats)) +gStd = np.zeros((len(gTimes), nStats)) +vStd = np.zeros((len(gTimes), nStats)) + +for iTime, gTime in enumerate(gTimes): + + iT_ = find_time(vista['times'], gTime) + vTecLT = vista['tec'][:, :, iT_] + + vTime = vista['times'][iT_] + UT = gTime.hour + gTime.minute/60.0 + gTime.second/3600.0 + #vLons = ((vLocalTimes - UT) * 15.0 + 360.0) % 360.0 + vLons = vLocalTimes * 15.0 + iShift = int(UT * 15.0) + + vTec = np.roll(vTecLT, shift = -iShift, axis = 1) + + fig = plt.figure(figsize = (10,10)) + plt.rcParams.update({'font.size': 14}) + + ax1 = fig.add_axes([0.075, 0.535, 1.0, 0.42]) + ax2 = fig.add_axes([0.075, 0.06, 1.0, 0.42]) + + cmap = mpl.cm.plasma + + all = [vTec, gTec[iTime]] + maxi = np.max([np.max(vTec), np.max(gTec[iTime])]) + mini = 0.0 + + cax1 = ax1.pcolor(vLons, vLats, vTec, cmap = cmap, vmin = mini, vmax = maxi) + cbar1 = fig.colorbar(cax1, ax = ax1, shrink = 0.5, pad=0.01) + #ax1.set_ylim(miniLat, maxiLat) + #ax1.set_xlim(np.min(mTime), np.max(mTime)) + ax1.set_ylabel('Latitude (deg)') + plotTime = vTime.strftime(' at %B %d, %Y %H%M UT') + ax1.set_title('VISTA TEC' + plotTime) + ax1.axhline(-60) + ax1.axhline(-30) + ax1.axhline(30) + ax1.axhline(60) + + cax2 = ax2.pcolor(Lons, Lats, np.transpose(gTec[iTime]), \ + cmap = cmap, shading = 'auto', vmin = mini, vmax = maxi) + cbar2 = fig.colorbar(cax2, ax = ax2, shrink = 0.5, pad=0.01) + ax2.set_ylabel('Latitude (deg)') + ax2.set_xlabel('Longitude (deg)') + plotTime = gTime.strftime(' at %B %d, %Y %H%M UT') + ax2.set_title('GITM TEC' + plotTime) + ax2.axhline(-60) + ax2.axhline(-30) + ax2.axhline(30) + ax2.axhline(60) + + sTime = gTime.strftime('%y%m%d_%H%M%S') + + plotfile = 'vista_gitm_' + sTime + '.png' + print('Writing plotfile : ', plotfile) + fig.savefig(plotfile) + plt.close() + + g, gs = calc_tec_stats(gTime, Lats, Lons, np.transpose(gTec[iTime])) + v, vs = calc_tec_stats(vTime, vLats, vLons, vTec) + for i, key in enumerate(keys): + gStats[iTime, i] = g[key] + gStd[iTime, i] = gs[key] + vStats[iTime, i] = v[key] + vStd[iTime, i] = vs[key] + +fig = plt.figure(figsize = (10,10)) +plt.rcParams.update({'font.size': 14}) + +yBottom = 0.06 +yTop = 0.04 +yBuffer = 0.005 +ax = get_axes_one_column(fig, + len(keys), + yBottom, + yTop, + yBuffer, + xLeft = 0.11, + xRight = 0.02) + +c = np.zeros((len(keys))) +r = np.zeros((len(keys))) + +nT = len(gStats[:,i]) +for i, key in enumerate(keys): + ax[i].plot(gTimes, gStats[:,i], label = 'GITM', color = 'b') + ax[i].plot(gTimes, vStats[:,i], label = 'VISTA', color = 'r') + for iT in range(nT): + x = [gTimes[iT], gTimes[iT]] + y = gStats[iT, i] + [gStd[iT, i], -gStd[iT, i]] + ax[i].plot(x, y, color = 'b', linewidth = 3, alpha = 0.2) + y = vStats[iT, i] + [vStd[iT, i], -vStd[iT, i]] + ax[i].plot(x, y, color = 'r', linewidth =2, alpha = 0.2) + + + ax[i].set_ylabel(key + '\nTEC') + ax[i].legend() + mini = np.min([gStats[:,i], vStats[:,i]]) + maxi = np.max([gStats[:,i], vStats[:,i]]) + c[i] = (maxi + mini)/2 + r[i] = (maxi - mini) + +half = np.max([gStd, vStd]) + +range = np.max(r) * 1.1 +if (half > range): + range = half + +for i, key in enumerate(keys): + ax[i].set_ylim(c[i] - range/2, c[i] + range/2) + +sTime = gTimes[0].strftime('%b %d, %Y %H:%M UT') + ' - ' + \ + gTimes[-1].strftime('%b %d, %Y %H:%M UT Hours') + +ax[-1].set_xlabel(sTime) +ax[0].set_title('GITM Comparisons with VISTA') + +sTime = gTimes[0].strftime('%y%m%d') +plotfile = 'vista_gitm_lines_' + sTime + '.png' +print('Writing plotfile : ', plotfile) +fig.savefig(plotfile) +plt.close() + + +package = {'times': gTimes, + 'alt': -1.0} +for i, key in enumerate(keys): + package['gitm_' + key] = gStats[:, i] + package['vista_' + key] = vStats[:, i] + +write_log(package, fileHeader = 'vista_gitm', + message = 'From thermo_vista.py') diff --git a/srcPython/timefile_compare.py b/srcPython/timefile_compare.py new file mode 100644 index 00000000..a93e3020 --- /dev/null +++ b/srcPython/timefile_compare.py @@ -0,0 +1,393 @@ +# Takes in .txt file outputs from thermo_plot.py and compares the results of TWO runs. + +# Top-level imports +import os +import numpy as np +import matplotlib.pyplot as plt +import matplotlib +matplotlib.use('Qt5Agg') +import argparse +from datetime import datetime, timedelta +from scipy.interpolate import InterpolatedUnivariateSpline +from scipy.stats import linregress +import pdb + +# ---------------------------------------------------------------------------------------------------------------------- +# Global Plotting Settings: +import matplotlib.pylab as pylab +params = {'legend.fontsize': 'large', + 'figure.figsize': (16, 8), + 'axes.labelsize': 'large', + 'axes.titlesize':'x-large', + 'xtick.labelsize':'x-large', + 'ytick.labelsize':'x-large'} +pylab.rcParams.update(params) +# ---------------------------------------------------------------------------------------------------------------------- + +# ---------------------------------------------------------------------- +# Function to parse input arguments +# ---------------------------------------------------------------------- + +def parse_args(): + parser = argparse.ArgumentParser(description='Compare the outputs of two GITM runs from thermo_plot.py.') + parser.add_argument('var', nargs=1, \ + help='The variable being plotted.') + parser.add_argument('file1', nargs=1, \ + help='Output .txt file for first GITM run.') + parser.add_argument('file2', nargs=1, \ + help='Output .txt file for second GITM run.') + parser.add_argument('tag1', nargs=1, help='Label for first GITM run.') + parser.add_argument('tag2', nargs=1, help='Label for second GITM run.') + parser.add_argument('file3', nargs=1, help='Output .txt file for third GITM run.', default=None) + parser.add_argument('tag3', nargs=1, help='Label for third GITM run.', default=None) + parser.add_argument('loc', nargs='?', metavar='location',\ + help='Location with which to save the combined figure.', default=os.getcwd()) + + args = parser.parse_args() + + return args + +# ---------------------------------------------------------------------------------------------------------------------- +# Helper functions +# ---------------------------------------------------------------------------------------------------------------------- +def percErr(experimental, theoretical): + return np.divide(np.subtract(experimental, theoretical), np.abs(theoretical)) * 100 + +def read_thermo(filename): + """ + Read the output of thermo_goce.py text file, and return information about the contents. + """ + times = [] + gitm_var = [] + print('Reading data from '+filename+'...') + with open(filename, 'r') as File: + lines = File.readlines() + i = 0 + for line in lines: + if i == 8: + altitude = float(line.split()[0]) + if i >= 14: + # Collect the observations by parsing each line at a time... + splitted = line.split() + times.append( + datetime(int(splitted[0]), int(splitted[1]), int(splitted[2]), int(splitted[3]), int(splitted[4]), + int(splitted[5]))) + gitm_var.append(float(splitted[6])) + i += 1 + print('Complete!\n') + return altitude, np.asarray(times), np.asarray(gitm_var) + +def format_hour(hour_value): + hour_str = str(hour_value) + if len(hour_str) > 2: + return f"{hour_str[:2]}:{hour_str[2:4]}:{hour_str[4:]}" + return f"{hour_str.zfill(2)}:00:00" + +def read_omni_txt_file(fname): + """ + Performs the same function as 'readOMNI' below, but for a .txt file obtained with the wget command. + :param fname: str + The name of the file where the OMNI data is stored. + :param numVars: int + The number of variables in the data. Ensures that the data are parsed correctly. + :return omniTimes: ndarray + A 1D array of datetimes for the omni data. + :return omniLabels: ndarray + A 1D array of strings of each of the variables in the OMNI data. + :return omniDataArray: ndarray + A 2D array with all the OMNI data. The shape is nxm, where n is the number of time samples (each hour) and + m is the number of variables collected at each time sample. + """ + times = [] + data = [] + i = 0 + with open(fname, "r") as f: + contents = f.readlines() + numLines = len(contents) + for line in contents: + if i >= 9 and i < numLines-15: + lineInfo = line.split() + times.append( datetime(int(lineInfo[0]), 1, 1) + timedelta(days=int(lineInfo[1])-1) + timedelta(hours=int(lineInfo[2])) ) + data.append( float(lineInfo[-1]) ) + i += 1 + + return times, data + +def grab_omni_dst(dateStart, dateEnd): + """ + Automatically obtain the Dst index from NASA OMNIWeb + Parameters + ---------- + dateStart: datetime + The start date as a datetime object. + dateEnd: datetime + The end date as a dateteime object. + Return: + ------- + times: ndarray + Datetimes values over the time interva. + dst: ndarray + The actual Dst values. + """ + # Download the file. + str1 = 'wget --post-data "activity=retrieve&res=hour&spacecraft=omni2&start_date=' + str2 = "&end_date=" + str3 = ( + "scale=Linear&ymin=&ymax=&view=0&charsize=&xstyle=0&ystyle=0&symbol=0&symsize=&linestyle=solid&table=0&" + 'imagex=640&imagey=480&color=&back=" https://omniweb.gsfc.nasa.gov/cgi/nx1.cgi -O' + ) + startDate, endDate = dateStart.strftime("%Y-%m-%d"), (dateEnd + timedelta(days=1)).strftime("%Y-%m-%d") # Ceiling the end date for truncating later... + fileToSave = 'omni_dst_'+startDate+'_'+endDate+'.txt' + # override=True + if os.path.isfile(fileToSave): # and override==False: + print('Data already exists. Reading it in...') + else: + cmd = ( + str1 + + startDate.replace("-", "") + + str2 + + endDate.replace("-", "") + + "&vars=40&" + + str3 + + " " + + fileToSave + ) + os.system(cmd) + + # Read the OMNI file and return the data: + times, data = read_omni_txt_file(fileToSave) + + return np.asarray(times), np.asarray(data) + +def getVarStr(varNum): + masterList=[ + [0, 'Longitude'], + [1, 'Latitude'], + [2, 'Altitude'], + [3, 'Rho'], + [4, 'O(3P)'], + [5, 'O2'], + [6, 'N2'], + [7, 'N(4S)'], + [8, 'NO'], + [9, 'He'], + [10, 'N(2D)'], + [11, 'N(2P)'], + [12, 'H'], + [13, 'CO2'], + [14, 'O(1D)'], + [15, 'Temperature'], + [16, 'Vn(east)'], + [17, 'Vn(north)'], + [18, 'Vn(up)'], + [19, 'Vn(up, O(3P))'], + [20, 'Vn(up, O2)'], + [21, 'Vn(up, N2)'], + [22, 'Vn(up, N(4S))'], + [23, 'Vn(up, NO)'], + [24, 'Vn(up, He)'], + [25, 'O_4SP_ +'], + [26, 'NO +'], + [27, 'O2 +'], + [28, 'N2 +'], + [29, 'N +'], + [30, 'O(2D)+'], + [31, 'O(2P)+'], + [32, 'H +'], + [33, 'He +'], + [34, 'e -'], + [35, 'eTemperature'], + [36, 'iTemperature'], + [37, 'Vi(east)'], + [38, 'Vi(north)'], + [39, 'Vi(up)'] + ] + nums = np.array([element[0] for element in masterList]) + myInd = np.where(nums == int(varNum))[0][0] + strs = np.array([element[-1] for element in masterList]) + return strs[myInd] + +def combine_plot(var, file1, file2, tag1, tag2, file3=None, tag3=None, saveLoc=None): + """ + Take two (or three) .txt files generated by thermo_goce.py (corresponding to different GITM runs over the same time period) + and combine their results into a single figure. Generates and saves a .png to a user-defined location. + Parameters + ---------- + var: int + The variable being plotted. + file1: str + The location/name of the first .txt file. + file2: + The location/name of the second .txt file. + tag1: str + A label for the first GITM run - used in the plot legend. + tag2: str + A label for the second GITM run - used in the plot legend. + file3: str + The location/name of the third .txt file. + tag3: str + A label for the third GITM run - used in the plot legend. + saveLoc: str + The full path (incl. the filename) with which to save the figure. Default is None, in which case the figure is + saved to the current working directory + Returns + ------- + Nothing. + """ + # Adjusting labels based on the variable being plotted: + varString = getVarStr(var) + + # Read in the contents of the first file: + altitude1, times1, gitm_var = read_thermo(file1) + + # Read in the contents of the second file: + altitude2, times2, gitm_var2 = read_thermo(file2) + + if file3: + nfiles = 3 + altitude3, times3, gitm_var3 = read_thermo(file3) + else: + nfiles = 2 + + # Make a plot of the time series for both runs - the plot includes the time series on the top and Dst over the sam + # time period on the bottom. If there is a storm during the time period identified, it will be automatically + # detected and its phases classified using the standards of Katus, et al. 2013 (doi:10.1029/2012JA017915) + validInds = np.where((times1 >= times2[0]) & (times1 <= times2[-1]))[0] + # Grab Dst during the time period: + times_dst, dst = grab_omni_dst(times2[0], times2[-1]) + if np.min(dst) < -100: + # Identify the beginning of the Main Phase and the Peak: + peak_ind = np.argmin(dst) + peak_time = times_dst[peak_ind] + peak_dst = dst[peak_ind] + # + main_phase_start_ind = np.argmax(dst[np.where((times_dst >= peak_time - timedelta(hours=24)) & (times_dst <= peak_time))[0]]) + main_phase_start_time = times_dst[np.where((times_dst >= peak_time - timedelta(hours=24)) & (times_dst <= peak_time))[0]][main_phase_start_ind] + true_main_phase_start_ind = np.where(times_dst == main_phase_start_time)[0][0] + main_phase_start_dst = dst[true_main_phase_start_ind] + + #pdb.set_trace() + fig, axs = plt.subplots(2, 1, layout='constrained') + axs[0].plot(times1[validInds], gitm_var[validInds], color='c', lw=4, label='GITM ('+tag1+')') + axs[0].plot(times2, gitm_var2, color='m', lw=4, label='GITM ('+tag2+')') + if nfiles == 3: + axs[0].plot(times3, gitm_var3, color='forestgreen', lw=4, label='GITM ('+tag3+')') + else: + axs2 = axs[0].twinx() + axs2.plot(times1[validInds], np.subtract(gitm_var[validInds], gitm_var2), color='b', linestyle='--') + axs2.set_ylabel('Difference') + axs2.tick_params(axis='y', labelcolor='b') + axs[0].legend(loc='best') + axs[0].set_xlabel('Time') + axs[0].set_ylabel('Global Integral of '+varString) + # + validInds2 = np.where((times_dst >= times2[0]) & (times_dst <= times2[-1]))[0] + axs[1].step(times_dst[validInds2], dst[validInds2], 'k-', lw=4) + if np.min(dst) < -100: + axs[0].axvline(x=main_phase_start_time, color='g', linestyle='-.', lw=4, label='Main Phase') + axs[0].axvline(x=peak_time, color='r', linestyle='-.', lw=4, label='Peak') + axs[1].axvline(x=main_phase_start_time, color='g', linestyle='-.', lw=4, label='Main Phase') + axs[1].axvline(x=peak_time, color='r', linestyle='-.', lw=4, label='Peak') + axs[1].legend(loc='best') + axs[1].set_xlabel('Dst (nT)') + # Save the figure: + fig.suptitle('Evolution of Globally-Integrated '+varString+' at '+str(altitude1)+' km', fontsize=20, fontweight='bold') + plt.savefig(saveLoc+'/gitm_time_series_comparison.png', dpi=300) + + if np.min(dst) < -100: + # For the case that there is a storm, perform linear regression between the GITM variable and Dst: + # 1 - Start to Peak: + sp_inds = np.where((times_dst >= main_phase_start_time) & (times_dst <= peak_time))[0] + dst_sp = dst[sp_inds] + sp_len = len( sp_inds ) + downsampled_gitm_var = resample(gitm_var[validInds], sp_len) + downsampled_gitm_var2 = resample(gitm_var2, sp_len) + slope_1, intercept_1, r_value_1, p_value_1, std_err_1 = linregress(dst_sp, downsampled_gitm_var) + slope_2, intercept_2, r_value_2, p_value_2, std_err_2 = linregress(dst_sp, downsampled_gitm_var2) + if nfiles == 3: + downsampled_gitm_var3 = resample(gitm_var3, sp_len) + slope_3, intercept_3, r_value_3, p_value_3, std_err_3 = linregress(dst_sp, downsampled_gitm_var3) + fig2, axs3 = plt.subplots(2, 1, layout='constrained') + sample_dst = np.linspace(min(dst_sp)-20, max(dst_sp)+20, 10) + axs3[0].scatter(dst_sp, downsampled_gitm_var, color='c', label='GITM ('+tag1+')') + axs3[0].plot(sample_dst, intercept_1 + slope_1*sample_dst, 'c--', alpha=0.8, label='R$^2$='+str(np.round(r_value_1,2))) + axs3[0].scatter(dst_sp, downsampled_gitm_var2, color='m', label='GITM ('+tag2+')') + axs3[0].plot(sample_dst, intercept_2 + slope_2 * sample_dst, 'm--', alpha=0.8, label='R$^2$='+str(np.round(r_value_2,2))) + if nfiles == 3: + axs3[0].scatter(dst_sp, downsampled_gitm_var3, color='forestgreen', label='GITM ('+tag3+')') + axs3[0].plot(sample_dst, intercept_3 + slope_3 * sample_dst, color='forestgreen', linestyle='--', alpha=0.8, label='R$^2$='+str(np.round(r_value_3,2))) + axs3[0].set_xlabel('Dst (nT)') + axs3[0].set_ylabel('Global Integral of ' + varString) + axs3[0].legend(loc='best') + axs3[0].set_title('Main Phase', fontweight='bold') + axs3[0].set_xlim([sample_dst[0], sample_dst[-1]]) + if nfiles == 3: + print('Main Phase Correlations:\n' + 'GITM VAR 1 (Main Phase) - Slope: '+str(slope_1)+' Intercept: '+str(intercept_1)+' R-squared: '+str(r_value_1)+' P-value: '+str(p_value_1)+' Std Err: '+str(std_err_1)+'\n' + 'GITM VAR 1 (Main Phase) - Slope: '+str(slope_2)+' Intercept: '+str(intercept_2)+' R-squared: '+str(r_value_2)+' P-value: '+str(p_value_2)+' Std Err: '+str(std_err_2)+'\n' + 'GITM VAR 2 (Main Phase) - Slope: '+str(slope_3)+' Intercept: '+str(intercept_3)+' R-squared: '+str(r_value_3)+' P-value: '+str(p_value_3)+' Std Err: '+str(std_err_3)+'\n') + else: + print('Main Phase Correlations:\n' + 'GITM VAR 1 (Main Phase) - Slope: '+str(slope_1)+' Intercept: '+str(intercept_1)+' R-squared: '+str(r_value_1)+' P-value: '+str(p_value_1)+' Std Err: '+str(std_err_1)+'\n' + 'GITM VAR 1 (Main Phase) - Slope: '+str(slope_2)+' Intercept: '+str(intercept_2)+' R-squared: '+str(r_value_2)+' P-value: '+str(p_value_2)+' Std Err: '+str(std_err_2)+'\n') + # 2 - Peak onwards: + po_inds = np.where(times_dst >= peak_time)[0] + dst_po = dst[po_inds] + po_len = len(po_inds) + downsampled_gitm_var_po = resample(gitm_var[po_inds], po_len) + downsampled_gitm_var2_po = resample(gitm_var2, po_len) + slope_1_po, intercept_1_po, r_value_1_po, p_value_1_po, std_err_1_po = linregress(dst_po, downsampled_gitm_var_po) + slope_2_po, intercept_2_po, r_value_2_po, p_value_2_po, std_err_2_po = linregress(dst_po, downsampled_gitm_var2_po) + if nfiles == 3: + downsampled_gitm_var3_po = resample(gitm_var3, po_len) + slope_3_po, intercept_3_po, r_value_3_po, p_value_3_po, std_err_3_po = linregress(dst_po, downsampled_gitm_var3_po) + sample_dst_po = np.linspace(min(dst_po) - 20, max(dst_po) + 20, 10) + axs3[1].scatter(dst_po, downsampled_gitm_var_po, color='c', label='GITM (' + tag1 + ')') + axs3[1].plot(sample_dst_po, intercept_1_po + slope_1_po * sample_dst_po, 'c--', alpha=0.8, + label='R$^2$=' + str(np.round(r_value_1_po, 2))) + axs3[1].scatter(dst_po, downsampled_gitm_var2_po, color='m', label='GITM (' + tag2 + ')') + axs3[1].plot(sample_dst_po, intercept_2_po + slope_2_po * sample_dst_po, 'm--', alpha=0.8, + label='R$^2$=' + str(np.round(r_value_2_po, 2))) + if nfiles == 3: + axs3[1].scatter(dst_po, downsampled_gitm_var3_po, color='forestgreen', label='GITM ('+tag3+')') + axs3[1].plot(sample_dst_po, intercept_3_po + slope_3_po * sample_dst_po, color='forestgreen', linestyle='--', alpha=0.8, label='R$^2$='+str(np.round(r_value_3_po, 3))) + axs3[1].set_xlabel('Dst (nT)') + axs3[1].set_ylabel('Global Integral of ' + varString) + axs3[1].legend(loc='best') + axs3[1].set_title('Recovery Phase', fontweight='bold') + axs3[1].set_xlim([sample_dst_po[0], sample_dst_po[-1]]) + if nfiles == 3: + print('Main Phase Correlations:\n' + 'GITM VAR 1 (Main Phase) - Slope: ' + str(slope_1_po) + ' Intercept: ' + str( + intercept_1_po) + ' R-squared: ' + str(r_value_1_po) + ' P-value: ' + str(p_value_1_po) + ' Std Err: ' + str( + std_err_1_po) + '\n' + 'GITM VAR 1 (Main Phase) - Slope: ' + str(slope_2_po) + ' Intercept: ' + str( + intercept_2_po) + ' R-squared: ' + str(r_value_2_po) + ' P-value: ' + str(p_value_2_po) + ' Std Err: ' + str( + std_err_2_po) + '\n') + else: + print('Main Phase Correlations:\n' + 'GITM VAR 1 (Main Phase) - Slope: ' + str(slope_1_po) + ' Intercept: ' + str( + intercept_1_po) + ' R-squared: ' + str(r_value_1_po) + ' P-value: ' + str(p_value_1_po) + ' Std Err: ' + str( + std_err_1_po) + '\n' + 'GITM VAR 1 (Main Phase) - Slope: ' + str(slope_2_po) + ' Intercept: ' + str( + intercept_2_po) + ' R-squared: ' + str(r_value_2_po) + ' P-value: ' + str(p_value_2_po) + ' Std Err: ' + str( + std_err_2_po) + 'GITM VAR 3 (Main Phase) - Slope: ' + str(slope_3_po) + ' Intercept: ' + str( + intercept_3_po) + ' R-squared: ' + str(r_value_3_po) + ' P-value: ' + str(p_value_3_po) + ' Std Err: ' + str( + std_err_3_po) + '\n') + # Save the figure: + plt.savefig(saveLoc + '/gitm_time_series_correlation_comparison.png', dpi=300) + return 0 + +def resample(y, newLen): + x = np.linspace(0, len(y)-1, len(y)) + f = InterpolatedUnivariateSpline(x, y) + newX = np.linspace(0, len(y), newLen) + newY = f(newX) + return newY +#------------------------------------------------------------------------------ +# SCRIPT USE +# example command line input: python thermo_compare.py 8 timefile_v1_112.txt timefile_vOvation_112.txt FTA OP + +args = parse_args() + +fileout = combine_plot(args.var[0], args.file1[0], args.file2[0], args.tag1[0], args.tag2[0], args.file3[0], args.tag3[0], args.loc) diff --git a/srcPython/vista_gitm_plots.py b/srcPython/vista_gitm_plots.py new file mode 100644 index 00000000..8ace61ac --- /dev/null +++ b/srcPython/vista_gitm_plots.py @@ -0,0 +1,232 @@ +#!/bin/python3 + +import matplotlib.pyplot as plt +import xarray as xr +import pandas as pd +import numpy as np +import h5py +import argparse +from gitm_routines import * + + +### Examples of usage: + +# For a faceted plot of VISTA TEC, every 3 time-steps: +# python vista_gitm_plots.py --start_time 20130317 --end_time 20130317T02:00 --faceted_plots --plot_every_n 3 + + +## To plot VISTA & GITM together: +# python vista_gitm_plots.py --start_time 20130317T13:00 --end_time 20130317T22:00 \ +# --gitm_path /nobackup/Gitm/Runs_alb/advection_runs/20130317_on/ \ +# --save_plots_to gitm_vs_vista_20130317 + + +# Has some requirements, unfortunately. None too crazy. +# run: +# $ pip install numpy h5netcdf h5py xarray matplotlib pandas + + + +def main(start_time, end_time, + vista_path, + faceted_plots = True, + plot_every_n = 30, + gitm_path=None, + save_plots_to='.'): + + if gitm_path is not None: + faceted_plots = False + + # sanity check the dates... + days = pd.date_range(start_time.date(), end_time.date(), freq='D') + # Check if the last time is at 00:00: + if end_time == pd.to_datetime(end_time.date()): + days = days[:-1] + + vista_ds = load_vista_data(vista_path, days) + vista_ds = vista_ds.where((vista_ds.time < end_time) + & (vista_ds.time > start_time), drop=True) + + # then the faceted plots... + if faceted_plots: + vista_ds.isel(time=slice(0,-1,plot_every_n)).tec.plot(col='time', + col_wrap=4, + robust=True, + cmap='plasma', + x='localtime', + subplot_kws={'ylabel': 'Latitude', + 'xlabel':'Local Time'}, + cbar_kwargs={'label':'TEC (TECUnits)'}) + save_fig_path = os.path.join(save_plots_to, f'vista_{start_time.date()}-{start_time.time()}.png') + plt.savefig(save_fig_path) + plt.close() + print('Saved plot: ', save_fig_path) + return + + else: + if gitm_path: + if '3DALL' not in gitm_path: + gitm_path = os.path.join(gitm_path, '3DALL') + headers = read_gitm_headers(gitm_path) + if any([start_time < headers['time'][0], end_time > headers['time'][-1]]): + raise ValueError('GITM data does not cover the full time range of the requested times') + # Only use the GITM files closest to the VISTA outputs + use_gitm_idxs = [] + for vista_time in vista_ds.time.values: + use_gitm_idxs.append(np.argmin(np.abs((pd.to_datetime(headers['time']) + - vista_time).total_seconds()))) + + ## Then go make the plots: + + if not os.path.exists(save_plots_to): + print('creating directory: ', save_plots_to) + os.makedirs(save_plots_to) + + for itime, vista_time in enumerate(vista_ds.time.values): + print('Plotting ', vista_time) + + vista_time = pd.to_datetime(vista_time) + + vmin = None + vmax = None + + if gitm_path: + # read altitude & [e-] + gitm_data = read_gitm_one_file(headers['filename'][use_gitm_idxs[itime]], [2, 34]) + # integrate the TEC + tec_array = np.trapz(gitm_data[34], gitm_data[2]) + # get rid of ghost cells, convert to TECUnits + tec_array = tec_array[2:-2, 2:-2].T / 1e16 + # now we need to shift the TEC from lon -> localtime + tec_array = np.roll(tec_array, + int((vista_time.hour) * 15/360 * (headers['nLons']))) + + #consistent colorbar limits btwn VISTA & GITM + vmin = np.min(tec_array) + vmax = np.max(tec_array) + + # Make figure, plot GITM: + fig, ax = plt.subplots(3, 1, figsize=(10, 12), height_ratios=[1, 1, 0.1]) + ax[1].imshow(tec_array, cmap='plasma', vmin=vmin, vmax=vmax, + extent=[0, 24, -90, 90], aspect='auto') + ax[1].set_title('GITM', fontsize='x-large') + + # These are not needed if GITM is not plotted: + ax[0].set_title('VISTA', fontsize='x-large') + ax[1].set_ylabel('Latitude') + ax[1].set_xlabel('Local Time') + + + else: + fig, ax = plt.subplots(2, 1, figsize=(10, 7), height_ratios=[1, 0.08]) + + # Plot VISTA: + p = ax[0].imshow(vista_ds.isel(time=itime).tec.values, cmap='plasma', + vmin=vmin, vmax=vmax, extent=[0, 24, -90, 90], aspect='auto') + + fig.colorbar(p, cax = ax[-1], orientation='horizontal', label='TEC (TECUnits)', + extend='both') + + fig.suptitle('TEC at ' + vista_time.strftime('%Y-%m-%d %H:%M:%S'), fontsize='xx-large') + ax[0].set_ylabel('Latitude') + ax[0].set_xlabel('Local Time') + + save_fig_path = os.path.join(save_plots_to, f'vista_{str(itime).rjust(4,'0')}.png') + plt.tight_layout() + plt.savefig(save_fig_path) + plt.close() + print('Saved plot: ', save_fig_path) + + return + + +def vista_grid(grid_path=None, vista_path=None): + # Load the grid + if grid_path is None and vista_path is not None: + grid_path = os.path.join('/',*vista_path.split('/')[:4], 'grid.hdf5') + + f = h5py.File(grid_path, "r") + data = f["data"] + + lats = data['latitude'] + lts = data['local_time'] + + lats = np.unique(lats) + lts = np.unique(lts) + + f.close() + + return lats, lts + + +def load_vista_data(vista_path, days): + + lats, lts = vista_grid(vista_path=vista_path) + + # Load VISTA Data: + vista_ds = [] + for day in days: + print('loading ', day) + + tmpds = xr.open_mfdataset(os.path.join(vista_path, + str(day.year), + f"VISTA_{str(day.year)[2:]}{str(day.month).rjust(2, '0')}{str(day.day).rjust(2, '0')}.hdf5"), + engine='h5netcdf', + group="/data", + phony_dims='access') + + ds_today = xr.Dataset() + ds_today['lat'] = ('lat'), lats + ds_today['localtime'] = ('localtime'), lts + ds_today['time'] = ('time'), pd.date_range(day, + day + pd.Timedelta('1 day'), + periods=tmpds.sizes['phony_dim_2']+1, + inclusive='left') + + ds_today['tec'] = ('lat', 'localtime', 'time'), tmpds.VISTA.data + vista_ds.append(ds_today) + + vista_ds = xr.concat(vista_ds, dim='time') + + return vista_ds + + +def parse_args(): + + parser = argparse.ArgumentParser(description='Plot VISTA vs GITM TEC') + + parser.add_argument('--start_time', type=str, + help='Start time in format YYYYMMDD[THH:MM], bracketed portion optional') + parser.add_argument('--end_time', type=str, + help='End time in format YYYYMMDD[THH:MM], bracketed portion optional') + parser.add_argument('--vista_path', type=str, + default = '/backup/Data/VISTA/VISTA_Database/HDF5/dtecrm/', + help='Path to VISTA data. Default is "/backup/Data/VISTA/VISTA_Database/HDF5/dtecrm/"') + + parser.add_argument('--faceted_plots', action='store_true', + help='If set, will create faceted plots, default is to make one file per time.' + ' (does not work w GITM TEC, only VISTA - will be False if gitm_path is set)') + parser.add_argument('--plot_every_n', type=int, default=30, + help='If faceted_plots is set, will plot every n-th time step, default is 30') + + parser.add_argument('--gitm_path', type=str, + help='Path to GITM data, optional. If not set, will not plot GITM data') + + parser.add_argument('--save_plots_to', type=str, default='.', + help='Path to save plots to, default is to put them in the current directory') + + args = parser.parse_args() + return args + +if __name__ == '__main__': + + args = parse_args() + + args.start_time = pd.to_datetime(args.start_time) + args.end_time = pd.to_datetime(args.end_time) + print(f"Plotting from {args.start_time} to {args.end_time}") + + + main(args.start_time, args.end_time, + args.vista_path, args.faceted_plots, args.plot_every_n, args.gitm_path, args.save_plots_to) + diff --git a/srcPython/vista_read.py b/srcPython/vista_read.py new file mode 100644 index 00000000..b998e6e9 --- /dev/null +++ b/srcPython/vista_read.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python + +from datetime import datetime, timedelta +import numpy as np +import h5py + +def read_vista_file(filename): + + print('Reading VISTA file : ', filename) + + # Assume filename contains the date, since the time is not + # stored in the file: + + iYr_ = filename.find('.hdf5') - 6 + year = 2000 + int(filename[iYr_ : iYr_ + 2]) + month = int(filename[iYr_ + 2 : iYr_ + 4]) + day = int(filename[iYr_ + 4 : iYr_ + 6]) + basetime = datetime(year, month, day, 0, 0, 0) + print(' -> Date : ', basetime) + + f = h5py.File(filename, 'r') + + # vista data is in the following keys: + vista_data = np.array(f['data']['VISTA']) + f.close() + + nLats, nLons, nTimes = np.shape(vista_data) + lats = np.arange(nLats) / (nLats - 1) * 180.0 - 90.0 + localtimes = np.arange(nLons) / (nLons - 1) * 24.0 + + deltats = np.arange(nTimes) / nTimes * 86400.0 + times = [] + for deltat in deltats: + times.append(basetime + timedelta(seconds = deltat)) + + vista = { + 'tec' : vista_data, + 'lats' : lats, + 'localtimes' : localtimes, + 'times' : times} + return vista + + + + + diff --git a/srcSphereAB/AB_XFER_1blk_util.f90 b/srcSphereAB/AB_XFER_1blk_util.f90 index 5d87d80c..f31f2b8a 100644 --- a/srcSphereAB/AB_XFER_1blk_util.f90 +++ b/srcSphereAB/AB_XFER_1blk_util.f90 @@ -38,7 +38,7 @@ subroutine AB_1blk3_gc_pack(long, lat, alt, gcn, v_in, dir, pole, p, out_array) logical, intent(in) :: pole integer, intent(inout) :: p real, dimension(1 - gcn:, 1 - gcn:, 1:), intent(in) :: v_in - real, dimension(:), intent(out) :: out_array + real, dimension(:), intent(inout) :: out_array integer :: i, j, a, shifted_j, half_long half_long = long/2 @@ -204,7 +204,7 @@ subroutine AB_1blk3_gc_unpack(long, lat, alt, gcn, v_out, dir, p, in_array) integer, intent(in) :: long, lat, alt, gcn integer, intent(in) :: dir integer, intent(inout) :: p - real, dimension(1 - gcn:, 1 - gcn:, 1:), intent(out) :: v_out + real, dimension(1 - gcn:, 1 - gcn:, 1:), intent(inout) :: v_out real, dimension(:), intent(in) :: in_array integer :: i, j, a @@ -316,7 +316,7 @@ subroutine AB_1blk4_gc_pack(long, lat, alt, eta, gcn, v_in, dir, pole, p, out_ar logical, intent(in) :: pole integer, intent(inout) :: p real, dimension(1 - gcn:, 1 - gcn:, 1:, 1:), intent(in) :: v_in - real, dimension(:), intent(out) :: out_array + real, dimension(:), intent(inout) :: out_array integer :: i, j, a, e, shifted_j, half_long half_long = long/2 @@ -511,7 +511,7 @@ subroutine AB_1blk4_gc_unpack(long, lat, alt, eta, gcn, v_out, dir, p, in_array) integer, intent(in) :: long, lat, alt, eta, gcn integer, intent(in) :: dir integer, intent(inout) :: p - real, dimension(1 - gcn:, 1 - gcn:, 1:, 1:), intent(out) :: v_out + real, dimension(1 - gcn:, 1 - gcn:, 1:, 1:), intent(inout) :: v_out real, dimension(:), intent(in) :: in_array integer :: i, j, a, e diff --git a/srcSphereAB/AB_XFER_util.f90 b/srcSphereAB/AB_XFER_util.f90 index 3d725347..cf7e6c23 100644 --- a/srcSphereAB/AB_XFER_util.f90 +++ b/srcSphereAB/AB_XFER_util.f90 @@ -34,7 +34,7 @@ subroutine AB_array3_gc_pack(long, lat, alt, gcn, v_in, dir, pole, p, out_array) logical, intent(in) :: pole integer, intent(inout) :: p real, dimension(1 - gcn:, 1 - gcn:, 1:), intent(in) :: v_in - real, dimension(:), intent(out) :: out_array + real, dimension(:), intent(inout) :: out_array integer :: i, j, a select case (dir) @@ -306,7 +306,7 @@ subroutine AB_1blk3_gc_pack(long, lat, alt, gcn, v_in, dir, pole, p, out_array) logical, intent(in) :: pole integer, intent(inout) :: p real, dimension(1 - gcn:, 1 - gcn:, 1:), intent(in) :: v_in - real, dimension(:), intent(out) :: out_array + real, dimension(:), intent(inout) :: out_array integer :: i, j, a, shifted_j, half_long half_long = long/2 @@ -584,7 +584,7 @@ subroutine AB_array4_gc_pack(long, lat, alt, eta, gcn, v_in, dir, pole, p, out_a logical, intent(in) :: pole integer, intent(inout) :: p real, dimension(1 - gcn:, 1 - gcn:, 1:, 1:), intent(in) :: v_in - real, dimension(:), intent(out) :: out_array + real, dimension(:), intent(inout) :: out_array integer :: i, j, a, e select case (dir) @@ -899,7 +899,7 @@ subroutine AB_1blk4_gc_pack(long, lat, alt, eta, gcn, v_in, dir, pole, p, out_ar logical, intent(in) :: pole integer, intent(inout) :: p real, dimension(1 - gcn:, 1 - gcn:, 1:, 1:), intent(in) :: v_in - real, dimension(:), intent(out) :: out_array + real, dimension(:), intent(inout) :: out_array integer :: i, j, a, e, shifted_j, half_long half_long = long/2 diff --git a/srcSphereAB/Makefile b/srcSphereAB/Makefile index 587941ee..df2782e6 100644 --- a/srcSphereAB/Makefile +++ b/srcSphereAB/Makefile @@ -1,6 +1,6 @@ include ../srcMake/Makefile.conf include ../Makefile.def --include ./Makefile.DEPEND +include ./Makefile.DEPEND # # Makefile for AB2D code: @@ -25,14 +25,11 @@ DEPEND: MY_LIB = ${LIBDIR}/libSphere.a LIB: DEPEND - ${MAKE} ${MY_LIB} - @echo - @echo ${MY_LIB} has been brought up to date. + @make ${MY_LIB} @echo ${MY_LIB}: ${MF} ${MODULES} ${OBJECTS} @echo 'Creating libSphere library' + @rm -f ${MY_LIB} ${AR} ${MY_LIB} ${MODULES} ${OBJECTS} -clean: - rm -f *~ core *.o *.mod fort.* a.out *.exe *.a *.so *.protex diff --git a/srcTests/auto_test/UAM.in.00.default.test b/srcTests/auto_test/UAM.in.00.default.test index 4fc87c8e..328bed64 100644 --- a/srcTests/auto_test/UAM.in.00.default.test +++ b/srcTests/auto_test/UAM.in.00.default.test @@ -59,34 +59,40 @@ UA/DataIn/f107.txt T Use FISM solar flux data UA/DataIn/FISM/fismflux_daily_2002.dat Filename ------------- Auroral Drivers ------------ - -#FTAMODEL -T Use FTA model of the aurora +------------ Electrodynamics Drivers ------------ #SME_INDICES -UA/DataIn/ae_20021221.txt SME Filename +UA/DataIn/Examples/ae20021221.dat SME Filename none onset time delay file T convert SME to Hemispheric Power ------------- E-Field Drivers ------------ - #MHD_INDICES -UA/DataIn/imf20021221.dat +UA/DataIn/Examples/imf20021221.dat + +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 -#APEX -T ----------------------------------------------------------------- + +#APEX +F + #MSISOBC T Shift the [O] density at the lower boundary by 6 months 0.0 change the obateness of the Earth by this percent (0 = none) --------------------------------------------------------------------------- #AUSMSOLVER T Use AUSM+-up Solvers +-------------------------------------------------------------------------- + + + #END diff --git a/srcTests/auto_test/UAM.in.000.default.test b/srcTests/auto_test/UAM.in.000.default.test new file mode 100644 index 00000000..d9b9255e --- /dev/null +++ b/srcTests/auto_test/UAM.in.000.default.test @@ -0,0 +1,100 @@ + +#DEBUG +0 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- + +#RESTART +F Restart Code + +-------------------------------------------------------------------------- +start and end times: + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +10 minute +00 second + +#FIXEDDT +2.0 + +-------------------------------------------------------------------------- +Set blocks in lon and lat. + - total cells in a direction = nBlocks x nCells (set in ModSize) + - res = (max - min) / num cells + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + +-------------------------------------------------------------------------- +Output file stuff + +#SAVEPLOTS +60.0 dt for writing restart files +1 how many output files do you want +3DALL second output style +300.0 dt for output (1 every 5 min) + + +#NGDC_INDICES +UA/DataIn/f107.txt + +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2002.dat Filename + +------------ Electrodynamics Drivers ------------ + + +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat SME Filename +none onset time delay file +T convert SME to Hemispheric Power + +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 + +----------------------------------------------------------------- + + +#APEX +F + +#MSISOBC +T Shift the [O] density at the lower boundary by 6 months +0.0 change the obateness of the Earth by this percent (0 = none) + + +#AUSMSOLVER +T Use AUSM+-up Solvers + +-------------------------------------------------------------------------- + + + +#END diff --git a/srcTests/auto_test/UAM.in.001.defaultRestart.test b/srcTests/auto_test/UAM.in.001.defaultRestart.test new file mode 100644 index 00000000..7a807963 --- /dev/null +++ b/srcTests/auto_test/UAM.in.001.defaultRestart.test @@ -0,0 +1,100 @@ + +#DEBUG +0 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- + +#RESTART +T Restart Code + +-------------------------------------------------------------------------- +start and end times: + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +20 minute +00 second + +#FIXEDDT +2.0 + +-------------------------------------------------------------------------- +Set blocks in lon and lat. + - total cells in a direction = nBlocks x nCells (set in ModSize) + - res = (max - min) / num cells + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + +-------------------------------------------------------------------------- +Output file stuff + +#SAVEPLOTS +60.0 dt for writing restart files +1 how many output files do you want +3DALL second output style +300.0 dt for output (1 every 5 min) + + +#NGDC_INDICES +UA/DataIn/f107.txt + +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2002.dat Filename + +------------ Electrodynamics Drivers ------------ + + +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat SME Filename +none onset time delay file +T convert SME to Hemispheric Power + +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 + +----------------------------------------------------------------- + + +#APEX +F + +#MSISOBC +T Shift the [O] density at the lower boundary by 6 months +0.0 change the obateness of the Earth by this percent (0 = none) + + +#AUSMSOLVER +T Use AUSM+-up Solvers + +-------------------------------------------------------------------------- + + + +#END diff --git a/srcTests/auto_test/UAM.in.01.UseAeNoHPI.test b/srcTests/auto_test/UAM.in.01.UseAeNoHPI.test new file mode 100644 index 00000000..1f895e5c --- /dev/null +++ b/srcTests/auto_test/UAM.in.01.UseAeNoHPI.test @@ -0,0 +1,76 @@ + +#DEBUG +0 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +T usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- +Gitm can stop and start again: + - Writes files to UA/restartOUT + - Reads files from UA/restartIN + - Can mv out and link to that directory + +#RESTART +F Restart Code + +-------------------------------------------------------------------------- +start and end times: + - don't change start time on restart (code will set correct time!) + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +05 minute +00 second + + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +3DALL second output style +300.0 dt for output (1 every 5 min) + +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 + +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +Can download AU/AL/AE indices from SuperMAG and use them here: +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat +none onset time delay file +T +T + +#NGDC_INDICES +UA/DataIn/f107.txt + +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2002.dat Filename + +#END diff --git a/srcTests/auto_test/UAM.in.01.test b/srcTests/auto_test/UAM.in.01.test deleted file mode 100644 index 9aae953a..00000000 --- a/srcTests/auto_test/UAM.in.01.test +++ /dev/null @@ -1,222 +0,0 @@ - -#DEBUG -0 debug level (0 = no info, 10 = max info) -0 cpu to watch -60.0 dt between normal code output to stdout -F usebarriers - forces the code to stop and wait more often - --------------------------------------------------------------------------- - -#RESTART -F Restart Code - --------------------------------------------------------------------------- - -#TIMESTART -2002 year -12 month -21 day -00 hour -00 minute -00 second - -#TIMEEND -2002 year -12 month -21 day -00 hour -05 minute -00 second - --------------------------------------------------------------------------- -#GRID -2 number of blocks in longitude -2 number of blocks in latitude --90.0 minimum latitude to model -90.0 maximum latitude to model -0.0 longitude start to model (set to 0.0 for whole Earth) -0.0 longitude end to model (set to 0.0 for whole Earth) - --------------------------------------------------------------------------- -#LOGFILE -1.0 dt for output to a log file - -#SAVEPLOTS -7200.0 dt for writing restart files -4 how many output files do you want -3DALL second output style -200.0 dt for output (1 every 5 min) -3DNEU -200.0 -2DANC -200.0 -2DGEL -200.0 - --------------------------------------------------------------------------- - -#F107 -150.0 f10.7 -150.0 f10.7 averaged over 81 days - - -(All false below is new model of EUV!) -#EUVMODEL -T UseEUVAC -T UseTobiska -T UseAboveHigh -T UseBelowLow - - ------------- Auroral Drivers ------------ - -#HPI -1.0 hemispheric power - -#FTAMODEL -T Use FTA model of the aurora - -#NEWELLAURORA -F Use Newell Ovation model of the aurora - -#FANGENERGY -T Use Fang 2010 and 2013 energy deposition - -#USECUSP -F Add a cusp to the electron precipitation -0.2 Average Energy -2.0 Energy Flux - -#AURORAMODS -F normalize to hemispheric power -1.0 avee factor (1 is no mod) -F iskappa -4.0 kappa (3 min; higher is maxwellian) - -#IONPRECIPITATION -F If ions are included in the AMIE file, use them. FangEnergy=T! - ------------- E-Field Drivers ------------ - -#SOLARWIND -0.0 IMF Bx -0.0 IMF By --2.0 IMF Bz -400.0 Solar wind Vx - ------------------------------------------------------------------ -Some new features: - -#MSISOBC -T Shift the [O] density at the lower boundary by 6 months -0.0 change the obateness of the Earth by this percent (0 = none) - --------------------------------------------------------------------------- -These set the thermal balance of the code: - -#NEUTRALHEATING -0.05 Efficiency of photoelectron heating - -#PHOTOELECTRON -0.00 Efficiency of photoelectron heating - -#DIFFUSION -T -50.0 Eddy Diffusion Coefficient (Should be about 37.5 for 1-D runs) -0.010 Eddy Diffusion applied at alts below this pressures level -0.005 No Eddy Diffusion at altitudes above this pressure level - -#THERMALCONDUCTION -5.6e-4 Thermal conductivity (o2) -7.6e-4 Thermal conductivity (o) -0.72 Thermal conductivity (^s) - --------------------------------------------------------------------------- -Can set max wall time for the code to run (default = 10 days) - -#CPUTIMEMAX -860000.0 Maximum amount of cputime to use before stopping code - --------------------------------------------------------------------------- -Solver stuff: - -#AUSMSOLVER -T Use AUSM+-up Solvers - -#CFL -0.80 percentage of maximum allowable time-step to take - -#LIMITER -mc only limiter available -2.0 - - -#ELECTRODYNAMICS -60.0 how often to update potential -60.0 how often to update aurora and euv - --------------------------------------------------------------------------- -This stuff is standard for Earth - -#ALTITUDE -100.0 minimum altitude to use -600.0 maximum altitude to use (ignored unless the following is F) -T use stretched grid - -#INITIAL -T initialize thermosphere using MSIS -T initialize ionosphere using IRI - -#TIDES -F UseMSISFlat -T UseMSISTides -F UseGSWMTides -F UseWACCMTides -F UseHmeTides - - -#APEX -T Use apex magnetic coordinate system - --------------------------------------------------------------------------- -Turn on/off various source terms: - -#THERMO -T UseSolarHeating -T UseJouleHeating -T UseAuroralHeating -T UseNOCooling -T UseOCooling -T UseConduction -T UseTurbulentConduction -F UseIRHeating - not for Earth! - -#FORCING -T UsePressureGradient -T UseIonDrag -T UseNeutralDrag -T UseViscosity -T UseCoriolis -T UseGravity - -#IONFORCING -T UseExB -T UseIonPressureGradient -T UseIonGravity -T UseNeutralDrag - -#CHEMISTRY -T UseIonChemistry -T UseIonAdvection -T UseNeutralChemistry - - -#USEIMPROVEDIONADVECTION -T UseImprovedIonAdvection -T UseNighttimeIonBCs -2.0 - -#USEIMPLICITIONMOMENTUM -T - -#END diff --git a/srcTests/auto_test/UAM.in.02.eclipse.test.manualonly b/srcTests/auto_test/UAM.in.02.eclipse.test.manualonly new file mode 100644 index 00000000..cda43836 --- /dev/null +++ b/srcTests/auto_test/UAM.in.02.eclipse.test.manualonly @@ -0,0 +1,98 @@ + +#DEBUG +0 debug level +0 cpu to watch +300.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +#ECLIPSE + 2017 8 21 13 37 30 + 2017 8 21 23 11 30 + -15282.0 + 6676.38 + 16606.2 + -1430.05 + 0.900000 + 3000.00 + 0.0700000 + 400.000 + +#RESTART +F + +This is a course grid (5 deg x 5 deg), so should be adjusted: + +#GRID +8 lons +4 lats +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +360.0 longitude end to model (set to 0.0 for whole Earth) + +#TIMESTART +2017 year +08 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2017 year +08 month +22 day +00 hour +00 minute +00 second + +#AUSMSOLVER +T + +#LOGFILE +1.0 dt for output to a log file + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +3DALL second output style +600.0 dt for output (1 every 5 min) + +#APEX +T Use apex magnetic coordinate system + +Low-latitude dynamo (only run with higher res). Turn on for higher res sims: +#DYNAMO +T UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace + +#NGDC_INDICES +UA/DataIn/f107.txt + +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2017.dat Filename + + +These inputs are set to constants, which is not good. Actual driver +files should be used, please see the default UAM.in file so see how to +do this. + +#HPI +1.0 hemispheric power + +#KP +1.0 kp + +#SOLARWIND +0.0 IMF Bx +0.0 IMF By +-2.0 IMF Bz +400.0 Solar wind Vx + +#END diff --git a/srcTests/auto_test/UAM.in.02.test b/srcTests/auto_test/UAM.in.02.test deleted file mode 100644 index 84f865c2..00000000 --- a/srcTests/auto_test/UAM.in.02.test +++ /dev/null @@ -1,268 +0,0 @@ - -#DEBUG -0 debug level (0 = no info, 10 = max info) -0 cpu to watch -60.0 dt between normal code output to stdout -T usebarriers - forces the code to stop and wait more often - --------------------------------------------------------------------------- -Gitm can stop and start again: - - Writes files to UA/restartOUT - - Reads files from UA/restartIN - - Can mv out and link to that directory - -#RESTART -F Restart Code - --------------------------------------------------------------------------- -start and end times: - - don't change start time on restart (code will set correct time!) - -#TIMESTART -2002 year -12 month -21 day -00 hour -00 minute -00 second - -#TIMEEND -2002 year -12 month -21 day -00 hour -05 minute -00 second - --------------------------------------------------------------------------- -Set blocks in lon and lat. - - total cells in a direction = nBlocks x nCells (set in ModSize) - - res = (max - min) / num cells - -#NANCHECK -T - -#GRID -2 number of blocks in longitude -2 number of blocks in latitude --90.0 minimum latitude to model -90.0 maximum latitude to model -0.0 longitude start to model (set to 0.0 for whole Earth) -0.0 longitude end to model (set to 0.0 for whole Earth) - --------------------------------------------------------------------------- -Output file stuff - -#LOGFILE -1.0 dt for output to a log file - -#SAVEPLOTS -7200.0 dt for writing restart files -1 how many output files do you want -3DALL second output style -300.0 dt for output (1 every 5 min) - - --------------------------------------------------------------------------- -Specify Drivers: - ------------- Solar Drivers ------------ - - -#NGDC_INDICES -UA/DataIn/f107.txt - -(All false below is new model of EUV!) -#EUVMODEL -F UseEUVAC -F UseTobiska -F UseAboveHigh -F UseBelowLow - ------------- Auroral Drivers ------------ - -#MHD_INDICES -DataIn/imf20021221.dat - -#NOAAHPI_INDICES -DataIn/power.test.rcmr_quick - -New auroral model from Wu and Ridley, which is driven by AU/AL/AE -#FTAMODEL -T Use FTA model of the aurora - -Can download AU/AL/AE indices from SuperMAG and use them here: -#SME_INDICES -DataIn/ae_20021221.txt -none onset time delay file - -This is for OVATION-PRIME: -#NEWELLAURORA -F Use Newell Ovation model of the aurora -T UseNewellAveraged (logical) -T UseNewellMono (logical) -T UseNewellWave (logical) -T UseNewellRemoveSpikes (logical) -T UseNewellAverage (logical) - -#FANGENERGY -F Use Fang 2010 and 2013 energy deposition - -Can add a cusp: -#USECUSP -T Add a cusp to the electron precipitation -0.2 Average Energy -2.0 Energy Flux - -This will modify the auroral inputs, experimental: -#AURORAMODS -T normalize to hemispheric power -2.0 avee factor (1 is no mod) -T iskappa -4.0 kappa (3 min; higher is maxwellian) - -#IONPRECIPITATION -F If ions are included in the AMIE file, use them. FangEnergy=T! - ------------- E-Field Drivers ------------ - -This is for amie-like inputs: -#AMIEFILES -none northern hemisphere amie file -none southern hemisphere amie file - -Low-latitude dynamo (only run with higher res). Turn on for higher res sims: -#DYNAMO -F UseDynamo -45.0 DynamoHighLatBoundary -500 nItersMax -1.0 MaxResidual -F IncludeCowling -20.0 LongitudinalAveraging -F UseNewTrace - ------------------------------------------------------------------ -Some new features: - -#MSISOBC -T Shift the [O] density at the lower boundary by 6 months -0.0 change the obateness of the Earth by this percent (0 = none) - --------------------------------------------------------------------------- -These set the thermal balance of the code: - -#NEUTRALHEATING -0.05 Efficiency of photoelectron heating - -#PHOTOELECTRON -0.00 Efficiency of photoelectron heating - -#DIFFUSION -T -50.0 Eddy Diffusion Coefficient (Should be about 37.5 for 1-D runs) -0.010 Eddy Diffusion applied at alts below this pressures level -0.005 No Eddy Diffusion at altitudes above this pressure level - -#THERMALCONDUCTION -5.6e-4 Thermal conductivity (o2) -7.6e-4 Thermal conductivity (o) -0.72 Thermal conductivity (^s) - --------------------------------------------------------------------------- -Can set max wall time for the code to run (default = 10 days) - -#CPUTIMEMAX -860000.0 Maximum amount of cputime to use before stopping code - --------------------------------------------------------------------------- -Solver stuff: - -#AUSMSOLVER -F Use AUSM+-up Solvers - -#CFL -0.80 percentage of maximum allowable time-step to take - -#LIMITER -mc only limiter available -2.0 - -#STATISTICALMODELSONLY -F if you want to run with msis and iri only (i.e. not GITM) -1800.0 time step to take if you run with msis and iri - -#ELECTRODYNAMICS -60.0 how often to update potential -60.0 how often to update aurora and euv - --------------------------------------------------------------------------- -This stuff is standard for Earth - -#ALTITUDE -100.0 minimum altitude to use -600.0 maximum altitude to use (ignored unless the following is F) -F use stretched grid - -#INITIAL -T initialize thermosphere using MSIS -T initialize ionosphere using IRI - -#TIDES -F UseMSISFlat -F UseMSISTides -F UseGSWMTides -F UseWACCMTides -F UseHmeTides - -these don't work without special input files? -#GSWMCOMP -F Diurnal Migrating -F Diurnal NonMigrating -F Semidiurnal Migrating -F Semidiurnal NonMigrating - -#APEX -F Use apex magnetic coordinate system - --------------------------------------------------------------------------- -Turn on/off various source terms: - -#THERMO -T UseSolarHeating -T UseJouleHeating -T UseAuroralHeating -T UseNOCooling -T UseOCooling -T UseConduction -T UseTurbulentConduction -F UseIRHeating - not for Earth! - -#FORCING -T UsePressureGradient -T UseIonDrag -T UseNeutralDrag -T UseViscosity -T UseCoriolis -T UseGravity - -#IONFORCING -T UseExB -T UseIonPressureGradient -T UseIonGravity -T UseNeutralDrag - -#CHEMISTRY -T UseIonChemistry -T UseIonAdvection -T UseNeutralChemistry - - -#USEIMPROVEDIONADVECTION -T UseImprovedIonAdvection -T UseNighttimeIonBCs -2.0 - -#USEIMPLICITIONMOMENTUM -T - -#END diff --git a/srcTests/auto_test/UAM.in.03.IonLowerLimit.test b/srcTests/auto_test/UAM.in.03.IonLowerLimit.test new file mode 100644 index 00000000..a932bbbd --- /dev/null +++ b/srcTests/auto_test/UAM.in.03.IonLowerLimit.test @@ -0,0 +1,112 @@ + +#DEBUG +1 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- +Gitm can stop and start again: + - Writes files to UA/restartOUT + - Reads files from UA/restartIN + - Can mv out and link to that directory + +#RESTART +F Restart Code + +-------------------------------------------------------------------------- +start and end times: + - don't change start time on restart (code will set correct time!) + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +15 minute +00 second + +-------------------------------------------------------------------------- +Set blocks in lon and lat. + - total cells in a direction = nBlocks x nCells (set in ModSize) + - res = (max - min) / num cells + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + +-------------------------------------------------------------------------- +Output file stuff + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +3DALL second output style +300.0 dt for output (1 every 5 min) + + +If this is before 2019, f107 should work fine: + +#NGDC_INDICES +UA/DataIn/f107.txt + +From 1990 - 2018, it is best to use FISM (and need F107 too!) + +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2002.dat Filename + +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 + +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat SME Filename +none onset time delay file +T convert SME to Hemispheric Power + +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +#DYNAMO +F UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace + +#APEX +F + + +#MSISOBC +T Shift the [O] density at the lower boundary by 6 months +0.0 change the obateness of the Earth by this percent (0 = none) + + +#IONLIMITS +100 # max Vparallel +0.1 # max E-field +1e8 # min ion density - absurdly high, but good to test. +1e10 # min advected ion density + +#AUSMSOLVER +T Use AUSM+-up Solvers + +#END diff --git a/srcTests/auto_test/UAM.in.03.test b/srcTests/auto_test/UAM.in.03.test deleted file mode 100644 index 114b204f..00000000 --- a/srcTests/auto_test/UAM.in.03.test +++ /dev/null @@ -1,266 +0,0 @@ - -#DEBUG -0 debug level (0 = no info, 10 = max info) -0 cpu to watch -60.0 dt between normal code output to stdout -T usebarriers - forces the code to stop and wait more often - --------------------------------------------------------------------------- -Gitm can stop and start again: - - Writes files to UA/restartOUT - - Reads files from UA/restartIN - - Can mv out and link to that directory - -#RESTART -F Restart Code - --------------------------------------------------------------------------- -start and end times: - - don't change start time on restart (code will set correct time!) - -#TIMESTART -2002 year -12 month -21 day -00 hour -00 minute -00 second - -#TIMEEND -2002 year -12 month -21 day -00 hour -05 minute -00 second - --------------------------------------------------------------------------- -Set blocks in lon and lat. - - total cells in a direction = nBlocks x nCells (set in ModSize) - - res = (max - min) / num cells - -#GRID -2 number of blocks in longitude -2 number of blocks in latitude --90.0 minimum latitude to model -90.0 maximum latitude to model -0.0 longitude start to model (set to 0.0 for whole Earth) -0.0 longitude end to model (set to 0.0 for whole Earth) - --------------------------------------------------------------------------- -Output file stuff - -#LOGFILE -1.0 dt for output to a log file - -#SAVEPLOTS -7200.0 dt for writing restart files -1 how many output files do you want -3DALL second output style -300.0 dt for output (1 every 5 min) - - --------------------------------------------------------------------------- -Specify Drivers: - ------------- Solar Drivers ------------ - - -#NGDC_INDICES -UA/DataIn/f107.txt - -(All false below is new model of EUV!) -#EUVMODEL -F UseEUVAC -F UseTobiska -F UseAboveHigh -F UseBelowLow - ------------- Auroral Drivers ------------ - -#MHD_INDICES -DataIn/imf20021221.dat - -#NOAAHPI_INDICES -DataIn/power.test.rcmr_quick - -New auroral model from Wu and Ridley, which is driven by AU/AL/AE -#FTAMODEL -T Use FTA model of the aurora - -Can download AU/AL/AE indices from SuperMAG and use them here: -#SME_INDICES -DataIn/ae_20021221.txt -none onset time delay file - - -#FANGENERGY -F Use Fang 2010 and 2013 energy deposition - -Can add a cusp: -#USECUSP -F Add a cusp to the electron precipitation -0.2 Average Energy -2.0 Energy Flux - -This will modify the auroral inputs, experimental: -#AURORAMODS -F normalize to hemispheric power -2.0 avee factor (1 is no mod) -T iskappa -4.0 kappa (3 min; higher is maxwellian) - -#IONPRECIPITATION -F If ions are included in the AMIE file, use them. FangEnergy=T! - ------------- E-Field Drivers ------------ - -#SOLARWIND -0.0 IMF Bx -0.0 IMF By --2.0 IMF Bz -400.0 Solar wind Vx - -This is for amie-like inputs: -#AMIEFILES -none northern hemisphere amie file -none southern hemisphere amie file - -Low-latitude dynamo (only run with higher res). Turn on for higher res sims: -#DYNAMO -T UseDynamo -45.0 DynamoHighLatBoundary -500 nItersMax -1.0 MaxResidual -F IncludeCowling -20.0 LongitudinalAveraging -F UseNewTrace - ------------------------------------------------------------------ -Some new features: - -#NANCHECK -T - -#MSISOBC -T Shift the [O] density at the lower boundary by 6 months -0.0 change the obateness of the Earth by this percent (0 = none) - --------------------------------------------------------------------------- -These set the thermal balance of the code: - -#NEUTRALHEATING -0.05 Efficiency of photoelectron heating - -#PHOTOELECTRON -0.00 Efficiency of photoelectron heating - -#DIFFUSION -T -50.0 Eddy Diffusion Coefficient (Should be about 37.5 for 1-D runs) -0.010 Eddy Diffusion applied at alts below this pressures level -0.005 No Eddy Diffusion at altitudes above this pressure level - -#THERMALCONDUCTION -5.6e-4 Thermal conductivity (o2) -7.6e-4 Thermal conductivity (o) -0.72 Thermal conductivity (^s) - --------------------------------------------------------------------------- -Can set max wall time for the code to run (default = 10 days) - -#CPUTIMEMAX -860000.0 Maximum amount of cputime to use before stopping code - --------------------------------------------------------------------------- -Solver stuff: - -#AUSMSOLVER -F Use AUSM+-up Solvers - -#CFL -0.80 percentage of maximum allowable time-step to take - -#LIMITER -mc only limiter available -2.0 - -#STATISTICALMODELSONLY -F if you want to run with msis and iri only (i.e. not GITM) -1800.0 time step to take if you run with msis and iri - -#ELECTRODYNAMICS -60.0 how often to update potential -60.0 how often to update aurora and euv - --------------------------------------------------------------------------- -This stuff is standard for Earth - -#ALTITUDE -100.0 minimum altitude to use -600.0 maximum altitude to use (ignored unless the following is F) -T use stretched grid - -#INITIAL -T initialize thermosphere using MSIS -T initialize ionosphere using IRI - -#TIDES -F UseMSISFlat -T UseMSISTides -F UseGSWMTides -F UseWACCMTides -F UseHmeTides - -these don't work without special input files? -#GSWMCOMP -F Diurnal Migrating -F Diurnal NonMigrating -F Semidiurnal Migrating -F Semidiurnal NonMigrating - -#APEX -T Use apex magnetic coordinate system - --------------------------------------------------------------------------- -Turn on/off various source terms: - -#THERMO -T UseSolarHeating -T UseJouleHeating -T UseAuroralHeating -T UseNOCooling -T UseOCooling -T UseConduction -T UseTurbulentConduction -F UseIRHeating - not for Earth! - -#FORCING -T UsePressureGradient -T UseIonDrag -T UseNeutralDrag -T UseViscosity -T UseCoriolis -T UseGravity - -#IONFORCING -T UseExB -T UseIonPressureGradient -T UseIonGravity -T UseNeutralDrag - -#CHEMISTRY -T UseIonChemistry -T UseIonAdvection -T UseNeutralChemistry - - -#USEIMPROVEDIONADVECTION -T UseImprovedIonAdvection -T UseNighttimeIonBCs -2.0 - -#USEIMPLICITIONMOMENTUM -T - -#END diff --git a/srcTests/auto_test/UAM.in.05.test b/srcTests/auto_test/UAM.in.04.ElectrodynamicsGeoCoords.test similarity index 60% rename from srcTests/auto_test/UAM.in.05.test rename to srcTests/auto_test/UAM.in.04.ElectrodynamicsGeoCoords.test index 600b2f72..efb0d569 100644 --- a/srcTests/auto_test/UAM.in.05.test +++ b/srcTests/auto_test/UAM.in.04.ElectrodynamicsGeoCoords.test @@ -3,7 +3,7 @@ 0 debug level (0 = no info, 10 = max info) 0 cpu to watch 60.0 dt between normal code output to stdout -T usebarriers - forces the code to stop and wait more often +F usebarriers - forces the code to stop and wait more often -------------------------------------------------------------------------- Gitm can stop and start again: @@ -39,9 +39,6 @@ Set blocks in lon and lat. - total cells in a direction = nBlocks x nCells (set in ModSize) - res = (max - min) / num cells -#NANCHECK -T - #GRID 2 number of blocks in longitude 2 number of blocks in latitude @@ -53,52 +50,59 @@ T -------------------------------------------------------------------------- Output file stuff -#LOGFILE -1.0 dt for output to a log file - #SAVEPLOTS 7200.0 dt for writing restart files 1 how many output files do you want -3DALL second output style -300.0 dt for output (1 every 5 min) +2DGEL second output style +60.0 dt for output (1 every 5 min) --------------------------------------------------------------------------- -Specify Drivers: ------------- Solar Drivers ------------ +------------ Electrodynamics Drivers ------------ + +New auroral model from Wu and Ridley, which is driven by AU/AL/AE +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 + +----------- Data Files ------------------ + +This is the most common thing - specify an IMF file: +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat SME Filename +none onset time delay file +T convert SME to Hemispheric Power #NGDC_INDICES UA/DataIn/f107.txt -(All false below is new model of EUV!) -#EUVMODEL -F UseEUVAC -F UseTobiska -F UseAboveHigh -F UseBelowLow +------------ Some options ------------ ------------- Auroral Drivers ------------ +Low-latitude dynamo (only run with higher res). Turn on for higher res sims: +#DYNAMO +F UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace -#MHD_INDICES -DataIn/imf20021221.dat +The default is to have apex off, since other planets don't have +apex, so need to turn apex on! -#NOAAHPI_INDICES -DataIn/power.test.rcmr_quick +#APEX +T #STATISTICALMODELSONLY -T if you want to run with msis and iri only (i.e. not GITM) -150.0 time step to take if you run with msis and iri - - -#ALTITUDE -100.0 minimum altitude to use -600.0 maximum altitude to use (ignored unless the following is F) -T use stretched grid +T +60.0 -#INITIAL -T initialize thermosphere using MSIS -T initialize ionosphere using IRI #END diff --git a/srcTests/auto_test/UAM.in.05.ElectrodynamicsMagCoords.test b/srcTests/auto_test/UAM.in.05.ElectrodynamicsMagCoords.test new file mode 100644 index 00000000..170c14d2 --- /dev/null +++ b/srcTests/auto_test/UAM.in.05.ElectrodynamicsMagCoords.test @@ -0,0 +1,116 @@ + +#DEBUG +0 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- +Gitm can stop and start again: + - Writes files to UA/restartOUT + - Reads files from UA/restartIN + - Can mv out and link to that directory + +#RESTART +F Restart Code + +-------------------------------------------------------------------------- +start and end times: + - don't change start time on restart (code will set correct time!) + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +05 minute +00 second + +-------------------------------------------------------------------------- +Set blocks in lon and lat. + - total cells in a direction = nBlocks x nCells (set in ModSize) + - res = (max - min) / num cells + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + +-------------------------------------------------------------------------- +Output file stuff + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +2DGEL second output style +60.0 dt for output (1 every 5 min) + + + + +------------ Electrodynamics Drivers ------------ + +New auroral model from Wu and Ridley, which is driven by AU/AL/AE +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 + +----------- Data Files ------------------ + +This is the most common thing - specify an IMF file: +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat SME Filename +none onset time delay file +T convert SME to Hemispheric Power + +#NGDC_INDICES +UA/DataIn/f107.txt + +------------ Some options ------------ + +Low-latitude dynamo (only run with higher res). Turn on for higher res sims: +#DYNAMO +F UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace + +The default is to have apex off, since other planets don't have +apex, so need to turn apex on! + +#APEX +F Apex is turned off for speed (so a dipole is used), but it can be turned on. + +#DIPOLE +0.0 +0.0 +0.0 +0.0 +0.0 + +#STATISTICALMODELSONLY +T +60.0 + + + +#END diff --git a/srcTests/auto_test/UAM.in.06.FreHepmay.test b/srcTests/auto_test/UAM.in.06.FreHepmay.test new file mode 100644 index 00000000..540abda9 --- /dev/null +++ b/srcTests/auto_test/UAM.in.06.FreHepmay.test @@ -0,0 +1,88 @@ + +#DEBUG +0 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- +start and end times: + - don't change start time on restart (code will set correct time!) + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +05 minute +00 second + +-------------------------------------------------------------------------- +Set blocks in lon and lat. + - total cells in a direction = nBlocks x nCells (set in ModSize) + - res = (max - min) / num cells + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + +-------------------------------------------------------------------------- +Output file stuff + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +2DGEL second output style +60.0 dt for output (1 every 5 min) + +------------ Electrodynamics Drivers ------------ + +New auroral model from Wu and Ridley, which is driven by AU/AL/AE +#ELECTRODYNAMICS +FRE +60.0 +hepmay +60.0 + +----------- Data Files ------------------ + +This is the most common thing - specify an IMF file: +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat SME Filename +none onset time delay file +T convert SME to Hemispheric Power + +#NGDC_INDICES +UA/DataIn/f107.txt + +------------ Some options ------------ + +Low-latitude dynamo (only run with higher res). Turn on for higher res sims: +#DYNAMO +F UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace + +#APEX +F + +#END diff --git a/srcTests/auto_test/UAM.in.06.UseAeNoHPI.test b/srcTests/auto_test/UAM.in.06.UseAeNoHPI.test deleted file mode 100644 index 75ba7b6e..00000000 --- a/srcTests/auto_test/UAM.in.06.UseAeNoHPI.test +++ /dev/null @@ -1,264 +0,0 @@ - -#DEBUG -0 debug level (0 = no info, 10 = max info) -0 cpu to watch -60.0 dt between normal code output to stdout -T usebarriers - forces the code to stop and wait more often - --------------------------------------------------------------------------- -Gitm can stop and start again: - - Writes files to UA/restartOUT - - Reads files from UA/restartIN - - Can mv out and link to that directory - -#RESTART -F Restart Code - --------------------------------------------------------------------------- -start and end times: - - don't change start time on restart (code will set correct time!) - -#TIMESTART -2002 year -12 month -21 day -00 hour -00 minute -00 second - -#TIMEEND -2002 year -12 month -21 day -00 hour -05 minute -00 second - --------------------------------------------------------------------------- -Set blocks in lon and lat. - - total cells in a direction = nBlocks x nCells (set in ModSize) - - res = (max - min) / num cells - -#GRID -2 number of blocks in longitude -2 number of blocks in latitude --90.0 minimum latitude to model -90.0 maximum latitude to model -0.0 longitude start to model (set to 0.0 for whole Earth) -0.0 longitude end to model (set to 0.0 for whole Earth) - --------------------------------------------------------------------------- -Output file stuff - -#LOGFILE -1.0 dt for output to a log file - -#SAVEPLOTS -7200.0 dt for writing restart files -1 how many output files do you want -3DALL second output style -300.0 dt for output (1 every 5 min) - - --------------------------------------------------------------------------- -Specify Drivers: - ------------- Solar Drivers ------------ - - -#NGDC_INDICES -UA/DataIn/f107.txt - -(All false below is new model of EUV!) -#EUVMODEL -F UseEUVAC -F UseTobiska -F UseAboveHigh -F UseBelowLow - ------------- Auroral Drivers ------------ - -#MHD_INDICES -DataIn/imf20021221.dat - - -New auroral model from Wu and Ridley, which is driven by AU/AL/AE -#FTAMODEL -F Use FTA model of the aurora - -Can download AU/AL/AE indices from SuperMAG and use them here: -#SME_INDICES -DataIn/ae_20021221.txt -none onset time delay file -T - -#FANGENERGY -T Use Fang 2010 and 2013 energy deposition - -Can add a cusp: -#USECUSP -F Add a cusp to the electron precipitation -0.2 Average Energy -2.0 Energy Flux - -This will modify the auroral inputs, experimental: -#AURORAMODS -F normalize to hemispheric power -2.0 avee factor (1 is no mod) -T iskappa -4.0 kappa (3 min; higher is maxwellian) - -#IONPRECIPITATION -F If ions are included in the AMIE file, use them. FangEnergy=T! - ------------- E-Field Drivers ------------ - -#SOLARWIND -0.0 IMF Bx -0.0 IMF By --2.0 IMF Bz -400.0 Solar wind Vx - -This is for amie-like inputs: -#AMIEFILES -none northern hemisphere amie file -none southern hemisphere amie file - -Low-latitude dynamo (only run with higher res). Turn on for higher res sims: -#DYNAMO -T UseDynamo -45.0 DynamoHighLatBoundary -500 nItersMax -1.0 MaxResidual -F IncludeCowling -20.0 LongitudinalAveraging -F UseNewTrace - ------------------------------------------------------------------ -Some new features: - -#NANCHECK -T - -#MSISOBC -T Shift the [O] density at the lower boundary by 6 months -0.0 change the obateness of the Earth by this percent (0 = none) - --------------------------------------------------------------------------- -These set the thermal balance of the code: - -#NEUTRALHEATING -0.05 Efficiency of photoelectron heating - -#PHOTOELECTRON -0.00 Efficiency of photoelectron heating - -#DIFFUSION -T -50.0 Eddy Diffusion Coefficient (Should be about 37.5 for 1-D runs) -0.010 Eddy Diffusion applied at alts below this pressures level -0.005 No Eddy Diffusion at altitudes above this pressure level - -#THERMALCONDUCTION -5.6e-4 Thermal conductivity (o2) -7.6e-4 Thermal conductivity (o) -0.72 Thermal conductivity (^s) - --------------------------------------------------------------------------- -Can set max wall time for the code to run (default = 10 days) - -#CPUTIMEMAX -860000.0 Maximum amount of cputime to use before stopping code - --------------------------------------------------------------------------- -Solver stuff: - -#AUSMSOLVER -T Use AUSM+-up Solvers - -#CFL -0.80 percentage of maximum allowable time-step to take - -#LIMITER -mc only limiter available -2.0 - -#STATISTICALMODELSONLY -F if you want to run with msis and iri only (i.e. not GITM) -1800.0 time step to take if you run with msis and iri - -#ELECTRODYNAMICS -60.0 how often to update potential -60.0 how often to update aurora and euv - --------------------------------------------------------------------------- -This stuff is standard for Earth - -#ALTITUDE -100.0 minimum altitude to use -600.0 maximum altitude to use (ignored unless the following is F) -T use stretched grid - -#INITIAL -T initialize thermosphere using MSIS -T initialize ionosphere using IRI - -#TIDES -F UseMSISFlat -T UseMSISTides -F UseGSWMTides -F UseWACCMTides -F UseHmeTides - -these don't work without special input files? -#GSWMCOMP -F Diurnal Migrating -F Diurnal NonMigrating -F Semidiurnal Migrating -F Semidiurnal NonMigrating - -#APEX -T Use apex magnetic coordinate system - --------------------------------------------------------------------------- -Turn on/off various source terms: - -#THERMO -T UseSolarHeating -T UseJouleHeating -T UseAuroralHeating -T UseNOCooling -T UseOCooling -T UseConduction -T UseTurbulentConduction -F UseIRHeating - not for Earth! - -#FORCING -T UsePressureGradient -T UseIonDrag -T UseNeutralDrag -T UseViscosity -T UseCoriolis -T UseGravity - -#IONFORCING -T UseExB -T UseIonPressureGradient -T UseIonGravity -T UseNeutralDrag - -#CHEMISTRY -T UseIonChemistry -T UseIonAdvection -T UseNeutralChemistry - - -#USEIMPROVEDIONADVECTION -T UseImprovedIonAdvection -T UseNighttimeIonBCs -2.0 - -#USEIMPLICITIONMOMENTUM -T - -#END diff --git a/srcTests/auto_test/UAM.in.07.pemWeimer.test b/srcTests/auto_test/UAM.in.07.pemWeimer.test new file mode 100644 index 00000000..ec1ddd24 --- /dev/null +++ b/srcTests/auto_test/UAM.in.07.pemWeimer.test @@ -0,0 +1,88 @@ + +#DEBUG +0 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- +start and end times: + - don't change start time on restart (code will set correct time!) + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +05 minute +00 second + +-------------------------------------------------------------------------- +Set blocks in lon and lat. + - total cells in a direction = nBlocks x nCells (set in ModSize) + - res = (max - min) / num cells + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + +-------------------------------------------------------------------------- +Output file stuff + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +2DGEL second output style +60.0 dt for output (1 every 5 min) + +------------ Electrodynamics Drivers ------------ + +New auroral model from Wu and Ridley, which is driven by AU/AL/AE +#ELECTRODYNAMICS +pem +60.0 +weimer05 +60.0 + +----------- Data Files ------------------ + +This is the most common thing - specify an IMF file: +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat SME Filename +none onset time delay file +T convert SME to Hemispheric Power + +#NGDC_INDICES +UA/DataIn/f107.txt + +------------ Some options ------------ + +Low-latitude dynamo (only run with higher res). Turn on for higher res sims: +#DYNAMO +F UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace + +#APEX +F + +#END diff --git a/srcTests/auto_test/UAM.in.08.IeZeroZero.test b/srcTests/auto_test/UAM.in.08.IeZeroZero.test new file mode 100644 index 00000000..1c91fa0a --- /dev/null +++ b/srcTests/auto_test/UAM.in.08.IeZeroZero.test @@ -0,0 +1,79 @@ + +#DEBUG +0 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- +start and end times: + - don't change start time on restart (code will set correct time!) + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +05 minute +00 second + +-------------------------------------------------------------------------- +Set blocks in lon and lat. + - total cells in a direction = nBlocks x nCells (set in ModSize) + - res = (max - min) / num cells + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + +-------------------------------------------------------------------------- +Output file stuff + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +2DGEL second output style +60.0 dt for output (1 every 5 min) + +------------ Electrodynamics Drivers ------------ + +New auroral model from Wu and Ridley, which is driven by AU/AL/AE +#ELECTRODYNAMICS +zero +60.0 +zero +60.0 + +----------- Data Files ------------------ + +#NGDC_INDICES +UA/DataIn/f107.txt + +------------ Some options ------------ + +Low-latitude dynamo (only run with higher res). Turn on for higher res sims: +#DYNAMO +F UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace + +#APEX +F + +#END diff --git a/srcTests/auto_test/UAM.in.09.ApexAndDynamo.test b/srcTests/auto_test/UAM.in.09.ApexAndDynamo.test new file mode 100644 index 00000000..93327355 --- /dev/null +++ b/srcTests/auto_test/UAM.in.09.ApexAndDynamo.test @@ -0,0 +1,111 @@ + +#DEBUG +0 debug level (0 = no info, 10 = max info) +0 cpu to watch +60.0 dt between normal code output to stdout +F usebarriers - forces the code to stop and wait more often + +-------------------------------------------------------------------------- + +#RESTART +F Restart Code + +-------------------------------------------------------------------------- +start and end times: + +#TIMESTART +2002 year +12 month +21 day +00 hour +00 minute +00 second + +#TIMEEND +2002 year +12 month +21 day +00 hour +05 minute +00 second + +-------------------------------------------------------------------------- +Set blocks in lon and lat. + - total cells in a direction = nBlocks x nCells (set in ModSize) + - res = (max - min) / num cells + +#GRID +2 number of blocks in longitude +2 number of blocks in latitude +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) + +-------------------------------------------------------------------------- +Output file stuff + +#SAVEPLOTS +7200.0 dt for writing restart files +1 how many output files do you want +3DALL second output style +300.0 dt for output (1 every 5 min) + + +#NGDC_INDICES +UA/DataIn/f107.txt + +#EUV_DATA +T Use FISM solar flux data +UA/DataIn/FISM/fismflux_daily_2002.dat Filename + +------------ Electrodynamics Drivers ------------ + + +#SME_INDICES +UA/DataIn/Examples/ae20021221.dat SME Filename +none onset time delay file +T convert SME to Hemispheric Power + +#MHD_INDICES +UA/DataIn/Examples/imf20021221.dat + +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 + + +----------------------------------------------------------------- + + +#APEX +T + +#DYNAMO +T UseDynamo +45.0 DynamoHighLatBoundary +500 nItersMax +1.0 MaxResidual +F IncludeCowling +40.0 LongitudinalAveraging +F UseNewTrace + +#MSIS21 +T + + +#MSISOBC +F Shift the [O] density at the lower boundary by 6 months +0.0 change the obateness of the Earth by this percent (0 = none) + + +#AUSMSOLVER +F Use AUSM+-up Solvers + +-------------------------------------------------------------------------- + + + +#END diff --git a/srcTests/auto_test/UAM.in.04.test b/srcTests/auto_test/UAM.in.10.SeparateHP.test similarity index 72% rename from srcTests/auto_test/UAM.in.04.test rename to srcTests/auto_test/UAM.in.10.SeparateHP.test index a174c718..9a35b0af 100644 --- a/srcTests/auto_test/UAM.in.04.test +++ b/srcTests/auto_test/UAM.in.10.SeparateHP.test @@ -6,17 +6,12 @@ F usebarriers - forces the code to stop and wait more often -------------------------------------------------------------------------- -Gitm can stop and start again: - - Writes files to UA/restartOUT - - Reads files from UA/restartIN - - Can mv out and link to that directory #RESTART F Restart Code -------------------------------------------------------------------------- start and end times: - - don't change start time on restart (code will set correct time!) #TIMESTART 2002 year @@ -34,6 +29,9 @@ start and end times: 05 minute 00 second +#FIXEDDT +2.0 + -------------------------------------------------------------------------- Set blocks in lon and lat. - total cells in a direction = nBlocks x nCells (set in ModSize) @@ -42,10 +40,10 @@ Set blocks in lon and lat. #GRID 2 number of blocks in longitude 2 number of blocks in latitude --40.0 minimum latitude to model -40.0 maximum latitude to model -40.0 longitude start to model (set to 0.0 for whole Earth) -200.0 longitude end to model (set to 0.0 for whole Earth) +-90.0 minimum latitude to model +90.0 maximum latitude to model +0.0 longitude start to model (set to 0.0 for whole Earth) +0.0 longitude end to model (set to 0.0 for whole Earth) -------------------------------------------------------------------------- Output file stuff @@ -64,34 +62,41 @@ UA/DataIn/f107.txt T Use FISM solar flux data UA/DataIn/FISM/fismflux_daily_2002.dat Filename ------------- Auroral Drivers ------------ - -#FTAMODEL -T Use FTA model of the aurora +------------ Electrodynamics Drivers ------------ #SME_INDICES -UA/DataIn/ae_20021221.txt SME Filename +UA/DataIn/Examples/ae20021221.dat SME Filename none onset time delay file T convert SME to Hemispheric Power +T ------------- E-Field Drivers ------------ #MHD_INDICES -UA/DataIn/imf20021221.dat +UA/DataIn/Examples/imf20021221.dat -#APEX -T +#ELECTRODYNAMICS +FTA +60.0 +weimer05 +60.0 ----------------------------------------------------------------- + +#APEX +F + #MSISOBC T Shift the [O] density at the lower boundary by 6 months 0.0 change the obateness of the Earth by this percent (0 = none) --------------------------------------------------------------------------- #AUSMSOLVER T Use AUSM+-up Solvers +-------------------------------------------------------------------------- + + + #END diff --git a/srcTests/auto_test/UAM.in.Full.earthtemplate b/srcTests/auto_test/UAM.in.Full.earthtemplate deleted file mode 100644 index 245ef2a3..00000000 --- a/srcTests/auto_test/UAM.in.Full.earthtemplate +++ /dev/null @@ -1,290 +0,0 @@ - -#DEBUG -0 debug level (0 = no info, 10 = max info) -0 cpu to watch -60.0 dt between normal code output to stdout -F usebarriers - forces the code to stop and wait more often - --------------------------------------------------------------------------- -Gitm can stop and start again: - - Writes files to UA/restartOUT - - Reads files from UA/restartIN - - Can mv out and link to that directory - -#RESTART -F Restart Code - --------------------------------------------------------------------------- -start and end times: - - don't change start time on restart (code will set correct time!) - -#TIMESTART -2002 year -12 month -21 day -00 hour -00 minute -00 second - -#TIMEEND -2002 year -12 month -21 day -00 hour -05 minute -00 second - --------------------------------------------------------------------------- -Set blocks in lon and lat. - - total cells in a direction = nBlocks x nCells (set in ModSize) - - res = (max - min) / num cells - -#GRID -2 number of blocks in longitude -2 number of blocks in latitude --90.0 minimum latitude to model -90.0 maximum latitude to model -0.0 longitude start to model (set to 0.0 for whole Earth) -0.0 longitude end to model (set to 0.0 for whole Earth) - --------------------------------------------------------------------------- -Output file stuff - -#LOGFILE -1.0 dt for output to a log file - -#SAVEPLOTS -7200.0 dt for writing restart files -1 how many output files do you want -3DALL second output style -300.0 dt for output (1 every 5 min) - - --------------------------------------------------------------------------- -Specify Drivers: - ------------- Solar Drivers ------------ - -#F107 -150.0 f10.7 -150.0 f10.7 averaged over 81 days - -or - -NGDC_INDICES -UA/DataIn/f107.txt - -(All false below is new model of EUV!) -EUVMODEL -F UseEUVAC -F UseTobiska -F UseAboveHigh -F UseBelowLow - -or - -#EUV_DATA -F Use FISM solar flux data -srcData/FISM/fismflux_daily_2002.dat Filename - ------------- Auroral Drivers ------------ - -Used by Fuller-Rowell and Evans model: -#HPI -1.0 hemispheric power - -or - -# the hemispheric power is not really available after 2013 -NOAAHPI_INDICES -power file - -New auroral model from Wu and Ridley, which is driven by AU/AL/AE -#FTAMODEL -T Use FTA model of the aurora - -Can download AU/AL/AE indices from SuperMAG and use them here: -SME_INDICES -sme_2010.txt SME Filename -none onset time delay file - -This is for OVATION-PRIME: -#NEWELLAURORA -F Use Newell Ovation model of the aurora - -#FANGENERGY -T Use Fang 2010 and 2013 energy deposition - -Can add a cusp: -#USECUSP -F Add a cusp to the electron precipitation -0.2 Average Energy -2.0 Energy Flux - -This will modify the auroral inputs, experimental: -#AURORAMODS -F normalize to hemispheric power -1.0 avee factor (1 is no mod) -F iskappa -4.0 kappa (3 min; higher is maxwellian) - -#IONPRECIPITATION -F If ions are included in the AMIE file, use them. FangEnergy=T! - ------------- E-Field Drivers ------------ - -#SOLARWIND -0.0 IMF Bx -0.0 IMF By --2.0 IMF Bz -400.0 Solar wind Vx - -or - -This is the most common thing - specify an IMF file: -MHD_INDICES -imf/solarwind file - -This is for SWPC inputs for close to real-time: -SWPC_INDICES -imf file -solar wind file - -This is for amie-like inputs: -#AMIEFILES -none northern hemisphere amie file -none southern hemisphere amie file - -Low-latitude dynamo (only run with higher res). Turn on for higher res sims: -#DYNAMO -F UseDynamo -45.0 DynamoHighLatBoundary -500 nItersMax -1.0 MaxResidual -F IncludeCowling -20.0 LongitudinalAveraging -F UseNewTrace - ------------------------------------------------------------------ -Some new features: - -#MSISOBC -T Shift the [O] density at the lower boundary by 6 months -0.0 change the obateness of the Earth by this percent (0 = none) - --------------------------------------------------------------------------- -These set the thermal balance of the code: - -#NEUTRALHEATING -0.05 Efficiency of photoelectron heating - -#PHOTOELECTRON -0.00 Efficiency of photoelectron heating - -#DIFFUSION -T -50.0 Eddy Diffusion Coefficient (Should be about 37.5 for 1-D runs) -0.010 Eddy Diffusion applied at alts below this pressures level -0.005 No Eddy Diffusion at altitudes above this pressure level - -#THERMALCONDUCTION -5.6e-4 Thermal conductivity (o2) -7.6e-4 Thermal conductivity (o) -0.72 Thermal conductivity (^s) - --------------------------------------------------------------------------- -Can set max wall time for the code to run (default = 10 days) - -#CPUTIMEMAX -860000.0 Maximum amount of cputime to use before stopping code - --------------------------------------------------------------------------- -Solver stuff: - -#AUSMSOLVER -T Use AUSM+-up Solvers - -#CFL -0.80 percentage of maximum allowable time-step to take - -#LIMITER -mc only limiter available -2.0 - -#STATISTICALMODELSONLY -F if you want to run with msis and iri only (i.e. not GITM) -1800.0 time step to take if you run with msis and iri - -#ELECTRODYNAMICS -60.0 how often to update potential -60.0 how often to update aurora and euv - --------------------------------------------------------------------------- -This stuff is standard for Earth - -#ALTITUDE -100.0 minimum altitude to use -600.0 maximum altitude to use (ignored unless the following is F) -T use stretched grid - -#INITIAL -T initialize thermosphere using MSIS -T initialize ionosphere using IRI - -#TIDES -F UseMSISFlat -T UseMSISTides -F UseGSWMTides -F UseWACCMTides - -#GSWMCOMP -F Diurnal Migrating -F Diurnal NonMigrating -F Semidiurnal Migrating -F Semidiurnal NonMigrating - -#APEX -T Use apex magnetic coordinate system - --------------------------------------------------------------------------- -Turn on/off various source terms: - -#THERMO -T UseSolarHeating -T UseJouleHeating -T UseAuroralHeating -T UseNOCooling -T UseOCooling -T UseConduction -T UseTurbulentConduction -F UseIRHeating - not for Earth! - -#FORCING -T UsePressureGradient -T UseIonDrag -T UseNeutralDrag -T UseViscosity -T UseCoriolis -T UseGravity - -#IONFORCING -T UseExB -T UseIonPressureGradient -T UseIonGravity -T UseNeutralDrag - -#CHEMISTRY -T UseIonChemistry -T UseIonAdvection -T UseNeutralChemistry - - -#USEIMPROVEDIONADVECTION -T UseImprovedIonAdvection -T UseNighttimeIonBCs -2.0 - -#USEIMPLICITIONMOMENTUM -T - -#END diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.00.default.test b/srcTests/auto_test/ref_solns/log.UAM.in.00.default.test new file mode 100644 index 00000000..0e0a1776 --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.00.default.test @@ -0,0 +1,95 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: TFile: +UA/DataIn/FISM/fismflux_daily_2002.dat +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 4 105 4.1058 157.6 1316.9 1012.0 -4.4 5.7 0.2 177.9 149.5 6.1 -6.0 531.2 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.074 + 3 2002 12 21 0 0 8 38 3.9331 157.5 1316.8 1012.1 -8.3 6.4 -0.1 177.9 149.5 6.2 -6.0 531.0 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 57.962 + 4 2002 12 21 0 0 11 994 3.9556 157.5 1316.6 1012.3 -9.3 6.7 -0.3 177.9 149.5 6.2 -6.0 530.7 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 57.895 + 5 2002 12 21 0 0 15 966 3.9720 157.5 1316.4 1012.4 -9.4 6.0 -0.4 177.9 149.5 6.2 -6.0 530.5 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.854 + 6 2002 12 21 0 0 19 939 3.9735 157.6 1316.2 1012.6 -10.3 6.2 -0.6 177.9 149.5 6.3 -6.0 530.2 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.801 + 7 2002 12 21 0 0 23 891 3.9513 157.6 1316.0 1012.8 -11.1 6.7 -0.7 177.9 149.5 6.3 -6.0 530.0 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.766 + 8 2002 12 21 0 0 27 824 3.9327 157.6 1315.9 1012.9 -11.9 7.5 -0.8 177.9 149.5 6.4 -6.0 529.7 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.712 + 9 2002 12 21 0 0 31 745 3.9220 157.6 1315.8 1013.1 -13.3 7.8 -0.9 177.9 149.5 6.4 -6.0 529.5 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.678 + 10 2002 12 21 0 0 35 655 3.9096 157.6 1315.7 1013.3 -14.2 8.7 -1.0 177.9 149.5 6.4 -6.0 529.2 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.622 + 11 2002 12 21 0 0 39 568 3.9126 157.7 1315.6 1013.4 -15.4 10.0 -1.1 177.9 149.5 6.5 -6.0 529.0 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.588 + 12 2002 12 21 0 0 43 488 3.9204 157.7 1315.5 1013.6 -17.2 10.3 -1.1 177.9 149.5 6.5 -6.0 528.7 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.532 + 13 2002 12 21 0 0 47 415 3.9268 157.7 1315.4 1013.8 -17.8 11.4 -1.2 177.9 149.5 6.5 -6.0 528.5 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.498 + 14 2002 12 21 0 0 51 353 3.9379 157.8 1315.3 1013.9 -19.9 12.8 -1.3 177.9 149.5 6.6 -6.0 528.2 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.441 + 15 2002 12 21 0 0 55 298 3.9450 157.7 1315.3 1014.1 -21.5 13.5 -1.4 177.9 149.5 6.6 -6.0 528.0 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.408 + 16 2002 12 21 0 0 59 247 3.9495 157.7 1315.4 1014.3 -23.2 14.2 -1.5 177.9 149.5 6.6 -6.0 527.7 72.6 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.350 + 17 2002 12 21 0 1 3 204 3.9565 157.8 1315.9 1014.5 -24.7 14.8 -1.6 177.9 149.5 6.6 -6.0 527.8 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.318 + 18 2002 12 21 0 1 7 167 3.9636 157.8 1316.4 1014.6 -26.7 16.6 -1.6 177.9 149.5 6.6 -6.0 527.9 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.137 -0.410 57.260 + 19 2002 12 21 0 1 11 132 3.9650 157.8 1316.9 1014.8 -28.8 16.6 -1.7 177.9 149.5 6.6 -6.0 528.0 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.136 -0.410 57.228 + 20 2002 12 21 0 1 15 101 3.9683 157.8 1317.4 1015.0 -30.6 18.0 -1.8 177.9 149.5 6.6 -6.0 528.1 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.136 -0.410 57.170 + 21 2002 12 21 0 1 19 72 3.9715 157.8 1317.9 1015.1 -32.0 18.4 -1.9 177.9 149.5 6.6 -6.1 528.2 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.136 -0.410 57.139 + 22 2002 12 21 0 1 23 48 3.9759 157.8 1318.4 1015.3 -34.7 20.0 -1.9 177.9 149.5 6.6 -6.1 528.4 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.136 -0.410 57.080 + 23 2002 12 21 0 1 27 28 3.9803 157.8 1318.8 1015.5 -35.8 20.8 -2.0 177.9 149.5 6.5 -6.1 528.5 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.135 -0.410 57.051 + 24 2002 12 21 0 1 31 12 3.9840 157.8 1319.3 1015.6 -39.1 20.8 -2.1 177.9 149.5 6.5 -6.1 528.6 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.135 -0.410 56.992 + 25 2002 12 21 0 1 35 0 3.9876 157.8 1319.7 1015.8 -39.6 22.7 -2.1 177.9 149.5 6.5 -6.1 528.7 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.135 -0.410 56.964 + 26 2002 12 21 0 1 38 992 3.9915 157.8 1320.1 1016.0 -42.5 22.3 -2.2 177.9 149.5 6.5 -6.1 528.9 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.134 -0.410 56.903 + 27 2002 12 21 0 1 42 987 3.9959 157.7 1320.6 1016.1 -44.7 24.1 -2.2 177.9 149.5 6.5 -6.1 529.0 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.134 -0.410 56.877 + 28 2002 12 21 0 1 46 987 3.9996 157.7 1321.0 1016.3 -45.3 25.0 -2.3 177.9 149.5 6.5 -6.1 529.1 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.134 -0.410 56.816 + 29 2002 12 21 0 1 50 989 4.0020 157.7 1321.4 1016.5 -49.2 24.3 -2.4 177.9 149.5 6.5 -6.1 529.2 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.134 -0.410 56.791 + 30 2002 12 21 0 1 54 992 4.0034 157.7 1321.8 1016.6 -50.0 26.8 -2.4 177.9 149.5 6.5 -6.1 529.3 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.133 -0.410 56.728 + 31 2002 12 21 0 1 58 997 4.0047 157.7 1322.2 1016.8 -51.3 27.3 -2.5 177.9 149.5 6.4 -6.1 529.5 71.9 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.133 -0.410 56.705 + 32 2002 12 21 0 2 3 4 4.0069 157.7 1322.6 1016.9 -54.9 26.7 -2.5 177.9 149.5 6.4 -6.1 529.5 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.2 106.5 3.133 -0.410 56.642 + 33 2002 12 21 0 2 7 14 4.0102 157.7 1322.9 1017.1 -55.0 29.0 -2.5 177.9 149.5 6.4 -6.2 529.5 72.1 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 56.621 + 34 2002 12 21 0 2 11 26 4.0122 157.7 1323.3 1017.2 -57.1 29.4 -2.6 177.9 149.5 6.4 -6.2 529.6 72.2 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 56.558 + 35 2002 12 21 0 2 15 41 4.0144 157.7 1323.7 1017.4 -60.6 29.5 -2.6 177.9 149.5 6.4 -6.2 529.6 72.3 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 56.538 + 36 2002 12 21 0 2 19 56 4.0152 157.7 1324.0 1017.5 -60.6 31.8 -2.6 177.9 149.5 6.4 -6.2 529.6 72.4 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 56.475 + 37 2002 12 21 0 2 23 71 4.0152 157.6 1324.4 1017.6 -62.0 32.4 -2.7 177.9 149.5 6.4 -6.2 529.7 72.5 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 56.456 + 38 2002 12 21 0 2 27 86 4.0152 157.6 1324.8 1017.8 -65.8 31.1 -2.7 177.9 149.5 6.3 -6.2 529.7 72.7 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 56.394 + 39 2002 12 21 0 2 31 101 4.0150 157.6 1325.6 1017.9 -66.1 33.4 -2.7 177.9 149.5 6.3 -6.2 529.7 72.8 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 56.375 + 40 2002 12 21 0 2 35 115 4.0140 157.6 1326.3 1018.0 -66.1 34.3 -2.7 177.9 149.5 6.3 -6.3 529.8 72.9 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 56.314 + 41 2002 12 21 0 2 39 128 4.0124 157.6 1327.1 1018.2 -70.5 33.6 -2.7 177.9 149.5 6.3 -6.3 529.8 73.0 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 56.297 + 42 2002 12 21 0 2 43 139 4.0110 157.6 1327.8 1018.3 -71.7 36.2 -2.7 177.9 149.5 6.3 -6.3 529.8 73.1 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 56.235 + 43 2002 12 21 0 2 47 149 4.0106 157.6 1328.5 1018.4 -69.1 37.2 -2.7 177.9 149.5 6.3 -6.3 529.8 73.2 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 56.218 + 44 2002 12 21 0 2 51 160 4.0105 157.6 1329.2 1018.6 -73.5 36.7 -2.8 177.9 149.5 6.3 -6.3 529.9 73.3 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 56.157 + 45 2002 12 21 0 2 55 170 4.0097 157.6 1329.9 1018.7 -75.9 37.4 -2.8 177.9 149.5 6.2 -6.3 529.9 73.4 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 56.142 + 46 2002 12 21 0 2 59 177 4.0074 157.6 1330.6 1018.8 -74.7 38.9 -2.8 177.9 149.5 6.2 -6.4 529.9 73.6 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 56.081 + 47 2002 12 21 0 3 3 181 4.0040 157.7 1331.2 1018.9 -75.6 39.1 -2.8 177.9 149.5 6.2 -6.3 530.0 73.7 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.8 106.9 3.128 -0.410 56.066 + 48 2002 12 21 0 3 7 181 4.0001 157.7 1331.9 1019.0 -79.3 40.7 -2.8 177.9 149.5 6.2 -6.3 530.1 74.0 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 56.006 + 49 2002 12 21 0 3 11 175 3.9943 157.7 1332.6 1019.2 -80.0 45.9 -2.8 177.9 149.5 6.3 -6.3 530.2 74.2 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 55.992 + 50 2002 12 21 0 3 15 166 3.9909 157.7 1333.2 1019.3 -77.2 49.5 -2.9 177.9 149.5 6.3 -6.3 530.3 74.4 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 55.933 + 51 2002 12 21 0 3 19 154 3.9880 157.7 1333.9 1019.4 -80.2 51.0 -2.9 177.9 149.5 6.3 -6.3 530.4 74.6 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 55.920 + 52 2002 12 21 0 3 23 140 3.9857 157.7 1334.5 1019.5 -82.4 51.0 -2.9 177.9 149.5 6.3 -6.2 530.5 74.8 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 55.861 + 53 2002 12 21 0 3 27 124 3.9841 157.7 1335.1 1019.6 -81.9 55.2 -2.8 177.9 149.5 6.3 -6.2 530.6 75.0 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 55.849 + 54 2002 12 21 0 3 31 107 3.9827 157.7 1335.8 1019.8 -80.0 58.6 -2.8 177.9 149.5 6.3 -6.2 530.7 75.2 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 55.790 + 55 2002 12 21 0 3 35 88 3.9811 157.7 1336.4 1019.9 -83.7 60.0 -2.7 177.9 149.5 6.3 -6.2 530.8 75.4 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 55.777 + 56 2002 12 21 0 3 39 67 3.9791 157.7 1337.0 1020.0 -85.1 62.9 -2.6 177.9 149.5 6.3 -6.2 530.9 75.6 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 55.720 + 57 2002 12 21 0 3 43 44 3.9767 157.7 1337.6 1020.1 -83.5 68.2 -2.5 177.9 149.5 6.3 -6.1 531.0 75.8 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 55.708 + 58 2002 12 21 0 3 47 18 3.9741 157.7 1338.2 1020.2 -82.2 70.8 -2.4 177.9 149.5 6.4 -6.1 531.1 76.1 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 55.650 + 59 2002 12 21 0 3 50 990 3.9715 157.7 1338.8 1020.4 -84.8 71.1 -2.2 177.9 149.5 6.4 -6.1 531.2 76.3 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 55.639 + 60 2002 12 21 0 3 54 959 3.9690 157.7 1339.5 1020.5 -85.5 71.6 -2.0 177.9 149.5 6.4 -6.1 531.3 76.5 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 55.583 + 61 2002 12 21 0 3 58 926 3.9670 157.7 1340.1 1020.6 -82.9 77.0 -1.8 177.9 149.5 6.4 -6.0 531.3 76.7 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.124 -0.410 55.572 + 62 2002 12 21 0 4 2 891 3.9659 157.7 1340.7 1020.7 -83.2 79.8 -1.6 177.9 149.5 6.3 -6.1 531.5 76.8 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.124 -0.410 55.516 + 63 2002 12 21 0 4 6 857 3.9656 157.7 1341.3 1020.9 -85.0 80.1 -1.3 177.9 149.5 6.3 -6.1 531.6 76.8 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.124 -0.410 55.506 + 64 2002 12 21 0 4 10 825 3.9681 157.7 1341.9 1021.0 -85.0 83.0 -1.0 177.9 149.5 6.2 -6.1 531.8 76.8 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.123 -0.410 55.450 + 65 2002 12 21 0 4 14 793 3.9683 157.7 1342.5 1021.1 -81.4 88.4 -0.7 177.9 149.5 6.2 -6.1 531.9 76.9 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.123 -0.410 55.441 + 66 2002 12 21 0 4 18 762 3.9685 157.7 1343.2 1021.3 -83.1 91.1 -0.4 177.9 149.5 6.1 -6.2 532.1 76.9 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.123 -0.410 55.383 + 67 2002 12 21 0 4 22 731 3.9687 157.7 1343.8 1021.4 -84.4 91.1 -0.1 177.9 149.5 6.1 -6.2 532.3 76.9 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.122 -0.410 55.374 + 68 2002 12 21 0 4 26 700 3.9690 157.7 1344.5 1021.6 -83.3 91.0 0.2 177.9 149.5 6.0 -6.2 532.4 77.0 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.122 -0.410 55.318 + 69 2002 12 21 0 4 30 669 3.9691 157.7 1345.2 1021.7 -80.2 96.7 0.5 177.9 149.5 5.9 -6.2 532.6 77.0 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.122 -0.410 55.310 + 70 2002 12 21 0 4 34 638 3.9690 157.7 1345.9 1021.8 -82.3 99.9 0.8 177.9 149.5 5.9 -6.3 532.7 77.1 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.122 -0.410 55.253 + 71 2002 12 21 0 4 38 607 3.9688 157.7 1346.6 1022.0 -82.5 100.3 1.1 177.9 149.5 5.8 -6.3 532.9 77.1 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.121 -0.410 55.245 + 72 2002 12 21 0 4 42 575 3.9688 157.7 1347.3 1022.1 -80.2 100.1 1.4 177.9 149.5 5.8 -6.3 533.0 77.1 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.121 -0.410 55.190 + 73 2002 12 21 0 4 46 545 3.9694 157.7 1348.1 1022.3 -79.2 106.0 1.6 177.9 149.5 5.7 -6.4 533.2 77.2 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.121 -0.410 55.183 + 74 2002 12 21 0 4 50 515 3.9705 157.7 1348.9 1022.4 -80.0 109.5 1.9 177.9 149.5 5.6 -6.4 533.3 77.2 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.120 -0.410 55.126 + 75 2002 12 21 0 4 54 487 3.9722 157.7 1349.7 1022.5 -78.9 110.3 2.2 177.9 149.5 5.6 -6.4 533.5 77.2 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.120 -0.410 55.120 + 76 2002 12 21 0 4 58 462 3.9743 157.7 1350.6 1022.7 -75.7 109.9 2.5 177.9 149.5 5.5 -6.4 533.6 77.3 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.120 -0.410 55.065 + 77 2002 12 21 0 5 0 0 1.5377 157.7 1351.0 1022.7 -76.1 109.1 2.5 177.9 149.5 5.5 -6.4 533.7 77.3 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.120 -0.410 55.063 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.000.default.test b/srcTests/auto_test/ref_solns/log.UAM.in.000.default.test new file mode 100644 index 00000000..725f9d32 --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.000.default.test @@ -0,0 +1,319 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: TFile: +UA/DataIn/FISM/fismflux_daily_2002.dat +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 2 0 2.0000 157.6 1317.2 1012.0 -3.7 2.8 0.0 177.9 149.5 6.1 -6.0 531.4 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.329 + 3 2002 12 21 0 0 4 0 2.0000 157.6 1317.1 1012.0 -4.8 3.7 -0.2 177.9 149.5 6.1 -6.0 531.2 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.221 + 4 2002 12 21 0 0 6 0 2.0000 157.5 1317.0 1012.1 -7.0 5.5 -0.3 177.9 149.5 6.2 -6.0 531.1 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.157 + 5 2002 12 21 0 0 8 0 2.0000 157.5 1316.9 1012.2 -8.3 6.5 -0.4 177.9 149.5 6.2 -6.0 531.0 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.109 + 6 2002 12 21 0 0 10 0 2.0000 157.5 1316.8 1012.2 -8.7 6.5 -0.5 177.9 149.5 6.2 -6.0 530.9 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.067 + 7 2002 12 21 0 0 12 0 2.0000 157.5 1316.7 1012.3 -8.4 5.8 -0.5 177.9 149.5 6.2 -6.0 530.7 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.030 + 8 2002 12 21 0 0 14 0 2.0000 157.5 1316.6 1012.4 -8.7 5.8 -0.6 177.9 149.5 6.2 -6.0 530.6 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 57.995 + 9 2002 12 21 0 0 16 0 2.0000 157.5 1316.5 1012.5 -9.5 6.2 -0.7 177.9 149.5 6.2 -6.0 530.5 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.962 + 10 2002 12 21 0 0 18 0 2.0000 157.5 1316.4 1012.5 -10.2 6.4 -0.7 177.9 149.5 6.3 -6.0 530.3 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.930 + 11 2002 12 21 0 0 20 0 2.0000 157.6 1316.4 1012.6 -10.4 6.2 -0.8 177.9 149.5 6.3 -6.0 530.2 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.899 + 12 2002 12 21 0 0 22 0 2.0000 157.6 1316.3 1012.7 -10.1 6.4 -0.8 177.9 149.5 6.3 -6.0 530.1 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.870 + 13 2002 12 21 0 0 24 0 2.0000 157.6 1316.2 1012.8 -11.1 6.8 -0.9 177.9 149.5 6.3 -6.0 530.0 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.841 + 14 2002 12 21 0 0 26 0 2.0000 157.6 1316.1 1012.9 -11.8 7.0 -0.9 177.9 149.5 6.3 -6.0 529.8 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.813 + 15 2002 12 21 0 0 28 0 2.0000 157.6 1316.1 1013.0 -12.2 7.6 -1.0 177.9 149.5 6.4 -6.0 529.7 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.786 + 16 2002 12 21 0 0 30 0 2.0000 157.6 1316.0 1013.0 -13.0 7.8 -1.0 177.9 149.5 6.4 -6.0 529.6 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.759 + 17 2002 12 21 0 0 32 0 2.0000 157.6 1315.9 1013.1 -13.5 7.8 -1.1 177.9 149.5 6.4 -6.0 529.5 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.732 + 18 2002 12 21 0 0 34 0 2.0000 157.6 1315.9 1013.2 -13.6 8.5 -1.1 177.9 149.5 6.4 -6.0 529.3 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.706 + 19 2002 12 21 0 0 36 0 2.0000 157.6 1315.8 1013.3 -14.3 8.9 -1.2 177.9 149.5 6.4 -6.0 529.2 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.681 + 20 2002 12 21 0 0 38 0 2.0000 157.6 1315.8 1013.4 -15.1 9.4 -1.2 177.9 149.5 6.4 -6.0 529.1 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.655 + 21 2002 12 21 0 0 40 0 2.0000 157.7 1315.7 1013.5 -15.5 10.1 -1.3 177.9 149.5 6.5 -6.0 528.9 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.630 + 22 2002 12 21 0 0 42 0 2.0000 157.7 1315.7 1013.6 -16.7 10.3 -1.3 177.9 149.5 6.5 -6.0 528.8 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.605 + 23 2002 12 21 0 0 44 0 2.0000 157.7 1315.7 1013.7 -17.5 10.5 -1.4 177.9 149.5 6.5 -6.0 528.7 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.581 + 24 2002 12 21 0 0 46 0 2.0000 157.7 1315.6 1013.7 -17.8 11.3 -1.4 177.9 149.5 6.5 -6.0 528.6 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.556 + 25 2002 12 21 0 0 48 0 2.0000 157.8 1315.6 1013.8 -18.0 11.7 -1.5 177.9 149.5 6.5 -6.0 528.4 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.532 + 26 2002 12 21 0 0 50 0 2.0000 157.8 1315.5 1013.9 -19.2 12.1 -1.5 177.9 149.5 6.5 -6.0 528.3 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.508 + 27 2002 12 21 0 0 52 0 2.0000 157.7 1315.5 1014.0 -20.0 13.1 -1.6 177.9 149.5 6.6 -6.0 528.2 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.485 + 28 2002 12 21 0 0 54 0 2.0000 157.7 1315.5 1014.1 -20.6 13.5 -1.6 177.9 149.5 6.6 -6.0 528.0 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.461 + 29 2002 12 21 0 0 56 0 2.0000 157.7 1315.5 1014.2 -22.0 13.3 -1.7 177.9 149.5 6.6 -6.0 527.9 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.437 + 30 2002 12 21 0 0 58 0 2.0000 157.7 1315.4 1014.3 -22.9 14.0 -1.7 177.9 149.5 6.6 -6.0 527.8 72.6 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.414 + 31 2002 12 21 0 1 0 0 2.0000 157.8 1315.4 1014.3 -23.3 14.8 -1.8 177.9 149.5 6.6 -6.0 527.7 72.6 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.391 + 32 2002 12 21 0 1 2 0 2.0000 157.8 1315.7 1014.4 -23.4 15.0 -1.8 177.9 149.5 6.6 -6.0 527.7 72.6 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.367 + 33 2002 12 21 0 1 4 0 2.0000 157.8 1315.9 1014.5 -25.0 15.1 -1.8 177.9 149.5 6.6 -6.0 527.8 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.344 + 34 2002 12 21 0 1 6 0 2.0000 157.8 1316.2 1014.6 -26.2 16.3 -1.9 177.9 149.5 6.6 -6.0 527.9 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.321 + 35 2002 12 21 0 1 8 0 2.0000 157.8 1316.5 1014.7 -26.8 16.8 -1.9 177.9 149.5 6.6 -6.0 527.9 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.298 + 36 2002 12 21 0 1 10 0 2.0000 157.8 1316.7 1014.8 -27.8 16.8 -2.0 177.9 149.5 6.6 -6.0 528.0 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.276 + 37 2002 12 21 0 1 12 0 2.0000 157.8 1317.0 1014.9 -29.4 16.7 -2.0 177.9 149.5 6.6 -6.0 528.0 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.253 + 38 2002 12 21 0 1 14 0 2.0000 157.8 1317.2 1015.0 -30.4 17.9 -2.1 177.9 149.5 6.6 -6.0 528.1 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.230 + 39 2002 12 21 0 1 16 0 2.0000 157.8 1317.5 1015.0 -30.7 18.6 -2.1 177.9 149.5 6.6 -6.0 528.2 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.208 + 40 2002 12 21 0 1 18 0 2.0000 157.8 1317.7 1015.1 -30.5 18.7 -2.1 177.9 149.5 6.6 -6.1 528.2 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.185 + 41 2002 12 21 0 1 20 0 2.0000 157.8 1317.9 1015.2 -32.5 18.3 -2.2 177.9 149.5 6.6 -6.1 528.3 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.163 + 42 2002 12 21 0 1 22 0 2.0000 157.8 1318.2 1015.3 -34.0 19.5 -2.2 177.9 149.5 6.6 -6.1 528.3 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.141 + 43 2002 12 21 0 1 24 0 2.0000 157.8 1318.4 1015.4 -34.8 20.4 -2.2 177.9 149.5 6.6 -6.1 528.4 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.119 + 44 2002 12 21 0 1 26 0 2.0000 157.8 1318.6 1015.5 -34.9 20.7 -2.3 177.9 149.5 6.5 -6.1 528.5 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.096 + 45 2002 12 21 0 1 28 0 2.0000 157.8 1318.9 1015.5 -36.7 20.4 -2.3 177.9 149.5 6.5 -6.1 528.5 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.075 + 46 2002 12 21 0 1 30 0 2.0000 157.8 1319.1 1015.6 -38.4 20.6 -2.3 177.9 149.5 6.5 -6.1 528.6 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.052 + 47 2002 12 21 0 1 32 0 2.0000 157.8 1319.3 1015.7 -39.5 21.9 -2.4 177.9 149.5 6.5 -6.1 528.6 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.031 + 48 2002 12 21 0 1 34 0 2.0000 157.8 1319.5 1015.8 -39.8 22.8 -2.4 177.9 149.5 6.5 -6.1 528.7 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.009 + 49 2002 12 21 0 1 36 0 2.0000 157.8 1319.7 1015.9 -39.2 23.1 -2.4 177.9 149.5 6.5 -6.1 528.8 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 56.987 + 50 2002 12 21 0 1 38 0 2.0000 157.8 1319.9 1016.0 -40.9 22.8 -2.5 177.9 149.5 6.5 -6.1 528.8 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.965 + 51 2002 12 21 0 1 40 0 2.0000 157.8 1320.1 1016.0 -42.9 22.1 -2.5 177.9 149.5 6.5 -6.1 528.9 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.944 + 52 2002 12 21 0 1 42 0 2.0000 157.7 1320.4 1016.1 -44.2 23.5 -2.5 177.9 149.5 6.5 -6.1 528.9 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.922 + 53 2002 12 21 0 1 44 0 2.0000 157.7 1320.6 1016.2 -44.6 24.4 -2.6 177.9 149.5 6.5 -6.1 529.0 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.901 + 54 2002 12 21 0 1 46 0 2.0000 157.7 1320.8 1016.3 -44.1 24.8 -2.6 177.9 149.5 6.5 -6.1 529.1 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.880 + 55 2002 12 21 0 1 48 0 2.0000 157.7 1321.0 1016.4 -46.0 24.5 -2.6 177.9 149.5 6.5 -6.1 529.1 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.859 + 56 2002 12 21 0 1 50 0 2.0000 157.7 1321.2 1016.4 -48.0 24.0 -2.7 177.9 149.5 6.5 -6.1 529.2 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.837 + 57 2002 12 21 0 1 52 0 2.0000 157.7 1321.4 1016.5 -49.4 25.5 -2.7 177.9 149.5 6.5 -6.1 529.3 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.817 + 58 2002 12 21 0 1 54 0 2.0000 157.7 1321.6 1016.6 -49.8 26.8 -2.7 177.9 149.5 6.5 -6.1 529.3 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.795 + 59 2002 12 21 0 1 56 0 2.0000 157.7 1321.8 1016.7 -49.4 27.5 -2.7 177.9 149.5 6.5 -6.1 529.4 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.775 + 60 2002 12 21 0 1 58 0 2.0000 157.7 1322.0 1016.7 -49.1 27.6 -2.8 177.9 149.5 6.4 -6.1 529.4 71.9 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.754 + 61 2002 12 21 0 2 0 0 2.0000 157.7 1322.2 1016.8 -51.6 27.2 -2.8 177.9 149.5 6.4 -6.1 529.5 71.9 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.733 + 62 2002 12 21 0 2 2 0 2.0000 157.7 1322.4 1016.9 -53.5 26.2 -2.8 177.9 149.5 6.4 -6.1 529.5 72.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.133 -0.410 56.712 + 63 2002 12 21 0 2 4 0 2.0000 157.7 1322.6 1017.0 -54.7 27.3 -2.8 177.9 149.5 6.4 -6.1 529.5 72.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.133 -0.410 56.692 + 64 2002 12 21 0 2 6 0 2.0000 157.7 1322.7 1017.0 -54.9 28.4 -2.8 177.9 149.5 6.4 -6.2 529.5 72.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.671 + 65 2002 12 21 0 2 8 0 2.0000 157.7 1322.9 1017.1 -54.2 29.0 -2.9 177.9 149.5 6.4 -6.2 529.6 72.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.651 + 66 2002 12 21 0 2 10 0 2.0000 157.7 1323.1 1017.2 -55.0 29.1 -2.9 177.9 149.5 6.4 -6.2 529.6 72.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.631 + 67 2002 12 21 0 2 12 0 2.0000 157.7 1323.3 1017.3 -57.4 28.5 -2.9 177.9 149.5 6.4 -6.2 529.6 72.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.611 + 68 2002 12 21 0 2 14 0 2.0000 157.7 1323.5 1017.3 -59.2 29.2 -2.9 177.9 149.5 6.4 -6.2 529.6 72.3 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.590 + 69 2002 12 21 0 2 16 0 2.0000 157.7 1323.7 1017.4 -60.2 30.6 -2.9 177.9 149.5 6.4 -6.2 529.6 72.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.570 + 70 2002 12 21 0 2 18 0 2.0000 157.7 1323.8 1017.5 -60.3 31.6 -2.9 177.9 149.5 6.4 -6.2 529.6 72.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.550 + 71 2002 12 21 0 2 20 0 2.0000 157.7 1324.0 1017.5 -59.4 32.3 -3.0 177.9 149.5 6.4 -6.2 529.6 72.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.530 + 72 2002 12 21 0 2 22 0 2.0000 157.7 1324.2 1017.6 -59.3 32.4 -3.0 177.9 149.5 6.4 -6.2 529.7 72.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.510 + 73 2002 12 21 0 2 24 0 2.0000 157.6 1324.4 1017.7 -61.8 32.0 -3.0 177.9 149.5 6.4 -6.2 529.7 72.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.491 + 74 2002 12 21 0 2 26 0 2.0000 157.6 1324.7 1017.7 -63.9 31.1 -3.0 177.9 149.5 6.3 -6.2 529.7 72.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.471 + 75 2002 12 21 0 2 28 0 2.0000 157.6 1325.1 1017.8 -65.1 31.7 -3.0 177.9 149.5 6.3 -6.2 529.7 72.7 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.451 + 76 2002 12 21 0 2 30 0 2.0000 157.6 1325.4 1017.9 -65.4 32.7 -3.0 177.9 149.5 6.3 -6.2 529.7 72.7 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.431 + 77 2002 12 21 0 2 32 0 2.0000 157.6 1325.8 1017.9 -64.7 33.4 -3.0 177.9 149.5 6.3 -6.3 529.7 72.8 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.412 + 78 2002 12 21 0 2 34 0 2.0000 157.6 1326.2 1018.0 -63.1 33.8 -3.0 177.9 149.5 6.3 -6.3 529.7 72.9 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.392 + 79 2002 12 21 0 2 36 0 2.0000 157.6 1326.5 1018.1 -65.9 33.6 -3.0 177.9 149.5 6.3 -6.3 529.8 72.9 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.373 + 80 2002 12 21 0 2 38 0 2.0000 157.6 1326.9 1018.1 -68.1 33.1 -3.1 177.9 149.5 6.3 -6.3 529.8 73.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.353 + 81 2002 12 21 0 2 40 0 2.0000 157.6 1327.2 1018.2 -69.6 34.5 -3.1 177.9 149.5 6.3 -6.3 529.8 73.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.334 + 82 2002 12 21 0 2 42 0 2.0000 157.6 1327.6 1018.3 -70.3 35.7 -3.1 177.9 149.5 6.3 -6.3 529.8 73.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.315 + 83 2002 12 21 0 2 44 0 2.0000 157.6 1328.0 1018.3 -70.0 36.5 -3.1 177.9 149.5 6.3 -6.3 529.8 73.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.296 + 84 2002 12 21 0 2 46 0 2.0000 157.6 1328.3 1018.4 -68.9 36.9 -3.1 177.9 149.5 6.3 -6.3 529.8 73.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.277 + 85 2002 12 21 0 2 48 0 2.0000 157.6 1328.7 1018.5 -67.9 36.9 -3.1 177.9 149.5 6.3 -6.3 529.9 73.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.258 + 86 2002 12 21 0 2 50 0 2.0000 157.6 1329.0 1018.5 -70.4 36.6 -3.1 177.9 149.5 6.3 -6.3 529.9 73.3 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.239 + 87 2002 12 21 0 2 52 0 2.0000 157.6 1329.4 1018.6 -72.3 35.7 -3.1 177.9 149.5 6.3 -6.3 529.9 73.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.220 + 88 2002 12 21 0 2 54 0 2.0000 157.6 1329.7 1018.7 -73.5 36.8 -3.1 177.9 149.5 6.3 -6.3 529.9 73.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.201 + 89 2002 12 21 0 2 56 0 2.0000 157.6 1330.1 1018.7 -73.9 37.8 -3.1 177.9 149.5 6.2 -6.3 529.9 73.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.182 + 90 2002 12 21 0 2 58 0 2.0000 157.7 1330.4 1018.8 -73.2 38.5 -3.1 177.9 149.5 6.2 -6.4 529.9 73.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.164 + 91 2002 12 21 0 3 0 0 2.0000 157.7 1330.7 1018.8 -71.8 39.2 -3.2 177.9 149.5 6.2 -6.4 530.0 73.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.145 + 92 2002 12 21 0 3 2 0 2.0000 157.7 1331.1 1018.9 -71.9 40.2 -3.2 177.9 149.5 6.2 -6.3 530.0 73.7 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.126 + 93 2002 12 21 0 3 4 0 2.0000 157.7 1331.4 1019.0 -74.2 40.9 -3.2 177.9 149.5 6.2 -6.3 530.0 73.8 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.108 + 94 2002 12 21 0 3 6 0 2.0000 157.7 1331.7 1019.0 -76.0 41.4 -3.2 177.9 149.5 6.2 -6.3 530.1 73.9 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.089 + 95 2002 12 21 0 3 8 0 2.0000 157.7 1332.1 1019.1 -77.1 41.6 -3.2 177.9 149.5 6.3 -6.3 530.1 74.0 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.071 + 96 2002 12 21 0 3 10 0 2.0000 157.7 1332.4 1019.1 -77.3 42.1 -3.2 177.9 149.5 6.3 -6.3 530.2 74.1 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.053 + 97 2002 12 21 0 3 12 0 2.0000 157.7 1332.7 1019.2 -76.9 44.6 -3.2 177.9 149.5 6.3 -6.3 530.2 74.2 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.034 + 98 2002 12 21 0 3 14 0 2.0000 157.7 1333.1 1019.3 -75.5 46.6 -3.2 177.9 149.5 6.3 -6.3 530.3 74.3 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 56.016 + 99 2002 12 21 0 3 16 0 2.0000 157.7 1333.4 1019.3 -74.0 48.2 -3.2 177.9 149.5 6.3 -6.3 530.3 74.4 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.998 + 100 2002 12 21 0 3 18 0 2.0000 157.7 1333.7 1019.4 -76.2 49.2 -3.2 177.9 149.5 6.3 -6.3 530.4 74.5 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.980 + 101 2002 12 21 0 3 20 0 2.0000 157.7 1334.0 1019.4 -77.8 49.9 -3.2 177.9 149.5 6.3 -6.3 530.4 74.6 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.962 + 102 2002 12 21 0 3 22 0 2.0000 157.7 1334.4 1019.5 -78.8 51.6 -3.2 177.9 149.5 6.3 -6.2 530.5 74.7 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.944 + 103 2002 12 21 0 3 24 0 2.0000 157.7 1334.7 1019.6 -78.9 54.3 -3.2 177.9 149.5 6.3 -6.2 530.5 74.8 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.926 + 104 2002 12 21 0 3 26 0 2.0000 157.7 1335.0 1019.6 -78.6 56.4 -3.2 177.9 149.5 6.3 -6.2 530.6 74.9 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.908 + 105 2002 12 21 0 3 28 0 2.0000 157.7 1335.3 1019.7 -77.3 58.0 -3.2 177.9 149.5 6.3 -6.2 530.6 75.1 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.890 + 106 2002 12 21 0 3 30 0 2.0000 157.7 1335.6 1019.7 -75.6 59.5 -3.2 177.9 149.5 6.3 -6.2 530.7 75.2 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.872 + 107 2002 12 21 0 3 32 0 2.0000 157.7 1336.0 1019.8 -77.7 60.4 -3.2 177.9 149.5 6.3 -6.2 530.7 75.3 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.855 + 108 2002 12 21 0 3 34 0 2.0000 157.7 1336.3 1019.9 -79.3 60.9 -3.1 177.9 149.5 6.3 -6.2 530.8 75.4 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.837 + 109 2002 12 21 0 3 36 0 2.0000 157.7 1336.6 1019.9 -80.3 60.9 -3.1 177.9 149.5 6.3 -6.2 530.8 75.5 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.820 + 110 2002 12 21 0 3 38 0 2.0000 157.7 1336.9 1020.0 -80.8 60.5 -3.1 177.9 149.5 6.3 -6.2 530.9 75.6 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.802 + 111 2002 12 21 0 3 40 0 2.0000 157.7 1337.2 1020.1 -80.6 62.2 -3.0 177.9 149.5 6.3 -6.1 530.9 75.7 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.785 + 112 2002 12 21 0 3 42 0 2.0000 157.7 1337.5 1020.1 -79.5 64.8 -3.0 177.9 149.5 6.3 -6.1 530.9 75.8 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.767 + 113 2002 12 21 0 3 44 0 2.0000 157.7 1337.8 1020.2 -77.5 66.9 -2.9 177.9 149.5 6.3 -6.1 531.0 75.9 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.750 + 114 2002 12 21 0 3 46 0 2.0000 157.7 1338.1 1020.2 -77.4 68.3 -2.8 177.9 149.5 6.4 -6.1 531.0 76.0 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.733 + 115 2002 12 21 0 3 48 0 2.0000 157.7 1338.5 1020.3 -78.9 69.2 -2.7 177.9 149.5 6.4 -6.1 531.1 76.1 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.716 + 116 2002 12 21 0 3 50 0 2.0000 157.7 1338.8 1020.4 -79.8 69.6 -2.7 177.9 149.5 6.4 -6.1 531.1 76.2 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.699 + 117 2002 12 21 0 3 52 0 2.0000 157.7 1339.1 1020.4 -80.3 69.5 -2.6 177.9 149.5 6.4 -6.1 531.2 76.3 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.682 + 118 2002 12 21 0 3 54 0 2.0000 157.7 1339.4 1020.5 -80.3 72.1 -2.5 177.9 149.5 6.4 -6.1 531.2 76.4 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.665 + 119 2002 12 21 0 3 56 0 2.0000 157.7 1339.7 1020.6 -79.5 74.6 -2.4 177.9 149.5 6.4 -6.1 531.3 76.5 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.124 -0.410 55.648 + 120 2002 12 21 0 3 58 0 2.0000 157.7 1340.0 1020.6 -77.7 77.0 -2.2 177.9 149.5 6.4 -6.1 531.3 76.6 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.124 -0.410 55.631 + 121 2002 12 21 0 4 0 0 2.0000 157.7 1340.3 1020.7 -77.2 78.7 -2.1 177.9 149.5 6.4 -6.0 531.4 76.7 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.124 -0.410 55.614 + 122 2002 12 21 0 4 2 0 2.0000 157.7 1340.7 1020.8 -78.3 79.8 -2.0 177.9 149.5 6.4 -6.1 531.5 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.597 + 123 2002 12 21 0 4 4 0 2.0000 157.7 1341.0 1020.8 -79.2 80.4 -1.8 177.9 149.5 6.3 -6.1 531.5 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.581 + 124 2002 12 21 0 4 6 0 2.0000 157.7 1341.3 1020.9 -79.9 80.3 -1.7 177.9 149.5 6.3 -6.1 531.6 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.564 + 125 2002 12 21 0 4 8 0 2.0000 157.7 1341.6 1021.0 -80.0 79.8 -1.5 177.9 149.5 6.3 -6.1 531.7 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.547 + 126 2002 12 21 0 4 10 0 2.0000 157.7 1341.9 1021.0 -79.3 79.8 -1.4 177.9 149.5 6.2 -6.1 531.8 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.531 + 127 2002 12 21 0 4 12 0 2.0000 157.7 1342.2 1021.1 -77.9 82.8 -1.2 177.9 149.5 6.2 -6.1 531.8 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.514 + 128 2002 12 21 0 4 14 0 2.0000 157.7 1342.6 1021.2 -75.7 85.3 -1.1 177.9 149.5 6.2 -6.1 531.9 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.498 + 129 2002 12 21 0 4 16 0 2.0000 157.7 1342.9 1021.3 -76.8 87.2 -0.9 177.9 149.5 6.2 -6.1 532.0 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.482 + 130 2002 12 21 0 4 18 0 2.0000 157.7 1343.2 1021.3 -77.9 88.4 -0.7 177.9 149.5 6.1 -6.2 532.1 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.465 + 131 2002 12 21 0 4 20 0 2.0000 157.7 1343.6 1021.4 -78.5 88.9 -0.5 177.9 149.5 6.1 -6.2 532.1 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.449 + 132 2002 12 21 0 4 22 0 2.0000 157.7 1343.9 1021.5 -78.6 88.9 -0.3 177.9 149.5 6.1 -6.2 532.2 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.433 + 133 2002 12 21 0 4 24 0 2.0000 157.7 1344.2 1021.5 -78.1 88.5 -0.2 177.9 149.5 6.0 -6.2 532.3 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.417 + 134 2002 12 21 0 4 26 0 2.0000 157.7 1344.6 1021.6 -76.8 90.1 0.0 177.9 149.5 6.0 -6.2 532.4 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.400 + 135 2002 12 21 0 4 28 0 2.0000 157.7 1344.9 1021.7 -74.7 93.2 0.2 177.9 149.5 6.0 -6.2 532.5 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.384 + 136 2002 12 21 0 4 30 0 2.0000 157.7 1345.3 1021.8 -75.4 95.7 0.4 177.9 149.5 5.9 -6.2 532.5 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.368 + 137 2002 12 21 0 4 32 0 2.0000 157.7 1345.6 1021.8 -76.2 97.4 0.6 177.9 149.5 5.9 -6.3 532.6 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.352 + 138 2002 12 21 0 4 34 0 2.0000 157.7 1346.0 1021.9 -76.7 98.6 0.8 177.9 149.5 5.9 -6.3 532.7 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.336 + 139 2002 12 21 0 4 36 0 2.0000 157.7 1346.4 1022.0 -76.7 99.0 1.0 177.9 149.5 5.9 -6.3 532.8 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.320 + 140 2002 12 21 0 4 38 0 2.0000 157.7 1346.7 1022.1 -76.2 98.9 1.1 177.9 149.5 5.8 -6.3 532.8 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.304 + 141 2002 12 21 0 4 40 0 2.0000 157.7 1347.1 1022.1 -75.0 98.2 1.3 177.9 149.5 5.8 -6.3 532.9 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.289 + 142 2002 12 21 0 4 42 0 2.0000 157.7 1347.5 1022.2 -73.0 97.7 1.5 177.9 149.5 5.8 -6.3 533.0 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.273 + 143 2002 12 21 0 4 44 0 2.0000 157.7 1347.9 1022.3 -73.3 100.7 1.7 177.9 149.5 5.7 -6.3 533.1 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.257 + 144 2002 12 21 0 4 46 0 2.0000 157.7 1348.3 1022.4 -73.9 103.2 1.9 177.9 149.5 5.7 -6.3 533.2 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.241 + 145 2002 12 21 0 4 48 0 2.0000 157.7 1348.7 1022.4 -74.1 105.2 2.0 177.9 149.5 5.7 -6.4 533.2 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.226 + 146 2002 12 21 0 4 50 0 2.0000 157.7 1349.1 1022.5 -73.8 106.5 2.2 177.9 149.5 5.7 -6.4 533.3 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.210 + 147 2002 12 21 0 4 52 0 2.0000 157.7 1349.6 1022.6 -73.1 107.1 2.4 177.9 149.5 5.6 -6.4 533.4 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.195 + 148 2002 12 21 0 4 54 0 2.0000 157.7 1350.0 1022.6 -71.8 107.8 2.5 177.9 149.5 5.6 -6.4 533.5 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.179 + 149 2002 12 21 0 4 56 0 2.0000 157.7 1350.4 1022.7 -70.2 107.9 2.7 177.9 149.5 5.6 -6.4 533.5 77.3 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.164 + 150 2002 12 21 0 4 58 0 2.0000 157.7 1350.9 1022.8 -70.7 107.3 2.9 177.9 149.5 5.5 -6.4 533.6 77.3 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.148 + 151 2002 12 21 0 5 0 0 2.0000 157.7 1351.4 1022.8 -70.9 108.6 3.0 177.9 149.5 5.5 -6.4 533.7 77.3 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.133 + 152 2002 12 21 0 5 2 0 2.0000 157.7 1351.8 1022.9 -70.7 111.1 3.2 177.9 149.5 5.5 -6.4 533.7 77.2 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.120 -0.410 55.117 + 153 2002 12 21 0 5 4 0 2.0000 157.7 1352.3 1023.0 -70.1 113.1 3.3 177.9 149.5 5.5 -6.4 533.8 77.1 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 55.102 + 154 2002 12 21 0 5 6 0 2.0000 157.7 1352.8 1023.0 -69.1 114.5 3.5 177.9 149.5 5.5 -6.4 533.8 77.0 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 55.087 + 155 2002 12 21 0 5 8 0 2.0000 157.7 1353.3 1023.1 -67.5 115.2 3.7 177.9 149.5 5.5 -6.4 533.8 77.0 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 55.071 + 156 2002 12 21 0 5 10 0 2.0000 157.7 1353.8 1023.2 -67.3 115.8 3.8 177.9 149.5 5.4 -6.4 533.9 76.9 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 55.056 + 157 2002 12 21 0 5 12 0 2.0000 157.7 1354.3 1023.2 -67.4 116.3 4.0 177.9 149.5 5.4 -6.5 533.9 76.8 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 55.041 + 158 2002 12 21 0 5 14 0 2.0000 157.7 1354.9 1023.3 -67.1 116.1 4.1 177.9 149.5 5.4 -6.5 533.9 76.7 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 55.026 + 159 2002 12 21 0 5 16 0 2.0000 157.7 1355.4 1023.4 -66.5 115.3 4.3 177.9 149.5 5.4 -6.5 534.0 76.6 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 55.011 + 160 2002 12 21 0 5 18 0 2.0000 157.7 1356.0 1023.4 -65.4 117.3 4.4 177.9 149.5 5.4 -6.5 534.0 76.5 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 54.995 + 161 2002 12 21 0 5 20 0 2.0000 157.7 1356.6 1023.5 -64.1 119.3 4.6 177.9 149.5 5.4 -6.5 534.0 76.5 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 54.980 + 162 2002 12 21 0 5 22 0 2.0000 157.7 1357.1 1023.5 -64.2 120.9 4.7 177.9 149.5 5.4 -6.5 534.1 76.4 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 54.965 + 163 2002 12 21 0 5 24 0 2.0000 157.7 1357.7 1023.6 -64.0 122.2 4.8 177.9 149.5 5.3 -6.5 534.1 76.3 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 54.950 + 164 2002 12 21 0 5 26 0 2.0000 157.7 1358.3 1023.6 -63.5 123.8 5.0 177.9 149.5 5.3 -6.5 534.1 76.2 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 54.935 + 165 2002 12 21 0 5 28 0 2.0000 157.7 1359.0 1023.7 -62.7 124.8 5.1 177.9 149.5 5.3 -6.5 534.2 76.1 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 54.920 + 166 2002 12 21 0 5 30 0 2.0000 157.7 1359.6 1023.7 -61.5 125.0 5.2 177.9 149.5 5.3 -6.5 534.2 76.0 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 54.905 + 167 2002 12 21 0 5 32 0 2.0000 157.7 1360.2 1023.8 -61.5 124.6 5.4 177.9 149.5 5.3 -6.5 534.2 76.0 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 54.890 + 168 2002 12 21 0 5 34 0 2.0000 157.7 1360.9 1023.8 -61.2 123.7 5.5 177.9 149.5 5.3 -6.5 534.3 75.9 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 54.875 + 169 2002 12 21 0 5 36 0 2.0000 157.7 1361.6 1023.9 -60.7 125.4 5.6 177.9 149.5 5.3 -6.5 534.3 75.8 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 54.861 + 170 2002 12 21 0 5 38 0 2.0000 157.7 1362.2 1023.9 -60.2 127.0 5.7 177.9 149.5 5.3 -6.5 534.3 75.7 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 54.846 + 171 2002 12 21 0 5 40 0 2.0000 157.7 1362.9 1024.0 -59.9 128.4 5.9 177.9 149.5 5.2 -6.5 534.4 75.6 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 54.831 + 172 2002 12 21 0 5 42 0 2.0000 157.7 1363.6 1024.0 -60.0 130.4 6.0 177.9 149.5 5.2 -6.5 534.4 75.5 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 54.817 + 173 2002 12 21 0 5 44 0 2.0000 157.7 1364.3 1024.0 -59.9 131.8 6.1 177.9 149.5 5.2 -6.5 534.4 75.4 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 54.802 + 174 2002 12 21 0 5 46 0 2.0000 157.7 1365.0 1024.1 -59.7 132.5 6.2 177.9 149.5 5.2 -6.5 534.4 75.4 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 54.787 + 175 2002 12 21 0 5 48 0 2.0000 157.7 1365.7 1024.1 -59.8 132.6 6.3 177.9 149.5 5.2 -6.5 534.5 75.3 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 54.773 + 176 2002 12 21 0 5 50 0 2.0000 157.7 1366.3 1024.2 -59.8 132.0 6.4 177.9 149.5 5.2 -6.5 534.5 75.2 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 54.758 + 177 2002 12 21 0 5 52 0 2.0000 157.7 1367.0 1024.2 -59.8 130.9 6.4 177.9 149.5 5.2 -6.5 534.5 75.1 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 54.744 + 178 2002 12 21 0 5 54 0 2.0000 157.7 1367.6 1024.2 -59.9 132.3 6.5 177.9 149.5 5.1 -6.5 534.6 75.0 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 54.730 + 179 2002 12 21 0 5 56 0 2.0000 157.7 1368.3 1024.3 -60.0 133.8 6.6 177.9 149.5 5.1 -6.5 534.6 74.9 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 54.715 + 180 2002 12 21 0 5 58 0 2.0000 157.7 1368.9 1024.3 -60.1 136.0 6.7 177.9 149.5 5.1 -6.5 534.6 74.9 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 54.701 + 181 2002 12 21 0 6 0 0 2.0000 157.7 1369.5 1024.3 -60.3 137.7 6.7 177.9 149.5 5.1 -6.5 534.7 74.8 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.115 -0.410 54.687 + 182 2002 12 21 0 6 2 0 2.0000 157.7 1370.2 1024.4 -60.6 138.7 6.8 177.9 149.5 5.2 -6.5 534.8 74.7 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.115 -0.410 54.673 + 183 2002 12 21 0 6 4 0 2.0000 157.7 1370.8 1024.4 -60.9 139.2 6.8 177.9 149.5 5.3 -6.4 534.9 74.7 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.115 -0.410 54.659 + 184 2002 12 21 0 6 6 0 2.0000 157.7 1371.5 1024.5 -61.2 139.0 6.9 177.9 149.5 5.4 -6.4 535.0 74.6 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.115 -0.410 54.644 + 185 2002 12 21 0 6 8 0 2.0000 157.7 1372.1 1024.5 -61.6 138.2 6.9 177.9 149.5 5.4 -6.3 535.2 74.6 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.115 -0.410 54.630 + 186 2002 12 21 0 6 10 0 2.0000 157.7 1372.7 1024.5 -61.9 137.0 6.9 177.9 149.5 5.5 -6.3 535.3 74.5 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.115 -0.410 54.616 + 187 2002 12 21 0 6 12 0 2.0000 157.7 1373.4 1024.6 -62.0 137.4 6.9 177.9 149.5 5.6 -6.3 535.4 74.5 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.115 -0.410 54.602 + 188 2002 12 21 0 6 14 0 2.0000 157.7 1374.0 1024.6 -62.1 139.3 7.0 177.9 149.5 5.7 -6.2 535.5 74.4 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.114 -0.410 54.588 + 189 2002 12 21 0 6 16 0 2.0000 157.7 1374.6 1024.7 -62.0 141.1 7.0 177.8 149.5 5.8 -6.2 535.6 74.4 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.114 -0.410 54.574 + 190 2002 12 21 0 6 18 0 2.0000 157.7 1375.2 1024.7 -61.7 142.3 7.0 177.8 149.5 5.9 -6.1 535.8 74.3 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.114 -0.410 54.560 + 191 2002 12 21 0 6 20 0 2.0000 157.7 1375.8 1024.8 -61.3 143.1 7.0 177.8 149.5 6.0 -6.1 535.9 74.3 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.114 -0.410 54.546 + 192 2002 12 21 0 6 22 0 2.0000 157.7 1376.3 1024.8 -60.7 143.2 7.0 177.8 149.5 6.1 -6.1 536.0 74.2 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.114 -0.410 54.532 + 193 2002 12 21 0 6 24 0 2.0000 157.7 1376.8 1024.9 -60.0 142.8 6.9 177.8 149.5 6.1 -6.0 536.1 74.2 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.114 -0.410 54.519 + 194 2002 12 21 0 6 26 0 2.0000 157.7 1377.4 1025.0 -59.1 141.9 6.9 177.8 149.5 6.2 -6.0 536.2 74.1 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.114 -0.410 54.505 + 195 2002 12 21 0 6 28 0 2.0000 157.7 1377.9 1025.0 -58.0 140.4 6.9 177.8 149.5 6.3 -5.9 536.4 74.1 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.113 -0.410 54.491 + 196 2002 12 21 0 6 30 0 2.0000 157.7 1378.3 1025.1 -56.7 141.1 6.9 177.8 149.5 6.4 -5.9 536.5 74.0 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.113 -0.410 54.478 + 197 2002 12 21 0 6 32 0 2.0000 157.7 1378.8 1025.2 -55.2 142.8 6.9 177.8 149.5 6.5 -5.9 536.6 74.0 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.113 -0.410 54.464 + 198 2002 12 21 0 6 34 0 2.0000 157.7 1379.2 1025.2 -54.2 144.1 6.8 177.8 149.5 6.6 -5.8 536.7 73.9 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.113 -0.410 54.451 + 199 2002 12 21 0 6 36 0 2.0000 157.7 1379.6 1025.3 -54.5 144.9 6.8 177.8 149.5 6.7 -5.8 536.9 73.9 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.113 -0.410 54.437 + 200 2002 12 21 0 6 38 0 2.0000 157.7 1380.0 1025.4 -54.6 145.3 6.7 177.8 149.5 6.8 -5.7 537.0 73.8 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.113 -0.410 54.424 + 201 2002 12 21 0 6 40 0 2.0000 157.7 1380.3 1025.5 -54.6 145.1 6.7 177.8 149.5 6.8 -5.7 537.1 73.8 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.113 -0.410 54.411 + 202 2002 12 21 0 6 42 0 2.0000 157.7 1380.6 1025.6 -54.7 144.5 6.7 177.8 149.5 6.9 -5.7 537.2 73.7 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.112 -0.410 54.397 + 203 2002 12 21 0 6 44 0 2.0000 157.7 1380.9 1025.7 -55.0 143.4 6.6 177.8 149.5 7.0 -5.6 537.3 73.7 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.112 -0.410 54.384 + 204 2002 12 21 0 6 46 0 2.0000 157.7 1381.2 1025.8 -56.1 142.1 6.6 177.8 149.5 7.1 -5.6 537.5 73.6 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.112 -0.410 54.371 + 205 2002 12 21 0 6 48 0 2.0000 157.7 1381.4 1025.9 -57.4 143.6 6.5 177.8 149.5 7.2 -5.6 537.6 73.6 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.112 -0.410 54.358 + 206 2002 12 21 0 6 50 0 2.0000 157.7 1381.6 1026.1 -58.6 144.7 6.5 177.8 149.5 7.3 -5.5 537.7 73.5 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.112 -0.410 54.345 + 207 2002 12 21 0 6 52 0 2.0000 157.7 1381.8 1026.2 -59.6 145.6 6.4 177.8 149.5 7.4 -5.5 537.8 73.5 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.112 -0.410 54.332 + 208 2002 12 21 0 6 54 0 2.0000 157.7 1381.9 1026.3 -60.5 146.0 6.4 177.8 149.5 7.4 -5.4 537.9 73.4 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.111 -0.410 54.319 + 209 2002 12 21 0 6 56 0 2.0000 157.7 1382.1 1026.5 -61.3 146.0 6.3 177.8 149.5 7.5 -5.4 538.1 73.4 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.111 -0.410 54.306 + 210 2002 12 21 0 6 58 0 2.0000 157.7 1382.1 1026.6 -61.8 145.5 6.3 177.8 149.5 7.6 -5.4 538.2 73.3 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.111 -0.410 54.293 + 211 2002 12 21 0 7 0 0 2.0000 157.7 1382.2 1026.7 -62.2 144.6 6.2 177.8 149.5 7.7 -5.3 538.3 73.3 152.5 152.5 152.5 152.5 0.0 0.0 0.0 0.0 95.1 106.9 3.111 -0.410 54.280 + 212 2002 12 21 0 7 2 0 2.0000 157.7 1382.2 1026.9 -62.3 143.3 6.2 177.8 149.5 7.7 -5.3 538.3 73.2 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.111 -0.410 54.267 + 213 2002 12 21 0 7 4 0 2.0000 157.7 1382.2 1027.1 -62.8 144.5 6.1 177.8 149.5 7.7 -5.4 538.3 73.2 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.111 -0.410 54.255 + 214 2002 12 21 0 7 6 0 2.0000 157.7 1382.1 1027.2 -64.2 145.5 6.1 177.8 149.5 7.7 -5.4 538.3 73.2 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.111 -0.410 54.242 + 215 2002 12 21 0 7 8 0 2.0000 157.7 1382.1 1027.4 -65.5 146.2 6.0 177.8 149.5 7.6 -5.4 538.3 73.1 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.110 -0.410 54.230 + 216 2002 12 21 0 7 10 0 2.0000 157.7 1382.0 1027.5 -66.6 146.5 5.9 177.8 149.5 7.6 -5.4 538.3 73.1 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.110 -0.410 54.217 + 217 2002 12 21 0 7 12 0 2.0000 157.7 1381.8 1027.7 -67.5 146.4 5.9 177.8 149.5 7.6 -5.4 538.3 73.1 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.110 -0.410 54.204 + 218 2002 12 21 0 7 14 0 2.0000 157.7 1381.7 1027.9 -68.3 146.0 5.8 177.8 149.5 7.6 -5.4 538.3 73.0 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.110 -0.410 54.192 + 219 2002 12 21 0 7 16 0 2.0000 157.7 1381.5 1028.1 -68.8 145.1 5.8 177.8 149.5 7.6 -5.5 538.3 73.0 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.110 -0.410 54.180 + 220 2002 12 21 0 7 18 0 2.0000 157.7 1381.3 1028.3 -69.1 145.4 5.7 177.8 149.5 7.6 -5.5 538.3 73.0 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.110 -0.410 54.167 + 221 2002 12 21 0 7 20 0 2.0000 157.7 1381.0 1028.4 -69.2 146.3 5.7 177.8 149.5 7.6 -5.5 538.3 72.9 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.110 -0.410 54.155 + 222 2002 12 21 0 7 22 0 2.0000 157.7 1380.7 1028.6 -70.0 147.0 5.6 177.8 149.5 7.5 -5.5 538.3 72.9 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.109 -0.410 54.142 + 223 2002 12 21 0 7 24 0 2.0000 157.7 1380.4 1028.8 -71.4 147.3 5.6 177.8 149.5 7.5 -5.5 538.3 72.9 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.109 -0.410 54.130 + 224 2002 12 21 0 7 26 0 2.0000 157.7 1380.1 1029.0 -72.8 147.3 5.5 177.8 149.5 7.5 -5.5 538.3 72.8 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.109 -0.410 54.118 + 225 2002 12 21 0 7 28 0 2.0000 157.7 1379.8 1029.2 -73.9 147.0 5.4 177.8 149.5 7.5 -5.6 538.3 72.8 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.109 -0.410 54.106 + 226 2002 12 21 0 7 30 0 2.0000 157.7 1379.4 1029.4 -74.9 146.7 5.4 177.8 149.5 7.5 -5.6 538.3 72.8 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.109 -0.410 54.094 + 227 2002 12 21 0 7 32 0 2.0000 157.7 1379.0 1029.6 -75.6 147.6 5.3 177.8 149.5 7.5 -5.6 538.3 72.7 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.109 -0.410 54.082 + 228 2002 12 21 0 7 34 0 2.0000 157.7 1378.6 1029.8 -76.4 148.3 5.3 177.8 149.5 7.4 -5.6 538.3 72.7 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.109 -0.410 54.070 + 229 2002 12 21 0 7 36 0 2.0000 157.7 1378.2 1029.9 -77.2 148.6 5.2 177.8 149.5 7.4 -5.6 538.3 72.7 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.108 -0.410 54.058 + 230 2002 12 21 0 7 38 0 2.0000 157.7 1377.8 1030.1 -77.8 148.7 5.2 177.8 149.5 7.4 -5.6 538.3 72.6 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.108 -0.410 54.046 + 231 2002 12 21 0 7 40 0 2.0000 157.7 1377.3 1030.3 -78.2 148.4 5.1 177.8 149.5 7.4 -5.7 538.3 72.6 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.108 -0.410 54.034 + 232 2002 12 21 0 7 42 0 2.0000 157.7 1376.9 1030.5 -78.3 149.3 5.1 177.8 149.5 7.4 -5.7 538.3 72.6 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.108 -0.410 54.022 + 233 2002 12 21 0 7 44 0 2.0000 157.7 1376.4 1030.7 -78.8 149.9 5.0 177.8 149.5 7.4 -5.7 538.3 72.6 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.108 -0.410 54.011 + 234 2002 12 21 0 7 46 0 2.0000 157.7 1375.9 1030.8 -80.4 150.2 5.0 177.8 149.5 7.3 -5.7 538.3 72.5 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.108 -0.410 53.999 + 235 2002 12 21 0 7 48 0 2.0000 157.7 1375.4 1031.0 -81.9 150.3 4.9 177.8 149.5 7.3 -5.7 538.3 72.5 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.108 -0.410 53.987 + 236 2002 12 21 0 7 50 0 2.0000 157.7 1374.9 1031.2 -83.3 151.1 4.8 177.8 149.5 7.3 -5.7 538.3 72.5 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.107 -0.410 53.975 + 237 2002 12 21 0 7 52 0 2.0000 157.7 1374.4 1031.3 -84.5 151.6 4.8 177.8 149.5 7.3 -5.8 538.3 72.4 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.107 -0.410 53.964 + 238 2002 12 21 0 7 54 0 2.0000 157.7 1373.9 1031.5 -85.4 152.0 4.7 177.8 149.5 7.3 -5.8 538.3 72.4 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.107 -0.410 53.952 + 239 2002 12 21 0 7 56 0 2.0000 157.7 1373.4 1031.7 -86.1 152.7 4.7 177.8 149.5 7.3 -5.8 538.3 72.4 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.107 -0.410 53.941 + 240 2002 12 21 0 7 58 0 2.0000 157.7 1372.9 1031.8 -86.6 153.3 4.6 177.8 149.5 7.3 -5.8 538.3 72.3 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.107 -0.410 53.929 + 241 2002 12 21 0 8 0 0 2.0000 157.7 1372.4 1031.9 -86.8 154.0 4.5 177.8 149.5 7.2 -5.8 538.3 72.3 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 104.9 3.107 -0.410 53.918 + 242 2002 12 21 0 8 2 0 2.0000 157.7 1371.9 1032.1 -86.7 154.8 4.5 177.8 149.5 7.2 -5.8 538.1 72.3 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.107 -0.410 53.906 + 243 2002 12 21 0 8 4 0 2.0000 157.7 1371.4 1032.2 -86.3 155.6 4.4 177.8 149.5 7.2 -5.8 537.9 72.4 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.106 -0.410 53.895 + 244 2002 12 21 0 8 6 0 2.0000 157.7 1370.9 1032.3 -87.4 156.5 4.4 177.8 149.5 7.3 -5.8 537.7 72.4 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.106 -0.410 53.883 + 245 2002 12 21 0 8 8 0 2.0000 157.7 1370.4 1032.4 -88.8 157.3 4.3 177.8 149.5 7.3 -5.8 537.4 72.4 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.106 -0.410 53.872 + 246 2002 12 21 0 8 10 0 2.0000 157.7 1369.9 1032.6 -90.1 157.8 4.2 177.8 149.5 7.3 -5.8 537.2 72.4 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.106 -0.410 53.860 + 247 2002 12 21 0 8 12 0 2.0000 157.7 1369.4 1032.7 -91.1 158.1 4.2 177.8 149.5 7.3 -5.8 537.0 72.5 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.106 -0.410 53.849 + 248 2002 12 21 0 8 14 0 2.0000 157.7 1369.0 1032.7 -91.8 158.1 4.1 177.8 149.5 7.3 -5.8 536.8 72.5 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.106 -0.410 53.838 + 249 2002 12 21 0 8 16 0 2.0000 157.7 1368.5 1032.8 -92.4 157.9 4.0 177.8 149.5 7.3 -5.8 536.6 72.5 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.106 -0.410 53.827 + 250 2002 12 21 0 8 18 0 2.0000 157.7 1368.1 1032.9 -92.6 157.4 4.0 177.8 149.5 7.3 -5.8 536.4 72.6 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.105 -0.410 53.815 + 251 2002 12 21 0 8 20 0 2.0000 157.7 1367.7 1033.0 -92.6 156.7 3.9 177.8 149.5 7.3 -5.8 536.1 72.6 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.105 -0.410 53.804 + 252 2002 12 21 0 8 22 0 2.0000 157.7 1367.3 1033.1 -92.3 155.8 3.9 177.8 149.5 7.3 -5.8 535.9 72.6 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.105 -0.410 53.793 + 253 2002 12 21 0 8 24 0 2.0000 157.7 1366.9 1033.1 -91.7 154.7 3.8 177.8 149.5 7.3 -5.8 535.7 72.7 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.105 -0.410 53.782 + 254 2002 12 21 0 8 26 0 2.0000 157.7 1366.5 1033.2 -91.6 153.4 3.7 177.8 149.5 7.3 -5.8 535.5 72.7 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.105 -0.410 53.771 + 255 2002 12 21 0 8 28 0 2.0000 157.7 1366.1 1033.2 -92.8 152.3 3.7 177.8 149.5 7.3 -5.8 535.3 72.7 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.105 -0.410 53.760 + 256 2002 12 21 0 8 30 0 2.0000 157.7 1365.8 1033.2 -93.8 151.5 3.6 177.8 149.5 7.3 -5.8 535.1 72.8 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.105 -0.410 53.749 + 257 2002 12 21 0 8 32 0 2.0000 157.7 1365.5 1033.3 -94.6 150.6 3.5 177.8 149.5 7.3 -5.8 534.8 72.8 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.104 -0.410 53.738 + 258 2002 12 21 0 8 34 0 2.0000 157.7 1365.2 1033.3 -95.2 149.5 3.5 177.8 149.5 7.3 -5.8 534.6 72.8 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.104 -0.410 53.727 + 259 2002 12 21 0 8 36 0 2.0000 157.7 1364.9 1033.3 -95.6 148.2 3.4 177.8 149.5 7.3 -5.8 534.4 72.8 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.104 -0.410 53.716 + 260 2002 12 21 0 8 38 0 2.0000 157.7 1364.7 1033.3 -95.6 146.8 3.3 177.8 149.5 7.3 -5.7 534.2 72.9 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.104 -0.410 53.705 + 261 2002 12 21 0 8 40 0 2.0000 157.7 1364.4 1033.3 -95.4 145.2 3.3 177.8 149.5 7.3 -5.7 534.0 72.9 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.104 -0.410 53.694 + 262 2002 12 21 0 8 42 0 2.0000 157.7 1364.2 1033.3 -95.0 143.4 3.2 177.8 149.5 7.3 -5.7 533.8 72.9 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.104 -0.410 53.683 + 263 2002 12 21 0 8 44 0 2.0000 157.7 1364.1 1033.3 -94.2 141.5 3.1 177.8 149.5 7.3 -5.7 533.6 73.0 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.103 -0.410 53.672 + 264 2002 12 21 0 8 46 0 2.0000 157.7 1363.9 1033.3 -93.2 139.4 3.1 177.8 149.5 7.3 -5.7 533.4 73.0 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.103 -0.410 53.661 + 265 2002 12 21 0 8 48 0 2.0000 157.7 1363.8 1033.2 -93.9 137.2 3.0 177.8 149.5 7.3 -5.7 533.1 73.0 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.103 -0.410 53.650 + 266 2002 12 21 0 8 50 0 2.0000 157.7 1363.7 1033.2 -94.7 134.9 2.9 177.8 149.5 7.3 -5.7 532.9 73.1 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.103 -0.410 53.640 + 267 2002 12 21 0 8 52 0 2.0000 157.7 1363.6 1033.2 -95.4 132.4 2.9 177.8 149.5 7.4 -5.7 532.7 73.1 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.103 -0.410 53.629 + 268 2002 12 21 0 8 54 0 2.0000 157.7 1363.5 1033.1 -95.8 129.7 2.8 177.8 149.5 7.4 -5.7 532.5 73.1 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.103 -0.410 53.618 + 269 2002 12 21 0 8 56 0 2.0000 157.7 1363.5 1033.1 -96.0 127.0 2.7 177.8 149.5 7.4 -5.7 532.3 73.1 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.103 -0.410 53.608 + 270 2002 12 21 0 8 58 0 2.0000 157.7 1363.5 1033.0 -96.0 124.4 2.6 177.8 149.5 7.4 -5.7 532.1 73.2 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.102 -0.410 53.597 + 271 2002 12 21 0 9 0 0 2.0000 157.7 1363.5 1032.9 -95.7 121.6 2.6 177.8 149.5 7.4 -5.7 531.9 73.2 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.8 3.102 -0.410 53.586 + 272 2002 12 21 0 9 2 0 2.0000 157.7 1363.6 1032.9 -95.1 118.8 2.5 177.8 149.5 7.3 -5.7 531.7 73.2 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.102 -0.410 53.575 + 273 2002 12 21 0 9 4 0 2.0000 157.7 1363.6 1032.8 -94.3 115.8 2.4 177.8 149.5 7.3 -5.7 531.6 73.2 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.102 -0.410 53.565 + 274 2002 12 21 0 9 6 0 2.0000 157.7 1363.7 1032.7 -93.2 112.8 2.4 177.8 149.5 7.3 -5.7 531.4 73.3 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.102 -0.410 53.554 + 275 2002 12 21 0 9 8 0 2.0000 157.7 1363.9 1032.6 -93.7 109.6 2.3 177.8 149.5 7.3 -5.7 531.3 73.3 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.102 -0.410 53.544 + 276 2002 12 21 0 9 10 0 2.0000 157.7 1364.0 1032.6 -94.5 106.4 2.2 177.8 149.5 7.2 -5.7 531.2 73.3 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.102 -0.410 53.533 + 277 2002 12 21 0 9 12 0 2.0000 157.7 1364.2 1032.5 -95.0 103.1 2.2 177.8 149.5 7.2 -5.7 531.0 73.3 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.101 -0.410 53.523 + 278 2002 12 21 0 9 14 0 2.0000 157.7 1364.4 1032.4 -95.4 99.7 2.1 177.8 149.5 7.2 -5.7 530.9 73.3 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.101 -0.410 53.512 + 279 2002 12 21 0 9 16 0 2.0000 157.7 1364.6 1032.3 -95.5 96.3 2.0 177.8 149.5 7.2 -5.7 530.7 73.4 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.101 -0.410 53.502 + 280 2002 12 21 0 9 18 0 2.0000 157.7 1364.8 1032.2 -95.3 93.2 1.9 177.8 149.5 7.1 -5.7 530.6 73.4 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.101 -0.410 53.491 + 281 2002 12 21 0 9 20 0 2.0000 157.7 1365.1 1032.1 -95.0 90.8 1.9 177.8 149.5 7.1 -5.7 530.4 73.4 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.101 -0.410 53.481 + 282 2002 12 21 0 9 22 0 2.0000 157.7 1365.3 1032.0 -94.4 88.4 1.8 177.8 149.5 7.1 -5.7 530.3 73.4 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.101 -0.410 53.470 + 283 2002 12 21 0 9 24 0 2.0000 157.7 1365.6 1031.9 -93.6 85.9 1.7 177.8 149.5 7.1 -5.6 530.1 73.4 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.101 -0.410 53.460 + 284 2002 12 21 0 9 26 0 2.0000 157.7 1365.9 1031.8 -92.7 83.4 1.6 177.8 149.5 7.0 -5.6 530.0 73.5 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.100 -0.410 53.450 + 285 2002 12 21 0 9 28 0 2.0000 157.7 1366.3 1031.7 -93.5 80.8 1.6 177.8 149.5 7.0 -5.6 529.8 73.5 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.100 -0.410 53.440 + 286 2002 12 21 0 9 30 0 2.0000 157.7 1366.6 1031.6 -94.1 78.2 1.5 177.8 149.5 7.0 -5.6 529.7 73.5 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.100 -0.410 53.429 + 287 2002 12 21 0 9 32 0 2.0000 157.7 1367.0 1031.4 -94.5 75.6 1.4 177.8 149.5 7.0 -5.6 529.5 73.5 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.100 -0.410 53.419 + 288 2002 12 21 0 9 34 0 2.0000 157.7 1367.3 1031.3 -94.7 72.9 1.3 177.8 149.5 7.0 -5.6 529.4 73.5 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.100 -0.410 53.409 + 289 2002 12 21 0 9 36 0 2.0000 157.7 1367.7 1031.2 -94.6 70.2 1.3 177.8 149.5 6.9 -5.6 529.2 73.5 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.100 -0.410 53.398 + 290 2002 12 21 0 9 38 0 2.0000 157.7 1368.1 1031.1 -94.4 67.5 1.2 177.8 149.5 6.9 -5.6 529.1 73.6 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.100 -0.410 53.388 + 291 2002 12 21 0 9 40 0 2.0000 157.7 1368.5 1031.0 -94.0 64.8 1.1 177.8 149.5 6.9 -5.6 528.9 73.6 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.099 -0.410 53.378 + 292 2002 12 21 0 9 42 0 2.0000 157.7 1369.0 1030.9 -93.3 62.1 1.0 177.8 149.5 6.9 -5.6 528.8 73.6 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.099 -0.410 53.368 + 293 2002 12 21 0 9 44 0 2.0000 157.7 1369.4 1030.8 -92.5 59.4 0.9 177.8 149.5 6.8 -5.6 528.6 73.6 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.099 -0.410 53.358 + 294 2002 12 21 0 9 46 0 2.0000 157.7 1369.8 1030.7 -93.2 56.7 0.9 177.8 149.5 6.8 -5.6 528.5 73.6 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.099 -0.410 53.348 + 295 2002 12 21 0 9 48 0 2.0000 157.7 1370.3 1030.6 -93.6 54.0 0.8 177.8 149.5 6.8 -5.6 528.4 73.7 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.099 -0.410 53.338 + 296 2002 12 21 0 9 50 0 2.0000 157.7 1370.7 1030.4 -94.0 51.3 0.7 177.8 149.5 6.8 -5.6 528.2 73.7 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.099 -0.410 53.327 + 297 2002 12 21 0 9 52 0 2.0000 157.7 1371.2 1030.3 -94.1 48.6 0.6 177.8 149.5 6.7 -5.6 528.1 73.7 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.099 -0.410 53.318 + 298 2002 12 21 0 9 54 0 2.0000 157.7 1371.7 1030.2 -94.0 48.3 0.5 177.8 149.5 6.7 -5.6 527.9 73.7 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.098 -0.410 53.307 + 299 2002 12 21 0 9 56 0 2.0000 157.7 1372.1 1030.1 -93.8 48.3 0.5 177.8 149.5 6.7 -5.6 527.8 73.7 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.098 -0.410 53.298 + 300 2002 12 21 0 9 58 0 2.0000 157.7 1372.6 1030.0 -93.3 48.5 0.4 177.8 149.5 6.7 -5.6 527.6 73.8 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.098 -0.410 53.287 + 301 2002 12 21 0 10 0 0 2.0000 157.7 1373.1 1029.9 -92.7 48.8 0.3 177.8 149.5 6.6 -5.6 527.5 73.8 142.1 142.1 142.1 142.1 0.0 0.0 0.0 0.0 91.8 106.3 3.098 -0.410 53.278 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.001.defaultRestart.test b/srcTests/auto_test/ref_solns/log.UAM.in.001.defaultRestart.test new file mode 100644 index 00000000..8123f671 --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.001.defaultRestart.test @@ -0,0 +1,319 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= T +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: TFile: +UA/DataIn/FISM/fismflux_daily_2002.dat +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 302 2002 12 21 0 10 2 0 2.0000 157.7 1373.5 1029.8 -92.9 49.0 0.2 177.8 149.5 6.6 -5.5 527.3 73.8 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.098 -0.410 53.271 + 303 2002 12 21 0 10 4 0 2.0000 157.7 1374.0 1029.7 -93.3 49.2 0.1 177.8 149.5 6.6 -5.5 527.2 73.8 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.098 -0.410 53.265 + 304 2002 12 21 0 10 6 0 2.0000 157.7 1374.4 1029.6 -93.4 49.5 0.1 177.8 149.5 6.6 -5.4 527.0 73.9 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.098 -0.410 53.259 + 305 2002 12 21 0 10 8 0 2.0000 157.7 1374.9 1029.5 -93.5 49.7 -0.0 177.8 149.5 6.6 -5.4 526.9 73.9 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.097 -0.410 53.252 + 306 2002 12 21 0 10 10 0 2.0000 157.7 1375.3 1029.5 -93.3 49.9 -0.1 177.8 149.5 6.6 -5.4 526.7 73.9 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.097 -0.410 53.245 + 307 2002 12 21 0 10 12 0 2.0000 157.7 1375.8 1029.4 -93.0 50.1 -0.2 177.8 149.5 6.6 -5.3 526.6 74.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.097 -0.410 53.238 + 308 2002 12 21 0 10 14 0 2.0000 157.7 1376.2 1029.3 -92.5 50.3 -0.2 177.8 149.5 6.6 -5.3 526.4 74.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.097 -0.410 53.232 + 309 2002 12 21 0 10 16 0 2.0000 157.7 1376.6 1029.2 -92.7 50.5 -0.3 177.8 149.5 6.6 -5.2 526.3 74.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.097 -0.410 53.225 + 310 2002 12 21 0 10 18 0 2.0000 157.7 1377.1 1029.1 -92.9 50.7 -0.4 177.8 149.5 6.6 -5.2 526.1 74.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.097 -0.410 53.218 + 311 2002 12 21 0 10 20 0 2.0000 157.7 1377.5 1029.1 -93.0 50.9 -0.5 177.8 149.5 6.6 -5.2 526.0 74.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.097 -0.410 53.211 + 312 2002 12 21 0 10 22 0 2.0000 157.7 1377.9 1029.0 -92.8 51.1 -0.5 177.8 149.5 6.6 -5.1 525.9 74.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.096 -0.410 53.204 + 313 2002 12 21 0 10 24 0 2.0000 157.7 1378.3 1028.9 -92.6 51.2 -0.6 177.8 149.5 6.6 -5.1 525.7 74.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.096 -0.410 53.197 + 314 2002 12 21 0 10 26 0 2.0000 157.7 1378.7 1028.9 -92.4 51.3 -0.7 177.8 149.5 6.6 -5.0 525.6 74.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.096 -0.410 53.190 + 315 2002 12 21 0 10 28 0 2.0000 157.7 1379.1 1028.8 -92.6 51.5 -0.7 177.8 149.5 6.6 -5.0 525.4 74.3 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.096 -0.410 53.184 + 316 2002 12 21 0 10 30 0 2.0000 157.7 1379.4 1028.8 -92.6 51.6 -0.8 177.8 149.5 6.5 -5.0 525.3 74.3 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.096 -0.410 53.177 + 317 2002 12 21 0 10 32 0 2.0000 157.7 1379.8 1028.7 -92.4 51.6 -0.8 177.8 149.5 6.5 -4.9 525.1 74.3 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.096 -0.410 53.170 + 318 2002 12 21 0 10 34 0 2.0000 157.7 1380.1 1028.7 -92.3 51.7 -0.9 177.8 149.5 6.5 -4.9 525.0 74.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.095 -0.410 53.163 + 319 2002 12 21 0 10 36 0 2.0000 157.8 1380.4 1028.6 -92.4 51.8 -1.0 177.8 149.5 6.5 -4.8 524.8 74.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.095 -0.410 53.156 + 320 2002 12 21 0 10 38 0 2.0000 157.8 1380.7 1028.6 -92.3 51.8 -1.0 177.8 149.5 6.5 -4.8 524.7 74.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.095 -0.410 53.149 + 321 2002 12 21 0 10 40 0 2.0000 157.8 1381.0 1028.6 -92.3 51.8 -1.1 177.8 149.5 6.5 -4.8 524.5 74.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.095 -0.410 53.142 + 322 2002 12 21 0 10 42 0 2.0000 157.8 1381.3 1028.5 -92.2 51.7 -1.1 177.8 149.5 6.5 -4.7 524.4 74.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.095 -0.410 53.135 + 323 2002 12 21 0 10 44 0 2.0000 157.8 1381.6 1028.5 -92.2 51.7 -1.2 177.8 149.5 6.5 -4.7 524.2 74.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.095 -0.410 53.128 + 324 2002 12 21 0 10 46 0 2.0000 157.8 1381.9 1028.5 -92.2 51.6 -1.2 177.8 149.5 6.5 -4.6 524.1 74.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.095 -0.410 53.121 + 325 2002 12 21 0 10 48 0 2.0000 157.8 1382.1 1028.5 -92.2 51.5 -1.3 177.8 149.5 6.5 -4.6 523.9 74.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.094 -0.410 53.114 + 326 2002 12 21 0 10 50 0 2.0000 157.8 1382.3 1028.4 -92.1 51.4 -1.3 177.8 149.5 6.5 -4.6 523.8 74.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.094 -0.410 53.107 + 327 2002 12 21 0 10 52 0 2.0000 157.8 1382.5 1028.4 -92.1 51.2 -1.3 177.8 149.5 6.5 -4.5 523.7 74.7 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.094 -0.410 53.100 + 328 2002 12 21 0 10 54 0 2.0000 157.8 1382.7 1028.4 -91.9 51.1 -1.4 177.8 149.5 6.5 -4.5 523.5 74.7 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.094 -0.410 53.093 + 329 2002 12 21 0 10 56 0 2.0000 157.8 1382.9 1028.4 -91.6 50.9 -1.4 177.8 149.5 6.5 -4.4 523.4 74.7 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.094 -0.410 53.087 + 330 2002 12 21 0 10 58 0 2.0000 157.8 1383.1 1028.4 -91.2 50.7 -1.5 177.8 149.5 6.5 -4.4 523.2 74.8 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.094 -0.410 53.079 + 331 2002 12 21 0 11 0 0 2.0000 157.8 1383.2 1028.4 -90.6 50.4 -1.5 177.8 149.5 6.5 -4.4 523.1 74.8 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 89.5 104.4 3.094 -0.410 53.073 + 332 2002 12 21 0 11 2 0 2.0000 157.8 1383.4 1028.4 -89.8 50.1 -1.5 177.8 149.5 6.5 -4.4 523.2 74.9 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.093 -0.410 53.066 + 333 2002 12 21 0 11 4 0 2.0000 157.8 1383.5 1028.5 -89.0 49.8 -1.5 177.8 149.5 6.5 -4.5 523.4 75.0 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.093 -0.410 53.059 + 334 2002 12 21 0 11 6 0 2.0000 157.8 1383.6 1028.5 -88.0 49.5 -1.6 177.8 149.5 6.5 -4.5 523.5 75.1 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.093 -0.410 53.052 + 335 2002 12 21 0 11 8 0 2.0000 157.8 1383.7 1028.5 -86.9 49.2 -1.6 177.8 149.5 6.5 -4.5 523.7 75.1 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.093 -0.410 53.045 + 336 2002 12 21 0 11 10 0 2.0000 157.8 1383.7 1028.5 -85.7 48.8 -1.6 177.8 149.5 6.5 -4.6 523.8 75.2 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.093 -0.410 53.038 + 337 2002 12 21 0 11 12 0 2.0000 157.8 1383.8 1028.5 -84.3 48.4 -1.6 177.8 149.5 6.5 -4.6 524.0 75.3 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.093 -0.410 53.031 + 338 2002 12 21 0 11 14 0 2.0000 157.8 1383.8 1028.6 -82.9 48.0 -1.6 177.8 149.5 6.5 -4.7 524.1 75.4 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.093 -0.410 53.024 + 339 2002 12 21 0 11 16 0 2.0000 157.8 1383.9 1028.6 -81.4 47.6 -1.6 177.8 149.5 6.5 -4.7 524.3 75.5 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.092 -0.410 53.017 + 340 2002 12 21 0 11 18 0 2.0000 157.8 1383.9 1028.6 -79.9 47.1 -1.7 177.8 149.5 6.5 -4.8 524.4 75.6 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.092 -0.410 53.010 + 341 2002 12 21 0 11 20 0 2.0000 157.8 1383.9 1028.6 -78.2 46.6 -1.7 177.8 149.5 6.5 -4.8 524.6 75.6 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.092 -0.410 53.003 + 342 2002 12 21 0 11 22 0 2.0000 157.8 1383.9 1028.7 -76.5 46.1 -1.7 177.8 149.5 6.5 -4.9 524.8 75.7 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.092 -0.410 52.996 + 343 2002 12 21 0 11 24 0 2.0000 157.8 1383.9 1028.7 -74.8 45.6 -1.7 177.8 149.5 6.5 -4.9 524.9 75.8 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.092 -0.410 52.989 + 344 2002 12 21 0 11 26 0 2.0000 157.8 1383.8 1028.8 -73.0 45.1 -1.7 177.8 149.5 6.5 -5.0 525.1 75.9 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.092 -0.410 52.982 + 345 2002 12 21 0 11 28 0 2.0000 157.8 1383.8 1028.8 -71.1 44.5 -1.7 177.8 149.5 6.6 -5.0 525.2 76.0 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.092 -0.410 52.975 + 346 2002 12 21 0 11 30 0 2.0000 157.8 1383.8 1028.8 -69.3 44.0 -1.7 177.8 149.5 6.6 -5.1 525.4 76.0 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.091 -0.410 52.968 + 347 2002 12 21 0 11 32 0 2.0000 157.8 1383.7 1028.9 -67.4 43.4 -1.7 177.8 149.5 6.6 -5.1 525.5 76.1 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.091 -0.410 52.961 + 348 2002 12 21 0 11 34 0 2.0000 157.8 1383.6 1028.9 -65.5 42.8 -1.7 177.8 149.5 6.6 -5.1 525.7 76.2 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.091 -0.410 52.954 + 349 2002 12 21 0 11 36 0 2.0000 157.8 1383.6 1029.0 -63.5 42.2 -1.7 177.8 149.5 6.6 -5.2 525.8 76.3 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.091 -0.410 52.947 + 350 2002 12 21 0 11 38 0 2.0000 157.8 1383.5 1029.0 -61.6 41.6 -1.6 177.8 149.5 6.6 -5.2 526.0 76.4 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.091 -0.410 52.940 + 351 2002 12 21 0 11 40 0 2.0000 157.8 1383.4 1029.1 -59.7 40.9 -1.6 177.8 149.5 6.6 -5.3 526.1 76.5 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.091 -0.410 52.933 + 352 2002 12 21 0 11 42 0 2.0000 157.8 1383.3 1029.1 -57.8 40.3 -1.6 177.8 149.5 6.6 -5.3 526.3 76.5 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.091 -0.410 52.926 + 353 2002 12 21 0 11 44 0 2.0000 157.8 1383.2 1029.2 -55.9 39.6 -1.6 177.8 149.5 6.6 -5.4 526.4 76.6 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.090 -0.410 52.919 + 354 2002 12 21 0 11 46 0 2.0000 157.8 1383.2 1029.3 -54.0 39.0 -1.6 177.8 149.5 6.6 -5.4 526.6 76.7 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.090 -0.410 52.912 + 355 2002 12 21 0 11 48 0 2.0000 157.8 1383.1 1029.3 -52.1 38.3 -1.6 177.8 149.5 6.6 -5.5 526.7 76.8 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.090 -0.410 52.905 + 356 2002 12 21 0 11 50 0 2.0000 157.8 1383.0 1029.4 -50.3 37.6 -1.6 177.8 149.5 6.6 -5.5 526.9 76.9 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.090 -0.410 52.898 + 357 2002 12 21 0 11 52 0 2.0000 157.8 1382.9 1029.4 -48.5 37.0 -1.5 177.8 149.5 6.6 -5.6 527.0 76.9 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.090 -0.410 52.891 + 358 2002 12 21 0 11 54 0 2.0000 157.8 1382.8 1029.5 -46.7 36.3 -1.5 177.8 149.5 6.6 -5.6 527.2 77.0 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.090 -0.410 52.884 + 359 2002 12 21 0 11 56 0 2.0000 157.8 1382.6 1029.5 -45.0 35.6 -1.5 177.8 149.5 6.6 -5.7 527.4 77.1 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.090 -0.410 52.877 + 360 2002 12 21 0 11 58 0 2.0000 157.8 1382.5 1029.6 -43.4 34.9 -1.5 177.8 149.5 6.7 -5.7 527.5 77.2 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.089 -0.410 52.870 + 361 2002 12 21 0 12 0 0 2.0000 157.8 1382.4 1029.7 -41.7 34.2 -1.4 177.8 149.5 6.7 -5.8 527.7 77.3 145.8 145.8 145.8 145.8 0.0 0.0 0.0 0.0 80.5 97.6 3.089 -0.410 52.863 + 362 2002 12 21 0 12 2 0 2.0000 157.8 1382.3 1029.7 -40.2 33.6 -1.4 177.8 149.5 6.6 -5.8 527.7 77.3 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.089 -0.410 52.856 + 363 2002 12 21 0 12 4 0 2.0000 157.8 1382.3 1029.8 -38.7 32.9 -1.4 177.8 149.5 6.6 -5.8 527.7 77.4 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.089 -0.410 52.849 + 364 2002 12 21 0 12 6 0 2.0000 157.8 1382.2 1029.8 -37.9 32.2 -1.4 177.8 149.5 6.6 -5.9 527.7 77.4 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.089 -0.410 52.842 + 365 2002 12 21 0 12 8 0 2.0000 157.8 1382.1 1029.9 -37.6 31.6 -1.3 177.8 149.5 6.6 -5.9 527.7 77.4 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.089 -0.410 52.835 + 366 2002 12 21 0 12 10 0 2.0000 157.8 1382.0 1030.0 -37.2 30.9 -1.3 177.8 149.5 6.6 -5.9 527.7 77.5 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.089 -0.410 52.827 + 367 2002 12 21 0 12 12 0 2.0000 157.8 1382.0 1030.0 -37.4 30.3 -1.3 177.8 149.5 6.6 -6.0 527.7 77.5 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.088 -0.410 52.821 + 368 2002 12 21 0 12 14 0 2.0000 157.8 1381.9 1030.1 -37.6 29.6 -1.2 177.8 149.5 6.6 -6.0 527.7 77.6 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.088 -0.410 52.813 + 369 2002 12 21 0 12 16 0 2.0000 157.8 1381.9 1030.1 -37.6 29.0 -1.2 177.8 149.5 6.6 -6.0 527.7 77.6 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.088 -0.410 52.806 + 370 2002 12 21 0 12 18 0 2.0000 157.8 1381.8 1030.2 -37.6 28.4 -1.2 177.8 149.5 6.6 -6.1 527.7 77.6 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.088 -0.410 52.799 + 371 2002 12 21 0 12 20 0 2.0000 157.8 1381.8 1030.3 -37.5 27.7 -1.1 177.8 149.5 6.6 -6.1 527.7 77.7 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.088 -0.410 52.792 + 372 2002 12 21 0 12 22 0 2.0000 157.8 1381.7 1030.3 -37.4 27.1 -1.1 177.8 149.5 6.5 -6.1 527.7 77.7 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.088 -0.410 52.785 + 373 2002 12 21 0 12 24 0 2.0000 157.8 1381.7 1030.4 -37.1 26.6 -1.1 177.8 149.5 6.5 -6.2 527.7 77.8 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.087 -0.410 52.778 + 374 2002 12 21 0 12 26 0 2.0000 157.8 1381.7 1030.4 -36.8 26.0 -1.0 177.8 149.5 6.5 -6.2 527.7 77.8 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.087 -0.410 52.771 + 375 2002 12 21 0 12 28 0 2.0000 157.8 1381.6 1030.5 -36.3 25.4 -1.0 177.8 149.5 6.5 -6.2 527.7 77.8 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.087 -0.410 52.764 + 376 2002 12 21 0 12 30 0 2.0000 157.8 1381.6 1030.6 -35.8 24.9 -1.0 177.8 149.5 6.5 -6.3 527.7 77.9 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.087 -0.410 52.757 + 377 2002 12 21 0 12 32 0 2.0000 157.8 1381.6 1030.6 -35.3 24.4 -0.9 177.8 149.5 6.5 -6.3 527.7 77.9 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.087 -0.410 52.750 + 378 2002 12 21 0 12 34 0 2.0000 157.8 1381.6 1030.7 -35.3 23.9 -0.9 177.8 149.5 6.5 -6.3 527.7 78.0 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.087 -0.410 52.742 + 379 2002 12 21 0 12 36 0 2.0000 157.8 1381.7 1030.7 -35.1 23.4 -0.9 177.8 149.5 6.5 -6.4 527.7 78.0 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.087 -0.410 52.735 + 380 2002 12 21 0 12 38 0 2.0000 157.8 1381.7 1030.8 -34.9 22.9 -0.8 177.8 149.5 6.5 -6.4 527.7 78.0 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.086 -0.410 52.728 + 381 2002 12 21 0 12 40 0 2.0000 157.8 1381.7 1030.9 -34.7 22.5 -0.8 177.8 149.5 6.5 -6.4 527.7 78.1 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.086 -0.410 52.721 + 382 2002 12 21 0 12 42 0 2.0000 157.8 1381.8 1030.9 -34.3 22.0 -0.8 177.8 149.5 6.4 -6.5 527.7 78.1 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.086 -0.410 52.714 + 383 2002 12 21 0 12 44 0 2.0000 157.8 1381.8 1031.0 -33.9 21.6 -0.7 177.8 149.5 6.4 -6.5 527.7 78.2 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.086 -0.410 52.707 + 384 2002 12 21 0 12 46 0 2.0000 157.8 1381.9 1031.0 -33.3 21.3 -0.7 177.8 149.5 6.4 -6.5 527.7 78.2 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.086 -0.410 52.700 + 385 2002 12 21 0 12 48 0 2.0000 157.8 1381.9 1031.1 -33.0 21.0 -0.6 177.8 149.5 6.4 -6.6 527.7 78.2 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.086 -0.410 52.693 + 386 2002 12 21 0 12 50 0 2.0000 157.8 1382.0 1031.1 -32.8 20.8 -0.6 177.8 149.5 6.4 -6.6 527.7 78.3 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.086 -0.410 52.685 + 387 2002 12 21 0 12 52 0 2.0000 157.8 1382.1 1031.2 -32.6 20.5 -0.6 177.8 149.5 6.4 -6.6 527.7 78.3 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.085 -0.410 52.678 + 388 2002 12 21 0 12 54 0 2.0000 157.8 1382.2 1031.2 -32.3 20.3 -0.5 177.8 149.5 6.4 -6.7 527.7 78.4 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.085 -0.410 52.671 + 389 2002 12 21 0 12 56 0 2.0000 157.8 1382.3 1031.3 -31.9 20.1 -0.5 177.8 149.5 6.4 -6.7 527.7 78.4 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.085 -0.410 52.664 + 390 2002 12 21 0 12 58 0 2.0000 157.8 1382.4 1031.4 -31.5 19.9 -0.5 177.8 149.5 6.4 -6.7 527.7 78.4 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.085 -0.410 52.657 + 391 2002 12 21 0 13 0 0 2.0000 157.8 1382.6 1031.4 -31.2 19.7 -0.4 177.8 149.5 6.4 -6.8 527.7 78.5 157.0 157.0 157.0 157.0 0.0 0.0 0.0 0.0 90.5 105.4 3.085 -0.410 52.649 + 392 2002 12 21 0 13 2 0 2.0000 157.8 1382.7 1031.5 -31.1 19.6 -0.4 177.8 149.5 6.4 -6.8 527.6 78.5 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.085 -0.410 52.642 + 393 2002 12 21 0 13 4 0 2.0000 157.8 1382.8 1031.5 -30.9 19.5 -0.3 177.8 149.5 6.4 -6.8 527.5 78.6 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.085 -0.410 52.635 + 394 2002 12 21 0 13 6 0 2.0000 157.8 1383.0 1031.6 -30.7 19.4 -0.3 177.8 149.5 6.4 -6.8 527.4 78.7 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 52.628 + 395 2002 12 21 0 13 8 0 2.0000 157.8 1383.2 1031.6 -30.7 19.6 -0.3 177.8 149.5 6.4 -6.8 527.3 78.7 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 52.621 + 396 2002 12 21 0 13 10 0 2.0000 157.8 1383.4 1031.7 -30.6 19.9 -0.2 177.8 149.5 6.4 -6.8 527.3 78.8 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 52.613 + 397 2002 12 21 0 13 12 0 2.0000 157.8 1383.6 1031.8 -30.7 20.1 -0.2 177.8 149.5 6.4 -6.8 527.2 78.9 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 52.606 + 398 2002 12 21 0 13 14 0 2.0000 157.8 1383.8 1031.8 -30.8 20.3 -0.2 177.8 149.5 6.4 -6.8 527.1 78.9 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 52.599 + 399 2002 12 21 0 13 16 0 2.0000 157.8 1384.0 1031.9 -30.9 20.5 -0.1 177.8 149.5 6.4 -6.8 527.0 79.0 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 52.592 + 400 2002 12 21 0 13 18 0 2.0000 157.8 1384.2 1031.9 -31.1 20.7 -0.1 177.8 149.5 6.4 -6.8 527.0 79.1 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 52.584 + 401 2002 12 21 0 13 20 0 2.0000 157.8 1384.4 1032.0 -31.2 20.9 -0.1 177.8 149.5 6.4 -6.8 526.9 79.1 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 52.577 + 402 2002 12 21 0 13 22 0 2.0000 157.8 1384.6 1032.1 -31.4 21.0 -0.0 177.8 149.5 6.4 -6.8 526.8 79.2 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 52.570 + 403 2002 12 21 0 13 24 0 2.0000 157.8 1384.9 1032.1 -31.6 21.2 0.0 177.8 149.5 6.4 -6.8 526.7 79.3 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 52.563 + 404 2002 12 21 0 13 26 0 2.0000 157.8 1385.1 1032.2 -31.7 21.3 0.1 177.8 149.5 6.4 -6.8 526.6 79.3 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 52.555 + 405 2002 12 21 0 13 28 0 2.0000 157.8 1385.3 1032.2 -31.9 21.4 0.1 177.8 149.5 6.4 -6.8 526.6 79.4 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 52.548 + 406 2002 12 21 0 13 30 0 2.0000 157.8 1385.6 1032.3 -32.1 21.5 0.1 177.8 149.5 6.4 -6.8 526.5 79.5 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 52.541 + 407 2002 12 21 0 13 32 0 2.0000 157.8 1385.9 1032.4 -32.2 21.6 0.2 177.8 149.5 6.5 -6.8 526.4 79.5 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 52.533 + 408 2002 12 21 0 13 34 0 2.0000 157.8 1386.1 1032.4 -32.3 21.8 0.2 177.8 149.5 6.5 -6.8 526.3 79.6 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 52.526 + 409 2002 12 21 0 13 36 0 2.0000 157.8 1386.4 1032.5 -32.4 22.0 0.2 177.8 149.5 6.5 -6.8 526.3 79.7 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 52.519 + 410 2002 12 21 0 13 38 0 2.0000 157.8 1386.7 1032.6 -32.5 22.2 0.3 177.8 149.5 6.5 -6.8 526.2 79.7 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 52.511 + 411 2002 12 21 0 13 40 0 2.0000 157.8 1386.9 1032.6 -32.5 22.3 0.3 177.8 149.5 6.5 -6.8 526.1 79.8 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 52.504 + 412 2002 12 21 0 13 42 0 2.0000 157.8 1387.2 1032.7 -32.5 22.3 0.3 177.8 149.5 6.5 -6.8 526.0 79.9 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 52.497 + 413 2002 12 21 0 13 44 0 2.0000 157.8 1387.5 1032.8 -32.5 22.3 0.4 177.8 149.5 6.5 -6.8 525.9 79.9 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 52.489 + 414 2002 12 21 0 13 46 0 2.0000 157.8 1387.8 1032.8 -32.5 22.6 0.4 177.8 149.5 6.5 -6.8 525.9 80.0 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 52.482 + 415 2002 12 21 0 13 48 0 2.0000 157.8 1388.1 1032.9 -32.4 23.0 0.4 177.8 149.5 6.5 -6.8 525.8 80.0 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 52.475 + 416 2002 12 21 0 13 50 0 2.0000 157.8 1388.4 1033.0 -32.3 23.4 0.5 177.8 149.5 6.5 -6.8 525.7 80.1 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 52.467 + 417 2002 12 21 0 13 52 0 2.0000 157.8 1388.7 1033.1 -32.1 23.7 0.5 177.8 149.5 6.5 -6.8 525.6 80.2 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 52.460 + 418 2002 12 21 0 13 54 0 2.0000 157.8 1389.0 1033.1 -31.9 23.9 0.5 177.8 149.5 6.5 -6.8 525.6 80.2 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 52.452 + 419 2002 12 21 0 13 56 0 2.0000 157.8 1389.3 1033.2 -31.7 24.1 0.6 177.8 149.5 6.5 -6.8 525.5 80.3 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 52.445 + 420 2002 12 21 0 13 58 0 2.0000 157.8 1389.6 1033.3 -31.4 24.3 0.6 177.8 149.5 6.5 -6.8 525.4 80.4 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 52.438 + 421 2002 12 21 0 14 0 0 2.0000 157.8 1389.9 1033.4 -31.1 24.8 0.6 177.8 149.5 6.5 -6.8 525.3 80.4 158.9 158.9 158.9 158.9 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 52.430 + 422 2002 12 21 0 14 2 0 2.0000 157.8 1390.2 1033.4 -30.8 25.3 0.7 177.8 149.5 6.5 -6.8 525.3 80.5 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 52.423 + 423 2002 12 21 0 14 4 0 2.0000 157.8 1390.5 1033.5 -30.4 25.7 0.7 177.8 149.5 6.5 -6.8 525.3 80.5 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 52.416 + 424 2002 12 21 0 14 6 0 2.0000 157.8 1390.8 1033.6 -29.9 26.1 0.7 177.8 149.5 6.5 -6.8 525.3 80.5 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 52.408 + 425 2002 12 21 0 14 8 0 2.0000 157.8 1391.1 1033.7 -29.5 26.4 0.8 177.8 149.5 6.5 -6.8 525.3 80.5 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 52.401 + 426 2002 12 21 0 14 10 0 2.0000 157.8 1391.4 1033.8 -29.0 26.6 0.8 177.8 149.5 6.5 -6.8 525.3 80.5 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 52.393 + 427 2002 12 21 0 14 12 0 2.0000 157.8 1391.7 1033.8 -28.4 26.8 0.8 177.8 149.5 6.5 -6.9 525.3 80.6 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 52.386 + 428 2002 12 21 0 14 14 0 2.0000 157.8 1392.0 1033.9 -27.9 27.0 0.9 177.8 149.5 6.5 -6.9 525.3 80.6 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 52.378 + 429 2002 12 21 0 14 16 0 2.0000 157.8 1392.3 1034.0 -27.2 27.0 0.9 177.8 149.5 6.5 -6.9 525.2 80.6 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 52.371 + 430 2002 12 21 0 14 18 0 2.0000 157.8 1392.6 1034.1 -26.6 27.2 0.9 177.8 149.5 6.5 -6.9 525.2 80.6 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 52.364 + 431 2002 12 21 0 14 20 0 2.0000 157.8 1392.9 1034.2 -25.9 27.6 1.0 177.8 149.5 6.4 -6.9 525.2 80.7 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 52.356 + 432 2002 12 21 0 14 22 0 2.0000 157.8 1393.1 1034.3 -25.2 27.9 1.0 177.8 149.5 6.4 -6.9 525.2 80.7 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 52.349 + 433 2002 12 21 0 14 24 0 2.0000 157.8 1393.4 1034.3 -24.5 28.2 1.0 177.8 149.5 6.4 -6.9 525.2 80.7 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 52.341 + 434 2002 12 21 0 14 26 0 2.0000 157.8 1393.7 1034.4 -23.7 28.5 1.1 177.8 149.5 6.4 -6.9 525.2 80.7 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 52.334 + 435 2002 12 21 0 14 28 0 2.0000 157.8 1394.0 1034.5 -22.9 28.7 1.1 177.8 149.5 6.4 -6.9 525.2 80.7 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 52.327 + 436 2002 12 21 0 14 30 0 2.0000 157.8 1394.3 1034.6 -22.1 28.9 1.1 177.8 149.5 6.4 -6.9 525.2 80.8 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 52.319 + 437 2002 12 21 0 14 32 0 2.0000 157.8 1394.5 1034.7 -21.2 29.4 1.2 177.8 149.5 6.4 -7.0 525.2 80.8 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 52.312 + 438 2002 12 21 0 14 34 0 2.0000 157.8 1394.8 1034.8 -20.3 29.8 1.2 177.8 149.5 6.4 -7.0 525.2 80.8 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 52.304 + 439 2002 12 21 0 14 36 0 2.0000 157.8 1395.1 1034.9 -19.4 30.1 1.2 177.8 149.5 6.4 -7.0 525.1 80.8 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 52.297 + 440 2002 12 21 0 14 38 0 2.0000 157.8 1395.4 1035.0 -18.5 30.4 1.3 177.8 149.5 6.4 -7.0 525.1 80.8 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 52.289 + 441 2002 12 21 0 14 40 0 2.0000 157.8 1395.6 1035.0 -17.6 30.7 1.3 177.8 149.5 6.4 -7.0 525.1 80.9 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 52.282 + 442 2002 12 21 0 14 42 0 2.0000 157.8 1395.9 1035.1 -16.7 30.9 1.3 177.8 149.5 6.4 -7.0 525.1 80.9 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 52.275 + 443 2002 12 21 0 14 44 0 2.0000 157.8 1396.1 1035.2 -15.7 31.1 1.4 177.8 149.5 6.4 -7.0 525.1 80.9 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 52.267 + 444 2002 12 21 0 14 46 0 2.0000 157.8 1396.4 1035.3 -14.7 31.4 1.4 177.8 149.5 6.3 -7.0 525.1 80.9 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 52.260 + 445 2002 12 21 0 14 48 0 2.0000 157.8 1396.6 1035.4 -13.8 31.8 1.4 177.8 149.5 6.3 -7.0 525.1 80.9 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 52.252 + 446 2002 12 21 0 14 50 0 2.0000 157.8 1396.9 1035.5 -12.8 32.1 1.5 177.8 149.5 6.3 -7.0 525.1 81.0 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 52.245 + 447 2002 12 21 0 14 52 0 2.0000 157.8 1397.1 1035.6 -11.8 32.4 1.5 177.8 149.5 6.3 -7.1 525.1 81.0 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 52.238 + 448 2002 12 21 0 14 54 0 2.0000 157.8 1397.3 1035.7 -10.8 32.7 1.5 177.8 149.5 6.3 -7.1 525.1 81.0 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 52.230 + 449 2002 12 21 0 14 56 0 2.0000 157.8 1397.6 1035.8 -10.4 33.0 1.5 177.8 149.5 6.3 -7.1 525.1 81.0 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.076 -0.410 52.223 + 450 2002 12 21 0 14 58 0 2.0000 157.8 1397.8 1035.8 -10.4 33.4 1.6 177.8 149.5 6.3 -7.1 525.0 81.0 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.076 -0.410 52.215 + 451 2002 12 21 0 15 0 0 2.0000 157.8 1398.0 1035.9 -10.4 33.8 1.6 177.8 149.5 6.3 -7.1 525.0 81.1 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.076 -0.410 52.208 + 452 2002 12 21 0 15 2 0 2.0000 157.8 1398.2 1036.0 -10.4 34.1 1.6 177.8 149.5 6.3 -7.1 525.0 81.1 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.076 -0.410 52.201 + 453 2002 12 21 0 15 4 0 2.0000 157.8 1398.5 1036.1 -10.4 34.8 1.7 177.8 149.5 6.3 -7.1 524.9 81.2 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.076 -0.410 52.194 + 454 2002 12 21 0 15 6 0 2.0000 157.8 1398.7 1036.2 -10.4 35.7 1.7 177.8 149.5 6.3 -7.1 524.9 81.2 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.076 -0.410 52.186 + 455 2002 12 21 0 15 8 0 2.0000 157.8 1398.9 1036.3 -10.4 36.5 1.7 177.8 149.5 6.3 -7.1 524.8 81.2 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.076 -0.410 52.179 + 456 2002 12 21 0 15 10 0 2.0000 157.8 1399.1 1036.4 -10.4 37.3 1.8 177.8 149.5 6.3 -7.1 524.8 81.3 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.075 -0.410 52.171 + 457 2002 12 21 0 15 12 0 2.0000 157.8 1399.3 1036.4 -10.4 38.1 1.8 177.8 149.5 6.3 -7.1 524.7 81.3 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.075 -0.410 52.164 + 458 2002 12 21 0 15 14 0 2.0000 157.8 1399.5 1036.5 -10.4 38.8 1.8 177.8 149.5 6.3 -7.1 524.7 81.4 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.075 -0.410 52.157 + 459 2002 12 21 0 15 16 0 2.0000 157.8 1399.7 1036.6 -10.4 39.6 1.8 177.8 149.5 6.3 -7.1 524.6 81.4 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.075 -0.410 52.149 + 460 2002 12 21 0 15 18 0 2.0000 157.8 1399.9 1036.7 -10.3 40.3 1.9 177.8 149.5 6.3 -7.1 524.6 81.5 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.075 -0.410 52.142 + 461 2002 12 21 0 15 20 0 2.0000 157.8 1400.1 1036.8 -10.3 41.0 1.9 177.8 149.5 6.3 -7.1 524.5 81.5 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.075 -0.410 52.135 + 462 2002 12 21 0 15 22 0 2.0000 157.8 1400.3 1036.9 -10.3 41.7 1.9 177.8 149.5 6.3 -7.1 524.5 81.6 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.075 -0.410 52.127 + 463 2002 12 21 0 15 24 0 2.0000 157.8 1400.5 1036.9 -10.3 42.3 2.0 177.8 149.5 6.3 -7.1 524.4 81.6 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.074 -0.410 52.120 + 464 2002 12 21 0 15 26 0 2.0000 157.8 1400.7 1037.0 -10.2 42.9 2.0 177.8 149.5 6.3 -7.1 524.4 81.7 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.074 -0.410 52.113 + 465 2002 12 21 0 15 28 0 2.0000 157.8 1400.8 1037.1 -10.2 43.5 2.0 177.8 149.5 6.3 -7.0 524.3 81.7 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.074 -0.410 52.106 + 466 2002 12 21 0 15 30 0 2.0000 157.8 1401.0 1037.2 -10.2 44.1 2.0 177.8 149.5 6.3 -7.0 524.3 81.7 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.074 -0.410 52.098 + 467 2002 12 21 0 15 32 0 2.0000 157.8 1401.2 1037.3 -10.2 44.7 2.1 177.8 149.5 6.3 -7.0 524.2 81.8 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.074 -0.410 52.091 + 468 2002 12 21 0 15 34 0 2.0000 157.8 1401.4 1037.3 -10.1 45.2 2.1 177.8 149.5 6.3 -7.0 524.1 81.8 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.074 -0.410 52.084 + 469 2002 12 21 0 15 36 0 2.0000 157.8 1401.6 1037.4 -10.1 45.7 2.1 177.8 149.5 6.3 -7.0 524.1 81.9 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.074 -0.410 52.077 + 470 2002 12 21 0 15 38 0 2.0000 157.8 1401.7 1037.5 -10.1 46.1 2.1 177.8 149.5 6.3 -7.0 524.0 81.9 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.073 -0.410 52.070 + 471 2002 12 21 0 15 40 0 2.0000 157.8 1401.9 1037.6 -10.2 46.5 2.2 177.8 149.5 6.3 -7.0 524.0 82.0 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.073 -0.410 52.062 + 472 2002 12 21 0 15 42 0 2.0000 157.8 1402.1 1037.6 -10.2 46.9 2.2 177.8 149.5 6.3 -7.0 523.9 82.0 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.073 -0.410 52.055 + 473 2002 12 21 0 15 44 0 2.0000 157.8 1402.3 1037.7 -10.2 47.3 2.2 177.8 149.5 6.3 -7.0 523.9 82.1 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.073 -0.410 52.048 + 474 2002 12 21 0 15 46 0 2.0000 157.8 1402.4 1037.8 -10.2 47.6 2.2 177.8 149.5 6.3 -7.0 523.8 82.1 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.073 -0.410 52.041 + 475 2002 12 21 0 15 48 0 2.0000 157.8 1402.6 1037.8 -10.2 48.0 2.3 177.8 149.5 6.3 -7.0 523.8 82.2 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.073 -0.410 52.034 + 476 2002 12 21 0 15 50 0 2.0000 157.8 1402.8 1037.9 -10.2 48.2 2.3 177.8 149.5 6.3 -7.0 523.7 82.2 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.073 -0.410 52.026 + 477 2002 12 21 0 15 52 0 2.0000 157.8 1402.9 1038.0 -10.2 48.5 2.3 177.8 149.5 6.3 -7.0 523.7 82.2 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.072 -0.410 52.020 + 478 2002 12 21 0 15 54 0 2.0000 157.8 1403.1 1038.0 -10.2 48.7 2.3 177.8 149.5 6.3 -7.0 523.6 82.3 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.072 -0.410 52.012 + 479 2002 12 21 0 15 56 0 2.0000 157.8 1403.3 1038.1 -10.2 48.9 2.3 177.8 149.5 6.3 -7.0 523.6 82.3 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.072 -0.410 52.005 + 480 2002 12 21 0 15 58 0 2.0000 157.8 1403.5 1038.2 -10.3 49.0 2.4 177.8 149.5 6.3 -7.0 523.5 82.4 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.072 -0.410 51.998 + 481 2002 12 21 0 16 0 0 2.0000 157.8 1403.6 1038.2 -10.3 49.2 2.4 177.8 149.5 6.2 -7.0 523.5 82.4 165.0 165.0 165.0 165.0 0.0 0.0 0.0 0.0 97.8 110.8 3.072 -0.410 51.991 + 482 2002 12 21 0 16 2 0 2.0000 157.8 1403.8 1038.3 -10.3 49.2 2.4 177.8 149.5 6.3 -7.0 523.3 82.5 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.072 -0.410 51.984 + 483 2002 12 21 0 16 4 0 2.0000 157.8 1404.0 1038.3 -10.3 49.3 2.4 177.8 149.5 6.3 -7.0 523.2 82.5 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.071 -0.410 51.977 + 484 2002 12 21 0 16 6 0 2.0000 157.8 1404.1 1038.4 -10.3 49.4 2.4 177.8 149.5 6.3 -7.0 523.1 82.6 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.071 -0.410 51.970 + 485 2002 12 21 0 16 8 0 2.0000 157.8 1404.3 1038.5 -10.3 49.4 2.4 177.8 149.5 6.3 -7.0 523.0 82.7 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.071 -0.410 51.963 + 486 2002 12 21 0 16 10 0 2.0000 157.8 1404.5 1038.5 -10.3 49.4 2.5 177.8 149.5 6.3 -7.0 522.8 82.7 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.071 -0.410 51.956 + 487 2002 12 21 0 16 12 0 2.0000 157.8 1404.6 1038.6 -10.3 49.3 2.5 177.8 149.5 6.3 -7.0 522.7 82.8 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.071 -0.410 51.949 + 488 2002 12 21 0 16 14 0 2.0000 157.8 1404.8 1038.6 -10.3 49.2 2.5 177.8 149.5 6.3 -7.1 522.6 82.8 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.071 -0.410 51.942 + 489 2002 12 21 0 16 16 0 2.0000 157.8 1405.0 1038.7 -10.4 49.1 2.5 177.8 149.5 6.3 -7.1 522.5 82.9 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.071 -0.410 51.935 + 490 2002 12 21 0 16 18 0 2.0000 157.8 1405.1 1038.7 -10.4 49.0 2.5 177.8 149.5 6.3 -7.1 522.3 83.0 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.070 -0.410 51.928 + 491 2002 12 21 0 16 20 0 2.0000 157.8 1405.3 1038.8 -10.4 48.9 2.5 177.8 149.5 6.4 -7.1 522.2 83.0 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.070 -0.410 51.921 + 492 2002 12 21 0 16 22 0 2.0000 157.8 1405.5 1038.8 -10.4 48.7 2.5 177.8 149.5 6.4 -7.1 522.1 83.1 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.070 -0.410 51.914 + 493 2002 12 21 0 16 24 0 2.0000 157.8 1405.7 1038.9 -10.4 48.5 2.5 177.8 149.5 6.4 -7.1 522.0 83.1 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.070 -0.410 51.907 + 494 2002 12 21 0 16 26 0 2.0000 157.8 1405.8 1038.9 -10.4 48.3 2.5 177.8 149.5 6.4 -7.1 521.8 83.2 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.070 -0.410 51.900 + 495 2002 12 21 0 16 28 0 2.0000 157.8 1406.0 1039.0 -10.4 48.1 2.6 177.8 149.5 6.4 -7.1 521.7 83.3 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.070 -0.410 51.893 + 496 2002 12 21 0 16 30 0 2.0000 157.8 1406.2 1039.0 -10.4 47.9 2.6 177.8 149.5 6.4 -7.1 521.6 83.3 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.070 -0.410 51.886 + 497 2002 12 21 0 16 32 0 2.0000 157.8 1406.4 1039.1 -10.4 47.6 2.6 177.8 149.5 6.4 -7.1 521.5 83.4 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.069 -0.410 51.880 + 498 2002 12 21 0 16 34 0 2.0000 157.8 1406.6 1039.1 -10.4 47.3 2.6 177.8 149.5 6.4 -7.1 521.3 83.4 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.069 -0.410 51.873 + 499 2002 12 21 0 16 36 0 2.0000 157.8 1406.7 1039.1 -10.4 47.0 2.6 177.8 149.5 6.4 -7.1 521.2 83.5 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.069 -0.410 51.866 + 500 2002 12 21 0 16 38 0 2.0000 157.8 1406.9 1039.2 -10.4 46.7 2.6 177.8 149.5 6.5 -7.1 521.1 83.6 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.069 -0.410 51.859 + 501 2002 12 21 0 16 40 0 2.0000 157.8 1407.1 1039.2 -10.4 46.4 2.6 177.8 149.5 6.5 -7.2 521.0 83.6 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.069 -0.410 51.852 + 502 2002 12 21 0 16 42 0 2.0000 157.8 1407.3 1039.3 -10.4 46.1 2.6 177.8 149.5 6.5 -7.2 520.8 83.7 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.069 -0.410 51.846 + 503 2002 12 21 0 16 44 0 2.0000 157.8 1407.5 1039.3 -10.3 45.7 2.6 177.8 149.5 6.5 -7.2 520.7 83.7 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.069 -0.410 51.839 + 504 2002 12 21 0 16 46 0 2.0000 157.8 1407.7 1039.3 -10.3 46.1 2.6 177.8 149.5 6.5 -7.2 520.6 83.8 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.068 -0.410 51.832 + 505 2002 12 21 0 16 48 0 2.0000 157.8 1407.8 1039.4 -10.3 46.5 2.6 177.8 149.5 6.5 -7.2 520.4 83.9 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.068 -0.410 51.826 + 506 2002 12 21 0 16 50 0 2.0000 157.8 1408.0 1039.4 -10.3 46.9 2.6 177.8 149.5 6.5 -7.2 520.3 83.9 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.068 -0.410 51.819 + 507 2002 12 21 0 16 52 0 2.0000 157.8 1408.2 1039.5 -10.3 47.2 2.6 177.8 149.5 6.5 -7.2 520.2 84.0 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.068 -0.410 51.812 + 508 2002 12 21 0 16 54 0 2.0000 157.8 1408.4 1039.5 -10.3 47.6 2.6 177.8 149.5 6.5 -7.2 520.1 84.0 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.068 -0.410 51.805 + 509 2002 12 21 0 16 56 0 2.0000 157.9 1408.6 1039.5 -10.2 48.0 2.6 177.8 149.5 6.6 -7.2 519.9 84.1 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.068 -0.410 51.799 + 510 2002 12 21 0 16 58 0 2.0000 157.9 1408.8 1039.6 -10.2 48.3 2.6 177.8 149.5 6.6 -7.2 519.8 84.2 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.068 -0.410 51.792 + 511 2002 12 21 0 17 0 0 2.0000 157.9 1409.0 1039.6 -10.2 48.7 2.6 177.8 149.5 6.6 -7.2 519.7 84.2 167.0 167.0 167.0 167.0 0.0 0.0 0.0 0.0 97.0 110.3 3.067 -0.410 51.786 + 512 2002 12 21 0 17 2 0 2.0000 157.9 1409.2 1039.6 -10.2 49.1 2.6 177.8 149.5 6.6 -7.2 519.8 84.2 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.067 -0.410 51.779 + 513 2002 12 21 0 17 4 0 2.0000 157.9 1409.4 1039.7 -10.1 49.5 2.6 177.8 149.5 6.6 -7.2 520.0 84.2 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.067 -0.410 51.772 + 514 2002 12 21 0 17 6 0 2.0000 157.9 1409.6 1039.7 -10.1 49.8 2.6 177.8 149.5 6.6 -7.2 520.1 84.2 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.067 -0.410 51.766 + 515 2002 12 21 0 17 8 0 2.0000 157.9 1409.8 1039.7 -10.1 50.2 2.6 177.8 149.5 6.6 -7.2 520.3 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.067 -0.410 51.759 + 516 2002 12 21 0 17 10 0 2.0000 157.9 1410.0 1039.8 -10.0 50.6 2.6 177.8 149.5 6.5 -7.1 520.4 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.067 -0.410 51.753 + 517 2002 12 21 0 17 12 0 2.0000 157.9 1410.2 1039.8 -10.0 50.9 2.6 177.8 149.5 6.5 -7.1 520.6 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.067 -0.410 51.746 + 518 2002 12 21 0 17 14 0 2.0000 157.9 1410.4 1039.8 -10.0 51.3 2.6 177.8 149.5 6.5 -7.1 520.7 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.066 -0.410 51.740 + 519 2002 12 21 0 17 16 0 2.0000 157.9 1410.6 1039.9 -9.9 51.7 2.6 177.8 149.5 6.5 -7.1 520.9 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.066 -0.410 51.733 + 520 2002 12 21 0 17 18 0 2.0000 157.9 1410.8 1039.9 -9.9 52.1 2.6 177.8 149.5 6.5 -7.1 521.0 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.066 -0.410 51.727 + 521 2002 12 21 0 17 20 0 2.0000 157.9 1411.0 1039.9 -9.9 52.4 2.6 177.8 149.5 6.5 -7.1 521.2 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.066 -0.410 51.720 + 522 2002 12 21 0 17 22 0 2.0000 157.9 1411.2 1040.0 -9.8 52.8 2.6 177.8 149.5 6.5 -7.1 521.3 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.066 -0.410 51.714 + 523 2002 12 21 0 17 24 0 2.0000 157.9 1411.4 1040.0 -9.8 53.2 2.6 177.8 149.5 6.5 -7.0 521.5 84.3 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.066 -0.410 51.707 + 524 2002 12 21 0 17 26 0 2.0000 157.9 1411.6 1040.0 -9.7 53.5 2.5 177.8 149.5 6.5 -7.0 521.6 84.4 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.066 -0.410 51.701 + 525 2002 12 21 0 17 28 0 2.0000 157.9 1411.9 1040.1 -9.7 53.9 2.5 177.8 149.5 6.5 -7.0 521.8 84.4 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.065 -0.410 51.695 + 526 2002 12 21 0 17 30 0 2.0000 157.9 1412.1 1040.1 -9.7 54.2 2.5 177.8 149.5 6.5 -7.0 521.9 84.4 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.065 -0.410 51.688 + 527 2002 12 21 0 17 32 0 2.0000 157.9 1412.3 1040.1 -9.6 54.6 2.5 177.8 149.5 6.5 -7.0 522.1 84.4 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.065 -0.410 51.682 + 528 2002 12 21 0 17 34 0 2.0000 157.9 1412.5 1040.1 -9.6 55.0 2.5 177.8 149.5 6.5 -7.0 522.2 84.4 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.065 -0.410 51.675 + 529 2002 12 21 0 17 36 0 2.0000 157.9 1412.7 1040.2 -9.5 55.3 2.5 177.8 149.5 6.5 -6.9 522.4 84.4 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.065 -0.410 51.669 + 530 2002 12 21 0 17 38 0 2.0000 157.9 1412.9 1040.2 -9.5 55.7 2.5 177.8 149.5 6.5 -6.9 522.5 84.4 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.065 -0.410 51.663 + 531 2002 12 21 0 17 40 0 2.0000 157.9 1413.1 1040.2 -9.4 56.0 2.5 177.8 149.5 6.5 -6.9 522.7 84.4 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.065 -0.410 51.657 + 532 2002 12 21 0 17 42 0 2.0000 157.9 1413.3 1040.3 -9.4 56.3 2.5 177.8 149.5 6.4 -6.9 522.8 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.064 -0.410 51.650 + 533 2002 12 21 0 17 44 0 2.0000 157.9 1413.5 1040.3 -9.3 56.7 2.5 177.8 149.5 6.4 -6.9 523.0 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.064 -0.410 51.644 + 534 2002 12 21 0 17 46 0 2.0000 157.9 1413.7 1040.3 -9.3 57.0 2.5 177.8 149.5 6.4 -6.9 523.1 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.064 -0.410 51.638 + 535 2002 12 21 0 17 48 0 2.0000 157.9 1413.9 1040.4 -9.3 57.4 2.4 177.8 149.5 6.4 -6.8 523.3 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.064 -0.410 51.631 + 536 2002 12 21 0 17 50 0 2.0000 157.9 1414.1 1040.4 -9.2 57.7 2.4 177.8 149.5 6.4 -6.8 523.4 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.064 -0.410 51.625 + 537 2002 12 21 0 17 52 0 2.0000 157.9 1414.3 1040.4 -9.2 58.0 2.4 177.8 149.5 6.4 -6.8 523.6 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.064 -0.410 51.619 + 538 2002 12 21 0 17 54 0 2.0000 157.9 1414.5 1040.4 -9.1 58.3 2.4 177.8 149.5 6.4 -6.8 523.7 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.063 -0.410 51.613 + 539 2002 12 21 0 17 56 0 2.0000 157.9 1414.7 1040.5 -9.1 58.6 2.4 177.8 149.5 6.4 -6.8 523.9 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.063 -0.410 51.607 + 540 2002 12 21 0 17 58 0 2.0000 157.9 1414.9 1040.5 -9.1 58.9 2.4 177.8 149.5 6.4 -6.8 524.0 84.5 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.063 -0.410 51.600 + 541 2002 12 21 0 18 0 0 2.0000 157.9 1415.1 1040.5 -9.0 59.3 2.4 177.8 149.5 6.4 -6.7 524.2 84.6 171.0 171.0 171.0 171.0 0.0 0.0 0.0 0.0 98.0 111.6 3.063 -0.410 51.594 + 542 2002 12 21 0 18 2 0 2.0000 157.9 1415.3 1040.6 -9.0 59.6 2.4 177.8 149.5 6.4 -6.7 524.1 84.6 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.063 -0.410 51.588 + 543 2002 12 21 0 18 4 0 2.0000 157.9 1415.5 1040.6 -9.0 59.8 2.3 177.8 149.5 6.4 -6.7 523.9 84.6 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.063 -0.410 51.582 + 544 2002 12 21 0 18 6 0 2.0000 157.9 1415.7 1040.6 -9.0 60.1 2.3 177.8 149.5 6.4 -6.7 523.8 84.6 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.063 -0.410 51.576 + 545 2002 12 21 0 18 8 0 2.0000 157.9 1415.8 1040.6 -9.0 60.4 2.3 177.8 149.5 6.4 -6.8 523.7 84.6 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.062 -0.410 51.570 + 546 2002 12 21 0 18 10 0 2.0000 157.9 1416.0 1040.7 -9.0 60.7 2.3 177.8 149.5 6.4 -6.8 523.5 84.7 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.062 -0.410 51.563 + 547 2002 12 21 0 18 12 0 2.0000 157.9 1416.2 1040.7 -9.0 61.0 2.3 177.8 149.5 6.4 -6.8 523.4 84.7 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.062 -0.410 51.557 + 548 2002 12 21 0 18 14 0 2.0000 157.9 1416.4 1040.7 -9.0 61.2 2.3 177.8 149.5 6.4 -6.8 523.3 84.7 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.062 -0.410 51.551 + 549 2002 12 21 0 18 16 0 2.0000 157.9 1416.5 1040.8 -9.0 61.5 2.3 177.8 149.5 6.4 -6.8 523.2 84.7 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.062 -0.410 51.545 + 550 2002 12 21 0 18 18 0 2.0000 157.9 1416.7 1040.8 -8.9 61.7 2.2 177.8 149.5 6.4 -6.8 523.0 84.7 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.062 -0.410 51.539 + 551 2002 12 21 0 18 20 0 2.0000 157.9 1416.9 1040.8 -8.9 62.0 2.2 177.8 149.5 6.4 -6.8 522.9 84.8 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.062 -0.410 51.533 + 552 2002 12 21 0 18 22 0 2.0000 157.9 1417.1 1040.8 -8.9 62.2 2.2 177.8 149.5 6.4 -6.8 522.8 84.8 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.061 -0.410 51.527 + 553 2002 12 21 0 18 24 0 2.0000 157.9 1417.2 1040.9 -8.9 62.4 2.2 177.8 149.5 6.4 -6.8 522.6 84.8 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.061 -0.410 51.521 + 554 2002 12 21 0 18 26 0 2.0000 157.9 1417.4 1040.9 -8.9 62.7 2.2 177.8 149.5 6.4 -6.8 522.5 84.8 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.061 -0.410 51.515 + 555 2002 12 21 0 18 28 0 2.0000 157.9 1417.5 1040.9 -8.9 62.9 2.2 177.8 149.5 6.5 -6.8 522.4 84.8 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.061 -0.410 51.509 + 556 2002 12 21 0 18 30 0 2.0000 157.9 1417.7 1040.9 -8.9 63.1 2.1 177.8 149.5 6.5 -6.8 522.3 84.9 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.061 -0.410 51.503 + 557 2002 12 21 0 18 32 0 2.0000 157.9 1417.8 1041.0 -8.9 63.3 2.1 177.8 149.5 6.5 -6.8 522.1 84.9 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.061 -0.410 51.497 + 558 2002 12 21 0 18 34 0 2.0000 157.9 1418.0 1041.0 -8.9 63.5 2.1 177.8 149.5 6.5 -6.8 522.0 84.9 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.061 -0.410 51.491 + 559 2002 12 21 0 18 36 0 2.0000 157.9 1418.1 1041.0 -8.8 63.7 2.1 177.8 149.5 6.5 -6.8 521.9 84.9 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.060 -0.410 51.485 + 560 2002 12 21 0 18 38 0 2.0000 157.9 1418.3 1041.0 -8.8 63.8 2.1 177.8 149.5 6.5 -6.8 521.7 84.9 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.060 -0.410 51.479 + 561 2002 12 21 0 18 40 0 2.0000 157.9 1418.4 1041.1 -8.8 64.0 2.1 177.8 149.5 6.5 -6.8 521.6 84.9 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.060 -0.410 51.473 + 562 2002 12 21 0 18 42 0 2.0000 157.9 1418.6 1041.1 -8.8 64.2 2.1 177.8 149.5 6.5 -6.8 521.5 85.0 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.060 -0.410 51.467 + 563 2002 12 21 0 18 44 0 2.0000 157.9 1418.7 1041.1 -8.8 64.3 2.0 177.8 149.5 6.5 -6.8 521.3 85.0 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.060 -0.410 51.461 + 564 2002 12 21 0 18 46 0 2.0000 157.9 1418.9 1041.1 -8.8 64.5 2.0 177.8 149.5 6.5 -6.8 521.2 85.0 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.060 -0.410 51.455 + 565 2002 12 21 0 18 48 0 2.0000 157.9 1419.0 1041.2 -8.8 64.6 2.0 177.7 149.5 6.5 -6.8 521.1 85.0 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.060 -0.410 51.449 + 566 2002 12 21 0 18 50 0 2.0000 157.9 1419.1 1041.2 -8.7 64.7 2.0 177.7 149.5 6.5 -6.8 521.0 85.0 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.059 -0.410 51.443 + 567 2002 12 21 0 18 52 0 2.0000 157.9 1419.2 1041.2 -8.7 64.8 2.0 177.7 149.5 6.5 -6.8 520.8 85.1 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.059 -0.410 51.437 + 568 2002 12 21 0 18 54 0 2.0000 157.9 1419.4 1041.2 -8.7 65.0 2.0 177.7 149.5 6.5 -6.8 520.7 85.1 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.059 -0.410 51.431 + 569 2002 12 21 0 18 56 0 2.0000 157.9 1419.5 1041.3 -8.7 65.1 1.9 177.7 149.5 6.5 -6.8 520.6 85.1 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.059 -0.410 51.425 + 570 2002 12 21 0 18 58 0 2.0000 157.9 1419.6 1041.3 -8.8 65.2 1.9 177.7 149.5 6.5 -6.8 520.4 85.1 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.059 -0.410 51.419 + 571 2002 12 21 0 19 0 0 2.0000 157.9 1419.7 1041.3 -8.9 65.2 1.9 177.7 149.5 6.5 -6.8 520.3 85.1 171.3 171.3 171.3 171.3 0.0 0.0 0.0 0.0 95.4 109.4 3.059 -0.410 51.414 + 572 2002 12 21 0 19 2 0 2.0000 157.9 1419.9 1041.3 -9.0 65.3 1.9 177.7 149.5 6.5 -6.8 520.5 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.059 -0.410 51.408 + 573 2002 12 21 0 19 4 0 2.0000 157.9 1420.0 1041.4 -9.2 65.4 1.9 177.7 149.5 6.5 -6.8 520.7 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.058 -0.410 51.402 + 574 2002 12 21 0 19 6 0 2.0000 157.9 1420.1 1041.4 -9.4 65.5 1.9 177.7 149.5 6.5 -6.8 520.8 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.058 -0.410 51.396 + 575 2002 12 21 0 19 8 0 2.0000 157.9 1420.2 1041.4 -9.6 65.5 1.8 177.7 149.5 6.5 -6.8 521.0 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.058 -0.410 51.390 + 576 2002 12 21 0 19 10 0 2.0000 157.9 1420.3 1041.4 -9.7 65.6 1.8 177.7 149.5 6.5 -6.7 521.2 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.058 -0.410 51.384 + 577 2002 12 21 0 19 12 0 2.0000 157.9 1420.4 1041.5 -9.9 65.6 1.8 177.7 149.5 6.5 -6.7 521.4 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.058 -0.410 51.379 + 578 2002 12 21 0 19 14 0 2.0000 157.9 1420.5 1041.5 -10.0 65.6 1.8 177.7 149.5 6.5 -6.7 521.5 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.058 -0.410 51.373 + 579 2002 12 21 0 19 16 0 2.0000 157.9 1420.6 1041.5 -10.2 65.6 1.8 177.7 149.5 6.5 -6.7 521.7 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.058 -0.410 51.367 + 580 2002 12 21 0 19 18 0 2.0000 157.9 1420.7 1041.5 -10.3 65.7 1.8 177.7 149.5 6.5 -6.7 521.9 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.057 -0.410 51.361 + 581 2002 12 21 0 19 20 0 2.0000 157.9 1420.8 1041.5 -10.4 65.7 1.7 177.7 149.5 6.4 -6.7 522.1 85.1 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.057 -0.410 51.356 + 582 2002 12 21 0 19 22 0 2.0000 157.9 1420.9 1041.6 -10.5 65.7 1.7 177.7 149.5 6.4 -6.7 522.2 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.057 -0.410 51.350 + 583 2002 12 21 0 19 24 0 2.0000 157.9 1421.0 1041.6 -10.5 65.7 1.7 177.7 149.5 6.4 -6.6 522.4 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.057 -0.410 51.344 + 584 2002 12 21 0 19 26 0 2.0000 157.9 1421.1 1041.6 -10.6 65.6 1.7 177.7 149.5 6.4 -6.6 522.6 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.057 -0.410 51.338 + 585 2002 12 21 0 19 28 0 2.0000 157.9 1421.2 1041.6 -10.6 65.6 1.7 177.7 149.5 6.4 -6.6 522.8 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.057 -0.410 51.333 + 586 2002 12 21 0 19 30 0 2.0000 157.9 1421.3 1041.6 -10.7 65.6 1.7 177.7 149.5 6.4 -6.6 522.9 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.057 -0.410 51.327 + 587 2002 12 21 0 19 32 0 2.0000 157.9 1421.4 1041.7 -10.7 65.5 1.6 177.7 149.5 6.4 -6.6 523.1 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.056 -0.410 51.321 + 588 2002 12 21 0 19 34 0 2.0000 157.9 1421.5 1041.7 -10.8 65.5 1.6 177.7 149.5 6.4 -6.6 523.3 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.056 -0.410 51.315 + 589 2002 12 21 0 19 36 0 2.0000 157.9 1421.5 1041.7 -10.9 65.4 1.6 177.7 149.5 6.4 -6.5 523.5 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.056 -0.410 51.310 + 590 2002 12 21 0 19 38 0 2.0000 157.9 1421.6 1041.7 -11.0 65.4 1.6 177.7 149.5 6.4 -6.5 523.6 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.056 -0.410 51.304 + 591 2002 12 21 0 19 40 0 2.0000 157.9 1421.7 1041.7 -11.2 65.3 1.6 177.7 149.5 6.4 -6.5 523.8 85.0 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.056 -0.410 51.298 + 592 2002 12 21 0 19 42 0 2.0000 157.9 1421.8 1041.8 -11.3 65.2 1.6 177.7 149.5 6.4 -6.5 524.0 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.056 -0.410 51.293 + 593 2002 12 21 0 19 44 0 2.0000 157.9 1421.9 1041.8 -11.5 65.2 1.5 177.7 149.5 6.4 -6.5 524.2 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.055 -0.410 51.287 + 594 2002 12 21 0 19 46 0 2.0000 157.9 1421.9 1041.8 -11.6 65.1 1.5 177.7 149.5 6.4 -6.5 524.3 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.055 -0.410 51.281 + 595 2002 12 21 0 19 48 0 2.0000 157.9 1422.0 1041.8 -11.7 65.0 1.5 177.7 149.5 6.3 -6.5 524.5 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.055 -0.410 51.276 + 596 2002 12 21 0 19 50 0 2.0000 157.9 1422.1 1041.8 -11.9 64.9 1.5 177.7 149.5 6.3 -6.4 524.7 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.055 -0.410 51.270 + 597 2002 12 21 0 19 52 0 2.0000 157.9 1422.2 1041.9 -12.0 64.8 1.5 177.7 149.5 6.3 -6.4 524.9 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.055 -0.410 51.265 + 598 2002 12 21 0 19 54 0 2.0000 157.9 1422.3 1041.9 -12.0 64.6 1.5 177.7 149.5 6.3 -6.4 525.0 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.055 -0.410 51.259 + 599 2002 12 21 0 19 56 0 2.0000 157.9 1422.3 1041.9 -12.1 64.5 1.4 177.7 149.5 6.3 -6.4 525.2 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.055 -0.410 51.253 + 600 2002 12 21 0 19 58 0 2.0000 157.9 1422.4 1041.9 -12.2 64.4 1.4 177.7 149.5 6.3 -6.4 525.4 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.054 -0.410 51.248 + 601 2002 12 21 0 20 0 0 2.0000 157.9 1422.5 1041.9 -12.2 64.3 1.4 177.7 149.5 6.3 -6.4 525.6 84.9 171.6 171.6 171.6 171.6 0.0 0.0 0.0 0.0 95.4 109.8 3.054 -0.410 51.242 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.01.UseAeNoHPI.test b/srcTests/auto_test/ref_solns/log.UAM.in.01.UseAeNoHPI.test new file mode 100644 index 00000000..7ff07742 --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.01.UseAeNoHPI.test @@ -0,0 +1,95 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: TFile: +UA/DataIn/FISM/fismflux_daily_2002.dat +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 4 105 4.1058 157.7 1316.9 1012.0 -3.9 4.8 0.0 177.9 149.5 6.1 -6.0 531.2 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.074 + 3 2002 12 21 0 0 8 39 3.9333 157.9 1316.8 1012.1 -5.5 3.7 -0.3 177.9 149.5 6.2 -6.0 531.0 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 57.962 + 4 2002 12 21 0 0 11 994 3.9555 157.9 1316.6 1012.3 -6.3 3.4 -0.6 177.9 149.5 6.2 -6.0 530.7 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 57.895 + 5 2002 12 21 0 0 15 966 3.9718 157.9 1316.4 1012.4 -6.8 3.2 -0.8 177.9 149.5 6.2 -6.0 530.5 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.854 + 6 2002 12 21 0 0 19 949 3.9830 157.9 1316.2 1012.6 -7.2 3.1 -1.0 177.9 149.5 6.3 -6.0 530.2 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.801 + 7 2002 12 21 0 0 23 941 3.9919 157.9 1316.0 1012.8 -7.5 3.0 -1.1 177.9 149.5 6.3 -6.0 530.0 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.765 + 8 2002 12 21 0 0 27 943 4.0024 157.9 1315.9 1012.9 -7.7 2.9 -1.3 177.9 149.5 6.4 -6.0 529.7 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.710 + 9 2002 12 21 0 0 31 957 4.0144 157.9 1315.7 1013.1 -7.9 2.8 -1.5 177.9 149.5 6.4 -6.0 529.5 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.676 + 10 2002 12 21 0 0 35 972 4.0146 157.9 1315.6 1013.3 -8.2 2.8 -1.7 177.9 149.5 6.4 -6.0 529.2 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.617 + 11 2002 12 21 0 0 39 984 4.0116 157.9 1315.5 1013.4 -8.4 2.6 -1.8 177.9 149.5 6.5 -6.0 528.9 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.583 + 12 2002 12 21 0 0 43 994 4.0105 157.9 1315.4 1013.6 -8.6 2.5 -2.0 177.9 149.5 6.5 -6.0 528.7 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.524 + 13 2002 12 21 0 0 48 5 4.0109 157.9 1315.3 1013.8 -8.8 2.6 -2.1 177.9 149.5 6.5 -6.0 528.4 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.490 + 14 2002 12 21 0 0 52 17 4.0118 157.9 1315.2 1014.0 -9.4 2.7 -2.3 177.9 149.5 6.6 -6.0 528.2 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.431 + 15 2002 12 21 0 0 56 30 4.0136 157.9 1315.2 1014.1 -10.1 2.9 -2.4 177.9 149.5 6.6 -6.0 527.9 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.398 + 16 2002 12 21 0 1 0 46 4.0154 157.9 1315.4 1014.3 -10.7 3.0 -2.6 177.9 149.5 6.6 -6.0 527.7 72.6 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.340 + 17 2002 12 21 0 1 4 63 4.0173 157.9 1315.9 1014.5 -11.7 3.1 -2.7 177.9 149.5 6.6 -6.0 527.8 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.307 + 18 2002 12 21 0 1 8 70 4.0072 158.0 1316.4 1014.7 -12.4 3.2 -2.9 177.9 149.5 6.6 -6.0 527.9 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.248 + 19 2002 12 21 0 1 12 72 4.0014 158.0 1316.9 1014.8 -13.4 3.4 -3.0 177.9 149.5 6.6 -6.0 528.0 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.217 + 20 2002 12 21 0 1 16 67 3.9957 158.0 1317.4 1015.0 -13.9 3.5 -3.1 177.9 149.5 6.6 -6.0 528.2 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.159 + 21 2002 12 21 0 1 20 57 3.9898 158.0 1317.9 1015.2 -15.1 4.0 -3.3 177.9 149.5 6.6 -6.1 528.3 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.129 + 22 2002 12 21 0 1 24 40 3.9834 158.0 1318.3 1015.3 -15.6 4.2 -3.4 177.9 149.5 6.6 -6.1 528.4 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.069 + 23 2002 12 21 0 1 28 18 3.9775 158.0 1318.8 1015.5 -16.6 4.7 -3.5 177.9 149.5 6.5 -6.1 528.5 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.041 + 24 2002 12 21 0 1 31 990 3.9719 158.0 1319.2 1015.7 -17.4 5.0 -3.6 177.9 149.5 6.5 -6.1 528.6 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 56.982 + 25 2002 12 21 0 1 35 957 3.9668 158.0 1319.6 1015.8 -18.0 5.2 -3.8 177.9 149.5 6.5 -6.1 528.8 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 56.956 + 26 2002 12 21 0 1 39 919 3.9622 158.0 1320.0 1016.0 -19.1 5.6 -3.9 177.9 149.5 6.5 -6.1 528.9 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.895 + 27 2002 12 21 0 1 43 877 3.9580 158.0 1320.4 1016.2 -19.4 5.9 -4.0 177.9 149.5 6.5 -6.1 529.0 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.870 + 28 2002 12 21 0 1 47 831 3.9543 158.0 1320.8 1016.3 -20.7 6.1 -4.1 177.9 149.5 6.5 -6.1 529.1 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.809 + 29 2002 12 21 0 1 51 782 3.9512 158.0 1321.2 1016.5 -21.6 6.6 -4.2 177.9 149.5 6.5 -6.1 529.2 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.786 + 30 2002 12 21 0 1 55 731 3.9485 157.9 1321.6 1016.6 -21.9 6.7 -4.3 177.9 149.5 6.5 -6.1 529.4 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.725 + 31 2002 12 21 0 1 59 677 3.9463 157.9 1322.0 1016.8 -23.4 7.1 -4.3 177.9 149.5 6.4 -6.1 529.5 71.9 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.703 + 32 2002 12 21 0 2 3 622 3.9446 157.9 1322.4 1016.9 -24.2 7.5 -4.4 177.9 149.5 6.4 -6.1 529.5 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.642 + 33 2002 12 21 0 2 7 565 3.9432 157.9 1322.7 1017.1 -24.4 7.7 -4.5 177.9 149.5 6.4 -6.2 529.5 72.1 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.132 -0.410 56.621 + 34 2002 12 21 0 2 11 505 3.9401 157.9 1323.1 1017.2 -26.1 8.2 -4.6 177.9 149.5 6.4 -6.2 529.6 72.2 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.132 -0.410 56.561 + 35 2002 12 21 0 2 15 445 3.9394 157.9 1323.4 1017.4 -26.9 8.7 -4.6 177.9 149.5 6.4 -6.2 529.6 72.3 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.132 -0.410 56.541 + 36 2002 12 21 0 2 19 384 3.9391 157.9 1323.8 1017.5 -26.6 9.3 -4.7 177.9 149.5 6.4 -6.2 529.6 72.4 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.131 -0.410 56.482 + 37 2002 12 21 0 2 23 323 3.9391 157.9 1324.2 1017.7 -28.5 9.9 -4.7 177.9 149.5 6.4 -6.2 529.7 72.6 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.131 -0.410 56.463 + 38 2002 12 21 0 2 27 262 3.9396 157.9 1324.9 1017.8 -29.7 10.5 -4.8 177.9 149.5 6.3 -6.2 529.7 72.7 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.131 -0.410 56.404 + 39 2002 12 21 0 2 31 203 3.9404 157.9 1325.6 1017.9 -29.7 11.1 -4.8 177.9 149.5 6.3 -6.2 529.7 72.8 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.131 -0.410 56.386 + 40 2002 12 21 0 2 35 144 3.9414 157.9 1326.4 1018.1 -30.5 11.8 -4.8 177.9 149.5 6.3 -6.3 529.8 72.9 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.130 -0.410 56.327 + 41 2002 12 21 0 2 39 87 3.9427 157.9 1327.1 1018.2 -32.1 12.4 -4.9 177.9 149.5 6.3 -6.3 529.8 73.0 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.130 -0.410 56.310 + 42 2002 12 21 0 2 43 31 3.9442 157.9 1327.8 1018.3 -32.6 13.0 -4.9 177.9 149.5 6.3 -6.3 529.8 73.1 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.130 -0.410 56.251 + 43 2002 12 21 0 2 46 977 3.9457 157.8 1328.5 1018.5 -31.9 13.6 -4.9 177.9 149.5 6.3 -6.3 529.8 73.2 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.129 -0.410 56.234 + 44 2002 12 21 0 2 50 924 3.9474 157.8 1329.2 1018.6 -33.9 14.2 -4.9 177.9 149.5 6.3 -6.3 529.9 73.3 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.129 -0.410 56.176 + 45 2002 12 21 0 2 54 874 3.9493 157.8 1329.8 1018.7 -35.1 14.8 -4.9 177.9 149.5 6.2 -6.3 529.9 73.4 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.129 -0.410 56.160 + 46 2002 12 21 0 2 58 825 3.9512 157.8 1330.5 1018.8 -35.0 15.4 -4.9 177.9 149.5 6.2 -6.4 529.9 73.5 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.129 -0.410 56.102 + 47 2002 12 21 0 3 2 778 3.9531 157.8 1331.2 1019.0 -35.1 15.9 -4.8 177.9 149.5 6.2 -6.3 530.0 73.7 144.4 144.4 144.4 144.4 0.0 0.0 0.0 0.0 93.9 106.9 3.128 -0.410 56.087 + 48 2002 12 21 0 3 6 733 3.9551 157.8 1331.8 1019.1 -37.0 16.5 -4.8 177.9 149.5 6.2 -6.3 530.1 73.9 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 56.029 + 49 2002 12 21 0 3 10 687 3.9542 157.8 1332.5 1019.2 -37.9 17.1 -4.8 177.9 149.5 6.3 -6.3 530.2 74.1 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 56.015 + 50 2002 12 21 0 3 14 643 3.9563 157.8 1333.1 1019.3 -37.4 17.6 -4.7 177.9 149.5 6.3 -6.3 530.3 74.3 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 55.957 + 51 2002 12 21 0 3 18 602 3.9583 157.8 1333.8 1019.4 -38.1 18.1 -4.7 177.9 149.5 6.3 -6.3 530.4 74.6 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 55.943 + 52 2002 12 21 0 3 22 562 3.9604 157.8 1334.4 1019.5 -39.7 18.7 -4.6 177.9 149.5 6.3 -6.2 530.5 74.8 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 55.886 + 53 2002 12 21 0 3 26 524 3.9624 157.8 1335.0 1019.7 -40.3 20.1 -4.5 177.9 149.5 6.3 -6.2 530.6 75.0 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 55.873 + 54 2002 12 21 0 3 30 489 3.9643 157.8 1335.6 1019.8 -39.4 21.1 -4.5 177.9 149.5 6.3 -6.2 530.7 75.2 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 55.815 + 55 2002 12 21 0 3 34 455 3.9661 157.8 1336.2 1019.9 -40.3 21.8 -4.3 177.9 149.5 6.3 -6.2 530.8 75.4 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 55.803 + 56 2002 12 21 0 3 38 423 3.9679 157.8 1336.8 1020.0 -41.7 23.4 -4.2 177.9 149.5 6.3 -6.2 530.9 75.6 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 55.746 + 57 2002 12 21 0 3 42 392 3.9695 157.8 1337.4 1020.1 -41.9 25.0 -4.1 177.9 149.5 6.3 -6.1 531.0 75.8 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 55.735 + 58 2002 12 21 0 3 46 363 3.9710 157.8 1338.0 1020.2 -40.7 25.9 -3.9 177.9 149.5 6.4 -6.1 531.0 76.0 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 55.677 + 59 2002 12 21 0 3 50 336 3.9724 157.8 1338.5 1020.3 -41.6 26.5 -3.7 177.9 149.5 6.4 -6.1 531.1 76.2 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 55.666 + 60 2002 12 21 0 3 54 309 3.9735 157.8 1339.1 1020.4 -42.7 28.5 -3.6 177.9 149.5 6.4 -6.1 531.2 76.4 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 55.609 + 61 2002 12 21 0 3 58 284 3.9746 157.8 1339.7 1020.5 -42.7 30.1 -3.3 177.9 149.5 6.4 -6.0 531.3 76.6 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.124 -0.410 55.599 + 62 2002 12 21 0 4 2 259 3.9755 157.8 1340.2 1020.6 -41.2 31.0 -3.1 177.9 149.5 6.4 -6.1 531.5 76.8 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.124 -0.410 55.542 + 63 2002 12 21 0 4 6 236 3.9762 157.8 1340.8 1020.7 -42.1 31.4 -2.9 177.9 149.5 6.3 -6.1 531.6 76.8 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.124 -0.410 55.533 + 64 2002 12 21 0 4 10 217 3.9813 157.8 1341.3 1020.8 -42.7 33.6 -2.6 177.9 149.5 6.2 -6.1 531.8 76.8 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.123 -0.410 55.476 + 65 2002 12 21 0 4 14 199 3.9818 157.8 1341.9 1021.0 -42.4 35.4 -2.3 177.9 149.5 6.2 -6.1 531.9 76.9 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.123 -0.410 55.467 + 66 2002 12 21 0 4 18 181 3.9822 157.8 1342.4 1021.1 -40.8 36.3 -2.0 177.9 149.5 6.1 -6.2 532.1 76.9 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.123 -0.410 55.408 + 67 2002 12 21 0 4 22 163 3.9824 157.8 1342.9 1021.2 -41.8 36.6 -1.7 177.9 149.5 6.1 -6.2 532.2 76.9 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.123 -0.410 55.399 + 68 2002 12 21 0 4 26 146 3.9824 157.8 1343.5 1021.3 -42.0 38.5 -1.4 177.9 149.5 6.0 -6.2 532.4 77.0 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.122 -0.410 55.343 + 69 2002 12 21 0 4 30 128 3.9822 157.8 1344.0 1021.4 -41.1 40.5 -1.1 177.9 149.5 5.9 -6.2 532.5 77.0 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.122 -0.410 55.336 + 70 2002 12 21 0 4 34 110 3.9820 157.8 1344.6 1021.5 -40.0 41.7 -0.7 177.9 149.5 5.9 -6.3 532.7 77.1 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.122 -0.410 55.278 + 71 2002 12 21 0 4 38 91 3.9816 157.8 1345.1 1021.6 -40.5 42.0 -0.4 177.9 149.5 5.8 -6.3 532.8 77.1 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.121 -0.410 55.270 + 72 2002 12 21 0 4 42 72 3.9812 157.8 1345.7 1021.8 -40.3 43.0 -0.0 177.9 149.5 5.8 -6.3 533.0 77.1 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.121 -0.410 55.215 + 73 2002 12 21 0 4 46 53 3.9806 157.8 1346.2 1021.9 -39.0 45.3 0.3 177.9 149.5 5.7 -6.3 533.2 77.2 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.121 -0.410 55.208 + 74 2002 12 21 0 4 50 33 3.9801 157.8 1346.8 1022.0 -38.4 46.8 0.7 177.9 149.5 5.7 -6.4 533.3 77.2 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.121 -0.410 55.150 + 75 2002 12 21 0 4 54 13 3.9794 157.8 1347.3 1022.1 -38.5 47.4 1.0 177.9 149.5 5.6 -6.4 533.5 77.2 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.120 -0.410 55.143 + 76 2002 12 21 0 4 57 991 3.9787 157.8 1347.9 1022.3 -37.8 47.6 1.3 177.9 149.5 5.5 -6.4 533.6 77.3 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.120 -0.410 55.088 + 77 2002 12 21 0 5 0 0 2.0082 157.8 1348.2 1022.3 -37.9 48.6 1.4 177.9 149.5 5.5 -6.4 533.7 77.3 151.7 151.7 151.7 151.7 0.0 0.0 0.0 0.0 93.3 106.6 3.120 -0.410 55.086 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.03.IonLowerLimit.test b/srcTests/auto_test/ref_solns/log.UAM.in.03.IonLowerLimit.test new file mode 100644 index 00000000..b352b59f --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.03.IonLowerLimit.test @@ -0,0 +1,258 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: TFile: +UA/DataIn/FISM/fismflux_daily_2002.dat +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 4 105 4.1058 157.6 1317.1 1012.1 -4.4 5.7 0.2 177.9 149.5 6.1 -6.0 531.2 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 59.243 + 3 2002 12 21 0 0 8 37 3.9320 157.6 1317.6 1012.5 -8.4 6.4 -0.1 177.9 149.5 6.2 -6.0 531.0 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 61.596 + 4 2002 12 21 0 0 11 894 3.8564 157.6 1318.0 1012.9 -9.3 6.5 -0.3 177.9 149.5 6.2 -6.0 530.7 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 60.895 + 5 2002 12 21 0 0 15 771 3.8775 157.7 1318.3 1013.3 -9.3 5.9 -0.4 177.9 149.5 6.2 -6.0 530.5 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 61.277 + 6 2002 12 21 0 0 19 594 3.8226 157.7 1318.7 1013.8 -10.4 6.1 -0.5 177.9 149.5 6.3 -6.0 530.2 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 61.188 + 7 2002 12 21 0 0 23 397 3.8030 157.8 1319.1 1014.2 -10.9 6.6 -0.6 177.9 149.5 6.3 -6.0 530.0 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 61.254 + 8 2002 12 21 0 0 27 175 3.7786 157.9 1319.5 1014.6 -11.9 7.4 -0.7 177.9 149.5 6.3 -6.0 529.8 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 61.220 + 9 2002 12 21 0 0 30 933 3.7572 157.9 1319.9 1015.0 -13.2 7.9 -0.8 177.9 149.5 6.4 -6.0 529.5 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 61.225 + 10 2002 12 21 0 0 34 676 3.7433 158.0 1320.3 1015.4 -13.5 8.8 -0.9 177.9 149.5 6.4 -6.0 529.3 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 61.190 + 11 2002 12 21 0 0 38 418 3.7422 158.0 1320.7 1015.8 -15.1 10.0 -1.0 177.9 149.5 6.4 -6.0 529.0 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 61.178 + 12 2002 12 21 0 0 42 161 3.7432 158.1 1321.2 1016.2 -16.4 10.8 -1.0 177.9 149.5 6.5 -6.0 528.8 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 61.138 + 13 2002 12 21 0 0 45 907 3.7461 158.2 1321.6 1016.6 -17.5 11.8 -1.1 177.9 149.5 6.5 -6.0 528.6 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 61.120 + 14 2002 12 21 0 0 49 662 3.7550 158.2 1322.3 1017.0 -18.5 12.9 -1.2 177.9 149.5 6.5 -6.0 528.3 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 61.077 + 15 2002 12 21 0 0 53 428 3.7653 158.2 1323.3 1017.4 -19.8 14.4 -1.2 177.9 149.5 6.6 -6.0 528.1 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 61.055 + 16 2002 12 21 0 0 57 200 3.7720 158.3 1324.3 1017.8 -21.8 14.8 -1.3 177.9 149.5 6.6 -6.0 527.8 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 61.011 + 17 2002 12 21 0 1 0 976 3.7767 158.3 1325.3 1018.2 -22.5 16.2 -1.3 177.9 149.5 6.6 -6.0 527.7 72.6 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 60.988 + 18 2002 12 21 0 1 4 757 3.7806 158.4 1326.2 1018.6 -24.7 17.5 -1.4 177.9 149.5 6.6 -6.0 527.8 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 60.942 + 19 2002 12 21 0 1 8 539 3.7817 158.4 1327.2 1019.0 -25.8 18.8 -1.4 177.9 149.5 6.6 -6.0 527.9 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 60.919 + 20 2002 12 21 0 1 12 327 3.7882 158.5 1328.1 1019.4 -28.5 19.2 -1.5 177.9 149.5 6.6 -6.0 528.0 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 60.872 + 21 2002 12 21 0 1 16 118 3.7909 158.5 1329.0 1019.8 -29.5 21.0 -1.5 177.9 149.5 6.6 -6.0 528.2 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 60.849 + 22 2002 12 21 0 1 19 911 3.7936 158.5 1329.9 1020.2 -31.3 21.2 -1.6 177.9 149.5 6.6 -6.1 528.3 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 60.803 + 23 2002 12 21 0 1 23 709 3.7973 158.5 1330.8 1020.6 -33.4 23.5 -1.6 177.9 149.5 6.6 -6.1 528.4 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 60.779 + 24 2002 12 21 0 1 27 510 3.8013 158.6 1331.6 1021.0 -34.7 23.8 -1.6 177.9 149.5 6.5 -6.1 528.5 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 60.733 + 25 2002 12 21 0 1 31 315 3.8049 158.6 1332.5 1021.4 -37.6 25.3 -1.7 177.9 149.5 6.5 -6.1 528.6 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 60.710 + 26 2002 12 21 0 1 35 123 3.8081 158.6 1333.3 1021.8 -37.8 26.8 -1.7 177.9 149.5 6.5 -6.1 528.7 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 60.663 + 27 2002 12 21 0 1 38 934 3.8112 158.6 1334.1 1022.2 -40.4 26.3 -1.7 177.9 149.5 6.5 -6.1 528.9 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 60.641 + 28 2002 12 21 0 1 42 748 3.8143 158.6 1334.9 1022.6 -42.6 28.8 -1.7 177.9 149.5 6.5 -6.1 529.0 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 60.595 + 29 2002 12 21 0 1 46 566 3.8174 158.7 1335.7 1023.0 -42.6 29.7 -1.7 177.9 149.5 6.5 -6.1 529.1 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 60.573 + 30 2002 12 21 0 1 50 386 3.8198 158.7 1336.5 1023.3 -46.5 29.9 -1.7 177.9 149.5 6.5 -6.1 529.2 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 60.526 + 31 2002 12 21 0 1 54 207 3.8218 158.7 1337.3 1023.7 -47.7 32.6 -1.7 177.9 149.5 6.5 -6.1 529.3 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 60.505 + 32 2002 12 21 0 1 58 32 3.8244 158.7 1338.1 1024.1 -47.5 33.3 -1.7 177.9 149.5 6.4 -6.1 529.4 71.9 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 60.459 + 33 2002 12 21 0 2 1 859 3.8274 158.7 1339.1 1024.5 -51.4 33.1 -1.7 177.9 149.5 6.4 -6.1 529.5 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 60.438 + 34 2002 12 21 0 2 5 689 3.8300 158.7 1340.3 1024.8 -52.6 35.7 -1.7 177.9 149.5 6.4 -6.2 529.5 72.1 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 60.391 + 35 2002 12 21 0 2 9 519 3.8298 158.8 1341.5 1025.2 -52.5 36.6 -1.6 177.9 149.5 6.4 -6.2 529.6 72.2 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 60.371 + 36 2002 12 21 0 2 13 350 3.8310 158.8 1342.6 1025.6 -56.6 36.7 -1.6 177.9 149.5 6.4 -6.2 529.6 72.3 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 60.325 + 37 2002 12 21 0 2 17 182 3.8318 158.8 1343.8 1025.9 -58.0 39.6 -1.6 177.9 149.5 6.4 -6.2 529.6 72.4 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 60.305 + 38 2002 12 21 0 2 21 15 3.8330 158.8 1344.9 1026.3 -55.9 40.8 -1.5 177.9 149.5 6.4 -6.2 529.6 72.5 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 60.258 + 39 2002 12 21 0 2 24 849 3.8345 158.9 1346.0 1026.7 -60.5 40.0 -1.4 177.9 149.5 6.4 -6.2 529.7 72.6 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 60.239 + 40 2002 12 21 0 2 28 685 3.8356 158.9 1347.1 1027.0 -62.7 42.5 -1.4 177.9 149.5 6.3 -6.2 529.7 72.7 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 60.193 + 41 2002 12 21 0 2 32 521 3.8356 158.9 1348.2 1027.4 -61.3 44.2 -1.3 177.9 149.5 6.3 -6.3 529.7 72.8 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 60.174 + 42 2002 12 21 0 2 36 355 3.8347 159.0 1349.3 1027.7 -64.2 44.1 -1.2 177.9 149.5 6.3 -6.3 529.8 72.9 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 60.127 + 43 2002 12 21 0 2 40 189 3.8334 159.0 1350.4 1028.1 -67.5 45.7 -1.1 177.9 149.5 6.3 -6.3 529.8 73.0 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 60.109 + 44 2002 12 21 0 2 44 21 3.8323 159.0 1351.4 1028.4 -67.6 48.1 -1.1 177.9 149.5 6.3 -6.3 529.8 73.1 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 60.062 + 45 2002 12 21 0 2 47 853 3.8314 159.0 1352.5 1028.8 -65.2 48.8 -1.0 177.9 149.5 6.3 -6.3 529.9 73.2 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 60.044 + 46 2002 12 21 0 2 51 683 3.8306 159.1 1353.5 1029.1 -69.4 48.1 -0.9 177.9 149.5 6.3 -6.3 529.9 73.3 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 59.997 + 47 2002 12 21 0 2 55 512 3.8292 159.1 1354.5 1029.4 -71.0 51.1 -0.8 177.9 149.5 6.2 -6.3 529.9 73.5 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 59.980 + 48 2002 12 21 0 2 59 339 3.8270 159.2 1355.6 1029.8 -69.0 52.8 -0.7 177.9 149.5 6.2 -6.4 530.0 73.6 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 59.932 + 49 2002 12 21 0 3 3 164 3.8244 159.2 1356.6 1030.1 -71.1 52.7 -0.6 177.9 149.5 6.2 -6.3 530.0 73.7 144.3 144.3 144.3 144.3 0.0 0.0 0.0 0.0 93.8 106.9 3.128 -0.410 59.916 + 50 2002 12 21 0 3 6 986 3.8219 159.2 1357.6 1030.4 -74.5 54.3 -0.5 177.9 149.5 6.2 -6.3 530.1 73.9 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 59.868 + 51 2002 12 21 0 3 10 802 3.8159 159.3 1358.5 1030.8 -74.9 56.7 -0.4 177.9 149.5 6.3 -6.3 530.2 74.1 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 59.853 + 52 2002 12 21 0 3 14 615 3.8133 159.3 1359.5 1031.1 -71.6 57.7 -0.3 177.9 149.5 6.3 -6.3 530.3 74.3 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 59.805 + 53 2002 12 21 0 3 18 426 3.8108 159.4 1360.5 1031.4 -73.8 57.3 -0.2 177.9 149.5 6.3 -6.3 530.4 74.5 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 59.790 + 54 2002 12 21 0 3 22 234 3.8083 159.4 1361.4 1031.8 -76.1 60.0 -0.0 177.9 149.5 6.3 -6.2 530.5 74.7 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 59.742 + 55 2002 12 21 0 3 26 40 3.8061 159.4 1362.4 1032.1 -75.3 62.1 0.1 177.9 149.5 6.3 -6.2 530.6 74.9 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 59.728 + 56 2002 12 21 0 3 29 844 3.8039 159.5 1363.3 1032.4 -73.7 62.6 0.3 177.9 149.5 6.3 -6.2 530.7 75.1 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 59.679 + 57 2002 12 21 0 3 33 646 3.8019 159.5 1364.2 1032.8 -77.0 64.2 0.5 177.9 149.5 6.3 -6.2 530.7 75.3 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 59.666 + 58 2002 12 21 0 3 37 446 3.7997 159.6 1365.2 1033.1 -78.5 65.8 0.7 177.9 149.5 6.3 -6.2 530.8 75.5 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 59.616 + 59 2002 12 21 0 3 41 243 3.7972 159.6 1366.1 1033.4 -77.2 70.3 0.9 177.9 149.5 6.3 -6.1 530.9 75.7 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 59.604 + 60 2002 12 21 0 3 45 37 3.7945 159.6 1367.0 1033.8 -75.2 73.0 1.1 177.9 149.5 6.4 -6.1 531.0 75.9 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 59.554 + 61 2002 12 21 0 3 48 829 3.7918 159.7 1367.9 1034.1 -77.7 73.7 1.4 177.9 149.5 6.4 -6.1 531.1 76.1 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 59.542 + 62 2002 12 21 0 3 52 618 3.7894 159.7 1368.9 1034.4 -78.2 75.8 1.7 177.9 149.5 6.4 -6.1 531.2 76.3 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 59.492 + 63 2002 12 21 0 3 56 406 3.7873 159.8 1369.8 1034.8 -77.0 80.0 2.0 177.9 149.5 6.4 -6.1 531.3 76.5 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.124 -0.410 59.482 + 64 2002 12 21 0 4 0 191 3.7856 159.8 1370.7 1035.1 -76.2 82.9 2.4 177.9 149.5 6.4 -6.0 531.4 76.7 148.9 148.9 148.9 148.9 0.0 0.0 0.0 0.0 94.9 107.6 3.124 -0.410 59.432 + 65 2002 12 21 0 4 3 976 3.7842 159.8 1371.6 1035.5 -78.1 83.6 2.7 177.9 149.5 6.3 -6.1 531.5 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 59.422 + 66 2002 12 21 0 4 7 764 3.7881 159.9 1372.6 1035.8 -78.7 83.9 3.1 177.9 149.5 6.3 -6.1 531.7 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 59.372 + 67 2002 12 21 0 4 11 551 3.7874 159.9 1373.5 1036.2 -77.2 89.6 3.5 177.9 149.5 6.2 -6.1 531.8 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 59.363 + 68 2002 12 21 0 4 15 338 3.7866 159.9 1374.5 1036.5 -75.2 93.0 3.9 177.9 149.5 6.2 -6.1 532.0 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 59.313 + 69 2002 12 21 0 4 19 124 3.7860 160.0 1375.4 1036.9 -76.5 94.8 4.3 177.9 149.5 6.1 -6.2 532.1 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 59.304 + 70 2002 12 21 0 4 22 909 3.7853 160.0 1376.4 1037.2 -76.9 94.4 4.7 177.9 149.5 6.1 -6.2 532.3 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 59.255 + 71 2002 12 21 0 4 26 694 3.7846 160.1 1377.4 1037.6 -74.8 98.2 5.1 177.9 149.5 6.0 -6.2 532.4 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 59.247 + 72 2002 12 21 0 4 30 478 3.7841 160.1 1378.4 1037.9 -73.6 102.2 5.5 177.9 149.5 5.9 -6.2 532.6 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 59.197 + 73 2002 12 21 0 4 34 262 3.7838 160.1 1379.5 1038.3 -75.0 103.7 5.9 177.9 149.5 5.9 -6.3 532.7 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 59.190 + 74 2002 12 21 0 4 38 45 3.7835 160.1 1380.6 1038.7 -74.7 104.1 6.2 177.9 149.5 5.8 -6.3 532.8 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 59.141 + 75 2002 12 21 0 4 41 828 3.7834 160.2 1381.7 1039.0 -72.0 106.2 6.6 177.9 149.5 5.8 -6.3 533.0 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 59.134 + 76 2002 12 21 0 4 45 612 3.7836 160.2 1382.8 1039.4 -71.4 110.8 7.0 177.9 149.5 5.7 -6.3 533.1 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 59.085 + 77 2002 12 21 0 4 49 396 3.7840 160.2 1384.0 1039.8 -71.9 114.3 7.3 177.9 149.5 5.7 -6.4 533.3 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 59.078 + 78 2002 12 21 0 4 53 181 3.7846 160.3 1385.2 1040.1 -70.6 116.3 7.7 177.9 149.5 5.6 -6.4 533.4 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 59.029 + 79 2002 12 21 0 4 56 966 3.7852 160.3 1386.5 1040.5 -67.6 115.7 8.0 177.9 149.5 5.6 -6.4 533.6 77.3 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 59.023 + 80 2002 12 21 0 5 0 752 3.7858 160.3 1387.8 1040.9 -68.3 118.2 8.3 177.9 149.5 5.5 -6.4 533.7 77.3 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 58.974 + 81 2002 12 21 0 5 4 538 3.7865 160.4 1389.2 1041.2 -67.6 121.2 8.7 177.9 149.5 5.5 -6.4 533.8 77.1 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 58.969 + 82 2002 12 21 0 5 8 323 3.7844 160.4 1390.6 1041.6 -65.1 124.2 9.0 177.9 149.5 5.5 -6.4 533.8 76.9 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 58.920 + 83 2002 12 21 0 5 12 108 3.7851 160.4 1392.1 1041.9 -64.1 125.2 9.3 177.9 149.5 5.4 -6.5 533.9 76.8 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 58.914 + 84 2002 12 21 0 5 15 893 3.7859 160.4 1393.6 1042.3 -63.5 124.7 9.6 177.9 149.5 5.4 -6.5 534.0 76.6 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.119 -0.410 58.867 + 85 2002 12 21 0 5 19 680 3.7864 160.5 1395.2 1042.6 -61.5 128.3 9.9 177.9 149.5 5.4 -6.5 534.0 76.5 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 58.862 + 86 2002 12 21 0 5 23 467 3.7869 160.5 1396.8 1043.0 -60.3 132.6 10.2 177.9 149.5 5.3 -6.5 534.1 76.3 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 58.814 + 87 2002 12 21 0 5 27 254 3.7872 160.5 1398.5 1043.3 -59.5 135.0 10.5 177.9 149.5 5.3 -6.5 534.1 76.2 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 58.810 + 88 2002 12 21 0 5 31 42 3.7875 160.6 1400.3 1043.7 -57.4 134.7 10.8 177.9 149.5 5.3 -6.5 534.2 76.0 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.118 -0.410 58.763 + 89 2002 12 21 0 5 34 829 3.7877 160.6 1402.1 1044.0 -56.8 134.5 11.0 177.9 149.5 5.3 -6.5 534.3 75.8 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 58.759 + 90 2002 12 21 0 5 38 617 3.7879 160.6 1403.9 1044.3 -55.5 138.3 11.3 177.9 149.5 5.2 -6.5 534.3 75.7 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 58.711 + 91 2002 12 21 0 5 42 405 3.7880 160.7 1405.8 1044.6 -54.3 142.2 11.5 177.9 149.5 5.2 -6.5 534.4 75.5 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.117 -0.410 58.708 + 92 2002 12 21 0 5 46 193 3.7882 160.7 1407.7 1045.0 -53.4 143.4 11.8 177.9 149.5 5.2 -6.5 534.5 75.4 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 58.661 + 93 2002 12 21 0 5 49 982 3.7883 160.7 1409.7 1045.3 -52.4 142.2 12.0 177.9 149.5 5.2 -6.5 534.5 75.2 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 58.658 + 94 2002 12 21 0 5 53 770 3.7884 160.8 1411.6 1045.6 -52.1 143.4 12.1 177.9 149.5 5.1 -6.5 534.6 75.0 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 58.612 + 95 2002 12 21 0 5 57 558 3.7883 160.8 1413.6 1045.9 -51.2 148.1 12.3 177.9 149.5 5.1 -6.5 534.6 74.9 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.116 -0.410 58.609 + 96 2002 12 21 0 6 1 346 3.7881 160.8 1415.5 1046.2 -52.0 150.6 12.4 177.9 149.5 5.2 -6.5 534.8 74.7 157.5 157.5 157.5 157.5 0.0 0.0 0.0 0.0 95.0 107.2 3.115 -0.410 58.563 + 97 2002 12 21 0 6 5 134 3.7878 160.9 1417.5 1046.5 -53.0 150.6 12.5 177.9 149.5 5.3 -6.4 535.0 74.6 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.115 -0.410 58.562 + 98 2002 12 21 0 6 8 924 3.7894 160.9 1419.4 1046.8 -53.3 148.5 12.6 177.9 149.5 5.5 -6.3 535.2 74.5 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.115 -0.410 58.515 + 99 2002 12 21 0 6 12 713 3.7889 160.9 1421.2 1047.1 -53.0 151.3 12.7 177.9 149.5 5.7 -6.2 535.4 74.5 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.114 -0.410 58.514 + 100 2002 12 21 0 6 16 501 3.7883 161.0 1423.0 1047.4 -52.7 154.6 12.7 177.8 149.5 5.8 -6.2 535.7 74.4 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.114 -0.410 58.469 + 101 2002 12 21 0 6 20 288 3.7876 161.0 1424.8 1047.8 -53.4 155.8 12.7 177.8 149.5 6.0 -6.1 535.9 74.3 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.114 -0.410 58.468 + 102 2002 12 21 0 6 24 75 3.7868 161.0 1426.5 1048.1 -54.1 154.7 12.7 177.8 149.5 6.1 -6.0 536.1 74.2 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.114 -0.410 58.423 + 103 2002 12 21 0 6 27 861 3.7860 161.1 1428.0 1048.4 -54.1 153.2 12.7 177.8 149.5 6.3 -5.9 536.4 74.1 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.113 -0.410 58.423 + 104 2002 12 21 0 6 31 646 3.7851 161.1 1429.5 1048.8 -53.5 156.6 12.6 177.8 149.5 6.5 -5.9 536.6 74.0 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.113 -0.410 58.378 + 105 2002 12 21 0 6 35 430 3.7841 161.1 1430.9 1049.1 -54.7 158.5 12.6 177.8 149.5 6.6 -5.8 536.8 73.9 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.113 -0.410 58.378 + 106 2002 12 21 0 6 39 214 3.7831 161.2 1432.1 1049.5 -56.0 158.4 12.5 177.8 149.5 6.8 -5.7 537.0 73.8 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.113 -0.410 58.334 + 107 2002 12 21 0 6 42 996 3.7821 161.2 1433.3 1049.9 -56.6 156.4 12.4 177.8 149.5 7.0 -5.7 537.3 73.7 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.112 -0.410 58.334 + 108 2002 12 21 0 6 46 777 3.7810 161.3 1434.3 1050.3 -59.5 157.5 12.3 177.8 149.5 7.1 -5.6 537.5 73.6 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.112 -0.410 58.290 + 109 2002 12 21 0 6 50 556 3.7798 161.3 1435.1 1050.7 -61.8 159.6 12.1 177.8 149.5 7.3 -5.5 537.7 73.5 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.112 -0.410 58.292 + 110 2002 12 21 0 6 54 335 3.7787 161.3 1435.8 1051.1 -63.6 160.2 12.0 177.8 149.5 7.5 -5.4 538.0 73.4 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.111 -0.410 58.248 + 111 2002 12 21 0 6 58 113 3.7776 161.4 1436.4 1051.6 -64.5 158.9 11.9 177.8 149.5 7.6 -5.4 538.2 73.3 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.111 -0.410 58.249 + 112 2002 12 21 0 7 1 889 3.7764 161.4 1436.8 1052.0 -65.3 158.6 11.7 177.8 149.5 7.7 -5.3 538.3 73.2 152.7 152.7 152.7 152.7 0.0 0.0 0.0 0.0 94.9 106.8 3.111 -0.410 58.206 + 113 2002 12 21 0 7 5 664 3.7753 161.4 1437.1 1052.5 -68.2 160.6 11.6 177.8 149.5 7.7 -5.4 538.3 73.2 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.111 -0.410 58.208 + 114 2002 12 21 0 7 9 442 3.7775 161.5 1437.2 1052.9 -70.6 161.4 11.4 177.8 149.5 7.6 -5.4 538.3 73.1 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.110 -0.410 58.165 + 115 2002 12 21 0 7 13 218 3.7764 161.5 1437.2 1053.4 -72.2 160.5 11.2 177.8 149.5 7.6 -5.4 538.3 73.0 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.110 -0.410 58.167 + 116 2002 12 21 0 7 16 994 3.7753 161.5 1437.0 1053.9 -72.9 160.6 11.1 177.8 149.5 7.6 -5.5 538.3 73.0 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.110 -0.410 58.124 + 117 2002 12 21 0 7 20 768 3.7743 161.6 1436.7 1054.4 -74.0 162.3 10.9 177.8 149.5 7.5 -5.5 538.3 72.9 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.110 -0.410 58.127 + 118 2002 12 21 0 7 24 541 3.7732 161.6 1436.3 1054.8 -77.0 162.7 10.7 177.8 149.5 7.5 -5.5 538.3 72.9 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.109 -0.410 58.084 + 119 2002 12 21 0 7 28 313 3.7722 161.6 1435.8 1055.3 -79.3 161.9 10.6 177.8 149.5 7.5 -5.6 538.3 72.8 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.109 -0.410 58.087 + 120 2002 12 21 0 7 32 85 3.7713 161.7 1435.1 1055.8 -81.2 163.7 10.4 177.8 149.5 7.5 -5.6 538.3 72.7 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.109 -0.410 58.045 + 121 2002 12 21 0 7 35 855 3.7703 161.7 1434.4 1056.2 -83.0 164.4 10.2 177.8 149.5 7.4 -5.6 538.3 72.7 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.108 -0.410 58.048 + 122 2002 12 21 0 7 39 624 3.7694 161.7 1433.5 1056.7 -83.9 164.5 10.0 177.8 149.5 7.4 -5.7 538.3 72.6 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.108 -0.410 58.006 + 123 2002 12 21 0 7 43 393 3.7685 161.8 1432.6 1057.1 -84.8 165.9 9.8 177.8 149.5 7.4 -5.7 538.3 72.6 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.108 -0.410 58.010 + 124 2002 12 21 0 7 47 160 3.7676 161.8 1431.6 1057.5 -88.2 166.4 9.6 177.8 149.5 7.3 -5.7 538.3 72.5 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.108 -0.410 57.968 + 125 2002 12 21 0 7 50 927 3.7668 161.9 1430.5 1057.9 -90.9 168.4 9.4 177.8 149.5 7.3 -5.8 538.3 72.4 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.107 -0.410 57.972 + 126 2002 12 21 0 7 54 693 3.7661 161.9 1429.4 1058.3 -92.8 170.7 9.2 177.8 149.5 7.3 -5.8 538.3 72.4 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.107 -0.410 57.930 + 127 2002 12 21 0 7 58 459 3.7654 161.9 1428.2 1058.7 -93.6 173.5 9.0 177.8 149.5 7.3 -5.8 538.3 72.3 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.107 -0.410 57.934 + 128 2002 12 21 0 8 2 223 3.7648 162.0 1427.0 1059.0 -93.4 176.2 8.8 177.8 149.5 7.2 -5.8 538.1 72.3 147.9 147.9 147.9 147.9 0.0 0.0 0.0 0.0 91.1 105.0 3.107 -0.410 57.892 + 129 2002 12 21 0 8 5 988 3.7642 162.0 1425.8 1059.3 -95.4 178.5 8.6 177.8 149.5 7.3 -5.8 537.7 72.4 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.106 -0.410 57.897 + 130 2002 12 21 0 8 9 743 3.7557 162.0 1424.6 1059.6 -98.0 180.1 8.4 177.8 149.5 7.3 -5.8 537.2 72.4 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.106 -0.410 57.855 + 131 2002 12 21 0 8 13 499 3.7552 162.0 1423.5 1059.8 -99.8 181.2 8.2 177.8 149.5 7.3 -5.8 536.8 72.5 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.106 -0.410 57.860 + 132 2002 12 21 0 8 17 253 3.7548 162.1 1422.3 1060.0 -100.6 181.5 8.0 177.8 149.5 7.3 -5.8 536.4 72.6 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.105 -0.410 57.819 + 133 2002 12 21 0 8 21 8 3.7543 162.1 1422.6 1060.2 -100.2 181.3 7.8 177.8 149.5 7.3 -5.8 536.0 72.6 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.105 -0.410 57.824 + 134 2002 12 21 0 8 24 761 3.7538 162.1 1423.4 1060.4 -99.6 180.3 7.6 177.8 149.5 7.3 -5.8 535.6 72.7 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.105 -0.410 57.782 + 135 2002 12 21 0 8 28 515 3.7534 162.2 1424.1 1060.5 -102.1 178.7 7.5 177.8 149.5 7.3 -5.8 535.2 72.7 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.105 -0.410 57.787 + 136 2002 12 21 0 8 32 268 3.7529 162.2 1424.8 1060.6 -103.8 176.5 7.3 177.8 149.5 7.3 -5.8 534.8 72.8 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.104 -0.410 57.746 + 137 2002 12 21 0 8 36 20 3.7525 162.2 1425.5 1060.7 -104.6 173.6 7.1 177.8 149.5 7.3 -5.8 534.4 72.8 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.104 -0.410 57.751 + 138 2002 12 21 0 8 39 772 3.7522 162.3 1426.1 1060.7 -104.3 170.2 6.9 177.8 149.5 7.3 -5.7 534.0 72.9 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.104 -0.410 57.710 + 139 2002 12 21 0 8 43 524 3.7518 162.3 1426.7 1060.8 -102.8 166.2 6.7 177.8 149.5 7.3 -5.7 533.6 73.0 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.104 -0.410 57.715 + 140 2002 12 21 0 8 47 276 3.7514 162.3 1427.3 1060.8 -103.2 161.6 6.5 177.8 149.5 7.3 -5.7 533.2 73.0 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.103 -0.410 57.674 + 141 2002 12 21 0 8 51 27 3.7511 162.4 1427.9 1060.7 -104.8 156.5 6.4 177.8 149.5 7.4 -5.7 532.8 73.1 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.103 -0.410 57.680 + 142 2002 12 21 0 8 54 778 3.7507 162.4 1428.4 1060.7 -105.6 150.9 6.2 177.8 149.5 7.4 -5.7 532.4 73.1 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.103 -0.410 57.639 + 143 2002 12 21 0 8 58 528 3.7503 162.4 1428.9 1060.7 -105.4 144.9 6.0 177.8 149.5 7.4 -5.7 532.0 73.2 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.102 -0.410 57.644 + 144 2002 12 21 0 9 2 278 3.7500 162.5 1429.4 1060.6 -104.1 138.5 5.9 177.8 149.5 7.3 -5.7 531.7 73.2 140.9 140.9 140.9 140.9 0.0 0.0 0.0 0.0 93.7 106.7 3.102 -0.410 57.603 + 145 2002 12 21 0 9 6 27 3.7497 162.5 1429.8 1060.5 -102.9 131.8 5.7 177.8 149.5 7.3 -5.7 531.4 73.3 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.102 -0.410 57.609 + 146 2002 12 21 0 9 9 783 3.7551 162.5 1430.3 1060.4 -104.5 125.6 5.6 177.8 149.5 7.2 -5.7 531.2 73.3 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.102 -0.410 57.568 + 147 2002 12 21 0 9 13 537 3.7548 162.6 1430.7 1060.3 -105.4 120.8 5.4 177.8 149.5 7.2 -5.7 530.9 73.3 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.101 -0.410 57.574 + 148 2002 12 21 0 9 17 292 3.7544 162.6 1431.1 1060.2 -105.3 115.9 5.3 177.8 149.5 7.2 -5.7 530.6 73.4 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.101 -0.410 57.533 + 149 2002 12 21 0 9 21 46 3.7541 162.6 1431.4 1060.1 -104.2 110.7 5.1 177.8 149.5 7.1 -5.7 530.3 73.4 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.101 -0.410 57.539 + 150 2002 12 21 0 9 24 800 3.7538 162.7 1431.8 1060.0 -102.3 105.3 5.0 177.8 149.5 7.1 -5.6 530.1 73.4 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.101 -0.410 57.498 + 151 2002 12 21 0 9 28 553 3.7534 162.7 1432.2 1059.9 -103.9 99.8 4.8 177.8 149.5 7.0 -5.6 529.8 73.5 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.100 -0.410 57.504 + 152 2002 12 21 0 9 32 306 3.7530 162.7 1432.5 1059.7 -104.6 94.1 4.7 177.8 149.5 7.0 -5.6 529.5 73.5 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.100 -0.410 57.463 + 153 2002 12 21 0 9 36 59 3.7526 162.8 1432.8 1059.6 -104.6 88.3 4.5 177.8 149.5 6.9 -5.6 529.2 73.5 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.100 -0.410 57.470 + 154 2002 12 21 0 9 39 811 3.7521 162.8 1433.2 1059.5 -103.6 82.5 4.4 177.8 149.5 6.9 -5.6 529.0 73.6 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.099 -0.410 57.429 + 155 2002 12 21 0 9 43 562 3.7517 162.8 1433.5 1059.4 -102.2 76.7 4.2 177.8 149.5 6.8 -5.6 528.7 73.6 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.099 -0.410 57.435 + 156 2002 12 21 0 9 47 314 3.7512 162.9 1433.8 1059.3 -103.4 71.5 4.1 177.8 149.5 6.8 -5.6 528.4 73.7 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.099 -0.410 57.395 + 157 2002 12 21 0 9 51 64 3.7508 162.9 1434.1 1059.2 -103.9 68.9 3.9 177.8 149.5 6.7 -5.6 528.1 73.7 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.099 -0.410 57.401 + 158 2002 12 21 0 9 54 815 3.7503 163.0 1434.4 1059.1 -103.6 67.2 3.8 177.8 149.5 6.7 -5.6 527.9 73.7 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.098 -0.410 57.361 + 159 2002 12 21 0 9 58 564 3.7498 163.0 1434.8 1059.1 -102.5 65.6 3.7 177.8 149.5 6.6 -5.6 527.6 73.8 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.098 -0.410 57.367 + 160 2002 12 21 0 10 2 314 3.7493 163.0 1435.1 1059.0 -102.4 64.6 3.5 177.8 149.5 6.6 -5.5 527.3 73.8 142.2 142.2 142.2 142.2 0.0 0.0 0.0 0.0 91.7 106.2 3.098 -0.410 57.327 + 161 2002 12 21 0 10 6 63 3.7487 163.1 1435.4 1058.9 -102.9 63.6 3.4 177.8 149.5 6.6 -5.4 527.0 73.9 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.098 -0.410 57.333 + 162 2002 12 21 0 10 9 821 3.7585 163.1 1435.8 1058.9 -102.7 62.7 3.2 177.8 149.5 6.6 -5.4 526.7 73.9 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.097 -0.410 57.293 + 163 2002 12 21 0 10 13 579 3.7579 163.1 1436.1 1058.9 -101.8 61.7 3.1 177.8 149.5 6.6 -5.3 526.5 74.0 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.097 -0.410 57.300 + 164 2002 12 21 0 10 17 336 3.7572 163.2 1436.5 1058.9 -101.7 60.8 3.0 177.8 149.5 6.6 -5.2 526.2 74.1 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.097 -0.410 57.259 + 165 2002 12 21 0 10 21 93 3.7567 163.2 1436.8 1058.9 -101.8 60.0 2.8 177.8 149.5 6.6 -5.1 525.9 74.1 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.096 -0.410 57.266 + 166 2002 12 21 0 10 24 849 3.7561 163.2 1437.2 1058.9 -101.2 59.1 2.7 177.8 149.5 6.6 -5.1 525.6 74.2 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.096 -0.410 57.225 + 167 2002 12 21 0 10 28 604 3.7556 163.3 1437.6 1059.0 -100.8 58.3 2.6 177.8 149.5 6.5 -5.0 525.4 74.3 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.096 -0.410 57.233 + 168 2002 12 21 0 10 32 359 3.7550 163.3 1438.0 1059.1 -100.7 57.5 2.5 177.8 149.5 6.5 -4.9 525.1 74.3 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.096 -0.410 57.192 + 169 2002 12 21 0 10 36 114 3.7544 163.3 1438.4 1059.1 -100.0 56.8 2.4 177.8 149.5 6.5 -4.8 524.8 74.4 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.095 -0.410 57.199 + 170 2002 12 21 0 10 39 868 3.7537 163.4 1438.8 1059.2 -99.8 56.1 2.3 177.8 149.5 6.5 -4.8 524.5 74.5 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.095 -0.410 57.159 + 171 2002 12 21 0 10 43 621 3.7531 163.4 1439.2 1059.4 -99.3 55.4 2.2 177.8 149.5 6.5 -4.7 524.3 74.5 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.095 -0.410 57.166 + 172 2002 12 21 0 10 47 373 3.7524 163.4 1439.6 1059.5 -100.5 54.8 2.1 177.8 149.5 6.5 -4.6 524.0 74.6 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.095 -0.410 57.126 + 173 2002 12 21 0 10 51 125 3.7517 163.5 1440.0 1059.7 -101.2 54.2 2.1 177.8 149.5 6.5 -4.5 523.7 74.7 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.094 -0.410 57.133 + 174 2002 12 21 0 10 54 876 3.7510 163.5 1440.5 1059.8 -101.3 53.6 2.0 177.8 149.5 6.5 -4.5 523.4 74.7 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.094 -0.410 57.093 + 175 2002 12 21 0 10 58 626 3.7504 163.5 1440.9 1060.0 -100.7 53.1 2.0 177.8 149.5 6.5 -4.4 523.2 74.8 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.094 -0.410 57.101 + 176 2002 12 21 0 11 2 376 3.7497 163.6 1441.4 1060.2 -99.6 52.6 1.9 177.8 149.5 6.5 -4.4 523.3 74.9 144.0 144.0 144.0 144.0 0.0 0.0 0.0 0.0 89.2 104.1 3.093 -0.410 57.060 + 177 2002 12 21 0 11 6 125 3.7491 163.6 1441.8 1060.4 -97.9 52.1 1.9 177.8 149.5 6.5 -4.5 523.5 75.1 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.093 -0.410 57.068 + 178 2002 12 21 0 11 9 903 3.7779 163.6 1442.3 1060.6 -95.8 51.7 1.9 177.8 149.5 6.5 -4.6 523.8 75.2 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.093 -0.410 57.028 + 179 2002 12 21 0 11 13 680 3.7772 163.7 1442.8 1060.9 -93.2 51.2 1.9 177.8 149.5 6.5 -4.7 524.1 75.4 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.093 -0.410 57.036 + 180 2002 12 21 0 11 17 456 3.7762 163.7 1443.2 1061.1 -90.2 50.8 1.8 177.8 149.5 6.5 -4.8 524.4 75.5 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.092 -0.410 56.994 + 181 2002 12 21 0 11 21 232 3.7755 163.7 1443.7 1061.4 -87.0 50.5 1.8 177.8 149.5 6.5 -4.9 524.7 75.7 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.092 -0.410 57.002 + 182 2002 12 21 0 11 25 7 3.7748 163.8 1444.2 1061.6 -83.4 50.1 1.8 177.8 149.5 6.5 -4.9 525.0 75.8 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.092 -0.410 56.962 + 183 2002 12 21 0 11 28 781 3.7742 163.8 1444.7 1061.9 -79.7 49.8 1.9 177.8 149.5 6.6 -5.0 525.3 76.0 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.092 -0.410 56.971 + 184 2002 12 21 0 11 32 554 3.7734 163.8 1445.2 1062.2 -75.8 49.5 1.9 177.8 149.5 6.6 -5.1 525.6 76.2 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.091 -0.410 56.929 + 185 2002 12 21 0 11 36 327 3.7727 163.9 1445.7 1062.5 -71.8 49.2 1.9 177.8 149.5 6.6 -5.2 525.8 76.3 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.091 -0.410 56.938 + 186 2002 12 21 0 11 40 99 3.7720 163.9 1446.1 1062.8 -67.7 48.9 2.0 177.8 149.5 6.6 -5.3 526.1 76.5 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.091 -0.410 56.898 + 187 2002 12 21 0 11 43 870 3.7713 163.9 1446.6 1063.1 -63.7 48.6 2.0 177.8 149.5 6.6 -5.4 526.4 76.6 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.090 -0.410 56.907 + 188 2002 12 21 0 11 47 641 3.7706 164.0 1447.1 1063.4 -59.7 48.3 2.0 177.8 149.5 6.6 -5.5 526.7 76.8 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.090 -0.410 56.866 + 189 2002 12 21 0 11 51 411 3.7699 164.0 1447.6 1063.7 -55.8 48.0 2.1 177.8 149.5 6.6 -5.6 527.0 76.9 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.090 -0.410 56.875 + 190 2002 12 21 0 11 55 180 3.7693 164.0 1448.1 1064.0 -52.0 47.8 2.2 177.8 149.5 6.6 -5.6 527.3 77.1 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.090 -0.410 56.834 + 191 2002 12 21 0 11 58 948 3.7686 164.1 1448.6 1064.3 -48.3 47.5 2.2 177.8 149.5 6.7 -5.7 527.6 77.2 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.089 -0.410 56.844 + 192 2002 12 21 0 12 2 716 3.7679 164.1 1449.1 1064.6 -44.9 47.3 2.3 177.8 149.5 6.6 -5.8 527.7 77.3 146.0 146.0 146.0 146.0 0.0 0.0 0.0 0.0 80.9 97.9 3.089 -0.410 56.803 + 193 2002 12 21 0 12 6 484 3.7673 164.1 1449.6 1064.9 -41.6 47.0 2.4 177.8 149.5 6.6 -5.9 527.7 77.4 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.089 -0.410 56.812 + 194 2002 12 21 0 12 10 216 3.7327 164.2 1450.1 1065.2 -38.5 46.8 2.4 177.8 149.5 6.6 -5.9 527.7 77.5 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.088 -0.410 56.773 + 195 2002 12 21 0 12 13 948 3.7322 164.2 1450.6 1065.5 -35.7 46.5 2.5 177.8 149.5 6.6 -6.0 527.7 77.6 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.088 -0.410 56.782 + 196 2002 12 21 0 12 17 681 3.7321 164.2 1451.2 1065.8 -34.6 46.3 2.6 177.8 149.5 6.6 -6.1 527.7 77.6 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.088 -0.410 56.743 + 197 2002 12 21 0 12 21 412 3.7313 164.3 1451.7 1066.1 -34.4 46.0 2.7 177.8 149.5 6.6 -6.1 527.7 77.7 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.088 -0.410 56.752 + 198 2002 12 21 0 12 25 143 3.7306 164.3 1452.2 1066.4 -33.8 45.8 2.8 177.8 149.5 6.5 -6.2 527.7 77.8 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.087 -0.410 56.713 + 199 2002 12 21 0 12 28 872 3.7299 164.4 1452.7 1066.7 -32.9 45.6 2.9 177.8 149.5 6.5 -6.2 527.7 77.9 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.087 -0.410 56.723 + 200 2002 12 21 0 12 32 602 3.7293 164.4 1453.2 1067.0 -31.8 45.3 3.0 177.8 149.5 6.5 -6.3 527.7 77.9 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.087 -0.410 56.684 + 201 2002 12 21 0 12 36 330 3.7287 164.4 1453.8 1067.3 -31.5 45.1 3.1 177.8 149.5 6.5 -6.4 527.7 78.0 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.087 -0.410 56.693 + 202 2002 12 21 0 12 40 59 3.7281 164.5 1454.3 1067.5 -31.0 44.9 3.2 177.8 149.5 6.5 -6.4 527.7 78.1 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.086 -0.410 56.654 + 203 2002 12 21 0 12 43 786 3.7275 164.5 1454.8 1067.8 -30.3 44.7 3.3 177.8 149.5 6.4 -6.5 527.7 78.2 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.086 -0.410 56.664 + 204 2002 12 21 0 12 47 513 3.7270 164.5 1455.4 1068.1 -29.3 44.5 3.4 177.8 149.5 6.4 -6.6 527.7 78.2 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.086 -0.410 56.625 + 205 2002 12 21 0 12 51 239 3.7264 164.6 1455.9 1068.4 -28.0 44.3 3.5 177.8 149.5 6.4 -6.6 527.7 78.3 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.086 -0.410 56.634 + 206 2002 12 21 0 12 54 965 3.7258 164.6 1456.5 1068.7 -27.5 44.1 3.6 177.8 149.5 6.4 -6.7 527.7 78.4 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.085 -0.410 56.596 + 207 2002 12 21 0 12 58 690 3.7252 164.6 1457.1 1068.9 -26.8 43.9 3.7 177.8 149.5 6.4 -6.7 527.7 78.5 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.085 -0.410 56.606 + 208 2002 12 21 0 13 2 415 3.7246 164.7 1457.6 1069.2 -25.9 43.8 3.8 177.8 149.5 6.4 -6.8 527.6 78.6 157.1 157.1 157.1 157.1 0.0 0.0 0.0 0.0 90.8 105.6 3.085 -0.410 56.567 + 209 2002 12 21 0 13 6 139 3.7240 164.7 1458.2 1069.5 -24.8 43.6 3.8 177.8 149.5 6.4 -6.8 527.4 78.7 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 56.577 + 210 2002 12 21 0 13 9 844 3.7054 164.7 1458.8 1069.8 -24.1 43.5 3.9 177.8 149.5 6.4 -6.8 527.3 78.8 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 56.539 + 211 2002 12 21 0 13 13 549 3.7049 164.8 1459.4 1070.1 -23.8 43.4 4.0 177.8 149.5 6.4 -6.8 527.1 78.9 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 56.549 + 212 2002 12 21 0 13 17 254 3.7046 164.8 1460.0 1070.3 -24.2 43.3 4.1 177.8 149.5 6.4 -6.8 527.0 79.0 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.084 -0.410 56.512 + 213 2002 12 21 0 13 20 958 3.7039 164.8 1460.6 1070.6 -24.6 43.2 4.2 177.8 149.5 6.4 -6.8 526.8 79.2 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 56.522 + 214 2002 12 21 0 13 24 661 3.7033 164.9 1461.2 1070.9 -24.9 43.1 4.3 177.8 149.5 6.4 -6.8 526.7 79.3 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 56.484 + 215 2002 12 21 0 13 28 364 3.7027 164.9 1461.8 1071.2 -25.2 43.1 4.4 177.8 149.5 6.4 -6.8 526.6 79.4 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 56.495 + 216 2002 12 21 0 13 32 66 3.7021 164.9 1462.5 1071.5 -25.5 43.0 4.5 177.8 149.5 6.5 -6.8 526.4 79.5 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.083 -0.410 56.457 + 217 2002 12 21 0 13 35 768 3.7016 165.0 1463.1 1071.8 -25.6 43.0 4.6 177.8 149.5 6.5 -6.8 526.3 79.6 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 56.467 + 218 2002 12 21 0 13 39 469 3.7010 165.0 1463.8 1072.1 -25.7 43.0 4.7 177.8 149.5 6.5 -6.8 526.1 79.8 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 56.431 + 219 2002 12 21 0 13 43 169 3.7005 165.0 1464.4 1072.3 -25.6 43.1 4.8 177.8 149.5 6.5 -6.8 526.0 79.9 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.082 -0.410 56.441 + 220 2002 12 21 0 13 46 869 3.7000 165.1 1465.1 1072.6 -25.4 43.2 4.9 177.8 149.5 6.5 -6.8 525.8 80.0 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 56.404 + 221 2002 12 21 0 13 50 568 3.6994 165.1 1465.7 1072.9 -25.1 43.3 5.0 177.8 149.5 6.5 -6.8 525.7 80.1 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 56.415 + 222 2002 12 21 0 13 54 267 3.6989 165.1 1466.4 1073.2 -24.6 43.5 5.0 177.8 149.5 6.5 -6.8 525.5 80.3 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 56.378 + 223 2002 12 21 0 13 57 966 3.6984 165.2 1467.1 1073.5 -24.0 43.7 5.1 177.8 149.5 6.5 -6.8 525.4 80.4 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.081 -0.410 56.389 + 224 2002 12 21 0 14 1 664 3.6979 165.2 1467.7 1073.8 -23.2 43.9 5.2 177.8 149.5 6.5 -6.8 525.3 80.5 159.0 159.0 159.0 159.0 0.0 0.0 0.0 0.0 96.5 109.7 3.080 -0.410 56.352 + 225 2002 12 21 0 14 5 361 3.6974 165.2 1468.4 1074.1 -22.3 44.1 5.3 177.8 149.5 6.5 -6.8 525.3 80.5 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 56.363 + 226 2002 12 21 0 14 9 57 3.6959 165.3 1469.1 1074.5 -21.3 44.3 5.4 177.8 149.5 6.5 -6.8 525.3 80.5 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 56.327 + 227 2002 12 21 0 14 12 752 3.6954 165.3 1469.8 1074.8 -20.7 44.6 5.4 177.8 149.5 6.5 -6.9 525.3 80.6 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.080 -0.410 56.338 + 228 2002 12 21 0 14 16 447 3.6950 165.3 1470.5 1075.1 -20.7 44.8 5.5 177.8 149.5 6.5 -6.9 525.2 80.6 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 56.301 + 229 2002 12 21 0 14 20 142 3.6945 165.4 1471.2 1075.4 -20.6 45.1 5.6 177.8 149.5 6.4 -6.9 525.2 80.7 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 56.313 + 230 2002 12 21 0 14 23 836 3.6940 165.4 1471.9 1075.7 -20.6 45.4 5.7 177.8 149.5 6.4 -6.9 525.2 80.7 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 56.277 + 231 2002 12 21 0 14 27 529 3.6935 165.4 1472.6 1076.0 -20.6 45.7 5.7 177.8 149.5 6.4 -6.9 525.2 80.7 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.079 -0.410 56.288 + 232 2002 12 21 0 14 31 222 3.6930 165.5 1473.2 1076.3 -20.6 46.0 5.8 177.8 149.5 6.4 -7.0 525.2 80.8 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 56.252 + 233 2002 12 21 0 14 34 915 3.6925 165.5 1473.9 1076.7 -20.6 46.4 5.9 177.8 149.5 6.4 -7.0 525.2 80.8 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 56.264 + 234 2002 12 21 0 14 38 607 3.6920 165.5 1474.6 1077.0 -20.5 46.7 6.0 177.8 149.5 6.4 -7.0 525.1 80.8 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.078 -0.410 56.229 + 235 2002 12 21 0 14 42 299 3.6916 165.6 1475.3 1077.3 -20.5 47.1 6.0 177.8 149.5 6.4 -7.0 525.1 80.9 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 56.240 + 236 2002 12 21 0 14 45 990 3.6911 165.6 1476.0 1077.6 -20.5 47.4 6.1 177.8 149.5 6.3 -7.0 525.1 80.9 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 56.204 + 237 2002 12 21 0 14 49 680 3.6905 165.6 1476.7 1077.9 -20.4 47.8 6.2 177.8 149.5 6.3 -7.0 525.1 81.0 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 56.216 + 238 2002 12 21 0 14 53 370 3.6900 165.7 1477.4 1078.2 -20.4 48.1 6.2 177.8 149.5 6.3 -7.1 525.1 81.0 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.077 -0.410 56.181 + 239 2002 12 21 0 14 57 60 3.6894 165.7 1478.1 1078.6 -20.3 48.8 6.3 177.8 149.5 6.3 -7.1 525.0 81.0 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.076 -0.410 56.193 + 240 2002 12 21 0 15 0 0 2.9398 165.7 1478.6 1078.8 -16.0 49.5 6.2 177.8 149.5 6.3 -7.1 525.0 81.1 163.5 163.5 163.5 163.5 0.0 0.0 0.0 0.0 96.5 109.9 3.076 -0.410 56.164 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.04.ElectrodynamicsGeoCoords.test b/srcTests/auto_test/ref_solns/log.UAM.in.04.ElectrodynamicsGeoCoords.test new file mode 100644 index 00000000..568ed272 --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.04.ElectrodynamicsGeoCoords.test @@ -0,0 +1,23 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: T Apex: T +# EUV Data: F +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 1 0 0 60.0000 157.5 1317.5 1011.9 0.0 0.0 0.0 177.9 149.5 6.6 -6.0 527.7 72.6 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 101.0 104.3 3.137 -0.410 58.503 + 3 2002 12 21 0 2 0 0 60.0000 157.5 1317.5 1011.9 0.0 0.0 0.0 177.9 149.5 6.4 -6.1 529.5 71.9 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 101.6 104.7 3.133 -0.410 58.414 + 4 2002 12 21 0 3 0 0 60.0000 157.4 1317.5 1011.9 0.0 0.0 0.0 177.9 149.5 6.2 -6.4 530.0 73.6 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 102.9 105.6 3.129 -0.410 58.326 + 5 2002 12 21 0 4 0 0 60.0000 157.3 1317.4 1011.9 0.0 0.0 0.0 177.9 149.5 6.4 -6.0 531.4 76.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 101.0 104.3 3.124 -0.410 58.240 + 6 2002 12 21 0 5 0 0 60.0000 157.3 1317.4 1011.9 0.0 0.0 0.0 177.9 149.5 5.5 -6.4 533.7 77.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 103.2 105.4 3.120 -0.410 58.155 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.05.ElectrodynamicsMagCoords.test b/srcTests/auto_test/ref_solns/log.UAM.in.05.ElectrodynamicsMagCoords.test new file mode 100644 index 00000000..43cc89a4 --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.05.ElectrodynamicsMagCoords.test @@ -0,0 +1,23 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: T Apex: F +# EUV Data: F +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 1 0 0 60.0000 157.5 1317.5 1011.9 0.0 0.0 0.0 177.9 149.5 6.6 -6.0 527.7 72.6 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 93.2 106.4 3.137 -0.410 58.503 + 3 2002 12 21 0 2 0 0 60.0000 157.5 1317.5 1011.9 0.0 0.0 0.0 177.9 149.5 6.4 -6.1 529.5 71.9 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 93.8 106.8 3.133 -0.410 58.414 + 4 2002 12 21 0 3 0 0 60.0000 157.4 1317.5 1011.9 0.0 0.0 0.0 177.9 149.5 6.2 -6.4 530.0 73.6 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 95.0 107.6 3.129 -0.410 58.326 + 5 2002 12 21 0 4 0 0 60.0000 157.3 1317.4 1011.9 0.0 0.0 0.0 177.9 149.5 6.4 -6.0 531.4 76.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 93.2 106.5 3.124 -0.410 58.240 + 6 2002 12 21 0 5 0 0 60.0000 157.3 1317.4 1011.9 0.0 0.0 0.0 177.9 149.5 5.5 -6.4 533.7 77.3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 95.1 107.2 3.120 -0.410 58.155 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.06.FreHepmay.test b/srcTests/auto_test/ref_solns/log.UAM.in.06.FreHepmay.test new file mode 100644 index 00000000..ace53cf5 --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.06.FreHepmay.test @@ -0,0 +1,92 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: F +# E-Field Model: hepmay Auroral Model: fre +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 4 105 4.1058 157.7 1316.9 1012.0 -3.9 4.8 0.0 177.9 149.5 6.1 -6.0 531.2 71.9 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.141 -0.410 58.104 + 3 2002 12 21 0 0 8 203 4.0977 157.9 1316.7 1012.1 -5.5 3.9 -0.3 177.9 149.5 6.2 -6.0 531.0 72.0 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.141 -0.410 58.070 + 4 2002 12 21 0 0 12 301 4.0979 157.9 1316.5 1012.3 -6.4 3.5 -0.6 177.9 149.5 6.2 -6.0 530.7 72.0 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.141 -0.410 58.059 + 5 2002 12 21 0 0 16 399 4.0986 157.9 1316.3 1012.4 -6.9 3.3 -0.8 177.9 149.5 6.3 -6.0 530.5 72.1 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.140 -0.410 58.071 + 6 2002 12 21 0 0 20 497 4.0972 157.9 1316.2 1012.5 -7.3 3.2 -1.0 177.9 149.5 6.3 -6.0 530.2 72.1 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.140 -0.410 58.037 + 7 2002 12 21 0 0 24 590 4.0938 157.9 1316.0 1012.7 -7.5 3.1 -1.2 177.9 149.5 6.3 -6.0 529.9 72.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.140 -0.410 58.034 + 8 2002 12 21 0 0 28 675 4.0848 157.9 1315.8 1012.8 -7.8 3.0 -1.4 177.9 149.5 6.4 -6.0 529.7 72.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.140 -0.410 57.989 + 9 2002 12 21 0 0 32 754 4.0792 157.9 1315.7 1013.0 -8.0 2.9 -1.5 177.9 149.5 6.4 -6.0 529.4 72.3 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.139 -0.410 57.976 + 10 2002 12 21 0 0 36 830 4.0760 157.9 1315.6 1013.1 -8.3 2.8 -1.7 177.9 149.5 6.4 -6.0 529.1 72.3 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.139 -0.410 57.920 + 11 2002 12 21 0 0 40 903 4.0724 157.9 1315.5 1013.3 -8.6 2.7 -1.9 177.9 149.5 6.5 -6.0 528.9 72.3 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.139 -0.410 57.902 + 12 2002 12 21 0 0 44 974 4.0710 157.9 1315.4 1013.4 -9.0 2.6 -2.0 177.9 149.5 6.5 -6.0 528.6 72.4 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.138 -0.410 57.842 + 13 2002 12 21 0 0 49 46 4.0717 157.9 1315.3 1013.6 -9.4 2.4 -2.2 177.9 149.5 6.5 -6.0 528.4 72.4 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.138 -0.410 57.822 + 14 2002 12 21 0 0 53 119 4.0731 157.9 1315.2 1013.7 -9.8 2.3 -2.4 177.9 149.5 6.6 -6.0 528.1 72.5 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.138 -0.410 57.756 + 15 2002 12 21 0 0 57 194 4.0757 157.9 1315.2 1013.9 -10.3 2.5 -2.5 177.9 149.5 6.6 -6.0 527.8 72.5 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.137 -0.410 57.737 + 16 2002 12 21 0 1 1 273 4.0791 157.9 1315.2 1014.1 -11.1 2.6 -2.7 177.9 149.5 6.6 -6.0 527.7 72.6 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.137 -0.410 57.670 + 17 2002 12 21 0 1 5 357 4.0833 157.9 1315.7 1014.2 -11.9 2.9 -2.8 177.9 149.5 6.6 -6.0 527.8 72.5 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.137 -0.410 57.651 + 18 2002 12 21 0 1 9 445 4.0882 158.0 1316.2 1014.4 -12.8 3.0 -3.0 177.9 149.5 6.6 -6.0 528.0 72.5 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.137 -0.410 57.582 + 19 2002 12 21 0 1 13 534 4.0894 158.0 1316.6 1014.5 -13.7 3.3 -3.1 177.9 149.5 6.6 -6.0 528.1 72.4 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.136 -0.410 57.564 + 20 2002 12 21 0 1 17 624 4.0895 158.0 1317.1 1014.7 -14.5 3.7 -3.3 177.9 149.5 6.6 -6.1 528.2 72.4 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.136 -0.410 57.496 + 21 2002 12 21 0 1 21 713 4.0895 158.0 1317.6 1014.8 -15.5 4.1 -3.4 177.9 149.5 6.6 -6.1 528.3 72.3 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.136 -0.410 57.479 + 22 2002 12 21 0 1 25 803 4.0895 158.0 1318.0 1015.0 -16.0 4.4 -3.6 177.9 149.5 6.5 -6.1 528.5 72.3 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.135 -0.410 57.411 + 23 2002 12 21 0 1 29 892 4.0893 158.0 1318.4 1015.1 -17.2 4.9 -3.7 177.9 149.5 6.5 -6.1 528.6 72.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.135 -0.410 57.394 + 24 2002 12 21 0 1 33 981 4.0890 158.0 1318.8 1015.2 -17.5 5.1 -3.8 177.9 149.5 6.5 -6.1 528.7 72.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.135 -0.410 57.326 + 25 2002 12 21 0 1 38 70 4.0886 158.0 1319.2 1015.4 -18.9 5.4 -4.0 177.9 149.5 6.5 -6.1 528.8 72.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.134 -0.410 57.310 + 26 2002 12 21 0 1 42 158 4.0882 158.0 1319.6 1015.5 -19.6 5.8 -4.1 177.9 149.5 6.5 -6.1 529.0 72.1 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.134 -0.410 57.243 + 27 2002 12 21 0 1 46 246 4.0878 158.0 1320.0 1015.7 -20.4 5.9 -4.2 177.9 149.5 6.5 -6.1 529.1 72.1 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.134 -0.410 57.228 + 28 2002 12 21 0 1 50 333 4.0876 158.0 1320.4 1015.8 -21.7 6.4 -4.3 177.9 149.5 6.5 -6.1 529.2 72.0 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.134 -0.410 57.161 + 29 2002 12 21 0 1 54 421 4.0875 157.9 1320.8 1015.9 -21.9 6.7 -4.4 177.9 149.5 6.5 -6.1 529.3 72.0 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.133 -0.410 57.147 + 30 2002 12 21 0 1 58 508 4.0875 157.9 1321.1 1016.1 -23.3 6.9 -4.5 177.9 149.5 6.4 -6.1 529.5 71.9 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.133 -0.410 57.081 + 31 2002 12 21 0 2 2 596 4.0877 157.9 1321.5 1016.2 -24.4 7.4 -4.6 177.9 149.5 6.4 -6.1 529.5 72.0 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.3 3.133 -0.410 57.068 + 32 2002 12 21 0 2 6 684 4.0879 157.9 1321.8 1016.3 -24.3 7.5 -4.7 177.9 149.5 6.4 -6.2 529.5 72.1 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.132 -0.410 57.000 + 33 2002 12 21 0 2 10 772 4.0881 157.9 1322.2 1016.4 -26.1 7.8 -4.8 177.9 149.5 6.4 -6.2 529.6 72.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.132 -0.410 56.988 + 34 2002 12 21 0 2 14 860 4.0882 157.9 1322.5 1016.6 -27.2 8.3 -4.9 177.9 149.5 6.4 -6.2 529.6 72.3 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.132 -0.410 56.923 + 35 2002 12 21 0 2 18 948 4.0884 157.9 1322.8 1016.7 -27.1 8.5 -4.9 177.9 149.5 6.4 -6.2 529.6 72.4 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.131 -0.410 56.912 + 36 2002 12 21 0 2 23 37 4.0885 157.9 1323.1 1016.8 -28.7 8.6 -5.0 177.9 149.5 6.4 -6.2 529.7 72.5 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.131 -0.410 56.846 + 37 2002 12 21 0 2 27 125 4.0886 157.9 1323.5 1016.9 -30.0 9.2 -5.1 177.9 149.5 6.3 -6.2 529.7 72.7 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.131 -0.410 56.835 + 38 2002 12 21 0 2 31 214 4.0886 157.9 1323.8 1017.0 -30.0 9.4 -5.1 177.9 149.5 6.3 -6.2 529.7 72.8 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.131 -0.410 56.770 + 39 2002 12 21 0 2 35 303 4.0887 157.9 1324.1 1017.2 -30.9 9.4 -5.2 177.9 149.5 6.3 -6.3 529.8 72.9 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.130 -0.410 56.760 + 40 2002 12 21 0 2 39 391 4.0887 157.9 1324.4 1017.3 -32.5 10.0 -5.2 177.9 149.5 6.3 -6.3 529.8 73.0 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.130 -0.410 56.694 + 41 2002 12 21 0 2 43 480 4.0888 157.9 1324.6 1017.4 -32.9 10.3 -5.2 177.9 149.5 6.3 -6.3 529.8 73.1 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.130 -0.410 56.685 + 42 2002 12 21 0 2 47 569 4.0888 157.8 1324.9 1017.5 -32.9 10.2 -5.3 177.9 149.5 6.3 -6.3 529.9 73.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.129 -0.410 56.621 + 43 2002 12 21 0 2 51 658 4.0889 157.8 1325.2 1017.6 -35.0 10.8 -5.3 177.9 149.5 6.3 -6.3 529.9 73.3 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.129 -0.410 56.613 + 44 2002 12 21 0 2 55 747 4.0890 157.8 1325.5 1017.7 -36.0 11.2 -5.3 177.9 149.5 6.2 -6.3 529.9 73.5 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.129 -0.410 56.548 + 45 2002 12 21 0 2 59 836 4.0890 157.8 1325.7 1017.8 -35.6 11.9 -5.3 177.9 149.5 6.2 -6.4 530.0 73.6 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.129 -0.410 56.540 + 46 2002 12 21 0 3 3 925 4.0891 157.8 1326.0 1017.9 -36.8 13.0 -5.3 177.9 149.5 6.2 -6.3 530.0 73.8 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 14.0 13.2 3.128 -0.410 56.476 + 47 2002 12 21 0 3 8 14 4.0892 157.8 1326.2 1018.0 -38.4 13.9 -5.3 177.9 149.5 6.3 -6.3 530.1 74.0 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.128 -0.410 56.470 + 48 2002 12 21 0 3 12 103 4.0892 157.8 1326.5 1018.1 -38.8 15.2 -5.2 177.9 149.5 6.3 -6.3 530.2 74.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.128 -0.410 56.404 + 49 2002 12 21 0 3 16 193 4.0893 157.8 1326.7 1018.2 -38.0 16.3 -5.2 177.9 149.5 6.3 -6.3 530.3 74.4 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.127 -0.410 56.398 + 50 2002 12 21 0 3 20 282 4.0893 157.8 1327.0 1018.3 -40.1 17.1 -5.2 177.9 149.5 6.3 -6.3 530.4 74.6 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.127 -0.410 56.337 + 51 2002 12 21 0 3 24 371 4.0894 157.8 1327.2 1018.4 -41.3 18.6 -5.1 177.9 149.5 6.3 -6.2 530.5 74.9 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.127 -0.410 56.331 + 52 2002 12 21 0 3 28 461 4.0894 157.8 1327.4 1018.5 -41.1 19.9 -5.0 177.9 149.5 6.3 -6.2 530.6 75.1 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.126 -0.410 56.267 + 53 2002 12 21 0 3 32 550 4.0894 157.8 1327.6 1018.5 -40.8 20.7 -4.9 177.9 149.5 6.3 -6.2 530.7 75.3 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.126 -0.410 56.262 + 54 2002 12 21 0 3 36 640 4.0894 157.8 1327.8 1018.6 -42.6 21.8 -4.8 177.9 149.5 6.3 -6.2 530.8 75.5 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.126 -0.410 56.200 + 55 2002 12 21 0 3 40 729 4.0894 157.8 1328.0 1018.7 -43.4 23.5 -4.7 177.9 149.5 6.3 -6.1 530.9 75.7 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.126 -0.410 56.196 + 56 2002 12 21 0 3 44 819 4.0894 157.8 1328.2 1018.8 -42.7 24.6 -4.6 177.9 149.5 6.3 -6.1 531.0 75.9 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.125 -0.410 56.131 + 57 2002 12 21 0 3 48 908 4.0893 157.8 1328.4 1018.9 -42.8 25.2 -4.4 177.9 149.5 6.4 -6.1 531.1 76.2 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.125 -0.410 56.127 + 58 2002 12 21 0 3 52 997 4.0893 157.8 1328.6 1019.0 -44.1 26.7 -4.2 177.9 149.5 6.4 -6.1 531.2 76.4 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.125 -0.410 56.066 + 59 2002 12 21 0 3 57 86 4.0892 157.8 1328.8 1019.1 -44.4 28.4 -4.0 177.9 149.5 6.4 -6.1 531.3 76.6 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.124 -0.410 56.063 + 60 2002 12 21 0 4 1 175 4.0891 157.8 1329.0 1019.1 -43.2 29.4 -3.8 177.9 149.5 6.4 -6.0 531.4 76.7 98.4 98.4 98.4 98.4 0.0 0.0 0.0 0.0 13.9 13.2 3.124 -0.410 56.000 + 61 2002 12 21 0 4 5 264 4.0890 157.8 1329.2 1019.2 -44.0 29.9 -3.6 177.9 149.5 6.3 -6.1 531.6 76.8 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.124 -0.410 55.997 + 62 2002 12 21 0 4 9 353 4.0889 157.8 1329.4 1019.3 -44.8 31.6 -3.3 177.9 149.5 6.3 -6.1 531.7 76.8 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.123 -0.410 55.938 + 63 2002 12 21 0 4 13 442 4.0887 157.8 1329.5 1019.4 -44.5 33.4 -3.1 177.9 149.5 6.2 -6.1 531.9 76.9 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.123 -0.410 55.935 + 64 2002 12 21 0 4 17 531 4.0886 157.8 1329.7 1019.5 -43.1 34.5 -2.8 177.9 149.5 6.1 -6.2 532.1 76.9 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.123 -0.410 55.868 + 65 2002 12 21 0 4 21 619 4.0884 157.8 1329.9 1019.6 -44.2 34.9 -2.5 177.9 149.5 6.1 -6.2 532.2 76.9 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.123 -0.410 55.866 + 66 2002 12 21 0 4 25 707 4.0882 157.8 1330.1 1019.7 -44.5 36.1 -2.2 177.9 149.5 6.0 -6.2 532.4 77.0 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.122 -0.410 55.808 + 67 2002 12 21 0 4 29 795 4.0880 157.8 1330.3 1019.8 -43.6 38.2 -1.8 177.9 149.5 6.0 -6.2 532.5 77.0 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.122 -0.410 55.807 + 68 2002 12 21 0 4 33 883 4.0878 157.8 1330.5 1019.9 -42.9 39.5 -1.5 177.9 149.5 5.9 -6.3 532.7 77.1 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.122 -0.410 55.743 + 69 2002 12 21 0 4 37 971 4.0876 157.8 1330.7 1020.0 -43.5 39.9 -1.2 177.9 149.5 5.8 -6.3 532.8 77.1 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.121 -0.410 55.741 + 70 2002 12 21 0 4 42 58 4.0873 157.8 1330.9 1020.1 -43.3 40.8 -0.8 177.9 149.5 5.8 -6.3 533.0 77.1 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.121 -0.410 55.684 + 71 2002 12 21 0 4 46 145 4.0871 157.8 1331.1 1020.2 -41.9 42.8 -0.5 177.9 149.5 5.7 -6.3 533.2 77.2 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.121 -0.410 55.684 + 72 2002 12 21 0 4 50 232 4.0869 157.8 1331.3 1020.3 -42.0 44.2 -0.1 177.9 149.5 5.7 -6.4 533.3 77.2 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.120 -0.410 55.617 + 73 2002 12 21 0 4 54 318 4.0866 157.8 1331.5 1020.4 -42.1 44.8 0.2 177.9 149.5 5.6 -6.4 533.5 77.2 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.120 -0.410 55.617 + 74 2002 12 21 0 4 58 405 4.0864 157.8 1331.8 1020.5 -41.5 45.8 0.6 177.9 149.5 5.5 -6.4 533.6 77.3 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.120 -0.410 55.560 + 75 2002 12 21 0 5 0 0 1.5947 157.8 1331.8 1020.5 -41.8 46.6 0.5 177.9 149.5 5.5 -6.4 533.7 77.3 157.2 157.2 157.2 157.2 0.0 0.0 0.0 0.0 13.9 13.2 3.120 -0.410 55.561 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.07.pemWeimer.test b/srcTests/auto_test/ref_solns/log.UAM.in.07.pemWeimer.test new file mode 100644 index 00000000..97e962ee --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.07.pemWeimer.test @@ -0,0 +1,94 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: F +# E-Field Model: weimer05 Auroral Model: pem +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 4 105 4.1058 157.7 1316.9 1012.0 -3.9 4.8 0.0 177.9 149.5 6.1 -6.0 531.2 71.9 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.103 + 3 2002 12 21 0 0 8 39 3.9333 157.9 1316.8 1012.1 -5.5 3.7 -0.3 177.9 149.5 6.2 -6.0 531.0 72.0 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.070 + 4 2002 12 21 0 0 11 982 3.9430 157.9 1316.6 1012.3 -6.3 3.3 -0.6 177.9 149.5 6.2 -6.0 530.7 72.0 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.060 + 5 2002 12 21 0 0 15 932 3.9505 157.9 1316.4 1012.4 -6.8 3.2 -0.8 177.9 149.5 6.2 -6.0 530.5 72.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 58.070 + 6 2002 12 21 0 0 19 887 3.9550 157.9 1316.2 1012.6 -7.2 3.1 -1.0 177.9 149.5 6.3 -6.0 530.2 72.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 58.042 + 7 2002 12 21 0 0 23 849 3.9621 157.9 1316.0 1012.8 -7.5 3.0 -1.1 177.9 149.5 6.3 -6.0 530.0 72.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 58.037 + 8 2002 12 21 0 0 27 821 3.9715 157.9 1315.9 1012.9 -7.7 2.9 -1.3 177.9 149.5 6.4 -6.0 529.7 72.2 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.996 + 9 2002 12 21 0 0 31 804 3.9830 157.9 1315.7 1013.1 -7.9 2.8 -1.5 177.9 149.5 6.4 -6.0 529.5 72.2 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.982 + 10 2002 12 21 0 0 35 798 3.9940 157.9 1315.6 1013.3 -8.2 2.7 -1.6 177.9 149.5 6.4 -6.0 529.2 72.3 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.928 + 11 2002 12 21 0 0 39 800 4.0022 157.9 1315.5 1013.4 -8.4 2.6 -1.8 177.9 149.5 6.5 -6.0 529.0 72.3 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.909 + 12 2002 12 21 0 0 43 807 4.0069 157.9 1315.4 1013.6 -8.6 2.5 -2.0 177.9 149.5 6.5 -6.0 528.7 72.4 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.853 + 13 2002 12 21 0 0 47 815 4.0085 157.9 1315.3 1013.8 -8.8 2.4 -2.1 177.9 149.5 6.5 -6.0 528.4 72.4 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.832 + 14 2002 12 21 0 0 51 822 4.0069 157.9 1315.3 1014.0 -9.4 2.3 -2.3 177.9 149.5 6.6 -6.0 528.2 72.5 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.768 + 15 2002 12 21 0 0 55 826 4.0036 157.9 1315.2 1014.1 -10.1 2.4 -2.4 177.9 149.5 6.6 -6.0 527.9 72.5 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.747 + 16 2002 12 21 0 0 59 824 3.9978 157.9 1315.4 1014.3 -10.7 2.6 -2.6 177.9 149.5 6.6 -6.0 527.7 72.6 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.686 + 17 2002 12 21 0 1 3 815 3.9916 157.9 1315.9 1014.5 -11.7 2.8 -2.7 177.9 149.5 6.6 -6.0 527.8 72.5 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.665 + 18 2002 12 21 0 1 7 800 3.9846 158.0 1316.4 1014.7 -12.3 2.9 -2.9 177.9 149.5 6.6 -6.0 527.9 72.5 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.137 -0.410 57.598 + 19 2002 12 21 0 1 11 773 3.9734 158.0 1316.9 1014.8 -13.4 3.2 -3.0 177.9 149.5 6.6 -6.0 528.0 72.4 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.136 -0.410 57.578 + 20 2002 12 21 0 1 15 741 3.9674 158.0 1317.4 1015.0 -13.8 3.5 -3.1 177.9 149.5 6.6 -6.0 528.1 72.4 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.136 -0.410 57.516 + 21 2002 12 21 0 1 19 702 3.9612 158.0 1317.9 1015.2 -15.0 4.0 -3.3 177.9 149.5 6.6 -6.1 528.3 72.4 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.136 -0.410 57.497 + 22 2002 12 21 0 1 23 657 3.9552 158.0 1318.3 1015.3 -15.6 4.2 -3.4 177.9 149.5 6.6 -6.1 528.4 72.3 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.136 -0.410 57.431 + 23 2002 12 21 0 1 27 607 3.9495 158.0 1318.7 1015.5 -16.5 4.6 -3.5 177.9 149.5 6.5 -6.1 528.5 72.3 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.135 -0.410 57.412 + 24 2002 12 21 0 1 31 551 3.9441 158.0 1319.2 1015.7 -17.3 5.0 -3.6 177.9 149.5 6.5 -6.1 528.6 72.2 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.135 -0.410 57.351 + 25 2002 12 21 0 1 35 490 3.9392 158.0 1319.6 1015.8 -17.8 5.1 -3.7 177.9 149.5 6.5 -6.1 528.7 72.2 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.135 -0.410 57.333 + 26 2002 12 21 0 1 39 425 3.9347 158.0 1320.0 1016.0 -19.0 5.6 -3.9 177.9 149.5 6.5 -6.1 528.9 72.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.134 -0.410 57.269 + 27 2002 12 21 0 1 43 355 3.9306 158.0 1320.4 1016.2 -19.4 5.9 -4.0 177.9 149.5 6.5 -6.1 529.0 72.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.134 -0.410 57.252 + 28 2002 12 21 0 1 47 282 3.9270 158.0 1320.8 1016.3 -20.4 6.1 -4.1 177.9 149.5 6.5 -6.1 529.1 72.0 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.134 -0.410 57.192 + 29 2002 12 21 0 1 51 206 3.9239 158.0 1321.2 1016.5 -21.4 6.5 -4.2 177.9 149.5 6.5 -6.1 529.2 72.0 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.134 -0.410 57.176 + 30 2002 12 21 0 1 55 127 3.9213 157.9 1321.6 1016.6 -21.5 6.7 -4.3 177.9 149.5 6.5 -6.1 529.3 72.0 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.133 -0.410 57.112 + 31 2002 12 21 0 1 59 46 3.9191 157.9 1322.0 1016.8 -23.1 7.0 -4.3 177.9 149.5 6.4 -6.1 529.5 71.9 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.133 -0.410 57.096 + 32 2002 12 21 0 2 2 964 3.9173 157.9 1322.3 1016.9 -24.0 7.4 -4.4 177.9 149.5 6.4 -6.1 529.5 72.0 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.2 106.5 3.133 -0.410 57.037 + 33 2002 12 21 0 2 6 880 3.9159 157.9 1322.7 1017.1 -23.9 7.6 -4.5 177.9 149.5 6.4 -6.2 529.5 72.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 57.023 + 34 2002 12 21 0 2 10 793 3.9129 157.9 1323.1 1017.2 -25.7 8.1 -4.6 177.9 149.5 6.4 -6.2 529.6 72.2 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 56.960 + 35 2002 12 21 0 2 14 705 3.9122 157.9 1323.4 1017.4 -26.7 8.7 -4.6 177.9 149.5 6.4 -6.2 529.6 72.3 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 56.946 + 36 2002 12 21 0 2 18 617 3.9119 157.9 1323.8 1017.5 -26.6 9.3 -4.7 177.9 149.5 6.4 -6.2 529.6 72.4 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.132 -0.410 56.888 + 37 2002 12 21 0 2 22 528 3.9118 157.9 1324.1 1017.7 -28.0 9.9 -4.7 177.9 149.5 6.4 -6.2 529.7 72.5 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 56.874 + 38 2002 12 21 0 2 26 441 3.9122 157.9 1324.8 1017.8 -29.3 10.5 -4.8 177.9 149.5 6.3 -6.2 529.7 72.6 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 56.812 + 39 2002 12 21 0 2 30 354 3.9129 157.9 1325.5 1017.9 -29.6 11.1 -4.8 177.9 149.5 6.3 -6.2 529.7 72.8 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.131 -0.410 56.799 + 40 2002 12 21 0 2 34 268 3.9139 157.9 1326.2 1018.1 -29.8 11.7 -4.9 177.9 149.5 6.3 -6.3 529.7 72.9 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 56.741 + 41 2002 12 21 0 2 38 183 3.9152 157.9 1326.9 1018.2 -31.5 12.4 -4.9 177.9 149.5 6.3 -6.3 529.8 73.0 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 56.729 + 42 2002 12 21 0 2 42 99 3.9166 157.9 1327.7 1018.3 -32.3 13.0 -4.9 177.9 149.5 6.3 -6.3 529.8 73.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 56.667 + 43 2002 12 21 0 2 46 17 3.9181 157.9 1328.3 1018.5 -31.7 13.6 -4.9 177.9 149.5 6.3 -6.3 529.8 73.2 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.130 -0.410 56.656 + 44 2002 12 21 0 2 49 937 3.9198 157.8 1329.0 1018.6 -33.1 14.2 -4.9 177.9 149.5 6.3 -6.3 529.9 73.3 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 56.598 + 45 2002 12 21 0 2 53 859 3.9215 157.8 1329.7 1018.7 -34.6 14.8 -4.9 177.9 149.5 6.3 -6.3 529.9 73.4 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 56.588 + 46 2002 12 21 0 2 57 782 3.9234 157.8 1330.4 1018.8 -34.8 15.4 -4.9 177.9 149.5 6.2 -6.4 529.9 73.5 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.129 -0.410 56.526 + 47 2002 12 21 0 3 1 707 3.9253 157.8 1331.0 1019.0 -34.2 16.0 -4.9 177.9 149.5 6.2 -6.4 530.0 73.7 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 93.8 106.9 3.128 -0.410 56.516 + 48 2002 12 21 0 3 5 635 3.9273 157.8 1331.7 1019.1 -36.2 16.6 -4.9 177.9 149.5 6.2 -6.3 530.1 73.9 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 56.458 + 49 2002 12 21 0 3 9 561 3.9259 157.8 1332.4 1019.2 -37.4 17.1 -4.8 177.9 149.5 6.3 -6.3 530.2 74.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 56.449 + 50 2002 12 21 0 3 13 489 3.9280 157.8 1333.0 1019.3 -37.3 17.7 -4.8 177.9 149.5 6.3 -6.3 530.3 74.3 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.128 -0.410 56.388 + 51 2002 12 21 0 3 17 419 3.9301 157.8 1333.6 1019.4 -37.1 18.2 -4.8 177.9 149.5 6.3 -6.3 530.4 74.5 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 56.380 + 52 2002 12 21 0 3 21 351 3.9321 157.8 1334.3 1019.5 -39.0 18.7 -4.7 177.9 149.5 6.3 -6.2 530.5 74.7 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 56.323 + 53 2002 12 21 0 3 25 285 3.9340 157.8 1334.9 1019.7 -39.9 20.0 -4.6 177.9 149.5 6.3 -6.2 530.6 74.9 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.127 -0.410 56.315 + 54 2002 12 21 0 3 29 221 3.9359 157.8 1335.5 1019.8 -39.4 21.3 -4.5 177.9 149.5 6.3 -6.2 530.6 75.1 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 56.254 + 55 2002 12 21 0 3 33 158 3.9378 157.8 1336.1 1019.9 -39.3 22.1 -4.4 177.9 149.5 6.3 -6.2 530.7 75.3 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 56.247 + 56 2002 12 21 0 3 37 98 3.9395 157.8 1336.7 1020.0 -40.9 23.4 -4.3 177.9 149.5 6.3 -6.2 530.8 75.5 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 56.190 + 57 2002 12 21 0 3 41 39 3.9412 157.8 1337.3 1020.1 -41.6 25.1 -4.2 177.9 149.5 6.3 -6.1 530.9 75.7 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.126 -0.410 56.184 + 58 2002 12 21 0 3 44 982 3.9427 157.8 1337.8 1020.2 -40.9 26.3 -4.0 177.9 149.5 6.3 -6.1 531.0 75.9 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 56.123 + 59 2002 12 21 0 3 48 926 3.9441 157.8 1338.4 1020.3 -40.6 26.9 -3.9 177.9 149.5 6.4 -6.1 531.1 76.2 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 56.117 + 60 2002 12 21 0 3 52 871 3.9453 157.8 1339.0 1020.4 -41.9 28.5 -3.7 177.9 149.5 6.4 -6.1 531.2 76.4 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.125 -0.410 56.061 + 61 2002 12 21 0 3 56 818 3.9464 157.8 1339.5 1020.5 -42.4 30.3 -3.5 177.9 149.5 6.4 -6.1 531.3 76.6 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.124 -0.410 56.055 + 62 2002 12 21 0 4 0 765 3.9473 157.8 1340.1 1020.6 -41.4 31.4 -3.3 177.9 149.5 6.4 -6.0 531.4 76.7 31.6 31.6 31.6 31.6 0.0 0.0 0.0 0.0 94.9 107.6 3.124 -0.410 55.995 + 63 2002 12 21 0 4 4 713 3.9482 157.8 1340.6 1020.7 -41.1 31.9 -3.0 177.9 149.5 6.3 -6.1 531.6 76.8 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.990 + 64 2002 12 21 0 4 8 667 3.9537 157.8 1341.2 1020.8 -42.1 33.5 -2.8 177.9 149.5 6.3 -6.1 531.7 76.8 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.934 + 65 2002 12 21 0 4 12 621 3.9543 157.8 1341.7 1021.0 -42.2 35.5 -2.5 177.9 149.5 6.2 -6.1 531.9 76.9 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.930 + 66 2002 12 21 0 4 16 576 3.9547 157.8 1342.3 1021.1 -41.0 36.8 -2.2 177.9 149.5 6.1 -6.2 532.0 76.9 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.868 + 67 2002 12 21 0 4 20 531 3.9550 157.8 1342.8 1021.2 -40.8 37.2 -1.9 177.9 149.5 6.1 -6.2 532.2 76.9 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.864 + 68 2002 12 21 0 4 24 486 3.9550 157.8 1343.4 1021.3 -41.4 38.3 -1.6 177.9 149.5 6.0 -6.2 532.3 77.0 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.809 + 69 2002 12 21 0 4 28 441 3.9550 157.8 1343.9 1021.4 -41.0 40.6 -1.3 177.9 149.5 6.0 -6.2 532.5 77.0 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.806 + 70 2002 12 21 0 4 32 396 3.9547 157.8 1344.5 1021.5 -39.5 42.1 -1.0 177.9 149.5 5.9 -6.3 532.6 77.0 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.745 + 71 2002 12 21 0 4 36 350 3.9544 157.8 1345.0 1021.6 -39.7 42.7 -0.6 177.9 149.5 5.9 -6.3 532.8 77.1 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.741 + 72 2002 12 21 0 4 40 304 3.9540 157.8 1345.6 1021.7 -39.9 42.8 -0.3 177.9 149.5 5.8 -6.3 532.9 77.1 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.688 + 73 2002 12 21 0 4 44 258 3.9536 157.8 1346.1 1021.9 -39.1 45.3 0.1 177.9 149.5 5.7 -6.3 533.1 77.2 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.685 + 74 2002 12 21 0 4 48 211 3.9530 157.8 1346.7 1022.0 -37.5 47.1 0.4 177.9 149.5 5.7 -6.4 533.2 77.2 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.623 + 75 2002 12 21 0 4 52 163 3.9524 157.8 1347.2 1022.1 -37.8 48.0 0.8 177.9 149.5 5.6 -6.4 533.4 77.2 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.621 + 76 2002 12 21 0 4 56 115 3.9518 157.8 1347.8 1022.2 -37.5 48.1 1.1 177.9 149.5 5.6 -6.4 533.5 77.3 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.568 + 77 2002 12 21 0 5 0 0 3.8846 157.8 1348.3 1022.4 -37.9 49.7 1.4 177.9 149.5 5.5 -6.4 533.7 77.3 31.5 31.5 31.5 31.5 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.566 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.08.IeZeroZero.test b/srcTests/auto_test/ref_solns/log.UAM.in.08.IeZeroZero.test new file mode 100644 index 00000000..c33d79bb --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.08.IeZeroZero.test @@ -0,0 +1,92 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: F +# E-Field Model: zero Auroral Model: zero +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 4 105 4.1058 157.7 1316.9 1012.0 -3.9 4.8 0.0 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.141 -0.410 58.103 + 3 2002 12 21 0 0 8 203 4.0977 157.9 1316.7 1012.1 -5.5 3.9 -0.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.141 -0.410 58.067 + 4 2002 12 21 0 0 12 301 4.0979 157.9 1316.5 1012.3 -6.4 3.5 -0.6 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.141 -0.410 58.056 + 5 2002 12 21 0 0 16 399 4.0986 157.9 1316.3 1012.4 -6.9 3.3 -0.8 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.140 -0.410 58.066 + 6 2002 12 21 0 0 20 497 4.0972 157.9 1316.2 1012.5 -7.3 3.2 -1.0 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.140 -0.410 58.032 + 7 2002 12 21 0 0 24 590 4.0939 157.9 1316.0 1012.7 -7.5 3.1 -1.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.140 -0.410 58.028 + 8 2002 12 21 0 0 28 675 4.0848 157.9 1315.8 1012.8 -7.8 3.0 -1.4 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.140 -0.410 57.983 + 9 2002 12 21 0 0 32 754 4.0792 157.9 1315.7 1013.0 -8.0 2.9 -1.5 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.139 -0.410 57.969 + 10 2002 12 21 0 0 36 831 4.0761 157.9 1315.6 1013.1 -8.3 2.8 -1.7 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.139 -0.410 57.912 + 11 2002 12 21 0 0 40 905 4.0748 157.9 1315.5 1013.3 -8.6 2.7 -1.9 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.139 -0.410 57.894 + 12 2002 12 21 0 0 44 981 4.0756 157.9 1315.4 1013.4 -9.0 2.6 -2.0 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.138 -0.410 57.834 + 13 2002 12 21 0 0 49 58 4.0770 157.9 1315.3 1013.6 -9.4 2.4 -2.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.138 -0.410 57.814 + 14 2002 12 21 0 0 53 137 4.0789 157.9 1315.2 1013.7 -9.8 2.3 -2.4 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.138 -0.410 57.748 + 15 2002 12 21 0 0 57 218 4.0815 157.9 1315.2 1013.9 -10.3 2.5 -2.5 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.137 -0.410 57.727 + 16 2002 12 21 0 1 1 303 4.0849 157.9 1315.2 1014.0 -11.1 2.6 -2.7 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.137 -0.410 57.662 + 17 2002 12 21 0 1 5 392 4.0891 157.9 1315.7 1014.2 -12.0 2.9 -2.8 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.137 -0.410 57.642 + 18 2002 12 21 0 1 9 482 4.0894 158.0 1316.2 1014.3 -12.8 3.0 -3.0 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.137 -0.410 57.571 + 19 2002 12 21 0 1 13 571 4.0894 158.0 1316.6 1014.5 -13.7 3.3 -3.1 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.136 -0.410 57.552 + 20 2002 12 21 0 1 17 661 4.0895 158.0 1317.1 1014.6 -14.5 3.7 -3.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.136 -0.410 57.486 + 21 2002 12 21 0 1 21 750 4.0895 158.0 1317.6 1014.8 -15.5 4.1 -3.4 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.136 -0.410 57.469 + 22 2002 12 21 0 1 25 840 4.0895 158.0 1318.0 1014.9 -16.1 4.4 -3.6 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.135 -0.410 57.398 + 23 2002 12 21 0 1 29 929 4.0893 158.0 1318.4 1015.1 -17.2 4.9 -3.7 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.135 -0.410 57.380 + 24 2002 12 21 0 1 34 18 4.0890 158.0 1318.8 1015.2 -17.6 5.1 -3.8 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.135 -0.410 57.316 + 25 2002 12 21 0 1 38 107 4.0885 158.0 1319.2 1015.4 -18.9 5.4 -4.0 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.134 -0.410 57.300 + 26 2002 12 21 0 1 42 195 4.0881 158.0 1319.6 1015.5 -19.6 5.8 -4.1 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.134 -0.410 57.229 + 27 2002 12 21 0 1 46 283 4.0878 158.0 1320.0 1015.6 -20.4 5.9 -4.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.134 -0.410 57.213 + 28 2002 12 21 0 1 50 370 4.0876 158.0 1320.4 1015.8 -21.7 6.4 -4.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.134 -0.410 57.150 + 29 2002 12 21 0 1 54 458 4.0875 157.9 1320.8 1015.9 -21.9 6.7 -4.4 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.133 -0.410 57.136 + 30 2002 12 21 0 1 58 545 4.0875 157.9 1321.1 1016.0 -23.3 6.9 -4.5 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.133 -0.410 57.066 + 31 2002 12 21 0 2 2 633 4.0877 157.9 1321.5 1016.2 -24.4 7.4 -4.6 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.133 -0.410 57.052 + 32 2002 12 21 0 2 6 721 4.0879 157.9 1321.8 1016.3 -24.3 7.5 -4.7 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.132 -0.410 56.989 + 33 2002 12 21 0 2 10 809 4.0881 157.9 1322.2 1016.4 -26.1 7.8 -4.8 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.132 -0.410 56.976 + 34 2002 12 21 0 2 14 897 4.0882 157.9 1322.5 1016.5 -27.2 8.3 -4.9 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.132 -0.410 56.907 + 35 2002 12 21 0 2 18 985 4.0884 157.9 1322.8 1016.7 -27.1 8.5 -5.0 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.131 -0.410 56.895 + 36 2002 12 21 0 2 23 74 4.0885 157.9 1323.1 1016.8 -28.7 8.6 -5.0 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.131 -0.410 56.833 + 37 2002 12 21 0 2 27 162 4.0886 157.9 1323.4 1016.9 -30.0 9.2 -5.1 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.131 -0.410 56.822 + 38 2002 12 21 0 2 31 251 4.0886 157.9 1323.8 1017.0 -30.0 9.4 -5.1 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.131 -0.410 56.753 + 39 2002 12 21 0 2 35 340 4.0887 157.9 1324.1 1017.1 -30.9 9.4 -5.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.130 -0.410 56.743 + 40 2002 12 21 0 2 39 428 4.0887 157.9 1324.3 1017.2 -32.5 10.0 -5.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.130 -0.410 56.681 + 41 2002 12 21 0 2 43 517 4.0888 157.9 1324.6 1017.3 -32.9 10.3 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.130 -0.410 56.671 + 42 2002 12 21 0 2 47 606 4.0888 157.8 1324.9 1017.4 -33.0 10.2 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.129 -0.410 56.603 + 43 2002 12 21 0 2 51 695 4.0889 157.8 1325.2 1017.5 -35.0 10.8 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.129 -0.410 56.594 + 44 2002 12 21 0 2 55 784 4.0890 157.8 1325.5 1017.6 -36.0 11.2 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.129 -0.410 56.533 + 45 2002 12 21 0 2 59 873 4.0890 157.8 1325.7 1017.7 -35.6 11.9 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.129 -0.410 56.525 + 46 2002 12 21 0 3 3 962 4.0891 157.8 1326.0 1017.8 -36.8 13.0 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.128 -0.410 56.458 + 47 2002 12 21 0 3 8 51 4.0892 157.8 1326.2 1017.9 -38.4 13.9 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.128 -0.410 56.450 + 48 2002 12 21 0 3 12 140 4.0892 157.8 1326.5 1018.0 -38.8 15.1 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.128 -0.410 56.390 + 49 2002 12 21 0 3 16 230 4.0893 157.8 1326.7 1018.1 -38.0 16.2 -5.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.127 -0.410 56.384 + 50 2002 12 21 0 3 20 319 4.0893 157.8 1326.9 1018.2 -40.1 17.1 -5.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.127 -0.410 56.317 + 51 2002 12 21 0 3 24 408 4.0894 157.8 1327.2 1018.3 -41.3 18.5 -5.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.127 -0.410 56.311 + 52 2002 12 21 0 3 28 498 4.0894 157.8 1327.4 1018.4 -41.1 19.8 -5.1 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.126 -0.410 56.251 + 53 2002 12 21 0 3 32 587 4.0894 157.8 1327.6 1018.5 -40.8 20.6 -5.0 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.126 -0.410 56.246 + 54 2002 12 21 0 3 36 677 4.0894 157.8 1327.8 1018.5 -42.6 21.7 -4.9 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.126 -0.410 56.180 + 55 2002 12 21 0 3 40 766 4.0894 157.8 1328.0 1018.6 -43.3 23.4 -4.8 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.126 -0.410 56.175 + 56 2002 12 21 0 3 44 855 4.0894 157.8 1328.2 1018.7 -42.6 24.5 -4.6 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.125 -0.410 56.116 + 57 2002 12 21 0 3 48 945 4.0893 157.8 1328.4 1018.8 -42.8 25.2 -4.5 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.125 -0.410 56.111 + 58 2002 12 21 0 3 53 34 4.0893 157.8 1328.6 1018.9 -44.1 26.7 -4.3 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.125 -0.410 56.046 + 59 2002 12 21 0 3 57 123 4.0892 157.8 1328.8 1019.0 -44.4 28.3 -4.1 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.124 -0.410 56.042 + 60 2002 12 21 0 4 1 212 4.0891 157.8 1329.0 1019.0 -43.2 29.4 -3.9 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.124 -0.410 55.983 + 61 2002 12 21 0 4 5 301 4.0890 157.8 1329.1 1019.1 -43.9 30.0 -3.7 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.124 -0.410 55.980 + 62 2002 12 21 0 4 9 390 4.0889 157.8 1329.3 1019.2 -44.7 31.6 -3.4 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.123 -0.410 55.916 + 63 2002 12 21 0 4 13 479 4.0887 157.8 1329.5 1019.3 -44.4 33.4 -3.1 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.123 -0.410 55.913 + 64 2002 12 21 0 4 17 568 4.0886 157.8 1329.7 1019.4 -43.0 34.5 -2.8 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.123 -0.410 55.851 + 65 2002 12 21 0 4 21 656 4.0884 157.8 1329.9 1019.5 -44.2 34.9 -2.5 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.123 -0.410 55.849 + 66 2002 12 21 0 4 25 744 4.0882 157.8 1330.0 1019.6 -44.4 36.1 -2.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.122 -0.410 55.787 + 67 2002 12 21 0 4 29 832 4.0880 157.8 1330.2 1019.7 -43.5 38.2 -1.9 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.122 -0.410 55.785 + 68 2002 12 21 0 4 33 920 4.0878 157.8 1330.4 1019.8 -42.9 39.5 -1.6 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.122 -0.410 55.724 + 69 2002 12 21 0 4 38 8 4.0876 157.8 1330.6 1019.8 -43.5 40.0 -1.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.121 -0.410 55.722 + 70 2002 12 21 0 4 42 95 4.0873 157.8 1330.8 1019.9 -43.3 40.7 -0.9 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.121 -0.410 55.661 + 71 2002 12 21 0 4 46 182 4.0871 157.8 1331.0 1020.0 -41.8 42.8 -0.5 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.121 -0.410 55.661 + 72 2002 12 21 0 4 50 269 4.0869 157.8 1331.2 1020.1 -42.0 44.2 -0.2 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.120 -0.410 55.598 + 73 2002 12 21 0 4 54 355 4.0866 157.8 1331.5 1020.3 -42.1 44.8 0.1 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.120 -0.410 55.597 + 74 2002 12 21 0 4 58 442 4.0864 157.8 1331.7 1020.4 -42.4 45.8 0.5 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.120 -0.410 55.538 + 75 2002 12 21 0 5 0 0 1.5577 157.8 1331.7 1020.4 -42.8 46.5 0.4 177.9 149.5***************************** 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.120 -0.410 55.539 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.09.ApexAndDynamo.test b/srcTests/auto_test/ref_solns/log.UAM.in.09.ApexAndDynamo.test new file mode 100644 index 00000000..d7f97d4b --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.09.ApexAndDynamo.test @@ -0,0 +1,98 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: T +# EUV Data: TFile: +UA/DataIn/FISM/fismflux_daily_2002.dat +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 4 614 4.6150 184.4 1082.5 1008.4 -3.2 0.6 -0.2 177.9 149.5 6.1 -6.0 531.2 71.9 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.141 -0.410 57.258 + 3 2002 12 21 0 0 8 484 3.8698 184.3 1083.4 1008.6 -4.1 1.1 -0.4 177.9 149.5 6.2 -6.0 531.0 72.0 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.141 -0.410 57.214 + 4 2002 12 21 0 0 12 252 3.7677 184.2 1084.5 1008.7 -4.5 1.5 -0.6 177.9 149.5 6.2 -6.0 530.7 72.0 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.141 -0.410 57.189 + 5 2002 12 21 0 0 16 104 3.8518 184.2 1085.8 1008.9 -4.9 1.8 -0.8 177.9 149.5 6.2 -6.0 530.5 72.1 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.140 -0.410 57.205 + 6 2002 12 21 0 0 19 952 3.8478 184.2 1087.1 1009.1 -5.2 2.2 -1.0 177.9 149.5 6.3 -6.0 530.2 72.1 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.140 -0.410 57.191 + 7 2002 12 21 0 0 23 797 3.8453 184.1 1088.4 1009.3 -5.4 2.4 -1.2 177.9 149.5 6.3 -6.0 530.0 72.1 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.140 -0.410 57.209 + 8 2002 12 21 0 0 27 633 3.8361 184.1 1089.6 1009.5 -5.7 2.6 -1.3 177.9 149.5 6.3 -6.0 529.7 72.2 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.140 -0.410 57.191 + 9 2002 12 21 0 0 31 463 3.8303 184.1 1090.9 1009.7 -5.9 2.8 -1.5 177.9 149.5 6.4 -6.0 529.5 72.2 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.139 -0.410 57.205 + 10 2002 12 21 0 0 35 287 3.8239 184.0 1092.1 1009.9 -6.2 3.0 -1.6 177.9 149.5 6.4 -6.0 529.2 72.3 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.139 -0.410 57.184 + 11 2002 12 21 0 0 39 108 3.8211 184.0 1093.4 1010.1 -6.5 3.2 -1.8 177.9 149.5 6.4 -6.0 529.0 72.3 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.139 -0.410 57.194 + 12 2002 12 21 0 0 42 926 3.8173 184.0 1094.6 1010.3 -6.7 3.5 -1.9 177.9 149.5 6.5 -6.0 528.8 72.4 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.138 -0.410 57.171 + 13 2002 12 21 0 0 46 742 3.8164 183.9 1095.8 1010.4 -7.0 3.9 -2.0 177.9 149.5 6.5 -6.0 528.5 72.4 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.138 -0.410 57.178 + 14 2002 12 21 0 0 50 556 3.8140 183.9 1097.1 1010.6 -7.3 4.4 -2.2 177.9 149.5 6.5 -6.0 528.3 72.5 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.138 -0.410 57.153 + 15 2002 12 21 0 0 54 370 3.8143 183.9 1098.3 1010.8 -7.6 4.9 -2.3 177.9 149.5 6.6 -6.0 528.0 72.5 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.138 -0.410 57.159 + 16 2002 12 21 0 0 58 183 3.8130 183.8 1099.5 1011.0 -7.9 5.5 -2.4 177.9 149.5 6.6 -6.0 527.8 72.6 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.137 -0.410 57.133 + 17 2002 12 21 0 1 1 998 3.8147 183.8 1100.6 1011.2 -8.2 6.0 -2.5 177.9 149.5 6.6 -6.0 527.7 72.6 146.6 157.6 146.6 157.6 0.0 0.0 0.0 0.0 100.6 103.6 3.137 -0.410 57.137 + 18 2002 12 21 0 1 5 813 3.8151 183.8 1101.8 1011.4 -8.5 6.7 -2.6 177.9 149.5 6.6 -6.0 527.8 72.5 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.137 -0.410 57.110 + 19 2002 12 21 0 1 9 634 3.8205 183.8 1103.0 1011.5 -8.9 7.3 -2.7 177.9 149.5 6.6 -6.0 528.0 72.5 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.137 -0.410 57.113 + 20 2002 12 21 0 1 13 455 3.8217 183.8 1104.2 1011.7 -9.2 7.9 -2.8 177.9 149.5 6.6 -6.0 528.1 72.4 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.136 -0.410 57.087 + 21 2002 12 21 0 1 17 281 3.8257 183.8 1105.4 1011.9 -9.5 8.6 -2.9 177.9 149.5 6.6 -6.1 528.2 72.4 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.136 -0.410 57.089 + 22 2002 12 21 0 1 21 109 3.8280 183.7 1106.5 1012.0 -9.8 9.2 -3.0 177.9 149.5 6.6 -6.1 528.3 72.3 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.136 -0.410 57.061 + 23 2002 12 21 0 1 24 942 3.8328 183.7 1107.7 1012.2 -10.1 9.8 -3.1 177.9 149.5 6.6 -6.1 528.4 72.3 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.135 -0.410 57.062 + 24 2002 12 21 0 1 28 777 3.8356 183.7 1108.8 1012.4 -10.4 10.5 -3.2 177.9 149.5 6.5 -6.1 528.5 72.3 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.135 -0.410 57.034 + 25 2002 12 21 0 1 32 618 3.8406 183.7 1109.9 1012.5 -10.7 11.1 -3.3 177.9 149.5 6.5 -6.1 528.7 72.2 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.135 -0.410 57.035 + 26 2002 12 21 0 1 36 461 3.8434 183.7 1111.0 1012.7 -10.9 11.7 -3.4 177.9 149.5 6.5 -6.1 528.8 72.2 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.135 -0.410 57.006 + 27 2002 12 21 0 1 40 310 3.8482 183.7 1112.1 1012.8 -11.1 12.5 -3.5 177.9 149.5 6.5 -6.1 528.9 72.1 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.134 -0.410 57.007 + 28 2002 12 21 0 1 44 160 3.8505 183.7 1113.2 1013.0 -11.5 13.1 -3.6 177.9 149.5 6.5 -6.1 529.0 72.1 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.134 -0.410 56.978 + 29 2002 12 21 0 1 48 15 3.8546 183.7 1114.3 1013.1 -11.8 14.1 -3.7 177.9 149.5 6.5 -6.1 529.1 72.0 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.134 -0.410 56.978 + 30 2002 12 21 0 1 51 871 3.8561 183.8 1115.4 1013.3 -12.2 14.9 -3.8 177.9 149.5 6.5 -6.1 529.2 72.0 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.133 -0.410 56.948 + 31 2002 12 21 0 1 55 730 3.8592 183.8 1116.4 1013.4 -12.5 15.5 -3.8 177.9 149.5 6.5 -6.1 529.4 72.0 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.133 -0.410 56.949 + 32 2002 12 21 0 1 59 590 3.8597 183.8 1117.5 1013.5 -12.7 16.6 -3.9 177.9 149.5 6.4 -6.1 529.5 71.9 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.133 -0.410 56.919 + 33 2002 12 21 0 2 3 451 3.8618 183.8 1118.5 1013.7 -12.9 17.5 -4.0 177.9 149.5 6.4 -6.1 529.5 72.0 155.7 158.4 155.7 158.4 0.0 0.0 0.0 0.0 100.9 104.3 3.133 -0.410 56.919 + 34 2002 12 21 0 2 7 313 3.8613 183.8 1119.5 1013.8 -13.2 18.0 -4.1 177.9 149.5 6.4 -6.2 529.5 72.1 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.132 -0.410 56.889 + 35 2002 12 21 0 2 11 171 3.8580 183.8 1120.5 1013.9 -13.4 19.1 -4.1 177.9 149.5 6.4 -6.2 529.6 72.2 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.132 -0.410 56.889 + 36 2002 12 21 0 2 15 28 3.8573 183.8 1121.5 1014.1 -13.5 20.1 -4.2 177.9 149.5 6.4 -6.2 529.6 72.3 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.132 -0.410 56.859 + 37 2002 12 21 0 2 18 886 3.8580 183.8 1122.5 1014.2 -13.5 20.8 -4.3 177.9 149.5 6.4 -6.2 529.6 72.4 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.131 -0.410 56.859 + 38 2002 12 21 0 2 22 742 3.8561 183.8 1123.4 1014.3 -13.7 21.6 -4.3 177.9 149.5 6.4 -6.2 529.7 72.5 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.131 -0.410 56.829 + 39 2002 12 21 0 2 26 598 3.8559 183.8 1124.4 1014.4 -13.8 22.8 -4.3 177.9 149.5 6.3 -6.2 529.7 72.6 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.131 -0.410 56.829 + 40 2002 12 21 0 2 30 451 3.8532 183.8 1125.3 1014.6 -14.0 23.7 -4.3 177.9 149.5 6.3 -6.2 529.7 72.8 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.131 -0.410 56.799 + 41 2002 12 21 0 2 34 303 3.8523 183.8 1126.2 1014.7 -14.4 24.2 -4.4 177.9 149.5 6.3 -6.3 529.7 72.9 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.130 -0.410 56.799 + 42 2002 12 21 0 2 38 153 3.8491 183.8 1127.1 1014.8 -14.8 25.6 -4.3 177.9 149.5 6.3 -6.3 529.8 73.0 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.130 -0.410 56.769 + 43 2002 12 21 0 2 42 0 3.8478 183.8 1128.0 1014.9 -15.1 26.6 -4.3 177.9 149.5 6.3 -6.3 529.8 73.1 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.130 -0.410 56.769 + 44 2002 12 21 0 2 45 845 3.8443 183.8 1128.9 1015.0 -15.5 27.3 -4.3 177.9 149.5 6.3 -6.3 529.8 73.2 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.130 -0.410 56.740 + 45 2002 12 21 0 2 49 687 3.8426 183.8 1129.8 1015.1 -15.9 28.4 -4.2 177.9 149.5 6.3 -6.3 529.9 73.3 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.129 -0.410 56.740 + 46 2002 12 21 0 2 53 526 3.8389 183.8 1130.6 1015.2 -16.3 29.7 -4.1 177.9 149.5 6.3 -6.3 529.9 73.4 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.129 -0.410 56.710 + 47 2002 12 21 0 2 57 363 3.8370 183.8 1131.5 1015.4 -16.8 30.6 -4.0 177.9 149.5 6.2 -6.3 529.9 73.5 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.129 -0.410 56.710 + 48 2002 12 21 0 3 1 196 3.8333 183.8 1132.3 1015.5 -17.2 31.2 -3.9 177.9 149.5 6.2 -6.4 530.0 73.6 148.8 157.8 148.8 157.8 0.0 0.0 0.0 0.0 101.6 104.7 3.128 -0.410 56.681 + 49 2002 12 21 0 3 5 28 3.8314 183.8 1133.1 1015.6 -17.6 32.7 -3.7 177.9 149.5 6.2 -6.3 530.1 73.8 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.128 -0.410 56.681 + 50 2002 12 21 0 3 8 847 3.8196 183.8 1134.0 1015.7 -18.0 33.9 -3.6 177.9 149.5 6.3 -6.3 530.2 74.0 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.128 -0.410 56.653 + 51 2002 12 21 0 3 12 614 3.7669 183.8 1134.8 1015.8 -18.4 34.6 -3.4 177.9 149.5 6.3 -6.3 530.3 74.2 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.128 -0.410 56.652 + 52 2002 12 21 0 3 16 406 3.7912 183.8 1135.6 1015.9 -18.8 35.6 -3.2 177.9 149.5 6.3 -6.3 530.3 74.4 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.127 -0.410 56.623 + 53 2002 12 21 0 3 20 200 3.7947 183.8 1136.3 1016.0 -19.2 37.0 -3.0 177.9 149.5 6.3 -6.3 530.4 74.6 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.127 -0.410 56.623 + 54 2002 12 21 0 3 23 994 3.7933 183.8 1137.1 1016.1 -19.6 38.1 -2.8 177.9 149.5 6.3 -6.2 530.5 74.8 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.127 -0.410 56.594 + 55 2002 12 21 0 3 27 781 3.7871 183.8 1137.9 1016.2 -20.0 38.6 -2.6 177.9 149.5 6.3 -6.2 530.6 75.0 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.126 -0.410 56.594 + 56 2002 12 21 0 3 31 563 3.7827 183.8 1138.6 1016.3 -20.4 40.2 -2.4 177.9 149.5 6.3 -6.2 530.7 75.2 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.126 -0.410 56.564 + 57 2002 12 21 0 3 35 340 3.7770 183.8 1139.4 1016.5 -20.8 41.5 -2.1 177.9 149.5 6.3 -6.2 530.8 75.4 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.126 -0.410 56.564 + 58 2002 12 21 0 3 39 114 3.7735 183.8 1140.1 1016.6 -21.1 42.4 -1.9 177.9 149.5 6.3 -6.2 530.9 75.6 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.126 -0.410 56.535 + 59 2002 12 21 0 3 42 884 3.7696 183.8 1140.9 1016.7 -21.5 43.2 -1.6 177.9 149.5 6.3 -6.1 531.0 75.8 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.125 -0.410 56.534 + 60 2002 12 21 0 3 46 651 3.7675 183.7 1141.6 1016.8 -21.8 44.8 -1.4 177.9 149.5 6.4 -6.1 531.1 76.0 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.125 -0.410 56.505 + 61 2002 12 21 0 3 50 416 3.7651 183.7 1142.3 1016.9 -22.2 46.0 -1.2 177.9 149.5 6.4 -6.1 531.1 76.2 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.125 -0.410 56.504 + 62 2002 12 21 0 3 54 180 3.7639 183.7 1143.0 1017.0 -22.6 46.6 -0.9 177.9 149.5 6.4 -6.1 531.2 76.4 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.125 -0.410 56.475 + 63 2002 12 21 0 3 57 943 3.7626 183.7 1143.7 1017.1 -22.9 47.8 -0.7 177.9 149.5 6.4 -6.1 531.3 76.6 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.124 -0.410 56.474 + 64 2002 12 21 0 4 1 705 3.7621 183.7 1144.4 1017.2 -23.2 49.3 -0.5 177.9 149.5 6.4 -6.1 531.4 76.8 159.1 166.0 159.1 166.0 0.0 0.0 0.0 0.0 102.7 105.5 3.124 -0.410 56.444 + 65 2002 12 21 0 4 5 466 3.7615 183.7 1145.1 1017.3 -23.6 50.4 -0.3 177.9 149.5 6.3 -6.1 531.6 76.8 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.124 -0.410 56.443 + 66 2002 12 21 0 4 9 243 3.7768 183.7 1145.8 1017.4 -23.9 50.8 -0.1 177.9 149.5 6.3 -6.1 531.7 76.8 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.123 -0.410 56.412 + 67 2002 12 21 0 4 13 14 3.7708 183.7 1146.5 1017.6 -24.3 52.5 0.1 177.9 149.5 6.2 -6.1 531.9 76.9 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.123 -0.410 56.411 + 68 2002 12 21 0 4 16 789 3.7755 183.7 1147.2 1017.7 -24.6 53.8 0.3 177.9 149.5 6.1 -6.2 532.0 76.9 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.123 -0.410 56.382 + 69 2002 12 21 0 4 20 565 3.7755 183.6 1147.9 1017.8 -25.0 54.6 0.5 177.9 149.5 6.1 -6.2 532.2 76.9 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.123 -0.410 56.380 + 70 2002 12 21 0 4 24 340 3.7757 183.6 1148.6 1017.9 -25.3 55.5 0.7 177.9 149.5 6.0 -6.2 532.3 77.0 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.122 -0.410 56.351 + 71 2002 12 21 0 4 28 115 3.7748 183.6 1149.3 1018.1 -25.7 57.0 0.9 177.9 149.5 6.0 -6.2 532.5 77.0 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.122 -0.410 56.349 + 72 2002 12 21 0 4 31 890 3.7751 183.6 1150.0 1018.2 -26.0 58.1 1.1 177.9 149.5 5.9 -6.3 532.6 77.0 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.122 -0.410 56.319 + 73 2002 12 21 0 4 35 665 3.7750 183.6 1150.8 1018.3 -26.4 58.6 1.2 177.9 149.5 5.9 -6.3 532.8 77.1 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.122 -0.410 56.318 + 74 2002 12 21 0 4 39 441 3.7757 183.6 1151.5 1018.5 -26.8 60.0 1.4 177.9 149.5 5.8 -6.3 532.9 77.1 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.121 -0.410 56.288 + 75 2002 12 21 0 4 43 217 3.7763 183.6 1152.3 1018.6 -27.2 61.3 1.6 177.9 149.5 5.8 -6.3 533.0 77.1 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.121 -0.410 56.286 + 76 2002 12 21 0 4 46 995 3.7774 183.6 1153.0 1018.8 -27.5 62.0 1.7 177.9 149.5 5.7 -6.4 533.2 77.2 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.121 -0.410 56.256 + 77 2002 12 21 0 4 50 773 3.7784 183.6 1153.8 1019.0 -27.8 62.9 1.9 177.9 149.5 5.6 -6.4 533.3 77.2 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.120 -0.410 56.255 + 78 2002 12 21 0 4 54 553 3.7797 183.6 1154.7 1019.1 -28.0 64.2 2.0 177.9 149.5 5.6 -6.4 533.5 77.2 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.120 -0.410 56.225 + 79 2002 12 21 0 4 58 334 3.7809 183.6 1155.6 1019.3 -28.1 65.2 2.2 177.9 149.5 5.5 -6.4 533.6 77.3 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.120 -0.410 56.223 + 80 2002 12 21 0 5 0 0 1.6659 183.6 1156.3 1019.4 -28.1 65.3 2.4 177.9 149.5 5.5 -6.4 533.7 77.3 172.0 180.7 172.0 180.7 0.0 0.0 0.0 0.0 101.0 104.3 3.120 -0.410 56.210 diff --git a/srcTests/auto_test/ref_solns/log.UAM.in.10.SeparateHP.test b/srcTests/auto_test/ref_solns/log.UAM.in.10.SeparateHP.test new file mode 100644 index 00000000..9af1c61f --- /dev/null +++ b/srcTests/auto_test/ref_solns/log.UAM.in.10.SeparateHP.test @@ -0,0 +1,169 @@ +GITM2 log file +## Inputs from UAM.in +# Resart= F +# Eddy coef: 50.000 Eddy P0: 0.010 Eddy P1: 0.005 +# Statistical Models Only: F Apex: F +# EUV Data: TFile: +UA/DataIn/FISM/fismflux_daily_2002.dat +# E-Field Model: weimer05 Auroral Model: fta +# AMIE: none +none +# Solar Heating: T Joule Heating: T +# NO Cooling: T O Cooling: T +# Conduction: T Turbulent Conduction: T +# Pressure Grad: T Ion Drag: T Neutral Drag: T +# Viscosity: T Coriolis: T Gravity: T +# Ion Chemistry: T Ion Advection: T Neutral Chemistry: T + +#START + iStep year month day hour min sec ms dt min(T) max(T) mean(T) min(VV) max(VV) mean(VV) F107 F107A By Bz Vx HP HPn HPs HPn_diff HPs_diff HPn_w HPs_w HPn_m HPs_m CPCPn CPCPs SubsolarLon SubsolarLat SubsolarVTEC + 2 2002 12 21 0 0 2 0 2.0000 157.6 1317.2 1012.0 -3.7 2.8 0.0 177.9 149.5 6.1 -6.0 531.4 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.329 + 3 2002 12 21 0 0 4 0 2.0000 157.6 1317.1 1012.0 -4.8 3.7 -0.2 177.9 149.5 6.1 -6.0 531.2 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.221 + 4 2002 12 21 0 0 6 0 2.0000 157.5 1317.0 1012.1 -7.0 5.5 -0.3 177.9 149.5 6.2 -6.0 531.1 71.9 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.157 + 5 2002 12 21 0 0 8 0 2.0000 157.5 1316.9 1012.2 -8.3 6.5 -0.4 177.9 149.5 6.2 -6.0 531.0 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.109 + 6 2002 12 21 0 0 10 0 2.0000 157.5 1316.8 1012.2 -8.7 6.5 -0.5 177.9 149.5 6.2 -6.0 530.9 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.067 + 7 2002 12 21 0 0 12 0 2.0000 157.5 1316.7 1012.3 -8.4 5.8 -0.5 177.9 149.5 6.2 -6.0 530.7 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 58.030 + 8 2002 12 21 0 0 14 0 2.0000 157.5 1316.6 1012.4 -8.7 5.8 -0.6 177.9 149.5 6.2 -6.0 530.6 72.0 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.141 -0.410 57.995 + 9 2002 12 21 0 0 16 0 2.0000 157.5 1316.5 1012.5 -9.5 6.2 -0.7 177.9 149.5 6.2 -6.0 530.5 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.962 + 10 2002 12 21 0 0 18 0 2.0000 157.5 1316.4 1012.5 -10.2 6.4 -0.7 177.9 149.5 6.3 -6.0 530.3 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.930 + 11 2002 12 21 0 0 20 0 2.0000 157.6 1316.4 1012.6 -10.4 6.2 -0.8 177.9 149.5 6.3 -6.0 530.2 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.899 + 12 2002 12 21 0 0 22 0 2.0000 157.6 1316.3 1012.7 -10.1 6.4 -0.8 177.9 149.5 6.3 -6.0 530.1 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.870 + 13 2002 12 21 0 0 24 0 2.0000 157.6 1316.2 1012.8 -11.1 6.8 -0.9 177.9 149.5 6.3 -6.0 530.0 72.1 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.841 + 14 2002 12 21 0 0 26 0 2.0000 157.6 1316.1 1012.9 -11.8 7.0 -0.9 177.9 149.5 6.3 -6.0 529.8 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.813 + 15 2002 12 21 0 0 28 0 2.0000 157.6 1316.1 1013.0 -12.2 7.6 -1.0 177.9 149.5 6.4 -6.0 529.7 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.140 -0.410 57.786 + 16 2002 12 21 0 0 30 0 2.0000 157.6 1316.0 1013.0 -13.0 7.8 -1.0 177.9 149.5 6.4 -6.0 529.6 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.759 + 17 2002 12 21 0 0 32 0 2.0000 157.6 1315.9 1013.1 -13.5 7.8 -1.1 177.9 149.5 6.4 -6.0 529.5 72.2 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.732 + 18 2002 12 21 0 0 34 0 2.0000 157.6 1315.9 1013.2 -13.6 8.5 -1.1 177.9 149.5 6.4 -6.0 529.3 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.706 + 19 2002 12 21 0 0 36 0 2.0000 157.6 1315.8 1013.3 -14.3 8.9 -1.2 177.9 149.5 6.4 -6.0 529.2 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.681 + 20 2002 12 21 0 0 38 0 2.0000 157.6 1315.8 1013.4 -15.1 9.4 -1.2 177.9 149.5 6.4 -6.0 529.1 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.655 + 21 2002 12 21 0 0 40 0 2.0000 157.7 1315.7 1013.5 -15.5 10.1 -1.3 177.9 149.5 6.5 -6.0 528.9 72.3 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.630 + 22 2002 12 21 0 0 42 0 2.0000 157.7 1315.7 1013.6 -16.7 10.3 -1.3 177.9 149.5 6.5 -6.0 528.8 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.139 -0.410 57.605 + 23 2002 12 21 0 0 44 0 2.0000 157.7 1315.7 1013.7 -17.5 10.5 -1.4 177.9 149.5 6.5 -6.0 528.7 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.581 + 24 2002 12 21 0 0 46 0 2.0000 157.7 1315.6 1013.7 -17.8 11.3 -1.4 177.9 149.5 6.5 -6.0 528.6 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.556 + 25 2002 12 21 0 0 48 0 2.0000 157.8 1315.6 1013.8 -18.0 11.7 -1.5 177.9 149.5 6.5 -6.0 528.4 72.4 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.532 + 26 2002 12 21 0 0 50 0 2.0000 157.8 1315.5 1013.9 -19.2 12.1 -1.5 177.9 149.5 6.5 -6.0 528.3 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.508 + 27 2002 12 21 0 0 52 0 2.0000 157.7 1315.5 1014.0 -20.0 13.1 -1.6 177.9 149.5 6.6 -6.0 528.2 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.485 + 28 2002 12 21 0 0 54 0 2.0000 157.7 1315.5 1014.1 -20.6 13.5 -1.6 177.9 149.5 6.6 -6.0 528.0 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.461 + 29 2002 12 21 0 0 56 0 2.0000 157.7 1315.5 1014.2 -22.0 13.3 -1.7 177.9 149.5 6.6 -6.0 527.9 72.5 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.138 -0.410 57.437 + 30 2002 12 21 0 0 58 0 2.0000 157.7 1315.4 1014.3 -22.9 14.0 -1.7 177.9 149.5 6.6 -6.0 527.8 72.6 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.414 + 31 2002 12 21 0 1 0 0 2.0000 157.8 1315.4 1014.3 -23.3 14.8 -1.8 177.9 149.5 6.6 -6.0 527.7 72.6 143.4 143.4 143.4 143.4 0.0 0.0 0.0 0.0 92.7 105.5 3.137 -0.410 57.391 + 32 2002 12 21 0 1 2 0 2.0000 157.8 1315.7 1014.4 -23.4 15.0 -1.8 177.9 149.5 6.6 -6.0 527.7 72.6 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.367 + 33 2002 12 21 0 1 4 0 2.0000 157.8 1315.9 1014.5 -25.0 15.1 -1.8 177.9 149.5 6.6 -6.0 527.8 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.344 + 34 2002 12 21 0 1 6 0 2.0000 157.8 1316.2 1014.6 -26.2 16.3 -1.9 177.9 149.5 6.6 -6.0 527.9 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.321 + 35 2002 12 21 0 1 8 0 2.0000 157.8 1316.5 1014.7 -26.8 16.8 -1.9 177.9 149.5 6.6 -6.0 527.9 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.298 + 36 2002 12 21 0 1 10 0 2.0000 157.8 1316.7 1014.8 -27.8 16.8 -2.0 177.9 149.5 6.6 -6.0 528.0 72.5 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.137 -0.410 57.276 + 37 2002 12 21 0 1 12 0 2.0000 157.8 1317.0 1014.9 -29.4 16.7 -2.0 177.9 149.5 6.6 -6.0 528.0 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.253 + 38 2002 12 21 0 1 14 0 2.0000 157.8 1317.2 1015.0 -30.4 17.9 -2.1 177.9 149.5 6.6 -6.0 528.1 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.230 + 39 2002 12 21 0 1 16 0 2.0000 157.8 1317.5 1015.0 -30.7 18.6 -2.1 177.9 149.5 6.6 -6.0 528.2 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.208 + 40 2002 12 21 0 1 18 0 2.0000 157.8 1317.7 1015.1 -30.5 18.7 -2.1 177.9 149.5 6.6 -6.1 528.2 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.185 + 41 2002 12 21 0 1 20 0 2.0000 157.8 1317.9 1015.2 -32.5 18.3 -2.2 177.9 149.5 6.6 -6.1 528.3 72.4 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.163 + 42 2002 12 21 0 1 22 0 2.0000 157.8 1318.2 1015.3 -34.0 19.5 -2.2 177.9 149.5 6.6 -6.1 528.3 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.136 -0.410 57.141 + 43 2002 12 21 0 1 24 0 2.0000 157.8 1318.4 1015.4 -34.8 20.4 -2.2 177.9 149.5 6.6 -6.1 528.4 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.119 + 44 2002 12 21 0 1 26 0 2.0000 157.8 1318.6 1015.5 -34.9 20.7 -2.3 177.9 149.5 6.5 -6.1 528.5 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.096 + 45 2002 12 21 0 1 28 0 2.0000 157.8 1318.9 1015.5 -36.7 20.4 -2.3 177.9 149.5 6.5 -6.1 528.5 72.3 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.075 + 46 2002 12 21 0 1 30 0 2.0000 157.8 1319.1 1015.6 -38.4 20.6 -2.3 177.9 149.5 6.5 -6.1 528.6 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.052 + 47 2002 12 21 0 1 32 0 2.0000 157.8 1319.3 1015.7 -39.5 21.9 -2.4 177.9 149.5 6.5 -6.1 528.6 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.031 + 48 2002 12 21 0 1 34 0 2.0000 157.8 1319.5 1015.8 -39.8 22.8 -2.4 177.9 149.5 6.5 -6.1 528.7 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 57.009 + 49 2002 12 21 0 1 36 0 2.0000 157.8 1319.7 1015.9 -39.2 23.1 -2.4 177.9 149.5 6.5 -6.1 528.8 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.135 -0.410 56.987 + 50 2002 12 21 0 1 38 0 2.0000 157.8 1319.9 1016.0 -40.9 22.8 -2.5 177.9 149.5 6.5 -6.1 528.8 72.2 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.965 + 51 2002 12 21 0 1 40 0 2.0000 157.8 1320.1 1016.0 -42.9 22.1 -2.5 177.9 149.5 6.5 -6.1 528.9 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.944 + 52 2002 12 21 0 1 42 0 2.0000 157.7 1320.4 1016.1 -44.2 23.5 -2.5 177.9 149.5 6.5 -6.1 528.9 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.922 + 53 2002 12 21 0 1 44 0 2.0000 157.7 1320.6 1016.2 -44.6 24.4 -2.6 177.9 149.5 6.5 -6.1 529.0 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.901 + 54 2002 12 21 0 1 46 0 2.0000 157.7 1320.8 1016.3 -44.1 24.8 -2.6 177.9 149.5 6.5 -6.1 529.1 72.1 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.880 + 55 2002 12 21 0 1 48 0 2.0000 157.7 1321.0 1016.4 -46.0 24.5 -2.6 177.9 149.5 6.5 -6.1 529.1 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.859 + 56 2002 12 21 0 1 50 0 2.0000 157.7 1321.2 1016.4 -48.0 24.0 -2.7 177.9 149.5 6.5 -6.1 529.2 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.134 -0.410 56.837 + 57 2002 12 21 0 1 52 0 2.0000 157.7 1321.4 1016.5 -49.4 25.5 -2.7 177.9 149.5 6.5 -6.1 529.3 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.817 + 58 2002 12 21 0 1 54 0 2.0000 157.7 1321.6 1016.6 -49.8 26.8 -2.7 177.9 149.5 6.5 -6.1 529.3 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.795 + 59 2002 12 21 0 1 56 0 2.0000 157.7 1321.8 1016.7 -49.4 27.5 -2.7 177.9 149.5 6.5 -6.1 529.4 72.0 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.775 + 60 2002 12 21 0 1 58 0 2.0000 157.7 1322.0 1016.7 -49.1 27.6 -2.8 177.9 149.5 6.4 -6.1 529.4 71.9 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.754 + 61 2002 12 21 0 2 0 0 2.0000 157.7 1322.2 1016.8 -51.6 27.2 -2.8 177.9 149.5 6.4 -6.1 529.5 71.9 145.6 145.6 145.6 145.6 0.0 0.0 0.0 0.0 93.1 106.5 3.133 -0.410 56.733 + 62 2002 12 21 0 2 2 0 2.0000 157.7 1322.4 1016.9 -53.5 26.2 -2.8 177.9 149.5 6.4 -6.1 529.5 72.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.133 -0.410 56.712 + 63 2002 12 21 0 2 4 0 2.0000 157.7 1322.6 1017.0 -54.7 27.3 -2.8 177.9 149.5 6.4 -6.1 529.5 72.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.133 -0.410 56.692 + 64 2002 12 21 0 2 6 0 2.0000 157.7 1322.7 1017.0 -54.9 28.4 -2.8 177.9 149.5 6.4 -6.2 529.5 72.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.671 + 65 2002 12 21 0 2 8 0 2.0000 157.7 1322.9 1017.1 -54.2 29.0 -2.9 177.9 149.5 6.4 -6.2 529.6 72.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.651 + 66 2002 12 21 0 2 10 0 2.0000 157.7 1323.1 1017.2 -55.0 29.1 -2.9 177.9 149.5 6.4 -6.2 529.6 72.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.631 + 67 2002 12 21 0 2 12 0 2.0000 157.7 1323.3 1017.3 -57.4 28.5 -2.9 177.9 149.5 6.4 -6.2 529.6 72.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.611 + 68 2002 12 21 0 2 14 0 2.0000 157.7 1323.5 1017.3 -59.2 29.2 -2.9 177.9 149.5 6.4 -6.2 529.6 72.3 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.590 + 69 2002 12 21 0 2 16 0 2.0000 157.7 1323.7 1017.4 -60.2 30.6 -2.9 177.9 149.5 6.4 -6.2 529.6 72.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.570 + 70 2002 12 21 0 2 18 0 2.0000 157.7 1323.8 1017.5 -60.3 31.6 -2.9 177.9 149.5 6.4 -6.2 529.6 72.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.132 -0.410 56.550 + 71 2002 12 21 0 2 20 0 2.0000 157.7 1324.0 1017.5 -59.4 32.3 -3.0 177.9 149.5 6.4 -6.2 529.6 72.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.530 + 72 2002 12 21 0 2 22 0 2.0000 157.7 1324.2 1017.6 -59.3 32.4 -3.0 177.9 149.5 6.4 -6.2 529.7 72.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.510 + 73 2002 12 21 0 2 24 0 2.0000 157.6 1324.4 1017.7 -61.8 32.0 -3.0 177.9 149.5 6.4 -6.2 529.7 72.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.491 + 74 2002 12 21 0 2 26 0 2.0000 157.6 1324.7 1017.7 -63.9 31.1 -3.0 177.9 149.5 6.3 -6.2 529.7 72.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.471 + 75 2002 12 21 0 2 28 0 2.0000 157.6 1325.1 1017.8 -65.1 31.7 -3.0 177.9 149.5 6.3 -6.2 529.7 72.7 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.451 + 76 2002 12 21 0 2 30 0 2.0000 157.6 1325.4 1017.9 -65.4 32.7 -3.0 177.9 149.5 6.3 -6.2 529.7 72.7 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.431 + 77 2002 12 21 0 2 32 0 2.0000 157.6 1325.8 1017.9 -64.7 33.4 -3.0 177.9 149.5 6.3 -6.3 529.7 72.8 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.131 -0.410 56.412 + 78 2002 12 21 0 2 34 0 2.0000 157.6 1326.2 1018.0 -63.1 33.8 -3.0 177.9 149.5 6.3 -6.3 529.7 72.9 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.392 + 79 2002 12 21 0 2 36 0 2.0000 157.6 1326.5 1018.1 -65.9 33.6 -3.0 177.9 149.5 6.3 -6.3 529.8 72.9 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.373 + 80 2002 12 21 0 2 38 0 2.0000 157.6 1326.9 1018.1 -68.1 33.1 -3.1 177.9 149.5 6.3 -6.3 529.8 73.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.353 + 81 2002 12 21 0 2 40 0 2.0000 157.6 1327.2 1018.2 -69.6 34.5 -3.1 177.9 149.5 6.3 -6.3 529.8 73.0 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.334 + 82 2002 12 21 0 2 42 0 2.0000 157.6 1327.6 1018.3 -70.3 35.7 -3.1 177.9 149.5 6.3 -6.3 529.8 73.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.315 + 83 2002 12 21 0 2 44 0 2.0000 157.6 1328.0 1018.3 -70.0 36.5 -3.1 177.9 149.5 6.3 -6.3 529.8 73.1 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.296 + 84 2002 12 21 0 2 46 0 2.0000 157.6 1328.3 1018.4 -68.9 36.9 -3.1 177.9 149.5 6.3 -6.3 529.8 73.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.130 -0.410 56.277 + 85 2002 12 21 0 2 48 0 2.0000 157.6 1328.7 1018.5 -67.9 36.9 -3.1 177.9 149.5 6.3 -6.3 529.9 73.2 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.258 + 86 2002 12 21 0 2 50 0 2.0000 157.6 1329.0 1018.5 -70.4 36.6 -3.1 177.9 149.5 6.3 -6.3 529.9 73.3 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.239 + 87 2002 12 21 0 2 52 0 2.0000 157.6 1329.4 1018.6 -72.3 35.7 -3.1 177.9 149.5 6.3 -6.3 529.9 73.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.220 + 88 2002 12 21 0 2 54 0 2.0000 157.6 1329.7 1018.7 -73.5 36.8 -3.1 177.9 149.5 6.3 -6.3 529.9 73.4 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.201 + 89 2002 12 21 0 2 56 0 2.0000 157.6 1330.1 1018.7 -73.9 37.8 -3.1 177.9 149.5 6.2 -6.3 529.9 73.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.182 + 90 2002 12 21 0 2 58 0 2.0000 157.7 1330.4 1018.8 -73.2 38.5 -3.1 177.9 149.5 6.2 -6.4 529.9 73.5 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.164 + 91 2002 12 21 0 3 0 0 2.0000 157.7 1330.7 1018.8 -71.8 39.2 -3.2 177.9 149.5 6.2 -6.4 530.0 73.6 143.9 143.9 143.9 143.9 0.0 0.0 0.0 0.0 93.8 106.8 3.129 -0.410 56.145 + 92 2002 12 21 0 3 2 0 2.0000 157.7 1331.1 1018.9 -71.9 40.2 -3.2 177.9 149.5 6.2 -6.3 530.0 73.7 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.126 + 93 2002 12 21 0 3 4 0 2.0000 157.7 1331.4 1019.0 -74.2 40.9 -3.2 177.9 149.5 6.2 -6.3 530.0 73.8 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.108 + 94 2002 12 21 0 3 6 0 2.0000 157.7 1331.7 1019.0 -76.0 41.4 -3.2 177.9 149.5 6.2 -6.3 530.1 73.9 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.089 + 95 2002 12 21 0 3 8 0 2.0000 157.7 1332.1 1019.1 -77.1 41.6 -3.2 177.9 149.5 6.3 -6.3 530.1 74.0 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.071 + 96 2002 12 21 0 3 10 0 2.0000 157.7 1332.4 1019.1 -77.3 42.1 -3.2 177.9 149.5 6.3 -6.3 530.2 74.1 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.053 + 97 2002 12 21 0 3 12 0 2.0000 157.7 1332.7 1019.2 -76.9 44.6 -3.2 177.9 149.5 6.3 -6.3 530.2 74.2 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.128 -0.410 56.034 + 98 2002 12 21 0 3 14 0 2.0000 157.7 1333.1 1019.3 -75.5 46.6 -3.2 177.9 149.5 6.3 -6.3 530.3 74.3 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 56.016 + 99 2002 12 21 0 3 16 0 2.0000 157.7 1333.4 1019.3 -74.0 48.2 -3.2 177.9 149.5 6.3 -6.3 530.3 74.4 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.998 + 100 2002 12 21 0 3 18 0 2.0000 157.7 1333.7 1019.4 -76.2 49.2 -3.2 177.9 149.5 6.3 -6.3 530.4 74.5 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.980 + 101 2002 12 21 0 3 20 0 2.0000 157.7 1334.0 1019.4 -77.8 49.9 -3.2 177.9 149.5 6.3 -6.3 530.4 74.6 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.962 + 102 2002 12 21 0 3 22 0 2.0000 157.7 1334.4 1019.5 -78.8 51.6 -3.2 177.9 149.5 6.3 -6.2 530.5 74.7 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.944 + 103 2002 12 21 0 3 24 0 2.0000 157.7 1334.7 1019.6 -78.9 54.3 -3.2 177.9 149.5 6.3 -6.2 530.5 74.8 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.926 + 104 2002 12 21 0 3 26 0 2.0000 157.7 1335.0 1019.6 -78.6 56.4 -3.2 177.9 149.5 6.3 -6.2 530.6 74.9 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.127 -0.410 55.908 + 105 2002 12 21 0 3 28 0 2.0000 157.7 1335.3 1019.7 -77.3 58.0 -3.2 177.9 149.5 6.3 -6.2 530.6 75.1 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.890 + 106 2002 12 21 0 3 30 0 2.0000 157.7 1335.6 1019.7 -75.6 59.5 -3.2 177.9 149.5 6.3 -6.2 530.7 75.2 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.872 + 107 2002 12 21 0 3 32 0 2.0000 157.7 1336.0 1019.8 -77.7 60.4 -3.2 177.9 149.5 6.3 -6.2 530.7 75.3 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.855 + 108 2002 12 21 0 3 34 0 2.0000 157.7 1336.3 1019.9 -79.3 60.9 -3.1 177.9 149.5 6.3 -6.2 530.8 75.4 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.837 + 109 2002 12 21 0 3 36 0 2.0000 157.7 1336.6 1019.9 -80.3 60.9 -3.1 177.9 149.5 6.3 -6.2 530.8 75.5 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.820 + 110 2002 12 21 0 3 38 0 2.0000 157.7 1336.9 1020.0 -80.8 60.5 -3.1 177.9 149.5 6.3 -6.2 530.9 75.6 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.802 + 111 2002 12 21 0 3 40 0 2.0000 157.7 1337.2 1020.1 -80.6 62.2 -3.0 177.9 149.5 6.3 -6.1 530.9 75.7 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.126 -0.410 55.785 + 112 2002 12 21 0 3 42 0 2.0000 157.7 1337.5 1020.1 -79.5 64.8 -3.0 177.9 149.5 6.3 -6.1 530.9 75.8 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.767 + 113 2002 12 21 0 3 44 0 2.0000 157.7 1337.8 1020.2 -77.5 66.9 -2.9 177.9 149.5 6.3 -6.1 531.0 75.9 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.750 + 114 2002 12 21 0 3 46 0 2.0000 157.7 1338.1 1020.2 -77.4 68.3 -2.8 177.9 149.5 6.4 -6.1 531.0 76.0 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.733 + 115 2002 12 21 0 3 48 0 2.0000 157.7 1338.5 1020.3 -78.9 69.2 -2.7 177.9 149.5 6.4 -6.1 531.1 76.1 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.716 + 116 2002 12 21 0 3 50 0 2.0000 157.7 1338.8 1020.4 -79.8 69.6 -2.7 177.9 149.5 6.4 -6.1 531.1 76.2 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.699 + 117 2002 12 21 0 3 52 0 2.0000 157.7 1339.1 1020.4 -80.3 69.5 -2.6 177.9 149.5 6.4 -6.1 531.2 76.3 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.682 + 118 2002 12 21 0 3 54 0 2.0000 157.7 1339.4 1020.5 -80.3 72.1 -2.5 177.9 149.5 6.4 -6.1 531.2 76.4 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.125 -0.410 55.665 + 119 2002 12 21 0 3 56 0 2.0000 157.7 1339.7 1020.6 -79.5 74.6 -2.4 177.9 149.5 6.4 -6.1 531.3 76.5 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.124 -0.410 55.648 + 120 2002 12 21 0 3 58 0 2.0000 157.7 1340.0 1020.6 -77.7 77.0 -2.2 177.9 149.5 6.4 -6.1 531.3 76.6 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.124 -0.410 55.631 + 121 2002 12 21 0 4 0 0 2.0000 157.7 1340.3 1020.7 -77.2 78.7 -2.1 177.9 149.5 6.4 -6.0 531.4 76.7 148.3 148.3 148.3 148.3 0.0 0.0 0.0 0.0 95.0 107.6 3.124 -0.410 55.614 + 122 2002 12 21 0 4 2 0 2.0000 157.7 1340.7 1020.8 -78.3 79.8 -2.0 177.9 149.5 6.4 -6.1 531.5 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.597 + 123 2002 12 21 0 4 4 0 2.0000 157.7 1341.0 1020.8 -79.2 80.4 -1.8 177.9 149.5 6.3 -6.1 531.5 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.581 + 124 2002 12 21 0 4 6 0 2.0000 157.7 1341.3 1020.9 -79.9 80.3 -1.7 177.9 149.5 6.3 -6.1 531.6 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.564 + 125 2002 12 21 0 4 8 0 2.0000 157.7 1341.6 1021.0 -80.0 79.8 -1.5 177.9 149.5 6.3 -6.1 531.7 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.124 -0.410 55.547 + 126 2002 12 21 0 4 10 0 2.0000 157.7 1341.9 1021.0 -79.3 79.8 -1.4 177.9 149.5 6.2 -6.1 531.8 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.531 + 127 2002 12 21 0 4 12 0 2.0000 157.7 1342.2 1021.1 -77.9 82.8 -1.2 177.9 149.5 6.2 -6.1 531.8 76.8 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.514 + 128 2002 12 21 0 4 14 0 2.0000 157.7 1342.6 1021.2 -75.7 85.3 -1.1 177.9 149.5 6.2 -6.1 531.9 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.498 + 129 2002 12 21 0 4 16 0 2.0000 157.7 1342.9 1021.3 -76.8 87.2 -0.9 177.9 149.5 6.2 -6.1 532.0 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.482 + 130 2002 12 21 0 4 18 0 2.0000 157.7 1343.2 1021.3 -77.9 88.4 -0.7 177.9 149.5 6.1 -6.2 532.1 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.465 + 131 2002 12 21 0 4 20 0 2.0000 157.7 1343.6 1021.4 -78.5 88.9 -0.5 177.9 149.5 6.1 -6.2 532.1 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.449 + 132 2002 12 21 0 4 22 0 2.0000 157.7 1343.9 1021.5 -78.6 88.9 -0.3 177.9 149.5 6.1 -6.2 532.2 76.9 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.123 -0.410 55.433 + 133 2002 12 21 0 4 24 0 2.0000 157.7 1344.2 1021.5 -78.1 88.5 -0.2 177.9 149.5 6.0 -6.2 532.3 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.417 + 134 2002 12 21 0 4 26 0 2.0000 157.7 1344.6 1021.6 -76.8 90.1 0.0 177.9 149.5 6.0 -6.2 532.4 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.400 + 135 2002 12 21 0 4 28 0 2.0000 157.7 1344.9 1021.7 -74.7 93.2 0.2 177.9 149.5 6.0 -6.2 532.5 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.384 + 136 2002 12 21 0 4 30 0 2.0000 157.7 1345.3 1021.8 -75.4 95.7 0.4 177.9 149.5 5.9 -6.2 532.5 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.368 + 137 2002 12 21 0 4 32 0 2.0000 157.7 1345.6 1021.8 -76.2 97.4 0.6 177.9 149.5 5.9 -6.3 532.6 77.0 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.352 + 138 2002 12 21 0 4 34 0 2.0000 157.7 1346.0 1021.9 -76.7 98.6 0.8 177.9 149.5 5.9 -6.3 532.7 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.336 + 139 2002 12 21 0 4 36 0 2.0000 157.7 1346.4 1022.0 -76.7 99.0 1.0 177.9 149.5 5.9 -6.3 532.8 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.122 -0.410 55.320 + 140 2002 12 21 0 4 38 0 2.0000 157.7 1346.7 1022.1 -76.2 98.9 1.1 177.9 149.5 5.8 -6.3 532.8 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.304 + 141 2002 12 21 0 4 40 0 2.0000 157.7 1347.1 1022.1 -75.0 98.2 1.3 177.9 149.5 5.8 -6.3 532.9 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.289 + 142 2002 12 21 0 4 42 0 2.0000 157.7 1347.5 1022.2 -73.0 97.7 1.5 177.9 149.5 5.8 -6.3 533.0 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.273 + 143 2002 12 21 0 4 44 0 2.0000 157.7 1347.9 1022.3 -73.3 100.7 1.7 177.9 149.5 5.7 -6.3 533.1 77.1 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.257 + 144 2002 12 21 0 4 46 0 2.0000 157.7 1348.3 1022.4 -73.9 103.2 1.9 177.9 149.5 5.7 -6.3 533.2 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.241 + 145 2002 12 21 0 4 48 0 2.0000 157.7 1348.7 1022.4 -74.1 105.2 2.0 177.9 149.5 5.7 -6.4 533.2 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.226 + 146 2002 12 21 0 4 50 0 2.0000 157.7 1349.1 1022.5 -73.8 106.5 2.2 177.9 149.5 5.7 -6.4 533.3 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.121 -0.410 55.210 + 147 2002 12 21 0 4 52 0 2.0000 157.7 1349.6 1022.6 -73.1 107.1 2.4 177.9 149.5 5.6 -6.4 533.4 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.195 + 148 2002 12 21 0 4 54 0 2.0000 157.7 1350.0 1022.6 -71.8 107.8 2.5 177.9 149.5 5.6 -6.4 533.5 77.2 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.179 + 149 2002 12 21 0 4 56 0 2.0000 157.7 1350.4 1022.7 -70.2 107.9 2.7 177.9 149.5 5.6 -6.4 533.5 77.3 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.164 + 150 2002 12 21 0 4 58 0 2.0000 157.7 1350.9 1022.8 -70.7 107.3 2.9 177.9 149.5 5.5 -6.4 533.6 77.3 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.148 + 151 2002 12 21 0 5 0 0 2.0000 157.7 1351.4 1022.8 -70.9 108.6 3.0 177.9 149.5 5.5 -6.4 533.7 77.3 151.6 151.6 151.6 151.6 0.0 0.0 0.0 0.0 93.2 106.6 3.120 -0.410 55.133 diff --git a/srcTests/auto_test/run_all_tests.sh b/srcTests/auto_test/run_all_tests.sh index 1dc93e69..41ef2322 100755 --- a/srcTests/auto_test/run_all_tests.sh +++ b/srcTests/auto_test/run_all_tests.sh @@ -6,40 +6,41 @@ get_help(){ printf " ------------------------------------------------------------------------------------ -> This script will automatically compile GITM - run all tests scripts located within srcTests/auto_test/ +> This script will automatically compile GITM and + run the test cases located within srcTests/auto_test/ + - All UAM files matching the pattern UAM.*.test + are automatically tested on GitHub -> New UAM.in files should be placed within this folder, - with the naming convention UAM.in.__.test - Information regarding the test configuration may be added, - though no spaces can be used. +> When adding a new feature, it is recommended to create a test. + - To do this, first create a UAM.in file which uses the new feature. + - Then, run this script with: + > ./run_all_tests.sh -d -c --save_solution -o [your uam file] + - Add a few words to the file name to explain the test. See below for more. + - Please try to keep the numbers increasing sequentially, if possible. Additional notes about the test may be added. Name must conform to: - UAM.*.##.test + UAM.in.##.*.test and no spaces can be added. Numbers do not need to be increasing, but will be useful -when comparing outputs. +when comparing outputs. It is recommended to follow the pattern: + UAM.in.##.[anything_you_want].test ------------------------------------------------------------------------------------ Usage: ------ +> First, from root of repository, install GITM with './Config.pl [...]' +> Next, 'cd srcTests/auto_test/' + - To just check that the code compiles and all tests run, use: > ./run_all_tests.sh -- If a test fails and you have made edits, you don't need to re-config: - > ./run_all_tests.sh --skip_config - -- For a sanity test, you can force re-configuring & re-compiling everything in - debug mode with: - > ./run_all_tests.sh -c -d +- If a test fails and you have made edits, you don't need to re-run every test. + (substitute for another test): + > ./run_all_tests.sh --only UAM.in.00.default.test -- When making large changes that could affect outputs, it may be useful to - compare with the latest release. - First, commit your changes then 'git checkout main'. Save the outputs from - the latest release with: - > ./run_all_tests.sh --save_to testoutputs_default - Then, checkout your branch 'git checkout branch_name' and compare the results with: - > ./run_all_tests.sh --compare_with testoutputs_default +- For a sanity check, you can force the code to be re-compiled with the (-c/--clean) + flag: + > ./run_all_tests.sh -c ------------------------------------------------------------------------------------ Arguments: @@ -47,63 +48,183 @@ Arguments: [none] run automatically with defaults. -h, --help see this information - -d, --debug Configure & compile GITM in -debug - -c, --clean run a 'make clean' before make-ing? - --skip_config skip running Config.pl? - --compare_with [path] Path to the run directory which has outputs - from all tests (not implemented yet) - --save_to [path] Save outputs? Useful to compare when making - changes that could affect outputs. (not implemented yet) + -c, --clean Run a 'make clean' before make-ing? + -u, --uninstall Force a 'make distclean' before running? + This effectively uninstalls GITM before running. + Useful when dependencies change, or when a lot of + changes have been made (by you or git). + * Will only work with gfortran10 & in debug mode. * + -o, --only Only run this UAM test file. + Useful if a higher number test has failed. + By default, all tests are run alphabetically. + --nocompare Default configuration diff's the log file. + Use this if you want to only do a run & not + check the output. + --save_solution Rewrite (or create) reference solution? + - Similar to the SWMF's '-BLESS'. + - Will take a moment to rewrite a solution in case + this is set erroreously. + - If a test was overwritten by mistake, use + 'git restore' to put it back. + --oversubscribe Run 'mpirun' with the '--oversubscribe' flag? + This is necessary on GitHub's CI/CD servers, but + is not be necessary for *most* users. As some MPI + libraries implement this differently, this is + off by default. " exit 1 +} + +warnsavesolution(){ + # refactored to clean up arg parsing + # This is only called if --savesolutions is set + + printf " +!!!!!!!!!!!!!!!!! WARNING !!!!!!!!!!!!!!!!! + +Using --save_solution will overwrite the reference logfiles + +Only use this if you know what you are doing. + +If you just created a new test, run with -o/--only +to save a solution for the test you created. + +Cancel with Ctrl+C + +" + sleep 4 + + return } -do_tests(){ - # setup run directory +checkoutputs(){ + # refactored for cleanliness + + if [ $do_save = true ]; then + cp UA/data/log*.dat ../ref_solns/log.$test_uam + echo + echo + echo " Created ref solution: log." $test_uam + + return; + fi + + if [ $do_compare = true ]; then + echo + ../../../share/Scripts/DiffNum.pl -r=5e-5 -a=1e-1 -t ../ref_solns/log.$test_uam UA/data/log*.dat - cd ../../ + if [ $? = 0 ]; then + # test was a success. no differences found. + return - if [ $config = true ]; then - ./Config.pl -install -earth -compiler=gfortran10 $debug + else + echo + echo " ============ ERROR!!!!! ============" + echo " Output differs from reference solution." + echo " Something has gone terribly wrong!!" + rm GITM.DONE + return fi + + fi + +} + +run_a_test(){ + + printf "\n\n>> Testing with $test_uam ...\n" + # Copy UAM + ln -sf $test_uam UAM.in + rm -f GITM.DONE + + # Run GITM, stop if error. + mpirun -np 4 $oversubscribe ./GITM.exe + + # this will either save, or diff, the output log files. + # (double sanity-check): only run if GITM.DONE exists & above exited with no error code. + if [[ -f GITM.DONE && $? = 0 ]]; then + checkoutputs + fi + + if [ -f GITM.DONE ]; then + printf "\n\n>>> $test_uam ran successfully! <<< \n\n" + mv $test_uam $test_uam.success + mv UA/data/log*.dat UA/data/log_$test_uam.success + rm -f GITM.DONE + else + printf "\n\n>>> $test_uam UNSUCCESSFUL! <<< \n\n EXITING\n\n" + mv UA/data/log*.dat log_$test_uam.fail + exit 1 + fi + +} + +do_tests(){ + # Configure & compile + cd ../../ if [ $clean = true ]; then make clean + elif [ $distclean = true ]; then + make distclean fi - make - - if [ ! -f run/GITM.exe ]; then - # only make rundir if it does not already exist - make rundir + if [ $config = true ]; then + ./Config.pl -install -earth -compiler=gfortran10 $debug + fi + + make -j + + if [ $? != 0 ]; then + echo + echo "Could not compile!" + echo "The tests have failed. Exiting." + exit 1 fi - cp -fr run srcTests/auto_test/ + + # make GITM/run to srcTest/auto_test/run + # - Old rundir's can cause unintended issues. + # - Rename GITM/run it if it exists & make a new rundir + if [[ -d run ]]; then + echo + echo " ===========================================================" + echo " Found a run directory at GITM's root folder!!" + echo " Moving its contents to run_madebytestscript/, just in case" + echo " You have 10 seconds to cancel ..." + echo + echo " > ls" $(pwd)"/run" + ls run/ + sleep 10 + + mv run run_madebytestscript + fi + + # Cnsecutive test runs won't have to sleep for 10 seconds + # Since we can't tell when (or how) srcTest/auto_test/run was made, replace it + make rundir + rm -rf srcTests/auto_test/run + mv run srcTests/auto_test/ # Copy the test files into run/ cd srcTests/auto_test/ - cp UAM* run/ + rm -f run/UAM* + cp UAM.*.test run/ # begin running: cd run/ - for test_uam in UAM.*.test; do - printf "\n\n>> Testing with $test_uam ...\n" - # Copy UAM - cp $test_uam UAM.in - - # Run GITM, stop if error. - mpirun -np 4 ./GITM.exe - if [ $? -eq 0 ]; then - printf "\n\n>>> $test_uam ran successfully! <<< \n\n" - mv $test_uam $test_uam.success - else - printf "\n\n>>> $test_uam UNSUCCESSFUL! <<< \n\n EXITING\n\n" - exit 1 - fi - done - exit 0 + if [ $onlyone = false ]; then + for test_uam in UAM.*.test; do + run_a_test + done + exit 0 + else # if we are only running one UAM file + test_uam=$onlyone + run_a_test + exit 0 + fi } @@ -112,10 +233,13 @@ do_tests(){ debug="" clean=false -config=true +distclean=false +config=false +onlyone=false +oversubscribe="" do_save=false -do_compare=false +do_compare=true while [[ $# -gt 0 ]]; do case "$1" in @@ -123,47 +247,69 @@ while [[ $# -gt 0 ]]; do get_help exit 1 ;; + -d|--debug) echo "Using -debug" debug="-debug" shift ;; + -c|--clean) echo "Forcing a 'make clean' before compiling!" clean=true shift ;; - --skip_config) - echo "skipping config!" - config=false + + -u|--uninstall) + echo "Uninstalling with 'make distclean' before running!" + distclean=true + config=true + shift + ;; + + --nocompare) + do_compare=false + echo "Not checking outputs!" shift ;; - --compare_with) - if [[ -d "$2" ]]; then - echo "Comparing with" $2 - compare_dir=$2 - else - echo "ERROR: --compare_with directory $2 not found!" - exit 1 - fi - shift 2 + + --save_solution) + # warnsavesolution is called after args are all parsed, before running. + do_save=true + shift ;; - --save_to) - if [[ -d "$2" ]]; then - echo "--save_to directory $2 already exists! Waiting 5 seconds then overwriting." - echo " cancel with 'Ctrl C'" - sleep 5 - compare_dir=$2 + + -o|--only) + if [ -e "$2" ]; then + echo "Only running test: $2" + onlyone=$2 else - echo "ERROR: --compare_with directory $2 not found!" + echo "ERROR!! Testfile $2 does not appear to exist!" exit 1 fi shift 2 ;; - esac + --oversubscribe) + echo "Oversubscribing! Using 4 threads." + oversubscribe="--oversubscribe" + shift + ;; + + *) + echo "Unrecognized argument: $1" + if [ -e $1 ]; then echo "Run with '-o $1' to test one file"; fi + exit 1 + + # end arg parsing + esac done +# get mad about overwriting ref solutions +if [ $do_save = true ]; then warnsavesolution; fi + +# wait a sec to show users that settings are being used +sleep 1.5 do_tests -done \ No newline at end of file +done diff --git a/srcTests/auto_test/swmf_test3.sh b/srcTests/auto_test/swmf_test3.sh index 59bf27fb..6f2609eb 100755 --- a/srcTests/auto_test/swmf_test3.sh +++ b/srcTests/auto_test/swmf_test3.sh @@ -8,21 +8,30 @@ get_help(){ > This script will automatically run SWMF test3 (UA coupling) > Just input a directory where to put the files, and the rest will be automatic. - +> You can either move this script & it will 'git clone' GITM, or if it is run from + GITM/srcTests/auto_test, it will copy the local version of GITM to test. ------------------------------------------------------------------------------------ -> Example workflows (All using the -debug flag): -------------------- +> Example workflow/usage examples (All using the -debug flag): +-------------------------------------------------------------- + +- You just made changes to your local copy of GITM and want to check they work + before pushing. This is the most common use case. + # Go to this folder, run & put things into 'test3': + > pwd + /home/[you]/Documents/GITM + > cd srcTests/auto_test/ + > ./swmf_test3.sh -p run_test3 -O 0 -- You just made changes on a GITM branch "couplefix", which have been pushed to +- You made changes on a GITM branch 'couplefix', which have been pushed to GITMCode/GITM, and *have not run this before*. - - Assuming standalone GITM and SWMF will go into ~/Documents: + # Assuming standalone GITM and SWMF will go into ~/Documents: > pwd /home/[you]/Documents/GITM > ls ../ [Make sure there is NO SWMF here!] - - Clone the SWMF, switch to the correct GITM branch, just compile: + # Clone the SWMF, switch to the correct GITM branch, just check if it compiles (-O 0): > ./srcTests/auto_test/swmf_test3.sh -d -b couplefix -O 0 -p ../ - The step above did not compile. You made changes to ~/Documents/GITM and want to test @@ -30,10 +39,10 @@ get_help(){ > pwd /home/[you]/Documents/GITM - - Copy your changes to the SWMF: - > cp -r * ../SWMF/UA/GITM/ + # Copy your changes to the SWMF: + > cp -r * ../SWMF/UA/GITM/ - - Run compilation test, do not pull SWMF or checkout a different GITM branch: + # Run compilation test, do not pull SWMF or checkout a different GITM branch: > ./srcTests/auto_test/swmf_test3.sh -d --skip_config -c -O 0 ../SWMF - The SWMF did compile! Now run test3 with -O3 (so that it gets done faster): @@ -42,7 +51,7 @@ get_help(){ > ./srcTests/auto_test/swmf_test3.sh -d -c ../SWMF - - If the 'diff' files are empty, good job! If not, something in GITM has changed. + # If the 'diff' files are empty, good job! If not, something in the outputs has changed. If the diff files are not printed, the test did not complete. See the run log with: > tail -n 50 ../SWMF/run_test/runlog @@ -61,38 +70,64 @@ Arguments: --skip_config Skip running Config.pl? --pull Run a 'gitall pull', updating the SWMF and GITM repos? (-b, --branch) NAME Branch name to pull from (on GITMCode/GITM.git). - - If left empty, "develop" is used. Branch is only - used it --pull is used as well, otherwise GITM + - If left empty, 'develop' is used. Branch is only + used if --pull is used as well, otherwise GITM is left in place! - (-O/--omax) # Optimization level. Use a space, please. + (-O/--omax) ## Optimization level & just_compile. Use a space, please. - Example: '-O 0' for fastest compilation. If this is used, we will not run test3. Just compile. + - By default, -O3 is used, in most cases. Set this to '-O 3' to + 'just_compile' and exit, not running test3. [-p/--path] PATH Path to clone SWMF to and run from. Required! - This can be an existing path. - -p/--path flags optional, but if no arg is used, PATH is assumed to be the last argument. + - If the path provided is not set with -p/--path, and the + path does not exist,the script will print help & exit. + + +This is tested, but may not be free from bugs. Commit & push, or backup, before running. +Reach out with questions/comments/problems. -(This is tested, but may not be free from bugs. Commit & push before running.) -(Reach out with questions/comments/problems.) +tldr: you probably just want to make sure SWMF compiles. do this: + > cd srcTests/auto_test/ + > ./swmf_test3.sh -p run_test3 -O 0 " -exit 1 } do_tests(){ # setup run directory - + + # First, check to see if we're running from GITM's test folder + if [ -d ../../../GITM ]; then + # If so, get GITM's absolute path for copying later + gitm_path=$(pwd)/../../../GITM/ + fi + + # get into the SWMF folder cd $testdir + if [[ -d SWMF/ ]]; then + cd SWMF; + elif [[ -d ../SWMF/ ]]; then + cd ../SWMF #Do nothing + else + git clone --depth 1 git@github.com:SWMFSoftware/SWMF.git + cd SWMF + fi - if [ -d SWMF/ ]; then cd SWMF; fi + # Get a specific version of GITM, if desired + if [[ $gitm_path != "false" ]]; then # local gitm + rsync -a --exclude='srcTests' $gitm_path UA/GITM ; + # "uninstall" + cd UA/GITM + make distclean + cd ../../ - # Check if we're inside swmf folder with git status: - git status --porcelain - if [ $? -eq 0 ]; then - # We're probably within SWMF... Don't need to clone. + else # pull a branch if [ dopull == true ]; then echo "Checking out GITM branch $branch" sleep 2 @@ -104,41 +139,33 @@ do_tests(){ sleep 2 gitall pull fi - - else - # Probably not inside an existing SWMF folder... - git clone --depth 1 git@github.com:SWMFSoftware/SWMF.git - cd SWMF fi - - + # Go thru options: if [ $config = true ]; then if [ -f Makefile.def ]; then - # Just make clean if running config, don't uninstall. + # Only clean if running config, don't uninstall. make clean fi - ./Config.pl -install $debug $OFlags -v=UA/GITM fi - - if [ $clean = true ]; then make clean fi - if [ just_compile = true ]; then - make -j + # run test3 + if [ $just_compile == true ]; then + make -j test3_compile else make -j test3 fi if [ $? -eq 0 ]; then printf "\n\n>>> Success! <<< \n\n" - mv $test_uam $test_uam.success else printf "\n\n>>> FAIL!! See above for more information. <<< \n\n EXITING\n\n" + printf "If the only error is differing outputs, you may be in the clear." exit 1 fi @@ -160,8 +187,12 @@ just_compile=false testdir="" +# not set by user; just used by this script +path_set_explicit=false +gitm_path=false -while [[ $# -gt 1 ]]; do +while [[ $# -gt 0 ]]; do + echo $1 case "$1" in -h|--help) get_help @@ -183,39 +214,49 @@ while [[ $# -gt 1 ]]; do shift ;; -O|--omax) - echo "Using max. optimization level -O$2" + echo "Using optimization level -O$2" OFlags="-O$2" just_compile=true - shift 2 + shift ;; -b|--branch) - echo "Using GITM branch names $2" + echo "Using GITM branch named $2" branch=$2 - shift 2 + shift ;; -p|--path) - echo "Using GITM branch names $2" - branch=$2 - shift 2 + echo "Using the provided path: $2" + testdir=$2 + path_set_explicit=true + shift ;; esac - + shift done -## Get directory. remaining argument if not set already -if [ $# -gt 0 ]; then - if [[ -d $1 ]]; then - echo "Found directory $1" - testdir=$1 - else - echo "Directory $1 not found! Exiting." - echo "Found remaining $# arguments" - echo "There could be a probelm with your arguments given!" - echo "Try again please. Bye." - exit 1 - fi +# Check if the directory is explicitly set +if [[ "$path_set_explicit" != true ]]; then + testdir=$1 fi +## Check if directory exists +if [[ -d $testdir ]]; then + echo "Found directory: " $testdir +else + if [ $path_set_explicit == true ]; then + echo "Making directory: " testdir + mkdir -p $testdir + else + get_help + echo + echo "=>> Provided directory: " $testdir " does not exist!" + echo " Refusing to make unless specified by --path." + echo "Exiting!" + exit 1 + fi +fi + + echo "Waiting 3 seconds then starting." printf " Your inputs: @@ -224,7 +265,7 @@ branch= $branch dopull= $dopull clean= $clean config= $config -OFlags= $OFLAGS +OFlags= $OFlags just_compile= $just_compile testdir= $testdir @@ -232,4 +273,4 @@ testdir= $testdir sleep 3 do_tests -done \ No newline at end of file +done diff --git a/srcUser/add_sources_mars_thermal.f90 b/srcUser/add_sources_mars_thermal.f90 index d34c1ca5..8bf4a13f 100644 --- a/srcUser/add_sources_mars_thermal.f90 +++ b/srcUser/add_sources_mars_thermal.f90 @@ -36,7 +36,6 @@ subroutine add_sources !! To turn off EuvHeating, turn UseSolarHeating=.false. in UAM.in !! To turn off JouleHeating, turn UseJouleHeating=.false. in UAM.in - !! To turn off AuroralHeating, turn Use=AuroralHeating.false. in UAM.in !! To turn off Conduction, turn UseConduction=.false. in UAM.in Temperature(1:nLons, 1:nLats, 1:nAlts, iBlock) = & @@ -45,8 +44,8 @@ subroutine add_sources /TempUnit(1:nLons, 1:nLats, 1:nAlts) & + EuvHeating(1:nLons, 1:nLats, 1:nAlts, iBlock) & - RadCooling(1:nLons, 1:nLats, 1:nAlts, iBlock) & - + AuroralHeating + JouleHeating) + & - Conduction + ChemicalHeatingRate + + JouleHeating) & + + ChemicalHeatingRate ! write(*,*) Temperature(1,1,1:nAlts,1) @@ -84,7 +83,6 @@ subroutine add_sources temperature(iLon, iLat, iAlt, iBlock), & EuvHeating(iLon, iLat, iAlt, iBlock)*dt, & RadCooling(iLon, iLat, iAlt, iBlock)*dt, & - AuroralHeating(iLon, iLat, iAlt)*dt, & JouleHeating(iLon, iLat, iAlt)*dt, & Conduction(iLon, iLat, iAlt), & ChemicalHeatingRate(iLon, iLat, iAlt) @@ -103,7 +101,6 @@ subroutine add_sources EuvHeating(1, 1, iAlt, iBlock)*dt, & ! NOCooling(1,1,iAlt)*dt, & ! OCooling(1,1,iAlt)*dt, & - AuroralHeating(1, 1, iAlt)*dt, & JouleHeating(1, 1, iAlt)*dt, & ChemicalHeatingRate(1, 1, iAlt), & Conduction(1, 1, iAlt), temperature(1, 1, iAlt, iBlock) @@ -116,7 +113,6 @@ subroutine add_sources sum(EuvHeating(1:nLons, 1:nLats, iAlt, iBlock))*dt, & sum(NOCooling(:, :, iAlt))*dt, & sum(OCooling(:, :, iAlt))*dt, & - sum(AuroralHeating(:, :, iAlt))*dt, & sum(JouleHeating(:, :, iAlt))*dt, & sum(Conduction(:, :, iAlt)) diff --git a/util/DATAREAD/srcIndices/Makefile b/util/DATAREAD/srcIndices/Makefile index ceefee77..9af75724 100644 --- a/util/DATAREAD/srcIndices/Makefile +++ b/util/DATAREAD/srcIndices/Makefile @@ -26,13 +26,13 @@ DEPEND: @perl ${SCRIPTDIR}/depend.pl -I${SHAREDIR} ${OBJECTS} LIB: DEPEND - make ${MY_LIB} + @make ${MY_LIB} @echo @echo ${MY_LIB} has been brought up to date. @echo ${MY_LIB}: ${OBJECTS} - rm -f ${MY_LIB} + @rm -f ${MY_LIB} ${AR} ${MY_LIB} ${OBJECTS} distclean: clean diff --git a/util/DATAREAD/srcIndices/ModIndices.f90 b/util/DATAREAD/srcIndices/ModIndices.f90 index 11d916c2..f7a41ea0 100644 --- a/util/DATAREAD/srcIndices/ModIndices.f90 +++ b/util/DATAREAD/srcIndices/ModIndices.f90 @@ -41,9 +41,11 @@ Module ModIndices integer, parameter :: onsetut_ = 24 integer, parameter :: onsetmlat_ = 25 integer, parameter :: onsetmlt_ = 26 + integer, parameter :: hpi_nh_ = 27 + integer, parameter :: hpi_sh_ = 28 integer, parameter :: MaxIndicesEntries = 60000 - integer, parameter :: nIndices = onsetmlt_ + integer, parameter :: nIndices = hpi_sh_ real, allocatable :: Indices_TV(:, :) integer, dimension(nIndices) :: nIndices_V = 0 diff --git a/util/DATAREAD/srcIndices/ModIndicesInterfaces.f90 b/util/DATAREAD/srcIndices/ModIndicesInterfaces.f90 index c85917c2..8c305d84 100644 --- a/util/DATAREAD/srcIndices/ModIndicesInterfaces.f90 +++ b/util/DATAREAD/srcIndices/ModIndicesInterfaces.f90 @@ -183,6 +183,32 @@ subroutine get_hpi_wotime(value, iOutputError) end subroutine get_hpi_wotime end interface + interface get_hpi_N + subroutine get_hpi_n_wtime(TimeIn, value, iOutputError) + use ModKind + real(Real8_) :: TimeIn + real, intent(out) :: value + integer, intent(out) :: iOutputError + end subroutine get_hpi_n_wtime + subroutine get_hpi_n_wotime(value, iOutputError) + real, intent(out) :: value + integer, intent(out) :: iOutputError + end subroutine get_hpi_n_wotime + end interface + + interface get_hpi_S + subroutine get_hpi_s_wtime(TimeIn, value, iOutputError) + use ModKind + real(Real8_) :: TimeIn + real, intent(out) :: value + integer, intent(out) :: iOutputError + end subroutine get_hpi_s_wtime + subroutine get_hpi_s_wotime(value, iOutputError) + real, intent(out) :: value + integer, intent(out) :: iOutputError + end subroutine get_hpi_s_wotime + end interface + interface get_hpi_calc subroutine get_hpi_calc_wtime(TimeIn, value, iOutputError) use ModKind diff --git a/util/DATAREAD/srcIndices/indices_library.f90 b/util/DATAREAD/srcIndices/indices_library.f90 index 4563912a..78cec3cb 100644 --- a/util/DATAREAD/srcIndices/indices_library.f90 +++ b/util/DATAREAD/srcIndices/indices_library.f90 @@ -3,13 +3,15 @@ ! --------------------------------------------------- subroutine check_all_indices(TimeIn, iOutputError) - + ! Just checks time. use ModIndices + implicit none real(Real8_), intent(in) :: TimeIn integer, intent(out) :: iOutputError integer :: iIndex + integer, dimension(7) :: itime iOutputError = 0 @@ -21,11 +23,26 @@ subroutine check_all_indices(TimeIn, iOutputError) if ((IndexTimes_TV(1, iIndex) - TimeIn) > & 5.0*(IndexTimes_TV(2, iIndex) - IndexTimes_TV(1, iIndex))) then iOutputError = 3 + write(*, *) 'Error in index file times, before start :' + write(*, *) 'index, first time, time in : ' + write(*, *) iIndex, IndexTimes_TV(1, iIndex), TimeIn + call time_real_to_int(IndexTimes_TV(1, iIndex), iTime) + write(*, *) 'First Index Time : ', iTime + call time_real_to_int(TimeIn, iTime) + write(*, *) 'TimeIn : ', iTime endif if ((TimeIn - IndexTimes_TV(nIndices_V(iIndex), iIndex)) > & 5.0*(IndexTimes_TV(2, iIndex) - IndexTimes_TV(1, iIndex))) then - iOutputError = 3 + iOutputError = 4 + write(*, *) 'Error in index file times, after end :' + write(*, *) 'index, last time, time in : ' + write(*, *) iIndex, IndexTimes_TV(nIndices_V(iIndex), iIndex), TimeIn + write(*, *) 'Number of values : ', nIndices_V(iIndex) + call time_real_to_int(IndexTimes_TV(nIndices_V(iIndex), iIndex), iTime) + write(*, *) 'Last Index Time : ', iTime + call time_real_to_int(TimeIn, iTime) + write(*, *) 'TimeIn : ', iTime endif endif enddo @@ -822,7 +839,7 @@ subroutine get_f107a_wotime(value, iOutputError) end subroutine get_f107a_wotime !------------------------------------------------------------------------------ -! Hemispheric Power Index +! Hemispheric Power Index (both hemispheres) !------------------------------------------------------------------------------ subroutine get_hpi_wtime(TimeIn, value, iOutputError) @@ -863,6 +880,84 @@ subroutine get_hpi_wotime(value, iOutputError) end subroutine get_hpi_wotime +! North +subroutine get_hpi_n_wtime(TimeIn, value, iOutputError) + + use ModKind + use ModIndices + + implicit none + + real(Real8_), intent(in) :: TimeIn + real, intent(out) :: value + integer, intent(out) :: iOutputError + + call get_index(hpi_nh_, TimeIn, 0, value, iOutputError) + +end subroutine get_hpi_n_wtime + +subroutine get_hpi_n_wotime(value, iOutputError) + + use ModKind + use ModIndices + + implicit none + + real, intent(out) :: value + integer, intent(out) :: iOutputError + + iOutputError = 0 + + if (SavedTime < 0.0) then + value = -1.0e32 + iOutputError = 3 + return + else + value = SavedIndices_V(hpi_nh_) + iOutputError = SavedErrors_V(hpi_nh_) + endif + +end subroutine get_hpi_n_wotime + +! North +subroutine get_hpi_s_wtime(TimeIn, value, iOutputError) + + use ModKind + use ModIndices + + implicit none + + real(Real8_), intent(in) :: TimeIn + real, intent(out) :: value + integer, intent(out) :: iOutputError + + call get_index(hpi_sh_, TimeIn, 0, value, iOutputError) + +end subroutine get_hpi_s_wtime + +subroutine get_hpi_s_wotime(value, iOutputError) + + use ModKind + use ModIndices + + implicit none + + real, intent(out) :: value + integer, intent(out) :: iOutputError + + iOutputError = 0 + + if (SavedTime < 0.0) then + value = -1.0e32 + iOutputError = 3 + return + else + value = SavedIndices_V(hpi_sh_) + iOutputError = SavedErrors_V(hpi_sh_) + endif + +end subroutine get_hpi_s_wotime + subroutine get_hpi_calc_wtime(TimeIn, value, iOutputError) use ModKind @@ -982,7 +1077,7 @@ subroutine get_kp_wotime(value, iOutputError) iOutputError = 3 return else - value = SavedIndices_V(kp_) + value = Indices_TV(1, kp_) iOutputError = SavedErrors_V(kp_) endif @@ -1348,4 +1443,3 @@ subroutine get_jh_calc_wotime(value, iOutputError) endif end subroutine get_jh_calc_wotime - diff --git a/util/EMPIRICAL/Makefile b/util/EMPIRICAL/Makefile index 84087f89..7a5e1ddf 100644 --- a/util/EMPIRICAL/Makefile +++ b/util/EMPIRICAL/Makefile @@ -1,10 +1,8 @@ clean: -@(cd srcEE; make clean) - -@(cd srcIE; make clean) -@(cd srcUA; make clean) distclean: -@(cd srcEE; make distclean) - -@(cd srcIE; make distclean) -@(cd srcUA; make distclean) diff --git a/util/EMPIRICAL/srcIE/AMIE_Library.f90 b/util/EMPIRICAL/srcIE/AMIE_Library.f90 deleted file mode 100644 index d9d93f1b..00000000 --- a/util/EMPIRICAL/srcIE/AMIE_Library.f90 +++ /dev/null @@ -1,511 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -!---------------------------------------------------------------------- - -subroutine AMIE_SetFileName(cFileNameIn) - use ModAMIE_Interface - implicit none - character(len=*), intent(in) :: cFileNameIn - AMIE_FileName = cFileNameIn -end subroutine AMIE_SetFileName - -!---------------------------------------------------------------------- - -subroutine AMIE_GetFileName(cFileNameOut) - use ModAMIE_Interface - implicit none - character(len=iCharLenIE_), intent(out) :: cFileNameOut - cFileNameOut = AMIE_FileName -end subroutine AMIE_GetFileName - -!---------------------------------------------------------------------- - -subroutine AMIE_GetnTimes(nTimesOut) - use ModAMIE_Interface - implicit none - integer, intent(out) :: nTimesOut - nTimesOut = AMIE_nTimes -end subroutine AMIE_GetnTimes - -!---------------------------------------------------------------------- - -subroutine AMIE_GetnMLTs(nMLTsOut) - use ModAMIE_Interface - implicit none - integer, intent(out) :: nMLTsOut - nMLTsOut = AMIE_nMLTs -end subroutine AMIE_GetnMLTs - -!---------------------------------------------------------------------- - -subroutine AMIE_GetnLats(nLatsOut) - use ModAMIE_Interface - implicit none - integer, intent(out) :: nLatsOut - nLatsOut = AMIE_nLats -end subroutine AMIE_GetnLats - -!---------------------------------------------------------------------- - -subroutine AMIE_GetLats(LatsOut) - - use ModAMIE_Interface - implicit none - - real, dimension(AMIE_nMlts, AMIE_nLats, AMIE_nBLKs), intent(out) :: LatsOut - integer :: i, j - - do i = 1, AMIE_nMLTs - do j = AMIE_nLats, 1, -1 - LatsOut(i, j, AMIE_North_) = AMIE_Lats(AMIE_nLats - j + 1) - enddo - LatsOut(i, 1:AMIE_nLats, AMIE_South_) = -AMIE_Lats(1:AMIE_nLats) - enddo - -end subroutine AMIE_GetLats - -!---------------------------------------------------------------------- - -subroutine AMIE_GetMLTs(MLTsOut) - - use ModAMIE_Interface - implicit none - - real, dimension(AMIE_nMlts, AMIE_nLats, AMIE_nBLKs), intent(out) :: MLTsOut - integer :: j - - do j = 1, AMIE_nLats - MLTsOut(1:AMIE_nMLTs, j, 1) = AMIE_MLTs(1:AMIE_nMLTs) - MLTsOut(1:AMIE_nMLTs, j, 2) = AMIE_MLTs(1:AMIE_nMLTs) - enddo - -end subroutine AMIE_GetMLTs - -!---------------------------------------------------------------------- -! If there is an error, report it and crash -!---------------------------------------------------------------------- - -subroutine report_error_and_crash(iError, StringSource) - - use ModErrors - implicit none - - integer, intent(in) :: iError - character(len=*) :: StringSource - - if (iError /= 0) then - write(*, *) "Error in AMIE_Library!" - write(*, *) "Source : ", StringSource - write(*, *) cErrorCodes(iError) - isOk = .false. - endif - -end subroutine report_error_and_crash - -!---------------------------------------------------------------------- -! New method! -! East/West potential(y) -!---------------------------------------------------------------------- - -subroutine AMIE_GetPotentialY_New(TimeIn, Method, PotentialYOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: PotentialYOut - integer, intent(out) :: iError - - call AMIE_GetValue_New2(iPotentialY_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetPotentialY_New") - PotentialYOut = AMIE_Interpolated - -end subroutine AMIE_GetPotentialY_New - -!---------------------------------------------------------------------- -! New method! -! Overall potential -!---------------------------------------------------------------------- - -subroutine AMIE_GetPotential_New(TimeIn, Method, PotentialOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: PotentialOut - integer, intent(out) :: iError - - call AMIE_GetValue_New2(iPotential_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetPotential_New2") - PotentialOut = AMIE_Interpolated - -end subroutine AMIE_GetPotential_New - -!---------------------------------------------------------------------- -! New method! -! Electron Energy Flux -!---------------------------------------------------------------------- - -subroutine AMIE_GetEFlux_New(TimeIn, Method, EFluxOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: EFluxOut - integer, intent(out) :: iError - - call AMIE_GetValue_New2(iEle_diff_eflux_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetEFlux_New") - EFluxOut = AMIE_Interpolated - -end subroutine AMIE_GetEFlux_New - -!---------------------------------------------------------------------- -! New method! -! Electron Average Energy -!---------------------------------------------------------------------- - -subroutine AMIE_GetAveE_New(TimeIn, Method, AveEOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: AveEOut - integer, intent(out) :: iError - - call AMIE_GetValue_New2(iEle_diff_avee_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetAveE_New") - AveEOut = AMIE_Interpolated - -end subroutine AMIE_GetAveE_New - -!---------------------------------------------------------------------- -! Ion Energy Flux -!---------------------------------------------------------------------- - -subroutine AMIE_GetIonEFlux_New(TimeIn, Method, IonEFluxOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: IonEFluxOut - integer, intent(out) :: iError - - if (useIons) then - call AMIE_GetValue_New2(iIon_diff_eFlux_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetIonEFlux_New") - IonEFluxOut = AMIE_Interpolated - else - IonEFluxOut = rDummyeFlux - endif - -end subroutine AMIE_GetIonEFlux_New - -!---------------------------------------------------------------------- -! Ion Average Energy -!---------------------------------------------------------------------- - -subroutine AMIE_GetIonAveE_New(TimeIn, Method, IonAveEOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: IonAveEOut - integer, intent(out) :: iError - - if (useIons) then - call AMIE_GetValue_New2(iIon_diff_avee_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetIonAveE_New") - IonAveEOut = AMIE_Interpolated - else - IonAveEOut = rDummyIonAveE - endif - -end subroutine AMIE_GetIonAveE_New - -!---------------------------------------------------------------------- -! Electron Wave Energy Flux -!---------------------------------------------------------------------- - -subroutine AMIE_GetEleWaveEflux_New(TimeIn, Method, EleWaveEfluxOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: EleWaveEFluxOut - integer, intent(out) :: iError - - if (useIons) then - call AMIE_GetValue_New2(iEle_wave_eflux_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetEleWaveEflux_New") - EleWaveEfluxOut = AMIE_Interpolated - else - EleWaveEfluxOut = rDummyeFlux - endif - -end subroutine AMIE_GetEleWaveEflux_New - -!---------------------------------------------------------------------- -! Electron Wave Average Energy -!---------------------------------------------------------------------- - -subroutine AMIE_GetEleWaveAveE_New(TimeIn, Method, EleWaveAveEOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: EleWaveAveEOut - integer, intent(out) :: iError - - if (useIons) then - call AMIE_GetValue_New2(iEle_wave_avee_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetEleWaveAveE_New") - EleWaveAveEOut = AMIE_Interpolated - else - EleWaveAveEOut = rDummyAveE - endif - -end subroutine AMIE_GetEleWaveAveE_New - -!---------------------------------------------------------------------- -! Electron Mono Energy Flux -!---------------------------------------------------------------------- - -subroutine AMIE_GetEleMonoEflux_New(TimeIn, Method, EleMonoEfluxOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: EleMonoEFluxOut - integer, intent(out) :: iError - - if (useIons) then - call AMIE_GetValue_New2(iEle_mono_eflux_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetEleMonoEflux_New") - EleMonoEfluxOut = AMIE_Interpolated - else - EleMonoEfluxOut = rDummyeFlux - endif - -end subroutine AMIE_GetEleMonoEflux_New - -!---------------------------------------------------------------------- -! Electron Mono Average Energy -!---------------------------------------------------------------------- - -subroutine AMIE_GetEleMonoAveE_New(TimeIn, Method, EleMonoAveEOut, iError) - - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method - real, dimension(AMIE_nMLTs, AMIE_nLats, AMIE_nBLKs), intent(out) :: EleMonoAveEOut - integer, intent(out) :: iError - - if (useIons) then - call AMIE_GetValue_New2(iEle_mono_avee_, TimeIn, Method, iError) - call report_error_and_crash(iError, "AMIE_GetEleMonoAveE_New") - EleMonoAveEOut = AMIE_Interpolated - else - EleMonoAveEOut = rDummyAveE - endif - -end subroutine AMIE_GetEleMonoAveE_New - -!---------------------------------------------------------------------- -! Get General Values -! - This has no output (except error) -! - it sets the variable AMIE_Interpolated -!---------------------------------------------------------------------- - -subroutine AMIE_GetValue_New2(iVarIn, TimeIn, Method, iError) - - use ModErrors - use ModAMIE_Interface - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: iVarIn - integer, intent(in) :: Method - integer, intent(out) :: iError - - integer :: iTime, i, j, iLat, iBLK, iL - logical :: IsDone - real*8 :: dT, VerySmall = 1.0e-6 - - iError = 0 - - do iBLK = AMIE_South_, AMIE_North_ - - IsDone = .false. - iTime = 1 - - do while (.not. IsDone) - if (TimeIn - AMIE_Time(iTime, iBLK) < VerySmall) IsDone = .true. - if ((iTime == AMIE_nTimes) .and. (.not. IsDone)) then - iTime = iTime + 1 - IsDone = .true. - endif - iTime = iTime + 1 - enddo - - if (iTime <= AMIE_nTimes + 1) then - - iTime = iTime - 1 - - if (iTime == 1) then - - ! If we are before the start time, allow users to extrapolate - ! up to 5 dT. - - dT = AMIE_Time(2, iBLK) - AMIE_Time(1, iBLK) - if (TimeIn + 5*dt < AMIE_Time(1, iBLK)) then - AMIE_Interpolated = -1.0e32 - iError = ecBeforeStartTime_ - return - endif - endif - else - dT = AMIE_Time(2, iBLK) - AMIE_Time(1, iBLK) - - ! If we are after the end time, allow users to extrapolate - ! up to 5 dT. - - if (TimeIn - 5*dt < AMIE_Time(AMIE_nTimes, iBLK)) then - iTime = AMIE_nTimes - else - AMIE_Interpolated = -1.0e32 - iError = ecAfterEndTime_ - return - endif - endif - - if (Method == AMIE_After_ .or. & - Method == AMIE_Closest_) then - - if (Method == AMIE_Closest_) then - if (iTime > 1) then - if (abs(TimeIn - AMIE_Time(iTime, iBLK)) > & - abs(TimeIn - AMIE_Time(iTime - 1, iBLK))) & - iTime = iTime - 1 - endif - endif - - if (iBLK == AMIE_South_) then - AMIE_Interpolated(1:AMIE_nMLTs, 1:AMIE_nLats, iBLK) = & - AMIE_Storage(iVarIn, 1:AMIE_nMLTs, 1:AMIE_nLats, iTime, iBLK) - else - ! Reverse the North block of AMIE data for now... - do iLat = AMIE_nLats, 1, -1 - AMIE_Interpolated(1:AMIE_nMLTs, iLat, iBLK) = & - AMIE_Storage(iVarIn, 1:AMIE_nMLTs, AMIE_nLats - iLat + 1, iTime, iBLK) - enddo - endif - - endif - - if (Method == AMIE_Interpolate_) then - ! This will do extrapolation if it is before the first time - if (iTime == 1) iTime = iTime + 1 - ! dT is the percentage of the way away from the current point - dT = (AMIE_Time(iTime, iBLK) - TimeIn)/ & - (AMIE_Time(iTime, iBLK) - AMIE_Time(iTime - 1, iBLK)) - - ! Use 1-dT for the selected point, since dt = 0 if you are exactly - ! on the selected point - if (iBLK == AMIE_South_) then - AMIE_Interpolated(1:AMIE_nMLTs, 1:AMIE_nLats, iBLK) = & - (1.0 - dt)*AMIE_Storage(iVarIn, 1:AMIE_nMLTs, 1:AMIE_nLats, iTime, iBLK) + & - dt*AMIE_Storage(iVarIn, 1:AMIE_nMLTs, 1:AMIE_nLats, iTime - 1, iBLK) - else - ! Reverse the 2nd block of AMIE data for now... - do iLat = AMIE_nLats, 1, -1 - iL = AMIE_nLats - iLat + 1 - AMIE_Interpolated(1:AMIE_nMLTs, iLat, iBLK) = & - (1.0 - dt)*AMIE_Storage(iVarIn, 1:AMIE_nMLTs, iL, iTime, iBLK) + & - dt*AMIE_Storage(iVarIn, 1:AMIE_nMLTs, iL, iTime - 1, iBLK) - enddo - endif - endif - - enddo - -end subroutine AMIE_GetValue_New2 - -!---------------------------------------------------------------------- -! Get All Values: -! - potential -! - e- average energy -! - e- total energy flux -! - ion average energy -! - ion total energy flux -!---------------------------------------------------------------------- - -subroutine get_AMIE_values(rtime) - - use ModEIE_Interface - implicit none - - real*8, intent(in) :: rtime - integer :: iError - - call AMIE_GetPotential_New(rtime, EIE_Interpolate_, EIEr3_HavePotential, iError) - call AMIE_GetAveE_New(rtime, EIE_Closest_, EIEr3_HaveAveE, iError) - call AMIE_GetEFlux_New(rtime, EIE_Closest_, EIEr3_HaveEFlux, iError) - if (useIons) then - call AMIE_GetIonAveE_New(rtime, EIE_Closest_, EIEr3_HaveIonAveE, iError) - call AMIE_GetIonEFlux_New(rtime, EIE_Closest_, EIEr3_HaveIonEFlux, iError) - else - EIEr3_HaveIonAveE = EIE_fill_IonAveE - EIEr3_HaveIonEFlux = EIE_fill_eFlux - endif - if (useWave) then - call AMIE_GetEleWaveAveE_New(rtime, EIE_Closest_, EIEr3_HaveWaveAveE, iError) - call AMIE_GetEleWaveEFlux_New(rtime, EIE_Closest_, EIEr3_HaveWaveEFlux, iError) - else - EIEr3_HaveWaveAveE = EIE_fill_AveE - EIEr3_HaveWaveEFlux = EIE_fill_eFlux - endif - if (useMono) then - call AMIE_GetEleMonoAveE_New(rtime, EIE_Closest_, EIEr3_HaveMonoAveE, iError) - call AMIE_GetEleMonoEFlux_New(rtime, EIE_Closest_, EIEr3_HaveMonoEFlux, iError) - else - EIEr3_HaveMonoAveE = EIE_fill_AveE - EIEr3_HaveMonoEFlux = EIE_fill_eFlux - endif - -end subroutine get_AMIE_values - -!---------------------------------------------------------------------- -! Get the secondary potential (this is the potential for the E/W direction) -!---------------------------------------------------------------------- - -subroutine get_AMIE_PotentialY(rtime) - - use ModEIE_Interface - implicit none - - real*8, intent(in) :: rtime - integer :: iError - - call AMIE_GetPotentialY_New(rtime, EIE_Interpolate_, EIEr3_HavePotential, iError) - -end subroutine get_AMIE_PotentialY diff --git a/util/EMPIRICAL/srcIE/ED_Interface.f90 b/util/EMPIRICAL/srcIE/ED_Interface.f90 deleted file mode 100644 index 874f777e..00000000 --- a/util/EMPIRICAL/srcIE/ED_Interface.f90 +++ /dev/null @@ -1,138 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -!----------------------------------------------------------------------------- -! -!----------------------------------------------------------------------------- - -subroutine ED_Init(error) - - implicit none - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - - ! Variables passed: - - integer, intent(out) :: error - - ! External Functions used: - - integer, external :: r_load_edep_lookup - - ! The subroutine: - - call init_all - - error = r_load_edep_lookup() - -end subroutine ED_Init - -!----------------------------------------------------------------------------- -! -!----------------------------------------------------------------------------- - -subroutine ED_Get_Grid(grid, PressureCoordinates, iError) - - implicit none - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - - ! Variables passed: - logical, intent(in) :: PressureCoordinates - real, dimension(altitudes), intent(out) :: grid(ALTITUDES) - integer, intent(out) :: iError - - ! External Functions used: - REAL, external :: R_EDEP_ALT_VALUE - - ! Local variables: - integer :: i - - iError = 0 - - if (.not. PressureCoordinates) then - - do i = 1, altitudes - - ! Get the values in meters (the "2") - - grid(i) = R_EDEP_ALT_VALUE(I, 2) - - enddo - - else - - do i = 1, altitudes - - ! Get the values in millibars (the "4") and convert to Pascals - - grid(i) = R_EDEP_ALT_VALUE(I, 4)*100.0 - - enddo - - endif - -end subroutine ED_Get_Grid - -!----------------------------------------------------------------------------- -! -!----------------------------------------------------------------------------- - -subroutine ED_Get_Grid_Size(npts) - - implicit none - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - - integer, intent(out) :: npts - - npts = altitudes - -end subroutine ED_Get_Grid_Size - -!----------------------------------------------------------------------------- -! -!----------------------------------------------------------------------------- - -subroutine ED_Get_Number_of_Energies(npts) - - implicit none - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - - integer, intent(out) :: npts - - npts = spectra_levels - -end subroutine ED_Get_Number_of_Energies - -!----------------------------------------------------------------------------- -! -!----------------------------------------------------------------------------- - -subroutine ED_Get_Energies(energies) - - implicit none - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - - REAL EMAT_SAVE(SPECTRA_LEVELS) - REAL DEMAT_SAVE(SPECTRA_LEVELS) - COMMON/R_DE/EMAT_SAVE, DEMAT_SAVE - - real, dimension(1:spectra_levels), intent(out) :: energies - real :: ED_Max_Energy, ED_Min_Energy, de, logmin - integer :: i - - ! Now we want to figure out what energies we are going to use: - - ED_Max_Energy = 5.0e5 - ED_Min_Energy = 10.0 - - de = (alog10(ED_Max_Energy) - alog10(ED_Min_Energy))/(spectra_levels - 1) - logmin = alog10(ED_Min_Energy) - - do i = 1, spectra_levels - energies(spectra_levels - (i - 1)) = 10.0**(logmin + (i - 1)*de) - enddo - -end subroutine ED_Get_Energies diff --git a/util/EMPIRICAL/srcIE/ED_ModInterface.f90 b/util/EMPIRICAL/srcIE/ED_ModInterface.f90 deleted file mode 100644 index 7f06ec2a..00000000 --- a/util/EMPIRICAL/srcIE/ED_ModInterface.f90 +++ /dev/null @@ -1,7 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -module ED_ModInterface - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - -end module ED_ModInterface diff --git a/util/EMPIRICAL/srcIE/ED_ModIons.f90 b/util/EMPIRICAL/srcIE/ED_ModIons.f90 deleted file mode 100644 index eb26ffd0..00000000 --- a/util/EMPIRICAL/srcIE/ED_ModIons.f90 +++ /dev/null @@ -1,14 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -module ModIons - - integer, parameter :: DFP = SELECTED_REAL_KIND(15, 307) - integer, parameter :: NLng = 72 ! number of geographic longitude - integer, parameter :: NLat = 28 ! number of geographic latitude - integer :: NAlt ! number of altitude - real(kind=DFP), dimension(:), allocatable :: glng, glat, alt - real(kind=DFP), dimension(:, :, :), allocatable :: IonizationRate - real(kind=DFP), dimension(:, :, :), allocatable :: HeatingRate - -end module ModIons diff --git a/util/EMPIRICAL/srcIE/ED_R_elec_ed_lup_subs.inc b/util/EMPIRICAL/srcIE/ED_R_elec_ed_lup_subs.inc deleted file mode 100644 index 161e44f0..00000000 --- a/util/EMPIRICAL/srcIE/ED_R_elec_ed_lup_subs.inc +++ /dev/null @@ -1,15 +0,0 @@ -! -! INCLUDE FILENAME: R_elec_ed_lup_subs.inc -! -! Include file containing the constant parameters for creating -! the Electron Energy Deposition files. -! - - INTEGER ENERGY_LEVELS ! Number of energy levels in lookup - PARAMETER (ENERGY_LEVELS = 63) - - INTEGER ALTITUDES ! Number of altitude levels in lookup - PARAMETER (ALTITUDES = 88) - - INTEGER SPECTRA_LEVELS ! Number of spectra levels in - PARAMETER (SPECTRA_LEVELS = 50) ! user defined spectra diff --git a/util/EMPIRICAL/srcIE/ED_ReadIonHeat.f90 b/util/EMPIRICAL/srcIE/ED_ReadIonHeat.f90 deleted file mode 100644 index 367498ce..00000000 --- a/util/EMPIRICAL/srcIE/ED_ReadIonHeat.f90 +++ /dev/null @@ -1,195 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -!------------------------------------------------------------------ -! -!------------------------------------------------------------------ - -subroutine ReadIonHeat(filename, IsIonizationFile) - - use ModIons - use ModIoUnit, ONLY: UnitTmp_ - use ModCharSize - - implicit none - - character(len=*), intent(in) :: filename - logical, intent(in) :: IsIonizationFile - - integer :: ilng, jlat, kalt, i - character(len=120):: fileline - - logical :: IsFirstTime = .true. - -! write(*,*) "Reading Ion Precip file ",filename - - open(unit=UnitTmp_, file=TRIM(ADJUSTL(filename))) - - ! skip the first 3 lines - do i = 1, 3 - read(UnitTmp_, '(a120)') fileline - enddo - - ! number of altitude - read(UnitTmp_, *) NAlt - - if (IsFirstTime) then - ALLOCATE(glng(NLng)) - ALLOCATE(glat(NLat)) - ALLOCATE(alt(NAlt)) - IsFirstTime = .false. - endif - - if (IsIonizationFile) then - ALLOCATE(IonizationRate(NLng, NLat, NAlt)) - else - ALLOCATE(HeatingRate(NLng, NLat, NAlt)) - endif - - ! altitude grid - read(UnitTmp_, *) (alt(kalt), kalt=NAlt, 1, -1) - read(UnitTmp_, '(a120)') fileline - - do ilng = 1, NLng - do jlat = 1, NLat - - if (IsIonizationFile) then - read(UnitTmp_, *) glng(ilng), glat(jlat), & - (IonizationRate(ilng, jlat, kalt), kalt=NAlt, 1, -1) - else - read(UnitTmp_, *) glng(ilng), glat(jlat), & - (HeatingRate(ilng, jlat, kalt), kalt=NAlt, -1) - endif - - ! data(ilng,jlat,kalt) is on the geographic longitude of glng(ilng), - ! the geographic latitude of glat(jlat) and the altitude of alt(kalt) - - enddo ! jlat - enddo ! ilng - - if (IsIonizationFile) then - IonizationRate = IonizationRate*1.0e6 - else - HeatingRate = HeatingRate*1.0e6*1.602e-19 - endif - - close(UnitTmp_) - -end subroutine ReadIonHeat - -!------------------------------------------------------------------ -! -!------------------------------------------------------------------ - -subroutine interpolate_ions(nLons, nLats, nAlts, & - GITMLons, GITMLats, GITMAlts, GITMIonRate, GITMHeatingRate) - - use ModIons - use ModNumConst - - implicit none - - integer, intent(in) :: nLons, nLats, nAlts - real, intent(in) :: GITMLons(nLons) - real, intent(in) :: GITMLats(nLats) - real, intent(in) :: GITMAlts(nLons, nLats, nAlts) - real, intent(out) :: GITMIonRate(nLons, nLats, nAlts) - real, intent(out) :: GITMHeatingRate(nLons, nLats, nAlts) - - real :: rLons(nLons), LonsDeg(nLons) - real :: rLats(nLats), LatsDeg(nLats) - real :: rAlts(nAlts), AltsKms(nAlts) - integer :: iLons(nLons) - integer :: iLats(nLats) - integer :: iAlts(nAlts) - - integer :: iLon, iLat, iAlt, i, j, k - real :: rlo, rla, ral - !--------------------------------------------------------------------------- - GITMIonRate = 0.0 - GITMHeatingRate = 0.0 - - LatsDeg = GITMLats*180/cPi - LonsDeg = GITMLons*180/cPi - - if (minval(glat) > maxval(LatsDeg)) return - - rLons = 0.0 - rLats = 0.0 - rAlts = 0.0 - - do iLon = 1, nLons - rLons(iLon) = (LonsDeg(iLon) - glng(1))/(glng(2) - glng(1)) + 1.0001 - iLons(iLon) = int(rLons(iLon)) - rLons(iLon) = rLons(iLon) - iLons(iLon) - if (iLons(iLon) > NLng) iLons(iLon) = 0 - enddo - - do iLat = 1, nLats - if (LatsDeg(iLat) <= glat(1)) iLats(iLat) = -1 - do i = 1, NLat - if (LatsDeg(iLat) >= glat(i)) iLats(iLat) = i - enddo - i = iLats(iLat) - if (i > 0) rLats(iLat) = (LatsDeg(iLat) - glat(i))/(glat(2) - glat(1)) - enddo - - do iLon = 1, nLons - do iLat = 1, nLats - if (iLats(iLat) < 1) CYCLE - - AltsKms = GITMAlts(iLon, iLat, :)/1000.0 - - do iAlt = 1, nAlts - if (AltsKms(iAlt) > alt(NAlt) .or. AltsKms(iAlt) < alt(1)) then - iAlts(iAlt) = -1 - else - do i = 1, NAlt - if (AltsKms(iAlt) >= alt(i)) iAlts(iAlt) = i - enddo - endif - i = iAlts(iAlt) - if (i >= 1) then - if (i == NAlt) then - rAlts(iAlt) = (AltsKms(iAlt) - alt(NAlt))/(alt(NAlt) - alt(NAlt - 1)) - else - rAlts(iAlt) = (AltsKms(iAlt) - alt(i))/(alt(i + 1) - alt(i)) - endif - endif - enddo - - do iAlt = 1, nAlts - if (iAlts(iAlt) < 1 .or. iAlts(iAlt) >= nAlt) CYCLE - - i = iLons(iLon) - j = iLats(iLat) - k = iAlts(iAlt) - rlo = rLons(iLon) - rla = rLats(iLat) - ral = rAlts(iAlt) - - GITMIonRate(iLon, iLat, iAlt) = & - (1 - rlo)*(1 - rla)*(1 - ral)*IonizationRate(i, j, k) + & - (rlo)*(1 - rla)*(1 - ral)*IonizationRate(i + 1, j, k) + & - (rlo)*(rla)*(1 - ral)*IonizationRate(i + 1, j + 1, k) + & - (1 - rlo)*(rla)*(1 - ral)*IonizationRate(i, j + 1, k) + & - (1 - rlo)*(1 - rla)*(ral)*IonizationRate(i, j, k + 1) + & - (rlo)*(1 - rla)*(ral)*IonizationRate(i + 1, j, k + 1) + & - (rlo)*(rla)*(ral)*IonizationRate(i + 1, j + 1, k + 1) + & - (1 - rlo)*(rla)*(ral)*IonizationRate(i, j + 1, k + 1) - - GITMHeatingRate(iLon, iLat, iAlt) = & - (1 - rlo)*(1 - rla)*(1 - ral)*HeatingRate(i, j, k) + & - (rlo)*(1 - rla)*(1 - ral)*HeatingRate(i + 1, j, k) + & - (rlo)*(rla)*(1 - ral)*HeatingRate(i + 1, j + 1, k) + & - (1 - rlo)*(rla)*(1 - ral)*HeatingRate(i, j + 1, k) + & - (1 - rlo)*(1 - rla)*(ral)*HeatingRate(i, j, k + 1) + & - (rlo)*(1 - rla)*(ral)*HeatingRate(i + 1, j, k + 1) + & - (rlo)*(rla)*(ral)*HeatingRate(i + 1, j + 1, k + 1) + & - (1 - rlo)*(rla)*(ral)*HeatingRate(i, j + 1, k + 1) - - enddo - enddo - enddo - -end subroutine interpolate_ions diff --git a/util/EMPIRICAL/srcIE/ED_ene_to_ionrate.f b/util/EMPIRICAL/srcIE/ED_ene_to_ionrate.f deleted file mode 100644 index 86483224..00000000 --- a/util/EMPIRICAL/srcIE/ED_ene_to_ionrate.f +++ /dev/null @@ -1,337 +0,0 @@ - PROGRAM TEST1 - - IMPLICIT NONE - - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - CHARACTER*80 DUMMY - INTEGER*4 I,J,K - INTEGER*4 ERR,ihold - INTEGER*4 TEST_INDEX - INTEGER*4 R_LOAD_EDEP_LOOKUP - INTEGER*4 R_EDEP_ALT_INDEX - INTEGER*4 R_EDEP_ENG_INDEX - integer*4 ind1,ind2 - REAL*4 R_EDEP_ALT_VALUE - REAL*4 R_EDEP_ENG_VALUE - real*4 R_LOG_INTERP - real*4 R_SEMILOG_INTERP - real*4 R_SEMILINEAR_INTERP - real*4 R_LINEAR_INTERP - REAL*4 alt_in_mbar - REAL*4 alt_in_km - REAL*4 alt_in_m - REAL*4 alt_in_cm - real*4 eng_in_erg - real*4 eng_in_joule - real*4 eng_in_ev - real*4 eng_in_kev - real*4 eng_in_mev - real*4 test_alt - real*4 test_eng - real*4 x,x1,x2,y,y1,y2 - real*4 old_enrg_vals(ENERGY_LEVELS) - real*4 old_flux_vals(ENERGY_LEVELS) - real*4 old_erro_vals(ALTITUDES) - real*4 old_prof_vals(ALTITUDES) - real*4 old_alti_vals(ALTITUDES) - real*4 new_prof_vals(ALTITUDES) - real*4 alts(ALTITUDES) - real*4 user_pres(15),hold - - real*4 ion_integral,zero,good_vals(altitudes) - character*100 infile, outfile - integer nfiles, ifile - - call init_all - - ERR = R_LOAD_EDEP_LOOKUP () - - IF (ERR .NE. 1) THEN - PRINT *,'FaTaL: DID NOT LOAD ENERGY DEPOSITION LOOKUP TABLES' - STOP - ENDIF - - nfiles = 1 - - do ifile = 1,nfiles - - write(6,*) 'Enter input file name : ' - read(5,'(A100)') infile - - write(6,*) 'Enter output file name : ' - read(5,'(A100)') outfile - - open(unit=15,name=infile,form='formatted',type='old') - - read(15,'(A80)') dummy - - do i=1,energy_levels - read(15,*) old_enrg_vals(i),old_flux_vals(i) - if (old_enrg_vals(i).lt.1e-20) old_flux_vals(i) = 0.0 - enddo - - close(15) - - call R_ELEC_EDEP (old_flux_vals,30,old_enrg_vals,3, - 1 new_prof_vals,13) - - open(unit=16,name=outfile,type='unknown') - - write(16,*) 'ionization height profile ionizations/(cm**3-s)' - - write(16,'(I2)') altitudes - - do i=1,altitudes - alt_in_km = R_EDEP_ALT_VALUE (I,3) - alts(i) = alt_in_km - if (new_prof_vals(i).lt.1e6) then - good_vals(i) = new_prof_vals(i) - else - write(6,*) 'NaN found!' - good_vals(i) = - | (new_prof_vals(i-1)+new_prof_vals(i+1))/2.0 - endif - write(16,'(1p,2e12.4)') alts(i),good_vals(i) - enddo - - ion_integral = good_vals(1)*(alts(2)-alts(1))*1.0e5 - - do i=2,altitudes - ion_integral = ion_integral + - | good_vals(i)*(alts(i)-alts(i-1))*1.0e5 - enddo - - write(16,*) 'Integral' - write(16,'(1p,e10.4)') ion_integral - - close(16) - - enddo - -c generate a user defined pressure grid -c do i= 15,1,-1 -c user_pres(I) = 10.0**(float(4 - i)) -c enddo -c print * -c print *,' New ionization rate mapped to user specified ', -c 1 'pressure grid -- ' -c print * -C loop through each user defined pressure -c do j= 1,15 -c set the first two low values of pressure -c ind1 = 1 -c x1 = alog10(prof_pres(1)) - alog10(user_pres(j)) -c ind2 = 2 -c x2 = alog10(prof_pres(2)) - alog10(user_pres(j)) -cc switch if necessary so that x1 ',I2,': ',1pe10.3,' mbar AT ', -c 1 e10.3,' ionizations/(cm**3-s)') -c 900 format(a80) - STOP - END - -c print *,'Altitude tests --' -c print *,' check altitude matrix loaded properly' -c print *,' check requested units are proper' -c print *,' check index points to proper altitude' -c DO I=1,ALTITUDES -c alt_in_cm = R_EDEP_ALT_VALUE (I,1) -c alt_in_m = R_EDEP_ALT_VALUE (I,2) -c alt_in_km = R_EDEP_ALT_VALUE (I,3) -c alt_in_mbar = R_EDEP_ALT_VALUE (I,4) -c write (*,800) i,alt_in_km,alt_in_m,alt_in_cm,alt_in_mbar -c ENDDO - -c print *,' check altitude estimates index' - -c DO I=1,5 -c test_alt = 20.25/float(10**(i-1)) -c test_index = R_EDEP_ALT_INDEX (test_alt,4) -c print *,'for a test altitude of ',test_alt,' mbar, ', -c 1 'the index found was ',test_index -c test_alt = float(i)*20.25 -c test_index = R_EDEP_ALT_INDEX (test_alt,3) -c print *,'for a test altitude of ',test_alt,' km, ', -c 1 'the index found was ',test_index -c test_alt = test_alt*1000.0 -c test_index = R_EDEP_ALT_INDEX (test_alt,2) -c print *,'for a test altitude of ',test_alt,' m, ', -c 1 'the index found was ',test_index -c test_alt = test_alt*100.0 -c test_index = R_EDEP_ALT_INDEX (test_alt,1) -c print *,'for a test altitude of ',test_alt,' cm, ', -c 1 'the index found was ',test_index -c enddo - -c print * -c print * -c print *,'Energy tests --' -c print *,' check energy matrix loaded properly' -c print *,' check requested units are proper' -c print *,' check index points to proper energy' -c DO I=1,ENERGY_LEVELS -c eng_in_erg = R_EDEP_ENG_VALUE (I,1) -c eng_in_joule = R_EDEP_ENG_VALUE (I,2) -c eng_in_ev = R_EDEP_ENG_VALUE (I,3) -c eng_in_kev = R_EDEP_ENG_VALUE (I,4) -c eng_in_mev = R_EDEP_ENG_VALUE (I,5) -c write (*,810) i,eng_in_erg,eng_in_joule,eng_in_ev,eng_in_kev, -c 1 eng_in_mev -c ENDDO - -c print *,' check energy estimates index' -c DO I=10,50,10 -c test_eng = float(i)/202.5 -c test_index = R_EDEP_ENG_INDEX (test_eng,5) -c print *,'for a test energy of ',test_eng,' MeV, ', -c 1 'the index found was ',test_index -c test_eng = test_eng*1000.0 -c test_index = R_EDEP_ENG_INDEX (test_eng,4) -c print *,'for a test energy of ',test_eng,' keV, ', -c 1 'the index found was ',test_index -c test_eng = test_eng*1000.0 -c test_index = R_EDEP_ENG_INDEX (test_eng,3) -c print *,'for a test energy of ',test_eng,' eV, ', -c 1 'the index found was ',test_index -c test_eng = test_eng*1.602E-19 -c test_index = R_EDEP_ENG_INDEX (test_eng,2) -c print *,'for a test energy of ',test_eng,' Joule, ', -c 1 'the index found was ',test_index -c test_eng = test_eng*1.0E+7 -c test_index = R_EDEP_ENG_INDEX (test_eng,1) -c print *,'for a test energy of ',test_eng,' erg, ', -c 1 'the index found was ',test_index -c enddo - -c print * -c print * -c print *,'Interpolation tests --' -c print *,' for x1,y1 = (4.0,1000.0) and x2,y2 = (2.0,100.0)' -c x2 = 2.0 -c x1 = 4.0 -c y2 = 100.0 -c y1 = 1000.0 -c x = 3.0 -c y = R_LOG_INTERP (x,x2,x1,y2,y1) -c print *,' log interpolation at x=',x,' is ',y -c y = R_SEMILOG_INTERP (x,x2,x1,y2,y1) -c print *,' semilog interpolation at x=',x,' is ',y -c y = R_SEMILINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' semilinear interpolation at x=',x,' is ',y -c y = R_LINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' linear interpolation at x=',x,' is ',y -c print *,' for x1,y1 = (2.0,1.0) and x2,y2 = (4.0,1000.0)' -c print *,' for x1,y1 = (2.0,100.0) and x2,y2 = (4.0,1000.0)' -c x1 = 2.0 -c x2 = 4.0 -c y1 = 100.0 -c y2 = 1000.0 -c x = 3.0 -c y = R_LOG_INTERP (x,x2,x1,y2,y1) -c print *,' log interpolation at x=',x,' is ',y -c y = R_SEMILOG_INTERP (x,x2,x1,y2,y1) -c print *,' semilog interpolation at x=',x,' is ',y -c y = R_SEMILINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' semilinear interpolation at x=',x,' is ',y -c y = R_LINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' linear interpolation at x=',x,' is ',y -c print *,' for x1,y1 = (2.0,1.0) and x2,y2 = (4.0,1000.0)' -c y1 = 1.0 -c y = R_LOG_INTERP (x,x2,x1,y2,y1) -c print *,' log interpolation at x=',x,' is ',y -c y = R_SEMILOG_INTERP (x,x2,x1,y2,y1) -c print *,' semilog interpolation at x=',x,' is ',y -c y = R_SEMILINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' semilinear interpolation at x=',x,' is ',y -c y = R_LINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' linear interpolation at x=',x,' is ',y -c print * -c print * -c print *,'Extrapolation tests --' -c print *,' for x1,y1 = (4.0,150.0) and x2,y2 = (1.0,100.0)' -c x2 = 1.0 -c x1 = 4.0 -c y2 = 100.0 -c y1 = 150.0 -c x = 0.2 -c y = R_LOG_INTERP (x,x2,x1,y2,y1) -c print *,' log extrapolation at x=',x,' is ',y -c y = R_SEMILOG_INTERP (x,x2,x1,y2,y1) -c print *,' semilog extrapolation at x=',x,' is ',y -c y = R_SEMILINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' semilinear extrapolation at x=',x,' is ',y -c y = R_LINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' linear extrapolation at x=',x,' is ',y -c print *,' for x1,y1 = (2.0,1.0) and x2,y2 = (4.0,150.0)' -c print *,' for x1,y1 = (1.0,100.0) and x2,y2 = (4.0,150.0)' -c x1 = 1.0 -c x2 = 4.0 -c y1 = 100.0 -c y2 = 150.0 -c x = 0.2 -c y = R_LOG_INTERP (x,x2,x1,y2,y1) -c print *,' log extrapolation at x=',x,' is ',y -c y = R_SEMILOG_INTERP (x,x2,x1,y2,y1) -c print *,' semilog extrapolation at x=',x,' is ',y -c y = R_SEMILINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' semilinear extrapolation at x=',x,' is ',y -c y = R_LINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' linear extrapolation at x=',x,' is ',y -c print *,' for x1,y1 = (2.0,1.0) and x2,y2 = (4.0,150.0)' -c y1 = 1.0 -c x = 7.1 -c y = R_LOG_INTERP (x,x2,x1,y2,y1) -c print *,' log extrapolation at x=',x,' is ',y -c y = R_SEMILOG_INTERP (x,x2,x1,y2,y1) -c print *,' semilog extrapolation at x=',x,' is ',y -c y = R_SEMILINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' semilinear extrapolation at x=',x,' is ',y -c y = R_LINEAR_INTERP (x,x2,x1,y2,y1) -c print *,' linear extrapolation at x=',x,' is ',y -c print * -c print * - -c print *,'Energy Deposition tests --' diff --git a/util/EMPIRICAL/srcIE/ED_r_elec_ed_lup_subs.f b/util/EMPIRICAL/srcIE/ED_r_elec_ed_lup_subs.f deleted file mode 100644 index e1e2638e..00000000 --- a/util/EMPIRICAL/srcIE/ED_r_elec_ed_lup_subs.f +++ /dev/null @@ -1,1914 +0,0 @@ - - subroutine init_all - -c BLOCK DATA - - IMPLICIT NONE - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - integer I,J - integer LOADED - real PMAT(ENERGY_LEVELS,ALTITUDES) - real ENGMAT(ENERGY_LEVELS) - real EDEP_ALTS(ALTITUDES) - real EDEP_PRES(ALTITUDES) - COMMON /R_EDEP/ LOADED,PMAT,ENGMAT,EDEP_ALTS,EDEP_PRES - LOADED = 0 - DO I=1,ENERGY_LEVELS - ENGMAT(I) = 0.0 - DO J=1,ALTITUDES - PMAT(I,J) = 0.0 - ENDDO - ENDDO -c STOP - END - -C------------------------------------------------------------------------------ - - FUNCTION R_LOAD_EDEP_LOOKUP () - use ModIoUnit, ONLY: io_unit_new,UnitTmp_ -C****************************************************************************** -C -C THIS FUNCTION READS THE ASCII ENERGY DEPOSITION VALUES AND CREATES AN ENERGY -C DEPOSITION LOOKUP TABLE WHICH WILL BE USED THROUGHOUT THE CODE. -C COMMUNICATION OF THE LOOKUP TABLE IS THROUGH COMMON MEMORY. -C -C INPUTS - DIRECTLY PASSED -C NONE -C -C INPUTS - PASSED BY COMMON -C NONE -C -C OUTPUTS - DIRECTLY PASSED -C R_LOAD_EDEP_LOOKUP integer STATUS OF LOAD -C -1 LOAD FAILED -C +1 LOAD SUCCEED -C -C OUTPUTS - PASSED BY NAMED COMMON /R_EDEP/ -C LOADED LOGICAL*4 INDICATING STATe -C OF DATA FILE -C 1 FILE LOADED -C 0 FILE NOT LOADED -C PMAT(ENERGY_LEVELS,ALTITUDES) real ENERGY DEPOSITION VALUEs -C FOR INCIDENT ISOTROPIC -C FLUX [eV/cm] -C ENGMAT(ENERGY_LEVELS) real ENERGY VALUES [MeV] -C EDEP_ALTS(ALTITUDES) real ALTITUDE VALUES USED BY -C THE ENERGY DEPOSITION -C PROFILES [km] -C EDEP_PERS(ALTITUDES) real PRESSURE VALUES USED BY -C THE ENERGY DEPOSITION -C PROFILES [mbar] -C -C****************************************************************************** - - IMPLICIT NONE - -C Include Electron Energy Deposition Parameters - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - -C DEFINE LOCAL VARIABLES - - INTEGER STORE - integer I,J - integer ITERME - integer IOERR - integer LEVELS - integer LIST - integer PTR - integer R_LOAD_EDEP_LOOKUP - real ENGMEV - real ALPHA - real FLUX - -C Define common blocks - - INTEGER LOADED, iUnit - real PMAT(ENERGY_LEVELS,ALTITUDES) - real ENGMAT(ENERGY_LEVELS) - real EDEP_ALTS(ALTITUDES) - real EDEP_PRES(ALTITUDES) - COMMON /R_EDEP/ LOADED,PMAT,ENGMAT,EDEP_ALTS,EDEP_PRES - -C****************************************************************************** -C -C ENERGY_LEVELS PARAMETER NUMBER OF ENERGY LEVELS -C ALTITUDES PARAMETER NUMBER OF ALTITUDE LEVELS -C STORE LOGICAL*4 FLAG TO STORE THE ENERGY DEPOSITION PROFILE -C 1 EVERYTHING CHECKS OUT, SAVE PROFILE -C 0 ERRORS ENCOUNTERED, DO NOT SAVE PROFILE -C I integer INDEX COUNTER -C J integer INDEX COUNTER -C ITERME integer NUMBER OF ENERGY LEVELS RECORDED -C IOERR integer STATUS OF I/O OPERATION -C R_LOAD_EDEP_LOOKUP -C integer STATUS OF LOAD -C -1 LOAD FAILED -C +1 LOAD SUCCEED -C LEVELS integer PREVIOUS ENTRY LOCATION IN ENERGY MATRIX -- -C SHOULD ALWAYS BE ZERO TO INDICATE EACH -C DEPOSITION TABLE IS UNIQUE -C DEPOSITION TABLE -C LIST integer STATUS OF I/O OPERATION -C PTR integer ALTITUDE LEVEL INDEX OF PROFILE -C ENGMEV real TABLE ENERGY [MeV] -C ALPHA real PARAMETER DESCRIBING DISTRIBUTION PITCH ANGLE -C SHAPE -- NOTE THAT THIS SHOULD ALWAYS BE ZERO -C FOR THE ISOTROPIC CASE -C FLUX real ENERGY DEPOSITION TABLE FLUX [erg-cm-eV] -C LOADED LOGICAL*4 /R_EDEP/ LOGICAL INDICATING STATE OF DATA FILE -C 1 FILE HAS BEEN LOADED -C 0 FILE HAS NOT BEEN LOADED -C PMAT(ENERGY_LEVELS,ALTITUDES) -C real /R_EDEP/ ENERGY DEPOSITION VALUES FOR INCIDENT -C ISOTROPIC FLUX [eV/cm] -C ENGMAT(ENERGY_LEVELS) -C real /R_EDEP/ ENERGY VALUES [MeV] -C EDEP_ALTS(ALTITUDES) -C real /R_EDEP/ ALTITUDE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [km] -C EDEP_PRES(ALTITUDES) -C real /R_EDEP/ PRESSURE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [mbar] -C -C****************************************************************************** - -C****************************************************************************** -C FORMAT STATEMENTS -C****************************************************************************** - - 800 FORMAT(1X,'WARNING: Energy ',1PE12.5,' MeV is not for an ', - 1 'isotropic plasma distribution (alpha =',E10.3,')',/,12X, - 2 'Isotropic distribution assumed!') - - 810 FORMAT(1X,'WARNING: Energy ',1PE12.5,' MeV was already ', - 1 'processed, profile skipped') - - 820 FORMAT(1X,'WARNING: Expected',I3,'profiles for these energy ', - 1 'levels, but',I3,' were found') - -C****************************************************************************** - -C Indicate start - - R_LOAD_EDEP_LOOKUP = -1 - -C Initialize energy level counter - - ITERME = 0 - -C Open the file of energy deposition values - -C Must set this before calling CON_io_unit_new, so if it is running -C stand-alone, this routine doesn't have to do anything. - - iUnit = io_unit_new() - - OPEN(UNIT=iUnit,FILE= - | 'EIE/isoelec_edep.dat',FORM='FORMATTED', - + STATUS='OLD', IOSTAT=IOERR) - -C Loop through the number of energy values - - DO I=1,ENERGY_LEVELS - -C Read the Electron lookup table and associated values - - READ(iUnit,*,IOSTAT=IOERR) ENGMEV,ALPHA,LEVELS - -C Handle any errors - - IF (IOERR .NE. 0) THEN - WRITE(*,'(1X,A25,/,8X,A50,I5)',IOSTAT = IOERR) - 1 'FATAL: Program aborted --', - 2 'Unable to read energy deposition look-up table.', - 3 IOERR - GOTO 999 - ENDIF - -C Print warning message for non-isotropic distribltion profiles - - IF (ALPHA .NE. 0.0) WRITE(*,800) ENGMEV,ALPHA,LEVELS - -C Search for energy to determine if it is already in the list - - IF (ITERME .EQ. 0) THEN - -C No energies recorded yet, so add the first one to the list - - ITERME = 1 - ENGMAT(ITERME) = ENGMEV - STORE = 1 - - ELSE - -C At least one energy is in the list already -C Set flag to indicate where it appears in the list and search the list - - LIST = 0 - - DO J=1,ITERME - IF (ENGMAT(J) .EQ. ENGMEV) LIST = J - ENDDO - -C If the energy does not show up in the list, append it and indicate that -C we want to acquire the profile - - IF (LIST .EQ. 0) THEN - ITERME = ITERME + 1 - ENGMAT(ITERME) = ENGMEV - STORE = 1 - -C If the energy does show up in the list, write out a warning message and -C do not acquire the profile - - ELSE - WRITE(*,810) ENGMEV - STORE = 0 - ENDIF - - ENDIF - -C Read in the energy deposition values and handle any errors - - DO J = 1, LEVELS - - READ(iUnit,*,IOSTAT=IOERR) PTR,FLUX - IF (IOERR .NE. 0) THEN - WRITE(*,'(5X,A55,I5)',IOSTAT = IOERR) - + 'FATAL: Program aborted -- Unable to read EAR.DAT file.',IOERR - GOTO 999 - ENDIF - -C Store the data in the energy deposition matrix only if requested - - IF (STORE.eq.1) PMAT(ITERME,PTR) = FLUX - - ENDDO - ENDDO - -C Do we have all of the expected energies? - - IF (ENERGY_LEVELS .NE. ITERME) THEN - WRITE(*,820) ENERGY_LEVELS,ITERME - ENDIF - -C Indicate that the data file has been loaded - - LOADED = 1 - - 999 CLOSE(iUnit) - -C Set the altitudes in km - - DO I=1,12 - EDEP_ALTS(I) = 5.0 * I - ENDDO - - DO I=13,32 - EDEP_ALTS(I) = 60.0 + (I - 12) * 3.0 - ENDDO - - DO I=33,88 - EDEP_ALTS(I) = 120.0 + (I - 32) * 5.0 - ENDDO - -C Set the Pressure -- the 1976 US Standard Atmosphere is used -C At ground, EDEP_PRES(0) = 1013.25 mbar - - EDEP_PRES(1) = 540.479 - EDEP_PRES(2) = 264.989 - EDEP_PRES(3) = 121.110 - EDEP_PRES(4) = 55.2929 - EDEP_PRES(5) = 25.4920 - EDEP_PRES(6) = 11.9700 - EDEP_PRES(7) = 5.74590 - EDEP_PRES(8) = 2.87140 - EDEP_PRES(9) = 1.49100 - EDEP_PRES(10) = 797789.0E-6 - EDEP_PRES(11) = 425249.0E-6 - EDEP_PRES(12) = 219579.0E-6 - EDEP_PRES(13) = 145150.0E-6 - EDEP_PRES(14) = 946089.0E-7 - EDEP_PRES(15) = 607360.0E-7 - EDEP_PRES(16) = 338619.0E-7 - EDEP_PRES(17) = 238809.0E-7 - EDEP_PRES(18) = 146730.0E-7 - EDEP_PRES(19) = 889229.0E-8 - EDEP_PRES(20) = 531050.0E-8 - EDEP_PRES(21) = 312589.0E-8 - EDEP_PRES(22) = 183590.0E-8 - EDEP_PRES(23) = 108009.0E-8 - EDEP_PRES(24) = 637650.0E-9 - EDEP_PRES(25) = 379480.0E-9 - EDEP_PRES(26) = 231440.0E-9 - EDEP_PRES(27) = 144770.0E-9 - EDEP_PRES(28) = 931879.0E-10 - EDEP_PRES(29) = 626140.0E-10 - EDEP_PRES(30) = 444729.0E-10 - EDEP_PRES(31) = 330219.0E-10 - EDEP_PRES(32) = 253819.0E-10 - EDEP_PRES(33) = 173539.0E-10 - EDEP_PRES(34) = 125050.0E-10 - EDEP_PRES(35) = 935679.0E-11 - EDEP_PRES(36) = 720280.0E-11 - EDEP_PRES(37) = 566910.0E-11 - EDEP_PRES(38) = 454219.0E-11 - EDEP_PRES(39) = 369300.0E-11 - EDEP_PRES(40) = 303949.0E-11 - EDEP_PRES(41) = 252780.0E-11 - EDEP_PRES(42) = 212100.0E-11 - EDEP_PRES(43) = 179359.0E-11 - EDEP_PRES(44) = 152710.0E-11 - EDEP_PRES(45) = 130809.0E-11 - EDEP_PRES(46) = 112659.0E-11 - EDEP_PRES(47) = 974909.0E-12 - EDEP_PRES(48) = 847360.0E-12 - EDEP_PRES(49) = 739419.0E-12 - EDEP_PRES(50) = 647560.0E-12 - EDEP_PRES(51) = 569000.0E-12 - EDEP_PRES(52) = 501489.0E-12 - EDEP_PRES(53) = 443239.0E-12 - EDEP_PRES(54) = 392760.0E-12 - EDEP_PRES(55) = 348880.0E-12 - EDEP_PRES(56) = 310589.0E-12 - EDEP_PRES(57) = 277080.0E-12 - EDEP_PRES(58) = 247669.0E-12 - EDEP_PRES(59) = 221779.0E-12 - EDEP_PRES(60) = 198940.0E-12 - EDEP_PRES(61) = 178739.0E-12 - EDEP_PRES(62) = 160829.0E-12 - EDEP_PRES(63) = 144919.0E-12 - EDEP_PRES(64) = 130760.0E-12 - EDEP_PRES(65) = 118129.0E-12 - EDEP_PRES(66) = 106850.0E-12 - EDEP_PRES(67) = 967510.0E-13 - EDEP_PRES(68) = 877040.0E-13 - EDEP_PRES(69) = 795851.0E-13 - EDEP_PRES(70) = 722849.0E-13 - EDEP_PRES(71) = 657166.0E-13 - EDEP_PRES(72) = 597960.0E-13 - EDEP_PRES(73) = 544555.0E-13 - EDEP_PRES(74) = 496299.0E-13 - EDEP_PRES(75) = 452688.0E-13 - EDEP_PRES(76) = 413199.0E-13 - EDEP_PRES(77) = 377428.0E-13 - EDEP_PRES(78) = 344980.0E-13 - EDEP_PRES(79) = 315540.0E-13 - EDEP_PRES(80) = 288780.0E-13 - EDEP_PRES(81) = 264469.0E-13 - EDEP_PRES(82) = 242339.0E-13 - EDEP_PRES(83) = 222196.0E-13 - EDEP_PRES(84) = 203840.0E-13 - EDEP_PRES(85) = 187107.0E-13 - EDEP_PRES(86) = 171840.0E-13 - EDEP_PRES(87) = 157907.0E-13 - EDEP_PRES(88) = 145180.0E-13 - -C Indicate success - - R_LOAD_EDEP_LOOKUP = 0 - - RETURN - END - -C------------------------------------------------------------------------------- - - FUNCTION R_EDEP_ALT_INDEX (GALT,UNIT) - -C****************************************************************************** -C -C THIS FUNCTION DETERMINES THE CLOSEST BIN NUMBER TO THE REQUESTED ALTITUDE -C -C INPUTS - DIRECTLY PASSED -C GALT real THE REQUESTED ALTITUDE -C UNIT integer UNIT OF ALTITUDE -C 1 = cm -C 2 = m -C 3 = km -C 4 = mbar -C -C INPUTS - PASSED BY NAMED COMMON /R_EDEP/ -C EDEP_ALTS(ALTITUDES) real ALTITUDE VALUES USED BY THE -C ENERGY DEPOSITION PROFILES [km] -C -C OUTPUTS - DIRECTLY PASSED -C R_EDEP_ALT_INDEX integer THE CLOSEST ALTITUDE INDEX -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - IMPLICIT NONE - -C Include Electron Energy Deposition Parameters - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - -C DEFINE LOCAL VARIABLES - - integer R_EDEP_ALT_INDEX - integer I - integer UNIT - integer IOERR - real GALT - real ALT - real UFACT - -C Define common blocks - - INTEGER LOADED - real PMAT(ENERGY_LEVELS,ALTITUDES) - real ENGMAT(ENERGY_LEVELS) - real EDEP_ALTS(ALTITUDES) - real EDEP_PRES(ALTITUDES) - COMMON /R_EDEP/ LOADED,PMAT,ENGMAT,EDEP_ALTS,EDEP_PRES - -C****************************************************************************** -C -C ENERGY_LEVELS PARAMETER NUMBER OF ENERGY LEVELS -C ALTITUDES PARAMETER NUMBER OF ALTITUDE LEVELS -C R_EDEP_ALT_INDEX integer CLOSEST ALTITUDE INDEX -C I integer INDEX COUNTER -C IOERR integer STATUS OF I/O OPERATION -C UNIT integer UNIT FOR ALTITUDE -C 1 = cm -C 2 = m -C 3 = km -C GALT real ALTITUDE FOR WHICH INDEX HAS BEEN REQUESTED -C ALT real CONVERTED ALTITUDE FOR WHICH INDEX HAS BEEN -C REQUESTED [km] -C UFACT real UNIT FACTOR FOR CONVERSION INTO [km] -C UFACT = 1.0E-5 FOR cm -C UFACT = 1.0E-3 FOR m -C UFACT = 1.0 FOR km -C UFACT = 1.0 FOR mbar -C LOADED LOGICAL*4 /R_EDEP/ LOGICAL INDICATING STATE OF DATA FILE -C 1 FILE HAS BEEN LOADED -C 0 FILE HAS NOT BEEN LOADED -C PMAT(ENERGY_LEVELS,ALTITUDES) -C real /R_EDEP/ ENERGY DEPOSITION VALUES FOR INCIDENT -C ISOTROPIC FLUX [eV/cm] -C ENGMAT(ENERGY_LEVELS) -C real /R_EDEP/ ENERGY VALUES [MeV] -C EDEP_ALTS(ALTITUDES) -C real /R_EDEP/ ALTITUDE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [km] -C EDEP_PRES(ALTITUDES) -C real /R_EDEP/ PRESSURE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [mbar] -C -C****************************************************************************** - -C Set indicator indicating off the altitude grid - - R_EDEP_ALT_INDEX = -1 - -C Have the energy deposition tables been loaded? - - IF (LOADED.eq.0) THEN - WRITE (*,'(1X,A55,I5)',IOSTAT=IOERR) - + 'SKIP: Energy Deposition Files Not Loaded.',IOERR - RETURN - ENDIF - -C Set the unit factor - - UFACT = 1.0 - IF (MOD(UNIT,4) .EQ. 1) UFACT = 1.0E-5 - IF (MOD(UNIT,4) .EQ. 2) UFACT = 1.0E-3 - ALT = GALT*UFACT - -C Handle the mbar unit separately - - IF (UNIT .EQ. 4) THEN - -C Handle pressure distance -- log -C Signify bad value if altitues is above or below altitude grid - - IF (ALT .LT. EDEP_PRES(ALTITUDES)) RETURN - IF (ALT .GT. EDEP_PRES(1)) RETURN - -C MINIMUM INDEX - - IF (ALT .GT. 10.0**(0.5*(LOG10(EDEP_PRES(1))+ - + LOG10(EDEP_PRES(2))))) THEN - R_EDEP_ALT_INDEX = 1 - -C MAXIMUM INDEX - - ELSE IF (ALT .LE. 10.0**(0.5*(LOG10(EDEP_PRES(ALTITUDES-1))+ - + LOG10(EDEP_PRES(ALTITUDES))))) THEN - R_EDEP_ALT_INDEX = ALTITUDES - -C ALL OTHER INDICIES - - ELSE - DO I=2,ALTITUDES-1 - IF ((ALT .LE. 10.0**(0.5*(LOG10(EDEP_PRES(I-1))+ - 1 LOG10(EDEP_PRES(I))))) .AND. (ALT .GT. - 2 10.0**(0.5*(LOG10(EDEP_PRES(I+1))+LOG10(EDEP_PRES(I)))))) - 3 R_EDEP_ALT_INDEX = I - ENDDO - ENDIF - - ELSE - -C Handle altitude distance -- linear -C Signify bad value if altitues is above or below altitude grid - - IF (ALT .GT. EDEP_ALTS(ALTITUDES)) RETURN - IF (ALT .LT. EDEP_ALTS(1)) RETURN - -C MINIMUM INDEX - - IF (ALT .LT. 0.5*(EDEP_ALTS(1)+EDEP_ALTS(2))) THEN - R_EDEP_ALT_INDEX = 1 - -C MAXIMUM INDEX - - ELSE IF (ALT .GE. 0.5*(EDEP_ALTS(ALTITUDES-1)+ - + EDEP_ALTS(ALTITUDES))) THEN - R_EDEP_ALT_INDEX = ALTITUDES - -C ALL OTHER INDICIES - - ELSE - DO I=2,ALTITUDES-1 - IF ((ALT .GE. 0.5*(EDEP_ALTS(I-1)+EDEP_ALTS(I))) .AND. - 1 (ALT .LT. 0.5*(EDEP_ALTS(I+1)+EDEP_ALTS(I)))) - 2 R_EDEP_ALT_INDEX = I - ENDDO - ENDIF - - ENDIF - - RETURN - END - -C------------------------------------------------------------------------------ - - FUNCTION R_EDEP_ENG_INDEX (GENG,UNIT) - -C****************************************************************************** -C -C THIS FUNCTION DETERMINES THE CLOSEST BIN NUMBER TO THE REQUESTED ENERGY -C -C INPUTS - DIRECTLY PASSED -C GENG real THE REQUESTED ENERGY -C UNIT integer UNIT OF ENERGY -C 1 = erg -C 2 = Joule -C 3 = eV -C 4 = keV -C 5 = MeV -C -C INPUTS - PASSED BY NAMED COMMON /R_EDEP/ -C ENGMAT(ENERGY_LEVELS) real ENERGY VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [MeV] -C -C OUTPUTS - DIRECTLY PASSED -C R_EDEP_ENG_INDEX integer THE CLOSEST ALTITUDE INDEX -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - IMPLICIT NONE - -C Include Electron Energy Deposition Parameters - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - -C DEFINE LOCAL VARIABLES - - integer R_EDEP_ENG_INDEX - integer I - integer UNIT - integer IOERR - real GENG - real ENG - real UFACT - -C Define common blocks - - INTEGER LOADED - real PMAT(ENERGY_LEVELS,ALTITUDES) - real ENGMAT(ENERGY_LEVELS) - real EDEP_ALTS(ALTITUDES) - real EDEP_PRES(ALTITUDES) - COMMON /R_EDEP/ LOADED,PMAT,ENGMAT,EDEP_ALTS,EDEP_PRES - -C****************************************************************************** -C -C ENERGY_LEVELS PARAMETER NUMBER OF ENERGY LEVELS -C ALTITUDES PARAMETER NUMBER OF ALTITUDE LEVELS -C R_EDEP_ENG_INDEX integer CLOSEST ENERGY INDEX -C I integer INDEX COUNTER -C IOERR integer STATUS OF I/O OPERATION -C UNIT integer UNIT FOR ALTITUDE -C 1 = erg -C 2 = Joule -C 3 = eV -C 4 = keV -C 5 = MeV -C GENG real ENERGY FOR WHICH INDEX HAS BEEN REQUESTED -C ENG real ENERGY FOR WHICH INDEX HAS BEEN REQUESTED [km] -C UFACT real UNIT FACTOR FOR CONVERSION INTO [MeV] -C UFACT = 6.242E+5 FOR erg -C UFACT = 6.242E+12 FOR Joule -C UFACT = 1.0E-6 FOR eV -C UFACT = 1.0E-3 FOR keV -C UFACT = 1.0 FOR MeV -C LOADED LOGICAL*4 /R_EDEP/ LOGICAL INDICATING STATE OF DATA FILE -C 1 FILE HAS BEEN LOADED -C 0 FILE HAS NOT BEEN LOADED -C PMAT(ENERGY_LEVELS,ALTITUDES) -C real /R_EDEP/ ENERGY DEPOSITION VALUES FOR INCIDENT -C ISOTROPIC FLUX [eV/cm] -C ENGMAT(ENERGY_LEVELS) -C real /R_EDEP/ ENERGY VALUES [MeV] -C EDEP_ALTS(ALTITUDES) -C real /R_EDEP/ ALTITUDE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [km] -C EDEP_PRES(ALTITUDES) -C real /R_EDEP/ PRESSURE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [mbar] -C -C****************************************************************************** - -C Set indicator indicating off the energy grid - - R_EDEP_ENG_INDEX = -1 - -C Have the energy deposition tables been loaded? - - IF (LOADED.eq.0) THEN - WRITE (*,'(1X,A55,I5)',IOSTAT=IOERR) - + 'SKIP: Energy Deposition Files Not Loaded.',IOERR - RETURN - ENDIF - -C Set the unit factor - - UFACT = 1.0 - IF (MOD(UNIT,5) .EQ. 1) UFACT = 6.242E+5 - IF (MOD(UNIT,5) .EQ. 2) UFACT = 6.242E+12 - IF (MOD(UNIT,5) .EQ. 3) UFACT = 1.0E-6 - IF (MOD(UNIT,5) .EQ. 4) UFACT = 1.0E-3 - ENG = GENG*UFACT - -C Signify bad value if energy is above or below energy grid - - IF (ENG .LT. ENGMAT(ENERGY_LEVELS)) RETURN - IF (ENG .GT. ENGMAT(1)) RETURN - -C MINIMUM INDEX - - IF (ENG .GT. 10.0**(0.5*(LOG10(ENGMAT(1))+ - + LOG10(ENGMAT(2))))) THEN - R_EDEP_ENG_INDEX = 1 - -C MAXIMUM INDEX - - ELSE IF (ENG .LE. 10.0**(0.5*(LOG10(ENGMAT(ENERGY_LEVELS-1))+ - + LOG10(ENGMAT(ENERGY_LEVELS))))) THEN - R_EDEP_ENG_INDEX = ENERGY_LEVELS - -C ALL OTHER INDICIES - - ELSE - DO I=2,ENERGY_LEVELS-1 - IF ((ENG .LE. 10.0**(0.5*(LOG10(ENGMAT(I-1))+ - 1 LOG10(ENGMAT(I))))) .AND. (ENG .GT. 10.0**(0.5*( - 2 LOG10(ENGMAT(I+1))+LOG10(ENGMAT(I)))))) - 3 R_EDEP_ENG_INDEX = I - ENDDO - ENDIF - - RETURN - END - -C------------------------------------------------------------------------------ - - FUNCTION R_EDEP_ALT_VALUE (ALT_INDEX,UNIT) - -C****************************************************************************** -C -C THIS FUNCTION DETERMINES THE ALTITUDE ASSOCIATED WITH THE BIN INDEX IN THE -C UNITS REQUESTED -C -C INPUTS - DIRECTLY PASSED -C ALT_INDEX integer THE REQUESTED BIN INDEX -C UNIT integer UNIT OF ALTITUDE REQUESTED -C 1 = cm -C 2 = m -C 3 = km -C 4 = mbar -C -C INPUTS - PASSED BY NAMED COMMON /R_EDEP/ -C EDEP_ALTS(ALTITUDES) real ALTITUDE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [km] -C -C OUTPUTS - DIRECTLY PASSED -C R_EDEP_ALT_VALUE real THE ALTITUDE OF THE REQUESTED -C INDEX EXPRESSED IN THE REQUESTED -C UNITS -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - IMPLICIT NONE - -C Include Electron Energy Deposition Parameters - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - -C DEFINE LOCAL VARIABLES - - integer UNIT - integer ALT_INDEX - integer IOERR - real R_EDEP_ALT_VALUE - real UFACT - -C Define common blocks - - INTEGER LOADED - real PMAT(ENERGY_LEVELS,ALTITUDES) - real ENGMAT(ENERGY_LEVELS) - real EDEP_ALTS(ALTITUDES) - real EDEP_PRES(ALTITUDES) - COMMON /R_EDEP/ LOADED,PMAT,ENGMAT,EDEP_ALTS,EDEP_PRES - -C****************************************************************************** -C -C ENERGY_LEVELS PARAMETER NUMBER OF ENERGY LEVELS -C ALTITUDES PARAMETER NUMBER OF ALTITUDE LEVELS -C IOERR integer STATUS OF I/O OPERATION -C UNIT integer UNIT FOR ALTITUDE -C 1 = cm -C 2 = m -C 3 = km -C ALT_INDEX integer REQUESTED ALTITUDE BIN -C R_EDEP_ALT_VALUE real ALTITUDE OF BIN INDEX -C UFACT real UNIT FACTOR FOR CONVERSION INTO [km] -C UFACT = 1.0E+5 FOR cm -C UFACT = 1.0E+3 FOR m -C UFACT = 1.0 FOR km -C LOADED LOGICAL*4 /R_EDEP/ LOGICAL INDICATING STATE OF DATA FILE -C 1 FILE HAS BEEN LOADED -C 0 FILE HAS NOT BEEN LOADED -C PMAT(ENERGY_LEVELS,ALTITUDES) -C real /R_EDEP/ ENERGY DEPOSITION VALUES FOR INCIDENT -C ISOTROPIC FLUX [eV/cm] -C ENGMAT(ENERGY_LEVELS) -C real /R_EDEP/ ENERGY VALUES [MeV] -C EDEP_ALTS(ALTITUDES) -C real /R_EDEP/ ALTITUDE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [km] -C EDEP_PRES(ALTITUDES) -C real /R_EDEP/ PRESSURE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [mbar] -C -C****************************************************************************** - -C Set indicator indicating off the altitude grid - - R_EDEP_ALT_VALUE = -1.0 - -C Have the energy deposition tables been loaded? - - IF (LOADED.eq.0) THEN - WRITE (*,'(1X,A55,I5)',IOSTAT=IOERR) - + 'SKIP: Energy Deposition Files Not Loaded.',IOERR - RETURN - ENDIF - -C Set the unit factor - - UFACT = 1.0 - IF (MOD(UNIT,4) .EQ. 1) UFACT = 1.0E+5 - IF (MOD(UNIT,4) .EQ. 2) UFACT = 1.0E+3 - -C Signify bad value if altitues is above or below altitude grid - - IF (ALT_INDEX .LT. 1) RETURN - IF (ALT_INDEX .GT. ALTITUDES) RETURN - -C Determine value of altitude and shift to requested units - - IF (UNIT .EQ. 4) THEN - R_EDEP_ALT_VALUE = UFACT*EDEP_PRES(ALT_INDEX) - ELSE - R_EDEP_ALT_VALUE = UFACT*EDEP_ALTS(ALT_INDEX) - ENDIF - - RETURN - END - -C------------------------------------------------------------------------------ - - FUNCTION R_EDEP_ENG_VALUE (ENG_INDEX,UNIT) - -C****************************************************************************** -C -C THIS FUNCTION DETERMINES THE ENERGY ASSOCIATED WITH THE BIN INDEX IN THE -C UNITS REQUESTED -C -C INPUTS - DIRECTLY PASSED -C ENG_INDEX integer THE REQUESTED BIN INDEX -C UNIT integer UNIT OF ENERGY REQUESTED -C 1 = erg -C 2 = Joule -C 3 = eV -C 4 = keV -C 5 = MeV -C -C INPUTS - PASSED BY NAMED COMMON /R_EDEP/ -C ENGMAT(ENERGY_LEVELS) real ENERGY VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [MeV] -C -C OUTPUTS - DIRECTLY PASSED -C R_EDEP_ENG_VALUE real THE CLOSEST ALTITUDE INDEX -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - IMPLICIT NONE - -C Include Electron Energy Deposition Parameters - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - -C DEFINE LOCAL VARIABLES - - integer ENG_INDEX - integer IOERR - integer UNIT - real R_EDEP_ENG_VALUE - real UFACT - -C Define common blocks - - INTEGER LOADED - real PMAT(ENERGY_LEVELS,ALTITUDES) - real ENGMAT(ENERGY_LEVELS) - real EDEP_ALTS(ALTITUDES) - real EDEP_PRES(ALTITUDES) - COMMON /R_EDEP/ LOADED,PMAT,ENGMAT,EDEP_ALTS,EDEP_PRES - -C****************************************************************************** -C -C ENERGY_LEVELS PARAMETER NUMBER OF ENERGY LEVELS -C ALTITUDES PARAMETER NUMBER OF ALTITUDE LEVELS -C ENG_INDEX integer REQUESTED ENERGY BIN -C IOERR integer STATUS OF I/O OPERATION -C UNIT integer UNIT FOR ENERGY -C 1 = erg -C 2 = Joule -C 3 = eV -C 4 = keV -C 5 = MeV -C R_EDEP_ENG_VALUE real ENERGY OF THE INDEX REQUESTED -C UFACT real UNIT FACTOR FOR CONVERSION INTO [MeV] -C UFACT = 1.602E-6 FOR erg -C UFACT = 1.602E-13 FOR Joule -C UFACT = 1.0E+6 FOR eV -C UFACT = 1.0E+3 FOR keV -C UFACT = 1.0 FOR MeV -C LOADED LOGICAL*4 /R_EDEP/ LOGICAL INDICATING STATE OF DATA FILE -C 1 FILE HAS BEEN LOADED -C 0 FILE HAS NOT BEEN LOADED -C PMAT(ENERGY_LEVELS,ALTITUDES) -C real /R_EDEP/ ENERGY DEPOSITION VALUES FOR INCIDENT -C ISOTROPIC FLUX [eV/cm] -C ENGMAT(ENERGY_LEVELS) -C real /R_EDEP/ ENERGY VALUES [MeV] -C EDEP_ALTS(ALTITUDES) -C real /R_EDEP/ ALTITUDE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [km] -C EDEP_PRES(ALTITUDES) -C real /R_EDEP/ PRESSURE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [mbar] -C -C****************************************************************************** - -C Set indicator indicating off the energy grid - - R_EDEP_ENG_VALUE = -1.0 - -C Have the energy deposition tables been loaded? - - IF (LOADED.eq.0) THEN - WRITE (*,'(1X,A55,I5)',IOSTAT=IOERR) - + 'SKIP: Energy Deposition Files Not Loaded.',IOERR - RETURN - ENDIF - -C Set the unit factor - - UFACT = 1.0 - IF (MOD(UNIT,5) .EQ. 1) UFACT = 1.602E-6 - IF (MOD(UNIT,5) .EQ. 2) UFACT = 1.602E-13 - IF (MOD(UNIT,5) .EQ. 3) UFACT = 1.0E+6 - IF (MOD(UNIT,5) .EQ. 4) UFACT = 1.0E+3 - -C Signify bad value if energy is above or below altitude grid - - IF (ENG_INDEX .LT. 1) RETURN - IF (ENG_INDEX .GT. ENERGY_LEVELS) RETURN - -C Determine value of altitude and shift to requested units - - R_EDEP_ENG_VALUE = UFACT*ENGMAT(ENG_INDEX) - - RETURN - END - -C------------------------------------------------------------------------------ - - SUBROUTINE R_ELEC_EDEP (FLUXMAT,FUNIT,ENRGMAT,EUNIT,PROFMAT,PUNIT) - -C****************************************************************************** -C -C THIS FUNCTION COMPUTES THE ENERGY DEPOSITION PROFILE FROM AN INPUT -C ENERGY-NUMBER FLUX SPECTRA IN UNITS REQUESTED -C -C WHEN THE sr UNIT IS INCLUDED IN THE INPUT, THE RESULT IS MULTIPLIED BY -C PI TO ACCOUNT FOR AN ISOTROPIC PITCH ANGLE DISTRIBUTION. IF FLUX UNITS DO -C NOT HAVE sr, THEN IT IS ASSUMED THAT THE INPUT SPECTRA IS ALREADY AN -C ISOTROPIC FLUX. ENERGIES STORED ARE IN [MeV]. THE PROFILES ARE COMPUTED -C FOR A FLUX UNIT OF #/(cm**2-sr-s-eV) AT EACH ALTITUDE IN [km]. A SUM OF -C THE INDIVIDUAL PROFILES IS THE TOTAL ENERGY DEPOSITION RATE. -C -C INPUTS - DIRECTLY PASSED -C FLUXMAT(SPECTRA_LEVELS) real FLUX VALUES -C FUNIT integer UNIT OF FLUX -C 1 = #/(km**2-s-eV) -C 2 = #/(km**2-s-keV) -C 3 = #/(km**2-s-MeV) -C 4 = #/(km**2-s-Joule) -C 5 = #/(km**2-s-erg) -C 6 = #/(m**2-s-eV) -C 7 = #/(m**2-s-keV) -C 8 = #/(m**2-s-MeV) -C 9 = #/(m**2-s-Joule) -C 10 = #/(m**2-s-erg) -C 11 = #/(cm**2-s-eV) -C 12 = #/(cm**2-s-keV) -C 13 = #/(cm**2-s-MeV) -C 14 = #/(cm**2-s-Joule) -C 15 = #/(cm**2-s-erg) -C 16 = #/(km**2-s-sr-erg) -C 17 = #/(km**2-s-sr-Joule) -C 18 = #/(km**2-s-sr-MeV) -C 19 = #/(km**2-s-sr-keV) -C 20 = #/(km**2-s-sr-eV) -C 21 = #/(m**2-s-sr-erg) -C 22 = #/(m**2-s-sr-Joule) -C 23 = #/(m**2-s-sr-MeV) -C 24 = #/(m**2-s-sr-keV) -C 25 = #/(m**2-s-sr-eV) -C 26 = #/(cm**2-s-sr-erg) -C 27 = #/(cm**2-s-sr-Joule) -C 28 = #/(cm**2-s-sr-MeV) -C 29 = #/(cm**2-s-sr-keV) -C 30 = #/(cm**2-s-sr-eV) -C ENRGMAT(SPECTRA_LEVELS) real ENERGY VALUES -C EUNIT integer UNIT OF ENERGY -C 1 = erg -C 2 = Joule -C 3 = eV -C 4 = keV -C 5 = MeV -C PUNIT integer REQUESTED UNIT OF PROFILE -C 1 = Ionizations/(km**3-s) -C 2 = eV/(km**3-s) -C 3 = keV/(km**3-s) -C 4 = MeV/(km**3-s) -C 5 = Joule/(km**3-s) -C 6 = erg/(km**3-s) -C 7 = Ionizations/(m**3-s) -C 8 = eV/(m**3-s) -C 9 = keV/(m**3-s) -C 10 = MeV/(m**3-s) -C 11 = Joule/(m**3-s) -C 12 = erg/(m**3-s) -C 13 = Ionizations/(cm**3-s) -C 14 = eV/(cm**3-s) -C 15 = keV/(cm**3-s) -C 16 = MeV/(cm**3-s) -C 17 = Joule/(cm**3-s) -C 18 = erg/(cm**3-s) -C -C INPUTS - PASSED BY NAMED COMMON /R_EDEP/ -C ENGMAT(ENERGY_LEVELS) real ENERGY VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [MeV] -C -C OUTPUTS - DIRECTLY PASSED -C PROFMAT(ALTITUDES) real ENERGY DEPOSITION PROFILE -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - IMPLICIT NONE - -C Include Electron Energy Deposition Parameters - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - -C DEFINE LOCAL VARIABLES - - integer IOERR - integer FUNIT - integer EUNIT - integer PUNIT - integer I,J,K - real FUFACT - real EUFACT - real PUFACT - real PI - real AFACT - real ADJUSTMENT - real R_LOG_INTERP - real FLUXMAT(SPECTRA_LEVELS) - real ENRGMAT(SPECTRA_LEVELS) - real FMAT(SPECTRA_LEVELS) - real EMAT(SPECTRA_LEVELS) - real PROFMAT(ALTITUDES) - real DEMAT(SPECTRA_LEVELS) - -C Define common blocks - - INTEGER LOADED - real PMAT(ENERGY_LEVELS,ALTITUDES) - real ENGMAT(ENERGY_LEVELS) - real EDEP_ALTS(ALTITUDES) - real EDEP_PRES(ALTITUDES) - COMMON /R_EDEP/ LOADED,PMAT,ENGMAT,EDEP_ALTS,EDEP_PRES - -C Define data values - - DATA PI / 3.14159826 / - -C****************************************************************************** -C -C SPECTRA_LEVELS PARAMETER NUMBER OF ENERGY LEVELS IN USER SPECTRUM -C ENERGY_LEVELS PARAMETER NUMBER OF ENERGY LEVELS -C ALTITUDES PARAMETER NUMBER OF ALTITUDE LEVELS -C IOERR integer STATUS OF I/O OPERATION -C FUNIT integer UNIT OF FLUX -C 1 = #/(km**2-s-eV) -C 2 = #/(km**2-s-keV) -C 3 = #/(km**2-s-MeV) -C 4 = #/(km**2-s-Joule) -C 5 = #/(km**2-s-erg) -C 6 = #/(m**2-s-eV) -C 7 = #/(m**2-s-keV) -C 8 = #/(m**2-s-MeV) -C 9 = #/(m**2-s-Joule) -C 10 = #/(m**2-s-erg) -C 11 = #/(cm**2-s-eV) -C 12 = #/(cm**2-s-keV) -C 13 = #/(cm**2-s-MeV) -C 14 = #/(cm**2-s-Joule) -C 15 = #/(cm**2-s-erg) -C 16 = #/(km**2-s-sr-erg) -C 17 = #/(km**2-s-sr-Joule) -C 18 = #/(km**2-s-sr-MeV) -C 19 = #/(km**2-s-sr-keV) -C 20 = #/(km**2-s-sr-eV) -C 21 = #/(m**2-s-sr-erg) -C 22 = #/(m**2-s-sr-Joule) -C 23 = #/(m**2-s-sr-MeV) -C 24 = #/(m**2-s-sr-keV) -C 25 = #/(m**2-s-sr-eV) -C 26 = #/(cm**2-s-sr-erg) -C 27 = #/(cm**2-s-sr-Joule) -C 28 = #/(cm**2-s-sr-MeV) -C 29 = #/(cm**2-s-sr-keV) -C 30 = #/(cm**2-s-sr-eV) -C EUNIT integer UNIT OF ENERGY -C 1 = erg -C 2 = Joule -C 3 = eV -C 4 = keV -C 5 = MeV -C PUNIT integer REQUESTED UNIT FOR PROFILE -C 1 = Ionizations/(km**3-s) -C 2 = eV/(km**3-s) -C 3 = keV/(km**3-s) -C 4 = MeV/(km**3-s) -C 5 = Joule/(km**3-s) -C 6 = erg/(km**3-s) -C 7 = Ionizations/(m**3-s) -C 8 = eV/(m**3-s) -C 9 = keV/(m**3-s) -C 10 = MeV/(m**3-s) -C 11 = Joule/(m**3-s) -C 12 = erg/(m**3-s) -C 13 = Ionizations/(cm**3-s) -C 14 = eV/(cm**3-s) -C 15 = keV/(cm**3-s) -C 16 = MeV/(cm**3-s) -C 17 = Joule/(cm**3-s) -C 18 = erg/(cm**3-s) -C I integer INDEX COUNTER -C J integer INDEX COUNTER -C K integer INDEX COUNTER -C FUFACT real UNIT FACTOR FOR CONVERSION INTO PER eV UNIT -C FUFACT = 1.602E-22 FOR #/(km**2-s-erg) -C FUFACT = 1.602E-29 FOR #/(km**2-s-Joule) -C FUFACT = 1.0E-16 FOR #/(km**2-s-MeV) -C FUFACT = 1.0E-13 FOR #/(km**2-s-keV) -C FUFACT = 1.0E-10 FOR #/(km**2-s-eV) -C FUFACT = 1.602E-16 FOR #/(m**2-s-erg) -C FUFACT = 1.602E-23 FOR #/(m**2-s-Joule) -C FUFACT = 1.0E-10 FOR #/(m**2-s-MeV) -C FUFACT = 1.0E-7 FOR #/(m**2-s-keV) -C FUFACT = 1.0E-4 FOR #/(m**2-s-eV) -C FUFACT = 1.602E-12 FOR #/(cm**2-s-erg) -C FUFACT = 1.602E-19 FOR #/(cm**2-s-Joule) -C FUFACT = 1.0E-6 FOR #/(cm**2-s-MeV) -C FUFACT = 1.0E-3 FOR #/(cm**2-s-keV) -C FUFACT = 1.0 FOR #/(cm**2-s-eV) -C FUFACT = 1.602E-22 FOR #/(km**2-s-sr-erg) -C FUFACT = 1.602E-29 FOR #/(km**2-s-sr-Joule) -C FUFACT = 1.0E-16 FOR #/(km**2-s-sr-MeV) -C FUFACT = 1.0E-13 FOR #/(km**2-s-sr-keV) -C FUFACT = 1.0E-10 FOR #/(km**2-s-sr-eV) -C FUFACT = 1.602E-16 FOR #/(m**2-s-sr-erg) -C FUFACT = 1.602E-23 FOR #/(m**2-s-sr-Joule) -C FUFACT = 1.0E-10 FOR #/(m**2-s-sr-MeV) -C FUFACT = 1.0E-7 FOR #/(m**2-s-sr-keV) -C FUFACT = 1.0E-4 FOR #/(m**2-s-sr-eV) -C FUFACT = 1.602E-12 FOR #/(cm**2-s-sr-erg) -C FUFACT = 1.602E-19 FOR #/(cm**2-s-sr-Joule) -C FUFACT = 1.0E-6 FOR #/(cm**2-s-sr-MeV) -C FUFACT = 1.0E-3 FOR #/(cm**2-s-sr-keV) -C FUFACT = 1.0 FOR #/(cm**2-s-sr-eV) -C EUFACT real UNIT FACTOR FOR CONVERSION INTO [MeV] -C EUFACT = 6.242E+5 FOR erg -C EUFACT = 6.242E+12 FOR Joule -C EUFACT = 1.0E-6 FOR eV -C EUFACT = 1.0E-3 FOR keV -C EUFACT = 1.0 FOR MeV -C PUFACT real UNIT FACTOR FOR CONVERSION INTO REQUESTED UNITS -C PUFACT = 1.783E+25 FOR Ionizations/(km**3-s) -C PUFACT = 6.242E+26 FOR eV/(km**3-s) -C PUFACT = 6.242E+23 FOR keV/(km**3-s) -C PUFACT = 6.242E+20 FOR MeV/(km**3-s) -C PUFACT = 1.0E+8 FOR Joule/(km**3-s) -C PUFACT = 1.0E+15 FOR erg/(km**3-s) -C PUFACT = 1.783E+16 FOR Ionizations/(m**3-s) -C PUFACT = 6.242E+17 FOR eV/(m**3-s) -C PUFACT = 6.242E+14 FOR keV/(m**3-s) -C PUFACT = 6.242E+11 FOR MeV/(m**3-s) -C PUFACT = 1.0E-1 FOR Joule/(m**3-s) -C PUFACT = 1.0E+6 FOR erg/(m**3-s) -C PUFACT = 1.783E+10 FOR Ionizations/(cm**3-s) -C PUFACT = 6.242E+11 FOR eV/(cm**3-s) -C PUFACT = 6.242E+8 FOR keV/(cm**3-s) -C PUFACT = 6.242E+5 FOR MeV/(cm**3-s) -C PUFACT = 1.0E-7 FOR Joule/(cm**3-s) -C PUFACT = 1.0 FOR erg/(cm**3-s) -C PI real NUMBER pi = 3.14159826 -C R_LOG_INTERP real FUNCTION FOR LOG INTERPOLATION -C AFACT real ANGULAR FACTOR -C AFACT = 1.0 FOR sr INCLUDED IN FLUX -C AFACT = PI FOR sr NOT INCLUDED IN FLUX -C ADJUSTMENT real INTERPOLATED PROFILE VALUE -C FLUXMAT(SPECTRA_LEVELS) -C real ARRAY HOLDING FLUX VALUES -C ENRGMAT(SPECTRA_LEVELS) -C real ARRAY HOLDING INPUT ENERGY LEVELS -C FMAT(SPECTRA_LEVELS) -C real INTERNAL ARRAY HOLDING FLUX VALUES -C [#/(cm**2-sr-s-eV) OR #/(cm**2-s-eV)] -C EMAT(SPECTRA_LEVELS) -C real INTERNAL ARRAY HOLDING INPUT ENERGY LEVELS[MeV] -C DEMAT(SPECTRA_LEVELS) -C real WIDTH OF EACH DESCRETE SPECTRAL ENERGY LEVEL -C PROFMAT(ALTITUDES) -C LOADED LOGICAL*4 /R_EDEP/ LOGICAL INDICATING STATE OF DATA FILE -C 1 FILE HAS BEEN LOADED -C 0 FILE HAS NOT BEEN LOADED -C PMAT(ENERGY_LEVELS,ALTITUDES) -C real /R_EDEP/ ENERGY DEPOSITION VALUES FOR INCIDENT -C ISOTROPIC FLUX [eV/cm] -C ENGMAT(ENERGY_LEVELS) -C real /R_EDEP/ ENERGY VALUES [MeV] -C EDEP_ALTS(ALTITUDES) -C real /R_EDEP/ ALTITUDE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [km] -C EDEP_PRES(ALTITUDES) -C real /R_EDEP/ PRESSURE VALUES USED BY THE ENERGY -C DEPOSITION PROFILES [mbar] -C -C****************************************************************************** - -C Set the output profile all zeros - - DO I=1,ALTITUDES - PROFMAT(I) = 0.0 - ENDDO - -C Have the energy deposition tables been loaded? - - IF (LOADED.eq.0) THEN - WRITE (*,'(1X,A55,I5)',IOSTAT=IOERR) - + 'SKIP: Energy Deposition Files Not Loaded.',IOERR - RETURN - ENDIF - -C Set the flux unit factor and angular integral factor for isotropy - -C Set the energy unit factor - - EUFACT = 1.0 - I = MOD(EUNIT,5) - IF (I .EQ. 1) EUFACT = 6.242E+5 - IF (I .EQ. 2) EUFACT = 6.242E+12 - IF (I .EQ. 3) EUFACT = 1.0E-6 - IF (I .EQ. 4) EUFACT = 1.0E-3 - -C Adjust energy for internal use to MeV - - DO I=1,SPECTRA_LEVELS - EMAT(I) = EUFACT*ENRGMAT(I) - ENDDO - -C Set the angular multiplication factor for isotropic angular distribution - - AFACT = PI - I = MOD(FUNIT,30) - IF ((I .GE. 1) .AND. (I .LE. 15)) AFACT = 1.0 - -C Set Flux conversion to #/(cm**2-s-sr-eV) or #/(cm**2-s-eV) - - FUFACT = 1.0 - I = MOD(FUNIT,15) - IF (I .EQ. 1) EUFACT = 1.602E-22 - IF (I .EQ. 2) FUFACT = 1.602E-29 - IF (I .EQ. 3) FUFACT = 1.0E-16 - IF (I .EQ. 4) FUFACT = 1.0E-13 - IF (I .EQ. 5) FUFACT = 1.0E-10 - IF (I .EQ. 6) FUFACT = 1.602E-16 - IF (I .EQ. 7) FUFACT = 1.602E-23 - IF (I .EQ. 8) FUFACT = 1.0E-10 - IF (I .EQ. 9) FUFACT = 1.0E-7 - IF (I .EQ. 10) FUFACT = 1.0E-4 - IF (I .EQ. 11) FUFACT = 1.602E-12 - IF (I .EQ. 12) FUFACT = 1.602E-19 - IF (I .EQ. 13) FUFACT = 1.0E-6 - IF (I .EQ. 14) FUFACT = 1.0E-3 - -C Adjust flux for internal use - - DO I=1,SPECTRA_LEVELS - FMAT(I) = FUFACT*FLUXMAT(I) - ENDDO - -C Set output profile conversion factor - - PUFACT = 1.0 - I = MOD(PUNIT,18) - IF (I .EQ. 1) PUFACT = 1.783485E+25 - IF (I .EQ. 2) PUFACT = 6.242197E+26 - IF (I .EQ. 3) PUFACT = 6.242197E+23 - IF (I .EQ. 4) PUFACT = 6.242197E+20 - IF (I .EQ. 5) PUFACT = 1.0E+8 - IF (I .EQ. 6) PUFACT = 1.0E+15 - IF (I .EQ. 7) PUFACT = 1.783485E+16 - IF (I .EQ. 8) PUFACT = 6.242197E+17 - IF (I .EQ. 9) PUFACT = 6.242197E+14 - IF (I .EQ. 10) PUFACT = 6.242197E+11 - IF (I .EQ. 11) PUFACT = 1.0E-1 - IF (I .EQ. 12) PUFACT = 1.0E+6 - IF (I .EQ. 13) PUFACT = 1.783485E+10 - IF (I .EQ. 14) PUFACT = 6.242197E+11 - IF (I .EQ. 15) PUFACT = 6.242197E+8 - IF (I .EQ. 16) PUFACT = 6.242197E+5 - IF (I .EQ. 17) PUFACT = 1.0E-7 - -C Compute the spectral channel widths - - CALL R_FIND_DE (EMAT,DEMAT) - -C Adjust energy widths from MeV to eV - - DO I=1,SPECTRA_LEVELS - DEMAT(I) = 1.0E6*DEMAT(I) - ENDDO - -C Look through the spectra and collect individual profiles - - DO I=1,SPECTRA_LEVELS - -C Process for valid energies only - - IF (EMAT(I) .GT. 0.0) THEN - -C Handle the first profile separately - - IF (EMAT(I) .EQ. ENGMAT(1)) THEN - DO K=1,ALTITUDES - PROFMAT(K) = PROFMAT(K) + FMAT(1)*PMAT(1,K)*DEMAT(1) - ENDDO - -C Check to see if the energy is greater than the maximum energy profile - - ELSE IF (EMAT(I) .GT. ENGMAT(1)) THEN - -C Extrapolate a profile - - DO K=1,ALTITUDES - ADJUSTMENT = R_LOG_INTERP (EMAT(I),ENGMAT(1),ENGMAT(2), - 1 PMAT(1,K),PMAT(2,K)) - PROFMAT(K) = PROFMAT(K) + FMAT(I)*ADJUSTMENT*DEMAT(I) - ENDDO - -C Check to see if the energy is less than the minimum energy profile - - ELSE IF (EMAT(I) .LT. ENGMAT(ENERGY_LEVELS)) THEN - -C Extrapolate a profile - - DO K=1,ALTITUDES - ADJUSTMENT = R_LOG_INTERP (EMAT(I),ENGMAT(ENERGY_LEVELS), - 1 ENGMAT(ENERGY_LEVELS-1),PMAT(ENERGY_LEVELS,K), - 2 PMAT(ENERGY_LEVELS-1,K)) - PROFMAT(K) = PROFMAT(K) + FMAT(I)*ADJUSTMENT*DEMAT(I) - ENDDO - ELSE - -C The requested energy lies in the profile grid -C Find the spectral energy in the energy lookup table -C Loop through the remainder of the energy levels to find the appropriate -C profile(s) - - DO J=2,ENERGY_LEVELS - -C Handle cases where the energy is exact -- no interpolation needed - - IF (EMAT(I) .EQ. ENGMAT(J)) THEN - DO K=1,ALTITUDES - PROFMAT(K) = PROFMAT(K) + FMAT(I)*PMAT(J,K)*DEMAT(I) - ENDDO - - ELSE IF ((EMAT(I) .GT. ENGMAT(J)) .AND. (EMAT(I) .LT. - 1 ENGMAT(J-1))) THEN - -C Energy requested lies between precomputed profiles - interpolation is needed - - DO K=1,ALTITUDES - ADJUSTMENT = R_LOG_INTERP (EMAT(I),ENGMAT(J-1), - 1 ENGMAT(J),PMAT(J-1,K),PMAT(J,K)) - - PROFMAT(K) = PROFMAT(K) + FMAT(I)*ADJUSTMENT*DEMAT(I) - - ENDDO - - ENDIF - ENDDO ! INDIVIDUAL PROFILES - ENDIF ! TYPE OF PROFILE - ENDIF ! VALLID ENERGIES - ENDDO ! SPECTRAL VALUES - -C Adjust total profile by angular distribution factor and -C convert to output units - - DO I=1,ALTITUDES - PROFMAT(I) = PUFACT*AFACT*PROFMAT(I) - ENDDO - - RETURN - END - -C------------------------------------------------------------------------------ - - FUNCTION R_LOG_INTERP (X,X2,X1,Y2,Y1) - -C****************************************************************************** -C -C THIS FUNCTION DETERMINES AN INDEPENDENT VALUE AT A GIVEN DEPENDENT VALUE -C LOCATION GIVEN TWO COORDINATE POINTS. THE VALUE OF THE INDEPENDENT VARIABLE -C IS DETERMINED IN LOG-LOG SPACE. ALL VALUES ARE GIVEN LINEARLY AND THIS -C FUNCTION DETERMINES THE LOG VALUES AS NEEDED. IF ANY ARGUMENT IS LESS -C THAN OR EQUAL TO ZERO, LINEAR INTERPOLATION IS INVOLKED. IF THE GIVEN -C X1 AND X2 CORRDINATES ARE THE SAME, THEN THE OUTPUT IS THE LOG AVERAGE OF -C THE Y1 AND Y2 POINT REGARDLESS ON THE DEPENDENT VARIABLE. -C -C INPUTS - DIRECTLY PASSED -C X real REQUEST AT THIS INDEAENDENT VALUE -C X1 real KNOWN X COORDINATE OF POINT 1 -C X2 real KNOWN X COORDINATE OF POINT 2 -C Y1 real KNOWN Y COORDINATE OF POINT 1 -C Y2 real KNOWN Y COORDINATE OF POINT 2 -C -C INPUTS - PASSED BY COMMON -C NONE -C -C OUTPUTS - DIRECTLY PASSED -C R_LOG_INTERP real THE DEPENDENT VALUE -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - real X,X1,X2,Y1,Y2 - real U,U1,U2 - real V,V1,V2 - real R_LOG_INTERP - real R_LINEAR_INTERP - real SLOPE - real INTERCEPT - -C****************************************************************************** -C -C X real INTERPOLATION REQUESTED AT THIS DEPENDENT VALUE -C X1 real KNOWN LINEAR X COORDINATE OF POINT 1 -C X2 real KNOWN LINEAR X COORDINATE OF POINT 2 -C Y1 real KNOWN LINEAR Y COORDINATE OF POINT 1 -C Y2 real KNOWN LINEAR Y COORDINATE OF POINT 2 -C U real LOG REQUESTED DEPENDENT VALUE -C U1 real KNOWN LOG X COORDINATE OF POINT 1 -C U2 real KNOWN LOG X COORDINATE OF POINT 2 -C V real LOG DEPENDENT VALUE -C V1 real KNOWN LOG Y COORDINATE OF POINT 1 -C V2 real KNOWN LOG Y COORDINATE OF POINT 2 -C R_LOG_INTERP real FUNCTION FOR LOG INTERPOLATION -C R_LINEAR_INTERP real FUNCTION FOR LINEAR INTERPOLATION -C SLOPE real Y VALUE CHANGE WITH RESPECT TO X VALUE CHANGE -C INTERCEPT real Y VALUE LOCATION AT AT X OF ZERO -C -C****************************************************************************** - -C All values must be non=zero and positive, if not, you can not use this -C function -- Linearly Interpolate - - IF ((X .LE. 0.0) .OR. (X1 .LE. 0.0) .OR. (X2 .LE. 0.0)) THEN - R_LOG_INTERP = R_LINEAR_INTERP (X,X2,X1,Y2,Y1) - ELSE IF ((Y1 .LE. 0.0) .OR. (Y2 .LE. 0.0)) THEN - R_LOG_INTERP = R_LINEAR_INTERP (X,X2,X1,Y2,Y1) - ELSE - -C Determine the log values and degeneracy - - V1 = LOG10(Y1) - V2 = LOG10(Y2) - U = LOG10(X) - U1 = LOG10(X1) - U2 = LOG10(X2) - SLOPE = U2 - U1 - -C Handle the case of degenerate dependent values separately - - IF (SLOPE .EQ. 0.0) THEN - V = 0.5*(V2 + V1) - R_LOG_INTERP = 10.0**V - ELSE - -C Interpolate in log-log space - - SLOPE = (V2 - V1)/SLOPE - INTERCEPT = V2 - SLOPE*U2 - V = SLOPE*U + INTERCEPT - R_LOG_INTERP = 10.0**V - ENDIF - ENDIF - - RETURN - END - -C------------------------------------------------------------------------------ - - FUNCTION R_SEMILOG_INTERP (X,X2,X1,Y2,Y1) - -C****************************************************************************** -C -C THIS FUNCTION DETERMINES AN INDEPENDENT VALUE AT A GIVEN DEPENDENT VALUE -C LOCATION GIVEN TWO COORDINATE POINTS. THE VALUE OF THE INDEPENDENT VARIABLE -C IS DETERMINED IN LOG-LINEAR SPACE. ALL VALUES ARE GIVEN LINEARLY AND THIS -C FUNCTION DETERMINES THE LOG VALUES AS NEEDED. IF ANY X ARGUMENT IS LESS -C THAN OR EQUAL TO ZERO, LINEAR INTERPOLATION IS INVOLKED. IF THE GIVEN -C X1 AND X2 CORRDINATES ARE THE SAME, THEN THE OUTPUT IS THE LINEAR AVERAGE OF -C THE Y1 AND Y2 POINT REGARDLESS ON THE DEPENDENT VARIABLE. -C -C INPUTS - DIRECTLY PASSED -C X real REQUEST AT THIS INDEAENDENT VALUE -C X1 real KNOWN X COORDINATE OF POINT 1 -C X2 real KNOWN X COORDINATE OF POINT 2 -C Y1 real KNOWN Y COORDINATE OF POINT 1 -C Y2 real KNOWN Y COORDINATE OF POINT 2 -C -C INPUTS - PASSED BY COMMON -C NONE -C -C OUTPUTS - DIRECTLY PASSED -C R_SEMILOG_INTERP real THE DEPENDENT VALUE -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - real X,X1,X2,Y1,Y2 - real U,U1,U2 - real R_SEMILOG_INTERP - real R_LINEAR_INTERP - real SLOPE - real INTERCEPT - -C****************************************************************************** -C -C X real INTERPOLATION REQUESTED AT THIS DEPENDENT VALUE -C X1 real KNOWN LINEAR X COORDINATE OF POINT 1 -C X2 real KNOWN LINEAR X COORDINATE OF POINT 2 -C Y1 real KNOWN LINEAR Y COORDINATE OF POINT 1 -C Y2 real KNOWN LINEAR Y COORDINATE OF POINT 2 -C U real LOG REQUESTED DEPENDENT VALUE -C U1 real KNOWN LOG X COORDINATE OF POINT 1 -C U2 real KNOWN LOG X COORDINATE OF POINT 2 -C R_SEMILOG_INTERP real FUNCTION FOR SEMILOG INTERPOLATION -C R_LINEAR_INTERP real FUNCTION FOR LINEAR INTERPOLATION -C SLOPE real Y VALUE CHANGE WITH RESPECT TO X VALUE CHANGE -C INTERCEPT real Y VALUE LOCATION AT AT X OF ZERO -C -C****************************************************************************** - -C All values must be non=zero and positive, if not, you can not use this -C function -- Linearly Interpolate - - IF ((X .LE. 0.0) .OR. (X1 .LE. 0.0) .OR. (X2 .LE. 0.0)) THEN - R_SEMILOG_INTERP = R_LINEAR_INTERP (X,X2,X1,Y2,Y1) - ELSE - -C Determine the log values and degeneracy - - U = LOG10(X) - U1 = LOG10(X1) - U2 = LOG10(X2) - SLOPE = U2 - U1 - -C Handle the case of degenerate dependent values separately - - IF (SLOPE .EQ. 0.0) THEN - R_SEMILOG_INTERP = 0.5*(Y2 + Y1) - ELSE - -C Interpolate in log-linear space - - SLOPE = (Y2 - Y1)/SLOPE - INTERCEPT = Y2 - SLOPE*U2 - R_SEMILOG_INTERP = SLOPE*U + INTERCEPT - ENDIF - ENDIF - - RETURN - END - -C------------------------------------------------------------------------------ - - FUNCTION R_SEMILINEAR_INTERP (X,X2,X1,Y2,Y1) - -C****************************************************************************** -C -C THIS FUNCTION DETERMINES AN INDEPENDENT VALUE AT A GIVEN DEPENDENT VALUE -C LOCATION GIVEN TWO COORDINATE POINTS. THE VALUE OF THE INDEPENDENT VARIABLE -C IS DETERMINED IN LINEAR-LOG SPACE. ALL VALUES ARE GIVEN LINEARLY AND THIS -C FUNCTION DETERMINES THE LOG VALUES AS NEEDED. IF ANY Y ARGUMENT IS LESS -C THAN OR EQUAL TO ZERO, LINEAR INTERPOLATION IS INVOLKED. IF THE GIVEN -C X1 AND X2 CORRDINATES ARE THE SAME, THEN THE OUTPUT IS THE LOG AVERAGE OF -C THE Y1 AND Y2 POINT REGARDLESS ON THE DEPENDENT VARIABLE. -C -C INPUTS - DIRECTLY PASSED -C X real REQUEST AT THIS INDEAENDENT VALUE -C X1 real KNOWN X COORDINATE OF POINT 1 -C X2 real KNOWN X COORDINATE OF POINT 2 -C Y1 real KNOWN Y COORDINATE OF POINT 1 -C Y2 real KNOWN Y COORDINATE OF POINT 2 -C -C INPUTS - PASSED BY COMMON -C NONE -C -C OUTPUTS - DIRECTLY PASSED -C R_SEMILINEAR_INTERP real THE DEPENDENT VALUE -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - real X,X1,X2,Y1,Y2 - real V,V1,V2 - real R_SEMILINEAR_INTERP - real R_LINEAR_INTERP - real SLOPE - real INTERCEPT - -C****************************************************************************** -C -C X real INTERPOLATION REQUESTED AT THIS DEPENDENT VALUE -C X1 real KNOWN LINEAR X COORDINATE OF POINT 1 -C X2 real KNOWN LINEAR X COORDINATE OF POINT 2 -C Y1 real KNOWN LINEAR Y COORDINATE OF POINT 1 -C Y2 real KNOWN LINEAR Y COORDINATE OF POINT 2 -C V real LOG DEPENDENT VALUE -C V1 real KNOWN LOG Y COORDINATE OF POINT 1 -C V2 real KNOWN LOG Y COORDINATE OF POINT 2 -C R_SEMILINEAR_INTERP real FUNCTION FOR SEMILINEAR INTERPOLATION -C R_LINEAR_INTERP real FUNCTION FOR LINEAR INTERPOLATION -C SLOPE real Y VALUE CHANGE WITH RESPECT TO X VALUE CHANGE -C INTERCEPT real Y VALUE LOCATION AT AT X OF ZERO -C -C****************************************************************************** - -C All values must be non=zero and positive, if not, you can not use this -C function -- Linearly Interpolate - - IF ((Y1 .LE. 0.0) .OR. (Y2 .LE. 0.0)) THEN - R_SEMILINEAR_INTERP = R_LINEAR_INTERP (X,X2,X1,Y2,Y1) - ELSE - -C Determine the log values and degeneracy - - V1 = LOG10(Y1) - V2 = LOG10(Y2) - SLOPE = X2 - X1 - -C Handle the case of degenerate dependent values separately - - IF (SLOPE .EQ. 0.0) THEN - V = 0.5*(V2 + V1) - R_SEMILINEAR_INTERP = 10.0**V - ELSE - -C Interpolate in linear-log space - - SLOPE = (V2 - V1)/SLOPE - INTERCEPT = V2 - SLOPE*X2 - V = SLOPE*X + INTERCEPT - R_SEMILINEAR_INTERP = 10.0**V - ENDIF - ENDIF - - RETURN - END - -C------------------------------------------------------------------------------ - - FUNCTION R_LINEAR_INTERP (X,X2,X1,Y2,Y1) - -C****************************************************************************** -C -C THIS FUNCTION DETERMINES AN INDEPENDENT VALUE AT A GIVEN DEPENDENT VALUE -C LOCATION GIVEN TWO COORDINATE POINTS. THE VALUE OF THE INDEPENDENT VARIABLE -C IS DETERMINED IN LINEAR SPACE. IF THE GIVEN X1 AND X2 CORRDINATES ARE THE -C SAME, THEN THE OUTPUT IS THE AVERAGE OF THE Y1 AND Y2 POINT REGARDLESS OF -C THE DEPENDENT VARIABLE. -C -C INPUTS - DIRECTLY PASSED -C X real REQUEST AT THIS INDEAENDENT VALUE -C X1 real KNOWN X COORDINATE OF POINT 1 -C X2 real KNOWN X COORDINATE OF POINT 2 -C Y1 real KNOWN Y COORDINATE OF POINT 1 -C Y2 real KNOWN Y COORDINATE OF POINT 2 -C -C INPUTS - PASSED BY COMMON -C NONE -C -C OUTPUTS - DIRECTLY PASSED -C R_LINEAR_INTERP real THE DEPENDENT VALUE -C -C OUTPUTS - PASSED BY COMMON -C NONE -C -C****************************************************************************** - - real X,X1,X2,Y1,Y2 - real R_LINEAR_INTERP - real SLOPE - real INTERCEPT - -C****************************************************************************** -C -C X real INTERPOLATION REQUESTED AT THIS DEPENDENT VALUE -C X1 real KNOWN LINEAR X COORDINATE OF POINT 1 -C X2 real KNOWN LINEAR X COORDINATE OF POINT 2 -C Y1 real KNOWN LINEAR Y COORDINATE OF POINT 1 -C Y2 real KNOWN LINEAR Y COORDINATE OF POINT 2 -C R_LINEAR_INTERP real FUNCTION FOR LINEAR INTERPOLATION -C SLOPE real Y VALUE CHANGE WITH RESPECT TO X VALUE CHANGE -C INTERCEPT real Y VALUE LOCATION AT AT X OF ZERO -C -C****************************************************************************** - -C Determine the degeneracy - - SLOPE = X2 - X1 - -C Handle the case of degenerate dependent values separately - - IF (SLOPE .EQ. 0.0) THEN - R_LINEAR_INTERP = 0.5*(Y2 + Y1) - ELSE - -C Interpolate in linear space - - SLOPE = (Y2 - Y1)/SLOPE - INTERCEPT = Y2 - SLOPE*X2 - R_LINEAR_INTERP = SLOPE*X + INTERCEPT - ENDIF - - RETURN - END - -C------------------------------------------------------------------------------ - - SUBROUTINE R_FIND_DE (EMAT,DEMAT) - -C****************************************************************************** -C -C THIS SUBROUTINE DETERMINES THE CHANNEL WIDTH OF THE INPUT SPECTRA. ENERGY -C WIDTHS ARE RETAINED FOR FUTURE CALLS TO THIS ROUTINE. -C -C INPUTS - DIRECTLY PASSED -C EMAT(SPECTRA_LEVELS) real ENERGIES OF THE SPECTRA -C -C INPUTS - PASSED BY NAMED COMMON /R_DE/ -C EMAT_SAVE(SPECTRA_LEVELS) -C real /R_DE/ PREVIOUS ENERGY -C DEMAT_SAVE(SPECTRA_LEVELS) -C real /R_DE/ PREVIOUS ENERGY WIDTH FOR EACH ENERGY -C -C OUTPUTS - DIRECTLY PASSED -C DEMAT(SPECTRA_LEVELS) real ENERGY WIDTHS OF THE SPECTRA -C -C OUTPUTS - PASSED BY NAMED COMMON /R_DE/ -C EMAT_SAVE(SPECTRA_LEVELS) -C real /R_DE/ CURRENT ENERGY -C DEMAT_SAVE(SPECTRA_LEVELS) -C real /R_DE/ CURRENT ENERGY WIDTH FOR EACH ENERGY -C -C****************************************************************************** - - IMPLICIT NONE - -C Include Electron Energy Deposition Parameters - - INCLUDE 'ED_R_elec_ed_lup_subs.inc' - -C DEFINE LOCAL VARIABLES - - INTEGER DUPLICATE - integer I,J,K - integer FIRST_GOOD_POINT - integer LAST_GOOD_POINT - real EMAT(SPECTRA_LEVELS) - real DEMAT(SPECTRA_LEVELS) - real EMAT_SAVE(SPECTRA_LEVELS) - real DEMAT_SAVE(SPECTRA_LEVELS) - COMMON /R_DE/ EMAT_SAVE,DEMAT_SAVE - -C****************************************************************************** -C -C DUPLICATE LOGICAL*2 LOGICAL FOR TEST OF OLD ENERGY MATRIX -C 1 MEANS THE ENERGY MATRIX HAS NOT CHANGED -C 0 MEANS THAT THERE IS A NEW ENERGY MATRIX -C I integer INDEX COUNTER -C J integer INDEX COUNTER -C K integer INDEX COUNTER -C FIRST_GOOD_POINT integer INDEX OF FIRST NON-ZERO ENERGY -C LAST_GOOD_POINT integer INDEX OF LAST NON-ZERO ENERGY -C FMAT(SPECTRA_LEVELS) -C real INTERNAL ARRAY HOLDING FLUX VALUES -C [#/(cm**2-sr-s-eV) OR #/(cm**2-s-eV)] -C EMAT(SPECTRA_LEVELS) -C real REQUESTED ENERGY CENTER VALUES -C DEMAT(SPECTRA_LEVELS) -C real WIDTH OF EACH DESCRETE SPECTRAL ENERGY LEVEL -C EMAT_SAVE(SPECTRA_LEVELS) -C real /R_DE/ PREVIOUS REQUESTED ENERGY VALUES -C DEMAT_SAVE(SPECTRA_LEVELS) -C real /R_DE/ PREVIOUS ENERGY WIDTHS -C -C****************************************************************************** - -C Check to see if channel widths have already been computed - - DUPLICATE = 1 - DO I=1,SPECTRA_LEVELS - IF (EMAT(I) .NE. EMAT_SAVE(I)) DUPLICATE = 0 - ENDDO - -C If you have computed them previously, just reload the previous values - - IF (DUPLICATE.eq.1) THEN - - DO I=1,SPECTRA_LEVELS - DEMAT(I) = DEMAT_SAVE(I) - ENDDO - -C If the previous energy sample has changed, you need to recompute -C channelwidths - - ELSE - -C Initialize energy width matrix - - DO I=1,spectra_LEVELS - DEMAT(I) = 0.0 - ENDDO - -C Initialize search indicies - - J = 0 - K = 0 - FIRST_GOOD_POINT = 0 - LAST_GOOD_POINT = 0 - -C Search for the first good point in the energy matrix - - DO I=spectra_LEVELS,1,-1 - IF (EMAT(I) .GT. 0.0) THEN - K = J - J = FIRST_GOOD_POINT - FIRST_GOOD_POINT = I - ENDIF - ENDDO - -C No valid data values in energy spectrum - - IF (FIRST_GOOD_POINT .EQ. 0) RETURN - -C Only one valid data values in energy spectrum - - IF (J .EQ. 0) RETURN - -C Only two data points - - IF (K .EQ. 0) THEN - I = FIRST_GOOD_POINT - DEMAT(I) = ABS(EMAT(I) - EMAT(J)) - DEMAT(J) = DEMAT(I) - RETURN - ENDIF - -C Search for the last good point in the energy matrix - - DO I=1,SPECTRA_LEVELS - IF (EMAT(I) .GT. 0.0) LAST_GOOD_POINT = I - ENDDO - -C Compute the initial energy width - - i = 1 - j = 2 - k = 3 - - DEMAT(I) = ABS(EMAT(I) - EMAT(J)) - - i = 0 - j = 1 - k = 2 - -C Do three point stepping ignoring zero's in energy matrix - - 100 I = J - J = K - 200 K = K + 1 - IF (K .GT. LAST_GOOD_POINT) go to 300 - IF (EMAT(K) .LE. 0.0) GO TO 200 - -C Compute the energy width - - DEMAT(J) = ABS(0.5*(EMAT(I)+EMAT(J)) - 0.5*(EMAT(K)+EMAT(J))) - - GO TO 100 - -C Compute the final energy width - - 300 DEMAT(J) = ABS(EMAT(I) - EMAT(J)) - -C Save the newly generated channel widths - - DO I=1,SPECTRA_LEVELS - DEMAT_SAVE(I) = DEMAT(I) - EMAT_SAVE(I) = EMAT(I) - ENDDO - - ENDIF - - RETURN - END diff --git a/util/EMPIRICAL/srcIE/ED_readme.ED b/util/EMPIRICAL/srcIE/ED_readme.ED deleted file mode 100644 index 7b996258..00000000 --- a/util/EMPIRICAL/srcIE/ED_readme.ED +++ /dev/null @@ -1,199 +0,0 @@ - - The Energy Deposition of a spectrum may be generated for an ISOTROPIC -distribution with VERTICAL FIELD LINES by linking the routines in file -R_elec_ed_lup_subs.f to your FORTRAN program. These routines have an -include file called R_elec_ed_lup_subs.inc which defines three parameters -which are useful in setting up to use these routines. These parameters -are called ENERGY_LEVELS, ALTITUDES, and SPECTRA_LEVELS. The first two -parameters (ENERGY_LEVELS and ALTITUDES) are the sizes of the pre-computed -energy deposition profiles. The parameter SPECTRA_LEVELS should be changed -by the user to reflect the size of the energy grid desired. The remaining -file used is the data file. This data file contains an ASCII representation -of each individual altitude profile. - - The user should note there within the subroutine package, there is a -BLOCK DATA statement. The BLOCK DATA is to initialize elements of an internal -named COMMON block for the energy deposition look-up tables. This BLOCK DATA -statement may need to be modified to fit within the users code scheme. - - The package is used by initializing the look-up tables, which places the -profiles in memory. This is done with the routine: - INTEGER*4 IERR - INTEGER*4 R_LOAD_EDEP_LOOKUP - IERR = R_LOAD_EDEP_LOOKUP () -A returned value of +1 means that the routine succeed and the profiles were loaded -and stored in memory correctly. Successive calls to the routine - INTEGER*4 FUNIT,EUNIT,PUNIT - REAL*4 FLUXMAT(SPECTRA_LEVELS) - REAL*4 ENRGMAT(SPECTRA_LEVELS) - REAL*4 PROFMAT(ALTITUDES) - CALL R_ELEC_EDEP (FLUXMAT,FUNIT,ENRGMAT,EUNIT,PROFMAT,PUNIT) -produce an energy deposition profile in array PROFMAT given the spectrum described -by the array FLUXMAT and ENRGMAT...where - - FLUXMAT(SPECTRA_LEVELS) is the energy of each spectral point, - FUNIT is a number describing the unit of the input flux, - ENRGMAT(SPECTRA_LEVELS) is the flux at each energy, - EUNIT is a number describing the unit of the input energy, - PROFMAT(ALTITUDES) is the intensity value on the altitude grid, - PUNIT is a number describing the unit of the output profile. -The possibilities are: - FUNIT = 1 = #/(km**2-s-eV) - 2 = #/(km**2-s-keV) - 3 = #/(km**2-s-MeV) - 4 = #/(km**2-s-Joule) - 5 = #/(km**2-s-erg) - 6 = #/(m**2-s-eV) - 7 = #/(m**2-s-keV) - 8 = #/(m**2-s-MeV) - 9 = #/(m**2-s-Joule) - 10 = #/(m**2-s-erg) - 11 = #/(cm**2-s-eV) - 12 = #/(cm**2-s-keV) - 13 = #/(cm**2-s-MeV) - 14 = #/(cm**2-s-Joule) - 15 = #/(cm**2-s-erg) - 16 = #/(km**2-s-sr-erg) - 17 = #/(km**2-s-sr-Joule) - 18 = #/(km**2-s-sr-MeV) - 19 = #/(km**2-s-sr-keV) - 20 = #/(km**2-s-sr-eV) - 21 = #/(m**2-s-sr-erg) - 22 = #/(m**2-s-sr-Joule) - 23 = #/(m**2-s-sr-MeV) - 24 = #/(m**2-s-sr-keV) - 25 = #/(m**2-s-sr-eV) - 26 = #/(cm**2-s-sr-erg) - 27 = #/(cm**2-s-sr-Joule) - 28 = #/(cm**2-s-sr-MeV) - 29 = #/(cm**2-s-sr-keV) - 30 = #/(cm**2-s-sr-eV) - EUNIT = 1 = erg - 2 = Joule - 3 = eV - 4 = keV - 5 = MeV - PUNIT = 1 = Ionizations/(km**3-s) - 2 = eV/(km**3-s) - 3 = keV/(km**3-s) - 4 = MeV/(km**3-s) - 5 = Joule/(km**3-s) - 6 = erg/(km**3-s) - 7 = Ionizations/(m**3-s) - 8 = eV/(m**3-s) - 9 = keV/(m**3-s) - 10 = MeV/(m**3-s) - 11 = Joule/(m**3-s) - 12 = erg/(m**3-s) - 13 = Ionizations/(cm**3-s) - 14 = eV/(cm**3-s) - 15 = keV/(cm**3-s) - 16 = MeV/(cm**3-s) - 17 = Joule/(cm**3-s) - 18 = erg/(cm**3-s) - -There are several routines in the package which may be helpful. Here are -some brief descriptions. A more detailed explanation my be acquired by -examining the commented source code. - -Initialize memory: - BLOCK DATA - -Load in and expand energy deposition tables - INTEGER*4 IERR - INTEGER*4 R_LOAD_EDEP_LOOKUP - IERR = R_LOAD_EDEP_LOOKUP () - -Find the index nearest the altitude - INTEGER*4 ALT_INDEX - INTEGER*4 R_EDEP_ALT_INDEX - REAL*4 GALT - INTEGER*4 UNIT - ALT_INDEX = R_EDEP_ALT_INDEX (GALT,UNIT) - where - - GALT is the requested altitude - UNIT is the unit of the request - 1 = cm - 2 = m - 3 = km - 4 = mbar - -Find the index nearest the energy - INTEGER*4 ENG_INDEX - INTEGER*4 R_EDEP_ENG_INDEX - REAL*4 GALT - INTEGER*4 UNIT - ENG_INDEX = R_EDEP_ENG_INDEX (GENG,UNIT) - where - - GENG is the requested energy - UNIT is the unit of the request - 1 = erg - 2 = Joule - 3 = eV - 4 = keV - 5 = MeV - -Find the altitde at the requested index - REAL*4 ALT - REAL*4 R_EDEP_ALT_VALUE - INTEGER*4 ALT_INDEX - INTEGER*4 UNIT - ALT = R_EDEP_ALT_VALUE (ALT_INDEX,UNIT) - where - - ALT_INDEX is the requested altitude index - UNIT is the unit of the altitude requested - 1 = cm - 2 = m - 3 = km - 4 = mbar - -Find the energy at the requested index - REAL*4 ENG - REAL*4 R_EDEP_ENG_VALUE - INTEGER*4 ENG_INDEX - INTEGER*4 UNIT - ENG = R_EDEP_ENG_VALUE (ENG_INDEX,UNIT) - where - - ENG_INDEX is the requested energy index - UNIT is the unit of the energy requested - 1 = erg - 2 = Joule - 3 = eV - 4 = keV - 5 = MeV - -Find the energy deposition profile for a spectrum - INTEGER*4 FUNIT - INTEGER*4 EUNIT - INTEGER*4 PUNIT - REAL*4 FLUXMAT(SPECTRA_LEVELS) - REAL*4 ENRGMAT(SPECTRA_LEVELS) - REAL*4 PROFMAT(SPECTRA_LEVELS) - CALL R_ELEC_EDEP (FLUXMAT,FUNIT,ENRGMAT,EUNIT,PROFMAT,PUNIT) - -Interpolate logrithimically (log-log) - REAL*4 X,X2,X1,Y,Y2,Y1 - REAL*4 R_LOG_INTERP - Y = R_LOG_INTERP (X,X2,X1,Y2,Y1) - -Interpolate semilogrithimically (log-linear) - REAL*4 X,X2,X1,Y,Y2,Y1 - REAL*4 R_SEMILOG_INTERP - Y = R_SEMILOG_INTERP (X,X2,X1,Y2,Y1) - -Interpolate semilinearly (linear-log) - REAL*4 X,X2,X1,Y,Y2,Y1 - REAL*4 R_SEMILINEAR_INTERP - Y = R_SEMILINEAR_INTERP (X,X2,X1,Y2,Y1) - -Interpolate linearly (linear-linear) - REAL*4 X,X2,X1,Y,Y2,Y1 - REAL*4 R_LINEAR_INTERP - Y = R_LINEAR_INTERP (X,X2,X1,Y2,Y1) - -Determine the energy width - REAL*4 EMAT(SPECTRA_LEVELS) - REAL*4 DEMAT(SPECTRA_LEVELS) - CALL R_FIND_DE (EMAT,DEMAT) - -Pressure is related to altitude with the 1976 US Standard Atmosphere. All of -the energy deposition profiles were generated using this atmosphere. diff --git a/util/EMPIRICAL/srcIE/EIE_End.f90 b/util/EMPIRICAL/srcIE/EIE_End.f90 deleted file mode 100644 index a031dcb3..00000000 --- a/util/EMPIRICAL/srcIE/EIE_End.f90 +++ /dev/null @@ -1,19 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -subroutine EIE_End(iError) - - use ModEIE_Interface - - integer, intent(out) :: iError - - iError = 0 - if (allocated(EIEr3_HaveMLTs)) deallocate(EIEr3_HaveMLTs, stat=iError) - if (allocated(EIEr3_HaveLats)) deallocate(EIEr3_HaveLats, stat=iError) - if (allocated(EIEr3_HavePotential)) & - deallocate(EIEr3_HavePotential, stat=iError) - if (allocated(EIEr3_HaveEFlux)) deallocate(EIEr3_HaveEFlux, stat=iError) - if (allocated(EIEr3_HaveAveE)) deallocate(EIEr3_HaveAveE, stat=iError) - - stop - -end subroutine EIE_End diff --git a/util/EMPIRICAL/srcIE/EIE_Initialize.f90 b/util/EMPIRICAL/srcIE/EIE_Initialize.f90 deleted file mode 100644 index 66fe76ad..00000000 --- a/util/EMPIRICAL/srcIE/EIE_Initialize.f90 +++ /dev/null @@ -1,357 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -subroutine EIE_Initialize(iOutputError) - - use ModErrors - use ModEIE_Interface - use ModEIEFiles - use ModIoUnit, only: UnitTmp_ - use ModCharSize - - use EIE_ModWeimer, only: readcoef96, readcoef01 - use read_data, only: read_potential, read_schatable, read_bndy - - implicit none - - integer, intent(out) :: iOutputError - character(len=iCharLenIE_) :: inFileName - integer :: iError - - integer, parameter :: South_ = 1 - integer, parameter :: North_ = 2 - - logical :: IsFound_EFieldModel - integer :: nAmieLats, nAmieMlts, nAmieBlocks - - iError = 0 - iOutputError = 0 - - IsFound_EFieldModel = .false. - - call set_error_codes - - !\ - ! -------------------------------------------------------------------- - ! Electric Field Models - ! -------------------------------------------------------------------- - !/ - - if (iDebugLevel > 1) & - write(*, *) "==> Efield Model : ", EIE_NameOfEFieldModel - - if (iDebugLevel > 1) & - write(*, *) "==> Model Directory : ", EIE_NameOfModelDir - - if (index(EIE_NameOfEFieldModel, 'zero') > 0) then - IsFound_EFieldModel = .true. - endif - - if (index(EIE_NameOfEFieldModel, 'weimer96') > 0) then - IsFound_EFieldModel = .true. - call merge_str(EIE_NameOfModelDir, weimer96_file) - open(UnitTmp_, file=weimer96_file, status='old', iostat=iError) - if (iError /= 0) then - write(6, *) 'Error opening file :', weimer96_file - iOutputError = ecFileNotFound_ - endif - call ReadCoef96(UnitTmp_) - close(UnitTmp_) - endif - - if (index(EIE_NameOfEFieldModel, 'weimer01') > 0) then - IsFound_EFieldModel = .true. - call merge_str(EIE_NameOfModelDir, weimer01_file) - open(UnitTmp_, file=weimer01_file, status='old', & - form='unformatted', iostat=iError) - if (iError /= 0) then - write(6, *) 'Error opening file :', weimer01_file - iOutputError = ecFileNotFound_ - endif - call ReadCoef01(UnitTmp_) - close(UnitTmp_) - endif - - if (index(EIE_NameOfEFieldModel, 'weimer05') > 0) then - IsFound_EFieldModel = .true. - inFileName = 'W05scEpot.dat' - call merge_str(EIE_NameOfModelDir, inFileName) - call read_potential(inFileName) - inFileName = 'SCHAtable.dat' - call merge_str(EIE_NameOfModelDir, inFileName) - call read_schatable(inFileName) - inFileName = 'W05scBndy.dat' - call merge_str(EIE_NameOfModelDir, inFileName) - call read_bndy(inFileName) - endif - -! if (index(EIE_NameOfEFieldModel,'samie') > 0) then -! IsFound_EFieldModel = .true. -! call merge_str(EIE_NameOfModelDir, stat_amie_file) -! open(UnitTmp_,file=stat_amie_file,status='old', iostat = iError) -! if (iError /= 0) then -! write(6,*) 'Error opening file :',stat_amie_file -! iOutputError = ecFileNotFound_ -! endif -! call read_amies(UnitTmp_) -! close(UnitTmp_) -! endif - - if (index(EIE_NameOfEFieldModel, 'millstone_hpi') > 0) then - IsFound_EFieldModel = .true. - call merge_str(EIE_NameOfModelDir, millstone_hill_i_file) - open(UnitTmp_, file=millstone_hill_i_file, status='old', iostat=iError) - if (iError /= 0) then - write(6, *) 'Error opening file :', millstone_hill_i_file - iOutputError = ecFileNotFound_ - endif - call mhinit(1, UnitTmp_, 1, iDebugLevel) - close(UnitTmp_) - endif - - if (index(EIE_NameOfEFieldModel, 'millstone_imf') > 0) then - IsFound_EFieldModel = .true. - call merge_str(EIE_NameOfModelDir, millstone_hill_s_file) - open(UnitTmp_, file=millstone_hill_s_file, status='old', iostat=iError) - if (iError /= 0) then - write(6, *) 'Error opening file :', millstone_hill_s_file - iOutputError = ecFileNotFound_ - endif - call mhinit(2, UnitTmp_, 1, iDebugLevel) - close(UnitTmp_) - endif - - if (index(EIE_NameOfEFieldModel, 'hmr89') > 0) then - IsFound_EFieldModel = .true. - call merge_str(EIE_NameOfModelDir, hepner_maynard_file) - open(UnitTmp_, file=hepner_maynard_file, status='old', iostat=iError) - if (iError /= 0) then - write(6, *) 'Error opening file :', hepner_maynard_file - iOutputError = ecFileNotFound_ - endif - call gethmr(UnitTmp_) - close(UnitTmp_) - endif - - if (index(EIE_NameOfEFieldModel, 'izmem') > 0) then - IsFound_EFieldModel = .true. - call merge_str(EIE_NameOfModelDir, izmem_file) - open(UnitTmp_, file=izmem_file, status='old', iostat=iError) - if (iError /= 0) then - write(6, *) 'Error opening file :', izmem_file - iOutputError = ecFileNotFound_ - endif - call izinit(UnitTmp_) - close(UnitTmp_) - endif - - !\ - ! -------------------------------------------------------------------- - ! Conductance Models - ! -------------------------------------------------------------------- - !/ - - if (iDebugLevel > 1) & - write(*, *) "==> Conductance Model : ", EIE_NameOfAuroralModel - - if (index(EIE_NameOfAuroralModel, 'ihp') > 0) & - call read_conductance_model(iError) - if (index(EIE_NameOfAuroralModel, 'hpi') > 0) & - call read_conductance_model(iError) - if (index(EIE_NameOfAuroralModel, 'pem') > 0) & - call read_conductance_model(iError) - - if (iDebugLevel > 4) write(*, *) "=====> Back from read conductance" - - if (index(EIE_NameOfEFieldModel, 'amie') > 0) then - - IsFound_EFieldModel = .true. - UseGridBasedEIE = .true. - UAl_UseGridBasedEIE = .true. - - call AMIE_SetFileName(AMIEFileNorth) - call readAMIEOutput(North_, .false., iDebugLevel, iError) - - if (index(AMIEFileSouth, 'mirror') > 0) then - call AMIE_SetFileName(AMIEFileNorth) - call readAMIEOutput(South_, .true., iDebugLevel, iError) - else - call AMIE_SetFileName(AMIEFileSouth) - call readAMIEOutput(South_, .false., iDebugLevel, iError) - endif - - call AMIE_GetnLats(nAmieLats) - call AMIE_GetnMLTs(nAmieMlts) - nAmieBlocks = 2 - - call EIE_InitGrid(nAmieLats, nAmieMlts, nAmieBlocks, iOutputError) - call AMIE_GetLats(EIEr3_HaveLats) - call AMIE_GetMLTs(EIEr3_HaveMLTs) - - return - - endif - - if (.not. IsFound_EFieldModel) then - iOutputError = ecEFieldModelNotFound_ - endif - - if (iDebugLevel > 3) write(*, *) "====> Done with EIE_Initialize" - -end subroutine EIE_Initialize - -!------------------------------------------------------------------------ -!------------------------------------------------------------------------ - -subroutine EIE_InitGrid(nLats, nMlts, nBlocks, iOutputError) - - use ModErrors - use ModEIE_Interface - use ModEIEFiles - - implicit none - - integer, intent(in) :: nLats, nMlts, nBlocks - integer, intent(out) :: iOutputError - - integer :: iError - - iError = 0 - - EIEi_HavenLats = nLats - EIEi_HavenMLTs = nMlts - EIEi_HavenBLKs = nBlocks - - if (iDebugLevel > 1) then - write(*, *) "=> EIEi_HavenBLKs : ", EIEi_HavenBLKs - write(*, *) "=> EIEi_HavenLats : ", EIEi_HavenLats - write(*, *) "=> EIEi_HavenMLTs : ", EIEi_HavenMLTs - endif - - allocate(EIEr3_HaveLats(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveLats in Interface" - stop - endif - - allocate(EIEr3_HaveMlts(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveMlts in Interface" - stop - endif - - allocate(EIEr3_HavePotential(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HavePotential in Interface" - stop - endif - - allocate(EIEr3_HaveEFlux(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveEFlux in Interface" - stop - endif - - allocate(EIEr3_HaveAveE(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveAveE in Interface" - stop - endif - - allocate(EIEr3_HaveIonEFlux(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveIonEFlux in Interface" - stop - endif - - allocate(EIEr3_HaveIonAveE(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveIonAveE in Interface" - stop - endif - - allocate(EIEr3_HaveMonoEFlux(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveMonoEFlux in Interface" - stop - endif - - allocate(EIEr3_HaveMonoAveE(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveMonoAveE in Interface" - stop - endif - - allocate(EIEr3_HaveWaveEFlux(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveWaveEFlux in Interface" - stop - endif - - allocate(EIEr3_HaveWaveAveE(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveWaveAveE in Interface" - stop - endif - - iOutputError = iError - -end subroutine EIE_InitGrid - -!------------------------------------------------------------------------ -!------------------------------------------------------------------------ - -subroutine EIE_FillLats(Lats, iOutputError) - - use ModErrors - use ModEIE_Interface - - implicit none - - real, intent(in) :: Lats(EIEi_HavenLats) - integer, intent(out) :: iOutputError - - integer :: iMlt - - iOutputError = 0 - - do iMlt = 1, EIEi_HavenMlts - EIEr3_HaveLats(iMlt, :, 1) = Lats - enddo - -end subroutine EIE_FillLats - -!------------------------------------------------------------------------ -!------------------------------------------------------------------------ - -subroutine EIE_FillMltsOffset(Mlts, iOutputError) - - use ModErrors - use ModEIE_Interface - - implicit none - - real, intent(in) :: Mlts(EIEi_HavenMlts - 1) - integer, intent(out) :: iOutputError - - integer :: iMlt, iLat - - iOutputError = 0 - - do iLat = 1, EIEi_HavenLats - EIEr3_HaveMlts(1, iLat, 1) = Mlts(EIEi_HavenMlts - 2) - 360.0 - EIEr3_HaveMlts(2:EIEi_HavenMlts, iLat, 1) = Mlts - enddo - -end subroutine EIE_FillMltsOffset - diff --git a/util/EMPIRICAL/srcIE/EIE_IoLibrary.f90 b/util/EMPIRICAL/srcIE/EIE_IoLibrary.f90 deleted file mode 100644 index c2c35a22..00000000 --- a/util/EMPIRICAL/srcIE/EIE_IoLibrary.f90 +++ /dev/null @@ -1,683 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -!---------------------------------------------------------------------- - -subroutine IO_SetnMLTs(nMLTsIn) - use ModEIE_Interface - implicit none - integer, intent(in) :: nMLTsIn - IOi_NeednMLTs = nMLTsIn -end subroutine IO_SetnMLTs - -!---------------------------------------------------------------------- - -subroutine IO_SetnLats(nLatsIn) - use ModEIE_Interface - implicit none - integer, intent(in) :: nLatsIn - IOi_NeednLats = nLatsIn -end subroutine IO_SetnLats - -!---------------------------------------------------------------------- - -subroutine IO_SetTime(TimeIn) -! use ModKind - use ModEIE_Interface - implicit none -! Integer, parameter :: Real8_ = selected_real_kind(14,200) - real(kind=Real8_), intent(in) :: TimeIn - IOd_NeedTime = TimeIn -end subroutine IO_SetTime - -!---------------------------------------------------------------------- - -subroutine IO_SetIMFBz(IMFBzIn) -! use ModKind - use ModEIE_Interface - implicit none - real, intent(in) :: IMFBzIn - IOr_NeedIMFBz = IMFBzIn -end subroutine IO_SetIMFBz - -!---------------------------------------------------------------------- - -subroutine IO_SetIMFBy(IMFByIn) -! use ModKind - use ModEIE_Interface - implicit none - real, intent(in) :: IMFByIn - IOr_NeedIMFBy = IMFByIn -end subroutine IO_SetIMFBy - -!---------------------------------------------------------------------- - -subroutine IO_SetSWV(SWVIn) -! use ModKind - use ModEIE_Interface - implicit none - real, intent(in) :: SWVIn - IOr_NeedSWV = SWVIn -end subroutine IO_SetSWV - -!---------------------------------------------------------------------- - -subroutine IO_SetSWN(SWNIn) -! use ModKind - use ModEIE_Interface - implicit none - real, intent(in) :: SWNIn - IOr_NeedSWN = SWNIn -end subroutine IO_SetSWN - -!---------------------------------------------------------------------- - -subroutine IO_SetHPI(HPIIn) -! use ModKind - use ModEIE_Interface - implicit none - real, intent(in) :: HPIIn - IOr_NeedHPI = HPIIn - IOr_NeedHPINorm = 2.09*ALOG(HPIIn)*1.0475 -end subroutine IO_SetHPI - -!---------------------------------------------------------------------- - -subroutine IO_SetHPINorm(HPINormIn) -! use ModKind - use ModEIE_Interface - implicit none - real, intent(in) :: HPINormIn - IOr_NeedHPINorm = HPINormIn -end subroutine IO_SetHPINorm - -!---------------------------------------------------------------------- - -subroutine IO_SetKp(KpIn) -! use ModKind - use ModEIE_Interface - implicit none - real, intent(in) :: KpIn - IOr_NeedKp = KpIn -end subroutine IO_SetKp - -!---------------------------------------------------------------------- - -subroutine IO_SetNorth -! use ModKind - use ModEIE_Interface - implicit none - IOl_IsNorth = .true. -end subroutine IO_SetNorth - -!---------------------------------------------------------------------- - -subroutine IO_SetSouth -! use ModKind - use ModEIE_Interface - implicit none - IOl_IsNorth = .false. -end subroutine IO_SetSouth - -!---------------------------------------------------------------------- - -subroutine IO_SetMLTs(MLTsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(IOi_NeednMLTs, IOi_NeednLats), intent(in) :: MLTsIn - - integer :: i, j - - iError = 0 - if (allocated(IOr2_NeedMLTs)) deallocate(IOr2_NeedMLTs) - allocate(IOr2_NeedMLTs(IOi_NeednMLTs, IOi_NeednLats), stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - else - do i = 1, IOi_NeednMLTs - do j = 1, IOi_NeednLats - IOr2_NeedMLTs(i, j) = mod((MLTsIn(i, j) + 24.0), 24.0) - enddo - enddo - endif - -end subroutine IO_SetMLTs - -!---------------------------------------------------------------------- - -subroutine IO_SetLats(LatsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(IOi_NeednMLTs, IOi_NeednLats), intent(in) :: LatsIn - - iError = 0 - if (allocated(IOr2_NeedLats)) deallocate(IOr2_NeedLats) - allocate(IOr2_NeedLats(IOi_NeednMLTs, IOi_NeednLats), stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - else - IOr2_NeedLats(1:IOi_NeednMLTs, 1:IOi_NeednLats) = & - LatsIn(1:IOi_NeednMLTs, 1:IOi_NeednLats) - endif - -end subroutine IO_SetLats - -!---------------------------------------------------------------------- - -subroutine IO_SetGrid(MLTsIn, LatsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(IOi_NeednMLTs, IOi_NeednLats), intent(in) :: MLTsIn, LatsIn - real, dimension(2) :: IOr1_Location - real, dimension(5) :: EIEr1_Location - - integer :: i, j - - iError = 0 - - call IO_SetMLTs(MLTsIn, iError) - if (iError /= 0) return - - call IO_SetLats(LatsIn, iError) - if (iError /= 0) return - - if (UseGridBasedEIE) then - - if (allocated(IOi3_InterpolationIndices)) & - deallocate(IOi3_InterpolationIndices) - allocate(IOi3_InterpolationIndices(IOi_NeednMLTs, IOi_NeednLats, 3), & - stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - endif - - if (allocated(IOr3_InterpolationRatios)) & - deallocate(IOr3_InterpolationRatios) - allocate(IOr3_InterpolationRatios(IOi_NeednMLTs, IOi_NeednLats, 2), & - stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - endif - - do i = 1, IOi_NeednLats - do j = 1, IOi_NeednMLTs - - IOr1_Location(1) = mod((IOr2_NeedMLTs(j, i) + 24.0), 24.0) - IOr1_Location(2) = IOr2_NeedLats(j, i) - - call EIE_FindPoint(IOr1_Location, EIEr1_Location, iError) - - if (iError == 0) then - IOi3_InterpolationIndices(j, i, 1:3) = EIEr1_Location(1:3) - IOr3_InterpolationRatios(j, i, 1:2) = EIEr1_Location(4:5) - else - IOi3_InterpolationIndices(j, i, 1) = -1 - endif - - enddo - enddo - - endif - -end subroutine IO_SetGrid - -!---------------------------------------------------------------------- - -subroutine IO_GetPotential(PotentialOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(IOi_NeednMLTs, IOi_NeednLats) :: ValueOut - real, dimension(IOi_NeednMLTs, IOi_NeednLats), intent(out) :: PotentialOut - real :: Filler = 0.0 - - iError = 0 - - if (UseGridBasedEIE) then - - EIE_Value = EIEr3_HavePotential - - call IO_GetValue(EIE_Value, ValueOut, Filler, iError) - - if (iError /= 0) then - write(*, *) "Error in routine IO_GetPotential:" - write(*, *) cErrorCodes(iError) - stop - else - PotentialOut = ValueOut - endif - - else - - call IO_GetNonGridBasedPotential(ValueOut, iError) - - if (iError == 0) then - PotentialOut = ValueOut - else - PotentialOut = -1.0e32 - endif - - endif - -end subroutine IO_GetPotential - -subroutine IO_GetNonGridBasedPotential(PotentialOut, iError) - - use EIE_ModWeimer, only: WeiEpot96, get_tilt - use w05sc, only: setmodel, epotval - - use ModEIE_Interface - use ModErrors - use ModTimeConvert, ONLY: time_real_to_int - - implicit none - - integer, intent(out) :: iError - real, dimension(IOi_NeednMLTs, IOi_NeednLats), intent(out) :: PotentialOut - - integer, dimension(7) :: itime - integer :: iYear, iMonth, iDay, iHour, iMinute, iSecond - - integer :: iChange, iHemisphere - - integer :: iMLT, iLat - - real :: Potential, ETheta, EPhi, MLT, Lat, tilt, hr - - iError = 0 - - PotentialOut = 0.0 - - if (index(EIE_NameOfEFieldModel, 'zero') > 0) then - return - endif - - if (IOd_NeedTime < 0.0) then - iError = ecTimeNotSet_ - return - endif - - if (index(EIE_NameOfEFieldModel, 'hpi') <= 0) then - if (IOr_NeedIMFBz < -1000.0) then - iError = ecIMFBzNotSet_ - return - endif - if (IOr_NeedIMFBy < -1000.0) then - iError = ecIMFByNotSet_ - return - endif - endif - - if (index(EIE_NameOfEFieldModel, 'weimer05') > 0) then - if (IOr_NeedSWV < -1000.0) then - iError = ecSWVNotSet_ - return - endif - if (IOr_NeedSWN < -1000.0) then - iError = ecSWNNotSet_ - return - endif - iChange = 1 - endif - - if (index(EIE_NameOfEFieldModel, 'weimer01') > 0) then - if (IOr_NeedSWV < -1000.0) then - iError = ecSWVNotSet_ - return - endif - iChange = 1 - endif - - if (index(EIE_NameOfEFieldModel, 'weimer96') > 0) then - if (IOr_NeedSWV < -1000.0) then - iError = ecSWVNotSet_ - return - endif - iChange = 1 - endif - - if (index(EIE_NameOfEFieldModel, 'millstone') > 0) then - if (IOr_NeedHPI < -1000.0) then - iError = ecHPINotSet_ - return - endif - endif - - if (index(EIE_NameOfEFieldModel, 'hmr89') > 0) then - if (IOr_NeedKP < -1000.0) then - iError = ecKPNotSet_ - return - endif - iChange = 1 - endif - - call time_real_to_int(IOd_NeedTime, itime) - - iYear = itime(1) - iMonth = itime(2) - iDay = itime(3) - iHour = itime(4) - iMinute = itime(5) - iSecond = itime(6) - - Lat = 0.0 - - do iMLT = 1, IOi_NeednMLTs - do iLat = 1, IOi_NeednLats - - if (iLat == 1) then - iChange = 1 - else - if (IOr2_NeedLats(iMLT, iLat)*IOr2_NeedLats(iMLT, iLat - 1) <= 0.0) & - iChange = 1 - endif - - MLT = IOr2_NeedMLTs(iMLT, iLat) - Lat = IOr2_NeedLats(iMLT, iLat) - - if (IOl_IsNorth) then - if (Lat > 0.0) then - iHemisphere = 1 - else - Lat = abs(Lat) - iHemisphere = -1 - endif - else - iHemisphere = -1 - if (Lat < 0.0) Lat = abs(Lat) - endif - - if (index(EIE_NameOfEFieldModel, 'weimer05') > 0) then - if (abs(lat) >= 45.0) then - hr = float(iHour) + float(iMinute)/60.0 - tilt = get_tilt(iYear, iMonth, iDay, hr) - call setmodel(IOr_NeedIMFBy, IOr_NeedIMFBz, tilt, & - IOr_NeedSWV, IOr_NeedSWN, 'epot') - call epotval(lat, mlt, 0.0, Potential) - Potential = Potential*1000.0 - iChange = 0 - else - Potential = 0.0 - ETheta = 0.0 - EPhi = 0.0 - endif - endif - - if (index(EIE_NameOfEFieldModel, 'weimer96') > 0) then - if (abs(lat) >= 45.0) then - !call timing_start("weimer") - call WEIEPOT96(iYear, iMonth, iDay, iHour, iMinute, IOr_NeedSWV, & - IOr_NeedIMFBy, IOr_NeedIMFBz, iHemisphere, iChange, & - Lat, MLT, ETheta, EPhi, Potential) - !call timing_stop("weimer") - Potential = Potential*1000.0 - iChange = 0 - else - Potential = 0.0 - ETheta = 0.0 - EPhi = 0.0 - endif - endif - - if (index(EIE_NameOfEFieldModel, 'millstone_hpi') > 0) then - call MHEMODL(Lat, mlt, IOr_NeedHPI, IOr_NeedIMFBy, & - IOr_NeedIMFBz, 1, ETheta, EPhi, Potential) - Potential = Potential*1000.0 - endif - - if (index(EIE_NameOfEFieldModel, 'millstone_imf') > 0) then - call MHEMODL(lat, mlt, IOr_NeedHPI, IOr_NeedIMFBy, & - IOr_NeedIMFBz, 2, ETheta, EPhi, Potential) - Potential = Potential*1000.0 - endif - - if (index(EIE_NameOfEFieldModel, 'hmr89') > 0) then - call HMREPOT(lat, mlt, IOr_NeedIMFBy, IOr_NeedIMFBz, & - IOr_NeedKp, iChange, ETheta, EPhi, Potential) - Potential = Potential*1000.0 - iChange = 0 - endif - - if (index(EIE_NameOfEFieldModel, 'izmem') > 0) then - call IZEPOT(iMonth, lat, mlt, iHemisphere*IOr_NeedIMFBy, & - IOr_NeedIMFBz, ETheta, EPhi, Potential) - Potential = Potential*1000.0 - endif - - PotentialOut(iMLT, iLat) = Potential - - enddo - enddo - -end subroutine IO_GetNonGridBasedPotential - -!---------------------------------------------------------------------- - -subroutine IO_GetAveE(AveEOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(IOi_NeednMLTs, IOi_NeednLats) :: ValueOut - real, dimension(IOi_NeednMLTs, IOi_NeednLats), intent(out) :: AveEOut - - iError = 0 - - if (UseGridBasedEIE) then - - EIE_Value = EIEr3_HaveAveE - call IO_GetValue(EIE_Value, ValueOut, 0.1, iError) - - if (iError /= 0) then - write(*, *) "Error in routine IO_GetAveE:" - write(*, *) cErrorCodes(iError) - else - AveEOut = ValueOut - endif - - else - - call IO_GetNonGridBasedAveE(ValueOut, iError) - - if (iError == 0) then - AveEOut = ValueOut - else - AveEOut = -1.0e32 - endif - - endif - -end subroutine IO_GetAveE - -subroutine IO_GetNonGridBasedAveE(AveEOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(IOi_NeednMLTs, IOi_NeednLats) :: AveEOut - - integer :: iMLT, iLat - real :: Lat, MLT, hpi - real :: ped, hal, avkev, eflx - - iError = 0 - if (IOr_NeedHPINorm < -1000.0) then - iError = ecHPINotSet_ - return - endif - - do iMLT = 1, IOi_NeednMLTs - do iLat = 1, IOi_NeednLats - - MLT = IOr2_NeedMLTs(iMLT, iLat) - Lat = IOr2_NeedLats(iMLT, iLat) - hpi = IOr_NeedHPINorm - - call get_auroral_conductance(Lat, MLT, hpi, & - ped, hal, avkev, eflx) - - AveEOut(iMLT, iLat) = avkev - - enddo - enddo - -end subroutine IO_GetNonGridBasedAveE - -subroutine IO_GetNonGridBasedEFlux(EFluxOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(IOi_NeednMLTs, IOi_NeednLats) :: EFluxOut - - integer :: iMLT, iLat - real :: Lat, MLT, hpi - real :: ped, hal, avkev, eflx - - iError = 0 - - if (IOr_NeedHPINorm < -1000.0) then - iError = ecHPINotSet_ - return - endif - - do iMLT = 1, IOi_NeednMLTs - do iLat = 1, IOi_NeednLats - - MLT = IOr2_NeedMLTs(iMLT, iLat) - Lat = IOr2_NeedLats(iMLT, iLat) - - call get_auroral_conductance(Lat, MLT, IOr_NeedHPINorm, & - ped, hal, avkev, eflx) - - ! Need to convert from erg/cm2/s to W/m2 - EFluxOut(iMLT, iLat) = eflx !* 1.0e-7 * 100.0 * 100.0 - - enddo - enddo - -end subroutine IO_GetNonGridBasedEFlux - -!---------------------------------------------------------------------- - -subroutine IO_GetEFlux(EFluxOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(IOi_NeednMLTs, IOi_NeednLats) :: ValueOut - real, dimension(IOi_NeednMLTs, IOi_NeednLats), intent(out) :: EFluxOut - - iError = 0 - - if (UseGridBasedEIE) then - - EIE_Value = EIEr3_HaveEFlux - call IO_GetValue(EIE_Value, ValueOut, 1.0e-10, iError) - - if (iError /= 0) then - write(*, *) "Error in routine IO_GetEFlux:" - write(*, *) cErrorCodes(iError) - stop - else - EFluxOut = ValueOut - endif - - else - - call IO_GetNonGridBasedEFlux(ValueOut, iError) - - if (iError == 0) then - EFluxOut = ValueOut - else - EFluxOut = -1.0e32 - endif - - endif - -end subroutine IO_GetEFlux - -!---------------------------------------------------------------------- - -subroutine IO_GetValue(ValueIn, ValueOut, Filler, iError) - - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, intent(in) :: Filler - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), intent(in) :: & - ValueIn - real, dimension(IOi_NeednMLTs, IOi_NeednLats), intent(out) :: ValueOut - - integer :: iMLT, iLat, iB, iM, iL - real :: dM, dL - - iError = 0 - - do iMLT = 1, IOi_NeednMLTs - do iLat = 1, IOi_NeednLats - - iB = IOi3_InterpolationIndices(iMLT, iLat, 1) - iM = IOi3_InterpolationIndices(iMLT, iLat, 2) - iL = IOi3_InterpolationIndices(iMLT, iLat, 3) - - if (iB < 0 .or. iM < 0 .or. iL < 0) then - ValueOut(iMLT, iLat) = Filler - else - - dM = IOr3_InterpolationRatios(iMLT, iLat, 1) - dL = IOr3_InterpolationRatios(iMLT, iLat, 2) - - ValueOut(iMLT, iLat) = & - (1.0 - dM)*(1.0 - dL)*ValueIn(iM, IL, iB) + & - (1.0 - dM)*(dL)*ValueIn(iM, IL + 1, iB) + & - (dM)*(dL)*ValueIn(iM + 1, IL + 1, iB) + & - (dM)*(1.0 - dL)*ValueIn(iM + 1, IL, iB) - - endif - - enddo - enddo - -end subroutine IO_GetValue - diff --git a/util/EMPIRICAL/srcIE/EIE_Library.f90 b/util/EMPIRICAL/srcIE/EIE_Library.f90 deleted file mode 100644 index b7df0d67..00000000 --- a/util/EMPIRICAL/srcIE/EIE_Library.f90 +++ /dev/null @@ -1,109 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -!\ -! This routine finds a point on in the Spherical system, given -! a Theta, Phi: -! LocIn(1) = Phi -! LocIn(2) = Theta -! It returns a 4 element array: -! LocOut(1) = Index of Block -! LocOut(2) = Index of Longitude -! LocOut(3) = Index of Latitude -! LocOut(4) = Multiplication factor for Longitude -! LocOut(5) = Multiplication factor for Latitude -!/ - -subroutine EIE_FindPoint(LocIn, LocOut, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - real, dimension(2), intent(in) :: LocIn - real, dimension(5), intent(out) :: LocOut - integer, intent(out) :: iError - real :: MLTIn, LatIn, MLTUp, MLTDown - integer :: j, i, iBLK - - logical :: IsFound - - LocOut = -1.0 - - iError = 0 - - !\ - ! Check to see if the point is even on the grid. - !/ - - MLTIn = mod(LocIn(1), 24.0) - - LatIn = LocIn(2) - if (LatIn > 90.0) then - LatIn = 180.0 - LatIn - MLTIn = mod(MLTIn + 12.0, 24.0) - endif - if (LatIn < -90.0) then - LatIn = -180.0 - LatIn - MLTIn = mod(MLTIn + 12.0, 24.0) - endif - - if (MLTIn > 24.0 .or. MLTIn < 0 .or. LatIn > 90.0 .or. LatIn < -90.0) then - iError = ecPointOutofRange_ - return - endif - - iBLK = 1 - do while (iBLK <= EIEi_HavenBLKs) - j = 1 - do while (j < EIEi_HavenMLTs) - i = 1 - do while (i < EIEi_HavenLats) - - !\ - ! Check to see if the point is within the current cell - !/ - - MLTUp = EIEr3_HaveMLTs(j + 1, i, iBLK) - MLTDown = EIEr3_HaveMLTs(j, i, iBLK) - if (MLTUp == 0.0 .and. MLTDown >= 23.0) MLTUp = 24.0 - - if (LatIn < EIEr3_HaveLats(j, i + 1, iBLK) .and. & - LatIn >= EIEr3_HaveLats(j, i, iBLK) .and. & - MLTIn < MLTUp .and. & - MLTIn >= MLTDown) then - - !\ - ! If it is, then store the cell number and calculate - ! the interpolation coefficients. - !/ - - LocOut(1) = iBLK - LocOut(2) = j - LocOut(3) = i - - LocOut(4) = (MLTIn - MLTDown)/ & - (MLTUp - MLTDown) - LocOut(5) = (LatIn - EIEr3_HaveLats(j, i, iBLK))/ & - (EIEr3_HaveLats(j, i + 1, iBLK) - EIEr3_HaveLats(j, i, iBLK)) - - iBLK = EIEi_HavenBLKs - j = EIEi_HavenMLTs - i = EIEi_HavenLats - - endif - - i = i + 1 - - enddo - - j = j + 1 - - enddo - - iBLK = iBLK + 1 - - enddo - -end subroutine EIE_FindPoint diff --git a/util/EMPIRICAL/srcIE/EIE_UaLibrary.f90 b/util/EMPIRICAL/srcIE/EIE_UaLibrary.f90 deleted file mode 100644 index 58c9350c..00000000 --- a/util/EMPIRICAL/srcIE/EIE_UaLibrary.f90 +++ /dev/null @@ -1,786 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -!---------------------------------------------------------------------- - -subroutine UA_SetnMLTs(nMLTsIn) - use ModEIE_Interface - implicit none - integer, intent(in) :: nMLTsIn - UAi_NeednMLTs = nMLTsIn -end subroutine UA_SetnMLTs - -!---------------------------------------------------------------------- - -subroutine UA_SetnLats(nLatsIn) - use ModEIE_Interface - implicit none - integer, intent(in) :: nLatsIn - UAi_NeednLats = nLatsIn -end subroutine UA_SetnLats - -!---------------------------------------------------------------------- - -!subroutine UA_SetTime(TimeIn) -!! use ModKind -! use ModEIE_Interface -! implicit none -!! Integer, parameter :: Real8_ = selected_real_kind(14,200) -! real (kind=Real8_), intent(in) :: TimeIn -! UAd_NeedTime = TimeIn -!end subroutine UA_SetTime - -!---------------------------------------------------------------------- - -subroutine UA_SetNorth -! use ModKind - use ModEIE_Interface - implicit none - UAl_IsNorth = .true. -end subroutine UA_SetNorth - -!---------------------------------------------------------------------- - -subroutine UA_SetSouth -! use ModKind - use ModEIE_Interface - implicit none - UAl_IsNorth = .false. -end subroutine UA_SetSouth - -!---------------------------------------------------------------------- - -subroutine UA_SetMLTs(MLTsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(in) :: MLTsIn - - integer :: i, j - - iError = 0 - if (allocated(UAr2_NeedMLTs)) deallocate(UAr2_NeedMLTs) - allocate(UAr2_NeedMLTs(UAi_NeednMLTs, UAi_NeednLats), stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - else - do i = 1, UAi_NeednMLTs - do j = 1, UAi_NeednLats - UAr2_NeedMLTs(i, j) = mod((MLTsIn(i, j) + 24.0), 24.0) - enddo - enddo - endif - -end subroutine UA_SetMLTs - -!---------------------------------------------------------------------- - -subroutine UA_SetLats(LatsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(in) :: LatsIn - - iError = 0 - if (allocated(UAr2_NeedLats)) deallocate(UAr2_NeedLats) - allocate(UAr2_NeedLats(UAi_NeednMLTs, UAi_NeednLats), stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - else - UAr2_NeedLats(1:UAi_NeednMLTs, 1:UAi_NeednLats) = & - LatsIn(1:UAi_NeednMLTs, 1:UAi_NeednLats) - endif - -end subroutine UA_SetLats - -!---------------------------------------------------------------------- - -subroutine UA_SetGrid(MLTsIn, LatsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(in) :: MLTsIn, LatsIn - real, dimension(2) :: UAr1_Location - real, dimension(5) :: EIEr1_Location - - integer :: i, j - - iError = 0 - - call UA_SetMLTs(MLTsIn, iError) - if (iError /= 0) return - - call UA_SetLats(LatsIn, iError) - if (iError /= 0) return - - if (UAl_UseGridBasedEIE) then - - if (allocated(UAi3_InterpolationIndices)) & - deallocate(UAi3_InterpolationIndices) - allocate(UAi3_InterpolationIndices(UAi_NeednMLTs, UAi_NeednLats, 3), & - stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - endif - - if (allocated(UAr3_InterpolationRatios)) & - deallocate(UAr3_InterpolationRatios) - allocate(UAr3_InterpolationRatios(UAi_NeednMLTs, UAi_NeednLats, 2), & - stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - endif - - do i = 1, UAi_NeednLats - do j = 1, UAi_NeednMLTs - - UAr1_Location(1) = mod((UAr2_NeedMLTs(j, i) + 24.0), 24.0) - UAr1_Location(2) = UAr2_NeedLats(j, i) - - call EIE_FindPoint(UAr1_Location, EIEr1_Location, iError) - - if (iError == 0) then - UAi3_InterpolationIndices(j, i, 1:3) = EIEr1_Location(1:3) - UAr3_InterpolationRatios(j, i, 1:2) = EIEr1_Location(4:5) - else - UAi3_InterpolationIndices(j, i, 1) = -1 - endif - - enddo - enddo - - endif - -end subroutine UA_SetGrid - -!---------------------------------------------------------------------- -! General get value code - just do linear interpolation with the value -!---------------------------------------------------------------------- - -subroutine UA_GetValue(ValueIn, ValueOut, Filler, iError) - - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, intent(in) :: Filler - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), intent(in) :: & - ValueIn - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(out) :: ValueOut - - integer :: iMLT, iLat, iB, iM, iL - real :: dM, dL - - iError = 0 - - do iMLT = 1, UAi_NeednMLTs - do iLat = 1, UAi_NeednLats - - iB = UAi3_InterpolationIndices(iMLT, iLat, 1) - iM = UAi3_InterpolationIndices(iMLT, iLat, 2) - iL = UAi3_InterpolationIndices(iMLT, iLat, 3) - - if (iB < 0 .or. iM < 0 .or. iL < 0) then - ValueOut(iMLT, iLat) = Filler - else - - dM = UAr3_InterpolationRatios(iMLT, iLat, 1) - dL = UAr3_InterpolationRatios(iMLT, iLat, 2) - - ValueOut(iMLT, iLat) = & - (1.0 - dM)*(1.0 - dL)*ValueIn(iM, IL, iB) + & - (1.0 - dM)*(dL)*ValueIn(iM, IL + 1, iB) + & - (dM)*(dL)*ValueIn(iM + 1, IL + 1, iB) + & - (dM)*(1.0 - dL)*ValueIn(iM + 1, IL, iB) - - endif - - enddo - enddo - -end subroutine UA_GetValue - -!---------------------------------------------------------------------- -! Potential -!---------------------------------------------------------------------- - -subroutine UA_GetPotential(PotentialOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: ValueOut - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(out) :: PotentialOut - real :: Filler = 0.0 - integer :: iMLT, iLat - - iError = 0 - - if (UAl_UseGridBasedEIE) then - - EIE_Value = EIEr3_HavePotential - - call UA_GetValue(EIE_Value, ValueOut, Filler, iError) - - if (iError /= 0) then - write(*, *) "Error in routine UA_GetPotential:" - write(*, *) cErrorCodes(iError) - stop - else - PotentialOut = ValueOut - endif - - else - - call UA_GetNonGridBasedPotential(ValueOut, iError) - - ! In Weimer, there are sometimes 0 potentials. I don't know why. - if (maxval(abs(UAr2_NeedLats)) > 80.0) then - - do iMlt = 2, UAi_NeednMLTs - 1 - do iLat = 2, UAi_NeednLats - 1 - if (ValueOut(iMlt, iLat) == 0.0) then - if (ValueOut(iMlt, iLat - 1)*ValueOut(iMlt, iLat + 1) > 0) then - ! this is a "hole" in the potential, since the potential is - ! the same sign both above and below the current point. - ValueOut(iMlt, iLat) = ( & - ValueOut(iMlt - 1, iLat) + & - ValueOut(iMlt, iLat - 1) + & - ValueOut(iMlt + 1, iLat) + & - ValueOut(iMlt, iLat + 1))/4.0 - endif - endif - enddo - enddo - - endif - - if (iError == 0) then - PotentialOut = ValueOut - else - write(*, *) 'error in UA_GetPotential (nongrid): ', cErrorCodes(iError) - stop - PotentialOut = -1.0e32 - endif - - endif - -end subroutine UA_GetPotential - -!---------------------------------------------------------------------- -! Potential - non-grid-based -!---------------------------------------------------------------------- - -subroutine UA_GetNonGridBasedPotential(PotentialOut, iError) - - use EIE_ModWeimer, only: WeiEpot96, get_tilt - use w05sc, only: setmodel, epotval - - use ModEIE_Interface - use ModErrors - use ModTimeConvert, ONLY: time_real_to_int - - implicit none - - integer, intent(out) :: iError - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(out) :: PotentialOut - - integer, dimension(7) :: itime - integer :: iYear, iMonth, iDay, iHour, iMinute, iSecond - - integer :: iChange, iHemisphere - - integer :: iMLT, iLat - - real :: Potential, ETheta, EPhi, MLT, Lat, tilt, hr - - iError = 0 - - PotentialOut = 0.0 - - if (index(EIE_NameOfEFieldModel, 'zero') > 0) then - return - endif - - if (IOd_NeedTime < 0.0) then - iError = ecTimeNotSet_ - return - endif - - if (index(EIE_NameOfEFieldModel, 'hpi') <= 0) then - if (IOr_NeedIMFBz < -1000.0) then - iError = ecIMFBzNotSet_ - return - endif - if (IOr_NeedIMFBy < -1000.0) then - iError = ecIMFByNotSet_ - return - endif - endif - - if (index(EIE_NameOfEFieldModel, 'weimer05') > 0) then - if (IOr_NeedSWV < -1000.0) then - iError = ecSWVNotSet_ - return - endif - if (IOr_NeedSWN < -1000.0) then - iError = ecSWNNotSet_ - return - endif - iChange = 1 - endif - - if (index(EIE_NameOfEFieldModel, 'weimer01') > 0) then - if (IOr_NeedSWV < -1000.0) then - iError = ecSWVNotSet_ - return - endif - iChange = 1 - endif - - if (index(EIE_NameOfEFieldModel, 'weimer96') > 0) then - if (IOr_NeedSWV < -1000.0) then - iError = ecSWVNotSet_ - return - endif - iChange = 1 - endif - - if (index(EIE_NameOfEFieldModel, 'millstone') > 0) then - if (IOr_NeedHPI < -1000.0) then - iError = ecHPINotSet_ - return - endif - endif - - if (index(EIE_NameOfEFieldModel, 'hmr89') > 0) then - if (IOr_NeedKP < -1000.0) then - iError = ecKPNotSet_ - return - endif - iChange = 1 - endif - - call time_real_to_int(IOd_NeedTime, itime) - - iYear = itime(1) - iMonth = itime(2) - iDay = itime(3) - iHour = itime(4) - iMinute = itime(5) - iSecond = itime(6) - - Lat = 0.0 - - do iMLT = 1, UAi_NeednMLTs - do iLat = 1, UAi_NeednLats - - if (iLat == 1) then - iChange = 1 - else - if (UAr2_NeedLats(iMLT, iLat)*UAr2_NeedLats(iMLT, iLat - 1) <= 0.0) & - iChange = 1 - endif - - MLT = UAr2_NeedMLTs(iMLT, iLat) - Lat = UAr2_NeedLats(iMLT, iLat) - - if (UAl_IsNorth) then - if (Lat > 0.0) then - iHemisphere = 1 - else - Lat = abs(Lat) - iHemisphere = -1 - endif - else - iHemisphere = -1 - if (Lat < 0.0) Lat = abs(Lat) - endif - - if (index(EIE_NameOfEFieldModel, 'weimer05') > 0) then - if (abs(lat) >= 45.0) then - hr = float(iHour) + float(iMinute)/60.0 - if (IsFixedTilt) then - tilt = 0.0 - else - tilt = iHemisphere*get_tilt(iYear, iMonth, iDay, hr) - endif - call setmodel(IOr_NeedIMFBy, IOr_NeedIMFBz, tilt, & - IOr_NeedSWV, IOr_NeedSWN, 'epot') - call epotval(lat, mlt, 0.0, Potential) - Potential = Potential*1000.0 - iChange = 0 - else - Potential = 0.0 - ETheta = 0.0 - EPhi = 0.0 - endif - endif - - if (index(EIE_NameOfEFieldModel, 'weimer96') > 0) then - if (abs(lat) >= 45.0) then - !call timing_start("weimer") - call WEIEPOT96(iYear, iMonth, iDay, iHour, iMinute, IOr_NeedSWV, & - IOr_NeedIMFBy, IOr_NeedIMFBz, iHemisphere, iChange, & - Lat, MLT, ETheta, EPhi, Potential) - !call timing_stop("weimer") - Potential = Potential*1000.0 - iChange = 0 - else - Potential = 0.0 - ETheta = 0.0 - EPhi = 0.0 - endif - endif - - if (index(EIE_NameOfEFieldModel, 'millstone_hpi') > 0) then - call MHEMODL(Lat, mlt, IOr_NeedHPI, IOr_NeedIMFBy, & - IOr_NeedIMFBz, 1, ETheta, EPhi, Potential) - Potential = Potential*1000.0 - endif - - if (index(EIE_NameOfEFieldModel, 'millstone_imf') > 0) then - call MHEMODL(lat, mlt, IOr_NeedHPI, IOr_NeedIMFBy, & - IOr_NeedIMFBz, 2, ETheta, EPhi, Potential) - Potential = Potential*1000.0 - endif - - if (index(EIE_NameOfEFieldModel, 'hmr89') > 0) then - call HMREPOT(lat, mlt, IOr_NeedIMFBy, IOr_NeedIMFBz, & - IOr_NeedKp, iChange, ETheta, EPhi, Potential) - Potential = Potential*1000.0 - iChange = 0 - endif - - if (index(EIE_NameOfEFieldModel, 'izmem') > 0) then - call IZEPOT(iMonth, lat, mlt, iHemisphere*IOr_NeedIMFBy, & - IOr_NeedIMFBz, ETheta, EPhi, Potential) - Potential = Potential*1000.0 - endif - - PotentialOut(iMLT, iLat) = Potential - - enddo - enddo - -end subroutine UA_GetNonGridBasedPotential - -!---------------------------------------------------------------------- -! Electron Average Energy -!---------------------------------------------------------------------- - -subroutine UA_GetAveE(AveEOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: ValueOut - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(out) :: AveEOut - - iError = 0 - - if (UAl_UseGridBasedEIE) then - - EIE_Value = EIEr3_HaveAveE - call UA_GetValue(EIE_Value, ValueOut, 0.1, iError) - - if (iError /= 0) then - write(*, *) "Error in routine UA_GetAveE:" - write(*, *) cErrorCodes(iError) - else - AveEOut = ValueOut - endif - - else - - call UA_GetNonGridBasedAveE(ValueOut, iError) - - if (iError == 0) then - AveEOut = ValueOut - else - AveEOut = -1.0e32 - endif - - endif - -end subroutine UA_GetAveE - -!---------------------------------------------------------------------- -! Electron Average Energy - non-grid-based -!---------------------------------------------------------------------- - -subroutine UA_GetNonGridBasedAveE(AveEOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: AveEOut - - integer :: iMLT, iLat - real :: Lat, MLT, hpi - real :: ped, hal, avkev, eflx - - iError = 0 - if (IOr_NeedHPINorm < -1000.0) then - iError = ecHPINotSet_ - return - endif - - do iMLT = 1, UAi_NeednMLTs - do iLat = 1, UAi_NeednLats - - MLT = UAr2_NeedMLTs(iMLT, iLat) - Lat = UAr2_NeedLats(iMLT, iLat) - hpi = IOr_NeedHPINorm - - call get_auroral_conductance(Lat, MLT, hpi, & - ped, hal, avkev, eflx) - - AveEOut(iMLT, iLat) = avkev - - enddo - enddo - -end subroutine UA_GetNonGridBasedAveE - -!---------------------------------------------------------------------- -! Electron Energy Flux -!---------------------------------------------------------------------- - -subroutine UA_GetEFlux(EFluxOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: ValueOut - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(out) :: EFluxOut - - iError = 0 - - if (UAl_UseGridBasedEIE) then - - EIE_Value = EIEr3_HaveEFlux - call UA_GetValue(EIE_Value, ValueOut, 1.0e-10, iError) - - if (iError /= 0) then - write(*, *) "Error in routine UA_GetEFlux:" - write(*, *) cErrorCodes(iError) - stop - else - EFluxOut = ValueOut - endif - - else - - call UA_GetNonGridBasedEFlux(ValueOut, iError) - - if (iError == 0) then - EFluxOut = ValueOut - else - EFluxOut = -1.0e32 - endif - - endif - -end subroutine UA_GetEFlux - -!---------------------------------------------------------------------- -! Electron Energy Flux - non-grid-based -!---------------------------------------------------------------------- - -subroutine UA_GetNonGridBasedEFlux(EFluxOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: EFluxOut - - integer :: iMLT, iLat - real :: Lat, MLT, hpi - real :: ped, hal, avkev, eflx - - iError = 0 - - if (IOr_NeedHPINorm < -1000.0) then - iError = ecHPINotSet_ - return - endif - - do iMLT = 1, UAi_NeednMLTs - do iLat = 1, UAi_NeednLats - - MLT = UAr2_NeedMLTs(iMLT, iLat) - Lat = UAr2_NeedLats(iMLT, iLat) - - call get_auroral_conductance(Lat, MLT, IOr_NeedHPINorm, & - ped, hal, avkev, eflx) - - EFluxOut(iMLT, iLat) = eflx - - enddo - enddo - -end subroutine UA_GetNonGridBasedEFlux - -!---------------------------------------------------------------------- -! Ions Average Energy -!---------------------------------------------------------------------- - -subroutine UA_GetIonAveE(IonAveEOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: ValueOut - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(out) :: IonAveEOut - - iError = 0 - - if (UAl_UseGridBasedEIE) then - - EIE_Value = EIEr3_HaveIonAveE - call UA_GetValue(EIE_Value, ValueOut, 0.1, iError) - - if (iError /= 0) then - write(*, *) "Error in routine UA_GetAveE:" - write(*, *) cErrorCodes(iError) - else - IonAveEOut = ValueOut - endif - - else - - call UA_GetNonGridBasedAveE(ValueOut, iError) - - if (iError == 0) then - IonAveEOut = ValueOut - else - IonAveEOut = 0.0 - endif - - endif - -end subroutine UA_GetIonAveE - -!---------------------------------------------------------------------- -! Ion Average Energy - non-grid-based -!---------------------------------------------------------------------- - -subroutine UA_GetNonGridBasedIonAveE(IonAveEOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: IonAveEOut - - write(*, *) "UA_GetNonGridBasedIonAveE doen't work yet!" - IonAveEOut = 0.0 - -end subroutine UA_GetNonGridBasedIonAveE - -!---------------------------------------------------------------------- -! Ion Energy Flux -!---------------------------------------------------------------------- - -subroutine UA_GetIonEFlux(IonEFluxOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: ValueOut - real, dimension(UAi_NeednMLTs, UAi_NeednLats), intent(out) :: IonEFluxOut - - iError = 0 - - if (UAl_UseGridBasedEIE) then - - EIE_Value = EIEr3_HaveIonEFlux - call UA_GetValue(EIE_Value, ValueOut, 1.0e-10, iError) - - if (iError /= 0) then - write(*, *) "Error in routine UA_GetEFlux:" - write(*, *) cErrorCodes(iError) - stop - else - IonEFluxOut = ValueOut - endif - - else - - call UA_GetNonGridBasedEFlux(ValueOut, iError) - - if (iError == 0) then - IonEFluxOut = ValueOut - else - IonEFluxOut = -1.0e32 - endif - - endif - -end subroutine UA_GetIonEFlux - -!---------------------------------------------------------------------- -! Ion Energy Flux - non-grid-based -!---------------------------------------------------------------------- - -subroutine UA_GetNonGridBasedIonEFlux(IonEFluxOut, iError) - - use ModEIE_Interface - use ModErrors - - implicit none - - integer, intent(out) :: iError - real, dimension(UAi_NeednMLTs, UAi_NeednLats) :: IonEFluxOut - - write(*, *) "UA_GetNonGridBasedIonEFlux doesn't work yet!" - IonEFluxOut = 0.0 - -end subroutine UA_GetNonGridBasedIonEFlux - diff --git a/util/EMPIRICAL/srcIE/EIE_set_inputs.f90 b/util/EMPIRICAL/srcIE/EIE_set_inputs.f90 deleted file mode 100644 index d0bc797a..00000000 --- a/util/EMPIRICAL/srcIE/EIE_set_inputs.f90 +++ /dev/null @@ -1,154 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -subroutine EIE_set_inputs(StringInputLines) - - use ModEIE_Interface - use ModEIEFiles - use ModExtras - use ModCharSize - - implicit none - - character(len=iCharLenIE_), dimension(*), intent(in) :: StringInputLines - character(len=iCharLenIE_) :: StringLine - logical :: IsDone - integer :: iLine, iDebugProc - - iLine = 1 - - IsDone = .false. - - do while (.not. IsDone) - - StringLine = StringInputLines(iLine) - - if (StringLine(1:1) == "#") then - - if (index(StringLine, "#BACKGROUND") > 0) then - - call read_in_string(EIE_NameOfModelDir) - call read_in_string(EIE_NameOfEFieldModel) - call read_in_string(EIE_NameOfAuroralModel) - call read_in_string(EIE_NameOfSolarModel) - - if (index(EIE_NameOfAuroralModel, 'IHP') > 0) & - EIE_NameOfAuroralModel = 'ihp' - if (index(EIE_NameOfAuroralModel, 'PEM') > 0) & - EIE_NameOfAuroralModel = 'pem' - - if (index(EIE_NameOfEFieldModel, 'AMIE') > 0) & - EIE_NameOfEFieldModel = 'amie' - - if (index(EIE_NameOfEFieldModel, 'weimer01') > 0) & - EIE_NameOfEFieldModel = 'weimer01' - if (index(EIE_NameOfEFieldModel, 'Weimer01') > 0) & - EIE_NameOfEFieldModel = 'weimer01' - if (index(EIE_NameOfEFieldModel, 'WEIMER01') > 0) & - EIE_NameOfEFieldModel = 'weimer01' - - if (index(EIE_NameOfEFieldModel, 'weimer05') > 0) & - EIE_NameOfEFieldModel = 'weimer05' - if (index(EIE_NameOfEFieldModel, 'Weimer05') > 0) & - EIE_NameOfEFieldModel = 'weimer05' - if (index(EIE_NameOfEFieldModel, 'WEIMER05') > 0) & - EIE_NameOfEFieldModel = 'weimer05' - -! if (index(EIE_NameOfEFieldModel,'weimer') > 0 .and. & -! index(EIE_NameOfEFieldModel,'01') == 0) & -! EIE_NameOfEFieldModel = 'weimer96' -! if (index(EIE_NameOfEFieldModel,'Weimer') > 0 .and. & -! index(EIE_NameOfEFieldModel,'01') == 0) & -! EIE_NameOfEFieldModel = 'weimer96' -! if (index(EIE_NameOfEFieldModel,'WEIMER') > 0 .and. & -! index(EIE_NameOfEFieldModel,'01') == 0) & -! EIE_NameOfEFieldModel = 'weimer96' - - if (index(EIE_NameOfEFieldModel, 'weimer96') > 0) & - EIE_NameOfEFieldModel = 'weimer96' - if (index(EIE_NameOfEFieldModel, 'Weimer96') > 0) & - EIE_NameOfEFieldModel = 'weimer96' - if (index(EIE_NameOfEFieldModel, 'WEIMER96') > 0) & - EIE_NameOfEFieldModel = 'weimer96' - - if (index(EIE_NameOfEFieldModel, 'SAMIE') > 0) & - EIE_NameOfEFieldModel = 'samie' - - UseGridBasedEIE = .false. - UAl_UseGridBasedEIE = .false. - - endif - - if (index(StringLine, "#AMIEFILES") > 0) then - call read_in_string(AMIEFileNorth) - call read_in_string(AMIEFileSouth) - EIE_NameOfEFieldModel = "amie" - UseGridBasedEIE = .true. - UAl_UseGridBasedEIE = .true. - endif - - if (index(StringLine, "#DEBUG") > 0) then - call read_in_int(iDebugLevel) - call read_in_int(iDebugProc) - if (iDebugProc >= 0 .and. iProc /= iDebugProc) then - iDebugLevel = -1 - endif - endif - - if (index(StringLine, "#FIXTILT") > 0) then - call read_in_logical(IsFixedTilt) - endif - - if (index(StringLine, "#END") > 0) then - IsDone = .true. - endif - - if (iLine >= MaxInputLines) then - IsDone = .true. - endif - - else - - iLine = iLine + 1 - - endif - - enddo - -contains - - subroutine read_in_int(variable) - integer, intent(out) :: variable - iline = iline + 1 - read(StringInputLines(iline), *) variable - end subroutine read_in_int - - subroutine read_in_logical(variable) - logical, intent(out) :: variable - iline = iline + 1 - read(StringInputLines(iline), *) variable - end subroutine read_in_logical - - subroutine read_in_string(variable) - character(len=iCharLenIE_), intent(out) :: variable - iline = iline + 1 - variable = StringInputLines(iline) - end subroutine read_in_string - - subroutine read_in_real(variable) - real :: variable - iline = iline + 1 - read(StringInputLines(iline), *) variable - end subroutine read_in_real - - subroutine read_in_time(variable) - use ModTimeConvert, ONLY: time_int_to_real - real*8 :: variable - integer, dimension(7) :: itime - iline = iline + 1 - read(StringInputLines(iline), *) itime(1:6) - itime(7) = 0 - call time_int_to_real(itime, variable) - end subroutine read_in_time - -end subroutine EIE_set_inputs diff --git a/util/EMPIRICAL/srcIE/GM_Library.f90 b/util/EMPIRICAL/srcIE/GM_Library.f90 deleted file mode 100644 index e65a4c03..00000000 --- a/util/EMPIRICAL/srcIE/GM_Library.f90 +++ /dev/null @@ -1,235 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -!---------------------------------------------------------------------- - -subroutine GM_SetnMLTs(nMLTsIn) - use ModEIE_Interface - implicit none - integer, intent(in) :: nMLTsIn - GMi_NeednMLTs = nMLTsIn -end subroutine GM_SetnMLTs - -!---------------------------------------------------------------------- - -subroutine GM_SetnLats(nLatsIn) - use ModEIE_Interface - implicit none - integer, intent(in) :: nLatsIn - GMi_NeednLats = nLatsIn -end subroutine GM_SetnLats - -!---------------------------------------------------------------------- - -subroutine GM_SetMLTs(MLTsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(GMi_NeednMLTs, GMi_NeednLats), intent(in) :: MLTsIn - - integer :: i, j - - iError = 0 - if (allocated(GMr2_NeedMLTs)) deallocate(GMr2_NeedMLTs) - allocate(GMr2_NeedMLTs(GMi_NeednMLTs, GMi_NeednLats), stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - else - do i = 1, GMi_NeednMLTs - do j = 1, GMi_NeednLats - GMr2_NeedMLTs(i, j) = mod((MLTsIn(i, j) + 24.0), 24.0) - enddo - enddo - endif - -end subroutine GM_SetMLTs - -!---------------------------------------------------------------------- - -subroutine GM_SetLats(LatsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(GMi_NeednMLTs, GMi_NeednLats), intent(in) :: LatsIn - - iError = 0 - if (allocated(GMr2_NeedLats)) deallocate(GMr2_NeedLats) - allocate(GMr2_NeedLats(GMi_NeednMLTs, GMi_NeednLats), stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - else - GMr2_NeedLats(1:GMi_NeednMLTs, 1:GMi_NeednLats) = & - LatsIn(1:GMi_NeednMLTs, 1:GMi_NeednLats) - endif - -end subroutine GM_SetLats - -!---------------------------------------------------------------------- - -subroutine GM_SetGrid(MLTsIn, LatsIn, iError) - - use ModErrors - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(GMi_NeednMLTs, GMi_NeednLats), intent(in) :: MLTsIn, LatsIn - real, dimension(2) :: GMr1_Location - real, dimension(5) :: EIEr1_Location - - integer :: i, j - - iError = 0 - - call GM_SetMLTs(MLTsIn, iError) - if (iError /= 0) return - - call GM_SetLats(LatsIn, iError) - if (iError /= 0) return - - allocate(GMi3_InterpolationIndices(GMi_NeednMLTs, GMi_NeednLats, 3), & - stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - endif - - allocate(GMr3_InterpolationRatios(GMi_NeednMLTs, GMi_NeednLats, 2), & - stat=iError) - if (iError /= 0) then - iError = ecAllocationError_ - return - endif - - do i = 1, GMi_NeednLats - do j = 1, GMi_NeednMLTs - - GMr1_Location(1) = GMr2_NeedMLTs(j, i) - GMr1_Location(2) = GMr2_NeedLats(j, i) - - call EIE_FindPoint(GMr1_Location, EIEr1_Location, iError) - - if (iError == 0) then - GMi3_InterpolationIndices(j, i, 1:3) = EIEr1_Location(1:3) - GMr3_InterpolationRatios(j, i, 1:2) = EIEr1_Location(4:5) - else - GMi3_InterpolationIndices(j, i, 1) = -1 - endif - - enddo - enddo - -end subroutine GM_SetGrid - -!---------------------------------------------------------------------- - -subroutine GM_GetPotential(PotentialOut, iError) - - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(GMi_NeednMLTs, GMi_NeednLats) :: ValueOut - real, dimension(GMi_NeednMLTs, GMi_NeednLats), intent(out) :: PotentialOut - - iError = 0 - - EIE_Value = EIEr3_HavePotential - call GM_GetValue(EIE_Value, ValueOut, iError) - PotentialOut = ValueOut - -end subroutine GM_GetPotential - -!---------------------------------------------------------------------- - -subroutine GM_GetAveE(AveEOut, iError) - - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(GMi_NeednMLTs, GMi_NeednLats) :: ValueOut - real, dimension(GMi_NeednMLTs, GMi_NeednLats), intent(out) :: AveEOut - - iError = 0 - - EIE_Value = EIEr3_HaveAveE - call GM_GetValue(EIE_Value, ValueOut, iError) - AveEOut = ValueOut - -end subroutine GM_GetAveE - -!---------------------------------------------------------------------- - -subroutine GM_GetEFlux(EFluxOut, iError) - - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs) :: EIE_Value - real, dimension(GMi_NeednMLTs, GMi_NeednLats) :: ValueOut - real, dimension(GMi_NeednMLTs, GMi_NeednLats), intent(out) :: EFluxOut - - iError = 0 - - EIE_Value = EIEr3_HaveEFlux - call GM_GetValue(EIE_Value, ValueOut, iError) - EFluxOut = ValueOut - -end subroutine GM_GetEFlux - -!---------------------------------------------------------------------- - -subroutine GM_GetValue(ValueIn, ValueOut, iError) - - use ModEIE_Interface - - implicit none - - integer, intent(out) :: iError - real, dimension(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), intent(in) :: & - ValueIn - real, dimension(GMi_NeednMLTs, GMi_NeednLats), intent(out) :: ValueOut - - integer :: iMLT, iLat, iB, iM, iL - real :: dM, dL - - iError = 0 - - do iMLT = 1, GMi_NeednMLTs - do iLat = 1, GMi_NeednLats - - iB = GMi3_InterpolationIndices(iMLT, iLat, 1) - iM = GMi3_InterpolationIndices(iMLT, iLat, 2) - iL = GMi3_InterpolationIndices(iMLT, iLat, 3) - - dM = GMr3_InterpolationRatios(iMLT, iLat, 1) - dL = GMr3_InterpolationRatios(iMLT, iLat, 2) - - ValueOut(iMLT, iLat) = & - (1.0 - dM)*(1.0 - dL)*ValueIn(iM, IL, iB) + & - (dM)*(1.0 - dL)*ValueIn(iM + 1, IL, iB) + & - (1.0 - dM)*(dL)*ValueIn(iM, IL + 1, iB) - - enddo - enddo - -end subroutine GM_GetValue - diff --git a/util/EMPIRICAL/srcIE/MHD_Library.f90 b/util/EMPIRICAL/srcIE/MHD_Library.f90 deleted file mode 100644 index ebb30bef..00000000 --- a/util/EMPIRICAL/srcIE/MHD_Library.f90 +++ /dev/null @@ -1,349 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -!---------------------------------------------------------------------- - -subroutine MHD_SetFileName(cFileNameIn) - use ModMHD_Interface - use ModCharSize - implicit none - character(len=*), intent(in) :: cFileNameIn - MHD_FileName = cFileNameIn -end subroutine MHD_SetFileName - -!---------------------------------------------------------------------- - -subroutine MHD_SetYear(iYearIn) - use ModMHD_Interface - implicit none - integer, intent(in) :: iYearIn - MHD_Year = iYearIn -end subroutine MHD_SetYear - -!---------------------------------------------------------------------- - -subroutine MHD_SetMonth(iMonthIn) - use ModMHD_Interface - implicit none - integer, intent(in) :: iMonthIn - MHD_Month = iMonthIn -end subroutine MHD_SetMonth - -!---------------------------------------------------------------------- - -subroutine MHD_SetDay(iDayIn) - use ModMHD_Interface - implicit none - integer, intent(in) :: iDayIn - MHD_Day = iDayIn -end subroutine MHD_SetDay - -!---------------------------------------------------------------------- - -subroutine MHD_GetFileName(cFileNameOut) - use ModMHD_Interface - use ModCharSize - implicit none - character(len=iCharLenIE_), intent(out) :: cFileNameOut - cFileNameOut = MHD_FileName -end subroutine MHD_GetFileName - -!---------------------------------------------------------------------- - -subroutine MHD_GetnTimes(nTimesOut) - use ModMHD_Interface - implicit none - integer, intent(out) :: nTimesOut - nTimesOut = MHD_nTimes -end subroutine MHD_GetnTimes - -!---------------------------------------------------------------------- - -subroutine MHD_GetnMLTs(nMLTsOut) - use ModMHD_Interface - implicit none - integer, intent(out) :: nMLTsOut - nMLTsOut = MHD_nMLTs -end subroutine MHD_GetnMLTs - -!---------------------------------------------------------------------- - -subroutine MHD_GetnLats(nLatsOut) - use ModMHD_Interface - implicit none - integer, intent(out) :: nLatsOut - nLatsOut = MHD_nLats -end subroutine MHD_GetnLats - -!---------------------------------------------------------------------- - -subroutine MHD_GetLats(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, LatsOut) - - use ModMHD_Interface - - implicit none - - integer, intent(in) :: EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs - real, dimension(EIEi_nMlts, EIEi_nLats, EIEi_nBLKs), intent(out) :: LatsOut - integer :: i, j - - do i = 1, EIEi_nMLTs - do j = EIEi_nLats, 1, -1 - LatsOut(i, j, MHD_North_) = MHD_Lats(EIEi_nLats - j + 1) - enddo - LatsOut(i, 1:EIEi_nLats, MHD_South_) = -MHD_Lats(1:EIEi_nLats) - enddo - -end subroutine MHD_GetLats - -!---------------------------------------------------------------------- - -subroutine MHD_GetMLTs(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, MLTsOut) - - use ModMHD_Interface - - implicit none - - integer, intent(in) :: EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs - real, dimension(EIEi_nMlts, EIEi_nLats, EIEi_nBLKs), intent(out) :: MLTsOut - integer :: j - - do j = 1, EIEi_nLats - MLTsOut(1:EIEi_nMLTs, j, 1) = MHD_MLTs(1:EIEi_nMLTs) - MLTsOut(1:EIEi_nMLTs, j, 2) = MHD_MLTs(1:EIEi_nMLTs) - enddo - -end subroutine MHD_GetMLTs - -!---------------------------------------------------------------------- - -subroutine MHD_GetPotential(TimeIn, Method, & - EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, PotentialOut, iError) - - use ModMHD_Interface - use ModErrors - - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method, EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs - real, dimension(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs), intent(out) :: PotentialOut - real, dimension(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs) :: ValueOut - integer, intent(out) :: iError - - MHD_Value = MHD_Potential - - call MHD_GetValue(TimeIn, Method, & - EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, ValueOut, iError) - - if (iError /= 0) then - write(*, *) "Error in routine MHD_GetPotential:" - write(*, *) cErrorCodes(iError) - stop - else - PotentialOut = ValueOut - endif - -end subroutine MHD_GetPotential - -!---------------------------------------------------------------------- - -subroutine MHD_GetEFlux(TimeIn, Method, & - EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, EFluxOut, iError) - - use ModMHD_Interface - use ModErrors - - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method, EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs - real, dimension(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs), intent(out) :: EFluxOut - real, dimension(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs) :: ValueOut - integer, intent(out) :: iError - - MHD_Value = MHD_EFlux - - call MHD_GetValue(TimeIn, Method, & - EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, ValueOut, iError) - - if (iError /= 0) then - write(*, *) "Error in routine MHD_GetEFlux:" - write(*, *) cErrorCodes(iError) - stop - else - EFluxOut = ValueOut - endif - -end subroutine MHD_GetEFlux - -!---------------------------------------------------------------------- - -subroutine MHD_GetAveE(TimeIn, Method, & - EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, AveEOut, iError) - - use ModMHD_Interface - use ModErrors - - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method, EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs - real, dimension(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs), intent(out) :: AveEOut - real, dimension(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs) :: ValueOut - integer, intent(out) :: iError - - MHD_Value = MHD_AveE - call MHD_GetValue(TimeIn, Method, & - EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, ValueOut, iError) - - if (iError /= 0) then - write(*, *) "Error in routine MHD_GetAveE:" - write(*, *) cErrorCodes(iError) - stop - else - AveEOut = ValueOut - endif - -end subroutine MHD_GetAveE - -!---------------------------------------------------------------------- - -subroutine MHD_GetValue(TimeIn, Method, & - EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs, ValueOut, iError) - - use ModErrors - use ModMHD_Interface - - implicit none - - real*8, intent(in) :: TimeIn - integer, intent(in) :: Method, EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs - real, dimension(EIEi_nMLTs, EIEi_nLats, EIEi_nBLKs), intent(out) :: ValueOut - integer, intent(out) :: iError - - integer :: iTime, i, j, iLat, iBLK - logical :: IsDone - real*8 :: dT, VerySmall = 1.0e-6 - - iError = 0 - - do iBLK = MHD_South_, MHD_North_ - - IsDone = .false. - iTime = 1 - - do while (.not. IsDone) - if (TimeIn - MHD_Time(iTime, iBLK) < VerySmall) IsDone = .true. - if ((iTime == MHD_nTimes) .and. (.not. IsDone)) then - iTime = iTime + 1 - IsDone = .true. - endif - iTime = iTime + 1 - enddo - - if (iTime <= MHD_nTimes + 1) then - - iTime = iTime - 1 - - if (iTime == 1) then - - ! If we are before the start time, allow users to extrapolate - ! up to 1 dT. - - dT = MHD_Time(2, iBLK) - MHD_Time(1, iBLK) - if (TimeIn + dt < MHD_Time(1, iBLK)) then - ValueOut = -1.0e32 - iError = ecBeforeStartTime_ - return - endif - endif - else - dT = MHD_Time(2, iBLK) - MHD_Time(1, iBLK) - - ! If we are after the end time, allow users to extrapolate - ! up to 1 dT. - - if (TimeIn - dt < MHD_Time(MHD_nTimes, iBLK)) then - iTime = MHD_nTimes - else - ValueOut = -1.0e32 - iError = ecAfterEndTime_ - return - endif - endif - - if (Method == MHD_After_) then - if (iBLK == MHD_South_) then - ValueOut(1:MHD_nMLTs, 1:MHD_nLats, iBLK) = & - MHD_Value(1:MHD_nMLTs, 1:MHD_nLats, iTime, iBLK) - ! Reverse the North block of MHD data for now... - else - do iLat = MHD_nLats, 1, -1 - ValueOut(1:MHD_nMLTs, iLat, iBLK) = & - MHD_Value(1:MHD_nMLTs, MHD_nLats - iLat + 1, iTime, iBLK) - enddo - endif - endif - - if (Method == MHD_Closest_) then - if (iTime > 1) then - if (abs(TimeIn - MHD_Time(iTime, iBLK)) > & - abs(TimeIn - MHD_Time(iTime - 1, iBLK))) & - iTime = iTime - 1 - endif - if (iBLK == MHD_South_) then - ValueOut(1:MHD_nMLTs, 1:MHD_nLats, iBLK) = & - MHD_Value(1:MHD_nMLTs, 1:MHD_nLats, iTime, iBLK) - else - ! Reverse the North block of MHD data for now... - do iLat = MHD_nLats, 1, -1 - ValueOut(1:MHD_nMLTs, iLat, iBLK) = & - MHD_Value(1:MHD_nMLTs, MHD_nLats - iLat + 1, iTime, iBLK) - enddo - endif - endif - - if (Method == MHD_Interpolate_) then - ! This will do extrapolation if it is before the first time - if (iTime == 1) iTime = iTime + 1 - ! dT is the percentage of the way away from the current point - dT = (MHD_Time(iTime, iBLK) - TimeIn)/ & - (MHD_Time(iTime, iBLK) - MHD_Time(iTime - 1, iBLK)) - ! Use 1-dT for the selected point, since dt = 0 if you are exactly - ! on the selected point - if (iBLK == MHD_South_) then - ValueOut(1:MHD_nMLTs, 1:MHD_nLats, iBLK) = & - (1.0 - dt)*MHD_Value(1:MHD_nMLTs, 1:MHD_nLats, iTime, iBLK) + & - dt*MHD_Value(1:MHD_nMLTs, 1:MHD_nLats, iTime - 1, iBLK) - else - ! Reverse the 2nd block of MHD data for now... - do iLat = MHD_nLats, 1, -1 - ValueOut(1:MHD_nMLTs, iLat, iBLK) = & - (1.0 - dt)*MHD_Value(1:MHD_nMLTs, MHD_nLats - iLat + 1, & - iTime, iBLK) + & - dt*MHD_Value(1:MHD_nMLTs, MHD_nLats - iLat + 1, iTime - 1, iBLK) - enddo - endif - endif - - enddo - -end subroutine MHD_GetValue - -subroutine get_MHD_values(rtime) - - use ModEIE_Interface - - real*8, intent(in) :: rtime - integer :: iError - - call MHD_GetPotential(rtime, EIE_Interpolate_, & - EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs, EIEr3_HavePotential, iError) - - call MHD_GetAveE(rtime, EIE_Closest_, & - EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs, EIEr3_HaveAveE, iError) - - call MHD_GetEFlux(rtime, EIE_Closest_, & - EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs, EIEr3_HaveEFlux, iError) - -end subroutine get_MHD_values diff --git a/util/EMPIRICAL/srcIE/Makefile b/util/EMPIRICAL/srcIE/Makefile deleted file mode 100644 index ecaa67f9..00000000 --- a/util/EMPIRICAL/srcIE/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -# For more information, see http://csem.engin.umich.edu/tools/swmf - -include ../../../Makefile.def -include ../../../Makefile.conf - -MY_LIB = ${LIBDIR}/libEMPIRICALIE.a - -include Makefile.DEPEND -#include Makefile.RULES - -OBJECTS = \ - ModCharSize.o\ - ModEIEConductance.o\ - ModAMIE_Interface.o\ - ModErrors.o\ - ModEIE_Interface.o\ - ModMHD_Interface.o\ - ModExtras.o\ - ModEIEFiles.o\ - ED_ModInterface.o\ - ED_ModIons.o\ - ModWeimer05.o\ - ModWeimer.o\ - AMIE_Library.o\ - EIE_End.o\ - EIE_Initialize.o\ - EIE_Library.o\ - EIE_IoLibrary.o\ - EIE_UaLibrary.o\ - EIE_set_inputs.o\ - readAMIEoutput.o\ - readMHDoutput.o\ - mh86.o\ - hmr89.o\ - iz94.o\ - ihp.o\ - merge_str.o\ - MHD_Library.o\ - ED_Interface.o \ - ED_ReadIonHeat.o \ - ED_r_elec_ed_lup_subs.o - -DEPEND: - @perl ${SCRIPTDIR}/depend.pl -I${SHAREDIR} ${OBJECTS} - -LIB: DEPEND - make ${MY_LIB} - @echo - @echo ${MY_LIB} has been brought up to date. - @echo - -${MY_LIB}: ${OBJECTS} - rm -f ${MY_LIB} - ${AR} ${MY_LIB} ${OBJECTS} - -distclean: clean - rm -f Makefile.DEPEND diff --git a/util/EMPIRICAL/srcIE/Makefile.COMMON b/util/EMPIRICAL/srcIE/Makefile.COMMON deleted file mode 100644 index ba780b1d..00000000 --- a/util/EMPIRICAL/srcIE/Makefile.COMMON +++ /dev/null @@ -1,45 +0,0 @@ - -MODULES = \ - ModKind.o\ - ModIndicesInterfaces.o\ - ModIndices.o\ - ModExtras.o - - -OBJECTS = \ - read_NGDC_indices.o\ - insert_into_indices_array.o\ - IO_set_inputs.o\ - IO_library.o\ - geopack.o - -STANDALONE = main.o - -.SUFFIXES: -.SUFFIXES: .f .f90 .o - -.f90.o: - ${FTN} ${Cflag1} $< - -.f.o: - ${FTN} ${Cflag1} $< - -LIB: libindices.a - @echo libindices.a has been brought up to date. - -libindices.a: ${MF} ${MODULES} ${OBJECTS} - @(\ - if [ "${OS}" = "Darwin" ]; then \ - echo " ar -r libindices.a ${MODULES} ${OBJECTS}";\ - ar -r libindices.a ${MODULES} ${OBJECTS} ;\ - exit;\ - fi;\ - echo " ar -rs libindices.a ${MODULES} ${OBJECTS}";\ - ar -rs libindices.a ${MODULES} ${OBJECTS} ;\ - ) - -standalone: libindices.a ${STANDALONE} - ${FTN} -o test.exe ${STANDALONE} ../src/Time_Routines.o -lindices -L./ - -clean: - /bin/rm -f *.o *.mod *.a *.exe diff --git a/util/EMPIRICAL/srcIE/ModAMIE_Interface.f90 b/util/EMPIRICAL/srcIE/ModAMIE_Interface.f90 deleted file mode 100644 index 7572d15a..00000000 --- a/util/EMPIRICAL/srcIE/ModAMIE_Interface.f90 +++ /dev/null @@ -1,231 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -Module ModAMIE_Interface - - use ModCharSize - - implicit none - - character(len=iCharLenIE_) :: AMIE_FileName - integer :: AMIE_nLats, AMIE_nMlts, AMIE_nTimes, nCellsPad, AMIE_nBlks - - real :: rDummyeFlux = 1.0e-6 ! in W/m2 - real :: rDummyAveE = 2.0 ! in keV - real :: rDummyIonAveE = 20.0 ! in keV - - ! For a single file - real*4, allocatable, dimension(:) :: AMIE_Lats, AMIE_MLTs - real*8, allocatable, dimension(:, :) :: AMIE_Time - - real*4, allocatable, dimension(:, :, :, :) :: AMIE_Value - real, allocatable, dimension(:, :, :) :: AMIE_Interpolated - - integer, parameter :: AMIE_Closest_ = 1 - integer, parameter :: AMIE_After_ = 2 - integer, parameter :: AMIE_Interpolate_ = 3 - - integer :: AMIE_iDebugLevel = 0 - - integer :: AMIE_South_ = 1 - integer :: AMIE_North_ = 2 - - integer, parameter :: iPotential_ = 1 - integer, parameter :: iPotentialy_ = 2 - integer, parameter :: iEle_diff_eflux_ = 3 - integer, parameter :: iEle_diff_avee_ = 4 - integer, parameter :: iIon_diff_eflux_ = 5 - integer, parameter :: iIon_diff_avee_ = 6 - integer, parameter :: iEle_mono_eflux_ = 7 - integer, parameter :: iEle_mono_avee_ = 8 - integer, parameter :: iEle_wave_eflux_ = 9 - integer, parameter :: iEle_wave_avee_ = 10 - logical :: useIons - logical :: useMono - logical :: useWave - - integer, parameter :: nValues = 10 - character(len=iCharLenIE_) :: AMIE_Names(nValues) - integer, dimension(nValues) :: iMap_ = -1 - real, dimension(nValues) :: unitConvert - - ! mlts, lats, blocks, times, and variable - real*4, allocatable, dimension(:, :, :, :, :) :: AMIE_Storage - -contains - - subroutine AMIE_link_variable_names() - - AMIE_Names(iPotential_) = "Potential" - AMIE_Names(iPotentialy_) = "PotentialY" - AMIE_Names(iEle_diff_eflux_) = "Electron Energy Flux" - AMIE_Names(iEle_diff_avee_) = "Electron Mean Energy" - AMIE_Names(iIon_diff_eflux_) = "Ion Energy Flux" - AMIE_Names(iIon_diff_avee_) = "Ion Mean Energy" - AMIE_Names(iEle_mono_eflux_) = "ME Energy Flux" - AMIE_Names(iEle_mono_avee_) = "ME Mean Energy" - AMIE_Names(iEle_wave_eflux_) = "BB Energy Flux" - AMIE_Names(iEle_wave_avee_) = "BB Mean Energy" - - ! By default, we don't need any unit conversions: - unitConvert = 1.0 - useIons = .false. - useMono = .false. - useWave = .false. - - end subroutine AMIE_link_variable_names - - ! -------------------------------------------------- - ! Allocate all of the variables - ! -------------------------------------------------- - - subroutine AMIE_allocate_variables() - - implicit none - - integer :: iError = 0 - - if (allocated(AMIE_Lats)) deallocate(AMIE_Lats) - allocate(AMIE_Lats(AMIE_nLats + nCellsPad), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array AMIE_Lats in " - stop - endif - - if (allocated(AMIE_Mlts)) deallocate(AMIE_Mlts) - allocate(AMIE_Mlts(AMIE_nMlts), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array Mlts in " - stop - endif - - ! ------------------------------------------------------------ - ! This is the variable that holds all of the variables to allo - ! for a more generalized get variable function - - if (AMIE_iDebugLevel > 1) & - write(*, *) 'Allocating Variables : ', & - AMIE_nMlts, AMIE_nLats, nCellsPad, AMIE_nTimes, AMIE_nBlks - - allocate(AMIE_Storage( & - nValues, & - AMIE_nMlts, & - AMIE_nLats + nCellsPad, & - AMIE_nTimes, & - AMIE_nBlks), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array AMIE_Storage in readAMIEoutput" - stop - endif - - if (AMIE_iDebugLevel > 1) write(*, *) ' --> allocated the big array!' - - ! Initialize the variables to background values - AMIE_Storage(iPotential_, :, :, :, :) = 0.0 - AMIE_Storage(iPotentialY_, :, :, :, :) = 0.0 - AMIE_Storage(iEle_diff_eflux_, :, :, :, :) = rDummyeFlux - AMIE_Storage(iEle_diff_avee_, :, :, :, :) = rDummyAveE - AMIE_Storage(iIon_diff_eflux_, :, :, :, :) = rDummyeFlux - AMIE_Storage(iIon_diff_avee_, :, :, :, :) = rDummyIonAveE - AMIE_Storage(iEle_mono_eflux_, :, :, :, :) = rDummyeFlux - AMIE_Storage(iEle_mono_avee_, :, :, :, :) = rDummyAveE - AMIE_Storage(iEle_wave_eflux_, :, :, :, :) = rDummyeFlux - AMIE_Storage(iEle_wave_avee_, :, :, :, :) = rDummyAveE - - ! ------------------------ - ! Generic AMIE Value: - - allocate(AMIE_Value( & - AMIE_nMlts, AMIE_nLats + nCellsPad, AMIE_nTimes, AMIE_nBlks), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array AMIE_Value in " - stop - endif - - AMIE_Value = 0.0 - - ! --------------------------------------------------- - ! AMIE Interpolated Value (this is for one time) - - allocate(AMIE_Interpolated( & - AMIE_nMlts, AMIE_nLats + nCellsPad, AMIE_nBlks), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array AMIE_Interpolated in " - stop - endif - - AMIE_Value = 0.0 - - ! ------------------------ - ! Time: - - allocate(AMIE_Time(AMIE_nTimes, 2), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array AMIETimes in " - stop - endif - - if (AMIE_iDebugLevel > 1) write(*, *) ' --> done allocating!' - - end subroutine AMIE_allocate_variables - - subroutine AMIE_link_vars_to_keys(nFields, Fields) - - implicit none - - integer, parameter :: nFieldsMax = 100 - integer, intent(in) :: nFields - character(len=*), dimension(nFieldsMax), intent(in) :: Fields - - integer :: iField, iVal - do iVal = 1, nValues - if (AMIE_iDebugLevel > 1) & - write(*, *) 'Searching for ', trim(AMIE_Names(iVal)) - do iField = 1, nFields - if (index(Fields(iField), trim(AMIE_Names(iVal))) > 0) then - iMap_(iVal) = iField - if (AMIE_iDebugLevel > 1) & - write(*, *) "<--- ", trim(AMIE_Names(iVal)), " Found", iField - endif - enddo - enddo - if (AMIE_iDebugLevel > 1) then - write(*, *) 'Summary of variables found in AMIE file : ' - do iVal = 1, nValues - if (iMap_(iVal) > 0) then - write(*, *) 'Expected : ', trim(AMIE_Names(iVal)), & - '; found : ', trim(Fields(iMap_(iVal))) - endif - enddo - endif - - ! Check to see if some of these exist: - if (iMap_(iPotential_) < 1) then - call report_error_and_crash(1, "Could not find Potential in file!") - endif - if ((iMap_(iEle_diff_eflux_) < 1) .or. (iMap_(iEle_diff_avee_) < 0)) then - call report_error_and_crash(1, "Could not find Electron Diffuse in file!") - endif - - if ((iMap_(iIon_diff_eflux_) > 0) .and. (iMap_(iIon_diff_avee_) > 0)) then - useIons = .true. - if (AMIE_iDebugLevel > 1) write(*, *) "Input Electrodynamics is using Ions!" - else - useIons = .false. - endif - if ((iMap_(iEle_mono_eflux_) > 0) .and. (iMap_(iEle_mono_avee_) > 0)) then - useMono = .true. - if (AMIE_iDebugLevel > 1) write(*, *) "Input Electrodynamics is using Mono!" - else - useMono = .false. - endif - if ((iMap_(iEle_wave_eflux_) > 0) .and. (iMap_(iEle_wave_avee_) > 0)) then - useWave = .true. - if (AMIE_iDebugLevel > 1) write(*, *) "Input Electrodynamics is using Ions!" - else - useWave = .false. - endif - - end subroutine AMIE_link_vars_to_keys - -end Module ModAMIE_Interface diff --git a/util/EMPIRICAL/srcIE/ModCharSize.f90 b/util/EMPIRICAL/srcIE/ModCharSize.f90 deleted file mode 100644 index a769323a..00000000 --- a/util/EMPIRICAL/srcIE/ModCharSize.f90 +++ /dev/null @@ -1,6 +0,0 @@ - -module ModCharSize - - integer, parameter :: iCharLenIE_ = 600 - -end module ModCharSize diff --git a/util/EMPIRICAL/srcIE/ModEIEConductance.f90 b/util/EMPIRICAL/srcIE/ModEIEConductance.f90 deleted file mode 100644 index 433b15a5..00000000 --- a/util/EMPIRICAL/srcIE/ModEIEConductance.f90 +++ /dev/null @@ -1,29 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -Module ModEIEConductance - - integer :: longmx, latmx, ndx - real :: steplat - - integer, parameter :: latmdx = 40 - integer, parameter :: lonmdx = 30 - integer, parameter :: mndx = 10 - integer, parameter :: nConductanceSolutions = 4 - - real, dimension(mndx) :: halmin, pedmin, avk50, efx50 - - real, dimension(0:lonmdx, 0:latmdx, mndx) :: & - halar, pedar, avkar, efxar - - real, dimension(nConductanceSolutions) :: ConductanceBackground - - real, dimension(4) :: bkgc, bkgcer - real :: flxmax, dbymax, dbzmax - - integer, parameter :: pedersen_ = 1 - integer, parameter :: hall_ = 2 - integer, parameter :: eflux_ = 3 - integer, parameter :: avee_ = 4 - -end Module ModEIEConductance diff --git a/util/EMPIRICAL/srcIE/ModEIEFiles.f90 b/util/EMPIRICAL/srcIE/ModEIEFiles.f90 deleted file mode 100644 index b8a7b11c..00000000 --- a/util/EMPIRICAL/srcIE/ModEIEFiles.f90 +++ /dev/null @@ -1,19 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -Module ModEIEFiles - - use ModCharSize - - character(len=iCharLenIE_) :: ihp_file = 'hpke.noaa' - character(len=iCharLenIE_) :: pem_file = 'hpke2.pem' - character(len=iCharLenIE_) :: izmem_file = 'iz94.cofcnts' - character(len=iCharLenIE_) :: hepner_maynard_file = 'hmr89.cofcnts' - character(len=iCharLenIE_) :: millstone_hill_i_file = 'mhi.cofcnts' - character(len=iCharLenIE_) :: millstone_hill_s_file = 'mhs.cofcnts' - character(len=iCharLenIE_) :: stat_amie_file = 'amie.ascii' - character(len=iCharLenIE_) :: weimer96_file = 'wei96.cofcnts' - character(len=iCharLenIE_) :: weimer01_file = 'wei01.cofcnts' - character(len=iCharLenIE_) :: AMIEFileNorth, AMIEFileSouth - -end Module ModEIEFiles diff --git a/util/EMPIRICAL/srcIE/ModEIE_Interface.f90 b/util/EMPIRICAL/srcIE/ModEIE_Interface.f90 deleted file mode 100644 index 1b7423ec..00000000 --- a/util/EMPIRICAL/srcIE/ModEIE_Interface.f90 +++ /dev/null @@ -1,84 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -module ModEIE_Interface - - use ModKind - use ModCharSize - - real, allocatable, dimension(:, :, :) :: EIEr3_HaveLats, EIEr3_HaveMLTs - real, allocatable, dimension(:, :, :) :: EIEr3_HavePotential - real, allocatable, dimension(:, :, :) :: EIEr3_HaveEFlux - real, allocatable, dimension(:, :, :) :: EIEr3_HaveAveE - logical :: useIons - real, allocatable, dimension(:, :, :) :: EIEr3_HaveIonEFlux - real, allocatable, dimension(:, :, :) :: EIEr3_HaveIonAveE - logical :: useMono - real, allocatable, dimension(:, :, :) :: EIEr3_HaveMonoEFlux - real, allocatable, dimension(:, :, :) :: EIEr3_HaveMonoAveE - logical :: useWave - real, allocatable, dimension(:, :, :) :: EIEr3_HaveWaveEFlux - real, allocatable, dimension(:, :, :) :: EIEr3_HaveWaveAveE - - real(Real8_) :: EIEd_CurrentTime - integer :: EIEi_HavenLats - integer :: EIEi_HavenMLTs - integer :: EIEi_HavenBLKs - integer :: EIEi_HavenTimes - - real(Real8_) :: IOd_NeedTime = -1.0e32 - real, allocatable, dimension(:, :) :: IOr2_NeedLats, IOr2_NeedMLTs - real, allocatable, dimension(:, :) :: IOr2_NeedPotential - real, allocatable, dimension(:, :) :: IOr2_NeedEFlux - real, allocatable, dimension(:, :) :: IOr2_NeedAveE - real, allocatable, dimension(:, :) :: IOr2_NeedIonEFlux - real, allocatable, dimension(:, :) :: IOr2_NeedIonAveE - integer :: IOi_NeednLats - integer :: IOi_NeednMLTs - integer :: IOi_NeednTimes - integer, allocatable, dimension(:, :, :) :: IOi3_InterpolationIndices - real, allocatable, dimension(:, :, :) :: IOr3_InterpolationRatios - real :: IOr_NeedIMFBz = -1.0e32 - real :: IOr_NeedIMFBy = -1.0e32 - real :: IOr_NeedSWV = -1.0e32 - real :: IOr_NeedSWN = -1.0e32 - real :: IOr_NeedHPI = -1.0e32 - real :: IOr_NeedHPINorm = -1.0e32 - real :: IOr_NeedKp = -1.0e32 - logical :: IOl_IsNorth = .true. - -! real (Real8_) :: UAd_NeedTime = -1.0e32 - real, allocatable, dimension(:, :) :: UAr2_NeedLats, UAr2_NeedMLTs - real, allocatable, dimension(:, :) :: UAr2_NeedPotential - real, allocatable, dimension(:, :) :: UAr2_NeedEFlux - real, allocatable, dimension(:, :) :: UAr2_NeedAveE - real, allocatable, dimension(:, :) :: UAr2_NeedIonEFlux - real, allocatable, dimension(:, :) :: UAr2_NeedIonAveE - integer :: UAi_NeednLats - integer :: UAi_NeednMLTs - integer :: UAi_NeednTimes - integer, allocatable, dimension(:, :, :) :: UAi3_InterpolationIndices - real, allocatable, dimension(:, :, :) :: UAr3_InterpolationRatios - logical :: UAl_IsNorth = .true. - - integer :: iDebugLevel = 0 - integer :: iProc = 0 - - integer, parameter :: EIE_Closest_ = 1 - integer, parameter :: EIE_After_ = 2 - integer, parameter :: EIE_Interpolate_ = 3 - - character(len=iCharLenIE_) :: EIE_NameOfEFieldModel - character(len=iCharLenIE_) :: EIE_NameOfAuroralModel - character(len=iCharLenIE_) :: EIE_NameOfSolarModel - character(len=iCharLenIE_) :: EIE_NameOfModelDir - - logical :: UAl_UseGridBasedEIE - logical :: UseGridBasedEIE - - logical :: IsFixedTilt = .false. - - real :: EIE_fill_eFlux = 1.0e-6 ! in W/m2 - real :: EIE_fill_AveE = 2.0 ! in keV - real :: EIE_fill_IonAveE = 20.0 ! in keV - -end module ModEIE_Interface diff --git a/util/EMPIRICAL/srcIE/ModErrors.f90 b/util/EMPIRICAL/srcIE/ModErrors.f90 deleted file mode 100644 index ed4680ed..00000000 --- a/util/EMPIRICAL/srcIE/ModErrors.f90 +++ /dev/null @@ -1,56 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -module ModErrors - - use ModCharSize - - integer, parameter :: ecBeforeStartTime_ = 1 - integer, parameter :: ecAfterEndTime_ = 2 - integer, parameter :: ecTimeNotSet_ = 3 - integer, parameter :: ecAllocationError_ = 4 - integer, parameter :: ecPointOutofRange_ = 5 - integer, parameter :: ecFileNotFound_ = 6 - integer, parameter :: ecIMFBzNotSet_ = 7 - integer, parameter :: ecIMFByNotSet_ = 8 - integer, parameter :: ecIMFBxNotSet_ = 9 - integer, parameter :: ecSWVNotSet_ = 10 - integer, parameter :: ecHPINotSet_ = 11 - integer, parameter :: ecKpNotSet_ = 12 - integer, parameter :: ecEFieldModelNotFound_ = 13 - integer, parameter :: ecAuroralModelNotFound_ = 14 - integer, parameter :: ecSWNNotSet_ = 15 - - integer, parameter :: nErrorsMax = 1000 - - character(len=iCharLenIE_), dimension(nErrorsMax) :: cErrorCodes - - logical :: isOk - -contains - - subroutine set_error_codes - - cErrorCodes(ecBeforeStartTime_) = "Time requested is before start time" - cErrorCodes(ecAfterEndTime_) = "Time requested is after end time" - cErrorCodes(ecTimeNotSet_) = "Time not set" - cErrorCodes(ecAllocationError_) = "Allocation Error" - cErrorCodes(ecPointOutofRange_) = "Requested point is out of range" - cErrorCodes(ecFileNotFound_) = "File not found" - cErrorCodes(ecIMFBxNotSet_) = "IMF Bx has not been set" - cErrorCodes(ecIMFByNotSet_) = "IMF By has not been set" - cErrorCodes(ecIMFBzNotSet_) = "IMF Bz has not been set" - cErrorCodes(ecSWVNotSet_) = "Solar Wind V has not been set" - cErrorCodes(ecHPINotSet_) = & - "Hemispheric Power Index has not been set" - cErrorCodes(ecKpNotSet_) = "Kp has not been set" - cErrorCodes(ecEFieldModelNotFound_) = & - "The Selected Electric Field model is unknown" - cErrorCodes(ecAuroralModelNotFound_) = & - "The Selected Auroral model is unknown" - cErrorCodes(ecSWNNotSet_) = "Solar Wind N has not been set" - - isOk = .true. - - end subroutine set_error_codes - -end module ModErrors diff --git a/util/EMPIRICAL/srcIE/ModExtras.f90 b/util/EMPIRICAL/srcIE/ModExtras.f90 deleted file mode 100644 index 3e1641a9..00000000 --- a/util/EMPIRICAL/srcIE/ModExtras.f90 +++ /dev/null @@ -1,13 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -module ModExtras - - integer, parameter :: GSM_ = 1 - integer, parameter :: GSE_ = 2 - - logical :: north = .true. - - integer, parameter :: MaxInputLines = 1000 - -end module ModExtras diff --git a/util/EMPIRICAL/srcIE/ModMHD_Interface.f90 b/util/EMPIRICAL/srcIE/ModMHD_Interface.f90 deleted file mode 100644 index f947b8d8..00000000 --- a/util/EMPIRICAL/srcIE/ModMHD_Interface.f90 +++ /dev/null @@ -1,24 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -Module ModMHD_Interface - - character(len=100) :: MHD_FileName - integer :: MHD_nLats, MHD_nMlts, MHD_nTimes - integer :: MHD_Year, MHD_Month, MHD_Day - - ! For a single file - real*4, allocatable, dimension(:) :: MHD_Lats, MHD_MLTs - real*4, allocatable, dimension(:, :, :, :) :: MHD_Potential, MHD_EFlux, MHD_AveE - real*4, allocatable, dimension(:, :, :, :) :: MHD_Value - real*8, allocatable, dimension(:, :) :: MHD_Time - - integer, parameter :: MHD_Closest_ = 1 - integer, parameter :: MHD_After_ = 2 - integer, parameter :: MHD_Interpolate_ = 3 - - integer :: MHD_iDebugLevel = 0 - - integer :: MHD_South_ = 1 - integer :: MHD_North_ = 2 - -end Module ModMHD_Interface diff --git a/util/EMPIRICAL/srcIE/ModWeimer.f b/util/EMPIRICAL/srcIE/ModWeimer.f deleted file mode 100644 index 0dad372e..00000000 --- a/util/EMPIRICAL/srcIE/ModWeimer.f +++ /dev/null @@ -1,2112 +0,0 @@ - - module EIE_ModWeimer - - contains - -c -c The code has been made to implicit real*8 by Mei-Ching Fok on -c Jan. 30, 2002 - -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** - -* - -* Subroutines to calculate the electric potentials from the "Weimer 2K" model of - -* the polar cap ionospheric electric potentials described in the publication: - -* Weimer, D. R., An improved model of ionospheric electric potentials including - -* substorm perturbations and application to the Geospace Environment Modeling - -* November 24, 1996 event, Journal of Geophysical Research, Vol. 106, p. 407, 2001. - -* - -* To use, first call procedure SETMODEL00 with the specified input parameters: - -* angle: IMF Y-Z clock angle in degrees, 0=northward, 180=southward - -* Bt: Magnitude of IMF in Y-Z plane in nT - -* Tilt: dipole tilt angle in degrees. - -* SWVel: solar wind velocity in km/sec - -* SWDen: solar wind density in #/cc - -* ALindex: (optional) AL index in nT - -* - -* The function EPOTVAL00(gLAT,gMLT) can then be used repeatively to get the - -* electric potential in kV at the desired location. - -* Input coordinates assume use of 'altitude adjusted' corrected geomagnetic - -* coordinates for R=1, also refered to as AACGM0. - -* - -* The function BOUNDARYLAT00(gMLT) can be used to get the latitude of the boundary - -* where the potential goes to zero. This boundary is a function of MLT, and - -* varies with the SETMODEL00 parameters. The potential is zero everywhere below - -* this boundary. - -* - -* Two data files are provided: - -* 'w2klittle.dat' for LITTLE_ENDIAN machines. - -* 'w2kbig.dat' for BIG_ENDIAN machines. - -* You must copy or rename the correct one to the file 'w2k.dat' - -* - -* This code is protected by copyright and is distributed - -* for research or educational use only. - -* Commerical use without written permission from Dan Weimer/MRC is prohibited. - -* - -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** - - SUBROUTINE DLEGENDRE00(x,lmax,mmax,Plm,dPlm) - -* compute Double Precision Associate Legendre Function P_l^m(x), as well as optional - -* derivatives, for all L up to lmax and all M up to mmax. - -* Returns results in array Plm, which should be dimensioned as double precision - -* with size (0:10,0:10). - -* If the first element of dPlm is not zero, then the first derivatives are also - -* computed, and put into array dPlm. To skip the derivatives it is only necessary - -* to put a scalar 0.D0 in the dPlm parameter. Otherwise, dPlm should also be a - -* double precision array of size (0:10,0:10). - -* The recursion formulas keep a count of the exponents of the factor SQRT(1-x^2) - -* in both the numerator and denominator, which may cancel each other in the - -* final evaluation, particularly with the derivatives. This prevents infinities - -* at x=-1 or +1. - -* If X is out of range ( abs(x)>1 ) then value is returns as if x=1. - - implicit real*8 (a-h,o-z) - real*8 x,xx,Plm(0:10,0:10),P(0:10,0:10,0:1),fact,sfact - - real*8 dPlm(0:10,0:10),dP(0:10,0:10,0:2),anum,term - - LOGICAL DodPlm - - - - DodPlm=dPlm(0,0) .NE. 0.d0 - - - - DO l=0,lmax - - DO m=0,mmax - - Plm(l,m)=0.D0 - - P(l,m,0)=0.D0 - - P(l,m,1)=0.D0 - - ENDDO - - ENDDO - - IF(lmax .LT. 0 .OR. mmax .LT. 0 .OR. mmax .GT. lmax )THEN - - Print *,'Bad arguments to DLegendre00' - - RETURN - - ENDIF - - - -* Copy x to xx, and make sure it is in range of -1. to +1. - - xx=MIN(x,1.D0) - - xx=MAX(xx,-1.D0) - - - - P(0,0,1)=1.D0 - - IF(lmax.GT.0) P(1,0,1)=xx - - IF(lmax.GT.1)THEN - - DO L=2,lmax - - P(L,0,1)=( (2.D0*L-1)*xx*P(L-1,0,1) - (L-1)*P(L-2,0,1) ) / L - - ENDDO - - ENDIF - - - - fact=1.D0-xx**2 - - sfact=DSQRT(fact) - - - - IF(mmax .GT. 0)THEN - - DO M=1,mmax - - DO L=M,lmax - - L2=MAX( L-2 , 0 ) - - P(L,M,1)= P(L2,M,1) -(2*L-1)*P(L-1,M-1,0)*fact - - P(L,M,0)= P(L2,M,0) -(2*L-1)*P(L-1,M-1,1) - - ENDDO - - ENDDO - - ENDIF - - - - IF(DodPlm)Then !do derivatives - -* First zero arrays - - DO l=0,lmax - - DO m=0,mmax - - dPlm(l,m)=0.D0 - - dP(l,m,0)=0.D0 - - dP(l,m,1)=0.D0 - - dP(l,m,2)=0.D0 - - ENDDO - - ENDDO - - - - IF(lmax .GT. 0) dP(1,0,1)=1.D0 - - - - IF(lmax .GT. 1)THEN - - DO L=2,lmax - - dP(L,0,1)=( (2*L-1)*P(L-1,0,1) + - - $ (2*L-1)*xx*dP(L-1,0,1) - - - $ (L-1)*dP(L-2,0,1) ) / L - - ENDDO - - ENDIF - - - - IF(mmax .GT. 0)THEN - - DO M=1,mmax - - DO L=M,lmax - - L2=MAX( L-2 , 0 ) - - dP(L,M,1)= dP(L2,M,1) - (2*L-1)*fact*dP(L-1,M-1,0) - - - $ (2*L-1)*dP(L-1,M-1,2) + (2*L-1)*xx*P(L-1,M-1,0) - - dP(L,M,0)= dP(L2,M,0) - (2*L-1)*dP(L-1,M-1,1) - - dP(L,M,2)=dP(L2,M,2) +(2*L-1)*xx*P(L-1,M-1,1) - - ENDDO - - ENDDO - - ENDIF - - - - DO L=0,lmax - - mlimit=MIN(mmax,L) - - DO M=0,mlimit - -* Prevent a divide by zero - - anum=dP(L,M,2) !numerator - - IF(sfact.NE.0.)Then !denominator is OK - - term=anum/sfact - - ELSE !denominator is zero - - IF(DABS(anum).LT.1.D-7)THEN - - term=0.D0 !return 0 in cases where numerator is near zero - - ELSE !return nearly infinity with same sign as numerator - - term=DSIGN(1.D36,anum) - - ENDIF - - ENDIF - - dPlm(L,M)=dP(L,M,1) + dP(L,M,0)*sfact + term - - ENDDO - - ENDDO - - - - ENDIF !End doing derivative - - - - DO L=0,lmax - - mlimit=MIN(mmax,L) - - DO M=0,mlimit - - Plm(L,M)=P(L,M,1) + P(L,M,0)*sfact - - ENDDO - - ENDDO - - - - RETURN - - END SUBROUTINE DLEGENDRE00 - -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** - -* FUNCTION FSVal00(omega,MaxN,FSC) -* -** Fourier Series Value -* -** Return value of Sine/Cosine Fourier series for N terms up to MaxN -* -** at angle omega, given the F.S. coeficients in array FSC -* -* implicit real*8 (a-h,o-z) -* REAL*8 omega,FSC(0:1,0:*) -* -* INTEGER MaxN,n -* -* REAL*8 Y,theta -* -* Y=0. -* -* DO n=0,MaxN -* -* theta=omega*n -* -* Y=Y + FSC(0,n)*COS(theta) + FSC(1,n)*SIN(theta) -* -* ENDDO -* -* FSVal=Y -* -* RETURN -* -* END - -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** - - SUBROUTINE SetModel00(angle,Bt,Tilt,SWVel,SWDen,ALindex,UseAL) - -* - -* Calculate the complete set of spherical harmonic coeficients, - -* given an aribitrary IMF angle (degrees from northward toward +Y), - -* magnitude Bt (nT), dipole tilt angle (degrees), - -* solar wind velocity (km/sec), SWDen (#/cc), - -* ALindex (nT), and Logical flag to use optional AL index. - -* - -* Sets the value of Coef and Boundfit in the common block SetW00Coef. - -* - implicit real*8 (a-h,o-z) - REAL*8 angle,Bt,Tilt,SWVel,SWDen,ALindex - - LOGICAL First,UseAL - - - - DATA First/.TRUE./ - - SAVE First - - INTEGER unit - - CHARACTER*15 cfile - - CHARACTER*30 Copyright - - PARAMETER (MJ=3,ML=4,MM=3,MN=2,MO=2) - - integer :: iMJ,iMO,iML,iMM,iMN - - REAL*4 CS( 0:MJ, 0:1 , 0:MO, 0:1 , 0:ML, 0:MM) - - REAL*4 BCS( 0:MJ, 0:1 , 0:MO, 0:1 , 0:MN) - - REAL*4 SS( 0:1 , 0:1 , 0:MO, 0:1 , 0:ML, 0:MM) - - REAL*4 BSS( 0:1 , 0:1 , 0:MO, 0:1 , 0:MN) - - REAL*8 XA(0:MJ),XB(0:MJ),FSC(0:1,0:4),PSS(0:1) - - REAL*8 Coef(0:1,0:5,0:5),BoundFit(0:1,0:5),pi - - real*8 dpi - - INTEGER*4 i,j,k,l,m,n,o - - INTEGER*4 maxj,MaxL,MaxM,MaxN,MaxO - - COMMON /EIE_AllW00Coefs/MaxJ,MaxO,CS,BCS,SS,BSS - - COMMON /EIE_SetW00Coef/Coef,BoundFit,pi,dpi,MaxL,MaxM,MaxN - - - - If(First)Then - - cfile='EIE/w2k.dat' !make sure correct ENDIAN type file is used. - - unit=9 - -c OPEN(UNIT=unit,FILE=cfile,STATUS='OLD',form='UNFORMATTED') - OPEN(UNIT=unit,FILE=cfile,STATUS='old',form='FORMATTED') - - - READ(unit,*) Copyright - - - -c PRINT *,Copyright - - - read(unit,*) Maxj,MaxL,MaxM,MaxN,MaxO - - - If(maxj.NE.MJ .OR. MaxL.NE.ML .OR. MaxM.NE.MM .OR. - - $ MaxN.NE.MN .OR. MaxO.NE.MO)Then - - PRINT *,'Data File Error' - - STOP !Data file did not match sixe expected for arrays - - Endif - - - do iMJ=0,MJ - do i=0,1 - do iMO=0,MO - do j=0,1 - do iML=0,ML - do iMM=0,MM - read(unit,*) CS( iMJ, i , iMO, j , iML, iMM) - enddo - enddo - enddo - enddo - enddo - enddo - - - do iMJ=0,MJ - do i=0,1 - do iMO=0,MO - do j=0,1 - do iMN=0,MN - read(unit,*) BCS( iMJ, i , iMO, j , iMN) - enddo - enddo - enddo - enddo - enddo - - - do i=0,1 - do j=0,1 - do iMO=0,MO - do k=0,1 - do iML=0,ML - do iMM=0,MM - read(unit,*) SS( i , j , iMO, k , iML, iMM) - enddo - enddo - enddo - enddo - enddo - enddo - - - - do i=0,1 - do j=0,1 - do iMO = 0,MO - do k=0,1 - do iMN=0,MN - read(unit,*) BSS( i , j , iMO, k , iMN) - enddo - enddo - enddo - enddo - enddo - - CLOSE(unit) - - - pi=2.*ASIN(1.) - - dpi=2.D0*DASIN(1.D0) - - First=.FALSE. - - Endif - - - - SinTilt=SIN(Tilt) - - omega=angle*pi/180. - - XA(0)=1. - - XA(1)=Bt**(2./3.) *SWvel - - XA(2)=SinTilt - - XA(3)=SWvel**2 *SWDen - - XB(0)=1. - - XB(1)=Bt - - XB(2)=SinTilt - - XB(3)=SWvel**2 *SWDen - - - - DO l=0,MaxL - - mlimit=MIN(l,MaxM) - - DO m=0,mlimit - - klimit=MIN(m,1) - - DO k=0,klimit - - acoef=0. !rezero for summation - - DO j=0,MaxJ - - DO o=0,MaxO - - DO i=0,1 - - FSC(i,o)=CS(j,i,o,k,l,m) - - ENDDO - - ENDDO - - acoef=acoef+ XA(j)*FSVAL(omega,MaxO,fsc) - - ENDDO - - IF(UseAL)THEN - - DO j=0,1 - - DO o=0,MaxO - - DO i=0,1 - - FSC(i,o)=SS(j,i,o,k,l,m) - - ENDDO - - ENDDO - - PSS(j)=FSVAL(omega,MaxO,fsc) - - ENDDO - - acoef=acoef + PSS(0) + PSS(1)*ALindex - - ENDIF - - Coef(k,l,m)=acoef - - ENDDO - - ENDDO - - ENDDO - - - - DO n=0,MaxN - - klimit=MIN(n,1) - - DO k=0,klimit - - acoef=0. !rezero for summation - - DO j=0,MaxJ - - DO o=0,MaxO - - DO i=0,1 - - FSC(i,o)=BCS(j,i,o,k,n) - - ENDDO - - ENDDO - - acoef=acoef+ XB(j)*FSVAL(omega,MaxO,fsc) - - ENDDO - - IF(UseAL)THEN - - DO j=0,1 - - DO o=0,MaxO - - DO i=0,1 - - FSC(i,o)=BSS(j,i,o,k,n) - - ENDDO - - ENDDO - - PSS(j)=FSVAL(omega,MaxO,fsc) - - ENDDO - - acoef=acoef + PSS(0) + PSS(1)*ALindex - - ENDIF - - BoundFit(k,n)=acoef - - ENDDO - - ENDDO - - RETURN - - END SUBROUTINE SetModel00 - -****************** Copyright 1996, 2001, Dan Weimer/MRC *********************** - - FUNCTION BoundaryLat00(gmlt) - - implicit real*8 (a-h,o-z) - REAL*8 gmlt - - REAL*8 Coef(0:1,0:5,0:5),BoundFit(0:1,0:5),pi - - real*8 dpi - - integer*4 MaxL,MaxM,MaxN - COMMON /EIE_SetW00Coef/Coef,BoundFit,pi,dpi,MaxL,MaxM,MaxN - - BoundaryLat00 = FSVal(gmlt*pi/12.,MaxN,BoundFit) - - RETURN - - END FUNCTION BoundaryLat00 - -****************** Copyright 1996, 2001, Dan Weimer/MRC *********************** - - FUNCTION EpotVal00(gLAT,gMLT) - -* Return the value of the electric potential in kV at - -* corrected geomagnetic coordinates gLAT (degrees) and gMLT (hours). - -* - -* Must first call SetModel00 to set up the model coeficients for - -* the desired values of Bt, IMF clock angle, Dipole tilt angle, SW Vel, - -* number density, and (optional) AL index. - -* - implicit real*8 (a-h,o-z) - REAL*8 gLAT,gMLT - - real*8 Phi,Z,O,x,ct,Phim - - real*8 Plm(0:10,0:10),OPlm(0:10,0:10) - real*8 dPlm(0:10,0:10) - - - REAL*8 Coef(0:1,0:5,0:5),BoundFit(0:1,0:5),pi - - real*8 dpi - - integer*4 MaxL,MaxM,MaxN - COMMON /EIE_SetW00Coef/Coef,BoundFit,pi,dpi,MaxL,MaxM,MaxN - - blat = BoundaryLat00(gmlt) - - IF(glat .GT. blat)THEN - - Phi=DBLE(gMLT)*dpi/12.D0 - - colat=90.-glat - - bcolat=90.-blat - - x=DBLE(colat)*dpi/DBLE(bcolat) - - DC=DBLE(Coef(0,0,0)) - - Z=DC - - O=DC - - ct=DCOS(x) - dPlm(:,:)=0.D0 - CALL DLegendre00(ct,MaxL,MaxM,Plm,dPlm) - -!Also find value at outer boundary at angle Pi, or cos(pi)=-1. - - CALL DLegendre00(-1.D0,MaxL,MaxM,OPlm,dPlm) - - DO l=1,MaxL - - Z=Z + Plm(l,0)*DBLE(Coef(0,l,0)) - - O=O + OPlm(l,0)*DBLE(Coef(0,l,0)) - - mlimit=MIN(l,MaxM) - - DO m=1,mlimit - - phim=phi*m - - Z=Z + Plm(l,m)*(DBLE(Coef(0,l,m))*DCOS(phim) + - - $ DBLE(Coef(1,l,m))*DSIN(phim) ) - - O=O +OPlm(l,m)*DBLE(Coef(0,l,m)) - - ENDDO - - ENDDO - - EpotVal00 = SNGL(Z-O) - - ELSE - - EpotVal00 = 0. - - ENDIF - - RETURN - - END FUNCTION EpotVal00 - -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** -* -* Subroutines to calculate the electric potentials from the "Weimer 01" model of -* the polar cap ionospheric electric potentials described in the publication: -* Weimer, D. R., An improved model of ionospheric electric potentials including -* substorm perturbations and application to the Geospace Environment Modeling -* November 24, 1996 event, Journal of Geophysical Research, Vol. 106, p. 407, 2001. -* -* To use, first call procedure SETMODEL01 with the specified input parameters: -* angle: IMF Y-Z clock angle in degrees, 0=northward, 180=southward -* Bt: Magnitude of IMF in Y-Z plane in nT -* Tilt: dipole tilt angle in degrees. -* SWVel: solar wind velocity in km/sec -* SWDen: solar wind density in #/cc -* ALindex: (optional) AL index in nT -* -* The function EPOTVAL01(gLAT,gMLT) can then be used repeatively to get the -* electric potential in kV at the desired location. -* Input coordinates assume use of 'altitude adjusted' corrected geomagnetic -* coordinates for R=1, also refered to as AACGM0. -* -* The function BOUNDARYLAT01(gMLT) can be used to get the latitude of the boundary -* where the potential goes to zero. This boundary is a function of MLT, and -* varies with the SETMODEL01 parameters. The potential is zero everywhere below -* this boundary. -* -* This code is protected by copyright and is distributed -* for research or educational use only. -* Commerical use without written permission from Dan Weimer/MRC is prohibited. - -CNCAR Revisions for use at NCAR: -C (1) Change behavior at minimum magnetic latitude. When approaching -C the model equatorial edge (which varies with MLT) the electric -C potential returned used to go to zero discontinuously; although -C intended as a flag, it created artificial gradients in the -C electric field calculation. Now the potential returned is -C constant (that of the minimum latitude) for any latitude at -C or equatorward of the minimum. -C (2) Accomodate running simultaneously 1996 and 2001 versions. To -C avoid name collisions this required: (i) revising names (e.g., -C adding '01') for differing subprograms, and (ii) relocating -C common routines into another file (weicom.f). -C (3) Pass the coefficients file name and unit number into READCOEF01 -C rather than using hard coded values. -C (4) Add wrapper subroutines for non-ANSI trig functions which -C input angles in degrees. -C (5) Add electric field routine (GECMP01) to deterine the electric -C potential gradient. -C (6) Add wrapper routine (WEIEPOT01) for use with AMIE; this is a -C substitute for calling SETMODEL01 and EPOTVAL01. -C (7) Remove blanks in some statements to fit in 72 columns to -C adhere to ANSI Fortran 77. -CNCAR NCAR changes are delimited by "CNCAR" -* -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** - SUBROUTINE DLEGENDRE01(x,lmax,mmax,Plm) -* compute Double Precision Associate Legendre Function P_l^m(x) -* for all l up to lmax and all m up to mmax. -* Returns results in array Plm. -* The recursion formulas keep a count of the exponents of the factor SQRT(1-x^2) -* in both the numerator and denominator, which may cancel each other in the -* final evaluation, particularly with the derivatives. This prevents infinities -* at x=-1 or +1. -* If X is out of range ( abs(x)>1 ) then value is returns as if x=1. - DOUBLE PRECISION x,xx,Plm(0:10,0:10),P(0:10,0:10,0:1),fact,sfact - DOUBLE PRECISION dP(0:10,0:10,0:2),anum,term - - DO l=0,lmax - DO m=0,mmax - Plm(l,m)=0.D0 - P(l,m,0)=0.D0 - P(l,m,1)=0.D0 - ENDDO - ENDDO - IF(lmax .LT. 0 .OR. mmax .LT. 0 .OR. mmax .GT. lmax )THEN - Print *,'Bad arguments to DLegendre' - RETURN - ENDIF - -* Copy x to xx, and make sure it is in range of -1. to +1. - xx=MIN(x,1.D0) - xx=MAX(xx,-1.D0) - - P(0,0,1)=1.D0 - IF(lmax.GT.0) P(1,0,1)=xx - IF(lmax.GT.1)THEN - DO L=2,lmax - P(L,0,1)=( (2.D0*L-1)*xx*P(L-1,0,1) - (L-1)*P(L-2,0,1) ) / L - ENDDO - ENDIF - - fact=1.D0-xx**2 - sfact=DSQRT(fact) - - IF(mmax .GT. 0)THEN - DO M=1,mmax - DO L=M,lmax - L2=MAX( L-2 , 0 ) - P(L,M,1)= P(L2,M,1) -(2*L-1)*P(L-1,M-1,0)*fact - P(L,M,0)= P(L2,M,0) -(2*L-1)*P(L-1,M-1,1) - ENDDO - ENDDO - ENDIF - - DO L=0,lmax - mlimit=MIN(mmax,L) - DO M=0,mlimit - Plm(L,M)=P(L,M,1) + P(L,M,0)*sfact - ENDDO - ENDDO - - RETURN - END SUBROUTINE DLEGENDRE01 -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** - - SUBROUTINE READCOEF01 (udat) -CNCAR Feb 01: Make a subroutine (a.k.a. ReadCoef) from FIRST=TRUE block -C of SETMODEL01 (a.k.a. SetModel) so that one can load the coefficients -C independently of defining geophysical conditions. This mimics the -C 1996 model. -C Sep 01: Change argument list to pass both unit number and file name -C rather than hard coding -CNCAR - - INTEGER udat - CHARACTER*30 Copyright - PARAMETER (MJ=3,ML=4,MM=3,MN=2,MO=2) - REAL CS( 0:MJ, 0:1 , 0:MO, 0:1 , 0:ML, 0:MM) - REAL BCS( 0:MJ, 0:1 , 0:MO, 0:1 , 0:MN) - REAL SS( 0:1 , 0:1 , 0:MO, 0:1 , 0:ML, 0:MM) - REAL BSS( 0:1 , 0:1 , 0:MO, 0:1 , 0:MN) - REAL Coef(0:1,0:5,0:5),BoundFit(0:1,0:5),pi - DOUBLE PRECISION dpi - INTEGER*4 maxj,MaxL,MaxM,MaxN,MaxO - COMMON /EIE_AllW01Coefs/MaxJ,MaxO,CS,BCS,SS,BSS - COMMON /EIE_SetW01Coef/MaxL,MaxM,MaxN,Coef,BoundFit,pi,dpi - -CNCAR Feb 01: Initialize constants used in GECMP01 -C Sep 01: Omit unneeded min lat variables because of switch to -C constant potential at and below min lat (hardcoded -C in EPOTVAL01). - COMMON /EIE_W01CECMP/ ALAMX,STPD,STP2,CSTP,SSTP -C ALAMX = Absolute max latitude (deg) for normal gradient calc. -C STPD = Angular dist (deg) of step @ 300km above earth (r=6371km) -C STP2 = Denominator in gradient calc - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - STEP = 10. - STPR = STEP/6671. - STPD = STPR*R2D - STP2 = 2.*STEP - CSTP = COS (STPR) - SSTP = SQRT (1. - CSTP*CSTP) - ALAMX = 90. - STPD -CNCAR - -CNCAR Sep 01: udat is now an argument -C Assume file has been opened at unit elsewhere -CNCAR -c OPEN (UNIT=udat,FILE=cfile,STATUS='OLD',form='UNFORMATTED') - READ (udat) Copyright - PRINT *,Copyright - READ (udat) Maxj,MaxL,MaxM,MaxN,MaxO - If (maxj.NE.MJ .OR. MaxL.NE.ML .OR. MaxM.NE.MM .OR. - $ MaxN.NE.MN .OR. MaxO.NE.MO) Then - PRINT *,'Data File Error' - STOP !Data file did not match size expected for arrays - Endif - READ (udat) CS - READ (udat) BCS - READ (udat) SS - READ (udat) BSS - CLOSE (udat) - pi=2.*ASIN(1.) - dpi=2.D0*DASIN(1.D0) - - RETURN - END SUBROUTINE READCOEF01 -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** -CNCAR Sep 01: Change name from SetModel to be distinct - - SUBROUTINE SetModel01 (angle,Bt,Tilt,SWVel,SWDen,ALindex,UseAL) -C SUBROUTINE SetModel (angle,Bt,Tilt,SWVel,SWDen,ALindex,UseAL) -CNCAR -* -* Calculate the complete set of spherical harmonic coeficients, -* given an aribitrary IMF angle (degrees from northward toward +Y), -* magnitude Bt (nT), dipole tilt angle (degrees), -* solar wind velocity (km/sec), SWDen (#/cc), -* ALindex (nT), and Logical flag to use optional AL index. -* -* Sets the value of Coef and Boundfit in the common block SetW01Coef. -* - REAL angle,Bt,Tilt,SWVel,SWDen,ALindex -C LOGICAL First,UseAL - LOGICAL UseAL - -CNCAR Feb 01: Move logic block to subroutine RdCoef01 -C DATA First/.TRUE./ -C SAVE First -C INTEGER unit -C CHARACTER*15 cfile -C CHARACTER*30 Copyright - PARAMETER (MJ=3,ML=4,MM=3,MN=2,MO=2) - REAL CS( 0:MJ, 0:1 , 0:MO, 0:1 , 0:ML, 0:MM) - REAL BCS( 0:MJ, 0:1 , 0:MO, 0:1 , 0:MN) - REAL SS( 0:1 , 0:1 , 0:MO, 0:1 , 0:ML, 0:MM) - REAL BSS( 0:1 , 0:1 , 0:MO, 0:1 , 0:MN) - REAL XA(0:MJ),XB(0:MJ),FSC(0:1,0:4),PSS(0:1) - REAL Coef(0:1,0:5,0:5),BoundFit(0:1,0:5),pi - DOUBLE PRECISION dpi - INTEGER*4 i,j,k,l,m,n,o - INTEGER*4 maxj,MaxL,MaxM,MaxN,MaxO - COMMON /EIE_AllW01Coefs/MaxJ,MaxO,CS,BCS,SS,BSS - COMMON /EIE_SetW01Coef/MaxL,MaxM,MaxN,Coef,BoundFit,pi,dpi - -CNCAR Feb 01: Move logic block to subroutine RdCoef01 -C All First=TRUE in new subroutine ReadCoef -C If(First)Then -C cfile='w01.dat' !make sure correct ENDIAN type file is used. -C unit=99 -C OPEN(UNIT=unit,FILE=cfile,STATUS='OLD',form='UNFORMATTED') -C READ(unit) Copyright -C PRINT *,Copyright -C READ(unit) Maxj,MaxL,MaxM,MaxN,MaxO -C If(maxj.NE.MJ .OR. MaxL.NE.ML .OR. MaxM.NE.MM .OR. -C $ MaxN.NE.MN .OR. MaxO.NE.MO)Then -C PRINT *,'Data File Error' -C STOP !Data file did not match sixe expected for arrays -C Endif -C READ(unit) CS -C READ(unit) BCS -C READ(unit) SS -C READ(unit) BSS -C CLOSE(unit) -C pi=2.*ASIN(1.) -C dpi=2.D0*DASIN(1.D0) -C First=.FALSE. -C Endif -CNCAR - - SinTilt=SIND(Tilt) - omega=angle*pi/180. - XA(0)=1. - XA(1)=Bt**(2./3.) *SWvel - XA(2)=SinTilt - XA(3)=SWvel**2 *SWDen - XB(0)=1. - XB(1)=Bt - XB(2)=SinTilt - XB(3)=SWvel**2 *SWDen - - DO l=0,MaxL - mlimit=MIN(l,MaxM) - DO m=0,mlimit - klimit=MIN(m,1) - DO k=0,klimit - acoef=0. !rezero for summation - DO j=0,MaxJ - DO o=0,MaxO - DO i=0,1 - FSC(i,o)=CS(j,i,o,k,l,m) - ENDDO - ENDDO - acoef=acoef+ XA(j)*FSVAL(omega,MaxO,fsc) - ENDDO - IF(UseAL)THEN - DO j=0,1 - DO o=0,MaxO - DO i=0,1 - FSC(i,o)=SS(j,i,o,k,l,m) - ENDDO - ENDDO - PSS(j)=FSVAL(omega,MaxO,fsc) - ENDDO - acoef=acoef + PSS(0) + PSS(1)*ALindex - ENDIF - Coef(k,l,m)=acoef - ENDDO - ENDDO - ENDDO - - DO n=0,MaxN - klimit=MIN(n,1) - DO k=0,klimit - acoef=0. !rezero for summation - DO j=0,MaxJ - DO o=0,MaxO - DO i=0,1 - FSC(i,o)=BCS(j,i,o,k,n) - ENDDO - ENDDO - acoef=acoef+ XB(j)*FSVAL(omega,MaxO,fsc) - ENDDO - IF(UseAL)THEN - DO j=0,1 - DO o=0,MaxO - DO i=0,1 - FSC(i,o)=BSS(j,i,o,k,n) - ENDDO - ENDDO - PSS(j)=FSVAL(omega,MaxO,fsc) - ENDDO - acoef=acoef + PSS(0) + PSS(1)*ALindex - ENDIF - BoundFit(k,n)=acoef - ENDDO - ENDDO - RETURN - END SUBROUTINE SetModel01 -****************** Copyright 1996, 2001, Dan Weimer/MRC *********************** - FUNCTION BoundaryLat01(gmlt) - REAL gmlt - REAL Coef(0:1,0:5,0:5),BoundFit(0:1,0:5),pi - DOUBLE PRECISION dpi - INTEGER MaxL,MaxM,MaxN - COMMON /EIE_SetW01Coef/MaxL,MaxM,MaxN,Coef,BoundFit,pi,dpi - BoundaryLat01=FSVal(gmlt*pi/12.,MaxN,BoundFit) - RETURN - END FUNCTION BoundaryLat01 -****************** Copyright 1996, 2001, Dan Weimer/MRC *********************** -CNCAR Sep 01: Change name from EpotVal to be distinct - - FUNCTION EPOTVAL01 (gLAT,gMLT) -C FUNCTION EpotVal (gLAT,gMLT) -CNCAR - -* Return the value of the electric potential in kV at -* corrected geomagnetic coordinates gLAT (degrees) and gMLT (hours). -* -* Must first call ReadCoef and SetModel to set up the model coeficients for -* the desired values of Bt, IMF clock angle, Dipole tilt angle, and SW Vel. -* - REAL gLAT,gMLT - DOUBLE PRECISION Phi,Z,O,x,ct,Phim - DOUBLE PRECISION Plm(0:10,0:10), OPlm(0:10,0:10) - - REAL Coef(0:1,0:5,0:5), BoundFit(0:1,0:5),pi - DOUBLE PRECISION dpi - COMMON /EIE_SetW01Coef/ MaxL,MaxM,MaxN,Coef,BoundFit,pi,dpi - - blat = BoundaryLat01(gMLT) -CNCAR Feb 01: For latitudes at and equatorward of the model minimum -C (a function of MLT), limit the latitude used to never be less -C than the model minimum, thus returning a constant potential for -C points at and equatorward of BoundaryLat01(gmlt). -C IF (glat .GT. blat) THEN - glatlim = amax1 (glat,blat) -CNCAR - - Phi = DBLE (gMLT)*dpi/12.D0 - -CNCAR - colat = 90.-glatlim -C colat = 90.-glat -CNCAR - - bcolat = 90.-blat - x = DBLE (colat)*dpi/DBLE(bcolat) - DC = DBLE (Coef(0,0,0)) - Z = DC - O = DC - ct = DCOS(x) - CALL DLegendre01(ct, MaxL,MaxM,Plm) -C Also find value at outer boundary at angle Pi, or cos(pi)=-1. - CALL DLegendre01(-1.D0,MaxL,MaxM,OPlm) - DO l=1,MaxL - Z = Z + Plm(l,0)*DBLE(Coef(0,l,0)) - O = O + OPlm(l,0)*DBLE(Coef(0,l,0)) - mlimit = MIN(l,MaxM) - DO m=1,mlimit - phim = phi*m - Z = Z + Plm(l,m)*(DBLE(Coef(0,l,m))*DCOS(Phim) + - $ DBLE(Coef(1,l,m))*DSIN(Phim) ) - O = O +OPlm(l,m)*DBLE(Coef(0,l,m)) - ENDDO - ENDDO -CNCAR - EPOTVAL01 = SNGL(Z-O) -C EpotVal = SNGL(Z-O) -C ELSE -C EpotVal=0. -C ENDIF -CNCAR - RETURN - END FUNCTION EPOTVAL01 - -CNCAR - SUBROUTINE GECMP01 (AMLA,RMLT,ET,EP) -C Get Electric field components for the 2001 Weimer electrostatic -C potential model. Before use, first load coefficients (CALL -C READCOEF01) and initialize model conditions (CALL SETMODEL01). -C The electric field, the gradient of the electic potential, -C is determined using finite differences over a distance of -C STEP km, defined in READCOEF01 and accessed here via common -C block CECMP. -C -C It has been useful to modify STEP. One application discovered -C the Weimer electrostatic potential can have minor unrealistic -C perturbations over short distances. To avoid these ripples -C STEP was increased to 5 degrees arc (582 km at 300 km altitude, -C R=6671 km). -C -C INPUTS: -C AMLA = Absolute value of magnetic latitude (deg) -C RMLT = Magnetic local time (hours). -C RETURNS: -C ET = Etheta (magnetic equatorward*) E field component (V/m) -C EP = Ephi (magnetic eastward) E field component (V/m) -C -C * ET direction is along the magnetic meridian away from the -C current hemisphere; i.e., when ET > 0, the direction is -C southward when in northern magnetic hemisphere -C northward when in southern magnetic hemisphere -C Since the Weimer model uses only NH (positive) latitudes, the -C sign of ET for SH should be changed outside of this routine. -C -C HISTORY: -C Jan 97: Initial implementation at NCAR for the 1996 version. -C Feb 01: Error corrected in determining DPHI. Old version -C used wrong spherical right triangle formula (inadvertently -C computing along a latitude line); more importantly, it -C neglected to convert mlt from degrees to hour angle input -C to EPOTVAL01. -C Sep 01: Revised equatorward boundary logic to the scheme Barbara -C uses for AMIE: As absolute magnetic latitude decreases to the -C model minimum, the electric potential from EPOTVAL01 now goes to -C a non-zero constant (rather than zero), thus obviating the need -C for special handling here. Therefore, special logic for determining -C gradients at lower limit has been removed. - - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - -C CECMP contains constants initialized in READCOEF01 - COMMON /EIE_W01CECMP/ ALAMX,STPD,STP2,CSTP,SSTP - - ET = -99999. - EP = -99999. - IF (AMLA .LT. 0.) GO TO 100 - -C Calculate -(latitude gradient) by stepping along the magnetic -C latitude line in each direction (flipping coordinates when -C going over pole to keep lat <= 90). - KPOL = 0 - XMLT = RMLT - 10 XMLT1 = XMLT - AMLA1 = AMLA + STPD - IF (AMLA1 .GT. 90.) THEN - AMLA1 = 180. - AMLA1 - XMLT1 = XMLT1 + 12. - ENDIF - P1 = EPOTVAL01 (AMLA1 ,XMLT1) - P2 = EPOTVAL01 (AMLA-STPD,XMLT ) - IF (KPOL .EQ. 1) GO TO 20 - ET = (P1 - P2) / STP2 - -C Calculate -(lon gradient). Step along the magnetic meridion -C in both directions to obtain the electric potential - IF (AMLA .LT. ALAMX) THEN - AMLA1 = ASIN(SIN(AMLA*D2R)*CSTP) - DPHI = ASIN (SSTP/COS(AMLA1))*R2D/15. ! 15 converts from degrees to hours - AMLA1 = AMLA1*R2D - P1 = EPOTVAL01 (AMLA1,XMLT+DPHI) - P2 = EPOTVAL01 (AMLA1,XMLT-DPHI) - ELSE - AMLA = 90. - XMLT = XMLT + 6. - KPOL = 1 - GO TO 10 - ENDIF - 20 EP = (P2 - P1) / STP2 - IF (KPOL .EQ. 1) EP = -EP - - 100 RETURN - END SUBROUTINE GECMP01 - - SUBROUTINE WEIEPOT01 (IYR,IMO,IDA,IHR,IMN,SWS,SWD,BY,BZ,AL,USEAL, - + IHEM,ISETM,RMLA,RMLT, ET,EP,EPOT) -C Interface to Weimer-01 (a.k.a w01) for AMIE's combined electrostatic -C potential models. This replaces two calls (SETMODEL01 and -C EPOTVAL01) and automates sign changes for southern hemisphere. -C INPUTS: -C IYR = UT year ((4-digit) -C IMO = month of IYR -C IDA = day of IMO -C IHR = hour of day -C IMN = min of hour -C SWS = Solar wind speed (km/s) -C SWD = Solar wind density (#/cm3) -C BY = IMF By component in GSM coordinates (nt) -C BZ = IMF Bz component in GSM coordinates (nt) -C AL = AL index (nT) -C USEAL = logical (T or F) to use AL index or not -C IHEM = Hemisphere flag: (-1) southern, (1) northern -C ISETM = Model conditions change flag: (0) no-change -C (1) time, IMF or SW changed -C RMLA = Magnetic latitude (deg) of point to determine Potential -C (RMLA should be NH positive latitudes only, since SH -C values found by changing sign of By (or ANGL) and tilt.) -C RMLT = Magnetic longitude (hrs) of point to determine Potential -C RETURNS: -C ET = Etheta (magnetic equatorward*) E field component (V/m) -C EP = Ephi (magnetic eastward) E field component (V/m) -C EPOT = Electrostatic potential (kV) -C -C * ET direction is along the magnetic meridian away from the -C current hemisphere; i.e., when ET > 0, the direction is -C southward when in northern magnetic hemisphere -C northward when in southern magnetic hemisphere -C -C Since the AMIE model assumes a NH solution although the -C latitudes are negative for SH data, the sign of ET -C for the SH should be changed outside of this routine. - -C HISTORY: -C Jan 97: Initial implementation. B. Emery. -C Feb 01: Remove bug (HR was not defined) -C Sep 01: Add common block s.t. computed values are available to -C the calling routine without changing the argument list - COMMON /EIE_W01AT/ ANGL, TILT - PARAMETER (R2D=57.2957795130823208767981548147) - LOGICAL USEAL - - H = REAL (IHEM) - - IF (ISETM .EQ. 1) THEN - ANGL = ATAN2 (BY,BZ)*R2D - BT = SQRT (BY*BY + BZ*BZ) - HR = FLOAT(IHR) + FLOAT(IMN)/60. - TILT = GET_TILT (IYR,IMO,IDA,HR) - - HANGL = H * ANGL - HTILT = H * TILT - CALL SETMODEL01 (HANGL,BT,HTILT,SWS,SWD,AL,USEAL) -C WRITE (6,'('' WEIMER-2001: '',I4,5I3,8F7.2,L)') IYR,IMO,IDA,IHR, -C + IMN,IHEM,SWS,SWD,AL,BY,BZ,BT,HANGL,HTILT,USEAL - ENDIF - -C NH assumed latitudes only - AMLA = ABS (RMLA) - EPOT = EPOTVAL01 (AMLA,RMLT) - CALL GECMP01 (AMLA,RMLT,ET,EP) - - RETURN - END SUBROUTINE WEIEPOT01 -CNCAR -************************ Copyright 1996, Dan Weimer/MRC *********************** -* -* Subroutines to calculate the electric potentials from the Weimer '96 model of -* the polar cap ionospheric electric potentials. -* -* To use, first call subroutine ReadCoef once. -* Next, call SetModel with the specified input parameters. -* The function EpotVal96(gLAT,gMLT) can then be used repeatively to get the -* electric potential at the desired location in geomagnetic coordinates. -* -* This code is protected by copyright and is -* distributed for research or educational use only. -* Commerical use without written permission from Dan Weimer/MRC is prohibited. -* - -CNCAR Revisions for use at NCAR: -C (1) Change behavior at minimum magnetic latitude. When approaching -C the model minimum absolute latitude (45 degrees) the electric -C potential returned used to go to zero discontinuously; although -C intended as a flag, it created artificial gradients in the -C electric field calculation. Now the potential returned is -C constant (that of the minimum latitude) for any latitude at -C or equatorward of the minimum. -C (2) Accommodate running sumultaneously 1996 and 2001 versions. To -C avoid name collisions this required: (i) revising names (e.g., -C adding '96') for differing subprograms, and (ii) relocating -C common routines into another file (weicom.f). -C (3) Pass the coefficients file name and unit number into RDCOEF96 -C rather than using hard coded values. -C (4) Add wrapper subroutines for non-ANSI trig functions which -C input angles in degrees. -C (5) Add electric field routine (GECMP96) to deterine the electric -C potential gradient. -C (6) Add wrapper routine (WEIEPOT96) for use with AMIE; this is a -C substitute for calling SETMODEL96 and EPOTVAL96. -CNCAR NCAR changes are delimited by "CNCAR" - -************************ Copyright 1996, Dan Weimer/MRC *********************** - -CNCAR Oct 01: Distinguish from the 2001 version - - FUNCTION EPOTVAL96(gLAT,gMLT) -CNCAR -* Return the value of the electric potential in kV at -* corrected geomagnetic coordinates gLAT (degrees) and gMLT (hours). -* -* Must first call ReadCoef and SetModel to set up the model coeficients for -* the desired values of Bt, IMF clock angle, Dipole tilt angle, and SW Vel. -* - REAL gLAT,gMLT - Real Theta,Phi,Z,ct,Phim - REAL Plm(0:20,0:20) - - REAL Coef(0:1,0:8,0:3),pi - INTEGER ML,MM - COMMON /EIE_SetW96Coef/ML,MM,Coef,pi - - r = 90.-gLAT - -CNCAR Sep 01: Limit the colatitude (r) such that an input absolute -C magnetic latitude of 45 degrees or less always calculates the -C potential at 45. - R = AMIN1 (R,45.) -C IF(r .LT. 45.)THEN -CNCAR - Theta=r*pi/45. - Phi=gMLT*pi/12. - Z=Coef(0,0,0) - ct=COS(Theta) - CALL Legendre96(ct,ML,MM,Plm) - DO l=1,ML - Z=Z + Coef(0,l,0)*Plm(l,0) - IF(l.LT.MM)THEN - limit=l - ELSE - limit=MM - ENDIF - DO m=1,limit - phim=phi*m - Z=Z + Coef(0,l,m)*Plm(l,m)*COS(phim) + - $ Coef(1,l,m)*Plm(l,m)*SIN(phim) - ENDDO - ENDDO -CNCAR -C ELSE -C Z=0. -C ENDIF - EPOTVAL96 = Z -CNCAR - RETURN - END FUNCTION EPOTVAL96 - -************************ Copyright 1996, Dan Weimer/MRC *********************** - -CNCAR Sep 01: Pass in the unit no. and file name rather than hard coding -C inside. Also change name to distinguish 2001 version. - - SUBROUTINE READCOEF96 (udat) -CNCAR - -* -* Read in the data file with the model coefficients -* - INTEGER udat -CNCAR - CHARACTER skip*15 -C CHARACTER*15 cfile,skip -CNCAR - REAL C(0:3) - REAL Cn( 0:3 , 0:1 , 0:4 , 0:1 , 0:8 , 0:3 ) - INTEGER MaxL,MaxM,MaxN - COMMON /EIE_AllW96Coefs/MaxL,MaxM,MaxN,Cn - - -CNCAR Jan 97: Initialize constants used in GECMP96 -C Sep 01: Omit unneeded min lat variables because of switch to -C constant potential at and below min lat (hardcoded -C in EPOTVAL96). - COMMON /EIE_W96CECMP/ ALAMX,STPD,STP2,CSTP,SSTP -C ALAMX = Absolute max latitude (deg) for normal gradient calc. -C STPD = Angular dist (deg) of step @ 300km above earth (r=6371km) -C STP2 = Denominator in gradient calc - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - STEP = 10. - STPR = STEP/6671. - STPD = STPR*R2D - STP2 = 2.*STEP - CSTP = COS (STPR) - SSTP = SQRT (1. - CSTP*CSTP) - ALAMX = 90. - STPD -CNCAR - -CNCAR Sep 01: udat,cfile are now a formal arguments -C cfile='wei96.cofcnts' -C udat=99 -CNCAR -C OPEN(udat,FILE=cfile,STATUS='OLD') - 900 FORMAT(A15) - 1000 FORMAT(3I8) - 2000 FORMAT(3I2) - 3000 FORMAT(2I2,4E15.6) - - READ(udat,900) skip - READ(udat,1000) MaxL,MaxM,MaxN - DO l=0,MaxL - IF(l.LT.MaxM)THEN - mlimit=l - ELSE - mlimit=MaxM - ENDIF - DO m=0,mlimit - IF(m.LT.1)THEN - klimit=0 - ELSE - klimit=1 - ENDIF - DO k=0,klimit - READ(udat,2000) ll,mm,kk - IF(ll.NE.l .OR. mm.NE.m .OR. kk.NE.k)THEN - PRINT *,'Data File Format Error' - STOP - ENDIF - DO n=0,MaxN - IF(n.LT.1)THEN - ilimit=0 - ELSE - ilimit=1 - ENDIF - DO i=0,ilimit - READ(udat,3000) nn,ii,C - IF(nn.NE.n .OR. ii.NE.i)THEN - PRINT *,'Data File Format Error' - STOP - ENDIF - Cn(0,i,n,k,l,m)=C(0) - Cn(1,i,n,k,l,m)=C(1) - Cn(2,i,n,k,l,m)=C(2) - Cn(3,i,n,k,l,m)=C(3) - ENDDO - ENDDO - ENDDO - ENDDO - ENDDO - - CLOSE(udat) - RETURN - END SUBROUTINE READCOEF96 -************************ Copyright 1996, Dan Weimer/MRC *********************** -CNCAR Oct 01: Change name from SetModel to be distinct - - SUBROUTINE SETMODEL96 (angle,Bt,Tilt,SWVel) -CNCAR -* -* Calculate the complete set of spherical harmonic coefficients, -* given an arbitrary IMF angle (degrees from northward toward +Y), -* magnitude Bt (nT), dipole tilt angle (degrees), -* and solar wind velocity (km/sec). -* Returns the Coef in the common block SetCoef. -* - REAL angle,Bt,Tilt,SWVel - REAL FSC(0:1,0:4) - REAL Cn( 0:3 , 0:1 , 0:4 , 0:1 , 0:8 , 0:3 ) - INTEGER MaxL,MaxM,MaxN - COMMON /EIE_AllW96Coefs/MaxL,MaxM,MaxN,Cn - - REAL Coef(0:1,0:8,0:3),pi - INTEGER ML,MM - COMMON /EIE_SetW96Coef/ML,MM,Coef,pi - - pi=2.*ASIN(1.) - ML=MaxL - MM=MaxM - SinTilt=SIND(Tilt) - - omega=angle*pi/180. - DO l=0,MaxL - IF(l.LT.MaxM)THEN - mlimit=l - ELSE - mlimit=MaxM - ENDIF - DO m=0,mlimit - IF(m.LT.1)THEN - klimit=0 - ELSE - klimit=1 - ENDIF - DO k=0,klimit -* Retrieve the regression coefficients and evaluate the function -* as a function of Bt,Tilt,and SWVel to get each Fourier coefficient. - DO n=0,MaxN - IF(n.LT.1)THEN - ilimit=0 -* in n=0 case the FSC(1,0) element was never set but used in FSVAL - FSC(1,0)=0.0 - ELSE - ilimit=1 - ENDIF - DO i=0,ilimit - FSC(i,n)=Cn(0,i,n,k,l,m) + Bt*Cn(1,i,n,k,l,m) + - $ SinTilt*Cn(2,i,n,k,l,m) + SWVel*Cn(3,i,n,k,l,m) - ENDDO - ENDDO -* Next evaluate the Fourier series as a function of angle. - Coef(k,l,m)=FSVal(omega,MaxN,FSC) - ENDDO - ENDDO - ENDDO - RETURN - END SUBROUTINE SETMODEL96 -************************ Copyright 1996, Dan Weimer/MRC *********************** - SUBROUTINE LEGENDRE96(x,lmax,mmax,Plm) -* compute Associate Legendre Function P_l^m(x) -* for all l up to lmax and all m up to mmax. -* returns results in array Plm -* if X is out of range ( abs(x)>1 ) then value is returned as if x=1. - DIMENSION Plm(0:20,0:20) - DO l=0,20 - DO m=0,20 - Plm(l,m)=0. - ENDDO - ENDDO - xx=MIN(x,1.) - xx=MAX(xx,-1.) - IF(lmax .LT. 0 .OR. mmax .LT. 0 .OR. mmax .GT. lmax )THEN - Print *,'Bad arguments to Legendre96' - RETURN - ENDIF -* First calculate all Pl0 for l=0 to l - Plm(0,0)=1. - IF(lmax.GT.0)Plm(1,0)=xx - IF (lmax .GT. 1 )THEN - DO L=2,lmax - Plm(L,0)=( (2.*L-1)*xx*Plm(L-1,0) - (L-1)*Plm(L-2,0) )/L - ENDDO - ENDIF - IF (mmax .EQ. 0 )RETURN - fact=SQRT( (1.-xx)*(1.+xx) ) - DO M=1,mmax - DO L=m,lmax - lm2=MAX(L-2,0) - Plm(L,M)=Plm(lm2,M) - ( 2*L-1)*fact*Plm(L-1,M-1) - ENDDO - ENDDO - RETURN - END SUBROUTINE LEGENDRE96 - -CNCAR - SUBROUTINE GECMP96 (AMLA,RMLT,ET,EP) -C Get Electric field components for the 1996 Weimer electrostatic -C potential model. Before use, first load coefficients (CALL -C READCOEF96) and initialize model conditions (CALL SETMODEL96). -C The electric field, the gradient of the electic potential, -C is determined using finite differences. -C -C It has been useful to modify STEP. One application discovered -C the Weimer electrostatic potential can have minor unrealistic -C perturbations over short distances. To avoid these ripples -C STEP was increased to 5 degrees arc (582 km at 300 km altitude, -C R=6671 km). -C -C INPUTS: -C AMLA = Absolute value of magnetic latitude (deg) -C RMLT = Magnetic local time (hours). -C RETURNS: -C ET = Etheta (magnetic equatorward*) E field component (V/m) -C EP = Ephi (magnetic eastward) E field component (V/m) -C -C * ET direction is along the magnetic meridian away from the -C current hemisphere; i.e., when ET > 0, the direction is -C southward when in northern magnetic hemisphere -C northward when in southern magnetic hemisphere -C -C HISTORY: -C Jan 97: Initial implementation at NCAR. R.Barnes -C Feb 01: Error corrected in determining DPHI. Old version -C used wrong spherical right triangle formula (inadvertently -C computing along a latitude line); more importantly, it -C neglected to convert mlt from degrees to hour angle input -C to EPOTVAL96. -C Sep 01: Revised equatorward boundary logic to the scheme Barbara -C uses for AMIE: As absolute magnetic latitude decreases to the -C model minimum, the electric potential from EPOTVAL96 now goes to -C a non-zero constant (rather than zero), thus obviating the need -C for special handling here. Therefore, special logic for determining -C gradients at lower limit has been removed. - - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - -C CECMP contains constants initialized in READCOEF - COMMON /EIE_W96CECMP/ ALAMX,STPD,STP2,CSTP,SSTP - - ET = -99999. - EP = -99999. - IF (AMLA .LT. 0.) GO TO 100 - -C Calculate -(latitude gradient) by stepping along the magnetic -C latitude line in each direction (flipping coordinates when -C going over pole to keep lat <= 90). - KPOL = 0 - XMLT = RMLT - 10 XMLT1 = XMLT - AMLA1 = AMLA + STPD - IF (AMLA1 .GT. 90.) THEN - AMLA1 = 180. - AMLA1 - XMLT1 = XMLT1 + 12. - ENDIF - P1 = EPOTVAL96(AMLA1 ,XMLT1) - P2 = EPOTVAL96(AMLA-STPD,XMLT ) - IF (KPOL .EQ. 1) GO TO 20 - ET = (P1 - P2) / STP2 - -C Calculate -(lon gradient). Step along the magnetic meridion -C in both directions to obtain the electric potential - IF (AMLA .LT. ALAMX) THEN - AMLA1 = ASIN(SIN(AMLA*D2R)*CSTP) - -C DPHI = ASIN (SSTP/SIN(AMLA1))*R2D ! old and wrong! (changed Feb 01) - DPHI = ASIN (SSTP/COS(AMLA1))*R2D/15. ! 15 converts from degrees to hours - - AMLA1 = AMLA1*R2D - P1 = EPOTVAL96(AMLA1,XMLT+DPHI) - P2 = EPOTVAL96(AMLA1,XMLT-DPHI) - ELSE -C At the pole. Avoid a divide by zero by using Art's trick -C where Ephi(90,lon) = Etheta(90,lon+90). - AMLA = 90. - XMLT = XMLT + 6. - KPOL = 1 - GO TO 10 - ENDIF - 20 EP = (P2 - P1) / STP2 - IF (KPOL .EQ. 1) EP = -EP - - 100 RETURN - END SUBROUTINE GECMP96 - - SUBROUTINE WEIEPOT96 (IYR,IMO,IDA,IHR,IMN,SWS,BY,BZ,IHEM,ISETM, - + RMLA,RMLT, ET,EP,EPOT) -C Interface to Weimer-96 for AMIE's combined electrostatic -C potential models. This replaces two calls (SETMODEL96 and -C EPOTVAL96) and automates sign changes for southern hemisphere. -C INPUTS: -C IYR = UT year ((4-digit) -C IMO = month of IYR -C IDA = day of IMO -C IHR = hour of day -C IMN = min of hour -C SWS = Solar wind speed (km/s) -C BY = IMF By component in GSM coordinates (nt) -C BZ = IMF Bz component in GSM coordinates (nt) -C IHEM = Hemisphere flag: (-1) southern, (1) northern -C ISETM = Model conditions change flag: (0) no-change -C (1) time, IMF or SW changed -C RMLA = Magnetic latitude (deg) of point to determine Potential. -C RMLA should be positive (NH) only, since SH values are -C obtained by changing sign of By (or ANGL) and TILT. -C RMLT = Magnetic longitude (hrs) of point to determine Potential -C RETURNS: -C ET = Etheta (magnetic equatorward*) E field component (V/m) -C EP = Ephi (magnetic eastward) E field component (V/m) -C EPOT = Electric potential (kV) -C -C * ET direction is along the magnetic meridian away from the -C current hemisphere; i.e., when ET > 0, the direction is -C southward when in northern magnetic hemisphere -C northward when in southern magnetic hemisphere -C -C Since the AMIE model assumes a NH solution although the -C latitudes are negative for SH data, the sign of ET -C for the SH should be changed outside of this routine. - -C HISTORY: -C Jan 97: Initial implementation. B. Emery. -C Feb 01: Remove bug (HR was not defined) -C Sep 01: Add common block s.t. computed values are available to -C the calling routine without changing the argument list -C Oct 01: Revise routine names s.t. this can run with the 2001 version - COMMON /EIE_W96AT/ ANGL, TILT - PARAMETER (R2D=57.2957795130823208767981548147) - - H = REAL (IHEM) - - IF (ISETM .EQ. 1) THEN - ANGL = ATAN2 (BY,BZ)*R2D - BT = SQRT (BY*BY + BZ*BZ) - HR = FLOAT(IHR) + FLOAT(IMN)/60. ! define HR (bug fix Feb 01) - TILT = GET_TILT (IYR,IMO,IDA,HR) - - HANGL = H * ANGL - HTILT = H * TILT - CALL SETMODEL96 (HANGL,BT,HTILT,SWS) -C WRITE (6,'('' WEIMER-1996: sw by bz bt angle tilt='',6f7.2)') -C + SWS,BY,BZ,BT,ANGL,TILT - ENDIF - -C NH assumed latitudes only - AMLA = ABS(RMLA) - EPOT = EPOTVAL96(AMLA, RMLT) - CALL GECMP96(AMLA,RMLT,ET,EP) - - RETURN - END SUBROUTINE WEIEPOT96 -CNCAR -C Routines common to both 1996 and 2001 versions of Weimer's -C Ionospheric Electrostatic Potential Model - -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** - FUNCTION FSVal(omega,MaxN,FSC) -* Fourier Series Value -* Return value of Sine/Cosine Fourier series for N terms up to MaxN -* at angle omega, given the F.S. coeficients in array FSC - REAL omega,FSC(0:1,0:*) - INTEGER MaxN,n - REAL Y,theta - Y=0. - DO n=0,MaxN - theta=omega*n - Y=Y + FSC(0,n)*COS(theta) + FSC(1,n)*SIN(theta) - ENDDO - FSVal=Y - RETURN - END FUNCTION FSVal -************************ Copyright 1996,2001 Dan Weimer/MRC *********************** -* COORDINATE TRANSFORMATION UTILITIES - -CNCAR Feb 01: Changed TRANS to GET_TILT s.t. the dipole tilt angle is -C returned. - - FUNCTION GET_TILT (YEAR,MONTH,DAY,HOUR) -C SUBROUTINE TRANS(YEAR,MONTH,DAY,HOUR,IDBUG) -CNCAR - - INTEGER YEAR,MONTH,DAY,IDBUG - REAL HOUR -C -C THIS SUBROUTINE DERIVES THE ROTATION MATRICES AM(I,J,K) FOR 11 -C TRANSFORMATIONS, IDENTIFIED BY K. -C K=1 TRANSFORMS GSE to GEO -C K=2 " GEO to MAG -C K=3 " GSE to MAG -C K=4 " GSE to GSM -C K=5 " GEO to GSM -C K=6 " GSM to MAG -C K=7 " GSE to GEI -C K=8 " GEI to GEO -C K=9 " GSM to SM -C K=10 " GEO to SM -C K=11 " MAG to SM -C -C IF IDBUG IS NOT 0, THEN OUTPUTS DIAGNOSTIC INFORMATION TO -C FILE UNIT=IDBUG -C - INTEGER GSEGEO,GEOGSE,GEOMAG,MAGGEO - INTEGER GSEMAG,MAGGSE,GSEGSM,GSMGSE - INTEGER GEOGSM,GSMGEO,GSMMAG,MAGGSM - INTEGER GSEGEI,GEIGSE,GEIGEO,GEOGEI - INTEGER GSMSM,SMGSM,GEOSM,SMGEO,MAGSM,SMMAG - - PARAMETER (GSEGEO= 1,GEOGSE=-1,GEOMAG= 2,MAGGEO=-2) - PARAMETER (GSEMAG= 3,MAGGSE=-3,GSEGSM= 4,GSMGSE=-4) - PARAMETER (GEOGSM= 5,GSMGEO=-5,GSMMAG= 6,MAGGSM=-6) - PARAMETER (GSEGEI= 7,GEIGSE=-7,GEIGEO= 8,GEOGEI=-8) - PARAMETER (GSMSM = 9,SMGSM =-9,GEOSM =10,SMGEO=-10) - PARAMETER (MAGSM =11,SMMAG =-11) -C -C The formal names of the coordinate systems are: -C GSE - Geocentric Solar Ecliptic -C GEO - Geographic -C MAG - Geomagnetic -C GSM - Geocentric Solar Magnetospheric -C SM - Solar Magnetic -C -C THE ARRAY CX(I) ENCODES VARIOUS ANGLES, STORED IN DEGREES -C ST(I) AND CT(I) ARE SINES & COSINES. -C -C Program author: D. R. Weimer -C -C Some of this code has been copied from subroutines which had been -C obtained from D. Stern, NASA/GSFC. Other formulas are from "Space -C Physics Coordinate Transformations: A User Guide" by M. Hapgood (1991). -C -C The formulas for the calculation of Greenwich mean sidereal time (GMST) -C and the sun's location are from "Almanac for Computers 1990", -C U.S. Naval Observatory. -C - REAL UT,T0,GMSTD,GMSTH,ECLIP,MA,LAMD,SUNLON - - COMMON /EIE_WEIMFIELD/EPOCH,TH0,PH0,DIPOLE - COMMON /EIE_WEITRANSDAT/CX(9),ST(6),CT(6),AM(3,3,11) -C -C UM - Changed Data statement to the following: - - EPOCH = 1980. - TH0 = 11.19 - PH0 = -70.76 - DIPOLE = .30574 - -C UM - -CNCAR Feb 01: Prevent debug printing to a file - IDBUG = 0 -CNCAR - - IF(YEAR.LT.1900)THEN - IYR=1900+YEAR - ELSE - IYR=YEAR - ENDIF - UT=HOUR - JD=JULDAY(MONTH,DAY,IYR) - MJD=JD-2400001 - T0=(FLOAT(MJD)-51544.5)/36525.0 - GMSTD=100.4606184 + 36000.770*T0 + 3.87933E-4*T0*T0 + - $ 15.0410686*UT - CALL ADJUST(GMSTD) - GMSTH=GMSTD*24./360. - ECLIP=23.439 - 0.013*T0 - MA=357.528 + 35999.050*T0 + 0.041066678*UT - CALL ADJUST(MA) - LAMD=280.460 + 36000.772*T0 + 0.041068642*UT - CALL ADJUST(LAMD) - SUNLON=LAMD + (1.915-0.0048*T0)*SIND(MA) + 0.020*SIND(2.*MA) - CALL ADJUST(SUNLON) - IF(IDBUG.NE.0)THEN - WRITE(IDBUG,*) YEAR,MONTH,DAY,HOUR - WRITE(IDBUG,*) 'MJD=',MJD - WRITE(IDBUG,*) 'T0=',T0 - WRITE(IDBUG,*) 'GMSTH=',GMSTH - WRITE(IDBUG,*) 'ECLIPTIC OBLIQUITY=',ECLIP - WRITE(IDBUG,*) 'MEAN ANOMALY=',MA - WRITE(IDBUG,*) 'MEAN LONGITUDE=',LAMD - WRITE(IDBUG,*) 'TRUE LONGITUDE=',SUNLON - ENDIF - - CX(1)= GMSTD - CX(2) = ECLIP - CX(3) = SUNLON - CX(4) = TH0 - CX(5) = PH0 -c Derived later: -c CX(6) = Dipole tilt angle -c CX(7) = Angle between sun and magnetic pole -c CX(8) = Subsolar point latitude -c CX(9) = Subsolar point longitude - - DO I=1,5 - ST(I) = SIND(CX(I)) - CT(I) = COSD(CX(I)) - ENDDO -C - AM(1,1,GSEGEI) = CT(3) - AM(1,2,GSEGEI) = -ST(3) - AM(1,3,GSEGEI) = 0. - AM(2,1,GSEGEI) = ST(3)*CT(2) - AM(2,2,GSEGEI) = CT(3)*CT(2) - AM(2,3,GSEGEI) = -ST(2) - AM(3,1,GSEGEI) = ST(3)*ST(2) - AM(3,2,GSEGEI) = CT(3)*ST(2) - AM(3,3,GSEGEI) = CT(2) -C - AM(1,1,GEIGEO) = CT(1) - AM(1,2,GEIGEO) = ST(1) - AM(1,3,GEIGEO) = 0. - AM(2,1,GEIGEO) = -ST(1) - AM(2,2,GEIGEO) = CT(1) - AM(2,3,GEIGEO) = 0. - AM(3,1,GEIGEO) = 0. - AM(3,2,GEIGEO) = 0. - AM(3,3,GEIGEO) = 1. -C - DO I=1,3 - DO J=1,3 - AM(I,J,GSEGEO) = AM(I,1,GEIGEO)*AM(1,J,GSEGEI) + - $ AM(I,2,GEIGEO)*AM(2,J,GSEGEI) + AM(I,3,GEIGEO)*AM(3,J,GSEGEI) - ENDDO - ENDDO -C - AM(1,1,GEOMAG) = CT(4)*CT(5) - AM(1,2,GEOMAG) = CT(4)*ST(5) - AM(1,3,GEOMAG) =-ST(4) - AM(2,1,GEOMAG) =-ST(5) - AM(2,2,GEOMAG) = CT(5) - AM(2,3,GEOMAG) = 0. - AM(3,1,GEOMAG) = ST(4)*CT(5) - AM(3,2,GEOMAG) = ST(4)*ST(5) - AM(3,3,GEOMAG) = CT(4) -C - DO I=1,3 - DO J=1,3 - AM(I,J,GSEMAG) = AM(I,1,GEOMAG)*AM(1,J,GSEGEO) + - $ AM(I,2,GEOMAG)*AM(2,J,GSEGEO) + AM(I,3,GEOMAG)*AM(3,J,GSEGEO) - ENDDO - ENDDO -C - B32 = AM(3,2,GSEMAG) - B33 = AM(3,3,GSEMAG) - B3 = SQRT(B32*B32+B33*B33) - IF (B33.LE.0.) B3 = -B3 -C - AM(2,2,GSEGSM) = B33/B3 - AM(3,3,GSEGSM) = AM(2,2,GSEGSM) - AM(3,2,GSEGSM) = B32/B3 - AM(2,3,GSEGSM) =-AM(3,2,GSEGSM) - AM(1,1,GSEGSM) = 1. - AM(1,2,GSEGSM) = 0. - AM(1,3,GSEGSM) = 0. - AM(2,1,GSEGSM) = 0. - AM(3,1,GSEGSM) = 0. -C - DO I=1,3 - DO J=1,3 - AM(I,J,GEOGSM) = AM(I,1,GSEGSM)*AM(J,1,GSEGEO) + - $ AM(I,2,GSEGSM)*AM(J,2,GSEGEO) + AM(I,3,GSEGSM)*AM(J,3,GSEGEO) - ENDDO - ENDDO -C - DO I=1,3 - DO J=1,3 - AM(I,J,GSMMAG) = AM(I,1,GEOMAG)*AM(J,1,GEOGSM) + - $ AM(I,2,GEOMAG)*AM(J,2,GEOGSM) + AM(I,3,GEOMAG)*AM(J,3,GEOGSM) - ENDDO - ENDDO -C - ST(6) = AM(3,1,GSEMAG) - CT(6) = SQRT(1.-ST(6)*ST(6)) - CX(6) = ASIND(ST(6)) - - AM(1,1,GSMSM) = CT(6) - AM(1,2,GSMSM) = 0. - AM(1,3,GSMSM) = -ST(6) - AM(2,1,GSMSM) = 0. - AM(2,2,GSMSM) = 1. - AM(2,3,GSMSM) = 0. - AM(3,1,GSMSM) = ST(6) - AM(3,2,GSMSM) = 0. - AM(3,3,GSMSM) = CT(6) -C - DO I=1,3 - DO J=1,3 - AM(I,J,GEOSM) = AM(I,1,GSMSM)*AM(1,J,GEOGSM) + - $ AM(I,2,GSMSM)*AM(2,J,GEOGSM) + AM(I,3,GSMSM)*AM(3,J,GEOGSM) - ENDDO - ENDDO -C - DO I=1,3 - DO J=1,3 - AM(I,J,MAGSM) = AM(I,1,GSMSM)*AM(J,1,GSMMAG) + - $ AM(I,2,GSMSM)*AM(J,2,GSMMAG) + AM(I,3,GSMSM)*AM(J,3,GSMMAG) - ENDDO - ENDDO -C - CX(7)=ATAN2D( AM(2,1,11) , AM(1,1,11) ) - CX(8)=ASIND( AM(3,1,1) ) - CX(9)=ATAN2D( AM(2,1,1) , AM(1,1,1) ) - - IF(IDBUG.NE.0)THEN - WRITE(IDBUG,*) 'Dipole tilt angle=',CX(6) - WRITE(IDBUG,*) 'Angle between sun and magnetic pole=',CX(7) - WRITE(IDBUG,*) 'Subsolar point latitude=',CX(8) - WRITE(IDBUG,*) 'Subsolar point longitude=',CX(9) - - DO K=1,11 - WRITE(IDBUG,1001) K - DO I=1,3 - WRITE(IDBUG,1002) (AM(I,J,K),J=1,3) - ENDDO - ENDDO - 1001 FORMAT(' ROTATION MATRIX ',I2) - 1002 FORMAT(3F9.5) - ENDIF - -CNCAR Mar 96: return the dipole tilt from this function call. - GET_TILT = CX(6) -CNCAR - - RETURN - END FUNCTION GET_TILT -****************************************************************************** -CNCAR Feb 01: Eliminate unused routines from translib.for: ROTATE, -C ROTATEV, FROMCART, TOCART, MLT, MAGLONG, SUNLOC. Remaining -C are ADJUST and JULDAY -CNCAR - SUBROUTINE ADJUST(ANGLE) -C ADJUST AN ANGLE IN DEGREES TO BE IN RANGE OF 0 TO 360. - 10 CONTINUE - IF(ANGLE.LT.0.)THEN - ANGLE=ANGLE+360. - GOTO 10 - ENDIF - 20 CONTINUE - IF(ANGLE.GE.360.)THEN - ANGLE=ANGLE-360. - GOTO 20 - ENDIF - RETURN - END SUBROUTINE ADJUST -****************************************************************************** - FUNCTION JULDAY(MM,ID,IYYY) - PARAMETER (IGREG=15+31*(10+12*1582)) - IF (IYYY.EQ.0) PAUSE 'There is no Year Zero.' - IF (IYYY.LT.0) IYYY=IYYY+1 - IF (MM.GT.2) THEN - JY=IYYY - JM=MM+1 - ELSE - JY=IYYY-1 - JM=MM+13 - ENDIF - JULDAY=INT(365.25*JY)+INT(30.6001*JM)+ID+1720995 - IF (ID+31*(MM+12*IYYY).GE.IGREG) THEN - JA=INT(0.01*JY) - JULDAY=JULDAY+2-JA+INT(0.25*JA) - ENDIF - RETURN - END FUNCTION JULDAY - -CNCAR Routines added to work around non-ANSI trig functions which -C input degrees instead of radians: SIND, COSD, ASIND, ATAN2D - - FUNCTION SIND (DEG) - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - SIND = SIN (DEG * D2R) - RETURN - END FUNCTION SIND - - FUNCTION COSD (DEG) - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - - COSD = COS (DEG * D2R) - RETURN - END FUNCTION COSD - - FUNCTION ASIND (RNUM) - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - ASIND = R2D * ASIN (RNUM) - RETURN - END FUNCTION ASIND - - FUNCTION ATAN2D (RNUM1,RNUM2) - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - ATAN2D = R2D * ATAN2 (RNUM1,RNUM2) - RETURN - END FUNCTION ATAN2D -CNCAR - - - end module EIE_ModWeimer diff --git a/util/EMPIRICAL/srcIE/ModWeimer05.f90 b/util/EMPIRICAL/srcIE/ModWeimer05.f90 deleted file mode 100644 index 77c6b5d6..00000000 --- a/util/EMPIRICAL/srcIE/ModWeimer05.f90 +++ /dev/null @@ -1,836 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -!----------------------------------------------------------------------- -module read_data - implicit none -! -! Data read from W05scEpot.dat or W05scBpot.dat: -! - integer, parameter :: csize = 28, d1_pot = 15, d2_pot = 18 - integer :: ab(csize), ls(csize), ms(csize) - real :: alschfits(d2_pot, csize), schfits(d1_pot, csize), ex_pot(2) - integer :: maxl_pot, maxm_pot -! -! Data read from SCHAtable.dat: -! - integer, parameter :: d1_scha = 19, d2_scha = 7, d3_scha = 68 - real :: allnkm(d1_scha, d2_scha, d3_scha) - integer :: maxk_scha, maxm_scha - real :: th0s(d3_scha) -! -! Data read from W05scBndy.dat: -! - integer, parameter :: na = 6, nb = 7 - real :: bndya(na), bndyb(nb), ex_bndy(2) -! -contains -!----------------------------------------------------------------------- - subroutine read_potential(infile) -! -! Read ascii data file W05scEpot.dat or W05scBpot.dat, written by -! pro write_potential (write_data.pro) -! - implicit none -! -! Args: - character(len=*), intent(in) :: infile -! -! Local: -! - character(len=16) :: fname - integer :: i, lu = 20 - integer :: csize_rd, d1_rd, d2_rd -! -! PRINT *,infile - open(lu, file=infile, status='old') - read(lu, "(a)") fname - read(lu, "(28i3)") ab - read(lu, "(3i3)") csize_rd, d1_rd, d2_rd - if (csize_rd /= csize) then - write(6, "('>>> read_potential: file ',a,': incompatable csize: ',& - &'csize_rd=',i4,' csize=',i4)") fname, csize_rd, csize - stop 'csize' - endif - if (d1_rd /= d1_pot) then - write(6, "('>>> read_potential: file ',a,': incompatable d1: ',& - &'d1_rd=',i4,' d1_pot=',i4)") fname, d1_rd, d1_pot - stop 'd1' - endif - if (d2_rd /= d2_pot) then - write(6, "('>>> read_potential: file ',a,': incompatable d2: ',& - &'d2_rd=',i4,' d2_pot=',i4)") fname, d2_rd, d2_pot - stop 'd2' - endif - do i = 1, csize - read(lu, "(6e20.9)") alschfits(:, i) - enddo - read(lu, "(2f10.3)") ex_pot - read(lu, "(28i3)") ls - read(lu, "(2i3)") maxl_pot, maxm_pot - read(lu, "(28i3)") ms - do i = 1, csize - read(lu, "(6e20.9)") schfits(:, i) - enddo - -! write(6,"(/,'read_potential: Opened file ',a)") infile -! write(6,"('ab=',28i3)") ab -! write(6,"('csize=',i4,' d1=',i4,' d2=',i4)") csize,d1_pot,d2_pot -! write(6,"('alschfits min,max=',2e12.4)") minval(alschfits),maxval(alschfits) -! do i=1,csize -! write(6,"('i=',i3,' alschfits(:,i)=',/,(6e20.9))") i,alschfits(:,i) -! enddo -! write(6,"('ex_pot=',2f10.3)") ex_pot -! write(6,"('ls=',28i3)") ls -! write(6,"('maxl_pot,maxm_pot=',2i4)") maxl_pot,maxm_pot -! write(6,"('ms=',28i3)") ms -! write(6,"('schfits min,max=',2e12.4)") minval(schfits),maxval(schfits) -! do i=1,csize -! write(6,"('i=',i3,' schfits(:,i)=',/,(6e20.9))") i,schfits(:,i) -! enddo - close(lu) -! write(6,"('read_potential: Closed file ',a)") infile - end subroutine read_potential -!----------------------------------------------------------------------- - subroutine read_schatable(infile) -! -! Read ascii data file SCHAtable.dat, written by pro write_scha -! (write_data.pro) -! - implicit none -! -! Args: - character(len=*), intent(in) :: infile -! -! Local: -! - character(len=16) :: fname - integer :: i, j, lu = 20 -! - open(lu, file=infile, status='old') - read(lu, "(a)") fname - read(lu, "(2i3)") maxk_scha, maxm_scha - do i = 1, d3_scha - do j = 1, d2_scha - read(lu, "(6e20.9)") allnkm(:, j, i) - enddo - enddo - read(lu, "(8f10.4)") th0s -! -! write(6,"(/,'read_schatable: Opened file ',a)") infile -! write(6,"('maxk_scha=',i4,' maxm_scha=',i4)") maxk_scha,maxm_scha -! do i=1,d3_scha -! do j=1,d2_scha -! write(6,"('i=',i3,' j=',i3,' allnkm(:,j,i)=',/,(6e20.9))") & -! i,j,allnkm(:,j,i) -! enddo -! enddo -! write(6,"('th0s=',/,(8f10.4))") th0s - close(lu) -! write(6,"('read_schatable: Closed file ',a)") infile - end subroutine read_schatable -!----------------------------------------------------------------------- - subroutine read_bndy(infile) -! -! Read ascii data file W05scBndy.dat, written by pro write_bndy -! (write_data.pro) -! - implicit none -! -! Args: - character(len=*), intent(in) :: infile -! -! Local: -! - character(len=16) :: fname - integer :: rd_na, rd_nb, lu = 20 -! - open(lu, file=infile, status='old') - read(lu, "(a)") fname - read(lu, "(2i3)") rd_na, rd_nb - if (rd_na /= na) then - write(6, "('>>> read_potential: file ',a,': incompatable na: ',& - &'rd_na=',i4,' na=',i4)") fname, rd_na, na - stop 'na' - endif - if (rd_nb /= nb) then - write(6, "('>>> read_potential: file ',a,': incompatable nb: ',& - &'rd_nb=',i4,' nb=',i4)") fname, rd_nb, nb - stop 'nb' - endif - read(lu, "(8e20.9)") bndya - read(lu, "(8e20.9)") bndyb - read(lu, "(8e20.9)") ex_bndy -! -! write(6,"(/,'read_bndy: Opened file ',a)") infile -! write(6,"('na=',i3,' nb=',i3)") na,nb -! write(6,"('bndya=',/,(8e20.9))") bndya -! write(6,"('bndyb=',/,(8e20.9))") bndyb -! write(6,"('ex_bndy=',(8e20.9))") ex_bndy - close(lu) -! write(6,"('read_bndy: Closed file ',a)") infile - end subroutine read_bndy -!----------------------------------------------------------------------- -end module read_data - -!----------------------------------------------------------------------- -module w05sc - use read_data, only: csize - implicit none -! - real :: rad2deg, deg2rad ! set by setmodel - real :: bndyfitr ! calculated by setboundary - real :: esphc(csize), bsphc(csize) ! calculated by setmodel - real :: tmat(3, 3), ttmat(3, 3) ! from setboundary - integer, parameter :: mxtablesize = 200 - real :: plmtable(mxtablesize, csize), & - colattable(mxtablesize) - real :: nlms(csize) -contains -!----------------------------------------------------------------------- - subroutine setmodel(by, bz, tilt, swvel, swden, model) - use read_data, only: read_potential, ex_pot, d1_pot, csize, schfits, & - read_schatable - implicit none -! -! Args: -! -! file_path: directory in which to find data file (must have "/" at end) -! model: must be either 'epot' or 'bpot' for electric or magnetic potential -! - real, intent(in) :: by, bz, tilt, swvel, swden - character(len=*), intent(in) :: model -! -! Local: - integer :: i, j - real :: bt, angle, pi, stilt, stilt2, sw, swp, swe, c0, & - rang, cosa, sina, cos2a, sin2a - real :: cfits(d1_pot, csize), a(d1_pot) -! - if (trim(model) /= 'epot' .and. trim(model) /= 'bpot') then - write(6, "('>>> model=',a)") trim(model) - write(6, "('>>> setmodel: model must be either epot or bpot')") - stop 'setmodel' - endif - -! write(6,"('setmodel: by=',f8.2,' bz=',f8.2,' tilt=',f8.2,' swvel=',& -! &f8.2,' swden=',f8.2)") by,bz,tilt,swvel,swden -! -! - pi = 4.*atan(1.) - rad2deg = 180./pi - deg2rad = pi/180. -! - bt = sqrt(by**2 + bz**2) - angle = atan2(by, bz)*rad2deg - call setboundary(angle, bt, tilt, swvel, swden) -! - stilt = sin(tilt*deg2rad) - stilt2 = stilt**2 - sw = bt*swvel/1000. - swe = (1.-exp(-sw*ex_pot(2)))*sw**ex_pot(1) - c0 = 1. - swp = swvel**2*swden*1.6726e-6 - rang = angle*deg2rad - cosa = cos(rang) - sina = sin(rang) - cos2a = cos(2.*rang) - sin2a = sin(2.*rang) - if (bt < 1.) then ! remove angle dependency for IMF under 1 nT - cosa = -1.+bt*(cosa + 1.) - cos2a = 1.+bt*(cos2a - 1.) - sina = bt*sina - sin2a = bt*sin2a - endif - cfits = schfits ! schfits(d1_pot,csize) is in module read_data - a = (/c0, swe, stilt, stilt2, swp, & - swe*cosa, stilt*cosa, stilt2*cosa, swp*cosa, & - swe*sina, stilt*sina, stilt2*sina, swp*sina, & - swe*cos2a, swe*sin2a/) - if (trim(model) == 'epot') then - esphc(:) = 0. - do j = 1, csize - do i = 1, int(d1_pot) - esphc(j) = esphc(j) + cfits(i, j)*a(i) - enddo - enddo -! write(6,"('setmodel: esphc=',/,(6e12.4))") esphc - else - bsphc(:) = 0. - do j = 1, csize - do i = 1, int(d1_pot) - bsphc(j) = bsphc(j) + cfits(i, j)*a(i) - enddo - enddo -! write(6,"('setmodel: bsphc=',/,(6e12.4))") bsphc - endif - end subroutine setmodel -!----------------------------------------------------------------------- - subroutine setboundary(angle, bt, tilt, swvel, swden) - use read_data, only: read_bndy, ex_bndy, na, bndya ! na=6 - implicit none -! -! Args: -! -! file_path: directory in which to find data file (must have "/" at end) - real, intent(in) :: angle, bt, tilt, swvel, swden -! -! Local: - integer :: i - real :: swp, xc, theta, ct, st, tilt2, cosa, btx, x(na), c(na) - -! write(6,"('Enter setboundary: angle=',f8.3,' bt=',f8.3)") angle,bt -! -! Read data: -! -! Calculate the transformation matrix to the coordinate system -! of the offset pole. -! - xc = 4.2 - theta = xc*(deg2rad) - ct = cos(theta) - st = sin(theta) -! - tmat(1, :) = (/ct, 0., st/) - tmat(2, :) = (/0., 1., 0./) - tmat(3, :) = (/-st, 0., ct/) -! - ttmat(1, :) = (/ct, 0., -st/) - ttmat(2, :) = (/0., 1., 0./) - ttmat(3, :) = (/st, 0., ct/) -! - swp = swden*swvel**2*1.6726e-6 ! pressure - tilt2 = tilt**2 - cosa = cos(angle*deg2rad) - btx = 1.-exp(-bt*ex_bndy(1)) - if (bt > 1.) then - btx = btx*bt**ex_bndy(2) - else - cosa = 1.+bt*(cosa - 1.) ! remove angle dependency for IMF under 1 nT - endif - x = (/1., cosa, btx, btx*cosa, swvel, swp/) - c = bndya - bndyfitr = 0. - do i = 1, na - bndyfitr = bndyfitr + x(i)*c(i) - enddo - -! write(6,"('setboundary: cosa=',f8.3,' btx=',f8.3)") cosa,btx -! write(6,"('setboundary: x=',/,(6e12.4))") x -! write(6,"('setboundary: c=',/,(6e12.4))") c -! write(6,"('setboundary: bndyfitr=',e12.4)") bndyfitr - - end subroutine setboundary -!----------------------------------------------------------------------- - subroutine epotval(lat, mlt, fill, epot) - use read_data, only: maxm_pot, ms, ab - implicit none -! -! Args: - real, intent(in) :: lat, mlt, fill - real, intent(out) :: epot -! -! Local: - integer :: inside, j, m, mm, skip - real :: z, phir, plm, colat, nlm - real :: phim(2), cospm(2), sinpm(2) -! -! checkinputs returns inside=1 if lat is inside model boundary, -! inside=0 otherwise. Phir and colat are also returned by checkinputs. -! - call checkinputs(lat, mlt, inside, phir, colat) - if (inside == 0) then - epot = fill - return - endif -! -! IDL code: -! phim=phir # replicate(1,maxm) * ((indgen(maxm)+1) ## replicate(1,n_elements(phir))) -! where the '#' operator multiplies columns of first array by rows of second array, -! and the '##' operator multiplies rows of first array by columns of second array. -! Here, maxm == maxm_pot == 2 (from read_data module), and phir is a scalar. The -! above IDL statement then becomes: phim = ([phir] # [1,1]) * ([1,2] ## [phir]) where -! phim will be dimensioned [1,2] -! - phim(1) = phir - phim(2) = phir*2. -! write(6,"('epotval: phir=',1pe12.4,' phim=',2(1pe12.4))") phir,phim - cospm(:) = cos(phim(:)) - sinpm(:) = sin(phim(:)) -! - z = 0. - skip = 0 - do j = 1, csize - if (skip == 1) then - skip = 0 - cycle - endif - m = ms(j) - if (ab(j) == 1) then - plm = scplm(j, colat, nlm) ! scplm function is in this module - -! write(6,"('epotval: j=',i3,' plm=',1pe12.4,' m=',i3)") & -! j,plm,m - - skip = 0 - if (m == 0) then - z = z + plm*esphc(j) - else - z = z + plm*(esphc(j)*cospm(m) + esphc(j + 1)*sinpm(m)) - skip = 1 - endif - - endif ! ab(j) - enddo - epot = z - end subroutine epotval -!----------------------------------------------------------------------- - subroutine mpfac(lat, mlt, fill, fac) - use read_data, only: ls, ms, ab - implicit none -! -! Args: - real, intent(in) :: lat, mlt, fill - real, intent(out) :: fac -! -! Local: - integer :: j, m, inside, skip - real :: phim(2), cospm(2), sinpm(2), cfactor - real :: re, z, phir, plm, colat, nlm, pi -! - re = 6371.2 + 110. ! km radius (allow default ht=110) -! -! checkinputs returns inside=1 if lat is inside model boundary, -! inside=0 otherwise. Phir and colat are also returned by checkinputs. -! - skip = 0 - - call checkinputs(lat, mlt, inside, phir, colat) - if (inside == 0) then - fac = fill - return - endif -! - phim(1) = phir - phim(2) = phir*2. - cospm(:) = cos(phim(:)) - sinpm(:) = sin(phim(:)) -! - z = 0. - jloop: do j = 1, csize - if (skip == 1) then - skip = 0 - cycle - endif - if (ls(j) >= 11) exit jloop - m = ms(j) - if (ab(j) == 1) then - plm = scplm(j, colat, nlm) ! colat and nlm are returned (both reals) - plm = plm*(nlm*(nlm + 1.)) -! -! bsphc was calculated in setmodel (when setmodel called with 'bpot') - if (m == 0) then - z = z - plm*bsphc(j) - else - z = z - (plm*(bsphc(j)*cospm(m) + bsphc(j + 1)*sinpm(m))) - skip = 1 - endif - endif - enddo jloop ! j=1,csize - pi = 4.*atan(1.) - cfactor = -1.e5/(4.*pi*re**2) ! convert to uA/m2 - z = z*cfactor - fac = z -! write(6,"('mpfac: lat=',f8.3,' mlt=',f8.3,' fac=',1pe12.4)") lat,mlt,fac - end subroutine mpfac -!----------------------------------------------------------------------- - real function scplm(index, colat, nlm) - use read_data, only: ls, ms, ab - implicit none -! -! Args: - integer, intent(in) :: index - real, intent(in) :: colat - real, intent(out) :: nlm -! -! Local: - integer :: istat, i, j, l, m, skip - real :: th0, out(1), colata(1), plm1 - real :: cth(mxtablesize) - real, save :: prevth0 = 1.e36 - integer, save :: tablesize - skip = 0 - scplm = 0. - th0 = bndyfitr - if (prevth0 /= th0) then - tablesize = 3*nint(th0) - if (tablesize > mxtablesize) then - write(6, "('>>> tablesize > mxtablesize: tablesize=',i5,& - &' mxtablesize=',i5,' tn0=',e12.4)") tablesize, mxtablesize, th0 - stop 'tablesize' - endif -! write(6,"('scplm: index=',i3,' colat=',f8.3,' th0=',e12.4,& -! &' tablesize=',i3)") index,colat,th0,tablesize -! - do i = 1, tablesize - colattable(i) = float(i - 1)*(th0/float(tablesize - 1)) - cth(i) = cos(colattable(i)*deg2rad) - enddo - -! write(6,"('scplm: tablesize=',i4,' colattable=',/,(6f8.3))") & -! tablesize,colattable(1:tablesize) -! write(6,"('scplm: tablesize=',i4,' cth=',/,(6(1pe12.4)))") & -! tablesize,cth(1:tablesize) - - prevth0 = th0 - nlms = 0. ! whole array init - do j = 1, csize - if (skip == 1) then - skip = 0 - cycle - endif - l = ls(j) - m = ms(j) - - nlms(j) = nkmlookup(l, m, th0) ! nkmlookup in this module - -! write(6,"('scplm after nkmlookup: j=',i3,' l=',i3,' m=',i3,& -! &' nlms(j)=',f8.4)") j,l,m,nlms(j) - -! real :: plmtable(mxtablesize,csize) - call pm_n(m, nlms(j), cth, plmtable(1:tablesize, j), tablesize) -! write(6,"('scplm: j=',i3,' index=',i3,' plmtable(:,j)=',/,(6e12.4))") & -! j,index,plmtable(1:tablesize,j) - - skip = 0 - if (m /= 0 .and. ab(j) > 0) then - plmtable(1, j + 1) = plmtable(1, j) - nlms(j + 1) = nlms(j) - skip = 1 - endif - - enddo ! j=1,csize - - endif ! prevth0 - nlm = nlms(index) - colata(1) = colat - - call interpol_quad(plmtable(1:tablesize, index), colattable(1:tablesize), & - colata, out) - scplm = out(1) - -! write(6,"('scplm: index=',i3,' scplm=',e12.4,' plmtable=',/,(6e12.4))") & -! index,scplm,plmtable(1:tablesize,index) -! write(6,"('scplm returning: index=',i3,' scplm=',1pe12.4)") index,scplm - - end function scplm -!----------------------------------------------------------------------- - subroutine pm_n(m, r, cth, plmtable, tablesize) - implicit none -! -! Args: - integer, intent(in) :: m, tablesize - real, intent(in) :: r - real, intent(in) :: cth(tablesize) - real, intent(out) :: plmtable(tablesize) -! -! Local: - integer :: i, k, ii - real :: rm, rk, div, ans, xn - real, dimension(tablesize) :: a, x, tmp, table -! - if (m == 0) then - a = 1. ! whole array op - else - do i = 1, tablesize - a(i) = sqrt(1.-cth(i)**2)**m - enddo - endif - xn = r*(r + 1.) - x(:) = (1.-cth(:))/2. - -! write(6,"('pm_n: a=',/,(6(1pe12.4))") a -! write(6,"('pm_n: xn=',1pe12.4") xn -! write(6,"('pm_n: x=',/,(6(1pe12.4))") x - - table = a ! whole array init -! - k = 1 -! write(6,"(/)") - pmn_loop: do ! repeat-until loop in idl code - do i = 1, tablesize - rm = float(m) - rk = float(k) - a(i) = a(i)*(x(i)*((rk + rm - 1.)*(rk + rm) - xn)/(rk*(rk + rm))) - table(i) = table(i) + a(i) ! "result" in idl code - enddo - -! write(6,"('pm_n: k=',i3,' a=',/,(6(1pe12.4)))") k,a -! write(6,"('pm_n: k=',i3,' table=',/,(6(1pe12.4)))") k,table - - k = k + 1 - do i = 1, tablesize - div = abs(table(i)) - if (div <= 1.e-6) div = 1.e-6 - tmp(i) = abs(a(i))/div - enddo - -! write(6,"('pm_n: k=',i3,' abs(a)=',/,(6(1pe12.4)))") k,abs(a) -! write(6,"('pm_n: k=',i3,' abs(table)=',/,(6(1pe12.4)))") k,abs(table) -! write(6,"('pm_n: k=',i3,' tmp=',/,(6(1pe12.4)))") k,tmp -! write(6,"('pm_n: k=',i3,' max(tmp)=',1pe12.4)") k,maxval(tmp) - -! write(6,"('pm_n: k=',i5,' min,max table=',2(1pe12.4),' min,max tmp=',2(1pe12.4))")& -! k,minval(table),maxval(table),minval(tmp),maxval(tmp) - - if (maxval(tmp) < 1.e-6) exit pmn_loop - enddo pmn_loop - ans = km_n(m, r) - -! write(6,"('pm_n: ans=',1pe12.4,' table=',/,(6(1pe12.4)))") ans,table(1:tablesize) - - plmtable(:) = table(:)*ans - -! write(6,"('pm_n returning: tablesize=',i4,' plmtable=',/,6(1pe12.4))") & -! tablesize,plmtable - - end subroutine pm_n -!----------------------------------------------------------------------- - real function km_n(m, rn) - implicit none -! -! Args: - integer, intent(in) :: m - real, intent(in) :: rn -! -! Local: - integer :: i, n - real :: rm -! - if (m == 0) then - km_n = 1. - return - endif - - rm = float(m) - km_n = sqrt(2.*exp(lngamma(rn + rm + 1.) - lngamma(rn - rm + 1.)))/(2.**m*factorial(m)) -! write(6,"('km_n: m=',i3,' rn=',f8.4,' km_n=',e12.4)") m,rn,km_n - - end function km_n -!----------------------------------------------------------------------- - real function nkmlookup(k, m, th0) - use read_data, only: d1_scha, d2_scha, d3_scha ! d1=19, d2=7, d3=68 - use read_data, only: allnkm, th0s ! allnkm(d1,d2,d3),th0s(d3) - use read_data, only: maxk_scha, maxm_scha - implicit none -! -! Args: - integer, intent(in) :: k, m - real, intent(in) :: th0 -! -! Local: - integer :: kk, mm - real :: th0a(1), out(1) - - if (th0 == 90.) then - nkmlookup = float(k) - return - endif - th0a(1) = th0 - kk = k + 1 - mm = m + 1 - if (kk > maxk_scha) then - write(6, "('>>> nkmlookup: kk > maxk: kk=',i4,' maxk=',i4)") kk, maxk_scha - call interpol_quad(allnkm(maxk_scha, mm, :), th0s, th0a, out) - endif - if (mm > maxm_scha) then - write(6, "('>>> nkmlookup: mm > maxm: kk=',i4,' maxm=',i4)") kk, maxm_scha - call interpol_quad(allnkm(kk, maxm_scha, :), th0s, th0a, out) - endif - if (th0 < th0s(1)) then - write(6, "('>>> nkmlookup: th0 < th0s(1): th0=',e12.4,' th0s(1)=',e12.4)") & - th0, th0s(1) - endif - -! write(6,"('nkmlookup call interpol: kk=',i3,' mm=',i3,' th0=',e12.4,& -! &' allnkm=',/,(6(1pe12.4)))") kk,mm,th0a,allnkm(kk,mm,:) - - call interpol_quad(allnkm(kk, mm, :), th0s, th0a, out) - - nkmlookup = out(1) - - end function nkmlookup -!----------------------------------------------------------------------- - subroutine checkinputs(lat, mlt, inside, phir, colat) - implicit none -! -! Args: - real, intent(in) :: lat, mlt - integer, intent(out) :: inside - real, intent(out) :: phir, colat -! -! Local: - real :: lon, tlat, tlon, radii - - lon = mlt*15. - call dorotation(lat, lon, tlat, tlon) - radii = 90.-tlat - inside = 0 - if (radii <= bndyfitr) inside = 1 ! bndyfitr from setboundary - phir = tlon*deg2rad - colat = radii - - end subroutine checkinputs -!----------------------------------------------------------------------- - subroutine dorotation(latin, lonin, latout, lonout) - implicit none -! -! Args: - real, intent(in) :: latin, lonin - real, intent(out) :: latout, lonout -! -! Local: - real :: latr, lonr, stc, ctc, sf, cf, a, b, pos(3) - integer :: i - - latr = latin*deg2rad - lonr = lonin*deg2rad - stc = sin(latr) - ctc = cos(latr) - sf = sin(lonr) - cf = cos(lonr) - a = ctc*cf - b = ctc*sf -! -! IDL code: Pos= TM ## [[A],[B],[STC]] -! The ## operator multiplies rows of first array by columns of second array. -! Currently, TM(3,3) = Tmat (or TTmat if "reversed" was set) -! If called w/ single lat,lon, then a,b,stc are dimensioned (1), and -! Pos is then (1,3) -! - do i = 1, 3 - pos(i) = tmat(1, i)*a + tmat(2, i)*b + tmat(3, i)*stc - enddo - - latout = asin(pos(3))*rad2deg - lonout = atan2(pos(2), pos(1))*rad2deg - -! write(6,"('dorotation: latin,lonin=',2f9.4,' latout,lonout=',2f9.4)") & -! latin,lonin,latout,lonout - - end subroutine dorotation -!----------------------------------------------------------------------- - subroutine interpol_quad(v, x, u, p) -! -! f90 translation of IDL function interpol(v,x,u,/quadratic) -! - implicit none -! -! Args: - real, intent(in) :: v(:), x(:), u(:) - real, intent(out) :: p(:) -! -! Local: - integer :: nv, nx, nu, i, ix - real :: x0, x1, x2 -! - nv = size(v) - nx = size(x) - nu = size(u) - if (nx /= nv) then - write(6, "('>>> interpol_quad: nx /= nv: nx=',i4,' nv=',i4)") nx, nv - p(:) = 0. - return - endif - do i = 1, nu - ix = value_locate(x, u(i)) - if (ix <= 1 .or. ix >= nx) then ! bug fix by btf 12/23/09 - p(i) = 0. - cycle ! bug fix by btf 12/23/09 - endif - x1 = x(ix) - x0 = x(ix - 1) - x2 = x(ix + 1) - p(i) = v(ix - 1)*(u(i) - x1)*(u(i) - x2)/((x0 - x1)*(x0 - x2)) + & - v(ix)*(u(i) - x0)*(u(i) - x2)/((x1 - x0)*(x1 - x2)) + & - v(ix + 1)*(u(i) - x0)*(u(i) - x1)/((x2 - x0)*(x2 - x1)) - - enddo -! write(6,"('interpol_quad: nu=',i4,' p=',/,(1pe12.4)") nu,p - - end subroutine interpol_quad -!----------------------------------------------------------------------- - integer function value_locate(vec, val) -! -! f90 translation of IDL function value_locate -! Return index i into vec for which vec(i) <= val >= vec(i+1) -! Input vec must be monotonically increasing -! - implicit none -! -! Args: - real, intent(in) :: vec(:), val -! -! Local: - integer :: n, i -! - value_locate = 0 - n = size(vec) - if (val < vec(1)) return - if (val > vec(n)) then - value_locate = n - return - endif - do i = 1, n - 1 - if (val >= vec(i) .and. val <= vec(i + 1)) then - value_locate = i - return - endif - enddo - - end function value_locate -!----------------------------------------------------------------------- - real function lngamma(xx) -! -! This is an f90 translation from C code copied from -! www.fizyka.umk.pl/nrbook/c6-1.pdf (numerical recipes gammln) -! - implicit none - real, intent(in) :: xx - real :: x, y, tmp, ser - real :: cof(6) = (/76.18009172947146, -86.50532032941677, 24.01409824083091, & - -1.231739572450155, 0.1208650973866179e-2, -0.5395239384953e-5/) - integer :: j -! - y = xx - x = xx - tmp = x + 5.5 - tmp = tmp - (x + 0.5)*log(tmp) - ser = 1.000000000190015 - do j = 1, 5 - y = y + 1 - ser = ser + cof(j)/y - enddo - lngamma = -tmp + log(2.5066282746310005*ser/x) - end function lngamma -!----------------------------------------------------------------------- - real function factorial(n) - implicit none - integer, intent(in) :: n - integer :: m - if (n <= 0) then - write(6, "('>>> factorial: n must be positive: n=',i4)") n - factorial = 0. - return - endif - if (n == 1) then - factorial = 1. - return - endif - factorial = float(n) - do m = n - 1, 1, -1 - factorial = factorial*float(m) - enddo - end function factorial -!----------------------------------------------------------------------- -end module w05sc diff --git a/util/EMPIRICAL/srcIE/amies.f90 b/util/EMPIRICAL/srcIE/amies.f90 deleted file mode 100644 index cf494547..00000000 --- a/util/EMPIRICAL/srcIE/amies.f90 +++ /dev/null @@ -1,482 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -! -------------------------------------------------------------------- -! -! This procedure feeds the previous electric potential pattern -! into the background pattern for the current fit. -! -! -------------------------------------------------------------------- - -subroutine amiedt(ilat, ilon, ntime, etheta, ephi, potkv) - - use ModSize - use ModAMIE - use ModEField - - implicit none - - integer, intent(in) :: ilat, ilon, ntime - real, intent(out) :: potkv, etheta, ephi - - if ((ntime .gt. 1) .and. (ilat .le. ithtrns)) then - potkv = Efield_Solution(ilon, ilat, potential_)/1000.0 - etheta = -1.0*Efield_Solution(ilon, ilat, efield_north_) - ephi = Efield_Solution(ilon, ilat, efield_east_) - else - potkv = 0.0 - etheta = 0.0 - ephi = 0.0 - endif - -end subroutine amiedt - -!!$! -------------------------------------------------------------------- -!!$! -!!$! This procedure is under development. -!!$! -!!$! This takes the first potential pattern (if ntime > 1) and -!!$! changes it based on the statistical amie and the change in -!!$! IMF from the first time period. This is then used as the back ground -!!$! pattern for the current inversion. -!!$! -!!$! Possible Changes -!!$! ---------------- -!!$! (1) Use current pattern with a better determination of how the change -!!$! in potenial matches the change in IMF. -!!$! (2) Use the current procedure and compute an average between -!!$! that pattern and the previous pattern. -!!$! -!!$! -------------------------------------------------------------------- -!!$ -!!$subroutine amies_dt (iyear,imon,ida,ihr,imin,ilat,ilon,ntime, & -!!$ ihsoln,ifrst,rmlat,rmlt,etheta,ephi,potkv,delta_ntime) -!!$ -!!$ include 'param.h' -!!$ include 'qset.h' -!!$ include 'calc.h' -!!$ include 'amies.h' -!!$ -!!$ character*100 filein -!!$ integer unitin -!!$ real*4 potkv, etheta, ephi -!!$ real*4 by,bz,sw -!!$ -!!$ include_back = 0 -!!$ if (ntime.eq.1) then -!!$ include_back = 1 -!!$ by = bygsm(1) -!!$ bz = bzgsm(1) -!!$ sw = swv(1) -!!$ nsave = 1 -!!$ else -!!$ if (delta_ntime.eq.-1) then -!!$ nsave = 1 -!!$ else -!!$ if (delta_ntime.ge.ntime) then -!!$ nsave = 1 -!!$ else -!!$ nsave = ntime-delta_ntime -!!$ endif -!!$ endif -!!$ by = bygsm(ntime)-bygsm(nsave) -!!$ bz = bzgsm(ntime)-bzgsm(nsave) -!!$ sw = swv(ntime)-swv(nsave) -!!$ endif -!!$ -!!$ if (ntime.ge.2) then -!!$ save_efpot(ntime-1,ilon,ilat) = efpot(ilon,ilat)/1000.0 -!!$ save_ee(ntime-1,ilon,ilat) = ee(ilon,ilat) -!!$ save_en(ntime-1,ilon,ilat) = en(ilon,ilat) -!!$ else -!!$ save_efpot(ntime,ilon,ilat) = 0.0 -!!$ save_ee(ntime,ilon,ilat) = 0.0 -!!$ save_en(ntime,ilon,ilat) = 0.0 -!!$ endif -!!$ -!!$ alte = 6671. -!!$ alamn = 58. -!!$ stepa = 2.*alte*d2r -!!$ -!!$ if (iamie_read_flag.ne.1) then -!!$ write(6,*) 'Reading AMIES parameters' -!!$ unitin = 99 -!!$ call read_amies(unitin) -!!$ iamie_read_flag = 1 -!!$ endif -!!$ -!!$ if (ilat.le.ithtrns) then -!!$ -!!$ potkv = 0.0 -!!$ call amiemodel(rmlt, rmlat, by, bz, potkv, include_back) -!!$ -!!$ potkv = potkv + save_efpot(nsave,ilon,ilat) -!!$ -!!$ fmla = abs(rmlat) -!!$ -!!$ kpol = 0 -!!$ xmlt = rmlt -!!$ xmlt1 = xmlt -!!$ fmla1 = fmla + 1. -!!$ if (fmla1 .gt. 90.) then -!!$ fmla1 = 180. - fmla1 -!!$ xmlt1 = xmlt1 + 12. -!!$ endif -!!$ p1 = 0.0 -!!$ p2 = 0.0 -!!$ call amiemodel(xmlt1, fmla1 , by, bz, p1, include_back) -!!$ call amiemodel(xmlt , fmla-1., by, bz, p2, include_back) -!!$ -!!$ etheta = (p1 - p2) / stepa - save_en(nsave,ilon,ilat) -!!$ -!!$! calculate -(lon gradient). For most latitudes, step 15 degrees -!!$! in longitude (1 hr MLT = model resolution) along a great circle. -!!$! However, limit minimum latitude to the model minimum, distorting -!!$! the path onto a latitude line. The step shrinks as latitude -!!$! increases and would become zero at the pole, but a different -!!$! scheme is used near the pole: Assume lat=90 degrees and use -!!$! Arts trick where Ephi(90,lon) = Etheta(90,lon+90.) -!!$ -!!$ p1 = 0.0 -!!$ p2 = 0.0 -!!$ -!!$ if (fmla .lt. 89.9) then -!!$ sl = sin (fmla*d2r) -!!$ cl = sqrt (1.-sl*sl) -!!$ sp = sin (15.*d2r) -!!$ sa = sqrt (1.-sl*sl*sp*sp) -!!$ fmla1 = acos(cl/sa)*r2d -!!$ call amiemodel(xmlt+1.,fmla1, by,bz, p1, include_back) -!!$ call amiemodel(xmlt-1.,fmla1, by,bz, p2, include_back) -!!$ step2 = 2.*alte*asin(cl*sp/sa) -!!$ else -!!$ step2 = stepa -!!$ xmlt = xmlt + 6. -!!$ if (xmlt.gt.24) xmlt = xmlt - 24.0 -!!$ fmla = 90. -!!$ kpol = 1 -!!$ xmlt1 = xmlt -!!$ fmla1 = fmla + 1. -!!$ if (fmla1 .gt. 90.) then -!!$ fmla1 = 180. - fmla1 -!!$ xmlt1 = xmlt1 + 12. -!!$ if (xmlt1.gt.24) xmlt1 = xmlt1 - 24.0 -!!$ endif -!!$ call amiemodel(xmlt1, fmla1 , by,bz, p1, include_back) -!!$ call amiemodel(xmlt , fmla-1., by,bz, p2, include_back) -!!$ endif -!!$ -!!$ ephi = (p2 - p1) / step2 + save_ee(nsave,ilon,ilat) -!!$ if (kpol .eq. 1) ephi = -ephi -!!$ -!!$! Below model minimum lat, the potential is value at min lat -!!$ -!!$ else -!!$ -!!$ potkv = 0.0 -!!$ etheta = 0.0 -!!$ ephi = 0.0 -!!$ -!!$ endif -!!$ -!!$ end -!!$ - -! -------------------------------------------------------------------- - -subroutine amiespot(by, bz, rmlat, rmlt, etheta, ephi, potkv) - - use ModAMIE - use ModEField - use ModsAMIE - use ModConstants - - implicit none - - real, intent(in) :: by, bz, rmlat, rmlt - real, intent(out) :: potkv, etheta, ephi - - real :: alte, stepa, fmla, fmla1, xmlt, xmlt1, p1, p2 - real :: tmpsl, tmpcl, tmpsp, tmpsa, step2 - - logical :: IncludeBackground, Pole - - IncludeBackground = .true. - - alte = ri/1.0e3 - stepa = 2.*alte*dtor - - call amiemodel(rmlt, rmlat, by, bz, potkv, IncludeBackground) - - fmla = abs(rmlat) - - Pole = .false. - xmlt = rmlt - xmlt1 = xmlt - fmla1 = fmla + 1. - if (fmla1 > 90.) then - fmla1 = 180.-fmla1 - xmlt1 = xmlt1 + 12. - endif - call amiemodel(xmlt1, fmla1, by, bz, p1, IncludeBackground) - call amiemodel(xmlt, fmla - 1., by, bz, p2, IncludeBackground) - etheta = (p1 - p2)/stepa - - ! calculate -(lon gradient). For most latitudes, step 15 degrees - ! in longitude (1 hr MLT = model resolution) along a great circle. - ! However, limit minimum latitude to the model minimum, distorting - ! the path onto a latitude line. The step shrinks as latitude - ! increases and would become zero at the pole, but a different - ! scheme is used near the pole: Assume lat=90 degrees and use - ! Arts trick where Ephi(90,lon) = Etheta(90,lon+90.) - - if (fmla < 89.9) then - tmpsl = sin(fmla*dtor) - tmpcl = sqrt(1.-tmpsl*tmpsl) - tmpsp = sin(15.*dtor) - tmpsa = sqrt(1.-tmpsl*tmpsl*tmpsp*tmpsp) - fmla1 = acos(tmpcl/tmpsa)*rtod - call amiemodel(xmlt + 1., fmla1, by, bz, p1, IncludeBackground) - call amiemodel(xmlt - 1., fmla1, by, bz, p2, IncludeBackground) - step2 = 2.*alte*asin(tmpcl*tmpsp/tmpsa) - else - step2 = stepa - xmlt = xmlt + 6. - fmla = 90. - Pole = .true. - xmlt1 = xmlt - fmla1 = fmla + 1. - if (fmla1 .gt. 90.) then - fmla1 = 180.-fmla1 - xmlt1 = xmlt1 + 12. - endif - call amiemodel(xmlt1, fmla1, by, bz, p1, IncludeBackground) - call amiemodel(xmlt, fmla - 1., by, bz, p2, IncludeBackground) - endif - - ephi = (p2 - p1)/step2 - - if (Pole) ephi = -ephi - -end subroutine amiespot - -!-------------------------------------------------------------------------- - -subroutine amiemodel(inmlt, inmlat, by, bz, pot, IncludeBackground) - - use ModAMIE - use ModEField - use ModsAMIE - - implicit none - - real, intent(in) :: inmlt, inmlat, by, bz - logical, intent(in) :: IncludeBackground - real, intent(out) :: pot - real :: rlat, rlon - real :: lawt1, lawt2, lowt1, lowt2 - real :: poty_back_neg, poty_back_pos - real :: potz_back_neg, potz_back_pos - real :: back, potz, poty - integer :: ilat1, ilat2, ilon1, ilon2 - - if (DebugLevel > 3) then - write(*, *) " ====> In subroutine amiemodel" - write(*, *) " inputs : ", inmlt, inmlat, by, bz, IncludeBackground - endif - - ! turn latitude and mlt into grid point number - ! with floating point, so if it is between a grid point, then we can - ! interpolate - - rlat = (90.0 - inmlat)/asdlat - rlon = 15.0*inmlt/asdlon - - ! test for boundaries - - if (rlat < 0.0) rlat = 0.0 - if (rlat > iaslat - 1) rlat = iaslat - 1 - - ! set points for interpolation - - ilat1 = rlat + 1 - ilat2 = ilat1 + 1 - if (ilat2 > iaslat) ilat2 = ilat1 - - ilon1 = rlon + 1 - ilon2 = ilon1 + 1 - - ! set weights for interpolation (all the wt2 values will be 0 if - ! the lat and lon are on a grid point). - - lawt1 = 1.0 - ((rlat + 1.0) - ilat1) - lawt2 = 1.0 - (ilat2 - (rlat + 1.0)) - - lowt1 = 1.0 - ((rlon + 1.0) - ilon1) - lowt2 = 1.0 - (ilon2 - (rlon + 1.0)) - - if (ilon1 > iaslon) ilon1 = ilon1 - iaslon + 1 - if (ilon2 > iaslon) ilon2 = ilon2 - iaslon + 1 - - if (IncludeBackground) then - - poty_back_neg = & - aspyni(ilon1, ilat1)*lowt1*lawt1 + & - aspyni(ilon1, ilat2)*lowt1*lawt2 + & - aspyni(ilon2, ilat1)*lowt2*lawt1 + & - aspyni(ilon2, ilat2)*lowt2*lawt2 - poty_back_pos = & - aspypi(ilon1, ilat1)*lowt1*lawt1 + & - aspypi(ilon1, ilat2)*lowt1*lawt2 + & - aspypi(ilon2, ilat1)*lowt2*lawt1 + & - aspypi(ilon2, ilat2)*lowt2*lawt2 - - potz_back_neg = & - aspzni(ilon1, ilat1)*lowt1*lawt1 + & - aspzni(ilon1, ilat2)*lowt1*lawt2 + & - aspzni(ilon2, ilat1)*lowt2*lawt1 + & - aspzni(ilon2, ilat2)*lowt2*lawt2 - potz_back_pos = & - aspzpi(ilon1, ilat1)*lowt1*lawt1 + & - aspzpi(ilon1, ilat2)*lowt1*lawt2 + & - aspzpi(ilon2, ilat1)*lowt2*lawt1 + & - aspzpi(ilon2, ilat2)*lowt2*lawt2 - - back = (poty_back_neg + poty_back_pos + & - potz_back_neg + potz_back_pos)/ & - (4.0*(lowt1*lawt1 + lowt1*lawt2 + lowt2*lawt1 + lowt2*lawt2)) - - else - - back = 0.0 - - endif - - if (by <= 0.0) then - poty = by*aspyn(ilon1, ilat1)*lowt1*lawt1 + & - by*aspyn(ilon1, ilat2)*lowt1*lawt2 + & - by*aspyn(ilon2, ilat1)*lowt2*lawt1 + & - by*aspyn(ilon2, ilat2)*lowt2*lawt2 - else - poty = by*aspyp(ilon1, ilat1)*lowt1*lawt1 + & - by*aspyp(ilon1, ilat2)*lowt1*lawt2 + & - by*aspyp(ilon2, ilat1)*lowt2*lawt1 + & - by*aspyp(ilon2, ilat2)*lowt2*lawt2 - endif - - poty = poty/(lowt1*lawt1 + lowt1*lawt2 + lowt2*lawt1 + lowt2*lawt2) - - if (bz <= 0.0) then - potz = bz*aspzn(ilon1, ilat1)*lowt1*lawt1 + & - bz*aspzn(ilon1, ilat2)*lowt1*lawt2 + & - bz*aspzn(ilon2, ilat1)*lowt2*lawt1 + & - bz*aspzn(ilon2, ilat2)*lowt2*lawt2 - else - potz = bz*aspzp(ilon1, ilat1)*lowt1*lawt1 + & - bz*aspzp(ilon1, ilat2)*lowt1*lawt2 + & - bz*aspzp(ilon2, ilat1)*lowt2*lawt1 + & - bz*aspzp(ilon2, ilat2)*lowt2*lawt2 - endif - - potz = potz/(lowt1*lawt1 + lowt1*lawt2 + lowt2*lawt1 + lowt2*lawt2) - - pot = (poty + potz + back) - -end subroutine amiemodel - -!-------------------------------------------------------------------------- - -subroutine read_amies(unitin) - - use ModAMIE - use ModEField - use ModsAMIE - - implicit none - - integer, intent(in) :: unitin - character(len=100) ::line, fmt - integer :: inlon, inlat, ierr, i, k - - read(unitin, '(2I8)', iostat=ierr) inlat, inlon - - if ((inlon /= iaslon) .or. (inlat /= iaslat) .or. (ierr < 0)) then - - write(6, *) 'Error in read_amies.f. Latitudes and longitude' - write(6, *) 'do not match with code.' - - write(6, *) 'inlon : ', inlon, ' iaslon : ', iaslon - write(6, *) 'inlat : ', inlat, ' iaslat : ', iaslat - - write(6, *) ierr - - stop - - else - - read(unitin, '(2F8.2)') asdlat, asdlon - - write(fmt, "(A1,I2,A5)") "(", inlon, "f8.4)" - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspx(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspxi(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspyn(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspyni(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspyp(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspypi(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspzn(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspzni(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspzp(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspzpi(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspf(k, i), k=1, inlon) - enddo - - read(unitin, '(A100)') line - do i = 1, inlat - read(unitin, fmt) (aspfi(k, i), k=1, inlon) - enddo - - endif - -end subroutine read_amies diff --git a/util/EMPIRICAL/srcIE/data/README b/util/EMPIRICAL/srcIE/data/README deleted file mode 100644 index 3c9c906e..00000000 --- a/util/EMPIRICAL/srcIE/data/README +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -# For more information, see http://csem.engin.umich.edu/tools/swmf -See ../ModEIEFiles for the variables that refer to these files. - -File Used by -hmr89.cofcnts Hepner Maynard E Field -hpke.noaa ihp Conductance Model -isoelec_edep.dat Energy deposition table -iz94.cofcnts izem E Field -mhi.cofcnts Millstone Hill E Field -mhs.cofcnts Millstone Hill E Field -w2k.dat Weimer Model E Field -wei96.cofcnts Weimer 96 Model E Field diff --git a/util/EMPIRICAL/srcIE/data/SCHAtable.dat b/util/EMPIRICAL/srcIE/data/SCHAtable.dat deleted file mode 100755 index 61637dba..00000000 --- a/util/EMPIRICAL/srcIE/data/SCHAtable.dat +++ /dev/null @@ -1,1915 +0,0 @@ -SCHAtable.dat - 18 6 - 0.000000000e+00 1.918164444e+01 3.086692943e+01 4.468153095e+01 5.692553710e+01 7.033113779e+01 - 8.277247223e+01 9.601459039e+01 1.085570495e+02 1.217108829e+02 1.343148692e+02 1.474133890e+02 - 1.600587656e+02 1.731193678e+02 1.857944967e+02 1.988274809e+02 2.115249963e+02 2.245368812e+02 - 2.372520145e+02 - 0.000000000e+00 1.459428025e+01 3.086692931e+01 4.314528225e+01 5.692553710e+01 6.937491172e+01 - 8.277247224e+01 9.531801359e+01 1.085570495e+02 1.211625342e+02 1.343148692e+02 1.469610852e+02 - 1.600587657e+02 1.727344117e+02 1.857944960e+02 1.984923813e+02 2.115250326e+02 2.242402612e+02 - 2.372520524e+02 - 0.000000000e+00 0.000000000e+00 2.453597269e+01 4.155052438e+01 5.440518088e+01 6.840516151e+01 - 8.111100138e+01 9.461627190e+01 1.073083398e+02 1.206116790e+02 1.333122320e+02 1.465073784e+02 - 1.592203369e+02 1.723485920e+02 1.850736979e+02 1.981567219e+02 2.108927342e+02 2.239432132e+02 - 2.366882657e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.393955552e+01 5.175029235e+01 6.513081376e+01 - 7.941333355e+01 9.238530494e+01 1.060445706e+02 1.189004793e+02 1.323018705e+02 1.451140875e+02 - 1.583774139e+02 1.711715552e+02 1.843500535e+02 1.971369158e+02 2.102585357e+02 2.230431436e+02 - 2.361241049e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.309398000e+01 6.165374022e+01 - 7.551473179e+01 9.009489490e+01 1.033299327e+02 1.171631508e+02 1.301894660e+02 1.437068661e+02 - 1.566394673e+02 1.699861840e+02 1.828702146e+02 1.961117052e+02 2.089683826e+02 2.221393248e+02 - 2.349799163e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.209928475e+01 - 7.135309670e+01 8.565669636e+01 1.005337363e+02 1.140244367e+02 1.280398198e+02 1.412379680e+02 - 1.548810489e+02 1.679384491e+02 1.813779721e+02 1.943570533e+02 2.076697920e+02 2.206017821e+02 - 2.338300000e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 6.100342101e+01 8.090152107e+01 9.561621427e+01 1.107834301e+02 1.245210741e+02 1.387212547e+02 - 1.520898678e+02 1.658630509e+02 1.790477571e+02 1.925874369e+02 2.056630356e+02 2.190491476e+02 - 2.320634316e+02 - 0.000000000e+00 1.672087097e+01 2.694713303e+01 3.903359205e+01 4.974792931e+01 6.147708764e+01 - 7.236381613e+01 8.395015067e+01 9.492522603e+01 1.064344310e+02 1.174632595e+02 1.289241397e+02 - 1.399891289e+02 1.514168823e+02 1.625078647e+02 1.739114903e+02 1.850220457e+02 1.964072360e+02 - 2.075332054e+02 - 0.000000000e+00 1.271392178e+01 2.694713308e+01 3.769145353e+01 4.974792936e+01 6.064167736e+01 - 7.236381618e+01 8.334158249e+01 9.492522608e+01 1.059553627e+02 1.174632596e+02 1.285289815e+02 - 1.399891290e+02 1.510805627e+02 1.625078641e+02 1.736187336e+02 1.850220500e+02 1.961481566e+02 - 2.075331002e+02 - 0.000000000e+00 0.000000000e+00 2.141631811e+01 3.629820102e+01 4.754598498e+01 5.979445194e+01 - 7.091225388e+01 8.272850216e+01 9.383427865e+01 1.054741046e+02 1.165872965e+02 1.281325975e+02 - 1.392566285e+02 1.507434889e+02 1.618781329e+02 1.733254745e+02 1.844696652e+02 1.958885992e+02 - 2.070405837e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.964865518e+01 4.522650514e+01 5.693372399e+01 - 6.942906792e+01 8.077937619e+01 9.273017470e+01 1.039790902e+02 1.157045852e+02 1.269153320e+02 - 1.385202017e+02 1.497151576e+02 1.612459151e+02 1.724345126e+02 1.839155744e+02 1.951021885e+02 - 2.065478753e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.766330228e+01 5.389587373e+01 - 6.602289151e+01 7.877831617e+01 9.035845994e+01 1.024612481e+02 1.138590420e+02 1.256858961e+02 - 1.370018172e+02 1.486795447e+02 1.599530339e+02 1.715388288e+02 1.827884119e+02 1.943125655e+02 - 2.055480264e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.554765078e+01 - 6.238689253e+01 7.490064644e+01 8.791548804e+01 9.971900510e+01 1.119809599e+02 1.235288826e+02 - 1.354655521e+02 1.468905017e+02 1.586493030e+02 1.700058462e+02 1.816539194e+02 1.929692949e+02 - 2.045433866e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 5.334359419e+01 7.074601124e+01 8.361897920e+01 9.688739326e+01 1.089066665e+02 1.213300664e+02 - 1.330269492e+02 1.450773753e+02 1.566134692e+02 1.684595667e+02 1.799006482e+02 1.916133011e+02 - 2.030002008e+02 - 0.000000000e+00 1.480686951e+01 2.389853005e+01 3.464072115e+01 4.416541512e+01 5.459058538e+01 - 6.426824282e+01 7.456668377e+01 8.432273336e+01 9.455273529e+01 1.043564816e+02 1.145436036e+02 - 1.243794365e+02 1.345371638e+02 1.443960608e+02 1.545323797e+02 1.644086347e+02 1.745286405e+02 - 1.844184120e+02 - 0.000000000e+00 1.125218329e+01 2.389853011e+01 3.344980503e+01 4.416541517e+01 5.384929635e+01 - 6.426824288e+01 7.402667836e+01 8.432273342e+01 9.412763953e+01 1.043564816e+02 1.141929642e+02 - 1.243794364e+02 1.342387341e+02 1.443960607e+02 1.542726040e+02 1.644086597e+02 1.742986219e+02 - 1.844183266e+02 - 0.000000000e+00 0.000000000e+00 1.899109214e+01 3.221353648e+01 4.221152580e+01 5.309752365e+01 - 6.298020786e+01 7.348266944e+01 8.335468963e+01 9.370060079e+01 1.035792033e+02 1.138412374e+02 - 1.237294587e+02 1.339396353e+02 1.438372751e+02 1.540123829e+02 1.639184778e+02 1.740683385e+02 - 1.839813881e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.631296301e+01 4.015334278e+01 5.055901570e+01 - 6.166411232e+01 7.175310689e+01 8.237497163e+01 9.237400305e+01 1.027959370e+02 1.127611025e+02 - 1.230759971e+02 1.330271521e+02 1.432762817e+02 1.532217972e+02 1.634268219e+02 1.733705704e+02 - 1.835442272e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.344165766e+01 4.786333175e+01 - 5.864154178e+01 6.997746055e+01 8.027040328e+01 9.102714922e+01 1.011582876e+02 1.116701688e+02 - 1.217286594e+02 1.321082070e+02 1.421290477e+02 1.524270231e+02 1.624266539e+02 1.726698990e+02 - 1.826569280e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.045471426e+01 - 5.541501955e+01 6.653644428e+01 7.810260292e+01 8.859376548e+01 9.949175504e+01 1.097561222e+02 - 1.203654845e+02 1.305206935e+02 1.409721153e+02 1.510667250e+02 1.614201148e+02 1.714779679e+02 - 1.817651985e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 4.738930688e+01 6.284963003e+01 7.428985905e+01 8.608111243e+01 9.676370438e+01 1.078048063e+02 - 1.182015241e+02 1.289123429e+02 1.391656733e+02 1.496933178e+02 1.598641861e+02 1.702751646e+02 - 1.803961688e+02 - 0.000000000e+00 1.327560806e+01 2.145976260e+01 3.112639784e+01 3.969946665e+01 4.908136666e+01 - 5.779182749e+01 6.705989777e+01 7.584077234e+01 8.504736883e+01 9.387108601e+01 1.030391665e+02 - 1.118917049e+02 1.210333819e+02 1.299066381e+02 1.390290844e+02 1.479179539e+02 1.570257558e+02 - 1.659268762e+02 - 0.000000000e+00 1.008347910e+01 2.145976262e+01 3.005668297e+01 3.969946667e+01 4.841551284e+01 - 5.779182751e+01 6.657484334e+01 7.584077223e+01 8.466553034e+01 9.387108603e+01 1.027242076e+02 - 1.118917048e+02 1.207653201e+02 1.299066377e+02 1.387957428e+02 1.479179530e+02 1.568191491e+02 - 1.659266626e+02 - 0.000000000e+00 0.000000000e+00 1.705196784e+01 2.894623414e+01 3.794438319e+01 4.774024274e+01 - 5.663485351e+01 6.608619278e+01 7.497123122e+01 8.428194671e+01 9.317289989e+01 1.024082720e+02 - 1.113078662e+02 1.204966569e+02 1.294047119e+02 1.385620022e+02 1.474776625e+02 1.566122998e+02 - 1.655342930e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.364591977e+01 3.609561973e+01 4.545997619e+01 - 5.545267464e+01 6.453260055e+01 7.409120424e+01 8.309032790e+01 9.246933536e+01 1.014380419e+02 - 1.107208982e+02 1.196770215e+02 1.289008035e+02 1.378518595e+02 1.470360305e+02 1.559854990e+02 - 1.651415387e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.006634144e+01 4.303851978e+01 - 5.273753770e+01 6.293761322e+01 7.220073944e+01 8.188051432e+01 9.099830319e+01 1.004581130e+02 - 1.095106474e+02 1.188515795e+02 1.278702992e+02 1.371379587e+02 1.461376156e+02 1.553561244e+02 - 1.643445911e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.638287278e+01 - 4.983918265e+01 5.984653917e+01 7.025347594e+01 7.969466231e+01 8.950132664e+01 9.873879143e+01 - 1.082861707e+02 1.174255844e+02 1.268310850e+02 1.359160652e+02 1.452334994e+02 1.542854694e+02 - 1.635435265e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 4.262890587e+01 5.653464281e+01 6.682842383e+01 7.743760157e+01 8.705075752e+01 9.698599442e+01 - 1.063423471e+02 1.159808629e+02 1.252084240e+02 1.346824142e+02 1.438358736e+02 1.532071877e+02 - 1.623137313e+02 - 0.000000000e+00 1.202269936e+01 1.946451210e+01 2.825101819e+01 3.604556603e+01 4.457380848e+01 - 5.249298166e+01 6.091797062e+01 6.890101604e+01 7.727024186e+01 8.529215036e+01 9.362643770e+01 - 1.016744905e+02 1.099848270e+02 1.180516730e+02 1.263445649e+02 1.344255788e+02 1.427051296e+02 - 1.507970035e+02 - 0.000000000e+00 9.127891020e+00 1.946451216e+01 2.728067151e+01 3.604556596e+01 4.396980068e+01 - 5.249298172e+01 6.047796772e+01 6.890101610e+01 7.692386794e+01 8.529215043e+01 9.334073159e+01 - 1.016744904e+02 1.097416619e+02 1.180516727e+02 1.261328944e+02 1.344255726e+02 1.425177165e+02 - 1.507972488e+02 - 0.000000000e+00 0.000000000e+00 1.546637414e+01 2.627337794e+01 3.445347183e+01 4.335725161e+01 - 5.144345725e+01 6.003470277e+01 6.811223207e+01 7.657591090e+01 8.465880786e+01 9.305413924e+01 - 1.011448757e+02 1.094979515e+02 1.175963627e+02 1.259208642e+02 1.340261793e+02 1.423301285e+02 - 1.504414029e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.146517024e+01 3.277639983e+01 4.128869748e+01 - 5.037106971e+01 5.862537726e+01 6.731393642e+01 7.549495338e+01 8.402058650e+01 9.217401415e+01 - 1.006124224e+02 1.087544367e+02 1.171392556e+02 1.252766743e+02 1.336255590e+02 1.417615454e+02 - 1.500848664e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.730654192e+01 3.909205992e+01 - 4.790796940e+01 5.717850092e+01 6.559899949e+01 7.439749075e+01 8.268615294e+01 9.128509092e+01 - 9.951456081e+01 1.080056548e+02 1.162044517e+02 1.246290762e+02 1.328105826e+02 1.411906203e+02 - 1.493620976e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.305365291e+01 - 4.527864901e+01 5.437430793e+01 6.383253695e+01 7.241457029e+01 8.132818455e+01 8.972541125e+01 - 9.840379409e+01 1.067120762e+02 1.152617476e+02 1.235206501e+02 1.319904273e+02 1.402194016e+02 - 1.486352681e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 3.873679445e+01 5.136976916e+01 6.072530943e+01 7.036704906e+01 7.910509751e+01 8.813536603e+01 - 9.664044400e+01 1.054015044e+02 1.137897558e+02 1.224015761e+02 1.307225864e+02 1.392412075e+02 - 1.475197601e+02 - 0.000000000e+00 1.097855949e+01 1.780189953e+01 2.585484627e+01 3.300070130e+01 4.081749591e+01 - 4.807731306e+01 5.579968750e+01 6.311791361e+01 7.078929460e+01 7.814305979e+01 8.578249046e+01 - 9.316016384e+01 1.007776921e+02 1.081725516e+02 1.157741271e+02 1.231819271e+02 1.307713226e+02 - 1.381892159e+02 - 0.000000000e+00 8.332140330e+00 1.780189952e+01 2.496749325e+01 3.300070129e+01 4.026514212e+01 - 4.807731305e+01 5.539731188e+01 6.311791359e+01 7.047254062e+01 7.814305977e+01 8.552121600e+01 - 9.316016395e+01 1.005553208e+02 1.081725513e+02 1.155805585e+02 1.231819381e+02 1.305999484e+02 - 1.381891845e+02 - 0.000000000e+00 0.000000000e+00 1.414593016e+01 2.404635728e+01 3.154473456e+01 3.970497829e+01 - 4.711753011e+01 5.499195334e+01 6.239657788e+01 7.015433901e+01 7.756387452e+01 8.525913151e+01 - 9.267583698e+01 1.003324509e+02 1.077561758e+02 1.153866584e+02 1.228166880e+02 1.304283977e+02 - 1.378638364e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.964914475e+01 3.001105920e+01 3.781324088e+01 - 4.613684012e+01 5.370311744e+01 6.166654425e+01 6.916580495e+01 7.698022793e+01 8.445426140e+01 - 9.218891443e+01 9.965251202e+01 1.073381565e+02 1.147975538e+02 1.224503364e+02 1.299083866e+02 - 1.375377272e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.500838514e+01 3.580436727e+01 - 4.388423038e+01 5.237994195e+01 6.009820434e+01 6.816217759e+01 7.575987972e+01 8.364134601e+01 - 9.118491920e+01 9.896775660e+01 1.064832809e+02 1.142053290e+02 1.217050490e+02 1.293863143e+02 - 1.368769104e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.028140631e+01 - 4.147959711e+01 4.981533576e+01 5.848274310e+01 6.634873880e+01 7.451800908e+01 8.221499603e+01 - 9.016912249e+01 9.778477031e+01 1.056211816e+02 1.131916727e+02 1.209550121e+02 1.284981412e+02 - 1.362122316e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 3.549590929e+01 4.706748465e+01 5.564094029e+01 6.447621890e+01 7.248490626e+01 8.076087778e+01 - 8.855649899e+01 9.658623939e+01 1.042750259e+02 1.121682887e+02 1.197955640e+02 1.276035460e+02 - 1.351920277e+02 - 0.000000000e+00 1.009500885e+01 1.639516263e+01 2.382729552e+01 3.042432616e+01 3.763906434e+01 - 4.434101171e+01 5.146882307e+01 5.822454485e+01 6.530540848e+01 7.209385005e+01 7.914529787e+01 - 8.595575114e+01 9.298703404e+01 9.981330980e+01 1.068299052e+02 1.136681036e+02 1.206734575e+02 - 1.275210128e+02 - 0.000000000e+00 7.659341938e+00 1.639516266e+01 2.301034123e+01 3.042432605e+01 3.713052519e+01 - 4.434101173e+01 5.109836379e+01 5.822454487e+01 6.501377895e+01 7.209384995e+01 7.890474722e+01 - 8.595575116e+01 9.278230072e+01 9.981330995e+01 1.066516895e+02 1.136681023e+02 1.205157201e+02 - 1.275208212e+02 - 0.000000000e+00 0.000000000e+00 1.302944950e+01 2.216228811e+01 2.908382469e+01 3.661479604e+01 - 4.345734928e+01 5.072515858e+01 5.756042007e+01 6.472081674e+01 7.156060210e+01 7.866345074e+01 - 8.550983843e+01 9.257710834e+01 9.942995969e+01 1.064731690e+02 1.133318285e+02 1.203577317e+02 - 1.272213235e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.811367952e+01 2.767178166e+01 3.487303379e+01 - 4.255443935e+01 4.953852296e+01 5.688828795e+01 6.381067759e+01 7.102324718e+01 7.792241335e+01 - 8.506153615e+01 9.195109572e+01 9.904509494e+01 1.059307870e+02 1.129945329e+02 1.198790725e+02 - 1.269213240e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.306534371e+01 3.302342169e+01 - 4.048036267e+01 4.832027204e+01 5.544429146e+01 6.288664292e+01 6.989966695e+01 7.717396936e+01 - 8.413715965e+01 9.132064884e+01 9.825801588e+01 1.053855345e+02 1.123083505e+02 1.193983156e+02 - 1.263125565e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.793760765e+01 - 3.826630492e+01 4.595887423e+01 5.395690973e+01 6.121695673e+01 6.875627189e+01 7.586070985e+01 - 8.320191793e+01 9.023146787e+01 9.746428714e+01 1.044522612e+02 1.116177985e+02 1.185805560e+02 - 1.257007751e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 3.275597629e+01 4.342873610e+01 5.134022626e+01 5.949287134e+01 6.688430954e+01 7.452188520e+01 - 8.171713977e+01 8.912797171e+01 9.622486649e+01 1.035100421e+02 1.105502893e+02 1.177569181e+02 - 1.247614263e+02 - 0.000000000e+00 9.337636948e+00 1.518947105e+01 2.208937570e+01 2.821604985e+01 3.491468225e+01 - 4.113849892e+01 4.775664435e+01 5.403025263e+01 6.060492752e+01 6.690883242e+01 7.345626990e+01 - 7.978055649e+01 8.630932210e+01 9.264826008e+01 9.916342490e+01 1.055133920e+02 1.120181792e+02 - 1.183767617e+02 - 0.000000000e+00 7.083149053e+00 1.518947107e+01 2.133292426e+01 2.821604974e+01 3.444379819e+01 - 4.113849894e+01 4.741361479e+01 5.403025265e+01 6.033489041e+01 6.690883231e+01 7.323352954e+01 - 7.978055651e+01 8.611974710e+01 9.264825971e+01 9.899840316e+01 1.055134001e+02 1.118720831e+02 - 1.183766479e+02 - 0.000000000e+00 0.000000000e+00 1.207322774e+01 2.054768165e+01 2.697478008e+01 3.396625748e+01 - 4.032025541e+01 4.706804285e+01 5.341529585e+01 6.006361951e+01 6.641506371e+01 7.301009869e+01 - 7.936765752e+01 8.592974718e+01 9.229329101e+01 9.883310249e+01 1.052020209e+02 1.117258220e+02 - 1.180992588e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.679865840e+01 2.566726970e+01 3.235338150e+01 - 3.948419072e+01 4.596923814e+01 5.279292511e+01 5.922085347e+01 6.591749257e+01 7.232391982e+01 - 7.895254599e+01 8.535007934e+01 9.193692110e+01 9.833087497e+01 1.048896958e+02 1.112825158e+02 - 1.178214941e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.140132672e+01 3.064063777e+01 - 3.756353944e+01 4.484115995e+01 5.145578777e+01 5.836522145e+01 6.487707471e+01 7.163088312e+01 - 7.809659425e+01 8.476630599e+01 9.120810709e+01 9.782598788e+01 1.042543084e+02 1.108374407e+02 - 1.172578872e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.593045418e+01 - 3.551325661e+01 4.265438880e+01 5.007847694e+01 5.681907297e+01 6.381830954e+01 7.041481271e+01 - 7.723058196e+01 8.375774111e+01 9.047313594e+01 9.696179686e+01 1.036148846e+02 1.100802188e+02 - 1.166913038e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 3.040965765e+01 4.031134300e+01 4.765524597e+01 5.522254982e+01 6.208482646e+01 6.917507050e+01 - 7.585567232e+01 8.273591885e+01 8.932544240e+01 9.608933007e+01 1.026263881e+02 1.093175097e+02 - 1.158214743e+02 - 0.000000000e+00 8.681205750e+00 1.414461589e+01 2.058316051e+01 2.630225283e+01 3.255353951e+01 - 3.836301713e+01 4.453941447e+01 5.039522169e+01 5.653117068e+01 6.241516847e+01 6.852577340e+01 - 7.442873622e+01 8.052196714e+01 8.643856293e+01 9.251914020e+01 9.844599289e+01 1.045169566e+02 - 1.104519853e+02 - 0.000000000e+00 6.584241072e+00 1.414461594e+01 1.987929580e+01 2.630225275e+01 3.211538364e+01 - 3.836301718e+01 4.422022522e+01 5.039522174e+01 5.627990057e+01 6.241516852e+01 6.831851294e+01 - 7.442873627e+01 8.034556688e+01 8.643856272e+01 9.236558586e+01 9.844600955e+01 1.043809878e+02 - 1.104517417e+02 - 0.000000000e+00 0.000000000e+00 1.124521499e+01 1.914864640e+01 2.514722861e+01 3.167103446e+01 - 3.760163160e+01 4.389867070e+01 4.982299871e+01 5.602748260e+01 6.195571296e+01 6.811060984e+01 - 7.404453084e+01 8.016877136e+01 8.610826213e+01 9.221177154e+01 9.815627270e+01 1.042448815e+02 - 1.101936996e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.565999612e+01 2.393057239e+01 3.017017492e+01 - 3.682366504e+01 4.287620232e+01 4.924387782e+01 5.524327268e+01 6.149271951e+01 6.747211050e+01 - 7.365826711e+01 7.962938363e+01 8.577665780e+01 9.174444365e+01 9.786564824e+01 1.038324040e+02 - 1.099349400e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.996053492e+01 2.857638629e+01 - 3.503635417e+01 4.182649588e+01 4.799961357e+01 5.444709199e+01 6.052458035e+01 6.682723043e+01 - 7.286178527e+01 7.908617597e+01 8.509848377e+01 9.127464236e+01 9.727441398e+01 1.034182336e+02 - 1.094106243e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.419262410e+01 - 3.312840822e+01 3.979148806e+01 4.671796739e+01 5.300831063e+01 5.953936950e+01 6.569562875e+01 - 7.205594277e+01 7.814767685e+01 8.441458115e+01 9.047049267e+01 9.667941396e+01 1.027136032e+02 - 1.088835041e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 2.837823978e+01 3.761104020e+01 4.446285730e+01 5.152265284e+01 5.792623764e+01 6.454200124e+01 - 7.077652077e+01 7.719684001e+01 8.334660956e+01 8.965864751e+01 9.575959181e+01 1.020038883e+02 - 1.080740954e+02 - 0.000000000e+00 8.106790543e+00 1.323044080e+01 1.926520534e+01 2.462772027e+01 3.048752900e+01 - 3.593449814e+01 4.172433047e+01 4.721459079e+01 5.296662726e+01 5.848322967e+01 6.421158375e+01 - 6.974590789e+01 7.545802700e+01 8.100509021e+01 8.670538495e+01 9.226204011e+01 9.795330777e+01 - 1.035176075e+02 - 0.000000000e+00 6.148127377e+00 1.323044075e+01 1.860749614e+01 2.462772035e+01 3.007809799e+01 - 3.593449809e+01 4.142606557e+01 4.721459074e+01 5.273182867e+01 5.848322962e+01 6.401790971e+01 - 6.974590783e+01 7.529319017e+01 8.100508990e+01 8.656189838e+01 9.226204856e+01 9.782627751e+01 - 1.035174167e+02 - 0.000000000e+00 0.000000000e+00 1.052137409e+01 1.792476397e+01 2.354839127e+01 2.966288101e+01 - 3.522301545e+01 4.112559078e+01 4.667987432e+01 5.249595754e+01 5.805389002e+01 6.382363514e+01 - 6.938688635e+01 7.512798395e+01 8.069644034e+01 8.641816632e+01 9.199130408e+01 9.769909765e+01 - 1.032763548e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.466462923e+01 2.241147661e+01 2.826033208e+01 - 3.449604064e+01 4.017011979e+01 4.613871294e+01 5.176314072e+01 5.762124487e+01 6.322698286e+01 - 6.902594155e+01 7.462394902e+01 8.038657219e+01 8.598146786e+01 9.171972746e+01 9.731364748e+01 - 1.030345515e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.870111903e+01 2.677094567e+01 - 3.282575268e+01 3.918919812e+01 4.497595867e+01 5.101913870e+01 5.671654180e+01 6.262436888e+01 - 6.828165473e+01 7.411634520e+01 7.975284344e+01 8.554246044e+01 9.116724339e+01 9.692662695e+01 - 1.025445122e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.267362657e+01 - 3.104272668e+01 3.728737858e+01 4.377827351e+01 4.967458703e+01 5.579588724e+01 6.156690157e+01 - 6.752862146e+01 7.323933989e+01 7.911376234e+01 8.479100667e+01 9.061123962e+01 9.626819725e+01 - 1.020519245e+02 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 2.660268815e+01 3.524962918e+01 4.167070455e+01 4.828622979e+01 5.428837893e+01 6.048885308e+01 - 6.633300389e+01 7.235080506e+01 7.811575905e+01 8.403236634e+01 8.975168734e+01 9.560498413e+01 - 1.012955898e+02 - 0.000000000e+00 7.599917412e+00 1.242388461e+01 1.810228774e+01 2.315022934e+01 2.866456818e+01 - 3.379171328e+01 3.924042533e+01 4.440817158e+01 4.982143585e+01 5.501388789e+01 6.040494110e+01 - 6.561401389e+01 7.098984050e+01 7.621086117e+01 8.157559741e+01 8.680561088e+01 9.216189618e+01 - 9.739901433e+01 - 0.000000000e+00 5.763726900e+00 1.242388463e+01 1.748543800e+01 2.315022936e+01 2.828056594e+01 - 3.379171330e+01 3.896068350e+01 4.440817147e+01 4.960121860e+01 5.501388791e+01 6.022329416e+01 - 6.561401391e+01 7.083524010e+01 7.621086079e+01 8.144102025e+01 8.680562123e+01 9.204273990e+01 - 9.739883578e+01 - 0.000000000e+00 0.000000000e+00 9.883323983e+00 1.684512576e+01 2.213790774e+01 2.789113820e+01 - 3.312440619e+01 3.867886947e+01 4.390665717e+01 4.937999560e+01 5.461120802e+01 6.004108415e+01 - 6.527728603e+01 7.068029301e+01 7.592137734e+01 8.130621374e+01 8.655168654e+01 9.192346167e+01 - 9.717264581e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.378727411e+01 2.107158395e+01 2.657561407e+01 - 3.244257144e+01 3.778270603e+01 4.339909914e+01 4.869267323e+01 5.420542837e+01 5.948147630e+01 - 6.493875481e+01 7.020755364e+01 7.563075117e+01 8.089663247e+01 8.629698250e+01 9.156198064e+01 - 9.694600361e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.759107718e+01 2.517864656e+01 - 3.087586965e+01 3.686267457e+01 4.230849825e+01 4.799486162e+01 5.335688009e+01 5.891627762e+01 - 6.424067214e+01 6.973146752e+01 7.503636639e+01 8.048488430e+01 8.577879434e+01 9.119896758e+01 - 9.648649598e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.133485176e+01 - 2.920342238e+01 3.507874801e+01 4.118513662e+01 4.673372153e+01 5.249337235e+01 5.792443475e+01 - 6.353438722e+01 6.890889791e+01 7.443696312e+01 7.978007935e+01 8.525731345e+01 9.058140957e+01 - 9.602446772e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 2.503785931e+01 3.316731139e+01 3.920816244e+01 4.543149521e+01 5.107936035e+01 5.691329011e+01 - 6.241295361e+01 6.807551450e+01 7.350089672e+01 7.906853561e+01 8.445111407e+01 8.995935855e+01 - 9.531508055e+01 - 0.000000000e+00 7.149329185e+00 1.170701115e+01 1.706856809e+01 2.183693987e+01 2.704414901e+01 - 3.188704030e+01 3.703250249e+01 4.191359543e+01 4.702570466e+01 5.193004384e+01 5.702125400e+01 - 6.194123213e+01 6.701811519e+01 7.194933530e+01 7.701578393e+01 8.195547173e+01 8.701397072e+01 - 9.196045577e+01 - 0.000000000e+00 5.422421253e+00 1.170701118e+01 1.648816494e+01 2.183693990e+01 2.668282891e+01 - 3.188704032e+01 3.676928304e+01 4.191359545e+01 4.681849362e+01 5.193004373e+01 5.685033504e+01 - 6.194123215e+01 6.687264521e+01 7.194933545e+01 7.688915341e+01 8.195547685e+01 8.690188654e+01 - 9.196027879e+01 - 0.000000000e+00 0.000000000e+00 9.316768050e+00 1.588569224e+01 2.088438670e+01 2.631640500e+01 - 3.125913670e+01 3.650411422e+01 4.144169660e+01 4.661033635e+01 5.155114369e+01 5.667888664e+01 - 6.162438975e+01 6.672684934e+01 7.167694749e+01 7.676230975e+01 8.171652832e+01 8.678961226e+01 - 9.174732816e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.300826583e+01 1.988102923e+01 2.507850186e+01 - 3.061756611e+01 3.566085066e+01 4.096411233e+01 4.596359367e+01 5.116932769e+01 5.615232119e+01 - 6.130585089e+01 6.628202490e+01 7.140348445e+01 7.637691453e+01 8.147687075e+01 8.644945586e+01 - 9.153406133e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.660551927e+01 2.376396869e+01 - 2.914325495e+01 3.479513154e+01 3.993786824e+01 4.530698289e+01 5.037086733e+01 5.562049627e+01 - 6.064898095e+01 6.583405189e+01 7.084419398e+01 7.598947995e+01 8.098928389e+01 8.610789119e+01 - 9.110162197e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 2.014626993e+01 - 2.756943697e+01 3.311635366e+01 3.888080019e+01 4.412024051e+01 4.955833276e+01 5.468718715e+01 - 5.998439423e+01 6.506003673e+01 7.028018143e+01 7.532628267e+01 8.049859452e+01 8.552679689e+01 - 9.066687062e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 2.364864219e+01 3.131757751e+01 3.702030117e+01 4.289483835e+01 4.822771219e+01 5.373571793e+01 - 5.892912835e+01 6.427584696e+01 6.939936012e+01 7.465674927e+01 7.973998401e+01 8.494147620e+01 - 8.999940705e+01 - 0.000000000e+00 6.746137619e+00 1.106566016e+01 1.614364669e+01 2.066192542e+01 2.559429111e+01 - 3.018288259e+01 3.505698585e+01 3.968162439e+01 4.452425561e+01 4.917082931e+01 5.399374014e+01 - 5.865507106e+01 6.346446248e+01 6.813640183e+01 7.293594737e+01 7.761587129e+01 8.240792559e+01 - 8.709408187e+01 - 0.000000000e+00 5.117406249e+00 1.106566023e+01 1.559597462e+01 2.066192549e+01 2.525334045e+01 - 3.018288266e+01 3.480860412e+01 3.968162432e+01 4.432872457e+01 4.917082938e+01 5.383245543e+01 - 5.865507113e+01 6.332719219e+01 6.813640189e+01 7.281645493e+01 7.761587868e+01 8.230210757e+01 - 8.709398670e+01 - 0.000000000e+00 0.000000000e+00 8.810419970e+00 1.502748465e+01 1.976304558e+01 2.490757516e+01 - 2.959036455e+01 3.455838340e+01 3.923632108e+01 4.413230116e+01 4.881328445e+01 5.367067106e+01 - 5.835608665e+01 6.318961440e+01 6.787936626e+01 7.269676043e+01 7.739041110e+01 8.219621702e+01 - 8.689310587e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.231207979e+01 1.881623511e+01 2.373937528e+01 - 2.898495273e+01 3.376262473e+01 3.878565424e+01 4.352199983e+01 4.845298851e+01 5.317377875e+01 - 5.805550158e+01 6.276985824e+01 6.762131664e+01 7.233308425e+01 7.716425254e+01 8.187522176e+01 - 8.669195385e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.572479568e+01 2.249887000e+01 - 2.759360574e+01 3.294567958e+01 3.781720268e+01 4.290238860e+01 4.769950783e+01 5.267192432e+01 - 5.743564141e+01 6.234713170e+01 6.709354124e+01 7.196748581e+01 7.670414458e+01 8.155291084e+01 - 8.628382310e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.908417409e+01 - 2.610835663e+01 3.136132003e+01 3.681966719e+01 4.178245431e+01 4.693274806e+01 5.179117887e+01 - 5.680850086e+01 6.161671895e+01 6.656131117e+01 7.134165398e+01 7.624110417e+01 8.100454641e+01 - 8.587358865e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 2.240731838e+01 2.966370976e+01 3.506375485e+01 4.062604048e+01 4.567701107e+01 5.089329882e+01 - 5.581265347e+01 6.087670628e+01 6.573010028e+01 7.070984488e+01 7.552522992e+01 8.045221762e+01 - 8.524369422e+01 - 0.000000000e+00 6.383234978e+00 1.048850379e+01 1.531120361e+01 1.960444490e+01 2.428941008e+01 - 2.864916315e+01 3.327901446e+01 3.767286734e+01 4.227294634e+01 4.668755022e+01 5.126897344e+01 - 5.569753785e+01 6.026617150e+01 6.470477160e+01 6.926408933e+01 7.371024294e+01 7.826245809e+01 - 8.271448302e+01 - 0.000000000e+00 4.843238619e+00 1.048850373e+01 1.479310499e+01 1.960444497e+01 2.396686362e+01 - 2.864916322e+01 3.304403872e+01 3.767286741e+01 4.208796839e+01 4.668755028e+01 5.111639320e+01 - 5.569753778e+01 6.013630951e+01 6.470477140e+01 6.915104733e+01 7.371025452e+01 7.816238070e+01 - 8.271448596e+01 - 0.000000000e+00 0.000000000e+00 8.355250710e+00 1.425532033e+01 1.875405829e+01 2.363976380e+01 - 2.808861583e+01 3.280732393e+01 3.725159336e+01 4.190214646e+01 4.634929966e+01 5.096334051e+01 - 5.541468792e+01 6.000615678e+01 6.446160708e+01 6.903781231e+01 7.349694531e+01 7.806216968e+01 - 8.252437446e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.168629663e+01 1.785833938e+01 2.253453833e+01 - 2.751587383e+01 3.205448493e+01 3.682524665e+01 4.132476965e+01 4.600844730e+01 5.049325770e+01 - 5.513032435e+01 5.960904993e+01 6.421748359e+01 6.869375958e+01 7.328299744e+01 7.775851716e+01 - 8.233407548e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.493318713e+01 2.136091689e+01 - 2.619947989e+01 3.128160698e+01 3.590900882e+01 4.073858752e+01 4.529560493e+01 5.001848186e+01 - 5.454390216e+01 5.920913374e+01 6.371818198e+01 6.834789029e+01 7.284771393e+01 7.745360171e+01 - 8.194804984e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.812959908e+01 - 2.479424994e+01 2.978254673e+01 3.496526031e+01 3.967901166e+01 4.457020256e+01 4.918522639e+01 - 5.395059403e+01 5.851811506e+01 6.321466705e+01 6.775581749e+01 7.240965782e+01 7.693482460e+01 - 8.155992375e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 2.129171343e+01 2.817633444e+01 3.330383144e+01 3.858492666e+01 4.338211876e+01 4.833576330e+01 - 5.300842908e+01 5.781801594e+01 6.242827807e+01 6.715809197e+01 7.173239168e+01 7.641228747e+01 - 8.096400315e+01 - 0.000000000e+00 6.054863930e+00 9.966371239e+00 1.455802782e+01 1.864770792e+01 2.310879510e+01 - 2.726153374e+01 3.167036743e+01 3.585543706e+01 4.023604264e+01 4.444078714e+01 4.880370422e+01 - 5.302168543e+01 5.737247619e+01 6.159997296e+01 6.594193065e+01 7.017659947e+01 7.451180753e+01 - 7.875216869e+01 - 0.000000000e+00 4.595512100e+00 9.966371225e+00 1.406679631e+01 1.864770790e+01 2.280296848e+01 - 2.726153373e+01 3.144757078e+01 3.585543705e+01 4.006065198e+01 4.444078713e+01 4.865903194e+01 - 5.302168555e+01 5.724934453e+01 6.159997255e+01 6.583474811e+01 7.017659906e+01 7.441691941e+01 - 7.875205199e+01 - 0.000000000e+00 0.000000000e+00 7.943950862e+00 1.355690826e+01 1.784137548e+01 2.249282627e+01 - 2.673003049e+01 3.122312582e+01 3.545599272e+01 3.988446111e+01 4.412006489e+01 4.851391188e+01 - 5.275349349e+01 5.712593737e+01 6.136940981e+01 6.572738087e+01 6.997434501e+01 7.432191081e+01 - 7.857191691e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.112086273e+01 1.699207304e+01 2.144480858e+01 - 2.618696870e+01 3.050927744e+01 3.505174025e+01 3.933699501e+01 4.379687670e+01 4.806818439e+01 - 5.248386661e+01 5.674940661e+01 6.113793788e+01 6.540115727e+01 6.977148514e+01 7.403396854e+01 - 7.839135130e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.421796867e+01 2.033194888e+01 - 2.493866266e+01 2.977643327e+01 3.418293562e+01 3.878118224e+01 4.312095224e+01 4.761800878e+01 - 5.192782150e+01 5.637021288e+01 6.066450360e+01 6.507320947e+01 6.935875348e+01 7.374487087e+01 - 7.802525365e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.726719245e+01 - 2.360612558e+01 2.835485782e+01 3.328805003e+01 3.777643742e+01 4.243312151e+01 4.682789497e+01 - 5.136524902e+01 5.571498198e+01 6.018707553e+01 6.451180508e+01 6.894339535e+01 7.325297678e+01 - 7.765730713e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 2.028387748e+01 2.683167314e+01 3.171244702e+01 3.673897490e+01 4.130649463e+01 4.602241667e+01 - 5.047185098e+01 5.505114302e+01 5.944140478e+01 6.394504298e+01 6.830120453e+01 7.275749980e+01 - 7.709222671e+01 - 0.000000000e+00 5.756316185e+00 9.491759779e+00 1.387330987e+01 1.777797676e+01 2.203550079e+01 - 2.600007295e+01 3.020795515e+01 3.420324334e+01 3.838430742e+01 4.239828788e+01 4.656254662e+01 - 5.058910316e+01 5.474184075e+01 5.877743770e+01 6.292178270e+01 6.696418815e+01 7.110213634e+01 - 7.514989820e+01 - 0.000000000e+00 4.370621437e+00 9.491759830e+00 1.340660906e+01 1.777797668e+01 2.174493956e+01 - 2.600007287e+01 2.999627823e+01 3.420324326e+01 3.821766982e+01 4.239828793e+01 4.642509434e+01 - 5.058910321e+01 5.462485413e+01 5.877743775e+01 6.281994956e+01 6.696418820e+01 7.101196027e+01 - 7.514977096e+01 - 0.000000000e+00 0.000000000e+00 7.570540665e+00 1.292219248e+01 1.701186564e+01 2.145028010e+01 - 2.549508727e+01 2.978303587e+01 3.382372981e+01 3.805027251e+01 4.209356923e+01 4.628721671e+01 - 5.033429386e+01 5.450760557e+01 5.855837981e+01 6.271794147e+01 6.677203342e+01 7.092171782e+01 - 7.497862815e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.060755257e+01 1.620494322e+01 2.045449145e+01 - 2.497912396e+01 2.910478557e+01 3.343964984e+01 3.753011472e+01 4.178650860e+01 4.586372592e+01 - 5.007812189e+01 5.414986075e+01 5.833845898e+01 6.240799418e+01 6.657929558e+01 7.064814607e+01 - 7.480714273e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.356872918e+01 1.939710799e+01 - 2.379297825e+01 2.840849252e+01 3.261415014e+01 3.700202954e+01 4.114428980e+01 4.543601031e+01 - 4.954981091e+01 5.378958705e+01 5.788864141e+01 6.209640981e+01 6.618715425e+01 7.037346105e+01 - 7.445927543e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.648439380e+01 - 2.252680893e+01 2.705765458e+01 3.176387649e+01 3.604734334e+01 4.049076204e+01 4.468528430e+01 - 4.901530027e+01 5.316702990e+01 5.743503113e+01 6.156300616e+01 6.579251977e+01 6.990610726e+01 - 7.410970330e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.936912446e+01 2.561027105e+01 3.026662416e+01 3.506157637e+01 3.942024234e+01 4.391996354e+01 - 4.816642495e+01 5.253629652e+01 5.672653536e+01 6.102451311e+01 6.518235397e+01 6.943534589e+01 - 7.357280454e+01 - 0.000000000e+00 5.483702660e+00 9.058471231e+00 1.324812047e+01 1.698390301e+01 2.105552858e+01 - 2.484832411e+01 2.887270355e+01 3.269473370e+01 3.669358803e+01 4.053340951e+01 4.451626854e+01 - 4.836806000e+01 5.233995321e+01 5.620034960e+01 6.016425536e+01 6.403113149e+01 6.798894551e+01 - 7.186091406e+01 - 0.000000000e+00 4.165588392e+00 9.058471313e+00 1.280391907e+01 1.698390310e+01 2.077896860e+01 - 2.484832419e+01 2.867122534e+01 3.269473366e+01 3.653497873e+01 4.053340959e+01 4.438543824e+01 - 4.836805996e+01 5.222860233e+01 5.620034916e+01 6.006732681e+01 6.403113681e+01 6.790312995e+01 - 7.186086116e+01 - 0.000000000e+00 0.000000000e+00 7.230079981e+00 1.234286581e+01 1.625468120e+01 2.049850986e+01 - 2.436765938e+01 2.846825781e+01 3.233350001e+01 3.637564670e+01 4.024336885e+01 4.425420336e+01 - 4.812552488e+01 5.211700256e+01 5.599184377e+01 5.997023256e+01 6.384823503e+01 6.781721279e+01 - 7.169793748e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.013957137e+01 1.548662997e+01 1.955062183e+01 - 2.387655047e+01 2.782265614e+01 3.196792184e+01 3.588053497e+01 3.995109998e+01 4.385110721e+01 - 4.788169351e+01 5.177648771e+01 5.578251697e+01 5.967521426e+01 6.366477883e+01 6.755683759e+01 - 7.153467563e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.297686869e+01 1.854412010e+01 - 2.274741237e+01 2.715988690e+01 3.118213882e+01 3.537788071e+01 3.933979422e+01 4.344399136e+01 - 4.737881895e+01 5.143356684e+01 5.535436011e+01 5.937863882e+01 6.329152627e+01 6.729537607e+01 - 7.120359811e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.577082721e+01 - 2.154211233e+01 2.587392118e+01 3.037278146e+01 3.446910444e+01 3.871772816e+01 4.272938920e+01 - 4.687004574e+01 5.084097638e+01 5.492259459e+01 5.887091517e+01 6.291589463e+01 6.685051775e+01 - 7.087082739e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.853532295e+01 2.449605711e+01 2.894738176e+01 3.353074987e+01 3.769866489e+01 4.200089963e+01 - 4.606200364e+01 5.024060621e+01 5.424819353e+01 5.835835028e+01 6.233509899e+01 6.640242700e+01 - 7.035979767e+01 - 0.000000000e+00 5.233779907e+00 8.661340410e+00 1.267501855e+01 1.625602983e+01 2.015721326e+01 - 2.379257350e+01 2.764871734e+01 3.131194777e+01 3.514375760e+01 3.882394944e+01 4.264051017e+01 - 4.633211365e+01 5.013821980e+01 5.383802698e+01 5.763651761e+01 6.134250378e+01 6.513518903e+01 - 6.884607008e+01 - 0.000000000e+00 3.977931320e+00 8.661340397e+00 1.225153965e+01 1.625602982e+01 1.989354859e+01 - 2.379257349e+01 2.745663227e+01 3.131194776e+01 3.499254252e+01 3.882394943e+01 4.251577871e+01 - 4.633211364e+01 5.003205975e+01 5.383802684e+01 5.754410721e+01 6.134250730e+01 6.505336742e+01 - 6.884606196e+01 - 0.000000000e+00 0.000000000e+00 6.918452311e+00 1.181200568e+01 1.556078253e+01 1.962616905e+01 - 2.333430813e+01 2.726312809e+01 3.096754980e+01 3.484063855e+01 3.854742731e+01 4.239066174e+01 - 4.610088320e+01 4.992566240e+01 5.363924003e+01 5.745154010e+01 6.116813011e+01 6.497146184e+01 - 6.869061945e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.711257001e+00 1.482853347e+01 1.872239558e+01 - 2.286609054e+01 2.664759516e+01 3.061901192e+01 3.436859397e+01 3.826878186e+01 4.200634891e+01 - 4.586841743e+01 4.960101623e+01 5.343967054e+01 5.717027093e+01 6.099322873e+01 6.472320852e+01 - 6.853497026e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.243522093e+01 1.776275707e+01 - 2.178945306e+01 2.601570181e+01 2.986980682e+01 3.388936190e+01 3.768594648e+01 4.161820569e+01 - 4.538896964e+01 4.927407744e+01 5.303146300e+01 5.688751827e+01 6.063736352e+01 6.447393898e+01 - 6.821938778e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.511784667e+01 - 2.064021337e+01 2.478947797e+01 2.909813333e+01 3.302286663e+01 3.709285642e+01 4.093687276e+01 - 4.490390066e+01 4.870908585e+01 5.261981635e+01 5.640344627e+01 6.027924168e+01 6.404981450e+01 - 6.790209994e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.777236439e+01 2.347563932e+01 2.773890254e+01 3.212817818e+01 3.612118173e+01 4.024230417e+01 - 4.413346460e+01 4.813668006e+01 5.197681590e+01 5.591476092e+01 5.972549546e+01 6.362259784e+01 - 6.741485596e+01 - 0.000000000e+00 5.003825188e+00 8.296028693e+00 1.214775344e+01 1.558641307e+01 1.933075605e+01 - 2.282130131e+01 2.652264484e+01 3.003979879e+01 3.371790955e+01 3.725125765e+01 4.091480886e+01 - 4.445905252e+01 4.811262206e+01 5.166469842e+01 5.531099727e+01 5.886897333e+01 6.250972347e+01 - 6.607236821e+01 - 0.000000000e+00 3.805565218e+00 8.296028713e+00 1.174343401e+01 1.558641309e+01 1.907901365e+01 - 2.282130120e+01 2.633924413e+01 3.003979881e+01 3.357353047e+01 3.725125754e+01 4.079571615e+01 - 4.445905254e+01 4.801126116e+01 5.166469831e+01 5.522276437e+01 5.886897780e+01 6.243160383e+01 - 6.607231381e+01 - 0.000000000e+00 0.000000000e+00 6.632199966e+00 1.132379717e+01 1.492257622e+01 1.882372694e+01 - 2.238374509e+01 2.615448942e+01 2.971096615e+01 3.342849440e+01 3.698723379e+01 4.067625568e+01 - 4.423827367e+01 4.790967378e+01 5.147489671e+01 5.513438139e+01 5.870248026e+01 6.235340332e+01 - 6.592396042e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.317853656e+00 1.422342973e+01 1.796073764e+01 - 2.193669214e+01 2.556675577e+01 2.937818313e+01 3.297777628e+01 3.672118403e+01 4.030930862e+01 - 4.401631624e+01 4.759969888e+01 5.128434879e+01 5.486582382e+01 5.853548404e+01 6.211637666e+01 - 6.577539981e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.193776622e+01 1.704442721e+01 - 2.090859028e+01 2.496340880e+01 2.866279474e+01 3.252019915e+01 3.616467020e+01 3.993870660e+01 - 4.355852719e+01 4.728753629e+01 5.089458471e+01 5.459585131e+01 5.819570322e+01 6.187836807e+01 - 6.547397331e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.451818999e+01 - 1.981118089e+01 2.379241409e+01 2.792596150e+01 3.169279276e+01 3.559836989e+01 3.928813170e+01 - 4.309537375e+01 4.674806052e+01 5.050153916e+01 5.413364606e+01 5.785376231e+01 6.147341101e+01 - 6.517105404e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.707175743e+01 2.253776840e+01 2.662790009e+01 3.083847508e+01 3.467050535e+01 3.862492434e+01 - 4.235970494e+01 4.620150912e+01 4.988756926e+01 5.366703794e+01 5.732502421e+01 6.106548984e+01 - 6.470585092e+01 - 0.000000000e+00 4.791535378e+00 7.958864977e+00 1.166103633e+01 1.496833104e+01 1.856786545e+01 - 2.192476012e+01 2.548318803e+01 2.886552108e+01 3.240173793e+01 3.579955295e+01 3.932185059e+01 - 4.273008225e+01 4.624283674e+01 4.965855703e+01 5.316436043e+01 5.658572022e+01 6.008622778e+01 - 6.351203321e+01 - 0.000000000e+00 3.646726378e+00 7.958864942e+00 1.127449404e+01 1.496833101e+01 1.832718523e+01 - 2.192476009e+01 2.530784509e+01 2.886552105e+01 3.226370184e+01 3.579955304e+01 3.920798969e+01 - 4.273008221e+01 4.614592861e+01 4.965855674e+01 5.308000300e+01 5.658572568e+01 6.001154707e+01 - 6.351195167e+01 - 0.000000000e+00 0.000000000e+00 6.368397298e+00 1.087332001e+01 1.433363759e+01 1.808311891e+01 - 2.150641849e+01 2.513120865e+01 2.855113034e+01 3.212503799e+01 3.554712566e+01 3.909377732e+01 - 4.251900086e+01 4.604880415e+01 4.947709227e+01 5.299550313e+01 5.642654278e+01 5.993676500e+01 - 6.337013127e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.955337061e+00 1.366520648e+01 1.725796875e+01 - 2.107900324e+01 2.456926764e+01 2.823296549e+01 3.169410684e+01 3.529276253e+01 3.874294304e+01 - 4.230679328e+01 4.575244168e+01 4.929491444e+01 5.273874026e+01 5.626688056e+01 5.971015210e+01 - 6.322807279e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.147941163e+01 1.638186099e+01 - 2.009593130e+01 2.399240731e+01 2.754895207e+01 3.125662215e+01 3.476067035e+01 3.838861627e+01 - 4.186909968e+01 4.545398897e+01 4.892226286e+01 5.248062510e+01 5.594202181e+01 5.948259717e+01 - 6.293992617e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.396571246e+01 - 1.904661234e+01 2.287265146e+01 2.684444512e+01 3.046548194e+01 3.421922653e+01 3.776657873e+01 - 4.142628044e+01 4.493818735e+01 4.854647620e+01 5.203870825e+01 5.561509584e+01 5.909540892e+01 - 6.265032511e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.642631798e+01 2.167292629e+01 2.560313255e+01 2.964862156e+01 3.333200801e+01 3.713246943e+01 - 4.072286844e+01 4.441562432e+01 4.795944099e+01 5.159258451e+01 5.510956081e+01 5.870540754e+01 - 6.220551964e+01 - 0.000000000e+00 4.594946861e+00 7.646721877e+00 1.121036189e+01 1.439605790e+01 1.786147849e+01 - 2.109464667e+01 2.452072316e+01 2.777824000e+01 3.118305661e+01 3.445539269e+01 3.784688586e+01 - 4.112919287e+01 4.451155130e+01 4.780102617e+01 5.117673073e+01 5.447160884e+01 5.784223787e+01 - 6.114129161e+01 - 0.000000000e+00 3.499912207e+00 7.646721844e+00 1.084036854e+01 1.439605787e+01 1.763109599e+01 - 2.109464664e+01 2.435288116e+01 2.777823997e+01 3.105092520e+01 3.445539279e+01 3.773789537e+01 - 4.112919283e+01 4.441878832e+01 4.780102627e+01 5.109598156e+01 5.447160881e+01 5.777075399e+01 - 6.114132676e+01 - 0.000000000e+00 0.000000000e+00 6.124552063e+00 1.045638302e+01 1.378849315e+01 1.739747522e+01 - 2.069419160e+01 2.418380203e+01 2.747729319e+01 3.091819323e+01 3.421376037e+01 3.762856858e+01 - 4.092713868e+01 4.432581829e+01 4.762732254e+01 5.101509716e+01 5.431923729e+01 5.769917217e+01 - 6.100554761e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.620279485e+00 1.314865696e+01 1.660754769e+01 - 2.028505747e+01 2.364587071e+01 2.717273645e+01 3.050568160e+01 3.397027659e+01 3.729273315e+01 - 4.072400736e+01 4.404212752e+01 4.745293658e+01 5.076931357e+01 5.416640386e+01 5.748224082e+01 - 6.086957288e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.105581854e+01 1.576886609e+01 - 1.934390088e+01 2.309366712e+01 2.651792888e+01 3.008690110e+01 3.346091769e+01 3.695355725e+01 - 4.030502029e+01 4.375643744e+01 4.709621503e+01 5.052223579e+01 5.385543041e+01 5.726442344e+01 - 6.059372828e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.345518012e+01 - 1.833934994e+01 2.202160506e+01 2.584351460e+01 2.932951912e+01 3.294261284e+01 3.635808431e+01 - 3.988113011e+01 4.326267328e+01 4.673649405e+01 5.009920522e+01 5.354248369e+01 5.689378531e+01 - 6.031652014e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.582992669e+01 2.087300495e+01 2.465502369e+01 2.854752750e+01 3.209322942e+01 3.575106224e+01 - 3.920774460e+01 4.276244101e+01 4.617453171e+01 4.967214986e+01 5.305854774e+01 5.652045661e+01 - 5.989072758e+01 - 0.000000000e+00 4.412377357e+00 7.356918826e+00 1.079186815e+01 1.386468561e+01 1.720554129e+01 - 2.032384379e+01 2.362700094e+01 2.676863458e+01 3.005142026e+01 3.320725435e+01 3.647727270e+01 - 3.964266133e+01 4.290392641e+01 4.607618385e+01 4.933107253e+01 5.250850179e+01 5.575853340e+01 - 5.894004789e+01 - 0.000000000e+00 3.363834787e+00 7.356918795e+00 1.043732785e+01 1.386468571e+01 1.698477442e+01 - 2.032384376e+01 2.346616315e+01 2.676863468e+01 2.992480224e+01 3.320725432e+01 3.637282976e+01 - 3.964266130e+01 4.281503386e+01 4.607618369e+01 4.925369340e+01 5.250850948e+01 5.569002397e+01 - 5.893995641e+01 - 0.000000000e+00 0.000000000e+00 5.898528111e+00 1.006939363e+01 1.328245211e+01 1.676090729e+01 - 1.994009018e+01 2.330414082e+01 2.648024108e+01 2.979760929e+01 3.297570181e+01 3.626806517e+01 - 3.944903637e+01 4.272594315e+01 4.590972671e+01 4.917618297e+01 5.236249448e+01 5.562143608e+01 - 5.880988610e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.309743243e+00 1.266931840e+01 1.600386754e+01 - 1.954802669e+01 2.278862791e+01 2.618839110e+01 2.940229664e+01 3.274237669e+01 3.594623489e+01 - 3.925438006e+01 4.245408462e+01 4.574261654e+01 4.894065171e+01 5.221603405e+01 5.541355182e+01 - 5.867956120e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.066326893e+01 1.520013476e+01 - 1.864600594e+01 2.225944830e+01 2.556085365e+01 2.900098133e+01 3.225424470e+01 3.562120620e+01 - 3.885286002e+01 4.218031180e+01 4.540076930e+01 4.870388106e+01 5.191803097e+01 5.520482469e+01 - 5.841523722e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.298210716e+01 - 1.768325877e+01 2.123191668e+01 2.491453888e+01 2.827512005e+01 3.175754613e+01 3.505053717e+01 - 3.844664500e+01 4.170712477e+01 4.505605031e+01 4.829848484e+01 5.161813689e+01 5.484964106e+01 - 5.814959326e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.527733875e+01 2.013105536e+01 2.377536536e+01 2.752568732e+01 3.094348921e+01 3.446880787e+01 - 3.780129594e+01 4.122774409e+01 4.451749904e+01 4.788923506e+01 5.115436926e+01 5.449187844e+01 - 5.774155475e+01 - 0.000000000e+00 4.242376328e+00 7.087145147e+00 1.040222611e+01 1.336998333e+01 1.659483467e+01 - 1.960621589e+01 2.279491015e+01 2.582866961e+01 2.899782401e+01 3.204520441e+01 3.520211253e+01 - 3.825865762e+01 4.140716962e+01 4.447030330e+01 4.761269948e+01 5.068079763e+01 5.381852945e+01 - 5.689048272e+01 - 0.000000000e+00 3.237383852e+00 7.087145132e+00 1.006215669e+01 1.336998332e+01 1.638307225e+01 - 1.960621587e+01 2.264063114e+01 2.582866960e+01 2.887636893e+01 3.204520439e+01 3.510192818e+01 - 3.825865774e+01 4.132190144e+01 4.447030341e+01 4.753847469e+01 5.068079945e+01 5.375282101e+01 - 5.689048048e+01 - 0.000000000e+00 0.000000000e+00 5.688484417e+00 9.709254939e+00 1.281147017e+01 1.616833920e+01 - 1.923810190e+01 2.248521702e+01 2.555203118e+01 2.875436298e+01 3.182309090e+01 3.500143563e+01 - 3.807292606e+01 4.123644358e+01 4.431063243e+01 4.746412499e+01 5.054073648e+01 5.368702350e+01 - 5.676575754e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.021195669e+00 1.222334353e+01 1.544209515e+01 - 1.886202442e+01 2.199069712e+01 2.527208067e+01 2.837515578e+01 3.159927871e+01 3.469272014e+01 - 3.788620618e+01 4.097566494e+01 4.415033535e+01 4.723819353e+01 5.040025110e+01 5.348761282e+01 - 5.664067537e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.029855744e+01 1.467109146e+01 - 1.799664936e+01 2.148307839e+01 2.467007880e+01 2.799019579e+01 3.113102397e+01 3.438093941e+01 - 3.750104238e+01 4.071305168e+01 4.382241685e+01 4.701107487e+01 5.011439043e+01 5.328739655e+01 - 5.638715996e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.254262670e+01 - 1.707305019e+01 2.049724301e+01 2.405007772e+01 2.729384988e+01 3.065455834e+01 3.383349699e+01 - 3.711137916e+01 4.025913358e+01 4.349174605e+01 4.662219226e+01 4.982671895e+01 5.294667985e+01 - 5.613231633e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.476403330e+01 1.944108690e+01 2.295708206e+01 2.657490673e+01 2.987358044e+01 3.327545283e+01 - 3.649228323e+01 3.979927889e+01 4.297511712e+01 4.622961583e+01 4.938183708e+01 5.260349616e+01 - 5.574088993e+01 - 0.000000000e+00 4.083686829e+00 6.835398097e+00 1.003855053e+01 1.290828416e+01 1.602483564e+01 - 1.893644578e+01 2.201828744e+01 2.495138115e+01 2.801446395e+01 3.096063425e+01 3.401196003e+01 - 3.696692912e+01 4.001019406e+01 4.297148867e+01 4.600888204e+01 4.897494005e+01 5.200786018e+01 - 5.497763229e+01 - 0.000000000e+00 3.119597094e+00 6.835398136e+00 9.712068736e+00 1.290828407e+01 1.582152801e+01 - 1.893644582e+01 2.187016681e+01 2.495138106e+01 2.789785670e+01 3.096063429e+01 3.391577436e+01 - 3.696692916e+01 3.992832908e+01 4.297148858e+01 4.593761959e+01 4.897494349e+01 5.194476884e+01 - 5.497762317e+01 - 0.000000000e+00 0.000000000e+00 5.492824984e+00 9.373282934e+00 1.237204255e+01 1.561537149e+01 - 1.858301634e+01 2.172095773e+01 2.468578002e+01 2.778072103e+01 3.074738342e+01 3.381929287e+01 - 3.678860881e+01 3.984628208e+01 4.281818929e+01 4.586623726e+01 4.884046809e+01 5.188160146e+01 - 5.485780989e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.752442398e+00 1.180739842e+01 1.491804182e+01 - 1.822194923e+01 2.124614853e+01 2.441700241e+01 2.741663564e+01 3.053250359e+01 3.352289128e+01 - 3.660934080e+01 3.959590673e+01 4.266428955e+01 4.564931992e+01 4.870559172e+01 5.169014578e+01 - 5.473779710e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.958906663e+00 1.417777117e+01 - 1.739098035e+01 2.075877491e+01 2.383897635e+01 2.704703269e+01 3.008291182e+01 3.322355005e+01 - 3.623953455e+01 3.934377199e+01 4.234944908e+01 4.543126366e+01 4.843113341e+01 5.149792101e+01 - 5.449435859e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.213338804e+01 - 1.650414108e+01 1.981208688e+01 2.324368303e+01 2.637839893e+01 2.962544420e+01 3.269791525e+01 - 3.586541256e+01 3.890794583e+01 4.203196894e+01 4.505788577e+01 4.815493965e+01 5.117078966e+01 - 5.424969769e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.428609255e+01 1.879790814e+01 2.219404161e+01 2.568808420e+01 2.887552416e+01 3.216211054e+01 - 3.527096617e+01 3.846642510e+01 4.153592342e+01 4.468096530e+01 4.772778905e+01 5.084129505e+01 - 5.387387924e+01 - 0.000000000e+00 3.935214520e+00 6.599933422e+00 9.698328460e+00 1.247639424e+01 1.549160467e+01 - 1.830990203e+01 2.129176500e+01 2.413070359e+01 2.709454290e+01 2.994604591e+01 3.289858883e+01 - 3.575854605e+01 3.870334354e+01 4.156937864e+01 4.450853427e+01 4.737914897e+01 5.031400207e+01 - 5.318819691e+01 - 0.000000000e+00 3.009636613e+00 6.599933462e+00 9.384637022e+00 1.247639428e+01 1.529625558e+01 - 1.830990207e+01 2.114944138e+01 2.413070363e+01 2.698249889e+01 2.994604595e+01 3.280616697e+01 - 3.575854596e+01 3.862468193e+01 4.156937855e+01 4.444006036e+01 4.737914979e+01 5.025337629e+01 - 5.318818884e+01 - 0.000000000e+00 0.000000000e+00 5.310160377e+00 9.059140259e+00 1.196111685e+01 1.509817272e+01 - 1.797029511e+01 2.100607326e+01 2.387549201e+01 2.686994779e+01 2.974113758e+01 3.271346132e+01 - 3.558720209e+01 3.854584577e+01 4.142207681e+01 4.437147129e+01 4.724993883e+01 5.019268349e+01 - 5.307301272e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.501571763e+00 1.141857899e+01 1.442805900e+01 - 1.762335808e+01 2.054981741e+01 2.361723190e+01 2.652009662e+01 2.953466591e+01 3.242865087e+01 - 3.541494862e+01 3.830526317e+01 4.127419908e+01 4.416303916e+01 4.712033711e+01 5.000872874e+01 - 5.295772867e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.641897733e+00 1.371672040e+01 - 1.682477410e+01 2.008150131e+01 2.306177365e+01 2.616494962e+01 2.910264150e+01 3.214101890e+01 - 3.505959819e+01 3.806299183e+01 4.097166899e+01 4.395351365e+01 4.685661227e+01 4.982401668e+01 - 5.272381552e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.175147300e+01 - 1.597253973e+01 1.917166043e+01 2.248973873e+01 2.552240049e+01 2.866305717e+01 3.163591151e+01 - 3.470010562e+01 3.764419537e+01 4.066660545e+01 4.359473038e+01 4.659122093e+01 4.950967463e+01 - 5.248872721e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.384010486e+01 1.819699782e+01 2.148090384e+01 2.485903484e+01 2.794237072e+01 3.112104119e+01 - 3.412886124e+01 3.721993300e+01 4.018993483e+01 4.323254685e+01 4.618076160e+01 4.919306640e+01 - 5.212759416e+01 - 0.000000000e+00 3.796001434e+00 6.379225138e+00 9.379360979e+00 1.207151941e+01 1.499169482e+01 - 1.772253240e+01 2.061064591e+01 2.336132999e+01 2.623211358e+01 2.899487870e+01 3.185480035e+01 - 3.462569460e+01 3.747816869e+01 4.025490730e+01 4.310195604e+01 4.588309686e+01 4.872601668e+01 - 5.151065156e+01 - 0.000000000e+00 2.906769299e+00 6.379225099e+00 9.077737955e+00 1.207151937e+01 1.480385496e+01 - 1.772253249e+01 2.047379191e+01 2.336132995e+01 2.612437516e+01 2.899487879e+01 3.176592990e+01 - 3.462569456e+01 3.740252972e+01 4.025490713e+01 4.303611375e+01 4.588309970e+01 4.866772228e+01 - 5.151060429e+01 - 0.000000000e+00 0.000000000e+00 5.139274498e+00 8.764781290e+00 1.157602198e+01 1.461339024e+01 - 1.739596745e+01 2.033593495e+01 2.311592129e+01 2.601614987e+01 2.879784183e+01 3.167678699e+01 - 3.446093313e+01 3.732672294e+01 4.011326452e+01 4.297016004e+01 4.575885137e+01 4.860935179e+01 - 5.139993961e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.266912021e+00 1.105434473e+01 1.396895482e+01 - 1.706236328e+01 1.989718472e+01 2.286758502e+01 2.567972889e+01 2.859930371e+01 3.140291305e+01 - 3.429529821e+01 3.709538013e+01 3.997106854e+01 4.276973368e+01 4.563422930e+01 4.843245920e+01 - 5.128898948e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.345414385e+00 1.328491733e+01 - 1.629433403e+01 1.944685107e+01 2.233341974e+01 2.533822204e+01 2.818385440e+01 3.112632944e+01 - 3.395358742e+01 3.686241555e+01 3.968015378e+01 4.256825735e+01 4.538063238e+01 4.825484841e+01 - 5.106405748e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.139432851e+01 - 1.547475391e+01 1.857177456e+01 2.178333110e+01 2.472028399e+01 2.776114408e+01 3.064059002e+01 - 3.360789840e+01 3.645968712e+01 3.938680579e+01 4.222324494e+01 4.512543450e+01 4.795257735e+01 - 5.083799559e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.342308545e+01 1.763439997e+01 2.081299561e+01 2.408234678e+01 2.706803962e+01 3.014547266e+01 - 3.305854549e+01 3.605170878e+01 3.892841588e+01 4.187496621e+01 4.473072401e+01 4.764812291e+01 - 5.049072352e+01 - 0.000000000e+00 3.665205479e+00 6.171931682e+00 9.079716004e+00 1.169120366e+01 1.452207670e+01 - 1.717077570e+01 1.997080242e+01 2.263859636e+01 2.542194934e+01 2.810136712e+01 3.087426906e+01 - 3.356150855e+01 3.632724458e+01 3.902010734e+01 4.178062342e+01 4.447772434e+01 4.723425958e+01 - 4.993467311e+01 - 0.000000000e+00 2.810350601e+00 6.171931755e+00 8.789505395e+00 1.169120373e+01 1.434133796e+01 - 1.717077565e+01 1.983912086e+01 2.263859630e+01 2.531828240e+01 2.810136720e+01 3.078875699e+01 - 3.356150849e+01 3.625446387e+01 3.902010728e+01 4.171726904e+01 4.447772402e+01 4.717815914e+01 - 4.993463825e+01 - 0.000000000e+00 0.000000000e+00 4.979099075e+00 8.488408828e+00 1.121441092e+01 1.415807760e+01 - 1.685654362e+01 1.970647589e+01 2.240245752e+01 2.521414783e+01 2.791177386e+01 3.070298308e+01 - 3.340297171e+01 3.618152191e+01 3.888381611e+01 4.165380770e+01 4.435817068e+01 4.712200852e+01 - 4.982816425e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.046993415e+00 1.071246282e+01 1.353792412e+01 - 1.653554823e+01 1.928427930e+01 2.216350611e+01 2.489042721e+01 2.772073812e+01 3.043945121e+01 - 3.324359573e+01 3.595891653e+01 3.874699328e+01 4.146095199e+01 4.423825875e+01 4.695179924e+01 - 4.972144534e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.067597022e+00 1.287970700e+01 - 1.579641178e+01 1.885095166e+01 2.164947604e+01 2.456181943e+01 2.732096295e+01 3.017331590e+01 - 3.291478308e+01 3.573475310e+01 3.846706239e+01 4.126708740e+01 4.399423731e+01 4.678089400e+01 - 4.950499607e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.105971141e+01 - 1.500771435e+01 1.800874827e+01 2.112014180e+01 2.396715404e+01 2.691421012e+01 2.970589133e+01 - 3.258214763e+01 3.534721923e+01 3.818479350e+01 4.093509676e+01 4.374867860e+01 4.649003943e+01 - 4.928748729e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.303241178e+01 1.710663830e+01 2.018621116e+01 2.335326460e+01 2.624718741e+01 2.922945396e+01 - 3.205349600e+01 3.495464018e+01 3.774369035e+01 4.059996776e+01 4.336886086e+01 4.619708062e+01 - 4.895331484e+01 - 0.000000000e+00 3.542083263e+00 5.976869980e+00 8.797688362e+00 1.133328029e+01 1.408007758e+01 - 1.665148959e+01 1.936859281e+01 2.195838745e+01 2.465943847e+01 2.726042393e+01 2.995141336e+01 - 3.255992905e+01 3.524401958e+01 3.785794924e+01 4.053701421e+01 4.315502334e+01 4.583026315e+01 - 4.845141221e+01 - 0.000000000e+00 2.719812111e+00 5.976870036e+00 8.518292978e+00 1.133328034e+01 1.390606818e+01 - 1.665148951e+01 1.924181292e+01 2.195838738e+01 2.455963003e+01 2.726042399e+01 2.986908385e+01 - 3.255992911e+01 3.517394747e+01 3.785794917e+01 4.047601730e+01 4.315502432e+01 4.577625305e+01 - 4.845143608e+01 - 0.000000000e+00 0.000000000e+00 4.828691292e+00 8.228436817e+00 1.087421253e+01 1.372963542e+01 - 1.634894478e+01 1.911410691e+01 2.173103325e+01 2.445937217e+01 2.707788444e+01 2.978650272e+01 - 3.240729111e+01 3.510372054e+01 3.772672921e+01 4.041491792e+01 4.303991740e+01 4.572218168e+01 - 4.834895403e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.840520048e+00 1.039096325e+01 1.313249179e+01 - 1.603989883e+01 1.870759728e+01 2.150097548e+01 2.414768668e+01 2.689395861e+01 2.953277145e+01 - 3.225384649e+01 3.488939512e+01 3.759499826e+01 4.022923635e+01 4.292446969e+01 4.555830354e+01 - 4.824615827e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.806805295e+00 1.249874656e+01 - 1.532814134e+01 1.829038622e+01 2.100602623e+01 2.383130320e+01 2.650903681e+01 2.927653748e+01 - 3.193725657e+01 3.467357221e+01 3.732547617e+01 4.004258554e+01 4.268952424e+01 4.539376490e+01 - 4.803777088e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.074564265e+01 - 1.456871360e+01 1.747933344e+01 2.049636122e+01 2.325869163e+01 2.611740647e+01 2.882646887e+01 - 3.161699180e+01 3.430043713e+01 3.705370659e+01 3.972293497e+01 4.245309909e+01 4.511371484e+01 - 4.782833223e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.266577019e+01 1.661064602e+01 1.959692742e+01 2.266759238e+01 2.547509975e+01 2.836773412e+01 - 3.110795721e+01 3.392245178e+01 3.662898518e+01 3.940026744e+01 4.208739481e+01 4.483165499e+01 - 4.750659300e+01 - 0.000000000e+00 3.425978184e+00 5.792991754e+00 8.531767981e+00 1.099583014e+01 1.366333001e+01 - 1.616189111e+01 1.880079095e+01 2.131705834e+01 2.394049649e+01 2.646754328e+01 2.908128954e+01 - 3.161559001e+01 3.422269076e+01 3.676220636e+01 3.936446626e+01 4.190791181e+01 4.450648365e+01 - 4.705299364e+01 - 0.000000000e+00 2.634650433e+00 5.792991685e+00 8.262642328e+00 1.099583021e+01 1.349571062e+01 - 1.616189104e+01 1.867866549e+01 2.131705841e+01 2.384435192e+01 2.646754335e+01 2.900198210e+01 - 3.161559007e+01 3.415519070e+01 3.676220629e+01 3.930570834e+01 4.190791278e+01 4.445446686e+01 - 4.705298219e+01 - 0.000000000e+00 0.000000000e+00 4.687216650e+00 7.983460909e+00 1.055359298e+01 1.332576115e+01 - 1.587044385e+01 1.855564962e+01 2.109804560e+01 2.374777507e+01 2.629170189e+01 2.892243271e+01 - 3.146855325e+01 3.408754170e+01 3.663580179e+01 3.924685146e+01 4.179703173e+01 4.440237309e+01 - 4.695421423e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.646343715e+00 1.008810154e+01 1.275046595e+01 - 1.557274506e+01 1.816403523e+01 2.087643314e+01 2.344751744e+01 2.611452739e+01 2.867800742e+01 - 3.132074092e+01 3.388107867e+01 3.650890607e+01 3.906798259e+01 4.168581957e+01 4.424451147e+01 - 4.685522807e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.561586456e+00 1.213996120e+01 - 1.488698429e+01 1.776212848e+01 2.039960161e+01 2.314274210e+01 2.574370938e+01 2.843117557e+01 - 3.101575705e+01 3.367317544e+01 3.624926739e+01 3.888818096e+01 4.145949133e+01 4.408600622e+01 - 4.665449140e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.045036977e+01 - 1.415535361e+01 1.698065361e+01 1.990861462e+01 2.259107121e+01 2.536643922e+01 2.799758709e+01 - 3.070723897e+01 3.331371283e+01 3.598746770e+01 3.858024803e+01 4.123174069e+01 4.381622811e+01 - 4.645274350e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.232111177e+01 1.614370706e+01 1.904193594e+01 2.202161370e+01 2.474760074e+01 2.755566265e+01 - 3.021683164e+01 3.294958519e+01 3.557830126e+01 3.826941352e+01 4.087943639e+01 4.354451177e+01 - 4.614279843e+01 - 0.000000000e+00 3.316304684e+00 5.619365299e+00 8.280612513e+00 1.067714734e+01 1.326972974e+01 - 1.569950633e+01 1.826452977e+01 2.071136928e+01 2.326149264e+01 2.571872027e+01 2.825950350e+01 - 3.072372147e+01 3.325810030e+01 3.572734436e+01 3.825705791e+01 4.073008762e+01 4.325624942e+01 - 4.573224285e+01 - 0.000000000e+00 2.554417905e+00 5.619365268e+00 8.021256893e+00 1.067714731e+01 1.310818932e+01 - 1.569950630e+01 1.814683220e+01 2.071136925e+01 2.316883353e+01 2.571872024e+01 2.818307099e+01 - 3.072372157e+01 3.319304713e+01 3.572734420e+01 3.820042977e+01 4.073008929e+01 4.320611058e+01 - 4.573221286e+01 - 0.000000000e+00 0.000000000e+00 4.553932881e+00 7.752232433e+00 1.025092148e+01 1.294440825e+01 - 1.541861664e+01 1.802827832e+01 2.050029208e+01 2.307575884e+01 2.554925100e+01 2.810640578e+01 - 3.058201342e+01 3.312785073e+01 3.560552100e+01 3.814370682e+01 4.062322701e+01 4.315591291e+01 - 4.563702726e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.463444156e+00 9.802326684e+00 1.238989804e+01 - 1.513171373e+01 1.765083443e+01 2.028671443e+01 2.278637324e+01 2.537849947e+01 2.787083383e+01 - 3.043955933e+01 3.292886744e+01 3.548322516e+01 3.797131848e+01 4.051604814e+01 4.300376588e+01 - 4.554162621e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.330649445e+00 1.180150689e+01 - 1.447068426e+01 1.726348881e+01 1.982711902e+01 2.249264155e+01 2.502109897e+01 2.763294703e+01 - 3.014561689e+01 3.272849902e+01 3.523298939e+01 3.779803389e+01 4.029791666e+01 4.285101041e+01 - 4.534817737e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 1.017233538e+01 - 1.376550280e+01 1.651015191e+01 1.935390282e+01 2.196089238e+01 2.465749121e+01 2.721503674e+01 - 2.984827458e+01 3.238204353e+01 3.498067464e+01 3.750124822e+01 4.007841877e+01 4.259100151e+01 - 4.515374345e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.199661603e+01 1.570340714e+01 1.851838483e+01 2.141202573e+01 2.406097905e+01 2.678910565e+01 - 2.937558820e+01 3.203109989e+01 3.458630637e+01 3.720167125e+01 3.973886271e+01 4.232912699e+01 - 4.485500569e+01 - 0.000000000e+00 3.212540627e+00 5.455159614e+00 8.043024664e+00 1.037571014e+01 1.289739975e+01 - 1.526212895e+01 1.775725172e+01 2.013843056e+01 2.261918856e+01 2.501038242e+01 2.748213560e+01 - 2.988006915e+01 3.234564777e+01 3.474842674e+01 3.720950753e+01 3.961593794e+01 4.207359256e+01 - 4.448286751e+01 - 0.000000000e+00 2.478715525e+00 5.455159558e+00 7.792980882e+00 1.037571009e+01 1.274165329e+01 - 1.526212902e+01 1.764377436e+01 2.013843050e+01 2.252985146e+01 2.501038250e+01 2.740844320e+01 - 2.988006922e+01 3.228292669e+01 3.474842682e+01 3.715490942e+01 3.961593867e+01 4.202525757e+01 - 4.448286170e+01 - 0.000000000e+00 0.000000000e+00 4.428178560e+00 7.533637851e+00 9.964744223e+00 1.258375125e+01 - 1.499130134e+01 1.752947329e+01 1.993491653e+01 2.244011463e+01 2.484698630e+01 2.733452703e+01 - 2.974343974e+01 3.222006777e+01 3.463096985e+01 3.710022019e+01 3.951290796e+01 4.197685421e+01 - 4.439106498e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.290911652e+00 9.532255798e+00 1.204905026e+01 - 1.471468831e+01 1.716553469e+01 1.972899693e+01 2.216109059e+01 2.468235660e+01 2.710739295e+01 - 2.960609259e+01 3.202821323e+01 3.451305803e+01 3.693400875e+01 3.940956851e+01 4.183016511e+01 - 4.429910108e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.112842921e+00 1.148173872e+01 - 1.407722924e+01 1.679206798e+01 1.928582866e+01 2.187788503e+01 2.433774410e+01 2.687803166e+01 - 2.932267340e+01 3.183502602e+01 3.427178379e+01 3.676693469e+01 3.919925167e+01 4.168287724e+01 - 4.411257285e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.910150816e+00 - 1.339726037e+01 1.606554816e+01 1.882955096e+01 2.136512274e+01 2.398715811e+01 2.647506383e+01 - 2.903598281e+01 3.150096738e+01 3.402850919e+01 3.648077327e+01 3.898761865e+01 4.143217772e+01 - 4.392510351e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.169065926e+01 1.528759337e+01 1.802373070e+01 2.083588242e+01 2.341192453e+01 2.606437661e+01 - 2.858018575e+01 3.116258974e+01 3.364824484e+01 3.619192625e+01 3.866021323e+01 4.117968714e+01 - 4.363707149e+01 - 0.000000000e+00 3.114220142e+00 5.299631360e+00 7.817933391e+00 1.009015749e+01 1.254466093e+01 - 1.484778486e+01 1.727666874e+01 1.959565664e+01 2.201068686e+01 2.433933381e+01 2.674567945e+01 - 2.908082643e+01 3.148121690e+01 3.382103741e+01 3.621708938e+01 3.856043129e+01 4.095318530e+01 - 4.329926814e+01 - 0.000000000e+00 2.407186027e+00 5.299631367e+00 7.576779644e+00 1.009015737e+01 1.239444585e+01 - 1.484778474e+01 1.716722043e+01 1.959565664e+01 2.192452154e+01 2.433933382e+01 2.667460311e+01 - 2.908082643e+01 3.142072216e+01 3.382103728e+01 3.616442969e+01 3.856043142e+01 4.090654919e+01 - 4.329925611e+01 - 0.000000000e+00 0.000000000e+00 4.309361598e+00 7.326681237e+00 9.693760216e+00 1.224215715e+01 - 1.458656353e+01 1.705697960e+01 1.939936339e+01 2.183797134e+01 2.418173580e+01 2.660331131e+01 - 2.894904565e+01 3.136009503e+01 3.370774875e+01 3.611168155e+01 3.846105738e+01 4.085987174e+01 - 4.321072818e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.127932375e+00 9.276651458e+00 1.172636808e+01 - 1.431977530e+01 1.670593483e+01 1.920075528e+01 2.156883987e+01 2.402295086e+01 2.638423309e+01 - 2.881657440e+01 3.117504650e+01 3.359402276e+01 3.595136746e+01 3.836138677e+01 4.071838310e+01 - 4.312202287e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.907137071e+00 1.117918547e+01 - 1.370481889e+01 1.634571962e+01 1.877327031e+01 2.129568426e+01 2.369054708e+01 2.616301152e+01 - 2.854320202e+01 3.098871555e+01 3.336130425e+01 3.579022306e+01 3.815852965e+01 4.057632998e+01 - 4.294209841e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.662573824e+00 - 1.304892605e+01 1.564480248e+01 1.833316558e+01 2.080104885e+01 2.335239432e+01 2.577430944e+01 - 2.826668121e+01 3.066649241e+01 3.312666073e+01 3.551420512e+01 3.795440632e+01 4.033452147e+01 - 4.276129693e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.140178948e+01 1.489433981e+01 1.755569835e+01 2.029054829e+01 2.279747583e+01 2.537817694e+01 - 2.782700870e+01 3.034011236e+01 3.275986163e+01 3.523560231e+01 3.763860120e+01 4.009098575e+01 - 4.248346688e+01 - 0.000000000e+00 3.020924091e+00 5.152113364e+00 7.604377177e+00 9.819267397e+00 1.221000613e+01 - 1.445470214e+01 1.682072724e+01 1.908072730e+01 2.143338748e+01 2.370270608e+01 2.604698767e+01 - 2.832257736e+01 3.066111361e+01 3.294121213e+01 3.527556282e+01 3.755905767e+01 3.989022094e+01 - 4.217634696e+01 - 0.000000000e+00 2.339509163e+00 5.152113256e+00 7.371725014e+00 9.819267419e+00 1.206508076e+01 - 1.445470217e+01 1.671513197e+01 1.908072732e+01 2.135025510e+01 2.370270611e+01 2.597841301e+01 - 2.832257738e+01 3.060274811e+01 3.294121216e+01 3.522475633e+01 3.755905939e+01 3.984524050e+01 - 4.217635327e+01 - 0.000000000e+00 0.000000000e+00 4.196951130e+00 7.130468306e+00 9.436801764e+00 1.191816036e+01 - 1.420266737e+01 1.660877413e+01 1.889133912e+01 2.126675235e+01 2.355065274e+01 2.590963112e+01 - 2.819543337e+01 3.054425504e+01 3.283190983e+01 3.517386531e+01 3.746318098e+01 3.980020091e+01 - 4.209096305e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.973776089e+00 9.034403138e+00 1.142045631e+01 - 1.394527512e+01 1.627005936e+01 1.869972332e+01 2.100708096e+01 2.339745720e+01 2.569825660e+01 - 2.806762492e+01 3.036571518e+01 3.272218666e+01 3.501919033e+01 3.736701908e+01 3.966368916e+01 - 4.200536404e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.712608050e+00 1.089252680e+01 - 1.335183773e+01 1.592251768e+01 1.828723602e+01 2.074353653e+01 2.307672867e+01 2.548481931e+01 - 2.780386006e+01 3.018594103e+01 3.249764999e+01 3.486371656e+01 3.717129581e+01 3.952663269e+01 - 4.183176837e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.428489949e+00 - 1.271897370e+01 1.524608407e+01 1.786259925e+01 2.026623588e+01 2.275046623e+01 2.510975961e+01 - 2.753706502e+01 2.987503600e+01 3.227126066e+01 3.459739849e+01 3.697435369e+01 3.929332418e+01 - 4.165732119e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.112870386e+01 1.452191822e+01 1.711224594e+01 1.977365825e+01 2.221497509e+01 2.472754657e+01 - 2.711281247e+01 2.956012974e+01 3.191733838e+01 3.432859276e+01 3.666964206e+01 3.905835545e+01 - 4.138925707e+01 - 0.000000000e+00 2.932276249e+00 5.012004916e+00 7.401491056e+00 9.561940601e+00 1.189207903e+01 - 1.408128663e+01 1.638757901e+01 1.859155430e+01 2.088495010e+01 2.309791780e+01 2.538322816e+01 - 2.760224757e+01 2.988201355e+01 3.210538401e+01 3.438111080e+01 3.660775817e+01 3.888041358e+01 - 4.110962880e+01 - 0.000000000e+00 2.275396478e+00 5.012005025e+00 7.176981579e+00 9.561940579e+00 1.175222011e+01 - 1.408128660e+01 1.628567424e+01 1.859155441e+01 2.080472265e+01 2.309791777e+01 2.531704969e+01 - 2.760224755e+01 2.982568735e+01 3.210538386e+01 3.433207962e+01 3.660776024e+01 3.883699717e+01 - 4.110961569e+01 - 0.000000000e+00 0.000000000e+00 4.090469010e+00 6.944194519e+00 9.192818515e+00 1.161044158e+01 - 1.383805047e+01 1.618303547e+01 1.840877978e+01 2.072413900e+01 2.295117503e+01 2.525067173e+01 - 2.747954459e+01 2.976923846e+01 3.199989976e+01 3.428296697e+01 3.651523107e+01 3.879353474e+01 - 4.102718605e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.827785819e+00 8.804511898e+00 1.113005934e+01 - 1.358965834e+01 1.585613056e+01 1.822386155e+01 2.047352844e+01 2.280333327e+01 2.504667556e+01 - 2.735620219e+01 2.959693228e+01 3.189401052e+01 3.413369339e+01 3.642242953e+01 3.866179242e+01 - 4.094458595e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.528424366e+00 1.062057447e+01 - 1.301683196e+01 1.552072867e+01 1.782573902e+01 2.021919004e+01 2.249378720e+01 2.484069447e+01 - 2.710163957e+01 2.942343838e+01 3.167731033e+01 3.398365085e+01 3.623353883e+01 3.852952289e+01 - 4.077705507e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 9.206896592e+00 - 1.240603012e+01 1.486774564e+01 1.741591900e+01 1.975849274e+01 2.217891416e+01 2.447870141e+01 - 2.684416032e+01 2.912337398e+01 3.145882708e+01 3.372662346e+01 3.604347494e+01 3.830435646e+01 - 4.060870068e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.087023025e+01 1.416877340e+01 1.669153586e+01 1.928308387e+01 2.166203079e+01 2.410982163e+01 - 2.643467704e+01 2.881945799e+01 3.111723834e+01 3.346720154e+01 3.574938820e+01 3.807759063e+01 - 4.034998911e+01 - 0.000000000e+00 2.847935200e+00 4.878764445e+00 7.208493928e+00 9.317184729e+00 1.158965555e+01 - 1.372609906e+01 1.597555638e+01 1.812625320e+01 2.036326290e+01 2.252263921e+01 2.475184474e+01 - 2.691706227e+01 2.914091624e+01 3.131033360e+01 3.353028902e+01 3.570287089e+01 3.791985998e+01 - 4.009489473e+01 - 0.000000000e+00 2.214587901e+00 4.878764426e+00 6.991795164e+00 9.317184710e+00 1.145465672e+01 - 1.372609917e+01 1.587719146e+01 1.812625318e+01 2.028582205e+01 2.252263919e+01 2.468796464e+01 - 2.691706225e+01 2.908654619e+01 3.131033358e+01 3.348296019e+01 3.570287231e+01 3.787795010e+01 - 4.009489222e+01 - 0.000000000e+00 0.000000000e+00 3.989484188e+00 6.767133959e+00 8.960862028e+00 1.131781074e+01 - 1.349130299e+01 1.577812053e+01 1.794982264e+01 2.020803833e+01 2.238099069e+01 2.462389277e+01 - 2.679861943e+01 2.903205816e+01 3.120851177e+01 3.343555355e+01 3.561355450e+01 3.783599575e+01 - 4.001534336e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.689368691e+00 8.586075740e+00 1.085404402e+01 - 1.325154508e+01 1.546254394e+01 1.777132922e+01 1.996611928e+01 2.223828451e+01 2.442697446e+01 - 2.667956124e+01 2.886573173e+01 3.110630039e+01 3.329146121e+01 3.552397609e+01 3.770883381e+01 - 3.993560114e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.353836295e+00 1.036225628e+01 - 1.269848959e+01 1.513878839e+01 1.738698617e+01 1.972061251e+01 2.193946525e+01 2.422814579e+01 - 2.643382566e+01 2.869826234e+01 3.089711735e+01 3.314662896e+01 3.534163945e+01 3.758115252e+01 - 3.977388780e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.996889004e+00 - 1.210885644e+01 1.450830069e+01 1.699138074e+01 1.927584196e+01 2.163551826e+01 2.387868708e+01 - 2.618528296e+01 2.840859691e+01 3.068621823e+01 3.289851378e+01 3.515817384e+01 3.736379615e+01 - 3.961138131e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.062531138e+01 1.383350220e+01 1.629191047e+01 1.881690444e+01 2.113648469e+01 2.352259804e+01 - 2.578996743e+01 2.811522380e+01 3.035646041e+01 3.264809342e+01 3.487427991e+01 3.714490042e+01 - 3.936163546e+01 - 0.000000000e+00 2.767593384e+00 4.751901506e+00 7.024679626e+00 9.084101963e+00 1.130162833e+01 - 1.338783792e+01 1.558315035e+01 1.768311889e+01 1.986641515e+01 2.197476255e+01 2.415052491e+01 - 2.626451141e+01 2.843510719e+01 3.055314845e+01 3.271998042e+01 3.484107696e+01 3.700504123e+01 - 3.912853727e+01 - 0.000000000e+00 2.156847827e+00 4.751901540e+00 6.815483938e+00 9.084101997e+00 1.117129810e+01 - 1.338783796e+01 1.548818601e+01 1.768311892e+01 1.979165104e+01 2.197476258e+01 2.408885270e+01 - 2.626451145e+01 2.838261641e+01 3.055314835e+01 3.267428754e+01 3.484107713e+01 3.696458206e+01 - 3.912851101e+01 - 0.000000000e+00 0.000000000e+00 3.893606691e+00 6.598629780e+00 8.740074780e+00 1.103919079e+01 - 1.316114944e+01 1.539254241e+01 1.751278262e+01 1.971655723e+01 2.183800778e+01 2.402699599e+01 - 2.615016093e+01 2.833001205e+01 3.045484494e+01 3.262851942e+01 3.475484744e+01 3.692408217e+01 - 3.905172257e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.557988738e+00 8.378279133e+00 1.059138550e+01 - 1.292968628e+01 1.508784805e+01 1.734046139e+01 1.948298748e+01 2.170023520e+01 2.383687690e+01 - 2.603521832e+01 2.816942991e+01 3.035616646e+01 3.248940450e+01 3.466836383e+01 3.680130726e+01 - 3.897472416e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.188165536e+00 1.011660247e+01 - 1.239562395e+01 1.477528162e+01 1.696935531e+01 1.924596501e+01 2.141172046e+01 2.364491939e+01 - 2.579796246e+01 2.800774810e+01 3.015420467e+01 3.234957740e+01 3.449232445e+01 3.667804257e+01 - 3.881860270e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.797649302e+00 - 1.182633192e+01 1.416640452e+01 1.658740692e+01 1.881649472e+01 2.111827016e+01 2.330750170e+01 - 2.555800492e+01 2.772807219e+01 2.995059141e+01 3.211002344e+01 3.431519704e+01 3.646818752e+01 - 3.866170156e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.039299095e+01 1.351483513e+01 1.591186982e+01 1.837338257e+01 2.063638442e+01 2.296370120e+01 - 2.517629972e+01 2.744482751e+01 2.963219906e+01 3.186825104e+01 3.404109416e+01 3.625685276e+01 - 3.842057502e+01 - 0.000000000e+00 2.690972328e+00 4.630971486e+00 6.849407176e+00 8.861878256e+00 1.102699283e+01 - 1.306532208e+01 1.520899206e+01 1.726060487e+01 1.939267364e+01 2.145237619e+01 2.357717101e+01 - 2.564231827e+01 2.776212467e+01 2.983118671e+01 3.194735908e+01 3.401937096e+01 3.613277611e+01 - 3.820708361e+01 - 0.000000000e+00 2.101963020e+00 4.630971451e+00 6.647429256e+00 8.861878221e+00 1.090115357e+01 - 1.306532218e+01 1.511729906e+01 1.726060483e+01 1.932048478e+01 2.145237629e+01 2.351762284e+01 - 2.564231823e+01 2.771144149e+01 2.983118667e+01 3.190323964e+01 3.401937158e+01 3.609371035e+01 - 3.820708554e+01 - 0.000000000e+00 0.000000000e+00 3.802482783e+00 6.438086231e+00 8.529678528e+00 1.077360506e+01 - 1.284643286e+01 1.502495251e+01 1.709613107e+01 1.924797845e+01 2.132032889e+01 2.345789719e+01 - 2.553190433e+01 2.766064911e+01 2.973626769e+01 3.185904815e+01 3.393611019e+01 3.605460238e+01 - 3.813291623e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.433159704e+00 8.180382162e+00 1.034115431e+01 - 1.262294982e+01 1.473072658e+01 1.692974748e+01 1.902244049e+01 2.118730245e+01 2.327431855e+01 - 2.542092098e+01 2.750559292e+01 2.964098791e+01 3.172472096e+01 3.385260613e+01 3.593605295e+01 - 3.805858825e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.030796977e+00 9.882733268e+00 - 1.210715866e+01 1.442892490e+01 1.657137525e+01 1.879358011e+01 2.090870043e+01 2.308897122e+01 - 2.519182224e+01 2.734947853e+01 2.944597263e+01 3.158970880e+01 3.368262251e+01 3.581703570e+01 - 3.790783013e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.608435739e+00 - 1.155743998e+01 1.384083751e+01 1.620256623e+01 1.837882859e+01 2.062534848e+01 2.276313682e+01 - 2.496012386e+01 2.707941248e+01 2.924936842e+01 3.135839059e+01 3.351159286e+01 3.561439874e+01 - 3.775633720e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 1.017240216e+01 1.321162138e+01 1.555005389e+01 1.795094239e+01 2.015995908e+01 2.243115873e+01 - 2.459151173e+01 2.680591190e+01 2.894190958e+01 3.112493765e+01 3.324690925e+01 3.541033507e+01 - 3.752350239e+01 - 0.000000000e+00 2.617818356e+00 4.515570134e+00 6.682094414e+00 8.649773282e+00 1.076483604e+01 - 1.275747841e+01 1.485183754e+01 1.685730546e+01 1.894046317e+01 2.095374232e+01 2.302987633e+01 - 2.504841286e+01 2.711973022e+01 2.914204691e+01 3.120985530e+01 3.323502019e+01 3.530015620e+01 - 3.732754699e+01 - 0.000000000e+00 2.049739343e+00 4.515570056e+00 6.487068592e+00 8.649773204e+00 1.064332268e+01 - 1.275747847e+01 1.476329554e+01 1.685730551e+01 1.887075460e+01 2.095374237e+01 2.297237414e+01 - 2.504841291e+01 2.707078834e+01 2.914204696e+01 3.116725149e+01 3.323502116e+01 3.526243418e+01 - 3.732753291e+01 - 0.000000000e+00 0.000000000e+00 3.715791040e+00 6.284961719e+00 8.328966321e+00 1.052016565e+01 - 1.254610172e+01 1.467412503e+01 1.669847858e+01 1.880074091e+01 2.082622945e+01 2.291470117e+01 - 2.494179107e+01 2.702174148e+01 2.905038800e+01 3.112457842e+01 3.315461935e+01 3.522466907e+01 - 3.725592204e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.314439941e+00 7.991712547e+00 1.010250509e+01 - 1.233030628e+01 1.438998294e+01 1.653781494e+01 1.858293962e+01 2.069777488e+01 2.273742280e+01 - 2.483462137e+01 2.687200807e+01 2.895838198e+01 3.099486315e+01 3.307398403e+01 3.511018799e+01 - 3.718414961e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.881171887e+00 9.659849376e+00 - 1.183211546e+01 1.409855158e+01 1.619170874e+01 1.836194201e+01 2.042872151e+01 2.255844285e+01 - 2.461338018e+01 2.672125676e+01 2.877005812e+01 3.086448920e+01 3.290983470e+01 3.499526017e+01 - 3.703855324e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.428574595e+00 - 1.130125690e+01 1.353049122e+01 1.583555821e+01 1.796136884e+01 2.015509769e+01 2.224376644e+01 - 2.438963798e+01 2.646044737e+01 2.858020576e+01 3.064110414e+01 3.274467924e+01 3.479957666e+01 - 3.689226994e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 9.962757336e+00 1.292281465e+01 1.520522645e+01 1.754815183e+01 1.970559920e+01 2.192317763e+01 - 2.403363816e+01 2.619633348e+01 2.828327881e+01 3.041566534e+01 3.248906849e+01 3.460251916e+01 - 3.666742283e+01 - 0.000000000e+00 2.547899246e+00 4.405329177e+00 6.522210196e+00 8.447112650e+00 1.051432594e+01 - 1.246332876e+01 1.451055309e+01 1.647193967e+01 1.850834810e+01 2.047727734e+01 2.250690370e+01 - 2.448090966e+01 2.650588460e+01 2.848354094e+01 3.050512753e+01 3.248553409e+01 3.450453934e+01 - 3.648708729e+01 - 0.000000000e+00 2.000000060e+00 4.405329229e+00 6.333889659e+00 8.447112571e+00 1.039698481e+01 - 1.246332881e+01 1.442505015e+01 1.647193972e+01 1.844103196e+01 2.047727740e+01 2.245137479e+01 - 2.448090958e+01 2.645862231e+01 2.848354099e+01 3.046398589e+01 3.248553466e+01 3.446811374e+01 - 3.648710592e+01 - 0.000000000e+00 0.000000000e+00 3.633238689e+00 6.138763054e+00 8.137293744e+00 1.027806345e+01 - 1.225919789e+01 1.433894291e+01 1.631855932e+01 1.837342234e+01 2.035413803e+01 2.239568152e+01 - 2.437794507e+01 2.641125884e+01 2.839502628e+01 3.042277721e+01 3.240789197e+01 3.443164309e+01 - 3.641792423e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.201427049e+00 7.811657658e+00 9.874668506e+00 - 1.205081757e+01 1.406452673e+01 1.616341247e+01 1.816308299e+01 2.023009313e+01 2.222447971e+01 - 2.427445387e+01 2.626665918e+01 2.830617798e+01 3.029751033e+01 3.233002374e+01 3.432109170e+01 - 3.634861749e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.738781378e+00 9.447222520e+00 - 1.156960306e+01 1.378309887e+01 1.582913733e+01 1.794966952e+01 1.997024945e+01 2.205164162e+01 - 2.406079132e+01 2.612108086e+01 2.812430797e+01 3.017160975e+01 3.217150135e+01 3.421010403e+01 - 3.620802300e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.257451933e+00 - 1.105694124e+01 1.323435598e+01 1.548519763e+01 1.756277196e+01 1.970600932e+01 2.174772720e+01 - 2.384472312e+01 2.586919977e+01 2.794096794e+01 2.995587645e+01 3.201201116e+01 3.402112528e+01 - 3.606675166e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 9.763339327e+00 1.264746219e+01 1.487626127e+01 1.716370596e+01 1.927183856e+01 2.143812448e+01 - 2.350088847e+01 2.561414004e+01 2.765419925e+01 2.973816752e+01 3.176515172e+01 3.383082644e+01 - 3.584960512e+01 - 0.000000000e+00 2.481004238e+00 4.299912398e+00 6.369270348e+00 8.253280581e+00 1.027470286e+01 - 1.218198013e+01 1.418410351e+01 1.610333808e+01 1.809501801e+01 2.002153570e+01 2.200666667e+01 - 2.393808669e+01 2.591872611e+01 2.785367118e+01 2.983103855e+01 3.176863965e+01 3.374351660e+01 - 3.568319185e+01 - 0.000000000e+00 1.952583739e+00 4.299912504e+00 6.187424645e+00 8.253280556e+00 1.016139089e+01 - 1.218198010e+01 1.410153544e+01 1.610333806e+01 1.803001207e+01 2.002153580e+01 2.195304333e+01 - 2.393808666e+01 2.587308564e+01 2.785367116e+01 2.979130837e+01 3.176864093e+01 3.370834104e+01 - 3.568318659e+01 - 0.000000000e+00 0.000000000e+00 3.554558666e+00 5.999039764e+00 7.954072832e+00 1.004656007e+01 - 1.198484640e+01 1.401838662e+01 1.595521720e+01 1.796472404e+01 1.990261975e+01 2.189926206e+01 - 2.383865395e+01 2.582734780e+01 2.776819284e+01 2.975151432e+01 3.169366049e+01 3.367311965e+01 - 3.561639087e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.093754019e+00 7.639658053e+00 9.656941460e+00 - 1.178362753e+01 1.375336262e+01 1.580539850e+01 1.776159063e+01 1.978283329e+01 2.173392829e+01 - 2.373871490e+01 2.568770594e+01 2.768239394e+01 2.963054289e+01 3.161846477e+01 3.356635797e+01 - 3.554946085e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.603161243e+00 9.244187945e+00 - 1.131880785e+01 1.348159631e+01 1.548254861e+01 1.755550174e+01 1.953188350e+01 2.156702142e+01 - 2.353237118e+01 2.554712310e+01 2.750675643e+01 2.950896276e+01 3.146537610e+01 3.345918185e+01 - 3.541369465e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 8.094508178e+00 - 1.082372477e+01 1.295150986e+01 1.515040294e+01 1.718181132e+01 1.927670603e+01 2.127350022e+01 - 2.332371430e+01 2.530386433e+01 2.732970542e+01 2.930061841e+01 3.131135757e+01 3.327667724e+01 - 3.527726481e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 9.573493583e+00 1.238469411e+01 1.456213057e+01 1.679641361e+01 1.885733841e+01 2.097450802e+01 - 2.299162803e+01 2.505754870e+01 2.705274702e+01 2.909037482e+01 3.107294920e+01 3.309290420e+01 - 3.506755287e+01 - 0.000000000e+00 2.416941166e+00 4.199012249e+00 6.222831400e+00 8.067713907e+00 1.004527187e+01 - 1.191261570e+01 1.387154209e+01 1.575043074e+01 1.769927369e+01 1.958519467e+01 2.152771420e+01 - 2.341836862e+01 2.535655122e+01 2.725060944e+01 2.918563236e+01 3.108225516e+01 3.301487244e+01 - 3.491349586e+01 - 0.000000000e+00 1.907342947e+00 4.199012322e+00 6.047245771e+00 8.067713849e+00 9.935855282e+00 - 1.191261564e+01 1.379181146e+01 1.575043068e+01 1.763650132e+01 1.958519474e+01 2.147593316e+01 - 2.341836870e+01 2.531247872e+01 2.725060951e+01 2.914726738e+01 3.108225550e+01 3.298090430e+01 - 3.491349293e+01 - 0.000000000e+00 0.000000000e+00 3.479506591e+00 5.865379888e+00 7.778765122e+00 9.824979659e+00 - 1.172224701e+01 1.371152301e+01 1.560739504e+01 1.757345802e+01 1.947036209e+01 2.142400049e+01 - 2.332235077e+01 2.526831281e+01 2.716806705e+01 2.910884065e+01 3.100985193e+01 3.294689575e+01 - 3.484899453e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.991085026e+00 7.475202477e+00 9.448681097e+00 - 1.152795294e+01 1.345558011e+01 1.546272788e+01 1.737729180e+01 1.935469304e+01 2.126434037e+01 - 2.322584639e+01 2.513346431e+01 2.708521629e+01 2.899202262e+01 3.093724016e+01 3.284380094e+01 - 3.478435778e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.473886568e+00 9.050137461e+00 - 1.107898571e+01 1.319315628e+01 1.515092504e+01 1.717828521e+01 1.911234255e+01 2.110316836e+01 - 2.302657869e+01 2.499771145e+01 2.691560473e+01 2.887461929e+01 3.078940482e+01 3.274030386e+01 - 3.465325137e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.939231030e+00 - 1.060090511e+01 1.268110983e+01 1.483018448e+01 1.681736488e+01 1.886592815e+01 2.081969632e+01 - 2.282508811e+01 2.476278942e+01 2.674463486e+01 2.867341952e+01 3.064067662e+01 3.256406144e+01 - 3.452151271e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 9.392621858e+00 1.213371490e+01 1.426189401e+01 1.644518517e+01 1.846087415e+01 2.053096416e+01 - 2.250436128e+01 2.452492892e+01 2.647716179e+01 2.847039416e+01 3.041043924e+01 3.238659900e+01 - 3.431899598e+01 - 0.000000000e+00 2.355531216e+00 4.102346700e+00 6.082486912e+00 7.889896036e+00 9.825395918e+00 - 1.165448642e+01 1.357200071e+01 1.541223677e+01 1.732001612e+01 1.916704172e+01 2.106871572e+01 - 2.292031176e+01 2.481779837e+01 2.667268072e+01 2.856711661e+01 3.042447590e+01 3.231658818e+01 - 3.417587522e+01 - 0.000000000e+00 1.864142417e+00 4.102346768e+00 5.912960578e+00 7.889895974e+00 9.719750066e+00 - 1.165448648e+01 1.349501676e+01 1.541223684e+01 1.725940581e+01 1.916704178e+01 2.101871814e+01 - 2.292031170e+01 2.477524363e+01 2.667268065e+01 2.853007278e+01 3.042447662e+01 3.228378879e+01 - 3.417587896e+01 - 0.000000000e+00 0.000000000e+00 3.407858570e+00 5.737405691e+00 7.610877758e+00 9.612703007e+00 - 1.147066616e+01 1.341749684e+01 1.527412341e+01 1.719853529e+01 1.905616171e+01 2.096857483e+01 - 2.282759919e+01 2.473259928e+01 2.659297998e+01 2.849296969e+01 3.035456465e+01 3.225095355e+01 - 3.411360030e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.893112586e+00 7.317821882e+00 9.249298279e+00 - 1.128307567e+01 1.317034436e+01 1.513444309e+01 1.700911320e+01 1.894447847e+01 2.081440651e+01 - 2.273441945e+01 2.460239056e+01 2.651298319e+01 2.838017199e+01 3.028445376e+01 3.215140473e+01 - 3.405119311e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.350568630e+00 8.864513586e+00 - 1.084945435e+01 1.291696513e+01 1.483333396e+01 1.681696261e+01 1.871045203e+01 2.065878622e+01 - 2.254200146e+01 2.447131332e+01 2.634920460e+01 2.826681204e+01 3.014170454e+01 3.205147432e+01 - 3.392459435e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.791151573e+00 - 1.038783818e+01 1.242238309e+01 1.452363523e+01 1.646840420e+01 1.847252101e+01 2.038504166e+01 - 2.234744785e+01 2.424446115e+01 2.618412122e+01 2.807252804e+01 2.999809689e+01 3.188129107e+01 - 3.379739068e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 9.220176218e+00 1.189379556e+01 1.397468983e+01 1.610902191e+01 1.808132355e+01 2.010624250e+01 - 2.203771771e+01 2.401478563e+01 2.592583011e+01 2.787649014e+01 2.977576937e+01 3.170993764e+01 - 3.360183289e+01 - 0.000000000e+00 2.296613216e+00 4.009656725e+00 5.947863786e+00 7.719352748e+00 9.614490098e+00 - 1.140690469e+01 1.328468216e+01 1.508785561e+01 1.695623565e+01 1.876596356e+01 2.062844979e+01 - 2.244258971e+01 2.430103349e+01 2.611834605e+01 2.797384482e+01 2.979354784e+01 3.164680633e+01 - 3.346837941e+01 - 0.000000000e+00 1.822857869e+00 4.009656820e+00 5.784208920e+00 7.719352843e+00 9.512497929e+00 - 1.140690478e+01 1.321035963e+01 1.508785557e+01 1.689772057e+01 1.876596352e+01 2.058018036e+01 - 2.244258967e+01 2.425994959e+01 2.611834614e+01 2.793808134e+01 2.979354872e+01 3.161513737e+01 - 3.346837401e+01 - 0.000000000e+00 0.000000000e+00 3.339409086e+00 5.614770369e+00 7.449957710e+00 9.409161305e+00 - 1.122943025e+01 1.313552308e+01 1.495451222e+01 1.683895573e+01 1.865891371e+01 2.053177106e+01 - 2.235308028e+01 2.421877971e+01 2.604139909e+01 2.790226094e+01 2.972605285e+01 3.158343699e+01 - 3.340824747e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.799554257e+00 7.167085873e+00 9.058252065e+00 - 1.104833639e+01 1.289688891e+01 1.481966463e+01 1.665606912e+01 1.855109292e+01 2.038292474e+01 - 2.226312224e+01 2.409306725e+01 2.596416795e+01 2.779335892e+01 2.965836578e+01 3.148732991e+01 - 3.334799579e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.232850421e+00 8.686805076e+00 - 1.062958781e+01 1.265227563e+01 1.452891877e+01 1.647056272e+01 1.832513320e+01 2.023268440e+01 - 2.207734216e+01 2.396652108e+01 2.580604195e+01 2.768391740e+01 2.952054480e+01 3.139085169e+01 - 3.322576496e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.649839671e+00 - 1.018393279e+01 1.217462020e+01 1.422992225e+01 1.613398502e+01 1.809542406e+01 1.996836709e+01 - 2.188951162e+01 2.374748930e+01 2.564666334e+01 2.749633528e+01 2.938189979e+01 3.122654172e+01 - 3.310296154e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 9.055653662e+00 1.166426682e+01 1.369972708e+01 1.578700704e+01 1.771765587e+01 1.969919467e+01 - 2.159043831e+01 2.352574641e+01 2.539727058e+01 2.730706926e+01 2.916723764e+01 3.106110761e+01 - 3.291414776e+01 - 0.000000000e+00 2.240036964e+00 3.920704342e+00 5.818618598e+00 7.555647997e+00 9.412015804e+00 - 1.116923785e+01 1.300885304e+01 1.477645849e+01 1.660700397e+01 1.838093559e+01 2.020579224e+01 - 2.198398257e+01 2.380493740e+01 2.558619007e+01 2.740430233e+01 2.918786240e+01 3.100380959e+01 - 3.278917275e+01 - 0.000000000e+00 1.783375229e+00 3.920704254e+00 5.660659432e+00 7.555648040e+00 9.313568270e+00 - 1.116923789e+01 1.293711257e+01 1.477645854e+01 1.655052124e+01 1.838093550e+01 2.015919934e+01 - 2.198398248e+01 2.376528042e+01 2.558618999e+01 2.736978067e+01 2.918786323e+01 3.097324391e+01 - 3.278916861e+01 - 0.000000000e+00 0.000000000e+00 3.273969106e+00 5.497155115e+00 7.295588319e+00 9.213831275e+00 - 1.099791946e+01 1.286487881e+01 1.464774240e+01 1.649379914e+01 1.827760162e+01 2.011247225e+01 - 2.189758044e+01 2.372554092e+01 2.551191440e+01 2.733520475e+01 2.912271047e+01 3.094264451e+01 - 3.273114420e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.710150626e+00 7.022598458e+00 8.875044688e+00 - 1.082312875e+01 1.263450890e+01 1.451758339e+01 1.631725270e+01 1.817352789e+01 1.996878885e+01 - 2.181074807e+01 2.360419038e+01 2.543736637e+01 2.723008211e+01 2.905737475e+01 3.084987189e+01 - 3.267297399e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.120403716e+00 8.516540852e+00 - 1.041880970e+01 1.239840086e+01 1.423689179e+01 1.613819270e+01 1.795539406e+01 1.982376809e+01 - 2.163140758e+01 2.348204000e+01 2.528472406e+01 2.712444194e+01 2.892433509e+01 3.075674526e+01 - 3.255498734e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.514899464e+00 - 9.988645674e+00 1.193716864e+01 1.394827946e+01 1.581323844e+01 1.773366190e+01 1.956859676e+01 - 2.145009945e+01 2.327059523e+01 2.513087991e+01 2.694336169e+01 2.879050449e+01 3.059813222e+01 - 3.243644589e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 8.898592006e+00 1.144451318e+01 1.343627814e+01 1.547829704e+01 1.736892334e+01 1.930876486e+01 - 2.116136558e+01 2.305654859e+01 2.489012005e+01 2.676066555e+01 2.858327865e+01 3.043844174e+01 - 3.225417544e+01 - 0.000000000e+00 2.185664654e+00 3.835269721e+00 5.694434842e+00 7.398379460e+00 9.217477309e+00 - 1.094090265e+01 1.274383736e+01 1.447728178e+01 1.627146492e+01 1.801101377e+01 1.979970746e+01 - 2.154336588e+01 2.332829432e+01 2.507490795e+01 2.685709311e+01 2.860593381e+01 3.038602978e+01 - 3.213660999e+01 - 0.000000000e+00 1.745589056e+00 3.835269687e+00 5.542006648e+00 7.398379427e+00 9.122471952e+00 - 1.094090275e+01 1.267460423e+01 1.447728175e+01 1.621695605e+01 1.801101387e+01 1.975474253e+01 - 2.154336598e+01 2.329002291e+01 2.507490792e+01 2.682377766e+01 2.860593443e+01 3.035653099e+01 - 3.213660394e+01 - 0.000000000e+00 0.000000000e+00 3.211364508e+00 5.384265847e+00 7.147385761e+00 9.026230717e+00 - 1.077556264e+01 1.260489843e+01 1.435305952e+01 1.616221770e+01 1.791128825e+01 1.970964912e+01 - 2.145998142e+01 2.325167245e+01 2.500322674e+01 2.679041012e+01 2.854305780e+01 3.032700104e+01 - 3.208059546e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.624662554e+00 6.883994781e+00 8.699217494e+00 - 1.060689363e+01 1.238255430e+01 1.422745394e+01 1.599182855e+01 1.781085379e+01 1.957097977e+01 - 2.137618445e+01 2.313455797e+01 2.493128424e+01 2.668895788e+01 2.848000501e+01 3.023746855e+01 - 3.202447062e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.012926452e+00 8.353287638e+00 - 1.021658953e+01 1.215470725e+01 1.395652697e+01 1.581902930e+01 1.760032031e+01 1.943102813e+01 - 2.120309793e+01 2.301667663e+01 2.478396746e+01 2.658700931e+01 2.835160840e+01 3.014759633e+01 - 3.191059732e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.385967014e+00 - 9.801475643e+00 1.170942716e+01 1.367800122e+01 1.550536412e+01 1.738633568e+01 1.918473932e+01 - 2.102812459e+01 2.281260027e+01 2.463549830e+01 2.641224359e+01 2.822245356e+01 2.999451708e+01 - 3.179620337e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 8.748565823e+00 1.123396766e+01 1.318367271e+01 1.518211484e+01 1.703425233e+01 1.893397975e+01 - 2.074943257e+01 2.260602840e+01 2.440312279e+01 2.623592804e+01 2.802245013e+01 2.984040370e+01 - 3.162028997e+01 - 0.000000000e+00 2.133368969e+00 3.753150455e+00 5.575020631e+00 7.247176236e+00 9.030416585e+00 - 1.072136101e+01 1.248901147e+01 1.418962058e+01 1.594882860e+01 1.765532694e+01 1.940923913e+01 - 2.111970209e+01 2.286998167e+01 2.458329572e+01 2.633092869e+01 2.804639171e+01 2.979200980e+01 - 3.150915149e+01 - 0.000000000e+00 1.709402545e+00 3.753150349e+00 5.427968785e+00 7.247176261e+00 8.938757257e+00 - 1.072136104e+01 1.242221583e+01 1.418962061e+01 1.589623852e+01 1.765532684e+01 1.936585691e+01 - 2.111970198e+01 2.283305736e+01 2.458329574e+01 2.629878597e+01 2.804639199e+01 2.976354886e+01 - 3.150914851e+01 - 0.000000000e+00 0.000000000e+00 3.151434908e+00 5.275831246e+00 7.004995775e+00 8.845914582e+00 - 1.056183259e+01 1.235496747e+01 1.406976684e+01 1.584342871e+01 1.755910928e+01 1.932235164e+01 - 2.103925106e+01 2.279605723e+01 2.451413650e+01 2.626659332e+01 2.798572752e+01 2.973505788e+01 - 3.145510965e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.542869610e+00 6.750938115e+00 8.530347544e+00 - 1.039911534e+01 1.214042568e+01 1.394858806e+01 1.567902533e+01 1.746221244e+01 1.918855650e+01 - 2.095840498e+01 2.268306082e+01 2.444472693e+01 2.616870892e+01 2.792489474e+01 2.964867474e+01 - 3.140095848e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.910139722e+00 8.196645258e+00 - 1.002243740e+01 1.192061042e+01 1.368715414e+01 1.551231286e+01 1.725906790e+01 1.905353296e+01 - 2.079139816e+01 2.256932973e+01 2.430258747e+01 2.607034938e+01 2.780101205e+01 2.956196599e+01 - 3.129109140e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.262706113e+00 - 9.621960777e+00 1.149084108e+01 1.341843593e+01 1.520962343e+01 1.705261586e+01 1.881587981e+01 - 2.062258355e+01 2.237241665e+01 2.415934388e+01 2.590172210e+01 2.767640267e+01 2.941426617e+01 - 3.118071950e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 8.605182656e+00 1.103210725e+01 1.294129213e+01 1.489774341e+01 1.671283701e+01 1.857394100e+01 - 2.035365446e+01 2.217311219e+01 2.393511935e+01 2.573161002e+01 2.748342059e+01 2.926557513e+01 - 3.101098522e+01 - 0.000000000e+00 2.083032131e+00 3.674159040e+00 5.460105652e+00 7.101695014e+00 8.850410390e+00 - 1.051011525e+01 1.224379828e+01 1.391282325e+01 1.563836473e+01 1.731306909e+01 1.903350338e+01 - 2.071203133e+01 2.242896214e+01 2.411023993e+01 2.582461819e+01 2.750796776e+01 2.922040308e+01 - 3.090536906e+01 - 0.000000000e+00 1.674725691e+00 3.674159036e+00 5.318285381e+00 7.101695010e+00 8.762007131e+00 - 1.051011524e+01 1.217937450e+01 1.391282324e+01 1.558764181e+01 1.731306909e+01 1.899166127e+01 - 2.071203133e+01 2.239334862e+01 2.411023992e+01 2.579361631e+01 2.750796867e+01 2.919295348e+01 - 3.090536696e+01 - 0.000000000e+00 0.000000000e+00 3.094031694e+00 5.171600661e+00 6.868090790e+00 8.672471443e+00 - 1.035624225e+01 1.211451753e+01 1.379722046e+01 1.553670848e+01 1.722026500e+01 1.894970137e+01 - 2.063443488e+01 2.235766256e+01 2.404353486e+01 2.576256676e+01 2.744945735e+01 2.916547360e+01 - 3.085324788e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.464568108e+00 6.623117368e+00 8.368043557e+00 - 1.019931704e+01 1.190756850e+01 1.368034943e+01 1.537813010e+01 1.712681094e+01 1.882064949e+01 - 2.055646043e+01 2.224867329e+01 2.397659032e+01 2.566815457e+01 2.739078453e+01 2.908215439e+01 - 3.080101845e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.811786466e+00 8.046244016e+00 - 9.835900669e+00 1.169557023e+01 1.342815412e+01 1.521734113e+01 1.693085677e+01 1.869042166e+01 - 2.039537006e+01 2.213898086e+01 2.383948884e+01 2.557328739e+01 2.727129411e+01 2.899852448e+01 - 3.069504927e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.144806981e+00 - 9.449673952e+00 1.128089772e+01 1.316898155e+01 1.492533351e+01 1.673173559e+01 1.846117235e+01 - 2.023254894e+01 2.194903889e+01 2.370133035e+01 2.541063386e+01 2.715110839e+01 2.885605940e+01 - 3.058859528e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 8.468080264e+00 1.083844857e+01 1.270856499e+01 1.462451965e+01 1.640393222e+01 1.822781858e+01 - 1.997312114e+01 2.175680693e+01 2.348503845e+01 2.524655870e+01 2.696495901e+01 2.871264536e+01 - 3.042487465e+01 - 0.000000000e+00 2.034545422e+00 3.598122132e+00 5.349440031e+00 6.961618156e+00 8.677066651e+00 - 1.030670460e+01 1.200766379e+01 1.364628616e+01 1.533939696e+01 1.698349453e+01 1.867168154e+01 - 2.031946547e+01 2.200427486e+01 2.365470984e+01 2.533705825e+01 2.698949124e+01 2.866996462e+01 - 3.032395842e+01 - 0.000000000e+00 1.641475555e+00 3.598122151e+00 5.212715073e+00 6.961618175e+00 8.591834742e+00 - 1.030670462e+01 1.194555031e+01 1.364628618e+01 1.529049272e+01 1.698349455e+01 1.863133957e+01 - 2.031946549e+01 2.196993802e+01 2.365470986e+01 2.530716784e+01 2.698949166e+01 2.864350089e+01 - 3.032395870e+01 - 0.000000000e+00 0.000000000e+00 3.039017898e+00 5.071341887e+00 6.736367567e+00 8.505520484e+00 - 1.015834018e+01 1.188302257e+01 1.353482410e+01 1.524138720e+01 1.689401537e+01 1.859088488e+01 - 2.024464948e+01 2.193553190e+01 2.359039513e+01 2.527723170e+01 2.693307698e+01 2.861700543e+01 - 3.027370249e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.389569930e+00 6.500244478e+00 8.211943424e+00 - 1.000705708e+01 1.168346969e+01 1.342214924e+01 1.508848272e+01 1.680391461e+01 1.846645314e+01 - 2.016947208e+01 2.183044589e+01 2.352585153e+01 2.518620145e+01 2.687650840e+01 2.853667191e+01 - 3.022334900e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.717628461e+00 7.901741556e+00 - 9.656560317e+00 1.147908642e+01 1.317895353e+01 1.493346395e+01 1.661496464e+01 1.834089688e+01 - 2.001414470e+01 2.172468746e+01 2.339365748e+01 2.509473611e+01 2.676129643e+01 2.845604038e+01 - 3.012117268e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 7.031982469e+00 - 9.284219831e+00 1.107912248e+01 1.292908065e+01 1.465186223e+01 1.642298490e+01 1.811983426e+01 - 1.985716193e+01 2.154153595e+01 2.326045260e+01 2.493790155e+01 2.664541964e+01 2.831867373e+01 - 3.001853534e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 8.336923489e+00 1.065254409e+01 1.248496224e+01 1.436183038e+01 1.610684815e+01 1.789484391e+01 - 1.960699000e+01 2.135619373e+01 2.305188782e+01 2.477970713e+01 2.646592610e+01 2.818040025e+01 - 2.986067242e+01 - 0.000000000e+00 1.987807751e+00 3.524878987e+00 5.242791990e+00 6.826651221e+00 8.510021984e+00 - 1.011070199e+01 1.178011287e+01 1.338944999e+01 1.505129819e+01 1.666591139e+01 1.832301477e+01 - 1.994118050e+01 2.159502896e+01 2.321574947e+01 2.486722631e+01 2.648987195e+01 2.813954335e+01 - 2.976368897e+01 - 0.000000000e+00 1.609575214e+00 3.524879047e+00 5.111034160e+00 6.826651281e+00 8.427881905e+00 - 1.011070205e+01 1.172025175e+01 1.338945005e+01 1.500416699e+01 1.666591145e+01 1.828413527e+01 - 1.994118043e+01 2.156193692e+01 2.321574940e+01 2.483841938e+01 2.648987267e+01 2.811403896e+01 - 2.976368929e+01 - 0.000000000e+00 0.000000000e+00 2.986266103e+00 4.974839596e+00 6.609545235e+00 8.344708232e+00 - 9.967708271e+00 1.165999504e+01 1.328202479e+01 1.495684362e+01 1.657967385e+01 1.824514824e+01 - 1.986907540e+01 2.152877856e+01 2.315376535e+01 2.480956891e+01 2.643550258e+01 2.808850293e+01 - 2.971526259e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.317700241e+00 6.382052250e+00 8.061711532e+00 - 9.821926337e+00 1.146765326e+01 1.317344139e+01 1.480947105e+01 1.649284273e+01 1.812522109e+01 - 1.979662500e+01 2.142749815e+01 2.309156257e+01 2.472183578e+01 2.638098518e+01 2.801108009e+01 - 2.966672797e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.627445216e+00 7.762820583e+00 - 9.484028145e+00 1.127069557e+01 1.293902052e+01 1.466007843e+01 1.631072194e+01 1.800421957e+01 - 1.964691671e+01 2.132557536e+01 2.296415312e+01 2.463368724e+01 2.626994452e+01 2.793337172e+01 - 2.956825488e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.923967084e+00 - 9.125232320e+00 1.088507560e+01 1.269821658e+01 1.438862373e+01 1.612570559e+01 1.779113916e+01 - 1.949562642e+01 2.114904475e+01 2.283577796e+01 2.448252606e+01 2.615826874e+01 2.780097674e+01 - 2.946933805e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 8.211402098e+00 1.047397943e+01 1.226999352e+01 1.410910663e+01 1.582094568e+01 1.757430424e+01 - 1.925447986e+01 2.097042050e+01 2.263474773e+01 2.433006559e+01 2.598526502e+01 2.766771482e+01 - 2.931718488e+01 - 0.000000000e+00 1.942724943e+00 3.454280224e+00 5.139945953e+00 6.696520549e+00 8.348938889e+00 - 9.921710642e+00 1.156068558e+01 1.314179511e+01 1.477348601e+01 1.635967749e+01 1.798679835e+01 - 1.957641155e+01 2.120039718e+01 2.279247122e+01 2.441417222e+01 2.600810129e+01 2.762806356e+01 - 2.922344250e+01 - 0.000000000e+00 1.578953242e+00 3.454280199e+00 5.013035032e+00 6.696520655e+00 8.269815816e+00 - 9.921710617e+00 1.150302227e+01 1.314179509e+01 1.472808507e+01 1.635967747e+01 1.794934600e+01 - 1.957641152e+01 2.116851971e+01 2.279247120e+01 2.438642289e+01 2.600810126e+01 2.760349367e+01 - 2.922343358e+01 - 0.000000000e+00 0.000000000e+00 2.935658571e+00 4.881894157e+00 6.487362680e+00 8.189707114e+00 - 9.783957862e+00 1.144498177e+01 1.303830933e+01 1.468250095e+01 1.627660335e+01 1.791179119e+01 - 1.950695179e+01 2.113657928e+01 2.273276144e+01 2.435863166e+01 2.595572630e+01 2.757889562e+01 - 2.917678916e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.248797337e+00 6.268292902e+00 7.917036391e+00 - 9.643544761e+00 1.125967743e+01 1.293371854e+01 1.454052691e+01 1.619296278e+01 1.779625983e+01 - 1.943716265e+01 2.103901245e+01 2.267284290e+01 2.427411644e+01 2.590321096e+01 2.750431338e+01 - 2.913003473e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.541032380e+00 7.629186871e+00 - 9.317943343e+00 1.106996701e+01 1.270786190e+01 1.439662505e+01 1.601750672e+01 1.767970343e+01 - 1.929293792e+01 2.094083292e+01 2.255010279e+01 2.418920462e+01 2.579624115e+01 2.742945819e+01 - 2.903517265e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.820514352e+00 - 8.972371409e+00 1.069834878e+01 1.247590960e+01 1.413507378e+01 1.583928671e+01 1.747441333e+01 - 1.914720328e+01 2.077076375e+01 2.242644106e+01 2.404358012e+01 2.568866525e+01 2.730191491e+01 - 2.893988659e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 8.091228668e+00 1.030236973e+01 1.206320397e+01 1.386582052e+01 1.554563116e+01 1.726553824e+01 - 1.891486519e+01 2.059869604e+01 2.223276407e+01 2.389671559e+01 2.552199503e+01 2.717354407e+01 - 2.879330685e+01 - 0.000000000e+00 1.899210453e+00 3.386186969e+00 5.040701824e+00 6.570972014e+00 8.193503458e+00 - 9.739361579e+00 1.134895419e+01 1.290283835e+01 1.450541929e+01 1.606419558e+01 1.766237680e+01 - 1.922444725e+01 2.081961021e+01 2.238404993e+01 2.397701342e+01 2.554323896e+01 2.713452769e+01 - 2.870214856e+01 - 0.000000000e+00 1.549543051e+00 3.386186937e+00 4.918524730e+00 6.570971982e+00 8.117327218e+00 - 9.739361678e+00 1.129343762e+01 1.290283832e+01 1.446170827e+01 1.606419555e+01 1.762631846e+01 - 1.922444735e+01 2.078891926e+01 2.238404990e+01 2.395029677e+01 2.554323893e+01 2.711087314e+01 - 2.870214826e+01 - 0.000000000e+00 0.000000000e+00 2.887085414e+00 4.792319676e+00 6.369577361e+00 8.040211927e+00 - 9.606728021e+00 1.123756166e+01 1.280320048e+01 1.441782258e+01 1.598421112e+01 1.759016250e+01 - 1.915757144e+01 2.075816824e+01 2.232656146e+01 2.392354045e+01 2.549281278e+01 2.708719134e+01 - 2.865722988e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.182710846e+00 6.158736131e+00 7.777628306e+00 - 9.471559213e+00 1.105913162e+01 1.270250955e+01 1.428112174e+01 1.590368707e+01 1.747892490e+01 - 1.909038155e+01 2.066422877e+01 2.226887418e+01 2.384216790e+01 2.544225229e+01 2.701538196e+01 - 2.861222058e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.458199945e+00 7.500566687e+00 - 9.157971083e+00 1.087650077e+01 1.248501869e+01 1.414258334e+01 1.573474111e+01 1.736671027e+01 - 1.895151297e+01 2.056970539e+01 2.215069483e+01 2.376041761e+01 2.533925886e+01 2.694331401e+01 - 2.852088448e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.721395932e+00 - 8.825320978e+00 1.051856286e+01 1.226171409e+01 1.389070684e+01 1.556315993e+01 1.716903020e+01 - 1.881120524e+01 2.040594800e+01 2.203163703e+01 2.362020145e+01 2.523568761e+01 2.682050954e+01 - 2.842914311e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.976135877e+00 1.013735778e+01 1.186417057e+01 1.363148128e+01 1.528035311e+01 1.696793103e+01 - 1.858747207e+01 2.024028496e+01 2.184514308e+01 2.347880307e+01 2.507520384e+01 2.669691622e+01 - 2.828800834e+01 - 0.000000000e+00 1.857182264e+00 3.320469982e+00 4.944873322e+00 6.449768580e+00 8.043423446e+00 - 9.563311668e+00 1.114452076e+01 1.267212995e+01 1.424659359e+01 1.577890940e+01 1.734914025e+01 - 1.888462556e+01 2.045195221e+01 2.198971705e+01 2.355492757e+01 2.509441072e+01 2.665800967e+01 - 2.819883661e+01 - 0.000000000e+00 1.521283156e+00 3.320470012e+00 4.827323246e+00 6.449768480e+00 7.970127914e+00 - 9.563311568e+00 1.109110286e+01 1.267212985e+01 1.420453462e+01 1.577890943e+01 1.731444459e+01 - 1.888462546e+01 2.042242104e+01 2.198971708e+01 2.352922052e+01 2.509441088e+01 2.663524828e+01 - 2.819883467e+01 - 0.000000000e+00 0.000000000e+00 2.840444853e+00 4.705943470e+00 6.255963353e+00 7.895938926e+00 - 9.435682412e+00 1.103734291e+01 1.257625373e+01 1.416230955e+01 1.570194563e+01 1.727965595e+01 - 1.882027554e+01 2.039283262e+01 2.193440012e+01 2.350347557e+01 2.504588934e+01 2.661246260e+01 - 2.815561603e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.119301054e+00 6.053167393e+00 7.643217657e+00 - 9.305640552e+00 1.086563346e+01 1.247937527e+01 1.403076379e+01 1.562446810e+01 1.717261596e+01 - 1.875562682e+01 2.030243941e+01 2.187889412e+01 2.342517557e+01 2.499724051e+01 2.654336472e+01 - 2.811230437e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.378771694e+00 7.376705455e+00 - 9.003799360e+00 1.068992427e+01 1.227006404e+01 1.389746903e+01 1.546188704e+01 1.706464603e+01 - 1.862199481e+01 2.021149040e+01 2.176517349e+01 2.334651602e+01 2.489813412e+01 2.647402121e+01 - 2.802441563e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.626398981e+00 - 8.683787337e+00 1.034536448e+01 1.205521482e+01 1.365505221e+01 1.529679673e+01 1.687440632e+01 - 1.848699260e+01 2.005390364e+01 2.165061680e+01 2.321158719e+01 2.479847791e+01 2.635584945e+01 - 2.793614503e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.865875951e+00 9.978610644e+00 1.167250008e+01 1.340563250e+01 1.502459793e+01 1.668091012e+01 - 1.827167295e+01 1.989450240e+01 2.147114550e+01 2.307553293e+01 2.464404258e+01 2.623692731e+01 - 2.780033160e+01 - 0.000000000e+00 1.816565275e+00 3.257008895e+00 4.852286577e+00 6.332689543e+00 7.898426737e+00 - 9.393240389e+00 1.094701414e+01 1.244925062e+01 1.399653912e+01 1.550330092e+01 1.704651975e+01 - 1.855632885e+01 2.009675535e+01 2.160875633e+01 2.314714806e+01 2.466080129e+01 2.619764399e+01 - 2.771259063e+01 - 0.000000000e+00 1.494115735e+00 3.257008938e+00 4.739263393e+00 6.332689586e+00 7.827949464e+00 - 9.393240433e+00 1.089564934e+01 1.244925053e+01 1.395609657e+01 1.550330096e+01 1.701315742e+01 - 1.855632890e+01 2.006835905e+01 2.160875638e+01 2.312242871e+01 2.466080134e+01 2.617575766e+01 - 2.771258780e+01 - 0.000000000e+00 0.000000000e+00 2.795641913e+00 4.622604108e+00 6.146310560e+00 7.756623722e+00 - 9.270507852e+00 1.084395974e+01 1.235705489e+01 1.391549615e+01 1.542929250e+01 1.697970667e+01 - 1.849445029e+01 2.003990823e+01 2.155556418e+01 2.309767367e+01 2.461414384e+01 2.615384664e+01 - 2.767102559e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.058437795e+00 5.951387057e+00 7.513553533e+00 - 9.145482528e+00 1.067882645e+01 1.226390688e+01 1.378899466e+01 1.535479596e+01 1.687677376e+01 - 1.843228806e+01 1.995298475e+01 2.150219237e+01 2.302237978e+01 2.456736520e+01 2.608740204e+01 - 2.762938136e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.302583059e+00 7.257365738e+00 - 8.855137886e+00 1.050989070e+01 1.206259971e+01 1.366083064e+01 1.519844295e+01 1.677295722e+01 - 1.830377973e+01 1.986553308e+01 2.139283445e+01 2.294674438e+01 2.447206227e+01 2.602072450e+01 - 2.754486750e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.535325831e+00 - 8.547496550e+00 1.017842517e+01 1.185602522e+01 1.342767140e+01 1.503970419e+01 1.658999827e+01 - 1.817396909e+01 1.971398441e+01 2.128268192e+01 2.281698921e+01 2.437623670e+01 2.590708603e+01 - 2.745998852e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.760217732e+00 9.825818806e+00 1.148782596e+01 1.318784847e+01 1.477788723e+01 1.640394216e+01 - 1.796688270e+01 1.956071064e+01 2.111008283e+01 2.268616419e+01 2.422771992e+01 2.579273407e+01 - 2.732938315e+01 - 0.000000000e+00 1.777288198e+00 3.195691214e+00 4.762779382e+00 6.219529132e+00 7.758258898e+00 - 9.228849353e+00 1.075608780e+01 1.223380910e+01 1.375481740e+01 1.523688622e+01 1.675398445e+01 - 1.823898128e+01 1.975339667e+01 2.124049929e+01 2.275295984e+01 2.424164957e+01 2.575262166e+01 - 2.724255143e+01 - 0.000000000e+00 1.467987414e+00 3.195691212e+00 4.654188711e+00 6.219529130e+00 7.690541347e+00 - 9.228849351e+00 1.070673365e+01 1.223380910e+01 1.371595759e+01 1.523688622e+01 1.672192778e+01 - 1.823898128e+01 1.972611150e+01 2.124049929e+01 2.272920773e+01 2.424164983e+01 2.573159098e+01 - 2.724254737e+01 - 0.000000000e+00 0.000000000e+00 2.752588162e+00 4.542151411e+00 6.040422361e+00 7.622019199e+00 - 9.110911829e+00 1.065707136e+01 1.214521753e+01 1.367694806e+01 1.516577188e+01 1.668978720e+01 - 1.817952283e+01 1.969877474e+01 2.118938778e+01 2.270542167e+01 2.419681753e+01 2.571053879e+01 - 2.720261282e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.000000060e+00 5.853208445e+00 7.388401374e+00 - 8.990799170e+00 1.049837832e+01 1.205572266e+01 1.355538631e+01 1.509419444e+01 1.659087633e+01 - 1.811979528e+01 1.961524903e+01 2.113810581e+01 2.263307174e+01 2.415187037e+01 2.564669318e+01 - 2.716260200e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.229481110e+00 7.142326452e+00 - 8.711715735e+00 1.033607590e+01 1.186225458e+01 1.343224708e+01 1.494394076e+01 1.649112710e+01 - 1.799630466e+01 1.953122222e+01 2.103302032e+01 2.256039783e+01 2.406029212e+01 2.558262497e+01 - 2.708139107e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.447992419e+00 - 8.416193257e+00 1.001743788e+01 1.166378462e+01 1.320815520e+01 1.479142247e+01 1.631529872e+01 - 1.787157832e+01 1.938558686e+01 2.092718092e+01 2.243570917e+01 2.396821794e+01 2.547342599e+01 - 2.699983517e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.658946415e+00 9.678693416e+00 1.130980636e+01 1.297773244e+01 1.453977477e+01 1.613652953e+01 - 1.767255578e+01 1.923831417e+01 2.076131197e+01 2.231000521e+01 2.382549737e+01 2.536354989e+01 - 2.687432967e+01 - 0.000000000e+00 1.739285707e+00 3.136411713e+00 4.676200332e+00 6.110094734e+00 7.622682311e+00 - 9.069859212e+00 1.057141818e+01 1.202543969e+01 1.352101837e+01 1.497921329e+01 1.647103837e+01 - 1.793204420e+01 1.942129384e+01 2.088432135e+01 2.237169399e+01 2.383624556e+01 2.532218912e+01 - 2.678793088e+01 - 0.000000000e+00 1.442847826e+00 3.136411785e+00 4.571953074e+00 6.110094806e+00 7.557669398e+00 - 9.069859153e+00 1.052403451e+01 1.202543963e+01 1.348370976e+01 1.497921336e+01 1.644026118e+01 - 1.793204414e+01 1.939509769e+01 2.088432129e+01 2.234889000e+01 2.383624576e+01 2.530199838e+01 - 2.678792768e+01 - 0.000000000e+00 0.000000000e+00 2.711201052e+00 4.464445007e+00 5.938115477e+00 7.491894851e+00 - 8.956621191e+00 1.047635897e+01 1.194038032e+01 1.344625948e+01 1.491093519e+01 1.640940472e+01 - 1.787495758e+01 1.936885275e+01 2.083524887e+01 2.232605369e+01 2.379320189e+01 2.528178565e+01 - 2.674958834e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.943874430e+00 5.758457827e+00 7.267542451e+00 - 8.841323214e+00 1.032397824e+01 1.185446572e+01 1.332953923e+01 1.484221877e+01 1.631443584e+01 - 1.781761618e+01 1.928865705e+01 2.078601501e+01 2.225658912e+01 2.375004957e+01 2.522048684e+01 - 2.671117326e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.159323325e+00 7.031380840e+00 - 8.573279578e+00 1.016817775e+01 1.166868166e+01 1.321132463e+01 1.469794336e+01 1.621867288e+01 - 1.769904366e+01 1.920798687e+01 2.068511699e+01 2.218681751e+01 2.366212178e+01 2.515897753e+01 - 2.663319940e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.364226787e+00 - 8.289639045e+00 9.862116323e+00 1.147815598e+01 1.299612128e+01 1.455152204e+01 1.604983380e+01 - 1.757930037e+01 1.906814760e+01 2.058350463e+01 2.206709475e+01 2.357372429e+01 2.505412908e+01 - 2.655489986e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.561861525e+00 9.536964532e+00 1.113812229e+01 1.277491358e+01 1.430984370e+01 1.587820735e+01 - 1.738818247e+01 1.892675669e+01 2.042423278e+01 2.194641008e+01 2.343668495e+01 2.494863975e+01 - 2.643439324e+01 - 0.000000000e+00 1.702495337e+00 3.079072473e+00 4.592407553e+00 6.004206276e+00 7.491475043e+00 - 8.916008785e+00 1.039270263e+01 1.182380024e+01 1.329475869e+01 1.472985925e+01 1.619721767e+01 - 1.763501403e+01 1.909990219e+01 2.053963782e+01 2.200272564e+01 2.344392304e+01 2.490564027e+01 - 2.634797934e+01 - 0.000000000e+00 1.418650139e+00 3.079072411e+00 4.492419906e+00 6.004206345e+00 7.429114623e+00 - 8.916008723e+00 1.034725141e+01 1.182380031e+01 1.325897151e+01 1.472985931e+01 1.616769544e+01 - 1.763501410e+01 1.907477419e+01 2.053963776e+01 2.198085151e+01 2.344392337e+01 2.488627251e+01 - 2.634797692e+01 - 0.000000000e+00 0.000000000e+00 2.671403267e+00 4.389353293e+00 5.839218273e+00 7.366034697e+00 - 8.807380318e+00 1.030152457e+01 1.174220562e+01 1.322305050e+01 1.466436315e+01 1.613809825e+01 - 1.758025403e+01 1.904960013e+01 2.049256543e+01 2.195894677e+01 2.340263393e+01 2.486688500e+01 - 2.631120009e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.889955463e+00 5.666972073e+00 7.150772291e+00 - 8.696804795e+00 1.015533591e+01 1.165980261e+01 1.311107939e+01 1.459845282e+01 1.604699599e+01 - 1.752525300e+01 1.897267074e+01 2.044534057e+01 2.189231208e+01 2.336124205e+01 2.480808339e+01 - 2.627435026e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.091976257e+00 6.924335804e+00 - 8.439593016e+00 1.000591301e+01 1.148155676e+01 1.299769531e+01 1.446004178e+01 1.595514297e+01 - 1.741150458e+01 1.889529289e+01 2.034854989e+01 2.182538737e+01 2.327689492e+01 2.474908294e+01 - 2.619955362e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.283868541e+00 - 8.167610987e+00 9.712192964e+00 1.129882439e+01 1.279121226e+01 1.431960113e+01 1.579316067e+01 - 1.729664922e+01 1.876113930e+01 2.025108398e+01 2.171053581e+01 2.319210386e+01 2.464850275e+01 - 2.612444817e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.468775978e+00 9.400380316e+00 1.097247547e+01 1.257904536e+01 1.408770430e+01 1.562854104e+01 - 1.711328617e+01 1.862551805e+01 2.009828364e+01 2.159477466e+01 2.306063730e+01 2.454731633e+01 - 2.600884492e+01 - 0.000000000e+00 1.666859388e+00 3.023581130e+00 4.511268127e+00 5.901695258e+00 7.364428693e+00 - 8.767053435e+00 1.021965725e+01 1.162857062e+01 1.307567936e+01 1.448842810e+01 1.593208752e+01 - 1.734741929e+01 1.878871167e+01 2.020590159e+01 2.164546898e+01 2.306405959e+01 2.450231343e+01 - 2.592199939e+01 - 0.000000000e+00 1.395350790e+00 3.023581124e+00 4.415461528e+00 5.901695251e+00 7.304672029e+00 - 8.767053429e+00 1.017610311e+01 1.162857061e+01 1.304138567e+01 1.448842809e+01 1.590379714e+01 - 1.734741928e+01 1.876463223e+01 2.020590159e+01 2.162450750e+01 2.306405985e+01 2.448375340e+01 - 2.592199559e+01 - 0.000000000e+00 0.000000000e+00 2.633122859e+00 4.316753691e+00 5.743570495e+00 7.244237013e+00 - 8.662950071e+00 1.013228911e+01 1.155037698e+01 1.300696582e+01 1.442566279e+01 1.587543619e+01 - 1.729494280e+01 1.874050918e+01 2.016079260e+01 2.160351732e+01 2.302449277e+01 2.446517566e+01 - 2.588675301e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.838144391e+00 5.578599168e+00 7.037899114e+00 - 8.557010138e+00 9.992179245e+00 1.147142093e+01 1.289965660e+01 1.436250699e+01 1.578812954e+01 - 1.724223922e+01 1.866678631e+01 2.011553958e+01 2.153966059e+01 2.298482902e+01 2.440882588e+01 - 2.585144267e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.027315569e+00 6.821010621e+00 - 8.310434640e+00 9.849017234e+00 1.130057606e+01 1.279101446e+01 1.422985305e+01 1.570011476e+01 - 1.713322673e+01 1.859264036e+01 2.002278102e+01 2.147553031e+01 2.290399675e+01 2.435228889e+01 - 2.577976332e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.206768224e+00 - 8.049900497e+00 9.567416962e+00 1.112549493e+01 1.259309368e+01 1.409528385e+01 1.554486404e+01 - 1.702316970e+01 1.846406845e+01 1.992938544e+01 2.136546086e+01 2.282274579e+01 2.425589845e+01 - 2.570779322e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.379515071e+00 9.268704842e+00 1.081258680e+01 1.238980341e+01 1.387299166e+01 1.538712343e+01 - 1.684742035e+01 1.833411142e+01 1.978293861e+01 2.125453297e+01 2.269675050e+01 2.415893580e+01 - 2.559700309e+01 - 0.000000000e+00 1.632323861e+00 2.969851763e+00 4.432657803e+00 5.802403544e+00 7.241348233e+00 - 8.622764123e+00 1.005201639e+01 1.143945024e+01 1.286344383e+01 1.425454834e+01 1.567524057e+01 - 1.706881757e+01 1.848724414e+01 1.988259963e+01 2.129937512e+01 2.269607152e+01 2.411158996e+01 - 2.550933056e+01 - 0.000000000e+00 1.372908439e+00 2.969851715e+00 4.340957848e+00 5.802403496e+00 7.184149312e+00 - 8.622764075e+00 1.001032573e+01 1.143945019e+01 1.283061724e+01 1.425454843e+01 1.564816049e+01 - 1.706881753e+01 1.846419474e+01 1.988259971e+01 2.127931024e+01 2.269607160e+01 2.409382397e+01 - 2.550933430e+01 - 0.000000000e+00 0.000000000e+00 2.596292323e+00 4.246530556e+00 5.651021439e+00 7.126312240e+00 - 8.523106095e+00 9.968390691e+00 1.136459782e+01 1.279767185e+01 1.419446597e+01 1.562101381e+01 - 1.701858460e+01 1.844110425e+01 1.983941927e+01 2.125921839e+01 2.265819641e+01 2.407604056e+01 - 2.547559563e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.788348856e+00 5.493196129e+00 6.928743828e+00 - 8.421719728e+00 9.834253264e+00 1.128902790e+01 1.269494289e+01 1.413401604e+01 1.553743616e+01 - 1.696813779e+01 1.837053137e+01 1.979610356e+01 2.119809082e+01 2.262023004e+01 2.402209956e+01 - 2.544179546e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.965224699e+00 6.721235880e+00 - 8.185597102e+00 9.697242125e+00 1.112545503e+01 1.259095910e+01 1.400701861e+01 1.545319200e+01 - 1.686377802e+01 1.829956028e+01 1.970730621e+01 2.113670579e+01 2.254285115e+01 2.396798208e+01 - 2.537317886e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.132785669e+00 - 7.936312462e+00 9.427554087e+00 1.095789139e+01 1.240145204e+01 1.387821757e+01 1.530455545e+01 - 1.675843502e+01 1.817647239e+01 1.961790919e+01 2.103133440e+01 2.246507809e+01 2.387570781e+01 - 2.530428846e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.293915480e+00 9.141717487e+00 1.065819511e+01 1.220688391e+01 1.366536414e+01 1.515357350e+01 - 1.659016697e+01 1.805208016e+01 1.947770507e+01 2.092515499e+01 2.234445792e+01 2.378289516e+01 - 2.519822836e+01 - 0.000000000e+00 1.598837614e+00 2.917803141e+00 4.356459636e+00 5.706182664e+00 7.122050528e+00 - 8.482925398e+00 9.889530586e+00 1.125615746e+01 1.265773604e+01 1.402787188e+01 1.542629457e+01 - 1.679879393e+01 1.819505077e+01 1.956925040e+01 2.096392877e+01 2.233941003e+01 2.373288682e+01 - 2.510936899e+01 - 0.000000000e+00 1.351284757e+00 2.917803206e+00 4.268796492e+00 5.706182728e+00 7.067366070e+00 - 8.482925331e+00 9.849671904e+00 1.125615752e+01 1.262635171e+01 1.402787195e+01 1.540040414e+01 - 1.679879400e+01 1.817301390e+01 1.956925046e+01 2.094474533e+01 2.233941036e+01 2.371590167e+01 - 2.510936656e+01 - 0.000000000e+00 0.000000000e+00 2.560848213e+00 4.178576225e+00 5.561430213e+00 7.012082857e+00 - 8.387638032e+00 9.809583902e+00 1.118459003e+01 1.259485594e+01 1.397042707e+01 1.537445132e+01 - 1.675076656e+01 1.815093857e+01 1.952796624e+01 2.092553651e+01 2.230319854e+01 2.369889939e+01 - 2.507711269e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.740482516e+00 5.410629257e+00 6.823137937e+00 - 8.290728309e+00 9.681318963e+00 1.111234894e+01 1.249663030e+01 1.391263723e+01 1.529453990e+01 - 1.670253857e+01 1.808346258e+01 1.948655500e+01 2.086709205e+01 2.226690116e+01 2.364732622e+01 - 2.504479903e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.905594937e+00 6.624852765e+00 - 8.064886004e+00 9.550354956e+00 1.095592680e+01 1.239722637e+01 1.379120159e+01 1.521400276e+01 - 1.660275344e+01 1.801561298e+01 1.940165229e+01 2.080840596e+01 2.219291730e+01 2.359558809e+01 - 2.497919350e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 6.061789783e+00 - 7.826663594e+00 9.292384293e+00 1.079575446e+01 1.221599339e+01 1.366807184e+01 1.507186990e+01 - 1.650204498e+01 1.789791721e+01 1.931618666e+01 2.070765393e+01 2.211856334e+01 2.350736073e+01 - 2.491333144e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.211824660e+00 9.019211153e+00 1.050905549e+01 1.203000192e+01 1.346450123e+01 1.492753332e+01 - 1.634113382e+01 1.777899624e+01 1.918212072e+01 2.060614309e+01 2.200322854e+01 2.341862794e+01 - 2.481192093e+01 - 0.000000000e+00 1.566352606e+00 2.867359491e+00 4.282563969e+00 5.612893527e+00 7.006363650e+00 - 8.347335245e+00 9.731965239e+00 1.107842759e+01 1.245825939e+01 1.380807137e+01 1.518489026e+01 - 1.653695862e+01 1.791170991e+01 1.926540161e+01 2.063864586e+01 2.199356138e+01 2.336565808e+01 - 2.472153041e+01 - 0.000000000e+00 1.330443507e+00 2.867359590e+00 4.198871756e+00 5.612893496e+00 6.954152763e+00 - 8.347335344e+00 9.693909024e+00 1.107842756e+01 1.242829397e+01 1.380807134e+01 1.516017031e+01 - 1.653695872e+01 1.789066926e+01 1.926540158e+01 2.062032966e+01 2.199356148e+01 2.334944048e+01 - 2.472152632e+01 - 0.000000000e+00 0.000000000e+00 2.526731528e+00 4.112788788e+00 5.474664165e+00 6.901381808e+00 - 8.256348083e+00 9.655638236e+00 1.101009196e+01 1.239822438e+01 1.375322153e+01 1.513539212e+01 - 1.649110132e+01 1.786959274e+01 1.922598298e+01 2.060198975e+01 2.195898608e+01 2.333320768e+01 - 2.469073082e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.694464264e+00 5.330772834e+00 6.720923543e+00 - 8.163842399e+00 9.533151595e+00 1.094112594e+01 1.230442961e+01 1.369804873e+01 1.505908778e+01 - 1.644505619e+01 1.780516380e+01 1.918644547e+01 2.054618509e+01 2.192433062e+01 2.328396427e+01 - 2.465987894e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.848323851e+00 6.531712274e+00 - 7.948118853e+00 9.408137260e+00 1.079174071e+01 1.220953176e+01 1.358208580e+01 1.498219776e+01 - 1.634977229e+01 1.774038505e+01 1.910537472e+01 2.049015437e+01 2.185368723e+01 2.323456663e+01 - 2.459723608e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.993657930e+00 - 7.720782198e+00 9.161701085e+00 1.063884102e+01 1.203644164e+01 1.346453616e+01 1.484646499e+01 - 1.625362381e+01 1.762799519e+01 1.902377703e+01 2.039394754e+01 2.178269743e+01 2.315032128e+01 - 2.453435304e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.133099374e+00 8.900991715e+00 1.036493824e+01 1.185888979e+01 1.327010205e+01 1.470866723e+01 - 1.609995254e+01 1.751445766e+01 1.889575136e+01 2.029702997e+01 2.167256317e+01 2.306560263e+01 - 2.443751788e+01 - 0.000000000e+00 1.534824133e+00 2.818449290e+00 4.210867493e+00 5.522404957e+00 6.894125811e+00 - 8.215803750e+00 9.579100351e+00 1.090601146e+01 1.226473461e+01 1.359483877e+01 1.495068991e+01 - 1.628294513e+01 1.763682521e+01 1.897062789e+01 2.032307131e+01 2.165804065e+01 2.300939042e+01 - 2.434527235e+01 - 0.000000000e+00 1.310351067e+00 2.818449311e+00 4.131084481e+00 5.522404978e+00 6.844350312e+00 - 8.215803772e+00 9.542818624e+00 1.090601148e+01 1.223616640e+01 1.359483879e+01 1.492712253e+01 - 1.628294515e+01 1.761676549e+01 1.897062791e+01 2.030560902e+01 2.165804080e+01 2.299392914e+01 - 2.434527080e+01 - 0.000000000e+00 0.000000000e+00 2.493886409e+00 4.049073270e+00 5.390598886e+00 6.794052501e+00 - 8.129050745e+00 9.506336793e+00 1.084085807e+01 1.220750090e+01 1.354254402e+01 1.490350065e+01 - 1.623922442e+01 1.759667221e+01 1.893304602e+01 2.028812454e+01 2.162507670e+01 2.297845261e+01 - 2.431590856e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.650218092e+00 5.253508731e+00 6.621952426e+00 - 8.040880551e+00 9.389540409e+00 1.077511636e+01 1.211806908e+01 1.348994797e+01 1.483074819e+01 - 1.619532839e+01 1.753524349e+01 1.889535333e+01 2.023491913e+01 2.159203778e+01 2.293150364e+01 - 2.428649399e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.793316073e+00 6.441674561e+00 - 7.835124407e+00 9.270383649e+00 1.063266130e+01 1.202760759e+01 1.337937428e+01 1.475744904e+01 - 1.610447679e+01 1.747348837e+01 1.881805593e+01 2.018150272e+01 2.152468359e+01 2.288441013e+01 - 2.422676906e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.928275248e+00 - 7.618506972e+00 9.035310850e+00 1.048692253e+01 1.186253762e+01 1.326731866e+01 1.462801889e+01 - 1.601281803e+01 1.736632331e+01 1.874026653e+01 2.008977148e+01 2.145700588e+01 2.280408570e+01 - 2.416681939e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 7.057605652e+00 8.786876930e+00 1.022562761e+01 1.169329648e+01 1.308188389e+01 1.449665968e+01 - 1.586627708e+01 1.725808645e+01 1.861818909e+01 1.999737686e+01 2.135199294e+01 2.272331950e+01 - 2.407448939e+01 - 0.000000000e+00 1.504209757e+00 2.771005244e+00 4.141273085e+00 5.434593800e+00 6.785184816e+00 - 8.088151901e+00 9.430728128e+00 1.073867499e+01 1.207689924e+01 1.338788478e+01 1.472337582e+01 - 1.603640842e+01 1.737002351e+01 1.868452901e+01 2.001677677e+01 2.133239267e+01 2.266359937e+01 - 2.398008194e+01 - 0.000000000e+00 1.290975388e+00 2.771005126e+00 4.065341261e+00 5.434593813e+00 6.737808670e+00 - 8.088151913e+00 9.396194926e+00 1.073867500e+01 1.204970750e+01 1.338788479e+01 1.470094382e+01 - 1.603640843e+01 1.735093028e+01 1.868452902e+01 2.000015577e+01 2.133239281e+01 2.264888297e+01 - 2.398008130e+01 - 0.000000000e+00 0.000000000e+00 2.462260789e+00 3.987339538e+00 5.309117162e+00 6.689947110e+00 - 8.005570983e+00 9.361475496e+00 1.067665707e+01 1.202242529e+01 1.333810751e+01 1.467846124e+01 - 1.599479285e+01 1.733180585e+01 1.864875702e+01 1.998351416e+01 2.130101608e+01 2.263415276e+01 - 2.395213322e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.607672706e+00 5.178726013e+00 6.526085002e+00 - 7.921672177e+00 9.250286560e+00 1.061409218e+01 1.193729286e+01 1.328805015e+01 1.460920860e+01 - 1.595301427e+01 1.727333339e+01 1.861288180e+01 1.993286994e+01 2.126957028e+01 2.258946410e+01 - 2.392413765e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.740481731e+00 6.354607890e+00 - 7.725741364e+00 9.136901034e+00 1.047846694e+01 1.185120230e+01 1.318278720e+01 1.453944746e+01 - 1.586653047e+01 1.721455729e+01 1.853930256e+01 1.988202949e+01 2.120545688e+01 2.254464082e+01 - 2.386728735e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.865533682e+00 - 7.519686166e+00 8.913031488e+00 1.033978406e+01 1.169403737e+01 1.307614503e+01 1.441622875e+01 - 1.577929537e+01 1.711254090e+01 1.846526545e+01 1.979470844e+01 2.114104285e+01 2.246818015e+01 - 2.381022813e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 6.985217977e+00 8.676695364e+00 1.009092079e+01 1.153298566e+01 1.289958113e+01 1.429121376e+01 - 1.563978179e+01 1.700952714e+01 1.834905004e+01 1.970677019e+01 2.104107653e+01 2.239130832e+01 - 2.372233737e+01 - 0.000000000e+00 1.474469900e+00 2.724963966e+00 4.073689365e+00 5.349343819e+00 6.679397086e+00 - 7.964211261e+00 9.286653448e+00 1.057619740e+01 1.189450582e+01 1.318693631e+01 1.450264836e+01 - 1.579702361e+01 1.711095350e+01 1.840672800e+01 1.971935885e+01 2.101618827e+01 2.232782987e+01 - 2.362548346e+01 - 0.000000000e+00 1.272286380e+00 2.724963849e+00 4.001554055e+00 5.349343832e+00 6.634386680e+00 - 7.964211274e+00 9.253844056e+00 1.057619742e+01 1.186867134e+01 1.318693632e+01 1.448133591e+01 - 1.579702362e+01 1.709281316e+01 1.840672788e+01 1.970356725e+01 2.101618829e+01 2.231384829e+01 - 2.362548243e+01 - 0.000000000e+00 0.000000000e+00 2.431805481e+00 3.927503473e+00 5.230108973e+00 6.588926705e+00 - 7.885744487e+00 9.220862170e+00 1.051727114e+01 1.184275305e+01 1.313964148e+01 1.445997668e+01 - 1.575748375e+01 1.707464384e+01 1.837274038e+01 1.968775660e+01 2.098637708e+01 2.229985302e+01 - 2.359892862e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.566761255e+00 5.106320286e+00 6.433189928e+00 - 7.806056369e+00 9.115203237e+00 1.045783820e+01 1.176186008e+01 1.309208695e+01 1.439417506e+01 - 1.571779292e+01 1.701908643e+01 1.833865726e+01 1.963963785e+01 2.095650163e+01 2.225739313e+01 - 2.357233073e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.689736577e+00 6.270388505e+00 - 7.619818236e+00 9.007507575e+00 1.032894925e+01 1.168007912e+01 1.299206137e+01 1.432790222e+01 - 1.563561596e+01 1.696324763e+01 1.826874437e+01 1.959133713e+01 2.089558402e+01 2.221480896e+01 - 2.351831476e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.805332370e+00 - 7.424177057e+00 8.794691625e+00 1.019722335e+01 1.153071116e+01 1.289075689e+01 1.421080940e+01 - 1.555274278e+01 1.686630873e+01 1.819840710e+01 1.950836531e+01 2.083438776e+01 2.214215789e+01 - 2.346410518e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 6.915818483e+00 8.570285849e+00 9.960627424e+00 1.137773506e+01 1.272294338e+01 1.409205020e+01 - 1.542016014e+01 1.676844507e+01 1.808797273e+01 1.942482102e+01 2.073939821e+01 2.206912600e+01 - 2.338059269e+01 - 0.000000000e+00 1.445566177e+00 2.680265748e+00 4.008029804e+00 5.266545593e+00 6.576627559e+00 - 7.843822961e+00 9.146691931e+00 1.041837065e+01 1.171732105e+01 1.299173625e+01 1.428822528e+01 - 1.556448412e+01 1.685928362e+01 1.813686910e+01 1.943043694e+01 2.070902240e+01 2.200165252e+01 - 2.328101989e+01 - 0.000000000e+00 1.254256179e+00 2.680265696e+00 3.939640053e+00 5.266545540e+00 6.533951169e+00 - 7.843822908e+00 9.115583258e+00 1.041837060e+01 1.169282570e+01 1.299173620e+01 1.426801754e+01 - 1.556448420e+01 1.684208342e+01 1.813686905e+01 1.941546380e+01 2.070902261e+01 2.198839522e+01 - 2.328101853e+01 - 0.000000000e+00 0.000000000e+00 2.402474305e+00 3.869485146e+00 5.153470318e+00 6.490860205e+00 - 7.769415713e+00 9.084315762e+00 1.036249516e+01 1.166825302e+01 1.294689068e+01 1.424776649e+01 - 1.552699244e+01 1.682485665e+01 1.810464226e+01 1.940047314e+01 2.068075598e+01 2.197512613e+01 - 2.325584108e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.527420685e+00 5.036192780e+00 6.343143712e+00 - 7.693881638e+00 8.984114227e+00 1.030615205e+01 1.159154366e+01 1.290180577e+01 1.418537035e+01 - 1.548936149e+01 1.677217557e+01 1.807232742e+01 1.935484623e+01 2.065242997e+01 2.193486545e+01 - 2.323062229e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.641001465e+00 6.188899847e+00 - 7.517212299e+00 8.882032031e+00 1.018391161e+01 1.151401472e+01 1.280694873e+01 1.412253925e+01 - 1.541143473e+01 1.671923481e+01 1.800603221e+01 1.930905136e+01 2.059466589e+01 2.189448977e+01 - 2.317940337e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.747575943e+00 - 7.331845554e+00 8.680129960e+00 1.005904981e+01 1.137234301e+01 1.271091079e+01 1.401149225e+01 - 1.533286525e+01 1.662730683e+01 1.793934559e+01 1.923037121e+01 2.053664449e+01 2.182559845e+01 - 2.312800524e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 6.849296494e+00 8.467496765e+00 9.834567901e+00 1.122733513e+01 1.255173529e+01 1.389890577e+01 - 1.520712343e+01 1.653452472e+01 1.783461665e+01 1.915116267e+01 2.044656630e+01 2.175635536e+01 - 2.304881293e+01 - 0.000000000e+00 1.312420368e+00 2.475055520e+00 3.705899316e+00 4.885907432e+00 6.103823904e+00 - 7.290200706e+00 8.502821736e+00 9.692493358e+00 1.090223387e+01 1.209391789e+01 1.330184813e+01 - 1.449488861e+01 1.570157567e+01 1.689559233e+01 1.810137320e+01 1.929612572e+01 2.050121678e+01 - 2.169654334e+01 - 0.000000000e+00 1.173105036e+00 2.475055522e+00 3.655578150e+00 4.885907433e+00 6.072411261e+00 - 7.290200708e+00 8.479921780e+00 9.692493360e+00 1.088420158e+01 1.209391789e+01 1.328697199e+01 - 1.449488861e+01 1.568891352e+01 1.689559233e+01 1.809035035e+01 1.929612585e+01 2.049145712e+01 - 2.169654334e+01 - 0.000000000e+00 0.000000000e+00 2.271247019e+00 3.604176876e+00 4.802579916e+00 6.040743850e+00 - 7.235393940e+00 8.456924041e+00 9.651345328e+00 1.086612174e+01 1.206089637e+01 1.327206923e+01 - 1.446728354e+01 1.567623495e+01 1.687186475e+01 1.807931684e+01 1.927531450e+01 2.048168981e+01 - 2.167800746e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.352328697e+00 4.716661126e+00 5.931788789e+00 - 7.179892128e+00 8.383081986e+00 9.609909230e+00 1.080961406e+01 1.202772715e+01 1.322611449e+01 - 1.443959278e+01 1.563743997e+01 1.684808288e+01 1.804571919e+01 1.925446665e+01 2.045204513e+01 - 2.165944490e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.425023666e+00 5.818780807e+00 - 7.049495223e+00 8.308075767e+00 9.519791788e+00 1.075259997e+01 1.195783336e+01 1.317989145e+01 - 1.438218951e+01 1.559848500e+01 1.679925574e+01 1.801201805e+01 1.921192722e+01 2.042232968e+01 - 2.162172813e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.492527979e+00 - 6.913664076e+00 8.158975727e+00 9.428045642e+00 1.064812430e+01 1.188720816e+01 1.309805069e+01 - 1.432438880e+01 1.553075705e+01 1.675018685e+01 1.795406194e+01 1.916922898e+01 2.037159062e+01 - 2.158390108e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 6.556425466e+00 8.003132594e+00 9.262195993e+00 1.054156834e+01 1.176979195e+01 1.301525365e+01 - 1.423169984e+01 1.546249995e+01 1.667301648e+01 1.789577903e+01 1.910286941e+01 2.032063426e+01 - 2.152556964e+01 - 0.000000000e+00 1.195606232e+00 2.296162157e+00 3.441372802e+00 4.553241214e+00 5.690013608e+00 - 6.806056602e+00 7.939355738e+00 9.057562487e+00 1.018896945e+01 1.130849891e+01 1.243871581e+01 - 1.355913707e+01 1.468853674e+01 1.580959993e+01 1.693840346e+01 1.805995081e+01 1.918830078e+01 - 2.031022568e+01 - 0.000000000e+00 1.105011381e+00 2.296162180e+00 3.408276141e+00 4.553241107e+00 5.669345325e+00 - 6.806056626e+00 7.924287315e+00 9.057562510e+00 1.017710362e+01 1.130849881e+01 1.242892674e+01 - 1.355913710e+01 1.468020434e+01 1.580959996e+01 1.693114993e+01 1.805995084e+01 1.918187809e+01 - 2.031022545e+01 - 0.000000000e+00 0.000000000e+00 2.162573803e+00 3.374652847e+00 4.498337663e+00 5.648552155e+00 - 6.769966076e+00 7.909170797e+00 9.030473652e+00 1.016521442e+01 1.128676282e+01 1.241912450e+01 - 1.354096790e+01 1.467186402e+01 1.579398358e+01 1.692389109e+01 1.804625423e+01 1.917545205e+01 - 2.029802673e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.208963975e+00 4.442159645e+00 5.576687437e+00 - 6.733533694e+00 7.860518433e+00 9.003243115e+00 1.012800078e+01 1.126495410e+01 1.238886798e+01 - 1.352275646e+01 1.464632511e+01 1.577834051e+01 1.690177559e+01 1.803253971e+01 1.915593986e+01 - 2.028581466e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.249826892e+00 5.502813331e+00 - 6.647461976e+00 7.811290725e+00 8.943842227e+00 1.009053741e+01 1.121891211e+01 1.235847933e+01 - 1.348495466e+01 1.462070745e+01 1.574619247e+01 1.687960921e+01 1.800453498e+01 1.913639275e+01 - 2.026098689e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.287255534e+00 - 6.558676276e+00 7.712816008e+00 8.883632744e+00 1.002164858e+01 1.117250827e+01 1.230455455e+01 - 1.344695663e+01 1.457609884e+01 1.571392525e+01 1.684144556e+01 1.797645203e+01 1.910298648e+01 - 2.023610470e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 6.322290834e+00 7.610950449e+00 8.774042030e+00 9.951722473e+00 1.109506384e+01 1.225015528e+01 - 1.338587144e+01 1.453122834e+01 1.566308951e+01 1.680312049e+01 1.793274935e+01 1.906947295e+01 - 2.019769602e+01 - 0.000000000e+00 1.092220068e+00 2.138997134e+00 3.207798582e+00 4.260120695e+00 5.324775034e+00 - 6.379158862e+00 7.442096587e+00 8.497551566e+00 9.559552361e+00 1.061566248e+01 1.167707368e+01 - 1.273362597e+01 1.379463188e+01 1.485150246e+01 1.591221298e+01 1.696932361e+01 1.802980886e+01 - 1.908710709e+01 - 0.000000000e+00 1.047849399e+00 2.138997176e+00 3.191385745e+00 4.260120737e+00 5.314521311e+00 - 6.379158904e+00 7.434620424e+00 8.497551477e+00 9.553665002e+00 1.061566253e+01 1.167221665e+01 - 1.273362601e+01 1.379049763e+01 1.485150250e+01 1.590861392e+01 1.696932365e+01 1.802662240e+01 - 1.908710713e+01 - 0.000000000e+00 0.000000000e+00 2.073020514e+00 3.174827335e+00 4.232835780e+00 5.304232949e+00 - 6.361236439e+00 7.427130946e+00 8.484103824e+00 9.547771129e+00 1.060487404e+01 1.166735599e+01 - 1.272460869e+01 1.378636119e+01 1.484375269e+01 1.590501344e+01 1.696252673e+01 1.802343479e+01 - 1.908105340e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 3.092681118e+00 4.205194994e+00 5.268474812e+00 - 6.343218475e+00 7.402954654e+00 8.470616664e+00 9.529289672e+00 1.059406528e+01 1.165233419e+01 - 1.271557973e+01 1.377368380e+01 1.483599543e+01 1.589403658e+01 1.695572498e+01 1.801375069e+01 - 1.907499626e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 4.109599615e+00 5.232150356e+00 - 6.300354221e+00 7.378616537e+00 8.441084751e+00 9.510738226e+00 1.057119195e+01 1.163727536e+01 - 1.269680746e+01 1.376098444e+01 1.482003447e+01 1.588304558e+01 1.694182312e+01 1.800405690e+01 - 1.906267274e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 5.124808300e+00 - 6.256718263e+00 7.329542150e+00 8.411324557e+00 9.476476010e+00 1.054821697e+01 1.161047901e+01 - 1.267798012e+01 1.373882761e+01 1.480404015e+01 1.586409527e+01 1.692789941e+01 1.798747180e+01 - 1.905033405e+01 - 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 - 6.138822341e+00 7.279496035e+00 8.356679875e+00 9.441919450e+00 1.050968703e+01 1.158354871e+01 - 1.264761881e+01 1.371659725e+01 1.477878630e+01 1.584509956e+01 1.690619587e+01 1.797085662e+01 - 1.903126338e+01 - 0.000000000e+00 1.000000000e+00 2.000000000e+00 3.000000000e+00 4.000000000e+00 5.000000000e+00 - 6.000000000e+00 7.000000000e+00 8.000000000e+00 9.000000000e+00 1.000000000e+01 1.100000000e+01 - 1.200000000e+01 1.300000000e+01 1.400000000e+01 1.500000000e+01 1.600000000e+01 1.700000000e+01 - 1.800000000e+01 - 0.000000000e+00 1.000000000e+00 2.000000000e+00 3.000000000e+00 4.000000000e+00 5.000000000e+00 - 6.000000000e+00 7.000000000e+00 8.000000000e+00 9.000000000e+00 1.000000000e+01 1.100000000e+01 - 1.200000000e+01 1.300000000e+01 1.400000000e+01 1.500000000e+01 1.600000000e+01 1.700000000e+01 - 1.800000000e+01 - 0.000000000e+00 1.000000000e+00 2.000000000e+00 3.000000000e+00 4.000000000e+00 5.000000000e+00 - 6.000000000e+00 7.000000000e+00 8.000000000e+00 9.000000000e+00 1.000000000e+01 1.100000000e+01 - 1.200000000e+01 1.300000000e+01 1.400000000e+01 1.500000000e+01 1.600000000e+01 1.700000000e+01 - 1.800000000e+01 - 0.000000000e+00 1.000000000e+00 2.000000000e+00 3.000000000e+00 4.000000000e+00 5.000000000e+00 - 6.000000000e+00 7.000000000e+00 8.000000000e+00 9.000000000e+00 1.000000000e+01 1.100000000e+01 - 1.200000000e+01 1.300000000e+01 1.400000000e+01 1.500000000e+01 1.600000000e+01 1.700000000e+01 - 1.800000000e+01 - 0.000000000e+00 1.000000000e+00 2.000000000e+00 3.000000000e+00 4.000000000e+00 5.000000000e+00 - 6.000000000e+00 7.000000000e+00 8.000000000e+00 9.000000000e+00 1.000000000e+01 1.100000000e+01 - 1.200000000e+01 1.300000000e+01 1.400000000e+01 1.500000000e+01 1.600000000e+01 1.700000000e+01 - 1.800000000e+01 - 0.000000000e+00 1.000000000e+00 2.000000000e+00 3.000000000e+00 4.000000000e+00 5.000000000e+00 - 6.000000000e+00 7.000000000e+00 8.000000000e+00 9.000000000e+00 1.000000000e+01 1.100000000e+01 - 1.200000000e+01 1.300000000e+01 1.400000000e+01 1.500000000e+01 1.600000000e+01 1.700000000e+01 - 1.800000000e+01 - 0.000000000e+00 1.000000000e+00 2.000000000e+00 3.000000000e+00 4.000000000e+00 5.000000000e+00 - 6.000000000e+00 7.000000000e+00 8.000000000e+00 9.000000000e+00 1.000000000e+01 1.100000000e+01 - 1.200000000e+01 1.300000000e+01 1.400000000e+01 1.500000000e+01 1.600000000e+01 1.700000000e+01 - 1.800000000e+01 - 7.0000 8.0000 9.0000 10.0000 11.0000 12.0000 13.0000 14.0000 - 15.0000 16.0000 17.0000 18.0000 19.0000 20.0000 21.0000 22.0000 - 23.0000 24.0000 25.0000 26.0000 27.0000 28.0000 29.0000 30.0000 - 31.0000 32.0000 33.0000 34.0000 35.0000 36.0000 37.0000 38.0000 - 39.0000 40.0000 41.0000 42.0000 43.0000 44.0000 45.0000 46.0000 - 47.0000 48.0000 49.0000 50.0000 51.0000 52.0000 53.0000 54.0000 - 55.0000 56.0000 57.0000 58.0000 59.0000 60.0000 61.0000 62.0000 - 63.0000 64.0000 65.0000 66.0000 67.0000 68.0000 69.0000 70.0000 - 75.0000 80.0000 85.0000 90.0000 diff --git a/util/EMPIRICAL/srcIE/data/W05scBndy.dat b/util/EMPIRICAL/srcIE/data/W05scBndy.dat deleted file mode 100755 index 05029cb8..00000000 --- a/util/EMPIRICAL/srcIE/data/W05scBndy.dat +++ /dev/null @@ -1,5 +0,0 @@ -W05scBndy.dat - 6 7 - 1.665162249e+01 -8.299262114e-01 1.754533395e+00 -2.740607467e+00 2.176603485e-02 2.679466709e-01 - 2.243083798e+01 -7.913902598e-01 8.118283278e-01 -6.169666457e-01 7.808993054e-03 5.539135642e-02 -1.177693968e-02 - 1.595479995e-01 2.477539927e-01 diff --git a/util/EMPIRICAL/srcIE/data/W05scEpot.dat b/util/EMPIRICAL/srcIE/data/W05scEpot.dat deleted file mode 100755 index 029dc37d..00000000 --- a/util/EMPIRICAL/srcIE/data/W05scEpot.dat +++ /dev/null @@ -1,175 +0,0 @@ -W05scEpot.dat - 1 1 0 1 1 0 1 0 1 1 0 1 0 1 1 0 1 0 1 1 0 1 0 1 1 0 1 0 - 28 15 18 - -5.369385539e+00 -1.756967365e-01 -5.062618603e+00 -1.214624040e+01 -1.401378597e-01 -1.066649329e-02 - 3.418221275e+00 1.737277118e+00 -1.695583376e+01 4.745110718e-03 2.163573375e-06 -7.664842598e+00 - -7.566093237e+00 1.304909612e+01 -4.000541063e-02 -5.362748113e-03 -5.662027162e-02 1.387692104e+00 - 4.352479449e+00 1.934128270e+00 2.449694020e+00 -1.153561059e+01 -5.912330171e-04 -1.404686629e-02 - -4.184173081e+00 3.168567761e-01 1.948040974e+01 3.337697080e-01 -1.484108857e-02 6.448251067e+00 - -6.544680807e+00 -1.035082982e+01 -1.756608807e-01 -2.021329192e-04 6.583313806e-01 -1.335174669e+00 - 1.454250272e+01 6.344592025e+00 -6.781845169e-01 -1.734416129e+01 2.641344072e-01 -4.178096433e-02 - -1.390119150e+01 5.767574894e-01 8.565488094e+00 3.971043495e-01 -3.310846361e-02 -8.383364684e-01 - -2.993289567e+00 2.887262282e+00 -6.727233301e-02 -4.848822193e-04 1.454753273e+00 3.511506446e-01 - -4.764844523e+00 1.863053571e+00 -9.940339573e+00 8.365229361e+00 2.052916727e-01 -2.087226474e-02 - 9.520571236e-01 7.785753166e+00 -1.138297764e+01 3.134070542e-02 -2.484334964e-03 -8.396001726e+00 - -9.433693902e+00 7.961890519e+00 2.175306474e-01 -7.957252197e-03 -2.457940739e-01 2.243806912e-01 - 4.012565739e-01 7.829545688e-01 -2.786035787e-02 -3.478699126e+00 1.738551179e-01 -2.341989369e-03 - 4.520729461e-01 2.056316017e+00 -9.217979804e-02 -2.308652817e-01 -6.251921985e-03 -1.679445268e+00 - 5.187327419e+00 -3.654437862e+00 3.265600026e-02 1.638432488e-03 5.549282257e-01 7.680731099e-01 - 2.450693319e+00 -2.179559232e+00 -1.810482936e+00 -1.103202957e+01 1.554816689e-01 2.059926732e-03 - 5.131063519e+00 8.726889333e-01 -5.338026891e+00 -1.743255849e-01 8.846777955e-03 1.985261334e+00 - -3.218117753e+00 -1.355964216e+01 -2.999535912e-01 -5.374270981e-04 -1.161908260e+00 4.813896971e-02 - 1.820659156e+00 -1.115047797e+00 -1.840200148e+00 -8.833462334e+00 1.431080136e-01 -1.231996869e-02 - -7.000613957e-01 2.090016293e+00 2.085235431e+00 1.901009149e-01 3.962671779e-03 5.546827517e+00 - 2.770976379e+00 -3.452667693e+00 -2.859636050e-01 -1.761979406e-03 -5.385908579e-01 -6.433471904e-01 - 1.876135811e+00 -1.077856862e+00 5.111525948e-01 7.169500069e+00 -1.170836615e-01 -2.326455852e-03 - 7.807734300e-02 6.724128699e-01 -1.801545228e+00 -1.493244732e-01 1.549989516e-02 -1.699959987e+00 - -2.384377492e+00 7.215539321e+00 2.196351327e-01 1.565577519e-03 -1.435677629e+00 8.289474191e-03 - -1.803820506e+00 -1.593605808e+00 -1.169587449e+00 2.083809704e+01 1.471993515e-01 7.278853248e-03 - 3.734609010e+00 1.375445745e+00 -1.181558688e+01 -2.275979254e-01 9.346053552e-03 2.407385630e-01 - -2.241344325e+00 -4.162187317e+00 9.368114691e-02 -2.778989719e-03 -9.606704061e-01 -8.205690032e-01 - -1.579661533e-01 1.099938324e+00 1.988947789e+00 -3.545097772e+00 -9.666536344e-02 -6.006731885e-04 - -1.331408263e-01 3.099554735e-01 -1.393842319e+00 7.218141997e-04 -9.320549422e-03 -2.394420648e+00 - 3.943087203e+00 -4.091840596e+00 1.370806279e-01 9.170257802e-04 3.808030040e-01 7.417141528e-03 - 5.372644024e-01 1.524177835e+00 -2.619343204e+00 -6.506321946e+00 -3.858043422e-02 8.160435669e-04 - 1.869050295e+00 -7.300217866e-01 -4.127909534e+00 2.434970798e-01 6.004443433e-03 7.217413841e-01 - -3.557786559e+00 -3.993521537e+00 -1.412482126e-01 -2.267203882e-03 -2.858864317e-02 4.350695672e-01 - -9.963899749e-01 -1.372629615e+00 -3.725326326e+00 8.518061975e+00 -5.471346273e-02 3.599570857e-03 - 1.302226014e+00 3.722094757e+00 -1.198002231e+01 3.933628436e-02 8.135348883e-03 -2.230475921e+00 - 4.954245739e+00 1.136897148e+01 1.889805860e-01 7.448690342e-04 -2.931642251e-01 1.073941312e+00 - -8.168143366e+00 2.134667131e-01 1.538064523e-01 9.463637091e+00 9.038946492e-02 8.157377532e-03 - 2.752074402e+00 -1.083781556e+00 1.489494474e+00 -4.006943270e-01 7.140327533e-04 -9.704216323e-01 - -1.309727292e+00 4.243672123e+00 1.694383237e-01 -1.530175437e-03 3.078125438e-01 1.012015674e-01 - 2.893341032e-01 -1.951089447e-01 2.738886062e+00 -2.536958243e-01 -1.067790383e-01 4.864697331e-03 - -1.183361696e-01 -2.762286519e+00 5.399687743e-01 7.427321659e-03 -4.456479170e-03 2.381477404e+00 - 2.548578959e+00 -2.132899299e+00 -3.474576463e-02 1.934955613e-03 4.411154835e-01 1.365219710e-01 - -6.585712832e-01 1.962954998e-01 -2.799663004e-01 1.384149164e+00 -3.507053711e-02 -2.524486532e-03 - -4.462393812e-01 2.196067573e+00 -6.561441215e+00 3.393931578e-01 -7.829102553e-04 -4.356362805e-01 - -2.688131940e+00 -2.559176110e+00 -7.360213074e-02 -6.439747907e-03 -1.550107562e-01 -4.474987040e-01 - 3.976009962e-01 7.222293944e-01 -1.484543573e+00 -1.776963840e+00 -1.657552642e-01 -7.566293304e-03 - -3.194120432e-01 8.382033807e-01 1.517914222e+00 3.525110832e-01 5.721869871e-03 3.181895507e-01 - 1.201438325e-01 1.582690762e+00 -4.896896372e-02 -3.432124972e-04 2.643088368e-03 4.201551836e-01 - 4.699207650e-01 4.103991285e-01 -8.782024692e-01 -1.746260716e+00 2.679637353e-02 2.483977565e-03 - -8.471640126e-01 2.270332953e-01 5.931172255e-01 2.100008009e-03 -2.330767213e-03 -1.628444526e+00 - -1.441023688e-01 2.288279334e+00 2.297513528e-01 3.369877161e-03 2.660728490e-01 -2.447523773e-01 - 1.715456690e+00 1.719451237e+00 -1.743103985e-01 -4.592507439e+00 1.622587616e-01 -3.078608221e-03 - -1.421906429e+00 -1.137109189e+00 -3.039400834e+00 -1.705211338e-01 -1.259906902e-02 3.929226724e-01 - 1.069969354e+00 -2.932006048e+00 -9.013274829e-02 -2.577344903e-03 7.384375279e-01 1.851394470e-01 - 1.671932705e+00 -1.170141100e-01 -1.744779707e+00 -4.525753571e+00 -1.001642448e-01 -6.104525103e-03 - -4.036744742e-01 5.708857638e-01 -8.244497781e-01 9.660324819e-02 6.212364012e-04 -1.218081143e+00 - 7.210101561e-01 2.160040637e+00 5.830565123e-02 -4.242277086e-04 -9.246147306e-02 2.822883902e-01 - -3.671173317e-01 -3.563552596e-01 -8.811281649e-01 3.046950655e+00 6.103601740e-02 -4.903801406e-03 - -3.502620399e-01 4.639564724e+00 -5.557241747e+00 3.642199846e-01 1.889576061e-03 9.460895369e-01 - -3.746149706e-02 -5.832942228e+00 -7.547644403e-02 -3.295352478e-03 -2.530983897e-01 2.854253223e-01 - -7.659594479e-01 -7.633926599e-01 1.051545220e+00 -9.910416439e-01 -1.128815028e-01 -3.468089654e-03 - 1.353327565e+00 1.261817996e+00 5.862466608e-01 7.452706885e-02 9.666077196e-03 9.212358910e-01 - 1.952411947e-01 -4.614505826e-01 -2.502869793e-01 3.824652919e-03 -5.887957552e-01 3.695714345e-01 - 7.670238541e-01 -4.822859746e-01 8.178847241e-01 -5.453110973e+00 8.379607832e-02 3.307390639e-03 - 6.781372320e-01 -2.294328828e+00 -1.157189088e+00 -7.869146188e-02 4.031961185e-03 1.012515852e+00 - -4.141406167e-01 -3.377963537e+00 -1.272493653e-01 4.301904391e-05 -3.785733281e-01 -6.942278792e-01 - 7.227350757e-01 -7.791761081e-01 -8.215599784e-01 1.626411385e+00 -1.026614279e-01 3.421411333e-03 - 1.611035694e+00 1.333661886e-02 -1.439735688e+00 -2.200717010e-01 1.143602969e-02 2.480826714e-01 - 6.502778331e-01 -2.371432830e+00 9.495660908e-02 3.925997944e-04 -8.240968797e-01 -1.389993916e-01 - -5.704216126e-01 -1.047006222e-01 -9.614886284e-01 5.040032383e+00 -8.364869149e-02 3.797667581e-04 - 1.126964346e+00 -3.235526545e-01 -6.425199056e+00 4.736844822e-02 2.132493447e-03 -8.853726542e-01 - -2.628551874e+00 6.121367453e+00 1.870994769e-01 -2.148403642e-03 -8.385978888e-02 -3.321497076e-01 - 7.255956048e-01 -6.734978124e-01 1.087096704e-01 -1.109225357e+00 -1.123336066e-01 1.010262836e-03 - 4.691098144e-01 1.828043567e+00 -2.684454019e+00 1.290566728e-01 3.317782843e-03 4.860480442e-02 - 3.145700211e+00 -8.503012134e+00 8.526937673e-02 1.429911036e-03 -3.490334883e-01 5.023500286e-01 - -1.193121864e+00 5.176066400e-01 -1.306449811e+00 3.118652297e+00 -5.020097622e-02 -2.536873870e-03 - 1.651488781e-01 -5.541646570e-01 4.767025527e-01 1.510051774e-01 3.645139381e-03 -1.683020024e-01 - -1.787571970e+00 4.455145119e+00 -8.852278443e-02 -1.308713598e-03 -4.774035400e-02 3.738695806e-01 - 4.385298415e-01 -2.933915293e-01 -4.779414708e-01 4.829130965e+00 -7.770106274e-02 -9.080417340e-05 - -8.831551209e-02 8.325115580e-01 -4.739695241e+00 5.380651534e-02 -1.088339644e-03 1.379078828e-01 - -5.313873565e-01 4.826289577e+00 -6.207662810e-03 2.988896006e-04 1.074694853e-01 3.945158862e-01 - -1.848836315e+00 4.798271933e-01 -1.116567328e-01 -3.679231445e-01 1.202094649e-01 -8.568629406e-04 - 2.509613972e-01 -2.795966806e-01 2.031122215e+00 -5.203246282e-02 2.828815453e-03 5.749632735e-01 - 1.100006140e+00 -4.423449680e+00 2.977984628e-02 2.328670410e-03 -1.156737979e-01 -1.110817422e-01 - 0.470 1.330 - 1 2 2 3 3 3 4 4 5 5 5 6 6 7 7 7 8 8 9 9 9 10 10 11 11 11 12 12 - 12 2 - 0 1 1 0 2 2 1 1 0 2 2 1 1 0 2 2 1 1 0 2 2 1 1 0 2 2 1 1 - -5.255778816e+00 9.913108865e-01 -5.143749514e+00 -1.347375939e+01 -4.885827145e-02 2.067654112e+00 - 1.417731196e+00 -1.284014491e+01 -7.877663056e-02 -7.055562647e+00 -8.018961408e+00 1.136036345e+01 - 1.612681570e-02 2.034599580e-01 1.043006991e+00 - 4.421364663e+00 2.670393359e+00 2.388815451e+00 -1.211610767e+01 1.025330427e-01 -4.013781249e+00 - 6.431364875e-02 1.915790304e+01 3.885723479e-01 6.573388018e+00 -7.469540085e+00 -1.072765419e+01 - -1.941622289e-01 1.658458051e-02 -1.345914925e+00 - 1.519175189e+01 8.814157199e+00 5.446581285e-01 -2.033347448e+01 5.306261515e-01 -1.519935143e+01 - 5.058848929e-01 1.656462388e+01 5.868826175e-01 -5.809553411e-01 -6.076934291e+00 3.723368635e+00 - -1.854469310e-01 6.635835903e-01 3.392579006e-01 - -4.447417827e+00 3.992001039e+00 -9.571002024e+00 4.498174633e+00 3.808973943e-01 -1.394150116e+00 - 6.840313436e+00 -3.158154035e+00 -6.623129832e-02 -7.392427292e+00 -1.062218997e+01 6.070216850e+00 - 2.265111740e-01 1.956900639e-01 -2.465622266e-01 - 3.915128773e-01 6.454367559e-01 -4.078042045e-01 -2.895428870e+00 2.416847139e-01 8.253501123e-01 - 1.677869952e+00 -1.229472241e+00 -1.024285150e-01 -1.875450708e+00 4.446342748e+00 -3.305918542e+00 - 2.630393466e-02 1.693033127e-01 8.520103656e-01 - 2.494444216e+00 -1.950915566e+00 -2.171911438e+00 -1.108768770e+01 8.050894558e-02 4.093003313e+00 - 2.765528465e-01 -3.502101745e+00 -2.003249167e-01 1.961143737e+00 -3.052584879e+00 -1.320653922e+01 - -2.635704389e-01 -7.684170023e-01 -3.123207363e-03 - 2.433475407e+00 4.868586237e-02 -1.811497981e+00 -1.116978177e+01 2.840493870e-01 -2.698957306e+00 - 1.640154708e+00 8.508200533e+00 7.744434198e-02 5.809722362e+00 1.595754433e+00 -4.146813792e+00 - -2.724438825e-01 -3.130090637e-02 -7.568958777e-01 - 1.628874818e+00 2.085239794e-01 8.451579817e-01 6.392559371e+00 -6.851585928e-02 -2.259321932e+00 - -2.741936167e-01 2.750662494e+00 -2.714391195e-01 -1.889323576e+00 -2.373730810e+00 7.619938706e+00 - 2.248486336e-01 -5.347393999e-01 1.013746878e-01 - -2.118440298e+00 -1.580505641e+00 -9.489033769e-01 2.069933785e+01 1.238763935e-01 3.450792164e+00 - 7.155575077e-01 -1.062687271e+01 -3.446992584e-01 5.209636598e-01 -1.377831621e+00 -5.346143799e+00 - 1.366610174e-01 -5.351621909e-01 -9.419278710e-01 - 4.702794561e-01 1.883962606e-01 1.263481129e+00 -4.642810083e+00 -1.336235928e-02 1.176029965e+00 - 4.419347541e-01 -3.265059965e+00 -2.181230858e-02 -2.444354346e+00 3.709758731e+00 -5.924950691e+00 - 2.006988811e-01 -2.238314787e-01 1.088533167e-01 - 2.483152118e-01 2.013937208e+00 -3.155862517e+00 -6.541290926e+00 -8.824892461e-02 1.451849639e+00 - -9.607040519e-01 -4.681717397e+00 1.347976525e-01 9.917267899e-01 -3.120241086e+00 -5.931699539e+00 - -6.288506360e-02 1.872178950e-01 2.611083803e-01 - -9.686200592e-01 -1.264161386e+00 -3.299091766e+00 8.173089515e+00 -9.367892973e-02 8.062590704e-01 - 3.037543501e+00 -1.090075880e+01 -5.474336432e-02 -2.303705131e+00 5.510137407e+00 1.203290171e+01 - 1.945838716e-01 9.731763104e-02 1.165878414e+00 - -8.008496688e+00 -8.356169312e-01 -2.797752461e-01 1.117474246e+01 1.668905171e-02 3.722705746e+00 - -1.083696873e+00 -5.944808079e-01 -3.710384879e-01 -8.068733771e-01 -1.977532534e-01 3.675315381e+00 - 1.974625544e-01 1.762167567e-01 3.761809860e-02 - -7.320630465e-02 -7.571605683e-01 2.884669160e+00 1.424393723e+00 -1.529679207e-01 8.709578128e-01 - -2.986518520e+00 -1.144127608e+00 9.380820619e-02 2.172049867e+00 3.384149912e+00 -1.842181273e+00 - -4.046475716e-02 9.161821617e-02 2.902781145e-01 - -2.671124927e-01 2.305641880e-01 -7.017142082e-01 -7.911406384e-01 1.945195798e-02 -3.263556572e-01 - 2.550982016e+00 -6.002160213e+00 1.810879118e-01 3.810060986e-01 -2.961434409e+00 -5.617094024e+00 - -1.266714463e-02 -1.492191907e-01 -7.910306814e-01 - 3.478736438e-01 2.007923336e+00 -1.421402507e+00 -3.579779152e+00 -7.199919115e-02 -1.735085485e+00 - 6.522299042e-01 4.286946878e+00 1.409480313e-01 4.941049108e-01 -5.065684063e-01 8.642580207e-01 - -6.059823666e-02 5.331974422e-01 4.315029245e-01 - 1.892857655e-01 2.454447051e-01 -4.768685401e-01 -8.813320449e-01 -3.497294218e-02 -3.168579955e-01 - -3.932581998e-01 -8.265704491e-01 5.704416231e-02 -2.010452370e+00 2.099860645e-01 3.928268543e+00 - 1.967459255e-01 3.671847034e-02 5.961395279e-03 - 2.133096428e+00 1.102402232e+00 -2.448672170e-01 -4.430920284e+00 1.618369013e-01 -2.625689730e-01 - -7.627010659e-01 -3.788437258e+00 -6.923245821e-02 6.317876656e-01 1.127233027e+00 -3.038978789e+00 - -8.673834790e-02 1.645450693e-01 4.394713081e-02 - 1.361072221e+00 8.565071565e-01 -1.645321060e+00 -5.740817819e+00 -5.785094839e-02 -1.372858194e+00 - 2.151267762e-01 8.437398316e-01 1.261397645e-01 -1.036955339e+00 3.146974754e-01 2.119422412e+00 - 1.584277569e-02 9.073018666e-02 2.484055719e-01 - -6.567810942e-01 5.295736285e-01 -6.877660427e-01 2.350361647e+00 1.011921757e-01 -1.187649455e+00 - 4.201738593e+00 -3.650939544e+00 3.272992334e-01 1.393468635e+00 -5.587887944e-01 -6.265879921e+00 - -1.068739346e-01 -5.423410027e-02 1.010298248e-01 - -9.178739256e-01 2.740355101e-01 1.395640151e+00 -1.881791999e+00 -3.022735235e-02 -2.739940005e-01 - 5.008982678e-01 4.081575348e+00 -1.254550305e-01 4.922128716e-01 -5.057037754e-01 1.421817708e+00 - -3.200509207e-01 1.544337636e-01 6.446968009e-01 - 5.931593018e-01 -5.402228757e-01 6.663286673e-01 -4.719973910e+00 4.313295810e-02 4.618518175e-01 - -2.346145115e+00 -2.168747677e-01 -5.289333243e-02 9.327833816e-01 -3.951414625e-01 -2.782620182e+00 - -1.174107408e-01 -2.327084551e-01 -6.835338956e-01 - 6.116247199e-01 -4.047121077e-01 -6.378976482e-01 3.812249407e-01 -9.812380706e-02 4.891509312e-01 - -1.679840341e-01 3.650339583e-01 -3.039208580e-01 7.812492163e-02 8.349730740e-01 -1.891743971e+00 - 1.113528200e-01 -2.426766476e-01 -1.660967239e-01 - -9.560666302e-01 2.456828477e-01 -1.254015679e+00 5.257570646e+00 -1.065738018e-01 8.160493572e-01 - -3.113810472e-01 -7.021109504e+00 8.678678053e-02 -5.784256035e-01 -2.630285388e+00 5.481908243e+00 - 1.686135948e-01 1.590657121e-02 -4.722547755e-01 - 6.026502944e-01 -4.792670814e-01 3.198714767e-01 -1.109117777e+00 -1.320041766e-01 2.454285025e-01 - 1.266858589e+00 -2.650089626e+00 1.099749246e-01 -2.495906261e-02 3.253787143e+00 -8.439992752e+00 - 5.844338379e-02 -2.271419506e-01 6.074014403e-01 - -1.328300708e+00 1.090500771e+00 -1.407659566e+00 2.913204649e+00 -6.313213604e-03 -5.558222307e-01 - -7.921580665e-01 1.738488198e+00 6.115814341e-02 -5.814931385e-02 -2.138477429e+00 4.370385115e+00 - -8.511723827e-02 2.780573414e-01 3.454579489e-01 - 3.068647960e-01 -2.421749804e-01 -7.123375749e-01 5.430949999e+00 -9.906313579e-02 -7.443119615e-02 - 1.170126744e+00 -4.005538601e+00 1.102130895e-01 4.937456898e-02 -6.926159709e-01 4.861706523e+00 - 1.992625013e-02 6.131553686e-02 4.154110197e-01 - -1.933365376e+00 8.394582843e-01 2.753000659e-01 -1.433445062e+00 1.304011050e-01 -3.489673383e-01 - -3.515694840e-01 3.114681695e+00 -4.475001844e-02 3.238365685e-01 8.987127357e-01 -3.957911186e+00 - 2.687016576e-03 6.623027884e-02 -2.888174433e-02 diff --git a/util/EMPIRICAL/srcIE/data/hmr89.cofcnts b/util/EMPIRICAL/srcIE/data/hmr89.cofcnts deleted file mode 100644 index c3329ed1..00000000 --- a/util/EMPIRICAL/srcIE/data/hmr89.cofcnts +++ /dev/null @@ -1,1123 +0,0 @@ -MODEL A FIT COEF. 4/24/87 N= 12 - 0 0 1 1 .5333815447374 - 1 0 2 1 -2.557589825167 - 1 1 2 2 35.0272502489 - 1 -1 1 2 1.360427927894 - 2 0 3 1 2.99628435343 - 2 1 3 2 20.58351371852 - 2 -1 1 3 .1862329470468 - 2 2 3 3 8.110339430911 - 2 -2 2 3 2.696256950216 - 3 0 4 1 1.465307015719 - 3 1 4 2 -9.501879528354 - 3 -1 1 4 -2.352757701699 - 3 2 4 3 .2868452819448 - 3 -2 2 4 1.664302650033 - 3 3 4 4 -1.237431105062 - 3 -3 3 4 -1.359170851851 - 4 0 5 1 -2.783524168666 - 4 1 5 2 -12.21201241082 - 4 -1 1 5 -2.025858012529 - 4 2 5 3 -4.831995265872 - 4 -2 2 5 -.6566559300963 - 4 3 5 4 -2.224607616341 - 4 -3 3 5 -.3817810011018 - 4 4 5 5 1.877073519249 - 4 -4 4 5 -.2473184018821 - 5 0 6 1 -2.038144969545 - 5 1 6 2 1.573096527585 - 5 -1 1 6 1.683908868845 - 5 2 6 3 .2469284883588 - 5 -2 2 6 -.4725999058341 - 5 3 6 4 -.4438155695468 - 5 -3 3 6 .2871819152356 - 5 4 6 5 .7847285208228 - 5 -4 4 6 .5716402493961 - 5 5 6 6 -.04200754152808 - 5 -5 5 6 .2936747993279 - 6 0 7 1 1.486731955795 - 6 1 7 2 4.677035849709 - 6 -1 1 7 3.214565233095 - 6 2 7 3 2.942555580908 - 6 -2 2 7 .8662898471483 - 6 3 7 4 1.660129343912 - 6 -3 3 7 .03941957987747 - 6 4 7 5 -.169623320699 - 6 -4 4 7 .228576317688 - 6 5 7 6 -1.014589849022 - 6 -5 5 7 .763731395168 - 6 6 7 7 -.2485247263546 - 6 -6 6 7 -.5306345312845 - 7 0 8 1 2.14534809967 - 7 1 8 2 -.8842697508365 - 7 -1 1 8 .02257478643151 - 7 2 8 3 -.7010307960137 - 7 -2 2 8 -.01213068682617 - 7 3 8 4 .8085317419187 - 7 -3 3 8 -.1926220798736 - 7 4 8 5 -.09801124178931 - 7 -4 4 8 -.3425991831713 - 7 5 8 6 -.4162707014413 - 7 -5 5 8 .08341403208669 - 7 6 8 7 -.2785264766412 - 7 -6 6 8 -.02569620243014 - 7 7 8 8 .03297696429606 - 7 -7 7 8 .08962653549028 - 8 0 9 1 .1315439706682 - 8 1 9 2 -2.578135187239 - 8 -1 1 9 -2.730935619079 - 8 2 9 3 -1.91139039226 - 8 -2 2 9 -1.37440279208 - 8 3 9 4 -.8480836769206 - 8 -3 3 9 -.1902031129026 - 8 4 9 5 -.2757948783971 - 8 -4 4 9 .1471858181605 - 8 5 9 6 .5234701916077 - 8 -5 5 9 -.4471547752528 - 8 6 9 7 .1148878383573 - 8 -6 6 9 -.09444099191175 - 8 7 9 8 .188385705746 - 8 -7 7 9 .4443791270948 - 8 8 9 9 -.4485704607636 - 8 -8 8 9 .07270487374053 - 9 0 10 1 -1.349686344896 - 9 1 10 2 -.2816456631999 - 9 -1 1 10 -1.180120934948 - 9 2 10 3 .6620286653594 - 9 -2 2 10 -.2265127749567 - 9 3 10 4 -.4439727119556 - 9 -3 3 10 .1316926298495 - 9 4 10 5 -.410884753071 - 9 -4 4 10 .4659182255843 - 9 5 10 6 .2415108996745 - 9 -5 5 10 .005682750648258 - 9 6 10 7 .2379250825626 - 9 -6 6 10 -.08078552646849 - 9 7 10 8 .2052395178477 - 9 -7 7 10 .1612566613761 - 9 8 10 9 -.3157298044425 - 9 -8 8 10 .02584011768704 - 9 9 10 10 -.09890584374062 - 9 -9 9 10 -.07755242179325 - 10 0 11 1 -1.013307983503 - 10 1 11 2 .9626514234341 - 10 -1 1 11 1.400339837623 - 10 2 11 3 1.359890918255 - 10 -2 2 11 1.373541393901 - 10 3 11 4 .459216850025 - 10 -3 3 11 .4978666864977 - 10 4 11 5 .197548259081 - 10 -4 4 11 -.09920919684645 - 10 5 11 6 -.1705430601415 - 10 -5 5 11 .1803200251693 - 10 6 11 7 -.01832985043174 - 10 -6 6 11 .2462866988271 - 10 7 11 8 -.05159880553418 - 10 -7 7 11 -.0260409520039 - 10 8 11 9 .02593547542691 - 10 -8 8 11 -.1575802746903 - 10 9 11 10 .06352078496872 - 10 -9 9 11 -.1335506889114 - 10 10 11 11 -.06831811522865 - 10 -10 10 11 .1389333857713 - 11 0 12 1 .3450433445961 - 11 1 12 2 .2023539396164 - 11 -1 1 12 1.340953368196 - 11 2 12 3 -.3232375184533 - 11 -2 2 12 .6009798045785 - 11 3 12 4 .09111956006142 - 11 -3 3 12 .07764853669694 - 11 4 12 5 .511687382754 - 11 -4 4 12 -.4065564127429 - 11 5 12 6 .05332854549863 - 11 -5 5 12 -.1773814412699 - 11 6 12 7 -.1069274115849 - 11 -6 6 12 .1361001892195 - 11 7 12 8 -.291935503811 - 11 -7 7 12 .01168975457774 - 11 8 12 9 .05581523638302 - 11 -8 8 12 -.02965273563718 - 11 9 12 10 .121533028079 - 11 -9 9 12 -.1074418120804 - 11 10 12 11 .03725984959389 - 11 -10 10 12 .1917746755581 - 11 11 12 12 -.07368515693356 - 11 -11 11 12 -.1308913480853 - -1 -1 -1 -1 0. -MODEL BC FIT COEF. 4/24/87 N= 12 - 0 0 1 1 59.43910974068 - 1 0 2 1 -29.17301225741 - 1 1 2 2 27.85813831135 - 1 -1 1 2 8.434829740045 - 2 0 3 1 -14.26253800651 - 2 1 3 2 13.8055682488 - 2 -1 1 3 8.489960802257 - 2 2 3 3 9.948588876188 - 2 -2 2 3 3.296528213086 - 3 0 4 1 1.185734732479 - 3 1 4 2 -10.27709992344 - 3 -1 1 4 1.447759821271 - 3 2 4 3 2.029695095969 - 3 -2 2 4 .8878002263928 - 3 3 4 4 -.1821997912915 - 3 -3 3 4 -.6080891653977 - 4 0 5 1 7.233921685369 - 4 1 5 2 -9.826298360059 - 4 -1 1 5 -3.354884602103 - 4 2 5 3 -4.126402905731 - 4 -2 2 5 -2.794603107198 - 4 3 5 4 -1.6370328091 - 4 -3 3 5 -1.64703847064 - 4 4 5 5 .7305364578356 - 4 -4 4 5 -.09043292245147 - 5 0 6 1 3.779012525756 - 5 1 6 2 2.334938679609 - 5 -1 1 6 -1.940971510084 - 5 2 6 3 -.5841070477052 - 5 -2 2 6 -1.655113468425 - 5 3 6 4 -.4255738284538 - 5 -3 3 6 -1.940639493867 - 5 4 6 5 -.7025184425827 - 5 -4 4 6 -.06092271728125 - 5 5 6 6 .623879200089 - 5 -5 5 6 .9861981235029 - 6 0 7 1 -2.27187050761 - 6 1 7 2 4.706932997736 - 6 -1 1 7 .01147414307425 - 6 2 7 3 1.77452330226 - 6 -2 2 7 1.702592164186 - 6 3 7 4 1.253577523384 - 6 -3 3 7 .2745454647522 - 6 4 7 5 -.32657972346 - 6 -4 4 7 -.1182450983337 - 6 5 7 6 -.6821271846421 - 6 -5 5 7 .4326499470502 - 6 6 7 7 .1007697247887 - 6 -6 6 7 -.120814498318 - 7 0 8 1 -3.389421166904 - 7 1 8 2 .1130309151425 - 7 -1 1 8 -.4348040375973 - 7 2 8 3 -.2957474316407 - 7 -2 2 8 1.369455307436 - 7 3 8 4 .3573400352894 - 7 -3 3 8 2.167887306814 - 7 4 8 5 .5855368941704 - 7 -4 4 8 .6213965263344 - 7 5 8 6 .05203500010264 - 7 -5 5 8 -.5768573078222 - 7 6 8 7 -.3136557442928 - 7 -6 6 8 -.4790889147796 - 7 7 8 8 .1922306349778 - 7 -7 7 8 -.2464809587966 - 8 0 9 1 .0204834306536 - 8 1 9 2 -2.311256011553 - 8 -1 1 9 -.2241018483335 - 8 2 9 3 -1.038556188942 - 8 -2 2 9 -.8860551823053 - 8 3 9 4 -.846113973936 - 8 -3 3 9 .6848591201855 - 8 4 9 5 -.05574367991647 - 8 -4 4 9 .6150336353733 - 8 5 9 6 .695678577153 - 8 -5 5 9 -.2149357983162 - 8 6 9 7 .2468365874415 - 8 -6 6 9 -.6806209040107 - 8 7 9 8 -.2780368893491 - 8 -7 7 9 -.1364526677998 - 8 8 9 9 .3921812758366 - 8 -8 8 9 -.1188183774612 - 9 0 10 1 1.952456156041 - 9 1 10 2 -1.194290251281 - 9 -1 1 10 .9310947757739 - 9 2 10 3 .06139909025343 - 9 -2 2 10 -.6881935868951 - 9 3 10 4 -.2650801167285 - 9 -3 3 10 -1.285708116977 - 9 4 10 5 -.47429347273 - 9 -4 4 10 -.764802346038 - 9 5 10 6 -.2043690743331 - 9 -5 5 10 .2446850113322 - 9 6 10 7 .2734611049642 - 9 -6 6 10 .208488211945 - 9 7 10 8 -.06738562398741 - 9 -7 7 10 -.09685239929559 - 9 8 10 9 -.069687028335 - 9 -8 8 10 .05248900959149 - 9 9 10 10 .2559216980063 - 9 -9 9 10 -.01047140555155 - 10 0 11 1 .6717141256452 - 10 1 11 2 .7838682024175 - 10 -1 1 11 .5396448670868 - 10 2 11 3 .586077170846 - 10 -2 2 11 .6239665854721 - 10 3 11 4 .5326713857082 - 10 -3 3 11 -.7003879893233 - 10 4 11 5 .3014501167783 - 10 -4 4 11 -.876476425557 - 10 5 11 6 -.5013958131568 - 10 -5 5 11 -.158522049416 - 10 6 11 7 -.3244663672933 - 10 -6 6 11 .6264778362881 - 10 7 11 8 .1056757809773 - 10 -7 7 11 .3395537497463 - 10 8 11 9 -.01068634177721 - 10 -8 8 11 .04379293456228 - 10 9 11 10 .04756533435282 - 10 -9 9 11 .04896548439849 - 10 10 11 11 .1821068177099 - 10 -10 10 11 -.02358721040475 - 11 0 12 1 -.8717258933581 - 11 1 12 2 .9370228292955 - 11 -1 1 12 -.8094902486845 - 11 2 12 3 .3111047563243 - 11 -2 2 12 .3258088548484 - 11 3 12 4 .2826884371284 - 11 -3 3 12 .4783097938844 - 11 4 12 5 .5030174173553 - 11 -4 4 12 .5829291608906 - 11 5 12 6 .1339592945661 - 11 -5 5 12 -.09680774258747 - 11 6 12 7 -.2624163338694 - 11 -6 6 12 -.01716441984134 - 11 7 12 8 -.03125179040021 - 11 -7 7 12 .2071549672218 - 11 8 12 9 .03653216358572 - 11 -8 8 12 .166457193963 - 11 9 12 10 .08048733324461 - 11 -9 9 12 -.1797156785318 - 11 10 12 11 .02899533712539 - 11 -10 10 12 .03929497043117 - 11 11 12 12 .1547145522889 - 11 -11 11 12 .06935395565673 - -1 -1 -1 -1 0. -MODEL DE FIT COEF. 4/24/87 N= 12 - 0 0 1 1 -40.78727009547 - 1 0 2 1 15.55149986677 - 1 1 2 2 30.6145782113 - 1 -1 1 2 3.811300951318 - 2 0 3 1 14.57125764818 - 2 1 3 2 13.33788912022 - 2 -1 1 3 2.573842273798 - 2 2 3 3 6.246312478773 - 2 -2 2 3 4.147726938906 - 3 0 4 1 1.918794347022 - 3 1 4 2 -13.60768022886 - 3 -1 1 4 -3.23214567133 - 3 2 4 3 -1.805793510892 - 3 -2 2 4 1.526739996446 - 3 3 4 4 -2.088781989674 - 3 -3 3 4 .3452455227177 - 4 0 5 1 -7.802939881287 - 4 1 5 2 -10.47681554908 - 4 -1 1 5 -5.233124820033 - 4 2 5 3 -4.259820076955 - 4 -2 2 5 -2.59084413725 - 4 3 5 4 -2.716432941171 - 4 -3 3 5 .9215712954644 - 4 4 5 5 1.04225070768 - 4 -4 4 5 -1.079567074377 - 5 0 6 1 -5.032772743742 - 5 1 6 2 4.760308666611 - 5 -1 1 6 .5065376677537 - 5 2 6 3 2.291497130041 - 5 -2 2 6 -1.575415186085 - 5 3 6 4 .1956502245705 - 5 -3 3 6 .4023657568125 - 5 4 6 5 -.7301986527041 - 5 -4 4 6 -.5298742751321 - 5 5 6 6 .04013860074939 - 5 -5 5 6 .03803159423274 - 6 0 7 1 1.774788882336 - 6 1 7 2 5.802205192034 - 6 -1 1 7 5.087508830653 - 6 2 7 3 3.102502363578 - 6 -2 2 7 1.733946053435 - 6 3 7 4 2.278820743284 - 6 -3 3 7 -.2750165922629 - 6 4 7 5 -.7791481940944 - 6 -4 4 7 -.6873463262063 - 6 5 7 6 -.7980205764678 - 6 -5 5 7 .3752858280766 - 6 6 7 7 -.2765117324086 - 6 -6 6 7 -.599697135648 - 7 0 8 1 3.510448258745 - 7 1 8 2 -.9356150532141 - 7 -1 1 8 1.79280520224 - 7 2 8 3 -1.965173005516 - 7 -2 2 8 1.193336606148 - 7 3 8 4 .45785405776 - 7 -3 3 8 -.386383108712 - 7 4 8 5 .574737351483 - 7 -4 4 8 -.4624809857196 - 7 5 8 6 .461417665206 - 7 -5 5 8 -.2343985602454 - 7 6 8 7 -.2880032580842 - 7 -6 6 8 .05707641361907 - 7 7 8 8 -.0298191443292 - 7 -7 7 8 -.5428463282006 - 8 0 9 1 1.274708488487 - 8 1 9 2 -2.944731794023 - 8 -1 1 9 -2.899036145325 - 8 2 9 3 -2.30353558588 - 8 -2 2 9 -1.271257725056 - 8 3 9 4 -1.355257374589 - 8 -3 3 9 -.3999455180609 - 8 4 9 5 .4113529547877 - 8 -4 4 9 .7344595716099 - 8 5 9 6 1.127599561835 - 8 -5 5 9 -.2100294628301 - 8 6 9 7 .2008453072562 - 8 -6 6 9 .1404842853257 - 8 7 9 8 .0223951219632 - 8 -7 7 9 -.1599893479315 - 8 8 9 9 -.03945076701807 - 8 -8 8 9 .08410471561298 - 9 0 10 1 -1.052656194387 - 9 1 10 2 -1.007340208561 - 9 -1 1 10 -2.162772539386 - 9 2 10 3 1.098770077074 - 9 -2 2 10 -.9219924802323 - 9 3 10 4 -.3747482522756 - 9 -3 3 10 -.01725563095984 - 9 4 10 5 -.4665266544803 - 9 -4 4 10 .9371966912565 - 9 5 10 6 -.3755810604351 - 9 -5 5 10 .4590994078878 - 9 6 10 7 .1298044020866 - 9 -6 6 10 .2239442291418 - 9 7 10 8 .04510093560232 - 9 -7 7 10 -.1404555165739 - 9 8 10 9 .1193705549518 - 9 -8 8 10 .1927738409531 - 9 9 10 10 -.008911905966931 - 9 -9 9 10 .06404893416531 - 10 0 11 1 -1.764982264516 - 10 1 11 2 .7090805976354 - 10 -1 1 11 .8931466331428 - 10 2 11 3 1.649223325202 - 10 -2 2 11 .8400717978537 - 10 3 11 4 .7069896370668 - 10 -3 3 11 .6656738061801 - 10 4 11 5 -.1667384243748 - 10 -4 4 11 -.1466552242138 - 10 5 11 6 -1.090479887805 - 10 -5 5 11 .1577756077833 - 10 6 11 7 -.2625186641382 - 10 -6 6 11 .1452576100433 - 10 7 11 8 -.02469906166162 - 10 -7 7 11 .07939588833624 - 10 8 11 9 .1146961373021 - 10 -8 8 11 -.01205957613476 - 10 9 11 10 .117242407385 - 10 -9 9 11 .1564935326149 - 10 10 11 11 .003454248388464 - 10 -10 10 11 -.005369891394378 - 11 0 12 1 -.4785193289548 - 11 1 12 2 .9276371323408 - 11 -1 1 12 1.472120090266 - 11 2 12 3 -.2428213808507 - 11 -2 2 12 .7314023522004 - 11 3 12 4 .03982168390355 - 11 -3 3 12 .4539401012343 - 11 4 12 5 .340857535081 - 11 -4 4 12 -.7191711283002 - 11 5 12 6 .07225272435952 - 11 -5 5 12 -.5114928100514 - 11 6 12 7 -.03294692405671 - 11 -6 6 12 -.3551236896359 - 11 7 12 8 -.1573692925568 - 11 -7 7 12 .1721038925497 - 11 8 12 9 -.01732493979113 - 11 -8 8 12 .1167373242504 - 11 9 12 10 -.05209661076843 - 11 -9 9 12 -.05362844445255 - 11 10 12 11 -.01984241496645 - 11 -10 10 12 .1229868130049 - 11 11 12 12 .07005433797051 - 11 -11 11 12 -.030301844268 - -1 -1 -1 -1 0. -TABBCP FIT COEFFICIENTS N= 13 - 0 0 1 1 -9.423791874258 - 1 0 2 1 -12.04956317567 - 1 1 2 2 9.717802938997 - 1 -1 1 2 6.058493339315 - 2 0 3 1 -7.890555735878 - 2 1 3 2 4.458244351647 - 2 -1 1 3 5.29894619357 - 2 2 3 3 1.597162766282 - 2 -2 2 3 1.258139523861 - 3 0 4 1 -1.689839024625 - 3 1 4 2 -3.212686542475 - 3 -1 1 4 .3125704603551 - 3 2 4 3 -.8348835228344 - 3 -2 2 4 -.051859686931 - 3 3 4 4 -.7675141565771 - 3 -3 3 4 -1.024407897309 - 4 0 5 1 2.349996531345 - 4 1 5 2 -2.579701526313 - 4 -1 1 5 -2.145552814077 - 4 2 5 3 -1.165046039598 - 4 -2 2 5 -1.196715140051 - 4 3 5 4 -.6854391961685 - 4 -3 3 5 -1.289072610192 - 4 4 5 5 .7763762508075 - 4 -4 4 5 -.1975007120365 - 5 0 6 1 2.068012466405 - 5 1 6 2 .6568856611593 - 5 -1 1 6 -.9085882937321 - 5 2 6 3 .5571742111295 - 5 -2 2 6 -.5539133220948 - 5 3 6 4 .2586739821418 - 5 -3 3 6 -.440645337402 - 5 4 6 5 .1038258844824 - 5 -4 4 6 -.05751252439309 - 5 5 6 6 .2816397713705 - 5 -5 5 6 .3881346232705 - 6 0 7 1 -.3072386516443 - 6 1 7 2 .942741473515 - 6 -1 1 7 .1200848908726 - 6 2 7 3 .5885645387936 - 6 -2 2 7 .3495113314008 - 6 3 7 4 .5883820009967 - 6 -3 3 7 .5624313340265 - 6 4 7 5 -.3503120547622 - 6 -4 4 7 .2110644669681 - 6 5 7 6 -.2873433662166 - 6 -5 5 7 .123145844287 - 6 6 7 7 .006611878322157 - 6 -6 6 7 .1791057518839 - 7 0 8 1 -1.078858030479 - 7 1 8 2 -.1079237058504 - 7 -1 1 8 -.2449557385052 - 7 2 8 3 -.2556562552151 - 7 -2 2 8 .2611740277598 - 7 3 8 4 .06561740735353 - 7 -3 3 8 .5937877663969 - 7 4 8 5 -.2191208591842 - 7 -4 4 8 .1911962767567 - 7 5 8 6 -.154116580002 - 7 -5 5 8 -.1798113857008 - 7 6 8 7 -.1036829711757 - 7 -6 6 8 -.1159460161898 - 7 7 8 8 -.00311385791857 - 7 -7 7 8 -.00893299189514 - 8 0 9 1 -.09977936791308 - 8 1 9 2 -.6703412339602 - 8 -1 1 9 -.3079278796481 - 8 2 9 3 -.3269116293699 - 8 -2 2 9 -.1217563780265 - 8 3 9 4 -.1228039180277 - 8 -3 3 9 -.1164497377815 - 8 4 9 5 .007302829514671 - 8 -4 4 9 -.1077509790673 - 8 5 9 6 .1526136483198 - 8 -5 5 9 -.2719355611718 - 8 6 9 7 .07612233252897 - 8 -6 6 9 -.2369162701811 - 8 7 9 8 -.09050969329126 - 8 -7 7 9 -.04856768835549 - 8 8 9 9 -.07661490220194 - 8 -8 8 9 .0711911261603 - 9 0 10 1 .58925807479 - 9 1 10 2 -.3396772956665 - 9 -1 1 10 .1974394636314 - 9 2 10 3 -.1658364561578 - 9 -2 2 10 -.09372346993536 - 9 3 10 4 .1904177575943 - 9 -3 3 10 -.4541312937187 - 9 4 10 5 .1216949370265 - 9 -4 4 10 -.2000540136697 - 9 5 10 6 .1070939041974 - 9 -5 5 10 -.02946071237 - 9 6 10 7 .1425129316597 - 9 -6 6 10 -.0785577250373 - 9 7 10 8 .06126495926761 - 9 -7 7 10 .1032382042911 - 9 8 10 9 -.1689296118176 - 9 -8 8 10 .04194469846891 - 9 9 10 10 .02668717760342 - 9 -9 9 10 -.005185216864958 - 10 0 11 1 .3422563275172 - 10 1 11 2 .3017180371188 - 10 -1 1 11 .3214055365987 - 10 2 11 3 .001687482552349 - 10 -2 2 11 .04658356636576 - 10 3 11 4 .2771719849873 - 10 -3 3 11 -.1033235045053 - 10 4 11 5 .009904554468111 - 10 -4 4 11 .04068236515715 - 10 5 11 6 -.06062230504406 - 10 -5 5 11 .2518663426191 - 10 6 11 7 -.04706495540564 - 10 -6 6 11 .06779739548475 - 10 7 11 8 .1679389731004 - 10 -7 7 11 .229522647488 - 10 8 11 9 -.08201558075229 - 10 -8 8 11 .003748604731174 - 10 9 11 10 .02117209643709 - 10 -9 9 11 -.06607692486384 - 10 10 11 11 .05009249559227 - 10 -10 10 11 -.02551964562143 - 11 0 12 1 -.1697960765849 - 11 1 12 2 .2604154465204 - 11 -1 1 12 -.06015877957592 - 11 2 12 3 .1285312613559 - 11 -2 2 12 -.008184912665115 - 11 3 12 4 -.0021070286112 - 11 -3 3 12 .2049776373756 - 11 4 12 5 -.1868276327599 - 11 -4 4 12 .1004519378256 - 11 5 12 6 -.1675526065212 - 11 -5 5 12 .1715403704083 - 11 6 12 7 -.1446253686538 - 11 -6 6 12 -.09139468428432 - 11 7 12 8 .02024379002306 - 11 -7 7 12 .1077683916036 - 11 8 12 9 .002752967861841 - 11 -8 8 12 -.05971453833967 - 11 9 12 10 -.02549266389682 - 11 -9 9 12 -.07043337610471 - 11 10 12 11 .05606431366838 - 11 -10 10 12 -.0653624338105 - 11 11 12 12 .07948020619387 - 11 -11 11 12 .1004072140538 - 12 0 13 1 -.3079609890813 - 12 1 13 2 -.08155547259654 - 12 -1 1 13 -.3274441170516 - 12 2 13 3 .01080309826843 - 12 -2 2 13 -.02514120857869 - 12 3 13 4 -.2280978668709 - 12 -3 3 13 .1288158587256 - 12 4 13 5 -.1008976150936 - 12 -4 4 13 -.1494472848318 - 12 5 13 6 -.02014085472282 - 12 -5 5 13 -.06301917558479 - 12 6 13 7 .005241647102144 - 12 -6 6 13 -.2335402518795 - 12 7 13 8 -.04410982318966 - 12 -7 7 13 -.0519244885244 - 12 8 13 9 .003764101042967 - 12 -8 8 13 -.05840595037231 - 12 9 13 10 -.02619020355901 - 12 -9 9 13 -.02573274640546 - 12 10 13 11 .01613344926975 - 12 -10 10 13 -.03247983897578 - 12 11 13 12 .09798104406851 - 12 -11 11 13 .06884176486475 - 12 12 13 13 -.100445755707 - 12 -12 12 13 .001432682450843 - -1 -1 -1 -1 0.0 -TABBCPP FIT COEFFICIENTS N= 13 - 0 0 1 1 -8.217575292816 - 1 0 2 1 -10.22853063605 - 1 1 2 2 5.416721989323 - 1 -1 1 2 3.378172497204 - 2 0 3 1 -6.297581771598 - 2 1 3 2 -.6841140061384 - 2 -1 1 3 2.844123167761 - 2 2 3 3 .3304925031653 - 2 -2 2 3 .6298349319307 - 3 0 4 1 -.9746683908664 - 3 1 4 2 -6.210417564545 - 3 -1 1 4 -.05404143894686 - 3 2 4 3 -2.214346113685 - 3 -2 2 4 -.3071793608554 - 3 3 4 4 -.3485568938002 - 3 -3 3 4 -.4922315264245 - 4 0 5 1 2.377264929598 - 4 1 5 2 -2.568265292347 - 4 -1 1 5 -1.230519182302 - 4 2 5 3 -1.557544442864 - 4 -2 2 5 -1.096190933369 - 4 3 5 4 -.4943530165419 - 4 -3 3 5 -.4223721916882 - 4 4 5 5 .406076103157 - 4 -4 4 5 .3878339822629 - 5 0 6 1 2.143858711554 - 5 1 6 2 2.298699602489 - 5 -1 1 6 -.2542397426974 - 5 2 6 3 1.422720280647 - 5 -2 2 6 -.4001347800788 - 5 3 6 4 .08050127784457 - 5 -3 3 6 -.05030543241479 - 5 4 6 5 -.3191880751949 - 5 -4 4 6 .4160166282423 - 5 5 6 6 .1037865805647 - 5 -5 5 6 .09469074101166 - 6 0 7 1 -.1336414330886 - 6 1 7 2 2.031470795933 - 6 -1 1 7 .04750926429641 - 6 2 7 3 1.498407276735 - 6 -2 2 7 .6110674195369 - 6 3 7 4 .3330122387881 - 6 -3 3 7 .4345361877853 - 6 4 7 5 -.3845953649111 - 6 -4 4 7 -.01279282434619 - 6 5 7 6 -.4449819514151 - 6 -5 5 7 -.10564700672 - 6 6 7 7 .09731230685644 - 6 -6 6 7 .02985356744778 - 7 0 8 1 -1.144350177278 - 7 1 8 2 -.06499498143961 - 7 -1 1 8 -.5924051392482 - 7 2 8 3 -.4430151918823 - 7 -2 2 8 .6084998834181 - 7 3 8 4 -.1214132967109 - 7 -3 3 8 .5125583650683 - 7 4 8 5 .1242150024843 - 7 -4 4 8 -.1724649136802 - 7 5 8 6 -.0582290765297 - 7 -5 5 8 -.301343188156 - 7 6 8 7 -.0208852315444 - 7 -6 6 8 .1306246922117 - 7 7 8 8 .1288312105634 - 7 -7 7 8 -.01489182901758 - 8 0 9 1 -.2204228135598 - 8 1 9 2 -.6806510125655 - 8 -1 1 9 -.2425398777832 - 8 2 9 3 -.9535417355836 - 8 -2 2 9 .168581197901 - 8 3 9 4 -.2549067959996 - 8 -3 3 9 -.04225522294129 - 8 4 9 5 .2549101131747 - 8 -4 4 9 -.04308078769286 - 8 5 9 6 .3589891538967 - 8 -5 5 9 -.100678123644 - 8 6 9 7 .1107361463604 - 8 -6 6 9 .02660553758195 - 8 7 9 8 -.1168024174018 - 8 -7 7 9 .07064563896795 - 8 8 9 9 .06848123229826 - 8 -8 8 9 -.1148921940411 - 9 0 10 1 .5922253979355 - 9 1 10 2 -.005522374447496 - 9 -1 1 10 .7233407839505 - 9 2 10 3 -.1617812835028 - 9 -2 2 10 .02610303861484 - 9 3 10 4 .1484939871475 - 9 -3 3 10 -.4451307763295 - 9 4 10 5 .08939551649553 - 9 -4 4 10 -.02076979855098 - 9 5 10 6 .1763899294861 - 9 -5 5 10 .1807957546178 - 9 6 10 7 .04664659924317 - 9 -6 6 10 -.01654447800432 - 9 7 10 8 -.07975800555736 - 9 -7 7 10 -.06832648454413 - 9 8 10 9 -.1349091361662 - 9 -8 8 10 .05299292316862 - 9 9 10 10 .09472525387191 - 9 -9 9 10 -.02550983255573 - 10 0 11 1 .3208806348634 - 10 1 11 2 .6794023191027 - 10 -1 1 11 .5588803838374 - 10 2 11 3 .4788884924994 - 10 -2 2 11 -.133226004816 - 10 3 11 4 .3365701115164 - 10 -3 3 11 -.1699949013625 - 10 4 11 5 -.03220118588747 - 10 -4 4 11 .0835491765384 - 10 5 11 6 -.04231825930354 - 10 -5 5 11 .1535238643362 - 10 6 11 7 -.08713372894143 - 10 -6 6 11 .01517606795763 - 10 7 11 8 .05389606105699 - 10 -7 7 11 -.06639088039284 - 10 8 11 9 -.01701781230604 - 10 -8 8 11 .02463337518506 - 10 9 11 10 -.05430567247853 - 10 -9 9 11 .06627470903816 - 10 10 11 11 .1156087492905 - 10 -10 10 11 -.04161879785029 - 11 0 12 1 -.2194088075497 - 11 1 12 2 .4236963884586 - 11 -1 1 12 -.4135016774877 - 11 2 12 3 .4020569962194 - 11 -2 2 12 -.3533827039502 - 11 3 12 4 .105058546748 - 11 -3 3 12 .2020664319094 - 11 4 12 5 -.123343999064 - 11 -4 4 12 .2248519426035 - 11 5 12 6 -.133830375587 - 11 -5 5 12 .0004195704732307 - 11 6 12 7 -.03555532501084 - 11 -6 6 12 -.05628251805407 - 11 7 12 8 .04886590362439 - 11 -7 7 12 .04053543271451 - 11 8 12 9 .08533188407849 - 11 -8 8 12 -.03197174549754 - 11 9 12 10 -.005931709720393 - 11 -9 9 12 -.03458821705331 - 11 10 12 11 -.05853085441651 - 11 -10 10 12 .032362076513 - 11 11 12 12 -.06757508495372 - 11 -11 11 12 .02660212218087 - 12 0 13 1 -.3360630251999 - 12 1 13 2 -.2188034712699 - 12 -1 1 13 -.6748656005311 - 12 2 13 3 -.1371886350991 - 12 -2 2 13 -.1568930122226 - 12 3 13 4 -.1608881090503 - 12 -3 3 13 .1845671479582 - 12 4 13 5 -.08200426227405 - 12 -4 4 13 .01138192424001 - 12 5 13 6 -.1076866653711 - 12 -5 5 13 -.08423135581579 - 12 6 13 7 .007269355961523 - 12 -6 6 13 -.0704646172654 - 12 7 13 8 -.0001063383179131 - 12 -7 7 13 .04324958789838 - 12 8 13 9 .02136464745749 - 12 -8 8 13 -.03442499813838 - 12 9 13 10 .05425519583259 - 12 -9 9 13 -.02609381651906 - 12 10 13 11 -.06170931253348 - 12 -10 10 13 -.003935266089493 - 12 11 13 12 -.1200931831069 - 12 -11 11 13 .06524347684344 - 12 12 13 13 -.003582435483922 - 12 -12 12 13 -.01762702749926 - -1 -1 -1 -1 0.0 -TABDEP FIT COEFFICIENTS N= 13 - 0 0 1 1 6.886013639903 - 1 0 2 1 10.00403161566 - 1 1 2 2 10.09195097795 - 1 -1 1 2 7.468420708244 - 2 0 3 1 8.205482131432 - 2 1 3 2 3.725113272902 - 2 -1 1 3 5.410479661116 - 2 2 3 3 4.108288331182 - 2 -2 2 3 .6579293470112 - 3 0 4 1 3.257910232939 - 3 1 4 2 -4.444110511059 - 3 -1 1 4 -1.875754720206 - 3 2 4 3 .4858529552826 - 3 -2 2 4 .07902455638514 - 3 3 4 4 -.4830611162332 - 3 -3 3 4 -1.402093829666 - 4 0 5 1 -1.448759131799 - 4 1 5 2 -2.658458538936 - 4 -1 1 5 -4.554212165992 - 4 2 5 3 -1.361159849883 - 4 -2 2 5 -.6160245346065 - 4 3 5 4 -.6789610649254 - 4 -3 3 5 -.5084315383443 - 4 4 5 5 .004632157131429 - 4 -4 4 5 .1958495995659 - 5 0 6 1 -2.882138952295 - 5 1 6 2 1.332366548132 - 5 -1 1 6 -.9648086032361 - 5 2 6 3 .5619594111339 - 5 -2 2 6 -.1518924876401 - 5 3 6 4 .2144205679073 - 5 -3 3 6 .3387009301756 - 5 4 6 5 -.1802257684928 - 5 -4 4 6 .2641901301924 - 5 5 6 6 .622166485162 - 5 -5 5 6 .07090984421601 - 6 0 7 1 -1.057826873739 - 6 1 7 2 1.137232089762 - 6 -1 1 7 2.30589537207 - 6 2 7 3 .8466801560596 - 6 -2 2 7 .6029451851415 - 6 3 7 4 .7164122993826 - 6 -3 3 7 .2530467686283 - 6 4 7 5 -.06324415424132 - 6 -4 4 7 -.1779460038447 - 6 5 7 6 .02150407653676 - 6 -5 5 7 .08280200160402 - 6 6 7 7 .05983304745874 - 6 -6 6 7 -.2963706214953 - 7 0 8 1 1.19740595359 - 7 1 8 2 -.1362174305073 - 7 -1 1 8 1.540678254246 - 7 2 8 3 -.363501272007 - 7 -2 2 8 .273773270941 - 7 3 8 4 .0940203825619 - 7 -3 3 8 -.02426853602188 - 7 4 8 5 .04335715439692 - 7 -4 4 8 -.2633231343518 - 7 5 8 6 -.007808431864434 - 7 -5 5 8 .03291123298107 - 7 6 8 7 -.1380356169823 - 7 -6 6 8 -.09129529105794 - 7 7 8 8 -.1260975167731 - 7 -7 7 8 .07324944862845 - 8 0 9 1 1.396778474629 - 8 1 9 2 -.4373596012407 - 8 -1 1 9 -.649111867372 - 8 2 9 3 -.3862156996514 - 8 -2 2 9 -.4325119885832 - 8 3 9 4 -.3501526632268 - 8 -3 3 9 -.147116510139 - 8 4 9 5 -.07998992510195 - 8 -4 4 9 .09792017491722 - 8 5 9 6 .08335528668925 - 8 -5 5 9 .02888076061267 - 8 6 9 7 .08025518121442 - 8 -6 6 9 .007790513637479 - 8 7 9 8 -.1274724894794 - 8 -7 7 9 .00878591317914 - 8 8 9 9 .01357594999257 - 8 -8 8 9 .0298557953852 - 9 0 10 1 -.03800381153562 - 9 1 10 2 -.2330144985791 - 9 -1 1 10 -1.209430061366 - 9 2 10 3 .04276829877849 - 9 -2 2 10 -.2982350778304 - 9 3 10 4 -.1120144644581 - 9 -3 3 10 -.117095922925 - 9 4 10 5 -.07764296455141 - 9 -4 4 10 .163056087004 - 9 5 10 6 -.08266651743518 - 9 -5 5 10 -.01423573757525 - 9 6 10 7 .07061413049697 - 9 -6 6 10 -.004516847436339 - 9 7 10 8 -.006916877240056 - 9 -7 7 10 -.1020757607837 - 9 8 10 9 -.04137456720805 - 9 -8 8 10 .00007954398252137 - 9 9 10 10 -.07611451258247 - 9 -9 9 10 -.1202891615426 - 10 0 11 1 -.9276967843854 - 10 1 11 2 .1147578135969 - 10 -1 1 11 -.3058156223298 - 10 2 11 3 .1114539381004 - 10 -2 2 11 .2305929478194 - 10 3 11 4 .1162130919253 - 10 -3 3 11 .02452509346212 - 10 4 11 5 .09090207058082 - 10 -4 4 11 -.02258742297913 - 10 5 11 6 -.06054792574615 - 10 -5 5 11 -.09527394074098 - 10 6 11 7 -.05969422626916 - 10 -6 6 11 .02598294930505 - 10 7 11 8 .03024279078803 - 10 -7 7 11 -.04254716898179 - 10 8 11 9 .01349921790746 - 10 -8 8 11 .03995902530179 - 10 9 11 10 -.03990626326528 - 10 -9 9 11 -.04355726910506 - 10 10 11 11 -.01997102125394 - 10 -10 10 11 .05403170043949 - 11 0 12 1 -.4253167299501 - 11 1 12 2 .06721125134118 - 11 -1 1 12 .4874296053585 - 11 2 12 3 .06137089030137 - 11 -2 2 12 .2637157357297 - 11 3 12 4 .0951394462647 - 11 -3 3 12 .03807613274205 - 11 4 12 5 .1044623568056 - 11 -4 4 12 -.07813995557971 - 11 5 12 6 .02996492733967 - 11 -5 5 12 -.0676293982322 - 11 6 12 7 .05000189883142 - 11 -6 6 12 .01844059919055 - 11 7 12 8 .004363058240928 - 11 -7 7 12 .02685265082415 - 11 8 12 9 .05842631351241 - 11 -8 8 12 .0238456421518 - 11 9 12 10 .0789639435339 - 11 -9 9 12 .01024572083753 - 11 10 12 11 .02501943135348 - 11 -10 10 12 .01992479832251 - 11 11 12 12 .08152951090123 - 11 -11 11 12 .004444871241593 - 12 0 13 1 .361772217877 - 12 1 13 2 -.1155097373874 - 12 -1 1 13 .4525212887065 - 12 2 13 3 -.07142928077012 - 12 -2 2 13 -.05735827391254 - 12 3 13 4 .01658372622117 - 12 -3 3 13 -.04137815708348 - 12 4 13 5 -.01642837704454 - 12 -4 4 13 -.05590602077128 - 12 5 13 6 -.007585039139499 - 12 -5 5 13 .03666983857813 - 12 6 13 7 .09023371327605 - 12 -6 6 13 -.03708579964171 - 12 7 13 8 .02795149319669 - 12 -7 7 13 -.01156561902924 - 12 8 13 9 -.0270162636816 - 12 -8 8 13 -.037104399887 - 12 9 13 10 .07916737521212 - 12 -9 9 13 -.03238999728184 - 12 10 13 11 .007099928473008 - 12 -10 10 13 -.0126174250227 - 12 11 13 12 .04891897560943 - 12 -11 11 13 -.08286614213375 - 12 12 13 13 -.04398805015317 - 12 -12 12 13 -.008601730327356 - -1 -1 -1 -1 0.0 -TABDEPP FIT COEFFICIENTS N= 13 - 0 0 1 1 5.920692204684 - 1 0 2 1 10.39820282289 - 1 1 2 2 5.800516945291 - 1 -1 1 2 7.472842650781 - 2 0 3 1 10.67084313532 - 2 1 3 2 .9029215612835 - 2 -1 1 3 5.131409693064 - 2 2 3 3 4.886930117725 - 2 -2 2 3 3.299350437663 - 3 0 4 1 5.322678056374 - 3 1 4 2 -3.742551488904 - 3 -1 1 4 -2.528606394917 - 3 2 4 3 2.075692003548 - 3 -2 2 4 2.529987924472 - 3 3 4 4 1.030852734881 - 3 -3 3 4 -1.732758239058 - 4 0 5 1 -1.641146062906 - 4 1 5 2 -.6955409809641 - 4 -1 1 5 -5.153364185799 - 4 2 5 3 -.8390104187207 - 4 -2 2 5 -.03518566369731 - 4 3 5 4 .253361285683 - 4 -3 3 5 -1.013788699912 - 4 4 5 5 .02500475908265 - 4 -4 4 5 -1.066472320284 - 5 0 6 1 -4.380873035283 - 5 1 6 2 2.358317400303 - 5 -1 1 6 -.971850029849 - 5 2 6 3 -.4190605748686 - 5 -2 2 6 -.9139370555012 - 5 3 6 4 -.4278843188145 - 5 -3 3 6 -.03143120051625 - 5 4 6 5 -.07879105488352 - 5 -4 4 6 -.4321757856552 - 5 5 6 6 -.2796491010558 - 5 -5 5 6 -.1418489346758 - 6 0 7 1 -1.944685553594 - 6 1 7 2 .5806442806033 - 6 -1 1 7 2.806972081494 - 6 2 7 3 -.09081216901511 - 6 -2 2 7 -.112956429397 - 6 3 7 4 -.3000196297175 - 6 -3 3 7 .2042321427389 - 6 4 7 5 .04306142600711 - 6 -4 4 7 .2332659875766 - 6 5 7 6 -.4532392347559 - 6 -5 5 7 .0896046016337 - 6 6 7 7 .05567063585181 - 6 -6 6 7 .1229963364831 - 7 0 8 1 1.479553277436 - 7 1 8 2 -1.300245267469 - 7 -1 1 8 1.924223668886 - 7 2 8 3 -.5414984329267 - 7 -2 2 8 .2256719793465 - 7 3 8 4 .07761227726265 - 7 -3 3 8 .2539803585417 - 7 4 8 5 .07567054970964 - 7 -4 4 8 .4032868775907 - 7 5 8 6 .1035105716055 - 7 -5 5 8 .224118625949 - 7 6 8 7 -.1064718883391 - 7 -6 6 8 .3042183386721 - 7 7 8 8 .2635688380735 - 7 -7 7 8 .05312752004931 - 8 0 9 1 1.975799150911 - 8 1 9 2 -.6663953837212 - 8 -1 1 9 -.7104207054888 - 8 2 9 3 -.06082610933548 - 8 -2 2 9 -.178975901385 - 8 3 9 4 .2552884944747 - 8 -3 3 9 .1938265523215 - 8 4 9 5 -.04672217159207 - 8 -4 4 9 .1829673516896 - 8 5 9 6 .3133285302374 - 8 -5 5 9 .1306417594692 - 8 6 9 7 .08184565814773 - 8 -6 6 9 -.02612184370654 - 8 7 9 8 .191791804514 - 8 -7 7 9 .1698166518988 - 8 8 9 9 .1141906518397 - 8 -8 8 9 -.2295650076529 - 9 0 10 1 .01783463595819 - 9 1 10 2 .3734492204491 - 9 -1 1 10 -1.418343453174 - 9 2 10 3 .5506317566508 - 9 -2 2 10 -.2222722022595 - 9 3 10 4 .07500057676174 - 9 -3 3 10 -.1082266840248 - 9 4 10 5 -.01462436898823 - 9 -4 4 10 -.2090716706985 - 9 5 10 6 -.06427855337696 - 9 -5 5 10 -.1561290825072 - 9 6 10 7 .05601133147728 - 9 -6 6 10 -.2627556844842 - 9 7 10 8 .05560656061237 - 9 -7 7 10 -.05502772272962 - 9 8 10 9 .07187020224282 - 9 -8 8 10 -.08556092852252 - 9 9 10 10 -.01800286608615 - 9 -9 9 10 -.2077848658052 - 10 0 11 1 -1.2462936543 - 10 1 11 2 .5037599730906 - 10 -1 1 11 -.2824896533336 - 10 2 11 3 .2317489405874 - 10 -2 2 11 .1043208776144 - 10 3 11 4 -.1599272888989 - 10 -3 3 11 -.2347765824683 - 10 4 11 5 .09262736125733 - 10 -4 4 11 -.2463390715851 - 10 5 11 6 -.1739361249472 - 10 -5 5 11 -.2786182175276 - 10 6 11 7 -.07388984799516 - 10 -6 6 11 -.04842709843022 - 10 7 11 8 -.1044718633134 - 10 -7 7 11 -.09825402013051 - 10 8 11 9 -.03075766556296 - 10 -8 8 11 .04417009807911 - 10 9 11 10 -.0226360372601 - 10 -9 9 11 -.08215854161013 - 10 10 11 11 -.07396759592444 - 10 -10 10 11 .005180636679623 - 11 0 12 1 -.5526193982931 - 11 1 12 2 .1135229763152 - 11 -1 1 12 .7073153007168 - 11 2 12 3 -.3201826129814 - 11 -2 2 12 .08677407112873 - 11 3 12 4 -.03389467402489 - 11 -3 3 12 -.02892269986718 - 11 4 12 5 .05412428056281 - 11 -4 4 12 .04449227996362 - 11 5 12 6 .03073406113205 - 11 -5 5 12 -.03508487158689 - 11 6 12 7 .0364755646816 - 11 -6 6 12 .1440617588899 - 11 7 12 8 -.1008777205172 - 11 -7 7 12 .01787580803726 - 11 8 12 9 -.04303545085455 - 11 -8 8 12 .05333585120234 - 11 9 12 10 .01867078625264 - 11 -9 9 12 .01407588610753 - 11 10 12 11 -.08147929169992 - 11 -10 10 12 .04424433044286 - 11 11 12 12 -.07055733280213 - 11 -11 11 12 .02322119061378 - 12 0 13 1 .565843904225 - 12 1 13 2 -.1999029637902 - 12 -1 1 13 .5447446667708 - 12 2 13 3 -.3218366782121 - 12 -2 2 13 -.1551891461455 - 12 3 13 4 .1808343635557 - 12 -3 3 13 .1793541579173 - 12 4 13 5 -.03511074770808 - 12 -4 4 13 .107797058087 - 12 5 13 6 .1020406505171 - 12 -5 5 13 .1746836137234 - 12 6 13 7 .0634662140301 - 12 -6 6 13 .0372039029671 - 12 7 13 8 .02377434977081 - 12 -7 7 13 -.02041847581621 - 12 8 13 9 .02288140444433 - 12 -8 8 13 -.01870641970617 - 12 9 13 10 -.01482565821405 - 12 -9 9 13 .001052882413605 - 12 10 13 11 .02544212763028 - 12 -10 10 13 -.0045059418087 - 12 11 13 12 -.03765900834424 - 12 -11 11 13 .03363653203838 - 12 12 13 13 -.02327176397122 - 12 -12 12 13 .07239206375464 - -1 -1 -1 -1 0.0 -\EOF diff --git a/util/EMPIRICAL/srcIE/data/hpke.noaa b/util/EMPIRICAL/srcIE/data/hpke.noaa deleted file mode 100644 index c9c200a4..00000000 --- a/util/EMPIRICAL/srcIE/data/hpke.noaa +++ /dev/null @@ -1,1688 +0,0 @@ -Models for Hemispheric Power Levels 1-10 from Evans and Fuller-Rowell. -Grid is 21 mlats and 30 mlts. Have every 2 degrees in mlat from 50 to 90. -Have every 0.8 hours from 0 MLT to 23.2 MLT. These averages were made -from original tables every 1 degree and 8 minutes. Scaled by 10**3 -Hall Conductance (mhos/m * 10**3) - Richmond - 487 616 411 378 325 267 340 390 352 373 376 380 394 397 401 - 405 408 410 490 494 473 476 456 358 303 256 193 149 231 359 - 441 547 367 369 324 310 381 378 345 379 380 381 391 398 406 - 414 421 427 489 485 461 454 422 354 302 266 207 157 229 335 - 440 532 320 365 296 328 388 360 359 382 379 380 386 363 340 - 317 292 448 487 476 443 440 408 349 302 266 224 209 260 350 - 715 590 349 366 309 351 371 359 373 381 369 382 379 380 382 - 383 383 456 491 478 437 421 393 346 304 264 256 265 327 521 - 733 608 406 402 333 374 409 440 357 379 359 390 380 395 408 - 422 435 484 499 487 453 434 382 350 323 289 271 292 321 527 - 629 534 373 410 352 383 413 412 372 379 361 409 378 386 413 - 441 467 491 495 479 449 444 370 373 332 303 301 319 361 433 - 502 404 327 408 376 418 433 380 367 375 358 394 379 380 416 - 453 489 499 484 465 427 415 357 369 349 299 322 302 363 467 - 526 598 591 784 534 502 430 401 375 365 352 387 376 375 401 - 427 499 654 469 440 415 382 347 425 400 343 380 401 495 530 - 873 1219 1135 1275 1053 742 726 519 464 407 423 404 372 392 388 - 488 514 660 523 509 405 369 369 543 551 581 704 904 1051 836 - 1295 1288 1369 1407 1629 1236 1046 857 632 663 621 564 488 560 540 - 542 552 599 764 690 530 487 547 592 757 859 1163 1373 1415 1412 - 1186 1208 1349 1661 1949 1795 1583 1402 1135 1102 936 925 846 1028 884 - 831 788 927 986 951 731 751 802 806 1090 1244 1263 1257 1213 1259 - 835 861 1063 1296 1444 1661 1745 1843 1766 1544 1326 1494 1466 1306 1234 - 1248 1073 1311 1182 1127 857 953 1079 1126 1207 1207 1175 1008 1074 800 - 686 782 926 1015 1166 1272 1402 1659 1811 1767 1575 1579 1756 1533 1309 - 1275 1162 1314 1210 1113 1045 1124 1224 1255 1149 1023 958 889 862 663 - 674 643 828 829 984 1084 1166 1393 1534 1593 1608 1567 1570 1613 1319 - 1395 1275 1182 1191 1201 1228 1268 1102 1036 967 1076 872 831 902 693 - 608 546 722 801 936 958 1074 1228 1493 1427 1460 1493 1401 1337 1231 - 1194 1310 1548 1685 1630 1435 1256 1034 927 871 973 821 701 709 692 - 689 583 697 766 926 971 970 1070 1282 1259 1294 1249 1267 1231 1078 - 1238 1119 1579 1572 1604 1191 1000 957 844 763 776 911 804 728 720 - 698 667 785 754 733 848 948 969 1045 1059 1125 1137 941 1047 922 - 1030 1056 1030 996 1126 862 948 844 940 834 705 796 945 768 655 - 725 811 823 646 689 757 846 916 841 988 904 944 854 924 890 - 1008 948 818 912 810 656 769 696 783 910 738 829 642 722 661 - 799 881 747 572 634 829 823 718 778 820 816 856 892 784 785 - 935 968 791 943 786 622 572 673 778 845 797 734 631 598 728 - 610 749 635 681 646 734 752 712 804 854 666 765 849 706 722 - 751 1208 979 783 683 804 770 995 872 885 815 743 750 756 683 - 636 636 636 636 636 636 636 636 636 636 636 636 636 636 636 - 636 636 636 636 636 636 636 636 636 636 636 636 636 636 636 - 726 896 517 416 425 330 358 398 361 375 378 379 387 389 392 - 394 395 456 546 513 497 460 414 361 294 278 219 179 386 556 - 573 726 459 404 439 359 364 395 351 378 378 382 384 392 400 - 408 415 469 538 514 486 446 394 350 303 280 234 209 269 421 - 556 706 422 413 471 365 386 379 350 384 378 381 384 390 397 - 403 408 486 533 498 483 441 382 343 305 261 264 241 260 408 - 871 709 430 448 466 384 388 375 358 381 370 384 384 399 414 - 429 442 490 534 497 465 439 379 344 313 288 308 313 314 592 - 925 672 448 461 478 419 407 401 364 379 368 384 380 385 412 - 439 465 500 534 504 469 465 402 347 326 328 345 370 397 661 - 759 613 445 479 500 446 422 393 351 374 374 392 384 394 434 - 474 483 514 527 498 472 462 395 349 337 323 356 400 479 577 - 671 582 429 495 537 476 423 379 357 374 372 394 386 389 439 - 488 495 514 509 477 453 438 382 391 353 435 390 422 589 621 - 938 789 662 621 742 639 492 471 371 377 376 385 372 391 441 - 491 514 512 514 454 460 477 502 512 506 484 622 715 782 813 - 1608 1714 1745 1649 1485 1199 872 784 622 610 559 426 427 527 487 - 546 598 585 648 594 614 676 651 688 820 936 1052 1227 1285 1347 - 2121 2305 2523 2654 2575 2222 1738 1484 1269 1135 953 819 777 1014 923 - 782 822 826 998 873 956 868 886 964 1000 1478 1653 1762 1970 2134 - 1603 1675 1783 2202 2612 2755 2549 2374 2154 1876 1616 1406 1444 1689 1745 - 1365 1470 1279 1479 1341 1193 1154 1141 1240 1444 1752 1743 1885 1951 1861 - 1014 1116 1358 1680 1796 2085 2489 2735 2662 2415 2139 1979 2089 2236 2101 - 1999 2015 1771 1925 1600 1350 1415 1557 1498 1545 1532 1493 1560 1209 1139 - 795 946 1090 1374 1407 1526 1703 2334 2427 2534 2416 2306 2111 2210 2081 - 2047 1878 1815 1836 1543 1504 1699 1590 1442 1358 1193 1090 1236 1043 790 - 633 828 924 1178 1270 1360 1420 1723 1899 1988 2050 2187 2136 2129 1940 - 1914 1620 1556 1610 1700 1672 1625 1385 1239 1143 1019 946 1117 1197 784 - 617 763 815 954 1124 1230 1306 1499 1800 1779 1778 1754 1747 1836 1487 - 1416 1614 1903 2131 2096 1903 1578 1236 1087 1024 981 920 863 920 777 - 620 752 916 937 978 1093 1187 1318 1647 1563 1623 1556 1494 1530 1362 - 1379 1443 1630 1916 1828 1548 1268 1130 1051 999 995 1077 824 786 716 - 624 739 727 784 935 958 1091 1192 1315 1295 1286 1215 1166 1214 1191 - 1230 1245 1172 1219 1217 1039 1020 965 1037 909 1030 908 749 624 775 - 693 952 778 758 880 912 969 984 970 989 992 985 1057 1169 1112 - 1464 1266 1199 1121 1006 918 892 1015 940 848 837 826 781 690 721 - 755 664 588 745 941 868 819 726 801 820 905 921 1037 991 893 - 1163 1181 915 978 882 832 777 974 896 777 691 638 702 651 668 - 828 613 711 704 787 793 744 683 850 722 794 852 905 1073 1198 - 834 909 989 792 766 932 803 840 781 750 601 472 928 647 773 - 768 768 768 768 768 768 768 768 768 768 768 768 768 768 768 - 768 768 768 768 768 768 768 768 768 768 768 768 768 768 768 - 742 1003 607 536 545 374 363 404 363 378 379 381 384 392 400 - 408 415 447 584 550 589 487 434 362 297 305 217 222 224 483 - 697 930 512 532 546 396 386 392 358 393 379 381 382 392 403 - 413 422 456 556 541 575 484 409 351 300 266 226 242 233 465 - 1201 901 482 567 556 412 397 391 357 389 382 382 388 397 406 - 415 423 472 550 526 554 503 397 358 308 294 269 286 263 732 - 1100 839 522 655 561 432 429 417 360 399 374 384 393 376 402 - 427 451 483 551 519 551 556 404 351 320 339 318 317 340 720 - 1039 760 554 760 598 453 443 428 355 394 374 386 384 382 407 - 433 457 479 549 523 544 602 437 352 330 357 377 399 439 739 - 866 663 577 631 604 481 461 399 349 393 373 395 386 384 424 - 464 453 497 545 507 522 633 452 355 341 353 394 435 447 715 - 737 644 609 643 654 534 484 401 349 377 365 398 385 385 430 - 475 480 498 530 481 498 672 513 434 420 430 523 565 548 764 - 1215 1280 1214 1271 1269 946 727 671 606 529 462 419 421 453 581 - 569 530 519 626 593 735 845 758 764 713 769 944 878 1059 1102 - 2583 2616 2957 3314 2964 2324 1853 1674 1425 1158 826 743 808 1001 862 - 918 754 801 864 910 1073 1053 986 944 1003 1257 1546 1685 2062 2195 - 3242 3121 3555 4003 4215 3943 3581 3154 2807 2282 1632 1408 1535 1620 1770 - 1429 1406 1379 1295 1346 1294 1264 1237 1166 1439 1921 2279 2714 3076 3198 - 2458 2391 2534 2717 3228 3811 4110 3989 4038 3459 2787 2433 2272 2383 2485 - 2247 1945 1887 1820 1807 1520 1585 1567 1627 1965 2526 2631 2703 2851 2603 - 1468 1879 1753 1729 1973 2575 3155 3600 3927 3889 3574 3284 3069 2931 2862 - 2711 2439 2401 2232 1931 1589 1794 2059 2103 2217 2105 2117 1927 1973 1821 - 933 1067 1388 1478 1589 1701 2056 2536 3054 3318 3394 3359 3345 3135 2864 - 2770 2561 2244 2029 1825 1919 2091 2092 1803 1758 1445 1628 1570 1424 1218 - 693 791 1298 1391 1490 1443 1711 1852 2168 2371 2541 2727 2912 2875 2446 - 2201 2012 1869 2017 2124 2182 2007 1774 1439 1492 1389 1228 1240 938 951 - 667 638 927 1016 1221 1268 1494 1667 1849 2069 1956 2041 2101 1893 1812 - 1595 1679 2170 2673 2483 2324 1871 1543 1329 1553 1161 1021 1081 768 810 - 743 713 833 1066 1126 1159 1340 1508 1649 1795 1715 1751 1681 1609 1545 - 1465 1513 1818 2058 1968 1650 1561 1330 1242 1501 1151 901 850 689 691 - 697 770 779 964 1045 1040 1122 1287 1326 1338 1366 1418 1349 1344 1267 - 1271 1302 1311 1375 1336 1160 1181 1229 1379 1355 1026 878 704 787 732 - 666 651 1008 791 1008 958 933 1176 1007 1058 1083 1161 1046 1051 1069 - 1504 1328 1481 1486 1178 1041 1068 1274 1343 1159 869 783 859 682 747 - 628 682 823 718 946 813 850 929 852 820 912 1093 1118 1034 950 - 1339 1221 1719 1432 1040 778 982 989 1491 1021 858 1090 931 914 614 - 647 724 785 724 788 777 866 1010 735 788 865 876 838 1127 935 - 1023 1070 1437 1002 799 763 827 872 917 986 587 799 841 610 558 - 853 853 853 853 853 853 853 853 853 853 853 853 853 853 853 - 853 853 853 853 853 853 853 853 853 853 853 853 853 853 853 - 788 1080 593 562 603 419 366 402 364 376 383 380 388 398 409 - 420 429 500 613 574 700 530 404 359 300 299 234 255 208 498 - 1200 1005 534 559 617 437 388 394 358 379 380 382 382 398 414 - 430 444 495 603 565 680 566 383 347 304 293 271 309 230 715 - 1202 950 544 594 621 450 413 422 355 381 384 381 383 403 424 - 445 464 503 608 547 649 622 390 368 317 349 348 304 273 737 - 1176 924 573 658 636 475 443 461 367 385 378 383 384 381 388 - 394 462 495 609 533 618 715 408 351 345 387 390 399 366 771 - 1141 798 601 697 659 507 482 446 364 392 374 388 384 384 418 - 451 504 514 617 541 597 785 476 342 365 435 456 461 462 1025 - 986 673 641 653 693 597 517 439 375 386 370 397 387 390 428 - 466 528 523 583 521 562 791 538 366 370 449 480 484 510 862 - 991 1103 1027 1056 1008 888 729 689 611 466 405 408 421 401 446 - 490 526 569 618 570 653 878 716 537 498 702 692 701 621 897 - 2767 3287 3350 3377 2726 2206 1781 1695 1445 957 761 730 740 698 800 - 827 692 751 803 831 897 1168 1045 906 812 1033 1066 1182 1552 1769 - 4888 5186 5204 6140 5700 4795 4048 3710 3209 2199 1718 1522 1349 1549 1542 - 1333 1208 1222 1203 1177 1244 1364 1296 1182 1261 1818 2052 2749 3539 4276 - 4899 4604 4532 5380 6021 6317 5938 5753 5094 4184 3338 2915 2514 2665 2553 - 2066 2023 1790 1611 1566 1479 1523 1543 1585 1964 2801 3695 4070 4746 5010 - 3708 3179 3067 3176 3657 4714 5574 6227 6149 5569 4831 4237 3783 3562 3293 - 2911 2827 2418 2167 1957 1688 1907 2188 2401 2754 3530 3778 3849 4101 4284 - 2570 2313 2410 2097 2426 2877 3748 4697 5304 5590 5332 4795 4441 3991 3805 - 3525 3218 2872 2449 1926 2048 2433 2865 2859 2939 3081 3186 3244 3256 2857 - 1584 1541 1644 1624 1741 1903 2420 3141 3626 4065 4348 4440 4341 4055 3598 - 3503 2991 2451 2166 2237 2599 2945 2884 2515 2651 2419 2487 2553 2027 2007 - 959 1129 1080 1338 1437 1603 1860 2242 2505 2807 2981 3244 3411 3214 2820 - 2563 2167 2135 2634 2928 2866 2829 2304 2075 2251 2061 1857 1967 1451 1193 - 637 755 814 1045 1224 1414 1610 1816 2187 2324 2250 2203 2170 2074 1839 - 1740 1893 2435 3151 3132 2542 2221 1819 1736 1972 1580 1258 1418 942 857 - 659 657 734 783 1137 1282 1472 1730 1830 1848 1904 1792 1807 1696 1516 - 1472 1523 1985 2131 2021 1652 1684 1542 1471 1837 1645 1139 1008 719 654 - 630 563 788 795 1035 1125 1173 1494 1412 1368 1417 1384 1635 1325 1436 - 1121 1260 1353 1662 1509 1345 1532 1200 1272 1395 1175 1096 970 861 847 - 550 593 612 961 872 891 984 1283 1237 1045 1039 1212 1220 1191 1268 - 1236 1264 1308 1586 1294 1251 998 1167 1172 1153 907 912 728 637 750 - 683 694 913 739 937 823 802 924 1001 905 888 886 939 986 1181 - 1449 1405 1538 1420 1158 1072 1344 1163 890 947 857 764 672 658 769 - 694 881 903 666 724 733 828 780 986 1353 748 830 998 842 916 - 1359 1138 1936 1340 786 1394 1010 1013 803 886 909 665 683 764 526 - 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 - 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 1089 - 881 1200 699 593 618 448 378 402 371 380 379 384 385 400 416 - 432 446 693 698 614 741 583 413 354 312 310 296 294 243 562 - 1291 1069 573 600 632 470 398 395 367 380 378 396 386 406 427 - 448 467 686 689 606 714 628 390 344 320 322 318 291 259 775 - 1222 1023 533 636 648 495 393 425 384 383 376 384 386 417 449 - 480 510 739 668 574 696 707 388 342 330 366 390 347 309 765 - 1227 956 570 662 647 504 419 488 434 383 379 387 383 388 405 - 422 588 725 683 562 677 793 421 348 352 419 450 429 408 817 - 1127 831 593 654 662 543 464 488 396 386 376 401 385 385 412 - 439 673 700 671 556 643 833 512 362 378 444 466 485 503 950 - 1012 801 896 879 875 719 681 592 569 479 414 407 381 389 435 - 481 706 667 655 549 639 856 659 421 426 481 536 531 556 882 - 2145 2488 2583 2546 2091 1646 1518 1546 1437 1098 769 579 602 494 635 - 776 801 746 723 696 718 948 925 693 648 735 858 1007 1186 1589 - 5715 6654 6331 6447 5570 4419 3813 3667 3231 2349 1672 1294 1257 1240 977 - 1259 1186 1180 1056 1111 1056 1260 1247 1126 1095 1420 1895 2957 3830 4522 - 7726 7793 7788 8352 8554 8002 7150 6886 5981 4565 3526 2711 2437 2346 2175 - 1940 1770 1652 1447 1427 1383 1515 1505 1519 1954 3174 4218 6017 6768 7391 - 6647 6152 5852 6391 7258 8185 8311 8422 8401 7206 5881 4813 4038 3589 3240 - 2763 2625 2124 1919 1712 1555 1836 1958 2526 3345 4680 5719 6405 7107 7191 - 5213 4359 3885 3798 4029 5370 6608 7488 8253 8233 7464 6306 5554 4622 4101 - 3660 3385 2771 2431 1966 1892 2621 3310 3830 4572 5053 5392 5880 6836 5947 - 3815 3439 2963 2834 2788 3223 4158 5096 6227 6995 7154 6523 5750 4895 4446 - 4070 3727 2951 2451 2228 2676 3419 3894 4054 4279 4158 4175 5479 4958 4470 - 2234 1909 2118 2122 2193 2304 2749 3466 4021 4751 5276 5522 5070 4495 3985 - 3676 3061 2491 2488 2934 3561 3760 3487 3375 3640 3308 3143 4015 3019 2752 - 1089 1706 1241 1523 1785 1935 2095 2455 2824 3280 3393 3653 3662 3267 2786 - 2617 2400 2694 3463 3830 3522 3457 2920 2695 3262 3219 2589 2342 1965 1279 - 874 1053 886 994 1282 1533 1807 2039 2355 2561 2437 2397 2354 2249 1872 - 1800 2066 2694 3424 3182 2713 2505 2349 2185 2697 2565 1466 1486 1506 763 - 584 1011 646 732 1078 1183 1568 1745 2009 1988 1932 1892 1785 1997 1813 - 1469 1425 1672 2394 2018 1908 1659 1833 1878 2314 1915 1013 976 1030 793 - 587 827 603 696 912 981 1205 1370 1604 1558 1431 1471 1238 1282 1321 - 1323 1234 1480 1862 1510 1429 1304 1316 1420 1582 926 1060 1065 634 708 - 845 683 652 595 889 819 903 1045 1099 1088 997 1112 937 1140 1091 - 1231 1265 1421 1794 1125 1128 1190 1218 1138 1075 730 1402 1072 987 760 - 623 573 646 626 852 750 758 810 895 823 751 1187 872 1045 1405 - 1287 1701 1523 2385 1003 926 1171 1033 899 757 716 987 849 686 855 - 564 706 931 597 750 677 671 808 1077 808 820 763 807 818 978 - 1037 1278 1532 1828 869 891 972 706 681 611 548 674 655 489 926 - 710 710 710 710 710 710 710 710 710 710 710 710 710 710 710 - 710 710 710 710 710 710 710 710 710 710 710 710 710 710 710 - 825 1099 678 595 632 458 364 399 375 376 379 380 384 404 425 - 445 464 750 888 657 860 618 425 350 317 326 356 280 277 551 - 1174 1065 619 611 640 476 371 406 376 382 380 382 385 414 443 - 472 499 787 870 635 824 682 394 345 332 363 376 298 312 743 - 1253 1043 598 651 672 493 393 479 389 384 377 385 384 434 484 - 534 582 778 861 619 790 773 388 352 360 434 423 414 348 800 - 1269 1005 652 701 659 512 427 522 411 386 376 391 385 382 393 - 403 670 775 879 612 776 891 434 377 411 478 482 487 420 844 - 1182 953 741 886 805 627 613 610 509 419 388 406 397 391 411 - 430 739 792 842 627 758 948 550 397 413 474 539 570 531 907 - 1862 1934 1834 2005 1715 1250 1384 1214 1205 813 663 510 434 460 506 - 551 807 831 844 648 736 960 707 527 531 614 910 915 1098 1630 - 5194 5946 5888 5575 4696 3659 3434 3020 2636 1955 1484 1085 960 951 939 - 925 1011 1019 939 764 856 1109 1064 923 870 1403 2068 3001 3582 4920 - 9318 9445 9974 10429 9582 8318 7251 6664 5521 4203 3234 2401 1994 1714 1592 - 1700 1484 1421 1273 1144 1116 1395 1581 1642 1900 3296 4822 6635 7579 8693 - 10185 9345 9282 10118 11375 11553 10898 10670 9774 7425 5856 4370 3648 3205 2988 - 2518 2138 1976 1624 1378 1327 1725 2358 2817 3922 6201 7963 9159 9999 10375 - 9166 8243 7301 7102 7954 9375 10543 10797 11426 10739 8775 6610 5528 4613 4141 - 3425 2948 2550 1948 1582 1721 2419 3475 4733 5998 7474 9186 9625 10216 9317 - 7562 6421 5369 4468 4567 5590 7323 8148 9337 10596 10138 8524 7011 5769 4805 - 4356 3722 3046 2139 1897 2537 3677 5095 5889 6797 7471 8170 9421 8982 7382 - 5499 4802 3950 3547 3466 3660 4402 5329 6351 7908 8777 8367 7044 5749 5069 - 4376 3634 2964 2394 2987 3814 4784 5314 5756 6181 6390 7002 7656 7407 4939 - 3986 3244 2443 2882 2729 2759 3144 3805 4348 4961 5623 5944 5607 4741 4340 - 3702 2910 2764 3374 4088 4597 4730 4583 4628 5325 4834 5911 5246 5988 4341 - 2459 1975 1463 1941 2071 2049 2224 3061 3269 3467 3500 3778 3808 3169 2500 - 2253 2320 3140 4107 4090 3862 3580 3653 3727 4507 2882 3112 2974 2738 2928 - 1226 1369 1341 1446 1426 1644 1695 2414 2386 2622 2534 2534 2324 1917 1772 - 1690 1899 2393 2996 2875 2744 2572 2531 2653 3671 2414 1845 1742 1753 1446 - 763 1215 1296 879 1110 1200 1409 1617 1695 1954 1756 1753 1628 1589 1631 - 1334 1452 1508 1602 1885 1754 1642 2203 1785 2491 1001 1409 1138 847 906 - 745 958 883 718 977 955 1036 1050 1192 1339 1343 1351 1255 1615 1219 - 1027 1095 1349 1353 1493 1170 1353 1409 1455 1776 887 1078 1451 788 702 - 1017 894 645 631 780 908 926 849 804 849 837 1108 1084 1436 1031 - 1213 1086 1545 1263 1164 1170 1151 939 1056 1015 743 574 752 789 695 - 628 861 594 641 648 760 1040 824 691 687 697 1013 944 1066 953 - 1619 1532 1177 1079 1413 1139 804 652 766 768 642 549 711 654 884 - 552 588 579 504 546 622 660 728 711 689 648 751 717 1106 882 - 1086 932 1015 865 834 667 602 605 639 597 541 486 477 661 506 - 669 669 669 669 669 669 669 669 669 669 669 669 669 669 669 - 669 669 669 669 669 669 669 669 669 669 669 669 669 669 669 - 808 1068 695 590 616 442 397 403 365 376 376 379 385 449 513 - 577 639 1210 1256 712 820 657 422 351 316 348 369 265 288 548 - 1182 1071 622 615 628 471 391 426 371 381 377 381 385 473 562 - 651 738 1202 1212 711 813 777 397 347 329 388 405 304 337 759 - 1228 1065 650 682 654 492 406 512 395 386 384 384 385 501 618 - 735 850 1135 1170 698 808 912 404 370 412 502 469 399 358 793 - 1229 1038 736 756 714 560 442 617 462 407 388 393 388 383 403 - 422 1050 1114 1147 670 843 991 480 435 461 546 556 528 439 834 - 1938 1588 1488 1705 1214 902 841 1022 742 634 543 417 389 374 418 - 462 1181 1134 1115 677 837 980 638 445 600 897 945 859 958 1670 - 5095 4526 4368 4410 3246 2468 2642 2351 1977 1577 1177 704 630 578 749 - 919 1236 1198 1088 692 842 979 876 680 934 1632 2298 2819 3136 5252 - 9949 9741 9737 9686 8350 6741 6237 5341 4735 3437 2530 1741 1229 977 1138 - 1298 1477 1344 1153 879 1023 1180 1380 1509 2284 3449 5335 6231 7735 10020 - 13056 12861 12954 13654 14018 12944 11103 10242 9373 6733 5181 3562 2482 2110 1939 - 1973 2013 1788 1386 1196 1360 1618 2357 3379 4621 6892 9944 10808 12502 13367 - 12940 11414 10830 11528 13195 13841 13757 13540 13283 10962 8739 6329 4709 3909 3181 - 2977 2719 2301 1664 1401 1705 2213 3439 5813 7566 10631 12760 13487 13913 13975 - 11611 9811 8781 8372 8752 10196 11534 12202 13178 13613 11745 9145 6930 5608 4810 - 4102 3516 2524 1837 1726 2532 3723 5558 8246 9193 11301 12581 13292 12314 11449 - 9516 8333 7419 6328 5949 6365 7569 8884 9609 11392 11473 10233 8208 6651 5752 - 5101 3912 2734 2274 2752 4148 5367 7135 8726 9495 10622 12073 11538 10934 10374 - 7057 6574 6158 4796 4487 4471 5085 5692 6242 7774 8762 8781 7840 6360 5602 - 4537 3464 2896 3350 4124 5296 6431 7374 7828 8986 9561 10880 9664 8578 8997 - 4465 4400 4772 3502 3385 3370 3555 4313 4742 4773 5304 5426 5549 4850 4254 - 3453 2747 3492 4506 4768 4971 5893 6183 6457 8207 6874 7949 6714 7357 6987 - 3680 3609 3540 2645 2588 2470 2712 3290 3637 3363 3464 3305 3296 2607 2423 - 2542 2369 3258 4053 3950 3631 4554 4264 4792 5924 4087 4388 4131 3964 4157 - 2911 2202 1908 2379 1877 1743 1809 2571 2563 2485 2557 2396 1874 1798 1751 - 1745 1642 2300 2665 2281 1984 2448 2694 3449 3811 2782 3984 3668 2720 2652 - 1440 1403 973 1920 1237 1565 1514 1865 1625 1823 1562 1740 1203 1442 1456 - 1212 1153 1327 1694 1236 1572 2124 2093 1991 1791 1665 2746 987 1208 1489 - 1022 964 905 1544 1112 1096 1233 1364 1275 1406 1283 1117 805 847 952 - 992 1062 1194 1879 1147 1393 1193 1014 1001 1197 1111 827 586 551 735 - 615 637 667 796 831 987 852 1079 1077 1211 870 932 1094 863 923 - 901 1089 1019 1623 1044 844 721 830 862 843 1295 598 508 472 528 - 563 698 686 610 819 777 808 714 774 1140 699 752 1005 1081 751 - 782 888 971 988 1027 858 629 721 652 758 749 647 729 549 621 - 749 699 732 1063 608 672 786 747 882 1078 792 733 618 676 687 - 868 752 857 674 642 599 607 596 609 927 530 694 933 646 1022 - 658 658 658 658 658 658 658 658 658 658 658 658 658 658 658 - 658 658 658 658 658 658 658 658 658 658 658 658 658 658 658 - 823 973 707 592 616 467 382 415 376 383 384 397 387 432 477 - 522 566 1423 1478 784 903 670 426 350 503 357 325 375 524 674 - 815 1050 621 603 635 474 383 470 385 393 397 383 387 465 543 - 621 697 1325 1420 819 872 772 408 352 525 404 354 360 345 580 - 1672 1078 713 661 653 506 386 519 417 430 409 384 383 506 629 - 752 873 1250 1400 795 872 837 414 411 558 522 528 585 418 1045 - 2804 1593 1418 1182 980 687 483 753 595 626 561 402 394 391 394 - 397 1048 1212 1387 842 875 960 486 473 621 758 891 975 1142 1973 - 4102 3617 3204 3076 2416 1488 1183 1679 1545 1222 992 506 419 394 429 - 464 1198 1193 1343 852 912 1048 675 617 943 1592 2361 2893 3083 3592 - 9169 8462 8016 7869 6597 3960 4063 4112 3784 2645 2082 883 733 574 666 - 758 1325 1279 1328 858 987 1134 1004 1508 2005 4088 6183 7031 6929 10381 - 14938 13768 13883 14390 13334 10746 9455 8382 7197 5288 3952 2151 1621 1352 1391 - 1430 1502 1586 1388 1087 1200 1468 1977 3128 4813 8108 11432 11636 13044 15756 - 15732 15050 15408 16432 17660 17376 14774 13434 12620 9456 7599 4384 3241 2472 2733 - 2362 2082 1936 1659 1342 1534 2157 3648 6015 8245 12234 14215 14954 16963 17296 - 15216 13139 13201 12849 14182 15565 15588 15407 15968 13693 11000 7422 5606 4701 3654 - 3338 2761 2247 1912 1762 2634 3501 5834 9318 11723 14228 17271 18191 17096 17427 - 13170 11696 11850 10241 10069 10603 11381 12434 13427 14067 12400 9862 8115 6518 5414 - 4261 3176 2494 2157 2732 5039 6014 8386 11530 13761 15635 18241 16754 15403 15805 - 12024 8976 9756 8917 7534 7307 8030 8537 8970 11012 10985 10177 9489 7105 5930 - 4521 2950 2849 3219 4320 6411 8308 9456 12152 14472 16257 17743 16224 13819 12560 - 9045 7278 7261 6537 5808 5595 6472 6353 6217 7691 7867 7802 7496 6155 5472 - 3859 2555 3070 4386 5099 6739 7846 8281 10807 13364 12903 14593 12388 11813 10268 - 7123 4641 5321 4806 5091 4816 4799 4736 4346 5080 4817 4816 4405 4086 3528 - 2900 2543 3102 4162 4522 5515 6769 6569 9159 10774 10672 8693 11391 8203 10464 - 4360 3799 4695 4190 3939 3803 3424 3939 3481 3404 3314 2899 2866 2283 1784 - 2241 2288 2309 3239 2980 3932 4445 4814 6569 8116 6857 6283 6468 5739 5364 - 3135 3387 3489 2074 2404 2108 2268 2568 2525 2947 2343 2004 1771 1504 1576 - 1466 1587 1744 1989 1942 3668 2575 3048 4725 5155 2663 4641 2526 2726 3075 - 1171 2335 3381 1026 1540 1396 2122 1917 2190 1835 1400 1292 1116 1453 1350 - 1056 1648 1529 1703 1398 2313 1657 2555 2956 2309 1884 1916 2457 1989 1633 - 2346 2941 834 723 1196 929 2599 1321 1567 1710 1043 944 812 936 1626 - 2570 1342 1611 1275 1228 1279 2215 1616 1923 1415 1183 1141 1306 823 907 - 1260 545 607 610 1012 817 1784 974 1443 1679 761 972 979 1572 3105 - 1428 994 1074 1345 1500 1215 1371 1149 872 901 650 602 669 531 582 - 569 525 627 487 917 916 720 730 924 676 792 1165 1401 1316 1131 - 916 1003 1187 1477 1329 702 887 741 611 669 498 580 592 538 529 - 476 537 590 513 615 944 716 811 764 689 711 699 792 775 946 - 965 952 1348 784 1169 558 778 598 579 852 507 672 613 543 579 - 783 783 783 783 783 783 783 783 783 783 783 783 783 783 783 - 783 783 783 783 783 783 783 783 783 783 783 783 783 783 783 - 864 1071 724 579 559 527 400 397 392 396 386 396 416 440 464 - 488 510 1311 1100 755 857 681 432 368 372 340 377 397 452 658 - 974 1222 717 637 580 471 416 451 426 424 398 403 388 435 483 - 530 576 1442 1096 774 900 783 427 385 537 350 399 516 478 726 - 1336 1554 1342 1248 757 628 527 617 504 524 422 455 383 468 554 - 640 724 1524 1075 828 901 893 426 429 766 582 478 958 900 1118 - 3221 3415 2853 2387 1490 1215 874 1317 924 856 647 546 392 374 411 - 448 966 1421 1050 856 932 987 523 574 1426 1551 1279 1841 2697 2959 - 7115 6800 5458 6298 4352 3588 2894 2814 2473 1848 1304 694 472 382 450 - 518 1011 1294 1040 880 1012 1131 773 1052 2518 4080 5020 4850 7427 7271 - 12605 11747 10924 12851 10587 8328 6634 5902 5018 4069 2887 1240 913 537 578 - 618 1357 1281 1051 963 1044 1274 1326 2391 4957 9357 11958 9967 14077 16693 - 17938 16576 17105 18242 17462 14408 11737 10529 8684 7391 5141 2957 1885 1481 1382 - 1282 1729 1388 1159 1037 1351 1816 2899 5321 8623 14924 17411 17729 18982 19145 - 19278 17826 18183 19146 20087 20209 17204 16202 13457 10275 8844 5554 3844 3102 2998 - 2334 2354 1670 1437 1966 2213 5378 6224 9571 12482 20910 22125 22539 23116 22684 - 18594 16250 13984 13561 15884 16518 17403 17210 16229 13067 11406 8833 6320 4930 4739 - 3232 2978 1850 1743 3080 4765 7504 8579 13196 16966 23325 23186 24088 25121 19565 - 16329 13162 12443 10441 11922 11297 13175 13274 14768 12655 11550 10564 8283 6715 5661 - 4028 3228 2089 2420 4478 6890 9501 11954 16557 18965 21561 22232 20808 21912 20800 - 16394 10951 10823 7827 9238 8675 9356 9349 8857 10072 9701 9888 8568 7043 5704 - 4082 2697 2387 3606 5280 8243 11153 15233 17125 19828 21995 20980 21611 19805 17508 - 10051 10215 10991 7048 8095 6713 6618 6351 6876 6107 6206 6261 6557 5178 4884 - 3367 1793 3014 4177 5835 8389 11733 14374 16023 17725 18452 17782 15672 14015 14292 - 7079 10346 6692 5960 6501 5709 5256 4597 4501 4302 3681 3521 3841 2937 2719 - 2545 1799 3662 4451 5459 6617 7994 8211 13798 14681 10647 10585 13497 12017 9816 - 7735 8318 3553 4006 5061 4048 3037 4052 2922 2540 2420 1945 1986 1926 1784 - 1587 1901 2217 3452 4038 5820 4234 7524 10249 7735 5773 7579 10405 7675 5429 - 4889 3940 4368 3440 3985 2739 1649 1652 2123 1350 1448 1350 1209 1444 1334 - 1436 1457 1271 2553 2239 2382 3188 3665 5614 1822 2104 2857 4846 1238 8384 - 1216 767 5388 1707 2657 2107 1285 1224 1340 969 938 887 1219 902 983 - 1081 898 1584 1551 1610 1538 1851 1212 1424 855 1406 799 1549 2742 2445 - 585 1513 2641 805 1823 1867 1200 1181 781 829 754 1064 2791 754 969 - 738 690 1441 1190 1191 798 1016 1032 733 659 2296 3291 850 1290 714 - 4142 2308 1140 749 1456 2112 956 1046 656 651 616 784 1013 614 701 - 823 1184 1388 1170 1000 765 1560 999 1034 545 1231 1701 865 547 679 - 4497 1399 782 666 988 2048 1291 842 953 713 805 611 813 677 915 - 1154 1469 1191 1747 1788 719 1019 638 1083 488 1762 609 2418 1524 1738 - 558 808 658 602 739 1850 1561 1195 1269 916 808 631 1390 1637 927 - 1144 1493 1106 2261 970 536 637 872 684 535 631 727 822 1138 1454 - 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 - 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 1020 - 857 929 556 630 673 500 458 487 515 473 423 388 398 459 521 - 583 645 705 1527 899 652 578 497 415 383 451 420 643 714 786 - 1138 1258 650 957 1050 607 539 748 569 527 439 387 398 487 577 - 667 755 714 1437 891 679 619 413 466 470 438 1104 1512 898 1018 - 2713 2657 1418 1756 2856 1150 763 1784 869 983 531 400 395 499 603 - 707 810 686 1358 897 697 704 454 926 1138 1330 2728 3194 2923 2818 - 3893 4966 3604 4501 6590 2895 1669 3659 1944 1426 815 457 426 536 646 - 756 864 789 1349 946 836 822 710 1431 2952 2320 7112 4231 6313 5103 - 9536 7597 8764 10569 10593 6434 5484 5377 4364 2715 1729 932 598 547 700 - 853 1005 983 1292 914 1209 1152 1540 2372 5857 6406 13751 9243 13867 11701 - 17101 12682 16173 19595 15399 13049 11149 8984 6706 5511 3885 2013 1479 1466 1381 - 1296 1209 1097 1406 1059 1790 2063 3218 4249 10075 15163 22244 18074 21771 19436 - 18576 18461 18850 24142 22257 18903 16338 13791 8336 8456 6038 3352 2151 2841 1969 - 1095 1647 1709 1580 1531 2587 3937 6201 10277 16257 22684 24448 25945 25651 23299 - 21113 23357 19157 20706 21864 21172 20969 18916 17159 10977 8247 5394 4296 4025 2809 - 1592 2601 1901 2016 2363 4116 10292 9475 16279 21078 27933 22051 29146 27675 21948 - 22165 21197 16391 13565 17478 17640 20750 15403 18244 10457 10193 7389 6111 5250 4625 - 2507 2129 2619 2322 2870 4987 15825 15108 21740 24571 32230 25998 23851 26982 22551 - 18220 14546 14442 10426 14487 12855 14047 11707 15899 10583 9618 7848 7233 6360 4622 - 3164 6997 3734 2713 3025 10365 17805 21621 24140 27498 31572 27022 24252 20151 20750 - 15708 12792 12148 12767 12656 11267 8817 9060 13842 10766 7194 6550 6357 6859 4853 - 2941 8849 2498 3315 5168 13925 16990 25977 24882 28071 26749 28390 14902 12370 21083 - 11895 10389 9447 9507 9806 10540 6368 8000 10515 7503 3833 4163 3716 5379 4765 - 2897 7051 2248 3494 7127 9936 10877 23804 23765 20929 16614 22912 14858 9597 13418 - 9090 7288 5932 6854 7646 5908 6110 6632 7801 4785 4446 2518 2022 2794 3021 - 5241 2720 2127 4285 6226 7848 8067 12643 18477 15769 7192 7347 7519 13031 13257 - 3908 4367 4526 4555 4651 5246 4998 3969 4289 3105 3867 1782 2243 2174 2116 - 3629 1586 2087 3158 4733 6455 4331 6239 9903 10693 5794 5762 2803 9793 8619 - 3062 1114 1619 3133 4704 4835 2901 4945 1777 1964 1255 1451 2124 1490 942 - 1116 1571 1545 2374 1543 2240 1958 2524 3506 6341 5348 5515 5681 4615 7841 - 4275 2776 1275 2408 3092 4779 2310 2864 1355 1290 1005 1083 1397 879 1376 - 1298 1245 1413 1830 1525 6374 4240 1448 1401 1278 4235 1368 7264 9701 3500 - 929 1314 1149 1474 1158 6571 2251 1160 823 1134 950 879 1180 786 872 - 811 1698 1890 1404 2600 2721 2148 785 994 1147 714 1149 829 507 620 - 1015 1103 853 760 961 2709 1841 2075 1667 1282 778 839 779 810 757 - 776 905 2547 944 1428 840 773 787 660 1209 579 666 753 841 928 - 1084 1156 1228 663 808 899 1332 1051 1243 2188 1210 1418 914 1844 715 - 1094 2274 1451 906 696 823 845 792 777 1138 969 799 870 942 1013 - 905 879 854 828 802 778 756 1056 902 741 1076 1227 1316 1164 856 - 2110 1508 1044 719 910 907 903 786 1273 1060 1034 1008 983 957 931 - 678 678 678 678 678 678 678 678 678 678 678 678 678 678 678 - 678 678 678 678 678 678 678 678 678 678 678 678 678 678 678 -Pedesen Conductance (mhos/m * 10**3) - Richmond - 357 399 331 315 344 316 416 421 401 402 396 399 413 419 426 - 433 440 445 553 529 503 515 490 382 338 284 228 183 277 317 - 358 399 307 326 357 365 455 418 407 399 401 399 410 420 431 - 442 452 461 548 521 494 498 459 376 336 289 229 193 280 319 - 388 433 294 351 343 385 463 412 424 401 399 398 404 381 357 - 334 308 486 553 513 467 488 449 375 341 288 264 239 300 344 - 546 506 343 373 362 405 447 441 425 402 397 400 398 399 400 - 401 401 505 574 517 462 480 437 377 346 304 300 290 348 447 - 620 542 413 416 387 433 481 512 407 401 398 408 399 415 430 - 445 459 527 571 531 480 502 442 394 376 346 328 326 346 483 - 568 530 403 422 413 452 488 485 404 406 404 430 396 405 435 - 465 494 537 563 528 475 504 442 424 390 369 357 365 388 456 - 507 448 367 433 442 486 506 447 395 405 402 416 400 408 444 - 481 517 557 550 510 452 465 423 430 406 354 372 361 397 470 - 525 565 530 674 559 552 504 472 439 412 426 411 406 418 438 - 457 527 666 528 493 449 439 416 486 465 402 420 426 472 503 - 838 1141 1097 1133 954 755 732 593 546 477 500 470 423 458 416 - 524 568 689 616 588 482 447 449 572 582 610 625 739 886 821 - 1501 1504 1607 1603 1736 1392 1100 888 730 712 679 625 566 615 601 - 631 667 696 800 747 615 557 595 644 742 813 1064 1332 1450 1624 - 1439 1481 1640 2035 2278 2116 1814 1551 1255 1180 992 945 866 935 889 - 926 907 957 994 955 795 783 840 919 1170 1417 1503 1514 1475 1529 - 949 1017 1267 1557 1736 2042 2117 2162 2007 1745 1485 1495 1410 1284 1194 - 1257 1146 1302 1197 1122 943 1044 1261 1360 1476 1479 1337 1163 1253 907 - 745 913 1038 1153 1292 1491 1650 2033 2164 2128 1888 1822 1863 1642 1428 - 1365 1266 1363 1299 1239 1211 1346 1471 1485 1287 1187 1036 959 963 705 - 756 725 898 963 1065 1185 1270 1590 1748 1898 1920 1927 1860 1868 1567 - 1585 1436 1368 1417 1461 1464 1466 1240 1158 1032 1217 929 884 976 789 - 644 604 800 920 1019 1028 1164 1324 1636 1536 1569 1660 1584 1601 1502 - 1435 1546 1723 1903 1822 1550 1352 1189 983 920 1041 918 738 769 762 - 741 632 749 882 1014 1083 1093 1150 1380 1345 1392 1351 1385 1325 1246 - 1427 1221 1732 1808 1832 1346 1061 1035 910 828 831 971 848 788 818 - 770 713 845 826 801 932 1127 1081 1175 1187 1250 1309 1063 1158 1025 - 1211 1223 1129 1110 1303 1008 1002 906 1010 941 771 861 1009 860 728 - 798 932 908 715 760 846 942 1072 931 1126 1030 1074 951 1025 1036 - 1178 1163 891 1051 913 700 821 747 845 989 882 889 687 780 700 - 890 1023 858 623 695 948 897 781 901 943 982 991 1056 906 949 - 1089 1163 882 1096 895 669 616 713 835 929 951 839 706 639 846 - 648 847 683 725 701 814 827 783 928 996 781 854 969 800 853 - 845 1428 1066 846 729 908 880 1115 973 1002 927 850 829 806 744 - 686 686 686 686 686 686 686 686 686 686 686 686 686 686 686 - 686 686 686 686 686 686 686 686 686 686 686 686 686 686 686 - 573 621 410 390 415 383 436 427 400 401 397 398 406 412 418 - 424 429 516 639 560 546 527 469 385 336 305 260 215 477 525 - 471 547 392 411 446 415 445 433 399 400 398 401 403 419 435 - 451 465 526 629 557 540 518 452 376 349 323 273 239 321 396 - 473 561 394 432 472 425 459 445 404 405 398 400 403 414 426 - 437 447 563 629 542 545 523 450 372 355 320 310 265 297 385 - 777 606 462 454 485 446 468 459 417 404 396 403 402 423 444 - 465 485 573 635 542 529 525 458 377 372 355 361 332 339 558 - 782 609 476 469 513 481 487 485 420 403 401 404 398 404 441 - 479 516 576 638 552 534 571 491 396 393 395 403 402 400 591 - 680 584 474 495 550 513 502 472 402 404 412 413 403 413 464 - 514 530 573 616 552 533 563 486 423 408 396 415 440 470 588 - 630 564 479 530 590 545 503 458 396 407 413 419 406 410 467 - 523 543 579 592 540 506 518 465 468 424 489 435 450 511 588 - 888 877 763 695 796 681 570 552 440 447 453 423 423 450 493 - 535 568 601 626 545 548 557 553 554 543 529 567 596 625 709 - 1789 1986 2017 1853 1643 1254 904 829 687 647 603 507 507 585 575 - 648 671 693 742 663 698 696 663 676 763 809 900 1104 1316 1431 - 2510 2679 2915 3011 2878 2450 1805 1473 1220 1069 903 793 777 919 940 - 890 892 928 1009 880 927 838 850 899 944 1365 1661 1982 2259 2463 - 1964 2056 2168 2622 3013 3127 2858 2500 2163 1838 1508 1289 1250 1371 1478 - 1302 1360 1281 1386 1209 1140 1086 1181 1371 1548 2033 2066 2235 2277 2185 - 1184 1359 1641 2052 2198 2490 2910 3085 2960 2649 2213 1954 1878 1901 1805 - 1768 1807 1676 1725 1470 1337 1538 1801 1817 1855 1872 1806 1835 1448 1396 - 895 1133 1238 1625 1651 1784 2065 2754 2849 2931 2750 2558 2274 2217 2019 - 1934 1813 1757 1741 1663 1739 2021 1960 1768 1639 1361 1294 1459 1168 936 - 709 993 1049 1355 1465 1517 1632 2017 2289 2421 2488 2598 2480 2429 2145 - 2057 1796 1811 1902 2059 2028 1934 1594 1428 1347 1121 1087 1168 1185 882 - 703 925 948 1072 1298 1382 1430 1652 1996 1996 1992 2058 2075 2228 1795 - 1674 1885 2258 2576 2554 2213 1814 1440 1216 1170 1134 1022 936 1051 922 - 696 898 1112 1040 1120 1240 1348 1554 1924 1762 1826 1748 1662 1780 1589 - 1546 1661 1943 2259 2186 1797 1469 1269 1196 1164 1202 1313 940 867 856 - 714 819 818 883 1062 1108 1241 1367 1558 1480 1556 1388 1396 1482 1389 - 1461 1515 1420 1441 1460 1181 1121 1068 1175 1098 1228 1071 877 672 948 - 827 941 857 884 1059 1093 1139 1099 1167 1165 1193 1175 1261 1388 1325 - 1635 1484 1438 1357 1212 1100 997 1206 1103 1032 985 932 903 750 841 - 911 767 647 853 1134 1048 972 827 941 928 1088 1115 1220 1164 1064 - 1389 1439 1085 1173 1052 921 888 1154 1059 906 809 689 811 705 788 - 992 670 848 817 927 911 885 765 1000 806 950 1009 1056 1244 1445 - 1000 1097 1175 950 897 1067 940 1011 906 848 684 518 1012 732 913 - 862 862 862 862 862 862 862 862 862 862 862 862 862 862 862 - 862 862 862 862 862 862 862 862 862 862 862 862 862 862 862 - 596 759 479 468 479 421 438 429 421 404 402 400 402 424 446 - 468 489 546 715 637 719 578 485 394 341 363 264 238 270 433 - 593 750 436 488 499 449 459 439 422 417 401 399 401 424 447 - 470 492 548 679 625 696 587 459 380 347 323 274 265 283 438 - 1029 758 447 523 525 468 473 474 423 412 409 401 409 430 452 - 473 493 564 673 605 668 613 460 394 361 358 323 317 309 669 - 1007 727 518 583 548 488 504 507 421 426 402 404 419 395 446 - 497 524 576 675 600 667 668 477 390 384 406 373 341 374 690 - 928 688 551 646 597 512 521 508 410 427 405 406 404 401 448 - 495 541 565 673 619 655 710 524 398 400 428 429 419 436 682 - 801 627 552 620 639 549 543 482 401 430 416 417 406 402 468 - 534 546 590 669 603 620 737 545 428 414 425 452 470 450 672 - 731 649 622 707 725 607 568 491 412 427 432 426 411 412 472 - 531 583 583 653 584 595 752 585 505 477 474 516 531 492 695 - 1367 1410 1345 1390 1279 1005 802 733 637 590 529 491 495 518 677 - 661 636 629 725 681 799 833 710 691 642 675 746 722 931 1121 - 2904 2951 3149 3325 2906 2246 1727 1452 1198 994 799 743 741 860 871 - 993 855 867 884 875 960 917 841 820 857 1134 1508 1772 2244 2477 - 3644 3519 3878 4169 4223 3835 3249 2792 2338 1854 1391 1204 1203 1269 1455 - 1329 1281 1248 1160 1142 1117 1069 1050 1094 1372 1969 2549 3057 3412 3595 - 2838 2750 2911 3101 3587 4014 4106 3865 3646 3035 2386 2027 1848 1874 1992 - 1891 1688 1628 1535 1449 1310 1423 1546 1766 2196 2855 3019 3088 3158 2980 - 1767 2140 2085 2134 2383 2977 3548 3890 4001 3838 3343 2898 2626 2478 2380 - 2278 2108 2032 1848 1659 1587 1962 2343 2427 2571 2461 2447 2245 2273 2071 - 1119 1283 1674 1818 1927 2098 2499 2995 3461 3706 3663 3454 3199 2892 2607 - 2433 2250 2051 1939 1987 2214 2458 2501 2197 2140 1781 1859 1823 1631 1421 - 815 942 1501 1634 1824 1709 2007 2216 2614 2860 3022 3182 3243 3066 2640 - 2308 2160 2178 2422 2618 2690 2450 2188 1745 1831 1675 1483 1462 1130 1163 - 757 727 1091 1194 1504 1553 1781 2007 2154 2388 2257 2416 2544 2264 2191 - 1904 1981 2622 3293 3061 2863 2259 1882 1584 1837 1428 1236 1283 864 923 - 855 844 1004 1235 1384 1410 1613 1766 2014 2148 2004 2037 1953 1842 1824 - 1686 1704 2129 2536 2425 2019 1916 1627 1502 1741 1394 1055 1020 792 812 - 832 914 919 1176 1256 1276 1353 1560 1623 1646 1633 1695 1650 1628 1512 - 1471 1537 1577 1682 1625 1405 1425 1455 1605 1580 1243 1056 845 948 863 - 802 756 1109 900 1227 1158 1121 1401 1199 1284 1310 1412 1272 1278 1286 - 1653 1593 1721 1742 1418 1270 1251 1470 1504 1375 1045 912 1051 777 903 - 712 789 966 813 1146 970 1031 1134 1019 965 1117 1307 1306 1253 1164 - 1532 1457 1906 1680 1245 929 1171 1205 1469 1242 1007 1242 1075 1028 701 - 730 841 938 832 921 891 1056 1204 864 937 1054 1063 1010 1310 1134 - 1249 1300 1688 1188 945 897 1011 1052 1119 1166 624 917 979 647 644 - 936 936 936 936 936 936 936 936 936 936 936 936 936 936 936 - 936 936 936 936 936 936 936 936 936 936 936 936 936 936 936 - 613 794 474 489 519 456 441 445 429 406 405 398 407 433 459 - 485 509 591 754 694 861 633 463 396 355 361 278 267 253 433 - 916 782 451 508 549 483 462 459 432 405 405 400 401 431 461 - 491 519 591 739 680 837 673 454 393 364 358 317 303 281 598 - 972 781 468 543 575 502 487 508 424 405 411 400 401 436 472 - 507 541 611 740 657 795 731 460 412 386 419 385 316 321 646 - 1006 783 510 596 601 530 518 546 425 413 412 402 402 400 425 - 449 545 608 740 646 761 823 486 403 424 452 440 398 387 696 - 992 718 565 643 645 566 562 529 419 430 431 409 403 403 456 - 509 593 622 750 653 734 889 558 414 445 496 505 467 458 917 - 875 691 655 689 721 651 602 523 444 429 421 421 413 409 479 - 548 620 631 711 633 693 894 622 448 444 501 509 504 495 815 - 1053 1171 1093 1147 1056 903 808 734 633 525 485 471 494 444 513 - 581 621 670 730 677 754 915 732 580 529 637 620 637 601 884 - 2783 3077 3093 3118 2506 1946 1598 1474 1175 851 733 694 709 688 824 - 842 776 808 850 837 870 991 886 790 705 884 944 1157 1604 1902 - 4800 4979 4874 5355 4935 4063 3401 2921 2316 1628 1310 1143 1041 1164 1278 - 1219 1098 1090 1050 1018 1054 1098 1016 1012 1083 1688 2110 2980 3646 4296 - 4975 4751 4620 5099 5486 5442 5026 4708 3945 3051 2414 2022 1717 1789 1892 - 1708 1585 1492 1309 1254 1207 1295 1362 1555 2001 2938 3785 4338 4782 5097 - 3860 3523 3417 3566 3940 4664 5132 5424 5220 4531 3752 3128 2647 2543 2488 - 2280 2151 1911 1643 1495 1496 1815 2251 2584 3062 3802 3953 4083 4198 4398 - 2763 2600 2728 2509 2856 3286 4040 4726 5068 5061 4610 3990 3521 3125 2907 - 2771 2506 2136 1901 1764 2140 2689 3213 3230 3326 3393 3382 3382 3337 3080 - 1690 1729 1910 1976 2141 2346 2882 3610 4088 4418 4500 4336 3974 3551 3067 - 2873 2529 2188 2234 2547 2992 3390 3342 2929 3012 2707 2626 2599 2190 2015 - 1064 1270 1305 1627 1760 1977 2292 2755 3084 3385 3532 3723 3733 3422 2931 - 2652 2421 2553 3176 3500 3487 3361 2786 2454 2573 2317 2095 1947 1603 1359 - 750 906 1003 1284 1493 1740 1984 2207 2680 2861 2731 2705 2633 2489 2243 - 2083 2296 2992 3800 3731 3127 2703 2246 2083 2255 1821 1495 1563 1114 995 - 783 778 895 933 1398 1575 1811 2113 2259 2268 2343 2185 2190 1911 1808 - 1720 1820 2397 2604 2474 2038 2029 1881 1776 2076 1878 1352 1197 859 777 - 767 674 962 929 1251 1373 1437 1813 1731 1687 1749 1685 1942 1600 1687 - 1337 1530 1648 1966 1794 1599 1767 1448 1526 1624 1369 1302 1126 1044 978 - 671 701 724 1039 1051 1093 1209 1508 1465 1287 1279 1474 1455 1407 1502 - 1483 1503 1550 1811 1506 1448 1227 1367 1368 1348 1078 1080 850 747 874 - 827 793 1024 848 1146 1010 986 1111 1182 1114 1081 1082 1123 1166 1391 - 1584 1493 1658 1620 1332 1246 1467 1344 1056 1120 1029 840 809 743 881 - 794 992 1018 758 863 887 1000 945 1136 1345 911 1001 1151 1018 1121 - 1405 1279 2033 1453 965 1401 1166 1211 988 1050 1100 746 814 922 572 - 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 - 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 1160 - 662 849 567 503 535 480 452 436 444 411 406 407 405 435 466 - 496 525 729 817 753 904 676 470 392 373 373 338 300 288 475 - 933 846 476 525 562 513 485 454 446 408 405 424 408 442 477 - 512 545 728 801 739 866 731 452 392 386 385 364 306 305 619 - 1010 863 457 579 589 537 473 508 459 410 408 405 408 452 496 - 540 583 777 785 706 836 807 458 393 400 427 437 356 343 676 - 1070 822 506 615 617 553 506 579 510 411 417 408 402 406 452 - 498 658 782 801 692 807 894 498 412 427 482 489 425 425 747 - 1030 759 590 666 687 606 563 578 481 424 434 436 408 405 465 - 525 746 777 787 685 770 941 598 441 455 508 506 482 493 914 - 1055 877 965 977 984 810 789 685 622 554 502 470 455 426 495 - 564 765 749 770 678 755 935 722 503 497 528 544 545 577 928 - 2174 2414 2459 2440 2082 1576 1480 1376 1178 946 750 643 632 571 669 - 767 807 792 814 775 804 933 867 679 619 664 812 1045 1217 1685 - 5028 5627 5363 5447 4694 3651 3192 2878 2251 1609 1243 1072 999 968 905 - 1091 1014 1002 967 975 964 1047 1047 955 969 1360 1875 2869 3549 4142 - 6722 6692 6633 7035 6991 6264 5557 5095 4142 2922 2249 1791 1574 1536 1603 - 1490 1374 1302 1168 1133 1114 1234 1285 1407 1881 3085 4077 5410 6076 6420 - 6253 5753 5490 5789 6328 6734 6705 6592 6086 4897 3796 2974 2434 2265 2332 - 2028 1907 1639 1430 1298 1369 1690 1911 2504 3309 4625 5501 5917 6444 6529 - 5027 4395 4132 4101 4304 5136 5930 6407 6613 6196 5276 4256 3465 3111 2951 - 2661 2364 1996 1712 1607 1899 2682 3422 3868 4549 4974 5180 5377 5950 5640 - 3712 3386 3185 3158 3214 3649 4438 5141 5725 6097 5812 5146 4324 3647 3306 - 2986 2615 2171 2027 2298 2987 3762 4295 4311 4410 4218 4108 4749 4432 4181 - 2256 2077 2333 2402 2568 2747 3230 3964 4522 5021 5268 5182 4663 3961 3396 - 3051 2641 2504 2789 3396 4085 4285 3972 3740 3776 3398 3167 3443 2782 2572 - 1273 1576 1442 1792 2119 2319 2565 2992 3461 3912 4013 4197 4098 3596 3039 - 2785 2784 3266 4071 4440 4105 3990 3361 2992 3288 3060 2576 2227 1859 1435 - 1034 1098 1052 1189 1565 1856 2191 2507 2902 3142 2999 2946 2882 2749 2292 - 2204 2529 3292 4000 3686 3194 2924 2669 2455 2708 2327 1623 1503 1315 920 - 701 1090 781 882 1310 1443 1866 2095 2395 2429 2368 2327 2183 2373 2158 - 1806 1721 2052 2737 2346 2213 1950 2087 2049 2308 1784 1165 1122 1011 915 - 715 943 713 838 1118 1205 1440 1633 1892 1873 1726 1801 1526 1552 1533 - 1549 1489 1730 2104 1716 1628 1549 1534 1622 1735 1109 1210 1177 736 839 - 962 806 763 713 1084 999 1100 1281 1302 1291 1222 1326 1141 1325 1292 - 1421 1478 1631 1988 1309 1323 1411 1432 1316 1243 873 1405 1108 1091 886 - 735 684 758 731 1021 920 914 986 1062 994 917 1266 1036 1203 1488 - 1474 1764 1651 2184 1192 1115 1342 1201 1069 918 839 1097 908 765 1019 - 657 817 1058 673 865 813 815 971 1223 954 986 926 987 974 1123 - 1255 1450 1558 1724 1052 934 1081 840 825 742 638 789 753 574 1031 - 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 - 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 - 634 788 536 508 544 494 440 449 461 414 409 400 403 436 470 - 503 535 758 929 792 993 710 485 392 381 382 362 300 330 482 - 990 828 503 534 574 530 449 471 460 413 412 402 404 441 478 - 515 551 777 911 768 952 776 456 397 396 419 392 314 360 675 - 1063 862 508 584 623 542 473 553 462 419 410 405 403 459 515 - 571 626 781 909 747 908 860 456 420 439 493 451 401 387 725 - 1107 865 574 688 672 573 518 612 487 430 419 414 404 400 432 - 464 698 792 938 735 892 956 509 448 505 546 522 478 434 770 - 1174 997 808 1006 910 726 726 707 596 505 466 447 431 410 460 - 510 763 812 904 739 871 1001 629 479 489 543 597 583 566 966 - 1997 2031 1917 2107 1811 1368 1423 1208 1109 830 706 581 512 526 579 - 632 812 837 894 752 839 993 767 602 588 672 943 973 1123 1775 - 4614 5054 4844 4758 4063 3166 2900 2489 2083 1492 1190 971 881 861 855 - 847 906 932 932 823 893 1026 982 906 888 1362 2056 2754 3104 4243 - 7647 7647 7729 8002 7422 6193 5415 4871 3670 2591 2027 1601 1379 1238 1223 - 1208 1133 1131 1076 1001 1013 1184 1386 1511 1767 2958 4289 5630 6275 7030 - 8338 7905 7732 8168 8698 8347 7806 7459 6170 4428 3492 2584 2180 1963 1921 - 1643 1520 1430 1244 1150 1205 1624 2166 2688 3604 5446 6697 7715 8314 8431 - 7766 7200 6606 6425 6942 7570 8104 8246 7820 6539 5362 3980 3333 2792 2690 - 2212 1958 1762 1454 1341 1738 2534 3443 4384 5423 6690 7742 8076 8420 7925 - 6570 5966 5297 4738 4849 5497 6574 7069 7535 7581 6795 5482 4461 3724 3291 - 2763 2398 2066 1736 1970 2785 3910 5069 5571 6062 6423 6866 7365 7272 6580 - 4849 4485 3826 3817 3898 4123 4745 5477 6194 6899 6993 6348 5228 4343 3661 - 3159 2690 2504 2440 3347 4219 5097 5440 5554 5590 5462 5789 5972 5756 4641 - 3297 3013 2624 3022 3110 3190 3624 4357 4941 5406 5712 5683 5165 4296 3677 - 3190 2887 3150 3882 4667 5096 5126 4808 4548 4782 4258 4581 4064 4336 3650 - 2225 1870 1675 2184 2380 2406 2665 3579 3870 4115 4144 4344 4214 3539 2834 - 2570 2787 3751 4724 4692 4393 4021 3780 3569 3921 2734 2722 2566 2367 2512 - 1323 1409 1512 1648 1680 1948 2065 2835 2875 3156 3089 3109 2827 2330 2087 - 1998 2303 2882 3463 3277 3081 2890 2712 2653 3096 2114 1756 1577 1569 1520 - 891 1350 1445 1044 1352 1458 1693 1960 2033 2325 2122 2148 1972 1886 1892 - 1610 1714 1841 1923 2160 1987 1868 2233 1916 2263 1127 1438 1229 954 1057 - 876 1098 1015 858 1170 1152 1274 1294 1465 1620 1580 1599 1489 1755 1426 - 1228 1332 1623 1615 1668 1362 1469 1544 1521 1689 1021 1179 1485 930 843 - 1079 961 737 749 944 1067 1107 1041 986 1046 1016 1266 1222 1421 1220 - 1320 1236 1689 1474 1326 1326 1323 1102 1153 1139 865 688 901 936 834 - 731 908 676 737 794 901 1182 991 844 847 856 1136 1076 1192 1112 - 1455 1490 1324 1219 1462 1261 957 792 898 907 766 664 802 745 1018 - 629 687 668 592 618 748 809 874 867 834 795 889 862 1215 1014 - 1135 1101 1203 1010 989 767 723 694 766 714 645 555 555 778 579 - 741 741 741 741 741 741 741 741 741 741 741 741 741 741 741 - 741 741 741 741 741 741 741 741 741 741 741 741 741 741 741 - 637 789 559 520 532 484 478 445 438 406 403 403 407 469 531 - 593 653 981 1123 830 960 736 475 406 386 407 385 283 335 486 - 933 837 516 535 575 521 466 497 451 409 405 407 407 474 542 - 609 675 1005 1099 822 942 832 466 412 404 446 433 311 383 658 - 1028 890 554 625 638 559 488 597 478 423 423 411 407 493 580 - 666 751 967 1074 809 931 939 482 446 504 554 506 387 392 710 - 1178 992 801 849 792 660 537 719 554 487 454 423 414 402 449 - 496 891 971 1060 777 950 1003 567 529 561 623 625 528 464 821 - 2055 1714 1626 1897 1412 1056 961 1097 863 734 636 483 442 427 495 - 563 979 987 1038 779 944 1025 693 540 706 1061 1058 984 1005 1864 - 4631 4102 3962 4185 3299 2456 2474 2156 1793 1450 1116 800 676 630 733 - 835 1017 1015 1007 789 924 1035 872 772 1046 1788 2378 2602 2872 4738 - 7893 7563 7602 7612 6883 5508 5089 4301 3483 2688 1913 1507 1081 900 960 - 1020 1112 1084 1028 899 1010 1174 1251 1526 2194 3335 4663 5148 6078 7993 - 9951 9600 9602 9930 10151 9274 8054 7248 6228 4405 3296 2448 1766 1498 1481 - 1364 1295 1277 1138 1065 1302 1542 2180 3134 4081 5800 7627 8269 9225 9884 - 10071 9067 8832 9046 9921 10106 9843 9539 8709 6723 5301 3835 2879 2415 2186 - 1852 1636 1517 1328 1283 1789 2286 3411 5160 6441 8336 9433 9938 10325 10279 - 9375 8303 7587 7393 7706 8443 9137 9517 9445 8629 7229 5628 4222 3457 2971 - 2476 2134 1786 1646 1784 2821 3862 5281 7081 7702 8786 9407 9869 9583 9192 - 7756 7125 6465 6043 5975 6284 7191 7888 8247 8705 8122 6903 5434 4489 3716 - 3170 2583 2292 2336 3100 4430 5496 6679 7467 7729 7902 8463 8797 8555 8243 - 5607 5679 5428 4744 4808 4896 5461 6018 6483 7212 7455 7103 6055 4909 4065 - 3441 2992 3057 3740 4636 5615 6278 6685 6671 7063 6827 7231 6921 6851 6726 - 3757 3947 4132 3606 3711 3751 4057 4851 5397 5378 5611 5650 5318 4556 3867 - 3303 3048 4020 5034 5258 5289 5781 5548 5416 6014 5220 5391 4915 5253 4965 - 2633 3025 2991 2747 2868 2799 3094 3737 4196 3958 4074 3934 3820 3088 2840 - 2904 2802 3790 4567 4337 3957 4418 3923 4071 4429 3407 3423 3413 3064 3050 - 2289 1776 1798 2510 2106 2006 2121 2925 2936 2905 2995 2875 2285 2212 2137 - 2058 1994 2636 3015 2559 2201 2510 2560 2932 2918 2127 2397 2372 1949 1971 - 1301 1487 1080 1870 1420 1667 1771 2151 1903 2080 1872 2042 1464 1767 1770 - 1432 1387 1605 1921 1421 1647 2021 2004 1887 1668 1508 1711 1051 1126 1327 - 1130 1091 1045 1624 1259 1260 1425 1534 1464 1559 1490 1338 990 1025 1143 - 1199 1223 1409 1838 1284 1423 1259 1149 1172 1207 1097 827 670 652 849 - 733 745 788 930 979 1140 1027 1254 1219 1259 1035 1040 1163 983 1053 - 1071 1194 1212 1621 1196 1018 866 953 1035 976 1165 709 597 551 632 - 671 819 806 725 946 913 950 865 920 1174 844 888 1053 1094 905 - 940 1062 1155 1116 1133 1036 764 870 781 874 770 772 836 653 742 - 853 785 850 1095 725 775 899 866 961 1106 938 878 752 817 843 - 1029 912 1029 802 711 669 732 719 721 1024 620 748 1062 740 1173 - 723 723 723 723 723 723 723 723 723 723 723 723 723 723 723 - 723 723 723 723 723 723 723 723 723 723 723 723 723 723 723 - 671 774 531 518 559 501 444 473 447 421 424 417 406 450 494 - 538 580 1077 1227 886 1012 757 477 417 480 417 355 365 467 569 - 745 931 523 600 626 523 463 556 472 438 453 403 407 471 535 - 599 662 1033 1185 894 983 841 473 427 505 467 408 360 373 559 - 1843 1095 694 706 711 583 476 623 515 503 496 414 402 492 582 - 672 761 1000 1181 873 974 916 491 487 582 596 607 668 468 1155 - 2792 1786 1523 1350 1154 812 593 897 699 753 650 455 420 412 435 - 457 867 991 1183 889 978 1005 578 557 705 836 1049 1092 1282 2037 - 4316 3558 3274 3237 2716 1728 1364 1837 1485 1321 1046 595 495 438 485 - 531 986 1002 1142 890 1002 1087 789 719 1058 1701 2526 2757 3050 3683 - 7793 6969 6683 6771 6200 4042 3732 3809 3246 2272 1840 951 773 643 713 - 783 1083 1062 1129 897 1035 1193 1111 1512 2057 3956 5491 6001 5715 8849 - 10962 10337 10471 10932 10456 8573 7488 6763 5779 3967 3061 1837 1355 1159 1115 - 1069 1164 1178 1151 1040 1188 1601 2104 2998 4276 6916 8391 8965 9430 11695 - 11893 11527 11496 12162 12613 12220 10933 9971 8978 6304 4852 3180 2185 1824 1889 - 1547 1376 1358 1319 1380 1598 2340 3698 5470 6899 9737 10366 11014 11837 12313 - 11606 10767 10187 10496 11143 11623 11643 11358 11142 8788 7002 4961 3375 2889 2285 - 2198 1754 1628 1691 1925 2884 3680 5539 7896 9209 10732 11887 12151 12179 12282 - 10525 9779 9204 8791 8997 9263 9808 10413 10664 10086 8654 6892 4956 3971 3227 - 2744 2251 2060 2169 2884 4912 5776 7548 9249 10043 10914 11903 11464 11371 11740 - 9277 7887 7784 7779 7311 7258 7914 8287 8569 9188 8732 7789 6288 4734 3866 - 3220 2606 2755 3476 4548 6301 7387 8329 9352 9741 10143 10616 10478 10009 9704 - 7128 6334 6156 6052 6019 5880 6434 6715 6815 7406 7305 7065 6259 5047 4177 - 3285 2824 3435 4803 5471 6478 6999 7309 7976 8691 7930 8990 8692 8348 8011 - 5439 4342 4442 4598 5012 4868 5115 5211 4972 5524 5390 5263 4729 4164 3314 - 3028 3034 3616 4579 4898 5448 5930 5757 6449 7150 6314 6535 7044 6153 6754 - 3687 3310 3842 3844 3790 3739 3659 4247 3975 3866 3795 3438 3356 2696 2113 - 2611 2726 2758 3624 3323 3885 4338 4059 4802 5167 4200 3795 4062 4076 3958 - 2282 2795 2431 2096 2624 2358 2462 2929 2923 3187 2640 2387 2158 1821 1940 - 1767 1867 2066 2248 2112 3270 2618 2597 3031 3338 2113 2501 2105 2186 2640 - 1082 1552 2151 1189 1735 1633 2146 2130 2373 1987 1622 1571 1343 1747 1629 - 1277 1825 1746 1904 1613 2101 1573 1793 2241 2035 1377 1310 1827 1397 1551 - 1214 1752 833 824 1282 1093 1904 1508 1680 1569 1203 1126 978 1097 1319 - 1792 1478 1691 1483 1301 1424 1666 1395 1708 1393 1001 959 1091 847 985 - 811 640 691 686 1121 982 1430 1163 1495 1417 906 1080 1037 1338 1740 - 1262 1127 1223 1568 1561 1298 1401 1187 1002 1003 764 708 757 599 662 - 676 609 722 562 980 1064 866 885 1025 816 943 1163 1181 1273 1067 - 1024 1126 1342 1644 1267 799 1031 882 703 796 547 698 721 638 595 - 568 615 677 593 715 1041 850 932 908 816 865 837 934 923 1082 - 1078 1098 1508 924 1219 602 906 689 659 981 574 739 710 637 639 - 811 811 811 811 811 811 811 811 811 811 811 811 811 811 811 - 811 811 811 811 811 811 811 811 811 811 811 811 811 811 811 - 720 859 588 533 559 563 460 462 464 431 418 456 465 488 512 - 536 558 1019 1022 861 968 754 471 440 444 411 425 399 444 582 - 1044 1333 728 682 633 548 486 551 514 476 449 465 413 460 507 - 554 599 1095 1014 861 971 828 482 471 617 429 438 578 466 755 - 1576 1838 1501 1425 903 756 621 727 617 629 502 524 405 480 556 - 631 705 1144 1010 893 961 914 494 523 883 677 549 1089 1056 1316 - 3968 3543 3170 2876 1820 1429 1011 1467 1096 1014 763 642 429 393 454 - 514 860 1092 995 923 980 999 619 696 1588 1724 1543 1930 3069 3518 - 7304 6472 5646 6398 4727 3797 2930 3091 2506 1945 1398 819 554 430 507 - 583 917 1047 993 924 1041 1243 879 1238 2780 4326 4664 4551 6503 6903 - 10367 10166 8987 10847 9664 8020 6249 5697 4912 3622 2592 1319 1005 628 671 - 714 1111 1067 1011 1060 1154 1406 1483 2444 4758 8215 8682 8317 11036 13078 - 13426 13514 12606 13469 14131 12070 10141 8926 7262 6011 4268 2546 1718 1228 1216 - 1202 1284 1125 1113 1149 1566 2094 2817 4969 7668 10797 11524 12245 13524 14311 - 14761 13551 13517 14618 15020 14991 13729 11954 10613 8368 6506 3949 2729 2034 1892 - 1678 1516 1410 1565 2050 2534 4504 5365 8085 10086 12947 13229 14602 14952 15493 - 13856 12669 11713 11842 12943 13235 13924 13377 11848 10004 8735 5933 4059 2949 2700 - 2249 2125 1784 1935 2929 4718 6371 7407 10399 11884 13831 13983 15216 15289 14829 - 11972 11317 10574 9719 10718 10200 11418 11458 11893 10159 9343 7328 5339 4064 3382 - 2474 2526 2181 2795 3777 6146 8227 9554 11808 12036 13554 13982 14120 14069 13842 - 11060 9550 9260 8007 8726 8562 8958 9121 9003 8941 8458 7475 6022 5033 3989 - 3166 2571 2794 3993 5147 7328 9139 10462 11164 11915 12950 14120 12706 12174 11635 - 7848 8241 8430 6728 7755 6938 6997 6918 7277 6443 6395 6077 5731 4701 3912 - 3212 2076 3326 4373 5559 7268 8555 9210 9673 10350 10390 10531 10052 9205 9945 - 5213 6750 5561 5312 6252 5892 5711 5131 4956 4906 4268 4065 4282 3314 2874 - 2909 2161 3870 4373 5164 5581 6102 6037 7974 8425 7137 6810 8368 7036 7650 - 5702 5733 3737 3773 4815 4269 3548 4231 3390 2952 2800 2362 2347 2342 2123 - 1881 2249 2470 3225 3762 4917 3663 4890 5546 5032 4577 5421 6135 4796 3687 - 4129 3149 3378 3163 3773 2923 2023 1992 2528 1650 1658 1605 1422 1699 1527 - 1568 1657 1461 2529 2344 2326 2681 2836 3432 1649 2109 2403 3007 1428 4502 - 1391 899 3634 1682 2697 2152 1487 1462 1626 1137 1085 1058 1361 973 1141 - 1170 1028 1714 1754 1712 1696 1412 1286 1356 1023 1437 875 1405 2456 2371 - 646 1562 2288 943 1875 1906 1315 1385 951 934 837 1167 2972 871 1126 - 866 820 1554 1324 1357 925 1078 1154 870 774 2085 2644 995 1186 814 - 3009 2485 1252 826 1440 2141 1104 1171 788 771 720 904 1134 727 838 - 958 1271 1505 1290 1102 869 1438 1159 1212 635 1349 1494 969 617 780 - 2915 1487 863 764 1068 2057 1384 973 1067 813 889 698 920 762 1049 - 1258 1537 1295 1791 1779 820 982 722 1236 527 1987 680 2534 1702 1875 - 600 796 776 692 877 1910 1625 1349 1349 1046 931 734 1499 1690 1065 - 1242 1600 1204 2182 1000 580 699 928 757 568 677 787 895 1195 1494 - 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 - 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 1016 - 837 867 551 683 808 589 507 561 615 537 473 411 418 488 558 - 628 699 767 1242 932 785 698 578 457 449 512 474 749 778 808 - 1336 1492 726 1095 1280 749 621 871 664 636 501 416 419 505 592 - 679 764 739 1180 923 778 749 445 511 556 531 1308 1707 1028 1182 - 2851 3175 1700 2093 3336 1371 891 1716 1051 1123 629 442 419 514 609 - 704 798 724 1145 972 788 829 517 984 1308 1379 3086 3604 3411 3131 - 4440 6008 4394 5266 7544 3382 1920 3996 2321 1642 969 521 477 583 689 - 795 900 803 1162 1008 922 962 839 1604 3410 2644 8179 4910 7129 5784 - 10382 8287 9300 10946 11447 7463 6275 6250 5060 2886 1988 972 714 652 760 - 869 976 957 1185 1023 1242 1377 1733 2843 6216 6325 14572 9318 12861 11621 - 15348 10926 13868 17175 14906 13084 11390 9888 7592 5620 4070 1848 1383 1223 1197 - 1171 1143 1017 1429 1210 2167 2455 3560 4874 9814 12101 18852 14357 17569 16458 - 15849 13965 15723 19051 18956 16669 14798 13733 9262 7667 5927 2970 2084 1898 1522 - 1145 1787 1273 1680 1813 2991 4616 6640 8595 13590 15679 18812 17002 17694 18718 - 17047 15905 15308 17652 18445 17821 17186 16958 14111 9896 7648 4125 3425 2674 2146 - 1617 2706 1744 2274 2860 4432 8641 9077 12661 15401 19702 15913 18541 19740 17407 - 17114 14613 12967 13703 15464 15340 17176 14309 15500 9938 8647 5918 4153 3397 2780 - 2249 2169 2825 2779 3424 5021 10883 11986 15195 16380 19527 16601 19307 20948 16347 - 14126 12027 12396 10614 13271 12606 13647 11475 13286 9417 8035 6269 4449 4346 3222 - 3210 5015 3321 3197 3647 7750 11825 14396 16051 17120 18917 15488 19266 16015 15844 - 13065 11033 9945 11346 11188 10985 9906 9432 11734 9505 6620 5593 4598 4593 3796 - 3366 5646 2641 3793 5069 9920 11531 14828 15021 15540 16771 15987 9543 10557 14764 - 10836 9386 8275 9898 9159 9306 7202 8677 9034 6999 4410 4389 3172 4011 3961 - 2884 4412 2571 3603 5891 7842 8058 12799 12585 11476 11916 12659 9498 6339 9999 - 8178 6824 6280 7305 7459 6072 6647 7165 7714 5197 4465 2947 2295 2859 3037 - 3865 2365 2443 3905 5133 6205 5452 6839 9561 9211 5580 6213 6348 8215 8042 - 4341 4359 4180 5128 4988 5721 5560 4529 4715 3499 3545 2092 2680 2437 2323 - 2831 1793 2254 2956 4121 5147 3355 4474 5870 6695 2803 5078 3029 8367 6586 - 3514 1250 1865 3510 4570 5445 3339 4614 1989 2335 1420 1654 2487 1604 1017 - 1238 1751 1762 2279 1576 2384 1963 2695 2613 3494 2481 3072 3662 4006 6268 - 4493 3029 1564 2720 2883 4673 2529 2733 1618 1541 1079 1267 1563 933 1554 - 1481 1432 1617 1788 1493 6733 3472 1603 1541 1527 2526 1539 6064 6459 3955 - 1048 1418 1314 1629 1318 7344 2107 1108 938 1347 1046 982 1351 897 1005 - 946 1850 1911 1529 2149 2408 1897 913 1079 1335 778 1340 950 558 708 - 1106 1202 955 850 1078 3077 2163 1738 1650 1316 867 922 897 939 863 - 865 1049 2463 1078 1378 957 899 953 717 1376 626 722 818 914 1010 - 1153 1224 1296 748 891 1059 1515 1146 1369 1900 1261 1417 983 1655 808 - 1167 2120 1584 1048 767 941 987 967 837 1294 1082 868 939 1010 1082 - 1024 995 966 937 908 880 840 1270 980 805 1164 1227 1491 1215 925 - 1973 1597 1196 777 1052 1036 1019 853 1350 1198 1169 1140 1111 1082 1053 - 757 757 757 757 757 757 757 757 757 757 757 757 757 757 757 - 757 757 757 757 757 757 757 757 757 757 757 757 757 757 757 -Mean Maxwellian Energy (eV) - Emery (5/92) - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2370 2480 2421 2370 2447 2441 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2792 2370 - 2409 2475 2370 2370 2555 2539 2492 2435 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2488 2631 2370 2370 2370 - 2855 2855 2797 2431 2370 2370 2410 2553 2579 2392 2370 2676 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2770 2370 2370 2766 2855 2784 2855 - 2855 2855 2855 2855 2813 2645 2539 2370 2464 2454 2459 2564 2858 2426 2855 - 2855 2855 2855 2855 2855 2855 2776 2370 2370 2809 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2846 2846 2705 2695 2442 2423 2370 2488 2564 2370 - 2370 2782 2855 2735 2718 2467 2661 2841 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2830 2787 2824 2824 2759 2731 2370 2370 - 2603 2393 2751 2721 2745 2815 2832 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2836 2849 2841 2836 2809 2830 2844 - 2469 2855 2782 2652 2680 2798 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2840 2821 2838 2803 2855 2855 2855 - 2855 2790 2839 2815 2779 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2846 2746 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2811 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2712 2854 2855 2855 2855 2855 2838 2855 2855 2855 2855 2855 2855 2855 - 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 - 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 2845 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2370 2551 2516 2433 2479 2432 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2584 2452 - 2510 2554 2561 2580 2657 2717 2555 2370 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2370 2540 2605 2569 2562 - 2370 2370 2378 2489 2563 2580 2642 2897 3001 2706 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2370 2562 2503 2517 2553 2550 - 2837 2709 2436 2370 2370 2460 2554 2604 2676 2717 2986 3066 2778 3040 2753 - 2708 2718 2370 2563 2855 2855 2370 2500 2408 2439 2370 2412 2496 2499 2676 - 2855 2855 2816 2491 2572 2571 2370 2514 2552 2559 2576 2670 2774 3108 3172 - 3233 2828 2659 2555 2370 2373 2502 2370 2370 2396 2764 2820 2370 2660 2855 - 2855 2855 2855 2738 2637 2749 2651 2545 2370 2370 2370 2507 2560 2573 2653 - 2740 2633 2564 2554 2384 2370 2457 2673 2744 2773 2855 2855 2380 2466 2855 - 2855 2855 2855 2855 2773 2789 2787 2771 2761 2739 2743 2568 2370 2395 2370 - 2370 2582 2521 2446 2370 2608 2656 2640 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2756 2855 2855 2855 2816 2637 2578 2731 2733 2736 2752 2549 2543 - 2739 2604 2459 2554 2490 2595 2683 2812 2855 2855 2855 2826 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2782 2590 2765 2379 2771 2742 2481 2560 - 2370 2370 2553 2674 2700 2855 2855 2855 2855 2855 2774 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2452 2562 - 2506 2370 2488 2547 2824 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2762 2823 2855 2855 2855 2855 2855 2855 2795 2855 2855 - 2810 2590 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2518 2413 - 2855 2855 2855 2855 2855 2802 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 - 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 2798 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2370 2429 2388 2370 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2621 2602 2831 3082 3144 3046 2674 2554 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2691 2504 2508 2762 2608 - 2624 2608 2731 2930 3092 3172 3407 3521 3823 3054 2499 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2576 2652 2616 2673 2624 - 2561 2565 2566 2571 2649 2880 3102 3174 3455 3594 3712 3446 3035 3124 3948 - 2973 2551 2520 2855 2855 2855 2855 2370 2451 2654 2598 2569 2573 2659 2571 - 2393 2573 2498 2370 2370 2561 2601 2760 3032 3133 3272 3589 3703 3779 3875 - 3798 3651 3771 3284 2855 2533 2577 2578 2562 2556 2552 2559 2552 2564 2575 - 2855 2789 2398 2370 2370 2370 2370 2515 2578 2644 2755 3010 3196 3343 3404 - 3548 3554 3366 3205 2706 2563 2544 2463 2383 2380 2370 2571 2555 2516 2370 - 2855 2855 2390 2516 2370 2524 2568 2482 2370 2370 2450 2559 2644 2798 2741 - 2869 2714 2564 2462 2370 2370 2370 2370 2398 2370 2370 2370 2380 2855 2855 - 2855 2855 2855 2855 2370 2370 2459 2427 2588 2633 2638 2529 2370 2370 2371 - 2370 2506 2431 2370 2370 2370 2406 2370 2466 2525 2435 2801 2780 2855 2855 - 2855 2855 2855 2855 2548 2544 2463 2577 2370 2476 2581 2600 2604 2665 2370 - 2548 2733 2539 2370 2370 2370 2370 2370 2370 2562 2591 2855 2855 2855 2855 - 2855 2855 2855 2855 2808 2855 2787 2370 2370 2370 2479 2453 2370 2370 2370 - 2370 2427 2370 2370 2370 2620 2505 2370 2551 2370 2697 2855 2855 2855 2855 - 2855 2855 2855 2855 2809 2855 2855 2539 2855 2747 2780 2563 2855 2823 2819 - 2386 2370 2553 2504 2440 2810 2855 2370 2370 2806 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2791 2855 - 2401 2462 2614 2370 2855 2855 2855 2855 2409 2855 2855 2753 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2802 2501 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 - 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 2714 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 3059 3249 3299 3277 3336 2760 2808 2451 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2555 2563 - 3133 3195 3261 3556 3622 3762 3815 3983 3989 3142 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2563 2643 2770 2960 3074 - 3030 2966 3020 3204 3359 3674 3773 3915 4018 4408 4501 3971 3520 3543 3253 - 2671 2554 2855 2855 2855 2855 2855 2855 2370 2607 2941 2994 2840 3064 3020 - 2896 2686 2651 2612 2739 3116 3323 3612 3756 3922 4016 4286 4844 4611 4058 - 3992 4045 3699 2370 2855 2855 2572 3014 2810 2680 2799 2900 2861 2997 2983 - 2774 2593 2578 2461 2539 2570 2734 3090 3189 3417 3683 3850 3972 3996 4037 - 3985 4003 4164 3822 2557 2947 2692 2640 2600 2591 2689 2846 2912 2995 2786 - 2450 2553 2552 2392 2370 2370 2479 2566 2597 2707 2968 3153 3368 3632 3735 - 3894 3767 3614 2976 2577 2565 2565 2559 2554 2578 2613 2846 3033 2721 2988 - 2855 2855 2662 2370 2370 2370 2370 2370 2370 2394 2511 2569 2684 2797 2933 - 2950 2604 2496 2432 2460 2417 2481 2426 2516 2572 2614 2579 2962 2382 2855 - 2855 2855 2855 2749 2445 2370 2370 2370 2370 2370 2416 2370 2370 2370 2370 - 2370 2412 2370 2436 2468 2371 2373 2370 2460 2571 2551 2370 2469 2855 2855 - 2855 2855 2855 2855 2623 2370 2370 2370 2370 2370 2370 2370 2370 2731 2370 - 2549 2476 2393 2381 2396 2370 2443 2380 2442 2592 2574 2579 2855 2855 2855 - 2855 2855 2855 2855 2855 2731 2521 2414 2370 2370 2370 2370 2507 2370 2453 - 2817 2391 2370 2527 2439 2446 2563 2463 2370 2388 2638 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2397 2744 2787 2815 2412 2370 2730 2394 - 2370 2370 2388 2572 2386 2657 2855 2678 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2757 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2656 - 2537 2485 2481 2510 2855 2855 2370 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2663 2855 2855 2855 2855 2855 2855 2566 2855 2855 2855 2855 2855 - 2446 2718 2870 2370 2855 2510 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 - 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 2566 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2752 2888 3127 3157 2724 2661 2370 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2531 - 3508 3770 3761 3776 3776 3868 3801 3983 4032 3128 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2389 2597 3154 3293 3333 - 3569 3686 3730 3801 3918 3993 4004 4253 4914 5332 5072 3667 2576 2572 2580 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2751 3164 3172 3425 3417 3570 - 3251 3269 3241 3401 3652 3888 3939 3994 4475 5056 5324 5545 5754 5418 4508 - 3960 3900 2552 2855 2855 2855 2536 2604 3115 3119 3121 3186 3326 3393 3387 - 3180 3062 2840 2770 2788 3178 3471 3713 3945 4074 4734 5081 5482 5062 4533 - 4410 4835 4113 2709 2663 2628 3016 2962 3055 3101 3134 3203 3365 3623 3235 - 3169 3139 2800 2635 2564 2578 2782 3086 3318 3653 3909 3982 4113 4174 4171 - 4330 4800 4296 3870 3034 2650 2711 2709 2849 2968 3042 3130 3667 3452 3262 - 3016 2647 2642 2576 2552 2480 2545 2569 2605 2833 3109 3210 3344 3642 3735 - 3834 3708 3094 2607 2559 2569 2575 2576 2693 2951 2991 3088 3696 3324 3243 - 2855 3009 2459 2551 2495 2449 2370 2386 2382 2476 2551 2568 2624 2664 2667 - 2745 2564 2426 2517 2556 2553 2561 2565 2669 3080 3210 3119 3179 2685 2370 - 2855 2855 2855 2795 2370 2405 2415 2371 2370 2370 2370 2370 2370 2370 2370 - 2370 2370 2394 2551 2558 2550 2555 2578 2622 3084 3381 2446 2549 2855 2855 - 2855 2855 2855 2855 2746 2426 2512 2473 2480 2392 2371 2370 2370 2400 2487 - 2370 2410 2370 2573 2557 2559 2544 2576 2699 3108 2898 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2548 2383 2526 2449 2393 2370 2384 2497 2370 - 2370 2467 2544 2591 2508 2509 2388 2370 2523 2574 2777 2760 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2804 2814 2855 2855 2855 2855 - 2855 2370 2420 2623 2766 2592 2808 2798 2855 2855 2855 2561 2491 2535 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2434 - 2753 2581 2554 3344 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2758 2571 2916 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 - 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 2810 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2556 2575 2567 2650 2562 2370 2370 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2561 - 3517 3732 3833 3711 3664 3669 3747 3845 3659 2710 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2370 2707 3308 3633 3684 - 3909 3933 4011 4028 4009 4132 4097 4341 5103 5558 4010 2864 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2645 2654 3414 3484 3744 3887 3935 - 3905 3774 3828 3928 4037 4488 4583 4831 5418 5889 5917 5982 5511 4986 3954 - 2571 2855 2855 2855 2855 2855 2370 3153 3212 3341 3546 3808 3800 3879 3928 - 3763 3580 3390 3422 3653 3913 4025 4039 4992 5661 5640 5788 5771 5720 5242 - 5268 4330 3227 2855 2855 2557 2904 3116 3315 3396 3451 3792 3816 3892 3734 - 3585 3310 3127 2851 2826 3123 3486 3655 3912 4564 5105 5300 5337 5294 4993 - 5375 5272 5043 2655 2574 2727 2839 3102 3241 3441 3672 3809 3996 3928 3470 - 3533 3283 3168 2787 2621 2607 2750 2989 3145 3660 3947 4058 4228 4066 4497 - 4490 4223 3790 3072 2642 2682 2844 2996 3189 3401 3719 3872 3997 4006 3269 - 3806 3287 2739 2855 2576 2559 2562 2569 2576 2692 3060 3176 3312 3458 3754 - 3705 3111 2574 2566 2574 2684 2777 2901 3136 3436 3550 3996 4008 4311 3780 - 3419 2959 2509 2578 2566 2536 2455 2551 2491 2481 2520 2565 2660 2614 2577 - 2573 2431 2466 2565 2569 2578 2629 2963 3193 3595 3195 3541 3650 3549 3674 - 2498 2602 2548 2469 2480 2488 2393 2546 2433 2440 2405 2371 2370 2370 2526 - 2499 2370 2398 2561 2575 2617 2621 2810 3097 3763 3343 2569 2574 2754 2855 - 2855 2855 2772 2855 2799 2370 2439 2390 2454 2487 2439 2380 2370 2370 2561 - 2370 2432 2370 2434 2570 2580 2569 3056 2617 3310 2655 2370 2709 2855 2855 - 2855 2855 2855 2855 2855 2855 2822 2794 2406 2370 2370 2370 2370 2423 2803 - 2809 2790 2376 2412 2507 2855 2855 2370 2583 2567 2855 2381 2370 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2637 2855 2550 2370 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2681 2855 2855 2855 2556 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 - 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 2816 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2621 2536 2551 2498 2370 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2815 2855 2855 2855 2430 - 3325 3356 3345 3194 3015 3046 3131 3093 2892 2537 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2556 2732 3254 3313 3413 - 3960 4000 3992 3968 3841 3863 3884 3919 4250 3978 3550 2370 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2441 3056 3154 3611 3857 3968 3948 - 4042 4127 4201 4412 4450 4568 4419 4662 5114 5184 5363 4866 3711 2725 2370 - 2855 2855 2855 2855 2855 2855 2370 3359 3298 3515 3763 4024 4034 4254 4227 - 4002 3965 3904 3978 4067 4361 4595 4725 5231 5575 5700 5691 5629 5519 4437 - 3727 3229 2855 2855 2855 2513 2964 3109 3484 3729 3989 4228 4276 4205 4296 - 3933 3770 3636 3520 3582 3834 3958 3999 4546 5409 5552 5555 5663 5535 5520 - 5769 5712 3619 2370 2560 2649 2936 3210 3684 3829 4005 4114 4183 4002 3944 - 3900 3727 3628 3208 3085 3123 3196 3537 3703 4037 4672 5065 5152 5072 5286 - 5558 5154 3814 3019 2624 2798 2994 3262 3698 3923 4178 4752 4042 3994 3967 - 3951 3665 3529 3118 2816 2735 2806 2863 2951 3280 3742 3911 4016 4020 4446 - 4055 3716 2897 2653 2621 2847 3145 3399 3726 3987 4595 5131 4527 3953 4112 - 3801 3526 3682 2965 2720 2662 2574 2619 2576 2595 2803 2894 3171 3214 3453 - 3184 2630 2565 2653 2709 2845 3137 3516 3814 4323 4022 5057 4222 4581 4634 - 4211 3802 3677 2880 2670 2578 2574 2578 2563 2515 2530 2465 2559 2488 2550 - 2574 2503 2556 2600 2681 2743 3169 3347 3742 4117 3800 3987 3862 4014 4097 - 3806 3143 2644 2850 2579 2564 2554 2576 2569 2551 2551 2451 2370 2370 2370 - 2514 2390 2568 2580 2579 2637 3002 3214 3742 4021 3984 5821 5635 3541 3310 - 2561 2370 2855 2827 2558 2531 2551 2560 2552 2573 2458 2525 2532 2370 2370 - 2696 2529 2370 2575 2370 2566 3134 3182 2766 2783 2700 3991 2855 2855 2566 - 2855 2855 2855 2556 2855 2855 2609 2370 2752 2410 2370 2749 2855 2855 2855 - 2855 2855 2584 2752 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2553 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2804 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2693 2855 2855 2725 2791 2370 - 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 - 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 2817 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2370 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2580 - 3061 2561 2500 2370 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2686 2572 - 2819 3123 2979 2827 2576 2495 2370 2560 2370 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2561 2683 2991 3011 3080 - 3731 3855 3819 3694 3206 2985 3246 3273 3712 3599 2841 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2491 2719 3173 3531 3718 3815 3730 - 4304 4070 4060 4046 3975 3928 3962 3923 3931 4063 3997 2916 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2370 2673 3159 3470 3696 4273 4017 4415 4205 - 4057 4034 4135 4217 4614 4768 4208 4188 4636 5125 5322 4361 4202 3548 3667 - 2567 2855 2855 2855 2784 2553 2616 3037 3366 3837 3954 4382 4262 4861 4651 - 4039 3903 4020 3905 3980 4125 4125 4266 4856 5303 5345 5151 5780 5603 5497 - 5225 3481 2855 2725 2571 2710 2899 3200 3748 3983 4062 4926 5111 4639 4717 - 3955 3829 4000 3682 3465 3629 3698 3808 3947 4567 4824 4827 5618 5658 5900 - 5338 4637 3879 3093 2834 3113 3168 3417 3930 4366 4807 5221 4980 4248 4179 - 4018 3628 3943 3631 3159 3110 3135 3157 3191 3811 3960 4035 5156 5156 5249 - 4536 3633 3197 2761 2851 3116 3518 3552 4027 5067 5501 5887 5293 4443 4017 - 3946 3657 3765 3327 2963 2894 3111 2859 2698 3161 3251 3450 3827 3885 4041 - 3724 2658 2623 2695 2808 3189 3489 3537 4254 5227 5672 5598 4745 4681 3996 - 3983 3286 3773 3187 3140 3079 2831 2694 2570 2686 2641 2705 2753 2993 3212 - 2900 2487 2553 2672 2762 3111 3547 3614 4707 5144 6166 4047 5695 4068 5343 - 3788 3661 3881 3355 3166 3122 2806 2721 2570 2575 2569 2515 2554 2532 2447 - 2555 2480 2445 2636 2657 3119 3158 3760 4370 5411 5681 6290 5473 4542 4104 - 3935 3760 4816 2672 2734 2595 2682 2574 2559 2703 2603 2450 2422 2370 2370 - 2370 2474 2427 2578 2658 3497 2958 3744 5401 5344 5500 6046 3617 3844 3750 - 2607 3210 4372 2582 2552 2412 3018 2664 2739 2572 2370 2370 2677 2370 2370 - 2855 2557 2559 2574 2405 3137 2564 3523 3973 3165 3187 3776 3791 3300 2370 - 4169 4208 2855 2855 2855 2855 2900 2370 2473 2641 2855 2855 2855 2855 2999 - 3944 2370 2567 2370 2542 2370 2843 2855 2646 2370 2855 2855 2407 2855 2855 - 2855 2855 2855 2855 2855 2855 2735 2855 2552 2706 2855 2855 2855 2458 2900 - 2855 2855 2855 2370 2370 2370 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2551 2370 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2712 2371 2855 2383 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 - 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 2826 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2648 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2429 2421 2370 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2649 2762 2809 - 2370 2746 2616 2428 2370 2584 2855 2418 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2370 2370 2519 2614 2559 2467 - 2932 3186 2932 2972 2679 2723 2989 2663 3037 2574 2370 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2761 2658 2750 3215 3260 3583 3209 - 3863 3681 3862 3784 3352 3154 3212 3169 3137 3498 3295 2370 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2568 2716 3163 3596 4120 3795 3982 3995 - 4122 3903 4254 4249 3921 3780 3663 3733 3784 3904 3829 3483 2629 2855 2855 - 2855 2855 2855 2855 2855 2520 2493 3104 3219 3483 4302 5186 4720 4586 4114 - 4037 4049 4172 4039 4119 4194 3957 4253 3972 3912 4263 4610 4573 4032 4667 - 3106 2855 2855 2370 2597 2571 3721 3681 3755 3912 5605 5916 5251 5277 4987 - 4161 4000 3807 3625 3900 3942 3944 4006 4382 4034 4033 5151 5351 5888 6466 - 4797 3996 2575 2665 3172 3113 3739 3650 3968 4737 5942 5858 5421 5792 4051 - 4281 3698 3748 3267 3450 3429 3667 3684 3914 3943 3933 4938 5329 5772 5890 - 5667 3991 2926 2563 3721 3602 3640 3929 4602 5405 5466 5490 5029 5474 5170 - 5094 3613 3712 3016 3212 3120 3193 3153 3052 3501 3663 4049 4711 4517 4781 - 3988 3208 2552 2580 3149 3485 3871 4921 5243 5796 6096 5047 6221 5891 5143 - 4014 3931 4027 3204 3206 2943 2862 2716 2826 2819 2926 3167 3663 3431 3945 - 3218 2556 2632 2868 3203 3676 4272 5330 5788 6162 6639 6077 5380 5214 4766 - 4249 5480 3762 3412 3183 2977 2729 2655 2677 2574 2558 2560 2613 2578 2768 - 2570 2370 2762 3140 3216 3753 4004 4092 6383 6410 5000 5367 6081 6306 3928 - 4602 4875 2845 3207 3217 2852 2555 2850 2559 2555 2563 2370 2455 2370 2370 - 2423 2370 2572 3237 3272 3754 3597 5313 7041 5074 3911 4348 6252 5468 5385 - 3738 3468 3852 3272 3215 2729 2370 2384 2370 2370 2467 2370 2711 2660 2605 - 2742 2370 2483 3110 2719 2924 3662 3920 5500 2962 2568 3013 5175 2622 7085 - 2548 2855 4325 2691 3027 2664 2370 2437 2370 2855 2855 2855 2839 2855 2855 - 2855 2855 2565 2555 2574 2551 2865 2855 2624 2855 2554 2855 2896 3149 2831 - 2855 2553 3369 2820 2773 2578 2855 2370 2855 2855 2855 2855 2850 2855 2855 - 2855 2855 2370 2386 2370 2855 2754 2780 2855 2855 2811 3180 2779 2620 2855 - 3150 2696 2484 2855 2370 2868 2855 2855 2855 2855 2855 2855 2849 2855 2855 - 2855 2710 2370 2370 2706 2855 2591 2587 2599 2855 2370 2580 2370 2855 2795 - 3450 2445 2855 2855 2855 3089 2463 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2463 2423 2609 2617 2855 2855 2855 2744 2855 2517 2855 2586 2431 2574 - 2855 2855 2855 2855 2855 2639 2574 2370 2556 2555 2763 2855 2393 2588 2839 - 2370 2507 2756 2778 2675 2855 2855 2855 2855 2855 2855 2855 2855 2370 2552 - 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 - 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 2687 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2748 2645 2855 2855 2737 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2763 2809 2855 2802 - 2842 2417 2550 2370 2507 2741 2842 2565 2843 2842 2855 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2859 2821 2834 2370 2370 2552 2615 - 2579 2424 2370 2423 2564 2370 2750 2655 2370 2621 2827 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2729 2427 2370 2557 2556 2571 2575 - 2674 2672 2723 2934 2750 2550 2505 2559 2554 2729 2377 2855 2855 2855 2855 - 2855 2855 2855 2855 2855 2855 2542 2475 2370 2820 2970 2789 2984 3226 3031 - 3431 3661 3706 3608 3155 3076 2985 2653 2577 3009 2896 2825 2484 2855 2855 - 2855 2855 2855 2706 2855 2512 2458 2633 2557 3122 3942 3750 3944 3915 3521 - 3729 4050 3840 3960 3731 3552 3391 3095 2667 3464 3151 3673 2902 4528 3345 - 2855 2659 2855 2558 2370 2551 2551 2757 3768 3803 4825 4029 5268 4983 3936 - 3917 5037 3934 3724 3779 3776 3892 3468 3815 3511 3351 4046 3962 5189 6812 - 2370 2496 2432 2572 2420 2648 3759 3157 3998 4359 4666 4195 5433 4558 3963 - 4026 4831 3938 3056 3537 3664 3852 3277 3702 3258 3788 3940 5073 5327 6017 - 3654 2626 2636 2437 2370 2670 4986 3954 4747 5146 6064 5430 3914 4030 4410 - 4008 3855 3707 3055 3397 3141 3146 3122 3768 3551 3836 3953 6092 5061 4668 - 3108 3984 3460 2405 2421 3920 5173 5096 5150 5623 6288 6483 3955 3906 3999 - 3816 3700 3894 3525 3568 3140 2596 2862 3697 3366 3383 3725 4438 5153 3979 - 2500 5484 2722 2551 3023 4476 4984 6497 5926 6864 5524 6725 5620 3737 4471 - 3411 3434 3628 2881 3259 3541 2569 2726 3571 3146 2561 2829 3699 4076 3818 - 2961 4265 2574 2821 3871 3958 4067 7063 7227 6948 4403 6853 5635 5176 4251 - 3378 3293 2603 2752 3136 2889 2713 2706 3108 2595 2952 2561 2577 2727 2999 - 4022 3154 2565 3274 3851 3940 5132 6984 7330 6742 3803 3719 3943 5770 6283 - 2579 3106 2721 2577 2643 2717 2631 2561 2604 2400 3347 2370 2444 2370 2386 - 3566 2492 2673 3161 3565 3883 3842 4061 5944 6154 6743 3514 2617 3661 4056 - 2567 2433 2471 2539 3105 2578 2560 3129 2405 2384 2704 2739 2370 2846 2855 - 2370 2516 2693 2866 2458 2860 2650 2731 3826 6738 5532 5000 4641 3266 3955 - 2659 2855 2515 2564 3054 3177 2656 2816 2370 2370 2855 2780 2552 2855 2370 - 2370 2733 2462 2705 2608 2370 3777 2449 2479 2370 3731 2556 3359 3975 2588 - 2813 2844 2769 2370 2408 2593 3190 2370 2855 2659 2855 2855 2567 2855 2768 - 2855 2837 2579 2411 3581 3186 2683 2855 2370 2719 2855 2372 2472 2855 2855 - 2591 2855 2855 2855 2855 2385 2484 3442 2639 2447 2855 2855 2855 2855 2855 - 2855 2855 3075 2734 2576 2855 2855 2855 2855 2711 2855 2855 2855 2855 2684 - 2855 2855 2855 2855 2855 2855 2370 2609 2370 3112 2370 2559 2855 3090 2855 - 2370 2884 2404 2855 2855 2855 2855 2855 2855 2813 2855 2855 2827 2799 2855 - 2855 2855 2855 2855 2855 2855 2855 2855 2855 2855 2370 2467 2513 2470 2847 - 2727 2552 2855 2855 2840 2855 2855 2855 2852 2855 2855 2855 2855 2855 2855 - 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 - 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 2842 -Electron Energy Flux (ergs/cm2-s * 10**3) - Emery (5/92) - 5 5 3 3 5 4 8 9 9 9 8 8 9 9 9 - 10 10 10 15 15 13 15 13 8 6 4 3 2 4 4 - 5 5 3 3 5 6 9 9 9 8 8 8 9 9 10 - 10 11 11 15 15 13 13 12 8 6 4 3 2 4 4 - 5 6 3 3 5 6 9 9 9 8 8 8 9 8 7 - 6 6 12 15 14 11 13 11 8 6 5 3 2 4 5 - 9 8 4 4 5 7 10 10 9 9 8 8 8 9 9 - 9 9 13 15 14 11 12 10 8 6 5 4 3 4 7 - 12 9 6 5 6 8 10 11 9 9 8 9 8 9 7 - 4 12 14 16 15 12 13 10 8 7 6 5 4 4 7 - 10 10 6 5 7 9 10 10 9 9 9 10 8 9 10 - 12 13 15 16 15 12 13 10 10 8 7 6 5 5 7 - 9 8 5 6 8 10 11 10 8 9 9 9 9 9 10 - 12 14 15 16 14 11 12 9 10 8 6 6 6 6 8 - 9 11 9 14 11 11 11 12 10 9 9 9 9 9 9 - 11 15 17 15 13 11 10 9 10 9 7 7 7 8 8 - 24 45 44 42 28 20 19 14 13 10 11 11 9 10 9 - 15 17 18 16 15 12 10 9 12 12 13 13 18 26 23 - 96 95 111 102 110 74 45 28 22 19 17 15 13 14 15 - 20 22 19 22 21 16 12 13 15 18 22 38 61 76 109 - 104 109 137 200 221 191 135 91 59 51 35 31 26 28 27 - 33 34 32 33 31 23 22 25 33 51 83 100 106 109 118 - 49 54 85 132 156 203 209 199 155 119 84 76 65 56 48 - 54 46 56 47 43 33 41 68 87 108 110 96 72 75 46 - 31 44 60 75 92 118 143 199 209 206 162 137 122 98 75 - 67 58 63 60 58 62 84 108 109 89 75 58 50 49 27 - 31 29 45 52 62 76 86 134 163 186 192 187 153 139 107 - 97 78 77 90 106 111 114 82 71 57 70 46 42 53 33 - 22 20 36 42 57 57 72 95 145 126 132 147 134 128 113 - 103 121 161 197 181 131 98 73 53 44 47 45 29 33 31 - 31 22 31 42 55 62 63 72 105 96 101 98 105 98 80 - 99 82 165 179 182 97 60 58 45 36 37 51 39 33 36 - 33 28 40 37 33 47 67 63 75 74 83 88 60 72 58 - 75 81 71 68 92 53 55 45 55 46 31 40 56 40 29 - 35 47 46 29 32 39 48 61 47 64 56 61 50 58 56 - 74 70 43 58 47 26 37 30 38 53 38 42 26 33 27 - 44 57 42 23 27 49 43 33 46 46 49 52 56 45 47 - 65 66 42 63 44 24 18 27 37 46 49 41 31 22 38 - 24 44 29 28 29 37 37 34 38 55 23 39 48 35 38 - 38 75 59 38 31 41 40 61 50 59 55 39 13 29 25 - 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 - 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 - 12 13 5 5 6 6 9 10 9 9 8 8 9 9 9 - 9 10 13 21 17 16 15 12 8 6 5 3 2 11 12 - 24 10 5 6 7 7 10 10 8 9 8 8 9 9 10 - 11 12 14 20 17 16 14 11 8 6 6 4 2 5 14 - 25 10 5 6 8 8 10 10 9 9 8 8 9 9 10 - 10 11 15 20 16 17 14 11 8 7 5 4 3 3 14 - 20 11 8 6 8 8 10 11 9 9 8 8 8 9 8 - 7 13 15 21 16 15 14 11 8 7 6 6 4 4 12 - 20 12 8 7 9 9 11 11 9 9 9 9 8 9 10 - 11 14 16 21 16 16 17 12 8 8 7 7 6 5 7 - 15 11 8 8 11 10 11 10 9 9 9 9 9 9 12 - 14 15 17 20 17 16 17 12 9 8 7 7 7 7 13 - 13 11 8 9 12 11 11 11 9 9 9 9 9 9 12 - 15 16 17 18 15 14 15 11 10 9 10 7 7 8 11 - 27 31 25 17 22 17 13 13 10 10 10 10 9 10 11 - 15 17 17 18 15 14 14 12 11 11 11 11 11 12 16 - 129 166 174 131 101 57 29 24 18 15 13 12 12 13 13 - 19 20 21 21 17 19 17 15 15 19 21 26 41 63 78 - 274 298 338 331 304 224 117 75 50 38 27 21 21 27 28 - 29 28 31 34 26 28 22 23 26 29 63 96 154 203 246 - 189 201 219 292 354 370 305 224 161 114 73 54 49 57 67 - 55 57 54 60 46 42 37 49 73 90 172 188 216 218 203 - 75 93 138 197 231 278 353 358 326 258 172 128 111 111 101 - 96 107 88 92 69 60 88 134 155 158 171 152 146 109 100 - 45 63 83 133 141 168 219 326 337 349 293 244 187 166 134 - 121 108 98 96 101 126 182 189 158 138 100 87 99 67 46 - 28 50 58 96 110 124 141 212 261 288 297 295 251 232 174 - 152 124 138 160 202 209 197 135 108 94 68 64 66 60 42 - 26 42 50 60 88 100 108 146 211 211 211 222 215 235 164 - 142 182 263 341 330 258 177 109 81 73 64 57 49 54 45 - 25 41 65 55 65 84 96 126 196 164 176 159 145 164 129 - 127 143 195 270 248 172 114 86 75 71 73 88 46 40 38 - 25 31 34 37 55 67 78 96 129 119 122 101 101 114 100 - 109 111 101 109 107 74 67 62 70 60 70 57 40 25 45 - 32 40 38 38 52 62 68 62 71 74 74 73 78 91 87 - 108 103 102 93 73 62 55 75 64 54 47 45 43 30 37 - 43 31 23 38 64 61 50 35 47 47 60 62 71 64 58 - 86 98 62 69 57 44 40 67 58 45 35 26 32 27 33 - 53 24 36 36 48 49 41 30 45 34 49 51 55 69 99 - 52 70 73 47 41 62 46 52 44 40 23 14 43 28 46 - 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 - 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 - 13 18 7 6 7 7 9 10 9 9 9 8 9 9 10 - 11 11 15 24 20 24 17 13 9 6 7 4 2 4 9 - 31 17 6 7 8 8 10 10 10 9 9 8 9 9 10 - 11 12 16 23 19 23 17 11 8 6 5 4 3 4 18 - 33 17 6 8 8 8 10 11 9 9 9 8 9 10 10 - 11 12 17 22 18 22 17 11 9 7 6 5 4 4 18 - 33 16 9 10 9 9 11 12 9 10 9 9 9 8 11 - 14 13 18 22 18 22 19 12 8 7 8 6 4 5 19 - 27 15 10 11 11 10 12 11 9 10 9 9 9 8 11 - 13 15 18 22 19 21 21 14 9 8 8 7 6 7 22 - 20 13 10 12 14 12 13 11 9 10 9 9 9 9 12 - 15 15 18 22 19 19 21 13 10 9 8 8 8 7 16 - 18 14 12 16 18 14 14 12 9 10 10 10 9 9 14 - 15 17 18 20 17 17 21 13 11 9 9 9 9 8 15 - 76 74 69 58 55 37 24 20 15 14 11 11 11 11 20 - 19 19 19 21 18 23 23 15 15 13 14 18 16 29 47 - 324 326 360 357 277 169 98 67 45 30 21 19 18 23 28 - 37 28 27 27 24 28 25 21 21 22 43 81 119 194 236 - 492 455 538 576 573 480 334 246 171 107 60 44 44 50 67 - 57 52 48 42 39 36 34 34 39 63 140 244 354 428 473 - 318 297 325 374 465 560 561 485 418 291 178 126 105 109 121 - 110 88 80 73 64 51 62 82 117 182 308 349 362 362 337 - 144 175 185 225 262 357 475 535 541 490 362 263 213 188 171 - 158 139 126 105 85 84 143 212 237 271 251 236 210 204 162 - 61 76 125 155 173 216 298 384 458 508 482 409 332 266 214 - 182 159 134 125 151 203 261 278 224 211 153 134 137 105 84 - 32 45 98 115 148 149 212 255 339 384 402 412 387 329 249 - 192 175 205 268 340 354 293 228 155 160 126 103 91 59 66 - 28 27 58 71 103 120 165 209 243 294 262 295 309 237 223 - 187 212 348 507 456 391 254 174 127 143 99 75 77 40 40 - 36 36 50 64 88 96 138 165 206 236 204 211 198 179 156 - 150 152 217 305 290 209 182 132 112 123 90 56 55 33 31 - 33 43 39 68 75 75 100 127 136 136 135 143 133 127 98 - 100 115 119 139 128 98 97 93 106 101 74 56 35 45 37 - 37 31 47 41 77 64 63 92 77 84 86 97 82 84 83 - 97 113 120 131 92 74 69 87 86 83 52 43 54 29 43 - 29 33 42 34 61 44 48 60 56 50 62 75 71 74 64 - 89 97 139 120 71 49 67 69 80 75 44 55 55 46 29 - 28 36 52 37 38 31 54 52 42 46 57 59 51 73 62 - 76 80 123 64 46 41 51 53 61 55 21 39 47 28 19 - 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 - 49 49 49 49 49 49 49 49 49 49 49 49 49 49 49 - 24 19 7 7 8 8 9 10 10 9 9 8 9 10 10 - 11 12 15 29 25 35 19 11 8 7 6 3 3 3 14 - 25 18 6 8 9 9 10 11 10 9 9 8 8 9 11 - 12 13 16 27 24 33 21 11 8 7 6 4 3 4 15 - 29 19 7 9 11 9 10 12 9 9 9 8 8 8 10 - 11 13 17 26 23 30 23 11 9 8 8 6 3 5 17 - 31 19 8 11 12 10 11 13 9 9 9 8 9 8 9 - 11 13 18 26 22 28 26 12 9 9 9 7 5 5 18 - 30 17 10 14 14 12 13 13 9 10 10 9 9 9 11 - 14 15 18 27 22 26 29 14 9 9 9 9 8 7 28 - 23 17 15 17 18 16 15 12 10 10 10 10 9 9 12 - 15 16 19 24 21 23 29 16 10 9 9 9 9 8 22 - 39 50 45 46 38 28 24 19 14 11 11 11 11 10 13 - 16 17 19 23 20 23 29 18 12 10 13 12 13 12 24 - 272 303 309 289 187 122 81 69 43 23 18 16 16 16 22 - 23 22 24 26 24 25 30 24 19 15 25 30 47 94 135 - 750 780 733 828 713 506 354 261 169 83 53 40 33 42 49 - 45 38 38 34 33 35 37 31 31 37 95 162 332 456 622 - 810 749 708 817 916 900 766 665 481 292 182 128 93 101 110 - 87 75 67 52 48 46 52 59 80 141 303 481 655 753 867 - 512 436 412 455 535 718 832 899 834 631 433 302 219 199 188 - 157 138 110 82 68 72 110 179 240 345 507 527 570 590 647 - 269 245 273 266 328 420 587 739 832 807 658 487 377 295 258 - 234 183 138 110 101 165 271 382 387 404 408 390 389 369 338 - 101 116 145 174 217 258 365 507 630 703 694 619 497 389 288 - 250 196 152 177 252 359 450 439 343 328 271 242 222 173 141 - 49 68 79 126 156 189 261 357 459 519 528 544 497 411 294 - 245 231 291 457 540 542 483 336 249 243 191 162 125 97 71 - 30 37 52 80 114 141 192 241 351 389 369 354 329 290 247 - 216 256 423 632 603 446 331 234 186 191 131 101 97 56 43 - 33 31 42 49 98 114 151 201 238 247 255 231 232 185 167 - 156 178 267 319 284 201 182 162 139 159 135 81 67 39 31 - 32 26 47 43 78 92 100 147 141 134 142 141 158 120 122 - 95 122 138 163 140 114 124 97 103 107 82 72 54 52 44 - 24 25 29 47 59 63 74 97 90 76 77 96 92 85 99 - 104 105 108 127 95 88 75 79 79 76 55 52 36 31 37 - 36 32 51 34 69 54 52 59 62 61 56 60 58 60 81 - 102 90 100 108 71 65 80 73 53 56 51 38 33 26 35 - 32 44 46 29 40 46 50 50 55 72 43 50 59 53 59 - 75 71 135 80 46 76 57 64 49 48 57 31 32 41 21 - 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 - 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 - 37 22 10 8 9 9 10 10 10 9 9 9 9 10 11 - 13 14 19 28 29 41 21 12 8 7 6 5 3 4 21 - 27 22 7 9 10 10 12 11 10 9 9 10 9 10 11 - 12 14 19 27 28 37 24 11 8 7 6 5 4 4 16 - 31 23 7 11 11 11 10 12 10 9 9 9 9 8 10 - 11 15 21 27 26 33 27 11 8 8 8 7 4 5 18 - 35 21 8 12 12 12 12 15 12 9 9 9 9 9 11 - 13 17 22 28 25 30 32 12 9 9 9 9 6 6 21 - 33 19 12 16 16 14 15 15 11 10 10 10 9 9 11 - 14 21 22 27 24 28 35 16 10 9 10 9 8 8 29 - 39 29 35 36 36 25 25 20 15 13 12 12 10 9 12 - 15 21 21 26 23 26 33 20 11 10 10 10 10 12 32 - 167 204 202 193 138 82 73 61 43 28 19 16 14 15 15 - 20 22 22 26 23 25 30 24 15 13 14 22 40 55 106 - 796 958 876 888 650 416 315 258 161 83 48 35 30 29 30 - 37 32 31 30 30 30 34 34 28 30 62 122 277 407 547 - 1386 1360 1331 1481 1446 1195 931 793 544 280 165 102 79 75 80 - 69 58 51 42 39 38 46 50 64 120 320 553 899 1133 1260 - 1238 1050 961 1039 1232 1374 1350 1303 1146 761 469 291 197 167 166 - 127 113 81 63 52 59 91 123 212 368 708 968 1090 1298 1330 - 809 643 596 583 649 858 1090 1239 1327 1176 867 572 392 305 266 - 219 175 122 91 81 126 248 408 504 681 792 848 884 1063 1002 - 440 377 354 357 396 500 696 876 1028 1148 1031 809 575 407 332 - 274 216 147 128 190 336 511 660 645 649 576 539 675 603 550 - 174 160 200 219 268 323 439 605 760 874 918 859 689 486 350 - 290 222 218 306 482 641 687 580 490 468 383 326 360 241 213 - 71 91 87 135 190 234 309 411 558 652 660 685 607 462 341 - 293 323 476 698 791 675 613 427 310 345 297 214 166 118 79 - 50 48 52 70 114 160 220 292 390 446 420 419 389 354 267 - 254 326 483 648 537 414 343 262 215 235 170 99 83 63 47 - 27 48 31 43 80 101 149 199 250 264 247 250 225 252 211 - 175 162 209 285 225 195 156 161 148 172 108 58 53 44 40 - 25 38 24 37 63 72 94 119 153 155 129 146 113 117 105 - 106 117 131 169 120 102 103 95 101 106 61 69 61 30 33 - 37 28 26 28 57 51 61 78 72 76 71 75 65 74 77 - 84 96 112 149 71 73 84 86 69 63 36 70 49 50 34 - 25 23 27 30 51 42 45 49 50 48 44 60 53 62 84 - 85 108 103 152 62 58 72 59 50 39 36 51 35 31 47 - 22 37 44 25 35 37 34 44 61 45 47 41 49 46 58 - 72 83 96 105 53 39 45 34 34 29 22 31 27 19 45 - 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 - 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 - 23 19 9 8 9 9 9 10 10 9 9 8 9 10 11 - 12 14 20 32 29 40 22 13 8 7 6 5 3 5 14 - 30 21 8 9 10 11 10 11 10 9 9 8 9 10 11 - 12 14 20 30 27 37 25 11 8 8 7 5 4 5 17 - 34 23 8 11 13 11 11 13 11 9 9 9 9 8 10 - 11 16 20 30 26 33 28 11 9 9 9 7 5 6 20 - 38 24 10 16 16 13 13 16 12 10 9 9 9 8 10 - 11 19 22 32 25 32 33 13 10 12 12 10 8 7 22 - 47 37 27 41 32 22 24 21 15 13 11 10 10 9 11 - 14 20 23 30 24 30 35 17 11 10 12 13 12 12 35 - 147 160 146 164 114 70 72 50 40 24 18 14 12 12 14 - 17 22 24 29 23 28 34 22 14 13 17 32 35 47 122 - 695 816 771 714 508 318 261 196 135 69 43 30 25 24 17 - 23 26 28 29 25 28 34 30 27 27 63 147 248 307 576 - 1805 1790 1844 1958 1667 1191 904 742 438 225 135 82 60 48 44 - 45 39 39 35 31 33 43 60 72 100 281 579 972 1220 1527 - 2113 1913 1836 2022 2284 2145 1860 1720 1252 660 412 227 160 127 118 - 85 71 63 47 41 48 87 151 235 415 926 1376 1800 2108 2165 - 1845 1604 1367 1284 1481 1749 1993 2048 1915 1411 956 531 370 258 229 - 157 121 97 65 57 108 231 403 609 923 1390 1819 1956 2122 1913 - 1329 1132 922 775 813 1002 1352 1523 1728 1769 1458 966 642 444 338 - 251 185 134 94 144 291 553 855 986 1128 1236 1388 1631 1582 1344 - 724 639 476 507 546 623 803 1015 1251 1460 1473 1221 832 570 415 - 310 229 198 215 426 654 906 985 969 949 887 988 1065 985 685 - 333 292 237 304 352 399 514 727 920 1027 1072 1036 823 569 420 - 316 292 395 590 810 916 905 767 647 681 541 624 496 577 396 - 149 121 108 171 216 240 315 524 630 701 700 722 627 455 334 - 281 357 594 839 810 694 567 458 390 452 236 234 198 170 197 - 64 68 87 99 121 162 196 335 366 417 411 423 362 270 241 - 228 270 379 473 399 339 299 244 224 286 136 101 78 81 75 - 34 71 76 50 89 98 126 178 184 218 190 198 191 171 162 - 141 140 170 173 178 145 130 160 128 158 49 72 54 35 45 - 37 47 41 39 65 63 80 85 104 113 102 107 96 116 89 - 83 89 125 123 102 73 76 85 79 91 38 51 69 38 35 - 44 33 26 31 47 50 55 52 49 53 47 63 58 68 65 - 69 65 103 93 68 67 67 51 51 48 31 24 38 39 33 - 26 31 25 25 35 38 57 45 37 37 35 49 45 52 52 - 74 75 72 63 73 58 43 33 34 35 26 22 26 24 40 - 21 26 24 19 23 29 34 36 38 37 31 36 38 54 42 - 53 52 66 43 45 29 27 25 29 24 20 16 16 32 20 - 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 - 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 - 24 19 10 9 9 9 11 10 10 9 9 9 9 11 13 - 16 18 29 41 29 39 23 12 9 7 7 5 3 5 14 - 27 22 9 9 10 10 11 12 10 9 9 9 9 11 14 - 16 19 31 40 28 36 27 11 9 8 8 7 4 6 16 - 33 25 10 13 14 13 12 15 11 9 9 9 9 8 10 - 12 22 30 38 27 35 31 12 10 12 12 9 5 6 19 - 48 34 26 29 24 19 14 22 14 12 11 10 9 9 11 - 13 26 28 37 25 34 35 15 14 15 15 15 10 8 28 - 164 113 109 144 87 49 40 45 32 22 17 12 10 9 13 - 16 29 30 36 25 34 37 20 14 22 51 44 44 39 135 - 706 543 520 576 382 212 203 152 104 69 41 25 16 15 19 - 23 31 32 33 24 31 38 26 24 42 126 199 223 277 721 - 1883 1763 1784 1778 1467 956 795 575 379 226 113 70 36 27 34 - 32 37 36 33 28 34 48 50 79 156 375 674 805 1143 1979 - 2999 2843 2829 3054 3165 2664 1990 1640 1252 630 356 188 100 72 78 - 58 54 50 40 36 56 78 151 311 515 1032 1768 2078 2597 2996 - 3093 2503 2386 2512 3006 3124 2969 2816 2411 1498 940 491 275 194 152 - 113 90 74 55 53 120 186 387 826 1267 2105 2703 3018 3253 3236 - 2662 2099 1771 1695 1833 2168 2531 2728 2722 2389 1706 1045 587 392 293 - 201 153 100 88 117 312 525 898 1517 1792 2334 2679 2950 2778 2563 - 1835 1551 1285 1176 1170 1300 1655 1898 2067 2265 2005 1494 932 632 445 - 322 226 171 197 373 701 1023 1387 1674 1783 1898 2206 2299 2193 2032 - 956 963 902 734 785 847 1039 1233 1394 1586 1642 1483 1082 720 505 - 368 302 343 510 790 1089 1263 1341 1311 1467 1401 1624 1451 1400 1370 - 416 466 533 444 476 500 613 841 1050 1020 1042 1038 868 637 455 - 360 363 603 874 961 937 1028 912 844 1054 796 878 713 819 752 - 214 268 288 256 281 285 357 516 653 624 648 618 551 415 337 - 323 328 546 717 656 532 599 457 468 561 337 344 344 270 277 - 158 107 109 207 158 156 183 324 313 321 341 329 245 243 234 - 209 194 270 331 245 174 202 196 241 239 141 180 183 115 130 - 56 77 44 113 78 100 128 173 144 155 144 163 109 158 150 - 101 104 128 150 83 94 123 122 107 87 73 104 42 44 62 - 47 49 44 90 62 63 81 90 82 86 85 78 53 56 63 - 73 72 93 115 61 67 57 52 54 50 41 28 22 23 30 - 25 26 29 37 42 51 51 69 57 56 47 44 50 40 46 - 52 56 68 86 55 48 34 35 47 38 44 22 19 17 19 - 21 29 29 23 37 36 39 39 42 51 35 35 41 44 39 - 40 52 60 50 52 48 29 33 30 32 23 27 30 21 26 - 31 26 38 46 27 29 35 33 37 46 41 36 30 33 36 - 47 42 50 31 27 23 29 26 27 44 25 24 52 28 58 - 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 - 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 - 16 19 9 9 10 9 10 11 10 9 9 9 9 10 12 - 13 14 36 49 30 39 24 12 9 8 7 5 4 11 14 - 43 28 9 13 13 10 12 14 11 10 10 9 9 11 13 - 16 18 33 46 29 37 28 12 9 9 9 10 5 5 24 - 137 44 18 19 19 14 12 18 14 13 11 9 8 8 10 - 12 22 31 45 28 35 32 12 11 12 15 20 20 9 73 - 247 125 94 84 62 30 18 38 27 26 18 11 9 9 10 - 11 26 30 45 28 36 36 16 14 20 28 50 50 79 179 - 661 429 379 385 302 133 85 131 79 64 39 15 12 10 12 - 14 30 31 42 29 37 43 27 24 44 116 242 270 338 802 - 1840 1485 1370 1431 1256 586 466 470 336 159 105 33 21 16 20 - 23 36 35 41 28 38 58 47 81 143 514 912 1084 1030 2369 - 3656 3291 3342 3661 3375 2303 1731 1414 1046 501 287 111 56 42 37 - 37 43 43 43 35 51 95 160 298 555 1470 2130 2403 2774 4197 - 4273 4055 4030 4525 4916 4629 3670 3042 2505 1286 768 329 150 104 113 - 80 65 60 55 68 97 211 469 946 1414 2899 3261 3705 4355 4666 - 4057 3537 3187 3375 3790 4118 4105 3919 3758 2494 1593 792 375 273 173 - 158 102 89 95 140 323 476 989 1906 2566 3516 4374 4649 4570 4614 - 3342 2914 2569 2361 2520 2640 2904 3265 3359 3070 2287 1473 814 520 351 - 242 166 139 175 307 804 1087 1784 2581 3077 3664 4516 4095 3944 4165 - 2579 1918 1849 1849 1729 1711 2013 2202 2354 2420 2204 1779 1253 701 476 - 329 233 263 447 730 1275 1668 2112 2593 2938 3252 3693 3462 3061 2844 - 1529 1220 1257 1172 1215 1150 1335 1500 1612 1629 1525 1451 1154 753 522 - 354 336 441 799 1010 1308 1445 1594 1852 2335 1992 2598 2281 2078 1882 - 927 594 607 665 790 750 889 908 885 1004 937 914 745 562 347 - 324 407 510 714 802 916 1021 966 1188 1531 1269 1270 1541 1110 1344 - 412 341 438 447 444 432 455 594 551 509 487 454 439 306 214 - 275 309 331 463 395 455 570 468 635 780 537 463 549 488 468 - 166 241 197 157 229 197 211 280 311 308 227 220 231 174 196 - 160 161 190 200 156 307 221 182 265 319 142 241 146 145 216 - 52 92 167 63 110 110 152 157 183 128 94 108 83 136 128 - 79 129 126 144 105 136 74 91 139 118 67 63 131 65 82 - 65 104 34 31 64 54 117 89 95 74 53 58 50 57 72 - 107 83 102 96 63 71 84 56 88 60 36 36 46 32 35 - 33 20 23 23 52 45 74 60 77 68 36 45 44 57 103 - 58 52 62 98 80 57 60 47 40 38 26 24 25 26 23 - 29 19 27 19 40 49 37 38 48 33 39 50 49 53 45 - 42 51 69 105 57 29 41 35 23 29 16 22 26 22 21 - 18 22 28 22 24 42 37 35 39 32 37 34 40 39 46 - 45 53 84 41 56 21 36 26 24 40 17 24 23 22 23 - 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 - 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 - 20 27 13 10 11 12 10 12 11 10 9 10 11 12 13 - 13 14 32 34 29 36 24 12 10 9 8 7 5 7 14 - 24 106 24 22 15 13 12 14 13 12 10 11 9 10 12 - 13 15 37 33 28 35 26 12 11 18 8 7 16 8 16 - 118 169 111 94 41 28 20 27 19 19 12 13 9 8 10 - 12 19 40 33 29 34 30 13 13 33 25 13 59 65 92 - 775 490 399 414 191 99 53 92 56 44 25 18 10 8 11 - 14 26 37 32 32 36 34 18 27 96 138 127 152 396 586 - 1999 1322 1165 1475 846 556 332 359 218 133 74 28 17 10 14 - 17 29 34 32 31 42 59 33 77 277 681 770 692 1332 2093 - 3350 3177 2507 3661 2933 2113 1256 1062 808 403 221 71 50 16 19 - 22 39 36 34 44 61 90 87 230 726 2019 2450 2099 3659 5357 - 5535 5561 4864 5666 6066 4488 3164 2469 1653 1115 580 215 103 47 49 - 51 51 40 43 53 107 199 278 816 1766 3573 4229 4729 5573 6290 - 6679 5682 5651 6537 6888 6888 5730 4332 3419 2146 1334 504 233 140 123 - 88 91 68 104 167 290 684 874 1985 3052 5487 5815 6813 7132 7515 - 5968 4941 4201 4356 5086 5372 5916 5387 4220 2930 2284 1119 526 306 251 - 173 168 123 168 324 852 1266 1656 3289 4376 6430 6458 7500 7668 6809 - 4441 3955 3430 3042 3559 3246 4008 3999 4170 2912 2460 1610 905 534 386 - 219 209 181 331 512 1248 2061 2755 4260 4638 5933 6251 6287 6359 5985 - 3998 2778 2510 2149 2403 2383 2584 2691 2679 2268 1951 1525 1076 758 487 - 356 298 327 585 837 1691 2478 3287 3862 4578 5481 6118 5441 4671 4172 - 1886 2123 1830 1338 1882 1641 1672 1710 1789 1309 1197 1036 926 659 460 - 389 301 399 606 942 1584 2148 2526 2896 3410 3529 3588 3106 2641 3017 - 841 1458 938 863 1201 1118 1122 968 875 822 627 583 590 388 302 - 350 252 485 552 795 903 1041 1017 1979 2197 1530 1479 2074 1577 1886 - 980 1007 426 423 674 589 497 653 457 347 260 239 239 281 219 - 192 274 242 310 413 658 381 662 971 772 610 965 1191 737 489 - 557 381 336 315 407 295 192 195 304 124 106 103 106 150 125 - 125 118 91 202 181 169 217 225 363 94 156 254 314 89 754 - 80 48 412 120 225 162 91 95 120 65 54 53 103 54 74 - 63 51 100 114 102 103 71 60 69 47 79 32 85 212 192 - 23 140 183 45 116 134 61 81 48 44 36 53 391 40 53 - 36 36 83 76 73 48 45 56 37 33 177 294 43 63 31 - 329 219 62 32 75 144 50 52 32 30 27 40 79 29 37 - 44 60 77 69 56 32 73 72 64 27 79 113 47 21 44 - 651 79 30 33 55 129 67 41 47 34 34 28 40 33 48 - 58 76 63 111 115 29 38 28 72 20 176 26 186 143 155 - 23 20 28 27 44 117 98 70 69 49 40 30 88 95 55 - 58 85 60 148 48 26 27 46 27 22 11 32 37 19 121 - 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 - 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 - 19 25 12 18 33 16 13 17 19 15 12 9 9 12 14 - 17 19 23 50 31 31 29 10 10 11 16 10 30 7 13 - 100 119 31 53 119 31 19 33 25 19 13 9 9 12 15 - 18 20 22 44 30 30 49 10 13 18 82 160 172 63 82 - 376 541 181 256 665 185 48 113 86 65 26 10 9 12 15 - 18 20 22 41 37 31 44 14 57 115 404 659 774 514 445 - 926 1664 948 1348 2559 858 278 726 473 201 67 15 12 11 16 - 22 28 25 43 58 38 67 77 145 555 639 2794 1050 2111 1519 - 4111 2669 2904 4133 4541 2641 1750 1803 1652 1301 246 66 24 18 22 - 27 31 33 50 84 60 126 236 379 1293 2034 7747 2998 5621 4866 - 7323 3991 6257 9370 7300 5791 4377 3676 2947 1295 662 130 64 49 37 - 25 44 35 92 63 297 287 533 951 2981 4457 9938 6234 9391 9037 - 7579 6057 7830 11311 11137 8579 6906 6285 3391 2029 1255 357 143 130 89 - 48 198 123 168 171 431 904 1570 2208 5633 7324 10786 9073 9800 10784 - 8956 8168 7455 9533 10404 9741 8912 9291 6467 3091 2018 548 382 234 301 - 162 580 189 347 479 956 2269 2725 4835 7344 11823 8847 10876 11852 9142 - 9121 6847 5216 6638 7459 7330 8754 6787 8044 3029 2377 1094 535 360 259 - 342 235 390 413 652 1099 3482 4355 7128 8469 12207 9405 11213 13834 8241 - 5869 4426 4705 3737 5575 5256 6047 4325 5977 2595 1904 1174 639 574 330 - 545 705 409 462 613 1812 4233 6596 8078 9627 11346 8330 11772 8419 7800 - 4459 3754 2981 3948 3752 3922 3630 3022 4529 2767 1391 900 621 610 416 - 471 866 283 610 914 2917 4083 7323 7418 8143 9337 9152 3039 3461 7129 - 3759 2729 2202 3285 2570 2707 2107 2588 2429 1605 869 670 275 416 415 - 280 629 253 470 998 1666 1970 5453 5518 4405 4348 5736 2837 1320 2718 - 2255 1539 1622 1892 1766 1225 1632 1758 1920 906 658 336 213 284 286 - 397 206 213 466 758 972 890 1423 3182 2787 1060 1519 1373 2185 2333 - 772 704 970 993 886 1117 1267 810 784 457 373 173 295 210 337 - 303 131 166 262 486 722 398 606 1092 1400 387 845 407 2063 1495 - 482 118 205 528 673 1214 461 762 148 223 98 126 270 167 58 - 66 103 149 190 85 260 131 235 217 416 345 1083 576 595 1221 - 880 134 125 330 278 736 239 419 129 102 62 68 76 54 105 - 85 88 120 126 80 280 140 93 85 110 347 85 1401 1685 616 - 143 33 82 99 66 280 142 52 45 87 56 46 67 38 50 - 53 196 128 103 155 190 147 38 50 84 32 71 34 19 25 - 41 42 43 38 53 300 209 110 92 81 46 43 41 50 44 - 51 60 192 54 83 46 38 43 29 99 24 29 35 44 44 - 56 27 54 31 52 54 109 66 80 145 77 73 51 98 54 - 66 164 93 54 39 35 47 43 41 81 19 35 37 39 41 - 41 86 24 22 40 45 41 62 64 70 72 64 97 67 46 - 141 104 62 37 65 40 59 41 83 77 73 70 67 63 60 - 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 - 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 diff --git a/util/EMPIRICAL/srcIE/data/isoelec_edep.dat b/util/EMPIRICAL/srcIE/data/isoelec_edep.dat deleted file mode 100644 index d736b225..00000000 --- a/util/EMPIRICAL/srcIE/data/isoelec_edep.dat +++ /dev/null @@ -1,3756 +0,0 @@ -4.710000E+00 0.000000E+00 87 -88 1.755000E-20 400.0 -87 1.835000E-20 395.0 -86 2.002000E-20 390.0 -85 2.186000E-20 385.0 -84 2.389000E-20 380.0 -83 2.612000E-20 375.0 -82 2.859000E-20 370.0 -81 3.131000E-20 365.0 -80 3.433000E-20 360.0 -79 3.767000E-20 355.0 -78 4.137000E-20 350.0 -77 4.548000E-20 345.0 -76 5.003000E-20 340.0 -75 5.510000E-20 335.0 -74 6.075000E-20 330.0 -73 6.707000E-20 325.0 -72 7.411000E-20 320.0 -71 8.200000E-20 315.0 -70 9.086000E-20 310.0 -69 1.008000E-19 305.0 -68 1.120000E-19 300.0 -67 1.246000E-19 295.0 -66 1.389000E-19 290.0 -65 1.550000E-19 285.0 -64 1.733000E-19 280.0 -63 1.942000E-19 275.0 -62 2.179000E-19 270.0 -61 2.451000E-19 265.0 -60 2.763000E-19 260.0 -59 3.121000E-19 255.0 -58 3.536000E-19 250.0 -57 4.016000E-19 245.0 -56 4.573000E-19 240.0 -55 5.224000E-19 235.0 -54 5.987000E-19 230.0 -53 6.886000E-19 225.0 -52 7.950000E-19 220.0 -51 9.218000E-19 215.0 -50 1.073000E-18 210.0 -49 1.256000E-18 205.0 -48 1.478000E-18 200.0 -47 1.749000E-18 195.0 -46 2.083000E-18 190.0 -45 2.500000E-18 185.0 -44 3.024000E-18 180.0 -43 3.692000E-18 175.0 -42 4.553000E-18 170.0 -41 5.684000E-18 165.0 -40 7.190000E-18 160.0 -39 9.248000E-18 155.0 -38 1.211000E-17 150.0 -37 1.623000E-17 145.0 -36 2.232000E-17 140.0 -35 3.165000E-17 135.0 -34 4.553000E-17 130.0 -33 7.074000E-17 125.0 -32 1.057000E-16 120.0 -31 1.750040E-16 117.0 -30 2.698583E-16 114.0 -29 4.434409E-16 111.0 -28 7.607906E-16 108.0 -27 1.290684E-15 105.0 -26 2.203789E-15 102.0 -25 3.802788E-15 99.0 -24 6.644762E-15 96.0 -23 1.155757E-14 93.0 -22 1.996499E-14 90.0 -21 3.438865E-14 87.0 -20 5.835665E-14 84.0 -19 9.571089E-14 81.0 -18 1.546278E-13 78.0 -17 2.457972E-13 75.0 -16 3.838498E-13 72.0 -15 5.809528E-13 69.0 -14 8.537337E-13 66.0 -13 1.214825E-12 63.0 -12 1.679083E-12 60.0 -11 2.741941E-12 55.0 -10 3.934704E-12 50.0 - 9 3.614237E-12 45.0 - 8 7.224641E-14 40.0 - 7 4.018527E-14 35.0 - 6 5.293745E-14 30.0 - 5 4.801917E-14 25.0 - 4 2.007048E-14 20.0 - 3 2.042073E-15 15.0 - 2 1.880415E-17 10.0 -3.930000E+00 0.000000E+00 87 -88 1.742000E-20 400.0 -87 1.821000E-20 395.0 -86 1.987000E-20 390.0 -85 2.170000E-20 385.0 -84 2.371000E-20 380.0 -83 2.593000E-20 375.0 -82 2.838000E-20 370.0 -81 3.108000E-20 365.0 -80 3.408000E-20 360.0 -79 3.739000E-20 355.0 -78 4.107000E-20 350.0 -77 4.514000E-20 345.0 -76 4.966000E-20 340.0 -75 5.470000E-20 335.0 -74 6.031000E-20 330.0 -73 6.658000E-20 325.0 -72 7.357000E-20 320.0 -71 8.140000E-20 315.0 -70 9.020000E-20 310.0 -69 1.001000E-19 305.0 -68 1.112000E-19 300.0 -67 1.237000E-19 295.0 -66 1.379000E-19 290.0 -65 1.539000E-19 285.0 -64 1.721000E-19 280.0 -63 1.928000E-19 275.0 -62 2.164000E-19 270.0 -61 2.433000E-19 265.0 -60 2.742000E-19 260.0 -59 3.099000E-19 255.0 -58 3.510000E-19 250.0 -57 3.986000E-19 245.0 -56 4.540000E-19 240.0 -55 5.186000E-19 235.0 -54 5.943000E-19 230.0 -53 6.836000E-19 225.0 -52 7.892000E-19 220.0 -51 9.150000E-19 215.0 -50 1.066000E-18 210.0 -49 1.247000E-18 205.0 -48 1.467000E-18 200.0 -47 1.736000E-18 195.0 -46 2.068000E-18 190.0 -45 2.482000E-18 185.0 -44 3.001000E-18 180.0 -43 3.665000E-18 175.0 -42 4.519000E-18 170.0 -41 5.643000E-18 165.0 -40 7.138000E-18 160.0 -39 9.181000E-18 155.0 -38 1.202000E-17 150.0 -37 1.611000E-17 145.0 -36 2.215000E-17 140.0 -35 3.141000E-17 135.0 -34 4.520000E-17 130.0 -33 7.022000E-17 125.0 -32 1.049000E-16 120.0 -31 1.744556E-16 117.0 -30 2.689574E-16 114.0 -29 4.418387E-16 111.0 -28 7.584981E-16 108.0 -27 1.287205E-15 105.0 -26 2.197253E-15 102.0 -25 3.791244E-15 99.0 -24 6.621838E-15 96.0 -23 1.152279E-14 93.0 -22 1.991073E-14 90.0 -21 3.432545E-14 87.0 -20 5.825909E-14 84.0 -19 9.554215E-14 81.0 -18 1.541272E-13 78.0 -17 2.443912E-13 75.0 -16 3.798940E-13 72.0 -15 5.710009E-13 69.0 -14 8.319557E-13 66.0 -13 1.175870E-12 63.0 -12 1.624617E-12 60.0 -11 2.608928E-12 55.0 -10 3.491825E-12 50.0 - 9 1.752336E-12 45.0 - 8 2.094587E-14 40.0 - 7 2.723447E-14 35.0 - 6 3.529401E-14 30.0 - 5 3.081797E-14 25.0 - 4 1.169296E-14 20.0 - 3 9.609979E-16 15.0 - 2 5.764139E-18 10.0 -3.300000E+00 0.000000E+00 87 -88 1.734000E-20 400.0 -87 1.813000E-20 395.0 -86 1.978000E-20 390.0 -85 2.160000E-20 385.0 -84 2.360000E-20 380.0 -83 2.581000E-20 375.0 -82 2.825000E-20 370.0 -81 3.094000E-20 365.0 -80 3.392000E-20 360.0 -79 3.722000E-20 355.0 -78 4.088000E-20 350.0 -77 4.494000E-20 345.0 -76 4.944000E-20 340.0 -75 5.444000E-20 335.0 -74 6.003000E-20 330.0 -73 6.627000E-20 325.0 -72 7.323000E-20 320.0 -71 8.103000E-20 315.0 -70 8.978000E-20 310.0 -69 9.961000E-20 305.0 -68 1.107000E-19 300.0 -67 1.231000E-19 295.0 -66 1.372000E-19 290.0 -65 1.532000E-19 285.0 -64 1.713000E-19 280.0 -63 1.919000E-19 275.0 -62 2.154000E-19 270.0 -61 2.422000E-19 265.0 -60 2.730000E-19 260.0 -59 3.084000E-19 255.0 -58 3.494000E-19 250.0 -57 3.968000E-19 245.0 -56 4.519000E-19 240.0 -55 5.162000E-19 235.0 -54 5.916000E-19 230.0 -53 6.804000E-19 225.0 -52 7.856000E-19 220.0 -51 9.108000E-19 215.0 -50 1.061000E-18 210.0 -49 1.241000E-18 205.0 -48 1.460000E-18 200.0 -47 1.728000E-18 195.0 -46 2.059000E-18 190.0 -45 2.470000E-18 185.0 -44 2.988000E-18 180.0 -43 3.648000E-18 175.0 -42 4.499000E-18 170.0 -41 5.617000E-18 165.0 -40 7.105000E-18 160.0 -39 9.138000E-18 155.0 -38 1.197000E-17 150.0 -37 1.604000E-17 145.0 -36 2.205000E-17 140.0 -35 3.127000E-17 135.0 -34 4.499000E-17 130.0 -33 6.989000E-17 125.0 -32 1.044000E-16 120.0 -31 1.740072E-16 117.0 -30 2.684568E-16 114.0 -29 4.407899E-16 111.0 -28 7.569647E-16 108.0 -27 1.285676E-15 105.0 -26 2.195723E-15 102.0 -25 3.786654E-15 99.0 -24 6.610654E-15 96.0 -23 1.149748E-14 93.0 -22 1.987067E-14 90.0 -21 3.424113E-14 87.0 -20 5.810567E-14 84.0 -19 9.527189E-14 81.0 -18 1.535359E-13 78.0 -17 2.429601E-13 75.0 -16 3.761725E-13 72.0 -15 5.620851E-13 69.0 -14 8.134797E-13 66.0 -13 1.145853E-12 63.0 -12 1.579514E-12 60.0 -11 2.455181E-12 55.0 -10 3.001992E-12 50.0 - 9 5.239099E-13 45.0 - 8 1.253600E-14 40.0 - 7 1.865035E-14 35.0 - 6 2.376467E-14 30.0 - 5 1.997577E-14 25.0 - 4 6.873797E-15 20.0 - 3 4.522458E-16 15.0 - 2 1.712454E-18 10.0 -2.810000E+00 0.000000E+00 87 -88 1.732000E-20 400.0 -87 1.810000E-20 395.0 -86 1.975000E-20 390.0 -85 2.157000E-20 385.0 -84 2.357000E-20 380.0 -83 2.577000E-20 375.0 -82 2.821000E-20 370.0 -81 3.090000E-20 365.0 -80 3.387000E-20 360.0 -79 3.717000E-20 355.0 -78 4.082000E-20 350.0 -77 4.487000E-20 345.0 -76 4.936000E-20 340.0 -75 5.436000E-20 335.0 -74 5.994000E-20 330.0 -73 6.617000E-20 325.0 -72 7.313000E-20 320.0 -71 8.091000E-20 315.0 -70 8.965000E-20 310.0 -69 9.947000E-20 305.0 -68 1.105000E-19 300.0 -67 1.230000E-19 295.0 -66 1.370000E-19 290.0 -65 1.529000E-19 285.0 -64 1.710000E-19 280.0 -63 1.916000E-19 275.0 -62 2.150000E-19 270.0 -61 2.418000E-19 265.0 -60 2.726000E-19 260.0 -59 3.080000E-19 255.0 -58 3.489000E-19 250.0 -57 3.962000E-19 245.0 -56 4.512000E-19 240.0 -55 5.154000E-19 235.0 -54 5.907000E-19 230.0 -53 6.794000E-19 225.0 -52 7.844000E-19 220.0 -51 9.095000E-19 215.0 -50 1.059000E-18 210.0 -49 1.239000E-18 205.0 -48 1.458000E-18 200.0 -47 1.726000E-18 195.0 -46 2.056000E-18 190.0 -45 2.467000E-18 185.0 -44 2.983000E-18 180.0 -43 3.642000E-18 175.0 -42 4.492000E-18 170.0 -41 5.608000E-18 165.0 -40 7.095000E-18 160.0 -39 9.125000E-18 155.0 -38 1.195000E-17 150.0 -37 1.601000E-17 145.0 -36 2.202000E-17 140.0 -35 3.122000E-17 135.0 -34 4.492000E-17 130.0 -33 6.979000E-17 125.0 -32 1.043000E-16 120.0 -31 1.738071E-16 117.0 -30 2.684568E-16 114.0 -29 4.405369E-16 111.0 -28 7.565641E-16 108.0 -27 1.285202E-15 105.0 -26 2.197253E-15 102.0 -25 3.790131E-15 99.0 -24 6.618441E-15 96.0 -23 1.151222E-14 93.0 -22 1.987486E-14 90.0 -21 3.423424E-14 87.0 -20 5.805832E-14 84.0 -19 9.504351E-14 81.0 -18 1.528352E-13 78.0 -17 2.410626E-13 75.0 -16 3.714412E-13 72.0 -15 5.517193E-13 69.0 -14 7.951832E-13 66.0 -13 1.119937E-12 63.0 -12 1.535054E-12 60.0 -11 2.301874E-12 55.0 -10 2.420541E-12 50.0 - 9 1.032030E-13 45.0 - 8 8.871097E-15 40.0 - 7 1.311875E-14 35.0 - 6 1.646494E-14 30.0 - 5 1.334764E-14 25.0 - 4 4.183657E-15 20.0 - 3 2.212790E-16 15.0 - 2 5.255568E-19 10.0 -2.320000E+00 0.000000E+00 87 -88 1.735000E-20 400.0 -87 1.814000E-20 395.0 -86 1.979000E-20 390.0 -85 2.161000E-20 385.0 -84 2.362000E-20 380.0 -83 2.583000E-20 375.0 -82 2.827000E-20 370.0 -81 3.096000E-20 365.0 -80 3.394000E-20 360.0 -79 3.724000E-20 355.0 -78 4.090000E-20 350.0 -77 4.496000E-20 345.0 -76 4.947000E-20 340.0 -75 5.448000E-20 335.0 -74 6.007000E-20 330.0 -73 6.631000E-20 325.0 -72 7.328000E-20 320.0 -71 8.108000E-20 315.0 -70 8.983000E-20 310.0 -69 9.967000E-20 305.0 -68 1.107000E-19 300.0 -67 1.232000E-19 295.0 -66 1.373000E-19 290.0 -65 1.533000E-19 285.0 -64 1.714000E-19 280.0 -63 1.920000E-19 275.0 -62 2.155000E-19 270.0 -61 2.423000E-19 265.0 -60 2.731000E-19 260.0 -59 3.086000E-19 255.0 -58 3.496000E-19 250.0 -57 3.970000E-19 245.0 -56 4.522000E-19 240.0 -55 5.165000E-19 235.0 -54 5.919000E-19 230.0 -53 6.808000E-19 225.0 -52 7.861000E-19 220.0 -51 9.113000E-19 215.0 -50 1.061000E-18 210.0 -49 1.242000E-18 205.0 -48 1.461000E-18 200.0 -47 1.729000E-18 195.0 -46 2.060000E-18 190.0 -45 2.472000E-18 185.0 -44 2.989000E-18 180.0 -43 3.650000E-18 175.0 -42 4.501000E-18 170.0 -41 5.620000E-18 165.0 -40 7.109000E-18 160.0 -39 9.144000E-18 155.0 -38 1.197000E-17 150.0 -37 1.604000E-17 145.0 -36 2.207000E-17 140.0 -35 3.129000E-17 135.0 -34 4.502000E-17 130.0 -33 6.993000E-17 125.0 -32 1.045000E-16 120.0 -31 1.739552E-16 117.0 -30 2.690097E-16 114.0 -29 4.414276E-16 111.0 -28 7.575074E-16 108.0 -27 1.287732E-15 105.0 -26 2.201840E-15 102.0 -25 3.801732E-15 99.0 -24 6.642119E-15 96.0 -23 1.155757E-14 93.0 -22 1.995498E-14 90.0 -21 3.437390E-14 87.0 -20 5.825807E-14 84.0 -19 9.524705E-14 81.0 -18 1.527304E-13 78.0 -17 2.398092E-13 75.0 -16 3.670813E-13 72.0 -15 5.416046E-13 69.0 -14 7.776407E-13 66.0 -13 1.090890E-12 63.0 -12 1.472583E-12 60.0 -11 2.091770E-12 55.0 -10 1.357792E-12 50.0 - 9 1.032265E-14 45.0 - 8 5.897320E-15 40.0 - 7 8.604737E-15 35.0 - 6 1.060000E-14 30.0 - 5 8.216917E-15 25.0 - 4 2.298083E-15 20.0 - 3 9.222278E-17 15.0 - 2 1.186514E-19 10.0 -1.930000E+00 0.000000E+00 87 -88 1.744000E-20 400.0 -87 1.823000E-20 395.0 -86 1.989000E-20 390.0 -85 2.172000E-20 385.0 -84 2.374000E-20 380.0 -83 2.596000E-20 375.0 -82 2.841000E-20 370.0 -81 3.112000E-20 365.0 -80 3.411000E-20 360.0 -79 3.743000E-20 355.0 -78 4.111000E-20 350.0 -77 4.519000E-20 345.0 -76 4.972000E-20 340.0 -75 5.475000E-20 335.0 -74 6.037000E-20 330.0 -73 6.664000E-20 325.0 -72 7.365000E-20 320.0 -71 8.149000E-20 315.0 -70 9.029000E-20 310.0 -69 1.002000E-19 305.0 -68 1.113000E-19 300.0 -67 1.238000E-19 295.0 -66 1.380000E-19 290.0 -65 1.540000E-19 285.0 -64 1.723000E-19 280.0 -63 1.930000E-19 275.0 -62 2.166000E-19 270.0 -61 2.436000E-19 265.0 -60 2.745000E-19 260.0 -59 3.102000E-19 255.0 -58 3.514000E-19 250.0 -57 3.990000E-19 245.0 -56 4.544000E-19 240.0 -55 5.191000E-19 235.0 -54 5.949000E-19 230.0 -53 6.843000E-19 225.0 -52 7.900000E-19 220.0 -51 9.160000E-19 215.0 -50 1.067000E-18 210.0 -49 1.248000E-18 205.0 -48 1.469000E-18 200.0 -47 1.738000E-18 195.0 -46 2.070000E-18 190.0 -45 2.484000E-18 185.0 -44 3.005000E-18 180.0 -43 3.668000E-18 175.0 -42 4.524000E-18 170.0 -41 5.648000E-18 165.0 -40 7.145000E-18 160.0 -39 9.190000E-18 155.0 -38 1.203000E-17 150.0 -37 1.613000E-17 145.0 -36 2.218000E-17 140.0 -35 3.145000E-17 135.0 -34 4.524000E-17 130.0 -33 7.029000E-17 125.0 -32 1.050000E-16 120.0 -31 1.746557E-16 117.0 -30 2.702110E-16 114.0 -29 4.437202E-16 111.0 -28 7.610383E-16 108.0 -27 1.293213E-15 105.0 -26 2.210853E-15 102.0 -25 3.817811E-15 99.0 -24 6.671386E-15 96.0 -23 1.160819E-14 93.0 -22 2.005094E-14 90.0 -21 3.451152E-14 87.0 -20 5.843234E-14 84.0 -19 9.536099E-14 81.0 -18 1.524484E-13 78.0 -17 2.381860E-13 75.0 -16 3.627261E-13 72.0 -15 5.331580E-13 69.0 -14 7.647683E-13 66.0 -13 1.066035E-12 63.0 -12 1.412197E-12 60.0 -11 1.821996E-12 55.0 -10 4.331663E-13 50.0 - 9 2.818520E-15 45.0 - 8 3.980541E-15 40.0 - 7 5.730739E-15 35.0 - 6 6.926974E-15 30.0 - 5 5.141229E-15 25.0 - 4 1.285060E-15 20.0 - 3 3.894920E-17 15.0 - 2 2.610129E-20 10.0 -1.640000E+00 0.000000E+00 87 -88 1.752000E-20 400.0 -87 1.832000E-20 395.0 -86 1.999000E-20 390.0 -85 2.182000E-20 385.0 -84 2.385000E-20 380.0 -83 2.608000E-20 375.0 -82 2.854000E-20 370.0 -81 3.126000E-20 365.0 -80 3.427000E-20 360.0 -79 3.761000E-20 355.0 -78 4.130000E-20 350.0 -77 4.540000E-20 345.0 -76 4.995000E-20 340.0 -75 5.501000E-20 335.0 -74 6.065000E-20 330.0 -73 6.696000E-20 325.0 -72 7.399000E-20 320.0 -71 8.187000E-20 315.0 -70 9.071000E-20 310.0 -69 1.006000E-19 305.0 -68 1.118000E-19 300.0 -67 1.244000E-19 295.0 -66 1.386000E-19 290.0 -65 1.548000E-19 285.0 -64 1.731000E-19 280.0 -63 1.939000E-19 275.0 -62 2.176000E-19 270.0 -61 2.447000E-19 265.0 -60 2.758000E-19 260.0 -59 3.116000E-19 255.0 -58 3.530000E-19 250.0 -57 4.009000E-19 245.0 -56 4.566000E-19 240.0 -55 5.215000E-19 235.0 -54 5.977000E-19 230.0 -53 6.875000E-19 225.0 -52 7.937000E-19 220.0 -51 9.203000E-19 215.0 -50 1.072000E-18 210.0 -49 1.254000E-18 205.0 -48 1.475000E-18 200.0 -47 1.746000E-18 195.0 -46 2.080000E-18 190.0 -45 2.496000E-18 185.0 -44 3.019000E-18 180.0 -43 3.686000E-18 175.0 -42 4.545000E-18 170.0 -41 5.675000E-18 165.0 -40 7.179000E-18 160.0 -39 9.233000E-18 155.0 -38 1.209000E-17 150.0 -37 1.620000E-17 145.0 -36 2.228000E-17 140.0 -35 3.159000E-17 135.0 -34 4.546000E-17 130.0 -33 7.062000E-17 125.0 -32 1.055000E-16 120.0 -31 1.758006E-16 117.0 -30 2.720129E-16 114.0 -29 4.471197E-16 111.0 -28 7.668143E-16 108.0 -27 1.302173E-15 105.0 -26 2.225768E-15 102.0 -25 3.842629E-15 99.0 -24 6.713591E-15 96.0 -23 1.168248E-14 93.0 -22 2.016529E-14 90.0 -21 3.469911E-14 87.0 -20 5.869338E-14 84.0 -19 9.557889E-14 81.0 -18 1.522869E-13 78.0 -17 2.369240E-13 75.0 -16 3.591513E-13 72.0 -15 5.265722E-13 69.0 -14 7.527855E-13 66.0 -13 1.035536E-12 63.0 -12 1.340638E-12 60.0 -11 1.520856E-12 55.0 -10 8.398222E-14 50.0 - 9 1.881179E-15 45.0 - 8 2.811559E-15 40.0 - 7 3.997595E-15 35.0 - 6 4.749432E-15 30.0 - 5 3.388953E-15 25.0 - 4 7.660302E-16 20.0 - 3 1.792059E-17 15.0 - 2 6.364597E-21 10.0 -1.400000E+00 0.000000E+00 87 -88 1.770000E-20 400.0 -87 1.850000E-20 395.0 -86 2.019000E-20 390.0 -85 2.205000E-20 385.0 -84 2.409000E-20 380.0 -83 2.634000E-20 375.0 -82 2.883000E-20 370.0 -81 3.158000E-20 365.0 -80 3.462000E-20 360.0 -79 3.799000E-20 355.0 -78 4.172000E-20 350.0 -77 4.586000E-20 345.0 -76 5.046000E-20 340.0 -75 5.557000E-20 335.0 -74 6.127000E-20 330.0 -73 6.764000E-20 325.0 -72 7.475000E-20 320.0 -71 8.270000E-20 315.0 -70 9.164000E-20 310.0 -69 1.017000E-19 305.0 -68 1.130000E-19 300.0 -67 1.257000E-19 295.0 -66 1.401000E-19 290.0 -65 1.563000E-19 285.0 -64 1.748000E-19 280.0 -63 1.959000E-19 275.0 -62 2.198000E-19 270.0 -61 2.472000E-19 265.0 -60 2.786000E-19 260.0 -59 3.148000E-19 255.0 -58 3.566000E-19 250.0 -57 4.050000E-19 245.0 -56 4.612000E-19 240.0 -55 5.269000E-19 235.0 -54 6.038000E-19 230.0 -53 6.945000E-19 225.0 -52 8.018000E-19 220.0 -51 9.296000E-19 215.0 -50 1.083000E-18 210.0 -49 1.267000E-18 205.0 -48 1.491000E-18 200.0 -47 1.764000E-18 195.0 -46 2.101000E-18 190.0 -45 2.521000E-18 185.0 -44 3.049000E-18 180.0 -43 3.723000E-18 175.0 -42 4.592000E-18 170.0 -41 5.733000E-18 165.0 -40 7.252000E-18 160.0 -39 9.327000E-18 155.0 -38 1.221000E-17 150.0 -37 1.637000E-17 145.0 -36 2.251000E-17 140.0 -35 3.192000E-17 135.0 -34 4.592000E-17 130.0 -33 7.134000E-17 125.0 -32 1.066000E-16 120.0 -31 1.775980E-16 117.0 -30 2.744109E-16 114.0 -29 4.516260E-16 111.0 -28 7.751521E-16 108.0 -27 1.316614E-15 105.0 -26 2.249640E-15 102.0 -25 3.883887E-15 99.0 -24 6.787089E-15 96.0 -23 1.181157E-14 93.0 -22 2.039344E-14 90.0 -21 3.509224E-14 87.0 -20 5.930688E-14 84.0 -19 9.639030E-14 81.0 -18 1.530923E-13 78.0 -17 2.371851E-13 75.0 -16 3.585189E-13 72.0 -15 5.250045E-13 69.0 -14 7.462980E-13 66.0 -13 1.012819E-12 63.0 -12 1.275156E-12 60.0 -11 1.028853E-12 55.0 -10 9.301965E-15 50.0 - 9 1.358562E-15 45.0 - 8 2.007709E-15 40.0 - 7 2.817593E-15 35.0 - 6 3.289897E-15 30.0 - 5 2.258260E-15 25.0 - 4 4.625561E-16 20.0 - 3 8.344127E-18 15.0 - 2 1.511465E-21 10.0 -1.200000E+00 0.000000E+00 87 -88 1.800000E-20 400.0 -87 1.882000E-20 395.0 -86 2.053000E-20 390.0 -85 2.242000E-20 385.0 -84 2.450000E-20 380.0 -83 2.679000E-20 375.0 -82 2.932000E-20 370.0 -81 3.211000E-20 365.0 -80 3.521000E-20 360.0 -79 3.863000E-20 355.0 -78 4.243000E-20 350.0 -77 4.664000E-20 345.0 -76 5.131000E-20 340.0 -75 5.651000E-20 335.0 -74 6.231000E-20 330.0 -73 6.878000E-20 325.0 -72 7.601000E-20 320.0 -71 8.410000E-20 315.0 -70 9.318000E-20 310.0 -69 1.034000E-19 305.0 -68 1.149000E-19 300.0 -67 1.278000E-19 295.0 -66 1.424000E-19 290.0 -65 1.590000E-19 285.0 -64 1.778000E-19 280.0 -63 1.992000E-19 275.0 -62 2.235000E-19 270.0 -61 2.514000E-19 265.0 -60 2.833000E-19 260.0 -59 3.201000E-19 255.0 -58 3.626000E-19 250.0 -57 4.118000E-19 245.0 -56 4.690000E-19 240.0 -55 5.357000E-19 235.0 -54 6.140000E-19 230.0 -53 7.062000E-19 225.0 -52 8.153000E-19 220.0 -51 9.453000E-19 215.0 -50 1.101000E-18 210.0 -49 1.288000E-18 205.0 -48 1.516000E-18 200.0 -47 1.794000E-18 195.0 -46 2.137000E-18 190.0 -45 2.564000E-18 185.0 -44 3.101000E-18 180.0 -43 3.786000E-18 175.0 -42 4.669000E-18 170.0 -41 5.829000E-18 165.0 -40 7.374000E-18 160.0 -39 9.484000E-18 155.0 -38 1.242000E-17 150.0 -37 1.664000E-17 145.0 -36 2.289000E-17 140.0 -35 3.245000E-17 135.0 -34 4.669000E-17 130.0 -33 7.254000E-17 125.0 -32 1.084000E-16 120.0 -31 1.800960E-16 117.0 -30 2.779008E-16 114.0 -29 4.574761E-16 111.0 -28 7.859625E-16 108.0 -27 1.335588E-15 105.0 -26 2.283581E-15 102.0 -25 3.943340E-15 99.0 -24 6.892031E-15 96.0 -23 1.199185E-14 93.0 -22 2.069972E-14 90.0 -21 3.556034E-14 87.0 -20 5.994319E-14 84.0 -19 9.707943E-14 81.0 -18 1.534581E-13 78.0 -17 2.366492E-13 75.0 -16 3.567332E-13 72.0 -15 5.208268E-13 69.0 -14 7.323514E-13 66.0 -13 9.742379E-13 63.0 -12 1.172620E-12 60.0 -11 4.601688E-13 55.0 -10 1.190335E-15 50.0 - 9 9.926064E-16 45.0 - 8 1.448137E-15 40.0 - 7 2.006426E-15 35.0 - 6 2.300875E-15 30.0 - 5 1.520458E-15 25.0 - 4 2.827998E-16 20.0 - 3 3.936957E-18 15.0 - 2 3.488627E-22 10.0 -1.005000E+00 0.000000E+00 87 -88 1.854000E-20 400.0 -87 1.938000E-20 395.0 -86 2.114000E-20 390.0 -85 2.309000E-20 385.0 -84 2.523000E-20 380.0 -83 2.759000E-20 375.0 -82 3.019000E-20 370.0 -81 3.307000E-20 365.0 -80 3.626000E-20 360.0 -79 3.978000E-20 355.0 -78 4.369000E-20 350.0 -77 4.803000E-20 345.0 -76 5.284000E-20 340.0 -75 5.819000E-20 335.0 -74 6.416000E-20 330.0 -73 7.083000E-20 325.0 -72 7.827000E-20 320.0 -71 8.660000E-20 315.0 -70 9.596000E-20 310.0 -69 1.065000E-19 305.0 -68 1.183000E-19 300.0 -67 1.316000E-19 295.0 -66 1.467000E-19 290.0 -65 1.637000E-19 285.0 -64 1.831000E-19 280.0 -63 2.051000E-19 275.0 -62 2.302000E-19 270.0 -61 2.589000E-19 265.0 -60 2.918000E-19 260.0 -59 3.297000E-19 255.0 -58 3.734000E-19 250.0 -57 4.241000E-19 245.0 -56 4.830000E-19 240.0 -55 5.517000E-19 235.0 -54 6.323000E-19 230.0 -53 7.272000E-19 225.0 -52 8.396000E-19 220.0 -51 9.735000E-19 215.0 -50 1.134000E-18 210.0 -49 1.327000E-18 205.0 -48 1.561000E-18 200.0 -47 1.847000E-18 195.0 -46 2.200000E-18 190.0 -45 2.640000E-18 185.0 -44 3.193000E-18 180.0 -43 3.899000E-18 175.0 -42 4.808000E-18 170.0 -41 6.003000E-18 165.0 -40 7.594000E-18 160.0 -39 9.767000E-18 155.0 -38 1.279000E-17 150.0 -37 1.714000E-17 145.0 -36 2.357000E-17 140.0 -35 3.342000E-17 135.0 -34 4.808000E-17 130.0 -33 7.470000E-17 125.0 -32 1.116000E-16 120.0 -31 1.838909E-16 117.0 -30 2.833881E-16 114.0 -29 4.663094E-16 111.0 -28 8.015635E-16 108.0 -27 1.362625E-15 105.0 -26 2.331178E-15 102.0 -25 4.024992E-15 99.0 -24 7.031941E-15 96.0 -23 1.222219E-14 93.0 -22 2.107025E-14 90.0 -21 3.613376E-14 87.0 -20 6.081681E-14 84.0 -19 9.828245E-14 81.0 -18 1.549374E-13 78.0 -17 2.385734E-13 75.0 -16 3.594556E-13 72.0 -15 5.222617E-13 69.0 -14 7.245053E-13 66.0 -13 9.362156E-13 63.0 -12 1.018409E-12 60.0 -11 8.791160E-14 55.0 -10 5.057598E-16 50.0 - 9 6.946890E-16 45.0 - 8 9.971770E-16 40.0 - 7 1.359669E-15 35.0 - 6 1.526362E-15 30.0 - 5 9.644361E-16 25.0 - 4 1.605942E-16 20.0 - 3 1.649494E-18 15.0 - 2 5.923340E-23 10.0 -8.100001E-01 0.000000E+00 87 -88 1.965000E-20 400.0 -87 2.054000E-20 395.0 -86 2.241000E-20 390.0 -85 2.447000E-20 385.0 -84 2.674000E-20 380.0 -83 2.924000E-20 375.0 -82 3.200000E-20 370.0 -81 3.505000E-20 365.0 -80 3.843000E-20 360.0 -79 4.216000E-20 355.0 -78 4.631000E-20 350.0 -77 5.090000E-20 345.0 -76 5.600000E-20 340.0 -75 6.167000E-20 335.0 -74 6.800000E-20 330.0 -73 7.507000E-20 325.0 -72 8.296000E-20 320.0 -71 9.179000E-20 315.0 -70 1.017000E-19 310.0 -69 1.128000E-19 305.0 -68 1.254000E-19 300.0 -67 1.395000E-19 295.0 -66 1.554000E-19 290.0 -65 1.735000E-19 285.0 -64 1.940000E-19 280.0 -63 2.174000E-19 275.0 -62 2.440000E-19 270.0 -61 2.743000E-19 265.0 -60 3.092000E-19 260.0 -59 3.494000E-19 255.0 -58 3.958000E-19 250.0 -57 4.495000E-19 245.0 -56 5.119000E-19 240.0 -55 5.847000E-19 235.0 -54 6.701000E-19 230.0 -53 7.708000E-19 225.0 -52 8.899000E-19 220.0 -51 1.032000E-18 215.0 -50 1.201000E-18 210.0 -49 1.406000E-18 205.0 -48 1.654000E-18 200.0 -47 1.958000E-18 195.0 -46 2.332000E-18 190.0 -45 2.798000E-18 185.0 -44 3.384000E-18 180.0 -43 4.132000E-18 175.0 -42 5.096000E-18 170.0 -41 6.362000E-18 165.0 -40 8.048000E-18 160.0 -39 1.035000E-17 155.0 -38 1.355000E-17 150.0 -37 1.816000E-17 145.0 -36 2.498000E-17 140.0 -35 3.542000E-17 135.0 -34 5.096000E-17 130.0 -33 7.917000E-17 125.0 -32 1.183000E-16 120.0 -31 1.901442E-16 117.0 -30 2.932231E-16 114.0 -29 4.815727E-16 111.0 -28 8.275097E-16 108.0 -27 1.407055E-15 105.0 -26 2.406545E-15 102.0 -25 4.154165E-15 99.0 -24 7.258542E-15 96.0 -23 1.263006E-14 93.0 -22 2.178642E-14 90.0 -21 3.737072E-14 87.0 -20 6.269537E-14 84.0 -19 1.007152E-13 81.0 -18 1.577099E-13 78.0 -17 2.416493E-13 75.0 -16 3.621333E-13 72.0 -15 5.185048E-13 69.0 -14 6.987551E-13 66.0 -13 8.353844E-13 63.0 -12 6.452138E-13 60.0 -11 3.279640E-15 55.0 -10 3.326990E-16 50.0 - 9 4.528647E-16 45.0 - 8 6.366045E-16 40.0 - 7 8.499850E-16 35.0 - 6 9.279621E-16 30.0 - 5 5.549138E-16 25.0 - 4 8.069522E-17 20.0 - 3 5.694428E-19 15.0 - 2 5.882410E-24 10.0 -6.600000E-01 0.000000E+00 87 -88 2.080000E-20 400.0 -87 2.174000E-20 395.0 -86 2.373000E-20 390.0 -85 2.591000E-20 385.0 -84 2.831000E-20 380.0 -83 3.096000E-20 375.0 -82 3.388000E-20 370.0 -81 3.711000E-20 365.0 -80 4.068000E-20 360.0 -79 4.464000E-20 355.0 -78 4.903000E-20 350.0 -77 5.389000E-20 345.0 -76 5.929000E-20 340.0 -75 6.530000E-20 335.0 -74 7.200000E-20 330.0 -73 7.948000E-20 325.0 -72 8.783000E-20 320.0 -71 9.718000E-20 315.0 -70 1.077000E-19 310.0 -69 1.195000E-19 305.0 -68 1.327000E-19 300.0 -67 1.477000E-19 295.0 -66 1.646000E-19 290.0 -65 1.837000E-19 285.0 -64 2.054000E-19 280.0 -63 2.301000E-19 275.0 -62 2.583000E-19 270.0 -61 2.905000E-19 265.0 -60 3.274000E-19 260.0 -59 3.699000E-19 255.0 -58 4.190000E-19 250.0 -57 4.759000E-19 245.0 -56 5.420000E-19 240.0 -55 6.191000E-19 235.0 -54 7.095000E-19 230.0 -53 8.161000E-19 225.0 -52 9.422000E-19 220.0 -51 1.092000E-18 215.0 -50 1.272000E-18 210.0 -49 1.489000E-18 205.0 -48 1.751000E-18 200.0 -47 2.073000E-18 195.0 -46 2.469000E-18 190.0 -45 2.963000E-18 185.0 -44 3.583000E-18 180.0 -43 4.375000E-18 175.0 -42 5.395000E-18 170.0 -41 6.736000E-18 165.0 -40 8.521000E-18 160.0 -39 1.096000E-17 155.0 -38 1.435000E-17 150.0 -37 1.923000E-17 145.0 -36 2.645000E-17 140.0 -35 3.750000E-17 135.0 -34 5.396000E-17 130.0 -33 8.382000E-17 125.0 -32 1.252000E-16 120.0 -31 1.978423E-16 117.0 -30 3.059613E-16 114.0 -29 5.023276E-16 111.0 -28 8.626624E-16 108.0 -27 1.466400E-15 105.0 -26 2.509208E-15 102.0 -25 4.336084E-15 99.0 -24 7.583403E-15 96.0 -23 1.318563E-14 93.0 -22 2.266879E-14 90.0 -21 3.867781E-14 87.0 -20 6.461932E-14 84.0 -19 1.035842E-13 81.0 -18 1.622836E-13 78.0 -17 2.487348E-13 75.0 -16 3.702612E-13 72.0 -15 5.205495E-13 69.0 -14 6.719343E-13 66.0 -13 6.896758E-13 63.0 -12 1.660493E-13 60.0 -11 2.143995E-16 55.0 -10 2.274894E-16 50.0 - 9 3.037667E-16 45.0 - 8 4.178306E-16 40.0 - 7 5.461683E-16 35.0 - 6 5.796737E-16 30.0 - 5 3.282234E-16 25.0 - 4 4.199329E-17 20.0 - 3 2.064456E-19 15.0 - 2 5.275467E-25 10.0 -5.650000E-01 0.000000E+00 87 -88 2.161000E-20 400.0 -87 2.259000E-20 395.0 -86 2.465000E-20 390.0 -85 2.692000E-20 385.0 -84 2.941000E-20 380.0 -83 3.216000E-20 375.0 -82 3.520000E-20 370.0 -81 3.856000E-20 365.0 -80 4.227000E-20 360.0 -79 4.638000E-20 355.0 -78 5.094000E-20 350.0 -77 5.599000E-20 345.0 -76 6.160000E-20 340.0 -75 6.784000E-20 335.0 -74 7.481000E-20 330.0 -73 8.258000E-20 325.0 -72 9.126000E-20 320.0 -71 1.010000E-19 315.0 -70 1.119000E-19 310.0 -69 1.241000E-19 305.0 -68 1.379000E-19 300.0 -67 1.535000E-19 295.0 -66 1.710000E-19 290.0 -65 1.909000E-19 285.0 -64 2.134000E-19 280.0 -63 2.391000E-19 275.0 -62 2.684000E-19 270.0 -61 3.018000E-19 265.0 -60 3.402000E-19 260.0 -59 3.844000E-19 255.0 -58 4.354000E-19 250.0 -57 4.945000E-19 245.0 -56 5.631000E-19 240.0 -55 6.432000E-19 235.0 -54 7.372000E-19 230.0 -53 8.479000E-19 225.0 -52 9.789000E-19 220.0 -51 1.135000E-18 215.0 -50 1.322000E-18 210.0 -49 1.547000E-18 205.0 -48 1.820000E-18 200.0 -47 2.154000E-18 195.0 -46 2.565000E-18 190.0 -45 3.078000E-18 185.0 -44 3.723000E-18 180.0 -43 4.545000E-18 175.0 -42 5.606000E-18 170.0 -41 6.999000E-18 165.0 -40 8.853000E-18 160.0 -39 1.139000E-17 155.0 -38 1.491000E-17 150.0 -37 1.998000E-17 145.0 -36 2.748000E-17 140.0 -35 3.896000E-17 135.0 -34 5.606000E-17 130.0 -33 8.709000E-17 125.0 -32 1.301000E-16 120.0 -31 2.050361E-16 117.0 -30 3.176601E-16 114.0 -29 5.222553E-16 111.0 -28 8.970099E-16 108.0 -27 1.525270E-15 105.0 -26 2.610614E-15 102.0 -25 4.510660E-15 99.0 -24 7.873795E-15 96.0 -23 1.365523E-14 93.0 -22 2.346511E-14 90.0 -21 4.009551E-14 87.0 -20 6.692919E-14 84.0 -19 1.067488E-13 81.0 -18 1.663570E-13 78.0 -17 2.534468E-13 75.0 -16 3.730003E-13 72.0 -15 5.123290E-13 69.0 -14 6.121827E-13 66.0 -13 4.113142E-13 63.0 -12 2.475574E-14 60.0 -11 1.426899E-16 55.0 -10 1.713601E-16 50.0 - 9 2.253119E-16 45.0 - 8 3.046437E-16 40.0 - 7 3.913540E-16 35.0 - 6 4.058817E-16 30.0 - 5 2.201769E-16 25.0 - 4 2.553712E-17 20.0 - 3 9.519198E-20 15.0 - 2 2.231000E-25 10.0 -4.750000E-01 0.000000E+00 86 -88 2.261000E-20 400.0 -87 2.364000E-20 395.0 -86 2.579000E-20 390.0 -85 2.816000E-20 385.0 -84 3.077000E-20 380.0 -83 3.365000E-20 375.0 -82 3.683000E-20 370.0 -81 4.034000E-20 365.0 -80 4.423000E-20 360.0 -79 4.853000E-20 355.0 -78 5.329000E-20 350.0 -77 5.858000E-20 345.0 -76 6.445000E-20 340.0 -75 7.098000E-20 335.0 -74 7.827000E-20 330.0 -73 8.640000E-20 325.0 -72 9.548000E-20 320.0 -71 1.056000E-19 315.0 -70 1.171000E-19 310.0 -69 1.299000E-19 305.0 -68 1.443000E-19 300.0 -67 1.606000E-19 295.0 -66 1.789000E-19 290.0 -65 1.997000E-19 285.0 -64 2.233000E-19 280.0 -63 2.502000E-19 275.0 -62 2.808000E-19 270.0 -61 3.158000E-19 265.0 -60 3.559000E-19 260.0 -59 4.021000E-19 255.0 -58 4.555000E-19 250.0 -57 5.173000E-19 245.0 -56 5.891000E-19 240.0 -55 6.730000E-19 235.0 -54 7.713000E-19 230.0 -53 8.871000E-19 225.0 -52 1.024000E-18 220.0 -51 1.187000E-18 215.0 -50 1.383000E-18 210.0 -49 1.618000E-18 205.0 -48 1.904000E-18 200.0 -47 2.253000E-18 195.0 -46 2.684000E-18 190.0 -45 3.221000E-18 185.0 -44 3.895000E-18 180.0 -43 4.756000E-18 175.0 -42 5.865000E-18 170.0 -41 7.322000E-18 165.0 -40 9.263000E-18 160.0 -39 1.191000E-17 155.0 -38 1.560000E-17 150.0 -37 2.091000E-17 145.0 -36 2.875000E-17 140.0 -35 4.077000E-17 135.0 -34 5.865000E-17 130.0 -33 9.112000E-17 125.0 -32 1.361000E-16 120.0 -31 2.152202E-16 117.0 -30 3.334537E-16 114.0 -29 5.489977E-16 111.0 -28 9.432912E-16 108.0 -27 1.603802E-15 105.0 -26 2.743117E-15 102.0 -25 4.731972E-15 99.0 -24 8.259978E-15 96.0 -23 1.435244E-14 93.0 -22 2.468420E-14 90.0 -21 4.195647E-14 87.0 -20 6.952077E-14 84.0 -19 1.106779E-13 81.0 -18 1.729720E-13 78.0 -17 2.629384E-13 75.0 -16 3.811143E-13 72.0 -15 5.019932E-13 69.0 -14 5.122661E-13 66.0 -13 1.017116E-13 63.0 -12 1.087145E-15 60.0 -11 1.055920E-16 55.0 -10 1.256751E-16 50.0 - 9 1.620969E-16 45.0 - 8 2.147858E-16 40.0 - 7 2.701773E-16 35.0 - 6 2.724940E-16 30.0 - 5 1.407195E-16 25.0 - 4 1.459683E-17 20.0 - 3 3.982106E-20 15.0 -3.850000E-01 0.000000E+00 86 -88 2.413000E-20 400.0 -87 2.523000E-20 395.0 -86 2.752000E-20 390.0 -85 3.005000E-20 385.0 -84 3.284000E-20 380.0 -83 3.591000E-20 375.0 -82 3.931000E-20 370.0 -81 4.305000E-20 365.0 -80 4.720000E-20 360.0 -79 5.179000E-20 355.0 -78 5.688000E-20 350.0 -77 6.253000E-20 345.0 -76 6.879000E-20 340.0 -75 7.576000E-20 335.0 -74 8.353000E-20 330.0 -73 9.221000E-20 325.0 -72 1.019000E-19 320.0 -71 1.127000E-19 315.0 -70 1.249000E-19 310.0 -69 1.386000E-19 305.0 -68 1.540000E-19 300.0 -67 1.714000E-19 295.0 -66 1.909000E-19 290.0 -65 2.131000E-19 285.0 -64 2.383000E-19 280.0 -63 2.670000E-19 275.0 -62 2.997000E-19 270.0 -61 3.370000E-19 265.0 -60 3.799000E-19 260.0 -59 4.292000E-19 255.0 -58 4.861000E-19 250.0 -57 5.521000E-19 245.0 -56 6.288000E-19 240.0 -55 7.183000E-19 235.0 -54 8.232000E-19 230.0 -53 9.468000E-19 225.0 -52 1.093000E-18 220.0 -51 1.267000E-18 215.0 -50 1.476000E-18 210.0 -49 1.727000E-18 205.0 -48 2.032000E-18 200.0 -47 2.405000E-18 195.0 -46 2.864000E-18 190.0 -45 3.437000E-18 185.0 -44 4.157000E-18 180.0 -43 5.076000E-18 175.0 -42 6.259000E-18 170.0 -41 7.815000E-18 165.0 -40 9.886000E-18 160.0 -39 1.272000E-17 155.0 -38 1.665000E-17 150.0 -37 2.231000E-17 145.0 -36 3.068000E-17 140.0 -35 4.351000E-17 135.0 -34 6.259000E-17 130.0 -33 9.724000E-17 125.0 -32 1.453000E-16 120.0 -31 2.312967E-16 117.0 -30 3.575672E-16 114.0 -29 5.887001E-16 111.0 -28 1.011771E-15 108.0 -27 1.720121E-15 105.0 -26 2.942599E-15 102.0 -25 5.086854E-15 99.0 -24 8.890647E-15 96.0 -23 1.539344E-14 93.0 -22 2.631752E-14 90.0 -21 4.468560E-14 87.0 -20 7.407546E-14 84.0 -19 1.174937E-13 81.0 -18 1.818892E-13 78.0 -17 2.721298E-13 75.0 -16 3.815018E-13 72.0 -15 4.442453E-13 69.0 -14 1.877198E-13 66.0 -13 4.110350E-15 63.0 -12 7.148337E-17 60.0 -11 7.417513E-17 55.0 -10 8.683126E-17 50.0 - 9 1.094203E-16 45.0 - 8 1.411660E-16 40.0 - 7 1.727421E-16 35.0 - 6 1.678616E-16 30.0 - 5 8.131806E-17 25.0 - 4 7.344132E-18 20.0 - 3 1.364823E-20 15.0 -3.200000E-01 0.000000E+00 86 -88 2.605000E-20 400.0 -87 2.723000E-20 395.0 -86 2.971000E-20 390.0 -85 3.244000E-20 385.0 -84 3.545000E-20 380.0 -83 3.877000E-20 375.0 -82 4.243000E-20 370.0 -81 4.647000E-20 365.0 -80 5.095000E-20 360.0 -79 5.591000E-20 355.0 -78 6.140000E-20 350.0 -77 6.749000E-20 345.0 -76 7.425000E-20 340.0 -75 8.177000E-20 335.0 -74 9.017000E-20 330.0 -73 9.953000E-20 325.0 -72 1.100000E-19 320.0 -71 1.217000E-19 315.0 -70 1.348000E-19 310.0 -69 1.496000E-19 305.0 -68 1.662000E-19 300.0 -67 1.850000E-19 295.0 -66 2.061000E-19 290.0 -65 2.301000E-19 285.0 -64 2.573000E-19 280.0 -63 2.882000E-19 275.0 -62 3.235000E-19 270.0 -61 3.638000E-19 265.0 -60 4.100000E-19 260.0 -59 4.633000E-19 255.0 -58 5.248000E-19 250.0 -57 5.960000E-19 245.0 -56 6.787000E-19 240.0 -55 7.753000E-19 235.0 -54 8.885000E-19 230.0 -53 1.022000E-18 225.0 -52 1.180000E-18 220.0 -51 1.368000E-18 215.0 -50 1.593000E-18 210.0 -49 1.864000E-18 205.0 -48 2.193000E-18 200.0 -47 2.596000E-18 195.0 -46 3.092000E-18 190.0 -45 3.710000E-18 185.0 -44 4.487000E-18 180.0 -43 5.479000E-18 175.0 -42 6.757000E-18 170.0 -41 8.436000E-18 165.0 -40 1.067000E-17 160.0 -39 1.372000E-17 155.0 -38 1.797000E-17 150.0 -37 2.408000E-17 145.0 -36 3.312000E-17 140.0 -35 4.696000E-17 135.0 -34 6.756000E-17 130.0 -33 1.050000E-16 125.0 -32 1.568000E-16 120.0 -31 2.494312E-16 117.0 -30 3.848175E-16 114.0 -29 6.330036E-16 111.0 -28 1.088402E-15 108.0 -27 1.852303E-15 105.0 -26 3.172705E-15 102.0 -25 5.478374E-15 99.0 -24 9.535304E-15 96.0 -23 1.650438E-14 93.0 -22 2.825021E-14 90.0 -21 4.764109E-14 87.0 -20 7.851993E-14 84.0 -19 1.249655E-13 81.0 -18 1.926021E-13 78.0 -17 2.809229E-13 75.0 -16 3.656851E-13 72.0 -15 3.013417E-13 69.0 -14 2.081656E-14 66.0 -13 9.548027E-17 63.0 -12 5.000749E-17 60.0 -11 5.472703E-17 55.0 -10 6.304223E-17 50.0 - 9 7.765821E-17 45.0 - 8 9.779722E-17 40.0 - 7 1.164973E-16 35.0 - 6 1.091230E-16 30.0 - 5 4.974523E-17 25.0 - 4 3.952278E-18 20.0 - 3 5.195298E-21 15.0 -2.905000E-01 0.000000E+00 86 -88 2.722000E-20 400.0 -87 2.846000E-20 395.0 -86 3.105000E-20 390.0 -85 3.390000E-20 385.0 -84 3.705000E-20 380.0 -83 4.051000E-20 375.0 -82 4.434000E-20 370.0 -81 4.857000E-20 365.0 -80 5.325000E-20 360.0 -79 5.843000E-20 355.0 -78 6.417000E-20 350.0 -77 7.053000E-20 345.0 -76 7.760000E-20 340.0 -75 8.546000E-20 335.0 -74 9.423000E-20 330.0 -73 1.040000E-19 325.0 -72 1.150000E-19 320.0 -71 1.272000E-19 315.0 -70 1.409000E-19 310.0 -69 1.564000E-19 305.0 -68 1.737000E-19 300.0 -67 1.933000E-19 295.0 -66 2.154000E-19 290.0 -65 2.404000E-19 285.0 -64 2.689000E-19 280.0 -63 3.012000E-19 275.0 -62 3.380000E-19 270.0 -61 3.802000E-19 265.0 -60 4.285000E-19 260.0 -59 4.841000E-19 255.0 -58 5.484000E-19 250.0 -57 6.228000E-19 245.0 -56 7.093000E-19 240.0 -55 8.102000E-19 235.0 -54 9.286000E-19 230.0 -53 1.068000E-18 225.0 -52 1.233000E-18 220.0 -51 1.430000E-18 215.0 -50 1.665000E-18 210.0 -49 1.948000E-18 205.0 -48 2.292000E-18 200.0 -47 2.713000E-18 195.0 -46 3.231000E-18 190.0 -45 3.877000E-18 185.0 -44 4.690000E-18 180.0 -43 5.726000E-18 175.0 -42 7.061000E-18 170.0 -41 8.816000E-18 165.0 -40 1.115000E-17 160.0 -39 1.434000E-17 155.0 -38 1.878000E-17 150.0 -37 2.517000E-17 145.0 -36 3.461000E-17 140.0 -35 4.908000E-17 135.0 -34 7.061000E-17 130.0 -33 1.097000E-16 125.0 -32 1.638000E-16 120.0 -31 2.603761E-16 117.0 -30 4.017939E-16 114.0 -29 6.606943E-16 111.0 -28 1.136310E-15 108.0 -27 1.934206E-15 105.0 -26 3.310745E-15 102.0 -25 5.705639E-15 99.0 -24 9.941599E-15 96.0 -23 1.721435E-14 93.0 -22 2.933167E-14 90.0 -21 4.937738E-14 87.0 -20 8.168064E-14 84.0 -19 1.292873E-13 81.0 -18 1.969053E-13 78.0 -17 2.826404E-13 75.0 -16 3.456861E-13 72.0 -15 1.678454E-13 69.0 -14 3.574919E-15 66.0 -13 4.416281E-17 63.0 -12 4.280625E-17 60.0 -11 4.676784E-17 55.0 -10 5.337937E-17 50.0 - 9 6.497759E-17 45.0 - 8 8.073207E-17 40.0 - 7 9.467883E-17 35.0 - 6 8.687032E-17 30.0 - 5 3.826631E-17 25.0 - 4 2.834998E-18 20.0 - 3 3.095242E-21 15.0 -2.555000E-01 0.000000E+00 86 -88 2.898000E-20 400.0 -87 3.029000E-20 395.0 -86 3.305000E-20 390.0 -85 3.609000E-20 385.0 -84 3.944000E-20 380.0 -83 4.313000E-20 375.0 -82 4.720000E-20 370.0 -81 5.170000E-20 365.0 -80 5.668000E-20 360.0 -79 6.219000E-20 355.0 -78 6.830000E-20 350.0 -77 7.508000E-20 345.0 -76 8.260000E-20 340.0 -75 9.097000E-20 335.0 -74 1.003000E-19 330.0 -73 1.107000E-19 325.0 -72 1.224000E-19 320.0 -71 1.354000E-19 315.0 -70 1.500000E-19 310.0 -69 1.664000E-19 305.0 -68 1.849000E-19 300.0 -67 2.058000E-19 295.0 -66 2.293000E-19 290.0 -65 2.559000E-19 285.0 -64 2.862000E-19 280.0 -63 3.206000E-19 275.0 -62 3.598000E-19 270.0 -61 4.047000E-19 265.0 -60 4.561000E-19 260.0 -59 5.154000E-19 255.0 -58 5.838000E-19 250.0 -57 6.630000E-19 245.0 -56 7.551000E-19 240.0 -55 8.625000E-19 235.0 -54 9.885000E-19 230.0 -53 1.137000E-18 225.0 -52 1.313000E-18 220.0 -51 1.522000E-18 215.0 -50 1.772000E-18 210.0 -49 2.074000E-18 205.0 -48 2.440000E-18 200.0 -47 2.888000E-18 195.0 -46 3.440000E-18 190.0 -45 4.128000E-18 185.0 -44 4.992000E-18 180.0 -43 6.095000E-18 175.0 -42 7.517000E-18 170.0 -41 9.385000E-18 165.0 -40 1.187000E-17 160.0 -39 1.527000E-17 155.0 -38 1.999000E-17 150.0 -37 2.679000E-17 145.0 -36 3.684000E-17 140.0 -35 5.224000E-17 135.0 -34 7.516000E-17 130.0 -33 1.168000E-16 125.0 -32 1.744000E-16 120.0 -31 2.762251E-16 117.0 -30 4.267746E-16 114.0 -29 7.017407E-16 111.0 -28 1.206724E-15 108.0 -27 2.052687E-15 105.0 -26 3.507545E-15 102.0 -25 6.049036E-15 99.0 -24 1.055458E-14 96.0 -23 1.820523E-14 93.0 -22 3.093549E-14 90.0 -21 5.221550E-14 87.0 -20 8.582530E-14 84.0 -19 1.352102E-13 81.0 -18 2.050801E-13 78.0 -17 2.853213E-13 75.0 -16 2.984068E-13 72.0 -15 4.314013E-14 69.0 -14 1.945122E-16 66.0 -13 3.418999E-17 63.0 -12 3.498375E-17 60.0 -11 3.804857E-17 55.0 -10 4.289634E-17 50.0 - 9 5.136703E-17 45.0 - 8 6.261233E-17 40.0 - 7 7.186980E-17 35.0 - 6 6.401357E-17 30.0 - 5 2.685901E-17 25.0 - 4 1.805738E-18 20.0 - 3 1.531820E-21 15.0 -2.235000E-01 0.000000E+00 86 -88 3.107000E-20 400.0 -87 3.248000E-20 395.0 -86 3.544000E-20 390.0 -85 3.869000E-20 385.0 -84 4.228000E-20 380.0 -83 4.624000E-20 375.0 -82 5.061000E-20 370.0 -81 5.543000E-20 365.0 -80 6.077000E-20 360.0 -79 6.668000E-20 355.0 -78 7.323000E-20 350.0 -77 8.050000E-20 345.0 -76 8.856000E-20 340.0 -75 9.753000E-20 335.0 -74 1.075000E-19 330.0 -73 1.187000E-19 325.0 -72 1.312000E-19 320.0 -71 1.452000E-19 315.0 -70 1.608000E-19 310.0 -69 1.785000E-19 305.0 -68 1.983000E-19 300.0 -67 2.206000E-19 295.0 -66 2.458000E-19 290.0 -65 2.744000E-19 285.0 -64 3.068000E-19 280.0 -63 3.438000E-19 275.0 -62 3.858000E-19 270.0 -61 4.339000E-19 265.0 -60 4.890000E-19 260.0 -59 5.525000E-19 255.0 -58 6.259000E-19 250.0 -57 7.108000E-19 245.0 -56 8.095000E-19 240.0 -55 9.247000E-19 235.0 -54 1.060000E-18 230.0 -53 1.219000E-18 225.0 -52 1.407000E-18 220.0 -51 1.632000E-18 215.0 -50 1.900000E-18 210.0 -49 2.224000E-18 205.0 -48 2.616000E-18 200.0 -47 3.096000E-18 195.0 -46 3.688000E-18 190.0 -45 4.425000E-18 185.0 -44 5.352000E-18 180.0 -43 6.534000E-18 175.0 -42 8.059000E-18 170.0 -41 1.006000E-17 165.0 -40 1.273000E-17 160.0 -39 1.637000E-17 155.0 -38 2.143000E-17 150.0 -37 2.872000E-17 145.0 -36 3.950000E-17 140.0 -35 5.601000E-17 135.0 -34 8.058000E-17 130.0 -33 1.252000E-16 125.0 -32 1.870000E-16 120.0 -31 2.948680E-16 117.0 -30 4.564649E-16 114.0 -29 7.508090E-16 111.0 -28 1.290156E-15 108.0 -27 2.192512E-15 105.0 -26 3.748398E-15 102.0 -25 6.475473E-15 99.0 -24 1.125876E-14 96.0 -23 1.938103E-14 93.0 -22 3.296516E-14 90.0 -21 5.525586E-14 87.0 -20 9.100733E-14 84.0 -19 1.428302E-13 81.0 -18 2.104966E-13 78.0 -17 2.697389E-13 75.0 -16 1.695247E-13 72.0 -15 4.522194E-15 69.0 -14 3.016704E-17 66.0 -13 2.766997E-17 63.0 -12 2.842000E-17 60.0 -11 3.070914E-17 55.0 -10 3.414777E-17 50.0 - 9 4.016014E-17 45.0 - 8 4.797586E-17 40.0 - 7 5.372499E-17 35.0 - 6 4.625103E-17 30.0 - 5 1.836604E-17 25.0 - 4 1.109132E-18 20.0 - 3 7.159857E-22 15.0 -1.945000E-01 0.000000E+00 86 -88 3.354000E-20 400.0 -87 3.506000E-20 395.0 -86 3.826000E-20 390.0 -85 4.177000E-20 385.0 -84 4.564000E-20 380.0 -83 4.992000E-20 375.0 -82 5.463000E-20 370.0 -81 5.984000E-20 365.0 -80 6.560000E-20 360.0 -79 7.198000E-20 355.0 -78 7.905000E-20 350.0 -77 8.690000E-20 345.0 -76 9.561000E-20 340.0 -75 1.053000E-19 335.0 -74 1.161000E-19 330.0 -73 1.282000E-19 325.0 -72 1.416000E-19 320.0 -71 1.567000E-19 315.0 -70 1.736000E-19 310.0 -69 1.926000E-19 305.0 -68 2.140000E-19 300.0 -67 2.382000E-19 295.0 -66 2.654000E-19 290.0 -65 2.962000E-19 285.0 -64 3.312000E-19 280.0 -63 3.711000E-19 275.0 -62 4.165000E-19 270.0 -61 4.684000E-19 265.0 -60 5.279000E-19 260.0 -59 5.965000E-19 255.0 -58 6.757000E-19 250.0 -57 7.674000E-19 245.0 -56 8.739000E-19 240.0 -55 9.983000E-19 235.0 -54 1.144000E-18 230.0 -53 1.316000E-18 225.0 -52 1.519000E-18 220.0 -51 1.761000E-18 215.0 -50 2.051000E-18 210.0 -49 2.400000E-18 205.0 -48 2.824000E-18 200.0 -47 3.342000E-18 195.0 -46 3.981000E-18 190.0 -45 4.777000E-18 185.0 -44 5.778000E-18 180.0 -43 7.054000E-18 175.0 -42 8.699000E-18 170.0 -41 1.086000E-17 165.0 -40 1.374000E-17 160.0 -39 1.767000E-17 155.0 -38 2.314000E-17 150.0 -37 3.101000E-17 145.0 -36 4.264000E-17 140.0 -35 6.046000E-17 135.0 -34 8.698000E-17 130.0 -33 1.351000E-16 125.0 -32 2.018000E-16 120.0 -31 3.170457E-16 117.0 -30 4.911895E-16 114.0 -29 8.083570E-16 111.0 -28 1.389030E-15 108.0 -27 2.362589E-15 105.0 -26 4.044967E-15 102.0 -25 6.967863E-15 99.0 -24 1.209618E-14 96.0 -23 2.082571E-14 93.0 -22 3.518296E-14 90.0 -21 5.916358E-14 87.0 -20 9.696292E-14 84.0 -19 1.495674E-13 81.0 -18 2.148376E-13 78.0 -17 2.399559E-13 75.0 -16 4.350316E-14 72.0 -15 1.698665E-16 69.0 -14 2.212998E-17 66.0 -13 2.232996E-17 63.0 -12 2.295250E-17 60.0 -11 2.459954E-17 55.0 -10 2.694884E-17 50.0 - 9 3.110716E-17 45.0 - 8 3.632296E-17 40.0 - 7 3.955470E-17 35.0 - 6 3.273432E-17 30.0 - 5 1.220623E-17 25.0 - 4 6.544826E-19 20.0 - 3 3.133984E-22 15.0 -1.680000E-01 0.000000E+00 86 -88 3.649000E-20 400.0 -87 3.814000E-20 395.0 -86 4.162000E-20 390.0 -85 4.544000E-20 385.0 -84 4.966000E-20 380.0 -83 5.430000E-20 375.0 -82 5.943000E-20 370.0 -81 6.510000E-20 365.0 -80 7.137000E-20 360.0 -79 7.831000E-20 355.0 -78 8.601000E-20 350.0 -77 9.454000E-20 345.0 -76 1.040000E-19 340.0 -75 1.145000E-19 335.0 -74 1.263000E-19 330.0 -73 1.394000E-19 325.0 -72 1.541000E-19 320.0 -71 1.705000E-19 315.0 -70 1.889000E-19 310.0 -69 2.096000E-19 305.0 -68 2.329000E-19 300.0 -67 2.591000E-19 295.0 -66 2.887000E-19 290.0 -65 3.223000E-19 285.0 -64 3.604000E-19 280.0 -63 4.037000E-19 275.0 -62 4.531000E-19 270.0 -61 5.096000E-19 265.0 -60 5.743000E-19 260.0 -59 6.489000E-19 255.0 -58 7.351000E-19 250.0 -57 8.348000E-19 245.0 -56 9.507000E-19 240.0 -55 1.086000E-18 235.0 -54 1.245000E-18 230.0 -53 1.432000E-18 225.0 -52 1.653000E-18 220.0 -51 1.916000E-18 215.0 -50 2.232000E-18 210.0 -49 2.611000E-18 205.0 -48 3.072000E-18 200.0 -47 3.636000E-18 195.0 -46 4.331000E-18 190.0 -45 5.197000E-18 185.0 -44 6.286000E-18 180.0 -43 7.674000E-18 175.0 -42 9.464000E-18 170.0 -41 1.182000E-17 165.0 -40 1.495000E-17 160.0 -39 1.922000E-17 155.0 -38 2.517000E-17 150.0 -37 3.373000E-17 145.0 -36 4.639000E-17 140.0 -35 6.577000E-17 135.0 -34 9.462000E-17 130.0 -33 1.470000E-16 125.0 -32 2.195000E-16 120.0 -31 3.445033E-16 117.0 -30 5.331759E-16 114.0 -29 8.779220E-16 111.0 -28 1.510248E-15 108.0 -27 2.571827E-15 105.0 -26 4.393826E-15 102.0 -25 7.557811E-15 99.0 -24 1.312554E-14 96.0 -23 2.245850E-14 93.0 -22 3.802744E-14 90.0 -21 6.361681E-14 87.0 -20 1.037320E-13 84.0 -19 1.575075E-13 81.0 -18 2.076922E-13 78.0 -17 1.412328E-13 75.0 -16 3.540134E-15 72.0 -15 1.901476E-17 69.0 -14 1.760000E-17 66.0 -13 1.787996E-17 63.0 -12 1.835874E-17 60.0 -11 1.947477E-17 55.0 -10 2.098435E-17 50.0 - 9 2.372858E-17 45.0 - 8 2.701422E-17 40.0 - 7 2.847411E-17 35.0 - 6 2.249601E-17 30.0 - 5 7.789645E-18 25.0 - 4 3.638415E-19 20.0 - 3 1.247027E-22 15.0 -1.445000E-01 0.000000E+00 86 -88 3.997000E-20 400.0 -87 4.178000E-20 395.0 -86 4.559000E-20 390.0 -85 4.978000E-20 385.0 -84 5.440000E-20 380.0 -83 5.949000E-20 375.0 -82 6.510000E-20 370.0 -81 7.131000E-20 365.0 -80 7.818000E-20 360.0 -79 8.579000E-20 355.0 -78 9.421000E-20 350.0 -77 1.036000E-19 345.0 -76 1.139000E-19 340.0 -75 1.255000E-19 335.0 -74 1.384000E-19 330.0 -73 1.527000E-19 325.0 -72 1.688000E-19 320.0 -71 1.867000E-19 315.0 -70 2.069000E-19 310.0 -69 2.296000E-19 305.0 -68 2.551000E-19 300.0 -67 2.838000E-19 295.0 -66 3.163000E-19 290.0 -65 3.530000E-19 285.0 -64 3.948000E-19 280.0 -63 4.423000E-19 275.0 -62 4.963000E-19 270.0 -61 5.582000E-19 265.0 -60 6.292000E-19 260.0 -59 7.109000E-19 255.0 -58 8.052000E-19 250.0 -57 9.145000E-19 245.0 -56 1.041000E-18 240.0 -55 1.190000E-18 235.0 -54 1.363000E-18 230.0 -53 1.568000E-18 225.0 -52 1.811000E-18 220.0 -51 2.099000E-18 215.0 -50 2.444000E-18 210.0 -49 2.861000E-18 205.0 -48 3.366000E-18 200.0 -47 3.983000E-18 195.0 -46 4.744000E-18 190.0 -45 5.693000E-18 185.0 -44 6.885000E-18 180.0 -43 8.406000E-18 175.0 -42 1.037000E-17 170.0 -41 1.294000E-17 165.0 -40 1.637000E-17 160.0 -39 2.106000E-17 155.0 -38 2.757000E-17 150.0 -37 3.695000E-17 145.0 -36 5.081000E-17 140.0 -35 7.204000E-17 135.0 -34 1.036000E-16 130.0 -33 1.610000E-16 125.0 -32 2.404000E-16 120.0 -31 3.780616E-16 117.0 -30 5.845393E-16 114.0 -29 9.627020E-16 111.0 -28 1.656557E-15 108.0 -27 2.815165E-15 105.0 -26 4.805390E-15 102.0 -25 8.272188E-15 99.0 -24 1.428873E-14 96.0 -23 2.446549E-14 93.0 -22 4.120550E-14 90.0 -21 6.901504E-14 87.0 -20 1.108046E-13 84.0 -19 1.617065E-13 81.0 -18 1.834738E-13 78.0 -17 3.142668E-14 75.0 -16 8.085496E-17 72.0 -15 1.401496E-17 69.0 -14 1.399500E-17 66.0 -13 1.425498E-17 63.0 -12 1.459499E-17 60.0 -11 1.529992E-17 55.0 -10 1.620975E-17 50.0 - 9 1.790937E-17 45.0 - 8 1.982482E-17 40.0 - 7 2.012845E-17 35.0 - 6 1.506751E-17 30.0 - 5 4.783550E-18 25.0 - 4 1.909653E-19 20.0 - 3 4.496495E-23 15.0 -1.240000E-01 0.000000E+00 86 -88 4.403000E-20 400.0 -87 4.603000E-20 395.0 -86 5.023000E-20 390.0 -85 5.484000E-20 385.0 -84 5.993000E-20 380.0 -83 6.554000E-20 375.0 -82 7.173000E-20 370.0 -81 7.856000E-20 365.0 -80 8.613000E-20 360.0 -79 9.451000E-20 355.0 -78 1.038000E-19 350.0 -77 1.141000E-19 345.0 -76 1.255000E-19 340.0 -75 1.382000E-19 335.0 -74 1.524000E-19 330.0 -73 1.683000E-19 325.0 -72 1.859000E-19 320.0 -71 2.057000E-19 315.0 -70 2.280000E-19 310.0 -69 2.529000E-19 305.0 -68 2.810000E-19 300.0 -67 3.127000E-19 295.0 -66 3.484000E-19 290.0 -65 3.889000E-19 285.0 -64 4.349000E-19 280.0 -63 4.872000E-19 275.0 -62 5.468000E-19 270.0 -61 6.149000E-19 265.0 -60 6.931000E-19 260.0 -59 7.832000E-19 255.0 -58 8.871000E-19 250.0 -57 1.008000E-18 245.0 -56 1.147000E-18 240.0 -55 1.311000E-18 235.0 -54 1.502000E-18 230.0 -53 1.728000E-18 225.0 -52 1.995000E-18 220.0 -51 2.313000E-18 215.0 -50 2.693000E-18 210.0 -49 3.152000E-18 205.0 -48 3.708000E-18 200.0 -47 4.388000E-18 195.0 -46 5.227000E-18 190.0 -45 6.272000E-18 185.0 -44 7.586000E-18 180.0 -43 9.261000E-18 175.0 -42 1.142000E-17 170.0 -41 1.426000E-17 165.0 -40 1.804000E-17 160.0 -39 2.320000E-17 155.0 -38 3.038000E-17 150.0 -37 4.071000E-17 145.0 -36 5.597000E-17 140.0 -35 7.936000E-17 135.0 -34 1.142000E-16 130.0 -33 1.773000E-16 125.0 -32 2.648000E-16 120.0 -31 4.177461E-16 117.0 -30 6.456800E-16 114.0 -29 1.063000E-15 111.0 -28 1.825899E-15 108.0 -27 3.101614E-15 105.0 -26 5.297339E-15 102.0 -25 9.079206E-15 99.0 -24 1.568171E-14 96.0 -23 2.671334E-14 93.0 -22 4.507508E-14 90.0 -21 7.468513E-14 87.0 -20 1.179544E-13 84.0 -19 1.584938E-13 81.0 -18 1.040207E-13 78.0 -17 1.827972E-15 75.0 -16 1.152260E-17 72.0 -15 1.106000E-17 69.0 -14 1.113000E-17 66.0 -13 1.132998E-17 63.0 -12 1.155122E-17 60.0 -11 1.194998E-17 55.0 -10 1.242492E-17 50.0 - 9 1.340479E-17 45.0 - 8 1.438000E-17 40.0 - 7 1.399286E-17 35.0 - 6 9.826681E-18 30.0 - 5 2.820122E-18 25.0 - 4 9.406247E-20 20.0 - 3 1.449247E-23 15.0 -1.065000E-01 0.000000E+00 86 -88 4.868000E-20 400.0 -87 5.089000E-20 395.0 -86 5.553000E-20 390.0 -85 6.063000E-20 385.0 -84 6.625000E-20 380.0 -83 7.245000E-20 375.0 -82 7.930000E-20 370.0 -81 8.686000E-20 365.0 -80 9.522000E-20 360.0 -79 1.045000E-19 355.0 -78 1.147000E-19 350.0 -77 1.261000E-19 345.0 -76 1.388000E-19 340.0 -75 1.528000E-19 335.0 -74 1.685000E-19 330.0 -73 1.860000E-19 325.0 -72 2.056000E-19 320.0 -71 2.275000E-19 315.0 -70 2.520000E-19 310.0 -69 2.796000E-19 305.0 -68 3.107000E-19 300.0 -67 3.457000E-19 295.0 -66 3.852000E-19 290.0 -65 4.300000E-19 285.0 -64 4.808000E-19 280.0 -63 5.386000E-19 275.0 -62 6.045000E-19 270.0 -61 6.798000E-19 265.0 -60 7.663000E-19 260.0 -59 8.658000E-19 255.0 -58 9.807000E-19 250.0 -57 1.114000E-18 245.0 -56 1.268000E-18 240.0 -55 1.449000E-18 235.0 -54 1.661000E-18 230.0 -53 1.910000E-18 225.0 -52 2.205000E-18 220.0 -51 2.557000E-18 215.0 -50 2.977000E-18 210.0 -49 3.484000E-18 205.0 -48 4.099000E-18 200.0 -47 4.851000E-18 195.0 -46 5.778000E-18 190.0 -45 6.934000E-18 185.0 -44 8.386000E-18 180.0 -43 1.024000E-17 175.0 -42 1.263000E-17 170.0 -41 1.576000E-17 165.0 -40 1.994000E-17 160.0 -39 2.565000E-17 155.0 -38 3.358000E-17 150.0 -37 4.500000E-17 145.0 -36 6.188000E-17 140.0 -35 8.773000E-17 135.0 -34 1.262000E-16 130.0 -33 1.960000E-16 125.0 -32 2.927000E-16 120.0 -31 4.618336E-16 117.0 -30 7.144475E-16 114.0 -29 1.174891E-15 111.0 -28 2.018532E-15 108.0 -27 3.433179E-15 105.0 -26 5.845259E-15 102.0 -25 1.001544E-14 99.0 -24 1.721016E-14 96.0 -23 2.934488E-14 93.0 -22 4.923401E-14 90.0 -21 8.090112E-14 87.0 -20 1.220795E-13 84.0 -19 1.384227E-13 81.0 -18 2.012658E-14 78.0 -17 3.092659E-17 75.0 -16 8.855973E-18 72.0 -15 8.788999E-18 69.0 -14 8.869496E-18 66.0 -13 9.013992E-18 63.0 -12 9.138194E-18 60.0 -11 9.313500E-18 55.0 -10 9.493495E-18 50.0 - 9 9.983465E-18 45.0 - 8 1.034494E-17 40.0 - 7 9.598757E-18 35.0 - 6 6.264832E-18 30.0 - 5 1.599775E-18 25.0 - 4 4.340932E-20 20.0 - 3 4.131610E-24 15.0 -9.200001E-02 0.000000E+00 86 -88 5.381000E-20 400.0 -87 5.625000E-20 395.0 -86 6.138000E-20 390.0 -85 6.702000E-20 385.0 -84 7.324000E-20 380.0 -83 8.009000E-20 375.0 -82 8.765000E-20 370.0 -81 9.601000E-20 365.0 -80 1.053000E-19 360.0 -79 1.155000E-19 355.0 -78 1.268000E-19 350.0 -77 1.394000E-19 345.0 -76 1.534000E-19 340.0 -75 1.689000E-19 335.0 -74 1.863000E-19 330.0 -73 2.056000E-19 325.0 -72 2.272000E-19 320.0 -71 2.514000E-19 315.0 -70 2.786000E-19 310.0 -69 3.091000E-19 305.0 -68 3.434000E-19 300.0 -67 3.821000E-19 295.0 -66 4.258000E-19 290.0 -65 4.753000E-19 285.0 -64 5.315000E-19 280.0 -63 5.954000E-19 275.0 -62 6.682000E-19 270.0 -61 7.515000E-19 265.0 -60 8.471000E-19 260.0 -59 9.571000E-19 255.0 -58 1.084000E-18 250.0 -57 1.231000E-18 245.0 -56 1.402000E-18 240.0 -55 1.602000E-18 235.0 -54 1.836000E-18 230.0 -53 2.111000E-18 225.0 -52 2.438000E-18 220.0 -51 2.826000E-18 215.0 -50 3.291000E-18 210.0 -49 3.851000E-18 205.0 -48 4.531000E-18 200.0 -47 5.363000E-18 195.0 -46 6.387000E-18 190.0 -45 7.664000E-18 185.0 -44 9.270000E-18 180.0 -43 1.132000E-17 175.0 -42 1.396000E-17 170.0 -41 1.742000E-17 165.0 -40 2.204000E-17 160.0 -39 2.835000E-17 155.0 -38 3.712000E-17 150.0 -37 4.974000E-17 145.0 -36 6.839000E-17 140.0 -35 9.696000E-17 135.0 -34 1.395000E-16 130.0 -33 2.166000E-16 125.0 -32 3.234000E-16 120.0 -31 5.101322E-16 117.0 -30 7.896045E-16 114.0 -29 1.299169E-15 111.0 -28 2.235200E-15 108.0 -27 3.791886E-15 105.0 -26 6.454626E-15 102.0 -25 1.101421E-14 99.0 -24 1.891779E-14 96.0 -23 3.213032E-14 93.0 -22 5.373617E-14 90.0 -21 8.626666E-14 87.0 -20 1.210894E-13 84.0 -19 7.988706E-14 81.0 -18 1.043278E-15 78.0 -17 7.244632E-18 75.0 -16 7.062995E-18 72.0 -15 7.061000E-18 69.0 -14 7.127499E-18 66.0 -13 7.215998E-18 63.0 -12 7.266802E-18 60.0 -11 7.295987E-18 55.0 -10 7.283492E-18 50.0 - 9 7.452497E-18 45.0 - 8 7.448758E-18 40.0 - 7 6.555919E-18 35.0 - 6 3.941860E-18 30.0 - 5 8.813291E-19 25.0 - 4 1.898836E-20 20.0 - 3 1.050076E-24 15.0 -8.050001E-02 0.000000E+00 86 -88 5.913000E-20 400.0 -87 6.182000E-20 395.0 -86 6.745000E-20 390.0 -85 7.365000E-20 385.0 -84 8.048000E-20 380.0 -83 8.801000E-20 375.0 -82 9.632000E-20 370.0 -81 1.055000E-19 365.0 -80 1.157000E-19 360.0 -79 1.269000E-19 355.0 -78 1.394000E-19 350.0 -77 1.532000E-19 345.0 -76 1.686000E-19 340.0 -75 1.856000E-19 335.0 -74 2.047000E-19 330.0 -73 2.260000E-19 325.0 -72 2.497000E-19 320.0 -71 2.763000E-19 315.0 -70 3.061000E-19 310.0 -69 3.397000E-19 305.0 -68 3.774000E-19 300.0 -67 4.199000E-19 295.0 -66 4.679000E-19 290.0 -65 5.223000E-19 285.0 -64 5.840000E-19 280.0 -63 6.543000E-19 275.0 -62 7.343000E-19 270.0 -61 8.258000E-19 265.0 -60 9.308000E-19 260.0 -59 1.052000E-18 255.0 -58 1.191000E-18 250.0 -57 1.353000E-18 245.0 -56 1.541000E-18 240.0 -55 1.760000E-18 235.0 -54 2.017000E-18 230.0 -53 2.320000E-18 225.0 -52 2.679000E-18 220.0 -51 3.105000E-18 215.0 -50 3.616000E-18 210.0 -49 4.232000E-18 205.0 -48 4.979000E-18 200.0 -47 5.893000E-18 195.0 -46 7.019000E-18 190.0 -45 8.422000E-18 185.0 -44 1.019000E-17 180.0 -43 1.244000E-17 175.0 -42 1.534000E-17 170.0 -41 1.915000E-17 165.0 -40 2.422000E-17 160.0 -39 3.115000E-17 155.0 -38 4.078000E-17 150.0 -37 5.465000E-17 145.0 -36 7.514000E-17 140.0 -35 1.065000E-16 135.0 -34 1.532000E-16 130.0 -33 2.379000E-16 125.0 -32 3.552000E-16 120.0 -31 5.614563E-16 117.0 -30 8.691906E-16 114.0 -29 1.431457E-15 111.0 -28 2.458512E-15 108.0 -27 4.164720E-15 105.0 -26 7.075227E-15 102.0 -25 1.204721E-14 99.0 -24 2.064071E-14 96.0 -23 3.504431E-14 93.0 -22 5.790843E-14 90.0 -21 8.999489E-14 87.0 -20 1.083439E-13 84.0 -19 1.944078E-14 81.0 -18 2.258591E-17 78.0 -17 5.804477E-18 75.0 -16 5.768999E-18 72.0 -15 5.785500E-18 69.0 -14 5.829500E-18 66.0 -13 5.874000E-18 63.0 -12 5.875652E-18 60.0 -11 5.804958E-18 55.0 -10 5.676455E-18 50.0 - 9 5.653953E-18 45.0 - 8 5.446057E-18 40.0 - 7 4.534258E-18 35.0 - 6 2.496844E-18 30.0 - 5 4.841988E-19 25.0 - 4 8.141862E-21 20.0 - 3 4.659500E-25 15.0 -6.900001E-02 0.000000E+00 86 -88 6.612000E-20 400.0 -87 6.912000E-20 395.0 -86 7.542000E-20 390.0 -85 8.236000E-20 385.0 -84 8.999000E-20 380.0 -83 9.841000E-20 375.0 -82 1.077000E-19 370.0 -81 1.180000E-19 365.0 -80 1.293000E-19 360.0 -79 1.419000E-19 355.0 -78 1.559000E-19 350.0 -77 1.713000E-19 345.0 -76 1.885000E-19 340.0 -75 2.076000E-19 335.0 -74 2.289000E-19 330.0 -73 2.527000E-19 325.0 -72 2.792000E-19 320.0 -71 3.090000E-19 315.0 -70 3.423000E-19 310.0 -69 3.798000E-19 305.0 -68 4.220000E-19 300.0 -67 4.695000E-19 295.0 -66 5.232000E-19 290.0 -65 5.840000E-19 285.0 -64 6.531000E-19 280.0 -63 7.316000E-19 275.0 -62 8.211000E-19 270.0 -61 9.234000E-19 265.0 -60 1.041000E-18 260.0 -59 1.176000E-18 255.0 -58 1.332000E-18 250.0 -57 1.513000E-18 245.0 -56 1.723000E-18 240.0 -55 1.968000E-18 235.0 -54 2.256000E-18 230.0 -53 2.594000E-18 225.0 -52 2.995000E-18 220.0 -51 3.473000E-18 215.0 -50 4.044000E-18 210.0 -49 4.732000E-18 205.0 -48 5.567000E-18 200.0 -47 6.589000E-18 195.0 -46 7.848000E-18 190.0 -45 9.417000E-18 185.0 -44 1.139000E-17 180.0 -43 1.391000E-17 175.0 -42 1.715000E-17 170.0 -41 2.141000E-17 165.0 -40 2.708000E-17 160.0 -39 3.483000E-17 155.0 -38 4.560000E-17 150.0 -37 6.110000E-17 145.0 -36 8.401000E-17 140.0 -35 1.191000E-16 135.0 -34 1.713000E-16 130.0 -33 2.659000E-16 125.0 -32 3.969000E-16 120.0 -31 6.303036E-16 117.0 -30 9.744383E-16 114.0 -29 1.602800E-15 111.0 -28 2.748491E-15 108.0 -27 4.651235E-15 105.0 -26 7.873279E-15 102.0 -25 1.337116E-14 99.0 -24 2.289278E-14 96.0 -23 3.861401E-14 93.0 -22 6.252086E-14 90.0 -21 9.043767E-14 87.0 -20 6.697163E-14 84.0 -19 8.329667E-16 81.0 -18 4.696838E-18 78.0 -17 4.565495E-18 75.0 -16 4.574500E-18 72.0 -15 4.589500E-18 69.0 -14 4.604500E-18 66.0 -13 4.607499E-18 63.0 -12 4.564759E-18 60.0 -11 4.419414E-18 55.0 -10 4.207397E-18 50.0 - 9 4.048857E-18 45.0 - 8 3.714340E-18 40.0 - 7 2.871782E-18 35.0 - 6 1.401850E-18 30.0 - 5 2.229887E-19 25.0 - 4 2.655507E-21 20.0 - 3 7.055000E-26 15.0 -5.750000E-02 0.000000E+00 85 -88 7.574000E-20 400.0 -87 7.917000E-20 395.0 -86 8.639000E-20 390.0 -85 9.433000E-20 385.0 -84 1.031000E-19 380.0 -83 1.127000E-19 375.0 -82 1.234000E-19 370.0 -81 1.351000E-19 365.0 -80 1.481000E-19 360.0 -79 1.625000E-19 355.0 -78 1.785000E-19 350.0 -77 1.962000E-19 345.0 -76 2.159000E-19 340.0 -75 2.378000E-19 335.0 -74 2.622000E-19 330.0 -73 2.894000E-19 325.0 -72 3.198000E-19 320.0 -71 3.539000E-19 315.0 -70 3.921000E-19 310.0 -69 4.350000E-19 305.0 -68 4.833000E-19 300.0 -67 5.378000E-19 295.0 -66 5.993000E-19 290.0 -65 6.689000E-19 285.0 -64 7.480000E-19 280.0 -63 8.380000E-19 275.0 -62 9.405000E-19 270.0 -61 1.058000E-18 265.0 -60 1.192000E-18 260.0 -59 1.347000E-18 255.0 -58 1.526000E-18 250.0 -57 1.733000E-18 245.0 -56 1.973000E-18 240.0 -55 2.254000E-18 235.0 -54 2.583000E-18 230.0 -53 2.971000E-18 225.0 -52 3.430000E-18 220.0 -51 3.977000E-18 215.0 -50 4.631000E-18 210.0 -49 5.420000E-18 205.0 -48 6.376000E-18 200.0 -47 7.547000E-18 195.0 -46 8.988000E-18 190.0 -45 1.079000E-17 185.0 -44 1.304000E-17 180.0 -43 1.592000E-17 175.0 -42 1.964000E-17 170.0 -41 2.452000E-17 165.0 -40 3.101000E-17 160.0 -39 3.988000E-17 155.0 -38 5.222000E-17 150.0 -37 6.996000E-17 145.0 -36 9.618000E-17 140.0 -35 1.363000E-16 135.0 -34 1.960000E-16 130.0 -33 3.043000E-16 125.0 -32 4.541000E-16 120.0 -31 7.228705E-16 117.0 -30 1.117314E-15 114.0 -29 1.835913E-15 111.0 -28 3.146044E-15 108.0 -27 5.306249E-15 105.0 -26 8.955253E-15 102.0 -25 1.518368E-14 99.0 -24 2.588324E-14 96.0 -23 4.304405E-14 93.0 -22 6.645573E-14 90.0 -21 7.640736E-14 87.0 -20 8.146577E-15 84.0 -19 5.201913E-18 81.0 -18 3.486986E-18 78.0 -17 3.456999E-18 75.0 -16 3.475000E-18 72.0 -15 3.473499E-18 69.0 -14 3.458998E-18 66.0 -13 3.425993E-18 63.0 -12 3.347856E-18 60.0 -11 3.150362E-18 55.0 -10 2.892306E-18 50.0 - 9 2.651235E-18 45.0 - 8 2.270640E-18 40.0 - 7 1.576488E-18 35.0 - 6 6.439474E-19 30.0 - 5 7.611897E-20 25.0 - 4 5.361836E-22 20.0 -4.900000E-02 0.000000E+00 85 -88 8.553000E-20 400.0 -87 8.941000E-20 395.0 -86 9.756000E-20 390.0 -85 1.065000E-19 385.0 -84 1.164000E-19 380.0 -83 1.273000E-19 375.0 -82 1.393000E-19 370.0 -81 1.526000E-19 365.0 -80 1.673000E-19 360.0 -79 1.836000E-19 355.0 -78 2.016000E-19 350.0 -77 2.216000E-19 345.0 -76 2.438000E-19 340.0 -75 2.685000E-19 335.0 -74 2.961000E-19 330.0 -73 3.268000E-19 325.0 -72 3.612000E-19 320.0 -71 3.996000E-19 315.0 -70 4.428000E-19 310.0 -69 4.913000E-19 305.0 -68 5.459000E-19 300.0 -67 6.074000E-19 295.0 -66 6.768000E-19 290.0 -65 7.554000E-19 285.0 -64 8.448000E-19 280.0 -63 9.464000E-19 275.0 -62 1.062000E-18 270.0 -61 1.194000E-18 265.0 -60 1.346000E-18 260.0 -59 1.521000E-18 255.0 -58 1.723000E-18 250.0 -57 1.957000E-18 245.0 -56 2.229000E-18 240.0 -55 2.546000E-18 235.0 -54 2.917000E-18 230.0 -53 3.356000E-18 225.0 -52 3.874000E-18 220.0 -51 4.492000E-18 215.0 -50 5.230000E-18 210.0 -49 6.121000E-18 205.0 -48 7.201000E-18 200.0 -47 8.522000E-18 195.0 -46 1.015000E-17 190.0 -45 1.218000E-17 185.0 -44 1.473000E-17 180.0 -43 1.798000E-17 175.0 -42 2.218000E-17 170.0 -41 2.768000E-17 165.0 -40 3.502000E-17 160.0 -39 4.503000E-17 155.0 -38 5.895000E-17 150.0 -37 7.898000E-17 145.0 -36 1.086000E-16 140.0 -35 1.539000E-16 135.0 -34 2.213000E-16 130.0 -33 3.434000E-16 125.0 -32 5.122000E-16 120.0 -31 8.165528E-16 117.0 -30 1.263099E-15 114.0 -29 2.074665E-15 111.0 -28 3.544438E-15 108.0 -27 5.964682E-15 105.0 -26 1.004023E-14 102.0 -25 1.698090E-14 99.0 -24 2.875193E-14 96.0 -23 4.664193E-14 93.0 -22 6.553206E-14 90.0 -21 3.852233E-14 87.0 -20 1.509035E-16 84.0 -19 2.789451E-18 81.0 -18 2.716496E-18 78.0 -17 2.710000E-18 75.0 -16 2.719999E-18 72.0 -15 2.702496E-18 69.0 -14 2.667993E-18 66.0 -13 2.609988E-18 63.0 -12 2.515332E-18 60.0 -11 2.296804E-18 55.0 -10 2.028748E-18 50.0 - 9 1.766633E-18 45.0 - 8 1.405520E-18 40.0 - 7 8.660584E-19 35.0 - 6 2.894653E-19 30.0 - 5 2.433625E-20 25.0 - 4 9.253297E-23 20.0 -4.300000E-02 0.000000E+00 85 -88 9.457000E-20 400.0 -87 9.886000E-20 395.0 -86 1.079000E-19 390.0 -85 1.178000E-19 385.0 -84 1.287000E-19 380.0 -83 1.407000E-19 375.0 -82 1.540000E-19 370.0 -81 1.687000E-19 365.0 -80 1.850000E-19 360.0 -79 2.030000E-19 355.0 -78 2.229000E-19 350.0 -77 2.450000E-19 345.0 -76 2.696000E-19 340.0 -75 2.969000E-19 335.0 -74 3.273000E-19 330.0 -73 3.614000E-19 325.0 -72 3.993000E-19 320.0 -71 4.418000E-19 315.0 -70 4.896000E-19 310.0 -69 5.432000E-19 305.0 -68 6.035000E-19 300.0 -67 6.715000E-19 295.0 -66 7.483000E-19 290.0 -65 8.352000E-19 285.0 -64 9.340000E-19 280.0 -63 1.046000E-18 275.0 -62 1.174000E-18 270.0 -61 1.321000E-18 265.0 -60 1.489000E-18 260.0 -59 1.682000E-18 255.0 -58 1.905000E-18 250.0 -57 2.164000E-18 245.0 -56 2.464000E-18 240.0 -55 2.814000E-18 235.0 -54 3.226000E-18 230.0 -53 3.710000E-18 225.0 -52 4.283000E-18 220.0 -51 4.966000E-18 215.0 -50 5.783000E-18 210.0 -49 6.767000E-18 205.0 -48 7.961000E-18 200.0 -47 9.422000E-18 195.0 -46 1.122000E-17 190.0 -45 1.346000E-17 185.0 -44 1.628000E-17 180.0 -43 1.988000E-17 175.0 -42 2.452000E-17 170.0 -41 3.060000E-17 165.0 -40 3.871000E-17 160.0 -39 4.978000E-17 155.0 -38 6.516000E-17 150.0 -37 8.730000E-17 145.0 -36 1.200000E-16 140.0 -35 1.700000E-16 135.0 -34 2.444000E-16 130.0 -33 3.792000E-16 125.0 -32 5.655000E-16 120.0 -31 9.055593E-16 117.0 -30 1.398013E-15 114.0 -29 2.291861E-15 111.0 -28 3.910525E-15 108.0 -27 6.564252E-15 105.0 -26 1.103002E-14 102.0 -25 1.862476E-14 99.0 -24 3.118298E-14 96.0 -23 4.872676E-14 93.0 -22 5.727658E-14 90.0 -21 7.568107E-15 87.0 -20 3.324291E-18 84.0 -19 2.254480E-18 81.0 -18 2.219998E-18 78.0 -17 2.217000E-18 75.0 -16 2.216499E-18 72.0 -15 2.187493E-18 69.0 -14 2.138989E-18 66.0 -13 2.068980E-18 63.0 -12 1.964812E-18 60.0 -11 1.742267E-18 55.0 -10 1.482697E-18 50.0 - 9 1.228070E-18 45.0 - 8 9.072097E-19 40.0 - 7 4.952311E-19 35.0 - 6 1.344734E-19 30.0 - 5 7.897665E-21 25.0 - 4 1.538550E-23 20.0 -3.700000E-02 0.000000E+00 85 -88 1.063000E-19 400.0 -87 1.111000E-19 395.0 -86 1.213000E-19 390.0 -85 1.324000E-19 385.0 -84 1.447000E-19 380.0 -83 1.582000E-19 375.0 -82 1.732000E-19 370.0 -81 1.897000E-19 365.0 -80 2.080000E-19 360.0 -79 2.282000E-19 355.0 -78 2.506000E-19 350.0 -77 2.755000E-19 345.0 -76 3.031000E-19 340.0 -75 3.338000E-19 335.0 -74 3.680000E-19 330.0 -73 4.063000E-19 325.0 -72 4.489000E-19 320.0 -71 4.967000E-19 315.0 -70 5.504000E-19 310.0 -69 6.107000E-19 305.0 -68 6.785000E-19 300.0 -67 7.549000E-19 295.0 -66 8.412000E-19 290.0 -65 9.390000E-19 285.0 -64 1.050000E-18 280.0 -63 1.176000E-18 275.0 -62 1.320000E-18 270.0 -61 1.485000E-18 265.0 -60 1.673000E-18 260.0 -59 1.891000E-18 255.0 -58 2.142000E-18 250.0 -57 2.432000E-18 245.0 -56 2.770000E-18 240.0 -55 3.164000E-18 235.0 -54 3.626000E-18 230.0 -53 4.171000E-18 225.0 -52 4.815000E-18 220.0 -51 5.583000E-18 215.0 -50 6.501000E-18 210.0 -49 7.608000E-18 205.0 -48 8.950000E-18 200.0 -47 1.059000E-17 195.0 -46 1.262000E-17 190.0 -45 1.514000E-17 185.0 -44 1.831000E-17 180.0 -43 2.235000E-17 175.0 -42 2.756000E-17 170.0 -41 3.440000E-17 165.0 -40 4.351000E-17 160.0 -39 5.594000E-17 155.0 -38 7.323000E-17 150.0 -37 9.809000E-17 145.0 -36 1.348000E-16 140.0 -35 1.910000E-16 135.0 -34 2.745000E-16 130.0 -33 4.257000E-16 125.0 -32 6.344000E-16 120.0 -31 1.019864E-15 117.0 -30 1.571829E-15 114.0 -29 2.572987E-15 111.0 -28 4.378964E-15 108.0 -27 7.335421E-15 105.0 -26 1.229862E-14 102.0 -25 2.062804E-14 99.0 -24 3.376490E-14 96.0 -23 4.848479E-14 93.0 -22 3.356692E-14 90.0 -21 1.886344E-16 87.0 -20 1.838464E-18 84.0 -19 1.776491E-18 81.0 -18 1.758498E-18 78.0 -17 1.751499E-18 75.0 -16 1.739496E-18 72.0 -15 1.698989E-18 69.0 -14 1.638980E-18 66.0 -13 1.559471E-18 63.0 -12 1.452664E-18 60.0 -11 1.236216E-18 55.0 -10 9.984563E-19 50.0 - 9 7.706684E-19 45.0 - 8 5.123099E-19 40.0 - 7 2.339896E-19 35.0 - 6 4.666494E-20 30.0 - 5 1.589080E-21 25.0 - 4 1.073834E-24 20.0 -3.150000E-02 0.000000E+00 84 -88 1.207000E-19 400.0 -87 1.262000E-19 395.0 -86 1.377000E-19 390.0 -85 1.504000E-19 385.0 -84 1.643000E-19 380.0 -83 1.797000E-19 375.0 -82 1.967000E-19 370.0 -81 2.154000E-19 365.0 -80 2.362000E-19 360.0 -79 2.591000E-19 355.0 -78 2.846000E-19 350.0 -77 3.128000E-19 345.0 -76 3.442000E-19 340.0 -75 3.790000E-19 335.0 -74 4.179000E-19 330.0 -73 4.614000E-19 325.0 -72 5.098000E-19 320.0 -71 5.641000E-19 315.0 -70 6.250000E-19 310.0 -69 6.935000E-19 305.0 -68 7.705000E-19 300.0 -67 8.573000E-19 295.0 -66 9.553000E-19 290.0 -65 1.066000E-18 285.0 -64 1.192000E-18 280.0 -63 1.336000E-18 275.0 -62 1.499000E-18 270.0 -61 1.686000E-18 265.0 -60 1.900000E-18 260.0 -59 2.147000E-18 255.0 -58 2.432000E-18 250.0 -57 2.762000E-18 245.0 -56 3.145000E-18 240.0 -55 3.593000E-18 235.0 -54 4.118000E-18 230.0 -53 4.736000E-18 225.0 -52 5.468000E-18 220.0 -51 6.339000E-18 215.0 -50 7.382000E-18 210.0 -49 8.638000E-18 205.0 -48 1.016000E-17 200.0 -47 1.203000E-17 195.0 -46 1.432000E-17 190.0 -45 1.719000E-17 185.0 -44 2.078000E-17 180.0 -43 2.537000E-17 175.0 -42 3.128000E-17 170.0 -41 3.905000E-17 165.0 -40 4.939000E-17 160.0 -39 6.350000E-17 155.0 -38 8.311000E-17 150.0 -37 1.113000E-16 145.0 -36 1.529000E-16 140.0 -35 2.166000E-16 135.0 -34 3.112000E-16 130.0 -33 4.823000E-16 125.0 -32 7.182000E-16 120.0 -31 1.157046E-15 117.0 -30 1.783593E-15 114.0 -29 2.911086E-15 111.0 -28 4.942218E-15 108.0 -27 8.259277E-15 105.0 -26 1.380175E-14 102.0 -25 2.281777E-14 99.0 -24 3.562555E-14 96.0 -23 4.122854E-14 93.0 -22 4.834640E-15 90.0 -21 1.684696E-18 87.0 -20 1.408991E-18 84.0 -19 1.378496E-18 81.0 -18 1.364498E-18 78.0 -17 1.350498E-18 75.0 -16 1.325991E-18 72.0 -15 1.276981E-18 69.0 -14 1.209974E-18 66.0 -13 1.125956E-18 63.0 -12 1.021238E-18 60.0 -11 8.230439E-19 55.0 -10 6.193269E-19 50.0 - 9 4.340591E-19 45.0 - 8 2.483500E-19 40.0 - 7 8.766812E-20 35.0 - 6 1.111333E-20 30.0 - 5 1.663362E-22 25.0 -2.949106E-02 0.000000E+00 84 -88 1.273000E-19 400.0 -87 1.330000E-19 395.0 -86 1.451000E-19 390.0 -85 1.585000E-19 385.0 -84 1.732000E-19 380.0 -83 1.894000E-19 375.0 -82 2.073000E-19 370.0 -81 2.270000E-19 365.0 -80 2.489000E-19 360.0 -79 2.731000E-19 355.0 -78 2.999000E-19 350.0 -77 3.297000E-19 345.0 -76 3.627000E-19 340.0 -75 3.995000E-19 335.0 -74 4.405000E-19 330.0 -73 4.862000E-19 325.0 -72 5.373000E-19 320.0 -71 5.945000E-19 315.0 -70 6.588000E-19 310.0 -69 7.309000E-19 305.0 -68 8.121000E-19 300.0 -67 9.036000E-19 295.0 -66 1.007000E-18 290.0 -65 1.124000E-18 285.0 -64 1.257000E-18 280.0 -63 1.408000E-18 275.0 -62 1.580000E-18 270.0 -61 1.777000E-18 265.0 -60 2.003000E-18 260.0 -59 2.263000E-18 255.0 -58 2.563000E-18 250.0 -57 2.911000E-18 245.0 -56 3.315000E-18 240.0 -55 3.787000E-18 235.0 -54 4.340000E-18 230.0 -53 4.991000E-18 225.0 -52 5.763000E-18 220.0 -51 6.681000E-18 215.0 -50 7.780000E-18 210.0 -49 9.104000E-18 205.0 -48 1.071000E-17 200.0 -47 1.267000E-17 195.0 -46 1.510000E-17 190.0 -45 1.811000E-17 185.0 -44 2.190000E-17 180.0 -43 2.674000E-17 175.0 -42 3.297000E-17 170.0 -41 4.115000E-17 165.0 -40 5.204000E-17 160.0 -39 6.691000E-17 155.0 -38 8.757000E-17 150.0 -37 1.173000E-16 145.0 -36 1.611000E-16 140.0 -35 2.282000E-16 135.0 -34 3.277000E-16 130.0 -33 5.077000E-16 125.0 -32 7.557000E-16 120.0 -31 1.219976E-15 117.0 -30 1.877031E-15 114.0 -29 3.060873E-15 111.0 -28 5.190931E-15 108.0 -27 8.670317E-15 105.0 -26 1.445683E-14 102.0 -25 2.367399E-14 99.0 -24 3.582372E-14 96.0 -23 3.487889E-14 93.0 -22 1.140635E-15 90.0 -21 1.305962E-18 87.0 -20 1.266495E-18 84.0 -19 1.241996E-18 81.0 -18 1.227497E-18 78.0 -17 1.209996E-18 75.0 -16 1.181989E-18 72.0 -15 1.129481E-18 69.0 -14 1.060970E-18 66.0 -13 9.768033E-19 63.0 -12 8.745752E-19 60.0 -11 6.862333E-19 55.0 -10 4.989230E-19 50.0 - 9 3.331248E-19 45.0 - 8 1.765766E-19 40.0 - 7 5.452511E-20 35.0 - 6 5.452084E-21 30.0 - 5 5.248818E-23 25.0 -2.050085E-02 0.000000E+00 83 -88 1.701000E-19 400.0 -87 1.779000E-19 395.0 -86 1.941000E-19 390.0 -85 2.119000E-19 385.0 -84 2.316000E-19 380.0 -83 2.532000E-19 375.0 -82 2.771000E-19 370.0 -81 3.036000E-19 365.0 -80 3.328000E-19 360.0 -79 3.652000E-19 355.0 -78 4.010000E-19 350.0 -77 4.408000E-19 345.0 -76 4.850000E-19 340.0 -75 5.341000E-19 335.0 -74 5.889000E-19 330.0 -73 6.501000E-19 325.0 -72 7.184000E-19 320.0 -71 7.949000E-19 315.0 -70 8.808000E-19 310.0 -69 9.772000E-19 305.0 -68 1.086000E-18 300.0 -67 1.208000E-18 295.0 -66 1.346000E-18 290.0 -65 1.503000E-18 285.0 -64 1.680000E-18 280.0 -63 1.882000E-18 275.0 -62 2.112000E-18 270.0 -61 2.376000E-18 265.0 -60 2.678000E-18 260.0 -59 3.025000E-18 255.0 -58 3.427000E-18 250.0 -57 3.892000E-18 245.0 -56 4.432000E-18 240.0 -55 5.062000E-18 235.0 -54 5.801000E-18 230.0 -53 6.672000E-18 225.0 -52 7.703000E-18 220.0 -51 8.930000E-18 215.0 -50 1.040000E-17 210.0 -49 1.217000E-17 205.0 -48 1.431000E-17 200.0 -47 1.694000E-17 195.0 -46 2.017000E-17 190.0 -45 2.420000E-17 185.0 -44 2.926000E-17 180.0 -43 3.571000E-17 175.0 -42 4.403000E-17 170.0 -41 5.494000E-17 165.0 -40 6.946000E-17 160.0 -39 8.928000E-17 155.0 -38 1.168000E-16 150.0 -37 1.563000E-16 145.0 -36 2.146000E-16 140.0 -35 3.035000E-16 135.0 -34 4.351000E-16 130.0 -33 6.725000E-16 125.0 -32 9.975000E-16 120.0 -31 1.624180E-15 117.0 -30 2.485956E-15 114.0 -29 4.034693E-15 111.0 -28 6.808381E-15 108.0 -27 1.123179E-14 105.0 -26 1.795306E-14 102.0 -25 2.552000E-14 99.0 -24 1.893666E-14 96.0 -23 1.207725E-16 93.0 -22 7.171899E-19 90.0 -21 7.054491E-19 87.0 -20 7.008977E-19 84.0 -19 6.824943E-19 81.0 -18 6.593917E-19 78.0 -17 6.277866E-19 75.0 -16 5.856246E-19 72.0 -15 5.280575E-19 69.0 -14 4.619423E-19 66.0 -13 3.906771E-19 63.0 -12 3.154110E-19 60.0 -11 1.996973E-19 55.0 -10 1.092074E-19 50.0 - 9 4.775325E-20 45.0 - 8 1.234160E-20 40.0 - 7 1.071881E-21 35.0 - 6 1.017299E-23 30.0 -1.422824E-02 0.000000E+00 82 -88 2.278000E-19 400.0 -87 2.382000E-19 395.0 -86 2.599000E-19 390.0 -85 2.838000E-19 385.0 -84 3.101000E-19 380.0 -83 3.391000E-19 375.0 -82 3.711000E-19 370.0 -81 4.065000E-19 365.0 -80 4.456000E-19 360.0 -79 4.890000E-19 355.0 -78 5.370000E-19 350.0 -77 5.903000E-19 345.0 -76 6.494000E-19 340.0 -75 7.152000E-19 335.0 -74 7.886000E-19 330.0 -73 8.705000E-19 325.0 -72 9.620000E-19 320.0 -71 1.064000E-18 315.0 -70 1.179000E-18 310.0 -69 1.308000E-18 305.0 -68 1.454000E-18 300.0 -67 1.617000E-18 295.0 -66 1.802000E-18 290.0 -65 2.012000E-18 285.0 -64 2.250000E-18 280.0 -63 2.520000E-18 275.0 -62 2.828000E-18 270.0 -61 3.180000E-18 265.0 -60 3.585000E-18 260.0 -59 4.050000E-18 255.0 -58 4.587000E-18 250.0 -57 5.210000E-18 245.0 -56 5.932000E-18 240.0 -55 6.776000E-18 235.0 -54 7.765000E-18 230.0 -53 8.930000E-18 225.0 -52 1.031000E-17 220.0 -51 1.195000E-17 215.0 -50 1.391000E-17 210.0 -49 1.628000E-17 205.0 -48 1.915000E-17 200.0 -47 2.266000E-17 195.0 -46 2.698000E-17 190.0 -45 3.236000E-17 185.0 -44 3.912000E-17 180.0 -43 4.773000E-17 175.0 -42 5.882000E-17 170.0 -41 7.337000E-17 165.0 -40 9.270000E-17 160.0 -39 1.191000E-16 155.0 -38 1.556000E-16 150.0 -37 2.080000E-16 145.0 -36 2.851000E-16 140.0 -35 4.023000E-16 135.0 -34 5.749000E-16 130.0 -33 8.840000E-16 125.0 -32 1.303000E-15 120.0 -31 2.150321E-15 117.0 -30 3.276704E-15 114.0 -29 5.281831E-15 111.0 -28 8.732858E-15 108.0 -27 1.353521E-14 105.0 -26 1.744498E-14 102.0 -25 7.884690E-15 99.0 -24 4.506726E-18 96.0 -23 3.862981E-19 93.0 -22 3.812491E-19 90.0 -21 3.779488E-19 87.0 -20 3.681940E-19 84.0 -19 3.451365E-19 81.0 -18 3.156795E-19 78.0 -17 2.799700E-19 75.0 -16 2.386557E-19 72.0 -15 1.925402E-19 69.0 -14 1.471312E-19 66.0 -13 1.057281E-19 63.0 -12 7.013179E-20 60.0 -11 2.880258E-20 55.0 -10 8.151559E-21 50.0 - 9 1.205370E-21 45.0 - 8 4.788241E-23 40.0 - 7 1.338000E-25 35.0 -9.888401E-03 0.000000E+00 80 -88 3.054000E-19 400.0 -87 3.193000E-19 395.0 -86 3.484000E-19 390.0 -85 3.804000E-19 385.0 -84 4.157000E-19 380.0 -83 4.546000E-19 375.0 -82 4.975000E-19 370.0 -81 5.449000E-19 365.0 -80 5.974000E-19 360.0 -79 6.555000E-19 355.0 -78 7.199000E-19 350.0 -77 7.913000E-19 345.0 -76 8.706000E-19 340.0 -75 9.588000E-19 335.0 -74 1.057000E-18 330.0 -73 1.167000E-18 325.0 -72 1.290000E-18 320.0 -71 1.427000E-18 315.0 -70 1.581000E-18 310.0 -69 1.754000E-18 305.0 -68 1.949000E-18 300.0 -67 2.168000E-18 295.0 -66 2.416000E-18 290.0 -65 2.696000E-18 285.0 -64 3.015000E-18 280.0 -63 3.378000E-18 275.0 -62 3.791000E-18 270.0 -61 4.262000E-18 265.0 -60 4.804000E-18 260.0 -59 5.427000E-18 255.0 -58 6.147000E-18 250.0 -57 6.980000E-18 245.0 -56 7.948000E-18 240.0 -55 9.078000E-18 235.0 -54 1.040000E-17 230.0 -53 1.196000E-17 225.0 -52 1.381000E-17 220.0 -51 1.600000E-17 215.0 -50 1.863000E-17 210.0 -49 2.179000E-17 205.0 -48 2.563000E-17 200.0 -47 3.031000E-17 195.0 -46 3.608000E-17 190.0 -45 4.326000E-17 185.0 -44 5.227000E-17 180.0 -43 6.375000E-17 175.0 -42 7.850000E-17 170.0 -41 9.784000E-17 165.0 -40 1.235000E-16 160.0 -39 1.584000E-16 155.0 -38 2.066000E-16 150.0 -37 2.756000E-16 145.0 -36 3.765000E-16 140.0 -35 5.289000E-16 135.0 -34 7.511000E-16 130.0 -33 1.146000E-15 125.0 -32 1.674000E-15 120.0 -31 2.816372E-15 117.0 -30 4.238094E-15 114.0 -29 6.601935E-15 111.0 -28 9.914123E-15 108.0 -27 1.087499E-14 105.0 -26 2.058914E-15 102.0 -25 1.821017E-19 99.0 -24 1.979497E-19 96.0 -23 1.993495E-19 93.0 -22 1.945974E-19 90.0 -21 1.856451E-19 87.0 -20 1.698351E-19 84.0 -19 1.461241E-19 81.0 -18 1.195160E-19 78.0 -17 9.203650E-20 75.0 -16 6.579983E-20 72.0 -15 4.279375E-20 69.0 -14 2.506395E-20 66.0 -13 1.281258E-20 63.0 -12 5.369521E-21 60.0 -11 7.048676E-22 55.0 -10 3.220803E-23 50.0 - 9 2.157729E-25 45.0 -6.870144E-03 0.000000E+00 78 -88 4.106000E-19 400.0 -87 4.292000E-19 395.0 -86 4.683000E-19 390.0 -85 5.113000E-19 385.0 -84 5.587000E-19 380.0 -83 6.110000E-19 375.0 -82 6.687000E-19 370.0 -81 7.325000E-19 365.0 -80 8.030000E-19 360.0 -79 8.811000E-19 355.0 -78 9.676000E-19 350.0 -77 1.064000E-18 345.0 -76 1.170000E-18 340.0 -75 1.289000E-18 335.0 -74 1.421000E-18 330.0 -73 1.568000E-18 325.0 -72 1.733000E-18 320.0 -71 1.917000E-18 315.0 -70 2.124000E-18 310.0 -69 2.357000E-18 305.0 -68 2.619000E-18 300.0 -67 2.913000E-18 295.0 -66 3.246000E-18 290.0 -65 3.623000E-18 285.0 -64 4.051000E-18 280.0 -63 4.538000E-18 275.0 -62 5.092000E-18 270.0 -61 5.726000E-18 265.0 -60 6.452000E-18 260.0 -59 7.289000E-18 255.0 -58 8.255000E-18 250.0 -57 9.373000E-18 245.0 -56 1.067000E-17 240.0 -55 1.219000E-17 235.0 -54 1.396000E-17 230.0 -53 1.605000E-17 225.0 -52 1.852000E-17 220.0 -51 2.146000E-17 215.0 -50 2.497000E-17 210.0 -49 2.920000E-17 205.0 -48 3.433000E-17 200.0 -47 4.058000E-17 195.0 -46 4.828000E-17 190.0 -45 5.784000E-17 185.0 -44 6.983000E-17 180.0 -43 8.506000E-17 175.0 -42 1.046000E-16 170.0 -41 1.302000E-16 165.0 -40 1.640000E-16 160.0 -39 2.097000E-16 155.0 -38 2.726000E-16 150.0 -37 3.620000E-16 145.0 -36 4.917000E-16 140.0 -35 6.861000E-16 135.0 -34 9.665000E-16 130.0 -33 1.465000E-15 125.0 -32 2.145000E-15 120.0 -31 3.543348E-15 117.0 -30 5.015737E-15 114.0 -29 6.629168E-15 111.0 -28 5.423178E-15 108.0 -27 2.008159E-16 105.0 -26 8.303867E-20 102.0 -25 9.168259E-20 99.0 -24 9.593000E-20 96.0 -23 9.316218E-20 93.0 -22 8.499756E-20 90.0 -21 7.333076E-20 87.0 -20 5.848530E-20 84.0 -19 4.207766E-20 81.0 -18 2.750164E-20 78.0 -17 1.595338E-20 75.0 -16 7.878396E-21 72.0 -15 3.082743E-21 69.0 -14 8.891192E-22 66.0 -13 1.715296E-22 63.0 -12 1.892507E-23 60.0 -11 7.565000E-26 55.0 -4.772710E-03 0.000000E+00 75 -88 5.532000E-19 400.0 -87 5.783000E-19 395.0 -86 6.310000E-19 390.0 -85 6.890000E-19 385.0 -84 7.528000E-19 380.0 -83 8.233000E-19 375.0 -82 9.010000E-19 370.0 -81 9.868000E-19 365.0 -80 1.082000E-18 360.0 -79 1.187000E-18 355.0 -78 1.304000E-18 350.0 -77 1.433000E-18 345.0 -76 1.576000E-18 340.0 -75 1.736000E-18 335.0 -74 1.914000E-18 330.0 -73 2.113000E-18 325.0 -72 2.334000E-18 320.0 -71 2.583000E-18 315.0 -70 2.861000E-18 310.0 -69 3.174000E-18 305.0 -68 3.526000E-18 300.0 -67 3.923000E-18 295.0 -66 4.371000E-18 290.0 -65 4.877000E-18 285.0 -64 5.453000E-18 280.0 -63 6.108000E-18 275.0 -62 6.853000E-18 270.0 -61 7.704000E-18 265.0 -60 8.681000E-18 260.0 -59 9.805000E-18 255.0 -58 1.110000E-17 250.0 -57 1.260000E-17 245.0 -56 1.434000E-17 240.0 -55 1.637000E-17 235.0 -54 1.875000E-17 230.0 -53 2.155000E-17 225.0 -52 2.486000E-17 220.0 -51 2.879000E-17 215.0 -50 3.348000E-17 210.0 -49 3.912000E-17 205.0 -48 4.594000E-17 200.0 -47 5.426000E-17 195.0 -46 6.447000E-17 190.0 -45 7.713000E-17 185.0 -44 9.295000E-17 180.0 -43 1.130000E-16 175.0 -42 1.386000E-16 170.0 -41 1.719000E-16 165.0 -40 2.157000E-16 160.0 -39 2.746000E-16 155.0 -38 3.551000E-16 150.0 -37 4.685000E-16 145.0 -36 6.321000E-16 140.0 -35 8.784000E-16 135.0 -34 1.243000E-15 130.0 -33 1.898000E-15 125.0 -32 2.774000E-15 120.0 -31 3.690560E-15 117.0 -30 3.723814E-15 114.0 -29 1.432710E-15 111.0 -28 1.294789E-18 108.0 -27 3.083926E-20 105.0 -26 3.604767E-20 102.0 -25 3.879990E-20 99.0 -24 3.796343E-20 96.0 -23 3.298214E-20 93.0 -22 2.556620E-20 90.0 -21 1.771194E-20 87.0 -20 1.060054E-20 84.0 -19 5.211167E-21 81.0 -18 2.000160E-21 78.0 -17 5.358174E-22 75.0 -16 8.685203E-23 72.0 -15 6.966171E-24 69.0 -14 2.109413E-25 66.0 -3.309282E-03 0.000000E+00 58 -88 7.483000E-19 400.0 -87 7.823000E-19 395.0 -86 8.535000E-19 390.0 -85 9.319000E-19 385.0 -84 1.018000E-18 380.0 -83 1.113000E-18 375.0 -82 1.219000E-18 370.0 -81 1.335000E-18 365.0 -80 1.463000E-18 360.0 -79 1.605000E-18 355.0 -78 1.763000E-18 350.0 -77 1.937000E-18 345.0 -76 2.131000E-18 340.0 -75 2.347000E-18 335.0 -74 2.587000E-18 330.0 -73 2.856000E-18 325.0 -72 3.155000E-18 320.0 -71 3.490000E-18 315.0 -70 3.867000E-18 310.0 -69 4.289000E-18 305.0 -68 4.764000E-18 300.0 -67 5.299000E-18 295.0 -66 5.903000E-18 290.0 -65 6.586000E-18 285.0 -64 7.362000E-18 280.0 -63 8.244000E-18 275.0 -62 9.248000E-18 270.0 -61 1.039000E-17 265.0 -60 1.171000E-17 260.0 -59 1.322000E-17 255.0 -58 1.496000E-17 250.0 -57 1.697000E-17 245.0 -56 1.931000E-17 240.0 -55 2.203000E-17 235.0 -54 2.521000E-17 230.0 -53 2.895000E-17 225.0 -52 3.336000E-17 220.0 -51 3.860000E-17 215.0 -50 4.483000E-17 210.0 -49 5.232000E-17 205.0 -48 6.134000E-17 200.0 -47 7.230000E-17 195.0 -46 8.569000E-17 190.0 -45 1.022000E-16 185.0 -44 1.228000E-16 180.0 -43 1.487000E-16 175.0 -42 1.817000E-16 170.0 -41 2.242000E-16 165.0 -40 2.798000E-16 160.0 -39 3.544000E-16 155.0 -38 4.567000E-16 150.0 -37 6.030000E-16 145.0 -36 8.197000E-16 140.0 -35 1.146000E-15 135.0 -34 1.609000E-15 130.0 -33 2.183000E-15 125.0 -32 1.905000E-15 120.0 -31 3.353000E-16 117.0 -2.303769e-03 0.000000e+00 56 -88 1.011120e-18 -87 1.056903e-18 -86 1.153116e-18 -85 1.258968e-18 -84 1.375555e-18 -83 1.504084e-18 -82 1.645905e-18 -81 1.802569e-18 -80 1.975859e-18 -79 2.167674e-18 -78 2.380161e-18 -77 2.615848e-18 -76 2.877171e-18 -75 3.167796e-18 -74 3.491941e-18 -73 3.853537e-18 -72 4.256975e-18 -71 4.708358e-18 -70 5.214738e-18 -69 5.783166e-18 -68 6.422069e-18 -67 7.141565e-18 -66 7.952839e-18 -65 8.870391e-18 -64 9.911479e-18 -63 1.109395e-17 -62 1.243811e-17 -61 1.397209e-17 -60 1.572869e-17 -59 1.774569e-17 -58 2.006830e-17 -57 2.275036e-17 -56 2.585438e-17 -55 2.946305e-17 -54 3.367436e-17 -53 3.860986e-17 -52 4.441482e-17 -51 5.127740e-17 -50 5.942283e-17 -49 6.915141e-17 -48 8.082850e-17 -47 9.495902e-17 -46 1.121535e-16 -45 1.332775e-16 -44 1.594011e-16 -43 1.922017e-16 -42 2.339719e-16 -41 2.884628e-16 -40 3.609989e-16 -39 4.603208e-16 -38 5.961080e-16 -37 7.885334e-16 -36 1.042422e-15 -35 1.245321e-15 -34 9.557339e-16 -33 6.653920e-17 -1.591481e-03 0.000000e+00 54 -88 1.377642e-18 -87 1.439898e-18 -86 1.570833e-18 -85 1.714861e-18 -84 1.873464e-18 -83 2.048275e-18 -82 2.241118e-18 -81 2.454090e-18 -80 2.689598e-18 -79 2.950201e-18 -78 3.238792e-18 -77 3.558772e-18 -76 3.913413e-18 -75 4.307643e-18 -74 4.747128e-18 -73 5.237125e-18 -72 5.783493e-18 -71 6.394391e-18 -70 7.079227e-18 -69 7.847357e-18 -68 8.709955e-18 -67 9.680401e-18 -66 1.077343e-17 -65 1.200815e-17 -64 1.340721e-17 -63 1.499387e-17 -62 1.679440e-17 -61 1.884533e-17 -60 2.118894e-17 -59 2.387335e-17 -58 2.695540e-17 -57 3.050350e-17 -56 3.459585e-17 -55 3.933587e-17 -54 4.484527e-17 -53 5.127608e-17 -52 5.881367e-17 -51 6.768818e-17 -50 7.817716e-17 -49 9.064902e-17 -48 1.055736e-16 -47 1.236346e-16 -46 1.457158e-16 -45 1.731555e-16 -44 2.077377e-16 -43 2.520029e-16 -42 3.082159e-16 -41 3.816716e-16 -40 4.763486e-16 -39 5.893299e-16 -38 6.795570e-16 -37 6.434829e-16 -36 2.519474e-16 -35 1.896969e-19 -1.115977e-03 0.000000e+00 51 -88 1.856335e-18 -87 1.939919e-18 -86 2.115969e-18 -85 2.309556e-18 -84 2.522657e-18 -83 2.757443e-18 -82 3.016333e-18 -81 3.302111e-18 -80 3.617964e-18 -79 3.967276e-18 -78 4.353860e-18 -77 4.782200e-18 -76 5.256577e-18 -75 5.783477e-18 -74 6.370333e-18 -73 7.023989e-18 -72 7.752043e-18 -71 8.565101e-18 -70 9.475360e-18 -69 1.049483e-17 -68 1.163781e-17 -67 1.292138e-17 -66 1.436419e-17 -65 1.599007e-17 -64 1.782761e-17 -63 1.990579e-17 -62 2.225698e-17 -61 2.492646e-17 -60 2.796639e-17 -59 3.143629e-17 -58 3.540843e-17 -57 3.996570e-17 -56 4.520384e-17 -55 5.125085e-17 -54 5.825892e-17 -53 6.642889e-17 -52 7.601960e-17 -51 8.737339e-17 -50 1.009381e-16 -49 1.173400e-16 -48 1.373077e-16 -47 1.616311e-16 -46 1.913634e-16 -45 2.281365e-16 -44 2.730401e-16 -43 3.251947e-16 -42 3.749540e-16 -41 3.973950e-16 -40 3.490771e-16 -39 1.414506e-16 -38 1.027531e-18 -7.783891e-04 0.000000e+00 47 -88 2.494701e-18 -87 2.606234e-18 -86 2.841829e-18 -85 3.100726e-18 -84 3.385518e-18 -83 3.699047e-18 -82 4.044475e-18 -81 4.425427e-18 -80 4.846050e-18 -79 5.310717e-18 -78 5.824346e-18 -77 6.392701e-18 -76 7.021225e-18 -75 7.718234e-18 -74 8.493218e-18 -73 9.354768e-18 -72 1.031215e-17 -71 1.137871e-17 -70 1.256973e-17 -69 1.389994e-17 -68 1.538687e-17 -67 1.705137e-17 -66 1.891613e-17 -65 2.101115e-17 -64 2.337207e-17 -63 2.603344e-17 -62 2.903483e-17 -61 3.243230e-17 -60 3.629158e-17 -59 4.069195e-17 -58 4.573482e-17 -57 5.154469e-17 -56 5.827657e-17 -55 6.614587e-17 -54 7.541843e-17 -53 8.635549e-17 -52 9.924740e-17 -51 1.145066e-16 -50 1.326486e-16 -49 1.541000e-16 -48 1.787646e-16 -47 2.049028e-16 -46 2.266734e-16 -45 2.337172e-16 -44 2.111703e-16 -43 1.246912e-16 -42 1.270829e-17 -5.401877e-04 0.000000e+00 43 -88 3.345317e-18 -87 3.492808e-18 -86 3.806136e-18 -85 4.150019e-18 -84 4.527777e-18 -83 4.943031e-18 -82 5.399785e-18 -81 5.902614e-18 -80 6.456686e-18 -79 7.067322e-18 -78 7.740695e-18 -77 8.483914e-18 -76 9.303543e-18 -75 1.020983e-17 -74 1.121444e-17 -73 1.232770e-17 -72 1.356122e-17 -71 1.493161e-17 -70 1.645718e-17 -69 1.815588e-17 -68 2.004922e-17 -67 2.216296e-17 -66 2.452713e-17 -65 2.718291e-17 -64 3.018287e-17 -63 3.358115e-17 -62 3.744667e-17 -61 4.187571e-17 -60 4.698480e-17 -59 5.287233e-17 -58 5.964839e-17 -57 6.745458e-17 -56 7.647879e-17 -55 8.690495e-17 -54 9.881232e-17 -53 1.119668e-16 -52 1.253034e-16 -51 1.362318e-16 -50 1.405661e-16 -49 1.335571e-16 -48 1.046741e-16 -47 4.252762e-17 -46 1.396932e-18 -3.755423e-04 0.000000e+00 38 -88 4.451986e-18 -87 4.642916e-18 -86 5.053194e-18 -85 5.502396e-18 -84 5.994578e-18 -83 6.534131e-18 -82 7.125894e-18 -81 7.775391e-18 -80 8.488943e-18 -79 9.273403e-18 -78 1.013599e-17 -77 1.108525e-17 -76 1.212912e-17 -75 1.328028e-17 -74 1.455330e-17 -73 1.596213e-17 -72 1.752307e-17 -71 1.926114e-17 -70 2.120457e-17 -69 2.338494e-17 -68 2.584081e-17 -67 2.862180e-17 -66 3.177187e-17 -65 3.533413e-17 -64 3.936391e-17 -63 4.392591e-17 -62 4.909819e-17 -61 5.494685e-17 -60 6.149599e-17 -59 6.861880e-17 -58 7.589516e-17 -57 8.231690e-17 -56 8.619366e-17 -55 8.572447e-17 -54 7.841916e-17 -53 5.858034e-17 -52 2.327706e-17 -51 1.013111e-18 -2.604210e-04 0.000000e+00 32 -88 5.866557e-18 -87 6.106205e-18 -86 6.632612e-18 -85 7.207315e-18 -84 7.835278e-18 -83 8.521909e-18 -82 9.273089e-18 -81 1.009617e-17 -80 1.099991e-17 -79 1.199449e-17 -78 1.309162e-17 -77 1.430538e-17 -76 1.565142e-17 -75 1.715213e-17 -74 1.883536e-17 -73 2.071924e-17 -72 2.281896e-17 -71 2.515990e-17 -70 2.777610e-17 -69 3.070397e-17 -68 3.397137e-17 -67 3.758714e-17 -66 4.150894e-17 -65 4.561717e-17 -64 4.956399e-17 -63 5.274960e-17 -62 5.429482e-17 -61 5.342530e-17 -60 4.895279e-17 -59 3.824939e-17 -58 1.929627e-17 -57 2.432151e-18 -1.809807e-04 0.000000e+00 26 -88 7.592980e-18 -87 7.888459e-18 -86 8.556048e-18 -85 9.288270e-18 -84 1.009439e-17 -83 1.098453e-17 -82 1.197111e-17 -81 1.306632e-17 -80 1.427829e-17 -79 1.561692e-17 -78 1.709318e-17 -77 1.872481e-17 -76 2.052782e-17 -75 2.251381e-17 -74 2.468767e-17 -73 2.701513e-17 -72 2.942411e-17 -71 3.172840e-17 -70 3.364023e-17 -69 3.471978e-17 -68 3.457720e-17 -67 3.276150e-17 -66 2.829395e-17 -65 1.968015e-17 -64 7.587204e-18 -63 4.703211e-19 -1.240852e-04 0.000000e+00 19 -88 9.950559e-18 -87 1.036907e-17 -86 1.127725e-17 -85 1.227290e-17 -84 1.336598e-17 -83 1.456041e-17 -82 1.585559e-17 -81 1.723654e-17 -80 1.866989e-17 -79 2.006860e-17 -78 2.129157e-17 -77 2.212961e-17 -76 2.235521e-17 -75 2.178828e-17 -74 2.012187e-17 -73 1.670131e-17 -72 1.085034e-17 -71 3.681783e-18 -70 1.749193e-19 -8.367354e-05 0.000000e+00 11 -88 1.309575e-17 -87 1.334854e-17 -86 1.399277e-17 -85 1.435186e-17 -84 1.431876e-17 -83 1.378977e-17 -82 1.256669e-17 -81 1.026867e-17 -80 6.583733e-18 -79 2.271788e-18 -78 1.289643e-19 -6.065927e-05 0.000000e+00 4 -88 7.779861e-18 -87 4.953944e-18 -86 1.970153e-18 -85 1.838706e-19 -4.217321e-05 0.000000e+00 1 -88 0.000000e+00 -2.933367e-05 0.000000e+00 1 -88 0.000000e+00 -2.036759e-05 0.000000e+00 1 -88 0.000000e+00 -1.419057e-05 0.000000e+00 1 -88 0.000000e+00 -9.924416e-06 0.000000e+00 1 -88 0.000000e+00 -6.861515e-06 0.000000e+00 1 -88 0.000000e+00 -4.769657e-06 0.000000e+00 1 -88 0.000000e+00 -3.318614e-06 0.000000e+00 1 -88 0.000000e+00 -2.321832e-06 0.000000e+00 1 -88 0.000000e+00 -1.581567e-06 0.000000e+00 1 -88 0.000000e+00 -1.113845e-06 0.000000e+00 1 -88 0.000000e+00 -7.051706e-07 0.000000e+00 1 -88 0.000000e+00 -5.413280e-07 0.000000e+00 1 -88 0.000000e+00 diff --git a/util/EMPIRICAL/srcIE/data/iz94.cofcnts b/util/EMPIRICAL/srcIE/data/iz94.cofcnts deleted file mode 100644 index 37a40d25..00000000 --- a/util/EMPIRICAL/srcIE/data/iz94.cofcnts +++ /dev/null @@ -1,1680 +0,0 @@ -nebh1.pot - NORTHERN, EQUINOX H0 COEFFICIENT (FREE PARAMETER) FOR BZ < 0 - N E 90.00 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 -7.3363 - N E 89.00 -6.9944 -6.8574 -6.7463 -6.6750 -6.6487 -6.6709 -6.7417 -6.8568 -7.0061 -7.1792 -7.3640 -7.5447 -7.7090 -7.8486 -7.9498 -8.0070 -8.0177 -7.9813 -7.9021 -7.7867 -7.6422 -7.4805 -7.3131 -7.1492 - N E 88.00 -6.3531 -6.0707 -5.8499 -5.7137 -5.6733 -5.7298 -5.8814 -6.1195 -6.4258 -6.7824 -7.1526 -7.5154 -7.8376 -8.1101 -8.3134 -8.4282 -8.4493 -8.3691 -8.2008 -7.9594 -7.6564 -7.3300 -6.9945 -6.6705 - N E 87.00 -5.4893 -5.0498 -4.7196 -4.5266 -4.4832 -4.5987 -4.8525 -5.2326 -5.7103 -6.2584 -6.8299 -7.3708 -7.8449 -8.2440 -8.5391 -8.6962 -8.7111 -8.5655 -8.2953 -7.9136 -7.4228 -6.8903 -6.3978 -5.9466 - N E 86.00 -4.3434 -3.6874 -3.2701 -3.0379 -3.0500 -3.2884 -3.6762 -4.2043 -4.8612 -5.6134 -6.4059 -7.1231 -7.7230 -8.2371 -8.6138 -8.8208 -8.8115 -8.5684 -8.1651 -7.6147 -6.8673 -6.0449 -5.4339 -4.9453 - N E 85.00 -2.9056 -1.8638 -1.4704 -1.2291 -1.3849 -1.8369 -2.3602 -3.0356 -3.9059 -4.8510 -5.8973 -6.7858 -7.4756 -8.0887 -8.5441 -8.7948 -8.7495 -8.3377 -7.7829 -7.0557 -5.9958 -4.6513 -3.9661 -3.6142 - N E 84.00 -1.4420 -0.2708 0.2740 0.7603 0.4994 -0.2438 -0.7717 -1.7315 -2.8705 -4.0738 -5.4301 -6.5440 -7.3530 -8.1510 -8.5924 -8.7723 -8.6686 -8.0803 -7.5400 -6.8430 -5.5320 -3.7968 -2.7815 -2.2908 - N E 83.00 0.0037 1.3717 1.9959 2.5886 2.2219 1.2324 0.5994 -0.6060 -1.9881 -3.4158 -5.0542 -6.3970 -7.3478 -8.2760 -8.7143 -8.8658 -8.7600 -8.0668 -7.4937 -6.7625 -5.2356 -3.1156 -1.7655 -1.0934 - N E 82.00 1.5181 3.1278 3.7129 4.2792 3.8113 2.6328 1.8085 0.3607 -1.2293 -2.8333 -4.7397 -6.3239 -7.4401 -8.4556 -8.8821 -9.0262 -8.9824 -8.2638 -7.6261 -6.7911 -5.0372 -2.7011 -0.9818 0.0118 - N E 81.00 3.2384 4.8942 5.3713 5.8395 5.3417 4.0404 2.8810 1.1900 -0.5665 -2.2964 -4.4758 -6.3046 -7.6259 -8.6769 -9.0689 -9.2140 -9.3003 -8.6611 -7.9129 -6.9090 -4.9659 -2.6524 -0.5339 1.0352 - N E 80.00 5.2847 6.5574 6.9139 7.1886 6.8054 5.4845 3.7930 1.9031 0.0150 -1.7860 -4.2471 -6.3258 -7.9201 -8.9227 -9.2561 -9.4124 -9.7138 -9.2982 -8.3507 -7.0583 -4.9821 -3.2346 -0.6218 1.9412 - N E 79.00 6.0262 7.5323 7.8650 7.9979 7.5942 6.1919 4.2357 2.2409 0.2903 -1.5332 -4.0275 -6.1214 -7.8081 -8.7718 -9.1770 -9.4209 -9.8444 -9.7106 -8.7788 -7.2567 -5.1877 -3.5618 -0.6859 2.2427 - N E 78.00 5.8275 7.9085 8.3144 8.2689 7.7321 6.2989 4.2938 2.2483 0.2863 -1.5125 -3.7961 -5.7125 -7.3585 -8.2554 -8.8579 -9.2504 -9.6987 -9.9347 -9.1940 -7.2377 -5.1219 -3.5258 -0.8765 2.2052 - N E 77.00 4.7602 7.7642 8.3370 8.0791 7.2984 5.8859 4.0296 1.9915 0.0618 -1.7091 -3.5615 -5.1100 -6.6143 -7.3991 -8.3375 -8.9450 -9.2722 -9.9813 -9.6321 -7.4595 -5.0536 -3.5003 -1.3029 1.6517 - N E 76.00 4.5888 7.5175 8.2504 8.1049 7.2125 5.5343 3.5982 1.5343 -0.4064 -1.9537 -3.4250 -4.6269 -5.8290 -6.5791 -7.6253 -8.2904 -8.7254 -9.6241 -9.8079 -7.8267 -6.1380 -4.3543 -1.6384 1.4269 - N E 75.00 4.5887 7.4661 8.1745 8.2395 7.3545 5.2313 3.0584 0.9073 -1.0853 -2.2496 -3.3571 -4.2339 -5.0001 -5.8053 -6.7750 -7.3786 -8.0886 -8.9325 -9.7449 -7.9541 -7.1148 -5.1674 -1.8590 1.2306 - N E 74.00 4.4665 7.1919 7.9660 7.9633 6.9377 4.5829 2.3953 0.3271 -1.5073 -2.3809 -3.1688 -3.7833 -4.2351 -5.0800 -6.0818 -6.5809 -7.2841 -8.0832 -8.9680 -7.7585 -7.2872 -5.5131 -2.2175 0.9206 - N E 73.00 4.3412 6.7663 7.6259 7.3317 6.0018 3.7905 1.6596 -0.2487 -1.7182 -2.3732 -2.8933 -3.2909 -3.4923 -4.2933 -5.3114 -5.6178 -6.1832 -7.1294 -8.1128 -7.4287 -7.3454 -5.7804 -2.7723 0.4977 - N E 72.00 4.2269 6.0561 7.0522 6.4179 4.7840 2.8516 0.8092 -0.8122 -1.7689 -2.2691 -2.5362 -2.7612 -2.7644 -3.3426 -4.0844 -4.2784 -4.8249 -6.2133 -7.3686 -7.0671 -7.3189 -5.9799 -3.3560 0.0555 - N E 71.00 4.1548 5.1613 6.3314 5.3191 3.3238 1.8052 -0.1025 -1.3485 -1.7130 -2.0993 -2.1023 -2.1969 -2.0522 -2.3657 -2.7967 -3.1846 -3.9298 -5.3735 -6.3299 -6.5951 -7.2234 -6.1092 -4.0700 -0.4586 - N E 70.00 3.4934 4.1530 5.2414 4.1322 2.2066 0.9746 -0.7129 -1.6545 -1.6440 -1.9277 -1.7560 -1.7395 -1.4709 -1.5825 -1.8240 -2.3235 -3.1759 -4.4088 -4.8346 -5.9092 -6.9108 -6.1327 -4.5827 -1.1451 - N E 69.00 2.2445 3.0431 3.9904 3.0446 1.3416 0.3171 -1.0902 -1.7859 -1.5461 -1.7507 -1.4828 -1.3704 -1.0101 -0.9464 -1.0413 -1.5071 -2.3202 -3.2986 -3.6241 -5.3641 -6.5857 -6.0587 -4.8419 -1.8933 - N E 68.00 0.5961 1.8629 2.5442 1.9486 0.5478 -0.2587 -1.3114 -1.7621 -1.4241 -1.5710 -1.2700 -1.0801 -0.6575 -0.4215 -0.3919 -0.7810 -1.5208 -2.4500 -3.0924 -4.9816 -6.2999 -5.9615 -4.9656 -2.6592 - N E 67.00 -1.2358 0.6667 0.9227 0.9184 -0.1456 -0.7587 -1.4093 -1.6093 -1.2858 -1.3720 -1.0604 -0.8250 -0.4011 -0.0052 0.1052 -0.1243 -0.6686 -1.5957 -2.6266 -4.4875 -5.8181 -5.8369 -4.9715 -3.3969 - N E 66.00 -2.2631 -0.2454 -0.0321 0.2297 -0.6593 -1.0599 -1.3959 -1.4721 -1.1290 -1.1672 -0.8492 -0.6120 -0.2259 0.2373 0.4285 0.3924 0.1070 -0.6907 -2.0872 -3.9538 -5.3626 -5.7035 -4.9506 -3.7815 - N E 65.00 -2.7288 -0.9148 -0.5995 -0.2971 -1.0485 -1.2323 -1.2888 -1.3270 -0.9402 -0.9781 -0.6991 -0.4686 -0.1301 0.3206 0.5984 0.7589 0.6729 -0.0142 -1.6472 -3.5407 -5.0843 -5.5757 -4.8963 -3.8950 - N E 64.00 -2.8558 -1.5114 -0.9939 -0.7031 -1.3948 -1.3172 -1.0080 -1.1291 -0.7018 -0.8016 -0.6061 -0.3884 -0.1104 0.2527 0.6269 0.9488 0.8206 0.4212 -1.2451 -3.1172 -4.8345 -5.4197 -4.8054 -3.7745 - N E 63.00 -3.3768 -1.9430 -1.2733 -0.9031 -2.1720 -1.4915 -0.9589 -1.0941 -0.4551 -0.6695 -0.4773 -0.3455 -0.1218 0.2613 0.6193 1.2170 1.2309 1.0487 -0.3705 -2.3495 -4.5873 -5.3926 -4.8934 -4.2347 - N E 62.00 -3.4007 -2.1243 -1.2428 -0.9250 -1.9913 -1.2411 -0.7236 -0.8365 -0.3392 -0.5321 -0.3783 -0.2361 -0.0236 0.2509 0.5101 1.0312 1.1603 0.9564 -0.2126 -2.2436 -4.3157 -4.8699 -4.2967 -3.9865 - N E 61.00 -3.3790 -2.2706 -1.1952 -0.9182 -1.7888 -0.9538 -0.4856 -0.6075 -0.2350 -0.4114 -0.2911 -0.1491 0.0434 0.2307 0.4085 0.8577 1.0557 0.8616 0.0279 -1.9265 -3.6465 -4.1732 -3.6860 -3.7253 - N E 60.00 -3.2922 -2.3532 -1.1162 -0.8703 -1.5316 -0.6412 -0.2779 -0.4130 -0.1478 -0.3042 -0.2136 -0.0845 0.0806 0.2004 0.3146 0.6864 0.9103 0.7427 0.2763 -1.4255 -2.5779 -3.3781 -3.0360 -3.4024 - N E 59.00 -3.0547 -2.3101 -0.9879 -0.7785 -1.1721 -0.3537 -0.1273 -0.2604 -0.0825 -0.2124 -0.1471 -0.0402 0.0910 0.1609 0.2271 0.5162 0.7302 0.6018 0.4174 -0.9433 -1.5661 -2.5635 -2.3428 -2.9490 - N E 58.00 -2.5421 -2.0046 -0.7819 -0.6214 -0.7714 -0.1582 -0.0408 -0.1475 -0.0393 -0.1327 -0.0909 -0.0147 0.0758 0.1120 0.1464 0.3444 0.5112 0.4281 0.4129 -0.5589 -0.8149 -1.7816 -1.5977 -2.3009 - N E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nebh2.pot - NORTHERN, EQUINOX H0 COEFFICIENT (FREE PARAMETER) FOR BZ > 0 - N E 90.00 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 -6.0137 - N E 89.00 -5.7391 -5.5986 -5.4847 -5.4071 -5.3721 -5.3813 -5.4361 -5.5324 -5.6625 -5.8150 -5.9797 -6.1428 -6.2952 -6.4295 -6.5360 -6.6088 -6.6429 -6.6350 -6.5847 -6.4944 -6.3711 -6.2225 -6.0609 -5.8960 - N E 88.00 -5.1541 -4.8660 -4.6452 -4.4991 -4.4419 -4.4723 -4.5928 -4.8004 -5.0790 -5.3957 -5.7252 -6.0438 -6.3343 -6.5850 -6.7930 -6.9415 -7.0129 -7.0008 -6.8996 -6.7140 -6.4612 -6.1576 -5.8255 -5.4810 - N E 87.00 -4.3170 -3.8976 -3.5785 -3.3766 -3.3116 -3.3776 -3.5718 -3.9161 -4.3682 -4.8665 -5.3670 -5.8348 -6.2408 -6.5765 -6.8674 -7.0952 -7.2017 -7.1830 -7.0315 -6.7325 -6.3236 -5.8496 -5.3385 -4.8116 - N E 86.00 -3.1301 -2.5973 -2.2094 -1.9787 -1.9561 -2.0915 -2.3723 -2.8761 -3.5378 -4.2271 -4.9033 -5.5234 -6.0161 -6.3830 -6.7417 -7.0847 -7.2104 -7.1553 -6.9657 -6.5208 -5.8935 -5.2248 -4.5402 -3.8096 - N E 85.00 -1.5060 -0.9149 -0.5198 -0.2699 -0.3919 -0.6374 -0.9666 -1.6621 -2.6255 -3.4996 -4.3495 -5.1360 -5.6961 -5.9931 -6.3999 -6.9497 -7.0389 -6.8984 -6.7193 -6.0279 -5.0904 -4.2229 -3.3896 -2.3971 - N E 84.00 -0.0487 0.9082 1.2349 1.3596 1.1090 0.8379 0.4689 -0.4728 -1.7587 -2.7353 -3.8008 -4.7284 -5.3332 -5.7930 -6.4034 -6.8228 -7.0407 -6.9112 -6.6100 -5.8050 -4.7117 -3.6106 -2.4415 -1.1113 - N E 83.00 1.3540 2.5918 2.9151 2.9290 2.5407 2.2145 1.7965 0.6149 -0.9610 -2.0923 -3.3546 -4.4738 -5.1798 -5.7506 -6.4835 -6.8822 -7.1780 -7.0807 -6.7316 -5.7720 -4.4784 -3.1323 -1.5955 0.0923 - N E 82.00 2.7210 4.1695 4.5280 4.4221 3.9240 3.5220 3.0206 1.6089 -0.2131 -1.5206 -2.9886 -4.3343 -5.1744 -5.8306 -6.6547 -7.0543 -7.4191 -7.4110 -7.0607 -5.9436 -4.4044 -2.8990 -0.9061 1.3614 - N E 81.00 4.0578 5.5925 6.0111 5.8116 5.2383 4.7609 4.1646 2.5418 0.5396 -0.9991 -2.6689 -4.2784 -5.2768 -6.0135 -6.9023 -7.3056 -7.7332 -7.8857 -7.5244 -6.3449 -4.5950 -3.0288 -0.4331 2.5811 - N E 80.00 5.3939 6.7847 7.4799 7.1566 6.5177 5.9470 5.2358 3.4061 1.3155 -0.5262 -2.3612 -4.2912 -5.4826 -6.3008 -7.2080 -7.6157 -8.0948 -8.5056 -8.1019 -6.9972 -5.1823 -3.6978 -0.1185 3.8542 - N E 79.00 6.1182 7.5159 8.4620 8.0461 7.3703 6.6352 5.7201 3.7674 1.6340 -0.2909 -2.1284 -4.0791 -5.3510 -6.2501 -7.1666 -7.6653 -8.2351 -8.8147 -8.5299 -7.4859 -5.6571 -4.1922 0.1385 4.7509 - N E 78.00 5.9739 7.6260 8.8481 8.4279 7.8260 6.9005 5.6652 3.6924 1.5881 -0.2634 -1.9671 -3.6725 -4.9485 -5.9237 -6.8109 -7.4948 -8.1755 -8.8300 -8.7573 -7.7646 -5.9633 -4.4050 0.0480 4.8375 - N E 77.00 5.0236 7.1631 8.6159 8.3172 7.9525 6.8170 5.1160 3.2461 1.2499 -0.4101 -1.8776 -3.0892 -4.3194 -5.3803 -6.1728 -7.1617 -7.9708 -8.5826 -8.7991 -7.8447 -6.1980 -4.1227 -0.6741 2.8846 - N E 76.00 3.6795 7.2542 8.5308 8.2280 8.1393 6.6944 4.6379 2.7305 0.8442 -0.6424 -1.7938 -2.7142 -3.7587 -4.7332 -5.5018 -6.6730 -7.6368 -8.3237 -8.6612 -7.9047 -6.6861 -4.9580 -1.8602 1.2335 - N E 75.00 3.0241 7.8171 8.5328 8.1325 8.3479 6.5161 4.2034 2.1889 0.4075 -0.9367 -1.7177 -2.5022 -3.2584 -4.0263 -4.8536 -6.0936 -7.2023 -8.0477 -8.4124 -7.8994 -6.9548 -5.5800 -2.5490 0.4682 - N E 74.00 2.9060 7.7188 8.0754 7.8090 8.0861 6.0435 3.7549 1.7673 0.0967 -1.1178 -1.6401 -2.2730 -2.8161 -3.4216 -4.2073 -5.4868 -6.6554 -7.5631 -8.0117 -7.7411 -6.9798 -5.8184 -3.0348 -0.0707 - N E 73.00 2.8042 7.1692 7.3091 7.3607 7.4397 5.3922 3.3187 1.4261 -0.1197 -1.2114 -1.5482 -2.0363 -2.4151 -2.8733 -3.5435 -4.8714 -6.0945 -6.9762 -7.5361 -7.5338 -6.9337 -5.8412 -3.2840 -0.6059 - N E 72.00 2.9477 6.2567 6.4577 6.9135 6.6372 4.6418 2.9037 1.1433 -0.2546 -1.2342 -1.4356 -1.7830 -2.0337 -2.3791 -2.8895 -4.2429 -5.4568 -6.2896 -7.0408 -7.3049 -6.8592 -5.7710 -3.2941 -0.8477 - N E 71.00 3.3680 5.4716 5.6623 6.5165 5.7327 3.8118 2.5073 0.8993 -0.3148 -1.1910 -1.2959 -1.4994 -1.6591 -1.9184 -2.2154 -3.5277 -4.5938 -5.4190 -6.5198 -7.0586 -6.7882 -5.7132 -3.2545 -0.9273 - N E 70.00 3.3354 4.7786 4.9610 5.8334 4.8848 3.1944 2.2192 0.7122 -0.3650 -1.1393 -1.1336 -1.2386 -1.3312 -1.5222 -1.6930 -2.8729 -3.7968 -4.6634 -6.0019 -6.7344 -6.5926 -5.6273 -3.2560 -0.9332 - N E 69.00 2.8824 4.0783 4.3857 5.1028 4.1566 2.7165 2.0124 0.5673 -0.4047 -1.0725 -0.9458 -0.9917 -1.0375 -1.1786 -1.2967 -2.2401 -3.0004 -3.9895 -5.4880 -6.3640 -6.3227 -5.4778 -3.2764 -0.8390 - N E 68.00 2.2734 3.4417 3.9138 4.3887 3.4753 2.3064 1.8690 0.4631 -0.4321 -0.9908 -0.7377 -0.7618 -0.7729 -0.8826 -1.0289 -1.6247 -2.1958 -3.4005 -4.9692 -5.8920 -5.9456 -5.2986 -3.2406 -0.6412 - N E 67.00 1.5873 2.8430 3.4948 3.6246 2.7680 1.9319 1.7949 0.4033 -0.4471 -0.8915 -0.5060 -0.5493 -0.5367 -0.6309 -0.8935 -1.0293 -1.4327 -2.9240 -4.4068 -5.2571 -5.4114 -5.1111 -3.2487 -0.3677 - N E 66.00 1.0795 2.3288 3.0706 3.0266 2.1999 1.4906 1.6292 0.3264 -0.4884 -0.7489 -0.3478 -0.3944 -0.3796 -0.4385 -0.7390 -0.6270 -0.9591 -2.5006 -3.8711 -4.6813 -4.9475 -4.9206 -3.2685 -0.2903 - N E 65.00 0.6439 1.8343 2.6111 2.5001 1.6799 0.8938 1.3203 0.2355 -0.5608 -0.5606 -0.2644 -0.2979 -0.3016 -0.3039 -0.5781 -0.4118 -0.7472 -2.1389 -3.4149 -4.1793 -4.5314 -4.7173 -3.2539 -0.4183 - N E 64.00 0.1781 1.2545 2.0269 1.9617 1.1786 0.0579 0.8292 0.1396 -0.6675 -0.3211 -0.2582 -0.2566 -0.3006 -0.2246 -0.4123 -0.3787 -0.7999 -1.8818 -3.2111 -3.7524 -4.0695 -4.4676 -3.2049 -0.8096 - N E 63.00 -0.3912 0.3265 1.5579 1.4486 0.4802 -0.7892 0.7881 0.0945 -0.7489 -0.2564 -0.1872 -0.2602 -0.3237 -0.1422 -0.3032 -0.2409 -0.5628 -1.8924 -3.0007 -3.0520 -3.3246 -4.3532 -3.2665 -0.7484 - N E 62.00 -0.6934 0.0726 1.5370 1.2772 0.3556 -0.0617 0.7771 0.1108 -0.4409 -0.1334 -0.0823 -0.1140 -0.2552 -0.1032 -0.2887 -0.2718 -0.5017 -1.4772 -2.3260 -2.3326 -3.1152 -3.7300 -3.0802 -0.8425 - N E 61.00 -1.1037 -0.2703 1.5185 1.0908 0.2313 0.4738 0.7419 0.1168 -0.2177 -0.0414 -0.0072 -0.0116 -0.1958 -0.0703 -0.2642 -0.2761 -0.4265 -1.1066 -1.7138 -1.6021 -2.8145 -2.9046 -2.8867 -0.9774 - N E 60.00 -1.7615 -0.8107 1.4577 0.8681 0.1049 0.8018 0.6688 0.1124 -0.0682 0.0190 0.0397 0.0518 -0.1447 -0.0439 -0.2295 -0.2562 -0.3446 -0.7916 -1.2045 -0.9752 -2.4253 -1.9610 -2.6484 -1.2142 - N E 59.00 -2.3116 -1.3567 1.2742 0.6063 -0.0059 0.8989 0.5527 0.0958 0.0172 0.0491 0.0601 0.0793 -0.1010 -0.0242 -0.1847 -0.2156 -0.2595 -0.5312 -0.7890 -0.4883 -1.9931 -1.1594 -2.3637 -1.4075 - N E 58.00 -2.4038 -1.4966 1.0037 0.3695 -0.0699 0.7581 0.3931 0.0691 0.0459 0.0503 0.0552 0.0733 -0.0633 -0.0117 -0.1293 -0.1554 -0.1736 -0.3225 -0.4691 -0.1779 -1.5029 -0.6083 -1.9784 -1.3667 - N E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -neby3.pot - NORTHERN, EQUINOX BY COEFFICIENT FOR BY < 0 AND BZ < 0 - N E 90.00 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 - N E 89.00 -1.7140 -1.7279 -1.7432 -1.7593 -1.7755 -1.7908 -1.8037 -1.8133 -1.8182 -1.8174 -1.8106 -1.7981 -1.7808 -1.7605 -1.7395 -1.7196 -1.7028 -1.6900 -1.6818 -1.6782 -1.6790 -1.6835 -1.6913 -1.7016 - N E 88.00 -1.6563 -1.6813 -1.7088 -1.7384 -1.7696 -1.8006 -1.8296 -1.8529 -1.8671 -1.8688 -1.8564 -1.8302 -1.7927 -1.7481 -1.7020 -1.6596 -1.6251 -1.6008 -1.5872 -1.5830 -1.5867 -1.5968 -1.6129 -1.6332 - N E 87.00 -1.5709 -1.6046 -1.6430 -1.6857 -1.7318 -1.7809 -1.8300 -1.8729 -1.9017 -1.9099 -1.8938 -1.8532 -1.7912 -1.7166 -1.6402 -1.5718 -1.5172 -1.4809 -1.4634 -1.4619 -1.4686 -1.4830 -1.5074 -1.5383 - N E 86.00 -1.4566 -1.4951 -1.5430 -1.6008 -1.6636 -1.7323 -1.8065 -1.8756 -1.9246 -1.9414 -1.9231 -1.8655 -1.7744 -1.6627 -1.5527 -1.4571 -1.3811 -1.3328 -1.3139 -1.3155 -1.3185 -1.3340 -1.3685 -1.4156 - N E 85.00 -1.3078 -1.3444 -1.4062 -1.4829 -1.5661 -1.6539 -1.7583 -1.8620 -1.9373 -1.9634 -1.9455 -1.8702 -1.7464 -1.5903 -1.4431 -1.3179 -1.2146 -1.1521 -1.1333 -1.1399 -1.1300 -1.1381 -1.1835 -1.2546 - N E 84.00 -1.1528 -1.2172 -1.2817 -1.3581 -1.4336 -1.5353 -1.6716 -1.8230 -1.9238 -1.9486 -1.9061 -1.7974 -1.6488 -1.4751 -1.3251 -1.1941 -1.0963 -1.0392 -1.0345 -1.0385 -1.0043 -0.9647 -0.9780 -1.0714 - N E 83.00 -0.9560 -1.0357 -1.1103 -1.2092 -1.3016 -1.4272 -1.5909 -1.7709 -1.8818 -1.8981 -1.8348 -1.7052 -1.5443 -1.3648 -1.2179 -1.0912 -1.0001 -0.9476 -0.9451 -0.9355 -0.8662 -0.7810 -0.7565 -0.8600 - N E 82.00 -0.7104 -0.7923 -0.8928 -1.0399 -1.1712 -1.3281 -1.5135 -1.7063 -1.8146 -1.8151 -1.7324 -1.5918 -1.4306 -1.2588 -1.1224 -1.0075 -0.9264 -0.8773 -0.8646 -0.8255 -0.7108 -0.5839 -0.5202 -0.6083 - N E 81.00 -0.3852 -0.4715 -0.6239 -0.8391 -1.0370 -1.2373 -1.4434 -1.6345 -1.7263 -1.7041 -1.6004 -1.4569 -1.3053 -1.1545 -1.0349 -0.9409 -0.8750 -0.8320 -0.7989 -0.7126 -0.5402 -0.3712 -0.2677 -0.3057 - N E 80.00 0.0135 -0.0900 -0.3276 -0.6094 -0.9016 -1.1597 -1.3827 -1.5537 -1.6165 -1.5665 -1.4383 -1.3009 -1.1665 -1.0534 -0.9548 -0.8920 -0.8469 -0.8161 -0.7475 -0.5849 -0.3423 -0.1402 -0.0148 0.0592 - N E 79.00 0.2793 0.1783 -0.1134 -0.4443 -0.7875 -1.0726 -1.2975 -1.4491 -1.4917 -1.4247 -1.2833 -1.1485 -1.0274 -0.9338 -0.8489 -0.8003 -0.7685 -0.7459 -0.6569 -0.4359 -0.1414 0.0374 0.1356 0.2570 - N E 78.00 0.4550 0.3497 0.0279 -0.3397 -0.6973 -0.9773 -1.1928 -1.3273 -1.3555 -1.2771 -1.1319 -0.9994 -0.8880 -0.7985 -0.7195 -0.6707 -0.6451 -0.6269 -0.5300 -0.3013 -0.0599 0.1201 0.2534 0.3940 - N E 77.00 0.5406 0.4169 0.1063 -0.2935 -0.6360 -0.8815 -1.0772 -1.1957 -1.2106 -1.1224 -0.9835 -0.8521 -0.7481 -0.6489 -0.5702 -0.5090 -0.4817 -0.4625 -0.3816 -0.1957 0.0244 0.2395 0.4201 0.4869 - N E 76.00 0.5464 0.4289 0.1582 -0.2471 -0.5625 -0.7745 -0.9496 -1.0561 -1.0606 -0.9689 -0.8325 -0.7041 -0.5962 -0.4918 -0.4128 -0.3628 -0.3556 -0.3594 -0.2928 -0.1217 0.1498 0.3451 0.4754 0.5110 - N E 75.00 0.5492 0.4228 0.1531 -0.2245 -0.4929 -0.6576 -0.8019 -0.9076 -0.9077 -0.8154 -0.6788 -0.5545 -0.4342 -0.3287 -0.2497 -0.2351 -0.2658 -0.3086 -0.2621 -0.1078 0.1868 0.3758 0.4869 0.5132 - N E 74.00 0.5594 0.4283 0.1553 -0.1828 -0.4086 -0.5664 -0.7114 -0.8049 -0.7879 -0.6902 -0.5584 -0.4401 -0.3187 -0.2261 -0.1693 -0.1700 -0.2124 -0.2633 -0.2190 -0.0735 0.1988 0.3781 0.4841 0.5216 - N E 73.00 0.5781 0.4519 0.1803 -0.1122 -0.3073 -0.4956 -0.6568 -0.7324 -0.6920 -0.5914 -0.4666 -0.3555 -0.2426 -0.1629 -0.1188 -0.1274 -0.1751 -0.2264 -0.1804 -0.0404 0.1993 0.3652 0.4713 0.5344 - N E 72.00 0.6015 0.4935 0.2460 -0.0082 -0.2122 -0.4323 -0.6145 -0.6814 -0.6253 -0.5170 -0.3958 -0.2949 -0.1987 -0.1300 -0.0932 -0.1065 -0.1536 -0.1971 -0.1487 -0.0069 0.1773 0.3358 0.4528 0.5504 - N E 71.00 0.6300 0.5410 0.3225 0.1100 -0.1172 -0.3785 -0.5882 -0.6504 -0.5798 -0.4585 -0.3409 -0.2542 -0.1823 -0.1281 -0.1035 -0.1123 -0.1510 -0.1762 -0.1158 0.0319 0.1551 0.3007 0.4279 0.5716 - N E 70.00 0.6457 0.5830 0.3892 0.1907 -0.0600 -0.3386 -0.5602 -0.6201 -0.5416 -0.4138 -0.3016 -0.2231 -0.1649 -0.1197 -0.1026 -0.1084 -0.1428 -0.1533 -0.0881 0.0353 0.1271 0.2596 0.4012 0.5721 - N E 69.00 0.6498 0.6217 0.4499 0.2464 -0.0284 -0.3134 -0.5335 -0.5888 -0.5052 -0.3798 -0.2761 -0.2000 -0.1472 -0.1060 -0.0929 -0.0953 -0.1246 -0.1257 -0.0782 0.0176 0.1045 0.2298 0.3788 0.5578 - N E 68.00 0.6425 0.6596 0.5167 0.2956 -0.0086 -0.2974 -0.5094 -0.5569 -0.4711 -0.3561 -0.2620 -0.1841 -0.1292 -0.0871 -0.0746 -0.0728 -0.0991 -0.1025 -0.0778 -0.0061 0.0809 0.2046 0.3577 0.5338 - N E 67.00 0.6286 0.6957 0.5871 0.3380 0.0032 -0.2876 -0.4868 -0.5251 -0.4417 -0.3396 -0.2560 -0.1727 -0.1107 -0.0631 -0.0483 -0.0400 -0.0613 -0.0780 -0.0847 -0.0492 0.0335 0.1681 0.3399 0.5040 - N E 66.00 0.6192 0.7020 0.6088 0.3511 0.0018 -0.2833 -0.4675 -0.4904 -0.4073 -0.3113 -0.2336 -0.1562 -0.0946 -0.0468 -0.0273 -0.0128 -0.0261 -0.0555 -0.0952 -0.0890 -0.0086 0.1341 0.3255 0.4856 - N E 65.00 0.6140 0.6930 0.6062 0.3453 -0.0080 -0.2806 -0.4474 -0.4488 -0.3644 -0.2724 -0.1974 -0.1364 -0.0806 -0.0377 -0.0110 0.0084 0.0018 -0.0436 -0.1061 -0.1154 -0.0384 0.1036 0.3126 0.4751 - N E 64.00 0.6110 0.6735 0.5900 0.3254 -0.0253 -0.2775 -0.4157 -0.3857 -0.3079 -0.2220 -0.1489 -0.1136 -0.0687 -0.0357 0.0013 0.0221 0.0145 -0.0423 -0.1183 -0.1333 -0.0665 0.0657 0.2980 0.4694 - N E 63.00 0.6384 0.6917 0.5983 0.3058 -0.0604 -0.3129 -0.4318 -0.3818 -0.2949 -0.2009 -0.1227 -0.0968 -0.0606 -0.0338 0.0133 0.0481 0.0403 -0.0359 -0.1278 -0.1423 -0.0835 0.0152 0.2683 0.4552 - N E 62.00 0.5545 0.5949 0.5004 0.2262 -0.0784 -0.2732 -0.3294 -0.2917 -0.2201 -0.1485 -0.0926 -0.0772 -0.0526 -0.0241 0.0191 0.0452 0.0391 -0.0276 -0.0968 -0.1210 -0.0763 0.0184 0.2316 0.4029 - N E 61.00 0.4793 0.4948 0.3895 0.1405 -0.0945 -0.2252 -0.2288 -0.2098 -0.1555 -0.1047 -0.0671 -0.0597 -0.0441 -0.0163 0.0219 0.0412 0.0367 -0.0187 -0.0591 -0.0890 -0.0691 0.0156 0.1933 0.3521 - N E 60.00 0.3992 0.3884 0.2742 0.0516 -0.1068 -0.1688 -0.1410 -0.1401 -0.1023 -0.0688 -0.0458 -0.0442 -0.0355 -0.0104 0.0219 0.0356 0.0326 -0.0102 -0.0199 -0.0496 -0.0611 0.0084 0.1508 0.2956 - N E 59.00 0.3047 0.2757 0.1642 -0.0324 -0.1099 -0.1101 -0.0752 -0.0860 -0.0619 -0.0417 -0.0289 -0.0308 -0.0267 -0.0060 0.0194 0.0286 0.0269 -0.0040 0.0071 -0.0174 -0.0511 0.0004 0.1059 0.2292 - N E 58.00 0.2095 0.1741 0.0787 -0.0835 -0.0962 -0.0629 -0.0337 -0.0472 -0.0333 -0.0225 -0.0164 -0.0192 -0.0177 -0.0031 0.0144 0.0200 0.0193 -0.0004 0.0183 0.0013 -0.0392 -0.0056 0.0615 0.1585 - N E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -neby4.pot - NORTHERN, EQUINOX BY COEFFICIENT FOR BY < 0 AND BZ > 0 - N E 90.00 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 - N E 89.00 -1.7942 -1.8024 -1.8103 -1.8178 -1.8247 -1.8308 -1.8356 -1.8386 -1.8390 -1.8363 -1.8302 -1.8208 -1.8089 -1.7953 -1.7819 -1.7701 -1.7611 -1.7558 -1.7543 -1.7564 -1.7616 -1.7688 -1.7771 -1.7857 - N E 88.00 -1.7668 -1.7799 -1.7924 -1.8047 -1.8173 -1.8298 -1.8416 -1.8512 -1.8563 -1.8544 -1.8443 -1.8252 -1.7985 -1.7671 -1.7356 -1.7084 -1.6890 -1.6790 -1.6783 -1.6864 -1.7005 -1.7177 -1.7355 -1.7520 - N E 87.00 -1.7181 -1.7338 -1.7496 -1.7662 -1.7840 -1.8034 -1.8244 -1.8444 -1.8583 -1.8613 -1.8499 -1.8218 -1.7775 -1.7228 -1.6679 -1.6226 -1.5913 -1.5758 -1.5760 -1.5937 -1.6204 -1.6496 -1.6771 -1.6998 - N E 86.00 -1.6413 -1.6573 -1.6763 -1.6990 -1.7235 -1.7502 -1.7838 -1.8198 -1.8467 -1.8584 -1.8490 -1.8129 -1.7477 -1.6623 -1.5787 -1.5134 -1.4690 -1.4476 -1.4480 -1.4751 -1.5149 -1.5574 -1.5945 -1.6225 - N E 85.00 -1.5298 -1.5441 -1.5696 -1.6022 -1.6379 -1.6702 -1.7197 -1.7792 -1.8232 -1.8464 -1.8428 -1.8015 -1.7117 -1.5865 -1.4674 -1.3807 -1.3205 -1.2942 -1.2948 -1.3300 -1.3805 -1.4350 -1.4796 -1.5110 - N E 84.00 -1.4134 -1.4050 -1.4252 -1.4771 -1.5197 -1.5554 -1.6124 -1.6844 -1.7461 -1.7702 -1.7580 -1.6954 -1.5999 -1.4738 -1.3589 -1.2703 -1.2182 -1.2005 -1.2119 -1.2538 -1.3168 -1.3668 -1.4028 -1.4165 - N E 83.00 -1.2781 -1.2505 -1.2631 -1.3292 -1.3763 -1.4133 -1.4742 -1.5534 -1.6229 -1.6482 -1.6331 -1.5662 -1.4745 -1.3572 -1.2519 -1.1693 -1.1243 -1.1131 -1.1277 -1.1704 -1.2388 -1.2887 -1.3146 -1.3073 - N E 82.00 -1.1167 -1.0754 -1.0835 -1.1601 -1.2076 -1.2479 -1.3117 -1.3932 -1.4601 -1.4839 -1.4732 -1.4159 -1.3363 -1.2367 -1.1491 -1.0785 -1.0394 -1.0303 -1.0414 -1.0801 -1.1513 -1.1992 -1.2097 -1.1658 - N E 81.00 -0.9228 -0.8817 -0.8986 -0.9710 -1.0177 -1.0655 -1.1313 -1.2069 -1.2592 -1.2827 -1.2803 -1.2430 -1.1839 -1.1140 -1.0513 -0.9984 -0.9639 -0.9543 -0.9617 -0.9847 -1.0398 -1.0796 -1.0657 -0.9915 - N E 80.00 -0.6784 -0.6659 -0.7013 -0.7546 -0.8038 -0.8682 -0.9334 -0.9964 -1.0224 -1.0471 -1.0540 -1.0498 -1.0146 -0.9893 -0.9595 -0.9304 -0.8981 -0.8871 -0.8886 -0.8741 -0.8735 -0.9168 -0.8845 -0.7735 - N E 79.00 -0.4306 -0.4588 -0.5347 -0.5929 -0.6539 -0.7319 -0.7919 -0.8389 -0.8473 -0.8617 -0.8632 -0.8653 -0.8405 -0.8361 -0.8228 -0.8073 -0.7843 -0.7796 -0.7747 -0.7340 -0.6976 -0.7318 -0.7003 -0.5314 - N E 78.00 -0.1763 -0.2792 -0.4121 -0.4895 -0.5650 -0.6483 -0.7000 -0.7276 -0.7210 -0.7158 -0.7017 -0.6897 -0.6651 -0.6572 -0.6462 -0.6370 -0.6286 -0.6360 -0.6263 -0.5755 -0.5141 -0.5027 -0.4381 -0.1945 - N E 77.00 -0.0091 -0.1671 -0.3468 -0.4445 -0.5329 -0.6126 -0.6511 -0.6549 -0.6362 -0.6032 -0.5650 -0.5208 -0.4895 -0.4581 -0.4360 -0.4318 -0.4480 -0.4689 -0.4509 -0.3928 -0.2938 -0.1713 0.0367 0.1341 - N E 76.00 0.0819 -0.1181 -0.3136 -0.4094 -0.4999 -0.5665 -0.5974 -0.5858 -0.5553 -0.5042 -0.4485 -0.3931 -0.3591 -0.3206 -0.2954 -0.2993 -0.3297 -0.3583 -0.3443 -0.2884 -0.1793 -0.0436 0.1335 0.2174 - N E 75.00 0.0888 -0.1274 -0.3097 -0.3847 -0.4691 -0.5140 -0.5415 -0.5229 -0.4824 -0.4198 -0.3532 -0.3011 -0.2691 -0.2356 -0.2169 -0.2289 -0.2631 -0.2969 -0.2925 -0.2533 -0.1592 -0.0231 0.1588 0.2206 - N E 74.00 0.1157 -0.0931 -0.2563 -0.3321 -0.4207 -0.4673 -0.4937 -0.4725 -0.4261 -0.3583 -0.2883 -0.2368 -0.2054 -0.1762 -0.1612 -0.1778 -0.2136 -0.2502 -0.2530 -0.2223 -0.1397 -0.0049 0.1694 0.2389 - N E 73.00 0.1768 -0.0231 -0.1722 -0.2636 -0.3626 -0.4274 -0.4548 -0.4314 -0.3807 -0.3138 -0.2460 -0.1949 -0.1626 -0.1370 -0.1250 -0.1459 -0.1842 -0.2194 -0.2256 -0.1963 -0.1222 0.0105 0.1718 0.2626 - N E 72.00 0.2588 0.0656 -0.0829 -0.1962 -0.3064 -0.3951 -0.4230 -0.3975 -0.3440 -0.2824 -0.2204 -0.1694 -0.1357 -0.1149 -0.1066 -0.1292 -0.1669 -0.1992 -0.2075 -0.1726 -0.1079 0.0216 0.1768 0.2862 - N E 71.00 0.3109 0.1347 -0.0032 -0.1335 -0.2499 -0.3684 -0.3958 -0.3685 -0.3138 -0.2616 -0.2089 -0.1580 -0.1224 -0.1077 -0.1036 -0.1250 -0.1576 -0.1853 -0.1967 -0.1492 -0.0975 0.0290 0.1820 0.3115 - N E 70.00 0.3356 0.1780 0.0542 -0.0842 -0.2149 -0.3498 -0.3780 -0.3479 -0.2925 -0.2460 -0.1996 -0.1485 -0.1120 -0.1008 -0.0993 -0.1184 -0.1460 -0.1706 -0.1845 -0.1318 -0.0863 0.0338 0.1861 0.3279 - N E 69.00 0.3435 0.2089 0.0946 -0.0494 -0.1970 -0.3382 -0.3670 -0.3339 -0.2790 -0.2353 -0.1927 -0.1410 -0.1041 -0.0943 -0.0942 -0.1096 -0.1313 -0.1544 -0.1712 -0.1196 -0.0760 0.0384 0.1890 0.3296 - N E 68.00 0.3396 0.2298 0.1244 -0.0216 -0.1879 -0.3315 -0.3611 -0.3257 -0.2739 -0.2299 -0.1887 -0.1357 -0.0986 -0.0879 -0.0885 -0.0984 -0.1130 -0.1363 -0.1564 -0.1117 -0.0661 0.0417 0.1943 0.3239 - N E 67.00 0.3293 0.2458 0.1499 0.0052 -0.1835 -0.3282 -0.3606 -0.3236 -0.2780 -0.2298 -0.1874 -0.1324 -0.0955 -0.0816 -0.0821 -0.0850 -0.0921 -0.1161 -0.1380 -0.1086 -0.0561 0.0403 0.1994 0.3132 - N E 66.00 0.3113 0.2456 0.1582 0.0165 -0.1836 -0.3235 -0.3506 -0.3101 -0.2666 -0.2195 -0.1756 -0.1235 -0.0890 -0.0733 -0.0733 -0.0721 -0.0780 -0.0991 -0.1214 -0.1114 -0.0592 0.0294 0.1926 0.2962 - N E 65.00 0.2847 0.2335 0.1543 0.0168 -0.1872 -0.3152 -0.3263 -0.2829 -0.2392 -0.1992 -0.1534 -0.1093 -0.0794 -0.0632 -0.0626 -0.0597 -0.0699 -0.0854 -0.1063 -0.1220 -0.0800 0.0078 0.1728 0.2723 - N E 64.00 0.2435 0.2076 0.1384 0.0026 -0.1950 -0.2974 -0.2836 -0.2412 -0.1965 -0.1696 -0.1212 -0.0902 -0.0670 -0.0515 -0.0501 -0.0478 -0.0681 -0.0770 -0.0967 -0.1436 -0.1380 -0.0340 0.1355 0.2372 - N E 63.00 0.2516 0.2002 0.1326 0.0002 -0.2130 -0.3328 -0.2867 -0.2367 -0.1847 -0.1619 -0.1084 -0.0797 -0.0569 -0.0419 -0.0405 -0.0336 -0.0377 -0.0371 -0.0691 -0.1733 -0.2043 -0.0855 0.1294 0.2669 - N E 62.00 0.2286 0.1508 0.0763 -0.0418 -0.1769 -0.2416 -0.2085 -0.1773 -0.1452 -0.1257 -0.0891 -0.0662 -0.0472 -0.0364 -0.0374 -0.0371 -0.0358 -0.0353 -0.0536 -0.1592 -0.1681 -0.0696 0.1315 0.2564 - N E 61.00 0.2019 0.0942 0.0158 -0.0843 -0.1374 -0.1618 -0.1439 -0.1279 -0.1106 -0.0948 -0.0711 -0.0535 -0.0381 -0.0306 -0.0333 -0.0373 -0.0328 -0.0319 -0.0394 -0.1409 -0.1276 -0.0541 0.1257 0.2414 - N E 60.00 0.1610 0.0192 -0.0579 -0.1283 -0.0961 -0.0957 -0.0925 -0.0876 -0.0807 -0.0684 -0.0543 -0.0415 -0.0296 -0.0247 -0.0283 -0.0346 -0.0284 -0.0274 -0.0277 -0.1196 -0.0861 -0.0398 0.1108 0.2117 - N E 59.00 0.1184 -0.0569 -0.1315 -0.1612 -0.0574 -0.0474 -0.0540 -0.0558 -0.0553 -0.0464 -0.0390 -0.0302 -0.0215 -0.0186 -0.0223 -0.0291 -0.0228 -0.0218 -0.0180 -0.0963 -0.0515 -0.0277 0.0931 0.1745 - N E 58.00 0.0781 -0.0971 -0.1560 -0.1577 -0.0280 -0.0182 -0.0279 -0.0319 -0.0339 -0.0282 -0.0249 -0.0195 -0.0139 -0.0124 -0.0154 -0.0210 -0.0161 -0.0152 -0.0106 -0.0695 -0.0265 -0.0189 0.0729 0.1316 - N E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -neby5.pot - NORTHERN, EQUINOX BY COEFFICIENT FOR BY > 0 AND BZ < 0 - N E 90.00 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 -1.7450 - N E 89.00 -1.7140 -1.7279 -1.7432 -1.7593 -1.7755 -1.7908 -1.8037 -1.8133 -1.8182 -1.8174 -1.8106 -1.7981 -1.7808 -1.7605 -1.7395 -1.7196 -1.7028 -1.6900 -1.6818 -1.6782 -1.6790 -1.6835 -1.6913 -1.7016 - N E 88.00 -1.6563 -1.6813 -1.7088 -1.7384 -1.7696 -1.8006 -1.8296 -1.8529 -1.8671 -1.8688 -1.8564 -1.8302 -1.7927 -1.7481 -1.7020 -1.6596 -1.6251 -1.6008 -1.5872 -1.5830 -1.5867 -1.5968 -1.6129 -1.6332 - N E 87.00 -1.5709 -1.6046 -1.6430 -1.6857 -1.7318 -1.7809 -1.8300 -1.8729 -1.9017 -1.9099 -1.8938 -1.8532 -1.7912 -1.7166 -1.6402 -1.5718 -1.5172 -1.4809 -1.4634 -1.4619 -1.4686 -1.4830 -1.5074 -1.5383 - N E 86.00 -1.4566 -1.4951 -1.5430 -1.6008 -1.6636 -1.7323 -1.8065 -1.8756 -1.9246 -1.9414 -1.9231 -1.8655 -1.7744 -1.6627 -1.5527 -1.4571 -1.3811 -1.3328 -1.3139 -1.3155 -1.3185 -1.3340 -1.3685 -1.4156 - N E 85.00 -1.3078 -1.3444 -1.4062 -1.4829 -1.5661 -1.6539 -1.7583 -1.8620 -1.9373 -1.9634 -1.9455 -1.8702 -1.7464 -1.5903 -1.4431 -1.3179 -1.2146 -1.1521 -1.1333 -1.1399 -1.1300 -1.1381 -1.1835 -1.2546 - N E 84.00 -1.1528 -1.2172 -1.2817 -1.3581 -1.4336 -1.5353 -1.6716 -1.8230 -1.9238 -1.9486 -1.9061 -1.7974 -1.6488 -1.4751 -1.3251 -1.1941 -1.0963 -1.0392 -1.0345 -1.0385 -1.0043 -0.9647 -0.9780 -1.0714 - N E 83.00 -0.9560 -1.0357 -1.1103 -1.2092 -1.3016 -1.4272 -1.5909 -1.7709 -1.8818 -1.8981 -1.8348 -1.7052 -1.5443 -1.3648 -1.2179 -1.0912 -1.0001 -0.9476 -0.9451 -0.9355 -0.8662 -0.7810 -0.7565 -0.8600 - N E 82.00 -0.7104 -0.7923 -0.8928 -1.0399 -1.1712 -1.3281 -1.5135 -1.7063 -1.8146 -1.8151 -1.7324 -1.5918 -1.4306 -1.2588 -1.1224 -1.0075 -0.9264 -0.8773 -0.8646 -0.8255 -0.7108 -0.5839 -0.5202 -0.6083 - N E 81.00 -0.3852 -0.4715 -0.6239 -0.8391 -1.0370 -1.2373 -1.4434 -1.6345 -1.7263 -1.7041 -1.6004 -1.4569 -1.3053 -1.1545 -1.0349 -0.9409 -0.8750 -0.8320 -0.7989 -0.7126 -0.5402 -0.3712 -0.2677 -0.3057 - N E 80.00 0.0135 -0.0900 -0.3276 -0.6094 -0.9016 -1.1597 -1.3827 -1.5537 -1.6165 -1.5665 -1.4383 -1.3009 -1.1665 -1.0534 -0.9548 -0.8920 -0.8469 -0.8161 -0.7475 -0.5849 -0.3423 -0.1402 -0.0148 0.0592 - N E 79.00 0.2793 0.1783 -0.1134 -0.4443 -0.7875 -1.0726 -1.2975 -1.4491 -1.4917 -1.4247 -1.2833 -1.1485 -1.0274 -0.9338 -0.8489 -0.8003 -0.7685 -0.7459 -0.6569 -0.4359 -0.1414 0.0374 0.1356 0.2570 - N E 78.00 0.4550 0.3497 0.0279 -0.3397 -0.6973 -0.9773 -1.1928 -1.3273 -1.3555 -1.2771 -1.1319 -0.9994 -0.8880 -0.7985 -0.7195 -0.6707 -0.6451 -0.6269 -0.5300 -0.3013 -0.0599 0.1201 0.2534 0.3940 - N E 77.00 0.5406 0.4169 0.1063 -0.2935 -0.6360 -0.8815 -1.0772 -1.1957 -1.2106 -1.1224 -0.9835 -0.8521 -0.7481 -0.6489 -0.5702 -0.5090 -0.4817 -0.4625 -0.3816 -0.1957 0.0244 0.2395 0.4201 0.4869 - N E 76.00 0.5464 0.4289 0.1582 -0.2471 -0.5625 -0.7745 -0.9496 -1.0561 -1.0606 -0.9689 -0.8325 -0.7041 -0.5962 -0.4918 -0.4128 -0.3628 -0.3556 -0.3594 -0.2928 -0.1217 0.1498 0.3451 0.4754 0.5110 - N E 75.00 0.5492 0.4228 0.1531 -0.2245 -0.4929 -0.6576 -0.8019 -0.9076 -0.9077 -0.8154 -0.6788 -0.5545 -0.4342 -0.3287 -0.2497 -0.2351 -0.2658 -0.3086 -0.2621 -0.1078 0.1868 0.3758 0.4869 0.5132 - N E 74.00 0.5594 0.4283 0.1553 -0.1828 -0.4086 -0.5664 -0.7114 -0.8049 -0.7879 -0.6902 -0.5584 -0.4401 -0.3187 -0.2261 -0.1693 -0.1700 -0.2124 -0.2633 -0.2190 -0.0735 0.1988 0.3781 0.4841 0.5216 - N E 73.00 0.5781 0.4519 0.1803 -0.1122 -0.3073 -0.4956 -0.6568 -0.7324 -0.6920 -0.5914 -0.4666 -0.3555 -0.2426 -0.1629 -0.1188 -0.1274 -0.1751 -0.2264 -0.1804 -0.0404 0.1993 0.3652 0.4713 0.5344 - N E 72.00 0.6015 0.4935 0.2460 -0.0082 -0.2122 -0.4323 -0.6145 -0.6814 -0.6253 -0.5170 -0.3958 -0.2949 -0.1987 -0.1300 -0.0932 -0.1065 -0.1536 -0.1971 -0.1487 -0.0069 0.1773 0.3358 0.4528 0.5504 - N E 71.00 0.6300 0.5410 0.3225 0.1100 -0.1172 -0.3785 -0.5882 -0.6504 -0.5798 -0.4585 -0.3409 -0.2542 -0.1823 -0.1281 -0.1035 -0.1123 -0.1510 -0.1762 -0.1158 0.0319 0.1551 0.3007 0.4279 0.5716 - N E 70.00 0.6457 0.5830 0.3892 0.1907 -0.0600 -0.3386 -0.5602 -0.6201 -0.5416 -0.4138 -0.3016 -0.2231 -0.1649 -0.1197 -0.1026 -0.1084 -0.1428 -0.1533 -0.0881 0.0353 0.1271 0.2596 0.4012 0.5721 - N E 69.00 0.6498 0.6217 0.4499 0.2464 -0.0284 -0.3134 -0.5335 -0.5888 -0.5052 -0.3798 -0.2761 -0.2000 -0.1472 -0.1060 -0.0929 -0.0953 -0.1246 -0.1257 -0.0782 0.0176 0.1045 0.2298 0.3788 0.5578 - N E 68.00 0.6425 0.6596 0.5167 0.2956 -0.0086 -0.2974 -0.5094 -0.5569 -0.4711 -0.3561 -0.2620 -0.1841 -0.1292 -0.0871 -0.0746 -0.0728 -0.0991 -0.1025 -0.0778 -0.0061 0.0809 0.2046 0.3577 0.5338 - N E 67.00 0.6286 0.6957 0.5871 0.3380 0.0032 -0.2876 -0.4868 -0.5251 -0.4417 -0.3396 -0.2560 -0.1727 -0.1107 -0.0631 -0.0483 -0.0400 -0.0613 -0.0780 -0.0847 -0.0492 0.0335 0.1681 0.3399 0.5040 - N E 66.00 0.6192 0.7020 0.6088 0.3511 0.0018 -0.2833 -0.4675 -0.4904 -0.4073 -0.3113 -0.2336 -0.1562 -0.0946 -0.0468 -0.0273 -0.0128 -0.0261 -0.0555 -0.0952 -0.0890 -0.0086 0.1341 0.3255 0.4856 - N E 65.00 0.6140 0.6930 0.6062 0.3453 -0.0080 -0.2806 -0.4474 -0.4488 -0.3644 -0.2724 -0.1974 -0.1364 -0.0806 -0.0377 -0.0110 0.0084 0.0018 -0.0436 -0.1061 -0.1154 -0.0384 0.1036 0.3126 0.4751 - N E 64.00 0.6110 0.6735 0.5900 0.3254 -0.0253 -0.2775 -0.4157 -0.3857 -0.3079 -0.2220 -0.1489 -0.1136 -0.0687 -0.0357 0.0013 0.0221 0.0145 -0.0423 -0.1183 -0.1333 -0.0665 0.0657 0.2980 0.4694 - N E 63.00 0.6384 0.6917 0.5983 0.3058 -0.0604 -0.3129 -0.4318 -0.3818 -0.2949 -0.2009 -0.1227 -0.0968 -0.0606 -0.0338 0.0133 0.0481 0.0403 -0.0359 -0.1278 -0.1423 -0.0835 0.0152 0.2683 0.4552 - N E 62.00 0.5545 0.5949 0.5004 0.2262 -0.0784 -0.2732 -0.3294 -0.2917 -0.2201 -0.1485 -0.0926 -0.0772 -0.0526 -0.0241 0.0191 0.0452 0.0391 -0.0276 -0.0968 -0.1210 -0.0763 0.0184 0.2316 0.4029 - N E 61.00 0.4793 0.4948 0.3895 0.1405 -0.0945 -0.2252 -0.2288 -0.2098 -0.1555 -0.1047 -0.0671 -0.0597 -0.0441 -0.0163 0.0219 0.0412 0.0367 -0.0187 -0.0591 -0.0890 -0.0691 0.0156 0.1933 0.3521 - N E 60.00 0.3992 0.3884 0.2742 0.0516 -0.1068 -0.1688 -0.1410 -0.1401 -0.1023 -0.0688 -0.0458 -0.0442 -0.0355 -0.0104 0.0219 0.0356 0.0326 -0.0102 -0.0199 -0.0496 -0.0611 0.0084 0.1508 0.2956 - N E 59.00 0.3047 0.2757 0.1642 -0.0324 -0.1099 -0.1101 -0.0752 -0.0860 -0.0619 -0.0417 -0.0289 -0.0308 -0.0267 -0.0060 0.0194 0.0286 0.0269 -0.0040 0.0071 -0.0174 -0.0511 0.0004 0.1059 0.2292 - N E 58.00 0.2095 0.1741 0.0787 -0.0835 -0.0962 -0.0629 -0.0337 -0.0472 -0.0333 -0.0225 -0.0164 -0.0192 -0.0177 -0.0031 0.0144 0.0200 0.0193 -0.0004 0.0183 0.0013 -0.0392 -0.0056 0.0615 0.1585 - N E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -neby6.pot - NORTHERN, EQUINOX BY COEFFICIENT FOR BY > 0 AND BZ > 0 - N E 90.00 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 -1.7982 - N E 89.00 -1.7942 -1.8024 -1.8103 -1.8178 -1.8247 -1.8308 -1.8356 -1.8386 -1.8390 -1.8363 -1.8302 -1.8208 -1.8089 -1.7953 -1.7819 -1.7701 -1.7611 -1.7558 -1.7543 -1.7564 -1.7616 -1.7688 -1.7771 -1.7857 - N E 88.00 -1.7668 -1.7799 -1.7924 -1.8047 -1.8173 -1.8298 -1.8416 -1.8512 -1.8563 -1.8544 -1.8443 -1.8252 -1.7985 -1.7671 -1.7356 -1.7084 -1.6890 -1.6790 -1.6783 -1.6864 -1.7005 -1.7177 -1.7355 -1.7520 - N E 87.00 -1.7181 -1.7338 -1.7496 -1.7662 -1.7840 -1.8034 -1.8244 -1.8444 -1.8583 -1.8613 -1.8499 -1.8218 -1.7775 -1.7228 -1.6679 -1.6226 -1.5913 -1.5758 -1.5760 -1.5937 -1.6204 -1.6496 -1.6771 -1.6998 - N E 86.00 -1.6413 -1.6573 -1.6763 -1.6990 -1.7235 -1.7502 -1.7838 -1.8198 -1.8467 -1.8584 -1.8490 -1.8129 -1.7477 -1.6623 -1.5787 -1.5134 -1.4690 -1.4476 -1.4480 -1.4751 -1.5149 -1.5574 -1.5945 -1.6225 - N E 85.00 -1.5298 -1.5441 -1.5696 -1.6022 -1.6379 -1.6702 -1.7197 -1.7792 -1.8232 -1.8464 -1.8428 -1.8015 -1.7117 -1.5865 -1.4674 -1.3807 -1.3205 -1.2942 -1.2948 -1.3300 -1.3805 -1.4350 -1.4796 -1.5110 - N E 84.00 -1.4134 -1.4050 -1.4252 -1.4771 -1.5197 -1.5554 -1.6124 -1.6844 -1.7461 -1.7702 -1.7580 -1.6954 -1.5999 -1.4738 -1.3589 -1.2703 -1.2182 -1.2005 -1.2119 -1.2538 -1.3168 -1.3668 -1.4028 -1.4165 - N E 83.00 -1.2781 -1.2505 -1.2631 -1.3292 -1.3763 -1.4133 -1.4742 -1.5534 -1.6229 -1.6482 -1.6331 -1.5662 -1.4745 -1.3572 -1.2519 -1.1693 -1.1243 -1.1131 -1.1277 -1.1704 -1.2388 -1.2887 -1.3146 -1.3073 - N E 82.00 -1.1167 -1.0754 -1.0835 -1.1601 -1.2076 -1.2479 -1.3117 -1.3932 -1.4601 -1.4839 -1.4732 -1.4159 -1.3363 -1.2367 -1.1491 -1.0785 -1.0394 -1.0303 -1.0414 -1.0801 -1.1513 -1.1992 -1.2097 -1.1658 - N E 81.00 -0.9228 -0.8817 -0.8986 -0.9710 -1.0177 -1.0655 -1.1313 -1.2069 -1.2592 -1.2827 -1.2803 -1.2430 -1.1839 -1.1140 -1.0513 -0.9984 -0.9639 -0.9543 -0.9617 -0.9847 -1.0398 -1.0796 -1.0657 -0.9915 - N E 80.00 -0.6784 -0.6659 -0.7013 -0.7546 -0.8038 -0.8682 -0.9334 -0.9964 -1.0224 -1.0471 -1.0540 -1.0498 -1.0146 -0.9893 -0.9595 -0.9304 -0.8981 -0.8871 -0.8886 -0.8741 -0.8735 -0.9168 -0.8845 -0.7735 - N E 79.00 -0.4306 -0.4588 -0.5347 -0.5929 -0.6539 -0.7319 -0.7919 -0.8389 -0.8473 -0.8617 -0.8632 -0.8653 -0.8405 -0.8361 -0.8228 -0.8073 -0.7843 -0.7796 -0.7747 -0.7340 -0.6976 -0.7318 -0.7003 -0.5314 - N E 78.00 -0.1763 -0.2792 -0.4121 -0.4895 -0.5650 -0.6483 -0.7000 -0.7276 -0.7210 -0.7158 -0.7017 -0.6897 -0.6651 -0.6572 -0.6462 -0.6370 -0.6286 -0.6360 -0.6263 -0.5755 -0.5141 -0.5027 -0.4381 -0.1945 - N E 77.00 -0.0091 -0.1671 -0.3468 -0.4445 -0.5329 -0.6126 -0.6511 -0.6549 -0.6362 -0.6032 -0.5650 -0.5208 -0.4895 -0.4581 -0.4360 -0.4318 -0.4480 -0.4689 -0.4509 -0.3928 -0.2938 -0.1713 0.0367 0.1341 - N E 76.00 0.0819 -0.1181 -0.3136 -0.4094 -0.4999 -0.5665 -0.5974 -0.5858 -0.5553 -0.5042 -0.4485 -0.3931 -0.3591 -0.3206 -0.2954 -0.2993 -0.3297 -0.3583 -0.3443 -0.2884 -0.1793 -0.0436 0.1335 0.2174 - N E 75.00 0.0888 -0.1274 -0.3097 -0.3847 -0.4691 -0.5140 -0.5415 -0.5229 -0.4824 -0.4198 -0.3532 -0.3011 -0.2691 -0.2356 -0.2169 -0.2289 -0.2631 -0.2969 -0.2925 -0.2533 -0.1592 -0.0231 0.1588 0.2206 - N E 74.00 0.1157 -0.0931 -0.2563 -0.3321 -0.4207 -0.4673 -0.4937 -0.4725 -0.4261 -0.3583 -0.2883 -0.2368 -0.2054 -0.1762 -0.1612 -0.1778 -0.2136 -0.2502 -0.2530 -0.2223 -0.1397 -0.0049 0.1694 0.2389 - N E 73.00 0.1768 -0.0231 -0.1722 -0.2636 -0.3626 -0.4274 -0.4548 -0.4314 -0.3807 -0.3138 -0.2460 -0.1949 -0.1626 -0.1370 -0.1250 -0.1459 -0.1842 -0.2194 -0.2256 -0.1963 -0.1222 0.0105 0.1718 0.2626 - N E 72.00 0.2588 0.0656 -0.0829 -0.1962 -0.3064 -0.3951 -0.4230 -0.3975 -0.3440 -0.2824 -0.2204 -0.1694 -0.1357 -0.1149 -0.1066 -0.1292 -0.1669 -0.1992 -0.2075 -0.1726 -0.1079 0.0216 0.1768 0.2862 - N E 71.00 0.3109 0.1347 -0.0032 -0.1335 -0.2499 -0.3684 -0.3958 -0.3685 -0.3138 -0.2616 -0.2089 -0.1580 -0.1224 -0.1077 -0.1036 -0.1250 -0.1576 -0.1853 -0.1967 -0.1492 -0.0975 0.0290 0.1820 0.3115 - N E 70.00 0.3356 0.1780 0.0542 -0.0842 -0.2149 -0.3498 -0.3780 -0.3479 -0.2925 -0.2460 -0.1996 -0.1485 -0.1120 -0.1008 -0.0993 -0.1184 -0.1460 -0.1706 -0.1845 -0.1318 -0.0863 0.0338 0.1861 0.3279 - N E 69.00 0.3435 0.2089 0.0946 -0.0494 -0.1970 -0.3382 -0.3670 -0.3339 -0.2790 -0.2353 -0.1927 -0.1410 -0.1041 -0.0943 -0.0942 -0.1096 -0.1313 -0.1544 -0.1712 -0.1196 -0.0760 0.0384 0.1890 0.3296 - N E 68.00 0.3396 0.2298 0.1244 -0.0216 -0.1879 -0.3315 -0.3611 -0.3257 -0.2739 -0.2299 -0.1887 -0.1357 -0.0986 -0.0879 -0.0885 -0.0984 -0.1130 -0.1363 -0.1564 -0.1117 -0.0661 0.0417 0.1943 0.3239 - N E 67.00 0.3293 0.2458 0.1499 0.0052 -0.1835 -0.3282 -0.3606 -0.3236 -0.2780 -0.2298 -0.1874 -0.1324 -0.0955 -0.0816 -0.0821 -0.0850 -0.0921 -0.1161 -0.1380 -0.1086 -0.0561 0.0403 0.1994 0.3132 - N E 66.00 0.3113 0.2456 0.1582 0.0165 -0.1836 -0.3235 -0.3506 -0.3101 -0.2666 -0.2195 -0.1756 -0.1235 -0.0890 -0.0733 -0.0733 -0.0721 -0.0780 -0.0991 -0.1214 -0.1114 -0.0592 0.0294 0.1926 0.2962 - N E 65.00 0.2847 0.2335 0.1543 0.0168 -0.1872 -0.3152 -0.3263 -0.2829 -0.2392 -0.1992 -0.1534 -0.1093 -0.0794 -0.0632 -0.0626 -0.0597 -0.0699 -0.0854 -0.1063 -0.1220 -0.0800 0.0078 0.1728 0.2723 - N E 64.00 0.2435 0.2076 0.1384 0.0026 -0.1950 -0.2974 -0.2836 -0.2412 -0.1965 -0.1696 -0.1212 -0.0902 -0.0670 -0.0515 -0.0501 -0.0478 -0.0681 -0.0770 -0.0967 -0.1436 -0.1380 -0.0340 0.1355 0.2372 - N E 63.00 0.2516 0.2002 0.1326 0.0002 -0.2130 -0.3328 -0.2867 -0.2367 -0.1847 -0.1619 -0.1084 -0.0797 -0.0569 -0.0419 -0.0405 -0.0336 -0.0377 -0.0371 -0.0691 -0.1733 -0.2043 -0.0855 0.1294 0.2669 - N E 62.00 0.2286 0.1508 0.0763 -0.0418 -0.1769 -0.2416 -0.2085 -0.1773 -0.1452 -0.1257 -0.0891 -0.0662 -0.0472 -0.0364 -0.0374 -0.0371 -0.0358 -0.0353 -0.0536 -0.1592 -0.1681 -0.0696 0.1315 0.2564 - N E 61.00 0.2019 0.0942 0.0158 -0.0843 -0.1374 -0.1618 -0.1439 -0.1279 -0.1106 -0.0948 -0.0711 -0.0535 -0.0381 -0.0306 -0.0333 -0.0373 -0.0328 -0.0319 -0.0394 -0.1409 -0.1276 -0.0541 0.1257 0.2414 - N E 60.00 0.1610 0.0192 -0.0579 -0.1283 -0.0961 -0.0957 -0.0925 -0.0876 -0.0807 -0.0684 -0.0543 -0.0415 -0.0296 -0.0247 -0.0283 -0.0346 -0.0284 -0.0274 -0.0277 -0.1196 -0.0861 -0.0398 0.1108 0.2117 - N E 59.00 0.1184 -0.0569 -0.1315 -0.1612 -0.0574 -0.0474 -0.0540 -0.0558 -0.0553 -0.0464 -0.0390 -0.0302 -0.0215 -0.0186 -0.0223 -0.0291 -0.0228 -0.0218 -0.0180 -0.0963 -0.0515 -0.0277 0.0931 0.1745 - N E 58.00 0.0781 -0.0971 -0.1560 -0.1577 -0.0280 -0.0182 -0.0279 -0.0319 -0.0339 -0.0282 -0.0249 -0.0195 -0.0139 -0.0124 -0.0154 -0.0210 -0.0161 -0.0152 -0.0106 -0.0695 -0.0265 -0.0189 0.0729 0.1316 - N E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nebz1.pot - NORTHERN, EQUINOX BZ COEFFICIENT FOR BZ < 0 - N E 90.00 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 -2.3435 - N E 89.00 -2.5109 -2.5565 -2.5867 -2.5995 -2.5950 -2.5741 -2.5384 -2.4901 -2.4323 -2.3688 -2.3031 -2.2409 -2.1853 -2.1393 -2.1070 -2.0899 -2.0894 -2.1062 -2.1396 -2.1878 -2.2481 -2.3162 -2.3863 -2.4529 - N E 88.00 -2.6822 -2.7722 -2.8258 -2.8443 -2.8294 -2.7843 -2.7114 -2.6149 -2.5000 -2.3750 -2.2489 -2.1287 -2.0216 -1.9338 -1.8700 -1.8348 -1.8313 -1.8603 -1.9220 -2.0148 -2.1347 -2.2727 -2.4199 -2.5612 - N E 87.00 -2.8630 -2.9929 -3.0624 -3.0813 -3.0556 -2.9883 -2.8818 -2.7405 -2.5730 -2.3893 -2.2020 -2.0217 -1.8604 -1.7286 -1.6328 -1.5784 -1.5661 -1.5998 -1.6833 -1.8197 -2.0018 -2.2169 -2.4506 -2.6766 - N E 86.00 -3.0620 -3.2277 -3.2987 -3.3091 -3.2685 -3.1805 -3.0424 -2.8560 -2.6364 -2.3972 -2.1514 -1.9128 -1.6987 -1.5258 -1.4039 -1.3334 -1.3119 -1.3421 -1.4350 -1.6019 -1.8407 -2.1399 -2.4735 -2.8042 - N E 85.00 -3.2835 -3.4843 -3.5272 -3.5234 -3.4658 -3.3643 -3.2007 -2.9666 -2.6921 -2.4008 -2.0995 -1.8007 -1.5318 -1.3221 -1.1797 -1.0939 -1.0609 -1.0794 -1.1709 -1.3559 -1.6505 -2.0353 -2.4776 -2.9493 - N E 84.00 -3.4898 -3.7508 -3.7661 -3.7340 -3.6797 -3.5768 -3.3980 -3.1013 -2.7713 -2.4310 -2.0820 -1.7391 -1.4317 -1.1860 -1.0053 -0.8766 -0.8047 -0.7883 -0.8647 -1.0811 -1.4706 -1.9462 -2.4972 -3.0638 - N E 83.00 -3.6524 -3.9671 -3.9751 -3.9291 -3.8745 -3.7688 -3.5758 -3.2345 -2.8528 -2.4626 -2.0665 -1.6816 -1.3335 -1.0471 -0.8264 -0.6622 -0.5616 -0.5199 -0.5748 -0.8015 -1.2527 -1.8140 -2.4634 -3.1383 - N E 82.00 -3.7448 -4.1146 -4.1434 -4.1001 -4.0462 -3.9401 -3.7367 -3.3659 -2.9344 -2.4941 -2.0514 -1.6279 -1.2390 -0.9088 -0.6454 -0.4504 -0.3301 -0.2749 -0.3010 -0.5275 -1.0293 -1.6545 -2.3914 -3.1439 - N E 81.00 -3.7500 -4.1681 -4.2813 -4.2662 -4.2079 -4.0989 -3.8807 -3.4983 -3.0174 -2.5266 -2.0358 -1.5813 -1.1513 -0.7720 -0.4590 -0.2368 -0.1057 -0.0506 -0.0472 -0.2527 -0.7806 -1.4630 -2.2837 -3.0708 - N E 80.00 -3.6478 -4.0955 -4.3868 -4.4306 -4.3593 -4.2416 -4.0008 -3.6366 -3.1016 -2.5582 -2.0165 -1.5418 -1.0714 -0.6376 -0.2658 -0.0202 0.1130 0.1442 0.1841 0.0255 -0.4832 -1.2061 -2.1231 -2.8789 - N E 79.00 -3.5661 -4.0459 -4.4412 -4.5317 -4.4577 -4.3226 -4.0627 -3.7029 -3.1411 -2.5569 -1.9697 -1.4588 -0.9406 -0.4656 -0.0593 0.2000 0.3287 0.3392 0.4076 0.2626 -0.2733 -1.0958 -2.0918 -2.8074 - N E 78.00 -3.5257 -4.0192 -4.4470 -4.5800 -4.5079 -4.3510 -4.0738 -3.7038 -3.1354 -2.5274 -1.9035 -1.3429 -0.7676 -0.2605 0.1631 0.4252 0.5449 0.5316 0.6130 0.3417 -0.3255 -1.1496 -2.1346 -2.8275 - N E 77.00 -3.4996 -4.0153 -4.4032 -4.5791 -4.5129 -4.3284 -4.0375 -3.6496 -3.0941 -2.4712 -1.8189 -1.1986 -0.5557 -0.0257 0.3967 0.6493 0.7552 0.7159 0.7957 0.5006 -0.3391 -1.3050 -2.2868 -2.8758 - N E 76.00 -3.5142 -3.9889 -4.2823 -4.4508 -4.4309 -4.2867 -4.0235 -3.6411 -3.0741 -2.4401 -1.7539 -1.0992 -0.4178 0.1367 0.5705 0.8342 0.9489 0.8955 1.0010 0.7606 -0.0536 -1.2669 -2.2797 -2.9016 - N E 75.00 -3.5459 -3.9831 -4.1773 -4.2746 -4.3023 -4.2324 -4.0381 -3.6691 -3.0648 -2.4297 -1.7075 -1.0362 -0.3398 0.2389 0.6915 0.9781 1.1233 1.0699 1.2079 0.9507 0.1217 -1.1947 -2.2515 -2.9078 - N E 74.00 -3.5254 -3.9264 -4.0846 -4.1265 -4.1565 -4.1383 -3.9694 -3.6052 -2.9915 -2.3607 -1.6368 -0.9608 -0.2614 0.3305 0.7835 1.0916 1.2753 1.2735 1.3930 1.0715 0.1715 -1.1299 -2.2115 -2.8956 - N E 73.00 -3.4850 -3.8367 -3.9683 -3.9664 -3.9966 -4.0349 -3.8653 -3.4781 -2.8639 -2.2465 -1.5457 -0.8754 -0.1930 0.4029 0.8675 1.2108 1.4426 1.4886 1.5311 1.1815 0.2584 -1.0394 -2.1491 -2.8684 - N E 72.00 -3.4272 -3.6932 -3.7881 -3.7939 -3.8490 -3.9163 -3.7209 -3.3023 -2.7013 -2.0993 -1.4415 -0.7811 -0.1274 0.4647 0.9464 1.3398 1.6098 1.6939 1.6331 1.2765 0.4031 -0.9082 -2.0795 -2.8360 - N E 71.00 -3.3593 -3.5159 -3.5869 -3.6322 -3.7080 -3.7900 -3.5515 -3.1060 -2.5272 -1.9247 -1.3233 -0.6783 -0.0638 0.5215 1.0145 1.4403 1.7130 1.8902 1.7852 1.4022 0.4974 -0.7760 -2.0107 -2.8042 - N E 70.00 -3.2735 -3.3660 -3.4149 -3.4910 -3.5637 -3.6353 -3.3820 -2.9321 -2.3754 -1.7712 -1.2199 -0.6077 -0.0355 0.5343 1.0278 1.4847 1.7796 2.0347 1.9301 1.4432 0.4883 -0.7171 -1.9426 -2.7536 - N E 69.00 -3.1639 -3.2334 -3.2703 -3.3779 -3.4366 -3.4787 -3.2177 -2.7666 -2.2265 -1.6330 -1.1360 -0.5655 -0.0405 0.5027 0.9868 1.4793 1.8211 2.1123 1.9745 1.3891 0.4116 -0.7451 -1.9027 -2.6999 - N E 68.00 -3.0439 -3.1135 -3.1269 -3.2736 -3.3092 -3.3157 -3.0555 -2.6095 -2.0828 -1.5115 -1.0699 -0.5469 -0.0745 0.4276 0.8859 1.4144 1.8224 2.1163 1.9404 1.3063 0.3210 -0.8106 -1.8859 -2.6505 - N E 67.00 -2.9279 -3.0058 -2.9878 -3.1831 -3.1888 -3.1531 -2.8955 -2.4605 -1.9543 -1.3914 -1.0066 -0.5485 -0.1353 0.3133 0.7325 1.2818 1.7756 2.0844 1.9022 1.2027 0.2152 -0.8910 -1.8787 -2.6062 - N E 66.00 -2.7575 -2.8660 -2.8831 -3.0961 -3.0947 -3.0181 -2.7540 -2.2959 -1.7994 -1.2543 -0.9215 -0.5401 -0.1831 0.2151 0.6046 1.1369 1.6803 2.0148 1.8546 1.1106 0.1404 -0.9193 -1.8352 -2.4937 - N E 65.00 -2.5625 -2.7198 -2.8012 -3.0024 -3.0197 -2.8960 -2.6125 -2.1017 -1.6017 -1.1120 -0.8311 -0.5214 -0.2186 0.1302 0.4974 0.9821 1.5193 1.8924 1.8010 1.0548 0.0993 -0.9159 -1.7474 -2.3217 - N E 64.00 -2.3213 -2.5513 -2.7242 -2.8969 -2.9507 -2.7538 -2.4178 -1.8229 -1.3385 -0.9641 -0.7372 -0.4928 -0.2430 0.0556 0.4071 0.8292 1.3390 1.7366 1.7381 1.0320 0.1037 -0.8524 -1.5914 -2.0686 - N E 63.00 -2.2417 -2.4542 -2.6121 -2.7824 -2.8632 -2.6607 -2.2860 -1.6238 -1.1732 -0.8441 -0.6740 -0.4718 -0.2637 -0.0118 0.3080 0.6788 1.1872 1.6476 1.7786 1.0841 0.1312 -0.8088 -1.5152 -1.9791 - N E 62.00 -2.0916 -2.3002 -2.4205 -2.5468 -2.5945 -2.3030 -1.8559 -1.2966 -0.9552 -0.7130 -0.5753 -0.4080 -0.2248 -0.0189 0.2416 0.5500 0.9544 1.3619 1.4978 0.8804 0.0164 -0.7814 -1.3644 -1.8134 - N E 61.00 -1.9409 -2.1182 -2.1681 -2.2546 -2.2717 -1.8769 -1.4090 -0.9856 -0.7492 -0.5837 -0.4776 -0.3423 -0.1864 -0.0229 0.1837 0.4347 0.7479 1.0740 1.1707 0.6193 -0.1132 -0.7115 -1.2022 -1.6476 - N E 60.00 -1.7552 -1.8900 -1.8616 -1.8941 -1.8556 -1.3860 -0.9894 -0.7063 -0.5604 -0.4567 -0.3794 -0.2750 -0.1485 -0.0237 0.1340 0.3293 0.5596 0.7924 0.8114 0.3310 -0.2288 -0.6052 -1.0177 -1.4536 - N E 59.00 -1.4923 -1.5906 -1.5035 -1.4595 -1.3048 -0.8890 -0.6386 -0.4717 -0.3930 -0.3349 -0.2824 -0.2069 -0.1107 -0.0214 0.0918 0.2340 0.3933 0.5471 0.5088 0.0976 -0.3007 -0.4772 -0.8077 -1.2033 - N E 58.00 -1.1499 -1.2165 -1.1067 -1.0134 -0.7608 -0.4965 -0.3690 -0.2826 -0.2465 -0.2182 -0.1862 -0.1375 -0.0732 -0.0162 0.0565 0.1490 0.2480 0.3397 0.2853 -0.0314 -0.2967 -0.3398 -0.5663 -0.8954 - N E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nebz2.pot - NORTHERN, EQUINOX BZ COEFFICIENT FOR BZ > 0 - N E 90.00 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 0.6443 - N E 89.00 0.6547 0.6401 0.6248 0.6101 0.5971 0.5868 0.5805 0.5790 0.5828 0.5918 0.6052 0.6215 0.6391 0.6566 0.6723 0.6855 0.6952 0.7011 0.7031 0.7016 0.6968 0.6894 0.6797 0.6681 - N E 88.00 0.6480 0.6199 0.5903 0.5616 0.5355 0.5141 0.4996 0.4950 0.5024 0.5221 0.5515 0.5870 0.6229 0.6570 0.6869 0.7112 0.7282 0.7368 0.7377 0.7323 0.7224 0.7100 0.6937 0.6734 - N E 87.00 0.6342 0.5935 0.5496 0.5061 0.4665 0.4326 0.4073 0.3970 0.4071 0.4402 0.4908 0.5503 0.6063 0.6546 0.6963 0.7306 0.7541 0.7638 0.7612 0.7494 0.7325 0.7160 0.6966 0.6695 - N E 86.00 0.6042 0.5515 0.4947 0.4382 0.3888 0.3454 0.3062 0.2858 0.2944 0.3427 0.4205 0.5130 0.5896 0.6467 0.6973 0.7437 0.7742 0.7805 0.7689 0.7462 0.7154 0.6982 0.6829 0.6519 - N E 85.00 0.5534 0.4922 0.4244 0.3547 0.3024 0.2560 0.1973 0.1624 0.1660 0.2326 0.3431 0.4823 0.5779 0.6311 0.6863 0.7481 0.7882 0.7858 0.7590 0.7217 0.6625 0.6520 0.6525 0.6183 - N E 84.00 0.5140 0.4591 0.3876 0.3148 0.2579 0.1875 0.1068 0.0502 0.0224 0.0828 0.2166 0.4180 0.5748 0.6730 0.7190 0.7637 0.7758 0.7829 0.7552 0.7098 0.6476 0.6302 0.6261 0.5908 - N E 83.00 0.4869 0.4408 0.3647 0.2842 0.2205 0.1303 0.0282 -0.0462 -0.0888 -0.0284 0.1248 0.3714 0.5701 0.6916 0.7326 0.7672 0.7674 0.7824 0.7565 0.7038 0.6354 0.6151 0.6099 0.5719 - N E 82.00 0.4731 0.4368 0.3543 0.2608 0.1887 0.0768 -0.0424 -0.1288 -0.1749 -0.1117 0.0616 0.3370 0.5652 0.6964 0.7308 0.7572 0.7547 0.7802 0.7625 0.7022 0.6311 0.6113 0.6071 0.5608 - N E 81.00 0.4661 0.4414 0.3513 0.2439 0.1639 0.0293 -0.1041 -0.2007 -0.2371 -0.1723 0.0211 0.3065 0.5555 0.6873 0.7153 0.7340 0.7376 0.7766 0.7728 0.7050 0.6373 0.6156 0.6094 0.5447 - N E 80.00 0.4769 0.4656 0.3626 0.2332 0.1460 -0.0172 -0.1601 -0.2679 -0.2753 -0.2141 0.0029 0.2765 0.5438 0.6649 0.6882 0.6957 0.7165 0.7709 0.7880 0.7089 0.6695 0.6375 0.6225 0.5187 - N E 79.00 0.5090 0.5088 0.3722 0.2152 0.1257 -0.0326 -0.1601 -0.2596 -0.2603 -0.2106 -0.0120 0.2326 0.4885 0.6041 0.6330 0.6408 0.6751 0.7391 0.7686 0.6885 0.6583 0.6213 0.6203 0.5020 - N E 78.00 0.5761 0.5650 0.3685 0.1868 0.0989 -0.0208 -0.1108 -0.1858 -0.1986 -0.1668 -0.0213 0.1773 0.3958 0.5072 0.5535 0.5715 0.6183 0.6826 0.7136 0.6440 0.6018 0.5478 0.5773 0.4999 - N E 77.00 0.6593 0.6181 0.3441 0.1469 0.0606 0.0112 -0.0224 -0.0563 -0.0985 -0.0861 -0.0261 0.1122 0.2698 0.3785 0.4542 0.4930 0.5543 0.6074 0.6271 0.5745 0.4865 0.3631 0.3271 0.5291 - N E 76.00 0.7421 0.6617 0.3326 0.1525 0.0726 0.0689 0.0754 0.0493 -0.0195 -0.0434 -0.0260 0.0707 0.1920 0.2844 0.3619 0.4220 0.5028 0.5606 0.5785 0.5305 0.4596 0.3475 0.3737 0.6095 - N E 75.00 0.7783 0.6657 0.3209 0.1958 0.1240 0.1451 0.1802 0.1339 0.0392 -0.0307 -0.0224 0.0476 0.1528 0.2197 0.2811 0.3616 0.4629 0.5377 0.5599 0.5115 0.4789 0.3841 0.4448 0.6904 - N E 74.00 0.7716 0.6328 0.3334 0.2529 0.2013 0.2353 0.2691 0.1950 0.0800 -0.0133 -0.0134 0.0349 0.1221 0.1680 0.2159 0.3034 0.4199 0.5084 0.5420 0.5105 0.4905 0.4205 0.4973 0.7015 - N E 73.00 0.7313 0.5751 0.3632 0.3206 0.2958 0.3311 0.3430 0.2390 0.1096 0.0073 -0.0001 0.0301 0.0978 0.1241 0.1606 0.2507 0.3813 0.4781 0.5271 0.5190 0.5027 0.4548 0.5366 0.6672 - N E 72.00 0.6507 0.4986 0.4018 0.3850 0.3900 0.4253 0.4042 0.2681 0.1297 0.0304 0.0173 0.0312 0.0781 0.0872 0.1161 0.1992 0.3409 0.4465 0.5147 0.5344 0.5143 0.4799 0.5606 0.6230 - N E 71.00 0.5810 0.4301 0.4418 0.4453 0.4862 0.5227 0.4594 0.2865 0.1427 0.0582 0.0400 0.0378 0.0614 0.0548 0.0794 0.1437 0.2867 0.4074 0.5042 0.5576 0.5262 0.5005 0.5797 0.5784 - N E 70.00 0.5327 0.4138 0.4871 0.5175 0.5796 0.6012 0.5025 0.3073 0.1587 0.0831 0.0582 0.0391 0.0467 0.0323 0.0551 0.1051 0.2484 0.3798 0.4943 0.5541 0.5201 0.5039 0.5763 0.5347 - N E 69.00 0.4896 0.4281 0.5332 0.5881 0.6615 0.6667 0.5391 0.3310 0.1781 0.1070 0.0727 0.0357 0.0330 0.0183 0.0419 0.0807 0.2222 0.3623 0.4854 0.5303 0.4998 0.4926 0.5423 0.4895 - N E 68.00 0.4556 0.4575 0.5778 0.6561 0.7405 0.7278 0.5731 0.3593 0.2013 0.1293 0.0831 0.0272 0.0194 0.0125 0.0399 0.0713 0.2095 0.3553 0.4787 0.4827 0.4641 0.4709 0.4995 0.4537 - N E 67.00 0.4267 0.4962 0.6229 0.7271 0.8256 0.7903 0.6052 0.3940 0.2293 0.1513 0.0896 0.0135 0.0056 0.0146 0.0492 0.0769 0.2127 0.3604 0.4761 0.4023 0.4086 0.4378 0.4401 0.4187 - N E 66.00 0.4286 0.5418 0.6632 0.7787 0.8831 0.8174 0.6053 0.3890 0.2323 0.1538 0.0801 0.0041 -0.0039 0.0147 0.0541 0.0911 0.2293 0.3822 0.4883 0.3466 0.3672 0.4090 0.3952 0.4039 - N E 65.00 0.4558 0.5968 0.7011 0.8176 0.9215 0.8040 0.5620 0.3360 0.2091 0.1366 0.0543 -0.0011 -0.0094 0.0129 0.0549 0.1142 0.2587 0.4239 0.5178 0.3251 0.3397 0.3879 0.3768 0.4119 - N E 64.00 0.5132 0.6719 0.7413 0.8459 0.9293 0.7202 0.4613 0.2295 0.1610 0.1008 0.0128 -0.0013 -0.0111 0.0094 0.0513 0.1462 0.3013 0.4838 0.5644 0.3602 0.3291 0.3749 0.3904 0.4468 - N E 63.00 0.5300 0.7248 0.7794 0.8665 1.0029 0.7512 0.4588 0.1955 0.1414 0.0947 0.0113 0.0065 -0.0038 0.0037 0.0397 0.1327 0.3619 0.5786 0.7572 0.3648 0.2944 0.3375 0.3411 0.4230 - N E 62.00 0.6425 0.7074 0.6987 0.6850 0.6702 0.4806 0.2766 0.1300 0.0761 0.0408 -0.0100 -0.0040 -0.0084 0.0053 0.0276 0.0996 0.2782 0.4607 0.5986 0.3298 0.2928 0.3853 0.3977 0.5150 - N E 61.00 0.7790 0.6798 0.6002 0.4758 0.3375 0.2515 0.1375 0.0783 0.0285 0.0031 -0.0239 -0.0108 -0.0110 0.0058 0.0177 0.0712 0.2055 0.3530 0.4547 0.2890 0.2847 0.4394 0.4691 0.6278 - N E 60.00 0.9804 0.6257 0.4626 0.2261 0.0296 0.0760 0.0394 0.0398 -0.0030 -0.0201 -0.0307 -0.0141 -0.0118 0.0055 0.0101 0.0476 0.1443 0.2586 0.3333 0.2440 0.2678 0.4841 0.5388 0.7670 - N E 59.00 1.1279 0.5329 0.2868 -0.0245 -0.1971 -0.0320 -0.0177 0.0148 -0.0192 -0.0298 -0.0307 -0.0140 -0.0108 0.0047 0.0047 0.0292 0.0950 0.1783 0.2305 0.1934 0.2388 0.4923 0.5736 0.8590 - N E 58.00 1.1006 0.3918 0.1411 -0.1673 -0.2730 -0.0679 -0.0362 0.0021 -0.0214 -0.0273 -0.0243 -0.0111 -0.0082 0.0034 0.0016 0.0160 0.0564 0.1109 0.1449 0.1375 0.1925 0.4478 0.5427 0.8301 - N E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nsbh1.pot - NORTHERN, SUMMER H0 COEFFICIENT (FREE PARAMETER) FOR BZ < 0 - N S 90.00 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 -3.8602 - N S 89.00 -3.6578 -3.5822 -3.5236 -3.4866 -3.4738 -3.4880 -3.5289 -3.5953 -3.6828 -3.7845 -3.8919 -3.9957 -4.0881 -4.1630 -4.2153 -4.2410 -4.2399 -4.2138 -4.1654 -4.0987 -4.0188 -3.9298 -3.8365 -3.7441 - N S 88.00 -3.3838 -3.2296 -3.1062 -3.0234 -2.9894 -3.0098 -3.0878 -3.2221 -3.4025 -3.6154 -3.8421 -4.0611 -4.2541 -4.4041 -4.5047 -4.5504 -4.5425 -4.4857 -4.3841 -4.2478 -4.0880 -3.9133 -3.7339 -3.5549 - N S 87.00 -3.0619 -2.8267 -2.6334 -2.5019 -2.4421 -2.4647 -2.5749 -2.7782 -3.0568 -3.3925 -3.7466 -4.0884 -4.3867 -4.6053 -4.7460 -4.8011 -4.7801 -4.6874 -4.5236 -4.3114 -4.0752 -3.8193 -3.5682 -3.3161 - N S 86.00 -2.6812 -2.3540 -2.0849 -1.9122 -1.8257 -1.8531 -1.9888 -2.2590 -2.6393 -3.1177 -3.6030 -4.0707 -4.4873 -4.7583 -4.9369 -4.9820 -4.9456 -4.8193 -4.5819 -4.2821 -3.9773 -3.6329 -3.3316 -3.0286 - N S 85.00 -2.2323 -1.8063 -1.4491 -1.2527 -1.1474 -1.1860 -1.3243 -1.6609 -2.1400 -2.8037 -3.4089 -4.0039 -4.5750 -4.8549 -5.0876 -5.0823 -5.0378 -4.8958 -4.5577 -4.1402 -3.8057 -3.3276 -3.0162 -2.7015 - N S 84.00 -1.7686 -1.1429 -0.6468 -0.4116 -0.3108 -0.3042 -0.4826 -1.0023 -1.6787 -2.4628 -3.1648 -3.9113 -4.4469 -4.8072 -4.9642 -4.9726 -4.9579 -4.8628 -4.4952 -4.0559 -3.5773 -2.9397 -2.6820 -2.3996 - N S 83.00 -1.3127 -0.5211 0.0902 0.3520 0.4428 0.4326 0.2089 -0.4476 -1.2761 -2.1769 -2.9628 -3.7995 -4.3563 -4.7888 -4.9446 -4.9565 -4.9617 -4.8924 -4.5034 -4.0176 -3.4369 -2.6598 -2.4068 -2.1105 - N S 82.00 -0.8606 0.0824 0.7835 1.0583 1.1199 1.0518 0.7724 0.0305 -0.9287 -1.9293 -2.7923 -3.6693 -4.2673 -4.7958 -4.9988 -5.0147 -5.0290 -4.9649 -4.5734 -4.0356 -3.3584 -2.4795 -2.1862 -1.8312 - N S 81.00 -0.3984 0.6666 1.4222 1.7200 1.7644 1.5841 1.2241 0.4393 -0.6446 -1.7135 -2.6564 -3.5058 -4.1559 -4.8195 -5.1171 -5.1351 -5.1517 -5.0568 -4.7014 -4.1074 -3.3347 -2.4042 -2.0140 -1.5359 - N S 80.00 0.0762 1.2291 1.9929 2.3442 2.3978 2.0159 1.5451 0.7962 -0.4246 -1.5223 -2.5734 -3.2958 -4.0096 -4.8526 -5.3010 -5.3145 -5.3316 -5.1456 -4.8947 -4.2308 -3.3472 -2.4665 -1.8867 -1.2076 - N S 79.00 0.4803 1.6755 2.4391 2.7861 2.7840 2.2959 1.7572 1.0059 -0.2498 -1.3730 -2.4305 -3.0566 -3.7666 -4.6644 -5.1925 -5.2520 -5.3129 -5.1581 -5.0032 -4.3350 -3.4428 -2.5376 -1.7698 -0.9146 - N S 78.00 0.8381 2.0241 2.7696 3.0590 2.9529 2.4454 1.8713 1.0807 -0.1325 -1.2633 -2.2286 -2.7670 -3.4381 -4.2731 -4.8159 -4.9734 -5.1137 -5.0928 -5.0346 -4.3804 -3.5255 -2.6043 -1.6654 -0.6228 - N S 77.00 1.1509 2.2720 2.9924 3.1798 2.9119 2.4812 1.8987 1.0364 -0.0528 -1.2011 -1.9800 -2.4328 -3.0292 -3.6902 -4.1938 -4.5091 -4.7523 -4.9610 -4.9930 -4.4279 -3.6869 -2.7084 -1.5554 -0.3017 - N S 76.00 1.3808 2.5479 3.2666 3.3439 2.9422 2.4429 1.8348 0.8900 -0.1706 -1.1981 -1.8168 -2.1607 -2.5881 -3.0865 -3.5224 -3.9116 -4.2810 -4.6667 -4.7896 -4.4483 -3.8839 -2.7987 -1.4423 -0.0702 - N S 75.00 1.5652 2.8755 3.5726 3.5300 3.0220 2.3431 1.7061 0.6483 -0.4572 -1.2469 -1.7122 -1.9432 -2.1290 -2.4709 -2.8197 -3.2246 -3.7257 -4.2397 -4.4306 -4.4201 -3.9857 -2.8235 -1.3299 0.0857 - N S 74.00 1.6860 3.0630 3.6831 3.5392 2.9522 2.1691 1.4742 0.3781 -0.6841 -1.2916 -1.6158 -1.7270 -1.7395 -2.0055 -2.3209 -2.6690 -3.1795 -3.7217 -3.9566 -4.1701 -3.8582 -2.7286 -1.2008 0.2171 - N S 73.00 1.7451 3.1432 3.6527 3.3912 2.7441 1.9501 1.1823 0.0758 -0.8661 -1.3257 -1.5277 -1.5139 -1.3984 -1.5974 -1.8426 -2.0916 -2.5742 -3.1368 -3.4484 -3.7795 -3.5859 -2.5591 -1.0644 0.3193 - N S 72.00 1.7479 3.1138 3.4561 3.0948 2.4242 1.6894 0.8159 -0.2581 -1.0049 -1.3490 -1.4420 -1.2989 -1.0973 -1.1966 -1.2639 -1.4250 -1.9113 -2.5198 -2.9551 -3.2854 -3.1441 -2.3267 -0.9297 0.3950 - N S 71.00 1.7021 2.9899 3.0965 2.6682 2.0030 1.3989 0.3857 -0.6121 -1.1086 -1.3650 -1.3558 -1.0794 -0.8301 -0.8540 -0.7327 -0.8606 -1.3896 -1.8928 -2.3210 -2.6536 -2.6110 -2.0563 -0.7866 0.4540 - N S 70.00 1.6059 2.7307 2.7068 2.2848 1.6910 1.1410 0.0725 -0.8270 -1.1672 -1.3456 -1.2672 -0.9101 -0.6233 -0.5751 -0.3551 -0.4579 -0.9652 -1.3091 -1.6149 -2.0570 -2.1862 -1.8192 -0.7296 0.4471 - N S 69.00 1.4578 2.3418 2.3007 1.9578 1.4668 0.9158 -0.1471 -0.9281 -1.1847 -1.2933 -1.1790 -0.7822 -0.4733 -0.3469 -0.0873 -0.1565 -0.5510 -0.7684 -1.0291 -1.6252 -1.8873 -1.6413 -0.7405 0.3930 - N S 68.00 1.2824 1.8321 1.8553 1.6573 1.2913 0.7076 -0.3002 -0.9251 -1.1607 -1.2101 -1.0906 -0.6903 -0.3765 -0.1561 0.0866 0.0249 -0.1949 -0.3658 -0.6873 -1.3429 -1.6636 -1.5169 -0.8123 0.3043 - N S 67.00 1.1022 1.2116 1.3758 1.3910 1.1648 0.5158 -0.4001 -0.8311 -1.1021 -1.0907 -0.9867 -0.6231 -0.3304 0.0012 0.1540 0.0785 0.1353 -0.0203 -0.4180 -1.0754 -1.3914 -1.4091 -0.9310 0.1919 - N S 66.00 0.8507 0.7968 1.0383 1.1860 1.0389 0.3713 -0.4489 -0.7674 -1.0437 -0.9847 -0.8865 -0.5679 -0.2979 0.0789 0.1988 0.1594 0.4053 0.2691 -0.1475 -0.8282 -1.1565 -1.3032 -0.9997 0.0468 - N S 65.00 0.5650 0.5333 0.8052 1.0114 0.9159 0.2604 -0.4582 -0.7192 -0.9824 -0.8992 -0.8108 -0.5310 -0.2803 0.0849 0.2222 0.2698 0.5804 0.4397 0.0684 -0.6591 -1.0014 -1.2014 -1.0295 -0.1293 - N S 64.00 0.2170 0.3530 0.6206 0.8580 0.7820 0.1612 -0.4154 -0.6767 -0.9133 -0.8327 -0.7582 -0.5108 -0.2774 0.0212 0.2232 0.4046 0.6246 0.4785 0.2459 -0.5380 -0.8811 -1.0797 -1.0256 -0.3589 - N S 63.00 0.1723 0.2930 0.5691 0.7519 0.7035 0.0028 -0.3726 -0.5136 -0.8793 -0.7622 -0.7151 -0.5072 -0.3163 0.0615 0.2945 0.4732 0.7545 0.5949 0.5148 -0.2954 -0.6248 -0.9662 -1.0172 -0.3746 - N S 62.00 0.2262 0.2544 0.5143 0.6305 0.6275 0.0613 -0.3322 -0.4221 -0.7046 -0.6226 -0.5909 -0.4572 -0.3056 0.0099 0.2552 0.3723 0.5482 0.6845 0.5154 -0.0745 -0.4449 -0.7623 -1.0062 -0.5077 - N S 61.00 0.2619 0.2196 0.4726 0.5184 0.5391 0.1007 -0.2773 -0.3380 -0.5535 -0.4945 -0.4710 -0.3952 -0.2797 -0.0266 0.1991 0.2679 0.3851 0.6667 0.4695 0.1150 -0.2545 -0.5666 -1.0045 -0.5621 - N S 60.00 0.2733 0.1928 0.4643 0.4327 0.4250 0.1131 -0.2058 -0.2664 -0.4257 -0.3784 -0.3534 -0.3215 -0.2388 -0.0489 0.1266 0.1590 0.2570 0.5244 0.3553 0.1937 -0.1582 -0.4353 -1.0141 -0.5121 - N S 59.00 0.2213 0.1846 0.5140 0.4007 0.2710 0.0867 -0.1179 -0.2131 -0.3248 -0.2786 -0.2404 -0.2374 -0.1821 -0.0571 0.0386 0.0450 0.1660 0.2537 0.1666 0.1178 -0.2267 -0.4173 -1.0403 -0.2603 - N S 58.00 0.1638 0.1516 0.4586 0.3168 0.1500 0.0593 -0.0591 -0.1487 -0.2195 -0.1826 -0.1470 -0.1557 -0.1228 -0.0488 -0.0036 -0.0093 0.0952 0.0934 0.0561 0.0623 -0.2164 -0.3440 -0.9262 -0.0702 - N S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nsbh2.pot - NORTHERN, SUMMER H0 COEFFICIENT (FREE PARAMETER) FOR BZ > 0 - N S 90.00 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 -3.8071 - N S 89.00 -3.5901 -3.5124 -3.4534 -3.4175 -3.4071 -3.4244 -3.4689 -3.5386 -3.6294 -3.7343 -3.8445 -3.9508 -4.0454 -4.1222 -4.1758 -4.2023 -4.2012 -4.1739 -4.1234 -4.0534 -3.9693 -3.8753 -3.7769 -3.6800 - N S 88.00 -3.3021 -3.1434 -3.0199 -2.9409 -2.9138 -2.9425 -3.0273 -3.1676 -3.3541 -3.5724 -3.8034 -4.0260 -4.2225 -4.3760 -4.4797 -4.5279 -4.5212 -4.4636 -4.3588 -4.2166 -4.0481 -3.8624 -3.6712 -3.4814 - N S 87.00 -2.9657 -2.7231 -2.5305 -2.4071 -2.3610 -2.3976 -2.5176 -2.7289 -3.0165 -3.3597 -3.7184 -4.0632 -4.3644 -4.5885 -4.7355 -4.7963 -4.7792 -4.6879 -4.5225 -4.3020 -4.0517 -3.7774 -3.5055 -3.2341 - N S 86.00 -2.5710 -2.2327 -1.9655 -1.8058 -1.7411 -1.7887 -1.9377 -2.2181 -2.6097 -3.0968 -3.5859 -4.0545 -4.4725 -4.7518 -4.9408 -4.9972 -4.9682 -4.8450 -4.6099 -4.3031 -3.9779 -3.6074 -3.2737 -2.9393 - N S 85.00 -2.1094 -1.6669 -1.3137 -1.1356 -1.0593 -1.1241 -1.2822 -1.6310 -2.1253 -2.7979 -3.4046 -3.9957 -4.5647 -4.8571 -5.1051 -5.1210 -5.0911 -4.9528 -4.6180 -4.1961 -3.8344 -3.3272 -2.9703 -2.6084 - N S 84.00 -1.6355 -0.9882 -0.4997 -0.2882 -0.2211 -0.2458 -0.4481 -0.9842 -1.6787 -2.4752 -3.1770 -3.9092 -4.4409 -4.8188 -5.0033 -5.0409 -5.0474 -4.9593 -4.5938 -4.1440 -3.6380 -2.9683 -2.6517 -2.3082 - N S 83.00 -1.1723 -0.3477 0.2629 0.4977 0.5527 0.5073 0.2491 -0.4440 -1.2995 -2.2060 -2.9844 -3.8052 -4.3584 -4.8082 -5.0001 -5.0514 -5.0866 -5.0287 -4.6399 -4.1339 -3.5172 -2.7119 -2.3921 -2.0236 - N S 82.00 -0.7061 0.2765 0.9878 1.2434 1.2710 1.1496 0.8088 0.0128 -0.9782 -1.9750 -2.8236 -3.6822 -4.2778 -4.8234 -5.0682 -5.1340 -5.1889 -5.1448 -4.7543 -4.1844 -3.4576 -2.5456 -2.1866 -1.7423 - N S 81.00 -0.2249 0.8974 1.6620 1.9391 1.9429 1.6884 1.2477 0.4057 -0.7083 -1.7710 -2.6930 -3.5218 -4.1674 -4.8492 -5.1969 -5.2773 -5.3449 -5.2788 -4.9254 -4.2949 -3.4590 -2.4845 -2.0321 -1.4565 - N S 80.00 0.2742 1.5106 2.2902 2.6063 2.5965 2.1275 1.5632 0.7466 -0.4990 -1.5809 -2.6013 -3.3067 -4.0163 -4.8813 -5.3886 -5.4762 -5.5528 -5.4077 -5.1542 -4.4605 -3.5039 -2.5664 -1.9241 -1.1409 - N S 79.00 0.7150 2.0162 2.8016 3.1044 3.0138 2.4225 1.7801 0.9444 -0.3460 -1.4398 -2.4484 -3.0542 -3.7558 -4.6934 -5.2969 -5.4430 -5.5745 -5.4655 -5.3055 -4.6088 -3.6276 -2.6730 -1.8378 -0.8535 - N S 78.00 1.1087 2.4194 3.1968 3.4303 3.2162 2.5872 1.8961 1.0164 -0.2393 -1.3435 -2.2553 -2.7667 -3.4206 -4.3015 -4.9447 -5.2051 -5.4275 -5.4513 -5.3819 -4.7286 -3.8229 -2.8269 -1.7750 -0.5641 - N S 77.00 1.4585 2.7212 3.4759 3.5980 3.2070 2.6369 1.9194 0.9631 -0.1604 -1.2905 -2.0264 -2.4498 -3.0294 -3.7381 -4.3642 -4.8019 -5.1442 -5.3774 -5.3854 -4.8205 -4.1135 -3.0562 -1.7355 -0.2544 - N S 76.00 1.7251 3.0783 3.8211 3.8223 3.2773 2.6152 1.8547 0.8040 -0.2915 -1.2970 -1.8751 -2.1962 -2.6248 -3.1848 -3.7498 -4.2795 -4.7569 -5.1565 -5.2379 -4.8562 -4.3060 -3.2126 -1.6942 -0.0563 - N S 75.00 1.9224 3.4865 4.2300 4.0871 3.4052 2.5247 1.7203 0.5607 -0.5776 -1.3516 -1.7839 -2.0019 -2.2147 -2.6426 -3.1365 -3.6695 -4.2723 -4.8113 -4.9541 -4.8371 -4.3768 -3.2722 -1.6251 0.0832 - N S 74.00 2.0504 3.7188 4.4008 4.1386 3.3600 2.3578 1.4811 0.2844 -0.8053 -1.4055 -1.7049 -1.8070 -1.8594 -2.1764 -2.5737 -3.0639 -3.7297 -4.3337 -4.5344 -4.6132 -4.2521 -3.1945 -1.5283 0.1932 - N S 73.00 2.0832 3.7931 4.3478 3.9938 3.1642 2.1330 1.1635 -0.0261 -0.9946 -1.4517 -1.6305 -1.6140 -1.5470 -1.7599 -2.0205 -2.4661 -3.1802 -3.7681 -4.0003 -4.2441 -3.9934 -3.0078 -1.3970 0.2733 - N S 72.00 2.0346 3.7163 4.0948 3.6880 2.8514 1.8684 0.7850 -0.3697 -1.1497 -1.4877 -1.5569 -1.4156 -1.2625 -1.3922 -1.4984 -1.8640 -2.5909 -3.1147 -3.3884 -3.7642 -3.6404 -2.7716 -1.2356 0.3548 - N S 71.00 1.9733 3.5398 3.6844 3.2573 2.4425 1.5807 0.3455 -0.7535 -1.2698 -1.5131 -1.4799 -1.2043 -0.9980 -1.0608 -0.9894 -1.2167 -1.8950 -2.3410 -2.6905 -3.1724 -3.2040 -2.5093 -1.0645 0.4479 - N S 70.00 1.8915 3.2193 3.2447 2.8660 2.1257 1.3199 0.0162 -0.9985 -1.3425 -1.4978 -1.3924 -1.0300 -0.7876 -0.7785 -0.6002 -0.7236 -1.2875 -1.6550 -2.0575 -2.6531 -2.8152 -2.2893 -0.9759 0.4901 - N S 69.00 1.7629 2.7748 2.8054 2.5248 1.8921 1.0832 -0.2343 -1.1254 -1.3661 -1.4393 -1.2920 -0.8873 -0.6256 -0.5373 -0.3136 -0.3621 -0.7392 -1.0373 -1.4918 -2.2051 -2.4768 -2.0968 -0.9726 0.4677 - N S 68.00 1.6217 2.2617 2.3797 2.2281 1.7152 0.8554 -0.4264 -1.1338 -1.3378 -1.3367 -1.1791 -0.7769 -0.5119 -0.3315 -0.1258 -0.1395 -0.2461 -0.4764 -0.9871 -1.7889 -2.1405 -1.9442 -1.0206 0.4224 - N S 67.00 1.4836 1.6880 1.9582 1.9534 1.5818 0.6244 -0.5651 -1.0133 -1.2563 -1.1847 -1.0518 -0.6989 -0.4503 -0.1559 -0.0363 -0.0622 0.1755 0.0259 -0.5291 -1.3844 -1.7802 -1.8229 -1.1592 0.3468 - N S 66.00 1.2566 1.2582 1.6154 1.7113 1.4272 0.4248 -0.6415 -0.9115 -1.1681 -1.0550 -0.9467 -0.6367 -0.4034 -0.0572 0.0324 0.0418 0.4608 0.3831 -0.1151 -1.0395 -1.4828 -1.6930 -1.2882 0.1892 - N S 65.00 0.9293 0.9241 1.3193 1.4793 1.2368 0.2444 -0.6429 -0.8253 -1.0765 -0.9501 -0.8628 -0.5913 -0.3728 -0.0341 0.0779 0.1686 0.6209 0.5848 0.2318 -0.7674 -1.2412 -1.5462 -1.3705 -0.0514 - N S 64.00 0.4340 0.6457 1.0285 1.2294 0.9738 0.0812 -0.5475 -0.7570 -0.9832 -0.8710 -0.8005 -0.5641 -0.3588 -0.0861 0.0982 0.3191 0.6548 0.6118 0.4737 -0.5762 -1.0392 -1.3563 -1.4002 -0.4198 - N S 63.00 0.3735 0.5300 0.9222 1.0270 0.8377 -0.1683 -0.4703 -0.5426 -0.9376 -0.7909 -0.7505 -0.5553 -0.3913 -0.0290 0.1884 0.3998 0.7752 0.7242 0.8168 -0.1786 -0.5399 -1.1721 -1.4317 -0.4621 - N S 62.00 0.5145 0.4490 0.8110 0.8052 0.7123 -0.0447 -0.4021 -0.4313 -0.7315 -0.6367 -0.6153 -0.4966 -0.3695 -0.0690 0.1650 0.3091 0.5637 0.8036 0.7746 0.1439 -0.2631 -0.8411 -1.4772 -0.7773 - N S 61.00 0.6327 0.3679 0.7342 0.6227 0.5762 0.0327 -0.3245 -0.3375 -0.5630 -0.4997 -0.4863 -0.4264 -0.3323 -0.0932 0.1230 0.2112 0.3922 0.7559 0.6741 0.3342 -0.0699 -0.5564 -1.5512 -0.9969 - N S 60.00 0.6521 0.2992 0.7152 0.4977 0.4224 0.0646 -0.2361 -0.2632 -0.4277 -0.3800 -0.3630 -0.3449 -0.2796 -0.1029 0.0632 0.1088 0.2591 0.5837 0.5072 0.3735 -0.0100 -0.3930 -1.6410 -0.9217 - N S 59.00 0.4800 0.2843 0.8015 0.4634 0.2451 0.0488 -0.1354 -0.2094 -0.3229 -0.2776 -0.2440 -0.2528 -0.2114 -0.0987 -0.0137 0.0020 0.1650 0.2877 0.2681 0.2508 -0.1219 -0.4117 -1.7440 -0.2821 - N S 58.00 0.3282 0.2247 0.6929 0.3595 0.1227 0.0327 -0.0683 -0.1450 -0.2158 -0.1805 -0.1476 -0.1645 -0.1416 -0.0770 -0.0410 -0.0405 0.0934 0.1118 0.1184 0.1506 -0.1507 -0.3593 -1.5793 0.1309 - N S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nsby3.pot - NORTHERN, SUMMER BY COEFFICIENT FOR BY < 0 AND BZ < 0 - N S 90.00 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 - N S 89.00 -1.6165 -1.6227 -1.6291 -1.6356 -1.6416 -1.6469 -1.6510 -1.6534 -1.6539 -1.6524 -1.6487 -1.6435 -1.6371 -1.6299 -1.6225 -1.6155 -1.6094 -1.6045 -1.6013 -1.6000 -1.6005 -1.6027 -1.6062 -1.6109 - N S 88.00 -1.5837 -1.5955 -1.6077 -1.6200 -1.6316 -1.6423 -1.6514 -1.6579 -1.6603 -1.6575 -1.6499 -1.6386 -1.6250 -1.6103 -1.5951 -1.5806 -1.5682 -1.5588 -1.5531 -1.5508 -1.5523 -1.5568 -1.5638 -1.5730 - N S 87.00 -1.5328 -1.5498 -1.5673 -1.5848 -1.6019 -1.6186 -1.6340 -1.6468 -1.6525 -1.6485 -1.6352 -1.6168 -1.5961 -1.5739 -1.5504 -1.5267 -1.5064 -1.4934 -1.4860 -1.4831 -1.4859 -1.4933 -1.5039 -1.5176 - N S 86.00 -1.4617 -1.4839 -1.5063 -1.5283 -1.5512 -1.5740 -1.5965 -1.6203 -1.6323 -1.6272 -1.6052 -1.5773 -1.5504 -1.5222 -1.4903 -1.4545 -1.4243 -1.4099 -1.4019 -1.3954 -1.3987 -1.4113 -1.4240 -1.4427 - N S 85.00 -1.3667 -1.3965 -1.4239 -1.4489 -1.4803 -1.5096 -1.5368 -1.5794 -1.6006 -1.5953 -1.5589 -1.5194 -1.4892 -1.4573 -1.4172 -1.3632 -1.3180 -1.3085 -1.3033 -1.2832 -1.2862 -1.3113 -1.3205 -1.3454 - N S 84.00 -1.2700 -1.2991 -1.3109 -1.3405 -1.3779 -1.3939 -1.4348 -1.5043 -1.5342 -1.5247 -1.4757 -1.4075 -1.3803 -1.3557 -1.3317 -1.2858 -1.2338 -1.2317 -1.2196 -1.1948 -1.1797 -1.1970 -1.2088 -1.2335 - N S 83.00 -1.1618 -1.1920 -1.1958 -1.2263 -1.2678 -1.2797 -1.3262 -1.4085 -1.4378 -1.4185 -1.3575 -1.2759 -1.2580 -1.2496 -1.2448 -1.2091 -1.1538 -1.1538 -1.1348 -1.1006 -1.0706 -1.0844 -1.0959 -1.1202 - N S 82.00 -1.0411 -1.0733 -1.0753 -1.1046 -1.1522 -1.1649 -1.2125 -1.2927 -1.3123 -1.2783 -1.2068 -1.1222 -1.1207 -1.1373 -1.1566 -1.1342 -1.0802 -1.0750 -1.0468 -1.0018 -0.9598 -0.9702 -0.9834 -1.0033 - N S 81.00 -0.9061 -0.9431 -0.9540 -0.9738 -1.0249 -1.0469 -1.0935 -1.1569 -1.1595 -1.1046 -1.0226 -0.9464 -0.9666 -1.0178 -1.0658 -1.0609 -1.0147 -0.9931 -0.9545 -0.9008 -0.8480 -0.8526 -0.8744 -0.8820 - N S 80.00 -0.7559 -0.8026 -0.8384 -0.8330 -0.8818 -0.9309 -0.9750 -1.0019 -0.9832 -0.8995 -0.8079 -0.7534 -0.7936 -0.8920 -0.9730 -0.9885 -0.9614 -0.9058 -0.8568 -0.7961 -0.7351 -0.7282 -0.7704 -0.7569 - N S 79.00 -0.6398 -0.6944 -0.7439 -0.7256 -0.7683 -0.8223 -0.8630 -0.8640 -0.8261 -0.7254 -0.6303 -0.5889 -0.6305 -0.7462 -0.8482 -0.8816 -0.8693 -0.8025 -0.7509 -0.6861 -0.6202 -0.6179 -0.6729 -0.6532 - N S 78.00 -0.5519 -0.6116 -0.6675 -0.6492 -0.6777 -0.7186 -0.7572 -0.7418 -0.6870 -0.5747 -0.4789 -0.4491 -0.4762 -0.5818 -0.6924 -0.7434 -0.7449 -0.6821 -0.6350 -0.5835 -0.5376 -0.5328 -0.5775 -0.5634 - N S 77.00 -0.4931 -0.5530 -0.6078 -0.6033 -0.6093 -0.6199 -0.6586 -0.6327 -0.5615 -0.4428 -0.3543 -0.3359 -0.3265 -0.3988 -0.5097 -0.5784 -0.5928 -0.5473 -0.5134 -0.4820 -0.4512 -0.4427 -0.4674 -0.4826 - N S 76.00 -0.4460 -0.4993 -0.5448 -0.5408 -0.5243 -0.5187 -0.5574 -0.5211 -0.4441 -0.3397 -0.2677 -0.2519 -0.2128 -0.2622 -0.3710 -0.4535 -0.4903 -0.4581 -0.4298 -0.3996 -0.3697 -0.3638 -0.3961 -0.4242 - N S 75.00 -0.4033 -0.4497 -0.4836 -0.4698 -0.4277 -0.4121 -0.4510 -0.4057 -0.3329 -0.2598 -0.2127 -0.1949 -0.1334 -0.1688 -0.2733 -0.3666 -0.4318 -0.4088 -0.3824 -0.3513 -0.3307 -0.3157 -0.3599 -0.3826 - N S 74.00 -0.3574 -0.3991 -0.4289 -0.4055 -0.3445 -0.3305 -0.3711 -0.3205 -0.2488 -0.1970 -0.1689 -0.1502 -0.0784 -0.1083 -0.2102 -0.2982 -0.3688 -0.3563 -0.3344 -0.3146 -0.3000 -0.2805 -0.3250 -0.3398 - N S 73.00 -0.3121 -0.3462 -0.3725 -0.3414 -0.2740 -0.2713 -0.3132 -0.2568 -0.1856 -0.1504 -0.1362 -0.1162 -0.0439 -0.0637 -0.1546 -0.2292 -0.2963 -0.3021 -0.2904 -0.2865 -0.2740 -0.2523 -0.2893 -0.2966 - N S 72.00 -0.2670 -0.2868 -0.3075 -0.2788 -0.2186 -0.2282 -0.2652 -0.2096 -0.1440 -0.1186 -0.1125 -0.0904 -0.0278 -0.0319 -0.0908 -0.1490 -0.2118 -0.2497 -0.2522 -0.2652 -0.2502 -0.2315 -0.2552 -0.2538 - N S 71.00 -0.2223 -0.2233 -0.2389 -0.2197 -0.1742 -0.2000 -0.2270 -0.1771 -0.1180 -0.0979 -0.0965 -0.0712 -0.0284 -0.0168 -0.0371 -0.0814 -0.1414 -0.2009 -0.2067 -0.2481 -0.2314 -0.2181 -0.2210 -0.2090 - N S 70.00 -0.1741 -0.1623 -0.1790 -0.1743 -0.1439 -0.1785 -0.1996 -0.1553 -0.1016 -0.0842 -0.0848 -0.0588 -0.0298 -0.0089 -0.0037 -0.0370 -0.0891 -0.1467 -0.1469 -0.2191 -0.2158 -0.2078 -0.2006 -0.1757 - N S 69.00 -0.1203 -0.1034 -0.1274 -0.1416 -0.1241 -0.1632 -0.1810 -0.1421 -0.0932 -0.0765 -0.0773 -0.0517 -0.0334 -0.0080 0.0147 -0.0081 -0.0436 -0.0863 -0.0873 -0.1880 -0.2048 -0.2023 -0.1940 -0.1537 - N S 68.00 -0.0632 -0.0454 -0.0782 -0.1169 -0.1105 -0.1523 -0.1690 -0.1366 -0.0931 -0.0745 -0.0730 -0.0490 -0.0393 -0.0141 0.0193 0.0033 -0.0103 -0.0319 -0.0453 -0.1604 -0.1966 -0.2000 -0.1989 -0.1420 - N S 67.00 -0.0036 0.0110 -0.0315 -0.0996 -0.1021 -0.1450 -0.1623 -0.1376 -0.1010 -0.0776 -0.0712 -0.0499 -0.0475 -0.0272 0.0091 -0.0035 0.0127 0.0250 -0.0025 -0.1256 -0.1873 -0.2000 -0.2123 -0.1393 - N S 66.00 0.0148 0.0274 -0.0220 -0.0900 -0.1035 -0.1470 -0.1555 -0.1343 -0.1022 -0.0777 -0.0677 -0.0493 -0.0512 -0.0318 0.0032 -0.0062 0.0367 0.0683 0.0350 -0.0906 -0.1751 -0.1979 -0.2142 -0.1406 - N S 65.00 0.0036 0.0173 -0.0358 -0.0851 -0.1126 -0.1567 -0.1479 -0.1269 -0.0970 -0.0744 -0.0627 -0.0473 -0.0505 -0.0286 0.0010 -0.0042 0.0610 0.0879 0.0580 -0.0626 -0.1640 -0.1937 -0.2051 -0.1456 - N S 64.00 -0.0323 -0.0126 -0.0674 -0.0833 -0.1300 -0.1762 -0.1365 -0.1135 -0.0838 -0.0676 -0.0563 -0.0439 -0.0456 -0.0177 0.0017 0.0017 0.0832 0.0815 0.0666 -0.0352 -0.1488 -0.1869 -0.1825 -0.1560 - N S 63.00 -0.0139 -0.0042 -0.0840 -0.0840 -0.1411 -0.1935 -0.1508 -0.0901 -0.0740 -0.0620 -0.0507 -0.0383 -0.0499 -0.0127 0.0048 -0.0053 0.1142 0.1135 0.1427 0.0246 -0.1313 -0.1952 -0.1977 -0.1833 - N S 62.00 -0.0500 -0.0301 -0.0985 -0.1063 -0.1639 -0.1654 -0.1274 -0.0843 -0.0675 -0.0560 -0.0425 -0.0346 -0.0420 -0.0073 0.0020 -0.0020 0.0613 0.0558 0.1299 0.0196 -0.1270 -0.1596 -0.1840 -0.2147 - N S 61.00 -0.0693 -0.0507 -0.1058 -0.1207 -0.1770 -0.1373 -0.1031 -0.0716 -0.0576 -0.0478 -0.0344 -0.0298 -0.0346 -0.0032 0.0026 0.0015 0.0287 0.0193 0.1083 0.0139 -0.1170 -0.1255 -0.1594 -0.2230 - N S 60.00 -0.0704 -0.0646 -0.0996 -0.1212 -0.1744 -0.1101 -0.0786 -0.0518 -0.0440 -0.0373 -0.0263 -0.0239 -0.0276 -0.0005 0.0059 0.0061 0.0148 0.0077 0.0745 0.0045 -0.1048 -0.1037 -0.1183 -0.1980 - N S 59.00 -0.0410 -0.0681 -0.0725 -0.0997 -0.1452 -0.0855 -0.0553 -0.0251 -0.0271 -0.0249 -0.0184 -0.0172 -0.0209 0.0008 0.0122 0.0124 0.0199 0.0241 0.0292 -0.0098 -0.0937 -0.1045 -0.0515 -0.1088 - N S 58.00 -0.0188 -0.0604 -0.0470 -0.0721 -0.1052 -0.0584 -0.0349 -0.0092 -0.0149 -0.0149 -0.0115 -0.0110 -0.0140 0.0011 0.0122 0.0124 0.0181 0.0257 0.0050 -0.0143 -0.0720 -0.0893 -0.0048 -0.0412 - N S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nsby4.pot - NORTHERN, SUMMER BY COEFFICIENT FOR BY < 0 AND BZ > 0 - N S 90.00 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 - N S 89.00 -1.7262 -1.7299 -1.7333 -1.7365 -1.7394 -1.7418 -1.7436 -1.7445 -1.7441 -1.7422 -1.7387 -1.7339 -1.7281 -1.7218 -1.7159 -1.7111 -1.7078 -1.7061 -1.7062 -1.7079 -1.7108 -1.7144 -1.7184 -1.7224 - N S 88.00 -1.6973 -1.7024 -1.7071 -1.7120 -1.7173 -1.7225 -1.7273 -1.7312 -1.7327 -1.7306 -1.7245 -1.7143 -1.7008 -1.6861 -1.6724 -1.6613 -1.6543 -1.6516 -1.6532 -1.6587 -1.6666 -1.6752 -1.6836 -1.6910 - N S 87.00 -1.6452 -1.6502 -1.6541 -1.6600 -1.6680 -1.6764 -1.6857 -1.6955 -1.7018 -1.7012 -1.6930 -1.6778 -1.6540 -1.6280 -1.6044 -1.5857 -1.5742 -1.5703 -1.5735 -1.5852 -1.6001 -1.6140 -1.6269 -1.6378 - N S 86.00 -1.5672 -1.5709 -1.5713 -1.5788 -1.5912 -1.6028 -1.6175 -1.6368 -1.6524 -1.6538 -1.6434 -1.6262 -1.5870 -1.5466 -1.5112 -1.4832 -1.4671 -1.4629 -1.4672 -1.4872 -1.5095 -1.5271 -1.5450 -1.5601 - N S 85.00 -1.4611 -1.4639 -1.4544 -1.4661 -1.4890 -1.5018 -1.5213 -1.5549 -1.5873 -1.5886 -1.5726 -1.5654 -1.4988 -1.4419 -1.3942 -1.3533 -1.3315 -1.3303 -1.3348 -1.3651 -1.3944 -1.4105 -1.4342 -1.4561 - N S 84.00 -1.3474 -1.3474 -1.3367 -1.3302 -1.3606 -1.3664 -1.3899 -1.4231 -1.4765 -1.4745 -1.4219 -1.3873 -1.3391 -1.2757 -1.2455 -1.2030 -1.2101 -1.2242 -1.2450 -1.2732 -1.2950 -1.3090 -1.3256 -1.3331 - N S 83.00 -1.2306 -1.2286 -1.2146 -1.1988 -1.2303 -1.2280 -1.2475 -1.2798 -1.3375 -1.3257 -1.2520 -1.2074 -1.1701 -1.1123 -1.1001 -1.0706 -1.1012 -1.1301 -1.1597 -1.1848 -1.2000 -1.2091 -1.2179 -1.2160 - N S 82.00 -1.1083 -1.1034 -1.0880 -1.0694 -1.0970 -1.0862 -1.0983 -1.1242 -1.1695 -1.1425 -1.0630 -1.0191 -0.9916 -0.9452 -0.9561 -0.9511 -1.0049 -1.0449 -1.0796 -1.0981 -1.1080 -1.1098 -1.1070 -1.0973 - N S 81.00 -0.9804 -0.9709 -0.9595 -0.9477 -0.9593 -0.9425 -0.9411 -0.9566 -0.9712 -0.9240 -0.8527 -0.8154 -0.7967 -0.7737 -0.8105 -0.8442 -0.9199 -0.9691 -1.0087 -1.0140 -1.0155 -1.0071 -0.9878 -0.9761 - N S 80.00 -0.8431 -0.8294 -0.8275 -0.8358 -0.8135 -0.7982 -0.7736 -0.7815 -0.7424 -0.6661 -0.6234 -0.5988 -0.5821 -0.5973 -0.6597 -0.7536 -0.8454 -0.9030 -0.9482 -0.9273 -0.9170 -0.9010 -0.8594 -0.8530 - N S 79.00 -0.7317 -0.7181 -0.7223 -0.7385 -0.6997 -0.6824 -0.6435 -0.6400 -0.5750 -0.4876 -0.4598 -0.4426 -0.4264 -0.4653 -0.5318 -0.6527 -0.7501 -0.8145 -0.8665 -0.8376 -0.8226 -0.8024 -0.7487 -0.7421 - N S 78.00 -0.6450 -0.6354 -0.6428 -0.6577 -0.6115 -0.5909 -0.5476 -0.5297 -0.4572 -0.3730 -0.3538 -0.3399 -0.3266 -0.3758 -0.4236 -0.5468 -0.6363 -0.7056 -0.7644 -0.7477 -0.7329 -0.7086 -0.6512 -0.6400 - N S 77.00 -0.5863 -0.5817 -0.5903 -0.5931 -0.5473 -0.5226 -0.4827 -0.4445 -0.3813 -0.3138 -0.2964 -0.2824 -0.2724 -0.3289 -0.3332 -0.4410 -0.5112 -0.5812 -0.6438 -0.6570 -0.6438 -0.6170 -0.5710 -0.5466 - N S 76.00 -0.5173 -0.5292 -0.5430 -0.5330 -0.4799 -0.4501 -0.4115 -0.3733 -0.3296 -0.2757 -0.2609 -0.2478 -0.2400 -0.2807 -0.2918 -0.3702 -0.4338 -0.5004 -0.5661 -0.5977 -0.5830 -0.5457 -0.4957 -0.4607 - N S 75.00 -0.4406 -0.4795 -0.5011 -0.4760 -0.4096 -0.3744 -0.3358 -0.3141 -0.2983 -0.2559 -0.2445 -0.2326 -0.2273 -0.2314 -0.2949 -0.3283 -0.3964 -0.4561 -0.5237 -0.5703 -0.5529 -0.4973 -0.4287 -0.3850 - N S 74.00 -0.3778 -0.4268 -0.4487 -0.4119 -0.3487 -0.3146 -0.2790 -0.2711 -0.2699 -0.2376 -0.2295 -0.2179 -0.2100 -0.1954 -0.2817 -0.2913 -0.3588 -0.4158 -0.4860 -0.5410 -0.5267 -0.4648 -0.3777 -0.3215 - N S 73.00 -0.3181 -0.3703 -0.3874 -0.3398 -0.2981 -0.2688 -0.2386 -0.2406 -0.2431 -0.2210 -0.2157 -0.2038 -0.1894 -0.1689 -0.2546 -0.2579 -0.3240 -0.3812 -0.4526 -0.5106 -0.5030 -0.4462 -0.3413 -0.2673 - N S 72.00 -0.2615 -0.3116 -0.3209 -0.2633 -0.2586 -0.2348 -0.2108 -0.2209 -0.2173 -0.2060 -0.2029 -0.1900 -0.1656 -0.1504 -0.2175 -0.2261 -0.2891 -0.3501 -0.4241 -0.4789 -0.4820 -0.4399 -0.3184 -0.2253 - N S 71.00 -0.2191 -0.2575 -0.2524 -0.1823 -0.2287 -0.2095 -0.1922 -0.2103 -0.1912 -0.1927 -0.1906 -0.1765 -0.1378 -0.1401 -0.1688 -0.1953 -0.2488 -0.3200 -0.3988 -0.4442 -0.4623 -0.4446 -0.3030 -0.1918 - N S 70.00 -0.1809 -0.2033 -0.1909 -0.1248 -0.1955 -0.1878 -0.1779 -0.1985 -0.1716 -0.1810 -0.1791 -0.1628 -0.1168 -0.1278 -0.1332 -0.1674 -0.2156 -0.2933 -0.3700 -0.4147 -0.4459 -0.4442 -0.2835 -0.1604 - N S 69.00 -0.1437 -0.1487 -0.1374 -0.0874 -0.1630 -0.1691 -0.1668 -0.1854 -0.1573 -0.1710 -0.1680 -0.1486 -0.1014 -0.1148 -0.1079 -0.1419 -0.1876 -0.2700 -0.3377 -0.3896 -0.4328 -0.4379 -0.2597 -0.1353 - N S 68.00 -0.1108 -0.0967 -0.0910 -0.0635 -0.1305 -0.1524 -0.1588 -0.1704 -0.1484 -0.1631 -0.1578 -0.1340 -0.0913 -0.1013 -0.0919 -0.1193 -0.1646 -0.2504 -0.3006 -0.3664 -0.4210 -0.4280 -0.2346 -0.1178 - N S 67.00 -0.0817 -0.0460 -0.0488 -0.0499 -0.0950 -0.1367 -0.1542 -0.1526 -0.1454 -0.1571 -0.1483 -0.1185 -0.0870 -0.0873 -0.0852 -0.0993 -0.1485 -0.2352 -0.2563 -0.3440 -0.4098 -0.4170 -0.2050 -0.1043 - N S 66.00 -0.0613 -0.0160 -0.0222 -0.0427 -0.0718 -0.1218 -0.1455 -0.1367 -0.1403 -0.1472 -0.1365 -0.1049 -0.0809 -0.0760 -0.0800 -0.0840 -0.1366 -0.2170 -0.2162 -0.3191 -0.3940 -0.4047 -0.1824 -0.0899 - N S 65.00 -0.0477 -0.0025 -0.0073 -0.0422 -0.0580 -0.1061 -0.1319 -0.1221 -0.1338 -0.1332 -0.1224 -0.0928 -0.0735 -0.0674 -0.0769 -0.0732 -0.1292 -0.1954 -0.1828 -0.2915 -0.3721 -0.3904 -0.1705 -0.0756 - N S 64.00 -0.0400 -0.0053 -0.0021 -0.0506 -0.0561 -0.0889 -0.1128 -0.1093 -0.1262 -0.1150 -0.1058 -0.0823 -0.0650 -0.0612 -0.0761 -0.0665 -0.1269 -0.1711 -0.1597 -0.2597 -0.3371 -0.3721 -0.1718 -0.0601 - N S 63.00 -0.0358 0.0427 0.0151 -0.0372 -0.0208 -0.0712 -0.0934 -0.1022 -0.1329 -0.1016 -0.0905 -0.0704 -0.0579 -0.0577 -0.0691 -0.0521 -0.1145 -0.1540 -0.1214 -0.2396 -0.3277 -0.3897 -0.1417 -0.0192 - N S 62.00 -0.0266 0.0295 -0.0199 -0.0536 -0.0131 -0.0525 -0.0772 -0.0808 -0.1058 -0.0845 -0.0780 -0.0607 -0.0476 -0.0496 -0.0593 -0.0451 -0.0902 -0.1105 -0.1038 -0.1921 -0.3023 -0.4074 -0.1255 0.0035 - N S 61.00 -0.0154 0.0199 -0.0447 -0.0636 -0.0072 -0.0372 -0.0605 -0.0623 -0.0816 -0.0677 -0.0641 -0.0505 -0.0381 -0.0409 -0.0497 -0.0379 -0.0702 -0.0768 -0.0860 -0.1507 -0.2724 -0.4407 -0.1250 0.0219 - N S 60.00 0.0017 0.0142 -0.0521 -0.0641 -0.0044 -0.0258 -0.0430 -0.0471 -0.0599 -0.0513 -0.0490 -0.0399 -0.0294 -0.0318 -0.0402 -0.0312 -0.0546 -0.0529 -0.0692 -0.1174 -0.2382 -0.4918 -0.1503 0.0245 - N S 59.00 0.0244 0.0164 -0.0284 -0.0507 -0.0055 -0.0187 -0.0248 -0.0352 -0.0402 -0.0356 -0.0326 -0.0289 -0.0215 -0.0222 -0.0307 -0.0249 -0.0437 -0.0385 -0.0537 -0.0922 -0.2002 -0.5613 -0.2089 -0.0005 - N S 58.00 0.0327 0.0144 -0.0123 -0.0355 -0.0048 -0.0120 -0.0126 -0.0232 -0.0243 -0.0221 -0.0195 -0.0186 -0.0140 -0.0139 -0.0207 -0.0174 -0.0306 -0.0250 -0.0369 -0.0643 -0.1478 -0.5064 -0.2138 -0.0139 - N S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nsby5.pot - NORTHERN, SUMMER BY COEFFICIENT FOR BY > 0 AND BZ < 0 - N S 90.00 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 -1.6265 - N S 89.00 -1.6165 -1.6227 -1.6291 -1.6356 -1.6416 -1.6469 -1.6510 -1.6534 -1.6539 -1.6524 -1.6487 -1.6435 -1.6371 -1.6299 -1.6225 -1.6155 -1.6094 -1.6045 -1.6013 -1.6000 -1.6005 -1.6027 -1.6062 -1.6109 - N S 88.00 -1.5837 -1.5955 -1.6077 -1.6200 -1.6316 -1.6423 -1.6514 -1.6579 -1.6603 -1.6575 -1.6499 -1.6386 -1.6250 -1.6103 -1.5951 -1.5806 -1.5682 -1.5588 -1.5531 -1.5508 -1.5523 -1.5568 -1.5638 -1.5730 - N S 87.00 -1.5328 -1.5498 -1.5673 -1.5848 -1.6019 -1.6186 -1.6340 -1.6468 -1.6525 -1.6485 -1.6352 -1.6168 -1.5961 -1.5739 -1.5504 -1.5267 -1.5064 -1.4934 -1.4860 -1.4831 -1.4859 -1.4933 -1.5039 -1.5176 - N S 86.00 -1.4617 -1.4839 -1.5063 -1.5283 -1.5512 -1.5740 -1.5965 -1.6203 -1.6323 -1.6272 -1.6052 -1.5773 -1.5504 -1.5222 -1.4903 -1.4545 -1.4243 -1.4099 -1.4019 -1.3954 -1.3987 -1.4113 -1.4240 -1.4427 - N S 85.00 -1.3667 -1.3965 -1.4239 -1.4489 -1.4803 -1.5096 -1.5368 -1.5794 -1.6006 -1.5953 -1.5589 -1.5194 -1.4892 -1.4573 -1.4172 -1.3632 -1.3180 -1.3085 -1.3033 -1.2832 -1.2862 -1.3113 -1.3205 -1.3454 - N S 84.00 -1.2700 -1.2991 -1.3109 -1.3405 -1.3779 -1.3939 -1.4348 -1.5043 -1.5342 -1.5247 -1.4757 -1.4075 -1.3803 -1.3557 -1.3317 -1.2858 -1.2338 -1.2317 -1.2196 -1.1948 -1.1797 -1.1970 -1.2088 -1.2335 - N S 83.00 -1.1618 -1.1920 -1.1958 -1.2263 -1.2678 -1.2797 -1.3262 -1.4085 -1.4378 -1.4185 -1.3575 -1.2759 -1.2580 -1.2496 -1.2448 -1.2091 -1.1538 -1.1538 -1.1348 -1.1006 -1.0706 -1.0844 -1.0959 -1.1202 - N S 82.00 -1.0411 -1.0733 -1.0753 -1.1046 -1.1522 -1.1649 -1.2125 -1.2927 -1.3123 -1.2783 -1.2068 -1.1222 -1.1207 -1.1373 -1.1566 -1.1342 -1.0802 -1.0750 -1.0468 -1.0018 -0.9598 -0.9702 -0.9834 -1.0033 - N S 81.00 -0.9061 -0.9431 -0.9540 -0.9738 -1.0249 -1.0469 -1.0935 -1.1569 -1.1595 -1.1046 -1.0226 -0.9464 -0.9666 -1.0178 -1.0658 -1.0609 -1.0147 -0.9931 -0.9545 -0.9008 -0.8480 -0.8526 -0.8744 -0.8820 - N S 80.00 -0.7559 -0.8026 -0.8384 -0.8330 -0.8818 -0.9309 -0.9750 -1.0019 -0.9832 -0.8995 -0.8079 -0.7534 -0.7936 -0.8920 -0.9730 -0.9885 -0.9614 -0.9058 -0.8568 -0.7961 -0.7351 -0.7282 -0.7704 -0.7569 - N S 79.00 -0.6398 -0.6944 -0.7439 -0.7256 -0.7683 -0.8223 -0.8630 -0.8640 -0.8261 -0.7254 -0.6303 -0.5889 -0.6305 -0.7462 -0.8482 -0.8816 -0.8693 -0.8025 -0.7509 -0.6861 -0.6202 -0.6179 -0.6729 -0.6532 - N S 78.00 -0.5519 -0.6116 -0.6675 -0.6492 -0.6777 -0.7186 -0.7572 -0.7418 -0.6870 -0.5747 -0.4789 -0.4491 -0.4762 -0.5818 -0.6924 -0.7434 -0.7449 -0.6821 -0.6350 -0.5835 -0.5376 -0.5328 -0.5775 -0.5634 - N S 77.00 -0.4931 -0.5530 -0.6078 -0.6033 -0.6093 -0.6199 -0.6586 -0.6327 -0.5615 -0.4428 -0.3543 -0.3359 -0.3265 -0.3988 -0.5097 -0.5784 -0.5928 -0.5473 -0.5134 -0.4820 -0.4512 -0.4427 -0.4674 -0.4826 - N S 76.00 -0.4460 -0.4993 -0.5448 -0.5408 -0.5243 -0.5187 -0.5574 -0.5211 -0.4441 -0.3397 -0.2677 -0.2519 -0.2128 -0.2622 -0.3710 -0.4535 -0.4903 -0.4581 -0.4298 -0.3996 -0.3697 -0.3638 -0.3961 -0.4242 - N S 75.00 -0.4033 -0.4497 -0.4836 -0.4698 -0.4277 -0.4121 -0.4510 -0.4057 -0.3329 -0.2598 -0.2127 -0.1949 -0.1334 -0.1688 -0.2733 -0.3666 -0.4318 -0.4088 -0.3824 -0.3513 -0.3307 -0.3157 -0.3599 -0.3826 - N S 74.00 -0.3574 -0.3991 -0.4289 -0.4055 -0.3445 -0.3305 -0.3711 -0.3205 -0.2488 -0.1970 -0.1689 -0.1502 -0.0784 -0.1083 -0.2102 -0.2982 -0.3688 -0.3563 -0.3344 -0.3146 -0.3000 -0.2805 -0.3250 -0.3398 - N S 73.00 -0.3121 -0.3462 -0.3725 -0.3414 -0.2740 -0.2713 -0.3132 -0.2568 -0.1856 -0.1504 -0.1362 -0.1162 -0.0439 -0.0637 -0.1546 -0.2292 -0.2963 -0.3021 -0.2904 -0.2865 -0.2740 -0.2523 -0.2893 -0.2966 - N S 72.00 -0.2670 -0.2868 -0.3075 -0.2788 -0.2186 -0.2282 -0.2652 -0.2096 -0.1440 -0.1186 -0.1125 -0.0904 -0.0278 -0.0319 -0.0908 -0.1490 -0.2118 -0.2497 -0.2522 -0.2652 -0.2502 -0.2315 -0.2552 -0.2538 - N S 71.00 -0.2223 -0.2233 -0.2389 -0.2197 -0.1742 -0.2000 -0.2270 -0.1771 -0.1180 -0.0979 -0.0965 -0.0712 -0.0284 -0.0168 -0.0371 -0.0814 -0.1414 -0.2009 -0.2067 -0.2481 -0.2314 -0.2181 -0.2210 -0.2090 - N S 70.00 -0.1741 -0.1623 -0.1790 -0.1743 -0.1439 -0.1785 -0.1996 -0.1553 -0.1016 -0.0842 -0.0848 -0.0588 -0.0298 -0.0089 -0.0037 -0.0370 -0.0891 -0.1467 -0.1469 -0.2191 -0.2158 -0.2078 -0.2006 -0.1757 - N S 69.00 -0.1203 -0.1034 -0.1274 -0.1416 -0.1241 -0.1632 -0.1810 -0.1421 -0.0932 -0.0765 -0.0773 -0.0517 -0.0334 -0.0080 0.0147 -0.0081 -0.0436 -0.0863 -0.0873 -0.1880 -0.2048 -0.2023 -0.1940 -0.1537 - N S 68.00 -0.0632 -0.0454 -0.0782 -0.1169 -0.1105 -0.1523 -0.1690 -0.1366 -0.0931 -0.0745 -0.0730 -0.0490 -0.0393 -0.0141 0.0193 0.0033 -0.0103 -0.0319 -0.0453 -0.1604 -0.1966 -0.2000 -0.1989 -0.1420 - N S 67.00 -0.0036 0.0110 -0.0315 -0.0996 -0.1021 -0.1450 -0.1623 -0.1376 -0.1010 -0.0776 -0.0712 -0.0499 -0.0475 -0.0272 0.0091 -0.0035 0.0127 0.0250 -0.0025 -0.1256 -0.1873 -0.2000 -0.2123 -0.1393 - N S 66.00 0.0148 0.0274 -0.0220 -0.0900 -0.1035 -0.1470 -0.1555 -0.1343 -0.1022 -0.0777 -0.0677 -0.0493 -0.0512 -0.0318 0.0032 -0.0062 0.0367 0.0683 0.0350 -0.0906 -0.1751 -0.1979 -0.2142 -0.1406 - N S 65.00 0.0036 0.0173 -0.0358 -0.0851 -0.1126 -0.1567 -0.1479 -0.1269 -0.0970 -0.0744 -0.0627 -0.0473 -0.0505 -0.0286 0.0010 -0.0042 0.0610 0.0879 0.0580 -0.0626 -0.1640 -0.1937 -0.2051 -0.1456 - N S 64.00 -0.0323 -0.0126 -0.0674 -0.0833 -0.1300 -0.1762 -0.1365 -0.1135 -0.0838 -0.0676 -0.0563 -0.0439 -0.0456 -0.0177 0.0017 0.0017 0.0832 0.0815 0.0666 -0.0352 -0.1488 -0.1869 -0.1825 -0.1560 - N S 63.00 -0.0139 -0.0042 -0.0840 -0.0840 -0.1411 -0.1935 -0.1508 -0.0901 -0.0740 -0.0620 -0.0507 -0.0383 -0.0499 -0.0127 0.0048 -0.0053 0.1142 0.1135 0.1427 0.0246 -0.1313 -0.1952 -0.1977 -0.1833 - N S 62.00 -0.0500 -0.0301 -0.0985 -0.1063 -0.1639 -0.1654 -0.1274 -0.0843 -0.0675 -0.0560 -0.0425 -0.0346 -0.0420 -0.0073 0.0020 -0.0020 0.0613 0.0558 0.1299 0.0196 -0.1270 -0.1596 -0.1840 -0.2147 - N S 61.00 -0.0693 -0.0507 -0.1058 -0.1207 -0.1770 -0.1373 -0.1031 -0.0716 -0.0576 -0.0478 -0.0344 -0.0298 -0.0346 -0.0032 0.0026 0.0015 0.0287 0.0193 0.1083 0.0139 -0.1170 -0.1255 -0.1594 -0.2230 - N S 60.00 -0.0704 -0.0646 -0.0996 -0.1212 -0.1744 -0.1101 -0.0786 -0.0518 -0.0440 -0.0373 -0.0263 -0.0239 -0.0276 -0.0005 0.0059 0.0061 0.0148 0.0077 0.0745 0.0045 -0.1048 -0.1037 -0.1183 -0.1980 - N S 59.00 -0.0410 -0.0681 -0.0725 -0.0997 -0.1452 -0.0855 -0.0553 -0.0251 -0.0271 -0.0249 -0.0184 -0.0172 -0.0209 0.0008 0.0122 0.0124 0.0199 0.0241 0.0292 -0.0098 -0.0937 -0.1045 -0.0515 -0.1088 - N S 58.00 -0.0188 -0.0604 -0.0470 -0.0721 -0.1052 -0.0584 -0.0349 -0.0092 -0.0149 -0.0149 -0.0115 -0.0110 -0.0140 0.0011 0.0122 0.0124 0.0181 0.0257 0.0050 -0.0143 -0.0720 -0.0893 -0.0048 -0.0412 - N S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nsby6.pot - NORTHERN, SUMMER BY COEFFICIENT FOR BY > 0 AND BZ > 0 - N S 90.00 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 -1.7260 - N S 89.00 -1.7262 -1.7299 -1.7333 -1.7365 -1.7394 -1.7418 -1.7436 -1.7445 -1.7441 -1.7422 -1.7387 -1.7339 -1.7281 -1.7218 -1.7159 -1.7111 -1.7078 -1.7061 -1.7062 -1.7079 -1.7108 -1.7144 -1.7184 -1.7224 - N S 88.00 -1.6973 -1.7024 -1.7071 -1.7120 -1.7173 -1.7225 -1.7273 -1.7312 -1.7327 -1.7306 -1.7245 -1.7143 -1.7008 -1.6861 -1.6724 -1.6613 -1.6543 -1.6516 -1.6532 -1.6587 -1.6666 -1.6752 -1.6836 -1.6910 - N S 87.00 -1.6452 -1.6502 -1.6541 -1.6600 -1.6680 -1.6764 -1.6857 -1.6955 -1.7018 -1.7012 -1.6930 -1.6778 -1.6540 -1.6280 -1.6044 -1.5857 -1.5742 -1.5703 -1.5735 -1.5852 -1.6001 -1.6140 -1.6269 -1.6378 - N S 86.00 -1.5672 -1.5709 -1.5713 -1.5788 -1.5912 -1.6028 -1.6175 -1.6368 -1.6524 -1.6538 -1.6434 -1.6262 -1.5870 -1.5466 -1.5112 -1.4832 -1.4671 -1.4629 -1.4672 -1.4872 -1.5095 -1.5271 -1.5450 -1.5601 - N S 85.00 -1.4611 -1.4639 -1.4544 -1.4661 -1.4890 -1.5018 -1.5213 -1.5549 -1.5873 -1.5886 -1.5726 -1.5654 -1.4988 -1.4419 -1.3942 -1.3533 -1.3315 -1.3303 -1.3348 -1.3651 -1.3944 -1.4105 -1.4342 -1.4561 - N S 84.00 -1.3474 -1.3474 -1.3367 -1.3302 -1.3606 -1.3664 -1.3899 -1.4231 -1.4765 -1.4745 -1.4219 -1.3873 -1.3391 -1.2757 -1.2455 -1.2030 -1.2101 -1.2242 -1.2450 -1.2732 -1.2950 -1.3090 -1.3256 -1.3331 - N S 83.00 -1.2306 -1.2286 -1.2146 -1.1988 -1.2303 -1.2280 -1.2475 -1.2798 -1.3375 -1.3257 -1.2520 -1.2074 -1.1701 -1.1123 -1.1001 -1.0706 -1.1012 -1.1301 -1.1597 -1.1848 -1.2000 -1.2091 -1.2179 -1.2160 - N S 82.00 -1.1083 -1.1034 -1.0880 -1.0694 -1.0970 -1.0862 -1.0983 -1.1242 -1.1695 -1.1425 -1.0630 -1.0191 -0.9916 -0.9452 -0.9561 -0.9511 -1.0049 -1.0449 -1.0796 -1.0981 -1.1080 -1.1098 -1.1070 -1.0973 - N S 81.00 -0.9804 -0.9709 -0.9595 -0.9477 -0.9593 -0.9425 -0.9411 -0.9566 -0.9712 -0.9240 -0.8527 -0.8154 -0.7967 -0.7737 -0.8105 -0.8442 -0.9199 -0.9691 -1.0087 -1.0140 -1.0155 -1.0071 -0.9878 -0.9761 - N S 80.00 -0.8431 -0.8294 -0.8275 -0.8358 -0.8135 -0.7982 -0.7736 -0.7815 -0.7424 -0.6661 -0.6234 -0.5988 -0.5821 -0.5973 -0.6597 -0.7536 -0.8454 -0.9030 -0.9482 -0.9273 -0.9170 -0.9010 -0.8594 -0.8530 - N S 79.00 -0.7317 -0.7181 -0.7223 -0.7385 -0.6997 -0.6824 -0.6435 -0.6400 -0.5750 -0.4876 -0.4598 -0.4426 -0.4264 -0.4653 -0.5318 -0.6527 -0.7501 -0.8145 -0.8665 -0.8376 -0.8226 -0.8024 -0.7487 -0.7421 - N S 78.00 -0.6450 -0.6354 -0.6428 -0.6577 -0.6115 -0.5909 -0.5476 -0.5297 -0.4572 -0.3730 -0.3538 -0.3399 -0.3266 -0.3758 -0.4236 -0.5468 -0.6363 -0.7056 -0.7644 -0.7477 -0.7329 -0.7086 -0.6512 -0.6400 - N S 77.00 -0.5863 -0.5817 -0.5903 -0.5931 -0.5473 -0.5226 -0.4827 -0.4445 -0.3813 -0.3138 -0.2964 -0.2824 -0.2724 -0.3289 -0.3332 -0.4410 -0.5112 -0.5812 -0.6438 -0.6570 -0.6438 -0.6170 -0.5710 -0.5466 - N S 76.00 -0.5173 -0.5292 -0.5430 -0.5330 -0.4799 -0.4501 -0.4115 -0.3733 -0.3296 -0.2757 -0.2609 -0.2478 -0.2400 -0.2807 -0.2918 -0.3702 -0.4338 -0.5004 -0.5661 -0.5977 -0.5830 -0.5457 -0.4957 -0.4607 - N S 75.00 -0.4406 -0.4795 -0.5011 -0.4760 -0.4096 -0.3744 -0.3358 -0.3141 -0.2983 -0.2559 -0.2445 -0.2326 -0.2273 -0.2314 -0.2949 -0.3283 -0.3964 -0.4561 -0.5237 -0.5703 -0.5529 -0.4973 -0.4287 -0.3850 - N S 74.00 -0.3778 -0.4268 -0.4487 -0.4119 -0.3487 -0.3146 -0.2790 -0.2711 -0.2699 -0.2376 -0.2295 -0.2179 -0.2100 -0.1954 -0.2817 -0.2913 -0.3588 -0.4158 -0.4860 -0.5410 -0.5267 -0.4648 -0.3777 -0.3215 - N S 73.00 -0.3181 -0.3703 -0.3874 -0.3398 -0.2981 -0.2688 -0.2386 -0.2406 -0.2431 -0.2210 -0.2157 -0.2038 -0.1894 -0.1689 -0.2546 -0.2579 -0.3240 -0.3812 -0.4526 -0.5106 -0.5030 -0.4462 -0.3413 -0.2673 - N S 72.00 -0.2615 -0.3116 -0.3209 -0.2633 -0.2586 -0.2348 -0.2108 -0.2209 -0.2173 -0.2060 -0.2029 -0.1900 -0.1656 -0.1504 -0.2175 -0.2261 -0.2891 -0.3501 -0.4241 -0.4789 -0.4820 -0.4399 -0.3184 -0.2253 - N S 71.00 -0.2191 -0.2575 -0.2524 -0.1823 -0.2287 -0.2095 -0.1922 -0.2103 -0.1912 -0.1927 -0.1906 -0.1765 -0.1378 -0.1401 -0.1688 -0.1953 -0.2488 -0.3200 -0.3988 -0.4442 -0.4623 -0.4446 -0.3030 -0.1918 - N S 70.00 -0.1809 -0.2033 -0.1909 -0.1248 -0.1955 -0.1878 -0.1779 -0.1985 -0.1716 -0.1810 -0.1791 -0.1628 -0.1168 -0.1278 -0.1332 -0.1674 -0.2156 -0.2933 -0.3700 -0.4147 -0.4459 -0.4442 -0.2835 -0.1604 - N S 69.00 -0.1437 -0.1487 -0.1374 -0.0874 -0.1630 -0.1691 -0.1668 -0.1854 -0.1573 -0.1710 -0.1680 -0.1486 -0.1014 -0.1148 -0.1079 -0.1419 -0.1876 -0.2700 -0.3377 -0.3896 -0.4328 -0.4379 -0.2597 -0.1353 - N S 68.00 -0.1108 -0.0967 -0.0910 -0.0635 -0.1305 -0.1524 -0.1588 -0.1704 -0.1484 -0.1631 -0.1578 -0.1340 -0.0913 -0.1013 -0.0919 -0.1193 -0.1646 -0.2504 -0.3006 -0.3664 -0.4210 -0.4280 -0.2346 -0.1178 - N S 67.00 -0.0817 -0.0460 -0.0488 -0.0499 -0.0950 -0.1367 -0.1542 -0.1526 -0.1454 -0.1571 -0.1483 -0.1185 -0.0870 -0.0873 -0.0852 -0.0993 -0.1485 -0.2352 -0.2563 -0.3440 -0.4098 -0.4170 -0.2050 -0.1043 - N S 66.00 -0.0613 -0.0160 -0.0222 -0.0427 -0.0718 -0.1218 -0.1455 -0.1367 -0.1403 -0.1472 -0.1365 -0.1049 -0.0809 -0.0760 -0.0800 -0.0840 -0.1366 -0.2170 -0.2162 -0.3191 -0.3940 -0.4047 -0.1824 -0.0899 - N S 65.00 -0.0477 -0.0025 -0.0073 -0.0422 -0.0580 -0.1061 -0.1319 -0.1221 -0.1338 -0.1332 -0.1224 -0.0928 -0.0735 -0.0674 -0.0769 -0.0732 -0.1292 -0.1954 -0.1828 -0.2915 -0.3721 -0.3904 -0.1705 -0.0756 - N S 64.00 -0.0400 -0.0053 -0.0021 -0.0506 -0.0561 -0.0889 -0.1128 -0.1093 -0.1262 -0.1150 -0.1058 -0.0823 -0.0650 -0.0612 -0.0761 -0.0665 -0.1269 -0.1711 -0.1597 -0.2597 -0.3371 -0.3721 -0.1718 -0.0601 - N S 63.00 -0.0358 0.0427 0.0151 -0.0372 -0.0208 -0.0712 -0.0934 -0.1022 -0.1329 -0.1016 -0.0905 -0.0704 -0.0579 -0.0577 -0.0691 -0.0521 -0.1145 -0.1540 -0.1214 -0.2396 -0.3277 -0.3897 -0.1417 -0.0192 - N S 62.00 -0.0266 0.0295 -0.0199 -0.0536 -0.0131 -0.0525 -0.0772 -0.0808 -0.1058 -0.0845 -0.0780 -0.0607 -0.0476 -0.0496 -0.0593 -0.0451 -0.0902 -0.1105 -0.1038 -0.1921 -0.3023 -0.4074 -0.1255 0.0035 - N S 61.00 -0.0154 0.0199 -0.0447 -0.0636 -0.0072 -0.0372 -0.0605 -0.0623 -0.0816 -0.0677 -0.0641 -0.0505 -0.0381 -0.0409 -0.0497 -0.0379 -0.0702 -0.0768 -0.0860 -0.1507 -0.2724 -0.4407 -0.1250 0.0219 - N S 60.00 0.0017 0.0142 -0.0521 -0.0641 -0.0044 -0.0258 -0.0430 -0.0471 -0.0599 -0.0513 -0.0490 -0.0399 -0.0294 -0.0318 -0.0402 -0.0312 -0.0546 -0.0529 -0.0692 -0.1174 -0.2382 -0.4918 -0.1503 0.0245 - N S 59.00 0.0244 0.0164 -0.0284 -0.0507 -0.0055 -0.0187 -0.0248 -0.0352 -0.0402 -0.0356 -0.0326 -0.0289 -0.0215 -0.0222 -0.0307 -0.0249 -0.0437 -0.0385 -0.0537 -0.0922 -0.2002 -0.5613 -0.2089 -0.0005 - N S 58.00 0.0327 0.0144 -0.0123 -0.0355 -0.0048 -0.0120 -0.0126 -0.0232 -0.0243 -0.0221 -0.0195 -0.0186 -0.0140 -0.0139 -0.0207 -0.0174 -0.0306 -0.0250 -0.0369 -0.0643 -0.1478 -0.5064 -0.2138 -0.0139 - N S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nsbz1.pot - NORTHERN, SUMMER BZ COEFFICIENT FOR BZ < 0 - N S 90.00 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 -0.2811 - N S 89.00 -0.3587 -0.3933 -0.4203 -0.4381 -0.4464 -0.4443 -0.4316 -0.4088 -0.3769 -0.3379 -0.2946 -0.2498 -0.2064 -0.1675 -0.1361 -0.1154 -0.1072 -0.1116 -0.1281 -0.1554 -0.1909 -0.2321 -0.2759 -0.3188 - N S 88.00 -0.4467 -0.5122 -0.5632 -0.5974 -0.6133 -0.6102 -0.5860 -0.5421 -0.4805 -0.4050 -0.3199 -0.2296 -0.1408 -0.0604 0.0041 0.0469 0.0639 0.0537 0.0181 -0.0393 -0.1142 -0.1988 -0.2867 -0.3705 - N S 87.00 -0.5403 -0.6347 -0.7087 -0.7573 -0.7815 -0.7793 -0.7459 -0.6820 -0.5911 -0.4804 -0.3549 -0.2202 -0.0839 0.0432 0.1442 0.2126 0.2394 0.2205 0.1630 0.0727 -0.0455 -0.1763 -0.3091 -0.4314 - N S 86.00 -0.6410 -0.7610 -0.8568 -0.9198 -0.9510 -0.9507 -0.9108 -0.8279 -0.7060 -0.5610 -0.3970 -0.2200 -0.0359 0.1476 0.2845 0.3823 0.4156 0.3827 0.3036 0.1808 0.0128 -0.1675 -0.3484 -0.5062 - N S 85.00 -0.7457 -0.8921 -1.0103 -1.0852 -1.1180 -1.1234 -1.0807 -0.9820 -0.8219 -0.6458 -0.4452 -0.2303 -0.0036 0.2575 0.4186 0.5592 0.5947 0.5361 0.4379 0.2937 0.0574 -0.1709 -0.4072 -0.5951 - N S 84.00 -0.8624 -1.0085 -1.1241 -1.2149 -1.2713 -1.2529 -1.2583 -1.1701 -1.0072 -0.7778 -0.4993 -0.2463 0.0637 0.3662 0.6065 0.7808 0.7873 0.6693 0.5271 0.3522 0.1128 -0.1459 -0.4297 -0.6783 - N S 83.00 -0.9541 -1.1102 -1.2323 -1.3402 -1.4171 -1.3898 -1.4127 -1.3270 -1.1604 -0.8901 -0.5512 -0.2485 0.1294 0.4748 0.7648 0.9704 0.9689 0.8136 0.6353 0.4327 0.1744 -0.1163 -0.4427 -0.7389 - N S 82.00 -1.0266 -1.2004 -1.3341 -1.4610 -1.5574 -1.5323 -1.5439 -1.4566 -1.2939 -0.9900 -0.6013 -0.2379 0.2004 0.5790 0.8993 1.1338 1.1363 0.9670 0.7564 0.5254 0.2394 -0.0841 -0.4441 -0.7758 - N S 81.00 -1.0800 -1.2771 -1.4249 -1.5737 -1.6971 -1.6901 -1.6514 -1.5585 -1.4116 -1.0794 -0.6542 -0.2131 0.2817 0.6792 1.0118 1.2708 1.2922 1.1329 0.8846 0.6231 0.3094 -0.0522 -0.4357 -0.7859 - N S 80.00 -1.1177 -1.3406 -1.5036 -1.6797 -1.8324 -1.8712 -1.7250 -1.6294 -1.5177 -1.1566 -0.7125 -0.1658 0.3776 0.7736 1.0990 1.3773 1.4350 1.3180 1.0199 0.7268 0.3875 -0.0215 -0.4148 -0.7635 - N S 79.00 -1.1501 -1.4018 -1.5823 -1.7882 -1.9673 -2.0139 -1.7882 -1.6642 -1.5480 -1.1874 -0.7219 -0.1195 0.4571 0.8689 1.2062 1.4949 1.5794 1.4770 1.1417 0.8173 0.4480 -0.0146 -0.4257 -0.7745 - N S 78.00 -1.1756 -1.4619 -1.6624 -1.8989 -2.1020 -2.1314 -1.8391 -1.6654 -1.5082 -1.1782 -0.6954 -0.0749 0.5216 0.9653 1.3317 1.6164 1.7233 1.6151 1.2519 0.8736 0.4573 -0.0378 -0.4649 -0.8154 - N S 77.00 -1.1868 -1.5210 -1.7432 -2.0112 -2.2361 -2.2245 -1.8787 -1.6389 -1.4057 -1.1352 -0.6297 -0.0327 0.5690 1.0638 1.4759 1.7356 1.8632 1.7269 1.3512 0.9305 0.4686 -0.0980 -0.5399 -0.8841 - N S 76.00 -1.2061 -1.5402 -1.7789 -2.0932 -2.3441 -2.2985 -1.8853 -1.5953 -1.3489 -1.0856 -0.5832 -0.0129 0.6021 1.1253 1.5833 1.8409 1.9610 1.8251 1.4553 0.9879 0.4956 -0.0890 -0.5536 -0.9071 - N S 75.00 -1.2280 -1.5334 -1.7834 -2.1511 -2.4328 -2.3629 -1.8673 -1.5347 -1.3269 -1.0309 -0.5533 -0.0141 0.6248 1.1566 1.6604 1.9298 2.0211 1.9059 1.5641 1.0185 0.4942 -0.0310 -0.5237 -0.8953 - N S 74.00 -1.2275 -1.5101 -1.7778 -2.1624 -2.4446 -2.3277 -1.8188 -1.4831 -1.2848 -0.9767 -0.5286 -0.0118 0.6280 1.1655 1.6880 1.9649 2.0446 1.9463 1.6323 1.0535 0.5052 0.0061 -0.5028 -0.8717 - N S 73.00 -1.2108 -1.4662 -1.7543 -2.1318 -2.3800 -2.2212 -1.7444 -1.4360 -1.2252 -0.9205 -0.5071 -0.0082 0.6065 1.1401 1.6826 1.9700 2.0423 1.9590 1.6635 1.0914 0.5321 0.0372 -0.4841 -0.8352 - N S 72.00 -1.1816 -1.3956 -1.7066 -2.0601 -2.2582 -2.0452 -1.6517 -1.3944 -1.1530 -0.8614 -0.4910 -0.0037 0.5678 1.0808 1.6151 1.9301 2.0094 1.9493 1.6709 1.1287 0.5832 0.0666 -0.4693 -0.7878 - N S 71.00 -1.1443 -1.3053 -1.6509 -1.9570 -2.0851 -1.8033 -1.5462 -1.3628 -1.0737 -0.7985 -0.4790 0.0036 0.5151 1.0038 1.5119 1.8688 1.9646 1.9266 1.6817 1.1739 0.6357 0.0904 -0.4626 -0.7267 - N S 70.00 -1.0750 -1.2104 -1.5337 -1.7775 -1.8585 -1.5886 -1.4314 -1.2941 -0.9956 -0.7383 -0.4585 0.0025 0.4602 0.9287 1.4043 1.7804 1.9016 1.8673 1.6450 1.1744 0.6465 0.0966 -0.4414 -0.6649 - N S 69.00 -0.9707 -1.1117 -1.3730 -1.5579 -1.6181 -1.3990 -1.3137 -1.1920 -0.9113 -0.6797 -0.4341 -0.0059 0.4006 0.8504 1.2794 1.6490 1.8053 1.7667 1.5560 1.1300 0.6236 0.0796 -0.4153 -0.6065 - N S 68.00 -0.8382 -1.0120 -1.1667 -1.2989 -1.3552 -1.2210 -1.1946 -1.0605 -0.8223 -0.6232 -0.4069 -0.0201 0.3369 0.7664 1.1238 1.4736 1.6859 1.6473 1.4499 1.0646 0.5879 0.0479 -0.3881 -0.5527 - N S 67.00 -0.6860 -0.9165 -0.9210 -1.0186 -1.0857 -1.0561 -1.0761 -0.9046 -0.7334 -0.5648 -0.3731 -0.0416 0.2681 0.6805 0.9448 1.2432 1.5332 1.5047 1.3285 0.9730 0.5457 0.0067 -0.3565 -0.5054 - N S 66.00 -0.5692 -0.7905 -0.7340 -0.8198 -0.8858 -0.9246 -0.9720 -0.7836 -0.6530 -0.5052 -0.3383 -0.0601 0.2091 0.5833 0.7963 1.0512 1.3651 1.3466 1.1962 0.8668 0.4921 -0.0096 -0.3258 -0.4670 - N S 65.00 -0.4822 -0.6545 -0.5896 -0.6660 -0.7359 -0.8137 -0.8716 -0.6843 -0.5776 -0.4477 -0.3071 -0.0729 0.1598 0.4750 0.6711 0.9010 1.1770 1.1844 1.0713 0.7593 0.4327 -0.0095 -0.2888 -0.4373 - N S 64.00 -0.4091 -0.4970 -0.4600 -0.5464 -0.6093 -0.7032 -0.7483 -0.5944 -0.5057 -0.3918 -0.2796 -0.0796 0.1197 0.3533 0.5664 0.8014 1.0010 1.0259 0.9447 0.6335 0.3570 0.0188 -0.2377 -0.4143 - N S 63.00 -0.2461 -0.3211 -0.2585 -0.4072 -0.4786 -0.6268 -0.6245 -0.4569 -0.4476 -0.3412 -0.2577 -0.0897 0.0782 0.3057 0.5126 0.6855 0.8675 0.8831 0.7991 0.4977 0.3152 -0.0342 -0.2390 -0.2829 - N S 62.00 -0.1296 -0.2503 -0.2232 -0.3134 -0.3658 -0.5043 -0.5301 -0.3824 -0.3543 -0.2691 -0.1979 -0.0726 0.0572 0.2560 0.4632 0.5602 0.6885 0.7739 0.6589 0.4129 0.2220 -0.0574 -0.3152 -0.3342 - N S 61.00 -0.0397 -0.1749 -0.1644 -0.2169 -0.2650 -0.3863 -0.4287 -0.3063 -0.2732 -0.2069 -0.1493 -0.0589 0.0403 0.2065 0.3942 0.4426 0.5335 0.6409 0.5135 0.3230 0.1209 -0.0726 -0.3688 -0.3380 - N S 60.00 0.0266 -0.0913 -0.0775 -0.1273 -0.1914 -0.2803 -0.3228 -0.2316 -0.2047 -0.1549 -0.1111 -0.0481 0.0278 0.1573 0.3063 0.3308 0.3969 0.4800 0.3697 0.2417 0.0420 -0.0767 -0.3898 -0.2749 - N S 59.00 0.0407 0.0039 0.0476 -0.0567 -0.1741 -0.1972 -0.2162 -0.1616 -0.1516 -0.1150 -0.0838 -0.0405 0.0201 0.1089 0.2000 0.2239 0.2806 0.2947 0.2373 0.1770 0.0050 -0.0674 -0.3590 -0.0837 - N S 58.00 0.0432 0.0548 0.1041 -0.0126 -0.1341 -0.1233 -0.1305 -0.1009 -0.0999 -0.0759 -0.0559 -0.0292 0.0129 0.0678 0.1181 0.1364 0.1778 0.1612 0.1370 0.1162 -0.0124 -0.0520 -0.2960 0.0457 - N S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nsbz2.pot - NORTHERN, SUMMER BZ COEFFICIENT FOR BZ > 0 - N S 90.00 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 0.1940 - N S 89.00 0.1828 0.1684 0.1550 0.1433 0.1341 0.1280 0.1261 0.1291 0.1374 0.1511 0.1691 0.1898 0.2110 0.2303 0.2457 0.2559 0.2607 0.2606 0.2562 0.2484 0.2381 0.2258 0.2121 0.1976 - N S 88.00 0.1712 0.1446 0.1194 0.0962 0.0765 0.0614 0.0532 0.0546 0.0679 0.0945 0.1341 0.1822 0.2318 0.2741 0.3045 0.3214 0.3261 0.3211 0.3087 0.2915 0.2713 0.2489 0.2243 0.1981 - N S 87.00 0.1586 0.1222 0.0876 0.0540 0.0235 -0.0025 -0.0213 -0.0267 -0.0135 0.0229 0.0864 0.1701 0.2585 0.3287 0.3724 0.3915 0.3912 0.3760 0.3521 0.3235 0.2952 0.2653 0.2329 0.1963 - N S 86.00 0.1441 0.0995 0.0586 0.0148 -0.0265 -0.0626 -0.0969 -0.1134 -0.1043 -0.0664 0.0230 0.1534 0.2972 0.3987 0.4496 0.4635 0.4543 0.4228 0.3852 0.3425 0.3102 0.2763 0.2392 0.1915 - N S 85.00 0.1250 0.0729 0.0331 -0.0232 -0.0743 -0.1156 -0.1737 -0.2051 -0.2003 -0.1776 -0.0597 0.1289 0.3546 0.4872 0.5342 0.5344 0.5177 0.4607 0.4081 0.3442 0.3185 0.2822 0.2473 0.1830 - N S 84.00 0.1096 0.0437 0.0066 -0.0457 -0.1087 -0.1648 -0.2486 -0.3192 -0.3584 -0.3215 -0.1912 0.0390 0.3108 0.5258 0.5692 0.5573 0.5055 0.4570 0.4145 0.3629 0.3114 0.2807 0.2472 0.1804 - N S 83.00 0.0970 0.0187 -0.0218 -0.0786 -0.1507 -0.2155 -0.3128 -0.3990 -0.4572 -0.4202 -0.2845 -0.0265 0.2809 0.5371 0.5861 0.5692 0.5029 0.4597 0.4266 0.3791 0.3148 0.2838 0.2486 0.1764 - N S 82.00 0.0875 -0.0025 -0.0546 -0.1219 -0.1993 -0.2693 -0.3661 -0.4481 -0.5084 -0.4771 -0.3429 -0.0743 0.2526 0.5242 0.5863 0.5721 0.5034 0.4672 0.4450 0.3992 0.3268 0.2912 0.2501 0.1705 - N S 81.00 0.0819 -0.0187 -0.0935 -0.1778 -0.2536 -0.3288 -0.4117 -0.4700 -0.5122 -0.4946 -0.3703 -0.1078 0.2167 0.4757 0.5706 0.5653 0.5065 0.4792 0.4690 0.4240 0.3500 0.3042 0.2497 0.1631 - N S 80.00 0.0831 -0.0250 -0.1376 -0.2488 -0.3124 -0.3983 -0.4520 -0.4669 -0.4671 -0.4747 -0.3664 -0.1263 0.1753 0.3800 0.5416 0.5478 0.5135 0.4951 0.4989 0.4531 0.3893 0.3226 0.2432 0.1514 - N S 79.00 0.0855 -0.0386 -0.1761 -0.2973 -0.3540 -0.4390 -0.4754 -0.4644 -0.4382 -0.4503 -0.3596 -0.1497 0.1145 0.3009 0.4881 0.5123 0.4995 0.5006 0.5230 0.4831 0.4179 0.3403 0.2422 0.1444 - N S 78.00 0.0899 -0.0598 -0.2122 -0.3248 -0.3811 -0.4559 -0.4836 -0.4624 -0.4194 -0.4195 -0.3463 -0.1741 0.0391 0.2319 0.4092 0.4597 0.4678 0.4982 0.5419 0.5131 0.4372 0.3573 0.2457 0.1413 - N S 77.00 0.0972 -0.0906 -0.2480 -0.3312 -0.3969 -0.4513 -0.4790 -0.4608 -0.4092 -0.3796 -0.3247 -0.1973 -0.0523 0.1763 0.3062 0.3942 0.4230 0.4905 0.5558 0.5449 0.4473 0.3747 0.2533 0.1416 - N S 76.00 0.1043 -0.1080 -0.2729 -0.3437 -0.4002 -0.4360 -0.4713 -0.4581 -0.3874 -0.3428 -0.2970 -0.1931 -0.0850 0.1394 0.2556 0.3706 0.4324 0.4911 0.5538 0.5747 0.4837 0.3833 0.2824 0.1790 - N S 75.00 0.1033 -0.1144 -0.2888 -0.3620 -0.3928 -0.4096 -0.4608 -0.4564 -0.3574 -0.3075 -0.2639 -0.1668 -0.0720 0.1193 0.2490 0.3837 0.4926 0.4986 0.5358 0.6021 0.5345 0.3798 0.3270 0.2472 - N S 74.00 0.1114 -0.1093 -0.2883 -0.3677 -0.3774 -0.3867 -0.4440 -0.4370 -0.3293 -0.2787 -0.2369 -0.1477 -0.0602 0.1008 0.2303 0.3770 0.5076 0.4904 0.5178 0.6037 0.5569 0.3962 0.3642 0.2966 - N S 73.00 0.1286 -0.0915 -0.2722 -0.3630 -0.3544 -0.3668 -0.4233 -0.4029 -0.3018 -0.2548 -0.2144 -0.1348 -0.0476 0.0799 0.1985 0.3520 0.4839 0.4681 0.4980 0.5866 0.5640 0.4259 0.3939 0.3335 - N S 72.00 0.1513 -0.0623 -0.2422 -0.3517 -0.3252 -0.3503 -0.4003 -0.3559 -0.2754 -0.2350 -0.1951 -0.1274 -0.0323 0.0567 0.1560 0.3110 0.4291 0.4328 0.4777 0.5531 0.5597 0.4602 0.4126 0.3551 - N S 71.00 0.1680 -0.0293 -0.2022 -0.3368 -0.2893 -0.3366 -0.3759 -0.2950 -0.2506 -0.2186 -0.1772 -0.1258 -0.0125 0.0292 0.1020 0.2518 0.3311 0.3846 0.4572 0.5032 0.5468 0.5023 0.4252 0.3655 - N S 70.00 0.1948 0.0064 -0.1588 -0.3114 -0.2652 -0.3154 -0.3426 -0.2468 -0.2270 -0.2026 -0.1620 -0.1205 -0.0036 0.0065 0.0604 0.1986 0.2545 0.3401 0.4414 0.4655 0.5301 0.5279 0.4378 0.3851 - N S 69.00 0.2350 0.0451 -0.1152 -0.2812 -0.2507 -0.2891 -0.3010 -0.2072 -0.2046 -0.1867 -0.1489 -0.1118 -0.0039 -0.0127 0.0293 0.1489 0.1936 0.2984 0.4323 0.4372 0.5108 0.5382 0.4496 0.4106 - N S 68.00 0.2819 0.0828 -0.0729 -0.2498 -0.2430 -0.2573 -0.2478 -0.1750 -0.1837 -0.1712 -0.1380 -0.0992 -0.0133 -0.0287 0.0088 0.1024 0.1481 0.2584 0.4312 0.4150 0.4847 0.5357 0.4559 0.4359 - N S 67.00 0.3338 0.1191 -0.0300 -0.2146 -0.2417 -0.2189 -0.1796 -0.1502 -0.1638 -0.1558 -0.1296 -0.0816 -0.0328 -0.0416 -0.0009 0.0587 0.1209 0.2195 0.4395 0.3983 0.4477 0.5222 0.4589 0.4658 - N S 66.00 0.3763 0.1478 0.0008 -0.1740 -0.2343 -0.1853 -0.1276 -0.1268 -0.1457 -0.1430 -0.1190 -0.0686 -0.0471 -0.0496 -0.0104 0.0265 0.0960 0.1771 0.4074 0.3707 0.4113 0.5024 0.4784 0.5055 - N S 65.00 0.4142 0.1725 0.0237 -0.1213 -0.2210 -0.1547 -0.0916 -0.1059 -0.1300 -0.1331 -0.1062 -0.0593 -0.0571 -0.0522 -0.0189 0.0048 0.0737 0.1303 0.3238 0.3317 0.3731 0.4739 0.5174 0.5540 - N S 64.00 0.4555 0.1981 0.0414 -0.0444 -0.1980 -0.1270 -0.0768 -0.0884 -0.1170 -0.1265 -0.0911 -0.0537 -0.0633 -0.0494 -0.0262 -0.0066 0.0549 0.0823 0.1893 0.2787 0.3274 0.4267 0.5827 0.6195 - N S 63.00 0.5310 0.2127 0.0754 0.0213 -0.2221 -0.0973 -0.0575 -0.0730 -0.1293 -0.1210 -0.0751 -0.0508 -0.0698 -0.0475 -0.0359 -0.0116 0.0351 0.0148 0.1542 0.2745 0.2850 0.3968 0.6288 0.6983 - N S 62.00 0.4395 0.1823 0.1434 0.0383 -0.1853 -0.0856 -0.0423 -0.0523 -0.1071 -0.1016 -0.0648 -0.0517 -0.0551 -0.0443 -0.0413 -0.0123 0.0234 0.0322 0.1183 0.2149 0.2268 0.3368 0.6516 0.7588 - N S 61.00 0.3586 0.1541 0.1830 0.0478 -0.1515 -0.0719 -0.0310 -0.0369 -0.0865 -0.0830 -0.0541 -0.0467 -0.0422 -0.0397 -0.0418 -0.0133 0.0140 0.0410 0.0905 0.1581 0.1690 0.2599 0.6165 0.7575 - N S 60.00 0.3080 0.1345 0.1725 0.0445 -0.1197 -0.0566 -0.0235 -0.0269 -0.0674 -0.0652 -0.0432 -0.0363 -0.0306 -0.0340 -0.0375 -0.0146 0.0061 0.0423 0.0717 0.1060 0.1163 0.1697 0.4852 0.6102 - N S 59.00 0.3300 0.1351 0.0725 0.0216 -0.0896 -0.0396 -0.0202 -0.0224 -0.0494 -0.0480 -0.0322 -0.0207 -0.0202 -0.0272 -0.0286 -0.0159 -0.0003 0.0369 0.0618 0.0577 0.0737 0.0739 0.2275 0.2351 - N S 58.00 0.2970 0.1115 0.0133 0.0079 -0.0597 -0.0247 -0.0147 -0.0160 -0.0323 -0.0315 -0.0213 -0.0104 -0.0120 -0.0189 -0.0193 -0.0132 -0.0028 0.0272 0.0455 0.0267 0.0407 0.0161 0.0625 -0.0137 - N S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nwbh1.pot - NORTHERN, WINTER H0 COEFFICIENT (FREE PARAMETER) FOR BZ < 0 - N W 90.00 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 5.7078 - N W 89.00 6.7853 7.0657 7.2744 7.3958 7.4159 7.3217 7.1067 6.7639 6.3346 5.8588 5.3682 4.9054 4.5043 4.1960 4.0027 3.9310 3.9856 4.1574 4.4377 4.7984 5.2171 5.6486 6.0653 6.4466 - N W 88.00 7.6181 8.1624 8.5971 8.8585 8.9420 8.8066 8.3206 7.5591 6.6802 5.7487 4.8026 3.9087 3.1584 2.5848 2.2275 2.1057 2.2112 2.5330 3.0652 3.7893 4.6605 5.4978 6.2867 6.9830 - N W 87.00 8.3906 9.2191 9.9040 10.3136 10.4977 10.2776 9.4332 8.2786 7.0171 5.6312 4.1503 2.6784 1.3622 0.4931 0.0112 -0.1213 0.1036 0.7419 1.7491 2.9428 4.2809 5.5151 6.6008 7.5160 - N W 86.00 9.0133 10.1527 11.1136 11.6397 11.8717 11.5472 10.1900 8.5690 7.0201 5.1796 3.1597 1.3961 -0.3524 -1.6927 -2.3010 -2.2385 -1.7366 -0.7208 0.6284 2.2377 3.9810 5.6292 7.0345 7.9693 - N W 85.00 9.4299 10.9527 12.2879 12.8693 13.0548 12.8499 10.5711 8.4600 7.0113 4.6869 1.8553 0.1831 -2.0516 -4.0957 -4.9125 -4.3794 -3.4101 -1.9732 -0.2882 1.5467 3.7456 5.9071 7.6393 8.1863 - N W 84.00 10.8244 12.9038 14.0980 14.9410 15.0799 13.9307 10.9475 8.9741 7.2408 5.1869 3.2047 -0.1504 -3.2401 -5.1269 -5.1476 -5.3599 -3.3613 -1.9521 -0.7734 0.9453 3.5131 6.1282 9.4383 9.1307 - N W 83.00 11.9141 14.4518 15.6416 16.4685 16.3467 14.8824 11.6815 9.7082 7.7503 5.7149 3.7621 -0.4915 -4.2474 -6.1680 -5.8043 -6.2120 -3.7471 -2.2581 -1.4429 0.0429 2.4174 5.1366 10.4433 9.6063 - N W 82.00 12.5151 15.7716 16.9525 17.4107 17.0318 15.4827 12.5116 10.7116 8.4928 6.3219 4.2124 -0.9777 -5.0790 -6.9783 -6.4944 -6.8481 -4.1964 -2.8314 -2.2895 -0.8393 1.6849 3.9522 8.7448 9.3593 - N W 81.00 12.9051 16.5254 17.8366 18.1133 17.8626 16.3021 13.6530 11.7443 9.2395 6.8480 4.0281 -1.7013 -5.9405 -7.8668 -7.3345 -7.6375 -4.7814 -3.4784 -2.8478 -1.6357 0.8865 2.8337 7.1028 9.2610 - N W 80.00 13.3136 17.0197 18.3570 18.5059 18.5058 16.7352 14.5958 12.6848 9.8402 7.1259 3.0155 -2.9880 -6.8120 -8.3769 -8.3838 -8.3150 -6.3308 -4.3490 -3.2317 -2.5203 -0.2085 1.4609 4.9744 9.2077 - N W 79.00 12.4159 16.2807 18.0204 18.0945 17.9754 16.0212 13.8968 11.8639 9.1587 6.6310 2.2089 -3.6756 -7.1573 -8.4585 -9.0030 -8.6430 -7.1433 -5.3591 -4.1373 -3.4957 -1.6026 0.5127 4.1317 8.5286 - N W 78.00 10.7942 14.5189 17.0001 17.0752 16.6678 14.7230 12.5627 10.4115 7.9151 5.6135 1.6150 -3.5832 -7.2163 -8.2437 -9.2924 -8.6087 -7.5331 -6.5324 -5.4860 -3.6986 -1.7361 0.2059 3.2175 7.6559 - N W 77.00 8.5996 11.9890 15.5572 15.7777 15.1235 13.2066 10.9909 8.7992 6.5044 4.2667 0.8772 -2.7871 -6.9437 -7.8211 -9.3007 -8.2801 -7.6461 -7.5800 -6.7925 -4.1691 -2.0186 -0.3531 1.5815 5.9019 - N W 76.00 8.0567 11.0201 14.2594 14.8065 13.9898 11.8477 9.5734 7.4416 5.1164 2.9614 0.1359 -2.5814 -5.7040 -6.6710 -7.7088 -6.9054 -6.7665 -7.0829 -6.6328 -4.9448 -3.5175 -1.4849 0.8739 5.0020 - N W 75.00 7.8165 10.6772 13.5730 14.1816 13.1416 10.5470 8.1398 6.1853 3.7621 1.6648 -0.5859 -2.6252 -4.1554 -5.3573 -5.5537 -5.4389 -5.6259 -5.9624 -5.6743 -5.0218 -3.8659 -2.0178 0.5675 4.4011 - N W 74.00 7.2559 10.3912 13.0769 13.4367 12.3116 9.7301 7.4560 5.3802 2.8772 0.9385 -0.8215 -2.3308 -3.1463 -4.5787 -4.8919 -4.7149 -4.8151 -5.1063 -4.9919 -4.8513 -4.0082 -2.4712 0.0864 3.6677 - N W 73.00 6.6028 10.0932 12.5035 12.4490 11.4548 9.3028 7.0741 4.7679 2.3079 0.6209 -0.8138 -1.8705 -2.2259 -3.7122 -4.2209 -3.8189 -3.8503 -4.3653 -4.5511 -4.6667 -4.2059 -3.0371 -0.6395 2.8288 - N W 72.00 5.8742 9.6993 11.5363 11.2342 10.7164 9.1108 6.8936 4.2529 1.9813 0.5450 -0.6353 -1.2740 -1.3676 -2.0933 -2.3737 -2.3300 -2.7863 -3.7519 -4.2540 -4.4954 -4.5140 -3.6883 -1.3642 1.9756 - N W 71.00 5.0741 9.3163 10.3598 9.9365 10.0446 9.0957 6.8837 3.8309 1.7822 0.6046 -0.3285 -0.5663 -0.5615 -0.5583 -0.8528 -1.4816 -2.2718 -3.2468 -3.8841 -4.2943 -4.7751 -4.3500 -2.2093 1.0318 - N W 70.00 4.2439 8.5102 9.1410 8.8720 9.3333 8.8405 6.7847 3.6292 1.7122 0.6783 -0.0613 -0.0527 0.1001 0.5003 0.1874 -0.7623 -1.7928 -2.6208 -3.1867 -3.9644 -4.7826 -4.7074 -2.8147 0.1859 - N W 69.00 3.3150 7.3614 7.9300 8.0356 8.7166 8.4824 6.6201 3.5898 1.7652 0.7781 0.1722 0.3276 0.6487 1.2971 1.1287 0.0911 -1.1488 -1.8427 -2.5127 -3.6932 -4.7015 -4.7582 -3.1166 -0.4950 - N W 68.00 2.4520 5.9525 6.6005 7.2596 8.1110 8.0644 6.4089 3.6851 1.9364 0.8977 0.3843 0.6015 1.1022 1.9341 2.2540 1.0723 -0.4700 -1.2388 -2.1780 -3.4984 -4.6076 -4.7192 -3.2370 -1.0294 - N W 67.00 1.7095 4.3505 5.1907 6.5900 7.5523 7.6293 6.1740 3.8686 2.1894 1.0497 0.6692 0.8461 1.4806 2.3886 3.3636 2.3004 0.3972 -0.5842 -1.8538 -3.2241 -4.4049 -4.6080 -3.2160 -1.4374 - N W 66.00 1.1593 3.3705 4.4175 6.1826 7.2173 7.2842 5.9670 3.9124 2.3318 1.1369 0.9632 1.0545 1.7161 2.6140 3.8699 3.2516 1.3068 0.0703 -1.5005 -2.8823 -4.1478 -4.4331 -3.2256 -1.6749 - N W 65.00 0.7740 2.8056 4.0108 5.9202 7.0390 6.9933 5.7739 3.8725 2.3797 1.1098 1.0488 1.1452 1.8117 2.6241 3.9989 3.6921 2.2156 0.4185 -1.2473 -2.5652 -3.9459 -4.2230 -3.2659 -1.7873 - N W 64.00 0.4449 2.4286 3.7727 5.7619 6.9713 6.6676 5.5209 3.7358 2.3055 0.9401 0.9585 1.1305 1.7767 2.4253 3.7873 3.3675 2.3443 0.3669 -1.0767 -2.1613 -3.6778 -3.8997 -3.3701 -1.8144 - N W 63.00 0.2701 2.4106 3.5086 5.7090 7.1125 6.6689 5.3941 3.6030 2.2415 0.8556 0.8387 0.9937 1.6811 1.9654 3.1973 2.7451 2.4184 0.4548 -1.0163 -1.7932 -3.5296 -3.6134 -3.3633 -2.0719 - N W 62.00 -0.0678 1.9244 3.1359 5.4321 6.6331 6.3798 5.1726 3.2487 1.9560 1.3067 1.2052 0.9396 1.5540 1.8511 2.7637 2.6522 2.5631 0.4476 -0.9732 -1.9677 -3.1384 -2.9314 -2.8724 -1.8391 - N W 61.00 -0.2205 1.5062 2.6883 5.0417 6.0534 5.9254 4.7663 2.7117 1.6316 1.4987 1.3311 0.8918 1.3838 1.6598 2.3011 2.4283 2.6091 0.6536 -0.9138 -2.2036 -2.5989 -2.2756 -2.4012 -1.5987 - N W 60.00 -0.1593 1.2106 2.2554 4.4880 5.2619 5.1187 4.0068 1.9197 1.2714 1.4177 1.2271 0.8527 1.1833 1.4103 1.7934 2.0589 2.5081 1.1824 -0.9123 -2.4882 -2.4822 -1.9674 -1.9377 -1.3110 - N W 59.00 0.3510 1.1813 1.9647 3.6960 4.0882 3.5667 2.7550 0.9228 0.9270 1.0779 0.9087 0.8249 0.9446 1.1067 1.2421 1.5326 2.1836 2.0007 -1.0629 -2.7906 -3.5971 -2.4066 -1.4828 -0.9156 - N W 58.00 0.6262 1.0177 1.5481 2.7674 2.7922 2.1496 1.7170 0.3140 0.5966 0.7212 0.5964 0.6385 0.6568 0.7607 0.7783 1.0247 1.6820 2.0741 -0.9632 -2.5175 -3.6740 -2.3698 -0.9952 -0.5601 - N W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nwbh2.pot - NORTHERN, WINTER H0 COEFFICIENT (FREE PARAMETER) FOR BZ > 0 - N W 90.00 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 4.4584 - N W 89.00 5.5416 5.6837 5.7435 5.7225 5.6166 5.4386 5.1952 4.9018 4.5703 4.2265 3.8941 3.6002 3.3685 3.2126 3.1450 3.1668 3.2781 3.4684 3.7243 4.0334 4.3737 4.7213 5.0472 5.3279 - N W 88.00 6.7465 7.0169 7.1260 7.0754 6.8564 6.5089 6.0336 5.4566 4.7845 4.0818 3.3986 2.8034 2.3429 2.0358 1.9108 1.9544 2.1866 2.5564 3.0489 3.6647 4.3572 5.0846 5.7572 6.3279 - N W 87.00 8.0625 8.4231 8.5849 8.4997 8.1341 7.6275 6.9724 6.1492 5.1538 4.0198 2.9507 2.0245 1.3311 0.8884 0.6958 0.7645 1.1497 1.6839 2.3541 3.2623 4.3596 5.5332 6.6079 7.4634 - N W 86.00 9.4939 9.8845 10.1493 10.0126 9.4042 8.7739 7.9897 6.9424 5.6896 3.9533 2.5225 1.2590 0.3391 -0.1791 -0.4809 -0.4026 0.2645 1.0955 1.8581 2.8738 4.3672 6.0708 7.5926 8.7146 - N W 85.00 11.0378 11.2844 11.8082 11.7046 10.6068 9.9415 9.1334 7.8639 6.5729 3.7491 2.1563 0.4842 -0.6537 -1.1004 -1.5813 -1.7775 -0.8387 0.6025 1.5870 2.7104 4.4738 6.7297 8.7838 10.0164 - N W 84.00 12.3696 12.4733 13.2127 13.0718 12.3512 10.9563 10.0579 8.9801 6.8704 3.9185 1.4938 -0.6227 -1.5294 -1.7413 -1.8808 -2.2497 -1.9098 -0.3932 1.1547 2.2133 3.9748 6.8119 9.3350 11.2102 - N W 83.00 13.7660 13.6845 14.7091 14.4442 13.7374 11.9840 11.0590 9.7358 7.0787 4.1796 1.4003 -1.2396 -2.1187 -2.3302 -2.4335 -2.8476 -2.7215 -1.2865 0.5611 1.5984 3.6675 7.0886 10.0206 12.2349 - N W 82.00 15.1189 15.1723 16.1735 15.6001 14.8537 12.8111 11.7282 10.3686 7.3878 4.4889 1.6156 -1.4764 -2.6322 -2.9460 -3.1045 -3.5008 -3.3491 -2.2163 -0.6750 0.7227 3.5391 7.2606 10.7455 13.3990 - N W 81.00 16.1600 16.6426 16.9900 16.0802 15.1922 13.3632 12.2408 10.9475 8.0264 5.0671 2.2301 -1.2804 -2.9734 -3.5805 -3.9523 -4.2188 -3.8303 -2.9520 -2.0125 -0.3452 2.7482 6.9437 11.0432 14.1537 - N W 80.00 16.9101 18.2863 17.7620 16.2161 15.0791 13.7662 12.6107 11.2896 8.6557 5.8490 3.3242 -0.5286 -3.2136 -4.2989 -5.0766 -4.9412 -4.0736 -3.2990 -3.3037 -1.7379 0.5063 5.9038 11.2703 14.6763 - N W 79.00 16.2009 18.3011 17.5063 15.6119 14.4113 13.3099 12.1527 10.7601 8.3808 5.8227 3.5124 0.0855 -2.7247 -4.3546 -5.6075 -5.4533 -4.6291 -3.9975 -4.5060 -3.2681 -1.3616 4.1731 10.7575 14.1112 - N W 78.00 13.7510 16.3910 15.8643 14.2680 13.2388 12.2914 11.2032 9.7340 7.5949 5.2735 3.1589 0.3090 -2.1697 -3.9619 -5.4660 -5.6357 -5.3591 -4.9767 -5.4064 -4.5334 -3.0959 1.7265 8.2834 11.2798 - N W 77.00 10.6856 13.4866 13.4074 12.6135 11.8813 11.0627 10.0147 8.4435 6.6440 4.5106 2.5262 0.2971 -1.7404 -3.5123 -5.0911 -5.6175 -5.9802 -5.9177 -6.0009 -5.7417 -5.3836 -2.3853 0.5478 5.9996 - N W 76.00 8.2157 11.5596 11.9323 11.2848 10.7363 9.7504 8.8251 7.3225 5.6594 3.8009 1.8993 0.1754 -1.4227 -2.9299 -4.3619 -5.2778 -6.1154 -6.2209 -6.4420 -6.4520 -6.8633 -4.9914 -2.2482 2.7440 - N W 75.00 6.9829 10.4082 11.0339 10.1678 9.7200 8.5291 7.7153 6.4292 4.7956 3.1983 1.3561 0.0469 -1.1672 -2.3813 -3.7426 -4.8545 -5.9636 -6.1661 -6.7790 -6.7511 -7.2500 -5.9415 -3.4254 1.3917 - N W 74.00 5.9758 9.0536 9.5662 8.8576 8.5506 7.5341 6.8483 5.7252 4.1490 2.7545 1.1011 0.0869 -0.8377 -1.8505 -3.1242 -4.3539 -5.6767 -5.9996 -6.8547 -6.8866 -7.3701 -6.5864 -4.5908 0.1647 - N W 73.00 4.3278 7.3537 7.8508 7.5091 7.3831 6.7231 6.1874 5.1289 3.6056 2.4231 1.0158 0.2311 -0.4622 -1.2676 -2.3400 -3.8443 -5.3455 -5.7992 -6.7963 -6.9376 -7.3979 -7.0405 -5.4426 -1.1982 - N W 72.00 2.2007 5.5019 6.2241 6.3288 6.3654 6.0581 5.6631 4.6151 3.1419 2.1814 1.0545 0.4690 -0.0089 -0.6735 -1.5544 -3.2930 -4.9771 -5.5428 -6.6663 -6.9514 -7.3519 -7.3187 -5.8878 -2.1299 - N W 71.00 1.0021 4.1494 4.8302 5.3013 5.4103 5.4701 5.2165 4.1400 2.7285 2.0043 1.2243 0.8184 0.5505 -0.0139 -0.6749 -2.5576 -4.3051 -5.1854 -6.4980 -6.9409 -7.2435 -7.6035 -6.3060 -2.7551 - N W 70.00 0.1638 2.9452 3.6920 4.4037 4.6831 4.9772 4.8319 3.7533 2.4004 1.8869 1.3880 1.1351 1.0046 0.5421 0.0131 -1.9190 -3.6917 -4.8162 -6.2361 -6.8292 -7.1498 -7.7981 -6.7513 -3.3240 - N W 69.00 -0.6693 1.8023 2.8091 3.6909 4.1646 4.5588 4.4795 3.4187 2.1429 1.8275 1.5616 1.4366 1.3989 1.0389 0.5718 -1.2872 -2.9951 -4.4186 -5.8699 -6.6410 -7.0573 -7.8916 -7.0616 -3.8760 - N W 68.00 -1.3341 0.8085 2.1162 3.0911 3.7423 4.1660 4.1140 3.1155 1.9736 1.8353 1.7348 1.7166 1.7443 1.4835 0.9757 -0.6763 -2.1551 -3.9981 -5.3793 -6.3501 -6.9348 -7.8997 -7.1451 -4.1951 - N W 67.00 -1.8737 -0.1093 1.5220 2.5137 3.3483 3.7631 3.7153 2.8344 1.9075 1.9191 1.9087 1.9758 2.0244 1.8794 1.2440 -0.1273 -1.3626 -3.5919 -4.7031 -5.9109 -6.7613 -7.8458 -7.1861 -4.4395 - N W 66.00 -2.1442 -0.6693 1.1624 2.0590 3.0823 3.4095 3.3577 2.5629 1.7959 1.9355 1.9885 2.1313 2.1747 2.1217 1.5034 0.3627 -0.7824 -3.1361 -3.9368 -5.4605 -6.5647 -7.7853 -7.2411 -4.6637 - N W 65.00 -2.2286 -1.0063 0.9618 1.6359 2.9097 3.0552 3.0171 2.3041 1.6428 1.8625 1.9574 2.1684 2.1757 2.1790 1.7174 0.7738 -0.3683 -2.6001 -3.1083 -4.9866 -6.3125 -7.7163 -7.2539 -4.8636 - N W 64.00 -2.1313 -1.2090 0.8901 1.1596 2.8655 2.6729 2.7443 2.1008 1.4590 1.6933 1.8046 2.0842 2.0284 2.0505 1.8761 1.0853 -0.1619 -2.0482 -2.4664 -4.4376 -5.8636 -7.6120 -7.2269 -5.1088 - N W 63.00 -2.3576 -1.9800 0.5833 0.3253 2.3304 2.0136 2.5592 1.7705 1.0311 1.4775 1.6646 2.0037 1.8421 1.8448 1.7628 1.0456 -0.2402 -1.8730 -2.4403 -3.6098 -5.3974 -8.1247 -8.1459 -5.5050 - N W 62.00 -3.3188 -1.7339 0.4587 0.5348 1.5262 1.1827 0.8696 0.8386 0.9757 1.3926 1.5314 1.8670 1.6593 1.7571 1.7614 1.0541 -0.1118 -1.4040 -1.8411 -2.9743 -5.1070 -7.6524 -8.0674 -5.2311 - N W 61.00 -4.4280 -1.5154 0.2790 0.6667 0.7580 0.4569 -0.4238 0.2064 0.7592 1.1910 1.3243 1.6384 1.4431 1.5953 1.6373 0.9735 -0.0253 -1.0467 -1.3952 -2.3486 -4.7140 -6.9956 -7.9948 -4.9817 - N W 60.00 -5.7891 -1.3458 -0.1153 0.6725 0.1230 -0.0447 -1.2765 -0.0943 0.4013 0.8882 1.0509 1.3302 1.1984 1.3706 1.3987 0.7992 -0.0066 -0.8502 -1.1617 -1.8644 -4.2770 -6.2268 -7.7969 -4.8588 - N W 59.00 -5.7414 -1.4171 -0.8812 0.3331 -0.1477 -0.1088 -1.5378 -0.0612 -0.0910 0.5001 0.7188 0.9438 0.9254 1.0883 1.0508 0.5349 -0.0632 -0.8299 -1.1375 -1.5714 -3.9182 -5.5893 -7.3842 -5.1229 - N W 58.00 -5.0712 -1.2206 -1.2051 0.0964 -0.2824 -0.1156 -1.4091 -0.0320 -0.2525 0.2491 0.4412 0.5983 0.6265 0.7519 0.6978 0.3240 -0.0733 -0.6660 -0.9142 -1.1711 -3.2132 -4.6742 -6.4565 -4.6922 - N W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nwby3.pot - NORTHERN, WINTER BY COEFFICIENT FOR BY < 0 AND BZ < 0 - N W 90.00 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 - N W 89.00 -1.3770 -1.3743 -1.3831 -1.4061 -1.4448 -1.4999 -1.5683 -1.6504 -1.7304 -1.7990 -1.8478 -1.8710 -1.8681 -1.8402 -1.7938 -1.7356 -1.6727 -1.6125 -1.5575 -1.5113 -1.4714 -1.4380 -1.4103 -1.3903 - N W 88.00 -1.1546 -1.1406 -1.1403 -1.1656 -1.2236 -1.3236 -1.4745 -1.6644 -1.8541 -2.0124 -2.1214 -2.1635 -2.1436 -2.0645 -1.9443 -1.8048 -1.6585 -1.5349 -1.4281 -1.3564 -1.2994 -1.2488 -1.2087 -1.1799 - N W 87.00 -0.9253 -0.8814 -0.8592 -0.8648 -0.9302 -1.0836 -1.3411 -1.6396 -1.9463 -2.2183 -2.4040 -2.4575 -2.3835 -2.2268 -2.0291 -1.7923 -1.5403 -1.3455 -1.2244 -1.1650 -1.1093 -1.0401 -0.9910 -0.9648 - N W 86.00 -0.6960 -0.5912 -0.5370 -0.4960 -0.5665 -0.8065 -1.1929 -1.5943 -2.0251 -2.4411 -2.6941 -2.7116 -2.5166 -2.2934 -2.0192 -1.6662 -1.3132 -1.0738 -0.9818 -0.9329 -0.8642 -0.7766 -0.7242 -0.7341 - N W 85.00 -0.4737 -0.2507 -0.1946 -0.0421 -0.1369 -0.4970 -1.0248 -1.4694 -2.0395 -2.6773 -3.0285 -2.9330 -2.5587 -2.2735 -1.9433 -1.4581 -1.0337 -0.7562 -0.7118 -0.6418 -0.5448 -0.4684 -0.3457 -0.4667 - N W 84.00 0.1512 0.4086 0.6061 0.7812 0.5469 -0.2524 -0.9440 -1.3498 -1.9493 -2.5467 -3.0117 -3.0146 -2.5794 -2.1540 -1.6725 -1.2822 -0.9057 -0.6490 -0.5607 -0.5036 -0.3808 -0.2327 0.1167 -0.0084 - N W 83.00 0.6633 0.9420 1.1468 1.2515 0.8769 -0.0315 -0.7599 -1.1501 -1.7803 -2.3772 -2.9084 -3.0207 -2.5817 -2.0731 -1.5337 -1.1888 -0.8167 -0.5437 -0.4032 -0.3006 -0.1352 -0.0096 0.6383 0.4427 - N W 82.00 1.0858 1.3888 1.4942 1.4218 0.9660 0.1264 -0.5266 -0.8609 -1.5184 -2.1506 -2.7208 -2.9662 -2.5903 -2.0302 -1.4466 -1.1005 -0.7256 -0.4502 -0.2339 -0.0520 0.1572 0.3328 0.8945 0.8219 - N W 81.00 1.4091 1.6660 1.6375 1.4544 1.0431 0.3166 -0.2086 -0.5845 -1.2281 -1.8957 -2.4361 -2.8400 -2.6314 -2.0043 -1.3702 -1.0297 -0.6570 -0.3543 -0.0905 0.1371 0.3924 0.6234 1.0183 1.1561 - N W 80.00 1.6168 1.8197 1.6427 1.3366 1.0293 0.5181 0.0757 -0.3526 -0.9582 -1.7072 -2.1926 -2.6170 -2.6468 -1.9900 -1.3367 -0.9933 -0.6771 -0.2925 0.0316 0.3209 0.6008 0.8714 1.0008 1.4098 - N W 79.00 1.6316 1.8191 1.5980 1.2531 0.9548 0.5396 0.1324 -0.2585 -0.7654 -1.4702 -1.9490 -2.2922 -2.2911 -1.7453 -1.1293 -0.7374 -0.4682 -0.1302 0.2225 0.5810 0.8474 0.9940 1.0663 1.4636 - N W 78.00 1.5454 1.7007 1.4979 1.1780 0.8457 0.5043 0.1168 -0.2598 -0.7035 -1.2120 -1.5594 -1.8522 -1.8398 -1.3419 -0.7947 -0.3631 -0.1155 0.1196 0.4789 0.7432 0.9216 1.0425 1.1109 1.4955 - N W 77.00 1.3807 1.4968 1.3576 1.1214 0.7240 0.4361 0.0588 -0.2947 -0.6754 -0.9892 -1.2137 -1.3681 -1.2473 -0.8511 -0.4235 0.0462 0.2706 0.4020 0.6898 0.8882 1.0214 1.1249 1.2055 1.4650 - N W 76.00 1.3259 1.3563 1.2260 1.0109 0.6537 0.3866 0.0751 -0.2407 -0.5425 -0.7788 -0.9290 -0.9408 -0.7127 -0.3425 0.0230 0.3582 0.5143 0.5768 0.8241 1.0641 1.2217 1.1894 1.2606 1.4008 - N W 75.00 1.2806 1.2448 1.1148 0.8901 0.6044 0.3473 0.1604 -0.1312 -0.3605 -0.5663 -0.6423 -0.5365 -0.2581 0.1050 0.4074 0.5452 0.6721 0.6959 0.8837 1.1424 1.2579 1.1906 1.2887 1.3469 - N W 74.00 1.2590 1.1907 1.0566 0.8276 0.5804 0.3476 0.1979 -0.0501 -0.2272 -0.4037 -0.4490 -0.3101 -0.0170 0.2643 0.4877 0.5991 0.7206 0.7469 0.9060 1.1452 1.2436 1.1988 1.2965 1.3095 - N W 73.00 1.2610 1.1748 1.0250 0.7960 0.5837 0.3712 0.2225 0.0149 -0.1244 -0.2852 -0.3232 -0.1746 0.1065 0.3539 0.5399 0.6248 0.7342 0.7629 0.9153 1.1312 1.2149 1.2044 1.2958 1.2856 - N W 72.00 1.2798 1.1861 1.0180 0.7958 0.6001 0.4160 0.2489 0.0698 -0.0708 -0.2073 -0.2287 -0.0875 0.1717 0.4114 0.5391 0.6106 0.7036 0.7611 0.9179 1.1073 1.1574 1.2154 1.2869 1.2683 - N W 71.00 1.3141 1.2152 1.0240 0.8172 0.6274 0.4754 0.2704 0.1163 -0.0412 -0.1526 -0.1506 -0.0338 0.1997 0.4285 0.4807 0.5840 0.6749 0.7472 0.9061 1.0750 1.1007 1.2310 1.2755 1.2530 - N W 70.00 1.3331 1.2284 1.0337 0.8385 0.6625 0.5135 0.2859 0.1475 -0.0155 -0.1118 -0.0991 -0.0009 0.2117 0.4377 0.4620 0.5790 0.6699 0.7498 0.8913 1.0337 1.0648 1.2089 1.2510 1.2475 - N W 69.00 1.3404 1.2307 1.0473 0.8584 0.6944 0.5358 0.2944 0.1690 0.0109 -0.0795 -0.0673 0.0157 0.2086 0.4378 0.4626 0.5905 0.6843 0.7739 0.8903 1.0036 1.0469 1.1737 1.2210 1.2508 - N W 68.00 1.3353 1.2251 1.0677 0.8800 0.7275 0.5498 0.2956 0.1814 0.0348 -0.0548 -0.0488 0.0198 0.1938 0.4265 0.4851 0.6183 0.7172 0.8085 0.8991 0.9836 1.0327 1.1356 1.1851 1.2606 - N W 67.00 1.3235 1.2122 1.0934 0.9021 0.7611 0.5586 0.2913 0.1844 0.0532 -0.0339 -0.0364 0.0114 0.1688 0.4051 0.5420 0.6675 0.7748 0.8551 0.9122 0.9582 1.0099 1.0756 1.1482 1.2765 - N W 66.00 1.2746 1.1790 1.0781 0.9063 0.7699 0.5508 0.2977 0.1916 0.0689 -0.0069 -0.0174 0.0083 0.1477 0.3747 0.5506 0.6938 0.8175 0.8803 0.9159 0.9341 0.9782 1.0162 1.0983 1.2530 - N W 65.00 1.2049 1.1371 1.0438 0.8986 0.7625 0.5323 0.3148 0.2051 0.0848 0.0235 -0.0014 0.0143 0.1298 0.3340 0.5264 0.6906 0.8112 0.8651 0.9080 0.9186 0.9458 0.9592 1.0315 1.1994 - N W 64.00 1.1101 1.0858 0.9943 0.8821 0.7410 0.4969 0.3579 0.2328 0.1044 0.0612 0.0112 0.0287 0.1153 0.2807 0.4708 0.6568 0.7446 0.7946 0.8852 0.9096 0.8999 0.8896 0.9330 1.1115 - N W 63.00 1.0775 1.0934 0.9826 0.8731 0.7386 0.4837 0.3784 0.2667 0.1119 0.0677 -0.0087 0.0005 0.0961 0.2725 0.4721 0.6946 0.8306 0.7598 0.8794 0.9233 0.8689 0.8528 0.8540 1.0876 - N W 62.00 0.9820 0.9758 0.9235 0.8194 0.6886 0.5417 0.4410 0.3117 0.1480 0.0911 0.0200 0.0220 0.0885 0.2296 0.3932 0.5786 0.7657 0.6770 0.8175 0.8733 0.8744 0.8018 0.8017 0.9883 - N W 61.00 0.8820 0.8487 0.8406 0.7538 0.6380 0.5955 0.5006 0.3568 0.1703 0.1021 0.0391 0.0363 0.0806 0.1881 0.3183 0.4801 0.6886 0.5709 0.7132 0.7699 0.8457 0.7140 0.7310 0.8826 - N W 60.00 0.7555 0.7036 0.7264 0.6716 0.5857 0.6311 0.5367 0.3953 0.1730 0.0993 0.0502 0.0442 0.0732 0.1498 0.2457 0.3860 0.5727 0.4422 0.5479 0.5938 0.6959 0.5802 0.6330 0.7491 - N W 59.00 0.5720 0.5345 0.5674 0.5658 0.5474 0.5967 0.5037 0.4125 0.1514 0.0821 0.0532 0.0458 0.0662 0.1145 0.1764 0.2961 0.4185 0.3066 0.3457 0.3669 0.3629 0.3890 0.4958 0.5606 - N W 58.00 0.3896 0.3667 0.4044 0.4339 0.4689 0.5166 0.4224 0.3372 0.1106 0.0583 0.0430 0.0367 0.0497 0.0772 0.1139 0.2021 0.2771 0.1927 0.1948 0.1984 0.1367 0.2307 0.3453 0.3716 - N W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nwby4.pot - NORTHERN, WINTER BY COEFFICIENT FOR BY < 0 AND BZ > 0 - N W 90.00 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 - N W 89.00 -1.2700 -1.2743 -1.2821 -1.2944 -1.3115 -1.3331 -1.3572 -1.3814 -1.4030 -1.4193 -1.4282 -1.4283 -1.4189 -1.4016 -1.3784 -1.3528 -1.3273 -1.3054 -1.2888 -1.2781 -1.2721 -1.2691 -1.2676 -1.2680 - N W 88.00 -1.1892 -1.1904 -1.1974 -1.2146 -1.2456 -1.2891 -1.3417 -1.3992 -1.4534 -1.4947 -1.5171 -1.5145 -1.4867 -1.4416 -1.3850 -1.3266 -1.2694 -1.2240 -1.1946 -1.1831 -1.1844 -1.1886 -1.1902 -1.1905 - N W 87.00 -1.0973 -1.0836 -1.0794 -1.0931 -1.1401 -1.2052 -1.2871 -1.3828 -1.4746 -1.5526 -1.6003 -1.5983 -1.5447 -1.4618 -1.3682 -1.2696 -1.1729 -1.0948 -1.0544 -1.0569 -1.0831 -1.1053 -1.1116 -1.1082 - N W 86.00 -0.9886 -0.9530 -0.9286 -0.9274 -1.0027 -1.0827 -1.1905 -1.3325 -1.4653 -1.5984 -1.6835 -1.6833 -1.5819 -1.4473 -1.3240 -1.1786 -1.0362 -0.9399 -0.9062 -0.9137 -0.9687 -1.0165 -1.0285 -1.0160 - N W 85.00 -0.8654 -0.7944 -0.7529 -0.7025 -0.8448 -0.9182 -1.0348 -1.2481 -1.4140 -1.6295 -1.7715 -1.7846 -1.5926 -1.3816 -1.2633 -1.0629 -0.8495 -0.7618 -0.7670 -0.7668 -0.8413 -0.9225 -0.9289 -0.9150 - N W 84.00 -0.6774 -0.6333 -0.4997 -0.4920 -0.5614 -0.6669 -0.8513 -1.1784 -1.4051 -1.6987 -1.7928 -1.7955 -1.6333 -1.3672 -1.1587 -0.8914 -0.6727 -0.6087 -0.6680 -0.7093 -0.7686 -0.8347 -0.7842 -0.7891 - N W 83.00 -0.4815 -0.4716 -0.2596 -0.2691 -0.3183 -0.4249 -0.6350 -1.0667 -1.3491 -1.6589 -1.7359 -1.7250 -1.5580 -1.2909 -1.0487 -0.7519 -0.5441 -0.4812 -0.5895 -0.6443 -0.6924 -0.7402 -0.6538 -0.6437 - N W 82.00 -0.2732 -0.2780 -0.0521 -0.0683 -0.1111 -0.2358 -0.4904 -0.9322 -1.2220 -1.5286 -1.6125 -1.6227 -1.4576 -1.1814 -0.9327 -0.6207 -0.4256 -0.3407 -0.5118 -0.5863 -0.6301 -0.6644 -0.4937 -0.4336 - N W 81.00 -0.0918 -0.0760 0.0695 0.0594 0.0050 -0.1008 -0.3722 -0.7499 -1.0050 -1.3054 -1.4167 -1.4474 -1.3201 -1.0718 -0.8174 -0.4958 -0.3252 -0.2392 -0.4820 -0.5565 -0.5531 -0.5787 -0.2970 -0.1826 - N W 80.00 0.0577 0.1243 0.1568 0.1550 0.0635 -0.0055 -0.2862 -0.5420 -0.7527 -0.9844 -1.1444 -1.1897 -1.1264 -0.9513 -0.6971 -0.3833 -0.2540 -0.1618 -0.5143 -0.5348 -0.3877 -0.4674 -0.1077 0.1268 - N W 79.00 0.2569 0.3156 0.2675 0.2510 0.1237 0.0534 -0.2197 -0.4014 -0.5731 -0.7582 -0.9163 -0.9157 -0.8167 -0.7239 -0.4888 -0.2233 -0.1532 -0.0435 -0.4119 -0.4327 -0.2391 -0.2963 0.0741 0.4114 - N W 78.00 0.5231 0.4867 0.4018 0.3245 0.1806 0.0790 -0.1687 -0.3056 -0.4492 -0.5959 -0.7398 -0.6864 -0.5220 -0.3444 -0.2067 -0.0688 -0.0393 0.0743 -0.1867 -0.2926 -0.0922 -0.0447 0.2879 0.7403 - N W 77.00 0.7621 0.5988 0.5286 0.3660 0.2252 0.0754 -0.1405 -0.2427 -0.3623 -0.4792 -0.6061 -0.4969 -0.2520 -0.0041 0.0881 0.0708 0.0575 0.1716 0.0892 -0.1258 0.0856 0.3687 0.5246 0.9390 - N W 76.00 0.8818 0.6535 0.6076 0.3921 0.2458 0.0433 -0.1578 -0.1962 -0.2602 -0.3446 -0.4279 -0.3376 -0.1205 0.0869 0.1892 0.1527 0.1428 0.2314 0.1967 0.0443 0.2151 0.4546 0.5406 0.8725 - N W 75.00 0.8922 0.6653 0.6568 0.3982 0.2409 -0.0106 -0.1976 -0.1607 -0.1636 -0.2205 -0.2544 -0.2135 -0.0743 0.0807 0.1832 0.1961 0.2297 0.2583 0.2233 0.1673 0.2765 0.4396 0.5148 0.7893 - N W 74.00 0.8784 0.6986 0.6840 0.4179 0.2288 -0.0229 -0.1709 -0.1186 -0.0972 -0.1376 -0.1538 -0.1355 -0.0424 0.0832 0.1859 0.2207 0.2567 0.2530 0.2182 0.2028 0.3011 0.4420 0.5084 0.7445 - N W 73.00 0.8463 0.7569 0.6976 0.4466 0.2095 -0.0137 -0.1108 -0.0720 -0.0450 -0.0765 -0.0906 -0.0856 -0.0200 0.0875 0.1843 0.2349 0.2410 0.2230 0.1917 0.1990 0.3090 0.4476 0.5183 0.7032 - N W 72.00 0.7883 0.8347 0.6973 0.4742 0.1828 0.0026 -0.0337 -0.0238 -0.0043 -0.0291 -0.0486 -0.0513 -0.0039 0.0947 0.1837 0.2478 0.1974 0.1755 0.1543 0.1762 0.3072 0.4536 0.5323 0.6790 - N W 71.00 0.7511 0.9022 0.6865 0.5031 0.1496 0.0224 0.0595 0.0272 0.0277 0.0109 -0.0198 -0.0273 0.0066 0.1032 0.1808 0.2610 0.1047 0.1084 0.1077 0.1342 0.2968 0.4601 0.5455 0.6657 - N W 70.00 0.7448 0.9107 0.6826 0.5048 0.1553 0.0608 0.1216 0.0679 0.0572 0.0454 0.0032 -0.0104 0.0135 0.1077 0.1797 0.2657 0.0494 0.0624 0.0756 0.1079 0.2850 0.4513 0.5468 0.6650 - N W 69.00 0.7544 0.8877 0.6803 0.4915 0.1748 0.1092 0.1654 0.1015 0.0851 0.0756 0.0204 -0.0001 0.0172 0.1083 0.1797 0.2632 0.0277 0.0349 0.0590 0.0920 0.2728 0.4297 0.5376 0.6728 - N W 68.00 0.7744 0.8511 0.6787 0.4739 0.2002 0.1692 0.1967 0.1302 0.1108 0.0987 0.0293 0.0031 0.0177 0.1049 0.1822 0.2452 0.0576 0.0262 0.0582 0.0831 0.2543 0.3989 0.5266 0.6884 - N W 67.00 0.8012 0.8062 0.6795 0.4527 0.2346 0.2461 0.2144 0.1547 0.1353 0.1160 0.0286 -0.0018 0.0152 0.0965 0.1877 0.2106 0.1401 0.0363 0.0752 0.0823 0.2255 0.3501 0.5067 0.7112 - N W 66.00 0.8030 0.7741 0.6761 0.4294 0.2671 0.3010 0.2266 0.1771 0.1514 0.1261 0.0260 -0.0067 0.0174 0.0847 0.1778 0.1865 0.1843 0.0401 0.0678 0.0710 0.1942 0.3066 0.4708 0.7025 - N W 65.00 0.7838 0.7486 0.6721 0.4005 0.3076 0.3390 0.2297 0.1975 0.1526 0.1252 0.0214 -0.0119 0.0253 0.0703 0.1519 0.1722 0.1976 0.0367 0.0172 0.0475 0.1577 0.2735 0.4221 0.6595 - N W 64.00 0.7384 0.7256 0.6707 0.3577 0.3758 0.3454 0.2149 0.2117 0.1354 0.1112 0.0150 -0.0170 0.0398 0.0531 0.1095 0.1681 0.1771 0.0309 -0.0796 0.0068 0.0994 0.2531 0.3530 0.5673 - N W 63.00 0.7543 0.7354 0.7313 0.3328 0.3825 0.3988 0.2213 0.2299 0.1099 0.1072 0.0043 -0.0196 0.0353 0.0500 0.0879 0.1916 0.1931 0.0593 -0.1650 -0.1242 0.0003 0.2071 0.2320 0.5567 - N W 62.00 0.7000 0.7063 0.6767 0.3154 0.3524 0.3216 0.2324 0.1479 0.0692 0.0916 0.0170 0.0184 0.0346 0.0421 0.1034 0.1827 0.1672 0.0143 -0.1517 -0.0953 -0.0045 0.1516 0.1931 0.5117 - N W 61.00 0.6178 0.6572 0.6073 0.2844 0.3153 0.2596 0.2156 0.0863 0.0321 0.0734 0.0238 0.0427 0.0367 0.0395 0.1057 0.1627 0.1445 -0.0174 -0.1434 -0.0813 -0.0146 0.0757 0.1392 0.4460 - N W 60.00 0.4351 0.5498 0.4851 0.2328 0.2677 0.2225 0.1655 0.0459 -0.0013 0.0531 0.0254 0.0555 0.0407 0.0415 0.0964 0.1314 0.1249 -0.0325 -0.1420 -0.0890 -0.0275 -0.0112 0.0991 0.3473 - N W 59.00 0.1708 0.3393 0.2526 0.1504 0.2052 0.2343 0.0731 0.0267 -0.0315 0.0307 0.0225 0.0582 0.0463 0.0477 0.0763 0.0897 0.1115 -0.0318 -0.1479 -0.1229 -0.0385 -0.0816 0.1158 0.2741 - N W 58.00 -0.0213 0.1611 0.0805 0.0797 0.1378 0.2048 0.0164 0.0136 -0.0360 0.0159 0.0165 0.0467 0.0386 0.0399 0.0527 0.0555 0.0848 -0.0256 -0.1230 -0.1184 -0.0396 -0.1112 0.1152 0.1977 - N W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nwby5.pot - NORTHERN, WINTER BY COEFFICIENT FOR BY > 0 AND BZ < 0 - N W 90.00 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 -1.5939 - N W 89.00 -1.3770 -1.3743 -1.3831 -1.4061 -1.4448 -1.4999 -1.5683 -1.6504 -1.7304 -1.7990 -1.8478 -1.8710 -1.8681 -1.8402 -1.7938 -1.7356 -1.6727 -1.6125 -1.5575 -1.5113 -1.4714 -1.4380 -1.4103 -1.3903 - N W 88.00 -1.1546 -1.1406 -1.1403 -1.1656 -1.2236 -1.3236 -1.4745 -1.6644 -1.8541 -2.0124 -2.1214 -2.1635 -2.1436 -2.0645 -1.9443 -1.8048 -1.6585 -1.5349 -1.4281 -1.3564 -1.2994 -1.2488 -1.2087 -1.1799 - N W 87.00 -0.9253 -0.8814 -0.8592 -0.8648 -0.9302 -1.0836 -1.3411 -1.6396 -1.9463 -2.2183 -2.4040 -2.4575 -2.3835 -2.2268 -2.0291 -1.7923 -1.5403 -1.3455 -1.2244 -1.1650 -1.1093 -1.0401 -0.9910 -0.9648 - N W 86.00 -0.6960 -0.5912 -0.5370 -0.4960 -0.5665 -0.8065 -1.1929 -1.5943 -2.0251 -2.4411 -2.6941 -2.7116 -2.5166 -2.2934 -2.0192 -1.6662 -1.3132 -1.0738 -0.9818 -0.9329 -0.8642 -0.7766 -0.7242 -0.7341 - N W 85.00 -0.4737 -0.2507 -0.1946 -0.0421 -0.1369 -0.4970 -1.0248 -1.4694 -2.0395 -2.6773 -3.0285 -2.9330 -2.5587 -2.2735 -1.9433 -1.4581 -1.0337 -0.7562 -0.7118 -0.6418 -0.5448 -0.4684 -0.3457 -0.4667 - N W 84.00 0.1512 0.4086 0.6061 0.7812 0.5469 -0.2524 -0.9440 -1.3498 -1.9493 -2.5467 -3.0117 -3.0146 -2.5794 -2.1540 -1.6725 -1.2822 -0.9057 -0.6490 -0.5607 -0.5036 -0.3808 -0.2327 0.1167 -0.0084 - N W 83.00 0.6633 0.9420 1.1468 1.2515 0.8769 -0.0315 -0.7599 -1.1501 -1.7803 -2.3772 -2.9084 -3.0207 -2.5817 -2.0731 -1.5337 -1.1888 -0.8167 -0.5437 -0.4032 -0.3006 -0.1352 -0.0096 0.6383 0.4427 - N W 82.00 1.0858 1.3888 1.4942 1.4218 0.9660 0.1264 -0.5266 -0.8609 -1.5184 -2.1506 -2.7208 -2.9662 -2.5903 -2.0302 -1.4466 -1.1005 -0.7256 -0.4502 -0.2339 -0.0520 0.1572 0.3328 0.8945 0.8219 - N W 81.00 1.4091 1.6660 1.6375 1.4544 1.0431 0.3166 -0.2086 -0.5845 -1.2281 -1.8957 -2.4361 -2.8400 -2.6314 -2.0043 -1.3702 -1.0297 -0.6570 -0.3543 -0.0905 0.1371 0.3924 0.6234 1.0183 1.1561 - N W 80.00 1.6168 1.8197 1.6427 1.3366 1.0293 0.5181 0.0757 -0.3526 -0.9582 -1.7072 -2.1926 -2.6170 -2.6468 -1.9900 -1.3367 -0.9933 -0.6771 -0.2925 0.0316 0.3209 0.6008 0.8714 1.0008 1.4098 - N W 79.00 1.6316 1.8191 1.5980 1.2531 0.9548 0.5396 0.1324 -0.2585 -0.7654 -1.4702 -1.9490 -2.2922 -2.2911 -1.7453 -1.1293 -0.7374 -0.4682 -0.1302 0.2225 0.5810 0.8474 0.9940 1.0663 1.4636 - N W 78.00 1.5454 1.7007 1.4979 1.1780 0.8457 0.5043 0.1168 -0.2598 -0.7035 -1.2120 -1.5594 -1.8522 -1.8398 -1.3419 -0.7947 -0.3631 -0.1155 0.1196 0.4789 0.7432 0.9216 1.0425 1.1109 1.4955 - N W 77.00 1.3807 1.4968 1.3576 1.1214 0.7240 0.4361 0.0588 -0.2947 -0.6754 -0.9892 -1.2137 -1.3681 -1.2473 -0.8511 -0.4235 0.0462 0.2706 0.4020 0.6898 0.8882 1.0214 1.1249 1.2055 1.4650 - N W 76.00 1.3259 1.3563 1.2260 1.0109 0.6537 0.3866 0.0751 -0.2407 -0.5425 -0.7788 -0.9290 -0.9408 -0.7127 -0.3425 0.0230 0.3582 0.5143 0.5768 0.8241 1.0641 1.2217 1.1894 1.2606 1.4008 - N W 75.00 1.2806 1.2448 1.1148 0.8901 0.6044 0.3473 0.1604 -0.1312 -0.3605 -0.5663 -0.6423 -0.5365 -0.2581 0.1050 0.4074 0.5452 0.6721 0.6959 0.8837 1.1424 1.2579 1.1906 1.2887 1.3469 - N W 74.00 1.2590 1.1907 1.0566 0.8276 0.5804 0.3476 0.1979 -0.0501 -0.2272 -0.4037 -0.4490 -0.3101 -0.0170 0.2643 0.4877 0.5991 0.7206 0.7469 0.9060 1.1452 1.2436 1.1988 1.2965 1.3095 - N W 73.00 1.2610 1.1748 1.0250 0.7960 0.5837 0.3712 0.2225 0.0149 -0.1244 -0.2852 -0.3232 -0.1746 0.1065 0.3539 0.5399 0.6248 0.7342 0.7629 0.9153 1.1312 1.2149 1.2044 1.2958 1.2856 - N W 72.00 1.2798 1.1861 1.0180 0.7958 0.6001 0.4160 0.2489 0.0698 -0.0708 -0.2073 -0.2287 -0.0875 0.1717 0.4114 0.5391 0.6106 0.7036 0.7611 0.9179 1.1073 1.1574 1.2154 1.2869 1.2683 - N W 71.00 1.3141 1.2152 1.0240 0.8172 0.6274 0.4754 0.2704 0.1163 -0.0412 -0.1526 -0.1506 -0.0338 0.1997 0.4285 0.4807 0.5840 0.6749 0.7472 0.9061 1.0750 1.1007 1.2310 1.2755 1.2530 - N W 70.00 1.3331 1.2284 1.0337 0.8385 0.6625 0.5135 0.2859 0.1475 -0.0155 -0.1118 -0.0991 -0.0009 0.2117 0.4377 0.4620 0.5790 0.6699 0.7498 0.8913 1.0337 1.0648 1.2089 1.2510 1.2475 - N W 69.00 1.3404 1.2307 1.0473 0.8584 0.6944 0.5358 0.2944 0.1690 0.0109 -0.0795 -0.0673 0.0157 0.2086 0.4378 0.4626 0.5905 0.6843 0.7739 0.8903 1.0036 1.0469 1.1737 1.2210 1.2508 - N W 68.00 1.3353 1.2251 1.0677 0.8800 0.7275 0.5498 0.2956 0.1814 0.0348 -0.0548 -0.0488 0.0198 0.1938 0.4265 0.4851 0.6183 0.7172 0.8085 0.8991 0.9836 1.0327 1.1356 1.1851 1.2606 - N W 67.00 1.3235 1.2122 1.0934 0.9021 0.7611 0.5586 0.2913 0.1844 0.0532 -0.0339 -0.0364 0.0114 0.1688 0.4051 0.5420 0.6675 0.7748 0.8551 0.9122 0.9582 1.0099 1.0756 1.1482 1.2765 - N W 66.00 1.2746 1.1790 1.0781 0.9063 0.7699 0.5508 0.2977 0.1916 0.0689 -0.0069 -0.0174 0.0083 0.1477 0.3747 0.5506 0.6938 0.8175 0.8803 0.9159 0.9341 0.9782 1.0162 1.0983 1.2530 - N W 65.00 1.2049 1.1371 1.0438 0.8986 0.7625 0.5323 0.3148 0.2051 0.0848 0.0235 -0.0014 0.0143 0.1298 0.3340 0.5264 0.6906 0.8112 0.8651 0.9080 0.9186 0.9458 0.9592 1.0315 1.1994 - N W 64.00 1.1101 1.0858 0.9943 0.8821 0.7410 0.4969 0.3579 0.2328 0.1044 0.0612 0.0112 0.0287 0.1153 0.2807 0.4708 0.6568 0.7446 0.7946 0.8852 0.9096 0.8999 0.8896 0.9330 1.1115 - N W 63.00 1.0775 1.0934 0.9826 0.8731 0.7386 0.4837 0.3784 0.2667 0.1119 0.0677 -0.0087 0.0005 0.0961 0.2725 0.4721 0.6946 0.8306 0.7598 0.8794 0.9233 0.8689 0.8528 0.8540 1.0876 - N W 62.00 0.9820 0.9758 0.9235 0.8194 0.6886 0.5417 0.4410 0.3117 0.1480 0.0911 0.0200 0.0220 0.0885 0.2296 0.3932 0.5786 0.7657 0.6770 0.8175 0.8733 0.8744 0.8018 0.8017 0.9883 - N W 61.00 0.8820 0.8487 0.8406 0.7538 0.6380 0.5955 0.5006 0.3568 0.1703 0.1021 0.0391 0.0363 0.0806 0.1881 0.3183 0.4801 0.6886 0.5709 0.7132 0.7699 0.8457 0.7140 0.7310 0.8826 - N W 60.00 0.7555 0.7036 0.7264 0.6716 0.5857 0.6311 0.5367 0.3953 0.1730 0.0993 0.0502 0.0442 0.0732 0.1498 0.2457 0.3860 0.5727 0.4422 0.5479 0.5938 0.6959 0.5802 0.6330 0.7491 - N W 59.00 0.5720 0.5345 0.5674 0.5658 0.5474 0.5967 0.5037 0.4125 0.1514 0.0821 0.0532 0.0458 0.0662 0.1145 0.1764 0.2961 0.4185 0.3066 0.3457 0.3669 0.3629 0.3890 0.4958 0.5606 - N W 58.00 0.3896 0.3667 0.4044 0.4339 0.4689 0.5166 0.4224 0.3372 0.1106 0.0583 0.0430 0.0367 0.0497 0.0772 0.1139 0.2021 0.2771 0.1927 0.1948 0.1984 0.1367 0.2307 0.3453 0.3716 - N W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nwby6.pot - NORTHERN, WINTER BY COEFFICIENT FOR BY > 0 AND BZ > 0 - N W 90.00 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 -1.3338 - N W 89.00 -1.2700 -1.2743 -1.2821 -1.2944 -1.3115 -1.3331 -1.3572 -1.3814 -1.4030 -1.4193 -1.4282 -1.4283 -1.4189 -1.4016 -1.3784 -1.3528 -1.3273 -1.3054 -1.2888 -1.2781 -1.2721 -1.2691 -1.2676 -1.2680 - N W 88.00 -1.1892 -1.1904 -1.1974 -1.2146 -1.2456 -1.2891 -1.3417 -1.3992 -1.4534 -1.4947 -1.5171 -1.5145 -1.4867 -1.4416 -1.3850 -1.3266 -1.2694 -1.2240 -1.1946 -1.1831 -1.1844 -1.1886 -1.1902 -1.1905 - N W 87.00 -1.0973 -1.0836 -1.0794 -1.0931 -1.1401 -1.2052 -1.2871 -1.3828 -1.4746 -1.5526 -1.6003 -1.5983 -1.5447 -1.4618 -1.3682 -1.2696 -1.1729 -1.0948 -1.0544 -1.0569 -1.0831 -1.1053 -1.1116 -1.1082 - N W 86.00 -0.9886 -0.9530 -0.9286 -0.9274 -1.0027 -1.0827 -1.1905 -1.3325 -1.4653 -1.5984 -1.6835 -1.6833 -1.5819 -1.4473 -1.3240 -1.1786 -1.0362 -0.9399 -0.9062 -0.9137 -0.9687 -1.0165 -1.0285 -1.0160 - N W 85.00 -0.8654 -0.7944 -0.7529 -0.7025 -0.8448 -0.9182 -1.0348 -1.2481 -1.4140 -1.6295 -1.7715 -1.7846 -1.5926 -1.3816 -1.2633 -1.0629 -0.8495 -0.7618 -0.7670 -0.7668 -0.8413 -0.9225 -0.9289 -0.9150 - N W 84.00 -0.6774 -0.6333 -0.4997 -0.4920 -0.5614 -0.6669 -0.8513 -1.1784 -1.4051 -1.6987 -1.7928 -1.7955 -1.6333 -1.3672 -1.1587 -0.8914 -0.6727 -0.6087 -0.6680 -0.7093 -0.7686 -0.8347 -0.7842 -0.7891 - N W 83.00 -0.4815 -0.4716 -0.2596 -0.2691 -0.3183 -0.4249 -0.6350 -1.0667 -1.3491 -1.6589 -1.7359 -1.7250 -1.5580 -1.2909 -1.0487 -0.7519 -0.5441 -0.4812 -0.5895 -0.6443 -0.6924 -0.7402 -0.6538 -0.6437 - N W 82.00 -0.2732 -0.2780 -0.0521 -0.0683 -0.1111 -0.2358 -0.4904 -0.9322 -1.2220 -1.5286 -1.6125 -1.6227 -1.4576 -1.1814 -0.9327 -0.6207 -0.4256 -0.3407 -0.5118 -0.5863 -0.6301 -0.6644 -0.4937 -0.4336 - N W 81.00 -0.0918 -0.0760 0.0695 0.0594 0.0050 -0.1008 -0.3722 -0.7499 -1.0050 -1.3054 -1.4167 -1.4474 -1.3201 -1.0718 -0.8174 -0.4958 -0.3252 -0.2392 -0.4820 -0.5565 -0.5531 -0.5787 -0.2970 -0.1826 - N W 80.00 0.0577 0.1243 0.1568 0.1550 0.0635 -0.0055 -0.2862 -0.5420 -0.7527 -0.9844 -1.1444 -1.1897 -1.1264 -0.9513 -0.6971 -0.3833 -0.2540 -0.1618 -0.5143 -0.5348 -0.3877 -0.4674 -0.1077 0.1268 - N W 79.00 0.2569 0.3156 0.2675 0.2510 0.1237 0.0534 -0.2197 -0.4014 -0.5731 -0.7582 -0.9163 -0.9157 -0.8167 -0.7239 -0.4888 -0.2233 -0.1532 -0.0435 -0.4119 -0.4327 -0.2391 -0.2963 0.0741 0.4114 - N W 78.00 0.5231 0.4867 0.4018 0.3245 0.1806 0.0790 -0.1687 -0.3056 -0.4492 -0.5959 -0.7398 -0.6864 -0.5220 -0.3444 -0.2067 -0.0688 -0.0393 0.0743 -0.1867 -0.2926 -0.0922 -0.0447 0.2879 0.7403 - N W 77.00 0.7621 0.5988 0.5286 0.3660 0.2252 0.0754 -0.1405 -0.2427 -0.3623 -0.4792 -0.6061 -0.4969 -0.2520 -0.0041 0.0881 0.0708 0.0575 0.1716 0.0892 -0.1258 0.0856 0.3687 0.5246 0.9390 - N W 76.00 0.8818 0.6535 0.6076 0.3921 0.2458 0.0433 -0.1578 -0.1962 -0.2602 -0.3446 -0.4279 -0.3376 -0.1205 0.0869 0.1892 0.1527 0.1428 0.2314 0.1967 0.0443 0.2151 0.4546 0.5406 0.8725 - N W 75.00 0.8922 0.6653 0.6568 0.3982 0.2409 -0.0106 -0.1976 -0.1607 -0.1636 -0.2205 -0.2544 -0.2135 -0.0743 0.0807 0.1832 0.1961 0.2297 0.2583 0.2233 0.1673 0.2765 0.4396 0.5148 0.7893 - N W 74.00 0.8784 0.6986 0.6840 0.4179 0.2288 -0.0229 -0.1709 -0.1186 -0.0972 -0.1376 -0.1538 -0.1355 -0.0424 0.0832 0.1859 0.2207 0.2567 0.2530 0.2182 0.2028 0.3011 0.4420 0.5084 0.7445 - N W 73.00 0.8463 0.7569 0.6976 0.4466 0.2095 -0.0137 -0.1108 -0.0720 -0.0450 -0.0765 -0.0906 -0.0856 -0.0200 0.0875 0.1843 0.2349 0.2410 0.2230 0.1917 0.1990 0.3090 0.4476 0.5183 0.7032 - N W 72.00 0.7883 0.8347 0.6973 0.4742 0.1828 0.0026 -0.0337 -0.0238 -0.0043 -0.0291 -0.0486 -0.0513 -0.0039 0.0947 0.1837 0.2478 0.1974 0.1755 0.1543 0.1762 0.3072 0.4536 0.5323 0.6790 - N W 71.00 0.7511 0.9022 0.6865 0.5031 0.1496 0.0224 0.0595 0.0272 0.0277 0.0109 -0.0198 -0.0273 0.0066 0.1032 0.1808 0.2610 0.1047 0.1084 0.1077 0.1342 0.2968 0.4601 0.5455 0.6657 - N W 70.00 0.7448 0.9107 0.6826 0.5048 0.1553 0.0608 0.1216 0.0679 0.0572 0.0454 0.0032 -0.0104 0.0135 0.1077 0.1797 0.2657 0.0494 0.0624 0.0756 0.1079 0.2850 0.4513 0.5468 0.6650 - N W 69.00 0.7544 0.8877 0.6803 0.4915 0.1748 0.1092 0.1654 0.1015 0.0851 0.0756 0.0204 -0.0001 0.0172 0.1083 0.1797 0.2632 0.0277 0.0349 0.0590 0.0920 0.2728 0.4297 0.5376 0.6728 - N W 68.00 0.7744 0.8511 0.6787 0.4739 0.2002 0.1692 0.1967 0.1302 0.1108 0.0987 0.0293 0.0031 0.0177 0.1049 0.1822 0.2452 0.0576 0.0262 0.0582 0.0831 0.2543 0.3989 0.5266 0.6884 - N W 67.00 0.8012 0.8062 0.6795 0.4527 0.2346 0.2461 0.2144 0.1547 0.1353 0.1160 0.0286 -0.0018 0.0152 0.0965 0.1877 0.2106 0.1401 0.0363 0.0752 0.0823 0.2255 0.3501 0.5067 0.7112 - N W 66.00 0.8030 0.7741 0.6761 0.4294 0.2671 0.3010 0.2266 0.1771 0.1514 0.1261 0.0260 -0.0067 0.0174 0.0847 0.1778 0.1865 0.1843 0.0401 0.0678 0.0710 0.1942 0.3066 0.4708 0.7025 - N W 65.00 0.7838 0.7486 0.6721 0.4005 0.3076 0.3390 0.2297 0.1975 0.1526 0.1252 0.0214 -0.0119 0.0253 0.0703 0.1519 0.1722 0.1976 0.0367 0.0172 0.0475 0.1577 0.2735 0.4221 0.6595 - N W 64.00 0.7384 0.7256 0.6707 0.3577 0.3758 0.3454 0.2149 0.2117 0.1354 0.1112 0.0150 -0.0170 0.0398 0.0531 0.1095 0.1681 0.1771 0.0309 -0.0796 0.0068 0.0994 0.2531 0.3530 0.5673 - N W 63.00 0.7543 0.7354 0.7313 0.3328 0.3825 0.3988 0.2213 0.2299 0.1099 0.1072 0.0043 -0.0196 0.0353 0.0500 0.0879 0.1916 0.1931 0.0593 -0.1650 -0.1242 0.0003 0.2071 0.2320 0.5567 - N W 62.00 0.7000 0.7063 0.6767 0.3154 0.3524 0.3216 0.2324 0.1479 0.0692 0.0916 0.0170 0.0184 0.0346 0.0421 0.1034 0.1827 0.1672 0.0143 -0.1517 -0.0953 -0.0045 0.1516 0.1931 0.5117 - N W 61.00 0.6178 0.6572 0.6073 0.2844 0.3153 0.2596 0.2156 0.0863 0.0321 0.0734 0.0238 0.0427 0.0367 0.0395 0.1057 0.1627 0.1445 -0.0174 -0.1434 -0.0813 -0.0146 0.0757 0.1392 0.4460 - N W 60.00 0.4351 0.5498 0.4851 0.2328 0.2677 0.2225 0.1655 0.0459 -0.0013 0.0531 0.0254 0.0555 0.0407 0.0415 0.0964 0.1314 0.1249 -0.0325 -0.1420 -0.0890 -0.0275 -0.0112 0.0991 0.3473 - N W 59.00 0.1708 0.3393 0.2526 0.1504 0.2052 0.2343 0.0731 0.0267 -0.0315 0.0307 0.0225 0.0582 0.0463 0.0477 0.0763 0.0897 0.1115 -0.0318 -0.1479 -0.1229 -0.0385 -0.0816 0.1158 0.2741 - N W 58.00 -0.0213 0.1611 0.0805 0.0797 0.1378 0.2048 0.0164 0.0136 -0.0360 0.0159 0.0165 0.0467 0.0386 0.0399 0.0527 0.0555 0.0848 -0.0256 -0.1230 -0.1184 -0.0396 -0.1112 0.1152 0.1977 - N W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nwbz1.pot - NORTHERN, WINTER BZ COEFFICIENT FOR BZ < 0 - N W 90.00 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 -6.9790 - N W 89.00 -7.1542 -7.1893 -7.2077 -7.2067 -7.1892 -7.1580 -7.1180 -7.0662 -7.0136 -6.9613 -6.9151 -6.8732 -6.8374 -6.8073 -6.7827 -6.7661 -6.7619 -6.7749 -6.8065 -6.8569 -6.9172 -6.9813 -7.0459 -7.1055 - N W 88.00 -7.2142 -7.2731 -7.3005 -7.3004 -7.2649 -7.2055 -7.1417 -7.0430 -6.9242 -6.7990 -6.6984 -6.6185 -6.5577 -6.5108 -6.4625 -6.4094 -6.3787 -6.3882 -6.4494 -6.5755 -6.7322 -6.8724 -7.0051 -7.1243 - N W 87.00 -7.1737 -7.2533 -7.2807 -7.2917 -7.2143 -7.0995 -7.0086 -6.8833 -6.6676 -6.4412 -6.3166 -6.2557 -6.2185 -6.2247 -6.1786 -6.0381 -5.9153 -5.9013 -6.0034 -6.2210 -6.4599 -6.6409 -6.8389 -7.0369 - N W 86.00 -7.0368 -7.1106 -7.1193 -7.2076 -7.1086 -6.8504 -6.7372 -6.6272 -6.2924 -5.8837 -5.7944 -5.7992 -5.7780 -5.8409 -5.7459 -5.4846 -5.2861 -5.3421 -5.5097 -5.8269 -6.1575 -6.3522 -6.5756 -6.8480 - N W 85.00 -6.8177 -6.8814 -6.7587 -7.0911 -7.0311 -6.4290 -6.3495 -6.3547 -5.7841 -4.9684 -5.1102 -5.3048 -5.2732 -5.5412 -5.3433 -4.7837 -4.5229 -4.7753 -4.9672 -5.3288 -5.7828 -5.9559 -6.1638 -6.5591 - N W 84.00 -6.5471 -6.5110 -6.6910 -7.1148 -7.0307 -6.5259 -6.3843 -6.0932 -5.5499 -4.6923 -4.1025 -4.6016 -4.8000 -4.7981 -4.3752 -3.9174 -3.6350 -3.9540 -4.3600 -4.6413 -4.9978 -5.2128 -5.1948 -5.9993 - N W 83.00 -6.2865 -6.2541 -6.5305 -7.0428 -6.9731 -6.5318 -6.3620 -5.9614 -5.4206 -4.5284 -3.7254 -4.2940 -4.4743 -4.2584 -3.6583 -3.2476 -2.8609 -3.2112 -3.6832 -3.7937 -4.0223 -4.4451 -4.0574 -5.4216 - N W 82.00 -6.0771 -6.0652 -6.3778 -6.9567 -6.9009 -6.5121 -6.3273 -5.8850 -5.3691 -4.4462 -3.6086 -4.2185 -4.2510 -3.8119 -3.0427 -2.6424 -2.2598 -2.5222 -2.8908 -2.9668 -3.2877 -3.6639 -3.4455 -4.8899 - N W 81.00 -5.8354 -5.9935 -6.2524 -6.8479 -6.8412 -6.4541 -6.2534 -5.7759 -5.2943 -4.4519 -3.8662 -4.3641 -4.1946 -3.4139 -2.3260 -2.0491 -1.6681 -1.8857 -2.2636 -2.3945 -2.7613 -3.1940 -3.3283 -4.6193 - N W 80.00 -5.7454 -5.9998 -6.1806 -6.7051 -6.7198 -6.4099 -6.1227 -5.6397 -5.2520 -4.4498 -4.3043 -4.6323 -4.1570 -2.9774 -1.5453 -1.4477 -1.1285 -1.2958 -1.7571 -1.9160 -2.2698 -2.8417 -3.3922 -4.5230 - N W 79.00 -5.4658 -5.8529 -6.0000 -6.5055 -6.5110 -6.2137 -5.9187 -5.4658 -5.1080 -4.3696 -4.3184 -4.4385 -3.7289 -2.4113 -0.9736 -0.9004 -0.6698 -0.8230 -1.3104 -1.5178 -1.9547 -2.6580 -3.4025 -4.3532 - N W 78.00 -5.0873 -5.5957 -5.7471 -6.2279 -6.2394 -5.9354 -5.6817 -5.2935 -4.9150 -4.2430 -4.0958 -3.9379 -3.1709 -1.7498 -0.6475 -0.4661 -0.2399 -0.4045 -0.9127 -1.4351 -1.9851 -2.6289 -3.3403 -4.1383 - N W 77.00 -4.5947 -5.2913 -5.4180 -5.9276 -5.9773 -5.6434 -5.4443 -5.1467 -4.7306 -4.0593 -3.7544 -3.2131 -2.4542 -1.0139 -0.5005 -0.1309 0.0706 -0.1490 -0.6466 -1.2717 -1.9776 -2.6282 -3.2124 -3.7093 - N W 76.00 -4.4021 -5.0586 -5.1855 -5.6487 -5.8036 -5.4166 -5.1965 -4.9539 -4.6183 -3.9569 -3.5134 -2.8875 -1.9965 -0.6887 -0.1900 0.2538 0.3818 0.1770 -0.2374 -0.8761 -1.5730 -2.4571 -3.0793 -3.5830 - N W 75.00 -4.2579 -4.9015 -5.0738 -5.4490 -5.6986 -5.2132 -4.9105 -4.7298 -4.5519 -3.9044 -3.3162 -2.7743 -1.6764 -0.6024 0.1351 0.5785 0.6636 0.4874 0.1985 -0.6633 -1.3368 -2.3585 -2.9903 -3.5110 - N W 74.00 -4.1324 -4.7134 -4.9436 -5.2374 -5.4371 -4.9483 -4.6814 -4.5422 -4.4009 -3.7584 -3.1431 -2.6067 -1.4351 -0.4594 0.2614 0.7000 0.8088 0.6608 0.3983 -0.4683 -1.2381 -2.2834 -2.9310 -3.4656 - N W 73.00 -4.0574 -4.4938 -4.7575 -4.9573 -5.0166 -4.6753 -4.4678 -4.3621 -4.1751 -3.5682 -2.9836 -2.4267 -1.2872 -0.3524 0.3973 0.8405 0.9565 0.7874 0.4853 -0.2930 -1.1095 -2.2097 -2.8740 -3.4355 - N W 72.00 -4.0119 -4.1924 -4.4664 -4.6208 -4.5666 -4.3764 -4.2262 -4.1907 -3.9479 -3.3657 -2.8292 -2.2344 -1.1502 -0.2323 0.5860 0.9756 1.0782 0.8789 0.5321 -0.1259 -0.9174 -2.1137 -2.8302 -3.4247 - N W 71.00 -3.9927 -3.8430 -4.1476 -4.2739 -4.0712 -4.0658 -3.9804 -4.0465 -3.7408 -3.1470 -2.6701 -2.0271 -1.0122 -0.0925 0.7424 1.0359 1.1273 0.9537 0.6153 0.0862 -0.7805 -2.0318 -2.7925 -3.4289 - N W 70.00 -3.8791 -3.5717 -3.8774 -3.9683 -3.7466 -3.7890 -3.7386 -3.8433 -3.5333 -2.9555 -2.5209 -1.8758 -0.9131 -0.0035 0.8406 1.0752 1.1743 1.0182 0.7077 0.2160 -0.7155 -1.9126 -2.7034 -3.3630 - N W 69.00 -3.6738 -3.3546 -3.6522 -3.7201 -3.5244 -3.5537 -3.5123 -3.5790 -3.2874 -2.7820 -2.3941 -1.7675 -0.8524 0.0284 0.8995 1.0947 1.2272 1.0674 0.7349 0.2236 -0.7203 -1.8265 -2.6006 -3.2522 - N W 68.00 -3.4001 -3.1755 -3.4402 -3.4877 -3.3365 -3.3330 -3.2947 -3.2667 -3.0098 -2.6333 -2.2870 -1.6920 -0.8175 0.0050 0.9049 1.0803 1.2800 1.0821 0.7073 0.1842 -0.7390 -1.7653 -2.4859 -3.1164 - N W 67.00 -3.0949 -3.0345 -3.2372 -3.2759 -3.1824 -3.1274 -3.0841 -2.9262 -2.7311 -2.4862 -2.1578 -1.6318 -0.8031 -0.0584 0.8334 1.0182 1.3448 1.0951 0.6713 0.1294 -0.7299 -1.6615 -2.3700 -2.9723 - N W 66.00 -2.8577 -2.8853 -3.0589 -3.0941 -3.0339 -2.9822 -2.9231 -2.6849 -2.4905 -2.3147 -1.9617 -1.5319 -0.7732 -0.1219 0.7245 0.9504 1.3689 1.0497 0.6050 0.0684 -0.7344 -1.5824 -2.3006 -2.8427 - N W 65.00 -2.6754 -2.7434 -2.9050 -2.9110 -2.8885 -2.8720 -2.7801 -2.4977 -2.2592 -2.1448 -1.7921 -1.4107 -0.7310 -0.1916 0.5793 0.8985 1.2063 0.8934 0.5082 0.0160 -0.7669 -1.5422 -2.2616 -2.7215 - N W 64.00 -2.5067 -2.5900 -2.7480 -2.7171 -2.7204 -2.7705 -2.5991 -2.3284 -2.0165 -1.9750 -1.6520 -1.2674 -0.6727 -0.2717 0.3823 0.8891 0.9057 0.6163 0.3575 -0.0351 -0.8201 -1.5113 -2.2509 -2.5935 - N W 63.00 -2.3232 -2.3310 -2.6024 -2.4989 -2.4531 -2.5611 -2.3604 -2.0835 -1.7934 -1.7949 -1.5365 -1.1856 -0.6262 -0.4555 0.0706 0.3483 0.5631 0.2546 0.0950 -0.1523 -0.8930 -1.5100 -2.2102 -2.5254 - N W 62.00 -2.2175 -2.2511 -2.4674 -2.3233 -2.3715 -2.3753 -2.0794 -1.8135 -1.4945 -1.2951 -1.0919 -0.9849 -0.5597 -0.3504 0.0655 0.3047 0.4106 0.1981 0.0246 -0.3415 -0.8853 -1.3442 -2.0182 -2.2700 - N W 61.00 -2.0451 -2.0888 -2.2549 -2.1116 -2.2756 -2.1860 -1.7801 -1.5410 -1.1866 -0.8875 -0.7546 -0.7794 -0.4769 -0.2632 0.0388 0.2443 0.2947 0.1938 -0.0703 -0.6108 -0.8949 -1.1758 -1.8079 -2.0059 - N W 60.00 -1.7431 -1.7885 -1.9391 -1.8599 -2.1596 -2.0215 -1.5152 -1.3070 -0.8881 -0.5860 -0.5151 -0.5723 -0.3821 -0.1925 -0.0112 0.1611 0.1985 0.2719 -0.2122 -0.9150 -1.0724 -1.1050 -1.5627 -1.6865 - N W 59.00 -1.1715 -1.2426 -1.4698 -1.5766 -2.0132 -1.9829 -1.4233 -1.1840 -0.6368 -0.4121 -0.3797 -0.3654 -0.2772 -0.1378 -0.0842 0.0531 0.1324 0.4594 -0.3885 -1.1577 -1.5745 -1.2662 -1.2653 -1.2603 - N W 58.00 -0.6754 -0.7610 -1.0151 -1.2106 -1.7192 -1.7730 -1.1947 -0.8959 -0.4046 -0.2586 -0.2477 -0.2101 -0.1785 -0.0883 -0.0937 0.0007 0.0804 0.4765 -0.4082 -1.1017 -1.6144 -1.2028 -0.9096 -0.8352 - N W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -nwbz2.pot - NORTHERN, WINTER BZ COEFFICIENT FOR BZ > 0 - N W 90.00 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 -0.4575 - N W 89.00 -0.5798 -0.6041 -0.6193 -0.6242 -0.6187 -0.6032 -0.5784 -0.5449 -0.5038 -0.4576 -0.4104 -0.3665 -0.3295 -0.3011 -0.2845 -0.2804 -0.2901 -0.3118 -0.3430 -0.3806 -0.4232 -0.4671 -0.5100 -0.5479 - N W 88.00 -0.7022 -0.7462 -0.7770 -0.7866 -0.7771 -0.7520 -0.7081 -0.6448 -0.5599 -0.4603 -0.3645 -0.2802 -0.2137 -0.1579 -0.1203 -0.1063 -0.1268 -0.1707 -0.2346 -0.3111 -0.3981 -0.4881 -0.5739 -0.6446 - N W 87.00 -0.8192 -0.8835 -0.9398 -0.9530 -0.9275 -0.8971 -0.8452 -0.7706 -0.6446 -0.4652 -0.3103 -0.1882 -0.0990 -0.0170 0.0633 0.0885 0.0439 -0.0317 -0.1211 -0.2348 -0.3701 -0.5191 -0.6556 -0.7525 - N W 86.00 -0.9192 -0.9992 -1.1213 -1.1265 -1.0509 -1.0242 -0.9800 -0.9222 -0.7735 -0.4296 -0.2239 -0.0811 0.0000 0.0933 0.2727 0.3225 0.2121 0.0631 -0.0381 -0.1621 -0.3334 -0.5489 -0.7596 -0.8727 - N W 85.00 -0.9789 -1.0614 -1.3508 -1.3262 -1.1158 -1.1396 -1.0975 -1.1141 -1.0223 -0.2948 -0.1067 0.0454 0.0715 0.1220 0.5321 0.6482 0.4586 0.1243 0.0131 -0.1185 -0.2999 -0.5791 -0.9155 -1.0202 - N W 84.00 -1.0525 -1.0000 -1.2613 -1.4118 -1.5062 -1.2267 -1.1796 -1.3366 -1.2041 -0.5756 -0.1229 0.2328 0.3914 0.5274 0.6682 0.8439 0.7220 0.3706 0.0802 -0.0191 -0.1769 -0.5274 -1.0039 -1.1611 - N W 83.00 -1.1206 -0.9780 -1.2626 -1.4775 -1.7320 -1.3309 -1.2745 -1.4888 -1.3197 -0.7847 -0.2488 0.3169 0.6098 0.7985 0.8496 0.9923 0.8815 0.5469 0.1432 0.0740 -0.1034 -0.5279 -1.0646 -1.2545 - N W 82.00 -1.2121 -1.0946 -1.3302 -1.4773 -1.8344 -1.4308 -1.3756 -1.6050 -1.4490 -0.9838 -0.4436 0.2964 0.7843 1.0541 1.0492 1.1179 0.9554 0.7020 0.2829 0.1637 -0.0780 -0.5179 -1.1311 -1.3238 - N W 81.00 -1.2772 -1.3290 -1.4506 -1.4540 -1.7245 -1.5141 -1.4630 -1.6837 -1.5504 -1.2179 -0.7703 0.1401 0.9272 1.3052 1.2674 1.2022 0.9563 0.8018 0.4580 0.2373 0.0039 -0.4474 -1.0367 -1.2944 - N W 80.00 -1.2925 -1.6828 -1.6441 -1.3834 -1.5267 -1.6197 -1.5649 -1.7104 -1.5751 -1.4866 -1.2439 -0.1842 1.0864 1.5918 1.5282 1.2258 0.8706 0.8309 0.6098 0.2947 0.1597 -0.3368 -0.8505 -1.1711 - N W 79.00 -1.2467 -1.8001 -1.6942 -1.2725 -1.3670 -1.5889 -1.5314 -1.6033 -1.4828 -1.4835 -1.3669 -0.4331 0.7790 1.4425 1.4407 1.1187 0.7787 0.8229 0.7041 0.3902 0.2909 -0.1831 -0.7008 -1.0311 - N W 78.00 -1.1648 -1.6178 -1.5408 -1.1515 -1.2326 -1.4739 -1.4281 -1.4065 -1.3030 -1.3228 -1.3001 -0.5245 0.3540 0.8371 1.0247 0.9019 0.6930 0.7827 0.7436 0.4835 0.4237 0.0055 -0.4508 -0.7769 - N W 77.00 -1.1124 -1.2527 -1.2481 -1.0333 -1.1315 -1.3253 -1.2928 -1.1623 -1.0912 -1.0864 -1.1463 -0.5272 -0.0394 0.2154 0.4971 0.6591 0.6284 0.7305 0.7433 0.5777 0.6053 0.2850 0.0313 -0.4260 - N W 76.00 -1.0153 -1.0507 -1.0802 -0.9106 -1.0046 -1.1313 -1.1507 -1.0239 -0.9922 -0.9781 -0.9555 -0.5154 -0.2047 -0.0032 0.2697 0.5352 0.6062 0.6899 0.7861 0.6927 0.7744 0.5753 0.3643 0.0062 - N W 75.00 -0.9098 -0.9516 -0.9813 -0.7931 -0.8739 -0.9246 -1.0158 -0.9457 -0.9513 -0.9360 -0.7696 -0.5038 -0.2439 -0.0483 0.2500 0.4944 0.6262 0.6534 0.8617 0.7878 0.8513 0.7298 0.5724 0.2505 - N W 74.00 -0.7724 -0.8195 -0.8049 -0.6503 -0.7123 -0.7875 -0.9202 -0.8895 -0.8912 -0.8845 -0.6679 -0.4847 -0.2674 -0.0835 0.2205 0.4592 0.6179 0.6517 0.9177 0.8507 0.8842 0.8152 0.7270 0.3887 - N W 73.00 -0.4948 -0.6554 -0.5917 -0.5067 -0.5467 -0.6923 -0.8562 -0.8479 -0.8123 -0.8289 -0.6056 -0.4659 -0.2808 -0.1123 0.1658 0.4174 0.5938 0.6725 0.9706 0.8986 0.8998 0.8614 0.8205 0.4819 - N W 72.00 -0.0817 -0.4866 -0.3825 -0.3829 -0.3967 -0.6277 -0.8133 -0.8192 -0.7159 -0.7725 -0.5653 -0.4485 -0.2895 -0.1346 0.1080 0.3729 0.5562 0.7010 1.0169 0.9395 0.9013 0.8805 0.8631 0.5206 - N W 71.00 0.1812 -0.3699 -0.1948 -0.2790 -0.2454 -0.5803 -0.7833 -0.8015 -0.5968 -0.7120 -0.5416 -0.4319 -0.2963 -0.1543 0.0352 0.3075 0.4709 0.7354 1.0708 0.9802 0.8913 0.8898 0.9014 0.5317 - N W 70.00 0.3277 -0.2478 -0.0641 -0.1715 -0.1591 -0.5353 -0.7474 -0.7702 -0.5087 -0.6568 -0.5167 -0.4167 -0.3018 -0.1765 -0.0186 0.2538 0.4125 0.7572 1.0890 0.9969 0.8988 0.9250 0.9654 0.5791 - N W 69.00 0.4371 -0.1231 0.0267 -0.0776 -0.1145 -0.4957 -0.7052 -0.7271 -0.4481 -0.6012 -0.4906 -0.4021 -0.3083 -0.2024 -0.0597 0.2033 0.3670 0.7692 1.0675 0.9943 0.9165 0.9845 1.0347 0.6638 - N W 68.00 0.5045 -0.0147 0.0937 0.0076 -0.0872 -0.4579 -0.6499 -0.6671 -0.4229 -0.5466 -0.4651 -0.3881 -0.3163 -0.2319 -0.0841 0.1566 0.3437 0.7737 1.0010 0.9742 0.9467 1.0590 1.0872 0.7433 - N W 67.00 0.5461 0.0824 0.1484 0.0958 -0.0698 -0.4170 -0.5762 -0.5824 -0.4454 -0.4861 -0.4407 -0.3741 -0.3253 -0.2672 -0.0937 0.1176 0.3643 0.7759 0.8736 0.9317 0.9927 1.1610 1.1513 0.8326 - N W 66.00 0.5676 0.1701 0.1806 0.1532 -0.0865 -0.3770 -0.5226 -0.5100 -0.4440 -0.4326 -0.4090 -0.3604 -0.3206 -0.2864 -0.1217 0.0675 0.3598 0.7531 0.7454 0.8847 1.0296 1.2472 1.2101 0.8994 - N W 65.00 0.5725 0.2640 0.1941 0.1938 -0.1498 -0.3260 -0.4937 -0.4514 -0.4138 -0.3935 -0.3688 -0.3474 -0.3006 -0.2859 -0.1661 0.0055 0.3337 0.6937 0.6296 0.8276 1.0543 1.3092 1.2455 0.9407 - N W 64.00 0.5586 0.3913 0.1867 0.2220 -0.3129 -0.2466 -0.5107 -0.4223 -0.3533 -0.3734 -0.3210 -0.3364 -0.2656 -0.2658 -0.2265 -0.0667 0.2911 0.5964 0.5675 0.7466 1.0607 1.3428 1.2548 0.9644 - N W 63.00 0.5939 0.4340 0.2233 0.3246 -0.2488 -0.2205 -0.5422 -0.4180 -0.2928 -0.3683 -0.3107 -0.3427 -0.2483 -0.2414 -0.2278 -0.1582 0.2067 0.5287 0.7174 0.5527 1.1746 1.5113 1.4011 1.0370 - N W 62.00 0.8182 0.4538 0.2229 0.2841 -0.0053 -0.2427 -0.3643 -0.2809 -0.2717 -0.3189 -0.2661 -0.2889 -0.2033 -0.2378 -0.2359 -0.1074 0.1804 0.4227 0.5417 0.4547 1.0890 1.4236 1.4271 1.0149 - N W 61.00 1.0628 0.4660 0.2285 0.2529 0.2007 -0.2720 -0.2238 -0.1989 -0.2140 -0.2608 -0.2184 -0.2363 -0.1662 -0.2217 -0.2227 -0.0724 0.1454 0.3325 0.3999 0.3480 0.9689 1.2881 1.4583 0.9889 - N W 60.00 1.3043 0.4609 0.2629 0.2269 0.3219 -0.3201 -0.1167 -0.1777 -0.1233 -0.1955 -0.1682 -0.1847 -0.1362 -0.1953 -0.1901 -0.0514 0.1038 0.2684 0.3056 0.2536 0.8162 1.0986 1.4481 0.9599 - N W 59.00 1.1315 0.3865 0.3699 0.2243 0.2374 -0.3958 -0.0526 -0.2180 0.0001 -0.1247 -0.1158 -0.1333 -0.1128 -0.1595 -0.1397 -0.0433 0.0612 0.2360 0.2573 0.1766 0.6560 0.8872 1.3463 0.9453 - N W 58.00 0.8928 0.2791 0.3812 0.1898 0.1589 -0.3805 -0.0115 -0.1878 0.0460 -0.0718 -0.0715 -0.0856 -0.0800 -0.1123 -0.0913 -0.0312 0.0319 0.1785 0.1894 0.1100 0.4840 0.6825 1.1613 0.8229 - N W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -sebh1.pot - SOUTHERN, EQUINOX H0 COEFFICIENT (FREE PARAMETER) FOR BZ < 0 - S E 90.00 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 -0.1908 - S E 89.00 -0.0744 -0.0989 -0.1245 -0.1525 -0.1863 -0.2268 -0.2701 -0.3135 -0.3532 -0.3831 -0.3967 -0.3896 -0.3627 -0.3189 -0.2641 -0.2040 -0.1458 -0.0964 -0.0585 -0.0333 -0.0206 -0.0209 -0.0327 -0.0517 - S E 88.00 0.0163 -0.0258 -0.0532 -0.0710 -0.1188 -0.2080 -0.3003 -0.3919 -0.4970 -0.5947 -0.6386 -0.6243 -0.5628 -0.4591 -0.3337 -0.1940 -0.0562 0.0446 0.1030 0.1434 0.1722 0.1664 0.1231 0.0658 - S E 87.00 0.1331 0.0962 0.0887 0.1002 0.0531 -0.0765 -0.2157 -0.3672 -0.5577 -0.7472 -0.8495 -0.8606 -0.7962 -0.6602 -0.4824 -0.2728 -0.0565 0.1046 0.1963 0.2675 0.3284 0.3280 0.2661 0.1885 - S E 86.00 0.2910 0.2878 0.3225 0.3647 0.3193 0.1698 -0.0144 -0.2478 -0.5481 -0.8472 -1.0327 -1.0998 -1.0716 -0.9354 -0.7190 -0.4490 -0.1576 0.0747 0.2188 0.3472 0.4580 0.4628 0.4006 0.3354 - S E 85.00 0.4998 0.5780 0.6806 0.7111 0.6445 0.5317 0.3096 -0.0500 -0.4879 -0.8935 -1.1797 -1.3357 -1.3831 -1.2889 -1.0330 -0.7218 -0.3742 -0.0559 0.1707 0.3961 0.5619 0.5441 0.5183 0.5449 - S E 84.00 0.6590 0.7726 0.9200 0.9995 0.9822 0.8796 0.6056 0.1550 -0.4067 -0.9337 -1.3106 -1.5395 -1.6448 -1.5755 -1.3104 -0.9836 -0.6075 -0.2353 0.0726 0.4328 0.7111 0.6980 0.6579 0.7069 - S E 83.00 0.7929 0.8780 1.0365 1.2250 1.3393 1.2267 0.8791 0.3680 -0.3035 -0.9675 -1.4243 -1.7115 -1.8673 -1.8077 -1.5577 -1.2436 -0.8751 -0.4851 -0.0913 0.4575 0.9179 0.9455 0.8313 0.8095 - S E 82.00 0.9418 0.8843 0.9874 1.3708 1.7494 1.5823 1.1194 0.5915 -0.1732 -1.0001 -1.5193 -1.8545 -2.0572 -1.9878 -1.7788 -1.5016 -1.1874 -0.8294 -0.3419 0.4738 1.1933 1.3408 1.0652 0.7871 - S E 81.00 1.6229 1.3916 1.4865 1.9567 2.3647 2.1059 1.5235 0.8759 -0.0271 -1.0073 -1.6567 -2.0856 -2.3569 -2.3472 -2.1984 -1.9377 -1.6063 -1.2190 -0.6407 0.3244 1.2246 1.5728 1.4435 1.3377 - S E 80.00 3.0754 2.4860 2.5732 2.9918 3.1609 2.7691 2.0712 1.2107 0.1346 -0.9864 -1.8294 -2.3910 -2.7464 -2.8566 -2.7969 -2.5428 -2.1339 -1.6615 -0.9869 -0.0150 0.9166 1.5758 2.0192 2.8039 - S E 79.00 3.6197 2.6899 2.8189 3.3784 3.6725 3.2940 2.5088 1.5565 0.3851 -0.8543 -1.8618 -2.5395 -3.0074 -3.2436 -3.1877 -2.9034 -2.4773 -1.9892 -1.3604 -0.4117 0.5578 1.2163 1.9100 3.2014 - S E 78.00 3.3867 2.8383 3.2096 3.9063 4.1866 3.7198 2.7984 1.7147 0.4583 -0.8278 -1.8953 -2.6238 -3.1475 -3.4607 -3.4542 -3.2037 -2.7941 -2.3012 -1.6744 -0.6338 0.4781 1.1277 1.8233 3.0747 - S E 77.00 2.2380 2.9336 3.7884 4.5742 4.6962 4.0515 2.9549 1.7051 0.3798 -0.8858 -1.9269 -2.6512 -3.1818 -3.5330 -3.6116 -3.4472 -3.0874 -2.5924 -1.9320 -0.8605 0.4907 1.1429 1.8223 2.1841 - S E 76.00 2.0896 2.9279 3.9337 4.8884 5.0137 4.2766 3.0449 1.6683 0.2937 -0.9324 -1.9122 -2.5961 -3.1031 -3.4704 -3.6248 -3.5706 -3.2981 -2.8639 -2.2751 -1.4249 -0.4003 0.2528 1.1245 1.7118 - S E 75.00 2.1233 2.9102 3.8735 4.9360 5.1744 4.4226 3.0974 1.6024 0.1911 -0.9709 -1.8535 -2.4673 -2.9235 -3.2842 -3.5089 -3.5894 -3.4396 -3.1116 -2.6888 -2.2161 -1.6426 -0.7183 0.3958 1.3737 - S E 74.00 2.0165 2.8276 3.7724 4.7621 5.0206 4.2536 2.9335 1.4435 0.0682 -0.9997 -1.7771 -2.3070 -2.7004 -3.0484 -3.3275 -3.4758 -3.3924 -3.1391 -2.8417 -2.5623 -2.1303 -1.2847 -0.1526 1.0025 - S E 73.00 1.8400 2.6722 3.5630 4.3672 4.5501 3.8700 2.6205 1.2036 -0.0735 -1.0196 -1.6843 -2.1182 -2.4323 -2.7564 -3.0738 -3.2463 -3.1837 -2.9918 -2.7916 -2.6372 -2.3987 -1.7337 -0.6739 0.6156 - S E 72.00 1.6281 2.4269 3.1521 3.7544 3.8649 3.2956 2.1809 0.8980 -0.2353 -1.0345 -1.5749 -1.9022 -2.1226 -2.3947 -2.7049 -2.8762 -2.8241 -2.7307 -2.6519 -2.5757 -2.5743 -2.1166 -1.0917 0.2548 - S E 71.00 1.3948 2.1421 2.6663 3.0110 2.9993 2.5634 1.6443 0.5536 -0.4076 -1.0458 -1.4493 -1.6607 -1.7743 -1.9817 -2.2696 -2.4528 -2.4601 -2.4018 -2.3904 -2.3958 -2.6200 -2.4240 -1.5020 -0.1191 - S E 70.00 1.1324 1.8593 2.2184 2.3271 2.1961 1.7895 1.0419 0.1767 -0.5854 -1.0493 -1.3100 -1.3971 -1.3859 -1.5213 -1.7826 -1.9660 -2.0248 -1.9270 -1.8703 -2.1008 -2.6187 -2.7132 -1.9382 -0.5434 - S E 69.00 0.4475 1.1857 1.5414 1.6278 1.5294 1.1955 0.5941 -0.0790 -0.6603 -0.9839 -1.1435 -1.1325 -1.0265 -1.0890 -1.2948 -1.4383 -1.4908 -1.3351 -1.2277 -1.7775 -2.5102 -2.7778 -2.2804 -1.1086 - S E 68.00 -0.5302 0.2146 0.6520 0.8691 0.8978 0.7009 0.2590 -0.2267 -0.6330 -0.8565 -0.9554 -0.8698 -0.6926 -0.6770 -0.7962 -0.8843 -0.9271 -0.7959 -0.7965 -1.4927 -2.3650 -2.7614 -2.5812 -1.7580 - S E 67.00 -1.6626 -0.9655 -0.3874 0.1180 0.3287 0.2910 0.0131 -0.2824 -0.5136 -0.6645 -0.7259 -0.5960 -0.3791 -0.2840 -0.2876 -0.2903 -0.2916 -0.2213 -0.3232 -1.0614 -2.0467 -2.6669 -2.8289 -2.4327 - S E 66.00 -2.8516 -2.0904 -1.2805 -0.5764 -0.2093 -0.0454 -0.1479 -0.2616 -0.2997 -0.3950 -0.4396 -0.3043 -0.0835 0.0900 0.2261 0.3437 0.4523 0.5770 0.4314 -0.4012 -1.5507 -2.4870 -3.0633 -3.1617 - S E 65.00 -3.4886 -2.6734 -1.7419 -1.0388 -0.5543 -0.2738 -0.2596 -0.2431 -0.1371 -0.1918 -0.2221 -0.0845 0.1303 0.3449 0.5628 0.7707 0.9880 1.1814 0.9975 0.0650 -1.2286 -2.3619 -3.2218 -3.6097 - S E 64.00 -3.8160 -2.9770 -1.9916 -1.3283 -0.7901 -0.4495 -0.3491 -0.2237 -0.0244 -0.0508 -0.0671 0.0705 0.2681 0.4896 0.7400 0.9918 1.2607 1.5465 1.4263 0.4475 -0.9397 -2.2431 -3.3138 -3.8642 - S E 63.00 -3.8856 -3.0820 -2.1041 -1.4813 -0.9484 -0.5816 -0.4054 -0.2030 0.0315 0.0301 0.0347 0.1677 0.3353 0.5309 0.7672 1.0174 1.2912 1.6475 1.6385 0.6689 -0.7515 -2.1358 -3.3010 -3.9116 - S E 62.00 -3.6701 -2.9742 -2.0816 -1.4966 -0.9634 -0.6165 -0.3926 -0.1813 0.0301 0.0530 0.0865 0.2111 0.3361 0.4750 0.6515 0.8562 1.0858 1.4524 1.5115 0.6888 -0.6151 -2.0321 -3.1315 -3.6871 - S E 61.00 -3.4111 -2.8028 -2.0109 -1.4874 -0.9553 -0.6112 -0.3559 -0.1541 0.0276 0.0630 0.1108 0.2211 0.3105 0.4040 0.5302 0.6929 0.8778 1.2234 1.3373 0.7607 -0.2517 -1.8241 -2.9004 -3.4126 - S E 60.00 -3.0340 -2.5129 -1.8424 -1.4181 -0.8967 -0.5461 -0.2942 -0.1215 0.0235 0.0606 0.1101 0.1998 0.2601 0.3186 0.4040 0.5248 0.6643 0.9584 1.0926 0.8019 0.2436 -1.5211 -2.5643 -3.0183 - S E 59.00 -2.3918 -2.0018 -1.4964 -1.2058 -0.7238 -0.4079 -0.2087 -0.0835 0.0172 0.0470 0.0866 0.1498 0.1863 0.2195 0.2718 0.3517 0.4459 0.6625 0.7890 0.6987 0.4967 -1.1419 -2.0617 -2.3846 - S E 58.00 -1.3738 -1.1509 -0.8649 -0.7250 -0.3827 -0.1995 -0.1016 -0.0406 0.0082 0.0229 0.0422 0.0729 0.0911 0.1077 0.1339 0.1739 0.2224 0.3336 0.4152 0.3861 0.2771 -0.6802 -1.2441 -1.3866 - S E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -sebh2.pot - SOUTHERN, EQUINOX H0 COEFFICIENT (FREE PARAMETER) FOR BZ > 0 - S E 90.00 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 0.6948 - S E 89.00 1.1066 1.0957 1.0574 0.9936 0.9065 0.8006 0.6856 0.5693 0.4632 0.3777 0.3183 0.2903 0.2923 0.3205 0.3695 0.4333 0.5083 0.5945 0.6919 0.7935 0.8914 0.9782 1.0460 1.0898 - S E 88.00 1.5618 1.5363 1.4585 1.3416 1.1741 0.9533 0.7088 0.4530 0.2185 0.0442 -0.0672 -0.1046 -0.0785 0.0008 0.1152 0.2300 0.3417 0.4822 0.6721 0.8882 1.0958 1.2789 1.4297 1.5269 - S E 87.00 2.0429 2.0158 1.9096 1.7496 1.5096 1.1743 0.8026 0.4079 0.0447 -0.2235 -0.3991 -0.4630 -0.4299 -0.3216 -0.1646 -0.0169 0.1166 0.3012 0.5821 0.9223 1.2539 1.5525 1.8060 1.9736 - S E 86.00 2.5531 2.5461 2.4321 2.2291 1.9075 1.4621 0.9648 0.4269 -0.0675 -0.4360 -0.6876 -0.7919 -0.7740 -0.6602 -0.4863 -0.3213 -0.1651 0.0647 0.4324 0.9009 1.3732 1.8035 2.1766 2.4296 - S E 85.00 3.0959 3.1392 3.0414 2.7862 2.3528 1.8119 1.1922 0.5043 -0.1181 -0.5971 -0.9294 -1.0910 -1.1073 -1.0150 -0.8633 -0.7055 -0.5076 -0.2154 0.2374 0.8304 1.4478 2.0293 2.5386 2.8994 - S E 84.00 3.7444 3.7608 3.6206 3.3233 2.8124 2.1724 1.4446 0.6150 -0.1493 -0.7364 -1.1542 -1.3791 -1.4361 -1.3735 -1.2411 -1.1081 -0.9128 -0.5647 0.0070 0.7465 1.5264 2.3209 3.0363 3.5124 - S E 83.00 4.5468 4.4193 4.1806 3.8432 3.2765 2.5412 1.7237 0.7571 -0.1572 -0.8514 -1.3601 -1.6503 -1.7590 -1.7379 -1.6262 -1.5372 -1.3873 -0.9802 -0.2557 0.6424 1.5949 2.7045 3.7163 4.3230 - S E 82.00 5.5451 5.1124 4.6813 4.3352 3.7536 2.9092 2.0270 0.9340 -0.1450 -0.9417 -1.5433 -1.9031 -2.0746 -2.1178 -2.0150 -1.9887 -1.9444 -1.4706 -0.5447 0.5158 1.6351 3.1759 4.6557 5.4459 - S E 81.00 6.1748 5.7119 5.2788 4.9392 4.3401 3.4084 2.3792 1.1592 -0.0398 -0.9572 -1.6547 -2.0910 -2.3329 -2.4335 -2.3751 -2.3858 -2.3875 -1.9614 -1.0387 0.1071 1.4198 3.2834 5.1365 6.0641 - S E 80.00 6.2469 6.2247 6.0261 5.6621 5.0344 4.0344 2.7690 1.4253 0.1516 -0.9089 -1.7022 -2.2225 -2.5466 -2.6965 -2.7184 -2.7412 -2.7278 -2.4478 -1.7425 -0.6314 0.8779 2.8779 4.9214 5.9696 - S E 79.00 6.7905 6.8911 6.7428 6.4039 5.6817 4.5489 3.1488 1.6472 0.2546 -0.8793 -1.7085 -2.3016 -2.7133 -2.9348 -3.0529 -3.1801 -3.2591 -3.0492 -2.3851 -1.2793 0.2196 2.4178 5.0169 6.2812 - S E 78.00 6.9570 7.3897 7.3363 6.9929 6.1661 4.8452 3.2695 1.6890 0.2904 -0.8508 -1.6972 -2.3250 -2.7741 -3.0507 -3.2477 -3.4497 -3.6187 -3.5340 -3.0102 -2.0030 -0.5609 1.6683 4.6285 5.9224 - S E 77.00 6.4618 7.5975 7.8039 7.4294 6.5041 4.9401 3.1505 1.5692 0.2747 -0.8173 -1.6672 -2.3005 -2.7442 -3.0592 -3.3218 -3.5668 -3.8143 -3.8981 -3.6139 -2.8226 -1.6124 0.2050 1.8454 3.8870 - S E 76.00 5.1536 7.2384 7.9593 7.7308 6.7924 5.0602 3.1033 1.4744 0.2249 -0.8039 -1.6128 -2.2148 -2.6456 -2.9947 -3.3136 -3.6148 -3.9528 -4.2081 -4.1613 -3.7266 -3.1826 -2.0713 -0.5667 1.6356 - S E 75.00 4.0321 6.6289 7.8027 7.8962 7.0145 5.1873 3.1118 1.3963 0.1465 -0.8064 -1.5381 -2.0757 -2.4855 -2.8673 -3.2383 -3.6050 -4.0403 -4.4648 -4.6591 -4.5854 -4.3383 -3.4468 -2.0798 0.2634 - S E 74.00 3.3369 5.8992 7.2142 7.6541 6.8959 5.0628 2.9989 1.2907 0.0730 -0.8022 -1.4575 -1.9317 -2.3163 -2.7128 -3.1153 -3.5292 -4.0386 -4.5936 -4.9687 -5.0403 -4.8303 -4.2019 -3.0442 -0.6431 - S E 73.00 2.3349 4.9699 6.3576 7.0628 6.4673 4.7402 2.7908 1.1621 0.0040 -0.7892 -1.3690 -1.7825 -2.1351 -2.5307 -2.9469 -3.3973 -3.9642 -4.6051 -5.1105 -5.2461 -5.0699 -4.5638 -3.5193 -1.4036 - S E 72.00 1.1617 3.9702 5.4898 6.2981 5.8265 4.2669 2.5116 1.0151 -0.0613 -0.7664 -1.2706 -1.6239 -1.9403 -2.3241 -2.7393 -3.2107 -3.8103 -4.5187 -5.1238 -5.2963 -5.1470 -4.6774 -3.6543 -1.8111 - S E 71.00 0.6086 3.2851 4.7434 5.4692 5.0374 3.6837 2.1805 0.8540 -0.1210 -0.7312 -1.1582 -1.4523 -1.7299 -2.0916 -2.4918 -2.9676 -3.5618 -4.3226 -5.0466 -5.2424 -5.1293 -4.7165 -3.7134 -2.0257 - S E 70.00 0.1930 2.7782 4.1214 4.6801 4.2053 3.0403 1.8200 0.6845 -0.1762 -0.6824 -1.0283 -1.2665 -1.5042 -1.8356 -2.2097 -2.6776 -3.2333 -4.0118 -4.8670 -5.0973 -5.0358 -4.7192 -3.8096 -2.3044 - S E 69.00 -0.5701 1.9251 3.3778 4.0246 3.6164 2.5715 1.5330 0.5545 -0.1880 -0.5962 -0.8706 -1.0595 -1.2595 -1.5544 -1.8972 -2.3335 -2.8310 -3.6073 -4.5737 -4.8962 -4.9118 -4.6952 -3.9721 -2.7500 - S E 68.00 -1.4255 0.9770 2.6384 3.4715 3.1636 2.2105 1.2968 0.4631 -0.1560 -0.4753 -0.6883 -0.8347 -0.9966 -1.2490 -1.5557 -1.9379 -2.3545 -3.1015 -4.1583 -4.6126 -4.7389 -4.6528 -4.1102 -3.1730 - S E 67.00 -2.3188 -0.0250 1.8919 2.9470 2.7765 1.9261 1.1069 0.4103 -0.0804 -0.3203 -0.4816 -0.5931 -0.7154 -0.9206 -1.1858 -1.4945 -1.8157 -2.4953 -3.5828 -4.2104 -4.4928 -4.5923 -4.2916 -3.6655 - S E 66.00 -3.3531 -1.1591 1.0969 2.4088 2.4144 1.7013 0.9606 0.3988 0.0402 -0.1310 -0.2511 -0.3349 -0.4178 -0.5697 -0.7884 -1.0054 -1.2218 -1.7646 -2.7067 -3.6275 -4.1605 -4.4894 -4.5807 -4.3256 - S E 65.00 -4.0651 -1.9090 0.5466 1.9527 2.0614 1.4661 0.8143 0.3711 0.1127 -0.0024 -0.0856 -0.1443 -0.1963 -0.3057 -0.4847 -0.6289 -0.7650 -1.1632 -1.8725 -3.0479 -3.8267 -4.3709 -4.8117 -4.8279 - S E 64.00 -4.6068 -2.4355 0.1307 1.5000 1.6594 1.2168 0.6756 0.3280 0.1418 0.0701 0.0197 -0.0167 -0.0449 -0.1219 -0.2668 -0.3597 -0.4422 -0.7204 -1.2258 -2.4213 -3.3771 -4.1916 -4.9728 -5.2181 - S E 63.00 -4.9665 -2.7455 -0.1916 1.0345 1.2366 0.9662 0.5455 0.2702 0.1314 0.0909 0.0703 0.0530 0.0422 -0.0129 -0.1301 -0.1929 -0.2500 -0.4340 -0.7527 -1.7931 -2.8406 -3.9235 -5.0305 -5.4722 - S E 62.00 -4.8477 -2.5832 -0.3190 0.5935 0.8310 0.7281 0.4281 0.2000 0.0847 0.0643 0.0706 0.0697 0.0690 0.0262 -0.0701 -0.1240 -0.1857 -0.3074 -0.4720 -1.2661 -2.3352 -3.5306 -4.8924 -5.4254 - S E 61.00 -4.7223 -2.4128 -0.4551 0.1360 0.4610 0.5208 0.3221 0.1411 0.0492 0.0430 0.0651 0.0743 0.0801 0.0483 -0.0279 -0.0721 -0.1303 -0.2018 -0.2456 -0.7508 -1.7301 -2.9439 -4.5689 -5.3024 - S E 60.00 -4.4099 -2.1901 -0.6272 -0.3342 0.1670 0.3472 0.2275 0.0927 0.0244 0.0266 0.0544 0.0677 0.0764 0.0543 -0.0025 -0.0359 -0.0846 -0.1199 -0.0872 -0.3487 -1.1115 -2.2030 -3.9779 -4.8964 - S E 59.00 -3.7020 -1.7762 -0.7076 -0.6193 -0.0006 0.2082 0.1436 0.0546 0.0097 0.0148 0.0389 0.0510 0.0590 0.0453 0.0078 -0.0143 -0.0493 -0.0627 -0.0034 -0.1046 -0.6343 -1.5033 -3.1412 -4.0583 - S E 58.00 -2.2253 -0.9712 -0.3852 -0.3401 0.0002 0.1012 0.0694 0.0264 0.0048 0.0072 0.0189 0.0249 0.0287 0.0220 0.0040 -0.0070 -0.0242 -0.0309 -0.0037 -0.0587 -0.3666 -0.9247 -1.9517 -2.4724 - S E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -seby3.pot - SOUTHERN, EQUINOX BY COEFFICIENT FOR BY < 0 AND BZ < 0 - S E 90.00 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 -0.5263 - S E 89.00 -0.5697 -0.5439 -0.5156 -0.4870 -0.4607 -0.4393 -0.4250 -0.4178 -0.4170 -0.4228 -0.4361 -0.4564 -0.4820 -0.5119 -0.5435 -0.5733 -0.5980 -0.6156 -0.6268 -0.6318 -0.6307 -0.6233 -0.6100 -0.5920 - S E 88.00 -0.6306 -0.5821 -0.5244 -0.4607 -0.4013 -0.3560 -0.3315 -0.3256 -0.3231 -0.3258 -0.3503 -0.3925 -0.4403 -0.5003 -0.5736 -0.6420 -0.6913 -0.7181 -0.7305 -0.7402 -0.7413 -0.7273 -0.7028 -0.6704 - S E 87.00 -0.6845 -0.6160 -0.5348 -0.4447 -0.3612 -0.2975 -0.2639 -0.2560 -0.2467 -0.2423 -0.2746 -0.3335 -0.3976 -0.4824 -0.5932 -0.6975 -0.7708 -0.8072 -0.8213 -0.8374 -0.8439 -0.8248 -0.7894 -0.7418 - S E 86.00 -0.7262 -0.6394 -0.5433 -0.4404 -0.3468 -0.2724 -0.2263 -0.2049 -0.1817 -0.1701 -0.2094 -0.2808 -0.3549 -0.4603 -0.6033 -0.7390 -0.8364 -0.8865 -0.9040 -0.9278 -0.9427 -0.9186 -0.8739 -0.8070 - S E 85.00 -0.7487 -0.6439 -0.5401 -0.4507 -0.3661 -0.2901 -0.2239 -0.1644 -0.1197 -0.1098 -0.1580 -0.2329 -0.3132 -0.4372 -0.6043 -0.7607 -0.8822 -0.9564 -0.9834 -1.0128 -1.0356 -1.0090 -0.9633 -0.8723 - S E 84.00 -0.7452 -0.6588 -0.5696 -0.4795 -0.3818 -0.2934 -0.2115 -0.1335 -0.0748 -0.0591 -0.1100 -0.1929 -0.2901 -0.4392 -0.6303 -0.8040 -0.9409 -1.0300 -1.0662 -1.1086 -1.1451 -1.1155 -1.0377 -0.8918 - S E 83.00 -0.6990 -0.6847 -0.6419 -0.5305 -0.3943 -0.2876 -0.1926 -0.1096 -0.0441 -0.0183 -0.0648 -0.1563 -0.2823 -0.4660 -0.6787 -0.8605 -1.0057 -1.1048 -1.1530 -1.2176 -1.2759 -1.2518 -1.0972 -0.8368 - S E 82.00 -0.5871 -0.7257 -0.7749 -0.6080 -0.3993 -0.2719 -0.1654 -0.0931 -0.0284 0.0121 -0.0209 -0.1183 -0.2899 -0.5186 -0.7474 -0.9263 -1.0720 -1.1763 -1.2447 -1.3443 -1.4262 -1.4413 -1.1345 -0.6473 - S E 81.00 -0.5303 -0.7690 -0.8605 -0.6617 -0.4062 -0.2579 -0.1466 -0.0808 -0.0160 0.0381 0.0214 -0.0748 -0.2564 -0.4836 -0.7059 -0.8887 -1.0432 -1.1487 -1.2180 -1.3288 -1.4319 -1.4751 -1.1406 -0.5597 - S E 80.00 -0.5562 -0.8152 -0.8929 -0.6930 -0.4164 -0.2427 -0.1332 -0.0728 -0.0093 0.0572 0.0629 -0.0273 -0.1920 -0.3751 -0.5650 -0.7565 -0.9268 -1.0264 -1.0752 -1.1567 -1.2614 -1.2838 -1.0879 -0.6316 - S E 79.00 -0.4904 -0.8872 -0.9204 -0.6851 -0.4029 -0.2486 -0.1692 -0.1193 -0.0381 0.0464 0.0496 -0.0327 -0.1683 -0.3360 -0.5348 -0.7358 -0.9006 -0.9956 -1.0649 -1.1886 -1.3135 -1.3702 -1.2020 -0.6233 - S E 78.00 -0.8455 -1.1009 -0.9887 -0.6997 -0.4132 -0.2751 -0.2192 -0.1802 -0.0939 0.0004 0.0138 -0.0477 -0.1513 -0.2930 -0.4831 -0.6856 -0.8499 -0.9447 -1.0242 -1.1798 -1.3188 -1.3759 -1.2839 -0.8440 - S E 77.00 -1.6414 -1.4556 -1.0965 -0.7286 -0.4422 -0.3186 -0.2820 -0.2530 -0.1724 -0.0763 -0.0425 -0.0723 -0.1393 -0.2452 -0.4116 -0.6098 -0.7751 -0.8727 -0.9531 -1.1199 -1.3092 -1.3549 -1.3088 -1.4366 - S E 76.00 -1.7112 -1.5100 -1.1291 -0.7526 -0.4781 -0.3695 -0.3601 -0.3403 -0.2609 -0.1592 -0.0993 -0.0953 -0.1264 -0.2003 -0.3499 -0.5417 -0.7030 -0.8017 -0.8806 -1.0273 -1.1930 -1.2489 -1.2874 -1.5203 - S E 75.00 -1.6333 -1.4478 -1.0782 -0.7593 -0.5149 -0.4258 -0.4554 -0.4417 -0.3580 -0.2495 -0.1576 -0.1173 -0.1127 -0.1575 -0.2961 -0.4804 -0.6329 -0.7327 -0.8095 -0.9252 -1.0551 -1.1520 -1.2439 -1.4494 - S E 74.00 -1.5471 -1.3867 -1.0490 -0.7921 -0.5863 -0.5032 -0.5371 -0.5212 -0.4327 -0.3149 -0.1985 -0.1307 -0.1017 -0.1280 -0.2569 -0.4269 -0.5654 -0.6617 -0.7314 -0.8287 -0.9562 -1.0801 -1.2101 -1.3926 - S E 73.00 -1.4781 -1.3369 -1.0392 -0.8564 -0.6934 -0.5918 -0.6106 -0.5847 -0.4880 -0.3591 -0.2250 -0.1365 -0.0928 -0.1064 -0.2208 -0.3726 -0.4938 -0.5904 -0.6663 -0.7446 -0.8566 -1.0091 -1.1769 -1.3480 - S E 72.00 -1.4148 -1.2892 -1.0636 -0.9560 -0.8177 -0.6950 -0.6826 -0.6329 -0.5219 -0.3843 -0.2397 -0.1358 -0.0858 -0.0928 -0.1822 -0.3090 -0.4154 -0.5243 -0.6168 -0.6665 -0.7277 -0.9395 -1.1539 -1.3134 - S E 71.00 -1.3537 -1.2399 -1.1107 -1.0748 -0.9588 -0.8089 -0.7495 -0.6675 -0.5401 -0.3943 -0.2445 -0.1291 -0.0806 -0.0881 -0.1483 -0.2518 -0.3567 -0.4644 -0.5573 -0.5775 -0.6235 -0.8783 -1.1375 -1.2855 - S E 70.00 -1.2897 -1.1891 -1.1599 -1.1837 -1.0791 -0.9183 -0.8100 -0.6922 -0.5481 -0.3920 -0.2408 -0.1165 -0.0769 -0.0921 -0.1180 -0.1937 -0.2971 -0.3933 -0.4596 -0.4725 -0.5416 -0.8204 -1.1239 -1.2587 - S E 69.00 -1.1844 -1.1140 -1.1413 -1.1926 -1.1143 -0.9620 -0.8208 -0.6862 -0.5403 -0.3825 -0.2360 -0.1117 -0.0757 -0.0911 -0.0938 -0.1471 -0.2427 -0.3326 -0.4018 -0.4437 -0.5278 -0.7805 -1.0677 -1.1808 - S E 68.00 -1.0504 -1.0194 -1.0750 -1.1470 -1.1068 -0.9646 -0.7931 -0.6527 -0.5162 -0.3667 -0.2306 -0.1136 -0.0770 -0.0864 -0.0745 -0.1125 -0.2005 -0.2973 -0.3884 -0.4512 -0.5358 -0.7485 -0.9840 -1.0692 - S E 67.00 -0.9018 -0.9125 -0.9745 -1.0674 -1.0750 -0.9402 -0.7356 -0.5957 -0.4784 -0.3444 -0.2244 -0.1219 -0.0808 -0.0784 -0.0604 -0.0891 -0.1666 -0.2724 -0.3913 -0.4847 -0.5645 -0.7015 -0.8850 -0.9399 - S E 66.00 -0.7505 -0.8154 -0.8763 -0.9718 -1.0289 -0.8994 -0.6606 -0.5183 -0.4258 -0.3142 -0.2176 -0.1381 -0.0873 -0.0674 -0.0513 -0.0775 -0.1405 -0.2482 -0.4096 -0.5578 -0.6234 -0.6422 -0.7690 -0.7915 - S E 65.00 -0.6418 -0.7261 -0.7923 -0.8889 -0.9852 -0.8589 -0.5995 -0.4535 -0.3753 -0.2815 -0.2032 -0.1423 -0.0889 -0.0592 -0.0442 -0.0667 -0.1147 -0.2243 -0.4181 -0.6102 -0.6664 -0.6096 -0.6873 -0.6860 - S E 64.00 -0.5494 -0.6313 -0.7064 -0.8115 -0.9375 -0.8094 -0.5373 -0.3940 -0.3264 -0.2464 -0.1821 -0.1362 -0.0863 -0.0533 -0.0389 -0.0573 -0.0927 -0.1941 -0.4132 -0.6514 -0.7069 -0.5971 -0.6323 -0.6057 - S E 63.00 -0.4629 -0.5164 -0.6033 -0.7311 -0.8694 -0.7355 -0.4731 -0.3441 -0.2813 -0.2090 -0.1544 -0.1209 -0.0800 -0.0496 -0.0356 -0.0495 -0.0736 -0.1574 -0.3904 -0.6738 -0.7395 -0.6161 -0.6074 -0.5454 - S E 62.00 -0.3854 -0.3611 -0.4509 -0.6237 -0.7657 -0.6254 -0.4224 -0.3121 -0.2412 -0.1699 -0.1207 -0.0970 -0.0702 -0.0480 -0.0344 -0.0433 -0.0573 -0.1184 -0.3426 -0.6694 -0.7737 -0.6902 -0.6369 -0.5170 - S E 61.00 -0.3136 -0.2122 -0.2795 -0.4976 -0.6445 -0.4995 -0.3559 -0.2676 -0.1975 -0.1326 -0.0906 -0.0748 -0.0587 -0.0431 -0.0309 -0.0363 -0.0426 -0.0830 -0.2768 -0.6333 -0.8127 -0.7540 -0.6445 -0.4792 - S E 60.00 -0.2391 -0.0771 -0.1182 -0.3564 -0.4956 -0.3639 -0.2770 -0.2118 -0.1508 -0.0970 -0.0638 -0.0541 -0.0456 -0.0354 -0.0254 -0.0283 -0.0297 -0.0534 -0.2019 -0.5435 -0.7975 -0.7653 -0.6174 -0.4244 - S E 59.00 -0.1591 0.0184 -0.0051 -0.2149 -0.3180 -0.2308 -0.1885 -0.1460 -0.1013 -0.0630 -0.0401 -0.0349 -0.0310 -0.0251 -0.0180 -0.0193 -0.0185 -0.0310 -0.1325 -0.4078 -0.6674 -0.6711 -0.5297 -0.3364 - S E 58.00 -0.0891 0.0114 -0.0050 -0.1307 -0.1683 -0.1129 -0.0916 -0.0709 -0.0492 -0.0307 -0.0196 -0.0170 -0.0152 -0.0123 -0.0089 -0.0095 -0.0093 -0.0164 -0.0710 -0.2231 -0.3742 -0.3938 -0.3174 -0.1933 - S E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -seby4.pot - SOUTHERN, EQUINOX BY COEFFICIENT FOR BY < 0 AND BZ > 0 - S E 90.00 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 -0.4798 - S E 89.00 -0.5635 -0.5357 -0.5032 -0.4702 -0.4406 -0.4166 -0.3993 -0.3879 -0.3808 -0.3778 -0.3803 -0.3894 -0.4044 -0.4245 -0.4484 -0.4748 -0.5018 -0.5279 -0.5523 -0.5729 -0.5880 -0.5959 -0.5946 -0.5837 - S E 88.00 -0.6975 -0.6302 -0.5493 -0.4689 -0.4064 -0.3647 -0.3417 -0.3358 -0.3280 -0.3134 -0.3114 -0.3292 -0.3579 -0.3947 -0.4423 -0.4948 -0.5453 -0.5949 -0.6451 -0.6898 -0.7267 -0.7532 -0.7595 -0.7416 - S E 87.00 -0.8388 -0.7347 -0.6044 -0.4751 -0.3817 -0.3251 -0.2974 -0.2956 -0.2840 -0.2535 -0.2421 -0.2640 -0.3033 -0.3538 -0.4213 -0.4956 -0.5656 -0.6366 -0.7134 -0.7845 -0.8475 -0.8998 -0.9198 -0.9008 - S E 86.00 -0.9854 -0.8536 -0.6783 -0.4977 -0.3745 -0.3066 -0.2716 -0.2660 -0.2468 -0.1997 -0.1747 -0.1953 -0.2423 -0.3065 -0.3915 -0.4816 -0.5678 -0.6601 -0.7625 -0.8617 -0.9543 -1.0342 -1.0706 -1.0558 - S E 85.00 -1.1331 -0.9903 -0.7759 -0.5473 -0.3898 -0.3159 -0.2684 -0.2400 -0.2096 -0.1540 -0.1131 -0.1228 -0.1763 -0.2576 -0.3577 -0.4519 -0.5500 -0.6681 -0.7967 -0.9264 -1.0482 -1.1536 -1.2062 -1.2032 - S E 84.00 -1.2588 -1.1033 -0.8483 -0.5692 -0.3836 -0.3136 -0.2699 -0.2380 -0.2040 -0.1369 -0.0750 -0.0719 -0.1333 -0.2346 -0.3599 -0.4746 -0.5834 -0.7099 -0.8509 -1.0016 -1.1563 -1.2922 -1.3506 -1.3399 - S E 83.00 -1.3500 -1.1928 -0.9068 -0.5724 -0.3600 -0.3053 -0.2805 -0.2543 -0.2219 -0.1458 -0.0568 -0.0360 -0.1064 -0.2327 -0.3932 -0.5448 -0.6650 -0.7839 -0.9213 -1.0859 -1.2859 -1.4568 -1.5013 -1.4572 - S E 82.00 -1.3791 -1.2483 -0.9520 -0.5627 -0.3189 -0.2916 -0.3024 -0.2861 -0.2586 -0.1802 -0.0561 -0.0088 -0.0907 -0.2460 -0.4524 -0.6624 -0.7960 -0.8879 -1.0051 -1.1729 -1.4405 -1.6586 -1.6646 -1.5474 - S E 81.00 -1.4289 -1.2579 -0.9673 -0.6039 -0.3728 -0.3218 -0.3113 -0.2926 -0.2691 -0.1933 -0.0721 -0.0171 -0.0837 -0.2317 -0.4369 -0.6513 -0.7794 -0.8569 -0.9651 -1.1369 -1.4272 -1.6779 -1.7120 -1.6060 - S E 80.00 -1.5321 -1.1933 -0.9421 -0.7052 -0.5278 -0.3914 -0.3050 -0.2767 -0.2559 -0.1875 -0.1068 -0.0595 -0.0849 -0.1943 -0.3562 -0.5264 -0.6307 -0.7000 -0.8039 -0.9692 -1.1977 -1.4189 -1.5687 -1.6203 - S E 79.00 -1.6743 -1.4765 -1.2029 -0.9328 -0.6926 -0.4877 -0.3728 -0.3481 -0.3132 -0.2408 -0.1908 -0.1420 -0.1292 -0.2040 -0.3350 -0.4813 -0.5829 -0.6667 -0.7784 -0.9453 -1.2367 -1.5916 -1.7793 -1.8192 - S E 78.00 -1.8521 -1.7100 -1.4264 -1.1552 -0.8687 -0.6063 -0.4640 -0.4267 -0.3711 -0.2929 -0.2579 -0.2097 -0.1706 -0.2095 -0.3065 -0.4243 -0.5173 -0.6076 -0.7254 -0.8879 -1.1889 -1.6153 -1.8980 -1.9887 - S E 77.00 -1.9962 -1.8226 -1.6074 -1.3755 -1.0564 -0.7426 -0.5750 -0.5110 -0.4276 -0.3425 -0.3124 -0.2677 -0.2108 -0.2114 -0.2709 -0.3554 -0.4355 -0.5266 -0.6473 -0.7919 -1.0104 -1.3226 -1.4709 -1.9131 - S E 76.00 -2.0663 -1.9670 -1.8066 -1.5777 -1.2137 -0.8632 -0.6749 -0.5852 -0.4775 -0.3860 -0.3531 -0.3076 -0.2422 -0.2169 -0.2456 -0.3053 -0.3756 -0.4621 -0.5799 -0.7013 -0.8253 -1.0271 -1.1969 -1.7120 - S E 75.00 -2.0728 -2.0973 -2.0155 -1.7610 -1.3376 -0.9679 -0.7675 -0.6499 -0.5197 -0.4235 -0.3811 -0.3324 -0.2670 -0.2256 -0.2289 -0.2703 -0.3341 -0.4130 -0.5236 -0.6324 -0.7289 -0.8898 -1.0383 -1.5879 - S E 74.00 -1.9726 -2.0023 -2.0192 -1.8396 -1.4155 -1.0328 -0.8186 -0.6809 -0.5385 -0.4411 -0.3931 -0.3433 -0.2796 -0.2291 -0.2158 -0.2430 -0.3008 -0.3771 -0.4867 -0.5952 -0.6845 -0.8033 -0.9208 -1.4484 - S E 73.00 -1.7515 -1.7621 -1.8585 -1.8202 -1.4493 -1.0650 -0.8352 -0.6837 -0.5379 -0.4428 -0.3919 -0.3422 -0.2823 -0.2289 -0.2061 -0.2226 -0.2771 -0.3552 -0.4676 -0.5778 -0.6584 -0.7502 -0.8568 -1.2759 - S E 72.00 -1.4148 -1.4387 -1.6270 -1.7343 -1.4444 -1.0702 -0.8247 -0.6629 -0.5208 -0.4318 -0.3796 -0.3307 -0.2769 -0.2258 -0.1995 -0.2075 -0.2591 -0.3444 -0.4643 -0.5730 -0.6440 -0.7233 -0.8305 -1.1404 - S E 71.00 -1.1764 -1.1640 -1.3923 -1.6152 -1.4168 -1.0572 -0.7935 -0.6218 -0.4892 -0.4099 -0.3573 -0.3097 -0.2645 -0.2204 -0.1960 -0.1970 -0.2447 -0.3410 -0.4720 -0.5775 -0.6358 -0.7027 -0.8091 -1.0351 - S E 70.00 -0.9609 -0.9043 -1.1734 -1.4906 -1.3762 -1.0333 -0.7466 -0.5620 -0.4439 -0.3781 -0.3251 -0.2795 -0.2458 -0.2132 -0.1955 -0.1906 -0.2340 -0.3443 -0.4885 -0.5882 -0.6320 -0.6805 -0.7770 -0.9068 - S E 69.00 -0.7980 -0.7636 -1.0423 -1.3822 -1.3200 -0.9955 -0.6972 -0.5046 -0.3979 -0.3436 -0.2937 -0.2514 -0.2258 -0.2020 -0.1910 -0.1871 -0.2291 -0.3485 -0.5085 -0.6120 -0.6480 -0.6777 -0.7401 -0.7830 - S E 68.00 -0.6931 -0.6998 -0.9626 -1.2907 -1.2572 -0.9454 -0.6432 -0.4477 -0.3516 -0.3073 -0.2636 -0.2254 -0.2045 -0.1872 -0.1831 -0.1868 -0.2300 -0.3536 -0.5314 -0.6497 -0.6834 -0.6913 -0.7149 -0.6965 - S E 67.00 -0.6238 -0.6796 -0.9083 -1.2006 -1.1870 -0.8832 -0.5839 -0.3906 -0.3046 -0.2691 -0.2345 -0.2013 -0.1817 -0.1691 -0.1720 -0.1900 -0.2373 -0.3603 -0.5582 -0.7053 -0.7445 -0.7224 -0.6925 -0.6207 - S E 66.00 -0.5715 -0.6882 -0.8658 -1.1039 -1.1047 -0.8057 -0.5178 -0.3329 -0.2574 -0.2289 -0.2064 -0.1791 -0.1576 -0.1479 -0.1578 -0.1970 -0.2509 -0.3693 -0.5912 -0.7863 -0.8358 -0.7808 -0.6666 -0.5395 - S E 65.00 -0.5340 -0.6941 -0.8270 -1.0061 -1.0135 -0.7204 -0.4492 -0.2795 -0.2152 -0.1933 -0.1795 -0.1564 -0.1343 -0.1269 -0.1416 -0.1921 -0.2494 -0.3611 -0.5960 -0.8478 -0.9133 -0.8268 -0.6386 -0.4730 - S E 64.00 -0.5012 -0.6992 -0.7835 -0.8833 -0.8892 -0.6248 -0.3821 -0.2319 -0.1779 -0.1619 -0.1537 -0.1337 -0.1117 -0.1059 -0.1231 -0.1764 -0.2337 -0.3360 -0.5695 -0.8807 -0.9860 -0.8651 -0.6080 -0.4120 - S E 63.00 -0.4696 -0.7042 -0.7279 -0.7150 -0.7245 -0.5216 -0.3173 -0.1903 -0.1451 -0.1346 -0.1290 -0.1110 -0.0895 -0.0851 -0.1025 -0.1503 -0.2043 -0.2934 -0.5068 -0.8623 -1.0206 -0.8820 -0.5715 -0.3559 - S E 62.00 -0.4507 -0.7112 -0.6610 -0.4840 -0.5114 -0.4155 -0.2561 -0.1554 -0.1168 -0.1111 -0.1054 -0.0882 -0.0679 -0.0644 -0.0800 -0.1145 -0.1615 -0.2317 -0.3939 -0.7677 -0.9869 -0.8600 -0.5217 -0.3151 - S E 61.00 -0.4129 -0.7122 -0.5808 -0.2367 -0.3131 -0.3163 -0.1984 -0.1216 -0.0902 -0.0879 -0.0828 -0.0674 -0.0494 -0.0466 -0.0598 -0.0838 -0.1224 -0.1748 -0.2919 -0.6474 -0.9214 -0.8172 -0.4562 -0.2551 - S E 60.00 -0.3276 -0.6814 -0.4709 0.0228 -0.1488 -0.2254 -0.1440 -0.0891 -0.0653 -0.0652 -0.0610 -0.0484 -0.0337 -0.0317 -0.0420 -0.0577 -0.0871 -0.1238 -0.2038 -0.5121 -0.8015 -0.7280 -0.3757 -0.1725 - S E 59.00 -0.2225 -0.5664 -0.3211 0.1980 -0.0445 -0.1436 -0.0930 -0.0580 -0.0421 -0.0429 -0.0398 -0.0310 -0.0206 -0.0193 -0.0265 -0.0356 -0.0555 -0.0787 -0.1290 -0.3629 -0.6223 -0.5794 -0.2844 -0.1008 - S E 58.00 -0.1319 -0.3178 -0.1739 0.1103 -0.0222 -0.0698 -0.0451 -0.0281 -0.0205 -0.0208 -0.0194 -0.0151 -0.0101 -0.0095 -0.0130 -0.0177 -0.0276 -0.0399 -0.0685 -0.1947 -0.3532 -0.3503 -0.1777 -0.0630 - S E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -seby5.pot - SOUTHERN, EQUINOX BY COEFFICIENT FOR BY > 0 AND BZ < 0 - S E 90.00 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 0.2222 - S E 89.00 0.2277 0.2404 0.2540 0.2680 0.2815 0.2918 0.2948 0.2890 0.2756 0.2573 0.2368 0.2165 0.1977 0.1813 0.1692 0.1625 0.1621 0.1665 0.1732 0.1806 0.1880 0.1961 0.2053 0.2159 - S E 88.00 0.2348 0.2550 0.2765 0.3035 0.3450 0.3870 0.4031 0.3865 0.3463 0.2988 0.2535 0.2123 0.1759 0.1421 0.1135 0.0995 0.1091 0.1333 0.1559 0.1707 0.1778 0.1839 0.1965 0.2148 - S E 87.00 0.2337 0.2634 0.2927 0.3297 0.3978 0.4743 0.5067 0.4814 0.4170 0.3406 0.2691 0.2069 0.1540 0.1049 0.0622 0.0404 0.0568 0.0998 0.1402 0.1647 0.1697 0.1676 0.1785 0.2037 - S E 86.00 0.2265 0.2727 0.3122 0.3545 0.4397 0.5460 0.5980 0.5697 0.4872 0.3839 0.2839 0.1991 0.1303 0.0703 0.0205 -0.0087 0.0059 0.0603 0.1201 0.1609 0.1664 0.1475 0.1471 0.1802 - S E 85.00 0.2116 0.2876 0.3460 0.3922 0.4697 0.5936 0.6731 0.6505 0.5615 0.4343 0.2993 0.1885 0.1019 0.0369 -0.0064 -0.0388 -0.0440 0.0058 0.0875 0.1565 0.1743 0.1260 0.0941 0.1367 - S E 84.00 0.0917 0.1887 0.2812 0.3505 0.4453 0.5894 0.6864 0.6752 0.5896 0.4529 0.2992 0.1719 0.0735 0.0000 -0.0472 -0.0781 -0.0842 -0.0396 0.0451 0.1297 0.1642 0.0980 0.0182 0.0279 - S E 83.00 -0.1650 -0.0444 0.1138 0.2430 0.3818 0.5369 0.6385 0.6494 0.5823 0.4507 0.2894 0.1516 0.0467 -0.0391 -0.1005 -0.1207 -0.1088 -0.0772 -0.0143 0.0711 0.1332 0.0754 -0.0721 -0.1623 - S E 82.00 -0.6033 -0.4496 -0.1637 0.0771 0.2973 0.4414 0.5245 0.5775 0.5458 0.4343 0.2746 0.1290 0.0240 -0.0783 -0.1686 -0.1649 -0.1081 -0.1043 -0.0985 -0.0337 0.0702 0.0774 -0.1570 -0.4567 - S E 81.00 -0.8042 -0.6302 -0.2769 0.0213 0.2715 0.4123 0.4942 0.5476 0.5111 0.4002 0.2478 0.1097 0.0092 -0.0963 -0.1993 -0.2075 -0.1571 -0.1639 -0.1736 -0.1190 -0.0189 0.0041 -0.2383 -0.5920 - S E 80.00 -0.6554 -0.5500 -0.2264 0.0748 0.2981 0.4377 0.5325 0.5494 0.4735 0.3485 0.2115 0.0944 0.0024 -0.0948 -0.1953 -0.2485 -0.2521 -0.2538 -0.2408 -0.1860 -0.1560 -0.1908 -0.3182 -0.4925 - S E 79.00 -0.7293 -0.5416 -0.1792 0.0799 0.2364 0.3670 0.4620 0.4431 0.3626 0.2590 0.1256 0.0219 -0.0592 -0.1576 -0.2570 -0.3080 -0.3041 -0.2890 -0.2836 -0.2642 -0.2261 -0.2085 -0.3503 -0.5862 - S E 78.00 -0.6981 -0.4945 -0.1388 0.0904 0.2082 0.3174 0.3891 0.3373 0.2445 0.1513 0.0308 -0.0681 -0.1412 -0.2222 -0.3107 -0.3633 -0.3617 -0.3411 -0.3378 -0.3249 -0.2784 -0.2761 -0.3864 -0.5946 - S E 77.00 -0.5296 -0.3910 -0.1014 0.1071 0.2112 0.2869 0.3133 0.2305 0.1177 0.0273 -0.0702 -0.1731 -0.2418 -0.2882 -0.3560 -0.4138 -0.4248 -0.4081 -0.4006 -0.3798 -0.3402 -0.4135 -0.4666 -0.4824 - S E 76.00 -0.4922 -0.3593 -0.1065 0.1184 0.2183 0.2532 0.2398 0.1405 0.0199 -0.0670 -0.1447 -0.2350 -0.2998 -0.3376 -0.3961 -0.4568 -0.4786 -0.4719 -0.4698 -0.4622 -0.4753 -0.5388 -0.5144 -0.4826 - S E 75.00 -0.5026 -0.3524 -0.1106 0.1319 0.2319 0.2172 0.1648 0.0623 -0.0551 -0.1376 -0.1958 -0.2591 -0.3210 -0.3726 -0.4312 -0.4925 -0.5249 -0.5333 -0.5438 -0.5537 -0.5501 -0.5585 -0.5415 -0.5141 - S E 74.00 -0.4977 -0.3364 -0.0995 0.1289 0.2173 0.1715 0.1009 0.0005 -0.1115 -0.1874 -0.2292 -0.2720 -0.3302 -0.3909 -0.4528 -0.5187 -0.5616 -0.5826 -0.6060 -0.6168 -0.5941 -0.5791 -0.5547 -0.5245 - S E 73.00 -0.4849 -0.3213 -0.0895 0.1095 0.1744 0.1208 0.0453 -0.0497 -0.1521 -0.2195 -0.2476 -0.2741 -0.3280 -0.3950 -0.4638 -0.5389 -0.5922 -0.6218 -0.6495 -0.6592 -0.6294 -0.6025 -0.5609 -0.5202 - S E 72.00 -0.4651 -0.3067 -0.0902 0.0704 0.1134 0.0635 -0.0087 -0.0903 -0.1780 -0.2364 -0.2536 -0.2664 -0.3155 -0.3865 -0.4653 -0.5530 -0.6164 -0.6504 -0.6783 -0.6897 -0.6665 -0.6261 -0.5600 -0.5061 - S E 71.00 -0.4397 -0.2867 -0.0914 0.0180 0.0363 0.0013 -0.0594 -0.1217 -0.1925 -0.2413 -0.2490 -0.2497 -0.2937 -0.3670 -0.4582 -0.5608 -0.6306 -0.6702 -0.7085 -0.7184 -0.6919 -0.6484 -0.5542 -0.4833 - S E 70.00 -0.4099 -0.2642 -0.0855 -0.0310 -0.0354 -0.0578 -0.1065 -0.1460 -0.1973 -0.2358 -0.2352 -0.2249 -0.2629 -0.3371 -0.4429 -0.5635 -0.6414 -0.6879 -0.7486 -0.7449 -0.7088 -0.6712 -0.5438 -0.4530 - S E 69.00 -0.3302 -0.2077 -0.0572 -0.0391 -0.0659 -0.0924 -0.1347 -0.1589 -0.1945 -0.2246 -0.2182 -0.1998 -0.2303 -0.3004 -0.4081 -0.5363 -0.6258 -0.6782 -0.7386 -0.7338 -0.6990 -0.6493 -0.4982 -0.3780 - S E 68.00 -0.2117 -0.1257 -0.0089 -0.0245 -0.0769 -0.1123 -0.1490 -0.1618 -0.1844 -0.2082 -0.1988 -0.1746 -0.1958 -0.2570 -0.3540 -0.4794 -0.5834 -0.6496 -0.7089 -0.7090 -0.6785 -0.6105 -0.4267 -0.2720 - S E 67.00 -0.0706 -0.0255 0.0503 0.0030 -0.0757 -0.1218 -0.1529 -0.1564 -0.1681 -0.1863 -0.1750 -0.1483 -0.1593 -0.2075 -0.2822 -0.3918 -0.5088 -0.6018 -0.6660 -0.6642 -0.6383 -0.5472 -0.3429 -0.1497 - S E 66.00 0.0788 0.0708 0.1040 0.0368 -0.0669 -0.1242 -0.1491 -0.1441 -0.1448 -0.1572 -0.1454 -0.1207 -0.1210 -0.1528 -0.1948 -0.2733 -0.3934 -0.5146 -0.5799 -0.5864 -0.5761 -0.4626 -0.2453 -0.0076 - S E 65.00 0.1744 0.1341 0.1419 0.0602 -0.0676 -0.1300 -0.1473 -0.1348 -0.1259 -0.1321 -0.1197 -0.0978 -0.0911 -0.1098 -0.1290 -0.1808 -0.2898 -0.4280 -0.4991 -0.5131 -0.5142 -0.3831 -0.1593 0.0953 - S E 64.00 0.2438 0.1825 0.1743 0.0769 -0.0766 -0.1407 -0.1472 -0.1275 -0.1112 -0.1105 -0.0975 -0.0794 -0.0691 -0.0778 -0.0821 -0.1145 -0.2090 -0.3477 -0.4137 -0.4245 -0.4297 -0.2920 -0.0772 0.1768 - S E 63.00 0.2951 0.2245 0.2079 0.0894 -0.0990 -0.1611 -0.1495 -0.1235 -0.1019 -0.0924 -0.0780 -0.0653 -0.0545 -0.0561 -0.0531 -0.0725 -0.1474 -0.2641 -0.3162 -0.3207 -0.3259 -0.1808 0.0100 0.2381 - S E 62.00 0.3249 0.2650 0.2523 0.1017 -0.1434 -0.1957 -0.1548 -0.1237 -0.0983 -0.0776 -0.0610 -0.0554 -0.0469 -0.0439 -0.0411 -0.0541 -0.1046 -0.1871 -0.2193 -0.1819 -0.1562 -0.0319 0.0873 0.2658 - S E 61.00 0.3395 0.2931 0.2928 0.1146 -0.1851 -0.2143 -0.1474 -0.1144 -0.0883 -0.0625 -0.0459 -0.0449 -0.0385 -0.0330 -0.0304 -0.0383 -0.0698 -0.1220 -0.1208 0.0074 0.1258 0.1290 0.1486 0.2813 - S E 60.00 0.3343 0.2995 0.3111 0.1251 -0.2141 -0.2056 -0.1261 -0.0959 -0.0725 -0.0470 -0.0324 -0.0340 -0.0295 -0.0233 -0.0211 -0.0253 -0.0427 -0.0706 -0.0369 0.1858 0.4266 0.2541 0.1862 0.2783 - S E 59.00 0.2874 0.2639 0.2814 0.1196 -0.1991 -0.1605 -0.0913 -0.0686 -0.0513 -0.0312 -0.0204 -0.0227 -0.0198 -0.0148 -0.0131 -0.0150 -0.0233 -0.0355 0.0088 0.2487 0.5308 0.2900 0.1842 0.2403 - S E 58.00 0.1655 0.1522 0.1622 0.0710 -0.1059 -0.0785 -0.0444 -0.0334 -0.0249 -0.0152 -0.0100 -0.0110 -0.0097 -0.0073 -0.0065 -0.0074 -0.0116 -0.0175 0.0057 0.1352 0.2969 0.1685 0.1097 0.1398 - S E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -seby6.pot - SOUTHERN, EQUINOX BY COEFFICIENT FOR BY > 0 AND BZ > 0 - S E 90.00 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 0.6672 - S E 89.00 0.6482 0.6693 0.6915 0.7130 0.7324 0.7476 0.7563 0.7580 0.7527 0.7409 0.7233 0.7018 0.6780 0.6536 0.6312 0.6124 0.5988 0.5905 0.5873 0.5885 0.5933 0.6016 0.6135 0.6292 - S E 88.00 0.6422 0.6839 0.7264 0.7693 0.8125 0.8484 0.8660 0.8668 0.8546 0.8286 0.7905 0.7458 0.6972 0.6473 0.6012 0.5650 0.5427 0.5321 0.5331 0.5420 0.5499 0.5592 0.5765 0.6045 - S E 87.00 0.6298 0.6903 0.7537 0.8184 0.8837 0.9355 0.9570 0.9538 0.9348 0.8963 0.8392 0.7696 0.6921 0.6174 0.5544 0.5082 0.4828 0.4733 0.4813 0.5009 0.5126 0.5220 0.5416 0.5771 - S E 86.00 0.6122 0.6894 0.7750 0.8672 0.9508 1.0080 1.0283 1.0214 0.9965 0.9497 0.8801 0.7820 0.6661 0.5673 0.4991 0.4516 0.4262 0.4185 0.4332 0.4642 0.4804 0.4927 0.5129 0.5493 - S E 85.00 0.5891 0.6811 0.7913 0.9244 1.0205 1.0632 1.0796 1.0733 1.0410 0.9896 0.9223 0.7899 0.6143 0.4933 0.4407 0.4016 0.3757 0.3700 0.3894 0.4290 0.4500 0.4771 0.4980 0.5216 - S E 84.00 0.5730 0.6561 0.7732 0.9245 1.0347 1.0805 1.0926 1.0786 1.0315 0.9602 0.8775 0.7253 0.5266 0.3947 0.3423 0.3042 0.2843 0.2906 0.3289 0.3939 0.4384 0.4859 0.5074 0.5190 - S E 83.00 0.5706 0.6119 0.7197 0.8671 0.9962 1.0662 1.0736 1.0460 0.9793 0.8746 0.7577 0.5993 0.4124 0.2788 0.2108 0.1665 0.1568 0.1830 0.2522 0.3558 0.4492 0.5286 0.5510 0.5585 - S E 82.00 0.5939 0.5440 0.6370 0.7439 0.9014 1.0295 1.0280 0.9823 0.8954 0.7421 0.5669 0.4174 0.2848 0.1560 0.0498 -0.0085 -0.0044 0.0475 0.1580 0.3098 0.4913 0.6163 0.6383 0.6763 - S E 81.00 0.6373 0.5762 0.6507 0.7201 0.8675 0.9987 0.9845 0.9089 0.7852 0.6019 0.4130 0.2774 0.1731 0.0614 -0.0433 -0.1008 -0.0925 -0.0320 0.0968 0.2759 0.5027 0.6525 0.6736 0.7225 - S E 80.00 0.7108 0.7456 0.7718 0.7935 0.8849 0.9688 0.9432 0.8250 0.6488 0.4514 0.2838 0.1693 0.0747 -0.0065 -0.0772 -0.1211 -0.1162 -0.0590 0.0685 0.2544 0.4720 0.6126 0.6321 0.6556 - S E 79.00 0.7598 0.7405 0.7546 0.8133 0.9133 0.9651 0.8977 0.7356 0.5256 0.3085 0.1472 0.0457 -0.0385 -0.1038 -0.1561 -0.1844 -0.1613 -0.1028 0.0018 0.1706 0.3507 0.4676 0.5717 0.7351 - S E 78.00 0.8277 0.7869 0.7758 0.8383 0.9196 0.9301 0.8184 0.6150 0.3899 0.1883 0.0485 -0.0436 -0.1166 -0.1662 -0.2030 -0.2198 -0.1888 -0.1313 -0.0367 0.1243 0.2867 0.3799 0.5000 0.7800 - S E 77.00 0.9003 0.9066 0.8428 0.8713 0.9081 0.8668 0.7081 0.4653 0.2406 0.0879 -0.0168 -0.1040 -0.1655 -0.1983 -0.2212 -0.2289 -0.1980 -0.1430 -0.0463 0.1184 0.2845 0.3921 0.4544 0.6776 - S E 76.00 0.8696 0.9249 0.8604 0.8952 0.9157 0.8348 0.6377 0.3726 0.1567 0.0318 -0.0540 -0.1332 -0.1840 -0.2063 -0.2229 -0.2291 -0.2009 -0.1519 -0.0613 0.0978 0.2453 0.3464 0.4024 0.5742 - S E 75.00 0.7911 0.8606 0.8286 0.9132 0.9402 0.8278 0.5983 0.3254 0.1253 0.0138 -0.0659 -0.1358 -0.1760 -0.1933 -0.2098 -0.2206 -0.1978 -0.1581 -0.0822 0.0709 0.2069 0.3068 0.3641 0.5243 - S E 74.00 0.7324 0.7984 0.7811 0.9071 0.9449 0.8083 0.5555 0.2793 0.0953 -0.0015 -0.0735 -0.1345 -0.1657 -0.1781 -0.1942 -0.2103 -0.1942 -0.1619 -0.0891 0.0687 0.2012 0.2952 0.3465 0.4752 - S E 73.00 0.6408 0.7309 0.7287 0.8812 0.9303 0.7784 0.5095 0.2332 0.0671 -0.0139 -0.0775 -0.1300 -0.1530 -0.1603 -0.1758 -0.1981 -0.1902 -0.1631 -0.0859 0.0796 0.2075 0.2991 0.3445 0.4191 - S E 72.00 0.5211 0.6652 0.6842 0.8465 0.9042 0.7406 0.4606 0.1865 0.0405 -0.0233 -0.0784 -0.1225 -0.1380 -0.1403 -0.1548 -0.1841 -0.1865 -0.1632 -0.0734 0.0989 0.2192 0.3089 0.3486 0.3762 - S E 71.00 0.4498 0.6225 0.6501 0.8095 0.8714 0.6981 0.4087 0.1382 0.0157 -0.0295 -0.0762 -0.1120 -0.1205 -0.1178 -0.1309 -0.1676 -0.1829 -0.1645 -0.0569 0.1258 0.2346 0.3230 0.3553 0.3410 - S E 70.00 0.3841 0.5944 0.6227 0.7755 0.8358 0.6531 0.3552 0.0877 -0.0076 -0.0325 -0.0710 -0.0983 -0.1005 -0.0929 -0.1041 -0.1489 -0.1799 -0.1679 -0.0357 0.1575 0.2515 0.3411 0.3692 0.2923 - S E 69.00 0.3928 0.5866 0.6184 0.7547 0.8034 0.6118 0.3118 0.0520 -0.0275 -0.0380 -0.0670 -0.0882 -0.0875 -0.0781 -0.0872 -0.1324 -0.1713 -0.1704 -0.0358 0.1749 0.2746 0.3637 0.4003 0.3191 - S E 68.00 0.4498 0.5921 0.6250 0.7419 0.7743 0.5709 0.2755 0.0303 -0.0438 -0.0458 -0.0640 -0.0812 -0.0809 -0.0726 -0.0794 -0.1176 -0.1570 -0.1715 -0.0587 0.1779 0.3050 0.3879 0.4359 0.3916 - S E 67.00 0.5335 0.6039 0.6375 0.7319 0.7455 0.5283 0.2457 0.0234 -0.0567 -0.0560 -0.0618 -0.0770 -0.0802 -0.0761 -0.0803 -0.1044 -0.1372 -0.1701 -0.1088 0.1617 0.3457 0.4146 0.4843 0.5023 - S E 66.00 0.6421 0.6179 0.6543 0.7235 0.7144 0.4804 0.2223 0.0335 -0.0663 -0.0689 -0.0601 -0.0753 -0.0850 -0.0882 -0.0900 -0.0926 -0.1120 -0.1651 -0.2039 0.1166 0.3999 0.4456 0.5566 0.6726 - S E 65.00 0.7076 0.6213 0.6541 0.6948 0.6655 0.4207 0.1942 0.0398 -0.0678 -0.0728 -0.0558 -0.0707 -0.0844 -0.0916 -0.0904 -0.0776 -0.0879 -0.1535 -0.2698 0.0750 0.4489 0.4735 0.6170 0.7929 - S E 64.00 0.7417 0.6129 0.6362 0.6325 0.5757 0.3433 0.1624 0.0430 -0.0618 -0.0684 -0.0490 -0.0633 -0.0786 -0.0871 -0.0823 -0.0593 -0.0644 -0.1340 -0.2896 0.0336 0.4931 0.4967 0.6619 0.8753 - S E 63.00 0.7334 0.5891 0.5911 0.5125 0.4251 0.2461 0.1265 0.0437 -0.0486 -0.0566 -0.0399 -0.0533 -0.0682 -0.0754 -0.0664 -0.0378 -0.0410 -0.1053 -0.2572 0.0099 0.5079 0.5151 0.6878 0.9044 - S E 62.00 0.6435 0.5452 0.5052 0.3033 0.1916 0.1308 0.0877 0.0423 -0.0284 -0.0379 -0.0289 -0.0410 -0.0536 -0.0571 -0.0433 -0.0133 -0.0177 -0.0660 -0.1559 0.0234 0.4845 0.5241 0.6816 0.8266 - S E 61.00 0.5310 0.4903 0.4099 0.0851 -0.0061 0.0463 0.0571 0.0381 -0.0142 -0.0238 -0.0198 -0.0303 -0.0405 -0.0414 -0.0257 0.0029 -0.0014 -0.0352 -0.0785 0.0289 0.4430 0.5149 0.6507 0.7224 - S E 60.00 0.3577 0.4090 0.2919 -0.1331 -0.1400 -0.0054 0.0341 0.0314 -0.0053 -0.0136 -0.0127 -0.0210 -0.0287 -0.0283 -0.0134 0.0113 0.0078 -0.0139 -0.0272 0.0298 0.3745 0.4702 0.5815 0.5596 - S E 59.00 0.1986 0.2967 0.1610 -0.2616 -0.1755 -0.0240 0.0183 0.0223 -0.0009 -0.0069 -0.0073 -0.0131 -0.0182 -0.0173 -0.0058 0.0123 0.0099 -0.0024 -0.0008 0.0253 0.2856 0.3808 0.4693 0.3867 - S E 58.00 0.1182 0.1652 0.0856 -0.1439 -0.0873 -0.0111 0.0089 0.0108 -0.0004 -0.0033 -0.0036 -0.0064 -0.0089 -0.0084 -0.0029 0.0060 0.0049 -0.0012 -0.0005 0.0145 0.1623 0.2314 0.2902 0.2328 - S E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -sebz1.pot - SOUTHERN, EQUINOX BZ COEFFICIENT FOR BZ < 0 - S E 90.00 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 -0.9288 - S E 89.00 -1.0539 -1.0680 -1.0731 -1.0687 -1.0550 -1.0324 -1.0014 -0.9640 -0.9238 -0.8840 -0.8468 -0.8164 -0.7948 -0.7832 -0.7823 -0.7911 -0.8086 -0.8340 -0.8656 -0.9005 -0.9364 -0.9717 -1.0042 -1.0322 - S E 88.00 -1.2092 -1.2378 -1.2455 -1.2341 -1.2117 -1.1738 -1.1096 -1.0289 -0.9452 -0.8641 -0.7868 -0.7228 -0.6812 -0.6625 -0.6665 -0.6872 -0.7212 -0.7736 -0.8414 -0.9118 -0.9784 -1.0423 -1.1055 -1.1636 - S E 87.00 -1.3790 -1.4223 -1.4317 -1.4133 -1.3836 -1.3280 -1.2274 -1.1017 -0.9748 -0.8520 -0.7334 -0.6360 -0.5742 -0.5455 -0.5502 -0.5791 -0.6246 -0.6998 -0.8020 -0.9087 -1.0091 -1.1086 -1.2102 -1.3052 - S E 86.00 -1.5745 -1.6300 -1.6381 -1.6135 -1.5738 -1.4917 -1.3491 -1.1793 -1.0106 -0.8458 -0.6872 -0.5602 -0.4802 -0.4395 -0.4386 -0.4713 -0.5252 -0.6167 -0.7470 -0.8874 -1.0264 -1.1723 -1.3241 -1.4652 - S E 85.00 -1.8105 -1.8676 -1.8626 -1.8436 -1.7906 -1.6613 -1.4734 -1.2653 -1.0552 -0.8429 -0.6467 -0.4965 -0.4014 -0.3469 -0.3287 -0.3606 -0.4241 -0.5252 -0.6743 -0.8413 -1.0245 -1.2367 -1.4558 -1.6541 - S E 84.00 -2.1045 -2.1668 -2.1400 -2.0922 -1.9931 -1.8082 -1.5736 -1.3243 -1.0761 -0.8304 -0.6014 -0.4224 -0.3064 -0.2350 -0.2047 -0.2362 -0.3107 -0.4294 -0.6050 -0.8046 -1.0358 -1.3248 -1.6337 -1.9032 - S E 83.00 -2.4694 -2.5392 -2.4906 -2.3670 -2.1760 -1.9297 -1.6530 -1.3610 -1.0785 -0.8121 -0.5546 -0.3431 -0.2007 -0.1082 -0.0685 -0.0979 -0.1866 -0.3316 -0.5385 -0.7735 -1.0569 -1.4427 -1.8746 -2.2377 - S E 82.00 -2.9020 -3.0041 -2.9323 -2.6734 -2.3303 -2.0212 -1.7149 -1.3775 -1.0619 -0.7924 -0.5114 -0.2615 -0.0872 0.0330 0.0757 0.0529 -0.0524 -0.2337 -0.4739 -0.7484 -1.0914 -1.5952 -2.2040 -2.7009 - S E 81.00 -3.1166 -3.2706 -3.1970 -2.8840 -2.4777 -2.1363 -1.8018 -1.4323 -1.0903 -0.8035 -0.5011 -0.2251 -0.0303 0.1003 0.1465 0.1294 0.0283 -0.1575 -0.4118 -0.7126 -1.0931 -1.6428 -2.3242 -2.8803 - S E 80.00 -3.0219 -3.3053 -3.2786 -2.9984 -2.6198 -2.2713 -1.9102 -1.5193 -1.1565 -0.8398 -0.5199 -0.2265 -0.0193 0.1048 0.1526 0.1407 0.0628 -0.1017 -0.3518 -0.6690 -1.0617 -1.5491 -2.1297 -2.6365 - S E 79.00 -3.0858 -3.5127 -3.5083 -3.2087 -2.7743 -2.3765 -1.9845 -1.5623 -1.1718 -0.8284 -0.4894 -0.1847 0.0269 0.1533 0.2167 0.2209 0.1546 -0.0083 -0.2778 -0.6235 -1.0187 -1.4975 -2.0929 -2.5811 - S E 78.00 -3.2227 -3.6952 -3.6976 -3.3826 -2.9114 -2.4704 -2.0437 -1.5944 -1.1827 -0.8160 -0.4595 -0.1436 0.0758 0.2045 0.2724 0.2826 0.2265 0.0723 -0.2021 -0.6001 -1.0412 -1.4989 -2.0741 -2.6253 - S E 77.00 -3.4264 -3.8274 -3.8527 -3.5207 -3.0313 -2.5514 -2.0871 -1.6157 -1.1901 -0.8022 -0.4299 -0.1038 0.1268 0.2573 0.3194 0.3259 0.2786 0.1396 -0.1214 -0.5413 -1.0513 -1.5135 -2.0706 -2.7559 - S E 76.00 -3.4393 -3.8541 -3.9777 -3.6456 -3.1268 -2.6223 -2.1366 -1.6492 -1.2108 -0.8089 -0.4259 -0.0887 0.1604 0.3061 0.3741 0.3838 0.3496 0.2391 0.0040 -0.3924 -0.8892 -1.4495 -2.0902 -2.7832 - S E 75.00 -3.4143 -3.8736 -4.0440 -3.7334 -3.1923 -2.6861 -2.1979 -1.6933 -1.2413 -0.8327 -0.4444 -0.0960 0.1788 0.3518 0.4355 0.4533 0.4369 0.3654 0.1704 -0.1948 -0.7160 -1.4147 -2.1137 -2.7682 - S E 74.00 -3.3724 -3.8497 -4.0281 -3.7393 -3.2111 -2.7043 -2.2125 -1.7040 -1.2500 -0.8415 -0.4542 -0.1008 0.1919 0.3832 0.4758 0.5059 0.5132 0.4720 0.3006 -0.0790 -0.6666 -1.4113 -2.1385 -2.7669 - S E 73.00 -3.3357 -3.8001 -3.9776 -3.6840 -3.1870 -2.6922 -2.1942 -1.6868 -1.2398 -0.8371 -0.4565 -0.1041 0.1990 0.4024 0.5035 0.5491 0.5858 0.5641 0.3780 -0.0109 -0.6259 -1.4055 -2.1557 -2.7709 - S E 72.00 -3.2973 -3.7072 -3.8636 -3.5790 -3.1205 -2.6585 -2.1565 -1.6460 -1.2095 -0.8201 -0.4532 -0.1068 0.2015 0.4104 0.5192 0.5855 0.6540 0.6378 0.4181 0.0245 -0.5744 -1.3923 -2.1706 -2.7785 - S E 71.00 -3.2571 -3.5873 -3.6918 -3.4319 -3.0232 -2.6054 -2.0999 -1.5883 -1.1664 -0.7924 -0.4450 -0.1096 0.1997 0.4090 0.5221 0.6101 0.7018 0.7016 0.4719 0.0551 -0.5597 -1.3829 -2.1901 -2.7936 - S E 70.00 -3.2090 -3.4592 -3.5165 -3.2791 -2.9214 -2.5420 -2.0285 -1.5178 -1.1157 -0.7570 -0.4331 -0.1131 0.1933 0.3983 0.5124 0.6251 0.7481 0.7745 0.5566 0.0927 -0.5670 -1.3862 -2.2039 -2.8052 - S E 69.00 -3.1322 -3.3193 -3.3375 -3.1273 -2.8096 -2.4472 -1.9367 -1.4346 -1.0491 -0.7129 -0.4175 -0.1192 0.1750 0.3757 0.4945 0.6261 0.7723 0.8144 0.6167 0.1079 -0.5892 -1.3904 -2.1924 -2.7830 - S E 68.00 -3.0409 -3.1703 -3.1439 -2.9682 -2.6868 -2.3294 -1.8268 -1.3404 -0.9669 -0.6619 -0.3997 -0.1277 0.1459 0.3413 0.4680 0.6124 0.7686 0.8158 0.6274 0.1124 -0.6071 -1.3933 -2.1660 -2.7405 - S E 67.00 -2.9476 -3.0152 -2.9365 -2.8147 -2.5673 -2.2003 -1.7039 -1.2371 -0.8730 -0.6018 -0.3787 -0.1392 0.1061 0.2957 0.4340 0.5846 0.7342 0.7957 0.6443 0.1409 -0.5907 -1.3681 -2.1280 -2.6859 - S E 66.00 -2.8567 -2.8803 -2.7637 -2.6750 -2.4509 -2.0689 -1.5823 -1.1252 -0.7623 -0.5295 -0.3539 -0.1551 0.0550 0.2397 0.3940 0.5441 0.6621 0.7359 0.6762 0.1937 -0.5466 -1.3120 -2.0789 -2.6243 - S E 65.00 -2.7327 -2.7422 -2.6223 -2.5421 -2.3434 -1.9488 -1.4664 -1.0103 -0.6526 -0.4569 -0.3195 -0.1552 0.0224 0.1943 0.3510 0.4914 0.5779 0.6651 0.6830 0.2207 -0.5253 -1.2714 -2.0194 -2.5338 - S E 64.00 -2.5679 -2.5864 -2.4834 -2.4103 -2.2287 -1.8113 -1.3237 -0.8780 -0.5426 -0.3840 -0.2766 -0.1407 0.0064 0.1581 0.3050 0.4290 0.4904 0.5851 0.6624 0.2300 -0.5011 -1.2205 -1.9352 -2.4044 - S E 63.00 -2.3410 -2.3919 -2.3253 -2.2679 -2.0728 -1.6200 -1.1322 -0.7278 -0.4378 -0.3115 -0.2252 -0.1126 0.0053 0.1299 0.2559 0.3568 0.3961 0.4855 0.5837 0.2031 -0.4882 -1.1617 -1.7889 -2.2009 - S E 62.00 -2.0477 -2.1261 -2.1071 -2.0731 -1.8501 -1.3583 -0.9078 -0.5743 -0.3411 -0.2400 -0.1659 -0.0718 0.0181 0.1090 0.2038 0.2756 0.2948 0.3728 0.4372 0.1240 -0.4730 -1.0874 -1.5857 -1.9231 - S E 61.00 -1.7707 -1.8325 -1.8249 -1.8300 -1.5838 -1.0647 -0.6882 -0.4331 -0.2539 -0.1772 -0.1169 -0.0412 0.0246 0.0879 0.1561 0.2051 0.2094 0.2705 0.2876 0.0426 -0.3816 -0.9569 -1.3666 -1.6524 - S E 60.00 -1.4581 -1.4911 -1.4842 -1.5248 -1.2492 -0.7587 -0.4853 -0.3056 -0.1770 -0.1226 -0.0769 -0.0200 0.0252 0.0664 0.1127 0.1436 0.1387 0.1810 0.1541 -0.0265 -0.2241 -0.7809 -1.1190 -1.3509 - S E 59.00 -1.0619 -1.0803 -1.0826 -1.1337 -0.8345 -0.4713 -0.3049 -0.1926 -0.1104 -0.0760 -0.0455 -0.0078 0.0201 0.0443 0.0726 0.0901 0.0827 0.1086 0.0668 -0.0571 -0.0987 -0.5736 -0.8375 -0.9870 - S E 58.00 -0.6115 -0.6236 -0.6304 -0.6837 -0.4413 -0.2301 -0.1481 -0.0936 -0.0537 -0.0370 -0.0221 -0.0038 0.0098 0.0218 0.0357 0.0444 0.0414 0.0543 0.0351 -0.0302 -0.0560 -0.3394 -0.5046 -0.5741 - S E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -sebz2.pot - SOUTHERN, EQUINOX BZ COEFFICIENT FOR BZ > 0 - S E 90.00 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 0.0431 - S E 89.00 -0.0025 -0.0081 -0.0105 -0.0101 -0.0074 -0.0024 0.0051 0.0157 0.0293 0.0448 0.0611 0.0762 0.0887 0.0976 0.1026 0.1041 0.1017 0.0943 0.0819 0.0662 0.0492 0.0328 0.0182 0.0063 - S E 88.00 -0.1036 -0.1102 -0.1078 -0.1017 -0.0946 -0.0871 -0.0791 -0.0606 -0.0317 0.0006 0.0380 0.0717 0.0960 0.1093 0.1143 0.1199 0.1230 0.1108 0.0796 0.0393 -0.0002 -0.0351 -0.0641 -0.0869 - S E 87.00 -0.1947 -0.2012 -0.1942 -0.1847 -0.1770 -0.1714 -0.1677 -0.1445 -0.1024 -0.0522 0.0094 0.0656 0.1061 0.1276 0.1355 0.1464 0.1552 0.1383 0.0877 0.0220 -0.0410 -0.0960 -0.1392 -0.1714 - S E 86.00 -0.2828 -0.2891 -0.2811 -0.2708 -0.2640 -0.2628 -0.2654 -0.2402 -0.1867 -0.1166 -0.0279 0.0539 0.1142 0.1485 0.1635 0.1798 0.1902 0.1655 0.0958 0.0068 -0.0801 -0.1577 -0.2160 -0.2554 - S E 85.00 -0.3682 -0.3740 -0.3727 -0.3663 -0.3588 -0.3654 -0.3727 -0.3481 -0.2867 -0.1915 -0.0741 0.0350 0.1177 0.1695 0.2009 0.2222 0.2236 0.1846 0.0970 -0.0084 -0.1152 -0.2225 -0.3001 -0.3447 - S E 84.00 -0.4605 -0.4502 -0.4423 -0.4378 -0.4358 -0.4556 -0.4777 -0.4550 -0.3811 -0.2665 -0.1231 0.0162 0.1260 0.1966 0.2391 0.2685 0.2719 0.2205 0.1076 -0.0179 -0.1417 -0.2814 -0.3871 -0.4414 - S E 83.00 -0.5695 -0.5166 -0.4905 -0.4886 -0.4979 -0.5363 -0.5831 -0.5634 -0.4704 -0.3427 -0.1782 -0.0045 0.1368 0.2295 0.2789 0.3183 0.3328 0.2683 0.1236 -0.0224 -0.1561 -0.3344 -0.4807 -0.5537 - S E 82.00 -0.7073 -0.5705 -0.5120 -0.5184 -0.5482 -0.6093 -0.6918 -0.6743 -0.5522 -0.4220 -0.2417 -0.0282 0.1497 0.2691 0.3188 0.3696 0.4069 0.3272 0.1412 -0.0242 -0.1544 -0.3740 -0.5847 -0.6948 - S E 81.00 -0.7441 -0.6125 -0.5572 -0.5595 -0.5949 -0.6580 -0.7281 -0.7000 -0.5771 -0.4500 -0.2689 -0.0479 0.1423 0.2699 0.3231 0.3784 0.4240 0.3578 0.1851 0.0201 -0.1179 -0.3596 -0.6051 -0.7251 - S E 80.00 -0.6161 -0.6488 -0.6369 -0.6123 -0.6411 -0.6913 -0.7009 -0.6498 -0.5539 -0.4352 -0.2676 -0.0664 0.1166 0.2368 0.2964 0.3492 0.3867 0.3595 0.2576 0.1197 -0.0406 -0.2662 -0.4982 -0.5923 - S E 79.00 -0.7910 -0.7624 -0.7123 -0.6865 -0.7037 -0.7234 -0.7121 -0.6343 -0.5307 -0.4129 -0.2581 -0.0783 0.0893 0.2022 0.2774 0.3563 0.4170 0.4051 0.3006 0.1474 -0.0190 -0.2612 -0.5681 -0.7365 - S E 78.00 -0.8694 -0.8466 -0.7683 -0.7314 -0.7334 -0.7224 -0.6798 -0.5938 -0.5033 -0.3910 -0.2452 -0.0872 0.0584 0.1637 0.2478 0.3367 0.4103 0.4198 0.3365 0.1932 0.0278 -0.2186 -0.5737 -0.7645 - S E 77.00 -0.7545 -0.8839 -0.8045 -0.7490 -0.7353 -0.6927 -0.6070 -0.5304 -0.4729 -0.3688 -0.2281 -0.0936 0.0229 0.1198 0.2090 0.2939 0.3693 0.4049 0.3660 0.2595 0.1154 -0.0848 -0.2559 -0.4407 - S E 76.00 -0.6278 -0.8561 -0.8041 -0.7564 -0.7392 -0.6725 -0.5613 -0.4855 -0.4425 -0.3495 -0.2206 -0.1028 -0.0025 0.0908 0.1814 0.2607 0.3359 0.3902 0.3834 0.3152 0.2321 0.0988 -0.0455 -0.2229 - S E 75.00 -0.5508 -0.7858 -0.7658 -0.7559 -0.7456 -0.6600 -0.5367 -0.4555 -0.4127 -0.3324 -0.2208 -0.1145 -0.0201 0.0743 0.1644 0.2356 0.3072 0.3745 0.3905 0.3534 0.3079 0.2004 0.0714 -0.1256 - S E 74.00 -0.4661 -0.6869 -0.6781 -0.7048 -0.7068 -0.6221 -0.5079 -0.4302 -0.3880 -0.3161 -0.2170 -0.1204 -0.0317 0.0617 0.1501 0.2153 0.2832 0.3619 0.3986 0.3779 0.3448 0.2733 0.1819 -0.0136 - S E 73.00 -0.3142 -0.5549 -0.5625 -0.6148 -0.6299 -0.5648 -0.4772 -0.4092 -0.3665 -0.3002 -0.2102 -0.1217 -0.0386 0.0519 0.1373 0.1989 0.2646 0.3521 0.4080 0.3943 0.3692 0.3262 0.2677 0.1147 - S E 72.00 -0.1095 -0.4076 -0.4504 -0.5079 -0.5293 -0.4943 -0.4464 -0.3923 -0.3474 -0.2845 -0.2011 -0.1195 -0.0415 0.0446 0.1262 0.1858 0.2478 0.3447 0.4184 0.4059 0.3848 0.3582 0.3187 0.2126 - S E 71.00 0.0121 -0.2999 -0.3541 -0.3962 -0.4104 -0.4130 -0.4164 -0.3791 -0.3299 -0.2685 -0.1900 -0.1143 -0.0412 0.0393 0.1160 0.1751 0.2302 0.3365 0.4318 0.4150 0.3954 0.3852 0.3629 0.2910 - S E 70.00 0.1192 -0.2178 -0.2727 -0.2921 -0.2890 -0.3265 -0.3888 -0.3701 -0.3134 -0.2518 -0.1770 -0.1064 -0.0379 0.0357 0.1068 0.1672 0.2129 0.3263 0.4492 0.4216 0.4017 0.4137 0.4241 0.3956 - S E 69.00 0.2914 -0.0554 -0.1672 -0.2107 -0.2123 -0.2659 -0.3574 -0.3515 -0.2932 -0.2341 -0.1640 -0.0988 -0.0361 0.0303 0.0957 0.1543 0.1951 0.3132 0.4606 0.4380 0.4203 0.4529 0.4999 0.5155 - S E 68.00 0.4794 0.1334 -0.0593 -0.1440 -0.1596 -0.2217 -0.3199 -0.3236 -0.2694 -0.2155 -0.1513 -0.0914 -0.0355 0.0232 0.0826 0.1365 0.1768 0.2962 0.4652 0.4660 0.4522 0.4966 0.5620 0.6170 - S E 67.00 0.6739 0.3370 0.0497 -0.0830 -0.1195 -0.1891 -0.2747 -0.2861 -0.2419 -0.1960 -0.1386 -0.0841 -0.0361 0.0145 0.0677 0.1142 0.1590 0.2758 0.4610 0.5098 0.5005 0.5490 0.6279 0.7227 - S E 66.00 0.8954 0.5698 0.1639 -0.0224 -0.0866 -0.1661 -0.2186 -0.2378 -0.2110 -0.1755 -0.1262 -0.0768 -0.0377 0.0041 0.0510 0.0873 0.1421 0.2512 0.4404 0.5769 0.5686 0.6189 0.7136 0.8458 - S E 65.00 1.0441 0.7193 0.2372 0.0208 -0.0600 -0.1438 -0.1703 -0.1954 -0.1805 -0.1527 -0.1114 -0.0681 -0.0370 -0.0028 0.0379 0.0665 0.1252 0.2249 0.4100 0.6297 0.6233 0.6761 0.7836 0.9372 - S E 64.00 1.1491 0.8179 0.2840 0.0510 -0.0407 -0.1227 -0.1332 -0.1597 -0.1506 -0.1280 -0.0946 -0.0581 -0.0340 -0.0065 0.0281 0.0512 0.1090 0.1980 0.3747 0.6614 0.6693 0.7195 0.8345 0.9999 - S E 63.00 1.1939 0.8607 0.3085 0.0608 -0.0400 -0.1063 -0.1085 -0.1304 -0.1213 -0.1014 -0.0758 -0.0470 -0.0290 -0.0073 0.0215 0.0410 0.0936 0.1705 0.3316 0.6501 0.6866 0.7382 0.8621 1.0245 - S E 62.00 1.1059 0.7895 0.2939 0.0333 -0.0720 -0.0958 -0.0970 -0.1074 -0.0923 -0.0729 -0.0553 -0.0348 -0.0223 -0.0055 0.0178 0.0357 0.0791 0.1419 0.2757 0.5762 0.6529 0.7124 0.8491 0.9767 - S E 61.00 1.0007 0.7122 0.2761 0.0044 -0.0941 -0.0822 -0.0822 -0.0852 -0.0674 -0.0499 -0.0386 -0.0246 -0.0164 -0.0040 0.0142 0.0296 0.0639 0.1131 0.2197 0.4849 0.5955 0.6588 0.8071 0.8963 - S E 60.00 0.8123 0.6056 0.2555 -0.0218 -0.1006 -0.0650 -0.0645 -0.0632 -0.0462 -0.0318 -0.0251 -0.0162 -0.0113 -0.0027 0.0107 0.0228 0.0483 0.0846 0.1653 0.3837 0.5064 0.5651 0.7189 0.7489 - S E 59.00 0.5880 0.4530 0.2119 -0.0338 -0.0848 -0.0446 -0.0441 -0.0416 -0.0285 -0.0182 -0.0147 -0.0096 -0.0070 -0.0016 0.0071 0.0155 0.0324 0.0564 0.1119 0.2731 0.3869 0.4369 0.5788 0.5644 - S E 58.00 0.3520 0.2502 0.1144 -0.0189 -0.0424 -0.0215 -0.0214 -0.0202 -0.0138 -0.0089 -0.0071 -0.0047 -0.0034 -0.0008 0.0035 0.0077 0.0161 0.0286 0.0589 0.1466 0.2208 0.2669 0.3591 0.3430 - S E 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -ssbh1.pot - SOUTHERN, SUMMER H0 COEFFICIENT (FREE PARAMETER) FOR BZ < 0 - S S 90.00 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 0.0941 - S S 89.00 0.3978 0.5058 0.5860 0.6284 0.6272 0.5818 0.5007 0.3944 0.2706 0.1370 0.0036 -0.1214 -0.2311 -0.3180 -0.3754 -0.4001 -0.3928 -0.3568 -0.2952 -0.2100 -0.1056 0.0140 0.1430 0.2737 - S S 88.00 0.6768 0.9172 1.1133 1.2309 1.2273 1.0982 0.8955 0.6720 0.4285 0.1637 -0.0960 -0.3456 -0.5761 -0.7519 -0.8527 -0.8853 -0.8587 -0.7854 -0.6748 -0.5176 -0.3180 -0.0917 0.1558 0.4171 - S S 87.00 0.9344 1.3149 1.6411 1.8503 1.8652 1.6697 1.3560 1.0095 0.6293 0.2131 -0.1905 -0.5789 -0.9404 -1.2109 -1.3587 -1.4009 -1.3547 -1.2394 -1.0758 -0.8410 -0.5429 -0.2102 0.1502 0.5376 - S S 86.00 1.1755 1.6994 2.1565 2.4660 2.5215 2.2944 1.8960 1.4190 0.8700 0.2779 -0.2893 -0.8353 -1.3335 -1.6989 -1.8977 -1.9509 -1.8815 -1.7221 -1.4973 -1.1713 -0.7634 -0.3203 0.1432 0.6427 - S S 85.00 1.4045 2.0778 2.6529 3.0515 3.1583 2.9725 2.5482 1.9210 1.1407 0.3551 -0.3941 -1.1265 -1.7555 -2.2049 -2.4665 -2.5389 -2.4440 -2.2447 -1.9380 -1.5090 -0.9750 -0.4084 0.1452 0.7300 - S S 84.00 1.6711 2.4927 3.1896 3.6758 3.8212 3.6332 3.1611 2.4144 1.4455 0.4535 -0.4977 -1.4153 -2.1868 -2.7227 -3.0323 -3.1281 -3.0255 -2.7933 -2.4163 -1.8834 -1.2256 -0.5337 0.1387 0.8473 - S S 83.00 1.9836 2.9440 3.7601 4.3266 4.4934 4.2759 3.7526 2.9075 1.7960 0.5742 -0.6084 -1.7083 -2.6258 -3.2478 -3.5954 -3.7157 -3.6343 -3.3773 -2.9368 -2.2953 -1.5156 -0.6957 0.1266 1.0051 - S S 82.00 2.3494 3.4331 4.3661 5.0012 5.1612 4.8958 4.3168 3.4081 2.2120 0.7249 -0.7376 -2.0073 -3.0751 -3.7862 -4.1502 -4.3025 -4.2728 -4.0009 -3.4948 -2.7473 -1.8460 -0.9032 0.1093 1.2197 - S S 81.00 2.6609 3.8667 4.8809 5.5650 5.7597 5.4861 4.8261 3.7967 2.4494 0.7789 -0.8530 -2.2459 -3.4157 -4.2221 -4.6634 -4.8538 -4.8182 -4.5235 -3.9681 -3.1321 -2.1190 -1.0482 0.0971 1.3663 - S S 80.00 2.9270 4.2486 5.3069 6.0191 6.2889 6.0527 5.2899 4.0864 2.5291 0.7473 -0.9600 -2.4317 -3.6525 -4.5623 -5.1429 -5.3803 -5.2846 -4.9531 -4.3627 -3.4569 -2.3412 -1.1307 0.0941 1.4487 - S S 79.00 3.2366 4.6588 5.7810 6.5317 6.8101 6.5482 5.6907 4.3989 2.7601 0.8047 -1.0816 -2.6578 -3.9413 -4.9036 -5.5721 -5.8872 -5.8115 -5.4515 -4.8051 -3.8370 -2.6433 -1.2925 0.1045 1.6210 - S S 78.00 3.4753 4.9637 6.1341 6.8977 7.1392 6.7722 5.7854 4.3992 2.7394 0.7825 -1.1084 -2.6721 -3.9822 -5.0196 -5.7811 -6.1869 -6.1641 -5.8222 -5.1901 -4.1676 -2.8286 -1.4039 0.0970 1.7529 - S S 77.00 3.6457 5.1650 6.3693 7.1277 7.2883 6.7434 5.5988 4.1109 2.4923 0.6916 -1.0524 -2.4902 -3.7965 -4.9312 -5.7862 -6.2954 -6.3575 -6.0695 -5.5199 -4.5092 -3.0112 -1.4877 0.0774 1.8457 - S S 76.00 3.7197 5.2798 6.5125 7.2502 7.3108 6.5932 5.2715 3.6564 2.0579 0.4696 -1.0254 -2.2806 -3.5036 -4.6489 -5.5580 -6.1610 -6.3243 -6.1313 -5.7040 -4.8292 -3.3706 -1.7317 -0.0324 1.8453 - S S 75.00 3.7150 5.3388 6.5847 7.2737 7.2177 6.3339 4.8171 3.0393 1.4432 0.1277 -1.0151 -2.0375 -3.1072 -4.1880 -5.1171 -5.8033 -6.0811 -6.0141 -5.7416 -5.0916 -3.7968 -2.0752 -0.2028 1.7560 - S S 74.00 3.6351 5.2942 6.5262 7.1128 6.9153 5.8861 4.2775 2.4618 0.9357 -0.1372 -0.9911 -1.8083 -2.7289 -3.7457 -4.6994 -5.4031 -5.7306 -5.7640 -5.6358 -5.1805 -4.0369 -2.3215 -0.3581 1.6422 - S S 73.00 3.5042 5.1502 6.3409 6.7656 6.4038 5.3073 3.6774 1.9018 0.5122 -0.3314 -0.9517 -1.5881 -2.3581 -3.2878 -4.2396 -4.9265 -5.2661 -5.4024 -5.4196 -5.1305 -4.1610 -2.5235 -0.5317 1.5014 - S S 72.00 3.3311 4.8836 5.9794 6.2405 5.7230 4.5946 3.0017 1.3578 0.1755 -0.4624 -0.8940 -1.3728 -1.9946 -2.7872 -3.6560 -4.3230 -4.6902 -4.9737 -5.1583 -4.9688 -4.1934 -2.6892 -0.6815 1.3543 - S S 71.00 3.1263 4.5295 5.4813 5.5658 4.8815 3.7612 2.2664 0.8416 -0.0900 -0.5435 -0.8190 -1.1628 -1.6371 -2.2701 -3.0370 -3.7127 -4.1662 -4.5078 -4.8011 -4.7059 -4.1132 -2.8146 -0.8271 1.1981 - S S 70.00 2.8780 4.1238 4.9350 4.8350 4.0191 2.8906 1.4923 0.3420 -0.2997 -0.5778 -0.7292 -0.9590 -1.2800 -1.7332 -2.3828 -3.0571 -3.5910 -3.9180 -4.2386 -4.3356 -3.9685 -2.9034 -0.9888 1.0077 - S S 69.00 2.3786 3.5018 4.2468 4.1336 3.3662 2.2778 0.9771 0.0160 -0.4277 -0.5680 -0.6231 -0.7568 -0.9519 -1.2643 -1.7965 -2.4148 -2.9632 -3.2781 -3.6387 -3.9948 -3.8154 -2.9132 -1.1892 0.6750 - S S 68.00 1.6977 2.6995 3.4097 3.4297 2.8188 1.8282 0.6550 -0.1504 -0.4689 -0.5167 -0.5045 -0.5588 -0.6515 -0.8515 -1.2594 -1.8024 -2.3530 -2.7215 -3.2102 -3.7268 -3.6839 -2.9060 -1.4281 0.2473 - S S 67.00 0.9107 1.7636 2.4489 2.7627 2.3819 1.5132 0.4883 -0.1780 -0.4288 -0.4232 -0.3577 -0.3542 -0.3761 -0.4936 -0.7776 -1.2051 -1.7156 -2.1578 -2.7928 -3.4129 -3.5180 -2.9160 -1.6797 -0.2292 - S S 66.00 0.0863 0.8737 1.5975 2.1634 2.0221 1.3075 0.4501 -0.0898 -0.3089 -0.2786 -0.1708 -0.1382 -0.1218 -0.1902 -0.3513 -0.6245 -1.0195 -1.4457 -2.1967 -2.9803 -3.2990 -2.9333 -1.9653 -0.7558 - S S 65.00 -0.3997 0.3687 1.1181 1.7272 1.7544 1.1431 0.4004 -0.0470 -0.2267 -0.1781 -0.0476 0.0076 0.0515 0.0223 -0.0420 -0.1773 -0.4291 -0.8450 -1.6832 -2.6139 -3.1046 -2.8951 -2.1389 -1.0936 - S S 64.00 -0.6972 0.0642 0.8230 1.4118 1.5292 0.9847 0.3301 -0.0435 -0.1841 -0.1212 0.0170 0.0880 0.1494 0.1486 0.1555 0.1342 -0.0029 -0.3653 -1.2124 -2.2301 -2.8570 -2.7919 -2.2214 -1.3017 - S S 63.00 -0.8533 -0.1082 0.6377 1.1819 1.2982 0.8076 0.2275 -0.0902 -0.1850 -0.1073 0.0280 0.1071 0.1759 0.1921 0.2475 0.3130 0.2792 0.0017 -0.7907 -1.8412 -2.5695 -2.5820 -2.1810 -1.3983 - S S 62.00 -0.8559 -0.1526 0.5413 1.0024 1.0613 0.6211 0.0975 -0.1928 -0.2295 -0.1354 -0.0136 0.0672 0.1339 0.1560 0.2367 0.3631 0.4246 0.2244 -0.4758 -1.4202 -2.1431 -2.1934 -1.9495 -1.3453 - S S 61.00 -0.8323 -0.1911 0.4190 0.7938 0.8076 0.4396 0.0010 -0.2460 -0.2410 -0.1430 -0.0380 0.0374 0.0976 0.1215 0.2125 0.3682 0.4867 0.3584 -0.2062 -0.9543 -1.5478 -1.7274 -1.7016 -1.2640 - S S 60.00 -0.7720 -0.2133 0.2890 0.5688 0.5500 0.2812 -0.0540 -0.2471 -0.2196 -0.1304 -0.0465 0.0171 0.0668 0.0886 0.1748 0.3292 0.4667 0.3959 -0.0209 -0.5613 -0.9833 -1.2481 -1.4195 -1.1347 - S S 59.00 -0.6323 -0.1982 0.1722 0.3493 0.3201 0.1578 -0.0649 -0.1970 -0.1660 -0.0984 -0.0399 0.0058 0.0411 0.0575 0.1244 0.2472 0.3648 0.3329 0.0598 -0.2848 -0.5533 -0.8053 -1.0816 -0.9119 - S S 58.00 -0.3575 -0.1078 0.0944 0.1795 0.1593 0.0773 -0.0318 -0.0960 -0.0812 -0.0481 -0.0195 0.0028 0.0200 0.0284 0.0616 0.1221 0.1806 0.1647 0.0302 -0.1433 -0.2830 -0.4405 -0.6376 -0.5278 - S S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -ssbh2.pot - SOUTHERN, SUMMER H0 COEFFICIENT (FREE PARAMETER) FOR BZ > 0 - S S 90.00 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 0.2989 - S S 89.00 0.5875 0.6556 0.6983 0.7106 0.6911 0.6404 0.5642 0.4683 0.3599 0.2484 0.1449 0.0577 -0.0089 -0.0535 -0.0745 -0.0721 -0.0484 -0.0054 0.0540 0.1273 0.2122 0.3069 0.4061 0.5019 - S S 88.00 0.8689 1.0229 1.1253 1.1625 1.1229 1.0104 0.8506 0.6493 0.4165 0.1796 -0.0375 -0.2069 -0.3252 -0.4037 -0.4316 -0.4162 -0.3690 -0.2863 -0.1772 -0.0526 0.0975 0.2826 0.4844 0.6836 - S S 87.00 1.1511 1.4042 1.5789 1.6505 1.6004 1.4323 1.1931 0.8806 0.5108 0.1316 -0.2189 -0.4889 -0.6731 -0.7940 -0.8289 -0.7940 -0.7179 -0.5905 -0.4293 -0.2531 -0.0391 0.2375 0.5455 0.8551 - S S 86.00 1.4393 1.8017 2.0550 2.1661 2.1162 1.9046 1.5895 1.1626 0.6442 0.1075 -0.3936 -0.7887 -1.0614 -1.2368 -1.2780 -1.2118 -1.0946 -0.9184 -0.7025 -0.4659 -0.1819 0.1836 0.5968 1.0223 - S S 85.00 1.7366 2.2189 2.5529 2.7006 2.6550 2.4315 2.0430 1.4969 0.8157 0.1097 -0.5496 -1.0998 -1.4962 -1.7370 -1.7845 -1.6736 -1.4971 -1.2740 -0.9994 -0.6882 -0.3166 0.1248 0.6367 1.1857 - S S 84.00 2.0200 2.6199 3.0412 3.2294 3.1812 2.9235 2.4662 1.8186 0.9912 0.1184 -0.6908 -1.3557 -1.8413 -2.1439 -2.2163 -2.1038 -1.9076 -1.6550 -1.3402 -0.9779 -0.5318 0.0115 0.6508 1.3374 - S S 83.00 2.2931 3.0013 3.5204 3.7559 3.6950 3.3851 2.8635 2.1281 1.1783 0.1331 -0.8204 -1.5605 -2.1064 -2.4682 -2.5860 -2.5105 -2.3321 -2.0653 -1.7330 -1.3391 -0.8241 -0.1481 0.6467 1.4877 - S S 82.00 2.5587 3.3591 3.9919 4.2882 4.1929 3.8137 3.2270 2.4301 1.3894 0.1553 -0.9498 -1.7134 -2.2943 -2.7161 -2.8953 -2.9074 -2.7764 -2.5070 -2.1772 -1.7811 -1.1998 -0.3533 0.6283 1.6489 - S S 81.00 2.7614 3.6901 4.4087 4.7695 4.7010 4.2820 3.6000 2.6985 1.5800 0.2509 -0.9694 -1.8190 -2.4638 -2.9612 -3.2318 -3.3189 -3.2270 -2.9777 -2.6412 -2.1958 -1.5312 -0.5710 0.5406 1.7022 - S S 80.00 2.9013 3.9949 4.7677 5.2034 5.2232 4.7900 3.9827 2.9258 1.7468 0.4184 -0.8853 -1.8817 -2.6121 -3.1949 -3.5920 -3.7492 -3.6909 -3.4804 -3.1318 -2.5904 -1.8194 -0.7962 0.3923 1.6435 - S S 79.00 3.0809 4.3091 5.1537 5.6309 5.6450 5.1669 4.2814 3.1203 1.9055 0.6355 -0.7251 -1.9259 -2.7850 -3.4443 -3.9513 -4.1737 -4.1289 -3.9293 -3.5893 -3.0259 -2.1703 -1.0401 0.2890 1.6704 - S S 78.00 3.2300 4.5832 5.4831 5.9652 5.9243 5.3564 4.3726 3.1171 1.8773 0.6793 -0.6077 -1.8441 -2.7794 -3.5048 -4.1073 -4.4100 -4.4411 -4.3040 -3.9886 -3.4155 -2.5159 -1.2919 0.1600 1.6703 - S S 77.00 3.3507 4.8212 5.7574 6.2135 6.0668 5.3710 4.2728 2.9278 1.6736 0.5708 -0.5162 -1.6439 -2.6182 -3.3940 -4.0776 -4.4726 -4.6372 -4.6104 -4.3317 -3.7633 -2.8605 -1.5543 0.0089 1.6407 - S S 76.00 3.4116 4.9836 5.9765 6.4402 6.2001 5.3441 4.0966 2.6684 1.3997 0.3752 -0.5487 -1.5456 -2.4800 -3.2495 -3.9322 -4.3728 -4.6319 -4.7301 -4.5602 -4.0455 -3.1702 -1.8532 -0.2130 1.5553 - S S 75.00 3.4263 5.0678 6.1404 6.6423 6.3177 5.2717 3.8445 2.3490 1.0662 0.1006 -0.6870 -1.5280 -2.3583 -3.0763 -3.6852 -4.1241 -4.4391 -4.6775 -4.6842 -4.2463 -3.4025 -2.1544 -0.4891 1.4334 - S S 74.00 3.3952 5.0791 6.1727 6.6617 6.2475 5.0563 3.5302 2.0328 0.7798 -0.1118 -0.7759 -1.4808 -2.2143 -2.8799 -3.4320 -3.8588 -4.2137 -4.5604 -4.7014 -4.3290 -3.5179 -2.3583 -0.7242 1.2839 - S S 73.00 3.2962 5.0102 6.0741 6.5014 5.9954 4.7154 3.1644 1.7180 0.5301 -0.2712 -0.8217 -1.4059 -2.0477 -2.6570 -3.1566 -3.5754 -3.9698 -4.3888 -4.6262 -4.3209 -3.5474 -2.4554 -0.8853 1.1122 - S S 72.00 3.1407 4.8668 5.8543 6.1820 5.5892 4.2703 2.7581 1.4034 0.3134 -0.3841 -0.8291 -1.3018 -1.8569 -2.4109 -2.8658 -3.2725 -3.6940 -4.1667 -4.4742 -4.2365 -3.5083 -2.4506 -0.9199 0.9810 - S S 71.00 3.0132 4.6878 5.5375 5.7300 5.0501 3.7392 2.3132 1.0853 0.1269 -0.4550 -0.8012 -1.1684 -1.6393 -2.1380 -2.5556 -2.9363 -3.3650 -3.8865 -4.2606 -4.0949 -3.4255 -2.4007 -0.8955 0.9143 - S S 70.00 2.9054 4.4983 5.1618 5.1818 4.4213 3.1523 1.8423 0.7621 -0.0354 -0.4863 -0.7389 -1.0057 -1.3950 -1.8392 -2.2266 -2.5723 -2.9957 -3.5454 -3.9667 -3.8982 -3.3026 -2.3287 -0.8828 0.8287 - S S 69.00 2.5448 4.0297 4.6239 4.6049 3.8670 2.6629 1.4563 0.5107 -0.1405 -0.4799 -0.6535 -0.8350 -1.1479 -1.5308 -1.8771 -2.1866 -2.5925 -3.1300 -3.5698 -3.6256 -3.1423 -2.2396 -0.9190 0.6291 - S S 68.00 2.0413 3.4127 4.0164 4.0371 3.3619 2.2296 1.1284 0.3267 -0.1858 -0.4354 -0.5473 -0.6573 -0.8964 -1.2113 -1.5061 -1.7819 -2.1557 -2.6325 -3.0608 -3.2596 -2.9422 -2.1445 -0.9503 0.4132 - S S 67.00 1.4565 2.7066 3.3626 3.4519 2.8685 1.8290 0.8540 0.2099 -0.1703 -0.3532 -0.4220 -0.4749 -0.6407 -0.8801 -1.1151 -1.3595 -1.6935 -2.0516 -2.4167 -2.7701 -2.6912 -2.0537 -1.0183 0.1443 - S S 66.00 0.7543 1.8877 2.6477 2.8155 2.3512 1.4399 0.6294 0.1651 -0.0907 -0.2323 -0.2784 -0.2885 -0.3810 -0.5357 -0.6990 -0.9198 -1.2091 -1.3802 -1.5816 -2.1097 -2.3759 -1.9551 -1.1744 -0.2406 - S S 65.00 0.2529 1.3015 2.1161 2.2833 1.8751 1.0806 0.4196 0.1052 -0.0514 -0.1501 -0.1724 -0.1495 -0.1884 -0.2756 -0.3796 -0.5749 -0.8138 -0.8428 -0.9023 -1.5343 -2.0703 -1.8274 -1.2669 -0.5182 - S S 64.00 -0.1342 0.8506 1.6881 1.7997 1.4136 0.7618 0.2392 0.0318 -0.0501 -0.1048 -0.1024 -0.0566 -0.0588 -0.0946 -0.1541 -0.3197 -0.5103 -0.4485 -0.4188 -1.0478 -1.7204 -1.6460 -1.2807 -0.7037 - S S 63.00 -0.4172 0.5065 1.3392 1.3851 1.0282 0.5065 0.0911 -0.0537 -0.0841 -0.0935 -0.0658 -0.0077 0.0120 0.0116 -0.0162 -0.1540 -0.2954 -0.1894 -0.1278 -0.6771 -1.3405 -1.3764 -1.1810 -0.7785 - S S 62.00 -0.4496 0.3873 1.1381 1.1030 0.7635 0.3331 -0.0210 -0.1505 -0.1516 -0.1138 -0.0603 -0.0007 0.0268 0.0467 0.0371 -0.0750 -0.1631 -0.0664 -0.0385 -0.4546 -0.9725 -0.9884 -0.8795 -0.6342 - S S 61.00 -0.4839 0.2519 0.9151 0.8252 0.5317 0.1973 -0.0908 -0.2000 -0.1816 -0.1178 -0.0524 0.0039 0.0341 0.0652 0.0677 -0.0192 -0.0682 0.0172 0.0257 -0.2732 -0.6432 -0.6115 -0.5493 -0.4726 - S S 60.00 -0.4850 0.1054 0.6596 0.5654 0.3407 0.1003 -0.1188 -0.2034 -0.1764 -0.1061 -0.0420 0.0061 0.0340 0.0675 0.0767 0.0132 -0.0090 0.0615 0.0604 -0.1401 -0.3766 -0.3048 -0.2664 -0.3061 - S S 59.00 -0.4107 0.0105 0.4110 0.3413 0.1947 0.0412 -0.1055 -0.1630 -0.1379 -0.0794 -0.0291 0.0057 0.0269 0.0544 0.0645 0.0232 0.0161 0.0671 0.0633 -0.0564 -0.1907 -0.1119 -0.0866 -0.1776 - S S 58.00 -0.2282 0.0061 0.2052 0.1685 0.0959 0.0201 -0.0516 -0.0795 -0.0674 -0.0388 -0.0142 0.0027 0.0131 0.0266 0.0316 0.0117 0.0083 0.0331 0.0313 -0.0281 -0.0958 -0.0599 -0.0496 -0.1037 - S S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -ssby3.pot - SOUTHERN, SUMMER BY COEFFICIENT FOR BY < 0 AND BZ < 0 - S S 90.00 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 1.3078 - S S 89.00 1.2850 1.2918 1.2967 1.2988 1.2984 1.2972 1.2992 1.3080 1.3219 1.3371 1.3498 1.3566 1.3569 1.3514 1.3411 1.3278 1.3132 1.2990 1.2868 1.2776 1.2720 1.2707 1.2731 1.2782 - S S 88.00 1.2477 1.2718 1.2865 1.2869 1.2735 1.2439 1.2210 1.2464 1.2952 1.3437 1.3867 1.4033 1.3988 1.3816 1.3551 1.3221 1.2855 1.2530 1.2284 1.2087 1.1963 1.1978 1.2102 1.2261 - S S 87.00 1.1991 1.2439 1.2759 1.2877 1.2798 1.2401 1.2034 1.2423 1.3077 1.3685 1.4285 1.4484 1.4370 1.4085 1.3670 1.3142 1.2539 1.2013 1.1621 1.1293 1.1077 1.1111 1.1344 1.1618 - S S 86.00 1.1333 1.1955 1.2477 1.2839 1.3042 1.2889 1.2693 1.3102 1.3539 1.3960 1.4560 1.4779 1.4630 1.4270 1.3739 1.3014 1.2177 1.1437 1.0864 1.0387 1.0056 1.0090 1.0435 1.0832 - S S 85.00 1.0493 1.1161 1.1863 1.2602 1.3283 1.3876 1.4552 1.4711 1.4250 1.4130 1.4515 1.4844 1.4748 1.4363 1.3782 1.2838 1.1780 1.0821 0.9990 0.9345 0.8914 0.8907 0.9352 0.9912 - S S 84.00 0.9715 1.0478 1.1342 1.2292 1.3206 1.4150 1.5159 1.5093 1.4154 1.3706 1.3938 1.4342 1.4323 1.3993 1.3414 1.2338 1.1137 1.0041 0.9058 0.8301 0.7806 0.7851 0.8424 0.9070 - S S 83.00 0.8972 0.9854 1.0872 1.1892 1.2792 1.3841 1.4835 1.4472 1.3394 1.2795 1.2836 1.3304 1.3418 1.3226 1.2693 1.1542 1.0271 0.9111 0.8062 0.7240 0.6719 0.6925 0.7646 0.8299 - S S 82.00 0.8243 0.9269 1.0469 1.1412 1.2055 1.3063 1.3693 1.2872 1.2102 1.1534 1.1227 1.1741 1.2075 1.2105 1.1641 1.0464 0.9205 0.8046 0.7010 0.6141 0.5632 0.6156 0.7043 0.7568 - S S 81.00 0.7385 0.8405 0.9610 1.0533 1.1092 1.1918 1.2275 1.1341 1.0589 1.0074 0.9845 1.0302 1.0665 1.0871 1.0578 0.9466 0.8148 0.6953 0.5950 0.5109 0.4621 0.5187 0.6146 0.6723 - S S 80.00 0.6410 0.7281 0.8322 0.9279 0.9952 1.0436 1.0500 0.9841 0.8872 0.8434 0.8698 0.8941 0.9147 0.9507 0.9488 0.8543 0.7080 0.5818 0.4883 0.4148 0.3703 0.4017 0.4934 0.5773 - S S 79.00 0.5519 0.6330 0.7338 0.8249 0.8816 0.9199 0.9183 0.8396 0.7334 0.6814 0.7050 0.7170 0.7249 0.7784 0.8047 0.7316 0.5992 0.4833 0.3966 0.3195 0.2596 0.2894 0.3965 0.4922 - S S 78.00 0.4594 0.5363 0.6383 0.7259 0.7691 0.7994 0.7933 0.6913 0.5563 0.4785 0.4954 0.5132 0.5267 0.6080 0.6726 0.6290 0.5166 0.4148 0.3351 0.2535 0.1895 0.2062 0.3110 0.4093 - S S 77.00 0.3644 0.4372 0.5455 0.6311 0.6568 0.6813 0.6749 0.5394 0.3584 0.2384 0.2451 0.2847 0.3184 0.4369 0.5501 0.5448 0.4589 0.3749 0.3041 0.2158 0.1358 0.1357 0.2332 0.3268 - S S 76.00 0.2805 0.3471 0.4469 0.5171 0.5197 0.5316 0.5244 0.3832 0.2019 0.0769 0.0636 0.0998 0.1415 0.2707 0.4132 0.4548 0.4044 0.3303 0.2632 0.1844 0.0942 0.0667 0.1390 0.2337 - S S 75.00 0.2013 0.2654 0.3486 0.3907 0.3622 0.3508 0.3426 0.2214 0.0823 -0.0143 -0.0584 -0.0475 -0.0068 0.1083 0.2620 0.3606 0.3554 0.2811 0.2124 0.1616 0.0775 0.0088 0.0353 0.1312 - S S 74.00 0.1321 0.1871 0.2564 0.2733 0.2178 0.1985 0.2028 0.1035 -0.0033 -0.0793 -0.1407 -0.1480 -0.1124 -0.0051 0.1596 0.2828 0.3030 0.2367 0.1719 0.1389 0.0580 -0.0333 -0.0320 0.0585 - S S 73.00 0.0776 0.1103 0.1599 0.1554 0.0859 0.0751 0.0979 0.0194 -0.0589 -0.1183 -0.1873 -0.2075 -0.1792 -0.0827 0.0821 0.2128 0.2477 0.1974 0.1420 0.1183 0.0389 -0.0633 -0.0730 0.0128 - S S 72.00 0.0364 0.0298 0.0482 0.0386 -0.0296 -0.0284 0.0135 -0.0357 -0.0858 -0.1334 -0.2027 -0.2307 -0.2102 -0.1298 0.0167 0.1418 0.1888 0.1655 0.1220 0.0995 0.0199 -0.0806 -0.0863 -0.0084 - S S 71.00 0.0066 -0.0522 -0.0696 -0.0734 -0.1324 -0.1139 -0.0513 -0.0656 -0.0895 -0.1282 -0.1905 -0.2213 -0.2088 -0.1455 -0.0254 0.0826 0.1405 0.1414 0.1060 0.0817 0.0018 -0.0878 -0.0802 -0.0095 - S S 70.00 -0.0124 -0.1327 -0.1845 -0.1718 -0.2113 -0.1777 -0.0983 -0.0749 -0.0734 -0.1052 -0.1540 -0.1828 -0.1776 -0.1327 -0.0473 0.0283 0.0922 0.1204 0.0940 0.0643 -0.0144 -0.0864 -0.0542 0.0069 - S S 69.00 -0.0440 -0.1952 -0.2618 -0.2414 -0.2552 -0.2097 -0.1181 -0.0687 -0.0554 -0.0848 -0.1270 -0.1526 -0.1508 -0.1191 -0.0571 -0.0049 0.0572 0.1032 0.0806 0.0442 -0.0317 -0.0951 -0.0552 -0.0021 - S S 68.00 -0.0868 -0.2429 -0.3163 -0.2946 -0.2787 -0.2200 -0.1166 -0.0486 -0.0364 -0.0675 -0.1083 -0.1301 -0.1278 -0.1044 -0.0561 -0.0167 0.0397 0.0931 0.0698 0.0255 -0.0497 -0.1121 -0.0762 -0.0303 - S S 67.00 -0.1362 -0.2778 -0.3493 -0.3341 -0.2864 -0.2143 -0.0984 -0.0165 -0.0171 -0.0517 -0.0947 -0.1131 -0.1080 -0.0883 -0.0444 -0.0075 0.0379 0.0892 0.0607 0.0033 -0.0755 -0.1397 -0.1096 -0.0712 - S S 66.00 -0.1882 -0.2992 -0.3623 -0.3632 -0.2834 -0.1976 -0.0695 0.0268 0.0036 -0.0368 -0.0861 -0.1010 -0.0906 -0.0708 -0.0227 0.0231 0.0538 0.0895 0.0498 -0.0279 -0.1068 -0.1734 -0.1543 -0.1229 - S S 65.00 -0.2128 -0.2998 -0.3590 -0.3696 -0.2720 -0.1793 -0.0481 0.0553 0.0202 -0.0241 -0.0769 -0.0900 -0.0766 -0.0575 -0.0091 0.0400 0.0585 0.0820 0.0369 -0.0528 -0.1281 -0.1972 -0.1887 -0.1601 - S S 64.00 -0.2194 -0.2853 -0.3445 -0.3576 -0.2516 -0.1552 -0.0302 0.0703 0.0320 -0.0135 -0.0674 -0.0800 -0.0656 -0.0482 -0.0036 0.0438 0.0520 0.0690 0.0216 -0.0755 -0.1428 -0.2134 -0.2167 -0.1884 - S S 63.00 -0.2085 -0.2530 -0.3169 -0.3264 -0.2146 -0.1177 -0.0183 0.0649 0.0378 -0.0051 -0.0572 -0.0708 -0.0573 -0.0427 -0.0057 0.0350 0.0345 0.0471 0.0014 -0.0949 -0.1478 -0.2176 -0.2392 -0.2114 - S S 62.00 -0.1787 -0.1947 -0.2663 -0.2617 -0.1522 -0.0617 -0.0179 0.0338 0.0373 0.0009 -0.0464 -0.0625 -0.0518 -0.0407 -0.0154 0.0138 0.0060 0.0170 -0.0226 -0.1116 -0.1378 -0.2018 -0.2477 -0.2265 - S S 61.00 -0.1499 -0.1372 -0.2072 -0.1923 -0.0905 -0.0145 -0.0161 0.0115 0.0341 0.0046 -0.0363 -0.0527 -0.0444 -0.0365 -0.0203 -0.0005 -0.0125 -0.0038 -0.0382 -0.1180 -0.1174 -0.1768 -0.2475 -0.2315 - S S 60.00 -0.1180 -0.0821 -0.1462 -0.1245 -0.0375 0.0167 -0.0133 -0.0019 0.0285 0.0061 -0.0267 -0.0413 -0.0353 -0.0301 -0.0206 -0.0081 -0.0214 -0.0151 -0.0432 -0.1096 -0.0916 -0.1434 -0.2335 -0.2237 - S S 59.00 -0.0816 -0.0371 -0.0904 -0.0675 -0.0050 0.0267 -0.0095 -0.0067 0.0205 0.0054 -0.0175 -0.0284 -0.0245 -0.0214 -0.0165 -0.0095 -0.0207 -0.0167 -0.0367 -0.0847 -0.0634 -0.1032 -0.1963 -0.1912 - S S 58.00 -0.0457 -0.0207 -0.0489 -0.0347 -0.0025 0.0130 -0.0046 -0.0032 0.0099 0.0026 -0.0085 -0.0138 -0.0120 -0.0105 -0.0082 -0.0048 -0.0102 -0.0085 -0.0186 -0.0424 -0.0329 -0.0566 -0.1159 -0.1110 - S S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -ssby4.pot - SOUTHERN, SUMMER BY COEFFICIENT FOR BY < 0 AND BZ > 0 - S S 90.00 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 1.6331 - S S 89.00 1.5971 1.6100 1.6239 1.6378 1.6517 1.6651 1.6766 1.6847 1.6899 1.6923 1.6911 1.6856 1.6758 1.6618 1.6448 1.6270 1.6102 1.5957 1.5843 1.5768 1.5736 1.5744 1.5788 1.5864 - S S 88.00 1.5250 1.5541 1.5812 1.6045 1.6284 1.6580 1.6849 1.6950 1.7008 1.7099 1.7121 1.7048 1.6878 1.6585 1.6194 1.5794 1.5446 1.5170 1.4961 1.4817 1.4773 1.4818 1.4904 1.5033 - S S 87.00 1.4565 1.4986 1.5344 1.5607 1.5869 1.6258 1.6621 1.6698 1.6758 1.6953 1.7055 1.7015 1.6840 1.6462 1.5905 1.5318 1.4804 1.4407 1.4108 1.3910 1.3870 1.3960 1.4090 1.4261 - S S 86.00 1.3869 1.4371 1.4791 1.5055 1.5271 1.5666 1.6045 1.6070 1.6155 1.6495 1.6706 1.6723 1.6611 1.6235 1.5572 1.4835 1.4168 1.3633 1.3240 1.3008 1.2977 1.3104 1.3288 1.3511 - S S 85.00 1.3161 1.3638 1.4116 1.4392 1.4528 1.4805 1.5063 1.5039 1.5232 1.5745 1.6080 1.6144 1.6157 1.5901 1.5208 1.4368 1.3549 1.2823 1.2319 1.2100 1.2093 1.2199 1.2460 1.2788 - S S 84.00 1.2454 1.2922 1.3356 1.3548 1.3582 1.3777 1.3959 1.3862 1.4064 1.4646 1.5046 1.5135 1.5216 1.5098 1.4455 1.3552 1.2629 1.1824 1.1293 1.1091 1.1107 1.1239 1.1580 1.2009 - S S 83.00 1.1770 1.2217 1.2477 1.2503 1.2448 1.2577 1.2680 1.2552 1.2680 1.3207 1.3641 1.3721 1.3805 1.3859 1.3372 1.2438 1.1423 1.0644 1.0172 0.9991 1.0009 1.0208 1.0631 1.1180 - S S 82.00 1.1146 1.1540 1.1443 1.1210 1.1152 1.1206 1.1207 1.1132 1.1112 1.1420 1.1893 1.1945 1.1920 1.2182 1.2011 1.1057 0.9933 0.9294 0.8992 0.8800 0.8784 0.9100 0.9600 1.0275 - S S 81.00 1.0310 1.0673 1.0492 1.0109 0.9895 0.9818 0.9749 0.9535 0.9269 0.9316 0.9601 0.9672 0.9832 1.0356 1.0520 0.9800 0.8805 0.8275 0.8065 0.7948 0.7966 0.8321 0.8882 0.9508 - S S 80.00 0.9223 0.9600 0.9614 0.9174 0.8656 0.8390 0.8283 0.7785 0.7186 0.6911 0.6765 0.6944 0.7548 0.8354 0.8890 0.8653 0.8003 0.7567 0.7371 0.7415 0.7529 0.7856 0.8485 0.8875 - S S 79.00 0.8346 0.8670 0.8576 0.7968 0.7386 0.7113 0.6979 0.6313 0.5415 0.4958 0.4706 0.4863 0.5289 0.6171 0.7234 0.7304 0.6808 0.6576 0.6508 0.6633 0.6785 0.7088 0.7697 0.8031 - S S 78.00 0.7337 0.7603 0.7450 0.6736 0.6117 0.5811 0.5577 0.4787 0.3755 0.3259 0.2909 0.3008 0.3527 0.4557 0.5911 0.6282 0.6004 0.5896 0.5898 0.6029 0.6089 0.6369 0.6911 0.7132 - S S 77.00 0.6203 0.6387 0.6230 0.5464 0.4847 0.4497 0.4079 0.3198 0.2190 0.1792 0.1335 0.1336 0.2192 0.3436 0.4873 0.5561 0.5572 0.5507 0.5534 0.5598 0.5425 0.5697 0.6132 0.6171 - S S 76.00 0.5317 0.5422 0.5162 0.4320 0.3688 0.3241 0.2678 0.1901 0.1149 0.0899 0.0548 0.0576 0.1439 0.2586 0.3885 0.4717 0.4979 0.5025 0.5060 0.5012 0.4700 0.4902 0.5290 0.5326 - S S 75.00 0.4682 0.4706 0.4225 0.3301 0.2637 0.2034 0.1345 0.0869 0.0579 0.0512 0.0464 0.0619 0.1212 0.1987 0.2935 0.3756 0.4247 0.4461 0.4491 0.4298 0.3961 0.4024 0.4393 0.4606 - S S 74.00 0.4147 0.4045 0.3348 0.2333 0.1668 0.1054 0.0379 0.0147 0.0185 0.0265 0.0402 0.0612 0.1006 0.1512 0.2231 0.3040 0.3660 0.3974 0.4014 0.3765 0.3419 0.3339 0.3671 0.4021 - S S 73.00 0.3691 0.3433 0.2520 0.1398 0.0787 0.0298 -0.0261 -0.0317 -0.0056 0.0136 0.0368 0.0578 0.0821 0.1138 0.1714 0.2539 0.3235 0.3586 0.3633 0.3387 0.3035 0.2863 0.3144 0.3568 - S S 72.00 0.3315 0.2869 0.1742 0.0523 0.0008 -0.0256 -0.0630 -0.0561 -0.0158 0.0109 0.0362 0.0527 0.0656 0.0855 0.1373 0.2228 0.2941 0.3280 0.3348 0.3141 0.2798 0.2606 0.2857 0.3269 - S S 71.00 0.3057 0.2376 0.1024 -0.0293 -0.0693 -0.0645 -0.0786 -0.0623 -0.0133 0.0175 0.0385 0.0464 0.0507 0.0650 0.1185 0.2076 0.2739 0.3039 0.3141 0.2999 0.2670 0.2472 0.2709 0.3109 - S S 70.00 0.2910 0.1949 0.0373 -0.1039 -0.1299 -0.0886 -0.0755 -0.0521 0.0011 0.0334 0.0437 0.0389 0.0372 0.0515 0.1140 0.2084 0.2641 0.2850 0.2987 0.2952 0.2638 0.2431 0.2621 0.3044 - S S 69.00 0.2588 0.1548 0.0023 -0.1343 -0.1533 -0.0972 -0.0712 -0.0462 0.0090 0.0427 0.0457 0.0331 0.0279 0.0412 0.1028 0.1942 0.2452 0.2641 0.2811 0.2867 0.2573 0.2366 0.2508 0.2841 - S S 68.00 0.2157 0.1191 -0.0117 -0.1354 -0.1522 -0.0935 -0.0651 -0.0443 0.0103 0.0455 0.0445 0.0287 0.0224 0.0341 0.0857 0.1657 0.2174 0.2410 0.2610 0.2740 0.2476 0.2286 0.2408 0.2576 - S S 67.00 0.1662 0.0869 -0.0113 -0.1147 -0.1323 -0.0785 -0.0570 -0.0466 0.0050 0.0422 0.0403 0.0258 0.0208 0.0304 0.0628 0.1230 0.1807 0.2154 0.2374 0.2562 0.2341 0.2183 0.2300 0.2248 - S S 66.00 0.1089 0.0559 0.0008 -0.0741 -0.0936 -0.0514 -0.0462 -0.0531 -0.0072 0.0330 0.0330 0.0242 0.0228 0.0304 0.0339 0.0655 0.1352 0.1872 0.2083 0.2312 0.2165 0.2051 0.2164 0.1807 - S S 65.00 0.0694 0.0371 0.0115 -0.0419 -0.0615 -0.0280 -0.0331 -0.0506 -0.0114 0.0270 0.0277 0.0231 0.0244 0.0298 0.0143 0.0259 0.0986 0.1590 0.1797 0.2071 0.2005 0.1914 0.1993 0.1435 - S S 64.00 0.0423 0.0277 0.0230 -0.0146 -0.0349 -0.0099 -0.0183 -0.0386 -0.0079 0.0241 0.0243 0.0225 0.0255 0.0293 0.0038 0.0028 0.0710 0.1315 0.1531 0.1832 0.1849 0.1765 0.1784 0.1107 - S S 63.00 0.0307 0.0306 0.0365 0.0058 -0.0197 0.0005 -0.0020 -0.0170 0.0030 0.0239 0.0226 0.0225 0.0263 0.0289 0.0020 -0.0044 0.0518 0.1040 0.1281 0.1597 0.1721 0.1609 0.1490 0.0792 - S S 62.00 0.0476 0.0530 0.0513 0.0146 -0.0198 0.0013 0.0159 0.0144 0.0207 0.0259 0.0222 0.0231 0.0270 0.0287 0.0086 0.0041 0.0405 0.0763 0.1048 0.1376 0.1646 0.1463 0.1048 0.0507 - S S 61.00 0.0620 0.0712 0.0621 0.0206 -0.0187 0.0020 0.0261 0.0328 0.0301 0.0253 0.0203 0.0216 0.0252 0.0265 0.0120 0.0088 0.0304 0.0534 0.0822 0.1136 0.1493 0.1265 0.0572 0.0202 - S S 60.00 0.0693 0.0799 0.0649 0.0224 -0.0161 0.0022 0.0286 0.0388 0.0317 0.0220 0.0169 0.0182 0.0213 0.0222 0.0123 0.0102 0.0215 0.0350 0.0605 0.0881 0.1252 0.1017 0.0183 -0.0069 - S S 59.00 0.0618 0.0701 0.0542 0.0187 -0.0120 0.0017 0.0238 0.0332 0.0257 0.0162 0.0120 0.0131 0.0154 0.0160 0.0100 0.0087 0.0137 0.0206 0.0398 0.0603 0.0915 0.0728 -0.0035 -0.0202 - S S 58.00 0.0341 0.0361 0.0269 0.0092 -0.0059 0.0009 0.0117 0.0162 0.0126 0.0079 0.0059 0.0064 0.0075 0.0078 0.0050 0.0043 0.0068 0.0103 0.0199 0.0304 0.0463 0.0384 -0.0019 -0.0121 - S S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -ssby5.pot - SOUTHERN, SUMMER BY COEFFICIENT FOR BY > 0 AND BZ < 0 - S S 90.00 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 1.0628 - S S 89.00 1.0636 1.0887 1.1125 1.1336 1.1508 1.1627 1.1680 1.1656 1.1540 1.1341 1.1083 1.0802 1.0526 1.0270 1.0047 0.9869 0.9744 0.9674 0.9661 0.9709 0.9814 0.9971 1.0167 1.0392 - S S 88.00 1.0616 1.1120 1.1584 1.2016 1.2376 1.2621 1.2798 1.2848 1.2621 1.2135 1.1503 1.0870 1.0329 0.9867 0.9469 0.9147 0.8918 0.8783 0.8758 0.8843 0.9043 0.9363 0.9741 1.0146 - S S 87.00 1.0358 1.1101 1.1803 1.2481 1.3051 1.3403 1.3635 1.3678 1.3293 1.2528 1.1569 1.0642 0.9889 0.9272 0.8750 0.8333 0.8036 0.7865 0.7836 0.7950 0.8214 0.8655 0.9165 0.9698 - S S 86.00 0.9865 1.0823 1.1789 1.2769 1.3603 1.4073 1.4239 1.4108 1.3510 1.2529 1.1347 1.0200 0.9275 0.8531 0.7927 0.7459 0.7121 0.6929 0.6908 0.7054 0.7349 0.7847 0.8437 0.9063 - S S 85.00 0.9131 1.0245 1.1543 1.2883 1.4069 1.4764 1.4683 1.4059 1.3192 1.2129 1.0901 0.9630 0.8532 0.7659 0.7017 0.6548 0.6173 0.5972 0.5984 0.6170 0.6474 0.6913 0.7528 0.8238 - S S 84.00 0.8443 0.9659 1.1134 1.2683 1.4096 1.4971 1.4877 1.4048 1.2890 1.1552 1.0100 0.8653 0.7480 0.6635 0.6041 0.5593 0.5216 0.5007 0.5025 0.5251 0.5610 0.6100 0.6764 0.7502 - S S 83.00 0.7795 0.9047 1.0557 1.2175 1.3686 1.4720 1.4853 1.4066 1.2558 1.0774 0.8972 0.7307 0.6156 0.5489 0.5012 0.4605 0.4252 0.4033 0.4021 0.4287 0.4751 0.5398 0.6134 0.6858 - S S 82.00 0.7204 0.8430 0.9816 1.1348 1.2826 1.3954 1.4619 1.4185 1.2203 0.9790 0.7519 0.5586 0.4572 0.4251 0.3956 0.3575 0.3293 0.3058 0.2966 0.3241 0.3875 0.4823 0.5657 0.6306 - S S 81.00 0.6419 0.7754 0.9218 1.0798 1.2222 1.3321 1.4010 1.3478 1.1251 0.8561 0.6152 0.4204 0.3258 0.3106 0.2991 0.2692 0.2393 0.2100 0.1976 0.2220 0.2848 0.3845 0.4700 0.5396 - S S 80.00 0.5456 0.7022 0.8755 1.0514 1.1827 1.2773 1.3033 1.2008 0.9763 0.7091 0.4836 0.3131 0.2176 0.2034 0.2112 0.1949 0.1534 0.1151 0.1049 0.1218 0.1669 0.2463 0.3254 0.4121 - S S 79.00 0.4653 0.6284 0.8028 0.9789 1.0970 1.1763 1.1899 1.0637 0.8129 0.5241 0.2981 0.1440 0.0670 0.0773 0.1067 0.1090 0.0692 0.0186 0.0061 0.0228 0.0683 0.1551 0.2332 0.3205 - S S 78.00 0.3832 0.5540 0.7273 0.9060 1.0147 1.0681 1.0616 0.9262 0.6619 0.3528 0.1240 -0.0136 -0.0741 -0.0453 0.0105 0.0318 -0.0038 -0.0563 -0.0709 -0.0547 -0.0017 0.0750 0.1379 0.2262 - S S 77.00 0.3014 0.4798 0.6485 0.8328 0.9363 0.9518 0.9170 0.7859 0.5214 0.1922 -0.0415 -0.1606 -0.2069 -0.1659 -0.0783 -0.0370 -0.0663 -0.1109 -0.1264 -0.1151 -0.0644 -0.0046 0.0349 0.1275 - S S 76.00 0.2418 0.4090 0.5456 0.7129 0.8175 0.8148 0.7634 0.6367 0.3786 0.0576 -0.1742 -0.2885 -0.3256 -0.2767 -0.1778 -0.1288 -0.1443 -0.1670 -0.1745 -0.1646 -0.1227 -0.0752 -0.0457 0.0577 - S S 75.00 0.1980 0.3435 0.4278 0.5555 0.6654 0.6572 0.5976 0.4772 0.2325 -0.0540 -0.2774 -0.3995 -0.4310 -0.3784 -0.2866 -0.2420 -0.2362 -0.2238 -0.2143 -0.1985 -0.1579 -0.1268 -0.1027 0.0123 - S S 74.00 0.1500 0.2812 0.3345 0.4244 0.5213 0.5116 0.4581 0.3457 0.1178 -0.1365 -0.3466 -0.4716 -0.5001 -0.4454 -0.3573 -0.3186 -0.3023 -0.2689 -0.2482 -0.2233 -0.1823 -0.1610 -0.1425 -0.0286 - S S 73.00 0.1035 0.2215 0.2503 0.3060 0.3826 0.3821 0.3408 0.2348 0.0282 -0.1911 -0.3850 -0.5092 -0.5359 -0.4849 -0.4045 -0.3722 -0.3498 -0.3027 -0.2735 -0.2394 -0.1973 -0.1818 -0.1710 -0.0650 - S S 72.00 0.0580 0.1584 0.1672 0.2007 0.2555 0.2616 0.2342 0.1406 -0.0371 -0.2206 -0.3955 -0.5159 -0.5412 -0.4998 -0.4370 -0.4078 -0.3791 -0.3246 -0.2899 -0.2475 -0.2054 -0.1913 -0.1850 -0.0946 - S S 71.00 0.0137 0.0942 0.0949 0.1123 0.1351 0.1493 0.1397 0.0630 -0.0820 -0.2291 -0.3811 -0.4945 -0.5184 -0.4903 -0.4491 -0.4213 -0.3882 -0.3364 -0.3054 -0.2496 -0.2056 -0.1904 -0.1897 -0.1203 - S S 70.00 -0.0319 0.0323 0.0374 0.0458 0.0354 0.0524 0.0576 -0.0033 -0.1115 -0.2182 -0.3445 -0.4479 -0.4691 -0.4584 -0.4443 -0.4186 -0.3853 -0.3420 -0.3234 -0.2460 -0.1998 -0.1806 -0.1847 -0.1441 - S S 69.00 -0.0479 0.0023 0.0060 0.0002 -0.0254 -0.0098 -0.0001 -0.0500 -0.1296 -0.2053 -0.3113 -0.4045 -0.4220 -0.4188 -0.4209 -0.4014 -0.3747 -0.3447 -0.3388 -0.2486 -0.1871 -0.1539 -0.1501 -0.1293 - S S 68.00 -0.0355 -0.0015 -0.0062 -0.0327 -0.0651 -0.0494 -0.0390 -0.0791 -0.1365 -0.1905 -0.2810 -0.3639 -0.3766 -0.3711 -0.3795 -0.3702 -0.3568 -0.3442 -0.3465 -0.2536 -0.1702 -0.1177 -0.0920 -0.0845 - S S 67.00 -0.0007 0.0158 -0.0023 -0.0556 -0.0889 -0.0715 -0.0630 -0.0933 -0.1328 -0.1726 -0.2485 -0.3233 -0.3326 -0.3155 -0.3209 -0.3240 -0.3300 -0.3411 -0.3564 -0.2663 -0.1421 -0.0622 -0.0206 -0.0195 - S S 66.00 0.0476 0.0452 0.0114 -0.0713 -0.1023 -0.0803 -0.0743 -0.0950 -0.1189 -0.1507 -0.2112 -0.2810 -0.2895 -0.2526 -0.2461 -0.2628 -0.2914 -0.3349 -0.3706 -0.2897 -0.1039 0.0077 0.0659 0.0641 - S S 65.00 0.0850 0.0604 0.0103 -0.0871 -0.1120 -0.0848 -0.0799 -0.0943 -0.1053 -0.1303 -0.1789 -0.2411 -0.2477 -0.1996 -0.1852 -0.2088 -0.2475 -0.3125 -0.3625 -0.2921 -0.0705 0.0623 0.1338 0.1270 - S S 64.00 0.1185 0.0675 -0.0003 -0.1041 -0.1199 -0.0859 -0.0807 -0.0909 -0.0918 -0.1115 -0.1513 -0.2035 -0.2073 -0.1560 -0.1374 -0.1623 -0.2019 -0.2722 -0.3287 -0.2727 -0.0370 0.1096 0.1907 0.1798 - S S 63.00 0.1527 0.0687 -0.0203 -0.1233 -0.1270 -0.0822 -0.0741 -0.0840 -0.0791 -0.0946 -0.1272 -0.1670 -0.1679 -0.1212 -0.1013 -0.1232 -0.1538 -0.2098 -0.2579 -0.2230 -0.0056 0.1470 0.2376 0.2273 - S S 62.00 0.1880 0.0638 -0.0560 -0.1495 -0.1319 -0.0710 -0.0573 -0.0739 -0.0676 -0.0798 -0.1066 -0.1317 -0.1291 -0.0947 -0.0765 -0.0913 -0.1029 -0.1275 -0.1491 -0.1307 0.0263 0.1685 0.2583 0.2631 - S S 61.00 0.2086 0.0579 -0.0874 -0.1680 -0.1306 -0.0579 -0.0418 -0.0618 -0.0553 -0.0644 -0.0856 -0.1000 -0.0952 -0.0708 -0.0552 -0.0643 -0.0629 -0.0644 -0.0603 -0.0453 0.0530 0.1805 0.2683 0.2843 - S S 60.00 0.2141 0.0501 -0.1050 -0.1691 -0.1182 -0.0436 -0.0282 -0.0482 -0.0421 -0.0484 -0.0642 -0.0714 -0.0661 -0.0495 -0.0372 -0.0422 -0.0336 -0.0217 -0.0012 0.0120 0.0651 0.1745 0.2606 0.2866 - S S 59.00 0.1896 0.0388 -0.0982 -0.1399 -0.0898 -0.0287 -0.0170 -0.0329 -0.0282 -0.0322 -0.0426 -0.0456 -0.0411 -0.0311 -0.0224 -0.0248 -0.0152 -0.0001 0.0232 0.0338 0.0586 0.1434 0.2229 0.2521 - S S 58.00 0.1073 0.0207 -0.0535 -0.0719 -0.0448 -0.0142 -0.0084 -0.0161 -0.0138 -0.0158 -0.0208 -0.0223 -0.0201 -0.0153 -0.0111 -0.0122 -0.0075 0.0000 0.0115 0.0171 0.0302 0.0783 0.1314 0.1464 - S S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -ssby6.pot - SOUTHERN, SUMMER BY COEFFICIENT FOR BY > 0 AND BZ > 0 - S S 90.00 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 1.6182 - S S 89.00 1.5945 1.6228 1.6516 1.6792 1.7043 1.7249 1.7383 1.7424 1.7363 1.7204 1.6960 1.6656 1.6321 1.5987 1.5686 1.5442 1.5264 1.5146 1.5087 1.5089 1.5154 1.5280 1.5460 1.5685 - S S 88.00 1.5776 1.6309 1.6853 1.7397 1.7910 1.8382 1.8736 1.8860 1.8740 1.8386 1.7858 1.7197 1.6446 1.5725 1.5138 1.4725 1.4463 1.4306 1.4211 1.4186 1.4299 1.4541 1.4871 1.5285 - S S 87.00 1.5497 1.6257 1.7021 1.7771 1.8476 1.9151 1.9661 1.9798 1.9543 1.8945 1.8131 1.7149 1.6047 1.5028 1.4263 1.3780 1.3505 1.3356 1.3248 1.3207 1.3365 1.3715 1.4189 1.4787 - S S 86.00 1.5159 1.6139 1.7094 1.8006 1.8831 1.9629 2.0237 2.0322 1.9835 1.8946 1.7849 1.6582 1.5207 1.3999 1.3175 1.2707 1.2463 1.2327 1.2215 1.2176 1.2368 1.2811 1.3434 1.4232 - S S 85.00 1.4771 1.5983 1.7116 1.8141 1.9021 1.9841 2.0491 2.0486 1.9622 1.8400 1.7037 1.5516 1.3962 1.2703 1.1964 1.1575 1.1375 1.1201 1.1097 1.1103 1.1310 1.1797 1.2592 1.3625 - S S 84.00 1.4386 1.5736 1.6963 1.8050 1.8947 1.9737 2.0287 2.0034 1.8796 1.7246 1.5693 1.4056 1.2431 1.1200 1.0596 1.0391 1.0353 1.0244 1.0149 1.0155 1.0389 1.0964 1.1898 1.3089 - S S 83.00 1.4006 1.5397 1.6638 1.7755 1.8653 1.9362 1.9645 1.8987 1.7366 1.5495 1.3841 1.2211 1.0650 0.9533 0.9089 0.9182 0.9399 0.9437 0.9338 0.9306 0.9588 1.0303 1.1357 1.2636 - S S 82.00 1.3651 1.4966 1.6133 1.7252 1.8176 1.8777 1.8590 1.7325 1.5349 1.3166 1.1505 1.0007 0.8656 0.7721 0.7439 0.7952 0.8519 0.8787 0.8660 0.8524 0.8896 0.9828 1.0986 1.2262 - S S 81.00 1.3015 1.4344 1.5457 1.6443 1.7208 1.7578 1.7026 1.5384 1.3070 1.0552 0.8820 0.7628 0.6777 0.6226 0.6196 0.6911 0.7603 0.7954 0.7847 0.7659 0.8024 0.9039 1.0268 1.1583 - S S 80.00 1.2101 1.3540 1.4631 1.5345 1.5782 1.5810 1.4939 1.3147 1.0530 0.7641 0.5755 0.5071 0.5015 0.5038 0.5335 0.6044 0.6630 0.6943 0.6915 0.6714 0.6975 0.7949 0.9222 1.0600 - S S 79.00 1.1423 1.2833 1.3826 1.4395 1.4631 1.4195 1.2897 1.0921 0.8373 0.5332 0.3143 0.2558 0.3129 0.3766 0.4277 0.5148 0.5778 0.6170 0.6150 0.5863 0.6117 0.7225 0.8536 0.9849 - S S 78.00 1.0897 1.2157 1.2964 1.3369 1.3400 1.2773 1.1340 0.9236 0.6735 0.3732 0.1421 0.0867 0.1729 0.2694 0.3342 0.4186 0.4744 0.5096 0.5097 0.4878 0.5269 0.6550 0.7978 0.9368 - S S 77.00 1.0543 1.1501 1.2033 1.2263 1.2072 1.1510 1.0192 0.7989 0.5547 0.2786 0.0470 -0.0115 0.0749 0.1817 0.2536 0.3166 0.3548 0.3729 0.3758 0.3757 0.4433 0.5925 0.7563 0.9168 - S S 76.00 1.0100 1.0757 1.1042 1.1171 1.0840 1.0093 0.8803 0.6698 0.4397 0.2010 -0.0017 -0.0649 -0.0076 0.0757 0.1345 0.1845 0.2217 0.2466 0.2671 0.2940 0.3887 0.5540 0.7272 0.8896 - S S 75.00 0.9578 0.9914 0.9978 1.0101 0.9693 0.8505 0.7187 0.5390 0.3284 0.1396 -0.0057 -0.0765 -0.0764 -0.0467 -0.0169 0.0251 0.0753 0.1280 0.1812 0.2461 0.3697 0.5434 0.7118 0.8569 - S S 74.00 0.9016 0.9075 0.8948 0.9049 0.8602 0.7195 0.5914 0.4376 0.2469 0.0944 -0.0116 -0.0847 -0.1196 -0.1246 -0.1174 -0.0864 -0.0329 0.0343 0.1100 0.2058 0.3522 0.5283 0.6880 0.8179 - S S 73.00 0.8378 0.8226 0.7945 0.7996 0.7569 0.6149 0.4953 0.3609 0.1886 0.0637 -0.0160 -0.0877 -0.1400 -0.1648 -0.1747 -0.1540 -0.1012 -0.0320 0.0530 0.1721 0.3362 0.5118 0.6594 0.7720 - S S 72.00 0.7649 0.7371 0.6990 0.6979 0.6623 0.5337 0.4251 0.3051 0.1507 0.0458 -0.0178 -0.0852 -0.1403 -0.1709 -0.1913 -0.1826 -0.1377 -0.0760 0.0111 0.1461 0.3230 0.4985 0.6357 0.7252 - S S 71.00 0.6936 0.6572 0.6107 0.6004 0.5739 0.4714 0.3743 0.2660 0.1309 0.0397 -0.0162 -0.0769 -0.1221 -0.1459 -0.1709 -0.1760 -0.1462 -0.1015 -0.0207 0.1241 0.3102 0.4863 0.6156 0.6823 - S S 70.00 0.6228 0.5827 0.5321 0.5091 0.4940 0.4272 0.3402 0.2412 0.1279 0.0451 -0.0115 -0.0635 -0.0866 -0.0916 -0.1161 -0.1357 -0.1259 -0.1102 -0.0472 0.1055 0.2993 0.4706 0.5887 0.6345 - S S 69.00 0.5515 0.4953 0.4406 0.4183 0.4150 0.3764 0.3026 0.2143 0.1192 0.0447 -0.0097 -0.0545 -0.0648 -0.0583 -0.0767 -0.1007 -0.1057 -0.1101 -0.0577 0.1029 0.2982 0.4569 0.5560 0.5826 - S S 68.00 0.4868 0.4053 0.3458 0.3306 0.3358 0.3182 0.2593 0.1845 0.1055 0.0391 -0.0110 -0.0500 -0.0558 -0.0445 -0.0515 -0.0709 -0.0855 -0.1016 -0.0530 0.1138 0.3026 0.4465 0.5308 0.5388 - S S 67.00 0.4293 0.3143 0.2484 0.2415 0.2512 0.2507 0.2094 0.1513 0.0872 0.0284 -0.0152 -0.0496 -0.0591 -0.0496 -0.0397 -0.0456 -0.0654 -0.0843 -0.0323 0.1401 0.3116 0.4359 0.5063 0.4970 - S S 66.00 0.3757 0.2177 0.1445 0.1453 0.1544 0.1697 0.1503 0.1143 0.0642 0.0128 -0.0223 -0.0529 -0.0742 -0.0734 -0.0406 -0.0240 -0.0455 -0.0579 0.0075 0.1864 0.3267 0.4216 0.4734 0.4511 - S S 65.00 0.3295 0.1462 0.0727 0.0731 0.0765 0.1041 0.1003 0.0823 0.0449 0.0007 -0.0272 -0.0540 -0.0814 -0.0842 -0.0369 -0.0049 -0.0244 -0.0314 0.0427 0.2202 0.3380 0.4170 0.4546 0.4160 - S S 64.00 0.2864 0.0908 0.0238 0.0213 0.0190 0.0578 0.0634 0.0559 0.0296 -0.0081 -0.0301 -0.0526 -0.0813 -0.0832 -0.0289 0.0123 -0.0024 -0.0052 0.0728 0.2404 0.3442 0.4250 0.4543 0.3910 - S S 63.00 0.2388 0.0525 0.0030 0.0005 0.0001 0.0386 0.0406 0.0355 0.0180 -0.0136 -0.0310 -0.0489 -0.0743 -0.0710 -0.0168 0.0275 0.0206 0.0213 0.0986 0.2454 0.3438 0.4516 0.4789 0.3767 - S S 62.00 0.1855 0.0455 0.0283 0.0270 0.0319 0.0507 0.0323 0.0207 0.0099 -0.0162 -0.0301 -0.0430 -0.0607 -0.0480 -0.0007 0.0408 0.0451 0.0486 0.1210 0.2328 0.3354 0.5057 0.5475 0.3829 - S S 61.00 0.1296 0.0373 0.0492 0.0457 0.0513 0.0551 0.0248 0.0100 0.0041 -0.0166 -0.0273 -0.0361 -0.0477 -0.0302 0.0095 0.0466 0.0574 0.0624 0.1267 0.2093 0.3097 0.5254 0.5951 0.3808 - S S 60.00 0.0741 0.0290 0.0611 0.0528 0.0568 0.0514 0.0179 0.0031 0.0006 -0.0150 -0.0226 -0.0281 -0.0352 -0.0171 0.0140 0.0445 0.0576 0.0630 0.1159 0.1742 0.2636 0.4916 0.5846 0.3565 - S S 59.00 0.0350 0.0200 0.0554 0.0453 0.0476 0.0395 0.0115 -0.0002 -0.0009 -0.0112 -0.0161 -0.0193 -0.0230 -0.0085 0.0130 0.0347 0.0460 0.0506 0.0886 0.1257 0.1950 0.3911 0.4895 0.2956 - S S 58.00 0.0191 0.0105 0.0279 0.0226 0.0236 0.0194 0.0057 -0.0001 -0.0004 -0.0055 -0.0079 -0.0094 -0.0112 -0.0041 0.0064 0.0171 0.0228 0.0253 0.0444 0.0637 0.1004 0.2083 0.2774 0.1718 - S S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -ssbz1.pot - SOUTHERN, SUMMER BZ COEFFICIENT FOR BZ < 0 - S S 90.00 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 0.1041 - S S 89.00 0.0452 0.0339 0.0258 0.0210 0.0194 0.0224 0.0328 0.0523 0.0798 0.1110 0.1415 0.1672 0.1855 0.1958 0.1983 0.1937 0.1832 0.1682 0.1502 0.1310 0.1119 0.0933 0.0755 0.0592 - S S 88.00 -0.0408 -0.0595 -0.0721 -0.0800 -0.0912 -0.1059 -0.1036 -0.0625 0.0080 0.0856 0.1596 0.2180 0.2512 0.2641 0.2620 0.2456 0.2197 0.1860 0.1458 0.1076 0.0749 0.0443 0.0133 -0.0163 - S S 87.00 -0.1301 -0.1567 -0.1727 -0.1806 -0.1962 -0.2226 -0.2244 -0.1636 -0.0579 0.0579 0.1715 0.2617 0.3111 0.3288 0.3241 0.2974 0.2577 0.2068 0.1449 0.0880 0.0424 -0.0007 -0.0469 -0.0930 - S S 86.00 -0.2316 -0.2671 -0.2868 -0.2945 -0.3080 -0.3275 -0.3163 -0.2401 -0.1203 0.0185 0.1666 0.2876 0.3569 0.3846 0.3795 0.3445 0.2940 0.2283 0.1469 0.0721 0.0138 -0.0427 -0.1090 -0.1780 - S S 85.00 -0.3509 -0.3952 -0.4198 -0.4347 -0.4418 -0.4213 -0.3605 -0.2773 -0.1842 -0.0409 0.1392 0.2877 0.3858 0.4327 0.4280 0.3867 0.3283 0.2491 0.1523 0.0608 -0.0106 -0.0817 -0.1748 -0.2763 - S S 84.00 -0.4461 -0.4978 -0.5300 -0.5544 -0.5688 -0.5418 -0.4625 -0.3664 -0.2640 -0.1002 0.1113 0.2904 0.4147 0.4823 0.4862 0.4421 0.3721 0.2761 0.1600 0.0503 -0.0366 -0.1237 -0.2365 -0.3585 - S S 83.00 -0.5191 -0.5767 -0.6206 -0.6595 -0.6944 -0.6860 -0.6112 -0.4968 -0.3569 -0.1594 0.0792 0.2893 0.4390 0.5311 0.5535 0.5094 0.4239 0.3067 0.1707 0.0423 -0.0657 -0.1732 -0.2980 -0.4262 - S S 82.00 -0.5689 -0.6325 -0.6941 -0.7521 -0.8158 -0.8521 -0.8052 -0.6704 -0.4563 -0.2148 0.0395 0.2814 0.4555 0.5765 0.6302 0.5905 0.4814 0.3389 0.1837 0.0396 -0.0982 -0.2358 -0.3631 -0.4788 - S S 81.00 -0.6545 -0.7311 -0.8113 -0.8885 -0.9689 -1.0182 -0.9757 -0.8257 -0.5774 -0.3013 -0.0118 0.2683 0.4795 0.6292 0.6961 0.6580 0.5416 0.3835 0.2054 0.0370 -0.1220 -0.2803 -0.4279 -0.5570 - S S 80.00 -0.7727 -0.8697 -0.9689 -1.0677 -1.1521 -1.1831 -1.1278 -0.9665 -0.7176 -0.4152 -0.0743 0.2488 0.5098 0.6890 0.7518 0.7130 0.6057 0.4400 0.2362 0.0352 -0.1380 -0.3079 -0.4941 -0.6608 - S S 79.00 -0.8688 -0.9858 -1.0927 -1.1994 -1.2911 -1.3315 -1.2839 -1.1017 -0.8089 -0.4945 -0.1404 0.2250 0.5290 0.7423 0.8148 0.7730 0.6645 0.4893 0.2639 0.0379 -0.1691 -0.3672 -0.5682 -0.7428 - S S 78.00 -0.9592 -1.0920 -1.2103 -1.3278 -1.4303 -1.4777 -1.4261 -1.2287 -0.9077 -0.5650 -0.1765 0.2347 0.5749 0.8088 0.8891 0.8423 0.7250 0.5360 0.2818 0.0215 -0.2041 -0.4169 -0.6363 -0.8209 - S S 77.00 -1.0429 -1.1892 -1.3223 -1.4535 -1.5699 -1.6213 -1.5548 -1.3474 -1.0127 -0.6277 -0.1865 0.2746 0.6446 0.8869 0.9731 0.9193 0.7864 0.5801 0.2911 -0.0071 -0.2414 -0.4646 -0.7021 -0.8944 - S S 76.00 -1.1204 -1.2800 -1.4245 -1.5656 -1.7002 -1.7642 -1.6939 -1.4778 -1.1255 -0.6977 -0.2096 0.2937 0.6937 0.9510 1.0549 1.0084 0.8786 0.6748 0.3655 0.0243 -0.2553 -0.5095 -0.7584 -0.9591 - S S 75.00 -1.1965 -1.3690 -1.5174 -1.6621 -1.8205 -1.9090 -1.8454 -1.6186 -1.2441 -0.7738 -0.2448 0.2950 0.7247 1.0011 1.1338 1.1070 0.9982 0.8177 0.5033 0.1111 -0.2488 -0.5528 -0.8036 -1.0144 - S S 74.00 -1.2511 -1.4282 -1.5706 -1.7087 -1.8755 -1.9744 -1.9103 -1.6836 -1.3006 -0.8098 -0.2635 0.2916 0.7389 1.0323 1.1857 1.1832 1.1039 0.9489 0.6371 0.2016 -0.2228 -0.5698 -0.8303 -1.0525 - S S 73.00 -1.2849 -1.4623 -1.5924 -1.7109 -1.8677 -1.9716 -1.9112 -1.6867 -1.3026 -0.8089 -0.2660 0.2837 0.7356 1.0447 1.2231 1.2491 1.2044 1.0702 0.7504 0.2933 -0.1757 -0.5638 -0.8392 -1.0741 - S S 72.00 -1.3015 -1.4736 -1.5812 -1.6694 -1.8049 -1.9098 -1.8581 -1.6358 -1.2526 -0.7743 -0.2552 0.2706 0.7166 1.0381 1.2428 1.3072 1.2993 1.1759 0.8349 0.3793 -0.1005 -0.5370 -0.8346 -1.0820 - S S 71.00 -1.3049 -1.4659 -1.5412 -1.5910 -1.6929 -1.7966 -1.7582 -1.5448 -1.1673 -0.7105 -0.2316 0.2524 0.6829 1.0151 1.2442 1.3491 1.3682 1.2710 0.9384 0.4737 -0.0229 -0.4989 -0.8196 -1.0799 - S S 70.00 -1.2957 -1.4450 -1.4823 -1.4919 -1.5604 -1.6517 -1.6218 -1.4200 -1.0523 -0.6229 -0.1971 0.2282 0.6331 0.9758 1.2278 1.3810 1.4337 1.3758 1.0857 0.5888 0.0445 -0.4525 -0.7923 -1.0659 - S S 69.00 -1.2716 -1.4172 -1.4281 -1.4011 -1.4335 -1.5037 -1.4753 -1.2854 -0.9371 -0.5441 -0.1670 0.2065 0.5801 0.9188 1.1824 1.3712 1.4579 1.4297 1.1694 0.6441 0.0701 -0.4263 -0.7731 -1.0431 - S S 68.00 -1.2371 -1.3850 -1.3757 -1.3121 -1.3042 -1.3500 -1.3208 -1.1429 -0.8223 -0.4743 -0.1415 0.1865 0.5236 0.8433 1.1064 1.3187 1.4345 1.4273 1.1768 0.6588 0.0785 -0.4150 -0.7603 -1.0149 - S S 67.00 -1.1975 -1.3496 -1.3253 -1.2295 -1.1795 -1.1957 -1.1606 -0.9952 -0.7128 -0.4090 -0.1174 0.1666 0.4629 0.7503 1.0023 1.2223 1.3594 1.3877 1.1625 0.6685 0.1043 -0.3970 -0.7524 -0.9837 - S S 66.00 -1.1556 -1.3178 -1.2854 -1.1555 -1.0545 -1.0453 -1.0089 -0.8429 -0.6003 -0.3443 -0.0946 0.1444 0.3967 0.6407 0.8723 1.0822 1.2209 1.2933 1.1209 0.6741 0.1451 -0.3689 -0.7489 -0.9496 - S S 65.00 -1.1081 -1.2645 -1.2270 -1.0782 -0.9562 -0.9270 -0.8862 -0.7139 -0.4981 -0.2872 -0.0779 0.1209 0.3342 0.5396 0.7499 0.9483 1.0822 1.1852 1.0614 0.6574 0.1567 -0.3563 -0.7435 -0.9186 - S S 64.00 -1.0498 -1.1911 -1.1513 -0.9959 -0.8663 -0.8137 -0.7595 -0.5911 -0.4065 -0.2380 -0.0667 0.0963 0.2749 0.4455 0.6345 0.8218 0.9564 1.0724 0.9759 0.6166 0.1551 -0.3465 -0.7351 -0.8849 - S S 63.00 -0.9724 -1.0875 -1.0494 -0.9025 -0.7665 -0.6884 -0.6220 -0.4804 -0.3309 -0.1970 -0.0612 0.0702 0.2180 0.3574 0.5238 0.7023 0.8396 0.9406 0.8476 0.5415 0.1294 -0.3426 -0.7142 -0.8413 - S S 62.00 -0.8750 -0.9338 -0.8923 -0.7732 -0.6579 -0.5611 -0.4972 -0.3973 -0.2739 -0.1644 -0.0610 0.0428 0.1633 0.2745 0.4173 0.5893 0.7305 0.7954 0.6790 0.4167 0.0698 -0.3458 -0.6803 -0.7908 - S S 61.00 -0.7757 -0.7711 -0.7084 -0.6230 -0.5312 -0.4274 -0.3768 -0.3137 -0.2173 -0.1315 -0.0561 0.0226 0.1167 0.2017 0.3200 0.4745 0.6083 0.6453 0.5142 0.2904 0.0166 -0.3259 -0.6312 -0.7277 - S S 60.00 -0.6552 -0.5948 -0.5148 -0.4583 -0.3900 -0.2984 -0.2660 -0.2317 -0.1612 -0.0983 -0.0469 0.0091 0.0780 0.1388 0.2304 0.3581 0.4724 0.4902 0.3620 0.1834 -0.0179 -0.2815 -0.5567 -0.6387 - S S 59.00 -0.4897 -0.4049 -0.3288 -0.2917 -0.2470 -0.1836 -0.1677 -0.1521 -0.1061 -0.0650 -0.0336 0.0020 0.0469 0.0858 0.1483 0.2398 0.3232 0.3300 0.2288 0.1025 -0.0299 -0.2130 -0.4430 -0.5014 - S S 58.00 -0.2797 -0.2260 -0.1766 -0.1500 -0.1233 -0.0905 -0.0824 -0.0743 -0.0519 -0.0318 -0.0164 0.0010 0.0229 0.0422 0.0733 0.1184 0.1601 0.1638 0.1152 0.0521 -0.0154 -0.1167 -0.2616 -0.2915 - S S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -ssbz2.pot - SOUTHERN, SUMMER BZ COEFFICIENT FOR BZ > 0 - S S 90.00 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 0.3193 - S S 89.00 0.2970 0.2753 0.2558 0.2393 0.2268 0.2194 0.2186 0.2256 0.2405 0.2626 0.2900 0.3200 0.3496 0.3762 0.3975 0.4119 0.4187 0.4182 0.4114 0.3994 0.3834 0.3639 0.3422 0.3196 - S S 88.00 0.2508 0.2115 0.1751 0.1425 0.1153 0.0956 0.0867 0.0964 0.1253 0.1699 0.2305 0.2982 0.3623 0.4178 0.4599 0.4863 0.4957 0.4874 0.4680 0.4437 0.4132 0.3751 0.3335 0.2918 - S S 87.00 0.2112 0.1541 0.0991 0.0473 0.0002 -0.0387 -0.0618 -0.0531 -0.0115 0.0578 0.1585 0.2755 0.3852 0.4753 0.5371 0.5699 0.5758 0.5545 0.5196 0.4831 0.4405 0.3865 0.3280 0.2697 - S S 86.00 0.1749 0.0988 0.0237 -0.0503 -0.1228 -0.1869 -0.2283 -0.2232 -0.1707 -0.0774 0.0685 0.2488 0.4187 0.5500 0.6284 0.6583 0.6525 0.6144 0.5627 0.5138 0.4615 0.3959 0.3243 0.2510 - S S 85.00 0.1405 0.0424 -0.0541 -0.1518 -0.2542 -0.3515 -0.4122 -0.4135 -0.3510 -0.2371 -0.0452 0.2173 0.4661 0.6452 0.7345 0.7476 0.7208 0.6655 0.5963 0.5338 0.4734 0.4032 0.3230 0.2359 - S S 84.00 0.1098 -0.0005 -0.1078 -0.2147 -0.3280 -0.4435 -0.5257 -0.5445 -0.4834 -0.3560 -0.1306 0.1886 0.4922 0.7047 0.8010 0.8045 0.7631 0.6945 0.6157 0.5496 0.4867 0.4102 0.3185 0.2178 - S S 83.00 0.0804 -0.0323 -0.1424 -0.2465 -0.3517 -0.4693 -0.5747 -0.6248 -0.5788 -0.4403 -0.1916 0.1597 0.5004 0.7324 0.8312 0.8309 0.7792 0.7013 0.6227 0.5624 0.5012 0.4165 0.3100 0.1944 - S S 82.00 0.0500 -0.0547 -0.1623 -0.2533 -0.3294 -0.4302 -0.5610 -0.6619 -0.6460 -0.4926 -0.2280 0.1269 0.4905 0.7293 0.8238 0.8295 0.7695 0.6852 0.6184 0.5747 0.5182 0.4230 0.2969 0.1621 - S S 81.00 0.0167 -0.0897 -0.1921 -0.2768 -0.3464 -0.4380 -0.5628 -0.6698 -0.6754 -0.5275 -0.2529 0.0955 0.4481 0.6827 0.7802 0.7941 0.7426 0.6700 0.6155 0.5763 0.5177 0.4150 0.2799 0.1369 - S S 80.00 -0.0203 -0.1380 -0.2304 -0.3155 -0.4011 -0.4887 -0.5751 -0.6450 -0.6698 -0.5460 -0.2623 0.0668 0.3718 0.5909 0.7001 0.7255 0.6983 0.6558 0.6162 0.5688 0.4997 0.3914 0.2572 0.1195 - S S 79.00 -0.0498 -0.1669 -0.2569 -0.3333 -0.4024 -0.4732 -0.5410 -0.5996 -0.6303 -0.5400 -0.2859 0.0324 0.3011 0.4887 0.6072 0.6531 0.6379 0.6148 0.5983 0.5607 0.4925 0.3773 0.2364 0.0944 - S S 78.00 -0.0759 -0.2016 -0.2916 -0.3587 -0.4087 -0.4593 -0.5068 -0.5471 -0.5756 -0.5133 -0.3056 -0.0247 0.2146 0.3895 0.5225 0.5918 0.5992 0.5947 0.5912 0.5636 0.4975 0.3741 0.2227 0.0776 - S S 77.00 -0.0982 -0.2425 -0.3353 -0.3927 -0.4202 -0.4470 -0.4723 -0.4863 -0.5021 -0.4643 -0.3219 -0.1033 0.1115 0.2895 0.4433 0.5400 0.5810 0.5944 0.5943 0.5774 0.5146 0.3816 0.2154 0.0698 - S S 76.00 -0.1145 -0.2588 -0.3528 -0.4065 -0.4168 -0.4254 -0.4397 -0.4448 -0.4479 -0.4157 -0.3096 -0.1335 0.0522 0.2122 0.3554 0.4560 0.5166 0.5564 0.5773 0.5729 0.5145 0.3816 0.2056 0.0527 - S S 75.00 -0.1256 -0.2494 -0.3448 -0.4017 -0.3999 -0.3945 -0.4086 -0.4209 -0.4092 -0.3650 -0.2716 -0.1227 0.0305 0.1551 0.2601 0.3423 0.4095 0.4837 0.5420 0.5511 0.4954 0.3722 0.1923 0.0236 - S S 74.00 -0.1254 -0.2361 -0.3308 -0.3877 -0.3770 -0.3631 -0.3775 -0.3939 -0.3733 -0.3226 -0.2399 -0.1135 0.0137 0.1118 0.1885 0.2531 0.3223 0.4208 0.5060 0.5275 0.4764 0.3625 0.1867 0.0132 - S S 73.00 -0.1123 -0.2175 -0.3109 -0.3645 -0.3488 -0.3319 -0.3471 -0.3647 -0.3386 -0.2860 -0.2129 -0.1055 0.0010 0.0795 0.1347 0.1854 0.2574 0.3702 0.4709 0.5034 0.4578 0.3523 0.1867 0.0200 - S S 72.00 -0.0866 -0.1941 -0.2857 -0.3335 -0.3167 -0.3015 -0.3180 -0.3342 -0.3048 -0.2537 -0.1896 -0.0986 -0.0083 0.0576 0.0985 0.1359 0.2074 0.3294 0.4384 0.4792 0.4401 0.3423 0.1867 0.0375 - S S 71.00 -0.0567 -0.1699 -0.2572 -0.2963 -0.2810 -0.2717 -0.2895 -0.3019 -0.2713 -0.2244 -0.1686 -0.0928 -0.0152 0.0446 0.0775 0.1010 0.1679 0.2953 0.4077 0.4549 0.4237 0.3341 0.1875 0.0594 - S S 70.00 -0.0216 -0.1463 -0.2283 -0.2551 -0.2444 -0.2437 -0.2618 -0.2672 -0.2368 -0.1968 -0.1489 -0.0880 -0.0202 0.0397 0.0709 0.0803 0.1407 0.2670 0.3743 0.4289 0.4075 0.3284 0.1947 0.0932 - S S 69.00 0.0278 -0.1023 -0.1883 -0.2173 -0.2129 -0.2152 -0.2338 -0.2370 -0.2090 -0.1745 -0.1331 -0.0845 -0.0262 0.0299 0.0577 0.0591 0.1128 0.2308 0.3322 0.4003 0.3941 0.3281 0.2165 0.1353 - S S 68.00 0.0826 -0.0484 -0.1441 -0.1835 -0.1845 -0.1851 -0.2037 -0.2101 -0.1878 -0.1576 -0.1209 -0.0821 -0.0333 0.0153 0.0384 0.0378 0.0848 0.1860 0.2801 0.3660 0.3823 0.3326 0.2409 0.1736 - S S 67.00 0.1395 0.0113 -0.0973 -0.1510 -0.1571 -0.1519 -0.1705 -0.1859 -0.1732 -0.1457 -0.1120 -0.0807 -0.0417 -0.0041 0.0131 0.0167 0.0576 0.1324 0.2152 0.3227 0.3713 0.3436 0.2744 0.2146 - S S 66.00 0.2031 0.0797 -0.0463 -0.1177 -0.1286 -0.1134 -0.1322 -0.1641 -0.1650 -0.1385 -0.1060 -0.0803 -0.0512 -0.0284 -0.0186 -0.0041 0.0319 0.0693 0.1317 0.2662 0.3604 0.3632 0.3305 0.2655 - S S 65.00 0.2559 0.1316 -0.0082 -0.0889 -0.1017 -0.0797 -0.0987 -0.1415 -0.1518 -0.1282 -0.0985 -0.0771 -0.0557 -0.0442 -0.0400 -0.0171 0.0153 0.0254 0.0689 0.2189 0.3518 0.3828 0.3794 0.3106 - S S 64.00 0.3083 0.1768 0.0235 -0.0613 -0.0747 -0.0525 -0.0726 -0.1185 -0.1339 -0.1150 -0.0895 -0.0714 -0.0555 -0.0522 -0.0517 -0.0224 0.0080 0.0013 0.0314 0.1815 0.3421 0.4030 0.4219 0.3542 - S S 63.00 0.3686 0.2208 0.0525 -0.0346 -0.0510 -0.0352 -0.0545 -0.0952 -0.1116 -0.0991 -0.0791 -0.0632 -0.0508 -0.0530 -0.0546 -0.0200 0.0101 -0.0035 0.0193 0.1575 0.3321 0.4227 0.4567 0.4024 - S S 62.00 0.4315 0.2561 0.0745 -0.0117 -0.0334 -0.0300 -0.0450 -0.0714 -0.0847 -0.0807 -0.0675 -0.0528 -0.0419 -0.0470 -0.0489 -0.0100 0.0215 0.0117 0.0342 0.1501 0.3244 0.4405 0.4782 0.4535 - S S 61.00 0.4805 0.2804 0.0905 0.0064 -0.0192 -0.0242 -0.0355 -0.0511 -0.0617 -0.0630 -0.0550 -0.0422 -0.0331 -0.0396 -0.0418 -0.0029 0.0272 0.0204 0.0411 0.1353 0.2998 0.4331 0.4805 0.4916 - S S 60.00 0.4873 0.2798 0.0960 0.0173 -0.0089 -0.0182 -0.0262 -0.0342 -0.0422 -0.0461 -0.0418 -0.0316 -0.0245 -0.0310 -0.0332 0.0012 0.0274 0.0229 0.0402 0.1126 0.2556 0.3897 0.4456 0.4913 - S S 59.00 0.4133 0.2309 0.0810 0.0186 -0.0030 -0.0121 -0.0171 -0.0207 -0.0259 -0.0300 -0.0280 -0.0210 -0.0160 -0.0213 -0.0231 0.0026 0.0219 0.0193 0.0318 0.0812 0.1892 0.3026 0.3603 0.4239 - S S 58.00 0.2296 0.1193 0.0404 0.0093 -0.0015 -0.0060 -0.0084 -0.0101 -0.0127 -0.0146 -0.0137 -0.0102 -0.0079 -0.0104 -0.0112 0.0013 0.0108 0.0097 0.0161 0.0413 0.0968 0.1616 0.2061 0.2477 - S S 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -swbh1.pot - SOUTHERN, WINTER H0 COEFFICIENT (FREE PARAMETER) FOR BZ < 0 - S W 90.00 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 -0.2374 - S W 89.00 0.2539 0.2306 0.1678 0.0713 -0.0485 -0.1948 -0.3796 -0.6173 -0.8359 -0.9638 -0.9667 -0.8723 -0.7248 -0.5626 -0.4191 -0.3007 -0.2003 -0.1177 -0.0376 0.0485 0.1246 0.1813 0.2206 0.2463 - S W 88.00 0.7688 0.7951 0.6584 0.4447 0.2895 0.1386 -0.2164 -0.9330 -1.8052 -2.2673 -2.0841 -1.6395 -1.1704 -0.6910 -0.4198 -0.2939 -0.1352 -0.1125 -0.0522 0.2118 0.4302 0.5303 0.5896 0.6673 - S W 87.00 1.2826 1.4758 1.3784 1.1132 0.9722 0.7939 0.1705 -1.1035 -2.6628 -3.5223 -3.2048 -2.4785 -1.7166 -0.9278 -0.5109 -0.3721 -0.1914 -0.2718 -0.2057 0.2274 0.5529 0.6660 0.7778 0.9955 - S W 86.00 1.7784 2.2402 2.3517 2.1026 1.9997 1.7583 0.6957 -1.2103 -3.2586 -4.4069 -4.1047 -3.2948 -2.4121 -1.5343 -0.9157 -0.6403 -0.5158 -0.7033 -0.5040 0.1729 0.5355 0.6052 0.8750 1.3126 - S W 85.00 2.1767 2.9856 3.6128 3.4504 3.2767 3.0642 1.3471 -1.2758 -3.4429 -4.7115 -4.8165 -4.1886 -3.3297 -2.4813 -1.5997 -0.8935 -1.0349 -1.3776 -0.8024 0.1338 0.3559 0.2370 0.9202 1.7269 - S W 84.00 2.7261 3.9042 4.9583 5.0591 4.9180 4.3750 2.0087 -1.0692 -3.5324 -5.1160 -5.4783 -4.8931 -4.0097 -3.2781 -2.4566 -1.5382 -1.5621 -2.0734 -1.3170 -0.2371 -0.0144 -0.0877 0.9422 2.0314 - S W 83.00 3.5465 5.0427 6.3535 6.7953 6.5503 5.4322 2.5981 -0.7610 -3.6075 -5.5536 -6.0473 -5.5192 -4.6028 -3.9652 -3.3793 -2.3994 -2.1094 -2.8710 -2.3169 -1.1491 -0.8296 -0.5828 0.6786 2.2302 - S W 82.00 4.6397 6.4434 7.7357 8.4120 7.9786 6.1485 3.0442 -0.2437 -3.6970 -6.1447 -6.6511 -6.1096 -5.1505 -4.5546 -4.3462 -3.4871 -2.7333 -3.6169 -3.9038 -2.6151 -1.5190 -0.5698 0.3853 2.0037 - S W 81.00 4.9244 6.7635 7.9662 8.7171 8.4577 6.7944 4.1966 1.1121 -2.2668 -5.0796 -6.4162 -6.6763 -6.2497 -5.9996 -6.0457 -5.0973 -3.8622 -4.6202 -4.6346 -3.0819 -1.6196 -0.5014 0.6196 2.2756 - S W 80.00 4.8845 6.6228 7.7056 8.1283 7.8882 6.9472 5.3025 2.9151 -0.0039 -3.2908 -5.9114 -7.2607 -8.2925 -8.3885 -8.3751 -7.6178 -6.3348 -5.7642 -4.8722 -3.0037 -1.5079 -0.4097 0.9176 2.6717 - S W 79.00 4.6192 6.3225 7.3238 7.6411 7.4724 6.7909 5.5199 3.6657 1.3620 -1.9414 -5.3711 -7.3988 -8.9962 -9.2931 -9.4431 -8.8385 -7.5270 -6.5051 -5.2179 -3.2229 -1.6649 -0.4850 0.8331 2.5064 - S W 78.00 4.4294 5.9856 6.8810 7.1004 7.0028 6.4572 5.3489 3.6033 1.5406 -1.1665 -4.5000 -7.1804 -9.2455 -9.5389 -9.5503 -8.8402 -7.5812 -6.6321 -5.3824 -3.1590 -1.5986 -0.4510 0.8218 2.5088 - S W 77.00 4.2505 5.6528 6.4297 6.5713 6.5755 6.0404 4.9650 3.2495 1.3739 -0.8960 -3.8683 -6.7728 -9.2366 -9.3652 -9.0093 -8.0847 -6.9789 -6.2237 -5.4041 -3.3063 -1.5227 -0.3618 0.9150 2.5223 - S W 76.00 4.0566 5.3222 5.9320 6.1310 6.1922 5.5696 4.4346 2.7850 1.0071 -1.0100 -3.5472 -6.0034 -8.1142 -8.1043 -7.6095 -6.7735 -6.0441 -5.4765 -4.9119 -3.5671 -2.1389 -0.7908 0.5964 2.2968 - S W 75.00 3.8382 5.0725 5.5955 5.8200 5.8806 5.0829 3.8155 2.2370 0.4986 -1.3287 -3.2406 -4.9798 -6.4844 -6.4245 -6.0253 -5.5409 -5.1250 -4.6319 -4.2001 -3.4164 -2.5057 -1.2289 0.1955 1.9528 - S W 74.00 3.4751 4.7292 5.2505 5.3725 5.2962 4.4251 3.2419 1.7678 0.0903 -1.5341 -2.9920 -4.2778 -5.3951 -5.6311 -5.4622 -4.8787 -4.3810 -3.8716 -3.5178 -3.0602 -2.4104 -1.3704 -0.0646 1.6227 - S W 73.00 3.1006 4.3174 4.7946 4.7290 4.4628 3.7717 2.7174 1.3131 -0.2633 -1.6542 -2.8093 -3.7164 -4.4189 -4.8458 -4.9047 -4.0687 -3.4780 -3.1501 -2.9990 -2.6786 -2.2098 -1.4070 -0.2982 1.2957 - S W 72.00 2.7045 3.7619 4.0961 3.9328 3.6048 3.0498 2.1412 0.8656 -0.5551 -1.7349 -2.6224 -3.1919 -3.4838 -3.5061 -3.3998 -2.7285 -2.4679 -2.5373 -2.6017 -2.2850 -1.9027 -1.3922 -0.4705 0.9948 - S W 71.00 2.2856 3.1270 3.3019 3.0909 2.6953 2.2853 1.5614 0.4665 -0.7971 -1.8012 -2.4248 -2.6811 -2.5944 -2.3180 -2.1502 -1.9307 -1.9472 -2.0175 -2.1014 -1.8062 -1.5922 -1.3427 -0.6386 0.6878 - S W 70.00 1.8251 2.4837 2.5629 2.3732 1.9767 1.6090 1.0085 0.0907 -1.0106 -1.8451 -2.2403 -2.1959 -1.6621 -1.1690 -1.0969 -1.1851 -1.4351 -1.3535 -1.1943 -1.2431 -1.3262 -1.2635 -0.8169 0.3395 - S W 69.00 1.2741 1.7697 1.8098 1.7266 1.4744 1.1590 0.6208 -0.1822 -1.1431 -1.8249 -2.0577 -1.7493 -0.8392 -0.2141 -0.2021 -0.4287 -0.8341 -0.6491 -0.4611 -0.8337 -1.1057 -1.1255 -0.8396 0.0805 - S W 68.00 0.6930 0.9990 0.9793 1.0734 1.0477 0.8234 0.3409 -0.3649 -1.1872 -1.7458 -1.8771 -1.3424 -0.1022 0.7024 0.8565 0.2887 -0.2868 -0.1580 -0.1232 -0.5542 -0.9074 -0.9701 -0.7632 -0.1025 - S W 67.00 0.1249 0.1921 0.0992 0.4556 0.7010 0.5762 0.1396 -0.4761 -1.1513 -1.6004 -1.6213 -0.8463 0.5858 1.5387 1.9233 1.0116 0.3095 0.2890 0.1596 -0.2168 -0.5872 -0.7462 -0.6195 -0.2235 - S W 66.00 -0.4166 -0.5219 -0.6240 -0.1004 0.4053 0.3998 0.0121 -0.5315 -1.0319 -1.3171 -1.0134 -0.0898 1.2686 2.2435 2.6493 1.7740 1.2050 0.9011 0.5250 0.2458 -0.1618 -0.4714 -0.4195 -0.2998 - S W 65.00 -0.7219 -0.8920 -0.9628 -0.4494 0.2033 0.2796 -0.0663 -0.5471 -0.8828 -1.0259 -0.5255 0.4581 1.7429 2.6855 3.0694 2.4405 2.2698 1.3628 0.7772 0.5425 0.0923 -0.2932 -0.2929 -0.3680 - S W 64.00 -0.8943 -1.0777 -1.1054 -0.6435 0.0481 0.1850 -0.1141 -0.5091 -0.6573 -0.7133 -0.1752 0.8256 2.0157 2.8877 3.2470 2.7755 2.7885 1.5924 0.9330 0.7363 0.2657 -0.1764 -0.2261 -0.4331 - S W 63.00 -0.9577 -1.1226 -1.0971 -0.7076 -0.0960 0.1058 -0.1009 -0.3550 -0.3356 -0.3438 0.1668 1.0721 2.0616 2.8228 3.1677 2.7984 2.8094 1.6246 0.9509 0.7668 0.3041 -0.1421 -0.2356 -0.5039 - S W 62.00 -0.9032 -1.0087 -0.8896 -0.6123 -0.2235 0.0642 0.0593 -0.0034 0.0699 0.0779 0.4852 1.1365 1.8257 2.4229 2.7188 2.4288 2.2492 1.3160 0.7409 0.5583 0.1579 -0.2280 -0.3532 -0.5783 - S W 61.00 -0.8259 -0.8718 -0.6572 -0.5086 -0.3583 0.0252 0.2294 0.3451 0.4507 0.4275 0.7007 1.1194 1.5338 1.9809 2.2370 2.0645 1.7780 1.0114 0.5057 0.2996 -0.0005 -0.2823 -0.4165 -0.5994 - S W 60.00 -0.7047 -0.7025 -0.4286 -0.3922 -0.5002 -0.0149 0.3764 0.6359 0.7503 0.6672 0.7843 1.0010 1.2247 1.5259 1.7251 1.6501 1.3016 0.7042 0.2746 0.0795 -0.0965 -0.2821 -0.4125 -0.5561 - S W 59.00 -0.5137 -0.4924 -0.2365 -0.2648 -0.5860 -0.0483 0.4174 0.7212 0.8160 0.6717 0.6803 0.7774 0.8743 1.0542 1.1932 1.1596 0.8637 0.4339 0.1168 -0.0270 -0.1113 -0.2234 -0.3291 -0.4290 - S W 58.00 -0.2601 -0.2522 -0.1255 -0.1473 -0.3766 -0.0277 0.2609 0.4463 0.5004 0.3730 0.3562 0.4124 0.4696 0.5609 0.6253 0.6247 0.4715 0.2331 0.0612 -0.0130 -0.0532 -0.1087 -0.1626 -0.2133 - S W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -swbh2.pot - SOUTHERN, WINTER H0 COEFFICIENT (FREE PARAMETER) FOR BZ > 0 - S W 90.00 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 -0.1084 - S W 89.00 0.3039 0.3541 0.3689 0.3404 0.2630 0.1437 -0.0031 -0.1550 -0.2846 -0.3790 -0.4413 -0.4765 -0.4874 -0.4778 -0.4533 -0.4162 -0.3665 -0.3045 -0.2355 -0.1638 -0.0847 0.0102 0.1193 0.2232 - S W 88.00 0.7652 0.8706 0.9445 0.9335 0.7592 0.4687 0.0811 -0.3490 -0.6373 -0.7549 -0.8113 -0.8464 -0.8400 -0.7909 -0.7413 -0.6918 -0.6169 -0.4852 -0.3464 -0.2618 -0.1935 -0.0256 0.2910 0.5891 - S W 87.00 1.2263 1.3815 1.5351 1.5767 1.3383 0.9111 0.3130 -0.3809 -0.8180 -0.9577 -1.0430 -1.1397 -1.1713 -1.1141 -1.0633 -1.0388 -0.9889 -0.8528 -0.6828 -0.5454 -0.4310 -0.1299 0.4551 0.9689 - S W 86.00 1.6684 1.8562 2.1057 2.2318 1.9762 1.4588 0.7130 -0.1912 -0.7615 -0.9366 -1.1270 -1.3919 -1.5478 -1.5113 -1.4578 -1.4805 -1.4716 -1.3454 -1.1584 -0.9561 -0.7301 -0.2194 0.6834 1.3890 - S W 85.00 2.0541 2.2802 2.6330 2.8441 2.6655 2.0992 1.3027 0.3064 -0.4145 -0.6504 -1.0534 -1.6161 -2.0029 -2.0055 -1.9059 -2.0404 -2.1659 -1.9956 -1.6775 -1.3860 -1.0379 -0.2167 1.0108 1.8322 - S W 84.00 2.5545 2.8673 3.2673 3.5080 3.3833 2.9020 2.1124 0.9183 -0.0577 -0.5105 -1.2508 -2.1887 -2.8152 -2.8015 -2.6171 -2.7235 -2.8389 -2.4698 -2.0052 -1.6590 -1.2545 -0.2068 1.3078 2.2866 - S W 83.00 3.2487 3.6859 4.0868 4.2241 4.0816 3.8181 3.1381 1.5409 0.2242 -0.4795 -1.5970 -3.0353 -3.7077 -3.7108 -3.4892 -3.3724 -3.2935 -2.8075 -2.2864 -1.8489 -1.2274 0.0485 1.7001 2.7714 - S W 82.00 4.2745 4.8863 5.0790 4.8882 4.6630 4.6842 3.9609 2.1878 0.5001 -0.5881 -2.1153 -3.9936 -4.8508 -4.8219 -4.4806 -4.0023 -3.6101 -3.0276 -2.6862 -2.0084 -0.9854 0.3570 2.1996 3.4133 - S W 81.00 5.1717 5.7691 5.7677 5.5068 5.2691 5.2430 4.4594 2.6663 0.8706 -0.4397 -2.1656 -4.2892 -5.3969 -5.5843 -5.3469 -4.8862 -4.4960 -3.9257 -3.3864 -2.4795 -1.1616 0.4750 2.6365 4.0982 - S W 80.00 6.0954 6.4469 6.3384 6.1243 5.8536 5.5622 4.6577 2.9194 1.2013 -0.1220 -1.8139 -3.8797 -5.3319 -6.0339 -6.1501 -5.9347 -5.7305 -5.1642 -4.2429 -3.3274 -2.0889 0.4001 3.1146 4.8523 - S W 79.00 6.2262 6.7223 6.6317 6.3726 6.0223 5.6221 4.7662 3.2204 1.6163 0.3015 -1.2684 -3.1683 -4.7469 -6.0985 -6.8115 -6.8601 -6.5772 -5.8531 -4.9027 -4.0292 -2.8425 -0.4316 2.8566 4.7770 - S W 78.00 6.3062 6.9209 6.8610 6.4931 6.0237 5.4334 4.5141 3.0520 1.4539 0.1365 -1.3137 -2.9840 -4.4365 -5.8013 -6.7951 -7.0186 -6.8006 -6.1385 -5.2730 -4.3795 -3.1349 -0.8904 2.4041 4.6109 - S W 77.00 6.4130 7.0490 6.9997 6.5056 5.9145 5.1033 4.0312 2.6017 1.0109 -0.3577 -1.6805 -3.0852 -4.3126 -5.4412 -6.4323 -6.7476 -6.6268 -6.1021 -5.3667 -4.5120 -3.2482 -1.1324 1.9068 4.4309 - S W 76.00 5.7465 6.6580 6.8538 6.4026 5.8127 4.8379 3.6652 2.2375 0.6698 -0.7094 -1.9185 -3.0793 -4.0758 -4.9702 -5.7922 -6.2623 -6.3048 -5.8826 -5.2503 -4.4686 -3.4475 -1.7150 0.9747 3.5482 - S W 75.00 4.8674 6.0529 6.5300 6.2082 5.6733 4.6166 3.3851 1.9681 0.4005 -0.9740 -2.0619 -3.0045 -3.7908 -4.5083 -5.2290 -5.7087 -5.8609 -5.5696 -5.0339 -4.3101 -3.4571 -2.0744 0.1389 2.6101 - S W 74.00 4.1864 5.2957 5.7419 5.5650 5.1489 4.1955 3.0443 1.7216 0.1948 -1.1387 -2.1075 -2.8711 -3.4841 -4.0738 -4.7188 -5.1485 -5.3302 -5.1084 -4.6725 -4.0532 -3.3278 -2.1839 -0.3945 1.9268 - S W 73.00 3.3788 4.3823 4.7393 4.6870 4.4369 3.7086 2.6990 1.4851 0.0303 -1.2331 -2.0887 -2.7022 -3.1647 -3.6040 -4.1086 -4.5869 -4.8385 -4.6289 -4.2521 -3.7689 -3.1571 -2.1646 -0.6805 1.3085 - S W 72.00 2.4836 3.4053 3.7452 3.8036 3.7164 3.2155 2.3615 1.2588 -0.0962 -1.2707 -2.0160 -2.4866 -2.7984 -3.1284 -3.5406 -4.0337 -4.3256 -4.1058 -3.8195 -3.4727 -2.9773 -2.0927 -0.7588 0.9014 - S W 71.00 1.8695 2.6274 2.8631 2.9600 2.9873 2.7178 2.0263 1.0349 -0.1876 -1.2527 -1.8803 -2.2017 -2.3593 -2.5996 -2.9383 -3.3435 -3.5948 -3.5027 -3.3723 -3.1495 -2.7942 -2.0180 -0.7891 0.6428 - S W 70.00 1.3571 1.9611 2.0866 2.2134 2.3299 2.2440 1.7000 0.8096 -0.2507 -1.1709 -1.6598 -1.8314 -1.8634 -2.0186 -2.2950 -2.5848 -2.7648 -2.8071 -2.8387 -2.8071 -2.6102 -1.9530 -0.8627 0.3635 - S W 69.00 0.8955 1.3982 1.5051 1.6989 1.9064 1.9081 1.4535 0.6333 -0.2955 -1.0675 -1.4108 -1.4522 -1.3851 -1.4617 -1.6861 -1.8590 -1.9301 -2.1295 -2.3167 -2.4658 -2.4161 -1.8634 -0.9286 0.0933 - S W 68.00 0.5330 0.9459 1.0564 1.3117 1.5953 1.6487 1.2547 0.4966 -0.3183 -0.9467 -1.1473 -1.0674 -0.8996 -0.9110 -1.0954 -1.1553 -1.0648 -1.4615 -1.7962 -2.0813 -2.1896 -1.7634 -0.9397 -0.0854 - S W 67.00 0.2410 0.5590 0.6710 0.9765 1.3333 1.4363 1.1007 0.4009 -0.3115 -0.7924 -0.8616 -0.6680 -0.4050 -0.3565 -0.5008 -0.4973 -0.3266 -0.8143 -1.2390 -1.6125 -1.9094 -1.6582 -0.9380 -0.2293 - S W 66.00 -0.0291 0.1887 0.3053 0.6533 1.0861 1.2489 0.9903 0.3591 -0.2537 -0.5620 -0.5287 -0.2375 0.1061 0.2289 0.1346 0.1150 0.2899 -0.1000 -0.4891 -1.0024 -1.5612 -1.5316 -0.9416 -0.3820 - S W 65.00 -0.2090 -0.0561 0.0618 0.4061 0.8565 1.0471 0.8498 0.2951 -0.2076 -0.3446 -0.1925 0.1891 0.5635 0.7186 0.6415 0.5749 0.7246 0.5087 0.2182 -0.4865 -1.2618 -1.3997 -0.9291 -0.4885 - S W 64.00 -0.3244 -0.2144 -0.0987 0.2136 0.6108 0.7984 0.6686 0.1980 -0.1887 -0.1703 0.1021 0.5642 0.9445 1.0995 1.0025 0.8589 0.9602 0.8777 0.6482 -0.0818 -0.9583 -1.2495 -0.8952 -0.5551 - S W 63.00 -0.3709 -0.2786 -0.1597 0.1181 0.3964 0.4944 0.4083 0.0411 -0.2051 -0.0688 0.3020 0.8521 1.2325 1.3539 1.1896 0.9507 0.9915 1.0155 0.7988 0.0932 -0.7158 -1.0673 -0.8348 -0.5811 - S W 62.00 -0.3069 -0.1884 -0.0484 0.2131 0.2881 0.1128 -0.0294 -0.2081 -0.2608 -0.0578 0.3977 1.0448 1.3947 1.4464 1.1680 0.8229 0.7830 0.8645 0.5640 -0.0878 -0.6151 -0.8617 -0.7375 -0.5446 - S W 61.00 -0.2398 -0.1072 0.0473 0.2899 0.1774 -0.2201 -0.3517 -0.3789 -0.2865 -0.0471 0.4401 1.1138 1.4181 1.4173 1.0812 0.6771 0.5767 0.6964 0.3668 -0.2016 -0.4959 -0.6550 -0.6136 -0.4783 - S W 60.00 -0.1725 -0.0443 0.1120 0.3249 0.0775 -0.4631 -0.5385 -0.4490 -0.2731 -0.0362 0.4195 1.0444 1.2878 1.2576 0.9214 0.5189 0.3914 0.5239 0.2197 -0.2374 -0.3680 -0.4656 -0.4713 -0.3827 - S W 59.00 -0.1099 -0.0102 0.1172 0.2761 0.0094 -0.5229 -0.5385 -0.4014 -0.2156 -0.0238 0.3316 0.8133 0.9881 0.9524 0.6806 0.3523 0.2454 0.3549 0.1171 -0.2014 -0.2409 -0.2951 -0.3171 -0.2646 - S W 58.00 -0.0533 -0.0049 0.0570 0.1331 0.0078 -0.2860 -0.2913 -0.2109 -0.1096 -0.0103 0.1712 0.4067 0.5019 0.4861 0.3497 0.1783 0.1256 0.1799 0.0592 -0.0964 -0.1150 -0.1420 -0.1529 -0.1271 - S W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -swby3.pot - SOUTHERN, WINTER BY COEFFICIENT FOR BY < 0 AND BZ < 0 - S W 90.00 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 -1.1596 - S W 89.00 -1.3914 -1.3532 -1.2915 -1.2287 -1.1851 -1.1748 -1.1957 -1.2313 -1.2471 -1.2403 -1.2146 -1.1735 -1.1211 -1.0617 -1.0013 -0.9503 -0.9202 -0.9153 -0.9361 -0.9917 -1.0903 -1.2121 -1.3196 -1.3833 - S W 88.00 -1.7120 -1.4867 -1.2309 -0.9922 -0.8163 -0.8034 -1.0126 -1.2556 -1.3027 -1.2668 -1.2038 -1.1148 -1.0110 -0.8837 -0.7161 -0.5495 -0.4764 -0.4704 -0.4329 -0.4573 -0.7477 -1.2011 -1.5760 -1.7635 - S W 87.00 -2.1053 -1.7036 -1.2634 -0.8636 -0.5577 -0.5277 -0.9080 -1.2996 -1.3101 -1.2067 -1.1138 -1.0127 -0.8730 -0.6915 -0.4611 -0.2051 -0.0993 -0.1007 -0.0275 -0.0195 -0.4473 -1.2276 -1.8856 -2.2092 - S W 86.00 -2.4966 -1.9804 -1.3765 -0.8653 -0.4833 -0.4133 -0.8990 -1.3183 -1.1809 -0.9773 -0.8830 -0.8635 -0.7228 -0.4304 -0.1697 0.0854 0.1903 0.1647 0.2681 0.3815 -0.1688 -1.3198 -2.2045 -2.6217 - S W 85.00 -2.8077 -2.3435 -1.5535 -0.9998 -0.6604 -0.4628 -0.9575 -1.2574 -0.8610 -0.5307 -0.4457 -0.7116 -0.5957 -0.0469 0.1944 0.2789 0.3970 0.3537 0.4805 0.7765 0.1521 -1.4924 -2.4973 -2.9026 - S W 84.00 -2.7818 -2.3369 -1.4741 -0.8430 -0.4215 -0.1114 -0.6531 -0.9597 -0.4764 -0.0820 -0.0110 -0.3789 -0.2660 0.4162 0.6958 0.6398 0.5980 0.4581 0.6081 0.9667 0.3082 -1.6591 -2.6585 -2.9296 - S W 83.00 -2.3547 -1.9447 -1.2105 -0.4759 0.0620 0.3757 -0.1472 -0.5182 -0.0818 0.3451 0.3695 0.0969 0.2148 0.8775 1.2312 1.0915 0.8051 0.4951 0.6139 0.9544 0.2056 -1.8279 -2.6415 -2.5763 - S W 82.00 -1.4657 -1.1419 -0.7980 -0.0209 0.6684 0.8882 0.4940 0.0569 0.3762 0.8248 0.7280 0.7771 0.9472 1.2444 1.7961 1.6207 0.9211 0.5056 0.5462 0.3948 -0.6824 -1.7290 -2.0226 -1.6755 - S W 81.00 -1.1552 -0.8910 -0.6926 -0.0422 0.7181 0.8773 0.5659 0.2548 0.5146 0.8996 0.8931 1.0853 1.2761 1.3486 1.8604 1.6939 0.9042 0.4946 0.4800 0.1888 -0.9022 -1.7513 -1.8009 -1.3887 - S W 80.00 -1.1941 -0.9037 -0.7333 -0.3481 0.2067 0.3609 0.2105 0.1698 0.3852 0.7220 0.8810 1.0573 1.2108 1.1859 1.3508 1.2417 0.8501 0.5171 0.4338 0.1348 -0.7728 -1.5914 -1.6954 -1.4304 - S W 79.00 -1.0328 -0.8179 -0.7060 -0.3902 0.0675 0.1353 0.0203 0.0534 0.2785 0.6097 0.8501 1.0551 1.1391 1.0618 1.1596 1.0886 0.8027 0.4910 0.3482 0.0114 -0.6176 -1.2568 -1.4444 -1.2469 - S W 78.00 -0.9274 -0.7833 -0.7197 -0.4890 -0.1374 -0.0656 -0.1130 -0.0391 0.1710 0.4556 0.7117 0.9363 1.0022 0.8839 0.8997 0.8588 0.6572 0.4180 0.1891 -0.1435 -0.6108 -1.0826 -1.2749 -1.1016 - S W 77.00 -0.8690 -0.7948 -0.7724 -0.6175 -0.3429 -0.2296 -0.1982 -0.1163 0.0579 0.3036 0.5512 0.7400 0.7808 0.6746 0.6512 0.6095 0.4771 0.3157 0.0411 -0.2509 -0.5693 -0.8808 -1.0318 -0.9804 - S W 76.00 -0.8465 -0.7793 -0.7581 -0.6753 -0.4725 -0.3316 -0.2634 -0.1921 -0.0433 0.1798 0.4093 0.5605 0.5757 0.4765 0.4451 0.4311 0.3529 0.2222 -0.0627 -0.3112 -0.3084 -0.5799 -0.8626 -0.9164 - S W 75.00 -0.8322 -0.7486 -0.7172 -0.6900 -0.5587 -0.4056 -0.3244 -0.2709 -0.1294 0.0681 0.2538 0.3875 0.4132 0.3299 0.3105 0.3288 0.2708 0.1319 -0.1285 -0.3089 -0.2581 -0.4579 -0.7668 -0.8836 - S W 74.00 -0.7943 -0.7055 -0.6783 -0.6743 -0.5940 -0.4360 -0.3480 -0.2991 -0.1718 0.0042 0.1671 0.2931 0.3273 0.2810 0.2778 0.2789 0.2049 0.0642 -0.1460 -0.2778 -0.2324 -0.3962 -0.6988 -0.8370 - S W 73.00 -0.7462 -0.6522 -0.6286 -0.6354 -0.5879 -0.4406 -0.3531 -0.3022 -0.1818 -0.0247 0.1245 0.2369 0.2741 0.2457 0.2501 0.2321 0.1340 0.0103 -0.1529 -0.2453 -0.1937 -0.3476 -0.6407 -0.7872 - S W 72.00 -0.6906 -0.5860 -0.5570 -0.5768 -0.5540 -0.4325 -0.3516 -0.2878 -0.1646 -0.0276 0.1009 0.1993 0.2373 0.2119 0.1924 0.1504 0.0552 -0.0301 -0.1533 -0.2079 -0.1455 -0.3090 -0.5932 -0.7360 - S W 71.00 -0.6285 -0.5118 -0.4807 -0.5081 -0.5032 -0.4146 -0.3451 -0.2650 -0.1367 -0.0154 0.0903 0.1736 0.2127 0.1951 0.1555 0.1010 0.0125 -0.0600 -0.1466 -0.1623 -0.1064 -0.2806 -0.5530 -0.6852 - S W 70.00 -0.5607 -0.4343 -0.4087 -0.4463 -0.4552 -0.3937 -0.3358 -0.2354 -0.0996 0.0060 0.0905 0.1570 0.1949 0.1905 0.1345 0.0582 -0.0309 -0.0940 -0.1150 -0.0996 -0.0750 -0.2604 -0.5106 -0.6289 - S W 69.00 -0.4808 -0.3431 -0.3348 -0.3954 -0.4113 -0.3590 -0.3057 -0.2029 -0.0686 0.0218 0.0898 0.1384 0.1667 0.1740 0.1103 0.0187 -0.0647 -0.1082 -0.0926 -0.0728 -0.0763 -0.2558 -0.4712 -0.5676 - S W 68.00 -0.3946 -0.2399 -0.2509 -0.3475 -0.3667 -0.3150 -0.2615 -0.1679 -0.0449 0.0317 0.0879 0.1185 0.1298 0.1422 0.0757 -0.0127 -0.0792 -0.1037 -0.0825 -0.0638 -0.0856 -0.2576 -0.4346 -0.5054 - S W 67.00 -0.3082 -0.1288 -0.1624 -0.3054 -0.3245 -0.2662 -0.2076 -0.1316 -0.0296 0.0377 0.0841 0.0900 0.0845 0.0933 0.0260 -0.0376 -0.0728 -0.0861 -0.0750 -0.0603 -0.1051 -0.2602 -0.4002 -0.4449 - S W 66.00 -0.2258 -0.0275 -0.0908 -0.2713 -0.2835 -0.2160 -0.1521 -0.0941 -0.0202 0.0392 0.0713 0.0389 0.0266 0.0317 -0.0259 -0.0599 -0.0256 -0.0389 -0.0671 -0.0672 -0.1454 -0.2628 -0.3655 -0.3841 - S W 65.00 -0.1766 0.0185 -0.0521 -0.2327 -0.2426 -0.1730 -0.1098 -0.0656 -0.0116 0.0411 0.0571 -0.0024 -0.0213 -0.0138 -0.0528 -0.0487 0.0796 0.0175 -0.0540 -0.0712 -0.1706 -0.2610 -0.3333 -0.3335 - S W 64.00 -0.1470 0.0338 -0.0284 -0.1882 -0.1950 -0.1259 -0.0665 -0.0407 -0.0051 0.0436 0.0442 -0.0354 -0.0609 -0.0464 -0.0601 -0.0033 0.1987 0.0862 -0.0309 -0.0735 -0.1890 -0.2511 -0.2994 -0.2872 - S W 63.00 -0.1346 0.0211 -0.0127 -0.1320 -0.1241 -0.0612 -0.0158 -0.0233 -0.0042 0.0469 0.0272 -0.0663 -0.0912 -0.0667 -0.0472 0.0855 0.3525 0.1811 0.0090 -0.0757 -0.1980 -0.2307 -0.2566 -0.2387 - S W 62.00 -0.1408 -0.0298 -0.0038 -0.0424 -0.0131 0.0298 0.0303 -0.0291 -0.0119 0.0510 0.0018 -0.0928 -0.1125 -0.0736 -0.0054 0.2337 0.5396 0.2953 0.0684 -0.0759 -0.1961 -0.1948 -0.2100 -0.1904 - S W 61.00 -0.1394 -0.0703 0.0071 0.0502 0.1044 0.1267 0.0803 -0.0346 -0.0192 0.0537 -0.0163 -0.1084 -0.1229 -0.0744 0.0222 0.3114 0.6508 0.3911 0.1320 -0.0674 -0.1778 -0.1509 -0.1637 -0.1465 - S W 60.00 -0.1280 -0.0945 0.0157 0.1299 0.2256 0.2221 0.1252 -0.0377 -0.0245 0.0516 -0.0273 -0.1080 -0.1184 -0.0675 0.0352 0.3307 0.6754 0.4388 0.1771 -0.0506 -0.1432 -0.1070 -0.1179 -0.1037 - S W 59.00 -0.0994 -0.0908 0.0182 0.1620 0.3104 0.2744 0.1376 -0.0342 -0.0246 0.0426 -0.0274 -0.0895 -0.0963 -0.0522 0.0341 0.2808 0.5777 0.3857 0.1671 -0.0331 -0.0992 -0.0670 -0.0750 -0.0638 - S W 58.00 -0.0503 -0.0462 0.0106 0.0896 0.2015 0.1754 0.0850 -0.0209 -0.0147 0.0239 -0.0145 -0.0473 -0.0514 -0.0274 0.0188 0.1518 0.3132 0.2064 0.0871 -0.0157 -0.0472 -0.0327 -0.0369 -0.0318 - S W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -swby4.pot - SOUTHERN, WINTER BY COEFFICIENT FOR BY < 0 AND BZ > 0 - S W 90.00 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 0.0493 - S W 89.00 -0.0505 -0.0490 -0.0462 -0.0392 -0.0200 0.0167 0.0667 0.1175 0.1561 0.1780 0.1826 0.1707 0.1488 0.1243 0.1017 0.0826 0.0659 0.0496 0.0328 0.0144 -0.0059 -0.0253 -0.0401 -0.0484 - S W 88.00 -0.1432 -0.1231 -0.1389 -0.1846 -0.1924 -0.1065 0.0572 0.2277 0.3160 0.3507 0.3513 0.2870 0.2009 0.1329 0.0896 0.0690 0.0566 0.0369 0.0189 -0.0098 -0.0637 -0.1190 -0.1553 -0.1637 - S W 87.00 -0.2694 -0.2342 -0.2604 -0.3459 -0.3697 -0.2223 0.0740 0.3832 0.5277 0.5758 0.5731 0.4536 0.3017 0.1890 0.1168 0.0837 0.0681 0.0403 0.0178 -0.0225 -0.1126 -0.2120 -0.2810 -0.3018 - S W 86.00 -0.4418 -0.4144 -0.4386 -0.5246 -0.5398 -0.3265 0.1062 0.5590 0.7710 0.8351 0.8263 0.6561 0.4517 0.3051 0.1915 0.1225 0.0916 0.0546 0.0219 -0.0321 -0.1507 -0.2980 -0.4123 -0.4601 - S W 85.00 -0.6639 -0.7024 -0.7044 -0.6985 -0.6691 -0.4190 0.1306 0.7118 1.0392 1.1254 1.0863 0.8821 0.6591 0.5051 0.3259 0.1831 0.1287 0.0846 0.0170 -0.0682 -0.1867 -0.3706 -0.5473 -0.6208 - S W 84.00 -0.9081 -1.0039 -1.0069 -0.9688 -0.8962 -0.6139 0.0279 0.7229 1.1461 1.2995 1.2837 1.0956 0.8940 0.7101 0.4677 0.2785 0.2200 0.1479 0.0321 -0.0922 -0.2400 -0.4535 -0.6859 -0.8094 - S W 83.00 -1.2272 -1.3640 -1.4186 -1.3740 -1.1772 -0.8322 -0.1870 0.6323 1.1316 1.3694 1.4187 1.2642 1.0783 0.8679 0.5880 0.3803 0.3284 0.2466 0.0785 -0.1253 -0.3471 -0.5683 -0.8276 -1.0454 - S W 82.00 -1.6634 -1.7887 -1.9610 -1.9491 -1.4988 -0.9624 -0.3555 0.4621 1.0165 1.3654 1.4681 1.3885 1.2935 1.0310 0.6734 0.4666 0.4434 0.4050 0.2148 -0.1404 -0.4909 -0.6788 -0.9383 -1.4079 - S W 81.00 -1.9100 -2.0437 -2.1339 -2.0496 -1.5599 -0.9696 -0.4071 0.2880 0.8190 1.2244 1.3811 1.3920 1.3607 1.0929 0.7340 0.5529 0.5127 0.4557 0.2522 -0.1274 -0.5589 -0.7402 -1.0374 -1.5950 - S W 80.00 -2.0321 -2.1918 -2.1411 -1.9429 -1.4585 -0.8748 -0.3810 0.1210 0.5933 0.9523 1.1470 1.2822 1.2616 1.0381 0.7887 0.6455 0.5420 0.4164 0.2060 -0.1007 -0.4457 -0.7209 -1.1343 -1.6308 - S W 79.00 -1.8661 -2.0465 -2.0703 -1.9042 -1.4328 -0.8270 -0.3885 -0.0065 0.3789 0.6683 0.8751 1.0735 1.0786 0.9436 0.7269 0.5878 0.5070 0.3954 0.1738 -0.1498 -0.4920 -0.8213 -1.2478 -1.6062 - S W 78.00 -1.7314 -1.9229 -1.9778 -1.8358 -1.4033 -0.8120 -0.4229 -0.1309 0.1918 0.4351 0.6229 0.8114 0.8497 0.7757 0.6716 0.5632 0.4939 0.3888 0.1771 -0.1249 -0.4660 -0.8401 -1.2634 -1.5335 - S W 77.00 -1.6654 -1.8588 -1.8920 -1.7600 -1.3712 -0.8074 -0.4578 -0.2447 0.0188 0.2409 0.4006 0.5518 0.6244 0.6180 0.6124 0.5493 0.4882 0.3839 0.2005 -0.0446 -0.3545 -0.7827 -1.2012 -1.4395 - S W 76.00 -1.5864 -1.7422 -1.7621 -1.6503 -1.3335 -0.8004 -0.4625 -0.2732 -0.0516 0.1396 0.2797 0.4140 0.5063 0.5478 0.5586 0.5215 0.4818 0.3946 0.2402 0.0528 -0.1658 -0.5483 -0.9867 -1.3072 - S W 75.00 -1.5212 -1.6036 -1.5951 -1.5082 -1.2711 -0.7948 -0.4547 -0.2628 -0.0730 0.0928 0.2273 0.3507 0.4565 0.5196 0.5213 0.4897 0.4745 0.4160 0.2915 0.1252 -0.0685 -0.3692 -0.7737 -1.1960 - S W 74.00 -1.4188 -1.4297 -1.3657 -1.2971 -1.1166 -0.7115 -0.4052 -0.2340 -0.0781 0.0672 0.1958 0.3090 0.4153 0.4918 0.4959 0.4693 0.4669 0.4223 0.3161 0.1592 -0.0283 -0.2792 -0.6339 -1.0836 - S W 73.00 -1.2654 -1.2178 -1.1140 -1.0525 -0.9188 -0.6015 -0.3373 -0.1928 -0.0752 0.0505 0.1743 0.2796 0.3806 0.4594 0.4724 0.4604 0.4595 0.4184 0.3249 0.1796 -0.0023 -0.2405 -0.5569 -0.9610 - S W 72.00 -1.0675 -0.9876 -0.8796 -0.8222 -0.7220 -0.4822 -0.2615 -0.1433 -0.0672 0.0375 0.1566 0.2547 0.3463 0.4260 0.4548 0.4594 0.4550 0.4089 0.3227 0.1925 0.0149 -0.2339 -0.5330 -0.8664 - S W 71.00 -0.9072 -0.7954 -0.6765 -0.6094 -0.5248 -0.3573 -0.1787 -0.0850 -0.0560 0.0251 0.1393 0.2308 0.3090 0.3869 0.4396 0.4669 0.4501 0.3960 0.3159 0.2043 0.0324 -0.2370 -0.5243 -0.7973 - S W 70.00 -0.7641 -0.6225 -0.4990 -0.4236 -0.3466 -0.2369 -0.0930 -0.0173 -0.0412 0.0107 0.1197 0.2066 0.2696 0.3411 0.4258 0.4839 0.4459 0.3787 0.3058 0.2161 0.0475 -0.2434 -0.5117 -0.7221 - S W 69.00 -0.6331 -0.5083 -0.3947 -0.3140 -0.2440 -0.1510 -0.0205 0.0487 -0.0066 0.0147 0.1055 0.1854 0.2384 0.3056 0.4078 0.4739 0.4148 0.3442 0.2769 0.2064 0.0526 -0.2261 -0.4535 -0.6148 - S W 68.00 -0.5263 -0.4371 -0.3332 -0.2454 -0.1781 -0.0841 0.0474 0.1175 0.0529 0.0405 0.0996 0.1681 0.2150 0.2799 0.3856 0.4303 0.3458 0.2907 0.2283 0.1769 0.0547 -0.1918 -0.3861 -0.5123 - S W 67.00 -0.4371 -0.3924 -0.2950 -0.1982 -0.1323 -0.0290 0.1125 0.1938 0.1520 0.0962 0.1036 0.1554 0.2013 0.2650 0.3588 0.3501 0.2437 0.2175 0.1545 0.1214 0.0544 -0.1330 -0.2939 -0.4012 - S W 66.00 -0.3543 -0.3657 -0.2718 -0.1638 -0.1002 0.0189 0.1792 0.2853 0.3244 0.2060 0.1202 0.1480 0.2010 0.2643 0.3234 0.2253 0.1091 0.1105 0.0268 0.0267 0.0478 -0.0348 -0.1424 -0.2611 - S W 65.00 -0.2889 -0.3392 -0.2524 -0.1399 -0.0779 0.0492 0.2273 0.3590 0.4546 0.2891 0.1274 0.1358 0.1942 0.2548 0.2846 0.1251 0.0135 0.0260 -0.0824 -0.0492 0.0419 0.0407 -0.0267 -0.1554 - S W 64.00 -0.2298 -0.3099 -0.2351 -0.1261 -0.0692 0.0504 0.2347 0.3896 0.5107 0.3222 0.1209 0.1177 0.1796 0.2362 0.2433 0.0524 -0.0401 -0.0183 -0.1366 -0.1026 0.0293 0.0920 0.0506 -0.0751 - S W 63.00 -0.1686 -0.2694 -0.2193 -0.1303 -0.0878 -0.0051 0.1653 0.3489 0.4712 0.2874 0.0950 0.0946 0.1559 0.2061 0.1971 0.0088 -0.0522 -0.0229 -0.1314 -0.1138 0.0064 0.1038 0.0826 -0.0202 - S W 62.00 -0.1144 -0.2136 -0.2059 -0.1655 -0.1513 -0.1632 -0.0681 0.1830 0.3050 0.1640 0.0457 0.0650 0.1236 0.1643 0.1460 -0.0018 -0.0148 0.0228 -0.0403 -0.0634 -0.0242 0.0641 0.0532 -0.0069 - S W 61.00 -0.0675 -0.1567 -0.1855 -0.1916 -0.2078 -0.2951 -0.2384 0.0519 0.1677 0.0670 0.0074 0.0399 0.0932 0.1247 0.1015 -0.0091 0.0127 0.0548 0.0257 -0.0241 -0.0439 0.0322 0.0295 0.0035 - S W 60.00 -0.0322 -0.1019 -0.1515 -0.1958 -0.2425 -0.3777 -0.3334 -0.0349 0.0705 0.0029 -0.0167 0.0208 0.0659 0.0897 0.0656 -0.0121 0.0274 0.0673 0.0585 -0.0002 -0.0496 0.0116 0.0134 0.0090 - S W 59.00 -0.0121 -0.0590 -0.1048 -0.1600 -0.2282 -0.3633 -0.3238 -0.0676 0.0162 -0.0252 -0.0241 0.0084 0.0418 0.0578 0.0382 -0.0109 0.0278 0.0596 0.0602 0.0088 -0.0410 0.0015 0.0046 0.0091 - S W 58.00 -0.0060 -0.0286 -0.0511 -0.0796 -0.1241 -0.1965 -0.1738 -0.0362 0.0080 -0.0129 -0.0124 0.0042 0.0212 0.0293 0.0194 -0.0050 0.0142 0.0304 0.0301 0.0041 -0.0195 0.0006 0.0022 0.0043 - S W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -swby5.pot - SOUTHERN, WINTER BY COEFFICIENT FOR BY > 0 AND BZ < 0 - S W 90.00 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 -0.0774 - S W 89.00 -0.1995 -0.1385 -0.0909 -0.0477 0.0019 0.0597 0.1128 0.1513 0.1673 0.1628 0.1455 0.1195 0.0859 0.0462 -0.0020 -0.0638 -0.1399 -0.2241 -0.3019 -0.3551 -0.3769 -0.3692 -0.3319 -0.2696 - S W 88.00 0.2731 0.3959 0.4011 0.3823 0.4420 0.6245 0.8014 0.8983 0.9133 0.8484 0.7925 0.7430 0.6804 0.6362 0.6028 0.5179 0.3566 0.1199 -0.1303 -0.2601 -0.2787 -0.2674 -0.1759 0.0433 - S W 87.00 0.6389 0.7711 0.7016 0.6262 0.7365 1.0644 1.3738 1.5288 1.5427 1.4398 1.3646 1.3194 1.2257 1.1263 1.0534 0.9285 0.6966 0.3328 -0.0382 -0.2067 -0.2013 -0.1797 -0.0634 0.2885 - S W 86.00 0.9431 0.9988 0.8414 0.7614 0.9864 1.4915 1.9253 2.1397 2.1527 2.0148 1.9228 1.8707 1.7282 1.5890 1.4065 1.1594 0.8610 0.4452 0.0510 -0.1466 -0.0745 0.0152 0.1356 0.5425 - S W 85.00 1.1892 1.0187 0.8004 0.8363 1.2624 1.9300 2.4244 2.6933 2.7436 2.6245 2.5174 2.4421 2.2698 2.0350 1.6259 1.1820 0.8794 0.5328 0.1909 -0.0321 0.1030 0.3842 0.5034 0.8473 - S W 84.00 1.3786 1.0877 0.7765 0.7750 1.1836 1.9593 2.5467 2.8554 2.9059 2.8502 2.8367 2.7612 2.4982 2.1566 1.6237 1.1146 0.8110 0.4658 0.1256 -0.0866 0.0594 0.4673 0.6657 1.0519 - S W 83.00 1.4597 1.1571 0.7867 0.6786 0.9798 1.7254 2.4186 2.7202 2.7534 2.8206 2.9932 2.9485 2.5431 2.0211 1.4460 0.9939 0.6497 0.2702 -0.0824 -0.3360 -0.2681 0.2329 0.6029 1.1983 - S W 82.00 1.4010 1.2527 0.8502 0.5807 0.7348 1.4085 2.1752 2.3676 2.3087 2.5975 3.1058 3.0759 2.4253 1.6662 1.1238 0.7934 0.3381 -0.0926 -0.3950 -0.6271 -0.5926 -0.2587 0.4671 1.2982 - S W 81.00 1.1481 1.0990 0.7927 0.5462 0.5927 1.1099 1.7717 2.0013 2.0263 2.4438 2.9858 3.0285 2.4091 1.5126 0.9469 0.6711 0.2315 -0.1978 -0.4621 -0.6548 -0.6252 -0.4295 0.1705 0.9340 - S W 80.00 0.8805 0.8769 0.7156 0.5826 0.6226 0.9008 1.3617 1.6721 1.8768 2.3828 2.7655 2.7649 2.4158 1.5847 0.9508 0.6344 0.3786 -0.0384 -0.3598 -0.5101 -0.4820 -0.4867 -0.2279 0.4524 - S W 79.00 0.7832 0.7725 0.5523 0.4023 0.4643 0.7628 1.2065 1.4715 1.7636 2.3730 2.7573 2.7433 2.5051 1.7264 1.0756 0.6990 0.3704 -0.0269 -0.2582 -0.2909 -0.2940 -0.4044 -0.2417 0.3202 - S W 78.00 0.5496 0.5896 0.4178 0.2876 0.3412 0.6095 1.0234 1.2573 1.5373 2.0351 2.2893 2.2559 2.1230 1.5062 0.9877 0.6361 0.3416 0.0142 -0.1618 -0.2264 -0.2695 -0.3525 -0.2818 0.1660 - S W 77.00 0.2142 0.3652 0.3080 0.2254 0.2591 0.4777 0.8457 1.0434 1.2524 1.5640 1.5978 1.4644 1.3532 1.0588 0.7648 0.4962 0.2889 0.0622 -0.0935 -0.1859 -0.2339 -0.2944 -0.3301 -0.1041 - S W 76.00 0.0387 0.2010 0.2166 0.1859 0.2357 0.4413 0.7641 0.9232 1.0304 1.1877 1.1405 0.9511 0.8041 0.6602 0.5095 0.3439 0.2107 0.0639 -0.0531 -0.1245 -0.1369 -0.2141 -0.3316 -0.2341 - S W 75.00 -0.1157 0.0679 0.1552 0.1635 0.2360 0.4453 0.7257 0.8561 0.8593 0.8579 0.7521 0.5999 0.4943 0.3869 0.3104 0.2316 0.1432 0.0497 -0.0287 -0.1096 -0.1305 -0.1805 -0.3245 -0.3310 - S W 74.00 -0.2239 -0.0103 0.1178 0.1435 0.2337 0.4460 0.6768 0.7721 0.7081 0.6250 0.5207 0.4072 0.3233 0.2874 0.2528 0.1817 0.0981 0.0223 -0.0316 -0.1022 -0.1291 -0.1732 -0.3230 -0.3823 - S W 73.00 -0.2794 -0.0580 0.0865 0.1228 0.2361 0.4408 0.6347 0.6810 0.5670 0.4640 0.3848 0.2908 0.2165 0.2126 0.2062 0.1331 0.0508 -0.0075 -0.0421 -0.0991 -0.1274 -0.1715 -0.3223 -0.4050 - S W 72.00 -0.3036 -0.0932 0.0460 0.1006 0.2438 0.4303 0.5737 0.5837 0.4637 0.3602 0.2940 0.2145 0.1452 0.1210 0.1091 0.0690 0.0071 -0.0328 -0.0522 -0.0975 -0.1251 -0.1764 -0.3202 -0.4046 - S W 71.00 -0.3073 -0.1125 0.0073 0.0832 0.2570 0.4191 0.5044 0.4909 0.3827 0.2846 0.2314 0.1666 0.0975 0.0584 0.0432 0.0364 -0.0141 -0.0548 -0.0638 -0.0961 -0.1246 -0.1845 -0.3189 -0.3918 - S W 70.00 -0.2970 -0.1167 -0.0219 0.0729 0.2735 0.4106 0.4321 0.3935 0.3054 0.2261 0.1951 0.1409 0.0651 0.0114 -0.0038 0.0136 -0.0336 -0.0834 -0.0842 -0.0915 -0.1253 -0.1980 -0.3152 -0.3647 - S W 69.00 -0.2706 -0.1092 -0.0334 0.0729 0.2678 0.3806 0.3722 0.3226 0.2433 0.1770 0.1641 0.1141 0.0317 -0.0264 -0.0369 -0.0009 -0.0422 -0.0871 -0.0836 -0.0919 -0.1344 -0.2141 -0.3122 -0.3373 - S W 68.00 -0.2296 -0.0928 -0.0368 0.0773 0.2512 0.3377 0.3202 0.2752 0.2012 0.1381 0.1379 0.0872 -0.0037 -0.0612 -0.0675 -0.0038 -0.0351 -0.0714 -0.0747 -0.0938 -0.1457 -0.2308 -0.3114 -0.3106 - S W 67.00 -0.1796 -0.0701 -0.0339 0.0851 0.2281 0.2869 0.2736 0.2479 0.1815 0.1013 0.1041 0.0519 -0.0415 -0.0906 -0.0839 0.0041 -0.0085 -0.0390 -0.0587 -0.0948 -0.1629 -0.2526 -0.3105 -0.2846 - S W 66.00 -0.1247 -0.0462 -0.0269 0.0955 0.1995 0.2318 0.2350 0.2368 0.1804 0.0607 0.0330 -0.0043 -0.0836 -0.1136 -0.0817 0.0252 0.0619 0.0355 -0.0260 -0.0981 -0.1880 -0.2772 -0.3105 -0.2582 - S W 65.00 -0.0883 -0.0298 -0.0162 0.0995 0.1709 0.1881 0.2066 0.2297 0.1863 0.0387 -0.0025 -0.0303 -0.1027 -0.1177 -0.0700 0.0479 0.1519 0.0899 -0.0135 -0.1079 -0.2038 -0.2857 -0.2986 -0.2287 - S W 64.00 -0.0608 -0.0172 -0.0028 0.0982 0.1368 0.1433 0.1788 0.2260 0.2070 0.0412 -0.0064 -0.0288 -0.0984 -0.1028 -0.0480 0.0677 0.2077 0.1208 -0.0220 -0.1276 -0.2133 -0.2768 -0.2728 -0.1937 - S W 63.00 -0.0399 -0.0072 0.0147 0.0916 0.0844 0.0851 0.1480 0.2273 0.2484 0.0848 0.0242 0.0045 -0.0673 -0.0657 -0.0116 0.0849 0.2365 0.1230 -0.0661 -0.1608 -0.2145 -0.2434 -0.2216 -0.1480 - S W 62.00 -0.0275 -0.0004 0.0424 0.0761 0.0008 0.0090 0.1250 0.2374 0.3125 0.1879 0.1084 0.0825 -0.0023 0.0008 0.0461 0.1004 0.2342 0.0844 -0.1597 -0.2209 -0.2048 -0.1732 -0.1440 -0.0928 - S W 61.00 -0.0170 0.0051 0.0672 0.0582 -0.0893 -0.0737 0.0960 0.2414 0.3654 0.2671 0.1667 0.1403 0.0495 0.0500 0.0814 0.1040 0.2262 0.0553 -0.2478 -0.2772 -0.1795 -0.1020 -0.0791 -0.0489 - S W 60.00 -0.0083 0.0084 0.0813 0.0399 -0.1837 -0.1582 0.0611 0.2298 0.3894 0.3080 0.1932 0.1648 0.0759 0.0746 0.0926 0.0964 0.2012 0.0296 -0.2956 -0.2869 -0.1418 -0.0468 -0.0304 -0.0154 - S W 59.00 -0.0025 0.0085 0.0753 0.0222 -0.2488 -0.2099 0.0309 0.1932 0.3522 0.2774 0.1695 0.1469 0.0750 0.0719 0.0795 0.0755 0.1566 0.0113 -0.2654 -0.2310 -0.0967 -0.0147 -0.0034 0.0032 - S W 58.00 -0.0012 0.0047 0.0394 0.0110 -0.1610 -0.1332 0.0201 0.1206 0.2166 0.1542 0.0886 0.0777 0.0402 0.0383 0.0416 0.0410 0.0841 0.0048 -0.1373 -0.1108 -0.0460 -0.0073 -0.0017 0.0016 - S W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -swby6.pot - SOUTHERN, WINTER BY COEFFICIENT FOR BY > 0 AND BZ > 0 - S W 90.00 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 1.6573 - S W 89.00 1.4942 1.5234 1.5589 1.5981 1.6380 1.6776 1.7165 1.7542 1.7906 1.8251 1.8537 1.8703 1.8695 1.8474 1.8038 1.7448 1.6796 1.6151 1.5557 1.5057 1.4709 1.4549 1.4566 1.4712 - S W 88.00 1.4599 1.5041 1.5745 1.6580 1.7246 1.7839 1.8439 1.8978 1.9549 2.0338 2.1195 2.1839 2.2100 2.1798 2.0723 1.9214 1.7748 1.6487 1.5262 1.4085 1.3300 1.3130 1.3535 1.4089 - S W 87.00 1.3936 1.4386 1.5366 1.6658 1.7666 1.8563 1.9498 2.0244 2.0870 2.1828 2.3049 2.4101 2.4619 2.4203 2.2485 2.0110 1.7873 1.6038 1.4303 1.2718 1.1710 1.1623 1.2416 1.3286 - S W 86.00 1.2965 1.3310 1.4461 1.6194 1.7676 1.9057 2.0607 2.1812 2.2368 2.3013 2.4234 2.5683 2.6449 2.5738 2.3406 2.0398 1.7470 1.5109 1.3108 1.1377 1.0297 1.0356 1.1423 1.2374 - S W 85.00 1.1582 1.1923 1.3058 1.5069 1.7190 1.9214 2.1720 2.4023 2.4474 2.3954 2.4578 2.6628 2.7720 2.6179 2.3365 2.0507 1.7353 1.4102 1.1561 0.9883 0.9188 0.9605 1.0563 1.1265 - S W 84.00 1.0884 1.1157 1.2056 1.3935 1.6182 1.8430 2.1261 2.4075 2.4951 2.4629 2.5104 2.6873 2.7661 2.5947 2.3147 2.0331 1.6764 1.2814 0.9836 0.8169 0.7764 0.8712 0.9713 1.0428 - S W 83.00 1.0750 1.1135 1.1225 1.2422 1.4701 1.6949 1.9235 2.2318 2.4318 2.5322 2.6003 2.6412 2.6152 2.4761 2.2503 1.9469 1.5278 1.0994 0.7563 0.5913 0.6345 0.8057 0.9092 0.9701 - S W 82.00 1.1316 1.2254 1.0793 1.0498 1.2587 1.5305 1.6766 1.8990 2.2702 2.6469 2.7636 2.5681 2.3633 2.2872 2.1613 1.8287 1.2751 0.7782 0.4421 0.3534 0.5356 0.7716 0.8547 0.8746 - S W 81.00 1.0658 1.1487 0.9986 0.9494 1.0962 1.3313 1.4419 1.6176 1.9625 2.3373 2.4150 2.1560 1.9628 1.9591 1.8596 1.5073 0.9483 0.5098 0.2605 0.1993 0.3883 0.5993 0.6796 0.7529 - S W 80.00 0.8978 0.9682 0.8855 0.8760 0.9674 1.1140 1.2139 1.3991 1.5770 1.6524 1.5711 1.4102 1.3929 1.4663 1.3412 1.0133 0.5761 0.2916 0.1537 0.0724 0.0842 0.2190 0.4395 0.6262 - S W 79.00 0.7118 0.7884 0.7406 0.7221 0.7548 0.8528 0.9221 1.0696 1.2379 1.2861 1.1969 1.0391 0.8981 0.9521 0.8178 0.5349 0.2592 0.0730 -0.0912 -0.1873 -0.1438 0.0939 0.3684 0.4930 - S W 78.00 0.4780 0.5556 0.5401 0.5279 0.5458 0.6355 0.7112 0.7990 0.8864 0.8985 0.8314 0.6975 0.5294 0.3799 0.2915 0.1117 -0.0127 -0.0852 -0.2371 -0.3314 -0.2847 -0.0659 0.1970 0.3101 - S W 77.00 0.2833 0.3434 0.3367 0.3400 0.3688 0.4804 0.5718 0.5822 0.5436 0.5246 0.4948 0.3961 0.2381 -0.0167 -0.1395 -0.2151 -0.1952 -0.1833 -0.3031 -0.4107 -0.4061 -0.2564 -0.0154 0.1468 - S W 76.00 0.1105 0.1633 0.1673 0.1873 0.2382 0.3626 0.4784 0.4636 0.3853 0.3387 0.3074 0.2309 0.0782 -0.1645 -0.3298 -0.3749 -0.3056 -0.2678 -0.3543 -0.4413 -0.4660 -0.3809 -0.1723 0.0029 - S W 75.00 -0.0267 0.0158 0.0154 0.0639 0.1481 0.2841 0.4166 0.4042 0.3153 0.2548 0.2222 0.1575 0.0095 -0.2106 -0.3727 -0.4244 -0.3690 -0.3397 -0.3945 -0.4450 -0.4736 -0.4367 -0.2787 -0.1087 - S W 74.00 -0.1069 -0.0774 -0.0722 0.0044 0.1037 0.2402 0.3636 0.3547 0.2651 0.2002 0.1679 0.1076 -0.0338 -0.2373 -0.3954 -0.4427 -0.3918 -0.3693 -0.4048 -0.4321 -0.4585 -0.4422 -0.3315 -0.1789 - S W 73.00 -0.1746 -0.1458 -0.1124 -0.0109 0.0934 0.2158 0.3203 0.3104 0.2252 0.1623 0.1305 0.0721 -0.0627 -0.2485 -0.3894 -0.4288 -0.3865 -0.3702 -0.3954 -0.4099 -0.4319 -0.4221 -0.3490 -0.2326 - S W 72.00 -0.2328 -0.1936 -0.1208 0.0018 0.1044 0.2046 0.2837 0.2703 0.1939 0.1361 0.1029 0.0446 -0.0837 -0.2519 -0.3709 -0.3979 -0.3598 -0.3520 -0.3745 -0.3814 -0.3992 -0.3964 -0.3475 -0.2647 - S W 71.00 -0.2662 -0.2181 -0.1110 0.0292 0.1265 0.1999 0.2496 0.2312 0.1693 0.1185 0.0808 0.0212 -0.0989 -0.2458 -0.3364 -0.3392 -0.3065 -0.3177 -0.3460 -0.3459 -0.3598 -0.3666 -0.3411 -0.2830 - S W 70.00 -0.2913 -0.2330 -0.0916 0.0635 0.1532 0.1990 0.2154 0.1906 0.1490 0.1091 0.0626 0.0013 -0.1076 -0.2317 -0.2882 -0.2576 -0.2306 -0.2680 -0.3055 -0.3045 -0.3161 -0.3281 -0.3312 -0.2991 - S W 69.00 -0.2785 -0.2250 -0.0753 0.0793 0.1563 0.1896 0.1877 0.1571 0.1289 0.0995 0.0476 -0.0149 -0.1153 -0.2250 -0.2612 -0.2078 -0.1771 -0.2269 -0.2644 -0.2646 -0.2762 -0.2867 -0.3004 -0.2837 - S W 68.00 -0.2417 -0.2055 -0.0609 0.0861 0.1475 0.1735 0.1622 0.1279 0.1091 0.0908 0.0373 -0.0276 -0.1228 -0.2265 -0.2541 -0.1934 -0.1541 -0.1949 -0.2216 -0.2210 -0.2328 -0.2465 -0.2633 -0.2481 - S W 67.00 -0.1910 -0.1806 -0.0478 0.0869 0.1286 0.1502 0.1379 0.1018 0.0881 0.0829 0.0330 -0.0362 -0.1298 -0.2375 -0.2717 -0.2196 -0.1713 -0.1735 -0.1737 -0.1704 -0.1822 -0.2012 -0.2147 -0.1952 - S W 66.00 -0.1265 -0.1523 -0.0359 0.0831 0.0979 0.1165 0.1129 0.0778 0.0634 0.0750 0.0369 -0.0402 -0.1363 -0.2596 -0.3185 -0.2945 -0.2271 -0.1627 -0.1064 -0.1081 -0.1243 -0.1445 -0.1393 -0.1190 - S W 65.00 -0.0777 -0.1268 -0.0279 0.0755 0.0697 0.0865 0.0903 0.0589 0.0482 0.0712 0.0412 -0.0378 -0.1301 -0.2646 -0.3383 -0.3293 -0.2537 -0.1438 -0.0367 -0.0510 -0.0749 -0.0980 -0.0799 -0.0619 - S W 64.00 -0.0363 -0.1004 -0.0237 0.0603 0.0409 0.0611 0.0751 0.0520 0.0482 0.0728 0.0439 -0.0264 -0.1070 -0.2490 -0.3266 -0.3191 -0.2484 -0.1207 0.0175 0.0017 -0.0293 -0.0623 -0.0377 -0.0202 - S W 63.00 0.0003 -0.0653 -0.0254 0.0308 0.0188 0.0482 0.0729 0.0638 0.0682 0.0819 0.0438 -0.0059 -0.0635 -0.2076 -0.2766 -0.2581 -0.2105 -0.0904 0.0591 0.0422 -0.0020 -0.0435 -0.0150 0.0045 - S W 62.00 0.0229 -0.0176 -0.0349 -0.0215 0.0139 0.0629 0.0980 0.1094 0.1145 0.1000 0.0385 0.0253 0.0006 -0.1382 -0.1823 -0.1364 -0.1326 -0.0482 0.0856 0.0610 -0.0039 -0.0483 -0.0183 0.0035 - S W 61.00 0.0374 0.0209 -0.0426 -0.0689 0.0083 0.0733 0.1121 0.1363 0.1404 0.1068 0.0329 0.0458 0.0454 -0.0807 -0.1033 -0.0416 -0.0676 -0.0152 0.0973 0.0697 -0.0048 -0.0477 -0.0192 0.0025 - S W 60.00 0.0411 0.0430 -0.0441 -0.1017 0.0021 0.0758 0.1122 0.1403 0.1414 0.1001 0.0260 0.0534 0.0674 -0.0397 -0.0464 0.0179 -0.0220 0.0054 0.0935 0.0661 -0.0046 -0.0417 -0.0174 0.0016 - S W 59.00 0.0336 0.0423 -0.0353 -0.0975 -0.0034 0.0650 0.0940 0.1172 0.1152 0.0784 0.0182 0.0464 0.0640 -0.0149 -0.0136 0.0385 -0.0009 0.0128 0.0742 0.0508 -0.0036 -0.0305 -0.0130 0.0009 - S W 58.00 0.0160 0.0201 -0.0171 -0.0470 -0.0031 0.0355 0.0510 0.0616 0.0588 0.0400 0.0095 0.0232 0.0322 -0.0072 -0.0067 0.0189 -0.0002 0.0070 0.0373 0.0243 -0.0018 -0.0146 -0.0063 0.0005 - S W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -swbz1.pot - SOUTHERN, WINTER BZ COEFFICIENT FOR BZ < 0 - S W 90.00 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 -3.1382 - S W 89.00 -3.2241 -3.2234 -3.2145 -3.1910 -3.1483 -3.0922 -3.0418 -3.0122 -3.0004 -2.9930 -2.9845 -2.9842 -3.0002 -3.0342 -3.0860 -3.1434 -3.1955 -3.2395 -3.2681 -3.2753 -3.2648 -3.2461 -3.2300 -3.2236 - S W 88.00 -3.3603 -3.4094 -3.4407 -3.4325 -3.3229 -3.1008 -2.9102 -2.8877 -2.9663 -2.9937 -2.9131 -2.8552 -2.8675 -2.9233 -3.0905 -3.2613 -3.3598 -3.4814 -3.5762 -3.5613 -3.4806 -3.3734 -3.2943 -3.3022 - S W 87.00 -3.4411 -3.5431 -3.6211 -3.6512 -3.5197 -3.1826 -2.8877 -2.9007 -3.0856 -3.1288 -2.9097 -2.7171 -2.6519 -2.6620 -2.8661 -3.0927 -3.2077 -3.4218 -3.5875 -3.5936 -3.5126 -3.3736 -3.2666 -3.3134 - S W 86.00 -3.4903 -3.6206 -3.7251 -3.7825 -3.6573 -3.2750 -2.9797 -3.0595 -3.3000 -3.3014 -2.9133 -2.5921 -2.4399 -2.3328 -2.4788 -2.7070 -2.8642 -3.1965 -3.4194 -3.4491 -3.4124 -3.3123 -3.2281 -3.3108 - S W 85.00 -3.5326 -3.6632 -3.7707 -3.7996 -3.6857 -3.4028 -3.3131 -3.4551 -3.6352 -3.5164 -2.9317 -2.4850 -2.2340 -1.9858 -1.9173 -2.0069 -2.3343 -2.8796 -3.0918 -3.0713 -3.1278 -3.2309 -3.2401 -3.3359 - S W 84.00 -3.7542 -3.8961 -3.9871 -3.9690 -3.7800 -3.4536 -3.4041 -3.5444 -3.6832 -3.4934 -2.7952 -2.2087 -1.8326 -1.4677 -1.3816 -1.4972 -1.8987 -2.5723 -2.8124 -2.7529 -2.8733 -3.1721 -3.3134 -3.5011 - S W 83.00 -4.1453 -4.3053 -4.3497 -4.2018 -3.8350 -3.4433 -3.3554 -3.4273 -3.5292 -3.2779 -2.5333 -1.8529 -1.2642 -0.8415 -0.9506 -1.1363 -1.4697 -2.2065 -2.5125 -2.3902 -2.5713 -3.0749 -3.4606 -3.8613 - S W 82.00 -4.7136 -4.9191 -4.8239 -4.4209 -3.8082 -3.3798 -3.2241 -3.1494 -3.2201 -2.9169 -2.1689 -1.4122 -0.4799 -0.1567 -0.6501 -0.9312 -1.1538 -1.7010 -2.0856 -2.1230 -2.5333 -3.0451 -3.7650 -4.4238 - S W 81.00 -4.5535 -4.8963 -4.9003 -4.6089 -3.9723 -3.5217 -3.3024 -3.1325 -3.0802 -2.7494 -2.0641 -1.3190 -0.2788 0.0792 -0.4629 -0.7156 -0.7893 -1.1822 -1.5624 -1.6703 -2.0391 -2.5011 -3.2366 -4.0239 - S W 80.00 -4.0855 -4.6353 -4.8177 -4.7377 -4.3217 -3.8004 -3.4853 -3.2993 -3.1110 -2.7151 -2.1080 -1.4826 -0.7890 -0.2592 -0.3895 -0.4344 -0.3132 -0.5823 -0.9824 -1.0745 -1.3058 -1.6191 -2.3216 -3.2152 - S W 79.00 -3.8682 -4.4707 -4.7798 -4.7927 -4.4679 -3.9630 -3.6448 -3.4697 -3.2340 -2.7742 -2.1108 -1.5285 -0.8432 -0.1342 -0.0448 0.0196 0.1445 -0.1331 -0.5559 -0.6567 -0.8892 -1.3179 -2.1207 -3.0096 - S W 78.00 -3.6073 -4.2423 -4.6584 -4.7378 -4.4774 -4.0430 -3.7505 -3.5489 -3.2387 -2.7681 -2.1319 -1.5274 -0.8226 -0.0746 0.2178 0.3750 0.5208 0.2690 -0.1995 -0.5834 -0.8989 -1.2879 -1.9838 -2.8367 - S W 77.00 -3.3067 -3.9781 -4.4809 -4.6210 -4.4073 -4.0638 -3.8176 -3.5939 -3.2078 -2.6976 -2.1000 -1.4800 -0.7945 -0.0506 0.3951 0.6354 0.7495 0.5166 0.0217 -0.5278 -0.9163 -1.2753 -1.8356 -2.5795 - S W 76.00 -3.1883 -3.7995 -4.2880 -4.5164 -4.3546 -4.0856 -3.8848 -3.6633 -3.2596 -2.7214 -2.0876 -1.4188 -0.7012 0.0856 0.6431 0.9080 0.9657 0.7986 0.3673 -0.1094 -0.5989 -1.1255 -1.7370 -2.4646 - S W 75.00 -3.0981 -3.6796 -4.1770 -4.4466 -4.3144 -4.1114 -3.9785 -3.7550 -3.3499 -2.8023 -2.1149 -1.3399 -0.5121 0.3059 0.8890 1.1234 1.1564 1.0566 0.7469 0.2960 -0.3131 -1.0138 -1.6771 -2.3860 - S W 74.00 -2.9673 -3.5569 -4.0716 -4.3168 -4.1886 -4.0432 -3.9524 -3.7549 -3.3801 -2.8307 -2.1155 -1.2880 -0.3815 0.4337 0.9715 1.2008 1.2447 1.1679 0.9119 0.4509 -0.1987 -0.9148 -1.6026 -2.2900 - S W 73.00 -2.8390 -3.4158 -3.9273 -4.1144 -3.9910 -3.9336 -3.8857 -3.7087 -3.3635 -2.8227 -2.0929 -1.2490 -0.3355 0.5169 1.0669 1.2868 1.3213 1.2313 0.9728 0.5336 -0.0937 -0.7974 -1.4996 -2.1808 - S W 72.00 -2.7074 -3.2285 -3.6805 -3.8452 -3.7750 -3.7891 -3.7806 -3.6311 -3.3070 -2.7868 -2.0705 -1.2186 -0.2930 0.5798 1.1661 1.3698 1.3737 1.2627 0.9956 0.5822 0.0464 -0.6582 -1.3988 -2.0715 - S W 71.00 -2.5712 -3.0256 -3.3951 -3.5474 -3.5422 -3.6233 -3.6529 -3.5447 -3.2451 -2.7358 -2.0398 -1.1907 -0.2425 0.6519 1.2317 1.4055 1.3885 1.2813 1.0343 0.6258 0.1427 -0.5217 -1.2909 -1.9567 - S W 70.00 -2.4225 -2.8265 -3.1345 -3.2903 -3.3617 -3.4718 -3.5161 -3.4493 -3.1802 -2.6802 -2.0034 -1.1685 -0.2019 0.7188 1.2724 1.4341 1.3979 1.2968 1.1103 0.6799 0.2083 -0.3796 -1.1642 -1.8226 - S W 69.00 -2.1934 -2.6013 -2.9170 -3.0946 -3.2011 -3.3218 -3.3799 -3.3414 -3.0964 -2.6153 -1.9622 -1.1417 -0.1866 0.7323 1.2647 1.4281 1.3960 1.2951 1.1314 0.7080 0.2375 -0.2980 -1.0148 -1.6282 - S W 68.00 -1.9183 -2.3554 -2.7087 -2.9182 -3.0399 -3.1672 -3.2443 -3.2243 -2.9915 -2.5441 -1.9208 -1.1110 -0.1822 0.6853 1.1663 1.3793 1.3832 1.2771 1.1093 0.7204 0.2592 -0.2393 -0.8464 -1.3967 - S W 67.00 -1.6258 -2.1000 -2.5093 -2.7648 -2.8875 -3.0135 -3.1091 -3.1033 -2.8793 -2.4588 -1.8706 -1.0726 -0.1845 0.5823 0.9489 1.2676 1.3586 1.2525 1.0831 0.7455 0.3153 -0.1593 -0.6741 -1.1506 - S W 66.00 -1.3338 -1.8808 -2.3653 -2.6374 -2.7363 -2.8649 -2.9878 -2.9811 -2.7425 -2.3292 -1.7751 -1.0372 -0.2084 0.4471 0.7208 1.0545 1.3095 1.2097 1.0358 0.7906 0.3971 -0.0668 -0.4858 -0.8833 - S W 65.00 -1.1192 -1.6978 -2.2141 -2.4924 -2.6090 -2.7368 -2.8733 -2.8453 -2.5672 -2.1652 -1.6502 -0.9896 -0.2345 0.3247 0.5421 0.8148 1.1720 1.1299 0.9760 0.8004 0.4329 -0.0071 -0.3427 -0.6870 - S W 64.00 -0.9326 -1.5147 -2.0402 -2.3237 -2.4801 -2.5939 -2.7174 -2.6454 -2.3041 -1.9507 -1.5110 -0.9246 -0.2607 0.2049 0.3872 0.6133 1.0038 1.0193 0.8889 0.7753 0.4418 0.0374 -0.2271 -0.5281 - S W 63.00 -0.7480 -1.2995 -1.8117 -2.1132 -2.3135 -2.3934 -2.4480 -2.3032 -1.9318 -1.6488 -1.3050 -0.8270 -0.2876 0.0763 0.2343 0.4200 0.7676 0.8435 0.7543 0.6977 0.4076 0.0574 -0.1330 -0.3907 - S W 62.00 -0.5684 -1.0163 -1.4508 -1.7827 -2.0884 -2.1054 -1.9989 -1.7721 -1.4609 -1.2379 -0.9993 -0.6879 -0.3198 -0.0710 0.0831 0.2433 0.4631 0.6026 0.5689 0.5341 0.3020 0.0396 -0.0922 -0.2939 - S W 61.00 -0.4140 -0.7336 -1.0360 -1.3976 -1.8240 -1.7607 -1.4735 -1.1990 -0.9728 -0.8378 -0.7141 -0.5444 -0.3300 -0.1758 -0.0244 0.1195 0.2365 0.3660 0.3559 0.3217 0.1731 0.0258 -0.0555 -0.2082 - S W 60.00 -0.2690 -0.4645 -0.6310 -0.9696 -1.4926 -1.3432 -0.8976 -0.6195 -0.4923 -0.4508 -0.4370 -0.4011 -0.3072 -0.2213 -0.0835 0.0301 0.0549 0.1451 0.1476 0.1300 0.0722 0.0160 -0.0254 -0.1303 - S W 59.00 -0.1432 -0.2423 -0.3098 -0.5554 -1.0638 -0.8755 -0.4359 -0.2097 -0.1673 -0.1946 -0.2440 -0.2686 -0.2444 -0.2011 -0.0916 -0.0173 -0.0402 0.0168 0.0232 0.0244 0.0186 0.0091 -0.0070 -0.0682 - S W 58.00 -0.0730 -0.1249 -0.1656 -0.3080 -0.6899 -0.5586 -0.2705 -0.1301 -0.1032 -0.1085 -0.1277 -0.1420 -0.1306 -0.1065 -0.0482 -0.0095 -0.0210 0.0092 0.0120 0.0116 0.0087 0.0044 -0.0037 -0.0341 - S W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -swbz2.pot - SOUTHERN, WINTER BZ COEFFICIENT FOR BZ > 0 - S W 90.00 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 0.7575 - S W 89.00 0.6856 0.6935 0.7032 0.7138 0.7250 0.7364 0.7490 0.7630 0.7767 0.7909 0.8073 0.8250 0.8398 0.8467 0.8437 0.8314 0.8115 0.7854 0.7563 0.7295 0.7082 0.6930 0.6838 0.6816 - S W 88.00 0.6002 0.6279 0.6504 0.6718 0.6935 0.7038 0.7204 0.7498 0.7633 0.7699 0.7970 0.8540 0.9110 0.9369 0.9306 0.9023 0.8654 0.8040 0.7231 0.6582 0.6223 0.5989 0.5765 0.5776 - S W 87.00 0.5517 0.5866 0.5997 0.6056 0.6105 0.5910 0.5869 0.6154 0.6167 0.6123 0.6657 0.7906 0.9167 0.9803 0.9846 0.9550 0.9162 0.8368 0.7264 0.6390 0.5917 0.5545 0.5104 0.5127 - S W 86.00 0.5347 0.5615 0.5409 0.5051 0.4672 0.3946 0.3449 0.3544 0.3336 0.3138 0.4194 0.6488 0.8689 0.9832 1.0088 0.9965 0.9595 0.8658 0.7587 0.6744 0.6101 0.5410 0.4649 0.4747 - S W 85.00 0.5623 0.5552 0.4748 0.3725 0.2690 0.1296 0.0033 -0.0339 -0.0866 -0.1356 0.0654 0.4408 0.7683 0.9389 0.9919 1.0403 1.0205 0.8950 0.7973 0.7435 0.6774 0.5473 0.4272 0.4627 - S W 84.00 0.6199 0.5959 0.4715 0.3336 0.1893 -0.0248 -0.2453 -0.3330 -0.4164 -0.4586 -0.1462 0.3544 0.7571 0.9502 0.9904 1.0293 0.9954 0.8626 0.7801 0.7552 0.7100 0.5548 0.4072 0.4742 - S W 83.00 0.7288 0.6978 0.5405 0.3939 0.2093 -0.0813 -0.3988 -0.5607 -0.6546 -0.6684 -0.2669 0.4027 0.8315 0.9935 0.9910 0.9510 0.8686 0.7654 0.7143 0.7223 0.7003 0.5529 0.4247 0.5239 - S W 82.00 0.8528 0.8327 0.6789 0.5610 0.3530 -0.0696 -0.4671 -0.7321 -0.8799 -0.7954 -0.2587 0.5316 1.0060 1.0900 1.0038 0.8246 0.6527 0.5600 0.5773 0.6401 0.6587 0.5464 0.4242 0.6276 - S W 81.00 0.7661 0.7687 0.6132 0.4822 0.2702 -0.1333 -0.5123 -0.7675 -0.9599 -0.9438 -0.4688 0.3128 0.8513 0.9908 0.9080 0.6894 0.5003 0.4154 0.4425 0.5265 0.5488 0.3591 0.2235 0.4822 - S W 80.00 0.4889 0.6034 0.4438 0.2666 0.0562 -0.2485 -0.5227 -0.6956 -0.9019 -1.0802 -0.8633 -0.2640 0.3696 0.6882 0.7102 0.5482 0.4065 0.3321 0.3079 0.3237 0.2128 -0.0759 -0.1355 0.1317 - S W 79.00 0.3855 0.4992 0.3438 0.1634 -0.0371 -0.3126 -0.5215 -0.6689 -0.8853 -1.1522 -1.1538 -0.8247 -0.3108 0.2094 0.4376 0.4125 0.3294 0.2400 0.2037 0.2115 0.1142 -0.1536 -0.2914 -0.0120 - S W 78.00 0.2357 0.3511 0.2369 0.0852 -0.0854 -0.3047 -0.4541 -0.5555 -0.7196 -0.9626 -1.0400 -0.8617 -0.5142 -0.1321 0.1906 0.2642 0.2306 0.1575 0.1197 0.1262 0.0457 -0.2161 -0.3676 -0.1014 - S W 77.00 0.1087 0.2093 0.1426 0.0336 -0.1017 -0.2580 -0.3563 -0.3992 -0.4707 -0.6287 -0.7326 -0.6596 -0.4865 -0.2473 0.0322 0.1395 0.1443 0.0927 0.0577 0.0545 -0.0154 -0.2489 -0.3321 -0.1180 - S W 76.00 0.0402 0.1104 0.0739 -0.0109 -0.1306 -0.2454 -0.3151 -0.3380 -0.3671 -0.4578 -0.5419 -0.5264 -0.4440 -0.2874 -0.0863 0.0330 0.0681 0.0388 0.0135 -0.0004 -0.0602 -0.2180 -0.2554 -0.1000 - S W 75.00 0.0043 0.0369 0.0178 -0.0550 -0.1721 -0.2532 -0.3047 -0.3262 -0.3303 -0.3756 -0.4365 -0.4464 -0.4048 -0.2949 -0.1505 -0.0539 -0.0049 -0.0041 -0.0203 -0.0364 -0.0855 -0.1865 -0.1779 -0.0641 - S W 74.00 0.0144 0.0379 0.0403 -0.0200 -0.1432 -0.2263 -0.2824 -0.3122 -0.3074 -0.3295 -0.3776 -0.3958 -0.3763 -0.2966 -0.1837 -0.1100 -0.0595 -0.0390 -0.0444 -0.0521 -0.0852 -0.1465 -0.1145 -0.0281 - S W 73.00 0.0456 0.0803 0.1112 0.0605 -0.0746 -0.1829 -0.2556 -0.2974 -0.2926 -0.3022 -0.3424 -0.3628 -0.3545 -0.2955 -0.2121 -0.1487 -0.0924 -0.0617 -0.0607 -0.0580 -0.0729 -0.1018 -0.0630 0.0056 - S W 72.00 0.0947 0.1485 0.1997 0.1552 0.0039 -0.1356 -0.2284 -0.2830 -0.2850 -0.2874 -0.3204 -0.3390 -0.3358 -0.2909 -0.2262 -0.1747 -0.1168 -0.0776 -0.0709 -0.0581 -0.0540 -0.0647 -0.0282 0.0346 - S W 71.00 0.1430 0.2176 0.2888 0.2540 0.0906 -0.0848 -0.2005 -0.2687 -0.2837 -0.2819 -0.3067 -0.3205 -0.3182 -0.2836 -0.2337 -0.1980 -0.1450 -0.0901 -0.0782 -0.0549 -0.0291 -0.0279 0.0000 0.0604 - S W 70.00 0.1926 0.2868 0.3747 0.3457 0.1713 -0.0343 -0.1720 -0.2538 -0.2893 -0.2862 -0.3002 -0.3066 -0.3022 -0.2738 -0.2350 -0.2154 -0.1710 -0.0998 -0.0847 -0.0491 0.0001 0.0166 0.0319 0.0862 - S W 69.00 0.2325 0.3372 0.4324 0.4022 0.2206 0.0039 -0.1493 -0.2406 -0.2908 -0.2869 -0.2897 -0.2887 -0.2853 -0.2648 -0.2325 -0.2161 -0.1784 -0.1017 -0.0899 -0.0471 0.0227 0.0565 0.0675 0.1168 - S W 68.00 0.2622 0.3729 0.4739 0.4432 0.2557 0.0357 -0.1283 -0.2273 -0.2875 -0.2836 -0.2746 -0.2654 -0.2654 -0.2560 -0.2254 -0.1962 -0.1600 -0.0958 -0.0944 -0.0498 0.0422 0.0896 0.0949 0.1449 - S W 67.00 0.2848 0.4001 0.5079 0.4777 0.2860 0.0660 -0.1079 -0.2127 -0.2779 -0.2760 -0.2536 -0.2348 -0.2412 -0.2479 -0.2136 -0.1522 -0.1122 -0.0816 -0.0985 -0.0593 0.0586 0.1223 0.1210 0.1725 - S W 66.00 0.3023 0.4220 0.5392 0.5114 0.3170 0.0997 -0.0851 -0.1939 -0.2559 -0.2615 -0.2237 -0.1929 -0.2107 -0.2407 -0.1976 -0.0796 -0.0357 -0.0551 -0.1024 -0.0784 0.0709 0.1582 0.1522 0.2027 - S W 65.00 0.3018 0.4218 0.5430 0.5226 0.3373 0.1294 -0.0609 -0.1738 -0.2367 -0.2472 -0.1911 -0.1528 -0.1814 -0.2269 -0.1779 -0.0234 0.0189 -0.0353 -0.0983 -0.0892 0.0804 0.1802 0.1684 0.2145 - S W 64.00 0.2804 0.3971 0.5177 0.5039 0.3429 0.1542 -0.0382 -0.1554 -0.2237 -0.2343 -0.1596 -0.1195 -0.1535 -0.2060 -0.1548 0.0146 0.0496 -0.0270 -0.0853 -0.0857 0.0837 0.1854 0.1670 0.2067 - S W 63.00 0.2271 0.3337 0.4438 0.4316 0.3125 0.1630 -0.0179 -0.1389 -0.2184 -0.2248 -0.1324 -0.0976 -0.1275 -0.1745 -0.1263 0.0329 0.0576 -0.0313 -0.0595 -0.0536 0.0780 0.1640 0.1445 0.1734 - S W 62.00 0.1378 0.2205 0.2963 0.2701 0.2157 0.1362 -0.0018 -0.1249 -0.2226 -0.2186 -0.1084 -0.0888 -0.1057 -0.1316 -0.0916 0.0278 0.0388 -0.0531 -0.0139 0.0163 0.0659 0.1124 0.0967 0.1103 - S W 61.00 0.0644 0.1169 0.1534 0.1101 0.1187 0.1090 0.0096 -0.1075 -0.2115 -0.2010 -0.0850 -0.0769 -0.0838 -0.0937 -0.0619 0.0228 0.0236 -0.0645 0.0181 0.0631 0.0520 0.0687 0.0561 0.0582 - S W 60.00 0.0141 0.0368 0.0286 -0.0298 0.0299 0.0812 0.0167 -0.0861 -0.1835 -0.1706 -0.0622 -0.0620 -0.0624 -0.0629 -0.0384 0.0177 0.0121 -0.0632 0.0336 0.0807 0.0377 0.0373 0.0274 0.0221 - S W 59.00 -0.0080 -0.0026 -0.0340 -0.0928 -0.0304 0.0534 0.0173 -0.0612 -0.1373 -0.1257 -0.0409 -0.0435 -0.0415 -0.0380 -0.0212 0.0122 0.0056 -0.0509 0.0333 0.0704 0.0242 0.0176 0.0108 0.0039 - S W 58.00 -0.0038 -0.0015 -0.0166 -0.0449 -0.0172 0.0294 0.0091 -0.0322 -0.0701 -0.0643 -0.0213 -0.0219 -0.0212 -0.0194 -0.0108 0.0061 0.0027 -0.0254 0.0166 0.0337 0.0116 0.0085 0.0052 0.0018 - S W 57.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 diff --git a/util/EMPIRICAL/srcIE/data/mhi.cofcnts b/util/EMPIRICAL/srcIE/data/mhi.cofcnts deleted file mode 100644 index 63647a94..00000000 --- a/util/EMPIRICAL/srcIE/data/mhi.cofcnts +++ /dev/null @@ -1,285 +0,0 @@ -3 - Electrostatic potential (kV) - Apex local time (hours) - Apex latitude (degrees) - 2 - 12 14 11 4 - -0.17135960E+01 -0.11423973E+01 -0.57119866E+00 0.00000000E+01 0.57119866E+00 - 0.11423973E+01 0.17135960E+01 0.22847947E+01 0.28559933E+01 0.34271920E+01 - 0.39983906E+01 0.45695893E+01 0.51407880E+01 0.57119866E+01 0.62831853E+01 - 0.68543840E+01 0.74255826E+01 0.79967813E+01 - 12 14 13 4 - 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.55475290E+03 - 0.83212935E+03 0.11095058E+04 0.13868823E+04 0.16642587E+04 0.19416352E+04 - 0.22190116E+04 0.24963881E+04 0.27737645E+04 0.33285213E+04 0.38832742E+04 - 0.38832742E+04 0.38832742E+04 0.38832742E+04 - 143 - -0.96089882E+03 -0.71179162E+03 -0.23110727E+03 0.32388664E+03 0.77312297E+03 - 0.98765329E+03 0.88295264E+03 0.50620571E+03 -0.36424292E+02 -0.55814804E+03 - -0.90842509E+03 -0.24875171E+04 -0.19070087E+04 -0.66234963E+03 0.85439265E+03 - 0.20810290E+04 0.24883657E+04 0.21393565E+04 0.11415769E+04 -0.78499150E+02 - -0.13330632E+04 -0.21947018E+04 -0.41767723E+04 -0.32683985E+04 -0.14342182E+04 - 0.14140652E+04 0.39203613E+04 0.45986680E+04 0.29568967E+04 0.16480308E+04 - 0.19158101E+03 -0.19254999E+04 -0.41094071E+04 -0.49650795E+04 -0.40713291E+04 - -0.19466823E+04 0.17202963E+04 0.49215697E+04 0.61915058E+04 0.27232901E+04 - 0.19968887E+04 0.37553649E+03 -0.18225206E+04 -0.57813709E+04 -0.50576400E+04 - -0.45350496E+04 -0.20264901E+04 0.20275982E+04 0.48647965E+04 0.76074952E+04 - 0.12956464E+04 0.25268964E+04 0.24697058E+03 -0.74714792E+03 -0.76837266E+04 - -0.49498211E+04 -0.43712088E+04 -0.64967658E+03 0.19497565E+04 0.29543201E+04 - 0.77815830E+04 -0.94599932E+03 0.31518333E+04 -0.48221418E+03 0.13235121E+04 - -0.88540324E+04 -0.81320406E+04 -0.20359908E+04 0.33062432E+04 0.18319402E+04 - -0.72406579E+03 0.30587955E+04 -0.19534872E+03 0.83494420E+03 0.74435825E+03 - 0.16122135E+04 -0.48732356E+04 -0.90141370E+04 -0.19674453E+04 0.65923696E+04 - -0.45479896E+04 -0.97437593E+03 -0.26192239E+04 0.87123963E+03 -0.18447270E+04 - 0.17090967E+04 -0.81083962E+03 0.32116081E+03 -0.42666150E+04 0.28777799E+02 - 0.31692226E+04 -0.47797694E+04 -0.96974016E+03 -0.27703992E+04 0.90747341E+03 - -0.17466554E+04 0.72785073E+03 -0.73570518E+03 0.49614728E+03 -0.19357834E+04 - 0.58281384E+03 0.31964694E+04 -0.32212945E+04 -0.17906738E+04 -0.23317763E+04 - 0.63783204E+03 -0.14391415E+04 -0.14071797E+02 -0.80388106E+03 0.19004366E+03 - -0.10289861E+04 -0.55165524E+03 0.12169586E+04 -0.21734554E+04 -0.18497049E+04 - -0.65856513E+03 0.26310512E+03 0.33550202E+03 -0.10781055E+04 -0.10166012E+04 - -0.94940560E+03 -0.14030061E+04 -0.17452723E+04 0.35479138E+03 -0.25059666E+04 - -0.12412898E+04 -0.17744840E+03 0.39174883E+03 0.16522321E+03 -0.93078790E+03 - -0.16621801E+04 -0.16843316E+04 -0.16716658E+04 -0.21367747E+04 -0.17219214E+03 - -0.25539223E+04 -0.10318863E+04 0.24998793E+03 0.37697895E+03 0.33438432E+03 - -0.10137811E+04 -0.19104770E+04 -0.20161308E+04 - 143 - -0.10430750E+04 -0.70321993E+03 -0.13220857E+03 0.46509176E+03 0.93659406E+03 - 0.10976729E+04 0.91707240E+03 0.44975636E+03 -0.15939152E+03 -0.72254435E+03 - -0.10414407E+04 -0.26147199E+04 -0.17045262E+04 -0.34632923E+03 0.12256733E+04 - 0.22408060E+04 0.27182857E+04 0.23385827E+04 0.11758558E+04 -0.39286523E+03 - -0.18135272E+04 -0.27432140E+04 -0.48169187E+04 -0.29850794E+04 -0.36732197E+02 - 0.18103661E+04 0.40772889E+04 0.45536925E+04 0.37955120E+04 0.23147072E+04 - -0.47444582E+03 -0.35290917E+04 -0.45783545E+04 -0.64525469E+04 -0.41050213E+04 - 0.10001996E+04 0.21962007E+04 0.53802813E+04 0.55400647E+04 0.43621249E+04 - 0.31255273E+04 -0.24210189E+03 -0.50326929E+04 -0.54027341E+04 -0.83071975E+04 - -0.56590856E+04 0.30343977E+04 0.14008914E+04 0.72468893E+04 0.52144746E+04 - 0.44851251E+04 0.33604619E+04 0.66863820E+03 -0.67131519E+04 -0.52316724E+04 - -0.84572783E+04 -0.81160379E+04 0.57801866E+04 0.62167387E+04 0.49444575E+04 - 0.51045693E+04 0.28994951E+04 0.30594676E+04 0.15974813E+04 -0.65619974E+04 - -0.57081122E+04 -0.85712903E+04 -0.10612590E+05 0.21735584E+04 0.93116917E+04 - 0.31729722E+03 0.36710606E+04 -0.26180891E+02 0.18201539E+04 0.84095965E+03 - -0.29183462E+03 -0.87621950E+04 -0.11022644E+05 -0.76197231E+04 -0.13933563E+04 - 0.88770885E+03 -0.12896704E+03 0.74767556E+03 -0.51668271E+03 0.73745677E+03 - -0.22279349E+03 0.51350178E+03 -0.37241650E+04 -0.51062614E+04 -0.50624111E+04 - -0.40736520E+04 -0.35372123E+03 -0.42202418E+03 0.98557827E+02 -0.49992884E+03 - 0.51893165E+02 -0.48042009E+03 -0.88829472E+03 -0.31796475E+04 -0.33843058E+04 - -0.31107972E+04 -0.40543969E+04 -0.29909491E+04 -0.37775803E+03 0.79046182E+02 - -0.48584226E+03 -0.58472221E+03 -0.70883529E+03 -0.10316338E+04 -0.25809009E+04 - -0.36220413E+04 -0.37078848E+04 -0.37507496E+04 -0.30432508E+04 -0.91733852E+03 - 0.98464328E+03 0.23200039E+03 0.30841223E+02 -0.53428994E+03 -0.29913617E+04 - -0.11316142E+04 -0.39371142E+04 -0.41894973E+04 -0.46730947E+04 -0.36422984E+04 - -0.10490133E+04 0.15323434E+04 0.56121320E+03 0.29518492E+03 -0.91128338E+03 - -0.34825718E+04 -0.21225110E+04 -0.42144428E+04 -0.45192159E+04 -0.50397824E+04 - -0.37912844E+04 -0.11052715E+04 0.18552653E+04 0.72404289E+03 0.46229269E+03 - -0.10256060E+04 -0.38239091E+04 -0.24596479E+04 - 143 - -0.10297135E+04 0.29854011E+02 0.10952493E+04 0.18197122E+04 0.20005955E+04 - 0.15588147E+04 0.62882962E+03 -0.45668697E+03 -0.14025109E+04 -0.18715561E+04 - -0.17237787E+04 -0.26692625E+04 0.14358336E+03 0.27939946E+04 0.45049973E+04 - 0.46697768E+04 0.36099512E+04 0.16322324E+04 -0.11348560E+04 -0.35221067E+04 - -0.49642884E+04 -0.47570186E+04 -0.51564947E+04 -0.90900066E+02 0.46570002E+04 - 0.71882409E+04 0.77121055E+04 0.51655236E+04 0.18468209E+04 -0.61859517E+03 - -0.62110468E+04 -0.98891119E+04 -0.85106498E+04 -0.74920927E+04 -0.11315495E+04 - 0.54401383E+04 0.81647844E+04 0.92144520E+04 0.53210603E+04 0.94025330E+03 - 0.24056653E+03 -0.78011508E+04 -0.13562124E+05 -0.10801817E+05 -0.10923957E+05 - -0.32411553E+04 0.55281060E+04 0.74481727E+04 0.95130894E+04 0.46833525E+04 - -0.20787577E+04 0.24859061E+04 -0.93273223E+04 -0.16672759E+05 -0.11857492E+05 - -0.13235352E+05 -0.10354799E+05 0.39317251E+04 0.62126294E+04 0.55322183E+04 - 0.11315804E+04 -0.28425922E+04 -0.22226963E+04 -0.60717702E+04 -0.14730687E+05 - -0.14318113E+05 -0.13707335E+05 -0.21115967E+05 0.45265646E+04 0.25871876E+04 - -0.12167952E+04 -0.27370806E+04 -0.27504062E+04 -0.70164195E+04 -0.41965275E+04 - -0.77468006E+04 -0.19401275E+05 -0.19645576E+05 -0.17748348E+05 -0.16761456E+04 - -0.23313940E+04 -0.62347309E+04 -0.22926771E+04 -0.59408649E+04 -0.45280498E+04 - -0.67522542E+04 -0.78028390E+04 -0.13916414E+05 -0.18451855E+05 -0.70654891E+04 - -0.62814393E+04 -0.54319608E+04 -0.63335011E+04 -0.44993972E+04 -0.54780253E+04 - -0.58707106E+04 -0.62631805E+04 -0.86236103E+04 -0.11559771E+05 -0.13382777E+05 - -0.46846054E+04 -0.73090328E+04 -0.60938799E+04 -0.62538147E+04 -0.48524292E+04 - -0.57921921E+04 -0.53149916E+04 -0.71748714E+04 -0.89014716E+04 -0.11081180E+05 - -0.11104823E+05 -0.72725992E+04 -0.74916474E+04 -0.62206008E+04 -0.61620361E+04 - -0.47305006E+04 -0.48299862E+04 -0.48485092E+04 -0.68268586E+04 -0.83021740E+04 - -0.11764448E+05 -0.11569058E+05 -0.82444898E+04 -0.77097532E+04 -0.67372785E+04 - -0.60538226E+04 -0.45614631E+04 -0.44544245E+04 -0.46894666E+04 -0.69498068E+04 - -0.90171184E+04 -0.12067528E+05 -0.12069643E+05 -0.83759287E+04 -0.80075484E+04 - -0.68250057E+04 -0.60295938E+04 -0.44806871E+04 -0.41992140E+04 -0.46253468E+04 - -0.69402493E+04 -0.93276505E+04 -0.12067620E+05 - 143 - -0.14054752E+04 -0.64371433E+02 0.13296629E+04 0.23243799E+04 0.25916856E+04 - 0.20832173E+04 0.91780971E+03 -0.50248371E+03 -0.17407470E+04 -0.24017878E+04 - -0.22817961E+04 -0.34641464E+04 -0.10187256E+03 0.30886386E+04 0.54028912E+04 - 0.63275302E+04 0.51863407E+04 0.24301452E+04 -0.13774662E+04 -0.47745911E+04 - -0.64472229E+04 -0.58578568E+04 -0.47470004E+04 -0.55509226E+03 0.35952472E+04 - 0.87367874E+04 0.10720055E+05 0.85983787E+04 0.32824627E+04 -0.18580030E+04 - -0.81618435E+04 -0.12972288E+05 -0.11014235E+05 -0.56892555E+04 -0.17721935E+04 - 0.28463220E+04 0.10208706E+05 0.13012612E+05 0.99558275E+04 0.28644828E+04 - -0.21147846E+04 -0.96881191E+04 -0.18392341E+05 -0.14717762E+05 -0.60544348E+04 - -0.39960136E+04 0.54802681E+03 0.11221989E+05 0.12312118E+05 0.10470547E+05 - 0.20694523E+03 -0.17158167E+04 -0.10084296E+05 -0.22253304E+05 -0.18646749E+05 - -0.14319737E+05 -0.89113529E+04 0.76724763E+03 0.65433602E+04 0.10310526E+05 - 0.43074150E+04 -0.93101290E+03 -0.46213367E+04 -0.66692443E+04 -0.25138901E+05 - -0.18100570E+05 -0.18482038E+05 -0.12312141E+05 0.16101956E+04 0.34136350E+04 - -0.11089533E+04 -0.14382813E+04 -0.45052374E+04 -0.63892270E+04 -0.50956783E+04 - -0.11166028E+05 -0.20707518E+05 -0.19473348E+05 -0.97210795E+04 -0.28733597E+04 - -0.43756014E+04 -0.61003378E+04 -0.44024772E+04 -0.62457622E+04 -0.63488846E+04 - -0.64581804E+04 -0.97701452E+04 -0.16522108E+05 -0.18359598E+05 -0.11856312E+05 - -0.59114269E+04 -0.86386788E+04 -0.86377314E+04 -0.68944906E+04 -0.60529530E+04 - -0.74257692E+04 -0.64116569E+04 -0.89058716E+04 -0.14058527E+05 -0.17871882E+05 - -0.10191110E+05 -0.99288059E+04 -0.93681565E+04 -0.10157415E+05 -0.74178081E+04 - -0.64287787E+04 -0.73416449E+04 -0.67977253E+04 -0.86031294E+04 -0.12475476E+05 - -0.15119538E+05 -0.12655692E+05 -0.12194853E+05 -0.10538880E+05 -0.10946634E+05 - -0.81333333E+04 -0.59230769E+04 -0.68026789E+04 -0.68783204E+04 -0.83986874E+04 - -0.99647938E+04 -0.14742037E+05 -0.13800471E+05 -0.12608749E+05 -0.11375199E+05 - -0.11231657E+05 -0.78909845E+04 -0.55860942E+04 -0.68243999E+04 -0.70150811E+04 - -0.87613280E+04 -0.10219755E+05 -0.14909298E+05 -0.14224678E+05 -0.12936274E+05 - -0.11695986E+05 -0.11327530E+05 -0.77968955E+04 -0.53670385E+04 -0.68494040E+04 - -0.70379505E+04 -0.89121276E+04 -0.10278364E+05 - 143 - -0.23144738E+04 -0.13686034E+04 0.10109983E+03 0.14716253E+04 0.24221700E+04 - 0.25873741E+04 0.19377874E+04 0.67690495E+03 -0.78971641E+03 -0.20031226E+04 - -0.25949096E+04 -0.61607412E+04 -0.29326253E+04 0.33116940E+03 0.37853513E+04 - 0.57069631E+04 0.62282722E+04 0.49801953E+04 0.20745100E+04 -0.18230254E+04 - -0.52598755E+04 -0.67633250E+04 -0.10722432E+05 -0.59055745E+04 0.36622889E+04 - 0.62816952E+04 0.84858274E+04 0.10832867E+05 0.94782032E+04 0.33394709E+04 - -0.32444856E+04 -0.86960272E+04 -0.12525834E+05 -0.13409928E+05 -0.81670256E+04 - 0.65549899E+04 0.83789458E+04 0.10724908E+05 0.13903234E+05 0.11923131E+05 - 0.34167664E+04 -0.43388308E+04 -0.10841520E+05 -0.16018297E+05 -0.10385736E+05 - -0.16256656E+05 0.16023796E+05 0.68703904E+04 0.13675444E+05 0.14682178E+05 - 0.13712042E+05 0.23583257E+04 -0.60964735E+04 -0.97670504E+04 -0.21662755E+05 - -0.17530501E+05 -0.50059540E+04 0.52088498E+03 0.18922298E+05 0.22042987E+05 - 0.14578207E+05 0.55999758E+04 0.60969108E+03 -0.59911752E+04 -0.15128539E+05 - -0.12975953E+05 -0.16423920E+05 -0.70601692E+04 0.70084323E+04 0.21973663E+05 - 0.16924927E+05 0.64685475E+04 -0.67236815E+03 0.98834358E+03 -0.43263329E+04 - -0.12871432E+05 -0.93750159E+04 -0.14969469E+05 -0.63356832E+04 0.11012310E+05 - 0.79184269E+04 0.96860922E+04 0.42851625E+03 0.78880172E+03 -0.59130198E+03 - -0.24652607E+04 -0.62494964E+04 -0.12101091E+05 -0.13689398E+05 -0.51256371E+04 - 0.29729676E+04 0.34014037E+04 0.28122476E+04 -0.22526060E+04 -0.48918938E+03 - -0.10155785E+04 -0.19620430E+04 -0.49735648E+04 -0.85146328E+04 -0.10203534E+05 - -0.34511065E+04 -0.15355414E+04 -0.22556677E+04 -0.56844319E+03 -0.27372799E+04 - -0.86685285E+03 -0.10234443E+04 -0.16884116E+04 -0.38712449E+04 -0.68477763E+04 - -0.76299954E+04 -0.68901465E+04 -0.53473363E+04 -0.35160415E+04 -0.17150411E+04 - -0.27766743E+04 -0.62658725E+03 -0.88785215E+03 -0.13508732E+04 -0.31823284E+04 - -0.50181899E+04 -0.73649488E+04 -0.81091509E+04 -0.64623932E+04 -0.47442112E+04 - -0.23765289E+04 -0.24435991E+04 -0.48875997E+03 -0.82082596E+03 -0.15963317E+04 - -0.33639395E+04 -0.53872052E+04 -0.76932611E+04 -0.86437747E+04 -0.71585958E+04 - -0.49852731E+04 -0.25789612E+04 -0.23656421E+04 -0.37110497E+03 -0.84122326E+03 - -0.16205659E+04 -0.35524682E+04 -0.54795544E+04 - 143 - -0.28102993E+04 -0.85224671E+03 0.13931493E+04 0.32267523E+04 0.40377221E+04 - 0.36193468E+04 0.20428910E+04 -0.13778638E+03 -0.22646983E+04 -0.36495782E+04 - -0.38493524E+04 -0.73910507E+04 -0.24788292E+04 0.34164162E+04 0.81522776E+04 - 0.10265711E+05 0.87884652E+04 0.48345253E+04 -0.61163713E+03 -0.56900898E+04 - -0.90642495E+04 -0.98003529E+04 -0.13282426E+05 -0.53422215E+04 0.53279013E+04 - 0.14853667E+05 0.17532445E+05 0.14760947E+05 0.70392101E+04 -0.10961954E+04 - -0.96107693E+04 -0.15995331E+05 -0.17048636E+05 -0.17375309E+05 -0.76806150E+04 - 0.56678667E+04 0.18805967E+05 0.21619538E+05 0.17823594E+05 0.78861081E+04 - -0.18299589E+04 -0.11889012E+05 -0.20779473E+05 -0.21692994E+05 -0.21156934E+05 - -0.98027442E+04 0.47249396E+04 0.22879049E+05 0.21555718E+05 0.20521772E+05 - 0.56049264E+04 -0.15700191E+04 -0.13322133E+05 -0.24886812E+05 -0.24621898E+05 - -0.23516541E+05 -0.11321877E+05 0.28899962E+04 0.16240239E+05 0.22921346E+05 - 0.13228952E+05 0.89236880E+04 -0.71389587E+04 -0.11856244E+05 -0.26129827E+05 - -0.26032267E+05 -0.24478642E+05 -0.15930135E+05 0.10630066E+05 0.13421052E+05 - 0.16006398E+05 0.65601866E+04 0.23210916E+04 -0.67410011E+04 -0.77574235E+04 - -0.25952145E+05 -0.24152343E+05 -0.27549729E+05 -0.85389797E+04 0.47545621E+04 - 0.85523274E+04 0.49638630E+04 0.26915733E+04 -0.50415502E+04 -0.56417769E+04 - -0.66529302E+04 -0.17346699E+05 -0.16371258E+05 -0.22451970E+05 -0.90432078E+04 - -0.49415831E+03 0.35633047E+03 -0.31150966E+04 -0.17682697E+04 -0.64293418E+04 - -0.60576195E+04 -0.78859622E+04 -0.13831940E+05 -0.14730594E+05 -0.17571781E+05 - -0.85897079E+04 -0.58672593E+04 -0.67619126E+04 -0.88773847E+04 -0.53761060E+04 - -0.79020056E+04 -0.67856214E+04 -0.74568684E+04 -0.11799910E+05 -0.12453645E+05 - -0.14689578E+05 -0.12162608E+05 -0.10941899E+05 -0.11611536E+05 -0.99339600E+04 - -0.68395125E+04 -0.70247205E+04 -0.68238025E+04 -0.73614423E+04 -0.10254012E+05 - -0.93457968E+04 -0.14279931E+05 -0.13322093E+05 -0.12509153E+05 -0.12847175E+05 - -0.10973659E+05 -0.66037392E+04 -0.70280383E+04 -0.66853882E+04 -0.77298491E+04 - -0.10102036E+05 -0.95165771E+04 -0.14545805E+05 -0.13941285E+05 -0.13293426E+05 - -0.13395252E+05 -0.11305130E+05 -0.64661936E+04 -0.69286714E+04 -0.66505782E+04 - -0.78517078E+04 -0.10107280E+05 -0.96955039E+04 - 143 - -0.28549794E+04 -0.12557605E+04 0.75020952E+03 0.25326610E+04 0.35155332E+04 - 0.33929737E+04 0.22116927E+04 0.32839961E+03 -0.16478195E+04 -0.30850685E+04 - -0.35431676E+04 -0.74309037E+04 -0.36044635E+04 0.16977353E+04 0.65424724E+04 - 0.91233191E+04 0.85303990E+04 0.51204535E+04 0.47244369E+03 -0.40822333E+04 - -0.74412160E+04 -0.86741144E+04 -0.13924877E+05 -0.65419006E+04 0.28590170E+04 - 0.11675687E+05 0.16812349E+05 0.15444173E+05 0.81389979E+04 -0.84395193E+03 - -0.68492190E+04 -0.11493255E+05 -0.15610667E+05 -0.18717158E+05 -0.83854058E+04 - 0.37821270E+04 0.15145871E+05 0.22256600E+05 0.20030493E+05 0.98859807E+04 - -0.27278067E+04 -0.87470110E+04 -0.13328854E+05 -0.20979010E+05 -0.23143106E+05 - -0.96348580E+04 0.50936131E+04 0.18014615E+05 0.26756856E+05 0.23110917E+05 - 0.10905432E+05 -0.51866850E+04 -0.10568429E+05 -0.13977610E+05 -0.26194931E+05 - -0.27420751E+05 -0.10092255E+05 0.75812068E+04 0.20260333E+05 0.28971722E+05 - 0.23336769E+05 0.10201139E+05 -0.64230221E+04 -0.12622418E+05 -0.14886910E+05 - -0.29186535E+05 -0.35230212E+05 -0.80518835E+04 0.11199571E+05 0.23490276E+05 - 0.25725913E+05 0.21027689E+05 0.44302691E+04 -0.21115605E+04 -0.14699456E+05 - -0.21644614E+05 -0.22883082E+05 -0.27819583E+05 -0.55011767E+04 0.11502091E+05 - 0.20024725E+05 0.19778678E+05 0.54436895E+04 0.30253522E+04 -0.38139465E+04 - -0.83985316E+04 -0.15756340E+05 -0.18191317E+05 -0.22256364E+05 -0.49412183E+04 - 0.68439787E+04 0.13207628E+05 0.91067530E+04 0.17671959E+04 -0.67174165E+03 - -0.43371662E+04 -0.99255420E+04 -0.99776701E+04 -0.12479365E+05 -0.92300212E+04 - -0.94487213E+04 -0.55158878E+02 0.20812226E+04 -0.87282809E+03 -0.22158234E+04 - -0.34889445E+04 -0.44696648E+04 -0.84983850E+04 -0.79270516E+04 -0.11836752E+05 - -0.93343640E+04 -0.86661765E+04 -0.68825069E+04 -0.33824806E+04 -0.32092578E+04 - -0.38691371E+04 -0.23427196E+04 -0.42843497E+04 -0.81086809E+04 -0.52967957E+04 - -0.83612498E+04 -0.74017035E+04 -0.11225263E+05 -0.76863796E+04 -0.48808267E+04 - -0.43185939E+04 -0.35797882E+04 -0.25072497E+04 -0.41734843E+04 -0.78646955E+04 - -0.57900527E+04 -0.74658909E+04 -0.77998807E+04 -0.11871670E+05 -0.83970308E+04 - -0.55366703E+04 -0.45776439E+04 -0.35508978E+04 -0.23675146E+04 -0.41333738E+04 - -0.78806847E+04 -0.59068421E+04 -0.73154438E+04 - 143 - -0.25732784E+04 -0.10501967E+04 0.82922703E+03 0.24531568E+04 0.32897809E+04 - 0.31021283E+04 0.19342114E+04 0.15092007E+03 -0.16651590E+04 -0.29393573E+04 - -0.33012454E+04 -0.65299263E+04 -0.25637167E+04 0.20531579E+04 0.60111812E+04 - 0.82256676E+04 0.77597229E+04 0.48171901E+04 0.40483000E+03 -0.42338070E+04 - -0.75314428E+04 -0.81941267E+04 -0.10547497E+05 -0.48013194E+04 0.29930757E+04 - 0.11208184E+05 0.14746236E+05 0.13602330E+05 0.85573407E+04 0.75466661E+03 - -0.70702851E+04 -0.13219799E+05 -0.15514164E+05 -0.12278068E+05 -0.72066897E+04 - 0.33525748E+04 0.15514295E+05 0.19318255E+05 0.17565933E+05 0.11118681E+05 - 0.95517883E+03 -0.88759473E+04 -0.16307320E+05 -0.22080492E+05 -0.12538493E+05 - -0.11097478E+05 0.37781714E+04 0.20207499E+05 0.23347461E+05 0.20861573E+05 - 0.12963616E+05 0.11470851E+04 -0.10405151E+05 -0.16911761E+05 -0.30208874E+05 - -0.14169284E+05 -0.16507466E+05 0.54415857E+04 0.24536964E+05 0.26908549E+05 - 0.23146735E+05 0.12991067E+05 0.14374598E+04 -0.11262519E+05 -0.14354812E+05 - -0.37407862E+05 -0.29090643E+05 -0.18228481E+05 0.85001244E+04 0.27103675E+05 - 0.30975659E+05 0.23670714E+05 0.10494679E+05 0.21106678E+03 -0.74754576E+04 - -0.13855111E+05 -0.33520796E+05 -0.28502597E+05 -0.76307847E+04 0.11482467E+05 - 0.19850234E+05 0.29630686E+05 0.15920268E+05 0.77387119E+04 -0.10760128E+04 - -0.49806512E+04 -0.11398183E+05 -0.22277793E+05 -0.22911969E+05 -0.66082294E+04 - 0.45809634E+04 0.16881745E+05 0.17100267E+05 0.71138836E+04 0.42010071E+04 - -0.84893756E+03 -0.47179443E+04 -0.91807799E+04 -0.13982019E+05 -0.14154489E+05 - -0.86670103E+04 -0.16585927E+04 0.46148338E+04 0.17663215E+04 0.14937084E+04 - 0.27776204E+03 0.63013585E+03 -0.38677981E+04 -0.67006677E+04 -0.94424300E+04 - -0.10099436E+05 -0.10389755E+05 -0.94111659E+04 -0.38849923E+04 -0.38545010E+04 - -0.31209953E+04 0.99581679E+03 0.13935419E+04 -0.35554055E+04 -0.33815333E+04 - -0.43178226E+04 -0.92108627E+04 -0.11099327E+05 -0.13046275E+05 -0.50861971E+04 - -0.64883977E+04 -0.27059103E+04 0.55401114E+03 0.14380696E+04 -0.33973310E+04 - -0.35807619E+04 -0.32570093E+04 -0.96788795E+04 -0.11685152E+05 -0.14375323E+05 - -0.58054390E+04 -0.75885671E+04 -0.28777641E+04 0.75810799E+03 0.14431233E+04 - -0.33718329E+04 -0.35413401E+04 -0.27706290E+04 - 143 - -0.42703990E+04 -0.27833002E+04 -0.41472662E+03 0.20912534E+04 0.39422801E+04 - 0.45390394E+04 0.37056038E+04 0.16922556E+04 -0.84098432E+03 -0.31145849E+04 - -0.43844710E+04 -0.10686324E+05 -0.66222675E+04 -0.75045147E+03 0.50932575E+04 - 0.93795861E+04 0.11137999E+05 0.94897278E+04 0.47108268E+04 -0.20166385E+04 - -0.81013510E+04 -0.11433809E+05 -0.18893044E+05 -0.10928307E+05 -0.26117266E+03 - 0.94478661E+04 0.16051402E+05 0.18773916E+05 0.17642373E+05 0.95031102E+04 - -0.35686478E+04 -0.15727286E+05 -0.20639138E+05 -0.24942195E+05 -0.13460028E+05 - 0.70020218E+03 0.13018616E+05 0.21066123E+05 0.23549847E+05 0.23776899E+05 - 0.12710834E+05 -0.46003325E+04 -0.22067791E+05 -0.26756344E+05 -0.30718382E+05 - -0.15073537E+05 0.22110400E+04 0.17347916E+05 0.26246644E+05 0.26854581E+05 - 0.30157610E+05 0.13889215E+05 -0.48949951E+04 -0.29290460E+05 -0.31699704E+05 - -0.35787237E+05 -0.15036131E+05 0.37507457E+04 0.23606197E+05 0.31053345E+05 - 0.30314659E+05 0.34539400E+05 0.11126275E+05 -0.49187109E+04 -0.34927042E+05 - -0.35548984E+05 -0.34289312E+05 -0.15390098E+05 0.27325245E+04 0.37785001E+05 - 0.29475021E+05 0.36763556E+05 0.37504041E+05 0.15322287E+04 -0.47408096E+04 - -0.35724121E+05 -0.46344721E+05 -0.29892865E+05 -0.12180610E+05 0.10761866E+05 - 0.32431052E+05 0.39764662E+05 0.52899818E+05 0.20036757E+05 -0.66171990E+02 - -0.12551462E+05 -0.25338855E+05 -0.36192891E+05 -0.28508249E+05 -0.10021956E+05 - 0.90175922E+04 0.24594466E+05 0.38051346E+05 0.22645747E+05 0.87263442E+04 - -0.27325525E+04 -0.67933961E+04 -0.12993582E+05 -0.24393740E+05 -0.22878673E+05 - -0.60885950E+04 -0.56077980E+04 0.10106412E+05 0.15988939E+05 0.11984788E+05 - -0.34159316E+04 -0.18137240E+04 -0.67819711E+04 -0.64860254E+04 -0.14192627E+05 - -0.16197628E+05 -0.69855416E+04 -0.13643601E+05 -0.27210931E+04 0.10630188E+05 - 0.27465369E+04 -0.33282415E+04 -0.16966525E+04 -0.41371935E+04 -0.13291673E+04 - -0.93452489E+04 -0.14229260E+05 -0.78987944E+04 -0.18088331E+05 -0.33306979E+04 - 0.56539413E+04 0.30573003E+04 -0.37215846E+04 -0.10818859E+04 -0.42216974E+04 - -0.21645673E+04 -0.55584960E+04 -0.13951543E+05 -0.85115489E+04 -0.19274781E+05 - -0.46473354E+04 0.40719301E+04 0.22976181E+04 -0.36105023E+04 -0.82689198E+03 - -0.40033141E+04 -0.23707698E+04 -0.44170841E+04 diff --git a/util/EMPIRICAL/srcIE/data/mhs.cofcnts b/util/EMPIRICAL/srcIE/data/mhs.cofcnts deleted file mode 100644 index 3fc712f0..00000000 --- a/util/EMPIRICAL/srcIE/data/mhs.cofcnts +++ /dev/null @@ -1,184 +0,0 @@ -I= , BY>0.5, BZ>0.5 MILLSTONE/SONDRESTROM MODEL COEFFICIENT FILE - 3 - Electrostatic potential (kV) - Apex local time (hours) - Apex latitude (degrees) - 2 - 12 14 11 4 - -0.17135960E+01 -0.11423973E+01 -0.57119866E+00 0.00000000E+01 0.57119866E+00 - 0.11423973E+01 0.17135960E+01 0.22847947E+01 0.28559933E+01 0.34271920E+01 - 0.39983906E+01 0.45695893E+01 0.51407880E+01 0.57119866E+01 0.62831853E+01 - 0.68543840E+01 0.74255826E+01 0.79967813E+01 - 12 14 13 4 - 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.55475290E+03 - 0.83212935E+03 0.11095058E+04 0.13868823E+04 0.16642587E+04 0.19416352E+04 - 0.22190116E+04 0.24963881E+04 0.27737645E+04 0.33289057E+04 0.38836586E+04 - 0.38836586E+04 0.38836586E+04 0.38836586E+04 - 143 - 0.28197013E+03 -0.55678758E+03 -0.12409963E+04 -0.16190560E+04 -0.15667790E+04 - -0.10681489E+04 -0.25119520E+03 0.44406779E+03 0.11554706E+04 0.11575839E+04 - 0.93972852E+03 0.11330913E+04 -0.14345952E+04 -0.34298239E+04 -0.35789545E+04 - -0.25015026E+04 -0.14872956E+04 -0.81874886E+03 0.13977288E+04 0.20619314E+04 - 0.45739457E+04 0.34912270E+04 0.26964612E+04 -0.54195384E+04 -0.31940522E+04 - -0.42237540E+04 -0.70504895E+04 -0.12915916E+04 0.33498134E+04 -0.29028492E+04 - 0.64047737E+04 0.84269084E+04 0.11413810E+05 0.10150752E+05 0.21258429E+03 - -0.15600887E+04 -0.69338552E+04 -0.45960341E+04 -0.12727338E+05 0.10448808E+05 - 0.52616075E+04 0.71795581E+04 0.14426581E+05 0.12024385E+05 0.26042431E+05 - 0.50730265E+04 0.11900732E+04 -0.55088348E+04 -0.58829720E+04 -0.50288172E+04 - 0.57792283E+04 0.23042060E+05 0.11310753E+05 0.25209138E+05 0.11584747E+05 - 0.23056828E+05 0.19557562E+05 0.52518367E+04 -0.72844311E+04 -0.34468841E+04 - -0.33924792E+04 0.49163134E+04 0.16659446E+05 0.19792648E+05 0.18013602E+05 - 0.33840053E+05 0.23069692E+05 0.23025111E+05 0.68970808E+04 0.24583863E+03 - -0.21009023E+03 0.43994921E+04 0.11096304E+05 0.16730069E+05 0.15030121E+05 - 0.19743348E+05 0.30965452E+05 0.23887342E+05 0.25014738E+05 0.11273041E+05 - 0.45937238E+04 0.40885454E+04 0.48107873E+04 0.11985228E+05 0.15663707E+05 - 0.15982189E+05 0.16377720E+05 0.27657412E+05 0.22012485E+05 0.22352148E+05 - 0.14504311E+05 0.59483195E+04 0.62678698E+04 0.65449661E+04 0.12802944E+05 - 0.15199739E+05 0.16858577E+05 0.15638598E+05 0.25474650E+05 0.20294003E+05 - 0.20495685E+05 0.13607353E+05 0.80157436E+04 0.70130234E+04 0.77858858E+04 - 0.12014526E+05 0.14927051E+05 0.16577219E+05 0.16289621E+05 0.25024074E+05 - 0.19762917E+05 0.18745766E+05 0.14581281E+05 0.90749682E+04 0.76683724E+04 - 0.83247859E+04 0.11188566E+05 0.14782155E+05 0.16505075E+05 0.16565658E+05 - 0.21247026E+05 0.20310810E+05 0.19345042E+05 0.14691660E+05 0.96250141E+04 - 0.77399862E+04 0.84177685E+04 0.10759532E+05 0.14824006E+05 0.16347353E+05 - 0.16912562E+05 0.20863662E+05 0.20558329E+05 0.19642669E+05 0.14806414E+05 - 0.98274273E+04 0.77010954E+04 0.84610149E+04 0.10544698E+05 0.14793391E+05 - 0.16390480E+05 0.17035003E+05 0.21170325E+05 -I= , BY>0.5, BZ<-.5 MILLSTONE/SONDRESTROM MODEL COEFFICIENT FILE - 3 - Electrostatic potential (kV) - Apex local time (hours) - Apex latitude (degrees) - 2 - 12 14 11 4 - -0.17135960E+01 -0.11423973E+01 -0.57119866E+00 0.00000000E+01 0.57119866E+00 - 0.11423973E+01 0.17135960E+01 0.22847947E+01 0.28559933E+01 0.34271920E+01 - 0.39983906E+01 0.45695893E+01 0.51407880E+01 0.57119866E+01 0.62831853E+01 - 0.68543840E+01 0.74255826E+01 0.79967813E+01 - 12 14 13 4 - 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.55475290E+03 - 0.83212935E+03 0.11095058E+04 0.13868823E+04 0.16642587E+04 0.19416352E+04 - 0.22190116E+04 0.24963881E+04 0.27737645E+04 0.33289057E+04 0.38836586E+04 - 0.38836586E+04 0.38836586E+04 0.38836586E+04 - 143 - 0.18401215E+04 0.27096145E+03 -0.17258304E+04 -0.31176965E+04 -0.37024372E+04 - -0.30636376E+04 -0.17062532E+04 0.25915840E+03 0.20072216E+04 0.29134301E+04 - 0.31143189E+04 0.59681424E+04 0.71425598E+03 -0.29735758E+04 -0.71204915E+04 - -0.85698441E+04 -0.81030640E+04 -0.32569730E+04 0.13586805E+04 0.57095478E+04 - 0.87456426E+04 0.66074174E+04 0.88296234E+04 0.69528654E+04 -0.69886527E+04 - -0.11215135E+05 -0.13324132E+05 -0.12710942E+05 -0.11858995E+05 0.94548657E+04 - 0.16698509E+05 0.91167265E+04 0.18331341E+05 0.12043439E+05 0.14894420E+05 - -0.75767290E+04 -0.12807687E+05 -0.18290209E+05 -0.14837579E+05 -0.13526627E+05 - 0.14081294E+05 0.25958072E+05 0.19354388E+05 0.27789114E+05 0.29903651E+05 - 0.16182959E+05 -0.15740660E+04 -0.15889080E+05 -0.17912205E+05 -0.22510913E+05 - -0.46594477E+04 0.14149292E+05 0.42641777E+05 0.31711988E+05 0.38783365E+05 - 0.42266987E+05 0.27840204E+05 0.30348743E+04 -0.14433047E+05 -0.15576571E+05 - -0.23914652E+05 0.14479110E+03 0.17250134E+05 0.45427181E+05 0.54273901E+05 - 0.47619391E+05 0.47574699E+05 0.32222880E+05 0.29801101E+04 -0.11488556E+05 - -0.20958191E+05 0.11097243E+04 0.18542112E+04 0.21544653E+05 0.34590243E+05 - 0.49736600E+05 0.47366475E+05 0.45375511E+05 0.33044944E+05 0.60205801E+04 - -0.64981400E+04 -0.13902774E+05 0.11378093E+05 0.96675509E+04 0.21216694E+05 - 0.32367680E+05 0.33667476E+05 0.42618681E+05 0.39125661E+05 0.23296475E+05 - 0.17464020E+05 -0.38475679E+04 0.51097827E+04 0.17584081E+05 0.15147210E+05 - 0.21798071E+05 0.29428068E+05 0.30476993E+05 0.27606872E+05 0.27075447E+05 - 0.15593144E+05 0.19849434E+05 0.12963748E+05 0.15314402E+05 0.24898870E+05 - 0.18397682E+05 0.21528448E+05 0.29410166E+05 0.26128926E+05 0.22939757E+05 - 0.18775058E+05 0.21271122E+05 0.26074302E+05 0.22259939E+05 0.22811756E+05 - 0.24409321E+05 0.19807207E+05 0.21714695E+05 0.27036858E+05 0.23730088E+05 - 0.19144609E+05 0.16612091E+05 0.19186005E+05 0.30426178E+05 0.24648174E+05 - 0.23307737E+05 0.24712050E+05 0.19859160E+05 0.22205220E+05 0.26242615E+05 - 0.24306192E+05 0.15374890E+05 0.16542895E+05 0.19118534E+05 0.31542937E+05 - 0.25611131E+05 0.23863113E+05 0.24881545E+05 0.19789884E+05 0.22326575E+05 - 0.26066608E+05 0.24406712E+05 0.15210763E+05 -I= , BY<-.5, BZ>0.5 MILLSTONE/SONDRESTROM MODEL COEFFICIENT FILE - 3 - Electrostatic potential (kV) - Apex local time (hours) - Apex latitude (degrees) - 2 - 12 14 11 4 - -0.17135960E+01 -0.11423973E+01 -0.57119866E+00 0.00000000E+01 0.57119866E+00 - 0.11423973E+01 0.17135960E+01 0.22847947E+01 0.28559933E+01 0.34271920E+01 - 0.39983906E+01 0.45695893E+01 0.51407880E+01 0.57119866E+01 0.62831853E+01 - 0.68543840E+01 0.74255826E+01 0.79967813E+01 - 12 14 13 4 - 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.55475290E+03 - 0.83212935E+03 0.11095058E+04 0.13868823E+04 0.16642587E+04 0.19416352E+04 - 0.22190116E+04 0.24963881E+04 0.27737645E+04 0.33289057E+04 0.38836586E+04 - 0.38836586E+04 0.38836586E+04 0.38836586E+04 - 143 - 0.45706303E+03 -0.12496663E+03 -0.47902445E+03 -0.82741289E+03 -0.81956328E+03 - -0.52448397E+03 -0.76869806E+02 0.38891195E+03 0.86728059E+03 0.89965771E+03 - 0.83142259E+03 0.10209053E+04 0.16340452E+02 -0.23038712E+04 -0.21960186E+04 - -0.17913649E+04 -0.11957997E+04 -0.21681607E+03 0.87010510E+03 0.10062893E+04 - 0.26799776E+04 0.21150699E+04 0.43493649E+04 -0.24668414E+04 -0.20261158E+04 - -0.77602967E+04 -0.49198191E+04 0.82192077E+03 -0.26356074E+04 -0.30856512E+04 - 0.61802109E+04 0.28325709E+04 0.50276320E+04 0.42999551E+04 0.46365242E+04 - -0.79396149E+04 -0.11170304E+05 -0.10420471E+05 -0.56359365E+04 -0.50706973E+04 - -0.88013735E+04 0.61279662E+04 0.15572709E+05 0.49108072E+04 0.68675062E+04 - -0.43155819E+04 -0.11394811E+05 -0.16025396E+05 -0.98378284E+04 -0.17281289E+05 - -0.35931262E+04 -0.31315513E+04 0.15697063E+04 0.10247049E+05 0.11814218E+05 - 0.54815651E+04 -0.37164762E+04 -0.10098414E+05 -0.19545931E+05 -0.18582820E+05 - -0.97488465E+04 -0.21648904E+04 -0.16118777E+04 -0.20214025E+04 0.88544776E+04 - 0.17435071E+05 0.62284124E+04 -0.41631478E+04 -0.14118078E+05 -0.14623418E+05 - -0.15994720E+05 -0.45560785E+04 -0.24116048E+04 -0.71792660E+03 -0.56472508E+04 - 0.48893631E+04 0.11121273E+05 0.46955812E+04 -0.16794588E+03 -0.16756984E+05 - -0.93131860E+04 -0.76425303E+04 -0.48231975E+04 -0.27247443E+03 -0.17794347E+04 - -0.99910981E+03 0.19835728E+04 0.10600485E+05 0.46596811E+04 -0.56917295E+03 - -0.80889554E+04 -0.58256209E+04 -0.64478552E+04 -0.37223039E+04 -0.11180446E+03 - -0.37154976E+02 -0.59254281E+03 0.35015569E+04 0.50877300E+04 0.45464093E+04 - -0.62145781E+03 -0.17907427E+04 -0.52856790E+04 -0.49883729E+04 -0.37189842E+04 - -0.56399133E+03 -0.33561036E+03 0.38155953E+03 0.30608573E+04 0.62970984E+04 - 0.38129097E+04 0.98108556E+03 -0.19401400E+04 -0.39828189E+04 -0.51041931E+04 - -0.41164749E+04 -0.16054426E+04 -0.53317740E+03 0.11661625E+04 0.32462571E+04 - 0.43050851E+04 0.33780983E+04 0.28467249E+04 -0.10875940E+04 -0.31260982E+04 - -0.59480627E+04 -0.42669224E+04 -0.25320595E+04 -0.54701054E+03 0.12841642E+04 - 0.40390796E+04 0.50930105E+04 0.39663264E+04 0.30798702E+04 -0.54208002E+03 - -0.31999008E+04 -0.61277257E+04 -0.44623551E+04 -0.29942115E+04 -0.51027087E+03 - 0.13059903E+04 0.44191133E+04 0.51757654E+04 -I= , BY<-.5, BZ<-.5 MILLSTONE/SONDRESTROM MODEL COEFFICIENT FILE - 3 - Electrostatic potential (kV) - Apex local time (hours) - Apex latitude (degrees) - 2 - 12 14 11 4 - -0.17135960E+01 -0.11423973E+01 -0.57119866E+00 0.00000000E+01 0.57119866E+00 - 0.11423973E+01 0.17135960E+01 0.22847947E+01 0.28559933E+01 0.34271920E+01 - 0.39983906E+01 0.45695893E+01 0.51407880E+01 0.57119866E+01 0.62831853E+01 - 0.68543840E+01 0.74255826E+01 0.79967813E+01 - 12 14 13 4 - 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.00000000E+01 0.55475290E+03 - 0.83212935E+03 0.11095058E+04 0.13868823E+04 0.16642587E+04 0.19416352E+04 - 0.22190116E+04 0.24963881E+04 0.27737645E+04 0.33289057E+04 0.38836586E+04 - 0.38836586E+04 0.38836586E+04 0.38836586E+04 - 143 - 0.22592057E+04 -0.52920416E+03 -0.32336173E+04 -0.47581000E+04 -0.48123045E+04 - -0.33559618E+04 -0.70261356E+03 0.20753819E+04 0.42793620E+04 0.51518528E+04 - 0.43825478E+04 0.44515754E+04 -0.22078957E+04 -0.70417133E+04 -0.11366796E+05 - -0.12338104E+05 -0.91109389E+04 -0.31304174E+04 0.55118686E+04 0.11683737E+05 - 0.13186759E+05 0.10353280E+05 0.32589173E+04 -0.17162881E+04 -0.11823203E+05 - -0.18476918E+05 -0.23507977E+05 -0.19586171E+05 -0.40293756E+04 0.56246467E+04 - 0.20285817E+05 0.27619609E+05 0.15731566E+05 0.10681963E+05 -0.36369502E+04 - -0.11321097E+05 -0.31187672E+05 -0.27005034E+05 -0.29145726E+05 -0.59939644E+04 - 0.45128466E+04 0.23553255E+05 0.34943887E+05 0.14055651E+05 0.12187930E+05 - -0.55859345E+04 -0.16300278E+05 -0.37036017E+05 -0.31719849E+05 -0.36448916E+05 - -0.14779210E+05 0.45504136E+04 0.23361634E+05 0.42444563E+05 0.21801977E+05 - 0.17558663E+05 -0.42954141E+04 -0.16945944E+05 -0.45583736E+05 -0.35515262E+05 - -0.38647667E+05 -0.13851345E+05 -0.31049764E+03 0.21384983E+05 0.39614419E+05 - 0.47930927E+05 0.24659472E+05 -0.76620733E+04 -0.19610782E+05 -0.46929093E+05 - -0.37794564E+05 -0.38408683E+05 -0.19642417E+05 0.38961388E+04 0.16476158E+05 - 0.27177829E+05 0.33793455E+05 0.14345095E+05 -0.25952775E+04 -0.27864247E+05 - -0.40545114E+05 -0.37582802E+05 -0.23509231E+05 -0.13287784E+05 0.94530343E+04 - 0.81638289E+04 0.14821368E+05 0.30281961E+05 0.14809434E+05 -0.45878443E+04 - -0.28546567E+05 -0.23404787E+05 -0.26370657E+05 -0.13655608E+05 -0.58385710E+04 - 0.88336655E+04 0.52872169E+04 0.12717502E+05 0.16907099E+05 0.11419224E+05 - -0.41777955E+04 -0.14087599E+05 -0.80671601E+04 -0.13599809E+05 -0.85849521E+04 - -0.33448037E+04 0.78263012E+04 0.16042613E+04 0.12398687E+05 0.99359956E+04 - 0.80430554E+04 -0.12212495E+04 -0.47619880E+04 -0.57646728E+04 -0.10409569E+05 - -0.78930118E+04 -0.37339754E+04 0.49757451E+04 0.18099320E+04 0.60617546E+04 - 0.75067733E+04 0.70963973E+04 0.26728866E+04 -0.24067633E+04 -0.29670239E+04 - -0.98111716E+04 -0.71923665E+04 -0.47747236E+04 0.43715892E+04 0.15345986E+04 - 0.70437558E+04 0.43624495E+04 0.75047680E+04 0.36692947E+04 -0.17484031E+04 - -0.22950574E+04 -0.97482988E+04 -0.70434290E+04 -0.55617988E+04 0.42344758E+04 - 0.97781205E+03 0.76033623E+04 0.35177776E+04 diff --git a/util/EMPIRICAL/srcIE/data/w2k.dat b/util/EMPIRICAL/srcIE/data/w2k.dat deleted file mode 100644 index 2f3be3f6..00000000 --- a/util/EMPIRICAL/srcIE/data/w2k.dat +++ /dev/null @@ -1,1658 +0,0 @@ - Copyright 2000, Dan Weimer/MRC - 3 4 3 2 2 - -3.1751170 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -5.0746799 - -1.4196980 - 0.0000000E+00 - 0.0000000E+00 - -1.8977070 - -0.4501880 - 0.1377485 - 0.0000000E+00 - 0.1341317 - 3.9356402E-03 - -9.2498874E-03 - -3.2697350E-02 - 0.3938759 - 7.5384893E-02 - -4.7939491E-02 - 6.0670902E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -8.5208626 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -3.3440080 - 0.9688737 - 0.0000000E+00 - 0.0000000E+00 - 0.7783009 - 1.0702470E-02 - -6.0205180E-02 - 0.0000000E+00 - 0.9904295 - -0.1009436 - 1.1855370E-02 - 0.6696699 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.0941880 - -1.0031000 - 0.0000000E+00 - 0.0000000E+00 - 1.2822150 - 0.5553882 - 0.1475070 - 0.0000000E+00 - 1.0839310 - 0.6081992 - 8.5235029E-02 - -5.7406049E-02 - 7.4735038E-02 - -5.4577839E-02 - 2.8588019E-02 - -1.2910490E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.7274122 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.4913462 - -0.9451199 - 0.0000000E+00 - 0.0000000E+00 - 4.6055891E-02 - -4.6643831E-02 - 2.7382519E-02 - 0.0000000E+00 - -0.1782768 - 9.5235407E-02 - 9.2327716E-03 - 0.1028058 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 4.7393698E-02 - -1.0073349 - 0.0000000E+00 - 0.0000000E+00 - -0.7510609 - -0.9288589 - 0.1236973 - 0.0000000E+00 - -0.5092773 - -0.4528713 - -3.7584340E-03 - -3.1539928E-02 - 0.3924180 - 4.4449851E-02 - -5.0996020E-02 - -2.1618960E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.4833781 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.3607524 - 0.3674394 - 0.0000000E+00 - 0.0000000E+00 - 6.5519132E-02 - 8.0563568E-02 - 1.3587130E-02 - 0.0000000E+00 - -1.9943461E-02 - -2.8918009E-02 - -9.9685583E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.6515065 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.7182699 - -0.4485890 - 0.0000000E+00 - 0.0000000E+00 - -2.1399069 - -0.3044490 - 0.3908401 - 0.0000000E+00 - -1.5203520 - -0.3051591 - 3.5953190E-02 - -1.4683740E-02 - -0.3346596 - -0.2387413 - -1.4278550E-02 - -1.0835440E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.7620207 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.1811522 - -0.1638912 - 0.0000000E+00 - 0.0000000E+00 - 8.3562389E-02 - -3.7401619E-03 - -2.8073540E-02 - 0.0000000E+00 - -0.1190994 - 1.2908420E-02 - 4.8197769E-03 - 0.6706998 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.1869330 - 0.4697247 - 0.0000000E+00 - 0.0000000E+00 - 1.3503470 - 0.3551250 - -5.1583732E-03 - 0.0000000E+00 - 1.1073260 - 0.1064297 - 2.1124231E-02 - -4.4627290E-02 - 0.4312423 - 4.5605060E-02 - 3.1182770E-02 - 1.1402450E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.5756376 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.4152353 - 0.2159665 - 0.0000000E+00 - 0.0000000E+00 - -8.2926393E-02 - -1.3214140E-02 - 2.4602750E-02 - 0.0000000E+00 - -0.2153297 - -2.7258210E-02 - 2.1685490E-02 - 3.0697969E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 8.5124298E-04 - -1.3747039E-03 - 0.0000000E+00 - 0.0000000E+00 - 9.9285622E-04 - 8.8756278E-06 - 1.5951489E-04 - 0.0000000E+00 - 5.8600301E-05 - 7.0012739E-04 - 7.8551449E-05 - -2.1376340E-05 - -4.2278389E-04 - 3.3728880E-04 - 9.2616137E-06 - 1.4189870E-06 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -5.7847048E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.2603450E-03 - 1.1059180E-04 - 0.0000000E+00 - 0.0000000E+00 - 7.4464269E-04 - 1.1652410E-04 - -6.2181812E-06 - 0.0000000E+00 - 1.3066721E-04 - 8.5620537E-05 - 1.0963100E-06 - 2.7589520E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 6.2554493E-04 - 3.1111341E-03 - 0.0000000E+00 - 0.0000000E+00 - 5.9355341E-04 - 1.1506260E-03 - 7.7254859E-05 - 0.0000000E+00 - 9.2795270E-04 - -7.5307711E-05 - -3.8139990E-07 - 1.0382900E-04 - 7.5886969E-04 - 2.2766069E-05 - 3.0632629E-05 - 1.3559780E-05 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 9.6820006E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 3.6607271E-03 - 4.0921179E-04 - 0.0000000E+00 - 0.0000000E+00 - -2.0463180E-04 - 1.7419290E-04 - 1.5472269E-05 - 0.0000000E+00 - -2.5397720E-04 - 2.1802220E-05 - -3.5549681E-06 - 1.6255390E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 3.9787241E-04 - 6.4204051E-04 - 0.0000000E+00 - 0.0000000E+00 - 4.6273871E-04 - 5.0528301E-04 - -9.2844202E-05 - 0.0000000E+00 - -2.1372830E-04 - 1.7370041E-04 - -4.3499858E-05 - -2.0991451E-05 - -7.2660157E-04 - -2.0520879E-04 - -9.2090677E-06 - 9.2100078E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 6.4237852E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 4.7273500E-04 - -3.3114240E-05 - 0.0000000E+00 - 0.0000000E+00 - 2.8169749E-04 - 1.2926210E-05 - 3.4386048E-05 - 0.0000000E+00 - -1.2888260E-05 - 1.7294509E-05 - 2.3959090E-05 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -3.7390459E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -6.5364232E-03 - -3.1194750E-03 - 0.0000000E+00 - 0.0000000E+00 - -4.1456758E-03 - -1.8076660E-03 - -4.4105900E-04 - 0.0000000E+00 - -7.2054478E-04 - -2.5728560E-04 - -2.0156951E-04 - -1.1827260E-05 - 1.3823250E-03 - 2.8730719E-04 - -5.5452168E-05 - 5.2458659E-06 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.6621780E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 9.6562109E-04 - 4.4103281E-04 - 0.0000000E+00 - 0.0000000E+00 - 3.0431410E-04 - 1.0931020E-04 - 3.5044399E-05 - 0.0000000E+00 - 8.0713871E-05 - -1.9551040E-05 - 6.4563410E-06 - 1.4511720E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 2.3491451E-04 - 1.1526200E-03 - 0.0000000E+00 - 0.0000000E+00 - -3.8826891E-04 - 6.8254420E-04 - 1.0427940E-04 - 0.0000000E+00 - -4.9181993E-04 - -4.1113552E-05 - 1.9378211E-05 - 5.1182109E-05 - 5.5717421E-05 - -1.6378050E-04 - -3.0441461E-05 - 8.0110240E-06 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -8.3332932E-05 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -3.9759849E-04 - -1.9053240E-04 - 0.0000000E+00 - 0.0000000E+00 - -1.0041360E-04 - -3.4299192E-05 - -4.5811279E-07 - 0.0000000E+00 - 1.0647900E-04 - -3.3915840E-06 - -1.4241010E-05 - -2.7542961 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -4.5507822 - 1.6723500 - 0.0000000E+00 - 0.0000000E+00 - -4.4082761 - 1.5816710 - -0.6426712 - 0.0000000E+00 - -0.7603719 - 0.8453884 - -6.2116820E-02 - 7.8943223E-02 - 2.5689299 - -4.6998821E-02 - -8.5500203E-04 - 4.8108231E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.8532089 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.3603500 - -1.3237550 - 0.0000000E+00 - 0.0000000E+00 - -0.6681255 - -0.3520552 - 4.7100641E-02 - 0.0000000E+00 - 8.1101470E-02 - -5.7511371E-02 - 4.1280542E-02 - 0.1850780 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.3636574 - -2.0214391 - 0.0000000E+00 - 0.0000000E+00 - 2.2709160 - -0.8763739 - 0.6169259 - 0.0000000E+00 - 1.5083170 - -0.2009920 - 0.1299739 - -0.1170118 - -0.6163132 - 0.5947903 - 3.2043312E-02 - 4.7608260E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -2.4254861 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.3951638 - 0.7828946 - 0.0000000E+00 - 0.0000000E+00 - 0.1080578 - 0.1492205 - 1.3473270E-02 - 0.0000000E+00 - 2.6047850E-02 - 1.7600439E-02 - -5.2822690E-02 - -0.1725200 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 6.8870403E-02 - 2.3228121 - 0.0000000E+00 - 0.0000000E+00 - -8.2906239E-02 - 0.7240706 - -3.9659970E-02 - 0.0000000E+00 - 0.2323004 - 0.2377857 - -3.3533081E-02 - 6.3278303E-02 - 0.7808822 - 0.2852596 - 9.3629919E-03 - 6.0656872E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.4575335 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 3.6695320E-02 - -0.1043023 - 0.0000000E+00 - 0.0000000E+00 - 0.4802405 - 1.0507230E-02 - 6.2362172E-02 - 0.0000000E+00 - 0.3343301 - 5.0968438E-02 - 3.2158289E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -3.0425210 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -4.8539310 - 6.4806142 - 0.0000000E+00 - 0.0000000E+00 - -2.9518490 - 2.3604939 - 0.5680143 - 0.0000000E+00 - -1.0620000 - -1.0623330 - 0.3278451 - 0.1909433 - -0.1975705 - -1.2405180 - -3.2432351E-02 - -6.4792321E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 3.0748391 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.6629820 - -0.5304987 - 0.0000000E+00 - 0.0000000E+00 - 0.6289515 - -7.4518107E-02 - -3.3961560E-03 - 0.0000000E+00 - 7.8351080E-02 - 8.7868817E-02 - 3.0486609E-03 - -0.4493804 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.6479986 - -1.6850550 - 0.0000000E+00 - 0.0000000E+00 - 0.7638658 - 0.9955127 - -0.6698338 - 0.0000000E+00 - 0.1645036 - 0.5170708 - -0.1429291 - -0.1022541 - -1.4219810 - -0.2852665 - 4.2570621E-02 - 3.7315299E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.0085670 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.1170953 - 9.7302534E-02 - 0.0000000E+00 - 0.0000000E+00 - -0.1844410 - 6.0848650E-03 - -8.6736381E-03 - 0.0000000E+00 - -0.1534339 - -2.9693659E-02 - 3.0395720E-02 - -1.9053520E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -3.6717431E-08 - -3.7507030E-07 - 0.0000000E+00 - 0.0000000E+00 - 2.5063001E-08 - -4.9827952E-07 - 1.9419939E-08 - 0.0000000E+00 - -2.8124060E-08 - -1.8846519E-07 - -1.1697870E-08 - -3.9671768E-09 - 7.4668371E-08 - -3.9699060E-08 - -4.3958370E-09 - -3.6056240E-09 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -2.0075980E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -2.0035520E-07 - -1.6051300E-07 - 0.0000000E+00 - 0.0000000E+00 - -1.0535420E-07 - -3.9006849E-08 - 7.5546094E-09 - 0.0000000E+00 - -1.5180699E-08 - 4.2699280E-09 - -3.3159950E-10 - -1.8432230E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -4.6897401E-07 - -7.3197748E-07 - 0.0000000E+00 - 0.0000000E+00 - -5.7363121E-07 - -4.7986072E-07 - -1.0474110E-07 - 0.0000000E+00 - -4.4213581E-07 - -1.8634800E-07 - -3.9022861E-08 - -2.5493479E-08 - -1.2122069E-07 - 2.0728560E-08 - -1.7771031E-08 - 1.2765020E-10 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.8271260E-06 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -6.3272921E-07 - 2.4242939E-07 - 0.0000000E+00 - 0.0000000E+00 - 9.1779413E-08 - -3.1378281E-08 - 3.6297221E-09 - 0.0000000E+00 - 1.3535799E-07 - -3.6902350E-08 - -3.1805809E-09 - -2.7178160E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -4.4342039E-07 - 3.9980861E-08 - 0.0000000E+00 - 0.0000000E+00 - 1.3168520E-07 - 1.8179740E-07 - -1.8768620E-08 - 0.0000000E+00 - 4.6998809E-07 - 1.8766239E-07 - 6.2357870E-09 - 1.9831820E-08 - 2.6728111E-07 - 1.5030071E-07 - 2.1419110E-08 - 6.9713142E-09 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -8.9010157E-08 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.0403430E-07 - -2.3061661E-07 - 0.0000000E+00 - 0.0000000E+00 - -8.1991757E-08 - -5.5706629E-08 - -1.2428960E-08 - 0.0000000E+00 - 5.1307470E-08 - 1.1473020E-08 - -9.3918269E-09 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 7.3462923E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.2227709E-06 - 5.2620618E-07 - 0.0000000E+00 - 0.0000000E+00 - 8.3717401E-07 - 3.1872591E-07 - -3.7937280E-08 - 0.0000000E+00 - 3.4665720E-07 - 4.0071850E-08 - 3.7231629E-08 - 4.6042552E-09 - -2.6048190E-07 - -6.9488770E-08 - 2.0853619E-08 - 1.7198299E-09 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -2.3742351E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.5341649E-07 - -4.9174730E-08 - 0.0000000E+00 - 0.0000000E+00 - -8.3073388E-08 - -2.7834810E-08 - 4.1664880E-09 - 0.0000000E+00 - -5.9531908E-09 - 8.9034220E-09 - -3.1643610E-09 - -1.5645010E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.5859020E-07 - -3.7150761E-07 - 0.0000000E+00 - 0.0000000E+00 - -1.8815970E-07 - -2.3305350E-07 - 3.1689591E-08 - 0.0000000E+00 - -3.8888220E-07 - 1.9139980E-08 - -8.9815293E-09 - -6.0297412E-10 - -3.7327251E-07 - -2.3001920E-08 - -6.8623760E-09 - -7.9764328E-09 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -2.1458220E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 6.8514929E-08 - -9.5635457E-08 - 0.0000000E+00 - 0.0000000E+00 - 8.5460833E-08 - 2.2308511E-08 - -2.2384070E-08 - 0.0000000E+00 - 5.4549979E-08 - 2.9996180E-08 - -2.0226230E-09 - 57.1646004 - -4.2710190 - -0.5292011 - 0.0000000E+00 - 0.7681828 - -0.7139795 - 0.8175011 - 1.2034370 - 0.1147224 - 0.0000000E+00 - -0.3413021 - 0.4221539 - -0.9278557 - -0.4068304 - 5.7753962E-02 - 0.0000000E+00 - 0.1751812 - -0.2661276 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -0.2210616 - 0.2159181 - -5.4275300E-02 - 0.0000000E+00 - -0.2869037 - -0.3745333 - 0.2742743 - -0.1196863 - 0.3375669 - 0.0000000E+00 - 0.3514460 - -0.4644003 - -0.3006047 - -7.6280981E-03 - 0.1115874 - 0.0000000E+00 - 4.1457411E-02 - -2.1769591E-02 - 0.4751040 - -0.2071610 - -0.1171736 - 0.0000000E+00 - -9.4441243E-02 - -0.2187366 - -8.4124925E-03 - 5.4189831E-02 - -7.3748671E-02 - 0.0000000E+00 - -6.6712797E-02 - 0.1335156 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.0148900E-02 - -2.4468951E-02 - 8.4618524E-02 - 0.0000000E+00 - 2.5608741E-02 - 7.7364556E-02 - 1.5026350E-02 - -2.5864109E-02 - 3.5854679E-02 - 0.0000000E+00 - 7.4554142E-04 - 6.1876848E-02 - -1.8216470 - 1.2557310 - 1.7701910 - 0.0000000E+00 - 0.2530435 - -1.1204690 - 0.4903598 - -0.4257789 - -1.4303150 - 0.0000000E+00 - 1.1527280 - -0.1116812 - -0.4010909 - 1.2030880 - 0.1671280 - 0.0000000E+00 - 0.1144468 - 0.3681220 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.7385850 - -0.2669789 - -0.4950300 - 0.0000000E+00 - -0.4195705 - 0.3177376 - 6.5679923E-02 - 0.6131076 - 0.5257785 - 0.0000000E+00 - -0.2617071 - 8.6438052E-02 - -1.0028519E-06 - 5.6851551E-08 - 3.7932301E-07 - 0.0000000E+00 - 1.3592970E-07 - 5.9882247E-08 - -3.0285869E-07 - -1.8065091E-08 - -2.0050599E-09 - 0.0000000E+00 - 1.8345280E-07 - 4.8707030E-08 - 1.1290240E-07 - 1.7922180E-07 - 2.5133511E-07 - 0.0000000E+00 - 3.9045741E-08 - -1.5032811E-07 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 5.4703388E-08 - -5.6476349E-08 - -2.8146951E-07 - 0.0000000E+00 - 4.3269601E-08 - 4.0593619E-08 - -8.0209091E-08 - 9.8593979E-08 - -1.0799620E-07 - 0.0000000E+00 - -1.3627310E-07 - 7.5732437E-08 - -7.1569227E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -8.0620840E-02 - 0.9049401 - 0.0000000E+00 - 0.0000000E+00 - -1.0624480E-02 - 0.4824860 - -7.1946733E-02 - 0.0000000E+00 - 0.4248854 - -9.3630753E-02 - -2.9454781E-02 - 2.1690520E-02 - 0.4560786 - -0.1446761 - -6.9531780E-03 - 5.4049650E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 2.2077601 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.5590208 - -4.5260660E-02 - 0.0000000E+00 - 0.0000000E+00 - -0.2457145 - 1.9381089E-02 - 1.1766620E-02 - 0.0000000E+00 - -7.0687130E-02 - 1.2728000E-02 - 4.2736810E-03 - 0.2660639 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.3437456 - -0.2969766 - 0.0000000E+00 - 0.0000000E+00 - 6.3174949E-03 - 5.8056749E-02 - 1.4578830E-02 - 0.0000000E+00 - -0.2209247 - 2.8877130E-02 - 1.0765820E-03 - 1.6305260E-02 - -0.1904368 - -3.5380758E-02 - 1.0668020E-02 - 6.3442048E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.9125937 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.7414981 - 3.5260610E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.2082071 - 7.3238939E-02 - -1.6365441E-02 - 0.0000000E+00 - -3.0748710E-02 - 3.9639670E-02 - -4.4411318E-03 - -5.1594120E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 6.8294063E-02 - -7.3396318E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.1207933 - -0.2260103 - 2.3860540E-02 - 0.0000000E+00 - 7.3990367E-02 - -0.1457180 - 2.5553750E-02 - 1.5297430E-02 - 0.1556944 - 4.0323552E-02 - 3.4007491E-03 - 6.1826180E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.4727950 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.3474955 - 6.9808118E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.1254886 - -7.0505990E-03 - -1.1868940E-02 - 0.0000000E+00 - -2.6646999E-03 - -1.3122050E-02 - -3.7263150E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.1419250E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 7.4290097E-02 - 0.5192333 - 0.0000000E+00 - 0.0000000E+00 - -5.1497549E-02 - 0.2601147 - 4.2209369E-03 - 0.0000000E+00 - -0.1380371 - -0.1024523 - 1.0852730E-02 - 2.3835121E-02 - 2.4697389E-02 - -0.1852273 - -6.8484349E-03 - 3.6850229E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.2078062 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -9.6129380E-02 - -7.5784206E-02 - 0.0000000E+00 - 0.0000000E+00 - -0.1353764 - -8.6888502E-04 - 5.4621608E-03 - 0.0000000E+00 - -8.7379657E-02 - -1.9060270E-03 - 3.2259310E-03 - 0.2921906 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.2497390 - -3.9831851E-02 - 0.0000000E+00 - 0.0000000E+00 - -7.9558389E-03 - -5.8008451E-03 - -5.2441880E-02 - 0.0000000E+00 - -8.4965527E-02 - 3.6795322E-02 - 6.9784452E-03 - 1.2828970E-02 - -8.4655978E-02 - 6.4485028E-02 - 2.3045391E-02 - 5.1767901E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -4.0415689E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -5.3672660E-02 - 0.2511783 - 0.0000000E+00 - 0.0000000E+00 - 9.1433354E-02 - 9.2801116E-02 - -1.4729850E-02 - 0.0000000E+00 - 5.9279241E-02 - 1.8629700E-02 - 3.9530522E-03 - 4.1416640E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 5.2647642E-04 - 6.3024750E-03 - 0.0000000E+00 - 0.0000000E+00 - -5.4069143E-04 - 4.1064140E-03 - -4.9551373E-04 - 0.0000000E+00 - 2.2498181E-03 - -7.3794491E-04 - -2.0533820E-04 - 2.5429859E-04 - 3.0957549E-03 - -1.4504220E-03 - -3.6020590E-06 - 6.7432593E-05 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 2.0592680E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 7.2596800E-03 - -2.1932620E-04 - 0.0000000E+00 - 0.0000000E+00 - -1.2394000E-03 - 4.0029021E-04 - 3.4137790E-06 - 0.0000000E+00 - -7.5981941E-04 - 2.4513021E-04 - 7.4141690E-06 - 1.9250830E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 3.0520000E-03 - 3.1369871E-03 - 0.0000000E+00 - 0.0000000E+00 - 6.7688969E-05 - 3.1492929E-03 - -2.6974379E-04 - 0.0000000E+00 - 5.2911311E-04 - -6.5706111E-04 - -7.9185702E-05 - 3.1881631E-04 - 1.6780880E-03 - -1.2463790E-03 - 6.7628767E-05 - 1.0455470E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 2.2420330E-02 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.0855130E-02 - 9.8205260E-07 - 0.0000000E+00 - 0.0000000E+00 - 6.3087628E-04 - 6.7666551E-04 - -1.5425580E-04 - 0.0000000E+00 - -7.8782928E-04 - 3.7860751E-04 - -2.9729419E-05 - 1.2951180E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 3.4601081E-03 - 1.2518330E-03 - 0.0000000E+00 - 0.0000000E+00 - 1.4425620E-03 - -3.4682281E-04 - 2.4229669E-04 - 0.0000000E+00 - -3.8894819E-04 - -9.3149842E-04 - 2.7758651E-04 - 9.8233213E-05 - 8.9039531E-04 - -5.9487989E-05 - 1.0669290E-04 - 6.9394751E-05 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 9.0884147E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 5.1447880E-03 - 4.5040759E-04 - 0.0000000E+00 - 0.0000000E+00 - 1.1028940E-03 - 9.1728180E-05 - -1.4970770E-04 - 0.0000000E+00 - -4.2170630E-04 - -5.9641141E-05 - -1.0821340E-05 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.0901380E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -4.2183581E-04 - 2.0365149E-03 - 0.0000000E+00 - 0.0000000E+00 - -1.4264510E-03 - 8.7913079E-04 - -7.2036477E-05 - 0.0000000E+00 - -1.5310280E-03 - -8.1249938E-04 - 1.5315360E-04 - 2.2865800E-04 - 2.0288541E-04 - -9.8869845E-04 - 1.7234721E-05 - 3.8093502E-05 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 7.2186289E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.1587120E-03 - 2.6113170E-04 - 0.0000000E+00 - 0.0000000E+00 - -6.7836762E-04 - 3.4908380E-04 - -1.2870190E-05 - 0.0000000E+00 - -4.5242999E-04 - 7.6642253E-05 - 1.8397130E-05 - 5.3454947E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -2.6815751E-04 - 7.0287992E-04 - 0.0000000E+00 - 0.0000000E+00 - -1.3103730E-03 - 1.0964560E-04 - -2.2289790E-04 - 0.0000000E+00 - -5.9126009E-04 - -3.8045549E-04 - 2.6000751E-04 - 2.8661001E-04 - 6.7326962E-04 - 2.2836570E-05 - 1.3756390E-04 - 5.2041771E-05 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 2.0340590E-04 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - -1.1169780E-03 - 1.1859650E-03 - 0.0000000E+00 - 0.0000000E+00 - -1.1694720E-04 - 7.1047893E-04 - -1.2869040E-04 - 0.0000000E+00 - -2.2097610E-04 - 1.7317010E-04 - 1.6580279E-05 - 0.7587162 - 0.1077068 - -0.2119203 - 0.0000000E+00 - -3.7333251E-03 - -8.6835012E-02 - 0.4146659 - 8.3968394E-02 - -0.2049841 - 0.0000000E+00 - -0.1134884 - -1.5674571E-02 - -0.1276009 - -9.3319343E-04 - -8.1775002E-02 - 0.0000000E+00 - 2.6871760E-03 - -0.3752225 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.2093748 - -6.6883966E-02 - -2.4657549E-02 - 0.0000000E+00 - -8.0812015E-03 - -6.4855129E-02 - 5.6063969E-02 - -7.3675029E-02 - -7.1687102E-02 - 0.0000000E+00 - 4.7148861E-02 - -6.7401357E-02 - 7.6808580E-03 - 1.0490480E-03 - -2.6804830E-03 - 0.0000000E+00 - -5.5310922E-04 - -1.2579850E-03 - 7.9836156E-03 - 1.1651260E-03 - -3.3555699E-03 - 0.0000000E+00 - -1.2565020E-03 - -2.2057910E-03 - 8.6308690E-04 - -1.2895621E-04 - -8.3398510E-04 - 0.0000000E+00 - -5.9152802E-04 - -3.0966939E-03 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 0.0000000E+00 - 1.3342560E-03 - -1.0091451E-03 - -2.7828690E-04 - 0.0000000E+00 - 3.7061161E-04 - -6.3397549E-04 - 7.5015333E-04 - -1.2149950E-03 - -7.1620138E-04 - 0.0000000E+00 - 1.1442089E-03 - -8.2251808E-04 diff --git a/util/EMPIRICAL/srcIE/data/wei96.cofcnts b/util/EMPIRICAL/srcIE/data/wei96.cofcnts deleted file mode 100644 index 4baf2ab4..00000000 --- a/util/EMPIRICAL/srcIE/data/wei96.cofcnts +++ /dev/null @@ -1,514 +0,0 @@ -************************ Copyright 1996, Dan Weimer/MRC *********************** - 8 3 4 - 0 0 0 - 0 0 -1.611946E+00 -8.451862E-02 -1.903894E+00 -2.109956E-03 - 1 0 1.175119E+00 1.371881E-01 1.073159E+00 -1.041088E-03 - 1 1 4.176207E-01 -4.013116E-01 -2.446771E+00 -1.751400E-03 - 2 0 -1.339407E-01 -2.772550E-03 -3.851441E-01 -2.310798E-05 - 2 1 8.406455E-01 1.836351E-01 -3.296400E-01 -2.159753E-03 - 3 0 7.569232E-01 3.604420E-03 -2.357162E-01 -2.328886E-03 - 3 1 1.617217E-02 -7.326121E-02 -9.301474E-02 5.268917E-04 - 4 0 3.200720E-01 -1.876874E-02 -3.843079E-02 -3.420266E-04 - 4 1 -4.034550E-01 2.055289E-02 1.375211E-02 4.965098E-04 - 1 0 0 - 0 0 -6.580315E+00 7.290699E-02 -2.613407E+00 4.554134E-03 - 1 0 4.327821E+00 -5.793014E-02 1.960351E+00 -6.480206E-03 - 1 1 -2.163739E-01 -8.607172E-01 -4.730157E+00 -2.998261E-03 - 2 0 -1.584344E+00 9.377982E-02 -5.936117E-01 2.296712E-03 - 2 1 2.722230E+00 3.334443E-01 -4.063852E-01 -5.813456E-03 - 3 0 1.316090E+00 -2.846100E-02 -2.448122E-02 -2.873176E-03 - 3 1 -2.886103E-01 -1.207702E-01 2.466510E-01 1.197824E-03 - 4 0 7.035921E-01 -6.027802E-02 -3.426042E-01 -6.924961E-04 - 4 1 -1.272923E+00 7.870483E-02 2.599361E-01 1.793123E-03 - 1 1 0 - 0 0 3.913021E+00 -2.096538E-01 1.915634E-01 -1.075031E-02 - 1 0 -3.495937E+00 2.683606E-01 -1.078013E+00 6.137460E-03 - 1 1 1.497604E+00 -2.079873E-01 3.828235E+00 -4.466903E-03 - 2 0 2.241893E-01 1.097739E-01 8.868959E-01 -1.951160E-03 - 2 1 -4.970958E-01 1.478191E-01 -1.889891E+00 9.779768E-04 - 3 0 -5.275772E-01 -6.507674E-02 -7.281996E-01 1.816403E-03 - 3 1 -6.989453E-01 -4.842478E-02 -1.100918E+00 8.065827E-04 - 4 0 1.608625E+00 4.657950E-03 1.132060E+00 -3.099655E-03 - 4 1 5.088236E-01 3.531113E-02 6.322770E-01 -1.416900E-03 - 1 1 1 - 0 0 8.143008E+00 -1.126793E+00 -8.093025E-01 -3.476021E-02 - 1 0 -5.462892E+00 1.760196E+00 -2.047299E-01 1.382728E-02 - 1 1 -9.874625E-01 1.151684E-02 3.268635E+00 2.708250E-03 - 2 0 -5.143542E-01 -1.810792E-01 4.414659E-02 -4.125451E-04 - 2 1 2.314335E+00 -2.712176E-02 -6.225026E-02 -5.013648E-03 - 3 0 2.476845E+00 1.683786E-01 -1.028064E+00 -8.096465E-03 - 3 1 -2.961034E+00 3.312454E-02 -3.562438E-01 5.883928E-03 - 4 0 -1.912511E+00 4.817857E-02 1.237045E-01 4.233206E-03 - 4 1 9.368278E-01 -2.756828E-02 -3.834441E-01 -1.904345E-03 - 2 0 0 - 0 0 -6.704216E+00 1.742146E-01 -3.844611E+00 1.087556E-02 - 1 0 2.729096E+00 -1.171817E-01 3.669947E+00 -5.560380E-03 - 1 1 -2.163196E+00 -6.935225E-01 -3.223286E+00 -1.258903E-03 - 2 0 -1.987216E+00 9.693732E-02 -7.512787E-01 4.089628E-03 - 2 1 2.973175E+00 -2.529125E-02 5.087402E-02 -4.050821E-03 - 3 0 1.651909E-01 -1.610871E-02 -3.125453E-01 6.177249E-04 - 3 1 -3.018878E-01 6.161006E-03 4.177882E-01 3.911285E-04 - 4 0 1.453121E+00 -6.332964E-02 -2.841197E-02 -2.626823E-03 - 4 1 -1.151877E+00 7.890745E-02 -6.695395E-01 1.632093E-03 - 2 1 0 - 0 0 2.015304E+00 -1.549419E-01 1.435755E+00 -6.729334E-03 - 1 0 -2.148824E-01 2.149593E-01 -1.064407E+00 3.381305E-04 - 1 1 1.219893E+00 -2.198924E-01 2.780858E+00 -3.006601E-03 - 2 0 -8.596009E-01 3.508177E-02 7.766512E-01 1.293054E-03 - 2 1 -3.169941E-01 1.118723E-01 -3.153675E-01 1.051786E-03 - 3 0 2.521632E-01 -3.791796E-03 -4.612972E-01 -4.611664E-04 - 3 1 -4.737971E-01 -9.665917E-03 -2.710328E-01 2.635606E-04 - 4 0 8.576719E-01 -2.208641E-02 5.462099E-01 -1.380509E-03 - 4 1 5.548177E-01 3.059935E-02 -8.373875E-02 -1.467659E-03 - 2 1 1 - 0 0 -2.002989E+00 -2.562646E-01 -4.671470E-01 -8.046321E-03 - 1 0 1.786416E+00 5.476431E-01 -4.141606E-01 -4.500893E-04 - 1 1 -9.071064E-01 7.674401E-02 1.197012E+00 1.727437E-03 - 2 0 -9.125930E-01 9.334393E-02 1.661176E-01 9.182850E-04 - 2 1 8.204490E-02 -6.998041E-02 -3.318347E-02 7.198570E-04 - 3 0 4.562691E-01 9.267350E-02 -3.779533E-01 -2.656434E-03 - 3 1 -8.179438E-01 3.836859E-02 -3.940102E-01 1.206627E-03 - 4 0 -3.594128E-01 1.187772E-02 -1.306174E-01 7.381582E-04 - 4 1 4.936657E-02 -7.184200E-03 4.972648E-02 -9.201127E-05 - 2 2 0 - 0 0 -7.204034E-01 3.648412E-02 -4.768742E-01 2.719262E-03 - 1 0 4.954269E-01 -2.174829E-02 5.803092E-01 -1.231927E-03 - 1 1 -8.501882E-02 -1.044188E-02 2.171439E-02 2.191911E-04 - 2 0 1.934952E-01 -9.390177E-03 -1.773358E-01 -1.405087E-04 - 2 1 -9.942125E-02 1.937045E-02 -7.644979E-01 3.329560E-04 - 3 0 -1.439410E-01 1.095165E-02 6.974628E-02 3.323988E-04 - 3 1 -2.235808E-01 -2.999086E-02 9.954952E-02 6.921155E-04 - 4 0 -3.656928E-01 -1.016858E-02 -8.901505E-02 8.246222E-04 - 4 1 3.900684E-02 -2.577610E-03 -2.414184E-03 -8.964036E-05 - 2 2 1 - 0 0 1.026507E+00 3.534253E-03 -1.471041E+00 -1.786564E-05 - 1 0 -1.815384E+00 3.962782E-02 1.353080E+00 2.629704E-03 - 1 1 -4.843567E-01 5.945832E-02 -6.469588E-01 8.357923E-04 - 2 0 1.177033E+00 -6.133815E-02 -3.075297E-01 -2.230437E-03 - 2 1 1.253194E+00 -3.495790E-02 -1.007685E-01 -2.895160E-03 - 3 0 -2.449427E-01 2.421671E-02 1.905446E-01 1.216257E-04 - 3 1 -1.766032E-01 3.032963E-02 -2.793586E-01 4.599426E-04 - 4 0 3.791444E-01 -1.718461E-02 -1.530870E-01 -7.019987E-04 - 4 1 8.505542E-02 -1.441939E-02 2.799295E-01 -9.139007E-05 - 3 0 0 - 0 0 4.110006E-01 -5.841072E-02 -1.990812E+00 -6.543149E-04 - 1 0 -1.552992E+00 2.635979E-01 1.762326E+00 2.561658E-03 - 1 1 -4.652761E+00 -2.799944E-01 -5.535673E-01 4.692459E-03 - 2 0 -1.339927E-01 -3.461457E-02 4.848702E-01 6.483577E-04 - 2 1 2.549721E+00 -3.118301E-01 -1.975647E-01 -2.507827E-03 - 3 0 4.559333E-01 -1.040945E-02 -1.129251E+00 -2.276984E-04 - 3 1 -2.523836E-01 3.289090E-02 3.201656E-01 6.390887E-04 - 4 0 7.516913E-01 -2.384848E-02 -5.637101E-02 -1.429349E-03 - 4 1 -9.587357E-01 6.229999E-02 -1.088210E+00 1.485158E-03 - 3 1 0 - 0 0 -6.226970E-01 4.565062E-02 1.387097E+00 1.891239E-04 - 1 0 1.806662E+00 -3.736990E-02 -4.304667E-01 -3.326053E-03 - 1 1 2.665283E-01 -1.248528E-01 4.654177E-01 -7.451719E-04 - 2 0 -4.591762E-01 4.521479E-02 3.233343E-01 7.207292E-04 - 2 1 2.671157E-01 9.028855E-03 3.321966E-01 1.009492E-04 - 3 0 5.600848E-01 1.042955E-03 -3.051206E-01 -1.124081E-03 - 3 1 -2.927964E-01 3.756723E-02 1.113548E-01 4.395480E-05 - 4 0 5.964602E-01 -2.394551E-02 2.025586E-01 -1.151617E-03 - 4 1 3.921151E-01 1.165346E-03 -4.462447E-01 -9.562683E-04 - 3 1 1 - 0 0 -3.866266E+00 1.877501E-01 -1.159006E-02 5.321196E-03 - 1 0 1.507346E+00 -9.262031E-02 -4.342775E-01 -2.080875E-03 - 1 1 -6.178110E-01 5.807395E-02 -2.247939E-01 1.198843E-03 - 2 0 2.696747E-01 8.375955E-02 4.210490E-01 -3.863850E-04 - 2 1 -6.811972E-01 -5.242327E-02 -1.346389E-01 2.145719E-03 - 3 0 -6.629910E-01 5.685848E-02 1.841165E-02 7.932435E-04 - 3 1 3.832178E-01 1.144666E-02 -1.486586E-01 -8.950897E-04 - 4 0 1.278111E-01 -1.132865E-02 -1.582978E-01 -3.795070E-04 - 4 1 -8.787453E-02 -2.387146E-03 1.168324E-01 1.288361E-04 - 3 2 0 - 0 0 2.709159E-01 -1.501183E-02 -9.090028E-02 -6.764720E-05 - 1 0 -1.642368E-01 2.524255E-02 1.617108E-01 2.676274E-04 - 1 1 -1.529791E-01 -1.376941E-02 3.809933E-01 3.615245E-04 - 2 0 2.611483E-02 -1.331333E-02 -2.457780E-02 5.600048E-05 - 2 1 1.514609E-01 1.157156E-02 -3.598265E-01 -3.641591E-04 - 3 0 1.956022E-01 -3.314562E-03 1.262898E-01 -3.395538E-04 - 3 1 -1.186251E-01 -2.195016E-02 5.256286E-02 4.087830E-04 - 4 0 -3.146154E-01 2.290368E-03 -8.276106E-02 6.903213E-04 - 4 1 1.059759E-01 -6.832918E-04 -3.412579E-02 -2.632442E-04 - 3 2 1 - 0 0 4.177074E-01 -7.032408E-03 -4.654475E-01 -5.868289E-04 - 1 0 -2.371927E-01 3.763762E-02 3.865934E-01 3.893259E-04 - 1 1 -9.688082E-02 1.217613E-02 -3.133727E-01 1.246799E-04 - 2 0 -1.843645E-02 -1.527207E-02 2.502191E-02 4.541812E-06 - 2 1 4.494670E-01 -3.145483E-03 -2.510039E-02 -1.041954E-03 - 3 0 1.459180E-01 2.008816E-03 1.875665E-01 -4.620934E-04 - 3 1 8.967791E-02 6.048319E-03 -7.904407E-02 -1.663997E-04 - 4 0 -1.741896E-01 9.714875E-03 -1.656981E-01 2.768664E-04 - 4 1 -8.524099E-02 2.067382E-03 5.831706E-02 1.766687E-04 - 3 3 0 - 0 0 3.176703E-02 -1.197606E-02 8.583403E-02 -5.609974E-05 - 1 0 -1.211135E-01 2.223521E-02 -1.590485E-01 1.145186E-04 - 1 1 -7.248268E-02 -3.126488E-03 1.640501E-01 1.889824E-04 - 2 0 6.371317E-02 -1.255663E-02 2.966652E-02 -8.404099E-05 - 2 1 -3.309213E-02 6.129645E-03 -1.857253E-01 3.210588E-05 - 3 0 9.943762E-03 -2.433596E-03 -2.925337E-02 4.393500E-05 - 3 1 7.597755E-02 2.518892E-04 1.401580E-01 -1.949439E-04 - 4 0 -8.685742E-02 8.483847E-03 -1.027695E-02 8.672819E-05 - 4 1 2.788512E-02 -2.348023E-03 -3.135588E-02 -4.815029E-05 - 3 3 1 - 0 0 -2.353962E-01 9.224380E-04 8.377821E-02 4.402222E-04 - 1 0 1.290093E-01 3.364845E-04 -5.639530E-02 -2.281935E-04 - 1 1 -1.280645E-01 4.136024E-04 3.785508E-02 2.465302E-04 - 2 0 7.140310E-03 2.170504E-05 4.072967E-02 1.310350E-05 - 2 1 -6.634332E-03 -6.870147E-04 -3.573184E-02 9.408694E-05 - 3 0 -1.023321E-01 1.216862E-03 3.510001E-02 2.926140E-04 - 3 1 -2.658824E-02 1.510069E-04 3.652567E-02 4.498022E-05 - 4 0 2.534131E-02 1.210824E-03 -1.511022E-03 -9.095152E-05 - 4 1 1.382235E-02 -4.995608E-03 -1.280027E-02 1.075073E-06 - 4 0 0 - 0 0 2.852516E+00 -1.890758E-02 2.071319E+00 -6.891591E-03 - 1 0 -8.180792E-01 1.631613E-01 -1.600197E+00 2.993107E-03 - 1 1 -4.708035E+00 7.876544E-02 3.859705E-01 7.333628E-03 - 2 0 8.030177E-01 2.993220E-02 1.238489E+00 -2.450332E-03 - 2 1 1.396792E+00 -2.744005E-01 -7.116687E-01 -1.408757E-03 - 3 0 9.678663E-01 -4.785018E-02 -1.315229E+00 -1.560352E-03 - 3 1 7.953331E-03 -3.556272E-02 -3.251954E-02 7.354556E-04 - 4 0 2.306794E-01 -2.007682E-02 -3.268186E-01 -3.399460E-04 - 4 1 -1.011853E+00 1.381567E-02 -4.007425E-01 2.285402E-03 - 4 1 0 - 0 0 -4.186254E-01 4.988610E-02 2.744800E-01 1.340641E-03 - 1 0 3.114825E-01 -4.097653E-02 4.700992E-01 -8.889927E-04 - 1 1 -5.342681E-01 -4.393088E-02 -7.003952E-01 8.075686E-04 - 2 0 6.020491E-01 -2.195889E-03 4.149159E-04 -1.200398E-03 - 2 1 5.257831E-01 -4.905920E-02 2.138323E-01 -6.067081E-04 - 3 0 2.997528E-01 1.775450E-02 -2.492440E-01 -6.703103E-04 - 3 1 -8.636142E-02 3.919609E-02 2.359468E-02 -8.768783E-05 - 4 0 7.450133E-01 -2.792822E-02 7.229756E-02 -1.547694E-03 - 4 1 4.634850E-02 -1.020765E-02 -2.152742E-01 -1.249501E-04 - 4 1 1 - 0 0 -1.476896E-01 8.796985E-02 4.428529E-02 1.825951E-03 - 1 0 -9.830908E-01 -1.505039E-02 -1.209653E-01 1.621636E-03 - 1 1 -3.584450E-01 1.863715E-02 -1.477267E-01 8.956135E-04 - 2 0 4.533869E-01 -7.725997E-03 4.430043E-01 -7.124573E-04 - 2 1 -3.875721E-01 -6.964856E-03 -1.654641E-01 9.511403E-04 - 3 0 -2.659927E-01 4.494068E-02 9.626026E-02 3.298619E-04 - 3 1 2.465057E-01 -1.176143E-02 -4.551739E-02 -3.684530E-04 - 4 0 -9.878816E-02 -1.475424E-02 -1.315490E-01 2.148974E-04 - 4 1 6.706639E-02 -5.375738E-03 1.091593E-01 -1.542408E-04 - 4 2 0 - 0 0 6.693320E-02 -7.026471E-03 -2.013282E-02 -1.844852E-04 - 1 0 9.989957E-02 9.307998E-03 3.667250E-02 -1.114374E-04 - 1 1 -8.651443E-02 -8.332650E-03 1.947959E-01 1.607490E-04 - 2 0 -1.255038E-01 7.658926E-04 -1.166960E-02 2.589248E-04 - 2 1 5.963517E-02 1.187909E-03 -3.962382E-02 -1.228791E-04 - 3 0 1.006956E-01 -3.292889E-03 7.114811E-02 -1.499834E-04 - 3 1 -7.528062E-02 -5.794141E-03 -3.120408E-02 1.724156E-04 - 4 0 -5.842596E-02 6.870151E-04 -2.605623E-03 1.384793E-04 - 4 1 5.334085E-02 -1.196673E-03 -1.685233E-02 -1.002251E-04 - 4 2 1 - 0 0 -2.098565E-01 1.915632E-02 -1.122633E-01 6.473096E-05 - 1 0 4.404577E-01 -1.210420E-02 9.092797E-02 -6.413357E-04 - 1 1 1.003880E-02 3.191115E-03 -1.327232E-01 -5.636438E-05 - 2 0 -1.699993E-01 1.576849E-02 7.351413E-02 2.395762E-04 - 2 1 2.262847E-02 1.093763E-03 -1.338999E-02 -7.055376E-05 - 3 0 3.939437E-02 -1.206541E-03 1.114838E-01 -1.532363E-04 - 3 1 1.504848E-01 1.263408E-03 -6.545763E-03 -3.509642E-04 - 4 0 -8.363800E-02 5.026029E-03 -6.317965E-02 1.373598E-04 - 4 1 -9.761313E-02 3.618507E-03 3.925255E-03 2.013263E-04 - 4 3 0 - 0 0 1.277699E-02 -1.294029E-03 -2.456250E-03 -2.393095E-05 - 1 0 -4.221311E-02 2.729940E-03 -9.717856E-03 6.344548E-05 - 1 1 -2.896609E-02 2.057746E-03 2.868134E-02 5.242520E-05 - 2 0 2.455128E-02 2.902144E-05 -6.360835E-03 -6.650715E-05 - 2 1 1.123510E-02 1.247184E-03 -3.336772E-02 -2.743052E-05 - 3 0 -5.566673E-03 -1.763506E-03 -1.858403E-02 3.978374E-05 - 3 1 2.163449E-02 -1.224587E-04 2.548705E-02 -4.719777E-05 - 4 0 1.978807E-02 7.335067E-04 1.324718E-02 -5.751538E-05 - 4 1 1.019502E-02 -1.787041E-03 -4.995842E-04 -1.015632E-05 - 4 3 1 - 0 0 2.424821E-02 -1.696589E-03 8.924000E-03 -3.974191E-05 - 1 0 -6.611343E-02 -4.940752E-04 -1.902076E-02 1.636421E-04 - 1 1 -3.160734E-02 7.197326E-04 1.272359E-02 7.335424E-05 - 2 0 3.362058E-02 1.303069E-03 1.728628E-02 -7.624384E-05 - 2 1 4.143656E-02 -3.407424E-03 5.028412E-03 -5.880684E-05 - 3 0 -2.646329E-02 -1.826614E-03 -3.259487E-03 8.434732E-05 - 3 1 -7.482585E-03 5.124629E-04 -3.939420E-03 1.318506E-05 - 4 0 1.686070E-02 1.643132E-03 1.905276E-02 -4.302863E-05 - 4 1 1.782182E-02 -2.637321E-04 -4.352774E-03 -4.190817E-05 - 5 0 0 - 0 0 8.222696E-01 5.702299E-02 1.820931E+00 -2.028410E-03 - 1 0 4.479292E-01 -1.721190E-02 -8.911130E-01 -1.130509E-04 - 1 1 -1.871681E+00 2.015752E-01 -2.536363E-01 3.456573E-03 - 2 0 1.018571E+00 4.150916E-02 2.387301E-01 -2.436078E-03 - 2 1 1.905233E-02 -1.118697E-01 -3.103246E-01 2.308411E-04 - 3 0 -8.121571E-02 -1.453524E-02 -1.145305E+00 3.607305E-04 - 3 1 1.778697E-01 -7.103610E-02 -4.492753E-01 4.103932E-04 - 4 0 4.790372E-01 -1.566320E-02 3.261582E-02 -1.219219E-03 - 4 1 -1.832307E-01 -4.393309E-02 -1.045414E-01 1.288986E-03 - 5 1 0 - 0 0 2.267901E-01 -1.909265E-02 -3.904344E-01 2.399262E-05 - 1 0 -3.975123E-01 4.646749E-02 5.929261E-01 4.612550E-04 - 1 1 -8.785642E-01 -1.142618E-02 -7.925766E-01 1.471768E-03 - 2 0 5.932475E-01 -3.191872E-02 -3.844833E-02 -1.102556E-03 - 2 1 4.484526E-01 -4.211284E-02 7.086702E-02 -7.945542E-04 - 3 0 1.234464E-01 2.048063E-02 -1.793516E-01 -4.118710E-04 - 3 1 3.091678E-02 1.103378E-02 -6.729382E-02 -4.271475E-05 - 4 0 6.461658E-01 -2.285413E-02 -6.274587E-02 -1.221787E-03 - 4 1 -1.369576E-01 2.603317E-03 5.729588E-02 1.704104E-04 - 5 1 1 - 0 0 1.123164E+00 -2.092575E-02 -1.033140E-01 -9.636192E-04 - 1 0 -6.213244E-01 5.298112E-02 2.520654E-01 1.067325E-03 - 1 1 -4.632833E-02 2.283940E-03 6.962911E-02 1.715545E-04 - 2 0 -3.281601E-02 -1.095696E-02 2.061293E-01 -3.558331E-05 - 2 1 -2.131735E-01 8.882665E-03 -1.572704E-01 4.143243E-04 - 3 0 4.340395E-02 2.248909E-02 8.478960E-02 -2.251224E-04 - 3 1 1.077957E-01 -9.581319E-03 2.596639E-02 -1.974183E-04 - 4 0 -4.000193E-02 -4.160750E-03 -7.371999E-02 1.331685E-04 - 4 1 -6.485917E-02 -6.712186E-03 1.904960E-02 1.699017E-04 - 5 2 0 - 0 0 -6.982711E-02 3.298424E-03 3.481143E-02 3.700686E-05 - 1 0 1.263097E-01 -5.706696E-03 8.302661E-04 -1.722514E-04 - 1 1 -3.164766E-02 -3.691628E-03 3.043395E-02 4.660260E-05 - 2 0 -5.289366E-02 6.221212E-03 -5.513685E-03 6.929447E-05 - 2 1 1.070047E-02 -2.858552E-04 9.661174E-03 -1.816747E-05 - 3 0 -1.697419E-04 -1.167940E-04 3.748785E-02 2.986073E-05 - 3 1 -3.686119E-02 3.829937E-04 -7.143387E-04 5.832638E-05 - 4 0 1.123993E-02 2.632585E-06 6.068734E-03 -7.292693E-06 - 4 1 1.394575E-02 -7.334645E-04 -4.324087E-03 -1.771377E-05 - 5 2 1 - 0 0 -1.768199E-01 1.255280E-02 -4.347377E-02 2.384686E-04 - 1 0 1.379761E-01 -9.201392E-03 2.014120E-02 -1.994732E-04 - 1 1 2.203063E-02 2.735744E-03 -4.092919E-02 -5.894063E-05 - 2 0 8.245617E-02 4.410119E-03 6.729621E-02 -1.661268E-04 - 2 1 -2.257438E-02 -3.761412E-04 -2.867401E-02 3.903878E-05 - 3 0 -5.926009E-02 3.147917E-03 1.827837E-02 8.242681E-05 - 3 1 5.943653E-02 1.238794E-03 6.872634E-03 -1.606089E-04 - 4 0 1.396418E-02 -9.339908E-04 9.415667E-04 -3.084829E-05 - 4 1 -4.330576E-02 2.595613E-03 -1.485843E-02 8.396264E-05 - 5 3 0 - 0 0 1.336855E-02 -4.992611E-04 -6.215331E-03 -2.150163E-05 - 1 0 -1.400049E-02 2.030186E-04 1.141480E-03 3.515464E-05 - 1 1 -1.768028E-03 1.113479E-03 6.763887E-03 -3.777777E-06 - 2 0 4.834428E-03 5.080657E-04 5.376216E-03 -2.118796E-05 - 2 1 8.465578E-03 5.696504E-04 -5.945240E-03 -1.619044E-05 - 3 0 8.381549E-04 -4.897166E-04 -1.035375E-02 8.093535E-06 - 3 1 5.131976E-03 -4.859734E-04 4.514194E-03 -5.964439E-06 - 4 0 8.177524E-03 -2.605593E-04 6.405053E-03 -1.801444E-05 - 4 1 5.465152E-03 -7.592052E-05 -3.402488E-04 -1.529102E-05 - 5 3 1 - 0 0 2.367473E-02 -1.199241E-03 1.638787E-03 -3.159367E-05 - 1 0 -3.020152E-02 1.538589E-03 -1.291253E-02 6.018129E-05 - 1 1 6.338617E-03 -1.096899E-04 -5.195377E-03 -5.447892E-06 - 2 0 2.993571E-03 1.360793E-04 5.608694E-03 -8.898933E-06 - 2 1 2.068743E-02 -1.869466E-03 1.252924E-02 -2.968810E-05 - 3 0 5.354990E-03 -9.101864E-04 -6.708205E-03 -5.173851E-06 - 3 1 -6.812336E-03 7.032771E-04 -6.970838E-03 1.024476E-05 - 4 0 3.334815E-03 7.741408E-04 1.181800E-02 -1.068793E-05 - 4 1 6.230248E-03 1.646287E-04 -1.183122E-03 -1.434571E-05 - 6 0 0 - 0 0 -3.063285E-01 -1.151456E-04 3.469782E-01 1.224183E-03 - 1 0 3.302762E-01 -7.781273E-03 2.912934E-01 -8.819761E-04 - 1 1 3.664809E-02 1.099398E-01 -1.931654E-01 1.959769E-04 - 2 0 6.537539E-01 9.331042E-03 -2.182464E-01 -1.381091E-03 - 2 1 4.290584E-01 7.950959E-02 3.796271E-01 -1.499562E-03 - 3 0 -9.654930E-01 1.713274E-02 -7.494010E-01 2.204701E-03 - 3 1 -6.954214E-01 -5.487607E-02 -2.273241E-01 1.784445E-03 - 4 0 -5.133264E-03 1.135769E-02 1.845001E-01 -3.481217E-04 - 4 1 5.773261E-01 -2.835375E-02 -2.397217E-02 -4.761277E-04 - 6 1 0 - 0 0 1.275259E-01 -5.898369E-03 -1.587868E-01 -3.753179E-04 - 1 0 1.812569E-01 2.196796E-02 1.401125E-01 -3.599082E-04 - 1 1 -6.924576E-01 8.986612E-03 -4.730681E-01 1.166884E-03 - 2 0 3.034140E-01 -3.665212E-03 -9.992270E-03 -6.564456E-04 - 2 1 2.124516E-01 -2.146708E-02 -1.261999E-01 -5.268769E-04 - 3 0 -5.848184E-04 6.805565E-03 -1.111690E-01 -1.111391E-04 - 3 1 3.736794E-02 -4.039207E-04 -4.991458E-02 -4.481393E-05 - 4 0 4.232059E-01 -1.241425E-02 -9.091623E-02 -7.388231E-04 - 4 1 -9.232073E-02 7.164168E-03 1.206415E-01 4.661890E-05 - 6 1 1 - 0 0 4.706848E-01 -2.714748E-02 -5.099146E-02 -6.615264E-04 - 1 0 2.957418E-01 2.106035E-02 2.706062E-01 -4.448444E-04 - 1 1 5.614366E-02 -1.965739E-04 1.095014E-02 -1.606148E-04 - 2 0 -5.027935E-02 -4.664932E-04 5.286700E-02 2.693132E-05 - 2 1 -3.325615E-02 9.403639E-03 -1.114117E-01 -1.692468E-05 - 3 0 5.449850E-02 1.087508E-02 4.374196E-02 -2.652878E-04 - 3 1 3.261784E-02 -1.100966E-03 1.094725E-01 -1.183687E-04 - 4 0 6.730770E-02 2.237432E-03 -3.091540E-02 -9.997196E-05 - 4 1 -8.163026E-02 -3.809015E-03 -7.238486E-02 1.657547E-04 - 6 2 0 - 0 0 -4.640970E-02 1.238434E-03 2.258788E-03 1.051632E-04 - 1 0 3.147795E-03 -1.423975E-03 1.294096E-02 -1.350517E-05 - 1 1 -1.257215E-02 3.722020E-04 -2.348491E-02 1.706110E-05 - 2 0 1.768220E-02 2.005903E-03 -1.331772E-02 -5.023362E-05 - 2 1 7.931157E-03 -7.695063E-04 -8.466900E-03 -2.405629E-05 - 3 0 -8.631293E-03 1.813550E-03 1.591113E-02 2.293681E-05 - 3 1 -1.892352E-02 2.191018E-03 4.481630E-03 2.333089E-05 - 4 0 6.635091E-03 6.087706E-04 3.529540E-03 -6.968784E-06 - 4 1 2.454645E-02 -5.672033E-04 -1.463385E-03 -4.780112E-05 - 6 2 1 - 0 0 7.125106E-03 2.123462E-03 -1.498438E-02 4.659750E-05 - 1 0 -2.714527E-02 9.095154E-04 -4.092869E-03 4.583869E-05 - 1 1 1.272162E-02 1.135993E-03 9.923108E-03 -2.477079E-05 - 2 0 8.557273E-02 -1.507334E-03 4.556160E-02 -1.640636E-04 - 2 1 -4.370337E-03 1.250905E-03 -1.779219E-02 -3.062331E-06 - 3 0 -1.099378E-02 1.907503E-03 -6.633644E-03 1.764767E-05 - 3 1 1.785966E-02 5.256931E-04 1.046503E-02 -5.597720E-05 - 4 0 1.941175E-02 -1.228494E-03 9.880718E-03 -4.154736E-05 - 4 1 -1.417926E-02 1.273033E-03 -7.807361E-03 2.276800E-05 - 6 3 0 - 0 0 -4.712164E-03 2.205431E-04 3.112421E-04 8.561656E-06 - 1 0 6.580555E-03 -5.309572E-04 -3.047358E-03 -1.097398E-06 - 1 1 -9.616437E-04 2.725193E-04 7.648256E-04 1.175126E-07 - 2 0 1.727062E-03 2.293009E-04 7.701193E-03 -7.730621E-06 - 2 1 3.497270E-03 1.461942E-04 1.850128E-03 -4.505842E-06 - 3 0 -4.198305E-03 2.800449E-05 -5.047927E-03 1.027828E-05 - 3 1 2.529855E-05 3.088264E-05 1.079548E-03 -8.347429E-07 - 4 0 5.745948E-03 -2.737614E-04 3.957347E-03 -9.306983E-06 - 4 1 1.857145E-03 1.418235E-04 1.332345E-03 -6.820052E-06 - 6 3 1 - 0 0 7.793436E-03 -2.593813E-04 -2.533518E-03 -1.228567E-05 - 1 0 -4.948850E-03 9.920101E-04 -1.965159E-03 7.385579E-06 - 1 1 8.952916E-03 -6.972306E-04 -3.889090E-03 -9.531830E-06 - 2 0 -4.027706E-03 1.445842E-04 -1.333028E-04 5.615838E-06 - 2 1 1.243095E-03 -1.711762E-04 2.113707E-03 3.600896E-07 - 3 0 3.689476E-03 -1.920472E-04 -2.671850E-03 -6.473876E-06 - 3 1 -4.526567E-04 7.720948E-05 -1.884994E-03 3.175112E-07 - 4 0 -1.880156E-03 1.249313E-04 2.894831E-03 2.423431E-06 - 4 1 3.445359E-04 1.468250E-05 -1.460227E-03 4.277398E-07 - 7 0 0 - 0 0 -1.020319E-01 -3.125213E-02 -5.935289E-01 8.099166E-04 - 1 0 3.650482E-02 -7.866964E-04 5.489820E-01 -2.289426E-04 - 1 1 5.659163E-01 5.396391E-02 6.701270E-01 -1.472705E-03 - 2 0 2.358199E-01 4.745613E-02 -1.262909E-01 -9.748303E-04 - 2 1 7.878129E-01 9.680709E-02 4.127766E-01 -1.912493E-03 - 3 0 -1.665649E+00 4.485439E-02 -5.961549E-01 3.415455E-03 - 3 1 -1.264640E+00 4.284846E-02 2.864367E-01 2.121244E-03 - 4 0 -1.635652E-01 -6.283858E-03 3.057429E-01 4.038604E-04 - 4 1 5.402607E-01 -1.897612E-02 -3.746685E-01 -7.147245E-04 - 7 1 0 - 0 0 1.235157E-01 5.362538E-03 1.034169E-01 -4.138314E-04 - 1 0 2.617718E-01 5.191985E-03 -3.418119E-02 -5.578484E-04 - 1 1 -2.130179E-01 1.397519E-02 -1.625609E-01 4.146512E-04 - 2 0 3.166845E-01 -8.722884E-03 -7.028675E-02 -5.319398E-04 - 2 1 -2.648681E-03 -5.266607E-03 -2.156771E-01 -1.354727E-04 - 3 0 -1.242210E-01 1.111710E-02 -8.820347E-02 1.219223E-04 - 3 1 -3.360920E-02 1.959597E-04 -8.413435E-02 8.708480E-06 - 4 0 2.892112E-01 -1.055475E-02 2.546463E-03 -4.960880E-04 - 4 1 4.098840E-02 4.783120E-03 9.294774E-02 -1.940630E-04 - 7 1 1 - 0 0 -3.866710E-03 -2.008976E-03 6.839161E-02 -2.163564E-04 - 1 0 3.987503E-01 -1.599530E-02 1.153672E-01 -5.660367E-04 - 1 1 2.268400E-02 4.333685E-03 -5.740701E-02 -1.507876E-04 - 2 0 1.518240E-01 2.027476E-03 2.681991E-02 -3.128408E-04 - 2 1 5.090879E-02 7.277924E-03 -3.419294E-02 -2.153919E-04 - 3 0 5.785469E-04 6.050503E-03 1.216021E-02 -1.322162E-04 - 3 1 1.230941E-02 1.302134E-03 9.383574E-02 -5.556761E-05 - 4 0 1.348734E-01 1.719392E-03 -2.010835E-02 -2.534707E-04 - 4 1 -3.301807E-02 3.483088E-03 -5.171263E-02 -9.658347E-06 - 7 2 0 - 0 0 -6.738128E-03 -9.802680E-04 -1.212027E-02 4.474719E-05 - 1 0 -2.054300E-02 1.998045E-03 1.612171E-02 2.660637E-05 - 1 1 -1.288889E-02 5.137733E-04 -1.927842E-02 3.034455E-05 - 2 0 1.773928E-03 5.651262E-05 -9.303713E-03 -1.087282E-05 - 2 1 1.608718E-02 -7.712835E-04 -1.172350E-02 -3.906948E-05 - 3 0 1.141289E-02 1.429567E-03 1.640945E-02 -2.858567E-05 - 3 1 -6.656239E-03 1.102576E-03 -2.711010E-05 9.083225E-06 - 4 0 -1.388951E-03 3.599451E-04 -3.319374E-03 1.182734E-05 - 4 1 2.035645E-02 5.628836E-04 7.868619E-04 -5.242487E-05 - 7 2 1 - 0 0 6.879008E-02 -8.857684E-04 -9.675571E-03 -8.006945E-05 - 1 0 -2.618375E-03 -4.299715E-05 3.571500E-03 1.355992E-05 - 1 1 1.673380E-03 -3.878982E-04 1.577152E-02 1.027739E-05 - 2 0 1.885404E-02 -7.151192E-05 1.937841E-02 -5.118783E-05 - 2 1 1.995537E-02 5.723766E-04 5.702437E-03 -4.098034E-05 - 3 0 2.368965E-02 -7.688390E-04 1.587064E-03 -3.491142E-05 - 3 1 1.450045E-02 1.836623E-04 1.058516E-02 -3.769117E-05 - 4 0 1.047730E-03 -3.441508E-04 3.920625E-04 -2.604588E-06 - 4 1 -1.833663E-02 7.333015E-04 -2.982079E-03 3.098715E-05 - 7 3 0 - 0 0 -7.137774E-03 2.793148E-04 1.789437E-03 1.251025E-05 - 1 0 7.953898E-03 -4.702237E-04 -1.459280E-03 -8.888943E-06 - 1 1 -1.780068E-03 -1.473248E-05 -1.287883E-03 5.071074E-06 - 2 0 3.597725E-03 3.605471E-05 3.859674E-03 -7.708393E-06 - 2 1 6.808978E-04 -1.060503E-04 3.075095E-03 -4.338992E-08 - 3 0 -5.804778E-03 2.639699E-04 -1.828756E-03 1.011995E-05 - 3 1 -3.310966E-03 2.106102E-04 2.261672E-04 5.486925E-06 - 4 0 4.462974E-03 -1.907410E-04 2.697221E-03 -6.889218E-06 - 4 1 5.927285E-04 1.285847E-04 9.988839E-04 -3.414016E-06 - 7 3 1 - 0 0 4.056406E-04 4.558273E-05 -3.147514E-03 -5.696999E-07 - 1 0 -3.277994E-03 3.062749E-04 9.451208E-04 5.683862E-06 - 1 1 2.237990E-03 -4.484840E-04 -5.085089E-04 1.068720E-06 - 2 0 -1.422010E-03 1.722799E-04 -1.066626E-03 1.601859E-06 - 2 1 -2.903014E-03 1.632739E-04 -2.056400E-04 6.189387E-06 - 3 0 1.216474E-03 -1.480751E-04 -1.431830E-04 -6.647651E-07 - 3 1 1.753242E-03 -1.016334E-04 -1.394813E-03 -3.141470E-06 - 4 0 -3.180045E-03 -8.688333E-06 -1.528246E-04 6.244358E-06 - 4 1 -9.893477E-04 -9.872513E-05 3.741357E-04 3.760795E-06 - 8 0 0 - 0 0 2.715797E-01 -3.372394E-02 -1.128431E-01 -4.279390E-04 - 1 0 6.618650E-02 1.320571E-02 -2.055722E-01 -1.373317E-04 - 1 1 3.083676E-01 3.749527E-02 1.089662E+00 -1.327831E-03 - 2 0 -4.389215E-02 3.090284E-02 1.983932E-01 -4.419573E-04 - 2 1 6.766551E-01 6.594575E-02 2.252485E-01 -1.269377E-03 - 3 0 -1.672958E+00 6.565069E-02 -4.466643E-01 3.107716E-03 - 3 1 -1.087464E+00 7.865917E-02 5.374482E-01 1.536335E-03 - 4 0 -1.200710E-01 -3.814940E-02 2.516671E-01 8.462713E-04 - 4 1 2.094008E-01 -1.194089E-02 -3.827596E-01 -2.127124E-04 - 8 1 0 - 0 0 1.764038E-01 1.117031E-03 5.127971E-02 -4.134787E-04 - 1 0 1.075682E-01 5.428779E-03 5.718916E-02 -3.058994E-04 - 1 1 3.181656E-02 2.689298E-03 -1.528588E-02 7.261131E-05 - 2 0 2.579625E-01 -1.509937E-02 -8.363584E-02 -3.738411E-04 - 2 1 -5.213710E-03 4.734174E-03 -1.706723E-01 -9.500320E-05 - 3 0 -1.412468E-01 1.084693E-02 -8.732916E-02 1.972881E-04 - 3 1 -1.410044E-01 2.851740E-03 -1.107346E-01 1.917815E-04 - 4 0 2.157529E-01 -8.272981E-03 3.211675E-02 -3.860795E-04 - 4 1 7.632324E-02 4.655526E-03 5.548173E-02 -2.669942E-04 - 8 1 1 - 0 0 -3.272432E-02 4.466103E-03 6.359559E-02 -1.017810E-04 - 1 0 6.540439E-02 -1.952584E-02 3.871625E-02 -7.037380E-05 - 1 1 4.884139E-03 6.344526E-03 -5.805375E-02 -9.874531E-05 - 2 0 2.187388E-01 -2.724100E-03 7.389399E-04 -4.079832E-04 - 2 1 -1.218702E-02 4.454385E-04 -5.538247E-03 -2.868538E-05 - 3 0 9.022811E-03 2.016197E-03 1.832786E-02 -8.183924E-05 - 3 1 8.743705E-02 1.785008E-04 5.965881E-02 -1.871100E-04 - 4 0 1.224653E-01 2.111004E-03 -2.010611E-03 -2.512778E-04 - 4 1 -7.872506E-02 7.201617E-03 -3.827004E-02 6.825618E-05 - 8 2 0 - 0 0 -1.116439E-02 7.808821E-04 -1.074789E-02 2.160772E-05 - 1 0 1.420823E-02 -4.854120E-05 9.836617E-03 -1.643958E-05 - 1 1 -1.856622E-02 3.291890E-05 -5.098850E-03 4.460994E-05 - 2 0 -9.424399E-03 7.529771E-04 -1.799464E-04 8.158243E-06 - 2 1 1.022787E-02 -2.736539E-04 -1.212243E-02 -2.622015E-05 - 3 0 1.205595E-02 5.055299E-04 1.408605E-02 -2.781289E-05 - 3 1 8.385614E-03 -1.453379E-04 2.315286E-03 -1.706070E-05 - 4 0 -4.078653E-03 -1.585181E-04 -5.760492E-03 1.671504E-05 - 4 1 6.670006E-03 1.269476E-03 -2.573147E-03 -3.049090E-05 - 8 2 1 - 0 0 4.225239E-02 -2.906897E-04 -9.607268E-03 -7.700466E-05 - 1 0 2.444959E-02 -2.545495E-03 9.471013E-03 -2.285072E-05 - 1 1 2.601772E-03 -7.364298E-04 3.748808E-03 7.055133E-06 - 2 0 4.984520E-03 -4.648551E-06 7.405060E-03 -1.572939E-05 - 2 1 2.234944E-02 -9.926285E-04 1.096929E-02 -3.288552E-05 - 3 0 1.882076E-02 -7.271036E-04 8.467537E-03 -3.279560E-05 - 3 1 1.670194E-02 8.717594E-05 1.272158E-02 -3.684772E-05 - 4 0 -9.839170E-03 -4.790620E-05 -3.347918E-03 2.021479E-05 - 4 1 -1.634719E-02 4.963438E-04 -3.297637E-03 2.507791E-05 - 8 3 0 - 0 0 -2.897388E-03 1.156691E-04 2.354246E-03 5.669672E-06 - 1 0 2.152305E-03 -2.001247E-04 -7.767456E-04 -1.491931E-06 - 1 1 -1.420463E-04 -2.860982E-05 -1.076409E-03 1.652381E-06 - 2 0 4.985327E-03 -1.307313E-04 1.165652E-03 -9.350900E-06 - 2 1 -2.026519E-03 -7.719889E-05 1.520743E-03 4.989548E-06 - 3 0 -3.150027E-03 2.196053E-04 -5.407521E-04 5.047395E-06 - 3 1 -1.687055E-03 8.044217E-05 4.847670E-04 3.120651E-06 - 4 0 1.337721E-03 -8.327176E-05 1.337151E-03 -1.643210E-06 - 4 1 -1.410653E-04 1.300296E-04 2.438485E-04 -1.499385E-06 - 8 3 1 - 0 0 2.894060E-04 -8.205214E-06 -1.350135E-03 -1.767571E-07 - 1 0 -3.368035E-03 1.212158E-04 -1.968658E-05 7.209430E-06 - 1 1 -1.205256E-04 -3.088334E-04 1.782368E-03 3.959809E-06 - 2 0 -1.837091E-03 1.510803E-04 -1.042114E-03 2.372607E-06 - 2 1 -2.846726E-03 2.242871E-04 -3.218454E-04 5.107409E-06 - 3 0 1.819128E-03 -1.624758E-04 2.270090E-04 -1.610815E-06 - 3 1 2.340212E-03 -2.047056E-04 -4.604571E-04 -2.968578E-06 - 4 0 -3.150959E-03 4.347242E-05 -7.318403E-04 5.914135E-06 - 4 1 -1.166170E-03 -4.566753E-05 1.964559E-04 3.100744E-06 -************************ Copyright 1996, Dan Weimer/MRC *********************** - diff --git a/util/EMPIRICAL/srcIE/hmr89.f b/util/EMPIRICAL/srcIE/hmr89.f deleted file mode 100644 index 1bb13648..00000000 --- a/util/EMPIRICAL/srcIE/hmr89.f +++ /dev/null @@ -1,551 +0,0 @@ -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC - SUBROUTINE HMREPOT (RMLAT,RMLT,BY,BZ,RKP,IFRST,ETHETA,EPHI, - | POTKV) - SAVE - -C HMREPOT computes the electric potential in kV poleward of +50/-50 -C degrees magnetic latitude from the Heppner/Maynard/Rich model -C described in Rich and Maynard (JGR, 94, 3687-3701, 1989) from patterns -C described by Heppner and Maynard (JGR, 92, 4467-4489, 1987). -C The original patterns are for the Northern Hemisphere and are found at -C a particular magnetic latitude and longitude (0=0000MLT) in HMRMOD. -C The patterns are only valid for magnetic latitudes between 50 and 90 -C degrees (CMIN and CMAX in GETHMR). However, the Southern Hemisphere -C can be found by assuming an opposite sign for By. The patterns are -C based on the iabc model index: -C IABC=1 IS FOR MODEL A (IMF BZ < 0, BY < 0, NORTHERN HEM -C IABC=2 IS FOR MODEL BC (IMF BZ < 0, BY > 0, NORTHERN HEM -C IABC=3 IS FOR MODEL DE (IMF BZ < 0, BY < 0, NORTHERN HEM -C IABC=4 IS FOR MODEL BCP (IMF BZ > 0, BY > 0, NORTHERN HEM -C IABC=5 IS FOR MODEL BCPP(IMF BZ >>0, BY > 0, NORTHERN HEM -C IABC=6 IS FOR MODEL DEP (IMF BZ > 0, BY < 0, NORTHERN HEM -C IABC=7 IS FOR MODEL DEPP(IMF BZ >>0, BY < 0, NORTHERN HEM -C For iabc=3, model DE is for more negative By than model A (iabc=1), -C and is interpreted as By<=-5., while A is 0<=By<5. -C For iabc=7, model DEPP, Bz >> 0 is interpreted as Bz>5. -C If Bz=By=0, the model chosen is A (iabc=1) -C For Bz .le. 0 models (iabc=1-3), the coefficients are adjusted -C in the subroutine SETHM3 by the value of Kp. The default -C coefficients are for Kp=3.5 (between 3+ and 4-), and the -C maximum Kp used is 7.0. -C A particular model is chosen only if IFIRST=1 (which is then changed). -C In addition to finding the electric potential, HMREPOT calculates the -C electric field in V/m by finding the difference at 300 km in the -C potential at nearby points 10 km away (STEP in /EHMR) along the same -C magnetic latitude or longitude. -C HMREPOT is used in the AMIE (Assimilative Mapping of Ionospheric -C Electrodynamics) procedure to define the statistical electric -C potential if this model is chosen as the initial condition. -C HMREPOT solves for the E fields using the space centered technique. -C Is based on the routine FLOWV2. (B. Emery, 10/89) -C -C RMLAT,RMLTLON = mag lat and lon (0 midnight) in degrees -C BY,BZ = GSM IMF Y and Z components in nT (determine model used) -C RKP = Kp index, used if Bz is negative or zero. -C ETHETA,EPHI = E field components in V/m. (THETA=+S, PHI=+E) -C NOTE: SH uses NH RMLAT, but changes sign of By, so +S is +equatorward) -C POTKV = electrostatic potential in kV. -C We use the formula: E_field = -del(electrostatic potential) to find E -C -C /EHMR/ -C ALTE = 6671 KM = MEAN EARTH RADIUS (6371 KM) + 300 KM = ALTITUDE -C AT WHICH E FIELDS ARE COMPUTED FROM CENTER OF EARTH IN KM -C I.E. COMPUTE E FIELDS AT 300 KM ABOVE THE EARTH. -C STEP,... - VARIOUS STEPS (OFTEN 10 KM) AWAY FROM THE LOCATION -C USED IN ORDER TO FIND THE ELECTRIC FIELDS IN VOLTS/M -C USING THE SPACE CENTERED TECHNIQUE - COMMON /EHMR/ ALTE,STEP,STF2,STF3,STF4,STF5,STF6 - COMMON /RUNCON/ PII,RAD,RE - COMMON/CHGCOM/IABC,ICHGHM,CHGV,AHM(3),BHM(3),DXHM(3),DYHM(3), - | ACHG(3),BCHG(3),DXCHG(3),DYCHG(3) - COMMON/SCOM/CMIN,CMAX - - IF (IFRST .EQ. 1) THEN -C Choose model - IHSOLN = 1. - IF (RMLAT .LT. 0.) IHSOLN = -1. - IF (BZ .LE. 0. .AND. BY*IHSOLN .LE. 0.) IABC = 1 - IF (BZ .LE. 0. .AND. BY*IHSOLN .GT. 0.) IABC = 2 - IF (BZ .LE. 0. .AND. BY*IHSOLN .LE. -5.) IABC = 3 - IF (BZ .GT. 0. .AND. BY*IHSOLN .GE. 0.) IABC = 4 - IF (BZ .GT. 5. .AND. BY*IHSOLN .GE. 0.) IABC = 5 - IF (BZ .GT. 0. .AND. BY*IHSOLN .LT. 0.) IABC = 6 - IF (BZ .GT. 5. .AND. BY*IHSOLN .LT. 0.) IABC = 7 - ICHGHM = 1 - CHGV = 1. - IF (BZ .LE. 0.) CALL SETHM3 (RKP) - IFRST = IFRST + 1 - ENDIF -C -C Keep potential constant equatorward of CMIN (50 degrees) - DLAT = AMAX1(CMIN,ABS(RMLAT))/RAD -C DLAT = magnetic latitude in radians -c DLON = RMLTLON/RAD - DLON = RMLT*15./RAD -C Compute potential POTEN in V - CALL HMRMOD (DLAT,DLON,1.0,POTEN) - POTKV = POTEN * 1.E-3 -C - if (dlat+stf3 .lt. pii/2.) go to 100 -C Special computation near the pole -C Compute ETHETA (+S, or POTEN(N-S)) at pole - RATIO = STF4 - THETA = DLAT - STF3 - CALL HMRMOD (THETA,DLON,RATIO,PHB) - PHI = DLON + 180./RAD - CALL HMRMOD (THETA,PHI,RATIO,PHA) - ETHETA = (PHA - PHB) * STF2 -C Compute EPHI (+E, or POTEN(W-E)) at pole - THETA = DLAT - STF3 - CC = COS(THETA) - R = SQRT(STF5 + CC**2*STF6) - RS = ALTE*SIN(THETA) - ALAM = ATAN(RS/R) - R = SQRT(RS**2 + R**2) - RATIO = ALTE / R - PHI = DLON + ATAN(STEP/(CC*ALTE)) - CALL HMRMOD (ALAM,PHI,RATIO,PHA) - PHI = DLON - ATAN(STEP/(CC*ALTE)) - CALL HMRMOD (ALAM,PHI,RATIO,PHB) - EPHI1 = (PHB - PHA) * STF2 -C Go 180 degrees across the pole - PHI = DLON + 180./RAD + ATAN(STEP/(CC*ALTE)) - CALL HMRMOD (ALAM,PHI,RATIO,PHA) - PHI = DLON + 180./RAD - ATAN(STEP/(CC*ALTE)) - CALL HMRMOD (ALAM,PHI,RATIO,PHB) - EPHI2 = (PHB - PHA) * STF2 -C Average by subtraction since sign should change over the pole - EPHI = (EPHI1 - EPHI2)/2. - - return - -100 continue - -C Compute EPHI (+E, or POTEN(W-E)) at DLAT - CC = COS(DLAT) - R = SQRT(STF5 + CC**2*STF6) - RS = ALTE*SIN(DLAT) - ALAM = ATAN(RS/R) - R = SQRT(RS**2 + R**2) - RATIO = ALTE / R - PHI = DLON + ATAN(STEP/(CC*ALTE)) - CALL HMRMOD (ALAM,PHI,RATIO,PHA) - PHI = DLON - ATAN(STEP/(CC*ALTE)) - CALL HMRMOD (ALAM,PHI,RATIO,PHB) - EPHI = (PHB - PHA) * STF2 -C -C Compute ETHETA (+S, or POTEN(N-S)) at DLON - THETA = DLAT + STF3 - RATIO = STF4 - CALL HMRMOD (THETA,DLON,RATIO,PHA) - THETA = DLAT - STF3 - CALL HMRMOD (THETA,DLON,RATIO,PHB) - ETHETA = (PHA - PHB) * STF2 -C - if (ABS(RMLAT) .lt. CMIN) then -C Special computation for E fields equatorward of CMIN - ETHETA = 0. - EPHI = EPHI * COS(CMIN/RAD)/SIN((90.-RMLAT)/RAD) - endif - - RETURN - END - -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC - SUBROUTINE GETHMR (NTAPE) - SAVE -C -C GETHMR gets the coefficients for the HMR (Heppner-Maynard-Rich) model -C and sets initial values for some parameters. -C The coefficient file is hmr89.cofcnts -C -C INPUTS - CALLING SEQUENCE -C NTAPE - UNIT NUMBER FOR DATA FILE OF COEFFICIENTS -C -C COMMON BLOCKS USED -C /PCOM/ -C COEF - ARRAY OF COEFFICIENTS TO LEGENDRE POLYNOMIAL TO BE READ I -C P - ARRAY OF LEGENDRE POLYNOMIAL TO BE CALCULATED -C NMAX - MAXIMUM ORDER OF COEFFICIENTS -C PKV51 - DIURNAL AVE OF POTENTIAL IN KV AT 51 DEG FOR KP=3.5 -C (IS SUBTRACTED AND IS ACCURATE TO WITHIN 1.0 KV FOR -C KP=7 AND WITHIN 0.3 KV FOR KP=0 IF PKV51*CHGV) -C /SCOM/ -C CMIN - MINIMUM LATITUDE USED FOR FITTING -C CMAX - MAXIMUM LATITUDE USED FOR FITTING -C /RUNCON/ -C PII - VALUE OF PI -C RAD - VALUE OF RATIO OF DEG/RADIAN -C RE - RADIUS OF EARTH IN M - RE MEAN = 6371 -C /EHMR/ -C ALTE = 6671 KM = MEAN EARTH RADIUS (6371 KM) + 300 KM = ALTITUDE -C AT WHICH E FIELDS ARE COMPUTED FROM CENTER OF EARTH IN KM -C I.E. COMPUTE E FIELDS AT 300 KM ABOVE THE EARTH. -C STEP,... - VARIOUS STEPS (OFTEN 10 KM) AWAY FROM THE LOCATION -C USED IN ORDER TO FIND THE ELECTRIC FIELDS IN VOLTS/M -C USING THE SPACE CENTERED TECHNIQUE -C -C INPUTS - DATA FILE -C NNN -C MMM -C I - INDEX OF COEFFICIENT -C J - INDEX OF COEFFICIENT -C CCF - COEFFICIENT OF SPHERICAL HARMONIC EXPANSION -C - COMMON/PCOM/COEF(18,18,7),P(18,18),NNMAX(7),NMAX,PKV51(7) - |,XCO(18,18),DP(18,18),CONST(18,18),SP(18),CP(18),FN(18),FM(18) - COMMON/SCOM/CMIN,CMAX - COMMON /RUNCON/ PII,RAD,RE - COMMON /EHMR/ ALTE,STEP,STF2,STF3,STF4,STF5,STF6 -C - CHARACTER*10 MLBL(5) -C - CMIN=50. - CMAX=90. - NNMAX(1:7) = (/12,12,12,13,13,13,13/) - PKV51(1:7) = (/ 2.012, 23.536, -13.525, - | 0.064, 0.074, -0.176, -0.268/) -C CONSTANTS FOR LEGENDRE POLYNOMIAL -c DATA CONST/324*0./ - XCO(1,1:18)=(/ - | .282095E+00, .488603E+00, .109255E+01, .228523E+01, - | .468333E+01, .951188E+01, .192265E+02, .387523E+02, - | .779645E+02, .156658E+03, .314501E+03, .630964E+03, - | .126523E+04, .253611E+04, .508196E+04, .101809E+05, - | .203918E+05, .408366E+05/) - XCO(2,1:18)=(/ - | .488603E+00, .488603E+00, .546274E+00, .144531E+01, - | .331161E+01, .719031E+01, .151999E+02, .316411E+02, - | .652298E+02, .133599E+03, .272366E+03, .553392E+03, - | .112151E+04, .226837E+04, .458082E+04, .923904E+04, - | .186151E+05, .374743E+05/) - XCO( 3,1:18)=(/ - | .946175E+00, .109255E+01, .546274E+00, .590044E+00, - | .177013E+01, .440314E+01, .101333E+02, .223736E+02, - | .481754E+02, .102038E+03, .213661E+03, .443701E+03, - | .915709E+03, .188083E+04, .384866E+04, .785168E+04, - | .159791E+05, .324537E+05/) - XCO( 4,1:18)=(/ - | .186588E+01, .228523E+01, .144531E+01, .590044E+00, - | .625836E+00, .207566E+01, .555021E+01, .134918E+02, - | .310971E+02, .693209E+02, .151081E+03, .324033E+03, - | .686782E+03, .144253E+04, .300864E+04, .623988E+04, - | .128827E+05, .264983E+05/) - XCO( 5,1:18)=(/ - | .370249E+01, .468333E+01, .331161E+01, .177013E+01, - | .625836E+00, .656382E+00, .236662E+01, .674590E+01, - | .172496E+02, .414272E+02, .955522E+02, .214328E+03, - | .471128E+03, .102002E+04, .218269E+04, .462762E+04, - | .973844E+04, .203694E+05/) - XCO( 6,1:18)=(/ - | .736787E+01, .951188E+01, .719031E+01, .440314E+01, - | .207566E+01, .656382E+00, .683184E+00, .264596E+01, - | .798499E+01, .213929E+02, .534153E+02, .127330E+03, - | .293800E+03, .661878E+03, .146420E+04, .319336E+04, - | .688612E+04, .147131E+05/) - XCO( 7,1:18)=(/ - | .146845E+02, .192265E+02, .151999E+02, .101333E+02, - | .555021E+01, .236662E+01, .683184E+00, .707163E+00, - | .291571E+01, .926339E+01, .259102E+02, .671087E+02, - | .165101E+03, .391572E+03, .903721E+03, .204248E+04, - | .454057E+04, .996084E+04/) - XCO( 8,1:18)=(/ - | .292940E+02, .387523E+02, .316411E+02, .223736E+02, - | .134918E+02, .674590E+01, .264596E+01, .707163E+00, - | .728927E+00, .317732E+01, .105778E+02, .307916E+02, - | .825507E+02, .209304E+03, .509767E+03, .120459E+04, - | .278052E+04, .629979E+04/) - XCO( 9,1:18)=(/ - | .584734E+02, .779645E+02, .652298E+02, .481754E+02, - | .310971E+02, .172496E+02, .798499E+01, .291571E+01, - | .728927E+00, .748901E+00, .343190E+01, .119255E+02, - | .360281E+02, .997819E+02, .260366E+03, .650553E+03, - | .157290E+04, .370647E+04/) - XCO(10,1:18)=(/ - | .116766E+03, .156658E+03, .133599E+03, .102038E+03, - | .693209E+02, .414272E+02, .213929E+02, .926339E+01, - | .317732E+01, .748901E+00, .767395E+00, .368030E+01, - | .133043E+02, .416119E+02, .118840E+03, .318704E+03, - | .816138E+03, .201755E+04/) - XCO(11,1:18)=(/ - | .233240E+03, .314501E+03, .272366E+03, .213661E+03, - | .151081E+03, .955522E+02, .534153E+02, .259102E+02, - | .105778E+02, .343190E+01, .767395E+00, .784642E+00, - | .392321E+01, .147120E+02, .475361E+02, .139761E+03, - | .384731E+03, .100877E+04/) - XCO(12,1:18)=(/ - | .465998E+03, .630964E+03, .553392E+03, .443701E+03, - | .324033E+03, .214328E+03, .127330E+03, .671087E+02, - | .307916E+02, .119255E+02, .368030E+01, .784642E+00, - | .800822E+00, .416119E+01, .161472E+02, .537941E+02, - | .162579E+03, .458849E+03/) - XCO(13,1:18)=(/ - | .931187E+03, .126523E+04, .112151E+04, .915709E+03, - | .686782E+03, .471128E+03, .293800E+03, .165101E+03, - | .825507E+02, .360281E+02, .133043E+02, .392321E+01, - | .800822E+00, .816077E+00, .439471E+01, .176082E+02, - | .603802E+02, .187325E+03/) - XCO(14,1:18)=(/ - | .186100E+04, .253611E+04, .226837E+04, .188083E+04, - | .144253E+04, .102002E+04, .661878E+03, .391572E+03, - | .209304E+03, .997819E+02, .416119E+02, .147120E+02, - | .416119E+01, .816077E+00, .830522E+00, .462415E+01, - | .190939E+02, .672889E+02/) - XCO(15,1:18)=(/ - | .371962E+04, .508196E+04, .458082E+04, .384866E+04, - | .300864E+04, .218269E+04, .146420E+04, .903721E+03, - | .509767E+03, .260366E+03, .118840E+03, .475361E+02, - | .161472E+02, .439471E+01, .830522E+00, .844251E+00, - | .484985E+01, .206029E+02/) - XCO(16,1:18)=(/ - | .743510E+04, .101809E+05, .923904E+04, .785168E+04, - | .623988E+04, .462762E+04, .319336E+04, .204248E+04, - | .120459E+04, .650553E+03, .318704E+03, .139761E+03, - | .537941E+02, .176082E+02, .462415E+01, .844251E+00, - | .857341E+00, .507210E+01/) - XCO(17,1:18)=(/ - | .148629E+05, .203918E+05, .186151E+05, .159791E+05, - | .128827E+05, .973844E+04, .688612E+04, .454057E+04, - | .278052E+04, .157290E+04, .816138E+03, .384731E+03, - | .162579E+03, .603802E+02, .190939E+02, .484985E+01, - | .857341E+00, .869857E+00/) - XCO(18,1:18)=(/ - | .297130E+05, .408366E+05, .374743E+05, .324537E+05, - | .264983E+05, .203694E+05, .147131E+05, .996084E+04, - | .629979E+04, .370647E+04, .201755E+04, .100877E+04, - | .458849E+03, .187325E+03, .672889E+02, .206029E+02, - | .507210E+01, .869857E+00/) -C -C INITIALIZE ARRAY OF COEFFICIENTS FOR FIT FROM UNIT NTAPE - P(:,:) = 0. - CONST(:,:) = 0. - - REWIND NTAPE - DO 80 IA=1,7 - READ(NTAPE,400,END= 82)MLBL - 400 FORMAT(5A10) - 82 READ(NTAPE,*,END=10000) NNN,MMM,I,J,CCF -10000 IF(NNN.EQ.-1) GO TO 81 - COEF(I,J,IA)=CCF - GO TO 82 - 81 CONTINUE - -C - WRITE(6,"(1X,5A10)") MLBL - WRITE(6,"(1X,'USING MODEL COEFFICIENTS UP TO NMAX=',I2)")NNMAX(IA) - 80 CONTINUE - WRITE(6,"(1X,'MODEL VALID FOR LATITUDES ',F5.1,' TO ',F5.1)") - | CMIN,CMAX -C -C Set constants in RUNCON and EHMR - RE = 6.49E6 - PII = 4 * ATAN(1.) - RAD = 180. / PII - ALTE = 6671. - STEP = 10. - STF2 = 1.0 / (2.0 * STEP * 1000.) - STF3 = ATAN(STEP/ALTE) - STF4 = ALTE / SQRT(STEP**2+ALTE**2) - STF5 = STEP**2 - STF6 = ALTE**2 -C Set low order coefficients - DP(1,1)=0.0 - SP(1)=0.0 - CP(1)=1.0 - DO 2 N=2,18 - FN(N)=N - DO 2 M=1,N - FM(M)=M-1 - 2 CONST(N,M)=FLOAT((N-2)**2-(M-1)**2)/ - | FLOAT((2*N-3)*(2*N-5)) -C - RETURN - END - -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC - SUBROUTINE SETHM3 (RKP) - SAVE - -C RKP = The real value for Kp, the log planetary magnetic index between -C 0. and 9. Can be any real between these values, but the maximum -C value used is 7. -C....................................................................... -C . -C SETHM3 - INTERFACE TO ALLOW USER TO CHANGE THE HEPPNER- . -C MAYNARD MODELS. (ONLY IMF SOUTHWARD MODELS AT . -C THIS TIME.) . -C . -C INPUT - CALLING SEQUENCE . -C MODLE - INDEX FOR HEPPNER-MAYNARD MODELS . -C (1 = A, 2 = BC, 3 = DE) . -C . -C OUTPUT - CALLING SEQUENCE . -C ACHG,BCHG - SEMI-MAJOR,MINOR AXIS OF NEW COORD. SYSTEM FOR H-M M -C DXCHG,DYCHG - DISPLACEMENT OF CENTER OF ELIPSE FROM POLE FOR NEW S -C AHM,BHM - SEMI-MAJOR,MINOR AXIS OF OLD COORD. SYSTEM FOR H-M M -C DYHM,DYHM - DISPLACEMENT OF CENTER OF ELIPSE FROM POLE FOR OLD S -C CHGV - PERCENT CHANGE IN POTENTIAL LEVELS . -C . -C....................................................................... - COMMON/CHGCOM/IABC,ICHGHM,CHGV,AHM(3),BHM(3),DXHM(3),DYHM(3), - | ACHG(3),BCHG(3),DXCHG(3),DYCHG(3) - REAL KP - real, parameter :: A(1:3) = (/17.88, 14.35, 15.96/) - real, parameter :: B(1:3) = (/15.28, 14.15, 15.09/) - real, parameter :: DX(1:3) = (/-3.27, -3.83, -2.50/) - real, parameter :: DY(1:3) = (/ 0.57, -0.19, 0.76/) -C -C VALID MODEL - SET STANDARD VALUES. -C Default value for KP is 3.5 and maximum is 7. - KP = AMIN1(RKP,7.) - ICHGHM = 1 -C Change coefficients for all 3 Bz negative models - CHGV = 0.223 + 0.222 * KP - DO 1000 N=1,3 - AHM(N) = A(N) - BHM(N) = B(N) - DXHM(N) = DX(N) - DYHM(N) = DY(N) - ACHG(N) = AHM(N) * (0.721 + 0.087 * KP) - BCHG(N) = BHM(N) * (0.735 + 0.082 * KP) - DXCHG(N) = DXHM(N) - DYCHG(N) = DYHM(N) - 1000 CONTINUE - RETURN - END - -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC - SUBROUTINE HMRMOD (DLAT,DLON,RATIO,POTEN) -C -C DLAT,DLON = Magnetic latitude and longitude in radians, where -C midnight is 0 degrees. -C POTEN = electric potential in V -C -C RATIO = A multiplicative factor for the latitude. Is usually=1 -C unless derivatives are sought to find the electric field as -C the difference in potential at 300 km. It accounts for the -C fact that the magnetic field lines curve away from the Earth. -C (Comment added by Barbara Emery) -C -C IABC - MODEL INDEX -C IABC=1 IS FOR MODEL A (IMF BZ < 0, BY < 0, NORTHERN HEM -C IABC=2 IS FOR MODEL BC (IMF BZ < 0, BY > 0, NORTHERN HEM -C IABC=3 IS FOR MODEL DE (IMF BZ < 0, BY < 0, NORTHERN HEM -C IABC=4 IS FOR MODEL BCP (IMF BZ > 0, BY > 0, NORTHERN HEM -C IABC=5 IS FOR MODEL BCPP(IMF BZ >>0, BY > 0, NORTHERN HEM -C IABC=6 IS FOR MODEL DEP (IMF BZ > 0, BY < 0, NORTHERN HEM -C IABC=7 IS FOR MODEL DEPP(IMF BZ >>0, BY < 0, NORTHERN HEM -C NNMAX - MAXIMUM ORDER OF POLYNOMIAL TO EVALUATE -C ACHG,BCHG - SEMI-MAJOR,MINOR AXIS OF NEW COORD. SYSTEM FOR H-M M -C DXCHG,DYCHG - DISPLACEMENT OF CENTER OF ELIPSE FROM POLE FOR NEW S -C AHM,BHM - SEMI-MAJOR,MINOR AXIS OF OLD COORD. SYSTEM FOR H-M M -C DYHM,DYHM - DISPLACEMENT OF CENTER OF ELIPSE FROM POLE FOR OLD S -C ICHGHM - FLAG TO INDICATE WHETHER TO USE DEFAULT H-M PATTERN (=0) -C TO USE MODIFIED PATTERN (=1) WITH ACHG,BCHG,DXCHG,DYCHG -C -C INPUTS - COMMON/RUNCON/ -C RAD - DEGREES PER RADIAN (=57.28...) -C -C OUTPUTS - CALLING SEQUENCE -C VALUE - POTENTIAL AT (LAT, LON) (KV) -C -C SUBROUTINES CALLED -C NONE (EXCEPT INTRINSIC FORTRAN FUNCTIONS) -C -C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -C - COMMON /RUNCON/ PII,RAD,RE -C COEFFICIENTS AND LIMITS FOR LEGENDRE POLYNOMIAL FIT TO H-M MODEL -C (PLACED IN COMMON TO PREVENT LOADER FROM ERASING ARRAY.) - COMMON/PCOM/COEF(18,18,7),P(18,18),NNMAX(7),NMAX,PKV51(7) - |,XCO(18,18),DP(18,18),CONST(18,18),SP(18),CP(18),FN(18),FM(18) - COMMON/SCOM/CMIN,CMAX - COMMON/CHGCOM/IABC,ICHGHM,CHGV,AHM(3),BHM(3),DXHM(3),DYHM(3), - | ACHG(3),BCHG(3),DXCHG(3),DYCHG(3) -C -C -C IABC=1 IS FOR MODEL A -C IABC=2 IS FOR MODEL BC -C IABC=3 IS FOR MODEL DE -C IABC=4 IS FOR MODEL BCP -C IABC=5 IS FOR MODEL BCPP -C IABC=6 IS FOR MODEL DEP -C IABC=7 IS FOR MODEL DEPP -C - real, parameter :: ICHEM(1:7) = (/1,3,2,6,7,4,5/) -C - NMAX = NNMAX(IABC) -C Set IHEM=1,2 for S,N hemisphere - IHEM = IFIX(DLAT*2./PII + 2.) -C -C Change model with hemisphere except for model 1 (A) for now - JABC = IABC - IF (IHEM .EQ. 1) JABC = ICHEM(IABC) -C - CMINRAD = CMIN/RAD - CMN5RAD = (CMIN+5.)/RAD - CMINP5 = CMIN+5. - XLAT = ABS(DLAT) * SQRT(RATIO) - XLON = DLON -C SHOULD COORDINATE SYSTEM BE CHANGED? - IF( ICHGHM.EQ.1 .AND. IABC .LE. 3) THEN -C YES. - COLAT = PII/2. - DLAT - TLONG = DLON - PII - XX = DXHM(JABC)+AHM(JABC)*(COLAT*RAD*COS(TLONG)-DXCHG(JABC))/ - | ACHG(JABC) - YY = DYHM(JABC)+BHM(JABC)*(COLAT*RAD*SIN(TLONG)-DYCHG(JABC))/ - | BCHG(JABC) - XCOL = SQRT(XX**2 + YY**2) - XLAT = (90.-XCOL) / RAD - XLON = ATAN2(YY,XX) + PII - ENDIF -C CONVERT LATITUDE,LONGITUDE TO DIMENSIONLESS PARAMETER FOR EVALUATION -C OF POLYNOMIAL - ALPHA=2./(CMAX-CMIN) - BETA=1.-ALPHA*CMAX - CT=AMIN1( 1.0, AMAX1(XLAT*RAD,CMIN)*ALPHA+BETA) - ST=SQRT(1.-CT*CT) - SPH=SIN(XLON) - CPH=COS(XLON) -C - P(1,1) = 1. - SP(2)=SPH - CP(2)=CPH - DO 4 M=3,NMAX - SP(M)=SP(2)*CP(M-1)+CP(2)*SP(M-1) - 4 CP(M)=CP(2)*CP(M-1)-SP(2)*SP(M-1) -C - P(2,1) = CT*P(1,1) - P(2,2) = ST*P(1,1) - DO 200 N=3,NMAX - DO 100 M=1,N-1 - P(N,M)=CT*P(N-1,M)-CONST(N,M)*P(N-2,M) -C DP(N,M)=CT*DP(N-1,M)-ST(I)*P(N-1,M)- -C X CONST(N,M)*DP(N-2,M) - 100 CONTINUE - P(N,N)=ST*P(N-1,N-1) -C DP(N,N)=ST*DP(N-1,N-1)+CT*P(N-1,N-1) - 200 CONTINUE -C - P(1,1)=P(1,1)*XCO(1,1) -C - POTEN=COEF(1,1,JABC)*P(1,1) - DO 300 N=2,NMAX - P(N,1)=P(N,1)*XCO(N,1) - POTEN=POTEN+P(N,1)*COEF(N,1,JABC) - DO 300 M=2,N - POL=P(N,M)*XCO(N,M) - P(M-1,N)=CP(M)*POL - P(N,M)=SP(M)*POL - POTEN=POTEN+P(M-1,N)*COEF(M-1,N,JABC) + - | P(N,M)*COEF(N,M,JABC) - 300 CONTINUE - POTEN = (POTEN - PKV51(JABC)) * EXP(AMIN1(0.,XLAT*RAD-CMINP5)) * - | 1.E+3 * CHGV -C - RETURN - END diff --git a/util/EMPIRICAL/srcIE/ihp.f90 b/util/EMPIRICAL/srcIE/ihp.f90 deleted file mode 100644 index fb6b0030..00000000 --- a/util/EMPIRICAL/srcIE/ihp.f90 +++ /dev/null @@ -1,270 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -subroutine read_conductance_model(iOutputError) - - use ModEIEConductance - use ModEIEFiles - use ModEIE_Interface - use ModErrors - use ModIoUnit, ONLY: io_unit_new - - implicit none - - ! NOAA HPI model: LONGMX=30,LATMX=20,NDX=10,STEPLAT=2. - - integer, intent(out) :: iOutputError - real, dimension(0:lonmdx, 0:latmdx, mndx, 4) :: hpaf - real :: scale - integer :: iunit, ierr, n, ilat, ilon, maxflx, ilatsave - - character(len=80) :: char80 - - ConductanceBackground(pedersen_) = 0.2 - ConductanceBackground(hall_) = 0.2 - ConductanceBackground(eflux_) = 0.01 - ConductanceBackground(avee_) = 1.0 - - scale = 0.001 - - iunit = io_unit_new() - - if (index(EIE_NameOfAuroralModel, 'ihp') > 0 .or. & - index(EIE_NameOfAuroralModel, 'hpi') > 0) then - - if (iDebugLevel > 2) & - write(*, *) '===> Reading IHP background conductance model' - - call merge_str(EIE_NameOfModelDir, ihp_file) - - open(iunit, file=ihp_file, status='old', iostat=ierr) - if (ierr /= 0) then - write(6, *) 'Error opening file :', ihp_file - iOutputError = ecFileNotFound_ - endif - - longmx = 30 - latmx = 20 - ndx = 10 - steplat = 2. - - do n = 1, 4 - read(iunit, *) char80 - enddo - - if (iDebugLevel > 2) write(*, *) "===> Hall" - read(iunit, *) char80 - do n = 1, ndx - do ilat = latmx, 0, -1 - read(iunit, "(15f7.0)") (halar(ilon, ilat, n), ilon=0, 14) - read(iunit, "(15f7.0)") (halar(ilon, ilat, n), ilon=15, 29) - enddo - enddo - halar(longmx, :, :) = halar(0, :, :) - - halar(0:30, 0:latmx, 1:ndx) = scale*halar(0:30, 0:latmx, 1:ndx) - - if (iDebugLevel > 2) write(*, *) "===> Ped" - read(iunit, *) char80 - do n = 1, ndx - do ilat = latmx, 0, -1 - read(iunit, "(15f7.0)") (pedar(ilon, ilat, n), ilon=0, 14) - read(iunit, "(15f7.0)") (pedar(ilon, ilat, n), ilon=15, 29) - enddo - enddo - pedar(longmx, :, :) = pedar(0, :, :) - pedar(0:30, 0:latmx, 1:ndx) = scale*pedar(0:30, 0:latmx, 1:ndx) - - if (iDebugLevel > 2) write(*, *) "===> AveE" - read(iunit, *) char80 - do n = 1, ndx - do ilat = latmx, 0, -1 - read(iunit, "(15f7.0)") (avkar(ilon, ilat, n), ilon=0, 14) - read(iunit, "(15f7.0)") (avkar(ilon, ilat, n), ilon=15, 29) - do ilon = 0, 29 - if (avkar(ilon, ilat, n) == 2855) & - avkar(ilon, ilat, n) = ConductanceBackground(avee_)/scale - enddo - enddo - enddo - avkar(longmx, :, :) = avkar(0, :, :) - avkar(0:30, 0:latmx, 1:ndx) = scale*avkar(0:30, 0:latmx, 1:ndx) - - if (iDebugLevel > 2) write(*, *) "===> TotE" - read(iunit, *) char80 - do n = 1, ndx - do ilat = latmx, 0, -1 - read(iunit, "(15f7.0)") (efxar(ilon, ilat, n), ilon=0, 14) - read(iunit, "(15f7.0)") (efxar(ilon, ilat, n), ilon=15, 29) - enddo -! if (UseExperimentalCode) then -! do ilon=0,29 -! maxflx = 0 -! do ilat=latmx,0,-1 -! if (efxar(ilon,ilat,n) > maxflx) then -! maxflx = efxar(ilon,ilat,n) -! ilatsave = ilat -! endif -! enddo -! efxar(ilon,ilatsave,n) = efxar(ilon,ilatsave,n)*2 -! enddo -! endif - enddo - efxar(longmx, :, :) = efxar(0, :, :) - efxar(0:30, 0:latmx, 1:ndx) = scale*efxar(0:30, 0:latmx, 1:ndx) - - close(iunit) - - else - - if (iDebugLevel > 2) & - write(*, *) '===> Reading PEM background conductance model' - - longmx = 24 - latmx = 40 - ndx = 9 - steplat = 1. - - call merge_str(EIE_NameOfModelDir, pem_file) - - open(iunit, file=pem_file, status='old', iostat=ierr) - if (ierr /= 0) then - write(6, *) 'Error opening file :', pem_file - endif - - do n = 1, 4 - read(iunit, *) char80 - enddo - - do n = 1, ndx - read(iunit, "(a80)") char80 - do ilat = latmx, 0, -1 - read(iunit, "(24f6.0)") (halar(ilon, ilat, n), ilon=0, 23) - enddo - enddo - halar(longmx, :, :) = halar(0, :, :) - halar = scale*halar - - do n = 1, ndx - read(iunit, "(a80)") char80 - do ilat = latmx, 0, -1 - read(iunit, "(24f6.0)") (pedar(ilon, ilat, n), ilon=0, 23) - enddo - enddo - pedar(longmx, :, :) = pedar(0, :, :) - pedar = scale*pedar - - do n = 1, ndx - read(iunit, "(a80)") char80 - do ilat = latmx, 0, -1 - read(iunit, "(24f6.0)") (avkar(ilon, ilat, n), ilon=0, 23) - enddo - enddo - avkar(longmx, :, :) = avkar(0, :, :) - avkar = scale*avkar - - do n = 1, ndx - read(iunit, "(a80)") char80 - do ilat = latmx, 0, -1 - read(iunit, "(24f6.0)") (efxar(ilon, ilat, n), ilon=0, 23) - enddo - enddo - efxar(longmx, :, :) = efxar(0, :, :) - efxar = scale*efxar - - close(iunit) - - endif - - ! get minimum or average long. value at lowest lat. - - if (iDebugLevel > 2) write(*, *) "===> Getting Minimum Conductance" - - do n = 1, ndx - - halmin(n) = halar(1, latmx, n) - pedmin(n) = pedar(1, latmx, n) - avk50(n) = avkar(1, latmx, n) - efx50(n) = efxar(1, latmx, n) - - do ilon = 2, longmx - halmin(n) = amin1(halmin(n), halar(ilon, latmx, n)) - pedmin(n) = amin1(pedmin(n), pedar(ilon, latmx, n)) - avk50(n) = avk50(n) + avkar(1, latmx, n) - efx50(n) = efx50(n) + efxar(1, latmx, n) - enddo - - avk50(n) = avk50(n)/float(longmx) - efx50(n) = efx50(n)/float(longmx) - - enddo - - if (iDebugLevel > 3) write(*, *) "====> Done with read_conductance_model" - -end subroutine read_conductance_model - -subroutine get_auroral_conductance(alatd, amlt, hpi, ped, hal, avkev, eflx) - - Use ModEIEConductance - - implicit none - - real, intent(in) :: alatd, amlt, hpi - real, intent(out) :: ped, hal, avkev, eflx - - real :: dx, tl, x, y - integer :: i, j, lon - - dx = 24./float(longmx) - i = hpi + 0.49999 - if (i < 1) i = 1 - if (i > ndx) i = ndx - - y = (90.-abs(alatd))/steplat - - if (y > float(latmx)) then - - ped = pedmin(i) - hal = halmin(i) - avkev = avk50(i) - eflx = efx50(i) - - else - - j = y - if (j < 0) j = 0 - if (j > latmx - 1) j = latmx - 1 - - y = y - j - - tl = amlt - if (tl < 0.) tl = tl + 24. - - lon = tl*longmx/24. - - x = tl - 24.*lon/float(longmx) - x = x/dx - - if (lon > longmx - 1) lon = lon - longmx - if (lon < 0.) lon = lon + longmx - - ped = x*(y*pedar(lon + 1, j + 1, i) + (1.-y)*pedar(lon + 1, j, i)) + & - (1.-x)*(y*pedar(lon, j + 1, i) + (1.-y)*pedar(lon, j, i)) - hal = x*(y*halar(lon + 1, j + 1, i) + (1.-y)*halar(lon + 1, j, i)) + & - (1.-x)*(y*halar(lon, j + 1, i) + (1.-y)*halar(lon, j, i)) - avkev = x*(y*avkar(lon + 1, j + 1, i) + (1.-y)*avkar(lon + 1, j, i)) + & - (1.-x)*(y*avkar(lon, j + 1, i) + (1.-y)*avkar(lon, j, i)) - eflx = x*(y*efxar(lon + 1, j + 1, i) + (1.-y)*efxar(lon + 1, j, i)) + & - (1.-x)*(y*efxar(lon, j + 1, i) + (1.-y)*efxar(lon, j, i)) - - if (ped < ConductanceBackground(pedersen_)) ped = ConductanceBackground(pedersen_) - if (hal < ConductanceBackground(hall_)) hal = ConductanceBackground(hall_) - if (avkev < ConductanceBackground(avee_)) avkev = ConductanceBackground(avee_) - if (eflx < ConductanceBackground(eflux_)) eflx = ConductanceBackground(eflux_) - - endif - - return - -end subroutine get_auroral_conductance - diff --git a/util/EMPIRICAL/srcIE/iz94.f b/util/EMPIRICAL/srcIE/iz94.f deleted file mode 100644 index 9ba593e7..00000000 --- a/util/EMPIRICAL/srcIE/iz94.f +++ /dev/null @@ -1,337 +0,0 @@ -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC - SUBROUTINE IZEPOT (IMON,RMLAT,RMLT,BY,BZ,ET,EP,EPOT) -C Obtain the electrostatic potential for the specified location -C and conditions (hemisphere, season, IMF) and compute electric -C field components from E = - grad (electrostatic potential). -C -C INPUTS: -C IMON = Month of year (e.g., IMON=1 for Jan). Season is -C determined by the combination of month and sign of -C RMLAT; it may be equinox (IMON = 3,4,9,10) summer or -C winter. -C RMLAT = Magnetic latitude (deg) from 58 to 90 or -58 to -90 -C RMLT = Magnetic Local Time (hr) from 0 to 24 -C BY,BZ = Interplanetary magnetic field components (nT) -C RETURNS: -C ET = Etheta (magnetic equatorward*) E field component (V/m) -C EP = Ephi (magnetic eastward) E field component (V/m) -C EPOT = Electostatic potential (kV) -C -C * ET direction is along the magnetic meridian away from the -C current hemisphere; i.e., when ET > 0, the direction is -C southward when RMLAT > 0 -C northward when RMLAT < 0 -C -C Based on the PC routine, AM_SYNT.FOR by V. O. Papitashvili. -C -C Barbara Emery (emery@ncar.ucar.edu) and Wm Golesorkhi, NCAR (6/95) -C Mod Dec 96: Correct model cofficient logic and electric field -C component calculation and (R.Barnes, bozo@ncar.ucar.edu). - - COMMON /IZC1/ HIZA(24,1632), IZMODE, ALTE, ALAMN, STEPA - -C Local declarations (degrees to radians and hrs to radians): - PARAMETER ( D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147 , - + H2R = 0.261799387799148538154743922256) - -C Establish hemsiphere and filter latitude to 58-90 deg - IHEM = 0 - IF (RMLAT .LT. 0) IHEM = 1 - ABLA = ABS(RMLAT) - FMLA = AMAX1 (ALAMN, ABLA) - -C Obtain the potential at the requested point - CALL IZNTRP (IMON, RMLT,FMLA,IHEM, BY,BZ, EPOT) - -C Calculate -(latitude gradient) by stepping 1 deg (model -C resolution) along the meridian in each direction (flipping -C coordinates when going over pole to keep lat <= 90). - KPOL = 0 - XMLT = RMLT - 10 XMLT1 = XMLT - FMLA1 = FMLA + 1. - IF (FMLA1 .GT. 90.) THEN - FMLA1 = 180. - FMLA1 - XMLT1 = XMLT1 + 12. - ENDIF - CALL IZNTRP (IMON, XMLT1, FMLA1 , IHEM, BY,BZ, P1) - CALL IZNTRP (IMON, XMLT , FMLA-1., IHEM, BY,BZ, P2) - IF (KPOL .EQ. 1) GO TO 20 - ET = (P1 - P2) / STEPA - -C Calculate -(lon gradient). For most latitudes, step 15 degrees -C in longitude (1 hr MLT = model resolution) along a great circle. -C However, limit minimum latitude to the model minimum, distorting -C the path onto a latitude line. The step shrinks as latitude -C increases and would become zero at the pole, but a different -C scheme is used near the pole: Assume lat=90 degrees and use -C Art's trick where Ephi(90,lon) = Etheta(90,lon+90.) - IF (FMLA .LT. 89.9) THEN - SL = SIN (FMLA*D2R) - CL = SQRT (1.-SL*SL) - SP = SIN (15.*D2R) - SA = SQRT (1.-SL*SL*SP*SP) - FMLA1 = AMAX1 (ALAMN , ACOS(CL/SA)*R2D) - CALL IZNTRP (IMON, XMLT+1.,FMLA1, IHEM, BY,BZ, P1) - CALL IZNTRP (IMON, XMLT-1.,FMLA1, IHEM, BY,BZ, P2) - STEP2 = 2.*ALTE*ASIN(CL*SP/SA) - ELSE - STEP2 = STEPA - XMLT = XMLT + 6. - FMLA = 90. - KPOL = 1 - GO TO 10 - ENDIF - 20 EP = (P2 - P1) / STEP2 - IF (KPOL .EQ. 1) EP = -EP - -C Below model minimum lat, the potential is value at min lat -C 2/98: RLAMN changed to ALAMN in next 3 lines - IF (ABLA .LT. ALAMN) THEN - ET = 0. - EP = EP * COS(ALAMN*D2R)/SIN((90.-ABLA)*D2R) - ENDIF - - RETURN - END -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC - SUBROUTINE IZINIT (IUN) -C Initialize the IZMEM 94 model: Load coefficients file and -C model constants into common block IZC1. -C INPUTS: -C IUN = Fortran unit no. of (previously opened) coefficients file - - COMMON /IZC1/ HIZA(24,1632), IZMODE, ALTE, ALAMN, STEPA -C HIZA = coefficients array -C IZMODE = computation mode. Initialized here, but may be revised -C (before calling IZEPOT), to change contributing terms -C of the electrostatic potential formula: -C -C EPOT = AF*(BZLIM*HZ + BY*HY + H0) -C -C = 0,1 EPOT is based on corrective multiplier (AF), the -C Bz effect (BZLIM*HZ), the By effect (BY*HY), and -C the constant (H0). This is the default, because -C the full potential with all corrective multipliers -C is the comon choice. However, it can be changed -C to see how the potential is partitioned. -C = 2 the corrective multiplier (AF) is omitted (so the -C potential is generally too large). -C = 3 EPOT includes only the constant (H0). -C = 4 EPOT includes only the BZ effect (BZLIM*HZ). -C = 5 EPOT includes only the BY effect (BY*HY). -C ALTE = Mean Earth radius (6371 km) + 300 km, the altitude at -C which the electric field is computed. -C ALAMN = Absolute value (degrees) of model minimum magnetic -C latitude (with non-zero coefficients). -C STEPA = Twice the lat step used in Etheta calc (2 deg in radians) - - PARAMETER (D2R = 0.0174532925199432957692369076847 , - + R2D = 57.2957795130823208767981548147) - -C Write out the valid limits - write (6,"(1x,'IZMEM model has valid limits between 58-90 mlat', - | ' and between 0-24 MLT.'/1x, - | 'SH values are derived by inverting the sign of By from NH.')") - - IZMODE = 1 - ALTE = 6671. - ALAMN = 58. - STEPA = 2.*ALTE*D2R - -C Skip header text records when reading the combined coefficients file - IROW = 0 - JROW = 0 - 10 IF (IROW .EQ. 0) THEN - READ (IUN,'(1X)',END=100) - ELSE - JROW = JROW + 1 - READ (IUN,'(14X,24F10.4)',END=100) (HIZA(I, JROW),I=1,24) - ENDIF - IROW = IROW+1 - IF (IROW .EQ. 35) IROW = 0 - GO TO 10 - - 100 RETURN - END -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC - SUBROUTINE IZNTRP (IMON, RMLT,AMLAT,IHEM, BY,BZ, EPOT) -C Determine the electrostatic potential for the given location by -C interpolating from the 4 adjacent (integer) model grid locations. -C -C INPUTS: -C IMON = Month of year (e.g., IMON=1 for Jan). Season is -C determined by the combination of IMON and IHEM. -C Season may be equinox (IMON = 3,4,9,10), summer -C or winter. -C RMLT = Magnetic local time (hr) -C AMLAT = Absolute value of magnetic latitude (degrees) -C IHEM = 0 (northern hemisphere) or 1 (southern hemisphere) -C BY, BZ = IMF components (nT) -C RETURNS: -C EPOT = electric potential (kV) -C -C William Golesorkhi, HAO/NCAR (6/95) - - DIMENSION ISNS(24) - SAVE ISNS - DATA ISNS /2,2,0,0,1,1,1,1,0,0,2,2,1,1,0,0,2,2,2,2,0,0,1,1/ - -C Define season, where 0=Equinox, 1=Summer, 2=Winter - ISEA = ISNS(IMON+12*IHEM) - -C Filter MLT to range 1-24 hr - N24 = INT (RMLT/24.) - IF (RMLT .LT. 0.) N24 = N24 - 1 - FMLT = RMLT - REAL(N24)*24. - IF (FMLT .LT. 1.) FMLT = FMLT + 24. - -C Establish coordinate indices required by IZMOD - MLT = INT (FMLT) - LAT = INT (AMLAT) - MLT1 = MLT+1 - LAT1 = LAT+1 - IF (LAT1 .GT. 90) THEN - LAT1 = 180 - LAT1 - MLT1 = MLT1 + 12 - ENDIF - IF (MLT1 .GT. 24) MLT1 = MLT1 - 24 - - FRACT = FMLT - REAL (MLT) - FRACL = AMLAT - REAL (LAT) - - IF (FRACT .EQ. 0. .AND. FRACL .EQ. 0.) THEN - CALL IZMOD (MLT , LAT , IHEM, ISEA, BY,BZ, EPOT) - ELSE - CALL IZMOD (MLT , LAT1, IHEM, ISEA, BY,BZ, PNW) - CALL IZMOD (MLT1, LAT1, IHEM, ISEA, BY,BZ, PNE) - CALL IZMOD (MLT , LAT , IHEM, ISEA, BY,BZ, PSW) - CALL IZMOD (MLT1, LAT , IHEM, ISEA, BY,BZ, PSE) - PN = PNW + (PNE-PNW)*FRACT - PS = PSW + (PSE-PSW)*FRACT - EPOT = PS + (PN-PS) *FRACL - ENDIF - - RETURN - END -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC - SUBROUTINE IZMOD (MLT,LAT,IHEM, ISEA, BY,BZ, EPOT) -C Determine the electrostatic potential for an integer MLT and -C magnetic latitude. This is known as the "IZMEM 94" model by -C Papitashvili (JGR, 99, 13251 - 13262, 1994). -C -C INPUTS: -C MLT = Magnetic local time (integer hr: 1,2,3 ... 24) -C LAT = Magnetic latitude (integer deg: 58,59,60 ... 90) -C IHEM = 0 (northern hemisphere) or 1 (southern hemisphere) -C ISEA = Season: (0) equinox, (1) summer, or (2) winter -C BY, BZ = IMF components (nT) -C RETURNS: -C EPOT = electrostatic potential (kV) -C -C Based on the PC routine, am_synt.for by V. O. Papitashvili. -C -C William Golesorkhi, HAO/NCAR (6/95); -C Mod Dec 96: correct indexing into coefficient array (Two -C conditions were reversed (By neg+Bz pos was swapped with -C By pos+Bz neg) R Barnes (bozo@ncar.ucar.edu). - - COMMON /IZC1/ HIZA(24,1632), IZMODE, ALTE, ALAMN, STEPA - -C Local declarations -C Originally, the coeffecients were placed in 48 seperate files -C that the routine accessed by putting together different pieces of -C the file name (eg. 'n'+'e'+'bh'+'1'+'.pot'=nebh1.pot) depending -C on the hemisphere, season, component, and if BY and/or BZ was -C positive or negative. The coefficient files were combined into -C one file which was read into HIZA. An additional header line -C was added to each block (which is omitted here) and a 90 degree -C line containing the average of the values at lat=89. Each -C coefficient block contains 34 rows (90-57 deg lat) and 24 columns -C (1 to 24 hrs MLT). Latitude 57 contains 24 zeros. The files were -C split into two hemispheres (north and south), each hemisphere was -C split into three seasons (equinox, summer, winter), each season -C was split into three categories (Bh, By, Bz), and finally, each -C category was split into two Bh blocks (H0 coef. for Bz-,Bz+), -C 4 By blocks (By coef for By-Bz-,By+Bz-,By-Bz+,By+Bz+), and 2 Bz -C blocks (Bz coef for Bz-,Bz+). The order of the original files -C within HIZA is as follows: -C nebh1.pot nsbh1.pot nwbh1.pot sebh1.pot ssbh1.pot swbh1.pot -C nebh2.pot nsbh2.pot nwbh2.pot sebh2.pot ssbh2.pot swbh2.pot -C neby3.pot nsby3.pot nwby3.pot seby3.pot ssby3.pot swby3.pot -C neby4.pot nsby4.pot nwby4.pot seby4.pot ssby4.pot swby4.pot -C neby5.pot nsby5.pot nwby5.pot seby5.pot ssby5.pot swby5.pot -C neby6.pot nsby6.pot nwby6.pot seby6.pot ssby6.pot swby6.pot -C nebz1.pot nsbz1.pot nwbz1.pot sebz1.pot ssbz1.pot swbz1.pot -C nebz2.pot nsbz2.pot nwbz2.pot sebz2.pot ssbz2.pot swbz2.pot -C The following constants are used to locate a certain block: -C NROW = 34 = No. rows in a block (also no. magnetic latitudes) -C NSEA = 3 = No. seasons (winter/summer/equinox) -C NCAT = 8 = No. coefficients categories: 2(H0) + 4(HY) + 2(HZ) -C IOFH = No. of rows in 1 hemisphere -C IOFS = No. of rows in 1 season -C Thus, to read the coefficients from file number 37, 'ssby5.pot', -C which corresponds to BY<0, BZ>=0, and a southern summer: -C IHEM=1, ISEA=1, ISBZ=2 -C LOC = NROW * NSEA * NCAT * IHEM (LOC is in the 2nd half of files) -C LOC = LOC + NCAT * NROW * ISEA (LOC is in the summer season -C LOC = LOC + NROW * 2 (LOC is in the By category -C LOC = LOC + NROW * ISBZ/Y (LOC is at coeff block ssby5.pot - PARAMETER (NROW = 34, NSEA = 3, NCAT = 8, - + IOFH = NROW*NCAT*NSEA, IOFS = NROW*NCAT) - -C Determine no blks to skip to reach desired category - IF (BZ .LE. 0.) THEN - ISBZ = 0 - ISBY = 0 - IF (BY .GT. 0.) ISBY = 1 - ELSE - ISBZ = 1 - ISBY = 2 - IF (BY .GT. 0.) ISBY = 3 - ENDIF -C previous code reversed order of two category offsets: -C IF (BY .LE. 0 .AND. ISBZ .EQ. 0) ISBY = 0 -C IF (BY .LE. 0 .AND. ISBZ .EQ. 1) ISBY = 1 s.b. 2 -C IF (BY .GT. 0 .AND. ISBZ .EQ. 0) ISBY = 2 s.b. 1 -C IF (BY .GT. 0 .AND. ISBZ .EQ. 1) ISBY = 3 - -C Determine the amplification factor, AF - IF (IHEM .EQ. 0 .AND. ISEA .EQ. 1) AF = 3.2 - IF (IHEM .EQ. 1 .AND. ISEA .EQ. 1) AF = 3.0 - IF (IHEM .EQ. 0 .AND. ISEA .EQ. 0) AF = 2.3 - IF (IHEM .EQ. 1 .AND. ISEA .EQ. 0) AF = 2.7 - IF (IHEM .EQ. 0 .AND. ISEA .EQ. 2) AF = 1.5 - IF (IHEM .EQ. 1 .AND. ISEA .EQ. 2) AF = 2.5 - -C Location within each block is ordered by colatitude - KOLA = 90-LAT+1 - -C LH0 = location for H0 coefficient -C LHY = location for HY coefficient -C LHZ = location for HZ coefficient - I = IOFH*IHEM + IOFS*ISEA + KOLA - LH0 = I + NROW* ISBZ - LHY = I + NROW*(ISBY + 2) - LHZ = I + NROW*(ISBZ + 6) - - H0 = HIZA (MLT,LH0) - HY = HIZA (MLT,LHY) - HZ = HIZA (MLT,LHZ) - - BZLIM = AMAX1 (-12., BZ) - - EPOT = 99999. - IF (IZMODE .EQ. 0) EPOT = AF*(BZLIM*HZ + BY*HY + H0) - IF (IZMODE .EQ. 1) EPOT = AF*(BZLIM*HZ + BY*HY + H0) - IF (IZMODE .EQ. 2) EPOT = BZLIM*HZ + BY*HY + H0 - IF (IZMODE .EQ. 3) EPOT = H0 - IF (IZMODE .EQ. 4) EPOT = BZLIM*HZ - IF (IZMODE .EQ. 5) EPOT = BY*HY - IF (EPOT .EQ. 99999.) WRITE (6,'(''IZMOD: IZMODE must be 0 to 5, - + not='',I5)') IZMODE - - RETURN - END -CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC diff --git a/util/EMPIRICAL/srcIE/main_1.f90 b/util/EMPIRICAL/srcIE/main_1.f90 deleted file mode 100644 index e8dd1cbe..00000000 --- a/util/EMPIRICAL/srcIE/main_1.f90 +++ /dev/null @@ -1,116 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -program Interface - - use ModEIE_Interface - use ModTimeConvert, ONLY: time_int_to_real - - implicit none - - character(len=100) :: inFileName - integer :: iError - real*8 :: rTime - integer, dimension(7) :: iTime_i - real, dimension(4, 2) :: templat, tempmlt, temppot - - iDebugLevel = 100 - - write(6, *) 'Enter file name :' - read(5, '(A100)') inFileName - - iError = 0 - - call AMIE_SetFileName(inFileName) - - call readAMIEOutput(iError) - - call AMIE_GetnLats(EIEi_HavenLats) - call AMIE_GetnMLTs(EIEi_HavenMLTs) - EIEi_HavenBLKs = 2 - - if (iDebugLevel > 1) then - write(*, *) "EIEi_HavenBLKs : ", EIEi_HavenBLKs - write(*, *) "EIEi_HavenLats : ", EIEi_HavenLats - write(*, *) "EIEi_HavenMLTs : ", EIEi_HavenMLTs - endif - - allocate(EIEr3_HaveLats(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveLats in Interface" - stop - endif - - allocate(EIEr3_HaveMlts(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveMlts in Interface" - stop - endif - - allocate(EIEr3_HavePotential(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HavePotential in Interface" - stop - endif - - allocate(EIEr3_HaveEFlux(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveEFlux in Interface" - stop - endif - - allocate(EIEr3_HaveAveE(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs), & - stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array EIEr3_HaveAveE in Interface" - stop - endif - - call AMIE_GetLats(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs, & - EIEr3_HaveLats, iError) - - call AMIE_GetMLTs(EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs, & - EIEr3_HaveMLTs, iError) - - itime_i(1) = 1998 - itime_i(2) = 05 - itime_i(3) = 01 - itime_i(4) = 12 - itime_i(5) = 00 - itime_i(6) = 0 - itime_i(7) = 0 - call time_int_to_real(itime_i, rtime) - - call AMIE_GetPotential(rtime, EIE_Interpolate_, & - EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs, EIEr3_HavePotential, iError) - - call AMIE_GetAveE(rtime, EIE_Closest_, & - EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs, EIEr3_HaveAveE, iError) - - call AMIE_GetEFlux(rtime, EIE_Closest_, & - EIEi_HavenMlts, EIEi_HavenLats, EIEi_HavenBLKs, EIEr3_HaveEFlux, iError) - - call IO_SetnMLTs(4) - call IO_SetnLats(2) - - templat(:, 1) = -60.0 - templat(:, 2) = 70.0 - tempmlt(1, :) = 0.0 - tempmlt(2, :) = 6.0 - tempmlt(3, :) = 12.0 - tempmlt(4, :) = 18.0 - - call IO_SetGrid(tempmlt, templat, iError) - - call IO_GetPotential(temppot, iError) - - write(*, *) templat(:, 2) - write(*, *) tempmlt(:, 2) - write(*, *) temppot(:, 2) - - call EIE_End - - end program Interface diff --git a/util/EMPIRICAL/srcIE/main_2.f90 b/util/EMPIRICAL/srcIE/main_2.f90 deleted file mode 100644 index 8ff009f8..00000000 --- a/util/EMPIRICAL/srcIE/main_2.f90 +++ /dev/null @@ -1,84 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -program GetEIE - - use ModKind - use ModErrors - use ModTimeConvert, ONLY: time_int_to_real - - implicit none - - character(len=100), dimension(100) :: Lines - integer :: iError, i - integer, dimension(7) :: itime - real(Real8_) :: rtime - real :: value - real, dimension(25, 1) :: mlts, lats, TempPotential - - Lines(1) = "#BACKGROUND" - Lines(2) = "../srcData/" - Lines(3) = "izmem" - Lines(4) = "ihp" - Lines(5) = "idontknow" - Lines(6) = "" - Lines(7) = "#DEBUG" - Lines(8) = "2" - Lines(9) = "0" - Lines(10) = "" - Lines(11) = "#END" - - write(*, *) "Calling EIE_set_inputs" - - call EIE_set_inputs(Lines) - - itime(1) = 1998 - itime(2) = 5 - itime(3) = 1 - itime(4) = 21 - itime(5) = 30 - itime(6) = 0 - itime(7) = 0 - - write(*, *) "Calling time convertion" - - call time_int_to_real(itime, rtime) - - write(*, *) "=> Setting up Ionospheric Electrodynamics" - - call EIE_Initialize(iError) - - write(*, *) "Setting nmlts and nlats" - - call IO_SetnMLTs(25) - call IO_SetnLats(1) - - call IO_SetTime(rtime) - - call IO_SetIMFBz(-5.0) - call IO_SetIMFBy(10.0) - call IO_SetSWV(400.0) - call IO_SetSWN(10.0) - call IO_SetKp(3.0) - call IO_SetNorth - - lats = 75.0 - do i = 1, 25 - mlts(i, 1) = float(i) - enddo - - write(*, *) "Setting grid" - - call IO_SetGrid(mlts, lats, iError) - - call IO_GetPotential(TempPotential, iError) - - if (iError /= 0) then - write(*, *) "Error : ", cErrorCodes(iError) - else - write(*, *) TempPotential - endif - - call EIE_End(iError) - -end program GetEIE diff --git a/util/EMPIRICAL/srcIE/merge_str.f90 b/util/EMPIRICAL/srcIE/merge_str.f90 deleted file mode 100644 index b1ae0264..00000000 --- a/util/EMPIRICAL/srcIE/merge_str.f90 +++ /dev/null @@ -1,51 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -subroutine merge_str(str1, str2) - - use ModCharSize - - character(len=iCharLenIE_) :: str1, str2, temp - integer :: i, j, k - - i = 1 - do while (iachar(str1(i:i)) /= 32 .and. & - iachar(str1(i:i)) /= 9 .and. & - i < 100) - i = i + 1 - enddo - - j = 1 - do while (iachar(str2(j:j)) /= 32 .and. & - iachar(str2(j:j)) /= 9 .and. & - j < 100) - j = j + 1 - enddo - - temp = str1 - do k = i, 100 - temp(k:k) = ' ' - enddo - - if (i + j - 1 > 100) j = 100 - i + 1 - - temp(i:i + j - 1) = str2(1:j) - - str2 = temp - -end subroutine merge_str - -subroutine strlen(str1, len) - - use ModCharSize - - character(len=iCharLenIE_) :: str1 - integer :: len - - len = 1 - do while (iachar(str1(len:len)) /= 32 .and. & - iachar(str1(len:len)) /= 9 .and. & - len < 100) - len = len + 1 - enddo - -end subroutine strlen diff --git a/util/EMPIRICAL/srcIE/mh86.f b/util/EMPIRICAL/srcIE/mh86.f deleted file mode 100644 index 35785c53..00000000 --- a/util/EMPIRICAL/srcIE/mh86.f +++ /dev/null @@ -1,785 +0,0 @@ - SUBROUTINE MHEMODL (RMLAT,RMLT,HP,BY,BZ,MODL,ET,EP,EPOT) -C Millstone Hill electric potential models. This subroutine -C determines the electric potential for a specified location -C poleward of 55 or -55 degrees magnetic latitude. One of two -C models (MHI or MHS) may be used for the estimation. Also -C determined are the electic field components, since they are -C -grad(electrostatic potential). -C -C A prerequisite: call MHINIT to initialize constants and load -C model coefficients into memory prior calling MHEMODL. -C -C MHI model: -C Millstone Hill incoherent scatter scatter (IS) radar data -C combined with the Hemispheric Power (HP) defined by Fuller-Rowell -C and Evans (JGR, 92, pp 7606-7618, 1987). An integer index (HPI) -C from 1 to 10 is approximately related to the hemispheric power -C from auroral electrons, HP in GW by -C -C HP = 4.2**(HPI/3) -C -C where HP is the median value in the index level HPI. The -C inverse of this formula is: -C -C HPI = 2.09 * ln(HP) -C -C However, these are approximations to the actual boundaries -C -C 2.50, 3.94, 6.22, 9.82, 15.49, 24.44, 38.56, 60.85, 96.00 -C -C in GW (David Evans, private communication, 1988). The minumum -C value in level 2 is 2.50 GW; the minimum in level 10 is 96.00 GW. -C 5% of the hemispheric power dataset is in level 1 and 1%-1.5% -C is in level 10. -C -C If the above table is not used, a better formula for HPI is: -C -C IHPI = MAX0(1,MIN0(10,INT( 1.0475 * 2.09 * ln(HP)))) -C -C Because of the sparse statistics in level 10, electric potential -C patterns were developed from Millstone Hill data for HPI levels -C 1-9 (Foster, Holt, Musgrove and Evans, GRL, 13, pp 656-659, 1986). -C There is no IMF By dependence so the patterns are identical in -C both hemispheres. -C -C MHS model: -C Millstone Hill and Sondestrom IS radar data were combined with -C the sign of the By and Bz IMF components to produce four potential -C patterns (described in Foster "Proceedings of the International -C Symposium on Quantitative Modeling of Magnetosphere-Ionosphere -C Coupling Processes, editors Kamide and Wolf, Kyoto, Japan, -C pp 71-76, 1987). The patterns were derived for the northern -C hemisphere, so a southern hemisphere pattern can be inferred by -C assuming an opposite sign for By. -C -C INPUTS: -C RMLAT = magnetic latitude in degrees. -C RMLTLON = magnetic local time in degrees (0=midnight). -C RMLT = magnetic local time in degrees (0=midnight). -C HP = The Hemispheric Power in GW -C BY = IMF GSM By in nT -C BZ = IMF GSM Bz in nT -C MODL = Model selection switch: -C = 1 Use HP model from Millstone -C = 2 Use Radar model based on Millstone/Sonde for 4 By/Bz -C If Bz=0 use Bz+, and if By=0 use By- (NH) or By+ (SH) -C RETURNS: -C ET = Etheta (magnetic antipoleward*) E field component in V/m -C EP = Ephi (magnetic eastward) E field component in V/m -C EPOT = Electrostatic potential in kV. -C -C * ET direction is along the magnetic meridian away from the -C current hemisphere; i.e., the direction is -C southward when RMLAT > 0 -C northward when RMLAT < 0 -C The MHI potential patterns and E components are otherwise -C the same in both hemispheres. The MHS model recognizes the -C inverse relationship between the sign of BY and the affected -C hemisphere by taking both into account when selecting the -C potential pattern; so, when RMLAT < 0, MHS chooses the pattern -C for the opposite sign of By. - SAVE - -C MHRFCM contains model coefficients and is assigned in MHINIT: - PARAMETER (MXNBETA=143,MXNNDX=9,MXNF=196) - REAL PI,RE,TMN,TMX,RMLAMN,RMLAMX,TX,TY,BETA,F - COMMON /MHRFCM/ NX,KX,NY,KY,NBETA,KFIT,PI,RE,TMN,TMX,RMLAMN(2), - + RMLAMX(2),TX(100),TY(100,2),BETA(MXNBETA,MXNNDX,2),F(3,3,MXNF) - -C ADDPOT(NDX,MODL) = Electrostatic potential (kV) additive offset -C required make a zero average at the lowest model latitude. -C When MODL=1, NDX 1-9 corresponds to the 9 Hemispheric Power Input -C patterns of the MHI model. When MODL=2, NDX 1-4 corresponds to -C the four MHS model By/Bz patterns. - DIMENSION ADDPOT(9,2) - DATA ADDPOT /1.04, 2.08,7.54,10.11,4.11,10.37,6.29,5.39,5.00, - + 14.62,22.66,0.00, 0.09, 999.,999.,999.,999.,999./ - -C Declarations for GETFIT - REAL TIME,RMLA,XLA,DFIT,ESFIT,EEFIT - - IF (MODL .NE. 1 .AND. MODL .NE. 2) THEN - WRITE (6,'(''MHEMODL: MODL .ne. 1 or 2; MODL='',I3)') MODL - STOP - ENDIF - - TIME = RMLTLON/15. - TIME = RMLT - 20 IF (TIME .GT. TMX) THEN - TIME = TIME - 24. - GO TO 20 - ENDIF - 30 IF (TIME .LT. TMN) THEN - TIME = TIME + 24. - GO TO 30 - ENDIF - - H = SIGN (1.,RMLAT) - RMLA = MIN(MAX(ABS(RMLAT),RMLAMN(MODL)), RMLAMX(MODL)) - -C Millstone HP model for any By - IF (MODL .EQ. 1) THEN -C Avoid error with HP=0. when determining integer hemi pwr index - P = AMAX1 (0.01,HP) - NDX = MIN0 (9, MAX0 (1 , INT(1.0475*2.09*ALOG(P)))) - ENDIF - -C Millstone/Sonde 4 By/Bz patterns - IF (MODL .EQ. 2) THEN -C Now revert to Bz+ for Bz=0, and to By- (NH) or By+ (SH) for By=0 - IF (H*BY .GT. 0.0 .AND. BZ .GE. 0.0) NDX = 1 - IF (H*BY .GT. 0.0 .AND. BZ .LT. 0.0) NDX = 2 - IF (H*BY .LE. 0.0 .AND. BZ .GE. 0.0) NDX = 3 - IF (H*BY .LE. 0.0 .AND. BZ .LT. 0.0) NDX = 4 - ENDIF - -C Adjust sign for hemisphere, convert from mV/m -> V/m (with -C factor 1.E-3) and maintain constant field equatorward of -C minimum model magnetic latitude (~55.06 deg). - IF (RMLA .GE. RMLAMN(MODL)) THEN - XLA = RMLA - FET = 1.E-3 - FEP = 1.E-3 - ELSE IF (RMLA .LE. -RMLAMN(MODL)) THEN - XLA = -RMLA - FET = 1.E-3 - FEP = 1.E-3 - ELSE - XLA = RMLAMN(MODL) - FET = 0. - FEP = 1.E-3*COS(RMLAMN(MODL)*PI/180.)/SIN((90.-RMLAT)*PI/180.) - ENDIF - CALL GETFIT (NDX,MODL,TIME,XLA,DFIT,ESFIT,EEFIT,IST) - IF (IST .NE. 0) WRITE (6,'(''MHEMODL: GETFIT returned IST='',I3)') - + IST - - EPOT = DFIT - ADDPOT(NDX,MODL) - ET = ESFIT*FET - EP = EEFIT*FEP - - RETURN - END - - SUBROUTINE MHINIT (MODL,IUN,IPR,ISTAT) -C Initialize Millstone Hill hemispheric electric field model. -C Read 'FITVEC' output (Millstone Hill terminology) parameters -C into common MHRFCM. This is specifically for two models: -C Millstone Hill electric potential patterns binned by nine -C Hemispheric Power Input levels (MHI) and Millstone Hill/ -C Sondrestrom electric potential patterns binned by 4 IMF By/Bz -C conditions (MHS). -C -C INPUTS: -C MODL = Model selection flag, where -C = 1 for MHI model -C = 2 for MHS model -C IUN = Logical unit number of FITVEC parameter file which has -C already been opened; e.g., -C OPEN (IUN,FILE='mhi.cofcnts') when MODL=1 -C OPEN (IUN,FILE='mhs.cofcnts') when MODL=2 -C IPR = 1,0 if do,not print diagnostics during initialization. -C RETURNS: -C ISTAT = 0 - Normal return. -C -2 - END-OF-FILE when more data are expected. -C -1 - Error reading parameter file. -C 1 - Illegal KFIT -C 2 - Inconsistency in parameters defining time nodes. -C 3 - Inconsistency in parameters defining latitude node -C 4 - Inconsistency in total number of parameters. -C 5 - Too many parameters for BETA, F arrays. The array -C dimensions should be increased. -C -C John M. Holt, Millstone Hill, jmh@chaos.haystack.edu - 1/86 -C -C Mod Oct 96 (Roy Barnes NCAR): omit reference to third MH model. -C Removed reads here, first sets of coefficients from 'mhs.cofcnts', -C and reduced last array dimension from 4 to 2 for TY and BETA. -C Also, formal argument MODL was added and two remaining read loops -C (for MHI and MHS model coefficients) were combined and fit limits -C parameters (TMN-RMLAMX) were moved to MHRFCM. Reset variables to -C REAL*8 to conform with current Millstone Hill version and eliminate -C underflow in BASPRC. Also eliminated return of ion-drift components -C which were based on a simple approximation (B =.5) and the -C electostatic field components. - -C MHRFCM contains model coefficients and is assigned here: - PARAMETER (MXNBETA=143,MXNNDX=9,MXNF=196) - REAL PI,RE,TMN,TMX,RMLAMN,RMLAMX,TX,TY,BETA,F - COMMON /MHRFCM/ NX,KX,NY,KY,NBETA,KFIT,PI,RE,TMN,TMX,RMLAMN(2), - + RMLAMX(2),TX(100),TY(100,2),BETA(MXNBETA,MXNNDX,2),F(3,3,MXNF) -C NX+KX = No. assigned elements in TX -C NY+KY = No. assigned elements in TY (1st dim) -C NBETA = No. assigned elements in BETA (1st dim) -C KFIT = Kind of fit (currently always 2) -C RE = Earth radius -C TMN = Minimum time of fit (hours). -C TMX = Maximum time of fit. -C RMLAMN = Minimum magnetic latitude of fit (degrees). -C RMLAMX = Maximum magnetic latitude of fit (degrees). -C TX = spline fit independent variable MLT (radians) -C TY = spline fit independent variable mag colat (km) -C BETA = fit parameter electric potential -C BETA 3rd dimension is MODL (1=MHI, 2=MHS) -C BETA 2nd dimension is hemispheric power input index (1-9) -C for MHI model or By/Bz sign (1-4) for MHS, where -C NDX By Bz -C 1 + + -C 2 + - -C 3 - + -C 4 - - -C (B_ is considered + or - when |B_| > .5 nT) - -C Local declarations - CHARACTER CMODL*3, CBYZ*16, LABELS*80 - -C Initialize common constants - PI = 3.141592653589793123846 - RE = 6368.0 - - IF (MODL .EQ. 1) THEN - NSET = 1 - CMODL ='MHI' - ELSE IF (MODL .EQ. 2) THEN - NSET = 4 - CMODL ='MHS' - ELSE - WRITE (6,'(''MHINIT: MODL may be 1 or 2, not'',I8)') MODL - STOP - ENDIF - - DO 100 ISET = 1,NSET - CBYZ = ' ' - IF (MODL .EQ. 2) THEN - READ (IUN,'(9X,F3.1,5X,F3.1)') BY,BZ - WRITE (CBYZ,'(2F8.1)') BY,BZ - ENDIF - - READ (IUN,*) NLABS - DO 10 I=1,NLABS - 10 READ (IUN,'(A)',END=998,ERR=999) LABELS - - READ (IUN,*,END=998,ERR=999) KFIT - IF (KFIT .NE. 2) THEN - ISTAT = 1 - RETURN - ENDIF - - READ (IUN,*,END=998,ERR=999) NKTSX,NX,NBETAX,KX - IF (NBETAX .NE. NX-(KX-1)) THEN - ISTAT = 2 - RETURN - ENDIF - READ (IUN,*,END=998,ERR=999) (TX(I),I=1,NKTSX+2*(KX-1)) - - READ (IUN,*,END=998,ERR=999) NKTSY,NY,NBETAY,KY - IF (NBETAY .NE. NY-1) THEN - ISTAT = 3 - RETURN - ENDIF - READ (IUN,*,END=998,ERR=999) (TY(I,MODL),I=1,NKTSY+2*(KY-1)) - - IBEG = 1 - IEND = MXNNDX - IF (MODL .EQ. 2) THEN - IBEG = ISET - IEND = ISET - ENDIF - DO NDX=IBEG,IEND - READ (IUN,*,END=998,ERR=999) NBETA - IF (NBETA .NE. NBETAX*NBETAY) THEN - ISTAT = 4 - RETURN - ELSE IF (NBETA .GT. MXNBETA) THEN - ISTAT = 5 - RETURN - ENDIF - READ (IUN,*,END=998,ERR=999) (BETA(I,NDX,MODL),I=1,NBETA) - - IF (MODL .EQ. 2) THEN -C Reverse the sign of BETA for MHS to conform to MHI convention - DO 20 I=1,NBETA - 20 BETA(I,NDX,MODL) = -BETA(I,NDX,MODL) - ENDIF - ENDDO -C 30 IF (IPR .EQ. 1) WRITE (6,'(''MHINIT: Read ''A,'' pars: I MODL BY B -C +Z BETA1 ='',2I3,A,E12.3)') CMODL,NDX,MODL,CBYZ,BETA(1,NDX,MODL) - - -C Establish independent fit parameter (MLT and mag lat) model extremes -C Model inputs should be filtered by these limits, even though -C inputs are constrained in GETFIT. - TMN = 0. - TMX = 24. - RMLAMN(MODL) = 90.0-TY(NY+1,MODL)*180./(PI*RE) - RMLAMX(MODL) = 90.0-TY(1 ,MODL)*180./(PI*RE) - - 100 CONTINUE - - ISTAT = 0 - RETURN - -C Bad file format traps - 998 ISTAT = -1 - RETURN - 999 ISTAT = -2 - RETURN - END - - SUBROUTINE GETFIT (NDX,MODL,TIME,RMLA,DFIT,ESFIT,EEFIT,ISTAT) -C GETFIT recovers the electrostatic potential and electric field -C components from the FITVEC parameters stored in COMMON MHRFCM -C for the point TIME,RMLA. The potential is a B-splines fit and -C the electic field is -grad(potential). -C -C INPUTS: -C NDX = Index of potential pattern. If MODL=1, NDX may be 1-9 -C corresponding to Hemispheric Power Input Index. If MODL=2, -C index may be 1-4 corresponding to the 4 By/Bz paterns. -C MODL = model to be used (1) MHI or (2) MHS -C TIME = Magnetic local time (hours); must be in domain TMN to TMX. -C RMLA = Magnetic latitude (degrees); must be in domain RMLAMN to -C RMLAMX. -C RETURNS: -C DFIT = Electrostatic potential (kV) -C ESFIT = Southward electric field (mV/m). -C EEFIT = Eastward electric field (mV/m). -C ISTAT = Status: 0 = Normal return -C 1 = Bad NDX,MODL input -C Author: John M. Holt, Millstone Hill, jmh@chaos.haystack.edu - 1/86 -C Mod Oct 96 (Roy Barnes): Reset variables to REAL*8 to conform with -C current Millstone Hill version and eliminate (32-bit) underflow -C when computing F in BASPRC. - -C Formal argument declarations - REAL TIME,RMLA,DFIT,ESFIT,EEFIT - -C MHRFCM contains model coefficients and is assigned in MHINIT - PARAMETER (MXNBETA=143,MXNNDX=9,MXNF=196) - REAL PI,RE,TMN,TMX,RMLAMN,RMLAMX,TX,TY,BETA,F - COMMON /MHRFCM/ NX,KX,NY,KY,NBETA,KFIT,PI,RE,TMN,TMX,RMLAMN(2), - + RMLAMX(2),TX(100),TY(100,2),BETA(MXNBETA,MXNNDX,2),F(3,3,MXNF) - DIMENSION XY(NY+KY) - -C Local declarations - REAL X,Y,DDXFIT,DDYFIT - SAVE - -C Check valid model indices -C Note: MXNDX ought to be added to MHRFCM as a 2 element array - ISTAT = 1 - MXNDX = 0 - IF (MODL .EQ. 1) MXNDX = 9 - IF (MODL .EQ. 2) MXNDX = 4 - IF (MXNDX .EQ. 0) GO TO 100 - IF (NDX .LT. 1 .OR. NDX .GT. MXNDX) GO TO 100 - ISTAT = 0 - -C Convert hours MLT to radians and degrees magnetic latitude to ground -C distance from the pole (km), which are the independent variables -C in the spline fits. Constrain the results to be slightly within -C the maximum fit extreme (thus, avoiding a divide by zero (Y) below -C and trouble when INTERV finds the interval for the biggest X or Y. - X = 2.*PI*(1.0-TIME/24.0) - Y = RE*PI*(90.0-RMLA)/180.0 - X = MIN(MAX(X,.00000001),TX(NX+1)-.00000001) - Y = MIN(MAX(Y,.0000001),TY(NY+1,MODL)-.0000001) - -C Compute the fit -C CALL BASPRC (TX,TY(1,MODL),NX,NY,KX,KY,X,Y,F) - XY(1:NY+KY) = TY(1:NY+KY,MODL) - CALL BASPRC (TX,XY,NX,NY,KX,KY,X,Y,F) - - DFIT = 0.0 - DDXFIT = 0. - DDYFIT = 0. - DO 30 I=1,NBETA - DFIT = DFIT + BETA(I,NDX,MODL)*F(1,1,I) - DDXFIT = DDXFIT + BETA(I,NDX,MODL)*F(2,1,I)/Y - 30 DDYFIT = DDYFIT + BETA(I,NDX,MODL)*F(1,2,I) - DDYFIT = -DDYFIT - DFIT = -DFIT/1000. - ESFIT = -DDYFIT - EEFIT = -DDXFIT - - 100 RETURN - END - - SUBROUTINE BASPRC (TX,TY,NX,NY,KX,KY,X,Y,F) -C BASPRC is a two-dimensional tensor product B-spline basis function -C routine. The splines generated by these basis functions are -C periodic in the X direction. this version of BASPRC is also zero -C at the first Y knot. this function is a useful representation of -C the electrostatic potential determined from an IS radar azimuth scan. -C -C Author: John M. Holt, Millstone Hill, jmh@chaos.haystack.edu - 8/83 - -C Formal argument declarations - REAL TX(*),TY(*),X,Y,F(9,*) - -C Local declarations - REAL XP,YP,VALX(16),VALY(16),A(4,4) - SAVE - - NDERIV = MIN0 (3,KX-1,KY-1) - N = NX*NY - DO 10 I=1,N - DO 10 J=1,9 - 10 F(J,I) = 0. - - XP = MOD (X,TX(NX+1)) - CALL INTERV (TX, NX+KX, XP, ILEFTX, MFLAG) - YP = Y - CALL INTERV (TY, NY+KY, YP, ILEFTY, MFLAG) - IF (ILEFTX .LT. KX .OR. ILEFTX .GT. NX) THEN -C WRITE (6,'(''BASPRC: out of range of spline: ILEFTX KX NX X='', -C + 3I3,E12.4)') ILEFTX,KX,NX,X - ILEFTX = NX+KX -C STOP - ENDIF - IF (ILEFTY .LT. KY .OR. ILEFTY .GT. NY) THEN -C WRITE (6,'(''BASPRC: out of range of spline: ILEFTY KY NY Y='', -C + 3I3,E12.4)') ILEFTY,KY,NY,Y - ILEFTY = NY+KY -C STOP - ENDIF - - LFTMKX = ILEFTX - KX - CALL BSPLVD (TX, KX, XP, ILEFTX, A, VALX, NDERIV) - LFTMKY = ILEFTY - KY - CALL BSPLVD (TY, KY, YP, ILEFTY, A, VALY, NDERIV) - NPX = NX - (KX-1) - - DO 20 MX=1,KX - IX = LFTMKX + MX - IF (IX .GE. NX-(KX-2)) IX = IX-NX+(KX-1) - - DO 30 MY=1,KY - IY = LFTMKY + MY - 1 - IF (IY .GT. 0) THEN - DO 40 JX=1,3 - LX = MX + KX*(JX-1) - DO 50 JY=1,3 - J = JX + (JY-1)*3 - LY = MY + KY*(JY-1) - I = IX + (IY-1)*NPX - 50 F(J,I) = VALX(LX)*VALY(LY) - 40 CONTINUE - ENDIF - 30 CONTINUE - 20 CONTINUE - - RETURN - END - - SUBROUTINE INTERV ( XT, LXT, X, LEFT, MFLAG ) -C Find the adjacent array elements in XT that bound X. -C INPUTS: -C XT = Array of nondecreasing values -C LXT = Number of assigned elements in XT -C X = Value whose location with respect to XT is to be determined. -C -C RETURNS: -C LEFT = Index of XT, such that XT(LEFT) <= X < XT(LEFT+1) except -C when MFLAG is not 0. -C MFLAG = Return status -C = 0 (normal) -C = -1 (when X < XT(1) ; in this case LEFT = 1) -C = 1 (when X >= XT(LXT); in this case LEFT = LXT) -C -C Non-zero MFLAG indicates that X lies outside the halfopen interval -C XT(1) <= Y < XT(LXT). The asymmetric treatment of the interval -C is due to the decision to make all PP functions continuous from -C the right. -C -C ALGORITHM: -C From: "A PRACTICAL GUIDE TO SPLINES" by C. De Boor. -C This is designed to be efficient in the common situation that it -C is called repeatedly, with X taken from an increasing or decreasing -C sequence. This will happen, e.g., when a PP function is to be -C graphed. The first guess for LEFT is therefore taken to be the val- -C ue returned at the previous call and stored in the local variable -C ILO. A first check ascertains that ILO .LT. LXT (this is necessary -C since the present call may have nothing to do with the previous -C call) then, if XT(ILO) .LE. X .LT. XT(ILO+1), we set LEFT = ILO -C and are done after just three comparisons. Otherwise, we -C repeatedly double the difference (ISTEP = IHI - ILO) while also -C moving ILO and IHI in the direction of X until -C XT(ILO) .LE. X .LT. XT(IHI) -C after which we use bisection to get, in addition, ILO+1 = IHI. -C LEFT = ILO is then returned. - -C Formal argument declarations - REAL X,XT(LXT) - -C Local declarations - DATA ILO /1/ - SAVE - - IHI = ILO + 1 - IF (IHI .LT. LXT ) GO TO 20 - IF (X .GE. XT(LXT)) GO TO 110 - IF (LXT .LE. 1 ) GO TO 90 - ILO = LXT - 1 - IHI = LXT - - 20 IF (X .GE. XT(IHI)) GO TO 40 - IF (X .GE. XT(ILO)) GO TO 100 - -C Now X < XT(ILO), decrease ILO to capture X - ISTEP = 1 - 31 IHI = ILO - ILO = IHI - ISTEP - IF (ILO .LE. 1 ) GO TO 35 - IF (X .GE. XT(ILO)) GO TO 50 - ISTEP = ISTEP*2 - GO TO 31 - - 35 ILO = 1 - IF (X .LT. XT(1)) GO TO 90 - GO TO 50 - -C Now X >= XT(IHI), increase IHI to capture X - 40 ISTEP = 1 - 41 ILO = IHI - IHI = ILO + ISTEP - IF (IHI .GE. LXT ) GO TO 45 - IF (X .LT. XT(IHI)) GO TO 50 - ISTEP = ISTEP*2 - GO TO 41 - - 45 IF (X .GE. XT(LXT)) GO TO 110 - IHI = LXT - -C Now XT(ILO) <= X < XT(IHI), narrow the interval - 50 MIDDLE = (ILO + IHI)/2 - IF (MIDDLE .EQ. ILO) GO TO 100 -C Note: It is assumed that MIDDLE = ILO in case IHI = ILO+1 - IF (X .LT. XT(MIDDLE)) GO TO 53 - ILO = MIDDLE - GO TO 50 - 53 IHI = MIDDLE - GO TO 50 - -C Set output and return. - 90 MFLAG = -1 - LEFT = 1 - RETURN - - 100 MFLAG = 0 - LEFT = ILO - RETURN - - 110 MFLAG = 1 - LEFT = LXT - RETURN - END - - SUBROUTINE BSPLVD ( T, K, X, LEFT, A, DBIATX, NDERIV ) -C FROM * A PRACTICAL GUIDE TO SPLINES * BY C. DE BOOR -CALLS BSPLVB -CALCULATES VALUE AND DERIV.S OF ALL B-SPLINES WHICH DO NOT VANISH AT X -C -C****** I N P U T ****** -C T THE KNOT ARRAY, OF LENGTH LEFT+K (AT LEAST) -C K THE ORDER OF THE B-SPLINES TO BE EVALUATED -C X THE POINT AT WHICH THESE VALUES ARE SOUGHT -C LEFT AN INTEGER INDICATING THE LEFT ENDPOINT OF THE INTERVAL OF -C INTEREST. THE K B-SPLINES WHOSE SUPPORT CONTAINS THE INTERVAL -C (T(LEFT), T(LEFT+1)) -C ARE TO BE CONSIDERED. -C A S S U M P T I O N - - - IT IS ASSUMED THAT -C T(LEFT) .LT. T(LEFT+1) -C DIVISION BY ZERO WILL RESULT OTHERWISE (IN B S P L V B ). -C ALSO, THE OUTPUT IS AS ADVERTISED ONLY IF -C T(LEFT) .LE. X .LE. T(LEFT+1) . -C NDERIV AN INTEGER INDICATING THAT VALUES OF B-SPLINES AND THEIR -C DERIVATIVES UP TO BUT NOT INCLUDING THE NDERIV-TH ARE ASKED -C FOR. ( NDERIV IS REPLACED INTERNALLY BY THE INTEGER M H I G H -C IN (1,K) CLOSEST TO IT.) -C -C****** W O R K A R E A ****** -C A AN ARRAY OF ORDER (K,K), TO CONTAIN B-COEFF.S OF THE DERIVAT- -C IVES OF A CERTAIN ORDER OF THE K B-SPLINES OF INTEREST. -C -C****** O U T P U T ****** -C DBIATX AN ARRAY OF ORDER (K,NDERIV). ITS ENTRY (I,M) CONTAINS -C VALUE OF (M-1)ST DERIVATIVE OF (LEFT-K+I)-TH B-SPLINE OF -C ORDER K FOR KNOT SEQUENCE T , I=M,...,K, M=1,...,NDERIV. -C -C****** M E T H O D ****** -C FROM * A PRACTICAL GUIDE TO SPLINES * BY C. DE BOOR -C VALUES AT X OF ALL THE RELEVANT B-SPLINES OF ORDER K,K-1,..., -C K+1-NDERIV ARE GENERATED VIA BSPLVB AND STORED TEMPORARILY IN -C DBIATX . THEN, THE B-COEFFS OF THE REQUIRED DERIVATIVES OF THE B- -C SPLINES OF INTEREST ARE GENERATED BY DIFFERENCING, EACH FROM THE PRE- -C CEDING ONE OF LOWER ORDER, AND COMBINED WITH THE VALUES OF B-SPLINES -C OF CORRESPONDING ORDER IN DBIATX TO PRODUCE THE DESIRED VALUES . -C - SAVE - INTEGER K,LEFT,NDERIV, I,IDERIV,IL,J,JLOW,JP1MID,KP1,KP1MM - * ,LDUMMY,M,MHIGH - - REAL A(K,K),DBIATX(K,NDERIV),T(LEFT+K),X,FACTOR,FKP1MM,SUM - - MHIGH = MAX0(MIN0(NDERIV,K),1) -C MHIGH IS USUALLY EQUAL TO NDERIV. - KP1 = K+1 - CALL BSPLVB(T,KP1-MHIGH,1,X,LEFT,DBIATX) - IF (MHIGH .EQ. 1) GO TO 99 -C THE FIRST COLUMN OF DBIATX ALWAYS CONTAINS THE B-SPLINE VALUES -C FOR THE CURRENT ORDER. THESE ARE STORED IN COLUMN K+1-CURRENT -C ORDER BEFORE BSPLVB IS CALLED TO PUT VALUES FOR THE NEXT -C HIGHER ORDER ON TOP OF IT. - IDERIV = MHIGH - DO 15 M=2,MHIGH - JP1MID = 1 - DO 11 J=IDERIV,K - DBIATX(J,IDERIV) = DBIATX(JP1MID,1) - 11 JP1MID = JP1MID + 1 - IDERIV = IDERIV - 1 - CALL BSPLVB(T,KP1-IDERIV,2,X,LEFT,DBIATX) - 15 CONTINUE -C -C AT THIS POINT, B(LEFT-K+I, K+1-J)(X) IS IN DBIATX(I,J) FOR -C I=J,...,K AND J=1,...,MHIGH ('=' NDERIV). IN PARTICULAR, THE -C FIRST COLUMN OF DBIATX IS ALREADY IN FINAL FORM. TO OBTAIN COR- -C RESPONDING DERIVATIVES OF B-SPLINES IN SUBSEQUENT COLUMNS, GENE- -C RATE THEIR B-REPR. BY DIFFERENCING, THEN EVALUATE AT X. -C - JLOW = 1 - DO 20 I=1,K - DO 19 J=JLOW,K - 19 A(J,I) = 0. - JLOW = I - 20 A(I,I) = 1. -C AT THIS POINT, A(.,J) CONTAINS THE B-COEFFS FOR THE J-TH OF THE -C K B-SPLINES OF INTEREST HERE. -C - DO 40 M=2,MHIGH - KP1MM = KP1 - M - FKP1MM = FLOAT(KP1MM) - IL = LEFT - I = K -C -C FOR J=1,...,K, CONSTRUCT B-COEFFS OF (M-1)ST DERIVATIVE OF -C B-SPLINES FROM THOSE FOR PRECEDING DERIVATIVE BY DIFFERENCING -C AND STORE AGAIN IN A(.,J) . THE FACT THAT A(I,J) = 0 FOR -C I .LT. J IS USED. - DO 25 LDUMMY=1,KP1MM - FACTOR = FKP1MM/(T(IL+KP1MM) - T(IL)) -C THE ASSUMPTION THAT T(LEFT).LT.T(LEFT+1) MAKES DENOMINATOR -C IN FACTOR NONZERO. - DO 24 J=1,I - 24 A(I,J) = (A(I,J) - A(I-1,J))*FACTOR - IL = IL - 1 - 25 I = I - 1 -C -C FOR I=1,...,K, COMBINE B-COEFFS A(.,I) WITH B-SPLINE VALUES -C STORED IN DBIATX(.,M) TO GET VALUE OF (M-1)ST DERIVATIVE OF -C I-TH B-SPLINE (OF INTEREST HERE) AT X , AND STORE IN -C DBIATX(I,M). STORAGE OF THIS VALUE OVER THE VALUE OF A B-SPLINE -C OF ORDER M THERE IS SAFE SINCE THE REMAINING B-SPLINE DERIVAT- -C IVES OF THE SAME ORDER DO NOT USE THIS VALUE DUE TO THE FACT -C THAT A(J,I) = 0 FOR J .LT. I . - 30 DO 40 I=1,K - SUM = 0. - JLOW = MAX0(I,M) - DO 35 J=JLOW,K - 35 SUM = A(J,I)*DBIATX(J,M) + SUM - 40 DBIATX(I,M) = SUM - 99 RETURN - END - - SUBROUTINE BSPLVB ( T, JHIGH, INDEX, X, LEFT, BIATX ) -C FROM * A PRACTICAL GUIDE TO SPLINES * BY C. DE BOOR -CALCULATES THE VALUE OF ALL POSSIBLY NONZERO B-SPLINES AT X OF ORDER -C -C JOUT = MAX( JHIGH , (J+1)*(INDEX-1) ) -C -C WITH KNOT SEQUENCE T . -C -C****** I N P U T ****** -C T.....KNOT SEQUENCE, OF LENGTH LEFT + JOUT , ASSUMED TO BE NONDE- -C CREASING. A S S U M P T I O N . . . . -C T(LEFT) .LT. T(LEFT + 1) . -C D I V I S I O N B Y Z E R O WILL RESULT IF T(LEFT) = T(LEFT+1) -C JHIGH, -C INDEX.....INTEGERS WHICH DETERMINE THE ORDER JOUT = MAX(JHIGH, -C (J+1)*(INDEX-1)) OF THE B-SPLINES WHOSE VALUES AT X ARE TO -C BE RETURNED. INDEX IS USED TO AVOID RECALCULATIONS WHEN SEVE- -C RAL COLUMNS OF THE TRIANGULAR ARRAY OF B-SPLINE VALUES ARE NEE- -C DED (E.G., IN BVALUE OR IN BSPLVD ). PRECISELY, -C IF INDEX = 1 , -C THE CALCULATION STARTS FROM SCRATCH AND THE ENTIRE TRIANGULAR -C ARRAY OF B-SPLINE VALUES OF ORDERS 1,2,...,JHIGH IS GENERATED -C ORDER BY ORDER , I.E., COLUMN BY COLUMN . -C IF INDEX = 2 , -C ONLY THE B-SPLINE VALUES OF ORDER J+1, J+2, ..., JOUT ARE GE- -C NERATED, THE ASSUMPTION BEING THAT BIATX , J , DELTAL , DELTAR -C ARE, ON ENTRY, AS THEY WERE ON EXIT AT THE PREVIOUS CALL. -C IN PARTICULAR, IF JHIGH = 0, THEN JOUT = J+1, I.E., JUST -C THE NEXT COLUMN OF B-SPLINE VALUES IS GENERATED. -C -C W A R N I N G . . . THE RESTRICTION JOUT .LE. JMAX (= 20) IS IM- -C POSED ARBITRARILY BY THE DIMENSION STATEMENT FOR DELTAL AND -C DELTAR BELOW, BUT IS N O W H E R E C H E C K E D FOR . -C -C X.....THE POINT AT WHICH THE B-SPLINES ARE TO BE EVALUATED. -C LEFT.....AN INTEGER CHOSEN (USUALLY) SO THAT -C T(LEFT) .LE. X .LE. T(LEFT+1) . -C -C****** O U T P U T ****** -C BIATX.....ARRAY OF LENGTH JOUT , WITH BIATX(I) CONTAINING THE VAL- -C UE AT X OF THE POLYNOMIAL OF ORDER JOUT WHICH AGREES WITH -C THE B-SPLINE B(LEFT-JOUT+I,JOUT,T) ON THE INTERVAL (T(LEFT), -C T(LEFT+1)) . -C -C****** M E T H O D ****** -C THE RECURRENCE RELATION -C -C X - T(I) T(I+J+1) - X -C B(I,J+1)(X) = -----------B(I,J)(X) + ---------------B(I+1,J)(X) -C T(I+J)-T(I) T(I+J+1)-T(I+1) -C -C IS USED (REPEATEDLY) TO GENERATE THE (J+1)-VECTOR B(LEFT-J,J+1)(X), -C ...,B(LEFT,J+1)(X) FROM THE J-VECTOR B(LEFT-J+1,J)(X),..., -C B(LEFT,J)(X), STORING THE NEW VALUES IN BIATX OVER THE OLD. THE -C FACTS THAT -C B(I,1) = 1 IF T(I) .LE. X .LT. T(I+1) -C AND THAT -C B(I,J)(X) = 0 UNLESS T(I) .LE. X .LT. T(I+J) -C ARE USED. THE PARTICULAR ORGANIZATION OF THE CALCULATIONS FOLLOWS AL- -C GORITHM (8) IN CHAPTER X OF THE TEXT. -C - PARAMETER (JMAX=20) - REAL BIATX(JHIGH),T(LEFT+JHIGH),X,DELTAL(JMAX),DELTAR(JMAX), - + SAVED,TERM - -C DIMENSION BIATX(JOUT), T(LEFT+JOUT) -CURRENT FORTRAN STANDARD MAKES IT IMPOSSIBLE TO SPECIFY THE LENGTH OF -C T AND OF BIATX PRECISELY WITHOUT THE INTRODUCTION OF OTHERWISE -C SUPERFLUOUS ADDITIONAL ARGUMENTS. - DATA J/1/ -C SAVE J,DELTAL,DELTAR - SAVE -C - GO TO (10,20), INDEX - 10 J = 1 - BIATX(1) = 1. - IF (J .GE. JHIGH) GO TO 99 -C - 20 JP1 = J + 1 - DELTAR(J) = T(LEFT+J) - X - DELTAL(J) = X - T(LEFT+1-J) - SAVED = 0. - DO 26 I=1,J - TERM = BIATX(I)/(DELTAR(I) + DELTAL(JP1-I)) - BIATX(I) = SAVED + DELTAR(I)*TERM - 26 SAVED = DELTAL(JP1-I)*TERM - BIATX(JP1) = SAVED - J = JP1 - IF (J .LT. JHIGH) GO TO 20 -C - 99 RETURN - END - diff --git a/util/EMPIRICAL/srcIE/readAMIEoutput.f90 b/util/EMPIRICAL/srcIE/readAMIEoutput.f90 deleted file mode 100644 index d9a14f6e..00000000 --- a/util/EMPIRICAL/srcIE/readAMIEoutput.f90 +++ /dev/null @@ -1,337 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf - -subroutine readAMIEvariables(AmieFile, nVars, varNames, iDebugLevel) - - use ModCharSize - implicit none - integer, parameter :: nFieldsMax = 100 - character(len=*), intent(in) :: AmieFile - integer, intent(out) :: nVars - character(len=30), dimension(nFieldsMax), intent(out) :: varNames - integer, intent(in) :: iDebugLevel - - integer :: iUnitTmp_ = 77 - integer :: iError = 0, iVar, i - real*4 :: dummy(1000) - - integer :: nlats, nmlts, ntimes - open(iUnitTmp_, & - file=AmieFile, & - status='old', & - form='UNFORMATTED', & - iostat=iError) - read(iUnitTmp_) nlats, nmlts, ntimes - read(iUnitTmp_) (dummy(i), i=1, nlats) - read(iUnitTmp_) (dummy(i), i=1, nmlts) - read(iUnitTmp_) nVars - do iVar = 1, nVars - read(iUnitTmp_) varNames(iVar) - enddo - close(iUnitTmp_) - - if (iDebugLevel > 1) then - write(*, *) "AMIE Variables : " - do iVar = 1, nVars - write(*, *) iVar, '. ', trim(varNames(iVar)) - enddo - endif - return -end subroutine readAMIEvariables - -subroutine readAMIEoutput(iBLK, IsMirror, iDebugGitm, iError) - - use ModAMIE_Interface - use ModEIEFiles - use ModTimeConvert, ONLY: time_int_to_real - use ModIoUnit, ONLY: UNITTMP_ - implicit none - - integer, intent(out) :: iError - logical, intent(in) :: IsMirror - integer, intent(in) :: iBLK - integer, intent(in) :: iDebugGitm - - integer :: iTime, nTimesBig, nTimesTotal - integer :: nfields - integer :: ntemp, iyr, imo, ida, ihr, imi - integer :: i, j, iField, iVal, iPot_, iAveE_, iEFlux_, iPotY_ - integer :: ieleMonoEFlux_ = -1 - integer :: ieleMonoAveE_ = -1 - integer :: ieleWaveEFlux_ = -1 - integer :: ieleWaveAveE_ = -1 - integer :: iIonEFlux_ = -1 - integer :: iIonAveE_ = -1 - real*4 :: swv, bx, by, bz, aei, ae, au, al, dsti, dst, hpi, sjh, pot - real*8 :: rtime - integer, dimension(7) :: itime_i - - real*4, allocatable, dimension(:, :, :) :: AllData - real*4, allocatable, dimension(:) :: TempLats - integer, parameter :: nFieldsMax = 100 - character(len=30), dimension(nFieldsMax) :: Fields - - logical :: IsBinary, energyfluxconvert, ReverseLats = .false. - - real :: dPotential, dPotentialY - integer :: n - - real :: factor - nTimesBig = 0 - nTimesTotal = 0 - - AMIE_iDebugLevel = iDebugGitm - - iError = 0 - if (AMIE_iDebugLevel >= 0) write(*, *) '> reading AMIE file : ', trim(AMIE_FileName) - open(UnitTmp_, & - file=AMIE_FileName, & - status='old', & - form='UNFORMATTED', & - iostat=iError) - if (iError .ne. 0) then - write(*, *) "Error opening file:", trim(AMIE_FileName) - stop - endif - AMIE_nLats = 0 - IsBinary = .true. - - read(UnitTmp_, iostat=iError) AMIE_nlats, AMIE_nmlts, AMIE_ntimes - if ((iError .ne. 0) .or. (AMIE_nlats .gt. 500)) then - write(*, *) "Error reading variables AMIE_nlats, AMIE_nmlts, AMIE_ntimes" - IsBinary = .false. - endif - close(UnitTmp_) - - if (IsBinary) then - call AMIE_link_variable_names() - call readAMIEvariables(AMIE_FileName, nFields, Fields, AMIE_iDebugLevel) - call AMIE_link_vars_to_keys(nFields, Fields) - - open(UnitTmp_, file=AMIE_FileName, status='old', form='UNFORMATTED') - read(UnitTmp_) AMIE_nlats, AMIE_nmlts, AMIE_ntimes - else - open(UnitTmp_, file=AMIE_FileName, status='old') - read(UnitTmp_, *) AMIE_nlats, AMIE_nmlts, AMIE_ntimes - endif - - !\ - ! We have run into a problem with AMIE during storms. - ! The potential is not zero at the boundary. It is sometimes quite - ! high. This means that the gradient in the potential will be - ! large - meaning that very strong flows can exist in this last - ! cell. This is not good. - ! To rectify this, we will pad the AMIE results by 15 grid cells, and - ! force the potential to go to zero linearly from the last cell to the - ! new last cell. - ! Since it is assumed that all of the AMIE quantities are on the same - ! grid, we have to fill in the eflux and avee also. We will use the - ! last cell to fill in those value. - ! We also have to extend the grid. - !/ - - nCellsPad = 15 - AMIE_nBlks = 2 - - if (.not. allocated(AMIE_Storage)) call AMIE_allocate_variables() - - ! these are local variables: - - if (allocated(AllData)) deallocate(AllData) - allocate(AllData(AMIE_nMlts, AMIE_nLats, nFields), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array AllData in " - stop - endif - - ! --------------------------------------------------------------- - ! Read and extrapolate AMIE grid - - if (AMIE_iDebugLevel > 1) write(*, *) 'Reading AMIE grid' - - if (IsBinary) then - read(UnitTmp_) (AMIE_Lats(i), i=1, AMIE_nLats) - read(UnitTmp_) (AMIE_Mlts(i), i=1, AMIE_nMlts) - read(UnitTmp_) nFields - else - read(UnitTmp_, *) (AMIE_Lats(i), i=1, AMIE_nLats) - read(UnitTmp_, *) (AMIE_Mlts(i), i=1, AMIE_nMlts) - read(UnitTmp_, *) nFields - endif - - if (nFields > nFieldsMax) then - write(*, *) "Maximum number of fields in AMIE is ", nFieldsMax - stop - endif - - AMIE_Lats = 90.0 - AMIE_Lats - - !\ - ! Extrapolate the latitude grid - !/ - - if (AMIE_iDebugLevel > 1) write(*, *) 'Extrapolating AMIE grid' - if (AMIE_Lats(AMIE_nLats) > AMIE_Lats(1)) then - ! The AMIE data is in reverse order than what we want, so let's reverse it - if (allocated(TempLats)) deallocate(TempLats) - allocate(TempLats(AMIE_nLats + nCellsPad), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array TempLats in " - stop - endif - TempLats = AMIE_Lats - do i = 1, AMIE_nLats - AMIE_Lats(i) = TempLats(AMIE_nLats + 1 - i) - enddo - ReverseLats = .true. - deallocate(TempLats) - endif - - do i = AMIE_nLats + 1, AMIE_nLats + nCellsPad - AMIE_Lats(i) = AMIE_Lats(i - 1) + & - (AMIE_Lats(AMIE_nLats) - AMIE_Lats(AMIE_nLats - 1)) - enddo - - energyfluxconvert = .false. - - do iField = 1, nfields - if (IsBinary) then - read(UnitTmp_) Fields(iField) - else - read(UnitTmp_, '(a)') Fields(iField) - endif - enddo - - ! Need to convert from W/m^2 to erg/cm2/s - factor = 1.0 - if (energyfluxconvert) then - factor = 1.0/(1.0e-7*100.0*100.0) - unitConvert(iEle_diff_eflux_) = factor - unitConvert(iIon_diff_eflux_) = factor - unitConvert(iEle_mono_eflux_) = factor - unitConvert(iEle_wave_eflux_) = factor - endif - - if (AMIE_iDebugLevel > 1) write(*, *) 'Reading AMIE data now...' - - do iTime = 1, AMIE_ntimes - - if (AMIE_iDebugLevel > 1) write(*, *) ' --> iTime : ', iTime - - if (IsBinary) then - - read(UnitTmp_) ntemp, iyr, imo, ida, ihr, imi - read(UnitTmp_) swv, bx, by, bz, aei, ae, au, al, dsti, dst, hpi, sjh, pot - - do iField = 1, nfields - if (ReverseLats) then - read(UnitTmp_) & - ((AllData(j, i, iField), j=1, AMIE_nMlts), i=AMIE_nLats, 1, -1) - else - read(UnitTmp_) & - ((AllData(j, i, iField), j=1, AMIE_nMlts), i=1, AMIE_nLats) - endif - enddo - - else - - read(UnitTmp_, *) ntemp, iyr, imo, ida, ihr, imi - read(UnitTmp_, *) swv, bx, by, bz, aei, ae, au, al, dsti, dst, hpi, sjh, pot - - do iField = 1, nfields - if (ReverseLats) then - read(UnitTmp_, *) & - ((AllData(j, i, iField), j=1, AMIE_nMlts), i=AMIE_nLats, 1, -1) - else - read(UnitTmp_, *) & - ((AllData(j, i, iField), j=1, AMIE_nMlts), i=1, AMIE_nLats) - endif - enddo - - endif - - itime_i(1) = iyr - itime_i(2) = imo - itime_i(3) = ida - itime_i(4) = ihr - itime_i(5) = imi - itime_i(6) = 0 - itime_i(7) = 0 - call time_int_to_real(itime_i, rtime) - AMIE_Time(iTime, iBLK) = rtime - - ! We need Potential to be in Volts - ! AveE to be in keV - ! EFlux to be in W/m2 - - if (AMIE_iDebugLevel > 1) write(*, *) ' --> Pushing in to storage ' - do iVal = 1, nValues - if (iMap_(iVal) > 0) then - ! if we are mirroring, we need to do something special - ! but only if we are talking about the potential: - if ((IsMirror) .and. & - ((iVal == iPotential_) .or. (iVal == iPotentialY_))) then - do i = 1, AMIE_nMlts - AMIE_Storage(iVal, i, 1:AMIE_nLats, iTime, iBLK) = & - -AllData(AMIE_nMlts + 1 - i, 1:AMIE_nLats, iMap_(iVal)) - enddo - else - ! This is the default : - ! (need loop for optimization issues in gfortran...) - do i = 1, AMIE_nMlts - AMIE_Storage(iVal, i, 1:AMIE_nLats, iTime, iBLK) = & - AllData(i, 1:AMIE_nLats, iMap_(iVal)) - enddo - endif - - ! If the variable is the potential, linearly interpolate it to lower - ! latitudes, and then smooth it in mlt: - if ((iVal == iPotential_) .or. (iVal == iPotentialY_)) then - ! First extend the potential: - do i = 1, AMIE_nMlts - dPotential = AMIE_Storage(iVal, i, AMIE_nLats, iTime, iBLK)/nCellsPad - do j = AMIE_nLats + 1, AMIE_nLats + nCellsPad - AMIE_Storage(iVal, i, j, iTime, iBLK) = & - AMIE_Storage(iVal, i, j - 1, iTime, iBLK) - dPotential - enddo - enddo - ! Then smooth the extension in MLT: - do j = AMIE_nLats + 1, AMIE_nLats + nCellsPad - ! We are going to smooth more and more as we go down in latitude - do n = 1, j - AMIE_nLats - i = 1 - AMIE_Storage(iVal, i, j, iTime, iBLK) = & - (AMIE_Storage(iVal, AMIE_nMlts - 1, j, iTime, iBLK) + & - 2*AMIE_Storage(iVal, i, j, iTime, iBLK) + & - AMIE_Storage(iVal, i + 1, j, iTime, iBLK))/4.0 - - do i = 2, AMIE_nMlts - 1 - AMIE_Storage(iVal, i, j, iTime, iBLK) = & - (AMIE_Storage(iVal, i - 1, j, iTime, iBLK) + & - 2*AMIE_Storage(iVal, i, j, iTime, iBLK) + & - AMIE_Storage(iVal, i + 1, j, iTime, iBLK))/4.0 - enddo - - i = AMIE_nMlts - AMIE_Storage(iVal, i, j, iTime, iBLK) = & - (AMIE_Storage(iVal, i - 1, j, iTime, iBLK) + & - 2*AMIE_Storage(iVal, i, j, iTime, iBLK) + & - AMIE_Storage(iVal, 2, j, iTime, iBLK))/4.0 - - enddo - enddo - endif - endif - enddo - if (AMIE_iDebugLevel > 1) write(*, *) ' --> Done with time ' - enddo - - if (AMIE_iDebugLevel > 1) write(*, *) 'Done Reading AMIE file ' - close(UnitTmp_) - - ! update the number of latitudes to include padded cells - AMIE_nLats = AMIE_nLats + nCellsPad - - deallocate(AllData, stat=iError) - -end subroutine readAMIEoutput diff --git a/util/EMPIRICAL/srcIE/readMHDoutput.f90 b/util/EMPIRICAL/srcIE/readMHDoutput.f90 deleted file mode 100644 index 8132e9dc..00000000 --- a/util/EMPIRICAL/srcIE/readMHDoutput.f90 +++ /dev/null @@ -1,314 +0,0 @@ -! Copyright (C) 2002 Regents of the University of Michigan, portions used with permission -! For more information, see http://csem.engin.umich.edu/tools/swmf -subroutine readMHDoutput(iBLK, iError) - - use ModMHD_Interface - use ModEIEFiles - use ModTimeConvert, ONLY: time_int_to_real - use ModIoUnit, ONLY: UNITTMP_ - - use ModCharSize - - implicit none - - integer, intent(out) :: iError - integer, intent(in) :: iBLK - - integer :: iTime - integer :: nfields - integer :: ntemp, iyr, imo, ida, ihr, imi - integer :: i, j, iField, iPot_, iAveE_, iEFlux_ - real*4 :: swv, bx, by, bz, aei, ae, au, al, dsti, dst, hpi, sjh, pot - real*8 :: rtime - integer, dimension(7) :: itime_i - - real*4, allocatable, dimension(:, :, :) :: AllData - - integer, parameter :: nFieldsMax = 100 - character(len=30), dimension(nFieldsMax) :: Fields - - logical :: IsBinary - - real :: dPotential - integer :: nCellsPad - - integer :: strpos - character(len=iCharLenIE_) :: FileName, cLine - character(len=6) :: cDate - character(len=6) :: cTime - logical :: IsThere, IsDone - logical :: IsFile(1440) - character(len=iCharLenIE_) :: FileNameList(1440) - integer :: iFirstFile, iMLT, iLat - - real*4, allocatable, dimension(:, :, :, :) :: SigmaP, SigmaH - - iError = 0 - - strpos = index(MHD_FileName, "*") - - iyr = mod(MHD_Year, 100) - imo = MHD_Month - ida = MHD_Day - - write(cDate, '(3i2.2)') iyr, imo, ida - - iFirstFile = -1 - - do ihr = 0, 23 - do imi = 0, 59 - - write(cTime, '(3i2.2)') ihr, imi, 0 - FileName = MHD_FileName(1:strpos - 1)//cDate//"_"//cTime//".idl" - inquire(file=FileName, EXIST=IsThere) - - if (IsThere) write(*, *) FileName, '--> ', IsThere - IsFile(ihr*60 + imi + 1) = IsThere - if (IsThere) then - if (iFirstFile < 0) iFirstFile = ihr*60 + imi + 1 - MHD_ntimes = MHD_ntimes + 1 - FileNameList(ihr*60 + imi + 1) = FileName - endif - - enddo - enddo - - if (iFirstFile < 0) then - write(*, *) "Could not find any MHD files which you specified!!!" - stop - endif - - FileName = FileNameList(iFirstFile) - - open(UnitTmp_, file=FileName, status='old', iostat=iError) - if (iError .ne. 0) then - write(*, *) "Error opening file:", FileName - stop - endif - MHD_nLats = 0 - - IsDone = .false. - - i = 1 - - do while (.not. IsDone) - - read(UnitTmp_, *) cLine - write(*, *) cLine - - if (i > 100) IsDone = .true. - i = i + 1 - - if (index(cLine, "NUMERICAL") > 0) then - - read(UnitTmp_, *) nFields - read(UnitTmp_, *) MHD_nLats - read(UnitTmp_, *) MHD_nMlts - - write(*, *) nFields, MHD_nLats, MHD_nMlts - - if (allocated(MHD_Lats)) deallocate(MHD_Lats) - allocate(MHD_Lats(MHD_nLats), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array MHD_Lats in " - stop - endif - - if (allocated(MHD_Mlts)) deallocate(MHD_Mlts) - allocate(MHD_Mlts(MHD_nMlts), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array Mlts in " - stop - endif - - if (.not. allocated(MHD_Potential)) then - - allocate(MHD_Potential(MHD_nMlts, MHD_nLats, & - MHD_nTimes, 2), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array MHD_Potential in " - stop - endif - - allocate(MHD_EFlux(MHD_nMlts, MHD_nLats, & - MHD_nTimes, 2), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array MHD_EFlux in " - stop - endif - - allocate(MHD_AveE(MHD_nMlts, MHD_nLats, & - MHD_nTimes, 2), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array MHD_AveE in " - stop - endif - - allocate(MHD_Value(MHD_nMlts, MHD_nLats, & - MHD_nTimes, 2), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array MHD_Value in " - stop - endif - - allocate(SigmaP(MHD_nMlts, MHD_nLats, & - MHD_nTimes, 2), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array SigmaP in " - stop - endif - - allocate(SigmaH(MHD_nMlts, MHD_nLats, & - MHD_nTimes, 2), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array SigmaH in " - stop - endif - - allocate(MHD_Time(MHD_nTimes, 2), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array MHDTimes in " - stop - endif - - endif - - endif - - if (index(cLine, "BEGIN") > 0) then - - MHD_Mlts = -1.0e32 - - do iMLT = 1, MHD_nMlts - i = mod(iMLT + (MHD_nMlts - 1)/2 - 1, (MHD_nMlts - 1)) + 1 - do iLat = 1, MHD_nLats - read(UnitTmp_, *) MHD_Lats(iLat), MHD_Mlts(i) - enddo - enddo - - IsDone = .true. - - endif - - enddo - - MHD_Mlts(MHD_nMLTs) = MHD_Mlts(1) - - MHD_Mlts = MHD_Mlts*24.0/360.0 + 12.0 - where (MHD_Mlts > 24) MHD_Mlts = MHD_Mlts - 24.0 - - do iMLT = 1, MHD_nMlts - 1 - if (MHD_Mlts(iMLT) - 12 > MHD_Mlts(iMLT + 1)) & - MHD_Mlts(iMLT) = MHD_Mlts(iMLT) - 24 - enddo - - MHD_Lats = 90.0 - MHD_Lats - - if (nFields > nFieldsMax) then - write(*, *) "Maximum number of fields in MHD is ", nFieldsMax - stop - endif - - allocate(AllData(MHD_nMlts, MHD_nLats, nFields), stat=iError) - if (iError /= 0) then - write(*, *) "Error in allocating array AllData in " - stop - endif - - MHD_iDebugLevel = 0 - - do iField = 1, nfields - if (IsBinary) then - read(UnitTmp_) Fields(iField) - else - read(UnitTmp_, '(a)') Fields(iField) - endif - - if (MHD_iDebugLevel > 1) write(*, *) Fields(iField) - - if ((index(Fields(iField), "Potential") > 0) .and. & - (index(Fields(iField), "odel") < 1)) then - iPot_ = iField - if (MHD_iDebugLevel > 1) write(*, *) "<--- Potential Found", iPot_ - endif - - if ((index(Fields(iField), "Mean Energy") > 0) .and. & - (index(Fields(iField), "odel") < 1)) then - iAveE_ = iField - if (MHD_iDebugLevel > 1) write(*, *) "<--- Mean Energy Found", iAveE_ - endif - - if ((index(Fields(iField), "Energy Flux") > 0) .and. & - (index(Fields(iField), "odel") < 1)) then - iEFlux_ = iField - if (MHD_iDebugLevel > 1) write(*, *) "<--- Energy Flux Found", iEFlux_ - endif - - enddo - - do iTime = 1, MHD_ntimes - - if (IsBinary) then - - read(UnitTmp_) ntemp, iyr, imo, ida, ihr, imi - read(UnitTmp_) swv, bx, by, bz, aei, ae, au, al, dsti, dst, hpi, sjh, pot - - do iField = 1, nfields - read(UnitTmp_) ((AllData(j, i, iField), j=1, MHD_nMlts), i=1, MHD_nLats) - enddo - - else - - read(UnitTmp_, *) ntemp, iyr, imo, ida, ihr, imi - read(UnitTmp_, *) swv, bx, by, bz, aei, ae, au, al, dsti, dst, hpi, sjh, pot - - do iField = 1, nfields - read(UnitTmp_, *) ((AllData(j, i, iField), j=1, MHD_nMlts), i=1, MHD_nLats) - enddo - - endif - - itime_i(1) = iyr - itime_i(2) = imo - itime_i(3) = ida - itime_i(4) = ihr - itime_i(5) = imi - itime_i(6) = 0 - itime_i(7) = 0 - call time_int_to_real(itime_i, rtime) - MHD_Time(iTime, iBLK) = rtime - - ! We need Potential to be in Volts - ! AveE to be in keV - ! EFlux to be in W/m2 - - MHD_Potential(:, 1:MHD_nLats, iTime, iBLK) = AllData(:, 1:MHD_nLats, iPot_) - MHD_AveE(:, 1:MHD_nLats, iTime, iBLK) = AllData(:, 1:MHD_nLats, iAveE_) - ! Need to convert from erg/cm2/s to W/m2 - MHD_EFlux(:, 1:MHD_nLats, iTime, iBLK) = & - AllData(:, 1:MHD_nLats, iEFlux_) !* 1.0e-7 * 100.0 * 100.0 - - do i = 1, MHD_nMlts - - dPotential = MHD_Potential(i, MHD_nLats, iTime, iBLK)/nCellsPad - - do j = MHD_nLats + 1, MHD_nLats + nCellsPad - - MHD_AveE(i, j, iTime, iBLK) = MHD_AveE(i, MHD_nLats, iTime, iBLK) - MHD_EFlux(i, j, iTime, iBLK) = MHD_EFlux(i, MHD_nLats, iTime, iBLK) - - MHD_Potential(i, j, iTime, iBLK) = & - MHD_Potential(i, j - 1, iTime, iBLK) - dPotential - - enddo - enddo - - enddo - - MHD_nLats = MHD_nLats + nCellsPad - - close(UnitTmp_) - - deallocate(AllData, stat=iError) - -end subroutine readMHDoutput diff --git a/util/EMPIRICAL/srcUA/Makefile b/util/EMPIRICAL/srcUA/Makefile index c4946dbe..908d2ef9 100644 --- a/util/EMPIRICAL/srcUA/Makefile +++ b/util/EMPIRICAL/srcUA/Makefile @@ -9,16 +9,17 @@ MY_LIB = ${LIBDIR}/libEMPIRICALUA.a OBJECTS =\ ModIri90.o\ ModMsis90.o\ - ModMsis00.o + ModMsis00.o\ + ModMsis21.o LIB: - make ${MY_LIB} + @make ${MY_LIB} @echo @echo ${MY_LIB} has been brought up to date. @echo ${MY_LIB}: ${OBJECTS} - rm -f ${MY_LIB} + @rm -f ${MY_LIB} ${AR} ${MY_LIB} ${OBJECTS} distclean: clean diff --git a/util/EMPIRICAL/srcUA/ModMsis21.F90 b/util/EMPIRICAL/srcUA/ModMsis21.F90 new file mode 100755 index 00000000..0d655dea --- /dev/null +++ b/util/EMPIRICAL/srcUA/ModMsis21.F90 @@ -0,0 +1,2686 @@ +!####################################################################### +! MSIS� (NRL-SOF-014-1) SOFTWARE +! NRLMSIS� empirical atmospheric model software. Use is governed by the +! Open Source Academic Research License Agreement contained in the file +! nrlmsis2.1_license.txt, which is part of this software package. BY +! USING OR MODIFYING THIS SOFTWARE, YOU ARE AGREEING TO THE TERMS AND +! CONDITIONS OF THE LICENSE. +!####################################################################### + +!!! =========================================================================== +!!! NRLMSIS 2.1: +!!! Neutral atmosphere empirical model from the surface to lower exosphere +!!! =========================================================================== + + + + + + +!************************************************************************************************** +! MSIS_CONSTANTS Module: Contains constants and hardwired parameters +!************************************************************************************************** +module msis_constants + + implicit none + + ! Floating Point Precision +#ifdef DBLE + integer, parameter :: rp = 8 +#else + integer, parameter :: rp = 4 +#endif + + ! Missing density value + real(kind=rp),parameter :: dmissing = 9.999e-38_rp + + ! Trigonometric constants + real(kind=rp), parameter :: pi = 3.1415926535897932384626433832795_rp + real(kind=rp), parameter :: deg2rad = pi / 180.0_rp + real(kind=rp), parameter :: doy2rad = 2.0_rp*pi / 365.0_rp + real(kind=rp), parameter :: lst2rad = pi / 12.0_rp + !real(kind=rp), parameter :: tanh1 = 0.761594155955765485_rp ! tanh(1.0) + real(kind=rp), parameter :: tanh1 = tanh(1.0_rp) + + ! Thermodynamic constants + ! Boltzmann constant (CODATA 2018) (J/kg) + real(kind=rp), parameter :: kB = 1.380649e-23_rp + ! Avogadro constant (CODATA 2018) + real(kind=rp), parameter :: NA = 6.02214076e23_rp + ! Reference gravity (CIMO Guide 2014) (m/s^2) (specified separately in alt2gph, in msis_utils.F90) + real(kind=rp), parameter :: g0 = 9.80665_rp + ! Species molecular masses (kg/molecule) (CIPM 2007) + real(kind=rp), parameter :: specmass(1:10) = (/ 0.0_rp, & ! Mass density (dummy value) + 28.0134_rp, & ! N2 + 31.9988_rp, & ! O2 + 31.9988_rp/2.0_rp, & ! O + 4.0_rp, & ! He + 1.0_rp, & ! H + 39.948_rp, & ! Ar + 28.0134_rp/2.0_rp, & ! N + 31.9988_rp/2.0_rp, & ! Anomalous O + (28.0134_rp+31.9988_rp)/2.0_rp /) & ! NO + / (1.0e3_rp * NA) ! Convert from g/mol to kg/molecule + ! Dry air mean mass in fully mixed atmosphere (CIPM 2007) (includes CO2 and other trace species that are not yet in MSIS) + real(kind=rp), parameter :: Mbar = 28.96546_rp / (1.0e3_rp * NA) ! kg/molecule + ! Dry air log volume mixing ratios (CIPM 2007) + real(kind=rp), parameter :: lnvmr(1:10) = log( (/ 1.0_rp, & ! Mass density (dummy value) + 0.780848_rp, & ! N2 + 0.209390_rp, & ! O2 + 1.0_rp, & ! O (dummy value) + 0.0000052_rp, & ! He + 1.0_rp, & ! H (dummy value) + 0.009332_rp, & ! Ar + 1.0_rp, & ! N (dummy value) + 1.0_rp, & ! Anomalous O (dummy value) + 1.0_rp /) ) ! NO (dummy value) + ! Natural log of global average surface pressure (Pa) + !real(kind=rp), parameter :: lnP0 = 11.5080482 !+ 0.00759597 After calibration with MERRA2 + real(kind=rp), parameter :: lnP0 = 11.515614 + ! Derived constants + real(kind=rp), parameter :: g0divkB = g0/kB * 1.0e3_rp ! K/(kg km) + real(kind=rp), parameter :: Mbarg0divkB = Mbar*g0/kB * 1.0e3_rp ! K/km + ! References: + ! CODATA Internationally recommended 2018 values of the fundamental physical constants. + ! https://pml.nist.gov/cuu/Constants/; https://pml.nist.gov/cuu/pdf/wallet_2018.pdf + ! Picard, A., Davis, R. S., Glaeser, M., and Fujii, K. (2007). Revised formula for the density of + ! air (CIPM 2007). Metrologia 45, 149�155. doi:10.1088/0026-1394/45/2/004 + ! World Meteorological Organization (2014). WMO guide to meteorological instruments and methods of observation + ! (the CIMO Guide). Part I, Chapter 12. https://www.wmo.int/pages/prog/www/IMOP/CIMO-Guide.html + + ! Vertical profile parameters + integer, parameter :: nspec = 11 !Number of species including temperature + integer, parameter :: nd = 27 !Number of temperature profile nodes + integer, parameter :: p = 4 !Spline order + integer, parameter :: nl = nd - p !Last temperature profile level index + integer, parameter :: nls = 9 !Last parameter index for each species (excluding O, NO splines) + real(kind=rp), parameter :: bwalt = 122.5_rp ! Reference geopotential height for Bates Profile + real(kind=rp), parameter :: zetaF = 70.0_rp ! Fully mixed below this, uses constant mixing ratios + real(kind=rp), parameter :: zetaB = bwalt ! Bates Profile above this altitude + real(kind=rp), parameter :: zetaA = 85.0_rp ! Default reference height for active minor species + real(kind=rp), parameter :: zetagamma = 100.0_rp ! Reference height of tanh taper of chemical/dynamical correction scale height + real(kind=rp), parameter :: Hgamma = 1.0_rp/30.0_rp ! Inverse scale height of tanh taper of chemical/dynamical correction scale height + real(kind=rp), parameter :: nodesTN(0:nd+2) = & !Nodes for temperature profile splines + (/ -15., -10., -5., 0., 5., 10., 15., 20., 25., 30., 35., 40., 45., 50., & + 55., 60., 65., 70., 75., 80., 85., 92.5, 102.5, 112.5, 122.5, 132.5, 142.5, & + 152.5, 162.5, 172.5/) + integer, parameter :: izfmx = 13 ! fully mixed below this spline index + integer, parameter :: izfx = 14 ! Spline index at zetaF + integer, parameter :: izax = 17 ! Spline index at zetaA + integer, parameter :: itex = nl ! Index of Bates exospheric temperature + integer, parameter :: itgb0 = nl - 1 ! Index of Bates temperature gradient at lower boundary + integer, parameter :: itb0 = nl - 2 ! Index of Bates temperature at lower boundary + ! O1 Spline parameters + integer, parameter :: ndO1 = 13 + integer, parameter :: nsplO1 = ndO1-5 !Number of unconstrained spline parameters for O1 (there are 2 additional C1-constrained splines) + real(kind=rp), parameter :: nodesO1(0:ndO1) = & !Nodes for O1 splines (Domain 50-85 km) + (/ 35., 40., 45., 50., 55., 60., 65., 70., 75., 80., 85., 92.5, 102.5, 112.5/) + real(kind=rp), parameter :: zetarefO1 = zetaA !Joining height for O1 splines, and reference height for O1 density + ! NO Spline parameters + integer, parameter :: ndNO = 13 + integer, parameter :: nsplNO = ndNO-5 !Number of unconstrained spline parameters for NO (there are 2 additional C1-constrained splines) + real(kind=rp), parameter :: nodesNO(0:ndNO) = & !Nodes for NO splines (Domain 70-122.5 km) + (/ 47.5, 55., 62.5, 70., 77.5, 85., 92.5, 100., 107.5, 115., 122.5, 130., 137.5, 145./) + real(kind=rp), parameter :: zetarefNO = zetaB !Joining height for NO splines, and reference height for NO density + !C2 Continuity matrix for temperature; Last 3 splines are constrained (must be recomputed if nodes change) + real(kind=rp), parameter :: c2tn(3,3) = reshape((/1.0_rp, -10.0_rp, 33.333333333333336_rp, & + 1.0_rp, 0.0_rp, -16.666666666666668_rp, & + 1.0_rp, 10.0_rp, 33.333333333333336_rp/), & + (/3,3/)) + !C1 Continuity for O1; Last 2 splines are constrained (must be recomputed if nodes change) + real(kind=rp), parameter :: c1o1(2,2) = reshape((/ 1.75_rp, -2.916666573405061_rp, & + -1.624999900076852_rp, 21.458332647194382_rp /), & + (/2,2/)) + real(kind=rp), parameter :: c1o1adj(2) = (/0.257142857142857_rp, -0.102857142686844_rp/) !Weights for coefficents on 3rd to last spline; product to be subtracted from RHS of continuity equation + !C1 Continuity for NO; Last 2 splines are constrained (must be recomputed if nodes change) + real(kind=rp), parameter :: c1NO(2,2) = reshape((/ 1.5_rp, -3.75_rp, & + 0.0_rp, 15.0_rp /), & + (/2,2/)) + real(kind=rp), parameter :: c1NOadj(2) = (/0.166666666666667_rp, -0.066666666666667_rp/) !Weights for coefficents on 3rd to last spline; product to be subtracted from RHS of continuity equation + ! Anomalous Oxygen parameters (legacy profile from NRLMSISE-00) + real(kind=rp),parameter :: zetarefOA = zetaB !Reference height for anomalous oxygen density + real(kind=rp),parameter :: TOA = 4000. !Temperature of anomalous oxygen density (K) + real(kind=rp),parameter :: HOA = (kB * TOA) / ( (16.0_rp/(1.0e3_rp*NA)) * g0 ) * 1.0e-3_rp !Hydrostatic scale height of anomalous oxygen density (km) + + ! Horizontal and time-dependent basis function (gfn) parameters + integer, parameter :: maxnbf = 512 ! Number of basis functions to be allocated + integer, parameter :: maxn = 6 ! Maximum latitude (Legendre) spectral degree + integer, parameter :: maxl = 3 ! Maximum local time (tidal) spectral order + integer, parameter :: maxm = 2 ! Maximum longitude (stationary planetary wave) order + integer, parameter :: maxs = 2 ! Maximimum day of year (intra-annual) Fourier order + integer, parameter :: amaxn = 6 ! Maximum Legendre degree used in time independent and intra-annual zonal mean terms + integer, parameter :: amaxs = 2 ! Maximum intra-annual order used in zonal mean terms + integer, parameter :: tmaxl = 3 ! Maximum tidal order used + integer, parameter :: tmaxn = 6 ! Maximum Legendre degree coupled with tides + integer, parameter :: tmaxs = 2 ! Maximum intra-annual order coupled with tides + integer, parameter :: pmaxm = 2 ! Maximum stationary planetary wave order used + integer, parameter :: pmaxn = 6 ! Maximum Legendre degree coupled with SPW + integer, parameter :: pmaxs = 2 ! Maximum intra-annual order coupled with SPW + integer, parameter :: nsfx = 5 ! Number of linear solar flux terms + integer, parameter :: nsfxmod = 5 ! Number of nonlinear modulating solar flux terms (legacy NRLMSISE-00 terms) + integer, parameter :: nmag = 54 ! Number of terms in NRLMSISE-00 legacy geomagnetic parameterization + integer, parameter :: nut = 12 ! Number of terms in NRLMSISE-00 legacy UT parameterization + integer, parameter :: ctimeind = 0 ! Starting index of time-independent terms + integer, parameter :: cintann = ctimeind + (amaxn+1) ! Starting index of zonal mean intra-annual terms + integer, parameter :: ctide = cintann + ((amaxn+1)*2*amaxs) ! Starting index of zonal mean intra-annual terms + integer, parameter :: cspw = ctide + (4*tmaxs+2)*(tmaxl*(tmaxn+1)-(tmaxl*(tmaxl+1))/2) ! Starting index of SPW terms + integer, parameter :: csfx = cspw + (4*pmaxs+2)*(pmaxm*(pmaxn+1)-(pmaxm*(pmaxm+1))/2) ! Starting index of linear solar flux terms + integer, parameter :: cextra = csfx + nsfx ! Starting index of time-independent terms + integer, parameter :: mbf = 383 ! Last index of linear terms + integer, parameter :: cnonlin = mbf + 1 ! Starting index of nonlinear terms + integer, parameter :: csfxmod = cnonlin ! Starting index of modulating solar flux terms + integer, parameter :: cmag = csfxmod + nsfxmod ! Starting index of daily geomagnetic terms + integer, parameter :: cut = cmag + nmag ! Starting index of UT terms + + ! Weights for calculation log pressure spline coefficients from temperature coefficients (must be recalcuated if nodes change) + real(kind=rp), parameter :: gwht(0:3) = (/ 5.0_rp/24.0_rp, 55.0_rp/24.0_rp, 55.0_rp/24.0_rp, 5.0_rp/24.0_rp /) + + ! Constants needed for analytical integration by parts of hydrostatic piecewise effective mass profile + real(kind=rp), parameter :: wbeta(0:nl) = (nodesTN(4:nd) - nodesTN(0:nl)) / 4.0_rp !Weights for 1st spline integration + real(kind=rp), parameter :: wgamma(0:nl) = (nodesTN(5:nd+1)- nodesTN(0:nl)) / 5.0_rp !Weights for 2nd spline integration + ! Non-zero bspline values at zetaB (5th and 6th order) (must be recalcuated if nodes change) + real(kind=rp), parameter :: S5zetaB(0:3) = (/0.041666666666667_rp, 0.458333333333333_rp, 0.458333333333333_rp, & + 0.041666666666667_rp/) + real(kind=rp), parameter :: S6zetaB(0:4) = (/0.008771929824561_rp, 0.216228070175439_rp, 0.550000000000000_rp, & + 0.216666666666667_rp, 0.008333333333333_rp/) + !Weights for calculating temperature gradient at zetaA (must be recalcuated if nodes change) + real(kind=rp), parameter :: wghtAxdz(0:2) = (/-0.102857142857_rp, 0.0495238095238_rp, 0.053333333333_rp/) + !Non-zero bspline values at zetaA (4th, 5th and 6th order) (must be recalcuated if nodes change) + real(kind=rp), parameter :: S4zetaA(0:2) = (/0.257142857142857_rp, 0.653968253968254_rp, 0.088888888888889_rp/) + real(kind=rp), parameter :: S5zetaA(0:3) = (/0.085714285714286_rp, 0.587590187590188_rp, 0.313020313020313_rp, & + 0.013675213675214_rp/) + real(kind=rp), parameter :: S6zetaA(0:4) = (/0.023376623376623_rp, 0.378732378732379_rp, 0.500743700743701_rp, & + 0.095538448479625_rp, 0.001608848667672_rp/) + !Non-zero bspline values at zetaF (4th and 5th order) (must be recalcuated if nodes change) + real(kind=rp), parameter :: S4zetaF(0:2) = (/0.166666666666667_rp, 0.666666666666667_rp, 0.166666666666667_rp/) + real(kind=rp), parameter :: S5zetaF(0:3) = (/0.041666666666667_rp, 0.458333333333333_rp, 0.458333333333333_rp, & + 0.041666666666667_rp/) + !Non-zero bspline values at zeta=0 (5th order) (must be recalcuated if nodes change) + real(kind=rp), parameter :: S5zeta0(0:2) = (/0.458333333333333_rp, 0.458333333333333_rp, 0.041666666666667_rp/) + +end module msis_constants + + + +!!! =========================================================================== +!!! NRLMSIS 2.1: +!!! Neutral atmosphere empirical model from the surface to lower exosphere +!!! =========================================================================== +!!! +!!! MSISINIT: Initialization of MSIS parameters, switches, and options. +! +! PREREQUISITES: +! MSIS binary parameter file (msis207.parm) +! +! CALLING SEQUENCE: +! CALL MSISINIT([OPTIONAL ARGUMENTS]) +! +! OPTIONAL ARGUMENTS: +! parmpath File path pointing to the MSIS parameter file. +! Default: Null string (current directory) +! parmfile Name of MSIS parameter file. +! Default: 'msis21.parm' +! iun File unit number for reading parameter file. +! Default: 67 +! switch_gfn Logical array of 512 swtiches for individual terms. For +! advanced users. +! Default values: True (all switches on) +! switch_legacy Floating point array (1:25) of legacy switches that +! control groups of terms: +! 1 - F10.7 +! 2 - Time independent +! 3 - Symmetrical annual +! 4 - Symmetrical semiannual +! 5 - Asymmetrical annual +! 6 - Asymmetrical semiannual +! 7 - Diurnal +! 8 - Semidiurnal +! 9 - Geomagnetic activity: +! 1.0 = Daily Ap mode +! -1.0 = Storm-time ap mode +! 10 - All UT/long effects +! 11 - Longitudinal +! 12 - UT and mixed UT/long +! 13 - Mixed Ap/UT/long +! 14 - Terdiurnal +! 15-25 - Not used in NRLMSIS 2.07 +! For all switches: +! 0.0 = Off +! 1.0 = On +! 2.0 = Main effects off, cross terms on +! Default values: 1.0 +! lzalt_type Logical flag for altitude input type: +! True = Geodetic altitude (km) +! False = Geopotential height (km) +! Default: True (Geodetic altitude) +! lspec_select Logical array (1:10) flagging which densities to +! calculate. +! True = Calculate, False = Do not calculate +! 1 - Mass density +! 2 - N2 +! 3 - O2 +! 4 - O +! 5 - He +! 6 - H +! 7 - Ar +! 8 - N +! 9 - Anomalous O +! 10 - NO +! Default values: True +! lmass_include Logical array (1:10) flagging which species to include +! in mass density calculation. Same ordering as +! lspec_select. +! Default values: True +! lN2_msis00 Logical flag for retrieving NRLMSISE-00 upper +! thermospheric N2 variation. See paper for details. +! False: Thermospheric N2 determined entirely by +! temperature profile and the constant mixing ratio +! of N2 in the lower atmosphere. +! True: Upper thermospheric N2 relaxes to NRLMSISE-00 +! Values. +! Default: False +! +! NOTES: +! - The switch_legacy optional argument performs the same function as +! TSELEC(SW) in NRLSMSISE-00, except that switches 15-25 are not used in +! NRLMSIS 2.07. The change in the switch-setting call is illustrated as +! follows, where SW is the 25-element array of switches: +! NRLMSISE-00: CALL TSELEC(SW) +! NRLMSIS 2.07: call msisinit(switch_legacy=SW) +! +!!! =========================================================================== + +!************************************************************************************************** +! MSIS_INIT Module: Contains initialization subroutines, model options, and model parameters +!************************************************************************************************** +module msis_init + + use msis_constants, only : rp, nspec, nl, maxnbf, mbf + + implicit none + + !Model flags + logical :: initflag = .false. !Flags whether model has been initialized + logical :: haveparmspace = .false. !Flags whether parameter space has been initialized and allocated + logical :: zaltflag = .true. !true: height input is geometric, false: height input is geopotential + logical :: specflag(1:nspec-1) = .true. !Array flagging which species densities are required + logical :: massflag(1:nspec-1) = .true. !Array flagging which species should be included in mass density + logical :: N2Rflag = .false. !Flag for retrieving NRLMSISE-00 thermospheric N2 variations + logical :: zsfx(0:mbf) = .false. !Flags zonal mean terms to be modulated by F1 (MSISE-00 legacy multiplier) + logical :: tsfx(0:mbf) = .false. !Flags tide terms to be modulated by F2 (MSISE-00 legacy multiplier) + logical :: psfx(0:mbf) = .false. !Flags SPW terms to be modulated by F3 (MSISE-00 legacy multiplier) + logical :: smod(0:nl) = .false. !Flags which temperature levels get solar flux modulation; loadparmset turns flags on based on parameter values + logical :: swg(0:maxnbf-1) = .true. !Switch array for globe subroutine. + real(kind=rp) :: masswgt(1:nspec-1) = 0.0_rp !Weights for calculating mass density + real(4) :: swleg(1:25)=1.0, swc(1:25), sav(1:25) !Legacy switch arrays + + ! Model parameter arrays + type basissubset + sequence + character(8) :: name + integer :: bl,nl + real(kind=rp), allocatable :: beta(:,:) + logical, allocatable :: active(:,:) + integer, allocatable :: fitb(:,:) + end type basissubset + type (basissubset) :: TN + type (basissubset) :: PR + type (basissubset) :: N2 + type (basissubset) :: O2 + type (basissubset) :: O1 + type (basissubset) :: HE + type (basissubset) :: H1 + type (basissubset) :: AR + type (basissubset) :: N1 + type (basissubset) :: OA !Anomalous O + type (basissubset) :: NO + integer :: nvertparm + + ! Reciprocal node difference arrays (constant values needed for B-spline calculations) + real(kind=rp) :: etaTN(0:30,2:6) = 0.0_rp + real(kind=rp) :: etaO1(0:30,2:6) = 0.0_rp + real(kind=rp) :: etaNO(0:30,2:6) = 0.0_rp + + ! C1 constraint terms for O and NO related to the tapered logistic correction + real(kind=rp) :: HRfactO1ref, dHRfactO1ref, HRfactNOref, dHRfactNOref + +contains + + !================================================================================================== + ! MSISINIT: Entry point for initializing model and loading parameters + !================================================================================================== + subroutine msisinit(parmpath,parmfile,iun,switch_gfn,switch_legacy, & + lzalt_type,lspec_select,lmass_include,lN2_msis00) + + use msis_constants, only : specmass, nspec, maxnbf + + implicit none + + character(len=*), intent(in), optional :: parmpath !Path to parameter file + character(len=*), intent(in), optional :: parmfile !Parameter file name + integer, intent(in), optional :: iun !File unit number for reading parameter file + logical, intent(in), optional :: switch_gfn(0:maxnbf-1) !Switch array for globe subroutine. + real(4), intent(in), optional :: switch_legacy(1:25) !Legacy switch array + logical, intent(in), optional :: lzalt_type !true: height input is geometric, false: height input is geopotential + logical, intent(in), optional :: lspec_select(1:nspec-1) !Array flagging which species densities are required + logical, intent(in), optional :: lmass_include(1:nspec-1) !Array flagging which species should be included in mass density + logical, intent(in), optional :: lN2_msis00 !Flag for retrieving NRLMSISE-00 thermospheric N2 variations + + character(len=128) :: parmpath1 + character(len=128) :: parmfile1 + integer :: iun1 + + ! Path to parameter file + if (present(parmpath)) then + parmpath1 = parmpath + else + parmpath1 = 'UA/DataIn/LowerBCs/' + endif + + ! Parameter file name + if (present(parmfile)) then + parmfile1 = parmfile + else + parmfile1 = 'msis21.parm' + endif + + ! Initialize model parameter space + if (.not. haveparmspace) call initparmspace() + + ! Load parameter set + if (present(iun)) then + iun1 = iun + else + iun1 = 67 + endif + call loadparmset(trim(parmpath1)//trim(parmfile1),iun1) + + ! Set switches + swg(:) = .true. + swleg(:) = 1.0 + if (present(switch_gfn)) then + swg = switch_gfn + else + if (present(switch_legacy)) then + swleg = switch_legacy + call tselec(swleg) + endif + endif + + ! Input altitude type flag + if (present(lzalt_type)) then + zaltflag = lzalt_type + else + zaltflag = .true. + endif + + ! Species flags for number density and mass density + if (present(lspec_select)) then + specflag = lspec_select + else + specflag(:) = .true. + endif + if (specflag(1)) then + if (present(lmass_include)) then + massflag = lmass_include + else + massflag(:) = .true. + endif + else + massflag(:) = .false. + endif + where(massflag) specflag = .true. + masswgt(:) = 0.0_rp + where(massflag) masswgt = 1.0_rp + masswgt(1) = 0.0_rp + masswgt = masswgt * specmass + masswgt(10) = 0.0_rp + + ! Flag for retrieving NRLMSISE-00 thermospheric N2 variations + if (present(lN2_msis00)) then + N2Rflag = lN2_msis00 + else + N2Rflag = .false. + endif + + ! Set model initialization flag + initflag = .true. + + return + + end subroutine msisinit + + !================================================================================================== + ! INITPARMSPACE: Initialize and allocate the model parameter space + !================================================================================================== + subroutine initparmspace() + + use msis_constants, only : nl, nls, nodesTN, ndO1, nsplO1, nodesO1, nsplNO, ndNO, nodesNO, & + zetagamma, Hgamma, zetarefO1, zetarefNO, maxnbf, ctide, cspw + + implicit none + + integer :: n, m, j, k + real(kind=rp) :: gammaterm0 + + ! Vertical parameter counter (number of vertical parameters in the parmeter file) + nvertparm = 0 + + ! Model formulation parameter subsets + call initsubset(TN,0,nl, maxnbf,'TN') + call initsubset(PR,0,nl, maxnbf,'PR') + call initsubset(N2,0,nls, maxnbf,'N2') + call initsubset(O2,0,nls, maxnbf,'O2') + call initsubset(O1,0,nls+nsplO1,maxnbf,'O1') + call initsubset(HE,0,nls, maxnbf,'HE') + call initsubset(H1,0,nls, maxnbf,'H1') + call initsubset(AR,0,nls, maxnbf,'AR') + call initsubset(N1,0,nls, maxnbf,'N1') + call initsubset(OA,0,nls, maxnbf,'OA') + call initsubset(NO,0,nls+nsplNO,maxnbf,'NO') + + ! Add the surface pressure parameter to the vertical parameter counter + nvertparm = nvertparm + 1 + + ! Set solar flux modulation flags + zsfx(:) = .false. + tsfx(:) = .false. + psfx(:) = .false. + ! F1, solar flux modulation of the zonal mean asymmetric annual terms + zsfx(9:10) = .true. !Pl(1,0) annual terms + zsfx(13:14) = .true. !Pl(3,0) annual terms + zsfx(17:18) = .true. !Pl(5,0) annual terms + ! F2, solar sflux modulation of the tides + tsfx(ctide:cspw-1) = .true. + ! F3, solar sflux modulation of stationary planetary wave 1 + psfx(cspw:cspw+59) = .true. + + ! Calculate reciprocal node difference arrays + do k = 2, 6 + do j = 0, nl + etaTN(j,k) = 1.0_rp / (nodesTN(j+k-1) - nodesTN(j)) + enddo + enddo + do k = 2, 4 + do j = 0, ndO1-k+1 + etaO1(j,k) = 1.0_rp / (nodesO1(j+k-1) - nodesO1(j)) + enddo + do j = 0, ndNO-k+1 + etaNO(j,k) = 1.0_rp / (nodesNO(j+k-1) - nodesNO(j)) + enddo + enddo + + ! Calculate C1 constraint terms for O and NO related to the tapered logistic correction + gammaterm0 = tanh((zetarefO1 - zetagamma)*Hgamma) + HRfactO1ref = 0.5_rp * (1.0_rp + gammaterm0) + dHRfactO1ref = (1.0_rp - (zetarefO1 - zetagamma)*(1.0_rp - gammaterm0)*Hgamma) / HRfactO1ref + gammaterm0 = tanh((zetarefNO - zetagamma)*Hgamma) + HRfactNOref = 0.5_rp * (1.0_rp + gammaterm0) + dHRfactNOref = (1.0_rp - (zetarefNO - zetagamma)*(1.0_rp - gammaterm0)*Hgamma) / HRfactNOref + + ! Set parameter space initialization flag + haveparmspace = .true. + + return + + contains + + !-------------------------------------------------------------------------------------------------- + ! INITSUBSET: Initialize and allocate a parameter subset + !-------------------------------------------------------------------------------------------------- + subroutine initsubset(subset,bl,nl,maxnbf,name) + + implicit none + + type (basissubset), intent(inout) :: subset + integer, intent(in) :: bl + integer, intent(in) :: nl + integer, intent(in) :: maxnbf + character(2), intent(in) :: name + + integer :: iz + + ! Allocate and initialize subset structure + subset%name = name + subset%bl = bl + subset%nl = nl + allocate(subset%beta(0:maxnbf-1,bl:nl), & + subset%active(0:maxnbf-1,bl:nl), & + subset%fitb(0:maxnbf-1,bl:nl)) + subset%beta = 0.0_rp + subset%active = .false. + subset%fitb = 0 + + ! Increment vertical parameter counter except for pressure + if (name .ne. 'PR') nvertparm = nvertparm + nl - bl + 1 + + return + + end subroutine initsubset + + end subroutine initparmspace + + !================================================================================================== + ! LOADPARMSET: Read in a parameter file + !================================================================================================== + subroutine loadparmset(name,iun) + + use msis_constants, only : maxnbf, csfxmod + + implicit none + + character(len=*), intent(in) :: name + integer, intent(in) :: iun + + integer :: i0, i1 + logical :: havefile + real(8), allocatable :: parmin(:,:) + + ! Check if file exists + inquire(file=trim(name),exist=havefile) + if (havefile) then + open(unit=iun,file=trim(name),status='old',access='stream',convert='little_endian') + else + print *,"MSIS parameter set ",trim(name)," not found. Stopping." + stop + endif + + ! Read in parameter values into temporary double-precision array + allocate(parmin(0:maxnbf-1,0:nvertparm-1)) + read(iun) parmin + close(iun) + + ! Transfer parameters to structures + i0 = 0 + i1 = TN%nl - TN%bl + TN%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + PR%beta(:,0) = parmin(:,i0) + i0 = i1 + 1 + i1 = i0 + N2%nl - N2%bl + N2%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + O2%nl - O2%bl + O2%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + O1%nl - O1%bl + O1%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + HE%nl - HE%bl + HE%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + H1%nl - H1%bl + H1%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + AR%nl - AR%bl + AR%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + N1%nl - N1%bl + N1%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + OA%nl - OA%bl + OA%beta = parmin(:,i0:i1) + i0 = i1 + 1 + i1 = i0 + NO%nl - NO%bl + NO%beta = parmin(:,i0:i1) + + !Set solar flux modulation flags; if on for a given vertical parameter, then sfluxmod is called by tfnparm + smod(:) = .false. + where((Tn%beta(csfxmod+0,:) .ne. 0) .or. & + (Tn%beta(csfxmod+1,:) .ne. 0) .or. & + (Tn%beta(csfxmod+2,:) .ne. 0)) smod = .true. + + ! Compute log pressure spline coefficients from temperature spline coeffcients + call pressparm() + + return + + end subroutine loadparmset + + !================================================================================================== + ! PRESSPARM: Compute log pressure spline coefficients from temperature spline coeffcients + !================================================================================================== + subroutine pressparm() + + use msis_constants, only : Mbarg0divkB, izfmx, mbf, gwht + + implicit none + + integer :: j, b, iz + real(kind=rp) :: lnz + + !Integrate pressure on nodes up to the last fully mixed level + do j = 0, mbf + lnz = 0.0 + do b = 0, 3 + lnz = lnz + TN%beta(j,b)*gwht(b)*Mbarg0divkB + enddo + PR%beta(j,1) = -lnz + do iz = 1, izfmx + lnz = 0.0 + do b = 0, 3 + lnz = lnz + TN%beta(j,iz+b)*gwht(b)*Mbarg0divkB + enddo + PR%beta(j,iz+1) = PR%beta(j,iz) - lnz + enddo + enddo + + return + + end subroutine pressparm + + !================================================================================================== + ! TSELEC: Legacy switches and mapping to new switches + !================================================================================================== + subroutine tselec(sv) + + use msis_constants, only : nsfx, nsfxmod, nut, cspw, csfx, csfxmod, cmag, cut + + implicit none + + real(4), intent(in) :: sv(1:25) + real :: value + real, parameter :: two = 2.0 + + integer :: i + + !Set cross-terms flags + do i = 1, 25 + sav(i) = sv(i) + ! compiler wants sv and 2.0 to be the same type.... + value = sv(i) + swleg(i) = amod(value, two) + if(abs(sv(i)) .eq. 1.0 .or. abs(sv(i)) .eq. 2.0) then + swc(i) = 1.0 + else + swc(i) = 0.0 + endif + enddo + + !Main effects + swg(0) = .true. !Global term must be on + swg(csfx:csfx+nsfx-1) = (swleg(1) .eq. 1.0) !Solar flux + swg(310) = (swleg(1) .eq. 1.0) !Solar flux (truncated quadratic F10.7a function) + swg(1:6) = (swleg(2) .eq. 1.0) !Time independent + swg(304:305) = (swleg(2) .eq. 1.0) !Time independent (extra, F10.7a modulated terms) + swg(311:312) = (swleg(2) .eq. 1.0) !Time independent (extra, truncated quadratic F10.7a modulated terms) + swg(313:314) = (swleg(2) .eq. 1.0) !Time independent (extra, dF10.7 modulated terms) + swg((/7,8,11,12,15,16,19,20/)) = (swleg(3) .eq. 1.0) !Symmetric annual + swg(306:307) = (swleg(3) .eq. 1.0) !Global AO (extra, solar-flux modulated terms) + swg((/21,22,25,26,29,30,33,34/)) = (swleg(4) .eq. 1.0) !Symmetric semiannual + swg(308:309) = (swleg(4) .eq. 1.0) !Global SAO (extra, solar-flux modulated terms) + swg((/9,10,13,14,17,18/)) = (swleg(5) .eq. 1.0) !Asymmetric annual + swg((/23,24,27,28,31,32/)) = (swleg(6) .eq. 1.0) !Asymmetric semiannual + swg(35:94) = (swleg(7) .eq. 1.0) !Diurnal + swg(300:303) = (swleg(7) .eq. 1.0) !Solar zenith angle + swg(95:144) = (swleg(8) .eq. 1.0) !Semidiurnal + swg(145:184) = (swleg(14) .eq. 1.0) !Terdiurnal + swg(cmag:cmag+1) = .false. !Geomagnetic activity mode master switch + if((swleg(9) .gt. 0) .or. (swleg(13) .eq. 1)) swg(cmag:cmag+1) = (/.true.,.true./) !Daily mode master switch + if(swleg(9) .lt. 0) swg(cmag:cmag+1) = (/.false.,.true./) !Storm-time mode master switch + swg(cmag+2:cmag+12) = (swleg(9) .eq. 1.0) !Daily geomagnetic activity terms + swg(cmag+28:cmag+40) = (swleg(9) .eq. -1.0) !Storm-time geomagnetic activity terms + swg(cspw:csfx-1) = ((swleg(11) .eq. 1.0) .and. (swleg(10) .eq. 1.0)) !Longitudinal + swg(cut:cut+nut-1) = ((swleg(12) .eq. 1.0) .and. (swleg(10) .eq. 1.0)) !UT/Lon + swg(cmag+13:cmag+25) = ((swleg(13) .eq. 1.0) .and. (swleg(10) .eq. 1.0)) !Mixed UT/Lon/Geomag (Daily mode terms) + swg(cmag+41:cmag+53) = ((swleg(13) .eq. 1.0) .and. (swleg(10) .eq. 1.0)) !Mixed UT/Lon/Geomag (Storm-time mode terms) + + !Cross terms + swg(csfxmod:csfxmod+nsfxmod-1) = (swc(1) .eq. 1.0) !Solar activity modulation + if (swc(1) .eq. 0) then !Solar activity modulation + swg(302:303) = .false. !Solar zenith angle + swg(304:305) = .false. !Time independent + swg(306:307) = .false. !Global AO + swg(308:309) = .false. !Global SAO + swg(311:314) = .false. !Time independent + swg(447) = .false. !UT/Lon + swg(454) = .false. !UT/Lon + endif + if (swc(2) .eq. 0) then !Time independent (latitude terms) (in MSISE-00, SWC(2) is not used - latitude modulations are always on) + swg(9:20) = .false. !AO + swg(23:34) = .false. !SAO + swg(35:184) = .false. !All tides + swg(185:294) = .false. !All SPW + swg(392:414) = .false. !Daily geomagnetic activity + swg(420:442) = .false. !Storm-time geomagnetic activity + swg(449:453) = .false. !UT/Lon + endif + if (swc(3) .eq. 0) then !Symmetric annual + swg(201:204) = .false. !SPW1 (2,1) + swg(209:212) = .false. !SPW1 (4,1) + swg(217:220) = .false. !SPW1 (6,1) + swg(255:258) = .false. !SPW2 (2,2) + swg(263:266) = .false. !SPW2 (4,2) + swg(271:274) = .false. !SPW2 (6,2) + swg(306:307) = .false. !Global AO solar flux modulation + endif + if (swc(4) .eq. 0) then !Symmetric semiannual + swg(225:228) = .false. !SPW1 (2,1) + swg(233:236) = .false. !SPW1 (4,1) + swg(241:244) = .false. !SPW1 (6,1) + swg(275:278) = .false. !SPW2 (2,2) + swg(283:286) = .false. !SPW2 (4,2) + swg(291:294) = .false. !SPW2 (6,2) + swg(308:309) = .false. !Global SAO solar flux modulation + endif + if (swc(5) .eq. 0) then !Asymmetric annual + swg(47:50) = .false. !Diurnal (1,1) + swg(51:54) = .false. !Diurnal (2,1) !In MSISE-00, swc(5) is applied to all annual modulated tides + swg(55:58) = .false. !Diurnal (3,1) + swg(59:62) = .false. !Diurnal (4,1) + swg(63:66) = .false. !Diurnal (5,1) + swg(67:70) = .false. !Diurnal (6,1) + swg(105:108) = .false. !Semidiurnal (2,2) + swg(109:112) = .false. !Semidiurnal (3,2) + swg(113:116) = .false. !Semidiurnal (4,2) + swg(117:120) = .false. !Semidiurnal (5,2) + swg(121:124) = .false. !Semidiurnal (6,2) + swg(153:156) = .false. !Terdiurnal (3,3) + swg(157:160) = .false. !Terdiurnal (4,3) + swg(161:164) = .false. !Terdiurnal (5,3) + swg(165:168) = .false. !Terdiurnal (6,3) + swg(197:200) = .false. !SPW1 (1,1) + swg(205:208) = .false. !SPW1 (3,1) + swg(213:216) = .false. !SPW1 (5,1) + swg(259:262) = .false. !SPW2 (3,2) + swg(267:270) = .false. !SPW2 (5,2) + swg(394:397) = .false. !Geomag (Daily mode terms) + swg(407:410) = .false. !Mixed UT/Lon/Geomag (Daily mode terms) + swg(422:425) = .false. !Geomag (Storm-time mode terms) + swg(435:438) = .false. !Mixed UT/Lon/Geomag (Storm-time mode terms) + swg(446) = .false. !UT/Lon + endif + if (swc(6) .eq. 0) then !Asymmetric semiannual + swg(221:224) = .false. !SPW1 (1,1) + swg(229:232) = .false. !SPW1 (3,1) + swg(237:240) = .false. !SPW1 (5,1) + swg(279:282) = .false. !SPW2 (3,2) + swg(287:290) = .false. !SPW2 (5,2) + endif + if (swc(7) .eq. 0) then !Diurnal + swg(398:401) = .false. !Geomag (Daily mode terms) + swg(426:429) = .false. !Geomag (Storm-time mode terms) + endif + if (swc(11) .eq. 0) then !Longitude + swg(402:410) = .false. !Mixed UT/Lon/Geomag (Daily mode terms) + swg(430:438) = .false. !Mixed UT/Lon/Geomag (Storm-time mode terms) + swg(452:453) = .false. !UT/Lon + endif + if (swc(12) .eq. 0) then !UT/Lon + swg(411:414) = .false. !Mixed UT/Lon/Geomag (Daily mode terms) + swg(439:440) = .false. !Mixed UT/Lon/Geomag (Storm-time mode terms) + endif + + end subroutine tselec + + !================================================================================================== + ! TRETRV: Legacy routine for retrieving switch settings + !================================================================================================== + subroutine tretrv(svv) + + implicit none + + real(4), intent(out) :: svv(1:25) + + integer :: i + + do i = 1, 25 + svv(i) = sav(i) + enddo + + end subroutine tretrv + +end module msis_init + +!************************************************************************************************** +! MSIS_UTILS Module: Contains the following auxiliary subroutines: +! alt2gph: Converts geodetic altitude to geopotential height +! gph2alt: Converts geopotential height to geodetic altitude +! bspline: Computes B-splines using input nodes and up to specified order +! dilog: Computes dilogarithm function (expansion truncated at order 3, error < 1E-5) +!************************************************************************************************** + +module msis_utils + +contains + + !================================================================================================== + ! ALT2GPH: Altitude to Geopotential Height + ! References: + ! DMA Technical Report TR8350.2 (1987), + ! http://earth-info.nga.mil/GandG/publications/historic/historic.html + ! Featherstone, W. E., and S. J. Claessens (2008), Closed-form transformation between + ! geodetic and ellipsoidal coordinates, Studia Geophysica et Geodaetica, 52, 1-18 + ! Jekeli, C. (2009), Potential theory and static gravity field of the Earth, in + ! Treatise on Geophysics, ed. T. Herring, vol 3, 11-42 + ! NIMA Technical Report TR8350.2 (2000, 3rd edition, Amendment1), + ! http://earth-info.nga.mil/GandG/publications/tr8350.2/tr8350_2.html + !================================================================================================== + real(8) function alt2gph(lat,alt) + + implicit none + + ! Input variables + real(8), intent(in) :: lat !Geodetic latitude (deg) + real(8), intent(in) :: alt !Geodetic altitude (km) + + real(8), parameter :: deg2rad = 0.017453292519943295d0 + + ! WGS84 Defining parameters + real(8), parameter :: a = 6378.1370d0 * 1d3 !Semi-major axis of reference ellipsoid (m) + real(8), parameter :: finv = 298.257223563d0 ! 1/f = Reciprocal of flattening + real(8), parameter :: w = 7292115d-11 !Angular velocity of Earth rotation (rad/s) + real(8), parameter :: GM = 398600.4418 * 1d9 !Gravitational constant x Earth mass (m^3/s^2) + + ! WGS84 Derived parameters + real(8), parameter :: asq = a*a + real(8), parameter :: wsq = w*w + real(8), parameter :: f = 1.0d0 / finv + real(8), parameter :: esq = 2*f - f*f + real(8), parameter :: e = sqrt(esq) !Ellipsoid eccentricity + real(8), parameter :: Elin = a*e !Linear eccentricity of ellipsoid + real(8), parameter :: Elinsq = Elin*Elin + real(8), parameter :: epr = e / (1-f) !Second eccentricity + real(8), parameter :: q0 = ((1.0d0 + 3.0d0/(epr*epr))*atan(epr) - 3.0d0/epr)/2.0d0 !DMA Technical Report tr8350.2, Eq. 3-25 + real(8), parameter :: U0 = -GM*atan(epr)/Elin - wsq*asq/3d0 !Theoretical potential of reference ellipsoid (m^2/s^2) + real(8), parameter :: g0 = 9.80665d0 !Standard gravity (m/s^2), CGPM 1901; WMO + real(8), parameter :: GMdivElin = GM / Elin + + ! Parameters for centrifugal potential taper + real(8), parameter :: x0sq = 2d7**2 !Axial distance squared at which tapering begins (m^2) + real(8), parameter :: Hsq = 1.2d7**2 !Relaxation scale length of taper (m^2) + + ! Working variables + real(8) :: altm, sinsqlat, v, xsq, zsq + real(8) :: rsqminElinsq, usq, cossqdelta, epru, atanepru, q, U, Vc + + ! Compute Cartesian and ellipsoidal coordinates + altm = alt * 1000.0d0 + sinsqlat = sin(lat*deg2rad)**2 + v = a / sqrt(1-esq*sinsqlat) !Radius of curvature of the reference ellipsoid, Featherstone eq. 4 + xsq = (v + altm)**2 * (1 - sinsqlat) !Squared x-coordinate of geocentric system, Featherstone eq. 1 + zsq = (v*(1-esq) + altm)**2 * sinsqlat !Squared z-coordinate of geocentric system, Featherstone eq. 3 + rsqminElinsq = xsq + zsq - Elinsq + usq = rsqminElinsq/2.0d0 + sqrt(rsqminElinsq**2 / 4.0d0 + Elinsq*zsq) !Ellipsoidal distance coordinate, Featherstone eq. 19 + cossqdelta = zsq / usq !Ellipsoidal polar angle, Featherstone eq. 21 + + ! Compute gravitational potential + epru = Elin / sqrt(usq) !Second eccentricity at ellipsoidal coordinate u + atanepru = atan(epru) + q = ((1+3.0d0/(epru*epru))*atanepru - 3.0d0/epru)/2.0d0 !Jekeli, eq. 114 + U = -GMdivElin * atanepru - wsq * ( asq * q * (cossqdelta - 1/3.0d0) / q0 ) / 2.0d0 !Jekeli, eq. 113 + + ! Compute centrifugal potential and adjust total potential + if (xsq .le. x0sq) then + Vc = (wsq/2.0d0) * xsq + else + Vc = (wsq/2.0d0) * (Hsq*tanh((xsq-x0sq)/Hsq) + x0sq) !Centrifugal potential taper + endif + U = U - Vc + + ! Compute geopotential height + alt2gph = (U - U0) / g0 / 1000.0d0 + + return + + end function alt2gph + + !================================================================================================== + ! GPH2ALT: Geopotential Height to Altitude + !================================================================================================== + real(8) function gph2alt(theta,gph) + + implicit none + + real(8), intent(in) :: theta + real(8), intent(in) :: gph + + integer, parameter :: maxn = 10 + real(8), parameter :: epsilon = 0.0005 + + real(8) :: x,dx,y,dydz + integer :: n + + x = gph + n = 0 + dx = epsilon + epsilon + do while ((abs(dx) .gt. epsilon) .and. (n .lt. 10)) + y = alt2gph(theta,x) + dydz = (alt2gph(theta,x+dx) - y)/dx + dx = (gph - y)/dydz + x = x + dx + n = n + 1 + end do + + gph2alt = x + + end function gph2alt + + !================================================================================================== + ! BSPLINE: Returns array of nonzero b-spline values, for all orders up to specified order (max 6) + !================================================================================================== + subroutine bspline(x,nodes,nd,kmax,eta,S,i) + + use msis_constants, only: rp + + implicit none + + ! Input variables + real(kind=rp), intent(in) :: x !Location at which splines are to be evaluated + real(kind=rp),dimension(0:),intent(in) :: nodes !Spline node locations + integer, intent(in) :: nd !Number of spline nodes minus one (0:nd) + integer, intent(in) :: kmax !Maximum order (up to 6 allowed) of evaluated splines + real(kind=rp), intent(in) :: eta(0:30,2:6) !Precomputed weights for recursion (reciprocals of node differences) + ! Ouput variables + real(kind=rp), intent(out) :: S(-5:0,2:6) !b-spline values (spline index relative to i (-5:0), spline order (2:6)) + integer, intent(out) :: i !Index of last nonzero b-spline + + ! Working variables + integer :: j, k, l + integer :: low, high + real(kind=rp) :: w(-4:0) !Weights for recursion relation + + ! Initialize to zero + S(:,:) = 0.0_rp + + ! Find index of last (rightmost) nonzero spline + if (x .ge. nodes(nd)) then + i = nd + return + endif + if (x .le. nodes(0)) then + i = -1 + return + endif + low = 0 + high = nd + i = (low + high)/2 + do while (x .lt. nodes(i) .or. x .ge. nodes(i + 1)) + if (x .lt. nodes(i)) then + high = i + else + low = i + endif + i = (low + high)/2 + end do + + ! Initialize with linear splines + S(0,2) = (x - nodes(i)) * eta(i,2) + if (i .gt. 0) S(-1,2) = 1 - S(0,2) + if (i .ge. nd-1) S(0,2) = 0.0_rp !Reset out-of-bounds spline to zero + + ! k = 3 (quadratic splines) + w(:) = 0.0_rp + w(0) = (x - nodes(i)) * eta(i,3) + if (i .ne. 0) w(-1) = (x - nodes(i-1)) * eta(i-1,3) + if (i .lt. (nd-2)) S(0,3) = w(0)*S(0,2) + if ( ((i-1) .ge. 0) .and. ((i-1) .lt. (nd-2)) ) & + S(-1,3) = w(-1) * S(-1,2) + (1.0_rp - w(0))*S(0,2) + if ((i-2) .ge. 0) S(-2,3) = (1.0_rp - w(-1))*S(-1,2) + + ! k = 4 (cubic splines) + do l = 0, -2, -1 + j = i + l + if (j .lt. 0) exit !Skip out-of-bounds splines + w(l) = (x - nodes(j)) * eta(j,4) + enddo + if (i .lt. (nd-3)) S(0,4) = w(0)*S(0,3) + do l = -1, -2, -1 + if ( ((i+l) .ge. 0) .and. ((i+l) .lt. (nd-3)) ) & + S(l,4) = w(l)*S(l,3) + (1.0_rp - w(l+1))*S(l+1,3) + enddo + if ((i-3) .ge. 0) S(-3,4) = (1.0_rp - w(-2))*S(-2,3) + + ! k = 5 + do l = 0, -3, -1 + j = i + l + if (j .lt. 0) exit !Skip out-of-bounds splines + w(l) = (x - nodes(j)) * eta(j,5) + enddo + if (i .lt. (nd-4)) S(0,5) = w(0)*S(0,4) + do l = -1, -3, -1 + if ( ((i+l) .ge. 0) .and. ((i+l) .lt. (nd-4)) ) & + S(l,5) = w(l)*S(l,4) + (1.0_rp - w(l+1))*S(l+1,4) + enddo + if ((i-4) .ge. 0) S(-4,5) = (1.0_rp - w(-3))*S(-3,4) + if (kmax .eq. 5) return !Exit if only 5th order spline is needed + + ! k = 6 + do l = 0, -4, -1 + j = i + l + if (j .lt. 0) exit !Skip out-of-bounds splines + w(l) = (x - nodes(j)) * eta(j,6) + enddo + if (i .lt. (nd-5)) S(0,6) = w(0)*S(0,5) + do l = -1, -4, -1 + if ( ((i+l) .ge. 0) .and. ((i+l) .lt. (nd-5)) ) & + S(l,6) = w(l)*S(l,5) + (1.0_rp - w(l+1))*S(l+1,5) + enddo + if ((i-5) .ge. 0) S(-5,6) = (1.0_rp - w(-4))*S(-4,5) + + return + + end subroutine bspline + + !================================================================================================== + ! DILOG: Calculate dilogarithm in the domain [0,1) + ! Retains terms up to order 3 in the expansion, which results in relative errors less than 1E-5. + ! Reference: + ! Ginsberg, E. S., and D. Zaborowski (1975), The Dilogarithm function of a real argument, + ! Commun. ACM, 18, 200�202. + !================================================================================================== + real(kind=rp) function dilog(x0) + + use msis_constants, only : rp, pi + + implicit none + + real(kind=rp), intent(in) :: x0 + real(kind=rp), parameter :: pi2_6 = pi*pi / 6.0_rp + real(kind=rp) :: x, xx, x4, lnx + + x = x0 + if (x .gt. 0.5_rp) then + lnx = log(x) + x = 1.0_rp - x !Reflect argument into [0,0.5] range + xx = x*x + x4 = 4.0_rp*x + dilog = pi2_6 - lnx*log(x) & + - (4.0_rp*xx*(23.0_rp/16.0_rp + x/36.0_rp + xx/576.0_rp + xx*x/3600.0_rp) & + + x4 + 3.0_rp*(1.0_rp - xx)*lnx) / (1.0_rp + x4 + xx) + else + xx = x*x + x4 = 4.0_rp*x + dilog = (4.0_rp*xx*(23.0_rp/16.0_rp + x/36.0_rp + xx/576.0_rp + xx*x/3600.0_rp) & + + x4 + 3.0_rp*(1.0_rp - xx)*log(1.0_rp - x)) / (1.0_rp + x4 + xx) + endif + + return + + end function dilog + +end module msis_utils + + +!************************************************************************************************** +! MSIS_GFN Module: Contains subroutines to calculate global (horizontal and time-dependent) model +! basis functions +!************************************************************************************************** +module msis_gfn + + use msis_constants, only : rp, maxn + use msis_init, only : TN,PR,N2,O2,O1,HE,H1,AR,N1,OA,NO, swg + + implicit none + + real(kind=rp) :: plg(0:maxn,0:maxn) + real(kind=rp) :: cdoy(2), sdoy(2) + real(kind=rp) :: clst(3), slst(3) + real(kind=rp) :: clon(2), slon(2) + real(kind=rp) :: sfluxavgref = 150.0 ! Reference F10.7 value (=150 in NRLMSISE-00) + real(kind=rp) :: sfluxavg_quad_cutoff = 150.0 ! Cutoff F10.7 for truncated quadratic F10.7a function + real(kind=rp) :: lastlat = -999.9 + real(kind=rp) :: lastdoy = -999.9 + real(kind=rp) :: lastlst = -999.9 + real(kind=rp) :: lastlon = -999.9 + +contains + + !================================================================================================== + ! GLOBE: Calculate horizontal and time-dependent basis functions + ! (Same purpose as NRLMSISE-00 "GLOBE7" subroutine) + !================================================================================================== + subroutine globe(doy,utsec,lat,lon,sfluxavg,sflux,ap,bf) + + use msis_constants, only : deg2rad, doy2rad, lst2rad, & + maxnbf, mbf, maxn, amaxn, amaxs, tmaxl, tmaxn, tmaxs, pmaxm, pmaxn, pmaxs, & + nsfx, nsfxmod, ctimeind, cintann, ctide, cspw, csfx, cextra, cnonlin, csfxmod, cmag, cut + implicit none + + real(kind=rp), intent(in) :: doy ! Day of year + real(kind=rp), intent(in) :: utsec ! Universal time in seconds + real(kind=rp), intent(in) :: lat ! Latitude + real(kind=rp), intent(in) :: lon ! Longitdue + real(kind=rp), intent(in) :: sfluxavg ! 81-day average F10.7 + real(kind=rp), intent(in) :: sflux ! Daily F10.7 + real(kind=rp), intent(in) :: ap(1:7) ! Ap geomagnetic activity index history array + real(kind=rp), intent(out) :: bf(0:maxnbf-1) ! Output array of basis function terms + + real(kind=rp) :: lst + real(kind=rp) :: slat, clat, clat2, clat4, slat2 + real(kind=rp) :: cosdoy, sindoy + real(kind=rp) :: coslon, sinlon + real(kind=rp) :: pl + real(kind=rp) :: coslst, sinlst + real(kind=rp) :: dfa, df + real(kind=rp) :: theta + real(kind=rp) :: sza + integer :: n, m, l, s, c + + ! Associated Legendre polynomials + if (lat .ne. lastlat) then + clat = sin(lat*deg2rad) ! clat <=> sin, Legendre polyomial defined in colat + slat = cos(lat*deg2rad) ! slat <=> cos, Legendre polyomial defined in colat + clat2 = clat*clat + clat4 = clat2*clat2 + slat2 = slat*slat + + plg(0,0) = 1.0_rp + plg(1,0) = clat + plg(2,0) = 0.5_rp * (3.0_rp * clat2 - 1.0_rp) + plg(3,0) = 0.5_rp * (5.0_rp * clat * clat2 - 3.0_rp * clat) + plg(4,0) = (35.0_rp * clat4 - 30.0_rp * clat2 + 3.0_rp)/8.0_rp + plg(5,0) = (63.0_rp * clat2 * clat2 * clat - 70.0_rp * clat2 * clat + 15.0_rp * clat)/8.0_rp + plg(6,0) = (11.0_rp * clat * plg(5, 0) - 5.0_rp * plg(4, 0))/6.0_rp + + plg(1,1) = slat + plg(2,1) = 3.0_rp * clat * slat + plg(3,1) = 1.5_rp * (5.0_rp * clat2 - 1.0_rp) * slat + plg(4,1) = 2.5_rp * (7.0_rp * clat2 * clat - 3.0_rp * clat) * slat + plg(5,1) = 1.875_rp * (21.0_rp * clat4 - 14.0_rp * clat2 + 1.0_rp) * slat + plg(6,1) = (11.0_rp * clat * plg(5, 1) - 6.0_rp * plg(4, 1))/5.0_rp + + plg(2,2) = 3.0_rp * slat2 + plg(3,2) = 15.0_rp * slat2 * clat + plg(4,2) = 7.5_rp * (7.0_rp * clat2 - 1.0_rp) * slat2 + plg(5,2) = 3.0_rp * clat * plg(4, 2) - 2.0_rp * plg(3, 2) + plg(6,2) = (11.0_rp * clat * plg(5, 2) - 7.0_rp * plg(4, 2))/4.0_rp + + plg(3,3) = 15.0_rp * slat2 * slat + plg(4,3) = 105.0_rp * slat2 * slat * clat + plg(5,3) = (9.0_rp * clat * plg(4, 3) - 7.0_rp * plg(3, 3))/2.0_rp + plg(6,3) = (11.0_rp * clat * plg(5, 3) - 8.0_rp * plg(4, 3))/3.0_rp + + lastlat = lat + endif + + ! Fourier harmonics of day of year + if (doy .ne. lastdoy) then + cdoy(1) = cos(doy2rad*doy) + sdoy(1) = sin(doy2rad*doy) + cdoy(2) = cos(doy2rad*doy*2.0_rp) + sdoy(2) = sin(doy2rad*doy*2.0_rp) + lastdoy = doy + endif + + ! Fourier harmonics of local time + lst = mod(utsec/3600.0_rp + lon/15.0_rp + 24.0_rp, 24.0_rp) + if (lst .ne. lastlst) then + clst(1) = cos(lst2rad*lst) + slst(1) = sin(lst2rad*lst) + clst(2) = cos(lst2rad*lst*2.0_rp) + slst(2) = sin(lst2rad*lst*2.0_rp) + clst(3) = cos(lst2rad*lst*3.0_rp) + slst(3) = sin(lst2rad*lst*3.0_rp) + lastlst = lst + endif + + ! Fourier harmonics of longitude + if (lon .ne. lastlon) then + clon(1) = cos(deg2rad*lon) + slon(1) = sin(deg2rad*lon) + clon(2) = cos(deg2rad*lon*2.0_rp) + slon(2) = sin(deg2rad*lon*2.0_rp) + lastlon = lon + endif + + !--------------------------------------------- + ! Coupled Linear Terms + !--------------------------------------------- + + ! Reset basis functions + bf(:) = 0.0_rp + + ! Time-independent (pure latitude dependence) + c = ctimeind + do n = 0, amaxn + bf(c) = plg(n,0) + c = c + 1 + enddo + + ! Intra-annual (annual and semiannual) + if (c .ne. cintann) stop 'problem with basis definitions' + do s = 1, amaxs + cosdoy = cdoy(s) + sindoy = sdoy(s) + do n = 0, amaxn + pl = plg(n,0) + bf(c) = pl*cosdoy + bf(c+1) = pl*sindoy + c = c + 2 + enddo + enddo + + ! Migrating Tides (local time dependence) + if (c .ne. ctide) stop 'problem with basis definitions' + do l = 1, tmaxl + coslst = clst(l) + sinlst = slst(l) + do n = l, tmaxn + pl = plg(n,l) + bf(c) = pl*coslst + bf(c+1) = pl*sinlst + c = c + 2 + enddo + ! Intra-annual modulation of tides + do s = 1, tmaxs + cosdoy = cdoy(s) + sindoy = sdoy(s) + do n = l, tmaxn + pl = plg(n,l) + bf(c) = pl*coslst*cosdoy + bf(c+1) = pl*sinlst*cosdoy + bf(c+2) = pl*coslst*sindoy + bf(c+3) = pl*sinlst*sindoy + c = c + 4 + enddo + enddo + enddo + + ! Stationary Planetary Waves (longitude dependence) + if (c .ne. cspw) stop 'problem with basis definitions' + do m = 1, pmaxm + coslon = clon(m) + sinlon = slon(m) + do n = m, pmaxn + pl = plg(n,m) + bf(c) = pl*coslon + bf(c+1) = pl*sinlon + c = c + 2 + enddo + ! Intra-annual modulation of SPWs + do s = 1, pmaxs + cosdoy = cdoy(s) + sindoy = sdoy(s) + do n = m, pmaxn + pl = plg(n,m) + bf(c) = pl*coslon*cosdoy + bf(c+1) = pl*sinlon*cosdoy + bf(c+2) = pl*coslon*sindoy + bf(c+3) = pl*sinlon*sindoy + c = c + 4 + enddo + enddo + enddo + + ! Linear solar flux terms + if (c .ne. csfx) stop 'problem with basis definitions' + dfa = sfluxavg - sfluxavgref + df = sflux - sfluxavg + bf(c) = dfa + bf(c+1) = dfa*dfa + bf(c+2) = df + bf(c+3) = df*df + bf(c+4) = df*dfa + c = c + nsfx + + ! Additional linear terms + if (c .ne. cextra) stop 'problem with basis definitions' + sza = solzen(doy,lst,lat,lon) + bf(c) = -0.5_rp*tanh((sza-98.0_rp)/6.0_rp) !Solar zenith angle logistic function for O, H (transition width 3 deg, transition sza for horizon at ~65 km altitude) + bf(c+1) = -0.5_rp*tanh((sza-101.5_rp)/20.0_rp) !Solar zenith angle logistic function for NO (transition width 10 deg, transition sza for horizon at ~130 km altitude) + bf(c+2) = dfa*bf(c) !Solar flux modulation of logistic sza term + bf(c+3) = dfa*bf(c+1) !Solar flux modulation of logistic sza term + bf(c+4) = dfa*plg(2,0) !Solar flux modulation of P(2,0) term + bf(c+5) = dfa*plg(4,0) !Solar flux modulation of P(4,0) term + bf(c+6) = dfa*plg(0,0)*cdoy(1) !Solar flux modulation of global AO + bf(c+7) = dfa*plg(0,0)*sdoy(1) !Solar flux modulation of global AO + bf(c+8) = dfa*plg(0,0)*cdoy(2) !Solar flux modulation of global SAO + bf(c+9) = dfa*plg(0,0)*sdoy(2) !Solar flux modulation of global SAO + if (sfluxavg .le. sfluxavg_quad_cutoff) then !Quadratic F10.7a function with cutoff of quadratic term (for robust extrapolation) + bf(c+10) = dfa*dfa + else + bf(c+10) = (sfluxavg_quad_cutoff-sfluxavgref)*(2.0_rp*dfa - (sfluxavg_quad_cutoff-sfluxavgref)) + endif + bf(c+11) = bf(c+10)*plg(2,0) !P(2,0) modulation of truncated quadratic F10.7a term + bf(c+12) = bf(c+10)*plg(4,0) !P(4,0) modulation of truncated quadratic F10.7a term + bf(c+13) = df*plg(2,0) !P(2,0) modulation of df --> (F10.7 - F10.7a) + bf(c+14) = df*plg(4,0) !P(4,0) modulation of df --> (F10.7 - F10.7a) + + !--------------------------------------------- + ! Nonlinear Terms + !--------------------------------------------- + + c = cnonlin + + ! Solar flux modulation terms + if (c .ne. csfxmod) stop 'problem with basis definitions' + bf(c) = dfa + bf(c+1) = dfa*dfa + bf(c+2) = df + bf(c+3) = df*df + bf(c+4) = df*dfa + c = c + nsfxmod + + ! Terms needed for legacy geomagnetic activity dependence + if (c .ne. cmag) stop 'problem with basis set' + bf(c:c+6) = ap - 4.0 + bf(c+8) = doy2rad*doy + bf(c+9) = lst2rad*lst + bf(c+10) = deg2rad*lon + bf(c+11) = lst2rad*utsec/3600.0 + bf(c+12) = abs(lat) + c = c + 13 + do m = 0,1 + do n = 0,amaxn + bf(c) = plg(n,m) + c = c + 1 + enddo + enddo + + ! Terms needed for legacy UT dependence + c = cut + bf(c) = lst2rad*utsec/3600.0 + bf(c+1) = doy2rad*doy + bf(c+2) = dfa + bf(c+3) = deg2rad*lon + bf(c+4) = plg(1,0) + bf(c+5) = plg(3,0) + bf(c+6) = plg(5,0) + bf(c+7) = plg(3,2) + bf(c+8) = plg(5,2) + + !--------------------------------------------- + ! Apply Switches + !--------------------------------------------- + where(.not. swg(0:mbf)) bf(0:mbf) = 0.0_rp + + return + + end subroutine globe + + !================================================================================================== + ! SOLZEN: Calculate solar zenith angle (adapted from IRI subroutine) + !================================================================================================== + real(kind=rp) function solzen(ddd,lst,lat,lon) + + use msis_constants, only : pi, deg2rad + + implicit none + + real(kind=rp), intent(in) :: ddd + real(kind=rp), intent(in) :: lst + real(kind=rp), intent(in) :: lat + real(kind=rp), intent(in) :: lon + + real(kind=rp) :: wlon,dec + real(kind=rp) :: teqnx,tf,teqt + real(kind=rp) :: rlat,phi,cosx + real(kind=rp), parameter :: humr = pi/12.0_rp + real(kind=rp), parameter :: dumr = pi/182.5_rp + real(kind=rp), parameter :: p(5) = (/0.017203534,0.034407068,0.051610602,0.068814136,0.103221204/) + + wlon = 360.0 - lon + teqnx = ddd + (lst + wlon / 15.0_rp) / 24.0_rp + 0.9369_rp + teqnx = ddd + 0.9369_rp + + ! Solar declination + dec = 23.256_rp * sin(p(1) * (teqnx - 82.242_rp)) + 0.381_rp * sin(p(2)*(teqnx - 44.855_rp)) & + + 0.167_rp * sin(p(3) * (teqnx - 23.355_rp)) - 0.013_rp * sin(p(4)*(teqnx + 11.97_rp)) & + + 0.011_rp * sin(p(5) * (teqnx - 10.410_rp)) + 0.339137_rp + dec = dec * deg2rad + + ! Equation of time + tf = teqnx - 0.5_rp + teqt = -7.38_rp * sin(p(1) * (tf - 4.0_rp)) - 9.87_rp * sin(p(2) * (tf + 9.0_rp)) & + + 0.27_rp * sin(p(3) * (tf - 53.0_rp)) - 0.2_rp * cos(p(4) * (tf - 17.0_rp)) + + phi = humr * (lst - 12.0_rp) + teqt * deg2rad / 4.0_rp + rlat = lat * deg2rad + + ! Cosine of solar zenith angle + cosx = sin(rlat) * sin(dec) + cos(rlat) * cos(dec) * cos(phi) + if (abs(cosx) .gt. 1.0_rp) cosx = sign(1.0_rp,cosx) + + solzen = acos(cosx) / deg2rad + + return + + end function solzen + + !================================================================================================== + ! SFLUXMOD: Legacy nonlinear modulation of intra-annual, tide, and SPW terms + !================================================================================================== + real(kind=rp) function sfluxmod(iz,gf,parmset,dffact) + + use msis_constants, only : maxnbf, mbf, csfx, csfxmod + use msis_init, only : basissubset, zsfx, tsfx, psfx + + implicit none + + integer, intent(in) :: iz + real(kind=rp), intent(in) :: gf(0:maxnbf-1) + type(basissubset), intent(in) :: parmset + real(kind=rp), intent(in) :: dffact !Turns on or adjusts the delta-F terms added to F1 and F2 (eqns. A22b and A22c in Hedin (1987)). + + real(kind=rp) :: f1, f2, f3, sum + integer :: j + + ! Intra-annual modulation factor + if (swg(csfxmod)) then + f1 = parmset%beta(csfxmod,iz) * gf(csfxmod) & + + (parmset%beta(csfx+2,iz) * gf(csfxmod+2) + parmset%beta(csfx+3,iz) * gf(csfxmod+3) ) * dffact + else + f1 = 0.0_rp + endif + + ! Migrating tide (local time) modulation factor + if (swg(csfxmod+1)) then + f2 = parmset%beta(csfxmod+1,iz) * gf(csfxmod) & + + (parmset%beta(csfx+2,iz) * gf(csfxmod+2) + parmset%beta(csfx+3,iz) * gf(csfxmod+3) ) * dffact + else + f2 = 0.0_rp + endif + + ! SPW (longitude) modulation factor + if (swg(csfxmod+2)) then + f3 = parmset%beta(csfxmod+2,iz) * gf(csfxmod) + else + f3 = 0.0_rp + endif + + sum = 0.0 + do j = 0, mbf + ! Apply intra-annual modulation + if (zsfx(j)) then + sum = sum + parmset%beta(j,iz)*gf(j)*f1 + cycle + endif + ! Apply migrating tide modulation + if (tsfx(j)) then + sum = sum + parmset%beta(j,iz)*gf(j)*f2 + cycle + endif + ! Apply SPW modulation + if (psfx(j)) then + sum = sum + parmset%beta(j,iz)*gf(j)*f3 + cycle + endif + enddo + + sfluxmod = sum + + return + + end function sfluxmod + + !================================================================================================== + ! GEOMAG: Legacy nonlinear ap dependence (daily ap mode and ap history mode), including mixed + ! ap/UT/Longitude terms. + ! Master switch control is as follows: + ! swg(cmag) .nor. swg(cmag+1) Do nothing: Return zero + ! swg(cmag) .and. swg(cmag+1) Daily Ap mode + ! swg(cmag) .neqv. swg(cmag+1) 3-hour ap history mode + !================================================================================================== + real(kind=rp) function geomag(p0,bf,plg) + + use msis_constants, only : nmag, cmag + + implicit none + + real(kind=rp), intent(in) :: p0(0:nmag-1) + real(kind=rp), intent(in) :: bf(0:12) + real(kind=rp), intent(in) :: plg(0:6,0:1) + + logical :: swg1(0:nmag-1) !Copy of switches + real(kind=rp) :: p(0:nmag-1) !Copy of parameters used to apply switches + real(kind=rp) :: delA, gbeta, ex, sumex, G(1:6) + integer(4) :: i + + ! Return zero if both master switches are off + if (.not. (swg(cmag) .or. swg(cmag+1))) then + geomag = 0.0_rp + return + endif + + ! Copy parameters + p = p0 + swg1 = swg(cmag:cmag+nmag-1) + + ! Calculate function + if (swg1(0) .eqv. swg1(1)) then + ! Daily Ap mode + if (p(1) .eq. 0) then !If k00s is zero, then cannot compute function + geomag = 0.0_rp + return + endif + where(.not. swg1(2:25)) p(2:25) = 0.0_rp !Apply switches + p(8) = p0(8) !Need doy phase term + delA = G0fn(bf(0),p(0),p(1)) + geomag = ( p(2)*plg(0,0) + p(3)*plg(2,0) + p(4)*plg(4,0) & ! time independent + + (p(5)*plg(1,0) + p(6)*plg(3,0) + p(7)*plg(5,0)) * cos(bf(8) - p(8)) & ! doy modulation + + (p(9)*plg(1,1) + p(10)*plg(3,1) + p(11)*plg(5,1)) * cos(bf(9) - p(12)) & ! local time modulation + + (1.0_rp + p(13)*plg(1,0)) * & + (p(14)*plg(2,1) + p(15)*plg(4,1) + p(16)*plg(6,1)) * cos(bf(10) - p(17)) & ! longitude effect + + (p(18)*plg(1,1) + p(19)*plg(3,1) + p(20)*plg(5,1)) * cos(bf(10) - p(21)) * & + cos(bf(8) - p(8)) & ! longitude with doy modulaiton + + (p(22)*plg(1,0) + p(23)*plg(3,0) + p(24)*plg(5,0)) * cos(bf(11) - p(25)) ) & ! universal time + *delA + else + ! 3-hour ap history mode + if (p(28) .eq. 0) then !If beta00 is zero, then cannot compute function + geomag = 0.0 + return + endif + where(.not. swg1(30:)) p(30:) = 0.0 !Apply switches + p(36) = p0(36) !Need doy phase term + gbeta = p(28)/(1 + p(29)*(45.0_rp - bf(12))) + ex = exp(-10800.0_rp*gbeta) + sumex = 1 + (1 - ex**19.0_rp) * ex**(0.5_rp) / (1 - ex) + do i = 1, 6 + G(i) = G0fn(bf(i),p(26),p(27)) + enddo + delA = ( G(1) & + + ( G(2)*ex + G(3)*ex*ex + G(4)*ex**3.0_rp & + +(G(5)*ex**4.0_rp + G(6)*ex**12.0_rp)*(1-ex**8.0_rp)/(1-ex) ) ) / sumex + geomag = ( p(30)*plg(0,0) + p(31)*plg(2,0) + p(32)*plg(4,0) & ! time independent + + (p(33)*plg(1,0) + p(34)*plg(3,0) + p(35)*plg(5,0)) * cos(bf(8) - p(36)) & ! doy modulation + + (p(37)*plg(1,1) + p(38)*plg(3,1) + p(39)*plg(5,1)) * cos(bf(9) - p(40)) & ! local time modulation + + (1.0_rp + p(41)*plg(1,0)) * & + (p(42)*plg(2,1) + p(43)*plg(4,1) + p(44)*plg(6,1)) * cos(bf(10) - p(45)) & ! longitude effect + + (p(46)*plg(1,1) + p(47)*plg(3,1) + p(48)*plg(5,1)) * cos(bf(10) - p(49)) * & + cos(bf(8) - p(36)) & ! longitude with doy modulaiton + + (p(50)*plg(1,0) + p(51)*plg(3,0) + p(52)*plg(5,0)) * cos(bf(11) - p(53)) ) & ! universal time + *delA + endif + + return + + contains + + real(kind=rp) function G0fn(a,k00r,k00s) + real(kind=rp),intent(in) :: a, k00r, k00s + G0fn = a + (k00r - 1.0_rp) * (a + (exp(-a*k00s) - 1.0_rp)/k00s) + return + end function G0fn + + end function geomag + + !================================================================================================== + ! UTDEP: Legacy nonlinear UT dependence + !================================================================================================== + real(kind=rp) function utdep(p0,bf) + + use msis_constants, only : nut, cut + + implicit none + + real(kind=rp), intent(in) :: p0(0:nut-1) + real(kind=rp), intent(in) :: bf(0:8) + + real(kind=rp) :: p(0:nut-1) !Copy of parameters used to apply switches + logical :: swg1(0:nut-1) !Copy of switches + + !Copy parameters + p = p0 + swg1 = swg(cut:cut+nut-1) + where(.not. swg1(3:nut-1)) p(3:nut-1) = 0.0 !Apply switches + + ! Calculate function + utdep = cos(bf(0)-p(0)) * & + (1 + p(3)*bf(4)*cos(bf(1)-p(1))) * & + (1 + p(4)*bf(2)) * (1 + p(5)*bf(4)) * & + (p(6)*bf(4) + p(7)*bf(5) + p(8)*bf(6)) + & + cos(bf(0)-p(2)+2*bf(3)) * (p(9)*bf(7) + p(10)*bf(8)) * (1 + p(11)*bf(2)) + + return + + end function utdep + +end module msis_gfn + + + +!************************************************************************************************** +! MSIS_TFN Module: Contains vertical temperature profile parameters and subroutines, including +! temperature integration terms +!************************************************************************************************** +module msis_tfn + + use msis_constants, only : rp, nl + + type tnparm + sequence + real(kind=rp) :: cf(0:nl) ! Spline coefficients + real(kind=rp) :: tzetaF ! Tn at zetaF + real(kind=rp) :: tzetaA ! Tn at zetaA (reference altitude for O1, H1) + real(kind=rp) :: dlntdzA ! log-temperature gradient at zetaA (km^-1) + real(kind=rp) :: lndtotF ! ln total number density at zetaF (m^-3) + real(kind=rp) :: tex + real(kind=rp) :: tgb0 + real(kind=rp) :: tb0 + real(kind=rp) :: sigma + real(kind=rp) :: sigmasq + real(kind=rp) :: b ! b = 1-tb0/tex + real(kind=rp) :: beta(0:nl) ! 1st integration coefficients on k=5 splines + real(kind=rp) :: gamma(0:nl) ! 2nd integration coefficients on k=6 splines + real(kind=rp) :: cVs ! 1st integration constant (spline portion) + real(kind=rp) :: cVb ! 1st integration constant (Bates portion) + real(kind=rp) :: cWs ! 2nd integration constant (spline portion) + real(kind=rp) :: cWb ! 2nd integration constant (Bates portion) + real(kind=rp) :: VzetaF ! 1st indefinite integral at zetaF + real(kind=rp) :: VzetaA ! 1st indefinite integral at zetaA + real(kind=rp) :: WzetaA ! 2nd indefinite integral at zetaA + real(kind=rp) :: Vzeta0 ! 1st indefinite integral at zeta=0 (needed for pressure calculation) + end type tnparm + + contains + + !================================================================================================== + ! TFNPARM: Compute the vertical temperature and species-independent profile parameters + !================================================================================================== + subroutine tfnparm(gf,tpro) + + use msis_constants, only : kB, lnP0, Mbarg0divkB, zetaB, zetaA, izfx, izax, itex, itgb0, itb0, c2tn, & + maxnbf, mbf, nmag, nut, cmag, cut, & + wbeta, wgamma, S5zetaB, S6zetaB, wghtAxdz, S4zetaA, S5zetaA, S6zetaA, & + S4zetaF, S5zetaF, S5zeta0 + use msis_init, only : smod, TN, PR + use msis_gfn, only : sfluxmod, geomag, utdep + use msis_utils, only : dilog + + implicit none + + real(kind=rp), intent(in) :: gf(0:maxnbf-1) ! Array of horizontal and temporal basis function terms + type(tnparm), intent(out) :: tpro ! Output structure containing temperature vertical profile parameters + + integer(4) :: ix + real(kind=rp) :: bc(3) + + ! Unconstrained spline coefficients + do ix = 0, itb0-1 + tpro%cf(ix) = dot_product(TN%beta(0:mbf,ix),gf(0:mbf)) + enddo + do ix = 0, itb0-1 + if (smod(ix)) then + tpro%cf(ix) = tpro%cf(ix) + sfluxmod(ix,gf,TN,1.0_rp/TN%beta(0,ix)) !sfluxmod adds F10.7 modulation of tides + endif + enddo + + ! Exospheric temperature + tpro%tex = dot_product(TN%beta(0:mbf,itex),gf(0:mbf)) + tpro%tex = tpro%tex + sfluxmod(itex,gf,TN,1.0_rp/TN%beta(0,itex)) + tpro%tex = tpro%tex + geomag(TN%beta(cmag:cmag+nmag-1,itex),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + tpro%tex = tpro%tex + utdep(TN%beta(cut:cut+nut-1,itex),gf(cut:cut+8)) + + ! Temperature gradient at zetaB (122.5 km) + tpro%tgb0 = dot_product(TN%beta(0:mbf,itgb0),gf(0:mbf)) + if (smod(itgb0)) tpro%tgb0 = tpro%tgb0 + sfluxmod(itgb0,gf,TN,1.0_rp/TN%beta(0,itgb0)) + tpro%tgb0 = tpro%tgb0 + geomag(TN%beta(cmag:cmag+nmag-1,itgb0),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + + ! Temperature at zetaB (122.5 km) + tpro%tb0 = dot_product(TN%beta(0:mbf,itb0),gf(0:mbf)) + if (smod(itb0)) tpro%tb0 = tpro%tb0 + sfluxmod(itb0,gf,TN,1.0_rp/TN%beta(0,itb0)) + tpro%tb0 = tpro%tb0 + geomag(TN%beta(cmag:cmag+nmag-1,itb0),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + + ! Shape factor + tpro%sigma = tpro%tgb0/(tpro%tex-tpro%tb0) + + ! Constrain top three spline coefficients for C2 continuity + bc(1) = 1.0_rp/tpro%tb0 + bc(2) = -tpro%tgb0/(tpro%tb0*tpro%tb0) + bc(3) = -bc(2)*(tpro%sigma + 2.0_rp*tpro%tgb0/tpro%tb0) + tpro%cf(itb0:itex) = matmul(bc, c2tn) + + ! Reference temperature at zetaF (70 km) + tpro%tzetaF = 1.0_rp / dot_product(tpro%cf(izFx:izFx+2),S4zetaF) + + ! Reference temperature and gradient at zetaA (85 km) + tpro%tzetaA = 1.0_rp / dot_product(tpro%cf(izAx:izAx+2),S4zetaA) + tpro%dlntdzA = -dot_product(tpro%cf(izAx:izAx+2),wghtAxdz) * tpro%tzetaA + + ! Calculate spline coefficients for first and second 1/T integrals + tpro%beta(0) = tpro%cf(0)*wbeta(0) + do ix = 1, nl + tpro%beta(ix) = tpro%beta(ix-1) + tpro%cf(ix)*wbeta(ix) + enddo + tpro%gamma(0) = tpro%beta(0)*wgamma(0) + do ix = 1, nl + tpro%gamma(ix) = tpro%gamma(ix-1) + tpro%beta(ix)*wgamma(ix) + enddo + + ! Integration terms and constants + tpro%b = 1 - tpro%tb0 / tpro%tex + tpro%sigmasq = tpro%sigma * tpro%sigma + tpro%cVS = -dot_product(tpro%beta(itb0-1:itb0+2),S5zetaB) + tpro%cWS = -dot_product(tpro%gamma(itb0-2:itb0+2),S6zetaB) + tpro%cVB = -log(1-tpro%b) / (tpro%sigma * tpro%tex) + tpro%cWB = -dilog(tpro%b) / (tpro%sigmasq * tpro%tex) + tpro%VzetaF = dot_product(tpro%beta(izfx-1:izfx+2),S5zetaF) + tpro%cVS + tpro%VzetaA = dot_product(tpro%beta(izax-1:izax+2),S5zetaA) + tpro%cVS + tpro%WzetaA = dot_product(tpro%gamma(izax-2:izax+2),S6zetaA) + tpro%cVS*(zetaA-zetaB) + tpro%cWS + tpro%Vzeta0 = dot_product(tpro%beta(0:2),S5zeta0) + tpro%cVS + + ! Compute total number density at zeta + tpro%lndtotF = lnP0 - Mbarg0divkB*(tpro%VzetaF - tpro%Vzeta0) - log(kB*tpro%TzetaF) + + return + + end subroutine tfnparm + + !================================================================================================== + ! TFNX: Compute the temperature at specified geopotential height + !================================================================================================== + real(kind=rp) function tfnx(z,iz,wght,tpro) + + use msis_constants, only : zetaB + + implicit none + + real(kind=rp), intent(in) :: z ! Geopotential height + integer, intent(in) :: iz ! Bspline reference index + real(kind=rp), intent(in) :: wght(-3:0) ! Bspline weights + type(tnparm), intent(in) :: tpro ! Structure containing temperature vertical profile parameters + + integer :: i, j + + if (z .lt. zetaB) then + ! Spline region + i = max(iz-3,0) + if (iz .lt. 3) then + j = -iz + else + j = -3 + endif + tfnx = 1.0_rp / dot_product(tpro%cf(i:iz),wght(j:0)) + else + ! Bates profile region + tfnx = tpro%tex - (tpro%tex - tpro%tb0)*exp(-tpro%sigma * (z - zetaB)) + endif + + return + + end function tfnx + +end module msis_tfn + +!************************************************************************************************** +! MSIS_DFN Module: Contains vertical species density profile parameters and subroutines +!************************************************************************************************** +module msis_dfn + + use msis_constants, only : rp, nl, nsplO1, nsplNO + use msis_utils, only : bspline, dilog + + type dnparm + sequence + real(kind=rp) :: lnPhiF ! (Except O, H) Natural log of mixing ratio at zetaF (70 km), before chemical and dynamical corrections are applied (ln m^-3) (global term only) + real(kind=rp) :: lndref ! Natural log of number density at reference height + real(kind=rp) :: zetaM ! "Turbopause Height": Height of midpoint of effective mass transition (km) + real(kind=rp) :: HML ! Scale height of lower portion of effective mass profile (km) + real(kind=rp) :: HMU ! Scale height of upper portion of effective mass profile (km) + real(kind=rp) :: C ! Chapman term coefficient + real(kind=rp) :: zetaC ! Chapman term reference height (km) + real(kind=rp) :: HC ! Chapman term scale height (km) + real(kind=rp) :: R ! Chemical/dynamical term coefficient + real(kind=rp) :: zetaR ! Chemical/dynamical term reference height (km) + real(kind=rp) :: HR ! Chemical/dynamical term scale height (km) + real(kind=rp) :: cf(0:nsplO1+1) ! Merged spline coefficients (for chemistry-dominated region of O1, NO, and (eventually), H, N) + real(kind=rp) :: zref ! Reference height for hydrostatic integral and ideal gas terms + real(kind=rp) :: Mi(0:4) ! Effective mass at nodes of piecewise mass profile (derived from zetaM, HML, HMU) + real(kind=rp) :: zetaMi(0:4) ! Height of nodes of piecewise mass profile (derived from zetaM, HML, HMU) + real(kind=rp) :: aMi(0:4) = 0.0_rp ! Slopes of piecewise mass profile segments (derived from zetaM, HML, HMU) + real(kind=rp) :: WMi(0:4) = 0.0_rp ! 2nd indefinite integral of 1/T at mass profile nodes + real(kind=rp) :: XMi(0:4) = 0.0_rp ! Cumulative adjustment to M/T integral due to changing effective mass + real(kind=rp) :: Izref ! Indefinite hydrostatic integral at reference height + real(kind=rp) :: Tref ! Temperature at reference height (for ideal gas law term) + real(kind=rp) :: zmin ! Minimum height of profile (missing values below) + real(kind=rp) :: zhyd ! Hydrostatic terms needed above this height + integer(kind=rp) :: ispec ! Species index + end type dnparm + + contains + + !================================================================================================== + ! DFNPARM: Compute the species density profile parameters + !================================================================================================== + subroutine dfnparm(ispec,gf,tpro,dpro) + + use msis_constants, only : tanh1, specmass, lnvmr, Mbar, g0divkB, & + nd, zetaF, zetaB, zetaA, nodesTN, & + nodesO1, zetarefO1, c1o1, c1o1adj, & + nodesNO, zetarefNO, c1NO, c1NOadj, & + zetarefOA, & + maxnbf, mbf, nmag, nut, cmag, cut + use msis_init, only : etaTN, TN,PR,N2,O2,O1,HE,H1,AR,N1,OA,NO, N2Rflag, & + HRfactO1ref, dHRfactO1ref, HRfactNOref, dHRfactNOref + use msis_gfn, only : sfluxmod, geomag, utdep + use msis_tfn, only : tnparm + + implicit none + + integer, intent(in) :: ispec ! Species index + real(kind=rp), intent(in) :: gf(0:maxnbf-1) ! Array of horizontal and temporal basis function terms + type(tnparm), intent(in) :: tpro ! Structure containing temperature vertical profile parameters + type(dnparm), intent(out) :: dpro ! Output structure containing density vertical profile parameters + + integer :: izf, i, i1, iz + real(kind=rp) :: Cterm, Rterm0, Rterm + real(kind=rp) :: bc(2) + real(kind=rp) :: hbetaL,hbetaU + real(kind=rp) :: delM, delz + real(kind=rp) :: Wi ! 2nd indefinite integral at a piecewise mass profile node + real(kind=rp) :: Si(-5:0,2:6) ! Array of b-spline values at a mass profile node + real(kind=rp) :: Mzref ! Effective mass at reference altitude + + dpro%ispec = ispec + + select case(ispec) + + ! Molecular Nitrogen ---------------------- + case(2) + ! Mixing ratio and reference number density + dpro%lnPhiF = lnvmr(ispec) + dpro%lndref = tpro%lndtotF + dpro%lnPhiF + dpro%zref = zetaF + dpro%zmin = -1.0_rp + dpro%zhyd = zetaF + ! Effective mass + dpro%zetaM = dot_product(N2%beta(0:mbf,1),gf(0:mbf)) + dpro%HML = N2%beta(0,2) + dpro%HMU = N2%beta(0,3) + ! Photochemical correction + dpro%R = 0.0_rp + if (N2Rflag) dpro%R = dot_product(N2%beta(0:mbf,7),gf(0:mbf)) + dpro%zetaR = N2%beta(0,8) + dpro%HR = N2%beta(0,9) + + ! Molecular Oxygen ------------------------ + case(3) + ! Mixing ratio and reference number density + dpro%lnPhiF = lnvmr(ispec) + dpro%lndref = tpro%lndtotF + dpro%lnPhiF + dpro%zref = zetaF + dpro%zmin = -1.0_rp + dpro%zhyd = zetaF + ! Effective mass + dpro%zetaM = O2%beta(0,1) + dpro%HML = O2%beta(0,2) + dpro%HMU = O2%beta(0,3) + ! Photochemical correction + dpro%R = dot_product(O2%beta(0:mbf,7),gf(0:mbf)) + dpro%R = dpro%R + geomag(O2%beta(cmag:cmag+nmag-1,7),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%zetaR = O2%beta(0,8) + dpro%HR = O2%beta(0,9) + + ! Atomic Oxygen -------------------------- + case(4) + ! Reference number density + dpro%lnPhiF = 0.0_rp + dpro%lndref = dot_product(O1%beta(0:mbf,0),gf(0:mbf)) + dpro%zref = zetarefO1 + dpro%zmin = nodesO1(3) + dpro%zhyd = zetarefO1 + ! Effective mass + dpro%zetaM = O1%beta(0,1) + dpro%HML = O1%beta(0,2) + dpro%HMU = O1%beta(0,3) + ! Chapman correction + dpro%C = dot_product(O1%beta(0:mbf,4),gf(0:mbf)) + dpro%zetaC = O1%beta(0,5) + dpro%HC = O1%beta(0,6) + ! Dynamical correction + dpro%R = dot_product(O1%beta(0:mbf,7),gf(0:mbf)) + dpro%R = dpro%R + sfluxmod(7,gf,O1,0.0_rp) + dpro%R = dpro%R + geomag(O1%beta(cmag:cmag+nmag-1,7),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%R = dpro%R + utdep(O1%beta(cut:cut+nut-1,7),gf(cut:cut+8)) + dpro%zetaR = O1%beta(0,8) + dpro%HR = O1%beta(0,9) + ! Unconstrained splines + do izf = 0, nsplO1-1 + dpro%cf(izf) = dot_product(O1%beta(0:mbf,izf+10),gf(0:mbf)) + enddo + ! Constrained splines calculated after case statement + + ! Helium ---------------------- + case(5) + ! Mixing ratio and reference number density + dpro%lnPhiF = lnvmr(ispec) + dpro%lndref = tpro%lndtotF + dpro%lnPhiF + dpro%zref = zetaF + dpro%zmin = -1.0_rp + dpro%zhyd = zetaF + ! Effective mass + dpro%zetaM = HE%beta(0,1) + dpro%HML = HE%beta(0,2) + dpro%HMU = HE%beta(0,3) + ! Dynamical correction + dpro%R = dot_product(HE%beta(0:mbf,7),gf(0:mbf)) + dpro%R = dpro%R + sfluxmod(7,gf,HE,1.0_rp) + dpro%R = dpro%R + geomag(HE%beta(cmag:cmag+nmag-1,7),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%R = dpro%R + utdep(HE%beta(cut:cut+nut-1,7),gf(cut:cut+8)) + dpro%zetaR = HE%beta(0,8) + dpro%HR = HE%beta(0,9) + + ! Atomic Hydrogen ---------------------- + case(6) + ! Reference number density + dpro%lnPhiF = 0.0_rp + dpro%lndref = dot_product(H1%beta(0:mbf,0),gf(0:mbf)) + dpro%zref = zetaA + dpro%zmin = 75.0_rp + dpro%zhyd = zetaF + ! Effective mass + dpro%zetaM = H1%beta(0,1) + dpro%HML = H1%beta(0,2) + dpro%HMU = H1%beta(0,3) + ! Chapman correction + dpro%C = dot_product(H1%beta(0:mbf,4),gf(0:mbf)) + dpro%zetaC = dot_product(H1%beta(0:mbf,5),gf(0:mbf)) + dpro%HC = H1%beta(0,6) + ! Dynamical correction + dpro%R = dot_product(H1%beta(0:mbf,7),gf(0:mbf)) + dpro%R = dpro%R + sfluxmod(7,gf,H1,0.0_rp) + dpro%R = dpro%R + geomag(H1%beta(cmag:cmag+nmag-1,7),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%R = dpro%R + utdep(H1%beta(cut:cut+nut-1,7),gf(cut:cut+8)) + dpro%zetaR = H1%beta(0,8) + dpro%HR = H1%beta(0,9) + + ! Argon ---------------------- + case(7) + ! Mixing ratio and reference number density + dpro%lnPhiF = lnvmr(ispec) + dpro%lndref = tpro%lndtotF + dpro%lnPhiF + dpro%zref = zetaF + dpro%zmin = -1.0_rp + dpro%zhyd = zetaF + ! Effective mass + dpro%zetaM = AR%beta(0,1) + dpro%HML = AR%beta(0,2) + dpro%HMU = AR%beta(0,3) + ! Dynamical correction + dpro%R = dot_product(AR%beta(0:mbf,7),gf(0:mbf)) + dpro%R = dpro%R + geomag(AR%beta(cmag:cmag+nmag-1,7),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%R = dpro%R + utdep(AR%beta(cut:cut+nut-1,7),gf(cut:cut+8)) + dpro%zetaR = AR%beta(0,8) + dpro%HR = AR%beta(0,9) + + ! Atomic Nitrogen ---------------------- + case(8) + ! Reference number density + dpro%lnPhiF = 0.0_rp + dpro%lndref = dot_product(N1%beta(0:mbf,0),gf(0:mbf)) + dpro%lndref = dpro%lndref + sfluxmod(0,gf,N1,0.0_rp) + dpro%lndref = dpro%lndref + geomag(N1%beta(cmag:cmag+nmag-1,0),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%lndref = dpro%lndref + utdep(N1%beta(cut:cut+nut-1,0),gf(cut:cut+8)) + dpro%zref = zetaB + dpro%zmin = 90.0_rp + dpro%zhyd = zetaF + ! Effective mass + dpro%zetaM = N1%beta(0,1) + dpro%HML = N1%beta(0,2) + dpro%HMU = N1%beta(0,3) + ! Chapman correction + dpro%C = N1%beta(0,4) + dpro%zetaC = N1%beta(0,5) + dpro%HC = N1%beta(0,6) + ! Dynamical correction + dpro%R = dot_product(N1%beta(0:mbf,7),gf(0:mbf)) + dpro%zetaR = N1%beta(0,8) + dpro%HR = N1%beta(0,9) + + ! Anomalous Oxygen ---------------------- + case(9) + dpro%lndref = dot_product(OA%beta(0:mbf,0),gf(0:mbf)) + dpro%lndref = dpro%lndref + geomag(OA%beta(cmag:cmag+nmag-1,0),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%zref = zetarefOA + dpro%zmin = 120.0_rp + dpro%zhyd = 0.0_rp + dpro%C = OA%beta(0,4) + dpro%zetaC = OA%beta(0,5) + dpro%HC = OA%beta(0,6) + return !No further parameters needed for legacy anomalous oxygen profile + + ! Nitic Oxide ---------------------- + ! Added geomag dependence 2/18/21 + case(10) + ! Skip if parameters are not defined + if (NO%beta(0,0) .eq. 0.0_rp) then + dpro%lndref = 0.0_rp + return + endif + ! Reference number density + dpro%lnPhiF = 0.0_rp + dpro%lndref = dot_product(NO%beta(0:mbf,0),gf(0:mbf)) + dpro%lndref = dpro%lndref + geomag(NO%beta(cmag:cmag+nmag-1,0),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%zref = zetarefNO + !dpro%zmin = nodesNO(3) + dpro%zmin = 72.5 !JTE 1/18/22 Cut off profile below 72.5 km, due to possible spline artefacts at edge of domain (70 km) + dpro%zhyd = zetarefNO + ! Effective mass + dpro%zetaM = dot_product(NO%beta(0:mbf,1),gf(0:mbf)) + dpro%HML = dot_product(NO%beta(0:mbf,2),gf(0:mbf)) + dpro%HMU = dot_product(NO%beta(0:mbf,3),gf(0:mbf)) + ! Chapman correction + dpro%C = dot_product(NO%beta(0:mbf,4),gf(0:mbf)) + dpro%C = dpro%C + geomag(NO%beta(cmag:cmag+nmag-1,4),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + dpro%zetaC = dot_product(NO%beta(0:mbf,5),gf(0:mbf)) + dpro%HC = dot_product(NO%beta(0:mbf,6),gf(0:mbf)) + ! Dynamical correction + dpro%R = dot_product(NO%beta(0:mbf,7),gf(0:mbf)) + dpro%zetaR = dot_product(NO%beta(0:mbf,8),gf(0:mbf)) + dpro%HR = dot_product(NO%beta(0:mbf,9),gf(0:mbf)) + ! Unconstrained splines + do izf = 0,nsplNO-1 + dpro%cf(izf) = dot_product(NO%beta(0:mbf,izf+10),gf(0:mbf)) + dpro%cf(izf) = dpro%cf(izf) + geomag(NO%beta(cmag:cmag+nmag-1,izf+10),gf(cmag:cmag+12),gf(cmag+13:cmag+26)) + enddo + ! Constrained splines calculated after case statement + +! Failsafe ----- --------------------------- + case default + stop 'Species not yet implemented' + + endselect + + ! Compute piecewise mass profile values and integration terms + dpro%zetaMi(0) = dpro%zetaM - 2.0_rp*dpro%HML + dpro%zetaMi(1) = dpro%zetaM - dpro%HML + dpro%zetaMi(2) = dpro%zetaM + dpro%zetaMi(3) = dpro%zetaM + dpro%HMU + dpro%zetaMi(4) = dpro%zetaM + 2.0_rp*dpro%HMU + dpro%Mi(0) = Mbar + dpro%Mi(4) = specmass(ispec) + dpro%Mi(2) = (dpro%Mi(0) + dpro%Mi(4)) / 2.0_rp + delM = tanh1 * (dpro%Mi(4) - dpro%Mi(0)) / 2.0_rp + dpro%Mi(1) = dpro%Mi(2) - delM + dpro%Mi(3) = dpro%Mi(2) + delM + do i = 0, 3 + dpro%aMi(i) = (dpro%Mi(i+1) - dpro%Mi(i)) / (dpro%zetaMi(i+1) - dpro%zetaMi(i)) + enddo + do i = 0, 4 + delz = dpro%zetaMi(i) - zetaB + if (dpro%zetaMi(i) .lt. zetaB) then + call bspline(dpro%zetaMi(i),nodesTN,nd+2,6,etaTN,Si,iz) + dpro%WMi(i) = dot_product(tpro%gamma(iz-5:iz),Si(:,6)) + tpro%cVS*delz + tpro%cWS + else + dpro%WMi(i) = (0.5_rp*delz*delz + dilog(tpro%b*exp(-tpro%sigma*delz))/tpro%sigmasq)/tpro%tex & + + tpro%cVB*delz + tpro%cWB + endif + end do + dpro%XMi(0) = -dpro%aMi(0) * dpro%WMi(0) + do i = 1, 3 + dpro%XMi(i) = dpro%XMi(i-1) - dpro%WMi(i) * (dpro%aMi(i) - dpro%aMi(i-1)) + end do + dpro%XMi(4) = dpro%XMi(3) + dpro%WMi(4) * dpro%aMi(3) + + ! Calculate hydrostatic integral at reference height, and copy temperature + if (dpro%zref .eq. zetaF) then + Mzref = Mbar + dpro%Tref = tpro%TzetaF + dpro%Izref = Mbar * tpro%VzetaF + else if (dpro%zref .eq. zetaB) then + Mzref = pwmp(dpro%zref,dpro%zetaMi,dpro%Mi,dpro%aMi) + dpro%Tref = tpro%Tb0 + dpro%Izref = 0.0_rp + if ((zetaB .gt. dpro%zetaMi(0)) .and. (zetaB .lt. dpro%zetaMi(4))) then + i = 0 + do i1 = 1, 3 + if (zetaB .lt. dpro%zetaMi(i1)) then + exit + else + i = i1 + endif + enddo + dpro%Izref = dpro%Izref - dpro%XMi(i) + else + dpro%Izref = dpro%Izref - dpro%XMi(4) + endif + else if (dpro%zref .eq. zetaA) then + Mzref = pwmp(dpro%zref,dpro%zetaMi,dpro%Mi,dpro%aMi) + dpro%Tref = tpro%TzetaA + dpro%Izref = Mzref * tpro%VzetaA + if ((zetaA .gt. dpro%zetaMi(0)) .and. (zetaA .lt. dpro%zetaMi(4))) then + i = 0 + do i1 = 1, 3 + if (zetaA .lt. dpro%zetaMi(i1)) then + exit + else + i = i1 + endif + enddo + dpro%Izref = dpro%Izref - (dpro%aMi(i)*tpro%WzetaA + dpro%XMi(i)) + else + dpro%Izref = dpro%Izref - dpro%XMi(4) + endif + else + stop 'Integrals at reference height not available' + endif + + ! C1 constraint for O1 at 85 km + if (ispec .eq. 4) then + Cterm = dpro%C*exp(-(dpro%zref-dpro%zetaC)/dpro%HC) + Rterm0 = tanh((dpro%zref-dpro%zetaR)/(HRfactO1ref*dpro%HR)) + Rterm = dpro%R*(1+Rterm0) + bc(1) = dpro%lndref - Cterm + Rterm - dpro%cf(7)*c1o1adj(1) !Reference density, Chapman term, logistic term, and subtraction of last unconstrained spline(7) + bc(2) = -Mzref*g0divkB/tpro%tzetaA & !Gradient of hydrostatic term + -tpro%dlntdzA & !Gradient of ideal gas law term + +Cterm/dpro%HC & !Gradient of Chapman term + +Rterm*(1-Rterm0)/dpro%HR*dHrfactO1ref & !Gradient of tapered logistic term + -dpro%cf(7)*c1o1adj(2) !Subtraction of gradient of last unconstrained spline(7) + ! Compute coefficients for constrained splines + dpro%cf(8:9) = matmul(bc,c1o1) + endif + + ! C1 constraint for NO at 122.5 km + if (ispec .eq. 10) then + Cterm = dpro%C*exp(-(dpro%zref - dpro%zetaC)/dpro%HC) + Rterm0 = tanh((dpro%zref-dpro%zetaR)/(HRfactNOref*dpro%HR)) + Rterm = dpro%R*(1+Rterm0) + bc(1) = dpro%lndref - Cterm + Rterm - dpro%cf(7)*c1noadj(1) !Reference density, Chapman term, logistic term, and subtraction of last unconstrained spline(7) + bc(2) = -Mzref*g0divkB/tpro%tb0 & !Gradient of hydrostatic term + -tpro%tgb0/tpro%tb0 & !Gradient of ideal gas law term + +Cterm/dpro%HC & !Gradient of Chapman term + +Rterm*(1-Rterm0)/dpro%HR*dHrfactNOref & !Gradient of tapered logistic term + -dpro%cf(7)*c1noadj(2) !Subtraction of gradient of last unconstrained spline(7) + ! Compute coefficients for constrained splines + dpro%cf(8:9) = matmul(bc,c1no) + endif + + return + + end subroutine dfnparm + + !================================================================================================== + ! DFNX: Compute a species density at specified geopotential height + !================================================================================================== + real(kind=rp) function dfnx(z,tnz,lndtotz,Vz,Wz,HRfact,tpro,dpro) + + use msis_constants, only : dmissing, g0divkB, ndO1, nodesO1, ndNO, nodesNO, HOA + use msis_init, only : etaO1, etaNO + use msis_tfn, only : tnparm + + implicit none + + real(kind=rp), intent(in) :: z ! Geopotential height + real(kind=rp), intent(in) :: tnz, lndtotz ! Temperature, total number density at input z + real(kind=rp), intent(in) :: Vz, Wz ! First and second indefinite integrals of 1/T at z + real(kind=rp), intent(in) :: HRfact ! Reduction factor for chemical/dynamical correction scale height below zetaF + type(tnparm), intent(in) :: tpro ! Structure containing temperature vertical profile parameters + type(dnparm), intent(in) :: dpro ! Structure containing density vertical profile parameters + + integer(4) :: i, i1, iz + real(kind=rp) :: Mz + real(kind=rp) :: Sz(-5:0,2:6) + real(kind=rp) :: Ihyd ! Hydrostatic definite integral + real(kind=rp) :: ccor ! Chapman and logistical corrections + + ! Below minimum height of profile + if (z .lt. dpro%zmin) then + dfnx = dmissing + return + endif + + ! Anomalous Oxygen (legacy MSISE-00 formulation) + if (dpro%ispec .eq. 9) then + dfnx = dpro%lndref - (z - dpro%zref)/HOA - dpro%C*exp(-(z-dpro%zetaC)/dpro%HC) + dfnx = exp(dfnx) + return !No further calculation needed for anomalous oxygen + endif + + ! Nitric Oxide: Skip if parameters are not defined + if (dpro%ispec .eq. 10) then + if (dpro%lndref .eq. 0.0_rp) then + dfnx = dmissing + return + endif + endif + + ! Chapman and logistic corrections + select case(dpro%ispec) + case(2,3,5,7) !For N2, O2, He, and Ar: logistic correction only + ccor = dpro%R*(1+tanh((z-dpro%zetaR)/(HRfact*dpro%HR))) + case(4,6,8,10) !For O, H, N, and NO: Chapman and logistic corrections + ccor = - dpro%C*exp(-(z-dpro%zetaC)/dpro%HC) & + + dpro%R*(1+tanh((z-dpro%zetaR)/(HRfact*dpro%HR))) + endselect + + ! Below height where hydrostatic terms are needed + if (z .lt. dpro%zhyd) then + select case(dpro%ispec) + case(2,3,5,7) !For N2, O2, He, and Ar, apply mixing ratios and exit + dfnx = exp(lndtotz + dpro%lnPhiF + ccor) + return + case(4) !For O, evaluate splines + call bspline(z,nodesO1,ndO1,4,etaO1,Sz,iz) + dfnx = exp(dot_product(dpro%cf(iz-3:iz),Sz(-3:0,4))) + return + case(10) !For NO, evaluate splines + call bspline(z,nodesNO,ndNO,4,etaNO,Sz,iz) + dfnx = exp(dot_product(dpro%cf(iz-3:iz),Sz(-3:0,4))) + return + endselect + endif + + ! Calculate hydrostatic term and apply to reference density + Mz = pwmp(z,dpro%zetaMi,dpro%Mi,dpro%aMi) + Ihyd = Mz * Vz - dpro%Izref + if ((z .gt. dpro%zetaMi(0)) .and. (z .lt. dpro%zetaMi(4))) then + i = 0 + do i1 = 1, 3 + if (z .lt. dpro%zetaMi(i1)) then + exit + else + i = i1 + endif + enddo + Ihyd = Ihyd - (dpro%aMi(i)*Wz + dpro%XMi(i)) + else if (z .ge. dpro%zetaMi(4)) then + Ihyd = Ihyd - dpro%XMi(4) + endif + dfnx = dpro%lndref - Ihyd * g0divkB + ccor + + ! Apply ideal gas law + dfnx = exp(dfnx) * dpro%Tref/tnz + + return + + end function dfnx + + !================================================================================================== + ! PWMP: Piecewise effective mass profile interpolation + !================================================================================================== + real(kind=rp) function pwmp(z,zm,m,dmdz) + + use msis_constants, only : rp + + real(kind=rp), intent(in) :: z + real(kind=rp), intent(in) :: zm(0:4) + real(kind=rp), intent(in) :: m(0:4) + real(kind=rp), intent(in) :: dmdz(0:3) + + integer :: irng !Index of piecwise interval + integer :: inode + + ! Most probable case + if (z .ge. zm(4)) then + pwmp = m(4) + return + endif + + ! Second most probable case + if (z .le. zm(0)) then + pwmp = m(0) + return + endif + + ! None of the above + do inode = 0,3 + if (z .lt. zm(inode+1)) then + pwmp = m(inode) + dmdz(inode)*(z - zm(inode)) + return + endif + enddo + + ! If we are here this is a problem + stop 'Error in pwmp' + + end function pwmp + +end module msis_dfn + + +!!! =========================================================================== +!!! NRLMSIS 2.1: +!!! Neutral atmosphere empirical model from the surface to lower exosphere +!!! =========================================================================== +!!! +!!! MSISCALC: Interface with re-ordered input arguments and output arrays. +! +! PREREQUISITES: +! Must first run MSISINIT to load parameters and set switches. The +! MSISCALC subroutine checks for initialization and does a default +! initialization if necessary. This self-initialization will be removed +! in future versions. +! +! CALLING SEQUENCE: +! CALL MSISCALC(DAY, UTSEC, Z, LAT, LON, SFLUXAVG, SFLUX, AP, TN, DN, [TEX]) +! +! INPUT VARIABLES: +! DAY Day of year (1.0 to 365.0 or 366.0) +! UTSEC Universal time (seconds) +! Z Geodetic altitude (km) (default) or Geopotential height (km) +! LAT Geodetic latitude (deg) +! LON Geodetic longitude (deg) +! SFLUXAVG 81 day average, centered on input time, of F10.7 solar +! activity index +! SFLUX Daily F10.7 for previous day +! AP Geomagnetic activity index array: +! (1) Daily Ap +! (2) 3 hr ap index for current time +! (3) 3 hr ap index for 3 hrs before current time +! (4) 3 hr ap index for 6 hrs before current time +! (5) 3 hr ap index for 9 hrs before current time +! (6) Average of eight 3 hr ap indices from 12 to 33 hrs +! prior to current time +! (7) Average of eight 3 hr ap indices from 36 to 57 hrs +! prior to current time +! AP(2:7) are only used when switch_legacy(9) = -1.0 in MSISINIT +! +! NOTES ON INPUT VARIABLES: +! - The day-of-year dependence of the model only uses the DAY argument. If +! a continuous day-of-year dependence is desired, this argument should +! include the fractional day (e.g., DAY = + UTSEC/86400.0 +! - If lzalt_type = .true. (default) in the MSISINIT call, then Z is +! treated as geodetic altitude. +! If lzalt_type = .false., then Z is treated as geopotential height. +! - F107 and F107A values are the 10.7 cm radio flux at the Sun-Earth +! distance, not the radio flux at 1 AU. +! +! OUTPUT VARIABLES: +! TN Temperature at altitude (K) +! DN(1) Total mass density (kg/m3) +! DN(2) N2 number density (m-3) +! DN(3) O2 number density (m-3) +! DN(4) O number density (m-3) +! DN(5) He number density (m-3) +! DN(6) H number density (m-3) +! DN(7) Ar number density (m-3) +! DN(8) N number density (m-3) +! DN(9) Anomalous oxygen number density (m-3) +! DN(10) NO number density (m-3) +! TEX Exospheric temperature (K) (optional argument) +! +! NOTES ON OUTPUT VARIABLES: +! - Missing density values are returned as 9.999e-38 +! - Species included in mass density calculation are set in MSISINIT +! +!!! ========================================================================= + +!************************************************************************************************** +! MSIS_CALC Module: Contains main MSIS entry point +!************************************************************************************************** +module msis_calc + +contains + + !================================================================================================== + ! MSISCALC: The main MSIS subroutine entry point + !================================================================================================== + subroutine msiscalc(day,utsec,z,lat,lon,sfluxavg,sflux,ap,tn,dn,tex) + + use msis_constants, only : rp, dmissing, lnp0, Mbarg0divkB, kB, nspec, nodesTN, nd, zetaF, zetaB, & + Hgamma, zetagamma, maxnbf + use msis_init, only : msisinit, initflag, zaltflag, specflag, massflag, masswgt, etaTN + use msis_gfn, only : globe + use msis_tfn, only : tnparm, tfnparm, tfnx + use msis_dfn, only : dnparm, dfnparm, dfnx + use msis_utils, only : alt2gph, bspline, dilog + + implicit none + + real(kind=rp), intent(in) :: day + real(kind=rp), intent(in) :: utsec + real(kind=rp), intent(in) :: z + real(kind=rp), intent(in) :: lat + real(kind=rp), intent(in) :: lon + real(kind=rp), intent(in) :: sfluxavg,sflux,ap(1:7) + real(kind=rp), intent(out) :: tn, dn(1:10) + real(kind=rp), intent(out), optional :: tex + + real(kind=rp), save :: lastday = -9999.0 + real(kind=rp), save :: lastutsec = -9999.0 + real(kind=rp), save :: lastlat = -9999.0 + real(kind=rp), save :: lastlon = -9999.0 + real(kind=rp), save :: lastz = -9999.0 + real(kind=rp), save :: lastsflux = -9999.0 + real(kind=rp), save :: lastsfluxavg = -9999.0 + real(kind=rp), save :: lastap(1:7) = -9999.0 + real(kind=rp), save :: gf(0:maxnbf-1) + real(kind=rp), save :: Sz(-5:0,2:6) + integer, save :: iz + type(tnparm), save :: tpro + type(dnparm), save :: dpro(1:nspec-1) + + real(8) :: zaltd, latd + real(kind=rp) :: zeta, lndtotz, Vz, Wz, HRfact, lnPz, delz + integer :: i, j, kmax, ispec + + ! Check if model has been initialized; if not, perform default initialization + if (.not. initflag) call msisinit() + + ! Calculate geopotential height, if necessary + if(zaltflag) then + zaltd = dble(z) + latd = dble(lat) + zeta = alt2gph(latd,zaltd) + else + zeta = z + endif + + ! If only altitude changes then update the local spline weights + if (zeta .lt. zetaB) then + if (zeta .ne. lastz) then + if (zeta .lt. zetaF) then + kmax = 5 + else + kmax = 6 + endif + call bspline(zeta,nodesTN,nd+2,kmax,etaTN,Sz,iz) + lastz = zeta + endif + endif + + ! If location, time, or solar/geomagnetic conditions change then recompute the profile parameters + if ((day .ne. lastday) .or. (utsec .ne. lastutsec) .or. & + (lat .ne. lastlat) .or. (lon .ne. lastlon) .or. & + (sflux .ne. lastsflux) .or. (sfluxavg .ne. lastsfluxavg) .or. & + any(ap .ne. lastap)) then + call globe(day,utsec,lat,lon,sfluxavg,sflux,ap,gf) + call tfnparm(gf,tpro) + do ispec = 2, nspec-1 + if (specflag(ispec)) call dfnparm(ispec,gf,tpro,dpro(ispec)) + enddo + lastday = day + lastutsec = utsec + lastlat = lat + lastlon = lon + lastsflux = sflux + lastsfluxavg = sfluxavg + lastap = ap + endif + + ! Exospheric temperature + if (present(tex)) then + tex = tpro%tex + endif + + ! Temperature at altitude + tn = tfnx(zeta,iz,Sz(-3:0,4),tpro) + + ! Temperature integration terms at altitude, total number density + delz = zeta - zetaB + if (zeta .lt. zetaF) then + i = max(iz-4,0) + if (iz .lt. 4) then + j = -iz + else + j = -4 + endif + Vz = dot_product(tpro%beta(i:iz),Sz(j:0,5)) + tpro%cVS + Wz = 0.0_rp + lnPz = lnP0 - Mbarg0divkB*(Vz - tpro%Vzeta0) + lndtotz = lnPz - log(kB*tn) + else + if (zeta .lt. zetaB) then + Vz = dot_product(tpro%beta(iz-4:iz),Sz(-4:0,5)) + tpro%cVS + Wz = dot_product(tpro%gamma(iz-5:iz),Sz(-5:0,6)) + tpro%cVS*delz + tpro%cWS + else + Vz = (delz + log(tn/tpro%tex)/tpro%sigma)/tpro%tex + tpro%cVB + Wz = (0.5_rp*delz*delz + dilog(tpro%b*exp(-tpro%sigma*delz))/tpro%sigmasq)/tpro%tex & + + tpro%cVB*delz + tpro%cWB + endif + endif + + ! Species number densities at altitude + HRfact = 0.5_rp * (1.0_rp + tanh(Hgamma*(zeta - zetagamma))) !Reduction factor for chemical/dynamical correction scale height below zetagamma + do ispec = 2, nspec-1 + if (specflag(ispec)) then + dn(ispec) = dfnx(zeta,tn,lndtotz,Vz,Wz,HRfact,tpro,dpro(ispec)) + else + dn(ispec) = dmissing + endif + enddo + + ! Mass density + if (specflag(1)) then + dn(1) = 0.0_rp + dn(1) = dot_product(dn,masswgt) + else + dn(1) = dmissing + endif + + return + + end subroutine msiscalc + +end module msis_calc + + +!!! =========================================================================== +!!! NRLMSIS 2.1: +!!! Neutral atmosphere empirical model from the surface to lower exosphere +!!! =========================================================================== +!!! +!!! GTD8D: Legacy wrapper with input and output arguments used in NRLMSISE-00 +! +! PREREQUISITES: +! Must first run MSISINIT to load parameters and set switches. The +! MSISCALC subroutine (called by this wrapper) checks for initialization +! and does a default initialization if necessary. This self-initialization +! will be removed in future versions. +! +! CALLING SEQUENCE: +! CALL GTD8D(IYD, SEC, ALT, GLAT, GLONG, STL, F107A, F107, AP, MASS, D, T) +! +! INPUT VARIABLES: +! IYD Year and day as YYDDD (day of year from 1 to 365 (or 366)) +! (Year is ignored in current model) +! SEC Universal time (seconds) +! ALT Geodetic altitude (km) +! GLAT Geodetic latitude (deg) +! GLONG Geodetic longitude (deg) +! STL Local solar time (Ignored; calculated from SEC and GLONG) +! F107A 81 day average, centered on input time, of F10.7 solar activity +! index +! F107 Daily F10.7 for previous day +! AP Geomagnetic activity index array: +! (1) Daily Ap +! (2) 3 hr ap index for current time +! (3) 3 hr ap index for 3 hrs before current time +! (4) 3 hr ap index for 6 hrs before current time +! (5) 3 hr ap index for 9 hrs before current time +! (6) Average of eight 3 hr ap indices from 12 to 33 hrs +! prior to current time +! (7) Average of eight 3 hr ap indices from 36 to 57 hrs +! prior to current time +! AP(2:7) are only used when switch_legacy(9) = -1.0 in MSISINIT +! MASS Mass number (Ignored in 2.0) +! +! NOTES ON INPUT VARIABLES: +! - If lzalt_type = .false. in the MSISINIT call, then the ALT input +! argument is treated as geopotential height. +! - The STL input argument is ignored in NRLMSIS 2.0. Instead, local time +! is computed from universal time and longitude. +! - F107 and F107A values are the 10.7 cm radio flux at the Sun-Earth +! distance, not the radio flux at 1 AU. +! - The MASS input argument is ignored in NRLMSIS 2.0; species to be +! calculated are set in MSISINIT. +! +! OUTPUT VARIABLES: +! D(1) He number density (cm-3) +! D(2) O number density (cm-3) +! D(3) N2 number density (cm-3) +! D(4) O2 number density (cm-3) +! D(5) Ar number density (cm-3) +! D(6) Total mass density (g/cm3) +! D(7) H number density (cm-3) +! D(8) N number density (cm-3) +! D(9) Anomalous oxygen number density (cm-3) +! D(10) NO number density (cm-3) +! T(1) Exospheric temperature (K) +! T(2) Temperature at altitude (K) +! +! NOTES ON OUTPUT VARIABLES: +! - Missing density values are returned as 9.999e-38 +! - Species included in mass density calculation are set in MSISINIT +! +!!! ========================================================================= + +module ModMsis21 + + contains + +!================================================================================================== +! GTD8D: Legacy wrapper +!================================================================================================== +subroutine gtd8d(iyd,sec,alt,glat,glong,stl,f107a,f107,ap,mass,d,t) + + use msis_constants, only : rp, dmissing + use msis_init, only : msisinit + use msis_calc, only : msiscalc + + implicit none + + ! MSIS Legacy subroutine arguments + integer, intent(in) :: iyd + real(4), intent(in) :: sec + real(4), intent(in) :: alt + real(4), intent(in) :: glat + real(4), intent(in) :: glong + real(4), intent(in) :: stl + real(4), intent(in) :: f107a + real(4), intent(in) :: f107 + real(4), intent(in) :: ap(7) + integer, intent(in) :: mass + real(4), intent(out) :: d(10), t(2) + + ! MSIS 1.97 subroutine arguments + real(kind=rp) :: xday + real(kind=rp) :: xutsec + real(kind=rp) :: xalt + real(kind=rp) :: xlat + real(kind=rp) :: xlon + real(kind=rp) :: xsfluxavg, xsflux + real(kind=rp) :: xap(1:7) + real(kind=rp) :: xtn + real(kind=rp) :: xdn(1:10) + real(kind=rp) :: xtex + + ! Convert the legacy input arguments to the new interface values and precision + xday = mod(iyd,1000) + xutsec = sec + xalt = alt + xlat = glat + xlon = glong + xsfluxavg = f107a + xsflux = f107 + xap = ap + + ! Call the new subroutine + call msiscalc(xday,xutsec,xalt,xlat,xlon,xsfluxavg,xsflux,xap,xtn,xdn,tex=xtex) + + ! Convert the output arguments to the legacy format (mks to cgs, re-order species) + t(1) = sngl(xtex) ! Expospheric temperature + t(2) = sngl(xtn) ! Temperature at altitude + where (xdn .ne. dmissing) xdn = xdn*1d-6 + if (xdn(1) .ne. dmissing) xdn(1) = xdn(1)*1e3_rp + d(1) = sngl(xdn(5)) ! [He] + d(2) = sngl(xdn(4)) ! [O] + d(3) = sngl(xdn(2)) ! [N2] + d(4) = sngl(xdn(3)) ! [O2] + d(5) = sngl(xdn(7)) ! [Ar] + d(6) = sngl(xdn(1)) ! Mass density + d(7) = sngl(xdn(6)) ! [H] + d(8) = sngl(xdn(8)) ! [N] + d(9) = sngl(xdn(9)) ! [Anomalous O] + d(10) = sngl(xdn(10)) ! [NO] + + return + +end subroutine gtd8d + +end module ModMsis21 + + diff --git a/util/EMPIRICAL/srcUA/nrlmsis2.1_license.txt b/util/EMPIRICAL/srcUA/nrlmsis2.1_license.txt new file mode 100755 index 00000000..244ab192 --- /dev/null +++ b/util/EMPIRICAL/srcUA/nrlmsis2.1_license.txt @@ -0,0 +1,71 @@ +MSIS� (NRL-SOF-014-1) SOFTWARE +OPEN SOURCE ACADEMIC RESEARCH LICENSE AGREEMENT + +1. Agreement. The MSIS� empirical atmospheric model software (hereinafter +�Software�) is property of The Government of the United States of America. This +software is being made available under the following terms and conditions. By +using, modifying, reproducing, or preparing a derivative work of this Software, +you agree to abide by the terms and conditions herein. + +2. License. In accordance with federal law, authorization is given to use, +reproduce, and modify the Software solely for research, academic, and non-profit +purposes and only in accordance with the terms and conditions in this Agreement. +Any commercial use is prohibited. No other rights or permissions are provided. + +3. Basis. The Software was written by employees of the U.S. Naval Research +Laboratory (NRL) and is property of the United States Government, as represented +by the Secretary of the Navy. MSIS� is a registered trademark of the Government +of the United States of America, as represented by the Secretary of the Navy. +Unauthorized use of the trademark is prohibited. + +4. Restrictions and Use. + +a. Sales. A user of the Software shall not sell, or license, or transfer for a +fee the Software or portion thereof, or any derivative work of the Software, or +any data products generated by the Software, without first obtaining the written +consent of IP Counsel for the Naval Research Laboratory. + +b. Modifications. All modifications to the Software and derivative works of the +Software (including translations to other programming languages) shall carry +prominent notices stating how the files were changed and the date of the change. +Any party who modifies the Software shall deliver the modified portion of the +Software to authors or NRL Code 7630, U.S. Naval Research Laboratory. Any +reproductions, modified versions of the Software, or derivative works shall be +made available to the public as open source software. A party who modifies the +Software or creates a derivative work of the Software hereby grants the +Government of the United States of America a non-exclusive, irrevocable, fully +paid-up license to such modifications and derivative works, and shall deliver +such derivative works, including any source code, data, or information that +pertains to such derivatives works, to Code 7630, U.S. Naval Research +Laboratory. If any modifications to the Software substantially change the model +output (including, but not limited to, alterations of the model formulation or +model parameter values), then the modified Software shall not be identified +�MSIS� without first obtaining the written consent of Counsel, Office of Naval +Research, Department of the Navy. In such cases, the MSIS acronym shall +nonetheless still appear in the individual files in order to document the +provenance of the modified Software. + +c. Notices. Each copy of the Software, any modified Software, or derivative +work shall include a file containing this Agreement. Any software package that +incorporates the MSIS� Software or derivative work shall include the following +statement: "This software incorporates the MSIS� empirical atmospheric model +software designed and provided by NRL. Use is governed by the Open Source +Academic Research License Agreement contained in the file +nrlmsis2.1_license.txt." + +5. Disclaimer of Warranty and Liability: As the owner of the MSIS� software, the +Government of the United States of America: (1) Disclaims any warranties, +express, or implied, including but not limited to any implied warranties of +merchantability, fitness for a particular purpose, title or non-infringement, +(2) Does not assume any legal liability or responsibility for the accuracy, +completeness, or usefulness of the software, (3) Does not represent that use of +the software would not infringe privately owned rights, (4) Does not warrant +that the software will function uninterrupted, that is error-free or that any +errors will be corrected. + +6. No Support. The Software is provided without any support or maintenance, and +without any obligation to provide modifications, improvements, enhancements, or +updates of the Software. No oral or written information or advice given by the +NRL authors shall create a warranty or in any way modify this agreement. Should +the Software prove defective, the user (and not NRL or any NRL representative) +assume the cost of all necessary correction. diff --git a/util/Makefile b/util/Makefile index 3cb2d344..fef07aab 100644 --- a/util/Makefile +++ b/util/Makefile @@ -2,7 +2,6 @@ touch_install_files: @(if [ -d NOMPI ]; then touch NOMPI/src/Makefile.RULES; fi) @(if [ -d DATAREAD ]; then touch DATAREAD/srcIndices/Makefile.DEPEND; fi) @(if [ -d EMPIRICAL ]; then touch EMPIRICAL/srcEE/Makefile.DEPEND \ - EMPIRICAL/srcIE/Makefile.DEPEND \ EMPIRICAL/srcUA/Makefile.RULES; fi) install: touch_install_files diff --git a/version.def b/version.def new file mode 100644 index 00000000..e7fde86a --- /dev/null +++ b/version.def @@ -0,0 +1,17 @@ +character(25), parameter :: GitmVersion = & + "20251113.0" + +character(50), parameter :: GitmVersionFull = "develop-update_" // GitmVersion + + +character(50), parameter :: ElectrodynamicsVersionFull = GitmVersionFull + +character(*), parameter :: DifferentFilesGitm = & +"none" +character(*), parameter :: DifferentFilesElectrodynamics = & +"none" + + +! This file contains version information for cases where the user has downloaded a +! "release" of GITM. Since there is no .git/ folder, we cannot extract git information. +! -> The date should be changed upon making a new release.